text
stringlengths
6
13.6M
id
stringlengths
13
176
metadata
dict
__index_level_0__
int64
0
1.69k
#include "../../Flutter/Flutter-Debug.xcconfig" #include "Warnings.xcconfig"
codelabs/tfrs-flutter/step2/frontend/macos/Runner/Configs/Debug.xcconfig/0
{ "file_path": "codelabs/tfrs-flutter/step2/frontend/macos/Runner/Configs/Debug.xcconfig", "repo_id": "codelabs", "token_count": 32 }
51
org.gradle.jvmargs=-Xmx1536M android.useAndroidX=true android.enableJetifier=true
codelabs/tfrs-flutter/step3/frontend/android/gradle.properties/0
{ "file_path": "codelabs/tfrs-flutter/step3/frontend/android/gradle.properties", "repo_id": "codelabs", "token_count": 31 }
52
#include "ephemeral/Flutter-Generated.xcconfig"
codelabs/tfserving-flutter/codelab2/finished/macos/Flutter/Flutter-Debug.xcconfig/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/finished/macos/Flutter/Flutter-Debug.xcconfig", "repo_id": "codelabs", "token_count": 19 }
53
# Flutter sample to demonstrate sending requests to TF Serving This Flutter sample project demos how to call TF Serving from a Flutter app, via gRPC and REST. You can input some text and it will send the text to TF Serving to classify the text as spam or not. ## Usage 1. Download the spam detection SavedModel from this [codelab](https://colab.sandbox.google.com/github/tensorflow/codelabs/blob/main/TFServing/TextClassificationFlutter/codelab1/SpamCommentsModelMaker.ipynb). 2. Start TF Serving with: `docker run -t --rm -p 8500:8500 -p 8501:8501 -v "PATH/TO/SAVEDMODEL:/models/spam-detection" -e MODEL_NAME=spam-detection tensorflow/serving`. 3. Go into 'lib/proto' folder and run 'generate_grpc_stub_dart.sh' to generate the gRPC client stub. 4. Start Android emulator and run the app. 5. If you are not using an Android emulator, make sure to replace '10.0.2.2' with your TF Serving host's IP address.
codelabs/tfserving-flutter/codelab2/starter/README.md/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/README.md", "repo_id": "codelabs", "token_count": 300 }
54
/// // Generated code. Do not modify. // source: google/protobuf/any.proto // // @dart = 2.12 // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields import 'dart:core' as $core; import 'package:protobuf/protobuf.dart' as $pb; import 'package:protobuf/src/protobuf/mixins/well_known.dart' as $mixin; class Any extends $pb.GeneratedMessage with $mixin.AnyMixin { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'Any', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'google.protobuf'), createEmptyInstance: create, toProto3Json: $mixin.AnyMixin.toProto3JsonHelper, fromProto3Json: $mixin.AnyMixin.fromProto3JsonHelper) ..aOS( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'typeUrl') ..a<$core.List<$core.int>>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'value', $pb.PbFieldType.OY) ..hasRequiredFields = false; Any._() : super(); factory Any({ $core.String? typeUrl, $core.List<$core.int>? value, }) { final _result = create(); if (typeUrl != null) { _result.typeUrl = typeUrl; } if (value != null) { _result.value = value; } return _result; } factory Any.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory Any.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') Any clone() => Any()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') Any copyWith(void Function(Any) updates) => super.copyWith((message) => updates(message as Any)) as Any; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static Any create() => Any._(); Any createEmptyInstance() => create(); static $pb.PbList<Any> createRepeated() => $pb.PbList<Any>(); @$core.pragma('dart2js:noInline') static Any getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Any>(create); static Any? _defaultInstance; @$pb.TagNumber(1) $core.String get typeUrl => $_getSZ(0); @$pb.TagNumber(1) set typeUrl($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasTypeUrl() => $_has(0); @$pb.TagNumber(1) void clearTypeUrl() => clearField(1); @$pb.TagNumber(2) $core.List<$core.int> get value => $_getN(1); @$pb.TagNumber(2) set value($core.List<$core.int> v) { $_setBytes(1, v); } @$pb.TagNumber(2) $core.bool hasValue() => $_has(1); @$pb.TagNumber(2) void clearValue() => clearField(2); /// Creates a new [Any] encoding [message]. /// /// The [typeUrl] will be [typeUrlPrefix]/`fullName` where `fullName` is /// the fully qualified name of the type of [message]. static Any pack($pb.GeneratedMessage message, {$core.String typeUrlPrefix = 'type.googleapis.com'}) { final result = create(); $mixin.AnyMixin.packIntoAny(result, message, typeUrlPrefix: typeUrlPrefix); return result; } }
codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/google/protobuf/any.pb.dart/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/google/protobuf/any.pb.dart", "repo_id": "codelabs", "token_count": 1594 }
55
/// // Generated code. Do not modify. // source: tensorflow/core/framework/full_type.proto // // @dart = 2.12 // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields // ignore_for_file: UNDEFINED_SHOWN_NAME import 'dart:core' as $core; import 'package:protobuf/protobuf.dart' as $pb; class FullTypeId extends $pb.ProtobufEnum { static const FullTypeId TFT_UNSET = FullTypeId._( 0, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_UNSET'); static const FullTypeId TFT_VAR = FullTypeId._( 1, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_VAR'); static const FullTypeId TFT_ANY = FullTypeId._( 2, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_ANY'); static const FullTypeId TFT_PRODUCT = FullTypeId._( 3, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_PRODUCT'); static const FullTypeId TFT_NAMED = FullTypeId._( 4, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_NAMED'); static const FullTypeId TFT_FOR_EACH = FullTypeId._( 20, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_FOR_EACH'); static const FullTypeId TFT_CALLABLE = FullTypeId._( 100, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_CALLABLE'); static const FullTypeId TFT_TENSOR = FullTypeId._( 1000, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_TENSOR'); static const FullTypeId TFT_ARRAY = FullTypeId._( 1001, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_ARRAY'); static const FullTypeId TFT_OPTIONAL = FullTypeId._( 1002, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_OPTIONAL'); static const FullTypeId TFT_LITERAL = FullTypeId._( 1003, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_LITERAL'); static const FullTypeId TFT_BOOL = FullTypeId._( 200, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_BOOL'); static const FullTypeId TFT_UINT8 = FullTypeId._( 201, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_UINT8'); static const FullTypeId TFT_UINT16 = FullTypeId._( 202, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_UINT16'); static const FullTypeId TFT_UINT32 = FullTypeId._( 203, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_UINT32'); static const FullTypeId TFT_UINT64 = FullTypeId._( 204, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_UINT64'); static const FullTypeId TFT_INT8 = FullTypeId._( 205, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_INT8'); static const FullTypeId TFT_INT16 = FullTypeId._( 206, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_INT16'); static const FullTypeId TFT_INT32 = FullTypeId._( 207, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_INT32'); static const FullTypeId TFT_INT64 = FullTypeId._( 208, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_INT64'); static const FullTypeId TFT_HALF = FullTypeId._( 209, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_HALF'); static const FullTypeId TFT_FLOAT = FullTypeId._( 210, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_FLOAT'); static const FullTypeId TFT_DOUBLE = FullTypeId._( 211, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_DOUBLE'); static const FullTypeId TFT_BFLOAT16 = FullTypeId._( 215, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_BFLOAT16'); static const FullTypeId TFT_COMPLEX64 = FullTypeId._( 212, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_COMPLEX64'); static const FullTypeId TFT_COMPLEX128 = FullTypeId._( 213, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_COMPLEX128'); static const FullTypeId TFT_STRING = FullTypeId._( 214, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_STRING'); static const FullTypeId TFT_DATASET = FullTypeId._( 10102, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_DATASET'); static const FullTypeId TFT_RAGGED = FullTypeId._( 10103, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_RAGGED'); static const FullTypeId TFT_MUTEX_LOCK = FullTypeId._( 10202, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_MUTEX_LOCK'); static const FullTypeId TFT_LEGACY_VARIANT = FullTypeId._( 10203, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'TFT_LEGACY_VARIANT'); static const $core.List<FullTypeId> values = <FullTypeId>[ TFT_UNSET, TFT_VAR, TFT_ANY, TFT_PRODUCT, TFT_NAMED, TFT_FOR_EACH, TFT_CALLABLE, TFT_TENSOR, TFT_ARRAY, TFT_OPTIONAL, TFT_LITERAL, TFT_BOOL, TFT_UINT8, TFT_UINT16, TFT_UINT32, TFT_UINT64, TFT_INT8, TFT_INT16, TFT_INT32, TFT_INT64, TFT_HALF, TFT_FLOAT, TFT_DOUBLE, TFT_BFLOAT16, TFT_COMPLEX64, TFT_COMPLEX128, TFT_STRING, TFT_DATASET, TFT_RAGGED, TFT_MUTEX_LOCK, TFT_LEGACY_VARIANT, ]; static final $core.Map<$core.int, FullTypeId> _byValue = $pb.ProtobufEnum.initByValue(values); static FullTypeId? valueOf($core.int value) => _byValue[value]; const FullTypeId._($core.int v, $core.String n) : super(v, n); }
codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/full_type.pbenum.dart/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/full_type.pbenum.dart", "repo_id": "codelabs", "token_count": 3245 }
56
/// // Generated code. Do not modify. // source: tensorflow/core/framework/resource_handle.proto // // @dart = 2.12 // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields,deprecated_member_use_from_same_package import 'dart:core' as $core; import 'dart:convert' as $convert; import 'dart:typed_data' as $typed_data; @$core.Deprecated('Use resourceHandleProtoDescriptor instead') const ResourceHandleProto$json = const { '1': 'ResourceHandleProto', '2': const [ const {'1': 'device', '3': 1, '4': 1, '5': 9, '10': 'device'}, const {'1': 'container', '3': 2, '4': 1, '5': 9, '10': 'container'}, const {'1': 'name', '3': 3, '4': 1, '5': 9, '10': 'name'}, const {'1': 'hash_code', '3': 4, '4': 1, '5': 4, '10': 'hashCode'}, const { '1': 'maybe_type_name', '3': 5, '4': 1, '5': 9, '10': 'maybeTypeName' }, const { '1': 'dtypes_and_shapes', '3': 6, '4': 3, '5': 11, '6': '.tensorflow.ResourceHandleProto.DtypeAndShape', '10': 'dtypesAndShapes' }, ], '3': const [ResourceHandleProto_DtypeAndShape$json], '9': const [ const {'1': 7, '2': 8}, ], }; @$core.Deprecated('Use resourceHandleProtoDescriptor instead') const ResourceHandleProto_DtypeAndShape$json = const { '1': 'DtypeAndShape', '2': const [ const { '1': 'dtype', '3': 1, '4': 1, '5': 14, '6': '.tensorflow.DataType', '10': 'dtype' }, const { '1': 'shape', '3': 2, '4': 1, '5': 11, '6': '.tensorflow.TensorShapeProto', '10': 'shape' }, ], }; /// Descriptor for `ResourceHandleProto`. Decode as a `google.protobuf.DescriptorProto`. final $typed_data.Uint8List resourceHandleProtoDescriptor = $convert.base64Decode( 'ChNSZXNvdXJjZUhhbmRsZVByb3RvEhYKBmRldmljZRgBIAEoCVIGZGV2aWNlEhwKCWNvbnRhaW5lchgCIAEoCVIJY29udGFpbmVyEhIKBG5hbWUYAyABKAlSBG5hbWUSGwoJaGFzaF9jb2RlGAQgASgEUghoYXNoQ29kZRImCg9tYXliZV90eXBlX25hbWUYBSABKAlSDW1heWJlVHlwZU5hbWUSWQoRZHR5cGVzX2FuZF9zaGFwZXMYBiADKAsyLS50ZW5zb3JmbG93LlJlc291cmNlSGFuZGxlUHJvdG8uRHR5cGVBbmRTaGFwZVIPZHR5cGVzQW5kU2hhcGVzGm8KDUR0eXBlQW5kU2hhcGUSKgoFZHR5cGUYASABKA4yFC50ZW5zb3JmbG93LkRhdGFUeXBlUgVkdHlwZRIyCgVzaGFwZRgCIAEoCzIcLnRlbnNvcmZsb3cuVGVuc29yU2hhcGVQcm90b1IFc2hhcGVKBAgHEAg=');
codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/resource_handle.pbjson.dart/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/resource_handle.pbjson.dart", "repo_id": "codelabs", "token_count": 1256 }
57
/// // Generated code. Do not modify. // source: tensorflow/core/protobuf/meta_graph.proto // // @dart = 2.12 // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields import 'dart:core' as $core; import 'package:fixnum/fixnum.dart' as $fixnum; import 'package:protobuf/protobuf.dart' as $pb; import '../framework/graph.pb.dart' as $0; import 'saver.pb.dart' as $1; import 'saved_object_graph.pb.dart' as $2; import '../framework/op_def.pb.dart' as $3; import '../../../google/protobuf/any.pb.dart' as $4; import '../framework/tensor_shape.pb.dart' as $5; import 'struct.pb.dart' as $6; import '../framework/types.pbenum.dart' as $7; class MetaGraphDef_MetaInfoDef extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'MetaGraphDef.MetaInfoDef', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..aOS( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'metaGraphVersion') ..aOM<$3.OpList>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'strippedOpList', subBuilder: $3.OpList.create) ..aOM<$4.Any>( 3, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'anyInfo', subBuilder: $4.Any.create) ..pPS( 4, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'tags') ..aOS( 5, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'tensorflowVersion') ..aOS( 6, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'tensorflowGitVersion') ..aOB( 7, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'strippedDefaultAttrs') ..m<$core.String, $core.String>( 8, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'functionAliases', entryClassName: 'MetaGraphDef.MetaInfoDef.FunctionAliasesEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OS, packageName: const $pb.PackageName('tensorflow')) ..hasRequiredFields = false; MetaGraphDef_MetaInfoDef._() : super(); factory MetaGraphDef_MetaInfoDef({ $core.String? metaGraphVersion, $3.OpList? strippedOpList, $4.Any? anyInfo, $core.Iterable<$core.String>? tags, $core.String? tensorflowVersion, $core.String? tensorflowGitVersion, $core.bool? strippedDefaultAttrs, $core.Map<$core.String, $core.String>? functionAliases, }) { final _result = create(); if (metaGraphVersion != null) { _result.metaGraphVersion = metaGraphVersion; } if (strippedOpList != null) { _result.strippedOpList = strippedOpList; } if (anyInfo != null) { _result.anyInfo = anyInfo; } if (tags != null) { _result.tags.addAll(tags); } if (tensorflowVersion != null) { _result.tensorflowVersion = tensorflowVersion; } if (tensorflowGitVersion != null) { _result.tensorflowGitVersion = tensorflowGitVersion; } if (strippedDefaultAttrs != null) { _result.strippedDefaultAttrs = strippedDefaultAttrs; } if (functionAliases != null) { _result.functionAliases.addAll(functionAliases); } return _result; } factory MetaGraphDef_MetaInfoDef.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory MetaGraphDef_MetaInfoDef.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') MetaGraphDef_MetaInfoDef clone() => MetaGraphDef_MetaInfoDef()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') MetaGraphDef_MetaInfoDef copyWith( void Function(MetaGraphDef_MetaInfoDef) updates) => super.copyWith((message) => updates(message as MetaGraphDef_MetaInfoDef)) as MetaGraphDef_MetaInfoDef; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static MetaGraphDef_MetaInfoDef create() => MetaGraphDef_MetaInfoDef._(); MetaGraphDef_MetaInfoDef createEmptyInstance() => create(); static $pb.PbList<MetaGraphDef_MetaInfoDef> createRepeated() => $pb.PbList<MetaGraphDef_MetaInfoDef>(); @$core.pragma('dart2js:noInline') static MetaGraphDef_MetaInfoDef getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MetaGraphDef_MetaInfoDef>(create); static MetaGraphDef_MetaInfoDef? _defaultInstance; @$pb.TagNumber(1) $core.String get metaGraphVersion => $_getSZ(0); @$pb.TagNumber(1) set metaGraphVersion($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasMetaGraphVersion() => $_has(0); @$pb.TagNumber(1) void clearMetaGraphVersion() => clearField(1); @$pb.TagNumber(2) $3.OpList get strippedOpList => $_getN(1); @$pb.TagNumber(2) set strippedOpList($3.OpList v) { setField(2, v); } @$pb.TagNumber(2) $core.bool hasStrippedOpList() => $_has(1); @$pb.TagNumber(2) void clearStrippedOpList() => clearField(2); @$pb.TagNumber(2) $3.OpList ensureStrippedOpList() => $_ensure(1); @$pb.TagNumber(3) $4.Any get anyInfo => $_getN(2); @$pb.TagNumber(3) set anyInfo($4.Any v) { setField(3, v); } @$pb.TagNumber(3) $core.bool hasAnyInfo() => $_has(2); @$pb.TagNumber(3) void clearAnyInfo() => clearField(3); @$pb.TagNumber(3) $4.Any ensureAnyInfo() => $_ensure(2); @$pb.TagNumber(4) $core.List<$core.String> get tags => $_getList(3); @$pb.TagNumber(5) $core.String get tensorflowVersion => $_getSZ(4); @$pb.TagNumber(5) set tensorflowVersion($core.String v) { $_setString(4, v); } @$pb.TagNumber(5) $core.bool hasTensorflowVersion() => $_has(4); @$pb.TagNumber(5) void clearTensorflowVersion() => clearField(5); @$pb.TagNumber(6) $core.String get tensorflowGitVersion => $_getSZ(5); @$pb.TagNumber(6) set tensorflowGitVersion($core.String v) { $_setString(5, v); } @$pb.TagNumber(6) $core.bool hasTensorflowGitVersion() => $_has(5); @$pb.TagNumber(6) void clearTensorflowGitVersion() => clearField(6); @$pb.TagNumber(7) $core.bool get strippedDefaultAttrs => $_getBF(6); @$pb.TagNumber(7) set strippedDefaultAttrs($core.bool v) { $_setBool(6, v); } @$pb.TagNumber(7) $core.bool hasStrippedDefaultAttrs() => $_has(6); @$pb.TagNumber(7) void clearStrippedDefaultAttrs() => clearField(7); @$pb.TagNumber(8) $core.Map<$core.String, $core.String> get functionAliases => $_getMap(7); } class MetaGraphDef extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'MetaGraphDef', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..aOM<MetaGraphDef_MetaInfoDef>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'metaInfoDef', subBuilder: MetaGraphDef_MetaInfoDef.create) ..aOM<$0.GraphDef>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'graphDef', subBuilder: $0.GraphDef.create) ..aOM<$1.SaverDef>( 3, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'saverDef', subBuilder: $1.SaverDef.create) ..m<$core.String, CollectionDef>( 4, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'collectionDef', entryClassName: 'MetaGraphDef.CollectionDefEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: CollectionDef.create, packageName: const $pb.PackageName('tensorflow')) ..m<$core.String, SignatureDef>( 5, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'signatureDef', entryClassName: 'MetaGraphDef.SignatureDefEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: SignatureDef.create, packageName: const $pb.PackageName('tensorflow')) ..pc<AssetFileDef>( 6, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'assetFileDef', $pb.PbFieldType.PM, subBuilder: AssetFileDef.create) ..aOM<$2.SavedObjectGraph>( 7, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'objectGraphDef', subBuilder: $2.SavedObjectGraph.create) ..hasRequiredFields = false; MetaGraphDef._() : super(); factory MetaGraphDef({ MetaGraphDef_MetaInfoDef? metaInfoDef, $0.GraphDef? graphDef, $1.SaverDef? saverDef, $core.Map<$core.String, CollectionDef>? collectionDef, $core.Map<$core.String, SignatureDef>? signatureDef, $core.Iterable<AssetFileDef>? assetFileDef, $2.SavedObjectGraph? objectGraphDef, }) { final _result = create(); if (metaInfoDef != null) { _result.metaInfoDef = metaInfoDef; } if (graphDef != null) { _result.graphDef = graphDef; } if (saverDef != null) { _result.saverDef = saverDef; } if (collectionDef != null) { _result.collectionDef.addAll(collectionDef); } if (signatureDef != null) { _result.signatureDef.addAll(signatureDef); } if (assetFileDef != null) { _result.assetFileDef.addAll(assetFileDef); } if (objectGraphDef != null) { _result.objectGraphDef = objectGraphDef; } return _result; } factory MetaGraphDef.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory MetaGraphDef.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') MetaGraphDef clone() => MetaGraphDef()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') MetaGraphDef copyWith(void Function(MetaGraphDef) updates) => super.copyWith((message) => updates(message as MetaGraphDef)) as MetaGraphDef; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static MetaGraphDef create() => MetaGraphDef._(); MetaGraphDef createEmptyInstance() => create(); static $pb.PbList<MetaGraphDef> createRepeated() => $pb.PbList<MetaGraphDef>(); @$core.pragma('dart2js:noInline') static MetaGraphDef getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MetaGraphDef>(create); static MetaGraphDef? _defaultInstance; @$pb.TagNumber(1) MetaGraphDef_MetaInfoDef get metaInfoDef => $_getN(0); @$pb.TagNumber(1) set metaInfoDef(MetaGraphDef_MetaInfoDef v) { setField(1, v); } @$pb.TagNumber(1) $core.bool hasMetaInfoDef() => $_has(0); @$pb.TagNumber(1) void clearMetaInfoDef() => clearField(1); @$pb.TagNumber(1) MetaGraphDef_MetaInfoDef ensureMetaInfoDef() => $_ensure(0); @$pb.TagNumber(2) $0.GraphDef get graphDef => $_getN(1); @$pb.TagNumber(2) set graphDef($0.GraphDef v) { setField(2, v); } @$pb.TagNumber(2) $core.bool hasGraphDef() => $_has(1); @$pb.TagNumber(2) void clearGraphDef() => clearField(2); @$pb.TagNumber(2) $0.GraphDef ensureGraphDef() => $_ensure(1); @$pb.TagNumber(3) $1.SaverDef get saverDef => $_getN(2); @$pb.TagNumber(3) set saverDef($1.SaverDef v) { setField(3, v); } @$pb.TagNumber(3) $core.bool hasSaverDef() => $_has(2); @$pb.TagNumber(3) void clearSaverDef() => clearField(3); @$pb.TagNumber(3) $1.SaverDef ensureSaverDef() => $_ensure(2); @$pb.TagNumber(4) $core.Map<$core.String, CollectionDef> get collectionDef => $_getMap(3); @$pb.TagNumber(5) $core.Map<$core.String, SignatureDef> get signatureDef => $_getMap(4); @$pb.TagNumber(6) $core.List<AssetFileDef> get assetFileDef => $_getList(5); @$pb.TagNumber(7) $2.SavedObjectGraph get objectGraphDef => $_getN(6); @$pb.TagNumber(7) set objectGraphDef($2.SavedObjectGraph v) { setField(7, v); } @$pb.TagNumber(7) $core.bool hasObjectGraphDef() => $_has(6); @$pb.TagNumber(7) void clearObjectGraphDef() => clearField(7); @$pb.TagNumber(7) $2.SavedObjectGraph ensureObjectGraphDef() => $_ensure(6); } class CollectionDef_NodeList extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'CollectionDef.NodeList', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..pPS( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'value') ..hasRequiredFields = false; CollectionDef_NodeList._() : super(); factory CollectionDef_NodeList({ $core.Iterable<$core.String>? value, }) { final _result = create(); if (value != null) { _result.value.addAll(value); } return _result; } factory CollectionDef_NodeList.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CollectionDef_NodeList.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CollectionDef_NodeList clone() => CollectionDef_NodeList()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CollectionDef_NodeList copyWith( void Function(CollectionDef_NodeList) updates) => super.copyWith((message) => updates(message as CollectionDef_NodeList)) as CollectionDef_NodeList; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CollectionDef_NodeList create() => CollectionDef_NodeList._(); CollectionDef_NodeList createEmptyInstance() => create(); static $pb.PbList<CollectionDef_NodeList> createRepeated() => $pb.PbList<CollectionDef_NodeList>(); @$core.pragma('dart2js:noInline') static CollectionDef_NodeList getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollectionDef_NodeList>(create); static CollectionDef_NodeList? _defaultInstance; @$pb.TagNumber(1) $core.List<$core.String> get value => $_getList(0); } class CollectionDef_BytesList extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'CollectionDef.BytesList', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..p<$core.List<$core.int>>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'value', $pb.PbFieldType.PY) ..hasRequiredFields = false; CollectionDef_BytesList._() : super(); factory CollectionDef_BytesList({ $core.Iterable<$core.List<$core.int>>? value, }) { final _result = create(); if (value != null) { _result.value.addAll(value); } return _result; } factory CollectionDef_BytesList.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CollectionDef_BytesList.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CollectionDef_BytesList clone() => CollectionDef_BytesList()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CollectionDef_BytesList copyWith( void Function(CollectionDef_BytesList) updates) => super.copyWith((message) => updates(message as CollectionDef_BytesList)) as CollectionDef_BytesList; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CollectionDef_BytesList create() => CollectionDef_BytesList._(); CollectionDef_BytesList createEmptyInstance() => create(); static $pb.PbList<CollectionDef_BytesList> createRepeated() => $pb.PbList<CollectionDef_BytesList>(); @$core.pragma('dart2js:noInline') static CollectionDef_BytesList getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollectionDef_BytesList>(create); static CollectionDef_BytesList? _defaultInstance; @$pb.TagNumber(1) $core.List<$core.List<$core.int>> get value => $_getList(0); } class CollectionDef_Int64List extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'CollectionDef.Int64List', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..p<$fixnum.Int64>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'value', $pb.PbFieldType.K6) ..hasRequiredFields = false; CollectionDef_Int64List._() : super(); factory CollectionDef_Int64List({ $core.Iterable<$fixnum.Int64>? value, }) { final _result = create(); if (value != null) { _result.value.addAll(value); } return _result; } factory CollectionDef_Int64List.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CollectionDef_Int64List.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CollectionDef_Int64List clone() => CollectionDef_Int64List()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CollectionDef_Int64List copyWith( void Function(CollectionDef_Int64List) updates) => super.copyWith((message) => updates(message as CollectionDef_Int64List)) as CollectionDef_Int64List; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CollectionDef_Int64List create() => CollectionDef_Int64List._(); CollectionDef_Int64List createEmptyInstance() => create(); static $pb.PbList<CollectionDef_Int64List> createRepeated() => $pb.PbList<CollectionDef_Int64List>(); @$core.pragma('dart2js:noInline') static CollectionDef_Int64List getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollectionDef_Int64List>(create); static CollectionDef_Int64List? _defaultInstance; @$pb.TagNumber(1) $core.List<$fixnum.Int64> get value => $_getList(0); } class CollectionDef_FloatList extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'CollectionDef.FloatList', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..p<$core.double>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'value', $pb.PbFieldType.KF) ..hasRequiredFields = false; CollectionDef_FloatList._() : super(); factory CollectionDef_FloatList({ $core.Iterable<$core.double>? value, }) { final _result = create(); if (value != null) { _result.value.addAll(value); } return _result; } factory CollectionDef_FloatList.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CollectionDef_FloatList.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CollectionDef_FloatList clone() => CollectionDef_FloatList()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CollectionDef_FloatList copyWith( void Function(CollectionDef_FloatList) updates) => super.copyWith((message) => updates(message as CollectionDef_FloatList)) as CollectionDef_FloatList; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CollectionDef_FloatList create() => CollectionDef_FloatList._(); CollectionDef_FloatList createEmptyInstance() => create(); static $pb.PbList<CollectionDef_FloatList> createRepeated() => $pb.PbList<CollectionDef_FloatList>(); @$core.pragma('dart2js:noInline') static CollectionDef_FloatList getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollectionDef_FloatList>(create); static CollectionDef_FloatList? _defaultInstance; @$pb.TagNumber(1) $core.List<$core.double> get value => $_getList(0); } class CollectionDef_AnyList extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'CollectionDef.AnyList', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..pc<$4.Any>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'value', $pb.PbFieldType.PM, subBuilder: $4.Any.create) ..hasRequiredFields = false; CollectionDef_AnyList._() : super(); factory CollectionDef_AnyList({ $core.Iterable<$4.Any>? value, }) { final _result = create(); if (value != null) { _result.value.addAll(value); } return _result; } factory CollectionDef_AnyList.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CollectionDef_AnyList.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CollectionDef_AnyList clone() => CollectionDef_AnyList()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CollectionDef_AnyList copyWith( void Function(CollectionDef_AnyList) updates) => super.copyWith((message) => updates(message as CollectionDef_AnyList)) as CollectionDef_AnyList; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CollectionDef_AnyList create() => CollectionDef_AnyList._(); CollectionDef_AnyList createEmptyInstance() => create(); static $pb.PbList<CollectionDef_AnyList> createRepeated() => $pb.PbList<CollectionDef_AnyList>(); @$core.pragma('dart2js:noInline') static CollectionDef_AnyList getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollectionDef_AnyList>(create); static CollectionDef_AnyList? _defaultInstance; @$pb.TagNumber(1) $core.List<$4.Any> get value => $_getList(0); } enum CollectionDef_Kind { nodeList, bytesList, int64List, floatList, anyList, notSet } class CollectionDef extends $pb.GeneratedMessage { static const $core.Map<$core.int, CollectionDef_Kind> _CollectionDef_KindByTag = { 1: CollectionDef_Kind.nodeList, 2: CollectionDef_Kind.bytesList, 3: CollectionDef_Kind.int64List, 4: CollectionDef_Kind.floatList, 5: CollectionDef_Kind.anyList, 0: CollectionDef_Kind.notSet }; static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'CollectionDef', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..oo(0, [1, 2, 3, 4, 5]) ..aOM<CollectionDef_NodeList>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'nodeList', subBuilder: CollectionDef_NodeList.create) ..aOM<CollectionDef_BytesList>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'bytesList', subBuilder: CollectionDef_BytesList.create) ..aOM<CollectionDef_Int64List>( 3, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'int64List', subBuilder: CollectionDef_Int64List.create) ..aOM<CollectionDef_FloatList>( 4, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'floatList', subBuilder: CollectionDef_FloatList.create) ..aOM<CollectionDef_AnyList>( 5, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'anyList', subBuilder: CollectionDef_AnyList.create) ..hasRequiredFields = false; CollectionDef._() : super(); factory CollectionDef({ CollectionDef_NodeList? nodeList, CollectionDef_BytesList? bytesList, CollectionDef_Int64List? int64List, CollectionDef_FloatList? floatList, CollectionDef_AnyList? anyList, }) { final _result = create(); if (nodeList != null) { _result.nodeList = nodeList; } if (bytesList != null) { _result.bytesList = bytesList; } if (int64List != null) { _result.int64List = int64List; } if (floatList != null) { _result.floatList = floatList; } if (anyList != null) { _result.anyList = anyList; } return _result; } factory CollectionDef.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CollectionDef.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CollectionDef clone() => CollectionDef()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CollectionDef copyWith(void Function(CollectionDef) updates) => super.copyWith((message) => updates(message as CollectionDef)) as CollectionDef; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CollectionDef create() => CollectionDef._(); CollectionDef createEmptyInstance() => create(); static $pb.PbList<CollectionDef> createRepeated() => $pb.PbList<CollectionDef>(); @$core.pragma('dart2js:noInline') static CollectionDef getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollectionDef>(create); static CollectionDef? _defaultInstance; CollectionDef_Kind whichKind() => _CollectionDef_KindByTag[$_whichOneof(0)]!; void clearKind() => clearField($_whichOneof(0)); @$pb.TagNumber(1) CollectionDef_NodeList get nodeList => $_getN(0); @$pb.TagNumber(1) set nodeList(CollectionDef_NodeList v) { setField(1, v); } @$pb.TagNumber(1) $core.bool hasNodeList() => $_has(0); @$pb.TagNumber(1) void clearNodeList() => clearField(1); @$pb.TagNumber(1) CollectionDef_NodeList ensureNodeList() => $_ensure(0); @$pb.TagNumber(2) CollectionDef_BytesList get bytesList => $_getN(1); @$pb.TagNumber(2) set bytesList(CollectionDef_BytesList v) { setField(2, v); } @$pb.TagNumber(2) $core.bool hasBytesList() => $_has(1); @$pb.TagNumber(2) void clearBytesList() => clearField(2); @$pb.TagNumber(2) CollectionDef_BytesList ensureBytesList() => $_ensure(1); @$pb.TagNumber(3) CollectionDef_Int64List get int64List => $_getN(2); @$pb.TagNumber(3) set int64List(CollectionDef_Int64List v) { setField(3, v); } @$pb.TagNumber(3) $core.bool hasInt64List() => $_has(2); @$pb.TagNumber(3) void clearInt64List() => clearField(3); @$pb.TagNumber(3) CollectionDef_Int64List ensureInt64List() => $_ensure(2); @$pb.TagNumber(4) CollectionDef_FloatList get floatList => $_getN(3); @$pb.TagNumber(4) set floatList(CollectionDef_FloatList v) { setField(4, v); } @$pb.TagNumber(4) $core.bool hasFloatList() => $_has(3); @$pb.TagNumber(4) void clearFloatList() => clearField(4); @$pb.TagNumber(4) CollectionDef_FloatList ensureFloatList() => $_ensure(3); @$pb.TagNumber(5) CollectionDef_AnyList get anyList => $_getN(4); @$pb.TagNumber(5) set anyList(CollectionDef_AnyList v) { setField(5, v); } @$pb.TagNumber(5) $core.bool hasAnyList() => $_has(4); @$pb.TagNumber(5) void clearAnyList() => clearField(5); @$pb.TagNumber(5) CollectionDef_AnyList ensureAnyList() => $_ensure(4); } class TensorInfo_CooSparse extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'TensorInfo.CooSparse', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..aOS( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'valuesTensorName') ..aOS( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'indicesTensorName') ..aOS( 3, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'denseShapeTensorName') ..hasRequiredFields = false; TensorInfo_CooSparse._() : super(); factory TensorInfo_CooSparse({ $core.String? valuesTensorName, $core.String? indicesTensorName, $core.String? denseShapeTensorName, }) { final _result = create(); if (valuesTensorName != null) { _result.valuesTensorName = valuesTensorName; } if (indicesTensorName != null) { _result.indicesTensorName = indicesTensorName; } if (denseShapeTensorName != null) { _result.denseShapeTensorName = denseShapeTensorName; } return _result; } factory TensorInfo_CooSparse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory TensorInfo_CooSparse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') TensorInfo_CooSparse clone() => TensorInfo_CooSparse()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') TensorInfo_CooSparse copyWith(void Function(TensorInfo_CooSparse) updates) => super.copyWith((message) => updates(message as TensorInfo_CooSparse)) as TensorInfo_CooSparse; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static TensorInfo_CooSparse create() => TensorInfo_CooSparse._(); TensorInfo_CooSparse createEmptyInstance() => create(); static $pb.PbList<TensorInfo_CooSparse> createRepeated() => $pb.PbList<TensorInfo_CooSparse>(); @$core.pragma('dart2js:noInline') static TensorInfo_CooSparse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TensorInfo_CooSparse>(create); static TensorInfo_CooSparse? _defaultInstance; @$pb.TagNumber(1) $core.String get valuesTensorName => $_getSZ(0); @$pb.TagNumber(1) set valuesTensorName($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasValuesTensorName() => $_has(0); @$pb.TagNumber(1) void clearValuesTensorName() => clearField(1); @$pb.TagNumber(2) $core.String get indicesTensorName => $_getSZ(1); @$pb.TagNumber(2) set indicesTensorName($core.String v) { $_setString(1, v); } @$pb.TagNumber(2) $core.bool hasIndicesTensorName() => $_has(1); @$pb.TagNumber(2) void clearIndicesTensorName() => clearField(2); @$pb.TagNumber(3) $core.String get denseShapeTensorName => $_getSZ(2); @$pb.TagNumber(3) set denseShapeTensorName($core.String v) { $_setString(2, v); } @$pb.TagNumber(3) $core.bool hasDenseShapeTensorName() => $_has(2); @$pb.TagNumber(3) void clearDenseShapeTensorName() => clearField(3); } class TensorInfo_CompositeTensor extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'TensorInfo.CompositeTensor', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..aOM<$6.TypeSpecProto>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'typeSpec', subBuilder: $6.TypeSpecProto.create) ..pc<TensorInfo>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'components', $pb.PbFieldType.PM, subBuilder: TensorInfo.create) ..hasRequiredFields = false; TensorInfo_CompositeTensor._() : super(); factory TensorInfo_CompositeTensor({ $6.TypeSpecProto? typeSpec, $core.Iterable<TensorInfo>? components, }) { final _result = create(); if (typeSpec != null) { _result.typeSpec = typeSpec; } if (components != null) { _result.components.addAll(components); } return _result; } factory TensorInfo_CompositeTensor.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory TensorInfo_CompositeTensor.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') TensorInfo_CompositeTensor clone() => TensorInfo_CompositeTensor()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') TensorInfo_CompositeTensor copyWith( void Function(TensorInfo_CompositeTensor) updates) => super.copyWith( (message) => updates(message as TensorInfo_CompositeTensor)) as TensorInfo_CompositeTensor; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static TensorInfo_CompositeTensor create() => TensorInfo_CompositeTensor._(); TensorInfo_CompositeTensor createEmptyInstance() => create(); static $pb.PbList<TensorInfo_CompositeTensor> createRepeated() => $pb.PbList<TensorInfo_CompositeTensor>(); @$core.pragma('dart2js:noInline') static TensorInfo_CompositeTensor getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TensorInfo_CompositeTensor>(create); static TensorInfo_CompositeTensor? _defaultInstance; @$pb.TagNumber(1) $6.TypeSpecProto get typeSpec => $_getN(0); @$pb.TagNumber(1) set typeSpec($6.TypeSpecProto v) { setField(1, v); } @$pb.TagNumber(1) $core.bool hasTypeSpec() => $_has(0); @$pb.TagNumber(1) void clearTypeSpec() => clearField(1); @$pb.TagNumber(1) $6.TypeSpecProto ensureTypeSpec() => $_ensure(0); @$pb.TagNumber(2) $core.List<TensorInfo> get components => $_getList(1); } enum TensorInfo_Encoding { name, cooSparse, compositeTensor, notSet } class TensorInfo extends $pb.GeneratedMessage { static const $core.Map<$core.int, TensorInfo_Encoding> _TensorInfo_EncodingByTag = { 1: TensorInfo_Encoding.name, 4: TensorInfo_Encoding.cooSparse, 5: TensorInfo_Encoding.compositeTensor, 0: TensorInfo_Encoding.notSet }; static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'TensorInfo', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..oo(0, [1, 4, 5]) ..aOS( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'name') ..e<$7.DataType>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'dtype', $pb.PbFieldType.OE, defaultOrMaker: $7.DataType.DT_INVALID, valueOf: $7.DataType.valueOf, enumValues: $7.DataType.values) ..aOM<$5.TensorShapeProto>( 3, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'tensorShape', subBuilder: $5.TensorShapeProto.create) ..aOM<TensorInfo_CooSparse>( 4, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'cooSparse', subBuilder: TensorInfo_CooSparse.create) ..aOM<TensorInfo_CompositeTensor>( 5, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'compositeTensor', subBuilder: TensorInfo_CompositeTensor.create) ..hasRequiredFields = false; TensorInfo._() : super(); factory TensorInfo({ $core.String? name, $7.DataType? dtype, $5.TensorShapeProto? tensorShape, TensorInfo_CooSparse? cooSparse, TensorInfo_CompositeTensor? compositeTensor, }) { final _result = create(); if (name != null) { _result.name = name; } if (dtype != null) { _result.dtype = dtype; } if (tensorShape != null) { _result.tensorShape = tensorShape; } if (cooSparse != null) { _result.cooSparse = cooSparse; } if (compositeTensor != null) { _result.compositeTensor = compositeTensor; } return _result; } factory TensorInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory TensorInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') TensorInfo clone() => TensorInfo()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') TensorInfo copyWith(void Function(TensorInfo) updates) => super.copyWith((message) => updates(message as TensorInfo)) as TensorInfo; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static TensorInfo create() => TensorInfo._(); TensorInfo createEmptyInstance() => create(); static $pb.PbList<TensorInfo> createRepeated() => $pb.PbList<TensorInfo>(); @$core.pragma('dart2js:noInline') static TensorInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TensorInfo>(create); static TensorInfo? _defaultInstance; TensorInfo_Encoding whichEncoding() => _TensorInfo_EncodingByTag[$_whichOneof(0)]!; void clearEncoding() => clearField($_whichOneof(0)); @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => clearField(1); @$pb.TagNumber(2) $7.DataType get dtype => $_getN(1); @$pb.TagNumber(2) set dtype($7.DataType v) { setField(2, v); } @$pb.TagNumber(2) $core.bool hasDtype() => $_has(1); @$pb.TagNumber(2) void clearDtype() => clearField(2); @$pb.TagNumber(3) $5.TensorShapeProto get tensorShape => $_getN(2); @$pb.TagNumber(3) set tensorShape($5.TensorShapeProto v) { setField(3, v); } @$pb.TagNumber(3) $core.bool hasTensorShape() => $_has(2); @$pb.TagNumber(3) void clearTensorShape() => clearField(3); @$pb.TagNumber(3) $5.TensorShapeProto ensureTensorShape() => $_ensure(2); @$pb.TagNumber(4) TensorInfo_CooSparse get cooSparse => $_getN(3); @$pb.TagNumber(4) set cooSparse(TensorInfo_CooSparse v) { setField(4, v); } @$pb.TagNumber(4) $core.bool hasCooSparse() => $_has(3); @$pb.TagNumber(4) void clearCooSparse() => clearField(4); @$pb.TagNumber(4) TensorInfo_CooSparse ensureCooSparse() => $_ensure(3); @$pb.TagNumber(5) TensorInfo_CompositeTensor get compositeTensor => $_getN(4); @$pb.TagNumber(5) set compositeTensor(TensorInfo_CompositeTensor v) { setField(5, v); } @$pb.TagNumber(5) $core.bool hasCompositeTensor() => $_has(4); @$pb.TagNumber(5) void clearCompositeTensor() => clearField(5); @$pb.TagNumber(5) TensorInfo_CompositeTensor ensureCompositeTensor() => $_ensure(4); } class SignatureDef extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'SignatureDef', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..m<$core.String, TensorInfo>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'inputs', entryClassName: 'SignatureDef.InputsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: TensorInfo.create, packageName: const $pb.PackageName('tensorflow')) ..m<$core.String, TensorInfo>( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'outputs', entryClassName: 'SignatureDef.OutputsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: TensorInfo.create, packageName: const $pb.PackageName('tensorflow')) ..aOS( 3, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'methodName') ..hasRequiredFields = false; SignatureDef._() : super(); factory SignatureDef({ $core.Map<$core.String, TensorInfo>? inputs, $core.Map<$core.String, TensorInfo>? outputs, $core.String? methodName, }) { final _result = create(); if (inputs != null) { _result.inputs.addAll(inputs); } if (outputs != null) { _result.outputs.addAll(outputs); } if (methodName != null) { _result.methodName = methodName; } return _result; } factory SignatureDef.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory SignatureDef.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') SignatureDef clone() => SignatureDef()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') SignatureDef copyWith(void Function(SignatureDef) updates) => super.copyWith((message) => updates(message as SignatureDef)) as SignatureDef; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static SignatureDef create() => SignatureDef._(); SignatureDef createEmptyInstance() => create(); static $pb.PbList<SignatureDef> createRepeated() => $pb.PbList<SignatureDef>(); @$core.pragma('dart2js:noInline') static SignatureDef getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SignatureDef>(create); static SignatureDef? _defaultInstance; @$pb.TagNumber(1) $core.Map<$core.String, TensorInfo> get inputs => $_getMap(0); @$pb.TagNumber(2) $core.Map<$core.String, TensorInfo> get outputs => $_getMap(1); @$pb.TagNumber(3) $core.String get methodName => $_getSZ(2); @$pb.TagNumber(3) set methodName($core.String v) { $_setString(2, v); } @$pb.TagNumber(3) $core.bool hasMethodName() => $_has(2); @$pb.TagNumber(3) void clearMethodName() => clearField(3); } class AssetFileDef extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'AssetFileDef', package: const $pb.PackageName( const $core.bool.fromEnvironment('protobuf.omit_message_names') ? '' : 'tensorflow'), createEmptyInstance: create) ..aOM<TensorInfo>( 1, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'tensorInfo', subBuilder: TensorInfo.create) ..aOS( 2, const $core.bool.fromEnvironment('protobuf.omit_field_names') ? '' : 'filename') ..hasRequiredFields = false; AssetFileDef._() : super(); factory AssetFileDef({ TensorInfo? tensorInfo, $core.String? filename, }) { final _result = create(); if (tensorInfo != null) { _result.tensorInfo = tensorInfo; } if (filename != null) { _result.filename = filename; } return _result; } factory AssetFileDef.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory AssetFileDef.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') AssetFileDef clone() => AssetFileDef()..mergeFromMessage(this); @$core.Deprecated('Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') AssetFileDef copyWith(void Function(AssetFileDef) updates) => super.copyWith((message) => updates(message as AssetFileDef)) as AssetFileDef; // ignore: deprecated_member_use $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static AssetFileDef create() => AssetFileDef._(); AssetFileDef createEmptyInstance() => create(); static $pb.PbList<AssetFileDef> createRepeated() => $pb.PbList<AssetFileDef>(); @$core.pragma('dart2js:noInline') static AssetFileDef getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AssetFileDef>(create); static AssetFileDef? _defaultInstance; @$pb.TagNumber(1) TensorInfo get tensorInfo => $_getN(0); @$pb.TagNumber(1) set tensorInfo(TensorInfo v) { setField(1, v); } @$pb.TagNumber(1) $core.bool hasTensorInfo() => $_has(0); @$pb.TagNumber(1) void clearTensorInfo() => clearField(1); @$pb.TagNumber(1) TensorInfo ensureTensorInfo() => $_ensure(0); @$pb.TagNumber(2) $core.String get filename => $_getSZ(1); @$pb.TagNumber(2) set filename($core.String v) { $_setString(1, v); } @$pb.TagNumber(2) $core.bool hasFilename() => $_has(1); @$pb.TagNumber(2) void clearFilename() => clearField(2); }
codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/protobuf/meta_graph.pb.dart/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/protobuf/meta_graph.pb.dart", "repo_id": "codelabs", "token_count": 21553 }
58
/// // Generated code. Do not modify. // source: tensorflow_serving/apis/classification.proto // // @dart = 2.12 // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/classification.pbenum.dart/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/classification.pbenum.dart", "repo_id": "codelabs", "token_count": 117 }
59
/// // Generated code. Do not modify. // source: tensorflow_serving/apis/predict.proto // // @dart = 2.12 // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields,deprecated_member_use_from_same_package import 'dart:core' as $core; import 'dart:convert' as $convert; import 'dart:typed_data' as $typed_data; @$core.Deprecated('Use predictRequestDescriptor instead') const PredictRequest$json = const { '1': 'PredictRequest', '2': const [ const { '1': 'model_spec', '3': 1, '4': 1, '5': 11, '6': '.tensorflow.serving.ModelSpec', '10': 'modelSpec' }, const { '1': 'inputs', '3': 2, '4': 3, '5': 11, '6': '.tensorflow.serving.PredictRequest.InputsEntry', '10': 'inputs' }, const {'1': 'output_filter', '3': 3, '4': 3, '5': 9, '10': 'outputFilter'}, ], '3': const [PredictRequest_InputsEntry$json], }; @$core.Deprecated('Use predictRequestDescriptor instead') const PredictRequest_InputsEntry$json = const { '1': 'InputsEntry', '2': const [ const {'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'}, const { '1': 'value', '3': 2, '4': 1, '5': 11, '6': '.tensorflow.TensorProto', '10': 'value' }, ], '7': const {'7': true}, }; /// Descriptor for `PredictRequest`. Decode as a `google.protobuf.DescriptorProto`. final $typed_data.Uint8List predictRequestDescriptor = $convert.base64Decode( 'Cg5QcmVkaWN0UmVxdWVzdBI8Cgptb2RlbF9zcGVjGAEgASgLMh0udGVuc29yZmxvdy5zZXJ2aW5nLk1vZGVsU3BlY1IJbW9kZWxTcGVjEkYKBmlucHV0cxgCIAMoCzIuLnRlbnNvcmZsb3cuc2VydmluZy5QcmVkaWN0UmVxdWVzdC5JbnB1dHNFbnRyeVIGaW5wdXRzEiMKDW91dHB1dF9maWx0ZXIYAyADKAlSDG91dHB1dEZpbHRlchpSCgtJbnB1dHNFbnRyeRIQCgNrZXkYASABKAlSA2tleRItCgV2YWx1ZRgCIAEoCzIXLnRlbnNvcmZsb3cuVGVuc29yUHJvdG9SBXZhbHVlOgI4AQ=='); @$core.Deprecated('Use predictResponseDescriptor instead') const PredictResponse$json = const { '1': 'PredictResponse', '2': const [ const { '1': 'model_spec', '3': 2, '4': 1, '5': 11, '6': '.tensorflow.serving.ModelSpec', '10': 'modelSpec' }, const { '1': 'outputs', '3': 1, '4': 3, '5': 11, '6': '.tensorflow.serving.PredictResponse.OutputsEntry', '10': 'outputs' }, ], '3': const [PredictResponse_OutputsEntry$json], }; @$core.Deprecated('Use predictResponseDescriptor instead') const PredictResponse_OutputsEntry$json = const { '1': 'OutputsEntry', '2': const [ const {'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'}, const { '1': 'value', '3': 2, '4': 1, '5': 11, '6': '.tensorflow.TensorProto', '10': 'value' }, ], '7': const {'7': true}, }; /// Descriptor for `PredictResponse`. Decode as a `google.protobuf.DescriptorProto`. final $typed_data.Uint8List predictResponseDescriptor = $convert.base64Decode( 'Cg9QcmVkaWN0UmVzcG9uc2USPAoKbW9kZWxfc3BlYxgCIAEoCzIdLnRlbnNvcmZsb3cuc2VydmluZy5Nb2RlbFNwZWNSCW1vZGVsU3BlYxJKCgdvdXRwdXRzGAEgAygLMjAudGVuc29yZmxvdy5zZXJ2aW5nLlByZWRpY3RSZXNwb25zZS5PdXRwdXRzRW50cnlSB291dHB1dHMaUwoMT3V0cHV0c0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5Ei0KBXZhbHVlGAIgASgLMhcudGVuc29yZmxvdy5UZW5zb3JQcm90b1IFdmFsdWU6AjgB');
codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/predict.pbjson.dart/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/predict.pbjson.dart", "repo_id": "codelabs", "token_count": 1718 }
60
syntax = "proto3"; package tensorflow; import "tensorflow/core/framework/attr_value.proto"; import "tensorflow/core/framework/full_type.proto"; option cc_enable_arenas = true; option java_outer_classname = "NodeProto"; option java_multiple_files = true; option java_package = "org.tensorflow.framework"; option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/framework/node_def_go_proto"; message NodeDef { // The name given to this operator. Used for naming inputs, // logging, visualization, etc. Unique within a single GraphDef. // Must match the regexp "[A-Za-z0-9.][A-Za-z0-9_>./]*". string name = 1; // The operation name. There may be custom parameters in attrs. // Op names starting with an underscore are reserved for internal use. string op = 2; // Each input is "node:src_output" with "node" being a string name and // "src_output" indicating which output tensor to use from "node". If // "src_output" is 0 the ":0" suffix can be omitted. Regular inputs // may optionally be followed by control inputs that have the format // "^node". repeated string input = 3; // A (possibly partial) specification for the device on which this // node should be placed. // The expected syntax for this string is as follows: // // DEVICE_SPEC ::= PARTIAL_SPEC // // PARTIAL_SPEC ::= ("/" CONSTRAINT) * // CONSTRAINT ::= ("job:" JOB_NAME) // | ("replica:" [1-9][0-9]*) // | ("task:" [1-9][0-9]*) // | ("device:" [A-Za-z]* ":" ([1-9][0-9]* | "*") ) // // Valid values for this string include: // * "/job:worker/replica:0/task:1/device:GPU:3" (full specification) // * "/job:worker/device:GPU:3" (partial specification) // * "" (no specification) // // If the constraints do not resolve to a single device (or if this // field is empty or not present), the runtime will attempt to // choose a device automatically. string device = 4; // Operation-specific graph-construction-time configuration. // Note that this should include all attrs defined in the // corresponding OpDef, including those with a value matching // the default -- this allows the default to change and makes // NodeDefs easier to interpret on their own. However, if // an attr with a default is not specified in this list, the // default will be used. // The "names" (keys) must match the regexp "[a-z][a-z0-9_]+" (and // one of the names from the corresponding OpDef's attr field). // The values must have a type matching the corresponding OpDef // attr's type field. // TODO(josh11b): Add some examples here showing best practices. map<string, AttrValue> attr = 5; message ExperimentalDebugInfo { // Opaque string inserted into error messages created by the runtime. // // This is intended to store the list of names of the nodes from the // original graph that this node was derived. For example if this node, say // C, was result of a fusion of 2 nodes A and B, then 'original_node' would // be {A, B}. This information can be used to map errors originating at the // current node to some top level source code. repeated string original_node_names = 1; // This is intended to store the list of names of the functions from the // original graph that this node was derived. For example if this node, say // C, was result of a fusion of node A in function FA and node B in function // FB, then `original_funcs` would be {FA, FB}. If the node is in the top // level graph, the `original_func` is empty. This information, with the // `original_node_names` can be used to map errors originating at the // current ndoe to some top level source code. repeated string original_func_names = 2; } // This stores debug information associated with the node. ExperimentalDebugInfo experimental_debug_info = 6; // The complete type of this node. Experimental and subject to change. // Currently, the field only contains the return types of the node. That will // extend in the future to contain the entire signature of the node, as a // function type. FullTypeDef experimental_type = 7; }
codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/node_def.proto/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/framework/node_def.proto", "repo_id": "codelabs", "token_count": 1331 }
61
// Input used in serving APIs. Based on the tensorflow.Example family of // feature representations. syntax = "proto3"; option cc_enable_arenas = true; import "tensorflow/core/example/example.proto"; package tensorflow.serving; // Specifies one or more fully independent input Examples. // See examples at: // https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/example/example.proto message ExampleList { repeated tensorflow.Example examples = 1; } // Specifies one or more independent input Examples, with a common context // Example. // // The common use case for context is to cleanly and optimally specify some // features that are common across multiple examples. // // See example below with a search query as the context and multiple restaurants // to perform some inference on. // // context: { // features: { // feature: { // key : "query" // value: { // bytes_list: { // value: [ "pizza" ] // } // } // } // } // } // examples: { // features: { // feature: { // key : "cuisine" // value: { // bytes_list: { // value: [ "Pizzeria" ] // } // } // } // } // } // examples: { // features: { // feature: { // key : "cuisine" // value: { // bytes_list: { // value: [ "Taqueria" ] // } // } // } // } // } // // Implementations of ExampleListWithContext merge the context Example into each // of the Examples. Note that feature keys must not be duplicated between the // Examples and context Example, or the behavior is undefined. // // See also: // tensorflow/core/example/example.proto // https://developers.google.com/protocol-buffers/docs/proto3#maps message ExampleListWithContext { repeated tensorflow.Example examples = 1; tensorflow.Example context = 2; } message Input { oneof kind { ExampleList example_list = 1 [lazy = true]; ExampleListWithContext example_list_with_context = 2 [lazy = true]; } }
codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow_serving/apis/input.proto/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow_serving/apis/input.proto", "repo_id": "codelabs", "token_count": 763 }
62
#include "ephemeral/Flutter-Generated.xcconfig"
codelabs/tfserving-flutter/codelab2/starter/macos/Flutter/Flutter-Release.xcconfig/0
{ "file_path": "codelabs/tfserving-flutter/codelab2/starter/macos/Flutter/Flutter-Release.xcconfig", "repo_id": "codelabs", "token_count": 19 }
63
// Copyright 2023 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // GENERATED CODE - DO NOT MODIFY BY HAND part of 'client_secret.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ClientSecret _$ClientSecretFromJson(Map<String, dynamic> json) => ClientSecret( ClientSecretInstalled.fromJson(json['installed'] as Map<String, dynamic>), ); Map<String, dynamic> _$ClientSecretToJson(ClientSecret instance) => <String, dynamic>{ 'installed': instance.installed, }; ClientSecretInstalled _$ClientSecretInstalledFromJson( Map<String, dynamic> json) => ClientSecretInstalled( json['client_id'] as String, json['project_id'] as String, json['auth_uri'] as String, json['token_uri'] as String, json['auth_provider_x509_cert_url'] as String, json['client_secret'] as String, (json['redirect_uris'] as List<dynamic>).map((e) => e as String).toList(), ); Map<String, dynamic> _$ClientSecretInstalledToJson( ClientSecretInstalled instance) => <String, dynamic>{ 'client_id': instance.clientId, 'project_id': instance.projectId, 'auth_uri': instance.authUri, 'token_uri': instance.tokenUri, 'auth_provider_x509_cert_url': instance.authProviderX509CertUrl, 'client_secret': instance.clientSecret, 'redirect_uris': instance.redirectUris, };
codelabs/tooling/claat_export_images/lib/client_secret.g.dart/0
{ "file_path": "codelabs/tooling/claat_export_images/lib/client_secret.g.dart", "repo_id": "codelabs", "token_count": 553 }
64
org.gradle.jvmargs=-Xmx4G android.useAndroidX=true android.enableJetifier=true
codelabs/webview_flutter/step_07/android/gradle.properties/0
{ "file_path": "codelabs/webview_flutter/step_07/android/gradle.properties", "repo_id": "codelabs", "token_count": 30 }
65
# Dart & Flutter DevTools [![Build Status](https://github.com/flutter/devtools/workflows/devtools/badge.svg)](https://github.com/flutter/devtools/actions) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/flutter/devtools/badge)](https://deps.dev/project/github/flutter%2Fdevtools) ## What is this? [Dart & Flutter DevTools](https://flutter.dev/docs/development/tools/devtools/) is a suite of performance tools for Dart and Flutter. ## Getting started For documentation on installing and trying out DevTools, please see our [docs](https://flutter.dev/docs/development/tools/devtools/). ## Contributing and development Contributions welcome! See our [contributing page](https://github.com/flutter/devtools/blob/master/CONTRIBUTING.md) for an overview of how to build and contribute to the project. ## Terms and Privacy By using Dart DevTools, you agree to the [Google Terms of Service](https://policies.google.com/terms). To understand how we use data collected from this service, see the [Google Privacy Policy](https://policies.google.com/privacy?hl=en).
devtools/README.md/0
{ "file_path": "devtools/README.md", "repo_id": "devtools", "token_count": 329 }
66
#import "GeneratedPluginRegistrant.h"
devtools/case_study/code_size/optimized/code_size_images/ios/Runner/Runner-Bridging-Header.h/0
{ "file_path": "devtools/case_study/code_size/optimized/code_size_images/ios/Runner/Runner-Bridging-Header.h", "repo_id": "devtools", "token_count": 13 }
67
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta content="IE=Edge" http-equiv="X-UA-Compatible"> <meta name="description" content="A new Flutter project."> <!-- iOS meta tags & icons --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-title" content="code_size_package"> <link rel="apple-touch-icon" href="icons/Icon-192.png"> <!-- Favicon --> <link rel="shortcut icon" type="image/png" href="favicon.png"/> <title>code_size_package</title> <link rel="manifest" href="manifest.json"> </head> <body> <!-- This script installs service_worker.js to provide PWA functionality to application. For more information, see: https://developers.google.com/web/fundamentals/primers/service-workers --> <script> if ('serviceWorker' in navigator) { window.addEventListener('load', function () { navigator.serviceWorker.register('flutter_service_worker.js'); }); } </script> <script src="main.dart.js" type="application/javascript"></script> </body> </html>
devtools/case_study/code_size/optimized/code_size_package/web/index.html/0
{ "file_path": "devtools/case_study/code_size/optimized/code_size_package/web/index.html", "repo_id": "devtools", "token_count": 404 }
68
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:developer' as developer; import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: const MyHomePage( title: 'Flutter Memory Case Study #1', ), // showPerformanceOverlay: true, ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, this.title = ""}); final String title; @override State<MyHomePage> createState() => MyHomePageState(); } int globalObjectId = 0; class ObjectWithUniqueId { ObjectWithUniqueId() : now = DateTime.now(), uniqueId = globalObjectId++; DateTime now = DateTime.now(); int uniqueId = globalObjectId++; @override String toString() => 'Collected @ $now, id=$uniqueId'; } class MyHomePageState extends State<MyHomePage> with SingleTickerProviderStateMixin { late TabController _tabController; List tabs = ['1', '2', '3']; @override void initState() { super.initState(); _tabController = TabController(length: tabs.length, vsync: this); } final objects = <ObjectWithUniqueId>[]; void devToolsPostEvent(String eventName, Map<String, Object> eventData) { developer.postEvent('DevTools.Event_$eventName', eventData); objects.add(ObjectWithUniqueId()); } Widget recordLoadedImage(ImageChunkEvent imageChunkEvent, String imageUrl) { devToolsPostEvent('MyFirstApp', { 'method': 'recordLoadedImage', 'param': imageUrl, }); // if (imageChunkEvent == null) return null; final recordLoading = loadedImages.putIfAbsent(imageUrl, () { developer.log( 'Start loading total: ${imageChunkEvent.expectedTotalBytes},' ' chunk: ${imageChunkEvent.cumulativeBytesLoaded}' ' image: $imageUrl', ); return imageChunkEvent; }); final expectedTotalBytes = recordLoading.expectedTotalBytes; final cumulativeBytes = recordLoading.cumulativeBytesLoaded; final loadingState = cumulativeBytes == expectedTotalBytes ? 'Loaded.' : 'Still Loading, $cumulativeBytes of $expectedTotalBytes bytes.'; developer.log('$loadingState, $imageUrl'); // Progress spinner. return Center( child: CircularProgressIndicator( value: expectedTotalBytes != null ? cumulativeBytes / expectedTotalBytes : null, ), ); } @override Widget build(BuildContext context) { // The build method reruns every time setState is called. // // The Flutter framework has been optimized to efficiently run the build. // So that only what needs updating rather than having to individually // change instances of widgets. final scaffold = Scaffold( backgroundColor: Colors.black, appBar: AppBar( title: const Text('Image Viewer'), actions: <Widget>[ IconButton( // action button icon: const Icon(Icons.add), onPressed: () { _jumpNewPage(); }, ) ], bottom: TabBar( controller: _tabController, tabs: tabs.map((e) => Tab(text: e)).toList(), ), ), body: listView(), ); return scaffold; } Widget listView() => ListView.builder( itemCount: allImages.length, itemBuilder: ( BuildContext context, int idx, ) { final imgUrl = allImages[idx]; developer.log('Start Network Load: [$idx] $imgUrl'); final image = Image.network( imgUrl, width: 750.0, height: 500, fit: BoxFit.fitWidth, loadingBuilder: ( BuildContext context, Widget child, ImageChunkEvent? loadingProgress, ) { if (loadingProgress == null) return child; return recordLoadedImage(loadingProgress, imgUrl); }, ); return image; }, ); void _jumpNewPage() { Navigator.push( context, MaterialPageRoute(builder: (context) => const SecondScreen()), ); } } class SecondScreen extends MyHomePage { const SecondScreen({super.key}); } // Loaded images. key is ImageUrl and value is the ImageChunkEvent (total and cumulative bytes loaded). final loadedImages = <String, ImageChunkEvent>{}; List<String> allImages = [ 'https://www.nasa.gov/sites/default/files/images/757100main_iss036e011593_full.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e010102.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e012660.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss059e072286.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e010136.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e010586.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e010616.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e010583.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e009965.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e009535.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e006714.jpg', 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/iss063e006674.jpg', 'https://images-assets.nasa.gov/image/jsc2020e016257/jsc2020e016257~orig.jpg', 'https://images-assets.nasa.gov/image/PIA23872/PIA23872~orig.jpg', 'https://images-assets.nasa.gov/image/S67-50903/S67-50903~orig.jpg', 'https://images-assets.nasa.gov/image/as17-152-23392/as17-152-23392~orig.jpg', 'https://images-assets.nasa.gov/image/6900556/6900556~orig.jpg', 'https://images-assets.nasa.gov/image/as10-34-5026/as10-34-5026~orig.jpg', 'https://images-assets.nasa.gov/image/0201587/0201587~orig.jpg', 'https://images-assets.nasa.gov/image/9802675/9802675~orig.jpg', 'https://images-assets.nasa.gov/image/NM21-396-024/NM21-396-024~orig.jpg', 'https://images-assets.nasa.gov/image/sts119-s-005/sts119-s-005~orig.jpg', 'https://images-assets.nasa.gov/image/9258803/9258803~orig.jpg', 'https://images-assets.nasa.gov/image/PIA03343/PIA03343~orig.jpg', 'https://images-assets.nasa.gov/image/41G-121-099/41G-121-099~orig.jpg', 'https://images-assets.nasa.gov/image/sts066-63-006/sts066-63-006~orig.jpg', 'https://images-assets.nasa.gov/image/PIA02708/PIA02708~orig.jpg', 'https://images-assets.nasa.gov/image/9261132/9261132~orig.jpg', 'https://images-assets.nasa.gov/image/PIA09113/PIA09113~orig.jpg', 'https://images-assets.nasa.gov/image/S65-63189/S65-63189~orig.jpg', 'https://images-assets.nasa.gov/image/S65-34635/S65-34635~orig.jpg', // Hubble: 'https://www.nasa.gov/sites/default/files/styles/full_width_feature/public/thumbnails/image/redspot.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/s109e5101.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/sts103_731_051.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/s82e5718.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/s103e5031.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/sa2.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/solarpanels_unfold.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/s82e5147.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/hubble_orbit_large.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/ann0813.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1809a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic0613a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic0612d.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo1535a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic0720a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo1207a.jpg', // Space Telescope 'https://cdn.spacetelescope.org/archives/images/wallpaper2/heic1815a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo0220a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1708a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1814b.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1814a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo0124a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1613a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1914b.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic2008b.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1904a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo0745a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo9818a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1715a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic0515a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1501a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic0503a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1310a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic1518a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/potw1020a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo9607a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/potw1720a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/sts103s006.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/hst_launch_hi.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/heic0506a.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/opo0510b.jpg', 'https://cdn.spacetelescope.org/archives/images/screen/main_mirror.jpg', // Big images: 'https://images-assets.nasa.gov/image/KSC-20200515-PH-KLS01_0122/KSC-20200515-PH-KLS01_0122~orig.jpg', 'https://images-assets.nasa.gov/image/iss063e010159/iss063e010159~orig.jpg', 'https://images-assets.nasa.gov/image/S69-27915/S69-27915~orig.jpg', 'https://images-assets.nasa.gov/image/7995383/7995383~orig.jpg', 'https://images-assets.nasa.gov/image/as14-67-09369/as14-67-09369~orig.jpg', 'https://images-assets.nasa.gov/image/as09-24-3657/as09-24-3657~orig.jpg', 'https://images-assets.nasa.gov/image/as09-24-3657/as09-24-3657~orig.jpg', 'https://images-assets.nasa.gov/image/9312448/9312448~orig.jpg', 'https://images-assets.nasa.gov/image/as12-48-7034/as12-48-7034~orig.jpg', 'https://images-assets.nasa.gov/image/0600896/0600896~orig.jpg', 'https://images-assets.nasa.gov/image/S69-31741/S69-31741~orig.jpg', 'https://images-assets.nasa.gov/image/as09-24-3641/as09-24-3641~orig.jpg', 'https://images-assets.nasa.gov/image/6901208/6901208~orig.jpg', 'https://images-assets.nasa.gov/image/6862616/6862616~orig.jpg', 'https://images-assets.nasa.gov/image/9407054/9407054~orig.jpg', 'https://images-assets.nasa.gov/image/8909250/8909250~orig.jpg', 'https://images-assets.nasa.gov/image/PIA03388/PIA03388~orig.jpg', 'https://images-assets.nasa.gov/image/PIA03377/PIA03377~orig.jpg', 'https://images-assets.nasa.gov/image/PIA03393/PIA03393~orig.jpg', 'https://images-assets.nasa.gov/image/PIA03395/PIA03395~orig.jpg', 'https://images-assets.nasa.gov/image/ECN-24314/ECN-24314~orig.jpg', 'https://images-assets.nasa.gov/image/ARC-1981-AC81-0083-2/ARC-1981-AC81-0083-2~orig.jpg', 'https://images-assets.nasa.gov/image/8898508/8898508~orig.jpg', 'https://images-assets.nasa.gov/image/PIA06667/PIA06667~orig.jpg', 'https://images-assets.nasa.gov/image/9515816/9515816~orig.jpg', 'https://www.nasa.gov/sites/default/files/thumbnails/image/stsci-h-p2016a-m-2000x1374.png', ];
devtools/case_study/memory_leaks/images_1/lib/main.dart/0
{ "file_path": "devtools/case_study/memory_leaks/images_1/lib/main.dart", "repo_id": "devtools", "token_count": 5075 }
69
import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: const MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({super.key, required this.title}); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { int _counter = 0; final _cachedScreens = <Scaffold>[]; /// Increments counter if current screen contains floating action button. void _incrementCounter(BuildContext context) { if (_cachedScreens.last.floatingActionButton != null) { setState(() => _counter++); } } Scaffold buildScreen(BuildContext context) { final theme = Theme.of(context); return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ const Text( 'The counter value is:', ), MyCounterView(value: _counter), ], ), ), floatingActionButton: FloatingActionButton( onPressed: () => _incrementCounter(context), tooltip: 'Increment counter', foregroundColor: theme.canvasColor, child: const Icon(Icons.add), ), ); } @override Widget build(BuildContext context) { final screen = buildScreen(context); _cachedScreens.add(screen); return screen; } } class MyCounterView extends StatelessWidget { const MyCounterView({super.key, required this.value}); final int value; @override Widget build(BuildContext context) { return Text( '$value', style: Theme.of(context).textTheme.headlineMedium, ); } }
devtools/case_study/memory_leaks/leaking_counter_1/lib/main.dart/0
{ "file_path": "devtools/case_study/memory_leaks/leaking_counter_1/lib/main.dart", "repo_id": "devtools", "token_count": 800 }
70
{ // Adjusted copy of devtools_app/.vscode/launch.json, // made for thouse who prefer to work in the folder `packages` to // see mock errors in devtools_test. "version": "0.2.0", "configurations": [ { "name": "opened test or devtools", "cwd": "devtools_app", "request": "launch", "type": "dart", }, { "name": "devtools", "request": "launch", "type": "dart", "program": "devtools_app/lib/main.dart", }, { "name": "devtools + experiments", "request": "launch", "type": "dart", "program": "devtools_app/lib/main.dart", "args": [ "--dart-define=enable_experiments=true" ], }, { "name": "devtools + profile", "request": "launch", "type": "dart", "program": "devtools_app/lib/main.dart", "flutterMode": "profile", }, { "name": "devtools + profile + experiments", "request": "launch", "type": "dart", "program": "devtools_app/lib/main.dart", "flutterMode": "profile", "args": [ "--dart-define=enable_experiments=true" ], }, { "name": "memory/default", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/scenes/memory/default.stager_app.g.dart", }, { "name": "memory/diff_snapshot", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/scenes/memory/diff_snapshot.stager_app.g.dart", }, { "name": "performance/default", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/scenes/performance/default.stager_app.g.dart", }, { "name": "profiler/default", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/scenes/cpu_profiler/default.stager_app.g.dart", }, { "name": "fixtures/flutter_app", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/fixtures/flutter_app/lib/main.dart", }, { "name": "fixtures/memory_app", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/fixtures/memory_app/lib/main.dart", }, { "name": "standalone_ui/vs_code", "request": "launch", "type": "dart", "program": "devtools_app/test/test_infra/scenes/standalone_ui/vs_code.stager_app.g.dart", }, { "name": "devtools_extensions: foo + sim", "request": "launch", "type": "dart", "program": "devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/main.dart", "args": [ "--dart-define=use_simulated_environment=true" ], }, { "name": "devtools_extensions: dart_foo + sim", "request": "launch", "type": "dart", "program": "devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo_devtools_extension/lib/main.dart", "args": [ "--dart-define=use_simulated_environment=true" ], }, { "name": "devtools_extensions: app_that_uses_foo", "request": "launch", "type": "dart", "program": "devtools_extensions/example/app_that_uses_foo/lib/main.dart", }, { "name": "devtools_extensions: app_that_uses_foo - bin", "request": "launch", "type": "dart", "program": "devtools_extensions/example/app_that_uses_foo/bin/script.dart", }, { "name": "attach", "type": "dart", "request": "attach", }, { "name": "foo_devtools_extension example + simulated environment", "request": "launch", "type": "dart", "program": "devtools_extensions/example/foo/packages/foo_devtools_extension/lib/main.dart", "args": [ "--dart-define=use_simulated_environment=true" ], }, ] }
devtools/packages/.vscode/launch.json/0
{ "file_path": "devtools/packages/.vscode/launch.json", "repo_id": "devtools", "token_count": 2519 }
71
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:web_benchmarks/client.dart'; import 'common.dart'; import 'devtools_recorder.dart'; typedef RecorderFactory = Recorder Function(); final Map<String, RecorderFactory> benchmarks = <String, RecorderFactory>{ DevToolsBenchmark.navigateThroughOfflineScreens.id: () => DevToolsRecorder( benchmark: DevToolsBenchmark.navigateThroughOfflineScreens, ), DevToolsBenchmark.offlineCpuProfilerScreen.id: () => DevToolsRecorder( benchmark: DevToolsBenchmark.offlineCpuProfilerScreen, ), DevToolsBenchmark.offlinePerformanceScreen.id: () => DevToolsRecorder( benchmark: DevToolsBenchmark.offlinePerformanceScreen, ), }; /// Runs the client of the DevTools web benchmarks. /// /// When the DevTools web benchmarks are run, the server builds an app with this /// file as the entry point (see `run_benchmarks.dart`). The app automates /// the DevTools web app, records some performance data, and reports them. Future<void> main() async { await runBenchmarks(benchmarks, initialPage: benchmarkInitialPage); }
devtools/packages/devtools_app/benchmark/test_infra/client.dart/0
{ "file_path": "devtools/packages/devtools_app/benchmark/test_infra/client.dart", "repo_id": "devtools", "token_count": 370 }
72
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> <g fill="none" fill-rule="evenodd"> <path fill="#AFB1B3" d="M3,3 L13,3 L13,13 L3,13 L3,3 Z M4,4 L4,12 L12,12 L12,4 L4,4 Z"/> <rect width="1" height="10" x="1" y="3" fill="#AFB1B3"/> <rect width="1" height="10" x="14" y="3" fill="#AFB1B3"/> </g> </svg>
devtools/packages/devtools_app/icons/general/tbShown_dark.svg/0
{ "file_path": "devtools/packages/devtools_app/icons/general/tbShown_dark.svg", "repo_id": "devtools", "token_count": 181 }
73
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_extensions/api.dart'; import 'package:devtools_shared/devtools_extensions.dart'; import '_controller_desktop.dart' if (dart.library.js_interop) '_controller_web.dart'; EmbeddedExtensionControllerImpl createEmbeddedExtensionController( DevToolsExtensionConfig config, ) { return EmbeddedExtensionControllerImpl(config); } abstract class EmbeddedExtensionController extends DisposableController { EmbeddedExtensionController(this.extensionConfig); final DevToolsExtensionConfig extensionConfig; void init() {} void postMessage( DevToolsExtensionEventType type, { Map<String, String> data = const <String, String>{}, }) {} }
devtools/packages/devtools_app/lib/src/extensions/embedded/controller.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/extensions/embedded/controller.dart", "repo_id": "devtools", "token_count": 265 }
74
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import '../app.dart'; import '../extensions/extension_settings.dart'; import '../screens/debugger/debugger_screen.dart'; import '../shared/analytics/prompt.dart'; import '../shared/banner_messages.dart'; import '../shared/config_specific/drag_and_drop/drag_and_drop.dart'; import '../shared/config_specific/import_export/import_export.dart'; import '../shared/console/widgets/console_pane.dart'; import '../shared/feature_flags.dart'; import '../shared/framework_controller.dart'; import '../shared/globals.dart'; import '../shared/routing.dart'; import '../shared/screen.dart'; import '../shared/title.dart'; import '../shared/utils.dart'; import 'about_dialog.dart'; import 'app_bar.dart'; import 'report_feedback_button.dart'; import 'settings_dialog.dart'; import 'status_line.dart'; /// Scaffolding for a screen and navigation in the DevTools App. /// /// This widget will host Screen widgets. /// /// [DevToolsApp] defines the collections of [Screen]s to show in a scaffold /// for different routes. class DevToolsScaffold extends StatefulWidget { DevToolsScaffold({ Key? key, required this.screens, this.page, List<Widget>? actions, this.embed = false, }) : actions = actions ?? defaultActions(), super(key: key); DevToolsScaffold.withChild({ Key? key, required Widget child, bool embed = false, List<Widget>? actions, }) : this( key: key, screens: [SimpleScreen(child)], actions: actions, embed: embed, ); static List<Widget> defaultActions({Color? color}) => [ OpenSettingsAction(color: color), if (FeatureFlags.devToolsExtensions) ExtensionSettingsAction(color: color), ReportFeedbackButton(color: color), OpenAboutAction(color: color), ]; /// The padding around the content in the DevTools UI. EdgeInsets get appPadding => EdgeInsets.fromLTRB( horizontalPadding.left, isEmbedded() ? 2.0 : intermediateSpacing, horizontalPadding.right, isEmbedded() ? 0.0 : intermediateSpacing, ); // Note: when changing this value, also update `flameChartContainerOffset` // from flame_chart.dart. /// Horizontal padding around the content in the DevTools UI. static EdgeInsets get horizontalPadding => EdgeInsets.symmetric(horizontal: isEmbedded() ? 2.0 : 16.0); /// All of the [Screen]s that it's possible to navigate to from this Scaffold. final List<Screen> screens; /// The page being rendered. final String? page; /// Whether to render the embedded view (without the header). final bool embed; /// Actions that it's possible to perform in this Scaffold. /// /// These will generally be [RegisteredServiceExtensionButton]s. final List<Widget>? actions; @override State<StatefulWidget> createState() => DevToolsScaffoldState(); } class DevToolsScaffoldState extends State<DevToolsScaffold> with AutoDisposeMixin, TickerProviderStateMixin { /// A tag used for [Hero] widgets to keep the [AppBar] in the same place /// across route transitions. static const Object _appBarTag = 'DevTools AppBar'; /// The controller for animating between tabs. /// /// This will be passed to both the [TabBar] and the [TabBarView] widgets to /// coordinate their animation when the tab selection changes. TabController? _tabController; late Screen _currentScreen; late ImportController _importController; @override void initState() { super.initState(); addAutoDisposeListener(devToolsTitle); _setupTabController(); addAutoDisposeListener(offlineController.offlineMode); autoDisposeStreamSubscription( frameworkController.onShowPageId.listen(_showPageById), ); } @override void didUpdateWidget(DevToolsScaffold oldWidget) { super.didUpdateWidget(oldWidget); if (widget.screens.length != oldWidget.screens.length) { var newIndex = 0; // Stay on the current tab if possible when the collection of tabs changes. if (_tabController != null && widget.screens.contains(oldWidget.screens[_tabController!.index])) { newIndex = widget.screens.indexOf(oldWidget.screens[_tabController!.index]); } // Create a new tab controller to reflect the changed tabs. _setupTabController(startingIndex: newIndex); } else if (widget.screens[_tabController!.index].screenId != widget.page) { // If the page changed (eg. the route was modified by pressing back in the // browser), animate to the new one. var newIndex = widget.page == null ? 0 // When there's no supplied page, we show the first one. : widget.screens.indexWhere((t) => t.screenId == widget.page); // Ensure the returned index is in range, otherwise set to 0. if (newIndex == -1) { newIndex = 0; } _tabController!.animateTo(newIndex); } } @override void didChangeDependencies() { super.didChangeDependencies(); _importController = ImportController(_pushSnapshotScreenForImport); // This needs to be called at the scaffold level because we need an instance // of Notifications above this context. surveyService.maybeShowSurveyPrompt(); } @override void dispose() { _tabController?.dispose(); super.dispose(); } void _setupTabController({int startingIndex = 0}) { _tabController?.dispose(); _tabController = TabController( initialIndex: startingIndex, length: widget.screens.length, vsync: this, ); if (widget.page != null) { final initialIndex = widget.screens.indexWhere((screen) => screen.screenId == widget.page); if (initialIndex != -1) { _tabController!.index = initialIndex; } } _currentScreen = widget.screens[_tabController!.index]; _tabController!.addListener(() { final screen = widget.screens[_tabController!.index]; if (_currentScreen != screen) { setState(() { _currentScreen = screen; }); // Send the page change info to the framework controller (it can then // send it on to the devtools server, if one is connected). frameworkController.notifyPageChange( PageChangeEvent(screen.screenId, widget.embed), ); // Clear error count when navigating to a screen. serviceConnection.errorBadgeManager.clearErrors(screen.screenId); // Update routing with the change. WidgetsBinding.instance.addPostFrameCallback((timeStamp) { final routerDelegate = DevToolsRouterDelegate.of(context); routerDelegate.navigateIfNotCurrent(screen.screenId); }); } }); // If we had no explicit page, we want to write one into the URL but // without triggering a navigation. Since we can't nagivate during a build // we have to wrap this in `Future.microtask`. if (widget.page == null && _currentScreen is! SimpleScreen) { WidgetsBinding.instance.addPostFrameCallback((_) { final routerDelegate = DevToolsRouterDelegate.of(context); Router.neglect(context, () { routerDelegate.navigateIfNotCurrent( _currentScreen.screenId, routerDelegate.currentConfiguration?.args, routerDelegate.currentConfiguration?.state, ); }); }); } // Broadcast the initial page. frameworkController.notifyPageChange( PageChangeEvent(_currentScreen.screenId, widget.embed), ); } /// Switch to the given page ID. This request usually comes from the server API /// for example if the user clicks the Inspector button in the IDE and DevTools /// is already open on the Memory page, it should transition to the Inspector page. void _showPageById(String pageId) { final existingTabIndex = _tabController!.index; final newIndex = widget.screens.indexWhere((screen) => screen.screenId == pageId); if (newIndex != -1 && newIndex != existingTabIndex) { DevToolsRouterDelegate.of(context).navigateIfNotCurrent(pageId); } } /// Pushes the snapshot screen for an offline import. void _pushSnapshotScreenForImport(String screenId) { final args = {'screen': screenId}; final routerDelegate = DevToolsRouterDelegate.of(context); if (!offlineController.offlineMode.value) { routerDelegate.navigate(snapshotScreenId, args); } else { // If we are already in offline mode, we need to replace the existing page // so clicking Back does not go through all of the old snapshots. // Router.neglect will cause the router to ignore this change, so // dragging a new export into the browser will not result in a new // history entry. Router.neglect( context, () => routerDelegate.navigate(snapshotScreenId, args), ); } } @override Widget build(BuildContext context) { // Build the screens for each tab and wrap them in the appropriate styling. final tabBodies = [ for (var screen in widget.screens) Align( alignment: Alignment.topLeft, child: FocusScope( child: AnalyticsPrompt( child: BannerMessages( screen: screen, ), ), ), ), ]; final content = Stack( children: [ TabBarView( physics: defaultTabBarViewPhysics, controller: _tabController, children: tabBodies, ), if (serviceConnection.serviceManager.connectedAppInitialized && !serviceConnection .serviceManager.connectedApp!.isProfileBuildNow! && !offlineController.offlineMode.value && _currentScreen.showFloatingDebuggerControls) Container( alignment: Alignment.topCenter, child: const FloatingDebuggerControls(), ), ], ); return Provider<ImportController>.value( value: _importController, builder: (context, _) { final showConsole = serviceConnection.serviceManager.connectedAppInitialized && !offlineController.offlineMode.value && _currentScreen.showConsole(widget.embed); return DragAndDrop( handleDrop: _importController.importData, child: KeyboardShortcuts( keyboardShortcuts: _currentScreen.buildKeyboardShortcuts( context, ), child: Scaffold( appBar: widget.embed ? null : PreferredSize( preferredSize: Size.fromHeight(defaultToolbarHeight), // Place the AppBar inside of a Hero widget to keep it the same across // route transitions. child: Hero( tag: _appBarTag, child: DevToolsAppBar( tabController: _tabController, screens: widget.screens, actions: widget.actions, ), ), ), body: OutlineDecoration.onlyTop( child: Padding( padding: widget.appPadding, child: showConsole ? SplitPane( axis: Axis.vertical, splitters: [ ConsolePaneHeader(), ], initialFractions: const [0.8, 0.2], children: [ Padding( padding: const EdgeInsets.only( bottom: intermediateSpacing, ), child: content, ), RoundedOutlinedBorder.onlyBottom( child: const ConsolePane(), ), ], ) : content, ), ), bottomNavigationBar: StatusLine( currentScreen: _currentScreen, isEmbedded: widget.embed, isConnected: serviceConnection.serviceManager.hasConnection && serviceConnection.serviceManager.connectedAppInitialized, ), ), ), ); }, ); } } class KeyboardShortcuts extends StatefulWidget { const KeyboardShortcuts({ super.key, required this.keyboardShortcuts, required this.child, }); final ShortcutsConfiguration keyboardShortcuts; final Widget child; @override KeyboardShortcutsState createState() => KeyboardShortcutsState(); } class KeyboardShortcutsState extends State<KeyboardShortcuts> with AutoDisposeMixin { late final FocusNode _focusNode; @override void initState() { super.initState(); _focusNode = FocusNode(debugLabel: 'keyboard-shortcuts'); autoDisposeFocusNode(_focusNode); } @override Widget build(BuildContext context) { if (widget.keyboardShortcuts.isEmpty) { return widget.child; } return GestureDetector( behavior: HitTestBehavior.opaque, onTap: () => FocusScope.of(context).requestFocus(_focusNode), child: FocusableActionDetector( shortcuts: widget.keyboardShortcuts.shortcuts, actions: widget.keyboardShortcuts.actions, autofocus: true, focusNode: _focusNode, child: widget.child, ), ); } } class SimpleScreen extends Screen { SimpleScreen(this.child) : super( id, showFloatingDebuggerControls: false, ); static final id = ScreenMetaData.simple.id; final Widget child; @override Widget buildScreenBody(BuildContext context) { return child; } }
devtools/packages/devtools_app/lib/src/framework/scaffold.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/framework/scaffold.dart", "repo_id": "devtools", "token_count": 5774 }
75
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:codicon/codicon.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart' hide Stack; import 'package:flutter/scheduler.dart'; import 'package:provider/provider.dart'; import 'package:vm_service/vm_service.dart'; import '../../shared/analytics/analytics.dart' as ga; import '../../shared/analytics/constants.dart' as gac; import '../../shared/common_widgets.dart'; import '../../shared/diagnostics/primitives/source_location.dart'; import '../../shared/globals.dart'; import '../../shared/primitives/listenable.dart'; import '../../shared/primitives/utils.dart'; import '../../shared/routing.dart'; import '../../shared/screen.dart'; import '../../shared/utils.dart'; import 'breakpoints.dart'; import 'call_stack.dart'; import 'codeview.dart'; import 'codeview_controller.dart'; import 'controls.dart'; import 'debugger_controller.dart'; import 'debugger_model.dart'; import 'key_sets.dart'; import 'program_explorer.dart'; import 'program_explorer_model.dart'; import 'variables.dart'; class DebuggerScreen extends Screen { DebuggerScreen() : super.fromMetaData( ScreenMetaData.debugger, showFloatingDebuggerControls: false, ); static final id = ScreenMetaData.debugger.id; @override bool showConsole(bool embed) => true; @override ShortcutsConfiguration buildKeyboardShortcuts(BuildContext context) { final controller = Provider.of<DebuggerController>(context); final shortcuts = <LogicalKeySet, Intent>{ goToLineNumberKeySet: GoToLineNumberIntent(context, controller), searchInFileKeySet: SearchInFileIntent(controller), escapeKeySet: EscapeIntent(controller), openFileKeySet: OpenFileIntent(controller), }; final actions = <Type, Action<Intent>>{ GoToLineNumberIntent: GoToLineNumberAction(), SearchInFileIntent: SearchInFileAction(), EscapeIntent: EscapeAction(), OpenFileIntent: OpenFileAction(), }; return ShortcutsConfiguration(shortcuts: shortcuts, actions: actions); } @override String get docPageId => screenId; @override ValueListenable<bool> get showIsolateSelector => const FixedValueListenable<bool>(true); @override Widget buildScreenBody(BuildContext context) => const _DebuggerScreenBodyWrapper(); @override Widget buildStatus(BuildContext context) { final controller = Provider.of<DebuggerController>(context); return DebuggerStatus(controller: controller); } } /// Wrapper widget for the [DebuggerScreenBody] that handles screen /// initialization. class _DebuggerScreenBodyWrapper extends StatefulWidget { const _DebuggerScreenBodyWrapper(); @override _DebuggerScreenBodyWrapperState createState() => _DebuggerScreenBodyWrapperState(); } class _DebuggerScreenBodyWrapperState extends State<_DebuggerScreenBodyWrapper> with AutoDisposeMixin, ProvidedControllerMixin<DebuggerController, _DebuggerScreenBodyWrapper> { late bool _shownFirstScript; @override void initState() { super.initState(); ga.screen(DebuggerScreen.id); ga.timeStart(DebuggerScreen.id, gac.pageReady); _shownFirstScript = false; SchedulerBinding.instance.addPostFrameCallback((timeStamp) { if (!_shownFirstScript || controller.codeViewController.navigationInProgress) return; final routerDelegate = DevToolsRouterDelegate.of(context); routerDelegate.updateStateIfChanged( CodeViewSourceLocationNavigationState( script: controller.codeViewController.currentScriptRef.value!, line: 0, ), ); }); } @override void didChangeDependencies() { super.didChangeDependencies(); if (!initController()) return; unawaited(controller.onFirstDebuggerScreenLoad()); } @override Widget build(BuildContext context) { return DebuggerScreenBody( shownFirstScript: () => _shownFirstScript, setShownFirstScript: (value) => _shownFirstScript = value, ); } } @visibleForTesting class DebuggerScreenBody extends StatelessWidget { const DebuggerScreenBody({ super.key, required this.shownFirstScript, required this.setShownFirstScript, }); final bool Function() shownFirstScript; final void Function(bool) setShownFirstScript; @override Widget build(BuildContext context) { return SplitPane( axis: Axis.horizontal, initialFractions: const [0.25, 0.75], children: [ const RoundedOutlinedBorder( clip: true, child: DebuggerWindows(), ), DebuggerSourceAndControls( shownFirstScript: shownFirstScript, setShownFirstScript: setShownFirstScript, ), ], ); } } class DebuggerWindows extends StatelessWidget { const DebuggerWindows({super.key}); static const callStackTitle = 'Call Stack'; static const variablesTitle = 'Variables'; static const breakpointsTitle = 'Breakpoints'; @override Widget build(BuildContext context) { final controller = Provider.of<DebuggerController>(context); return LayoutBuilder( builder: (context, constraints) { return FlexSplitColumn( totalHeight: constraints.maxHeight, initialFractions: const [0.4, 0.4, 0.2], minSizes: const [0.0, 0.0, 0.0], headers: <PreferredSizeWidget>[ AreaPaneHeader( title: const Text(callStackTitle), roundedTopBorder: false, includeTopBorder: false, actions: [ CopyToClipboardControl( dataProvider: () { final List<String> callStackList = controller .stackFramesWithLocation.value .map((frame) => frame.callStackDisplay) .toList(); for (var i = 0; i < callStackList.length; i++) { callStackList[i] = '#$i ${callStackList[i]}'; } return callStackList.join('\n'); }, ), ], ), const AreaPaneHeader( title: Text(variablesTitle), roundedTopBorder: false, ), const AreaPaneHeader( title: Text(breakpointsTitle), actions: [_BreakpointsWindowActions()], rightPadding: 0.0, roundedTopBorder: false, ), ], children: const [ CallStack(), Variables(), Breakpoints(), ], ); }, ); } } class _BreakpointsWindowActions extends StatelessWidget { const _BreakpointsWindowActions(); @override Widget build(BuildContext context) { return ValueListenableBuilder<List<BreakpointAndSourcePosition>>( valueListenable: breakpointManager.breakpointsWithLocation, builder: (context, breakpoints, _) { return Row( children: [ BreakpointsCountBadge(breakpoints: breakpoints), DevToolsTooltip( message: 'Remove all breakpoints', child: ToolbarAction( icon: Icons.delete, size: defaultIconSize, onPressed: breakpoints.isNotEmpty ? () => unawaited(breakpointManager.clearBreakpoints()) : null, ), ), ], ); }, ); } } class DebuggerSourceAndControls extends StatelessWidget { const DebuggerSourceAndControls({ super.key, required this.shownFirstScript, required this.setShownFirstScript, }); final bool Function() shownFirstScript; final void Function(bool) setShownFirstScript; @override Widget build(BuildContext context) { final controller = Provider.of<DebuggerController>(context); final codeViewController = controller.codeViewController; return Column( children: [ const DebuggingControls(), const SizedBox(height: intermediateSpacing), Expanded( child: ValueListenableBuilder<bool>( valueListenable: codeViewController.fileExplorerVisible, builder: (context, visible, child) { // Conditional expression // ignore: prefer-conditional-expression if (visible) { // TODO(devoncarew): Animate this opening and closing. return SplitPane( axis: Axis.horizontal, initialFractions: const [0.7, 0.3], children: [ child!, RoundedOutlinedBorder( clip: true, child: ProgramExplorer( controller: codeViewController.programExplorerController, onNodeSelected: (node) => _onNodeSelected(context, node), ), ), ], ); } else { return child!; } }, child: MultiValueListenableBuilder( listenables: [ codeViewController.currentScriptRef, codeViewController.currentParsedScript, ], builder: (context, values, _) { final scriptRef = values.first as ScriptRef?; final parsedScript = values.second as ParsedScript?; if (scriptRef != null && parsedScript != null && !shownFirstScript()) { ga.timeEnd( DebuggerScreen.id, gac.pageReady, ); unawaited( serviceConnection.sendDwdsEvent( screen: DebuggerScreen.id, action: gac.pageReady, ), ); setShownFirstScript(true); } return CodeView( codeViewController: codeViewController, debuggerController: controller, scriptRef: scriptRef, parsedScript: parsedScript, onSelected: (script, line) => unawaited( breakpointManager.toggleBreakpoint(script, line), ), ); }, ), ), ), ], ); } void _onNodeSelected(BuildContext context, VMServiceObjectNode? node) { final location = node?.location; if (location != null) { final routerDelegate = DevToolsRouterDelegate.of(context); Router.navigate(context, () { routerDelegate.updateStateIfChanged( CodeViewSourceLocationNavigationState( script: location.scriptRef, line: location.location?.line ?? 0, object: node!.object, ), ); }); } } } class GoToLineNumberIntent extends Intent { const GoToLineNumberIntent(this._context, this._controller); final BuildContext _context; final DebuggerController _controller; } class GoToLineNumberAction extends Action<GoToLineNumberIntent> { @override void invoke(GoToLineNumberIntent intent) { showGoToLineDialog( intent._context, intent._controller.codeViewController, ); intent._controller.codeViewController ..toggleFileOpenerVisibility(false) ..toggleSearchInFileVisibility(false); } } class SearchInFileIntent extends Intent { const SearchInFileIntent(this._controller); final DebuggerController _controller; } class SearchInFileAction extends Action<SearchInFileIntent> { @override void invoke(SearchInFileIntent intent) { intent._controller.codeViewController ..toggleSearchInFileVisibility(true) ..toggleFileOpenerVisibility(false); } } class EscapeIntent extends Intent { const EscapeIntent(this._controller); final DebuggerController _controller; } class EscapeAction extends Action<EscapeIntent> { @override void invoke(EscapeIntent intent) { intent._controller.codeViewController ..toggleSearchInFileVisibility(false) ..toggleFileOpenerVisibility(false); } } class OpenFileIntent extends Intent { const OpenFileIntent(this._controller); final DebuggerController _controller; } class OpenFileAction extends Action<OpenFileIntent> { @override void invoke(OpenFileIntent intent) { intent._controller.codeViewController ..toggleFileOpenerVisibility(true) ..toggleSearchInFileVisibility(false); } } class DebuggerStatus extends StatefulWidget { const DebuggerStatus({ Key? key, required this.controller, }) : super(key: key); final DebuggerController controller; @override State<DebuggerStatus> createState() => _DebuggerStatusState(); } class _DebuggerStatusState extends State<DebuggerStatus> with AutoDisposeMixin { String _status = ''; bool get _isPaused => serviceConnection.serviceManager.isMainIsolatePaused; @override void initState() { super.initState(); _updateStatusOnPause(); unawaited(_updateStatus()); } @override void didUpdateWidget(DebuggerStatus oldWidget) { super.didUpdateWidget(oldWidget); if (widget.controller == oldWidget.controller) return; cancelListeners(); _updateStatusOnPause(); } void _updateStatusOnPause() { addAutoDisposeListener( serviceConnection .serviceManager.isolateManager.mainIsolateState?.isPaused, () => unawaited( _updateStatus(), ), ); } @override Widget build(BuildContext context) { return Text( _status, maxLines: 1, overflow: TextOverflow.ellipsis, ); } Future<void> _updateStatus() async { final status = await _computeStatus(); if (status != _status) { setState(() { _status = status; }); } } Future<String> _computeStatus() async { if (!_isPaused) { return 'running'; } final event = widget.controller.lastEvent; final String reason; final Frame? frame; if (event == null) { reason = ''; frame = null; } else { frame = event.topFrame; // TODO(polina-c): https://github.com/flutter/devtools/issues/5387 // Reason may be wrong. reason = event.kind == EventKind.kPauseException ? ' on exception' : ''; } final location = frame?.location; final scriptUri = location?.script?.uri; if (scriptUri == null) { return 'paused$reason'; } final fileName = ' at ${scriptUri.split('/').last}'; final tokenPos = location?.tokenPos; final scriptRef = location?.script; if (tokenPos == null || scriptRef == null) { return 'paused$reason$fileName'; } final script = await scriptManager.getScript(scriptRef); final pos = SourcePosition.calculatePosition(script, tokenPos); return 'paused$reason$fileName $pos'; } } class FloatingDebuggerControls extends StatefulWidget { const FloatingDebuggerControls({super.key}); @override State<FloatingDebuggerControls> createState() => _FloatingDebuggerControlsState(); } class _FloatingDebuggerControlsState extends State<FloatingDebuggerControls> with AutoDisposeMixin, ProvidedControllerMixin<DebuggerController, FloatingDebuggerControls> { late double controlHeight; bool get _isPaused => serviceConnection.serviceManager.isMainIsolatePaused; @override void didChangeDependencies() { super.didChangeDependencies(); if (!initController()) return; cancelListeners(); controlHeight = _isPaused ? defaultButtonHeight : 0.0; addAutoDisposeListener( serviceConnection .serviceManager.isolateManager.mainIsolateState?.isPaused, () { setState(() { if (_isPaused) { controlHeight = defaultButtonHeight; } }); }, ); } @override Widget build(BuildContext context) { final colorScheme = Theme.of(context).colorScheme; return AnimatedOpacity( opacity: _isPaused ? 1.0 : 0.0, duration: longDuration, onEnd: () { if (!_isPaused) { setState(() { controlHeight = 0.0; }); } }, child: Container( color: colorScheme.warningContainer, height: controlHeight, child: OutlinedRowGroup( // Default focus color for the light theme - since the background // color of the controls [devtoolsWarning] is the same for both // themes, we will use the same border color. borderColor: Colors.black.withOpacity(0.12), children: [ Container( height: defaultButtonHeight, alignment: Alignment.centerLeft, padding: const EdgeInsets.symmetric( horizontal: defaultSpacing, ), child: Text( 'Main isolate is paused in the debugger', style: TextStyle(color: colorScheme.onWarningContainer), ), ), DevToolsTooltip( message: 'Resume', child: TextButton( onPressed: controller.resume, child: Icon( Codicons.debugContinue, color: Colors.green, size: defaultIconSize, ), ), ), DevToolsTooltip( message: 'Step over', child: TextButton( onPressed: controller.stepOver, child: Icon( Codicons.debugStepOver, color: Colors.black, size: defaultIconSize, ), ), ), ], ), ), ); } }
devtools/packages/devtools_app/lib/src/screens/debugger/debugger_screen.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/debugger/debugger_screen.dart", "repo_id": "devtools", "token_count": 7777 }
76
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; import '../../shared/common_widgets.dart'; import '../../shared/console/eval/inspector_tree.dart'; import '../../shared/diagnostics_text_styles.dart'; import '../../shared/primitives/utils.dart'; class InspectorBreadcrumbNavigator extends StatelessWidget { const InspectorBreadcrumbNavigator({ Key? key, required this.items, required this.onTap, }) : super(key: key); /// Max number of visible breadcrumbs including root item but not 'more' item. /// E.g. value 5 means root and 4 breadcrumbs can be displayed, other /// breadcrumbs (if any) will be replaced by '...' item. static const _maxNumberOfBreadcrumbs = 5; final List<InspectorTreeNode> items; final void Function(InspectorTreeNode?) onTap; @override Widget build(BuildContext context) { if (items.isEmpty) { return const SizedBox(); } final breadcrumbs = _generateBreadcrumbs(items); return SizedBox( height: Breadcrumb.height, child: Padding( padding: const EdgeInsets.symmetric(horizontal: 6), child: Row( children: breadcrumbs.map((item) { if (item.isChevron) { return Icon( Icons.chevron_right, size: defaultIconSize, ); } return Flexible( child: _InspectorBreadcrumb( data: item, onTap: () => onTap(item.node), ), ); }).toList(), ), ), ); } List<_InspectorBreadcrumbData> _generateBreadcrumbs( List<InspectorTreeNode> nodes, ) { final lastNode = nodes.safeLast; final List<_InspectorBreadcrumbData> items = nodes.map((node) { return _InspectorBreadcrumbData.wrap( node: node, isSelected: node == lastNode, ); }).toList(); List<_InspectorBreadcrumbData> breadcrumbs; breadcrumbs = items.length > _maxNumberOfBreadcrumbs ? [ items[0], _InspectorBreadcrumbData.more(), ...items.sublist( items.length - _maxNumberOfBreadcrumbs + 1, items.length, ), ] : items; return breadcrumbs.joinWith(_InspectorBreadcrumbData.chevron()); } } class _InspectorBreadcrumb extends StatelessWidget { const _InspectorBreadcrumb({ Key? key, required this.data, required this.onTap, }) : super(key: key); static const _iconScale = 0.75; final _InspectorBreadcrumbData data; final VoidCallback onTap; @override Widget build(BuildContext context) { final text = Text( data.text, maxLines: 1, overflow: TextOverflow.ellipsis, style: DiagnosticsTextStyles.regular(Theme.of(context).colorScheme) .copyWith(fontSize: scaleByFontFactor(11)), ); final icon = data.icon == null ? null : Transform.scale( scale: _iconScale, child: Padding( padding: const EdgeInsets.only(right: iconPadding), child: data.icon, ), ); return InkWell( onTap: data.isClickable ? onTap : null, borderRadius: defaultBorderRadius, child: Container( padding: const EdgeInsets.symmetric( horizontal: densePadding, vertical: borderPadding, ), decoration: BoxDecoration( borderRadius: defaultBorderRadius, color: data.isSelected ? Theme.of(context).colorScheme.selectedRowBackgroundColor : Colors.transparent, ), child: Row( mainAxisSize: MainAxisSize.min, children: [ if (icon != null) icon, Flexible(child: text), ], ), ), ); } } class _InspectorBreadcrumbData { const _InspectorBreadcrumbData._({ required this.node, required this.isSelected, required this.alternativeText, required this.alternativeIcon, }); factory _InspectorBreadcrumbData.wrap({ required InspectorTreeNode node, required bool isSelected, }) { return _InspectorBreadcrumbData._( node: node, isSelected: isSelected, alternativeText: null, alternativeIcon: null, ); } /// Construct a special item for showing '…' symbol between other items factory _InspectorBreadcrumbData.more() { return const _InspectorBreadcrumbData._( node: null, isSelected: false, alternativeText: _ellipsisValue, alternativeIcon: null, ); } factory _InspectorBreadcrumbData.chevron() { return const _InspectorBreadcrumbData._( node: null, isSelected: false, alternativeText: null, alternativeIcon: _breadcrumbSeparatorIcon, ); } static const _ellipsisValue = '…'; static const _breadcrumbSeparatorIcon = Icons.chevron_right; final InspectorTreeNode? node; final IconData? alternativeIcon; final String? alternativeText; final bool isSelected; String get text => alternativeText ?? node?.diagnostic?.description ?? ''; Widget? get icon { if (alternativeIcon != null) { return Icon( _breadcrumbSeparatorIcon, size: defaultIconSize, ); } return node?.diagnostic?.icon; } bool get isChevron => node == null && alternativeIcon == _breadcrumbSeparatorIcon; bool get isEllipsis => node == null && alternativeText == _ellipsisValue; bool get isClickable => !isSelected && !isEllipsis; }
devtools/packages/devtools_app/lib/src/screens/inspector/inspector_breadcrumbs.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/inspector/inspector_breadcrumbs.dart", "repo_id": "devtools", "token_count": 2427 }
77
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:ui'; import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; import '../../../../shared/common_widgets.dart'; import '../../../../shared/diagnostics/diagnostics_node.dart'; import '../../../../shared/primitives/utils.dart'; import '../../inspector_data_models.dart'; import 'overflow_indicator_painter.dart'; import 'theme.dart'; import 'widgets_theme.dart'; /// A widget for positioning sized widgets that follows layout as follows: /// | top | /// left | center | right /// | bottom | @immutable class BorderLayout extends StatelessWidget { const BorderLayout({ Key? key, this.left, this.leftWidth, this.top, this.topHeight, this.right, this.rightWidth, this.bottom, this.bottomHeight, this.center, }) : assert( left != null || top != null || right != null || bottom != null || center != null, ), super(key: key); final Widget? center; final Widget? top; final Widget? left; final Widget? right; final Widget? bottom; final double? leftWidth; final double? rightWidth; final double? topHeight; final double? bottomHeight; @override Widget build(BuildContext context) { return Stack( children: <Widget>[ Center( child: Container( margin: EdgeInsets.only( left: leftWidth ?? 0, right: rightWidth ?? 0, top: topHeight ?? 0, bottom: bottomHeight ?? 0, ), child: center, ), ), if (top != null) Align( alignment: Alignment.topCenter, child: SizedBox(height: topHeight, child: top), ), if (left != null) Align( alignment: Alignment.centerLeft, child: SizedBox(width: leftWidth, child: left), ), if (right != null) Align( alignment: Alignment.centerRight, child: SizedBox(width: rightWidth, child: right), ), if (bottom != null) Align( alignment: Alignment.bottomCenter, child: SizedBox(height: bottomHeight, child: bottom), ), ], ); } } @immutable class Truncateable extends StatelessWidget { const Truncateable({Key? key, this.truncate = false, required this.child}) : super(key: key); final Widget child; final bool truncate; @override Widget build(BuildContext context) { return Flexible(flex: truncate ? 1 : 0, child: child); } } /// Widget that draws bounding box with the title (usually widget name) in its top left /// /// [hint] is an optional widget to be placed in the top right of the box /// [child] is an optional widget to be placed in the center of the box /// [borderColor] outer box border color and background color for the title /// [textColor] color for title text class WidgetVisualizer extends StatelessWidget { const WidgetVisualizer({ Key? key, required this.title, this.hint, required this.isSelected, required this.layoutProperties, required this.child, this.overflowSide, this.largeTitle = false, }) : super(key: key); final LayoutProperties layoutProperties; final String title; final Widget child; final Widget? hint; final bool isSelected; final bool largeTitle; final OverflowSide? overflowSide; static const _overflowIndicatorSize = 20.0; static const _borderUnselectedWidth = 1.0; static const _borderSelectedWidth = 3.0; static const _selectedPadding = 4.0; bool get drawOverflow => overflowSide != null; @override Widget build(BuildContext context) { final theme = Theme.of(context); final colorScheme = theme.colorScheme; final properties = layoutProperties; final borderColor = WidgetTheme.fromName(properties.node.description).color; final boxAdjust = isSelected ? _selectedPadding : 0.0; return LayoutBuilder( builder: (context, constraints) { final hintLocal = hint; return OverflowBox( minWidth: constraints.minWidth + boxAdjust, maxWidth: constraints.maxWidth + boxAdjust, maxHeight: constraints.maxHeight + boxAdjust, minHeight: constraints.minHeight + boxAdjust, child: Container( decoration: BoxDecoration( border: Border.all( color: borderColor, width: isSelected ? _borderSelectedWidth : _borderUnselectedWidth, ), color: isSelected ? theme.canvasColor.brighten() : theme.canvasColor.darken(), boxShadow: isSelected ? [ BoxShadow( color: Colors.black.withOpacity(0.5), blurRadius: 20, ), ] : null, ), child: Stack( children: [ if (drawOverflow) Positioned.fill( child: CustomPaint( painter: OverflowIndicatorPainter( overflowSide!, _overflowIndicatorSize, ), ), ), Container( margin: EdgeInsets.only( right: overflowSide == OverflowSide.right ? _overflowIndicatorSize : 0.0, bottom: overflowSide == OverflowSide.bottom ? _overflowIndicatorSize : 0.0, ), child: Column( crossAxisAlignment: CrossAxisAlignment.stretch, mainAxisSize: MainAxisSize.min, children: [ IntrinsicHeight( child: Row( crossAxisAlignment: CrossAxisAlignment.stretch, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Flexible( child: Container( constraints: BoxConstraints( maxWidth: largeTitle ? defaultMaxRenderWidth : minRenderWidth * widgetTitleMaxWidthPercentage, ), decoration: BoxDecoration(color: borderColor), padding: const EdgeInsets.all(4.0), child: Center( child: Text( title, style: theme.regularTextStyleWithColor( colorScheme.widgetNameColor, ), overflow: TextOverflow.ellipsis, ), ), ), ), if (hintLocal != null) Flexible(child: hintLocal), ], ), ), Expanded(child: child), ], ), ), ], ), ), ); }, ); } } class AnimatedLayoutProperties<T extends LayoutProperties> implements LayoutProperties { AnimatedLayoutProperties(this.begin, this.end, this.animation) : assert(begin.children.length == end.children.length), _children = [ for (var i = 0; i < begin.children.length; i++) AnimatedLayoutProperties( begin.children[i], end.children[i], animation, ), ]; final T begin; final T end; final Animation<double> animation; final List<LayoutProperties> _children; @override LayoutProperties? get parent => end.parent; @override set parent(LayoutProperties? parent) { end.parent = parent; } @override List<LayoutProperties> get children { return _children; } List<double> _lerpList(List<double> l1, List<double> l2) { assert(l1.length == l2.length); if (l1.isEmpty) return []; final animationLocal = animation; return [ for (var i = 0; i < children.length; i++) lerpDouble(l1[i], l2[i], animationLocal.value)!, ]; } @override List<double> childrenDimensions(Axis axis) { final beginDimensions = begin.childrenDimensions(axis); final endDimensions = end.childrenDimensions(axis); return _lerpList(beginDimensions, endDimensions).cast<double>(); } @override List<double> get childrenHeights => _lerpList(begin.childrenHeights, end.childrenHeights).cast<double>(); @override List<double> get childrenWidths => _lerpList(begin.childrenWidths, end.childrenWidths).cast<double>(); @override BoxConstraints? get constraints { try { return BoxConstraints.lerp( begin.constraints, end.constraints, animation.value, ); } catch (e) { return end.constraints; } } @override String describeWidthConstraints() { final constraintsLocal = constraints!; return constraintsLocal.hasBoundedWidth ? LayoutProperties.describeAxis( constraintsLocal.minWidth, constraintsLocal.maxWidth, 'w', ) : 'w=unconstrained'; } @override String describeHeightConstraints() { final constraintsLocal = constraints!; return constraintsLocal.hasBoundedHeight ? LayoutProperties.describeAxis( constraintsLocal.minHeight, constraintsLocal.maxHeight, 'h', ) : 'h=unconstrained'; } @override String describeWidth() => 'w=${toStringAsFixed(size.width)}'; @override String describeHeight() => 'h=${toStringAsFixed(size.height)}'; @override String? get description => end.description; @override double dimension(Axis axis) { return lerpDouble( begin.dimension(axis), end.dimension(axis), animation.value, )!; } @override num? get flexFactor => lerpDouble(begin.flexFactor, end.flexFactor, animation.value); @override bool get hasChildren => children.isNotEmpty; @override double get height => size.height; @override bool get isFlex => begin.isFlex && end.isFlex; @override RemoteDiagnosticsNode get node => end.node; @override Size get size { return Size.lerp(begin.size, end.size, animation.value)!; } @override int get totalChildren => end.totalChildren; @override double get width => size.width; @override bool get hasFlexFactor => begin.hasFlexFactor && end.hasFlexFactor; @override LayoutProperties copyWith({ List<LayoutProperties>? children, BoxConstraints? constraints, String? description, int? flexFactor, FlexFit? flexFit, bool? isFlex, Size? size, }) { return LayoutProperties.values( node: node, children: children ?? this.children, constraints: constraints ?? this.constraints, description: description ?? this.description, flexFactor: flexFactor ?? this.flexFactor, flexFit: flexFit ?? this.flexFit, isFlex: isFlex ?? this.isFlex, size: size ?? this.size, ); } @override bool get isOverflowWidth => end.isOverflowWidth; @override bool get isOverflowHeight => end.isOverflowHeight; @override FlexFit? get flexFit => end.flexFit; @override List<LayoutProperties> get displayChildren => end.displayChildren; } class LayoutExplorerBackground extends StatelessWidget { const LayoutExplorerBackground({ Key? key, required this.colorScheme, }) : super(key: key); final ColorScheme colorScheme; @override Widget build(BuildContext context) { return Positioned.fill( child: Opacity( opacity: colorScheme.isLight ? 0.3 : 0.2, child: Image.asset( colorScheme.isLight ? negativeSpaceLightAssetName : negativeSpaceDarkAssetName, fit: BoxFit.none, repeat: ImageRepeat.repeat, alignment: Alignment.topLeft, ), ), ); } }
devtools/packages/devtools_app/lib/src/screens/inspector/layout_explorer/ui/utils.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/inspector/layout_explorer/ui/utils.dart", "repo_id": "devtools", "token_count": 5968 }
78
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import '../../../shared/analytics/analytics.dart' as ga; import '../../../shared/primitives/listenable.dart'; import '../../../shared/screen.dart'; import 'connected/connected_screen_body.dart'; class MemoryScreen extends Screen { MemoryScreen() : super.fromMetaData(ScreenMetaData.memory); static final id = ScreenMetaData.memory.id; @override ValueListenable<bool> get showIsolateSelector => const FixedValueListenable<bool>(true); @override String get docPageId => id; @override Widget buildScreenBody(BuildContext context) => const MemoryBody(); // TODO(polina-c): when embedded and VSCode console features are implemented, // should be in native console in VSCode @override bool showConsole(bool embed) => true; } class MemoryBody extends StatefulWidget { const MemoryBody({super.key}); @override MemoryBodyState createState() => MemoryBodyState(); } class MemoryBodyState extends State<MemoryBody> { @override void initState() { super.initState(); ga.screen(MemoryScreen.id); } @override Widget build(BuildContext context) { // TODO(polina-c): load static body if not connected. return const ConnectedMemoryBody(); } }
devtools/packages/devtools_app/lib/src/screens/memory/framework/memory_screen.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/memory/framework/memory_screen.dart", "repo_id": "devtools", "token_count": 441 }
79
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import '../../../../shared/common_widgets.dart'; import '../../../../shared/globals.dart'; /// The dialog keys for testing purposes. @visibleForTesting class MemorySettingDialogKeys { static const Key showAndroidChartCheckBox = ValueKey('showAndroidChart'); } class MemorySettingsDialog extends StatelessWidget { const MemorySettingsDialog({super.key}); @override Widget build(BuildContext context) { final theme = Theme.of(context); return DevToolsDialog( title: const DialogTitleText('Memory Settings'), includeDivider: false, content: SizedBox( width: defaultDialogWidth, child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ CheckboxSetting( notifier: preferences.memory.androidCollectionEnabled, title: 'Show Android memory chart in addition to Dart memory chart', checkboxKey: MemorySettingDialogKeys.showAndroidChartCheckBox, ), const SizedBox(height: defaultSpacing), Row( children: [ Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text(preferences.memory.refLimitTitle), Text( 'Used to explore live references in console.', style: theme.subtleTextStyle, ), ], ), ), const SizedBox(width: defaultSpacing), SizedBox( height: defaultTextFieldHeight, width: defaultTextFieldNumberWidth, child: TextField( style: theme.regularTextStyle, decoration: singleLineDialogTextFieldDecoration, controller: TextEditingController( text: preferences.memory.refLimit.value.toString(), ), inputFormatters: <TextInputFormatter>[ // Only positive integers. FilteringTextInputFormatter.allow( RegExp(r'^[1-9][0-9]*'), ), ], onChanged: (String text) { final newValue = int.parse(text); preferences.memory.refLimit.value = newValue; }, ), ), ], ), ], ), ), actions: const [ DialogCloseButton(), ], ); } }
devtools/packages/devtools_app/lib/src/screens/memory/panes/control/settings_dialog.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/control/settings_dialog.dart", "repo_id": "devtools", "token_count": 1515 }
80
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; import '../../../../../shared/common_widgets.dart'; import '../../../../../shared/primitives/utils.dart'; import '../../../shared/heap/heap.dart'; import '../controller/diff_pane_controller.dart'; import '../controller/item_controller.dart'; import '../data/classes_diff.dart'; import '../data/heap_diff_store.dart'; import 'class_details/class_details.dart'; import 'classes_table_diff.dart'; import 'classes_table_single.dart'; class SnapshotView extends StatelessWidget { const SnapshotView({Key? key, required this.controller}) : super(key: key); final DiffPaneController controller; @override Widget build(BuildContext context) { return MultiValueListenableBuilder( listenables: [ controller.derived.singleClassesToShow, controller.derived.diffClassesToShow, ], builder: (_, values, __) { final singleClasses = values.first as List<SingleClassStats>?; final diffClasses = values.second as List<DiffClassData>?; if (controller.derived.updatingValues) { return const Center(child: Text('Calculating...')); } final classes = controller.derived.heapClasses.value; if (classes == null) { final current = controller.core.selectedItem as SnapshotInstanceItem; return current.isProcessing.value ? const SizedBox.shrink() : const Center(child: Text('Could not take snapshot.')); } assert((singleClasses == null) != (diffClasses == null)); late Widget classTable; if (singleClasses != null) { classTable = ClassesTableSingle( classes: singleClasses, classesData: controller.derived.classesTableSingle, ); } else if (diffClasses != null) { classTable = ClassesTableDiff( classes: controller.derived.diffClassesToShow.value!, diffData: controller.derived.classesTableDiff, ); } else { throw StateError('singleClasses or diffClasses should not be null.'); } final pathTable = ValueListenableBuilder<List<StatsByPathEntry>?>( valueListenable: controller.derived.pathEntries, builder: (_, entries, __) => HeapClassDetails( entries: entries, selection: controller.derived.selectedPathEntry, isDiff: classes is DiffHeapClasses, pathController: controller.retainingPathController, className: controller.core.className?.className, ), ); return SplitPane( axis: Axis.vertical, initialFractions: const [0.4, 0.6], minSizes: const [80, 80], children: [ OutlineDecoration.onlyBottom( child: classTable, ), OutlineDecoration.onlyTop( child: pathTable, ), ], ); }, ); } }
devtools/packages/devtools_app/lib/src/screens/memory/panes/diff/widgets/snapshot_view.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/memory/panes/diff/widgets/snapshot_view.dart", "repo_id": "devtools", "token_count": 1298 }
81
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:devtools_app_shared/utils.dart'; import 'package:vm_service/vm_service.dart'; import '../../../../../service/service_extensions.dart' as extensions; import '../../../../../shared/globals.dart'; import '../../flutter_frames/flutter_frame_model.dart'; import 'enhance_tracing_model.dart'; final enhanceTracingExtensions = [ extensions.profileWidgetBuilds, extensions.profileUserWidgetBuilds, extensions.profileRenderObjectLayouts, extensions.profileRenderObjectPaints, extensions.profilePlatformChannels, ]; class EnhanceTracingController extends DisposableController with AutoDisposeControllerMixin { final showMenuStreamController = StreamController<void>.broadcast(); late EnhanceTracingState tracingState; final _extensionStates = { for (var ext in enhanceTracingExtensions) ext: false, }; /// The id of the first 'Flutter.Frame' event that occurs after the DevTools /// performance page is opened. /// /// For frames with this id and greater, we can assign /// [FlutterFrame.enhanceTracingState]. For frames with an earlier id, we /// do not know the value of [FlutterFrame.enhanceTracingState], and we will /// use other heuristics. int? _firstLiveFrameId; /// Stream subscription on the 'Extension' stream that listens for the first /// 'Flutter.Frame' event. /// /// This stream should be initialized and cancelled in /// [_listenForFirstLiveFrame], unless we never receive any 'Flutter.Frame' /// events, in which case the subscription will be canceled in [dispose]. StreamSubscription<Event>? _firstFrameEventSubscription; /// Listens on the 'Extension' stream (without history) for 'Flutter.Frame' /// events. /// /// This method assigns [_firstLiveFrameId] when the first 'Flutter.Frame' /// event is received, and then cancels the stream subscription. void _listenForFirstLiveFrame() { _firstFrameEventSubscription = serviceConnection.serviceManager.service!.onExtensionEvent.listen( (event) { if (event.extensionKind == 'Flutter.Frame' && _firstLiveFrameId == null) { _firstLiveFrameId = FlutterFrame.parse(event.extensionData!.data).id; // See https://github.com/dart-lang/linter/issues/3801 // ignore: discarded_futures unawaited(_firstFrameEventSubscription!.cancel()); _firstFrameEventSubscription = null; } }, ); } void init() { for (int i = 0; i < enhanceTracingExtensions.length; i++) { final extension = enhanceTracingExtensions[i]; final state = serviceConnection.serviceManager.serviceExtensionManager .getServiceExtensionState(extension.extension); _extensionStates[extension] = state.value.enabled; // Listen for extension state changes so that we can update the value of // [_extensionStates] and [tracingState]. addAutoDisposeListener(state, () { final value = state.value.enabled; _extensionStates[extension] = value; _updateTracingState(); }); } _updateTracingState(); // Listen for the first 'Flutter.Frame' event we receive from this point // on so that we know the start id for frames that we can assign the // current [FlutterFrame.enhanceTracingState]. _listenForFirstLiveFrame(); } void _updateTracingState() { final builds = _extensionStates[extensions.profileWidgetBuilds]! || _extensionStates[extensions.profileUserWidgetBuilds]!; final layouts = _extensionStates[extensions.profileRenderObjectLayouts]!; final paints = _extensionStates[extensions.profileRenderObjectPaints]!; tracingState = EnhanceTracingState( builds: builds, layouts: layouts, paints: paints, ); } void assignStateForFrame(FlutterFrame frame) { // We can only assign [FlutterFrame.enhanceTracingState] for frames // with ids after [_firstLiveFrameId]. if (_firstLiveFrameId != null && frame.id >= _firstLiveFrameId!) { frame.enhanceTracingState = tracingState; } } void showEnhancedTracingMenu() { showMenuStreamController.add(null); } @override void dispose() { unawaited(showMenuStreamController.close()); // See https://github.com/dart-lang/linter/issues/3801 // ignore: discarded_futures unawaited(_firstFrameEventSubscription?.cancel()); super.dispose(); } }
devtools/packages/devtools_app/lib/src/screens/performance/panes/controls/enhance_tracing/enhance_tracing_controller.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/performance/panes/controls/enhance_tracing/enhance_tracing_controller.dart", "repo_id": "devtools", "token_count": 1503 }
82
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/foundation.dart'; // An example of a widget rebuild count event: // { // "startTime": 2352949, // "frameNumber": 57, // "events": [1, 1, 2, 1, ...], // "locations": { // "file": { // "ids": [1, 2, ...], // "lines": [23, 32, ...], // "columns": [10, 12, ...], // "names": ["PlanetsApp", "MaterialApp", ...] // } // }, // } class _RebuildCountStats { ValueListenable<List<RebuildLocation>> get locations => _locations; final _locations = ListValueNotifier<RebuildLocation>(<RebuildLocation>[]); final _rebuildLocationMap = <int, RebuildLocation>{}; /// Increment the count associated with the [location] by [value]. void incrementCount(Location location, int value) { final id = location.id; final existing = _rebuildLocationMap[id]; if (existing != null) { existing.buildCount += value; } else { final rebuildLocation = RebuildLocation(location, buildCount: value); _locations.add(rebuildLocation); _rebuildLocationMap[id] = rebuildLocation; } } void clear() { _locations.clear(); _rebuildLocationMap.clear(); } void dataChanged() { _locations.notifyListeners(); } } const _idsKey = 'ids'; const _linesKey = 'lines'; const _columnsKey = 'columns'; const _namesKey = 'names'; const _framesKey = 'frames'; const _locationsKey = 'locations'; const _frameNumberKey = 'frameNumber'; const _eventsKey = 'events'; /// Mapping from ids to [Location] objects. /// /// Some Locations may be unresolved with ids but no valid path while valid /// paths are being fetched from the running Flutter application. class LocationMap { LocationMap(); final _locationMap = <int, Location>{}; int _countUnknownLocations = 0; void clear() { _countUnknownLocations = 0; _locationMap.clear(); } ValueListenable<bool> get locationsResolved => _locationsResolved; final _locationsResolved = ValueNotifier(true); Location operator [](int id) { var location = _locationMap[id]; if (location == null) { _countUnknownLocations++; _locationsResolved.value = false; // Add a placeholder location until we receive an event with the // path + line + column for the location. _locationMap[id] = location = Location(id: id); } return location; } Map<String, Object> toJson() { final json = <String, Object>{}; final pathToLocations = <String, List<Location>>{}; for (var location in _locationMap.values) { if (location.isResolved) { pathToLocations .putIfAbsent(location.path!, () => <Location>[]) .add(location); } } pathToLocations.forEach((path, locations) { final ids = <int>[]; final lines = <int>[]; final columns = <int>[]; final names = <String>[]; for (var location in locations) { ids.add(location.id); lines.add(location.line!); columns.add(location.column!); names.add(location.name!); } json[path] = { _idsKey: ids, _linesKey: lines, _columnsKey: columns, _namesKey: names, }; }); return json; } void processLocationMap(Map<String, dynamic> json) { for (final String path in json.keys) { final entries = (json[path]! as Map).cast<String, List<Object?>>(); final ids = entries[_idsKey]!.cast<int>(); final lines = entries[_linesKey]!.cast<int>(); final columns = entries[_columnsKey]!.cast<int>(); final names = entries[_namesKey]!.cast<String>(); for (var i = 0; i < ids.length; i++) { final id = ids[i]; final existing = _locationMap[id]; if (existing != null) { if (existing.path == null) { // Fill in the empty placeholder location in _locationsMap for this // location id. The empty placeholder entry must be completely empty. existing.path = path; assert(existing.line == null); existing.line = lines[i]; assert(existing.column == null); existing.column = columns[i]; assert(existing.name == null); existing.name = names[i]; _countUnknownLocations--; } else { // Existing entry already has a path. Ensure it is consistent. // Data could become inconsistent if we had a bug and comingled data // from before and after a hot restart. assert(existing.path == path); assert(existing.line == lines[i]); assert(existing.column == columns[i]); assert(existing.name == names[i]); } } else { final location = Location( id: id, path: path, line: lines[i], column: columns[i], name: names[i], ); _locationMap[ids[i]] = location; } } } _locationsResolved.value = _countUnknownLocations == 0; } } class RebuildCountModel { RebuildCountModel(); RebuildCountModel.parse(Map<String, Object?> json) { if (json.isEmpty) return; locationMap.processLocationMap(json[_locationsKey] as Map<String, Object?>); final frames = (json[_framesKey] as List<Object?>).cast<Map<String, Object?>>(); frames.forEach(processRebuildsForFrame); } // Maximum number of historic frames to keep rebuild counts to ensure memory // usage from rebuild counts is not excessive. static const int rebuildFrameCacheSize = 10000; /// Source of truth for all resolution fo location ids to [Location] objects. final locationMap = LocationMap(); /// Map from frame id to list of rebuilds for the frame. final _rebuildsForFrame = <int, List<RebuildLocation>>{}; final _stats = _RebuildCountStats(); ValueListenable<List<RebuildLocation>> get locationStats => _stats.locations; List<RebuildLocation>? get rebuildsForLastFrame => _rebuildsForFrame.values.lastOrNull; List<RebuildLocation>? rebuildsForFrame(int frameNumber) { return _rebuildsForFrame[frameNumber]; } bool get isNotEmpty => _rebuildsForFrame.isNotEmpty; Map<String, Object?>? toJson() { if (_rebuildsForFrame.isEmpty) { // No need to encode data unless there were actually rebuilds reported. return null; } final frames = <Object>[]; _rebuildsForFrame.forEach((id, rebuilds) { final events = <int>[]; for (RebuildLocation rebuild in rebuilds) { events ..add(rebuild.location.id) ..add(rebuild.buildCount); } frames.add({_frameNumberKey: id, _eventsKey: events}); }); return <String, Object?>{ _locationsKey: locationMap.toJson(), _framesKey: frames, }; } void processRebuildEvent(Map<String, dynamic> json) { // parse locations if (json.containsKey(_locationsKey)) { locationMap .processLocationMap(json[_locationsKey] as Map<String, dynamic>); } processRebuildsForFrame(json); // We've updated the build counts and possibly the locations. _stats.dataChanged(); } void clearFromRestart() { clearAllCounts(); locationMap.clear(); } void clearAllCounts() { _stats.clear(); _rebuildsForFrame.clear(); } void processRebuildsForFrame(Map<String, dynamic> json) { if (json[_frameNumberKey] == null) { // Old version of the rebuild JSON that is not supported by DevTools. return; } final int frameNumber = json[_frameNumberKey]; // parse events final List<int> events = (json[_eventsKey] as List).cast<int>(); final rebuildsForFrame = <RebuildLocation>[]; for (int i = 0; i < events.length; i += 2) { final id = events[i]; final count = events[i + 1]; final location = locationMap[id]; rebuildsForFrame.add(RebuildLocation(location, buildCount: count)); _stats.incrementCount(location, count); } _rebuildsForFrame[frameNumber] = rebuildsForFrame; while (_rebuildsForFrame.length > rebuildFrameCacheSize) { _rebuildsForFrame.remove(_rebuildsForFrame.keys.first); } } } class Location { Location({required this.id, this.path, this.line, this.column, this.name}); final int id; /// Either all of path, line, column, and name are null or none are. String? path; int? line; int? column; String? name; bool get isResolved => path != null; } class RebuildLocation { RebuildLocation(this.location, {this.buildCount = 0}); final Location location; int buildCount; } /// Helper class to merge together rebuild stats from multiple sources. /// /// For example, rebuild on a per frame basis and total rebuilds since /// the last route change. class RebuildLocationStats { RebuildLocationStats(this.location, {required int numStats}) : buildCounts = List<int>.filled(numStats, 0); final Location location; final List<int> buildCounts; } List<RebuildLocationStats> combineStats( List<List<RebuildLocation>> rebuildStats, ) { final numStats = rebuildStats.length; final output = <Location, RebuildLocationStats>{}; for (int i = 0; i < rebuildStats.length; i++) { final statsForIndex = rebuildStats[i]; for (var entry in statsForIndex) { output .putIfAbsent( entry.location, () => RebuildLocationStats( entry.location, numStats: numStats, ), ) .buildCounts[i] = entry.buildCount; } } return output.values.toList(growable: false); }
devtools/packages/devtools_app/lib/src/screens/performance/panes/rebuild_stats/rebuild_stats_model.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/performance/panes/rebuild_stats/rebuild_stats_model.dart", "repo_id": "devtools", "token_count": 3710 }
83
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:collection/collection.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/material.dart'; import '../../shared/analytics/constants.dart' as gac; import '../../shared/common_widgets.dart'; import '../../shared/feature_flags.dart'; import '../../shared/globals.dart'; import '../../shared/ui/tab.dart'; import '../../shared/utils.dart'; import 'panes/flutter_frames/flutter_frame_model.dart'; import 'panes/flutter_frames/flutter_frames_controller.dart'; import 'panes/frame_analysis/frame_analysis.dart'; import 'panes/raster_stats/raster_stats.dart'; import 'panes/rebuild_stats/rebuild_stats.dart'; import 'panes/timeline_events/timeline_events_view.dart'; import 'performance_controller.dart'; class TabbedPerformanceView extends StatefulWidget { const TabbedPerformanceView({super.key}); @override State<TabbedPerformanceView> createState() => _TabbedPerformanceViewState(); } class _TabbedPerformanceViewState extends State<TabbedPerformanceView> with AutoDisposeMixin, ProvidedControllerMixin<PerformanceController, TabbedPerformanceView> { static const _gaPrefix = 'performanceTab'; late FlutterFramesController _flutterFramesController; FlutterFrame? _selectedFlutterFrame; @override void didChangeDependencies() { super.didChangeDependencies(); if (!initController()) return; _flutterFramesController = controller.flutterFramesController; cancelListeners(); _selectedFlutterFrame = _flutterFramesController.selectedFrame.value; addAutoDisposeListener(_flutterFramesController.selectedFrame, () { setState(() { _selectedFlutterFrame = _flutterFramesController.selectedFrame.value; }); }); } @override Widget build(BuildContext context) { final isOffline = offlineController.offlineMode.value; final isFlutterApp = serviceConnection.serviceManager.connectedApp!.isFlutterAppNow!; var showFrameAnalysis = isFlutterApp; var showRasterStats = isFlutterApp; var showRebuildStats = FeatureFlags.widgetRebuildstats && isFlutterApp; final offlineData = controller.offlinePerformanceData; if (isOffline) { final hasOfflineData = offlineData != null; showFrameAnalysis = showFrameAnalysis && hasOfflineData && offlineData.frames.isNotEmpty; showRasterStats = showRasterStats && hasOfflineData && offlineData.rasterStats != null; showRebuildStats = showRebuildStats && hasOfflineData && offlineData.rebuildCountModel != null; } final tabsAndControllers = _generateTabs( showFrameAnalysis: showFrameAnalysis, showRasterStats: showRasterStats, showRebuildStats: showRebuildStats, ); final tabs = tabsAndControllers .map((t) => (tab: t.tab, tabView: t.tabView)) .toList(); final featureControllers = tabsAndControllers.map((t) => t.featureController).toList(); // If there is not an active feature, activate the first. if (featureControllers.firstWhereOrNull( (controller) => controller?.isActiveFeature ?? false, ) == null) { _setActiveFeature(0, featureControllers[0]); } return AnalyticsTabbedView( tabs: tabs, initialSelectedIndex: controller.selectedFeatureTabIndex, gaScreen: gac.performance, onTabChanged: (int index) { _setActiveFeature(index, featureControllers[index]); }, ); } void _setActiveFeature( int index, PerformanceFeatureController? featureController, ) { controller.selectedFeatureTabIndex = index; unawaited(controller.setActiveFeature(featureController)); } List< ({ DevToolsTab tab, Widget tabView, PerformanceFeatureController? featureController, })> _generateTabs({ required bool showFrameAnalysis, required bool showRasterStats, required bool showRebuildStats, }) { if (showFrameAnalysis || showRasterStats || showRebuildStats) { assert(serviceConnection.serviceManager.connectedApp!.isFlutterAppNow!); } return [ if (showFrameAnalysis) ( tab: _buildTab(tabName: 'Frame Analysis'), tabView: KeepAliveWrapper( child: _selectedFlutterFrame != null ? FlutterFrameAnalysisView( frameAnalysis: _selectedFlutterFrame!.frameAnalysis, enhanceTracingController: controller.enhanceTracingController, rebuildCountModel: controller.rebuildCountModel, ) : const CenteredMessage( 'Select a frame above to view analysis data.', ), ), featureController: null, ), if (showRasterStats) ( tab: _buildTab(tabName: 'Raster Stats'), tabView: KeepAliveWrapper( child: Center( child: RasterStatsView( rasterStatsController: controller.rasterStatsController, impellerEnabled: controller.impellerEnabled, ), ), ), featureController: controller.rasterStatsController, ), if (showRebuildStats) ( tab: _buildTab(tabName: 'Rebuild Stats'), tabView: KeepAliveWrapper( child: RebuildStatsView( model: controller.rebuildCountModel, selectedFrame: controller.flutterFramesController.selectedFrame, ), ), featureController: null, ), ( tab: _buildTab( tabName: 'Timeline Events', trailing: TimelineEventsTabControls( controller: controller.timelineEventsController, ), ), tabView: TimelineEventsTabView( controller: controller.timelineEventsController, ), featureController: controller.timelineEventsController, ), ]; } DevToolsTab _buildTab({required String tabName, Widget? trailing}) { return DevToolsTab.create( tabName: tabName, gaPrefix: _gaPrefix, trailing: trailing, ); } }
devtools/packages/devtools_app/lib/src/screens/performance/tabbed_performance_view.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/performance/tabbed_performance_view.dart", "repo_id": "devtools", "token_count": 2495 }
84
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:collection/collection.dart'; import '../../../../shared/primitives/graph.dart'; import '../../../../shared/primitives/utils.dart'; import '../../../../shared/profiler_utils.dart'; import '../../../../shared/ui/search.dart'; import '../../cpu_profile_model.dart'; /// Represents a graph node for a method in a CPU profile method table. class MethodTableGraphNode extends GraphNode with SearchableDataMixin { MethodTableGraphNode({ required this.name, required this.packageUri, required this.sourceLine, required int totalCount, required int selfCount, required this.profileMetaData, required this.stackFrameIds, }) : _totalCount = totalCount, _selfCount = selfCount, _sourceUri = uriWithSourceLine(packageUri, sourceLine); factory MethodTableGraphNode.fromStackFrame(CpuStackFrame frame) { return MethodTableGraphNode( name: frame.name, packageUri: frame.packageUri, sourceLine: frame.sourceLine, totalCount: frame.inclusiveSampleCount, selfCount: frame.exclusiveSampleCount, profileMetaData: frame.profileMetaData, stackFrameIds: {frame.id}, ); } final String name; final String packageUri; final int? sourceLine; final String _sourceUri; final ProfileMetaData profileMetaData; /// The set of all [CpuStackFrame.id]s that contribute to this method table /// node for a profile. final Set<String> stackFrameIds; String get id => '$name-$_sourceUri'; String get display => '$name${_sourceUri.isNotEmpty ? ' - ($_sourceUri)' : ''}'; /// The number of cpu samples where this method is on top of the stack. int get selfCount => _selfCount; late int _selfCount; /// The number of cpu samples where this method is anywhere on the stack. int get totalCount => _totalCount; late int _totalCount; double get selfTimeRatio => safeDivide(selfCount, profileMetaData.sampleCount); Duration get selfTime => Duration( microseconds: (selfTimeRatio * profileMetaData.time!.duration.inMicroseconds) .round(), ); double get totalTimeRatio => safeDivide(totalCount, profileMetaData.sampleCount); Duration get totalTime => Duration( microseconds: (totalTimeRatio * profileMetaData.time!.duration.inMicroseconds) .round(), ); void merge(MethodTableGraphNode other, {required bool mergeTotalTime}) { if (!shallowEquals(other)) return; stackFrameIds.addAll(other.stackFrameIds); _selfCount += other.selfCount; if (mergeTotalTime) { _totalCount += other.totalCount; } } bool shallowEquals(Object? other) { return other is MethodTableGraphNode && other.name == name && other._sourceUri == _sourceUri; } @override bool matchesSearchToken(RegExp regExpSearch) { return name.caseInsensitiveContains(regExpSearch) || packageUri.caseInsensitiveContains(regExpSearch); } @override String toString() { String generateDisplayFor( Set<GraphNode> nodes, { required double Function(MethodTableGraphNode) percentCallback, }) { const newLineAndIndent = '\n '; return nodes .cast<MethodTableGraphNode>() // Sort in descending order. .sorted((a, b) => percentCallback(b).compareTo(percentCallback(a))) .map( (node) => '${node.display} - ${percent(percentCallback(node))}', ) .join(newLineAndIndent); } final callers = generateDisplayFor( predecessors, percentCallback: predecessorEdgePercentage, ); final callees = generateDisplayFor( successors, percentCallback: successorEdgePercentage, ); return ''' $display ($totalCount samples) Callers: ${callers.isEmpty ? '[]' : callers} Callees: ${callees.isEmpty ? '[]' : callees} '''; } MethodTableGraphNode copy() { return MethodTableGraphNode( name: name, packageUri: packageUri, sourceLine: sourceLine, totalCount: totalCount, selfCount: selfCount, profileMetaData: profileMetaData, stackFrameIds: Set.of(stackFrameIds), ); } } extension MethodTableExtension on CpuStackFrame { String get methodTableId => '$name-$packageUriWithSourceLine'; }
devtools/packages/devtools_app/lib/src/screens/profiler/panes/method_table/method_table_model.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/profiler/panes/method_table/method_table_model.dart", "repo_id": "devtools", "token_count": 1626 }
85
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app_shared/service.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:logging/logging.dart'; final _log = Logger('riverpod_error_logger_observer'); class ErrorLoggerObserver extends ProviderObserver { const ErrorLoggerObserver(); @override void didAddProvider( ProviderBase provider, Object? value, ProviderContainer container, ) { _maybeLogError(provider, value); } @override void didUpdateProvider( ProviderBase provider, Object? previousValue, Object? newValue, ProviderContainer container, ) { _maybeLogError(provider, newValue); } void _maybeLogError(ProviderBase provider, Object? value) { if (value is AsyncError) { if (value.error is SentinelException) return; _log.shout('Provider $provider failed with "${value.error}"'); final stackTrace = value.stackTrace; if (stackTrace != null) { _log.info(stackTrace); } } } }
devtools/packages/devtools_app/lib/src/screens/provider/riverpod_error_logger_observer.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/provider/riverpod_error_logger_observer.dart", "repo_id": "devtools", "token_count": 398 }
86
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:flutter/material.dart'; import 'package:vm_service/vm_service.dart'; import '../../../shared/common_widgets.dart'; import '../../../shared/globals.dart'; import '../vm_developer_common_widgets.dart'; import 'object_inspector_view_controller.dart'; import 'vm_object_model.dart'; /// A widget for the object inspector historyViewport displaying information /// related to ICData objects in the Dart VM. class VmICDataDisplay extends StatefulWidget { const VmICDataDisplay({ super.key, required this.controller, required this.icData, }); final ObjectInspectorViewController controller; final ICDataObject icData; @override State<VmICDataDisplay> createState() => _VmICDataDisplayState(); } class _VmICDataDisplayState extends State<VmICDataDisplay> { final argumentsDescriptor = <ObjRef?>[]; final entries = <ObjRef?>[]; late Future<void> _initialized; @override void initState() { super.initState(); _initialize(); } @override void didUpdateWidget(VmICDataDisplay oldWidget) { super.didUpdateWidget(oldWidget); if (widget.icData == oldWidget.icData) { return; } _initialize(); } void _initialize() async { argumentsDescriptor.clear(); entries.clear(); void populateLists(Instance argDescriptor, Instance entryList) { argumentsDescriptor.addAll(argDescriptor.elements!.cast<ObjRef?>()); entries.addAll(entryList.elements!.cast<ObjRef?>()); } final icData = widget.icData.obj; final icDataArgsDescriptor = icData.argumentsDescriptor; final icDataEntries = icData.entries; if (icDataArgsDescriptor is Instance && icDataEntries is Instance) { populateLists(icDataArgsDescriptor, icDataEntries); _initialized = Future.value(); return; } final isolateId = serviceConnection .serviceManager.isolateManager.selectedIsolate.value!.id!; final service = serviceConnection.serviceManager.service!; final argumentsDescriptorFuture = service .getObject(isolateId, icData.argumentsDescriptor.id!) .then((e) => e as Instance); final entriesFuture = service .getObject(isolateId, icData.entries.id!) .then((e) => e as Instance); _initialized = Future.wait([ argumentsDescriptorFuture, entriesFuture, ]).then( (result) => populateLists(result[0], result[1]), ); } @override Widget build(BuildContext context) { return FutureBuilder<void>( future: _initialized, builder: (context, snapshot) { if (snapshot.connectionState != ConnectionState.done) { return const CenteredCircularProgressIndicator(); } return VmObjectDisplayBasicLayout( controller: widget.controller, object: widget.icData, generalDataRows: [ ...vmObjectGeneralDataRows(widget.controller, widget.icData), selectableTextBuilderMapEntry( 'Selector', widget.icData.obj.selector, ), serviceObjectLinkBuilderMapEntry( controller: widget.controller, key: 'Owner', object: widget.icData.obj.owner, ), ], expandableWidgets: [ ExpansionTileInstanceList( controller: widget.controller, title: 'Arguments Descriptor', elements: argumentsDescriptor, ), ExpansionTileInstanceList( controller: widget.controller, title: 'Entries', elements: entries, ), ], ); }, ); } }
devtools/packages/devtools_app/lib/src/screens/vm_developer/object_inspector/vm_ic_data_display.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/vm_developer/object_inspector/vm_ic_data_display.dart", "repo_id": "devtools", "token_count": 1524 }
87
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:collection/collection.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/foundation.dart'; import 'package:vm_service/vm_service.dart' hide VmService; import '../../../service/vm_service_wrapper.dart'; import '../../../shared/globals.dart'; class VMStatisticsViewController extends DisposableController { VMStatisticsViewController() { unawaited(refresh()); } Future<void> refresh() async { _refreshing.value = true; final vm = await _service.getVM(); _vm = vm; _isolates = await Future.wait<Isolate>( vm.isolates!.map( (i) => _service.getIsolate(i.id!), ), ); _systemIsolates = await Future.wait<Isolate>( vm.systemIsolates!.map( (i) => _service.getIsolate(i.id!), ), ); _refreshing.value = false; } ValueListenable<bool> get refreshing => _refreshing; final _refreshing = ValueNotifier<bool>(true); VmServiceWrapper get _service => serviceConnection.serviceManager.service!; VM? get vm => _vm; VM? _vm; /// The list of [Isolate]s running user code. List<Isolate> get isolates => UnmodifiableListView(_isolates); List<Isolate> _isolates = []; /// The list of [Isolate]s listed as system isolates. Typically includes: /// - Service isolate /// - Kernel isolate (standalone VM) /// - CLI isolate (standalone VM) List<Isolate> get systemIsolates => UnmodifiableListView(_systemIsolates); List<Isolate> _systemIsolates = []; }
devtools/packages/devtools_app/lib/src/screens/vm_developer/vm_statistics/vm_statistics_view_controller.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/screens/vm_developer/vm_statistics/vm_statistics_view_controller.dart", "repo_id": "devtools", "token_count": 586 }
88
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Code in this file should be able to be imported by both web and dart:io // dependent libraries. /// Base class for all screen metrics classes. /// /// Create a subclass of this class to store custom metrics for a screen. All /// subclasses are expected to add custom metrics as fields. For example: /// /// ```dart /// class MyScreenAnalyticsMetrics extends ScreenAnalyticsMetrics { /// const MyScreenAnalyticsMetrics({this.myMetric1, this.myMetric2}); /// /// final int myMetric1; /// /// final String myMetric2; /// } /// ``` /// /// Then, add your fields to the [GtagEventDevTools] factory constructor and add /// a corresponding getter in the class. abstract class ScreenAnalyticsMetrics {}
devtools/packages/devtools_app/lib/src/shared/analytics/analytics_common.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/analytics/analytics_common.dart", "repo_id": "devtools", "token_count": 237 }
89
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:collection/collection.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/material.dart'; import '../primitives/utils.dart'; import 'chart_trace.dart'; ///_____________________________________________________________________ /// /// xPaddingRight /// | /// leftPadding topPadding | rightPadding /// | | | | /// ==|====================|==============|==|= /// " | V | | /// " V ----------------------------------V V /// " | /// " | /// " | /// " | ------ canvasChartWidth -------- /// " | /// " | /// " ---------------------------------- <----- yCanvasChart /// " ' ' ' ' ' ' ' ' ' ' ' ' {-------- bottomPadding /// " ^ ^ \ /// ====|================|====================== /// | | /// xCanvasChart X-axis ticks ///_____________________________________________________________________ /// class ChartController extends DisposableController with AutoDisposeControllerMixin { ChartController({ this.displayXAxis = true, this.displayXLabels = true, this.displayYLabels = true, this.name, List<int>? sharedLabelimestamps, }) { // TODO(terry): Compute dynamically based on X-axis labels text height. bottomPadding = !displayXLabels ? 0.0 : 40.0; if (sharedLabelimestamps != null) { labelTimestamps = sharedLabelimestamps; _labelsShared = true; } } /// Used for debugging to determine which chart. final String? name; // Total size of area to display the chart (includes title, axis, labels, etc.). Size? size; /// Spacing for title iff title != null. double topPadding = 0.0; // TODO(terry): Compute dynamically based on Y-axis label text width. final leftPadding = 50.0; /// Computed minimum right padding. int rightPadding = 25; /// Space for X-Axis labels and tick marks; double bottomPadding = 40.0; double get tickWidth => _tickWidth; double _tickWidth = 10.0; /// Number of ticks visible (on the X-axis); late int visibleXAxisTicks; /// If true the X axis line is rendered, if false then both the X axis line /// is not rendered and the labels and ticks are also not rendered. final bool displayXAxis; /// If true render the labels and ticks on the X axis, if displayXAxis is /// false then the labels and ticks are not rendered. final bool displayXLabels; final bool displayYLabels; /// xCanvas coord for plotting data. double xCanvasChart = 0; /// Width of the canvas for plotting data (#). late double canvasChartWidth; /// Right-side padding after computing minPadding and max number of integral ticks for canvasChartWidth. late double xPaddingRight; /// yCanvas coord for plotting data. double yCanvasChart = 0; /// yCanvas height for plotting data. double canvasChartHeight = 0; bool get isDirty => dirty; bool dirty = false; // TODO(terry): Consider timestamps returning UnmodifiableListView // if loaded from a file (not live). List<int> get timestamps => _timestamps; /// X axis ticks, each timestamp is a tick on the X axis. final _timestamps = <int>[]; void addTimestamp(int timestamp) { _timestamps.add(timestamp); dirty = true; } void timestampsClear() { _timestamps.clear(); dirty = true; } int get timestampsLength => _timestamps.length; final traces = <Trace>[]; ValueNotifier<TraceNotifier> get traceChanged => _traceNotifier; final _traceNotifier = ValueNotifier<TraceNotifier>(TraceNotifier()); double _yMaxValue = 0.0; double get yMaxValue => _yMaxValue; AxisScale yScale = AxisScale(0, 0, 30); // TODO(terry): Could go smaller if the range is a subset of the trace being rendered. // Consider value notifier probably on the yScale. set yMaxValue(double value) { if (value > _yMaxValue) { _yMaxValue = value; yScale = AxisScale(0, yMaxValue, canvasChartHeight.toDouble()); // TODO(terry): Redraw the YAxis ticks/labels. } } void resetYMaxValue(double value) { _yMaxValue = 0; yMaxValue = value; } double? _fixedMinY; double? _fixedMaxY; void setFixedYRange(double min, double max) { _fixedMinY = min; _fixedMaxY = max; } double? get fixedMinY => _fixedMinY; double? get fixedMaxY => _fixedMaxY; String get title => _title; String _title = ''; set title(String value) { // TODO(terry): Compute dynamically based on title text height. topPadding = value.isNotEmpty ? 20.0 : 0.0; _title = value; } final tapLocation = ValueNotifier<TapLocation?>(null); /// zoomDuration values of: /// null implies all /// Duration() imples live (default) /// Duration(minutes: 5) implies 5 minute interval Duration? _zoomDuration = const Duration(); Duration? get zoomDuration => _zoomDuration; static const oneMinuteInMs = 1000 * 60; bool get isZoomAll => _zoomDuration == null; /// Label is displayed every N seconds, default is 20 seconds /// for live view. See computeLabelInterval method. int labelInterval = labelsLiveSeconds; /// List of timestamps where a label is displayed. First in the left-most /// label (which will eventually scroll out of view and be replaced). var labelTimestamps = <int>[]; bool get isLabelsShared => _labelsShared; /// If true signals that labels are compute from another controller. var _labelsShared = false; void computeZoomRatio() { // Check if ready to start computations? if (size == null) return; if (isZoomAll) { _tickWidth = canvasChartWidth / timestampsLength; } } set zoomDuration(Duration? duration) { if (duration == null) { // Display all items. } else if (duration.inMinutes == 0) { _tickWidth = 10.0; // Live } else if (timestamps.isNotEmpty && duration.inMinutes > 0) { final firstDT = DateTime.fromMillisecondsSinceEpoch(timestamps.first); final lastDT = DateTime.fromMillisecondsSinceEpoch(timestamps.last); // Greater or equal to range we're zooming in on? if (lastDT.difference(firstDT).inMinutes >= duration.inMinutes) { // Grab the duration in minutes passed in. final startOfLastNMinutes = // We need this cast to be able to return null if nothing is found. // ignore: unnecessary_cast timestamps.reversed.firstWhereOrNull((timestamp) { final currentDT = DateTime.fromMillisecondsSinceEpoch(timestamp); final diff = lastDT.difference(currentDT); if (diff.inMinutes >= duration.inMinutes) { return true; } return false; }); final ticksVisible = startOfLastNMinutes != null ? timestampsLength - timestamps.indexOf(startOfLastNMinutes) : timestampsLength + 1; _tickWidth = canvasChartWidth / ticksVisible; } else { // No but lets scale x-axis based on the last two timestamps diffs we have. // TODO(terry): Consider using all the data maybe average out the time between // ticks. final length = timestampsLength; // Enough data (at least 2 points) to know how many ticks for the duration. if (length > 1) { final lastTS = DateTime.fromMillisecondsSinceEpoch(timestamps.last); final previousTS = DateTime.fromMillisecondsSinceEpoch(timestamps[length - 2]); final diffTS = lastTS.difference(previousTS); final ticksPerMinute = oneMinuteInMs / diffTS.inMilliseconds; final ticksVisible = ticksPerMinute * duration.inMinutes; _tickWidth = canvasChartWidth / ticksVisible; } } } _zoomDuration = duration; computeZoomRatio(); // All tick labels need to be recompted. computeChartArea(); computeLabelInterval(); dirty = true; } /// Label rate unit in seconds. Default label every 20 seconds for live view. static const labelsLiveSeconds = 20; static const labelsFifteenSeconds = 15; static const labelsThirtySeconds = 30; static const labelsOneMinute = 60; static const labelsTwoMinutes = 120; static const labelsOneHour = 60 * 60; static const labelsFourHours = 60 * 60 * 4; static const labelsTwelveHours = 60 * 60 * 12; void computeLabelInterval() { if (zoomDuration == null && timestamps.isNotEmpty) { final firstDT = DateTime.fromMillisecondsSinceEpoch(timestamps.first); final lastDT = DateTime.fromMillisecondsSinceEpoch(timestamps.last); final totalDuration = lastDT.difference(firstDT); final totalHours = totalDuration.inHours; if (totalHours == 0) { final totalMinutes = totalDuration.inMinutes; if (totalMinutes == 0) { labelInterval = labelsThirtySeconds; } else if (totalMinutes < 10) { labelInterval = labelsOneMinute; } else { labelInterval = labelsTwoMinutes; } } else if (totalHours > 0 && totalHours < 8) { labelInterval = labelsOneHour; } else if (totalHours < 24) { labelInterval = labelsFourHours; } else { labelInterval = labelsTwelveHours; } } else { final rangeInMinutes = zoomDuration?.inMinutes; if (rangeInMinutes == null) return; switch (rangeInMinutes) { case 0: // Live labelInterval = labelsLiveSeconds; break; case 1: // 1 minute labelInterval = labelsFifteenSeconds; break; case 5: // 5 minute labelInterval = labelsOneMinute; break; case 10: // 10 minute labelInterval = labelsTwoMinutes; break; default: assert(false, 'Unexpected Duration $rangeInMinutes'); } } buildLabelTimestamps(refresh: true); } void buildLabelTimestamps({bool refresh = false}) { if (isLabelsShared || timestamps.isEmpty) return; if (refresh) { labelTimestamps.clear(); final leftMostTimestamp = leftMostVisibleTimestampIndex; final lastTimestamp = timestamps[leftMostTimestamp]; labelTimestamps.add(lastTimestamp); var lastLabelDT = DateTime.fromMillisecondsSinceEpoch(lastTimestamp); for (var index = leftMostTimestamp; index < timestampsLength; index++) { final currentTimestamp = timestamps[index]; final currentDT = DateTime.fromMillisecondsSinceEpoch(currentTimestamp); if (currentDT.difference(lastLabelDT).inSeconds >= labelInterval) { labelTimestamps.add(currentTimestamp); lastLabelDT = currentDT; } } return; } if (labelTimestamps.isEmpty) { labelTimestamps.add(timestamps.last); } else { // Check left label is it out of range? final leftEdge = leftMostVisibleTimestampIndex; // TODO(terry): Need to insure that more than one label may not be // visible e.g., when panning the chart. if (labelTimestamps.first < timestamps[leftEdge]) { // Label is outside of visible range, remove the left label. labelTimestamps.removeAt(0); } } if (labelTimestamps.isEmpty) return; final rightLabelTimestamp = labelTimestamps.last; final rightMostLabelDT = DateTime.fromMillisecondsSinceEpoch(rightLabelTimestamp); final rightMostTimestampDT = DateTime.fromMillisecondsSinceEpoch(timestamps.last); final nSeconds = rightMostTimestampDT.difference(rightMostLabelDT).inSeconds; if (nSeconds >= labelInterval) { late int foundTimestamp; if (nSeconds == labelInterval) { foundTimestamp = timestamps.last; } else { // Find the interval that's closest to the next interval. final startIndex = timestamps.indexOf(rightLabelTimestamp); for (var index = startIndex; index < timestampsLength; index++) { foundTimestamp = timestamps[index]; final nextDT = DateTime.fromMillisecondsSinceEpoch(foundTimestamp); final secsDiff = nextDT.difference(rightMostTimestampDT).inSeconds; if (secsDiff >= labelInterval) break; } } labelTimestamps.add(foundTimestamp); } } /// Clear all data in the chart. void reset() { for (var trace in traces) { trace.clearData(); } timestampsClear(); labelTimestamps.clear(); } /// Override to load data from another source e.g., live, offline, etc. void setupData() {} void computeChartArea() { // Check if ready to start computations? if (size == null) return; xCanvasChart = leftPadding; final width = size!.width - leftPadding - rightPadding; // Compute max number of ticks visible on X-Axis. visibleXAxisTicks = (width / tickWidth).truncate(); canvasChartWidth = visibleXAxisTicks.toDouble() * tickWidth; // Right-side padding after adjust for max ticks on width. xPaddingRight = width - canvasChartWidth; yCanvasChart = topPadding; canvasChartHeight = size!.height - topPadding - bottomPadding; if (fixedMinY != null && fixedMaxY != null) { yScale = AxisScale(fixedMinY!, fixedMaxY!, canvasChartHeight.toDouble()); } else { // TODO(terry): Better value than fixed amount? // Allocate a bit of slop to approach near top. yScale = AxisScale(0, yMaxValue, canvasChartHeight.toDouble() - 5); } } double get zeroYPosition => yCanvasChart + canvasChartHeight; double yPosition(double y) => yScale.tickFromValue(y); // Returns a negative value, the value is subtracted from zeroPosition to // return the real canvas coord (adjusted from Y-axis zero location in the // chart). double yPositionToYCanvasCoord(double y) => -yPosition(y); Trace trace(int index) { assert(index < traces.length); return traces[index]; } int createTrace( ChartType chartType, PaintCharacteristics characteristics, { String? name, bool stacked = false, List<Data>? data, }) { final traceIndex = traces.length; final trace = Trace(this, chartType, characteristics); // Stacked only supported for line charts. assert((stacked && chartType == ChartType.line) || !stacked); trace.stacked = stacked; if (name != null) trace.name = name; if (data != null) trace.addAllData(data); traces.add(trace); assert(trace == traces[traceIndex]); return traceIndex; } /// If negative then total ticks collected < number of visible ticks to display. int get totalTimestampTicks => timestampsLength - visibleXAxisTicks; int get leftVisibleIndex { final leftIndex = totalTimestampTicks; if (leftIndex > 0) return leftIndex; // Less ticks than total size of ticks to show. return visibleXAxisTicks - timestampsLength; } bool _isTimestampVisible(int timestampIndex) { final leftMostIndex = leftVisibleIndex; // totalTimestampTicks < 0 then still collecting ticks and haven't // collected more than visibleXAxisTicks of data yet. return totalTimestampTicks > 0 ? timestampIndex >= leftMostIndex : true; } int normalizeTimestampIndex(int index) { if (_isTimestampVisible(index)) { final firstVisibleIndex = leftVisibleIndex; if (totalTimestampTicks < 0) { return index; } else if (index >= firstVisibleIndex) { return index - firstVisibleIndex; } } return -1; } /// Return timestamps index of the left most visible datum. int get leftMostVisibleTimestampIndex { var index = 0; if (timestampsLength > visibleXAxisTicks) { index = timestampsLength - visibleXAxisTicks; } return index; } /// X coordinate of left most visible datum. The timestampXCanvasCoord /// returns a zero based X-coord this X-coord must be translated by the /// value of this getter. double get xCoordLeftMostVisibleTimestamp { double indexOffset = xCanvasChart; if (timestampsLength < visibleXAxisTicks) { final startIndex = visibleXAxisTicks - timestampsLength; indexOffset += startIndex * tickWidth; } return indexOffset; } /// Returns a 0 based X-coordinate, this coordinate is not yet translated /// to the coordinates of the rendered chart. Returns -1 if timestamp not /// visible. double timestampToXCanvasCoord(int timestamp) { final index = timestamps.indexOf(timestamp); if (index >= 0) { // Valid index. final visibleIndex = normalizeTimestampIndex(index); if (visibleIndex >= 0) { return (visibleIndex * tickWidth).toDouble(); } } return -1; } int? xCoordToTimestamp(double xCoord) { final index = xCoordToTimestampIndex(xCoord); return timestamps.safeGet(index); } int xCoordToTimestampIndex(double xCoord) { final firstVisibleIndex = leftVisibleIndex; final index = (xCoord - leftPadding) ~/ tickWidth; int timestampedIndex; if (totalTimestampTicks < 0) { // Not enough items plotted on x-axis. timestampedIndex = index + totalTimestampTicks; } else if (index >= firstVisibleIndex) { timestampedIndex = index - firstVisibleIndex; } else { timestampedIndex = index + firstVisibleIndex; } // If index is left side, negative, that has yet to have any data // return the first timestamp. return timestampedIndex >= 0 ? timestampedIndex : 0; } } /// Location (index to the data & timestamp of the plotted values) where the user /// clicked in a chart. class TapLocation { /// When tap occurs, in a chart, pass the timestamp and index to the clicked data. TapLocation(this.tapDownDetails, this.timestamp, this.index); /// Copy of TapLocation w/o the detail, implies not where tap occurred /// but the multiple charts tied to the same timeline should be hilighted /// (selection point). TapLocation.copy(TapLocation original) : tapDownDetails = null, timestamp = original.timestamp, index = original.index; final TapDownDetails? tapDownDetails; /// Timestamp of the closest item in the x-axis timeseries. final int? timestamp; /// Index of the data point in the timeseries. final int index; }
devtools/packages/devtools_app/lib/src/shared/charts/chart_controller.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/charts/chart_controller.dart", "repo_id": "devtools", "token_count": 6690 }
90
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:js_interop'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_app_shared/web_utils.dart'; import 'package:web/web.dart' hide Storage; import '../../../service/service_manager.dart'; import '../../globals.dart'; import '../../primitives/storage.dart'; import '../../server/server_api_client.dart'; /// Return the url the application is launched from. Future<String> initializePlatform() async { // Clear out the unneeded HTML from index.html. document.body!.querySelectorAll('.legacy-dart').forEach( (Node element) { if (element.parentNode != null) { element.parentNode!.removeChild(element); } }.toJS, ); // Here, we try and initialize the connection between the DevTools web app and // its local server. DevTools can be launched without the server however, so // establishing this connection is a best-effort. final connection = await DevToolsServerConnection.connect(); if (connection != null) { setGlobal(Storage, ServerConnectionStorage(connection)); } else { setGlobal(Storage, BrowserStorage()); } // Prevent the browser default behavior for specific keybindings we'll later // handle in the app. This is a workaround for // https://github.com/flutter/flutter/issues/58119. window.onKeyDown.listen((event) { _sendKeyPressToParent(event); // Here, we're just trying to match the '⌘P' keybinding on macos. if (!event.metaKey) { return; } if (!window.navigator.userAgent.contains('Macintosh')) { return; } if (event.key == 'p') { event.preventDefault(); } }); return '${window.location}'; } void _sendKeyPressToParent(KeyboardEvent event) { // When DevTools is embedded inside IDEs in iframes, it will capture all // keypresses, preventing IDE shortcuts from working. To fix this, keypresses // will need to be posted up to the parent // https://github.com/flutter/devtools/issues/2775 // Check we have a connection and we appear to be embedded somewhere expected // because we can't use targetOrigin in postMessage as only the scheme is fixed // for VS Code (vscode-webview://[some guid]). if (globals.containsKey(ServiceConnectionManager) && !serviceConnection.serviceManager.hasConnection) { return; } if (!window.navigator.userAgent.contains('Electron')) return; final data = { 'altKey': event.altKey, 'code': event.code, 'ctrlKey': event.ctrlKey, 'isComposing': event.isComposing, 'key': event.key, 'location': event.location, 'metaKey': event.metaKey, 'repeat': event.repeat, 'shiftKey': event.shiftKey, }; window.parent?.postMessage( {'command': 'keydown', 'data': data}.jsify(), '*'.toJS, ); } class ServerConnectionStorage implements Storage { ServerConnectionStorage(this.connection); final DevToolsServerConnection connection; @override Future<String?> getValue(String key) { return connection.getPreferenceValue(key); } @override Future<void> setValue(String key, String value) async { await connection.setPreferenceValue(key, value); } } class BrowserStorage implements Storage { @override Future<String?> getValue(String key) async { return window.localStorage[key]; } @override Future<void> setValue(String key, String value) async { window.localStorage[key] = value; } }
devtools/packages/devtools_app/lib/src/shared/config_specific/framework_initialize/_framework_initialize_web.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/config_specific/framework_initialize/_framework_initialize_web.dart", "repo_id": "devtools", "token_count": 1179 }
91
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /// Assignment of an item in console to a named variable. class ConsoleVariableAssignment { ConsoleVariableAssignment._(this.consoleItemIndex, this.variableName); /// Zero based bottom up index for items in console. final int consoleItemIndex; final String variableName; /// Parses expressions like `var x=$2`. /// /// Treats $_ as $0. static ConsoleVariableAssignment? tryParse(String expression) { const variableNameGroup = '([_a-zA-Z][_a-zA-Z0-9]{0,30})'; const indexGroup = '([_012345])'; final regex = RegExp(r'var\s+' '$variableNameGroup' r'\s*=\s*\$' '$indexGroup'); final matches = regex.allMatches(expression); if (matches.length != 1) return null; final match = matches.first; assert(match.groupCount == 2); final varName = match.group(1)!; var indexChar = match.group(2)!; if (indexChar == '_') indexChar = '0'; final index = int.parse(indexChar); return ConsoleVariableAssignment._(index, varName); } }
devtools/packages/devtools_app/lib/src/shared/console/primitives/assignment.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/console/primitives/assignment.dart", "repo_id": "devtools", "token_count": 390 }
92
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:vm_service/vm_service.dart'; import '../globals.dart'; import 'dart_object_node.dart'; /// Gets object by object reference using offset and childCount from [variable] /// for list items. Future<Object?> getObject({ required IsolateRef? isolateRef, required ObjRef value, DartObjectNode? variable, }) async { // Don't include the offset and count parameters if we are not fetching a // partial object. Offset and count parameters are only necessary to request // subranges of the following instance kinds: // https://api.flutter.dev/flutter/vm_service/VmServiceInterface/getObject.html if (variable == null || !variable.isPartialObject) { return await serviceConnection.serviceManager.service!.getObject( isolateRef!.id!, value.id!, ); } return await serviceConnection.serviceManager.service!.getObject( isolateRef!.id!, value.id!, offset: variable.offset, count: variable.childCount, ); } bool isList(ObjRef? ref) { if (ref is! InstanceRef) return false; final kind = ref.kind; if (kind == null) return false; return kind.endsWith('List') || kind == InstanceKind.kList; }
devtools/packages/devtools_app/lib/src/shared/diagnostics/helpers.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/diagnostics/helpers.dart", "repo_id": "devtools", "token_count": 418 }
93
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:collection'; import 'package:collection/collection.dart' show IterableExtension; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/foundation.dart'; import 'package:vm_service/vm_service.dart'; import '../screens/inspector/inspector_screen.dart'; import '../screens/logging/logging_screen.dart'; import '../screens/network/network_screen.dart'; import '../screens/performance/performance_screen.dart'; import '../service/service_extensions.dart' as extensions; import '../service/vm_service_wrapper.dart'; import 'diagnostics/diagnostics_node.dart'; import 'globals.dart'; import 'primitives/listenable.dart'; import 'primitives/utils.dart'; class ErrorBadgeManager extends DisposableController with AutoDisposeControllerMixin { final _activeErrorCounts = <String, ValueNotifier<int>>{ InspectorScreen.id: ValueNotifier<int>(0), PerformanceScreen.id: ValueNotifier<int>(0), NetworkScreen.id: ValueNotifier<int>(0), }; final _activeErrors = <String, ValueNotifier<LinkedHashMap<String, DevToolsError>>>{ InspectorScreen.id: ValueNotifier<LinkedHashMap<String, DevToolsError>>( LinkedHashMap<String, DevToolsError>(), ), }; void vmServiceOpened(VmServiceWrapper service) { // Ensure structured errors are enabled. unawaited( serviceConnection.serviceManager.serviceExtensionManager .setServiceExtensionState( extensions.structuredErrors.extension, enabled: true, value: true, ), ); // Log Flutter extension events. autoDisposeStreamSubscription( service.onExtensionEventWithHistorySafe.listen(_handleExtensionEvent), ); // Log stderr events. autoDisposeStreamSubscription( service.onStderrEventWithHistorySafe.listen(_handleStdErr), ); } void _handleExtensionEvent(Event e) { if (e.extensionKind == 'Flutter.Error') { incrementBadgeCount(LoggingScreen.id); final inspectableError = _extractInspectableError(e); if (inspectableError != null) { incrementBadgeCount(InspectorScreen.id); appendError(InspectorScreen.id, inspectableError); } } } InspectableWidgetError? _extractInspectableError(Event error) { // TODO(dantup): Switch to using the inspectorService from the serviceManager // once Jacob's change to add it lands. final node = RemoteDiagnosticsNode(error.extensionData!.data, null, false, null); final errorSummaryNode = node.inlineProperties.firstWhereOrNull((p) => p.type == 'ErrorSummary'); final errorMessage = errorSummaryNode?.description; if (errorMessage == null) { return null; } final devToolsUrlNode = node.inlineProperties.firstWhereOrNull( (p) => p.type == 'DevToolsDeepLinkProperty' && p.getStringMember('value') != null, ); if (devToolsUrlNode == null) { return null; } final queryParams = devToolsQueryParams(devToolsUrlNode.getStringMember('value')!); final inspectorRef = queryParams['inspectorRef'] ?? ''; return InspectableWidgetError(errorMessage, inspectorRef); } void _handleStdErr(Event _) { incrementBadgeCount(LoggingScreen.id); } void incrementBadgeCount(String screenId) { final notifier = _errorCountNotifier(screenId); if (notifier == null) return; final currentCount = notifier.value; notifier.value = currentCount + 1; } void appendError(String screenId, DevToolsError error) { final ValueNotifier<LinkedHashMap<String?, DevToolsError>>? errors = _activeErrors[screenId]; if (errors == null) return; // Build a new map with the new error. Adding to the existing map // won't cause the ValueNotifier to fire (and it's not permitted to call // notifyListeners() directly). final newValue = LinkedHashMap<String, DevToolsError>.from(errors.value); newValue[error.id] = error; errors.value = newValue; } ValueListenable<int> errorCountNotifier(String screenId) { return _errorCountNotifier(screenId) ?? const FixedValueListenable<int>(0); } ValueListenable<LinkedHashMap<String, DevToolsError>> erroredItemsForPage( String screenId, ) { return _activeErrors[screenId] ?? FixedValueListenable<LinkedHashMap<String, DevToolsError>>( LinkedHashMap<String, DevToolsError>(), ); } ValueNotifier<int>? _errorCountNotifier(String screenId) { return _activeErrorCounts[screenId]; } void clearErrors(String screenId) { _activeErrorCounts[screenId]?.value = 0; } void filterErrors(String screenId, bool Function(String id) isValid) { final errors = _activeErrors[screenId]; if (errors == null) return; final oldCount = errors.value.length; final newValue = Map.fromEntries(errors.value.entries.where((e) => isValid(e.key))); if (newValue.length != oldCount) { errors.value = newValue as LinkedHashMap<String, DevToolsError>; } } void markErrorAsRead(String screenId, DevToolsError error) { final errors = _activeErrors[screenId]; if (errors == null) return; // If this error doesn't exist anymore or is already read, nothing to do. if (errors.value[error.id]?.read ?? true) { return; } // Otherwise, replace the map with a new one that has the error marked // as read. errors.value = LinkedHashMap<String, DevToolsError>.fromEntries( errors.value.entries.map((e) { if (e.value != error) return e; return MapEntry(e.key, e.value.asRead()); }), ); } } class DevToolsError { DevToolsError(this.errorMessage, this.id, {this.read = false}); final String errorMessage; final String id; final bool read; DevToolsError asRead() => DevToolsError(errorMessage, id, read: true); } class InspectableWidgetError extends DevToolsError { InspectableWidgetError(String errorMessage, String id, {bool read = false}) : super(errorMessage, id, read: read); @override InspectableWidgetError asRead() => InspectableWidgetError(errorMessage, id, read: true); }
devtools/packages/devtools_app/lib/src/shared/error_badge_manager.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/error_badge_manager.dart", "repo_id": "devtools", "token_count": 2220 }
94
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:vm_service/vm_service.dart'; import 'class_name.dart'; import 'simple_items.dart'; /// Contains information from [HeapSnapshotObject] needed for /// memory analysis on memory screen. class AdaptedHeapObject { AdaptedHeapObject({ required this.code, required this.outRefs, required this.heapClass, required this.shallowSize, }); factory AdaptedHeapObject.fromHeapSnapshotObject( HeapSnapshotObject object, int index, ) { return AdaptedHeapObject( code: object.identityHashCode, outRefs: Set.of(object.references.where((i) => i != index)), heapClass: HeapClassName.fromHeapSnapshotClass(object.klass), shallowSize: object.shallowSize, ); } final Set<int> outRefs; final Set<int> inRefs = {}; final HeapClassName heapClass; final IdentityHashCode code; final int shallowSize; // No serialization is needed for the fields below, because the fields are // calculated after the heap deserialization. /// Special values: `null` - the object is not reachable, /// `-1` - the object is root. int? retainer; /// Total shallow size of objects, where this object is retainer, recursively, /// plus shallow size of this object. /// /// Null, if object is not reachable. int? retainedSize; String get shortName => '${heapClass.className}-$code'; String get name => '${heapClass.library}/$shortName'; }
devtools/packages/devtools_app/lib/src/shared/memory/adapted_heap_object.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/memory/adapted_heap_object.dart", "repo_id": "devtools", "token_count": 510 }
95
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:flutter/widgets.dart'; /// Provides functionality to track actionInProgress state while executing long /// running actions. /// /// Use this mixin to simplifying showing buttons as disabled while blocking /// actions are being performed and otherwise avoid executing multiple actions /// at once. mixin BlockingActionMixin<T extends StatefulWidget> on State<T> { /// Returns whether an action is in progress. /// /// Typically users should disable buttons and or other UI that should not /// be interactive while the action is in progress. @protected bool get actionInProgress => _actionInProgress; bool _actionInProgress = false; final _disposed = Completer<bool>(); /// Sets actionInProgress to true until the [callback] completes or this /// State object is disposed. /// /// The future returned by this method completes when either the future /// returned by the callback completes or the State object is disposed. Future<void> blockWhileInProgress(Future Function() callback) async { setState(() { _actionInProgress = true; }); try { // If we await a callback that does not complete until after this object // is disposed, we will leak State objects. await Future.any([callback(), _disposed.future]); } finally { if (_disposed.isCompleted) { // Calling setState after dispose will trigger a spurious exception. assert(!_actionInProgress); } else { setState(() { _actionInProgress = false; }); } } } @override void dispose() { _actionInProgress = false; _disposed.complete(true); super.dispose(); } }
devtools/packages/devtools_app/lib/src/shared/primitives/blocking_action_mixin.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/primitives/blocking_action_mixin.dart", "repo_id": "devtools", "token_count": 554 }
96
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /// A single trace event that follows the Chrome Trace Event Format. /// /// See Chrome Trace Event Format documentation: /// https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/preview class ChromeTraceEvent { /// Creates a timeline event given JSON-encoded event data. ChromeTraceEvent(this.json) : name = json[nameKey] as String?, category = json[categoryKey] as String?, phase = json[phaseKey] as String?, processId = json[processIdKey] as int?, threadId = json[threadIdKey] as int?, duration = json[durationKey] as int?, timestampMicros = json[timestampKey] as int?, args = json[argsKey] as Map<String, Object?>?; static const nameKey = 'name'; static const categoryKey = 'cat'; static const phaseKey = 'ph'; static const processIdKey = 'pid'; static const threadIdKey = 'tid'; static const durationKey = 'dur'; static const timestampKey = 'ts'; static const argsKey = 'args'; static const typeKey = 'type'; static const idKey = 'id'; static const scopeKey = 'scope'; static const asyncBeginPhase = 'b'; static const asyncEndPhase = 'e'; static const asyncInstantPhase = 'n'; static const durationBeginPhase = 'B'; static const durationEndPhase = 'E'; static const durationCompletePhase = 'X'; static const metadataEventPhase = 'M'; static const gcCategory = 'GC'; static const frameNumberArg = 'frame_number'; /// Event name for thread name metadata events. static const threadNameEvent = 'thread_name'; /// The original event JSON. final Map<String, Object?> json; /// The name of the event. /// /// Corresponds to the "name" field in the JSON event. final String? name; /// Event category. Events with different names may share the same category. /// /// Corresponds to the "cat" field in the JSON event. final String? category; /// For a given long lasting event, denotes the phase of the event, such as /// "B" for "event began", and "E" for "event ended". /// /// Corresponds to the "ph" field in the JSON event. final String? phase; /// ID of process that emitted the event. /// /// Corresponds to the "pid" field in the JSON event. final int? processId; /// ID of thread that issues the event. /// /// Corresponds to the "tid" field in the JSON event. final int? threadId; /// Each async event has an additional required parameter id. We consider the /// events with the same category and id as events from the same event tree. String? get id => json[idKey] as String?; /// An optional scope string can be specified to avoid id conflicts, in which /// case we consider events with the same category, scope, and id as events /// from the same event tree. String? get scope => json[scopeKey] as String?; /// The duration of the event, in microseconds. /// /// Note, some events are reported with duration. Others are reported as a /// pair of begin/end events. /// /// Corresponds to the "dur" field in the JSON event. final int? duration; /// Time passed since tracing was enabled, in microseconds. final int? timestampMicros; /// Arbitrary data attached to the event. final Map<String, Object?>? args; ChromeTraceEvent copy({ String? name, String? category, String? phase, int? processId, int? threadId, int? duration, int? timestampMicros, Map<String, dynamic>? args, }) { return ChromeTraceEvent({ nameKey: name ?? this.name, categoryKey: category ?? this.category, phaseKey: phase ?? this.phase, processIdKey: processId ?? this.processId, threadIdKey: threadId ?? this.threadId, durationKey: duration ?? this.duration, timestampKey: timestampMicros ?? this.timestampMicros, argsKey: args ?? this.args, }); } @override String toString() => '[$idKey: $id] [$phaseKey: $phase] ' '$name - [$timestampKey: $timestampMicros] [$durationKey: $duration]'; }
devtools/packages/devtools_app/lib/src/shared/primitives/trace_event.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/primitives/trace_event.dart", "repo_id": "devtools", "token_count": 1310 }
97
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:convert'; import 'package:devtools_shared/devtools_shared.dart'; import 'package:flutter/foundation.dart'; import 'package:http/http.dart' as http; import 'package:logging/logging.dart'; import '../config_specific/notifications/notifications.dart'; import '../framework_controller.dart'; import '../globals.dart'; final _log = Logger('lib/src/shared/server_api_client'); /// This class coordinates the connection between the DevTools server and the /// DevTools web app. /// /// See `package:dds/src/devtools/client.dart`. class DevToolsServerConnection { DevToolsServerConnection._(this.sseClient) { sseClient.stream!.listen((msg) { _handleMessage(msg); }); initFrameworkController(); } /// Returns a URI for the backend ./api folder for a DevTools page being hosted /// at `baseUri`. Trailing slashes are important to support Path-URL Strategy: /// /// - http://foo/devtools/ => http://foo/devtools/api /// - http://foo/devtools/inspector => http://foo/devtools/api /// /// For compatibility with any tools that might construct URIs ending with /// "/devtools" without the trailing slash, URIs ending with `devtools` (such /// as when hosted by DDS) are handled specially: /// /// - http://foo/devtools => http://foo/devtools/api @visibleForTesting static Uri apiUriFor(Uri baseUri) => baseUri.path.endsWith('devtools') ? baseUri.resolve('devtools/api/') : baseUri.resolve('api/'); static Future<DevToolsServerConnection?> connect() async { final apiUri = apiUriFor(Uri.base); final pingUri = apiUri.resolve('ping'); try { final response = await http.get(pingUri).timeout(const Duration(seconds: 5)); // When running with the local dev server Flutter may serve its index page // for missing files to support the hashless url strategy. Check the response // content to confirm it came from our server. // See https://github.com/flutter/flutter/issues/67053 if (response.statusCode != 200 || response.body != 'OK') { // unable to locate dev server _log.info('devtools server not available (${response.statusCode})'); return null; } } catch (e) { // unable to locate dev server _log.info('devtools server not available ($e)'); return null; } final sseUri = apiUri.resolve('sse'); final client = SseClient(sseUri.toString(), debugKey: 'DevToolsServer'); return DevToolsServerConnection._(client); } final SseClient sseClient; int _nextRequestId = 0; Notification? _lastNotification; final Map<String, Completer<Object?>> _completers = {}; /// Tie the DevTools server connection to the framework controller. /// /// This is called once, sometime after the `DevToolsServerConnection` /// instance is created. void initFrameworkController() { frameworkController.onConnected.listen((vmServiceUri) { _notifyConnected(vmServiceUri); }); frameworkController.onPageChange.listen((page) { _notifyCurrentPage(page); }); frameworkController.onDisconnected.listen((_) { _notifyDisconnected(); }); } Future<void> notify() async { final permission = await Notification.requestPermission(); if (permission != 'granted') { return; } // Dismiss any earlier notifications first so they don't build up in the // notifications list if the user presses the button multiple times. dismissNotifications(); _lastNotification = Notification( 'Dart DevTools', body: 'DevTools is available in this existing browser window', ); } void dismissNotifications() { _lastNotification?.close(); } Future<T> _callMethod<T>(String method, [Map<String, dynamic>? params]) { final id = '${_nextRequestId++}'; final json = jsonEncode({ 'jsonrpc': '2.0', 'id': id, 'method': method, if (params != null) 'params': params, }); final completer = Completer<T>(); _completers[id] = completer; sseClient.sink!.add(json); return completer.future; } void _handleMessage(String msg) { try { final Map request = jsonDecode(msg); if (request.containsKey('method')) { final String method = request['method']; final Map<String, dynamic> params = request['params'] ?? {}; _handleMethod(method, params); } else if (request.containsKey('id')) { _handleResponse(request['id']!, request['result']); } else { _log.info('Unable to parse API message from server:\n\n$msg'); } } catch (e) { _log.info('Failed to handle API message from server:\n\n$msg\n\n$e'); } } void _handleMethod(String method, Map<String, dynamic> params) { switch (method) { case 'connectToVm': final String uri = params['uri']; final bool notify = params['notify'] == true; frameworkController.notifyConnectToVmEvent( Uri.parse(uri), notify: notify, ); return; case 'showPage': final String pageId = params['page']; frameworkController.notifyShowPageId(pageId); return; case 'enableNotifications': unawaited(Notification.requestPermission()); return; case 'notify': unawaited(notify()); return; case 'ping': ping(); return; default: _log.info('Unknown request $method from server'); } } void _handleResponse(String id, Object? result) { final completer = _completers.remove(id); completer?.complete(result); } void _notifyConnected(String vmServiceUri) { unawaited(_callMethod('connected', {'uri': vmServiceUri})); } void _notifyCurrentPage(PageChangeEvent page) { unawaited( _callMethod( 'currentPage', { 'id': page.id, 'embedded': page.embedded, }, ), ); } void _notifyDisconnected() { unawaited(_callMethod('disconnected')); } /// Retrieves a preference value from the DevTools configuration file at /// ~/.flutter-devtools/.devtools. Future<String?> getPreferenceValue(String key) { return _callMethod('getPreferenceValue', { 'key': key, }); } /// Sets a preference value in the DevTools configuration file at /// ~/.flutter-devtools/.devtools. Future setPreferenceValue(String key, String value) async { await _callMethod('setPreferenceValue', { 'key': key, 'value': value, }); } /// Allows the server to ping the client to see that it is definitely still /// active and doesn't just appear to be connected because of SSE timeouts. void ping() { unawaited(_callMethod('pingResponse')); } }
devtools/packages/devtools_app/lib/src/shared/server/server_api_client.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/server/server_api_client.dart", "repo_id": "devtools", "token_count": 2502 }
98
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:codicon/codicon.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import '../common_widgets.dart'; import '../primitives/utils.dart'; // TODO(kenz): consider breaking this up for flat data filtering and tree data // filtering. /// Mixin to add to feature controllers that need to support filtering data and /// storing the state of those filters. /// /// To use this mixin, you must implement [filterData] as well as either or both /// [createToggleFilters] and [createQueryFilterArgs]. /// /// Classes mixing in [FilterControllerMixin] must also extend /// [DisposableController] and mixin [AutoDisposeControllerMixin], and a class /// can subscribe to updates to the active filter by calling /// [subscribeToFilterChanges]. mixin FilterControllerMixin<T> on DisposableController implements AutoDisposeControllerMixin { static const filterTagSeparator = '-#-'; final filteredData = ListValueNotifier<T>([]); final useRegExp = ValueNotifier<bool>(false); // TODO(kenz): replace [Filter] class with a record when available. ValueListenable<Filter<T>> get activeFilter => _activeFilter; late final _activeFilter = ValueNotifier<Filter<T>>( Filter( queryFilter: QueryFilter.empty(args: _queryFilterArgs), toggleFilters: _toggleFilters, ), ); void setActiveFilter({ String? query, List<ToggleFilter<T>>? toggleFilters, }) { _activeFilter.value = Filter( queryFilter: query != null ? QueryFilter.parse( query, args: _queryFilterArgs, useRegExp: useRegExp.value, ) : QueryFilter.empty(args: _queryFilterArgs), toggleFilters: toggleFilters ?? _toggleFilters, ); } void subscribeToFilterChanges() { addAutoDisposeListener(activeFilter, () { filterData(activeFilter.value); }); } late final List<ToggleFilter<T>> _toggleFilters = createToggleFilters(); List<ToggleFilter<T>> createToggleFilters() => []; late final Map<String, QueryFilterArgument> _queryFilterArgs = createQueryFilterArgs(); Map<String, QueryFilterArgument> createQueryFilterArgs() => {}; bool get isFilterActive { final filter = activeFilter.value; final queryFilterActive = !filter.queryFilter.isEmpty; final toggleFilterActive = filter.toggleFilters.any( (filter) => filter.enabled.value, ); return queryFilterActive || toggleFilterActive; } // TODO(kenz): de-dupe the filtering logic in overrides of this method. // TODO(kenz): refactor this so that `filterData` returns the filtered data // and does not have side effects other than filtering data. Add a // `onFilterApplied` method here that can be overridden to apply those // screen-specific side effects of filtering. This will require us to // split up tree filtering and flat table filtering though. @mustCallSuper void filterData(Filter<T> filter) { _activeFilter.value = filter; } String activeFilterTag() { final activeFilter = _activeFilter.value; final suffixList = <String>[]; for (final toggleFilter in activeFilter.toggleFilters) { if (toggleFilter.enabled.value) { suffixList.add(toggleFilter.name); } } final toggleFilterTag = suffixList.join(','); final queryFilterTag = activeFilter.queryFilter.query.toLowerCase(); return [ toggleFilterTag, queryFilterTag, if (queryFilterTag.isNotEmpty && useRegExp.value) 'regexp', ].where((e) => e.isNotEmpty).join(filterTagSeparator); } void _resetToDefaultFilter() { // Reset all filter values. for (final toggleFilter in _toggleFilters) { toggleFilter.enabled.value = toggleFilter.enabledByDefault; } _queryFilterArgs.forEach((key, value) => value.reset()); } void resetFilter() { _resetToDefaultFilter(); _activeFilter.value = Filter( queryFilter: QueryFilter.empty(args: _queryFilterArgs), toggleFilters: _toggleFilters, ); } } /// Dialog to manage filter settings. /// /// This dialog interacts with a [FilterControllerMixin] to manage and preserve /// the filter state managed by the dialog. class FilterDialog<T> extends StatefulWidget { FilterDialog({ super.key, required this.controller, this.includeQueryFilter = true, this.queryInstructions, }) : assert( !includeQueryFilter || (queryInstructions != null && controller._queryFilterArgs.isNotEmpty), ), toggleFilterValuesAtOpen = List.generate( controller.activeFilter.value.toggleFilters.length, (index) => controller.activeFilter.value.toggleFilters[index].enabled.value, ); final FilterControllerMixin<T> controller; final String? queryInstructions; final bool includeQueryFilter; final List<bool> toggleFilterValuesAtOpen; @override State<FilterDialog<T>> createState() => _FilterDialogState<T>(); } class _FilterDialogState<T> extends State<FilterDialog<T>> with AutoDisposeMixin { late final TextEditingController queryTextFieldController; late bool useRegExp; late bool pendingUseRegExp; @override void initState() { super.initState(); queryTextFieldController = TextEditingController( text: widget.controller.activeFilter.value.queryFilter.query, ); useRegExp = widget.controller.useRegExp.value; addAutoDisposeListener(widget.controller.useRegExp, () { useRegExp = widget.controller.useRegExp.value; }); pendingUseRegExp = useRegExp; } @override void dispose() { queryTextFieldController.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return StateUpdateDialog( title: 'Filters', onApply: _applyFilterChanges, onCancel: _restoreOldValues, onResetDefaults: _resetFilters, child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ if (widget.includeQueryFilter) ...[ DevToolsClearableTextField( autofocus: true, labelText: 'Filter Query', controller: queryTextFieldController, additionalSuffixActions: [ DevToolsToggleButton( icon: Codicons.regex, message: 'Use regular expressions', outlined: false, isSelected: pendingUseRegExp, onPressed: () => setState(() { pendingUseRegExp = !pendingUseRegExp; }), ), ], ), const SizedBox(height: defaultSpacing), if (widget.queryInstructions != null) ...[ DialogHelpText(helpText: widget.queryInstructions!), const SizedBox(height: defaultSpacing), ], ], for (final toggleFilter in widget.controller._toggleFilters) ...[ ToggleFilterElement(filter: toggleFilter), ], ], ), ); } void _applyFilterChanges() { widget.controller ..useRegExp.value = pendingUseRegExp ..setActiveFilter( query: widget.includeQueryFilter ? queryTextFieldController.value.text : null, toggleFilters: widget.controller._toggleFilters, ); } void _resetFilters() { queryTextFieldController.clear(); widget.controller._resetToDefaultFilter(); } void _restoreOldValues() { for (var i = 0; i < widget.controller._toggleFilters.length; i++) { final filter = widget.controller._toggleFilters[i]; filter.enabled.value = widget.toggleFilterValuesAtOpen[i]; } } } class ToggleFilterElement extends StatelessWidget { const ToggleFilterElement({Key? key, required this.filter}) : super(key: key); final ToggleFilter filter; @override Widget build(BuildContext context) { Widget content = InkWell( onTap: () => filter.enabled.value = !filter.enabled.value, child: Row( children: [ NotifierCheckbox(notifier: filter.enabled), Text(filter.name), ], ), ); if (filter.tooltip != null) { content = DevToolsTooltip( message: filter.tooltip, child: content, ); } return content; } } class Filter<T> { Filter({required this.queryFilter, required this.toggleFilters}); final QueryFilter queryFilter; final List<ToggleFilter<T>> toggleFilters; bool get isEmpty => queryFilter.isEmpty && toggleFilters.isEmpty; } class ToggleFilter<T> { ToggleFilter({ required this.name, required this.includeCallback, this.tooltip, this.enabledByDefault = false, }) : enabled = ValueNotifier<bool>(enabledByDefault); final String name; final bool Function(T element) includeCallback; final String? tooltip; final bool enabledByDefault; final ValueNotifier<bool> enabled; } class QueryFilter { const QueryFilter._({ this.filterArguments = const <String, QueryFilterArgument>{}, this.substringExpressions = const <Pattern>[], this.isEmpty = false, }); factory QueryFilter.empty({required Map<String, QueryFilterArgument> args}) { return QueryFilter._( filterArguments: args, substringExpressions: <Pattern>[], isEmpty: true, ); } factory QueryFilter.parse( String query, { required Map<String, QueryFilterArgument> args, required bool useRegExp, }) { if (query.isEmpty) { return QueryFilter.empty(args: args); } // Reset all argument values before generating a new QueryFilter. for (final arg in args.values) { arg.reset(); } final partsBySpace = query.split(' '); final substringExpressions = <Pattern>[]; for (final part in partsBySpace) { final querySeparatorIndex = part.indexOf(':'); if (querySeparatorIndex != -1) { final value = part.substring(querySeparatorIndex + 1).trim(); if (value.isNotEmpty) { for (var arg in args.values) { if (arg.matchesKey(part)) { arg.isNegative = part.startsWith(QueryFilterArgument.negativePrefix); final valueStrings = value.split(QueryFilterArgument.valueSeparator); arg.values = useRegExp ? valueStrings .map((v) => RegExp(v, caseSensitive: false)) .toList() : valueStrings; } } } } else { substringExpressions .add(useRegExp ? RegExp(part, caseSensitive: false) : part); } } bool validArgumentFilter = false; for (final arg in args.values) { if (arg.values.isNotEmpty) { validArgumentFilter = true; break; } } if (!validArgumentFilter && substringExpressions.isEmpty) { return QueryFilter.empty(args: args); } return QueryFilter._( filterArguments: args, substringExpressions: substringExpressions, ); } final Map<String, QueryFilterArgument> filterArguments; final List<Pattern> substringExpressions; final bool isEmpty; String get query => isEmpty ? '' : [ ...substringExpressions.toStringList(), for (final arg in filterArguments.values) arg.display, ].join(' ').trim(); } class QueryFilterArgument<T> { QueryFilterArgument({ required this.keys, required this.dataValueProvider, required this.substringMatch, this.values = const [], this.isNegative = false, }); static const negativePrefix = '-'; static const valueSeparator = ','; final List<String> keys; final String? Function(T data) dataValueProvider; final bool substringMatch; List<Pattern> values; bool isNegative; String get display { if (values.isEmpty) return ''; return '${isNegative ? negativePrefix : ''}${keys.first}:' '${values.toStringList().join(valueSeparator)}'; } bool matchesKey(String query) { for (final key in keys) { if (query.startsWith('$key:') || query.startsWith('-$key:')) return true; } return false; } bool matchesValue(T data) { // If there are no specified filter values, consider [dataValue] to match // this filter. if (values.isEmpty) return true; final dataValue = dataValueProvider(data); if (dataValue == null) { return isNegative; } var matches = false; for (final value in values) { matches = substringMatch ? dataValue.caseInsensitiveContains(value) : dataValue.caseInsensitiveEquals(value); if (matches) break; } return isNegative ? !matches : matches; } void reset() { values = []; isNegative = false; } } extension PatternListExtension on List<Pattern> { List<String> toStringList() { return safeFirst is RegExp ? cast<RegExp>().map((v) => v.pattern).toList() : cast<String>(); } }
devtools/packages/devtools_app/lib/src/shared/ui/filter.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/shared/ui/filter.dart", "repo_id": "devtools", "token_count": 5048 }
99
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:devtools_app_shared/ui.dart'; import 'package:flutter/material.dart'; import '../../shared/analytics/analytics.dart' as ga; import '../../shared/analytics/constants.dart' as gac; import '../../shared/common_widgets.dart'; import '../api/dart_tooling_api.dart'; import '../api/vs_code_api.dart'; import 'debug_sessions.dart'; import 'devices.dart'; /// A general Flutter sidebar panel for embedding inside IDEs. /// /// Provides some basic functionality to improve discoverability of features /// such as creation of new projects, device selection and DevTools features. class VsCodeFlutterPanel extends StatefulWidget { const VsCodeFlutterPanel(this.api, {super.key}); final DartToolingApi api; @override State<VsCodeFlutterPanel> createState() => _VsCodeFlutterPanelState(); } class _VsCodeFlutterPanelState extends State<VsCodeFlutterPanel> { @override void initState() { super.initState(); ga.screen(gac.VsCodeFlutterSidebar.id); } @override Widget build(BuildContext context) { return Column( children: [ FutureBuilder( future: widget.api.vsCode, builder: (context, snapshot) => switch ((snapshot.connectionState, snapshot.data)) { (ConnectionState.done, final vsCodeApi?) => _VsCodeConnectedPanel(vsCodeApi), (ConnectionState.done, null) => const Text('VS Code is not available'), _ => const CenteredCircularProgressIndicator(), }, ), ], ); } } /// The panel shown once we know VS Code is available (the host has responded to /// the `vsCode.getCapabilities` request). class _VsCodeConnectedPanel extends StatefulWidget { const _VsCodeConnectedPanel(this.api); final VsCodeApi api; @override State<_VsCodeConnectedPanel> createState() => _VsCodeConnectedPanelState(); } class _VsCodeConnectedPanelState extends State<_VsCodeConnectedPanel> { @override void initState() { super.initState(); unawaited(widget.api.initialize()); } @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.symmetric( horizontal: denseSpacing, vertical: defaultSpacing, ), // Debug sessions rely on devices too, because they look up the sessions // device for some capabilities (for example to know if the session is // running on a web device). child: StreamBuilder( stream: widget.api.devicesChanged, builder: (context, devicesSnapshot) { final devices = devicesSnapshot.data?.devices ?? const []; final unsupportedDevices = devicesSnapshot.data?.unsupportedDevices ?? const []; final deviceMap = {for (final device in devices) device.id: device}; return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ StreamBuilder( stream: widget.api.debugSessionsChanged, builder: (context, debugSessionsSnapshot) { final sessions = debugSessionsSnapshot.data?.sessions ?? const []; return DebugSessions( api: widget.api, sessions: sessions, deviceMap: deviceMap, ); }, ), const SizedBox(height: defaultSpacing), if (widget.api.capabilities.selectDevice) Devices( widget.api, devices: devices, unsupportedDevices: unsupportedDevices, selectedDeviceId: devicesSnapshot.data?.selectedDeviceId, ), ], ); }, ), ); } }
devtools/packages/devtools_app/lib/src/standalone_ui/vs_code/flutter_panel.dart/0
{ "file_path": "devtools/packages/devtools_app/lib/src/standalone_ui/vs_code/flutter_panel.dart", "repo_id": "devtools", "token_count": 1629 }
100
## Updating NEXT_RELEASE_NOTES.md When you add a user-facing change to DevTools, please add a release note entry to document this improvement. This entry should be phrased in the past tense (e.g. "Added XYZ" instead of "Add XYZ"). If you want to add an image to the release note entry, add the image to the `release_notes/images` folder, and then reference it in the markdown. For example: ```markdown ![Accessible image description](images/my_feature.png "Image hover description") ``` When adding these release notes to the Flutter website, you'll have to copy the image over and edit the path to match the structure of the Flutter website. ## Generating release notes for the Flutter website - Release notes for DevTools are hosted on the Flutter website. They are indexed at https://docs.flutter.dev/tools/devtools/release-notes. - To add release notes for the latest release, create a PR with the appropriate changes for your release: - The [NEXT_RELEASE_NOTES.md](NEXT_RELEASE_NOTES.md) file contains the running release notes for the current version. - See an example [PR](https://github.com/flutter/website/pull/10113) for an example of how to add those to the Flutter website. - Make sure to update all image links with the `site_url` - e.g. `{{site.url}}/tools/devtools/release-notes/images-<VERSION>/<IMAGE_FILE>` - NOTE: When adding images, be cognizant that the images will be rendered in a relatively small window in DevTools, and they should be sized accordingly. - Once you are satisfied with the release notes, create a new branch directly on the `flutter/website` repo and open a PR, and then proceed to the testing steps below. ### Testing the release notes in DevTools Once you push up your branch to `flutter/website` and open your PR, wait for the `github-actions` bot to stage your changes to Firebase. Open the link it comments and navigate to the release notes you want to test. Be sure to add `-src.md` to the url to get the raw json. The url should look something like: ``` https://flutter-docs-prod--pr8928-dt-notes-links-b0b33er1.web.app/tools/devtools/release-notes/release-notes-2.24.0-src.md ``` - Copy this url and set `_debugReleaseNotesUrl` in `release_notes.dart` to this value. - Run DevTools and the release notes viewer should open with the markdown at the url you provided. - Verify the release notes viewer displays the new release notes as expected. Some issues to watch out for are broken images or 'include_relative' lines in the markdown that don't load properly.
devtools/packages/devtools_app/release_notes/README.md/0
{ "file_path": "devtools/packages/devtools_app/release_notes/README.md", "repo_id": "devtools", "token_count": 738 }
101
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/debugger/codeview.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_test/devtools_test.dart'; import 'package:devtools_test/helpers.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; void main() { const windowSize = Size(4000.0, 4000.0); late FakeServiceConnectionManager fakeServiceConnection; late MockDebuggerController debuggerController; late MockCodeViewController codeViewController; late ScriptsHistory scriptsHistory; late ValueNotifier<bool> showCodeCoverage; late ValueNotifier<bool> showProfileHits; bool refreshCodeCoverageInvoked = false; setUpAll(() { setGlobal(BreakpointManager, BreakpointManager()); fakeServiceConnection = FakeServiceConnectionManager(); codeViewController = createMockCodeViewControllerWithDefaults(); debuggerController = createMockDebuggerControllerWithDefaults( codeViewController: codeViewController, ); scriptsHistory = ScriptsHistory(); final app = fakeServiceConnection.serviceManager.connectedApp!; mockConnectedApp( app, isFlutterApp: false, isProfileBuild: false, isWebApp: false, ); when(fakeServiceConnection.serviceManager.connectedApp!.isProfileBuildNow) .thenReturn(false); when(fakeServiceConnection.serviceManager.connectedApp!.isDartWebAppNow) .thenReturn(false); setGlobal(ServiceConnectionManager, fakeServiceConnection); setGlobal(IdeTheme, IdeTheme()); setGlobal(ScriptManager, MockScriptManager()); setGlobal(NotificationService, NotificationService()); setGlobal( DevToolsEnvironmentParameters, ExternalDevToolsEnvironmentParameters(), ); setGlobal(PreferencesController, PreferencesController()); scriptsHistory.pushEntry(mockScript!); final mockCodeViewController = debuggerController.codeViewController; when(mockCodeViewController.currentScriptRef) .thenReturn(ValueNotifier(mockScriptRef)); when(mockCodeViewController.currentParsedScript) .thenReturn(ValueNotifier(mockParsedScript)); when(mockCodeViewController.scriptsHistory).thenReturn(scriptsHistory); showCodeCoverage = ValueNotifier<bool>(false); showProfileHits = ValueNotifier<bool>(false); when(mockCodeViewController.toggleShowCodeCoverage()).thenAnswer( (_) => showCodeCoverage.value = !showCodeCoverage.value, ); when(mockCodeViewController.toggleShowProfileInformation()).thenAnswer( (_) => showProfileHits.value = !showProfileHits.value, ); when(mockCodeViewController.showCodeCoverage).thenReturn(showCodeCoverage); when(mockCodeViewController.showProfileInformation) .thenReturn(showProfileHits); refreshCodeCoverageInvoked = false; // TODO(jacobr): is there a better way to clean this up? // ignore: discarded_futures when(mockCodeViewController.refreshCodeStatistics()).thenAnswer( (_) async => refreshCodeCoverageInvoked = true, ); when(codeViewController.navigationInProgress).thenReturn(false); }); Future<void> pumpDebuggerScreen( WidgetTester tester, DebuggerController controller, ) async { await tester.pumpWidget( wrapWithControllers( DebuggerSourceAndControls( shownFirstScript: () => true, setShownFirstScript: (_) {}, ), debugger: controller, ), ); } void gutterItemProfileInfoTester(WidgetTester tester, bool showProfileInfo) { final gutterItems = tester.widgetList<ProfileInformationGutterItem>( find.byType(ProfileInformationGutterItem), ); if (!showProfileInfo) { expect(gutterItems.isEmpty, true); } else { expect(gutterItems.length, profilerEntries.length); } } void gutterItemCoverageTester(WidgetTester tester, bool showCoverage) { final gutterItems = tester.widgetList<GutterItem>(find.byType(GutterItem)); for (final item in gutterItems) { if (item.isExecutable) { expect( coverageHitLines.contains(item.lineNumber) || coverageMissLines.contains(item.lineNumber), true, ); if (showCoverage) { expect(item.coverageHit!, coverageHitLines.contains(item.lineNumber)); } else { expect(item.coverageHit, isNull); } } } } testWidgetsWithWindowSize( 'Gutter displays code statistics info', windowSize, (WidgetTester tester) async { await pumpDebuggerScreen(tester, debuggerController); final findCoverageToggle = find.byTooltip('Show code coverage'); final findProfileToggle = find.byTooltip('Show profiler hits'); final findRefresh = find.byType(RefreshButton); expect(findCoverageToggle, findsOneWidget); expect(findProfileToggle, findsOneWidget); expect(findRefresh, findsOneWidget); // Coverage display starts disabled. gutterItemCoverageTester(tester, false); gutterItemProfileInfoTester(tester, false); expect( tester.widget<DevToolsButton>(findRefresh).onPressed, isNull, ); // Toggle showing coverage and verify the gutter items contain coverage // information. await tester.tap(findCoverageToggle); await pumpDebuggerScreen(tester, debuggerController); gutterItemCoverageTester(tester, true); gutterItemProfileInfoTester(tester, false); expect( tester.widget<DevToolsButton>(findRefresh).onPressed, isNotNull, ); // Toggle showing profiler information and verify the gutter items contain // profiling information. await tester.tap(findProfileToggle); await pumpDebuggerScreen(tester, debuggerController); gutterItemCoverageTester(tester, true); gutterItemProfileInfoTester(tester, true); expect( tester.widget<DevToolsButton>(findRefresh).onPressed, isNotNull, ); // Test the refresh coverage button. await tester.tap(findRefresh); await pumpDebuggerScreen(tester, debuggerController); expect(refreshCodeCoverageInvoked, true); // Toggle again and verify the coverage information is no longer present. await tester.tap(findCoverageToggle); await pumpDebuggerScreen(tester, debuggerController); gutterItemCoverageTester(tester, false); gutterItemProfileInfoTester(tester, true); expect( tester.widget<DevToolsButton>(findRefresh).onPressed, isNotNull, ); // Toggle again and verify the profiling information is no longer present. await tester.tap(findProfileToggle); await pumpDebuggerScreen(tester, debuggerController); gutterItemCoverageTester(tester, false); gutterItemProfileInfoTester(tester, false); expect( tester.widget<DevToolsButton>(findRefresh).onPressed, isNull, ); }, ); }
devtools/packages/devtools_app/test/debugger/debugger_codeview_statistics_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/debugger/debugger_codeview_statistics_test.dart", "repo_id": "devtools", "token_count": 2586 }
102
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app/src/screens/debugger/breakpoint_manager.dart'; import 'package:devtools_app/src/service/service_manager.dart'; import 'package:devtools_app/src/shared/console/eval/eval_service.dart'; import 'package:devtools_app/src/shared/console/widgets/evaluate.dart'; import 'package:devtools_app/src/shared/ui/search.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_test/devtools_test.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_test/flutter_test.dart'; void main() { group('ExpressionEvalField', () { late ServiceConnectionManager manager; setUp(() { final service = createMockVmServiceWrapperWithDefaults(); manager = FakeServiceConnectionManager(service: service); setGlobal(EvalService, EvalService()); setGlobal(ServiceConnectionManager, manager); setGlobal(IdeTheme, getIdeTheme()); setGlobal(BreakpointManager, BreakpointManager()); }); group('suggestions', () { testWidgets( 'shows no suggestion for empty text', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, ''); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, ''); expect(objects.searchTextEditingController.suggestionText, null); }, ); testWidgets( 'shows "bar" item as suggestion for string "b"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'b'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'b'); expect(objects.searchTextEditingController.suggestionText, 'ar'); }, ); testWidgets( 'shows "bazz" item as suggestion for string "baz"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'baz'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'baz'); expect(objects.searchTextEditingController.suggestionText, 'z'); }, ); testWidgets( 'shows "foo" (first item) item as suggestion for field', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.'); expect(objects.searchTextEditingController.suggestionText, 'foo'); }, ); testWidgets( 'pressing "arrowDown" shows the "bar" item as suggestion for field', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.'); await tester.pumpAndSettle(); await tester.sendKeyEvent(LogicalKeyboardKey.arrowDown); expect(objects.searchTextEditingController.text, 'someValue.'); expect(objects.searchTextEditingController.suggestionText, 'bar'); }, ); testWidgets( 'pressing "arrowDown" and "arrowUp" shows the "foo" item as suggestion for field', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.'); await tester.pumpAndSettle(); await tester.sendKeyEvent(LogicalKeyboardKey.arrowDown); expect(objects.searchTextEditingController.suggestionText, 'bar'); await tester.sendKeyEvent(LogicalKeyboardKey.arrowUp); expect(objects.searchTextEditingController.text, 'someValue.'); expect(objects.searchTextEditingController.suggestionText, 'foo'); }, ); testWidgets( 'pressing "arrowDown" shows the "bazz" item as suggestion for string "ba"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.ba'); await tester.pumpAndSettle(); await tester.sendKeyEvent(LogicalKeyboardKey.arrowDown); expect(objects.searchTextEditingController.text, 'someValue.ba'); expect(objects.searchTextEditingController.suggestionText, 'zz'); }, ); testWidgets( 'pressing "arrowDown" and "arrowUp" shows the "bar" item as suggestion for string "ba"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.ba'); await tester.pumpAndSettle(); await tester.sendKeyEvent(LogicalKeyboardKey.arrowDown); await tester.sendKeyEvent(LogicalKeyboardKey.arrowUp); expect(objects.searchTextEditingController.text, 'someValue.ba'); expect(objects.searchTextEditingController.suggestionText, 'r'); }, ); testWidgets( 'removing the dot after a word removes the suggestion', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.'); await tester.enterText(objects.textField, 'someValue'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue'); expect(objects.searchTextEditingController.suggestionText, null); }, ); testWidgets( 'when the cursor is not at the end of the text, don\'t show suggestion', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.'); objects.searchTextEditingController.selection = const TextSelection.collapsed(offset: 0); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.'); expect(objects.searchTextEditingController.suggestionText, null); }, ); testWidgets( 'when there is one exact match, don\'t show suggestion text', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.bazz'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.bazz'); expect(objects.searchTextEditingController.suggestionText, null); }, ); testWidgets( 'when there is no match, don\'t show suggestion text', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.bazzz'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.bazzz'); expect(objects.searchTextEditingController.suggestionText, null); }, ); testWidgets( 'when there is a exact match ("bar") and another match ("barz"), the exact won\'t show suggestion text', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.bar'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.bar'); expect(objects.searchTextEditingController.suggestionText, null); }, ); testWidgets( 'when there is a exact match ("bar") and another match ("barz"), the other match will show suggestion text', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.bar'); await tester.sendKeyDownEvent(LogicalKeyboardKey.arrowDown); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.bar'); expect(objects.searchTextEditingController.suggestionText, 'z'); }, ); }); for (final selectionKey in [ LogicalKeyboardKey.enter, LogicalKeyboardKey.tab, LogicalKeyboardKey.arrowRight, ]) { group('selection with ${selectionKey.keyLabel} key', () { testWidgets( 'selecting "ar" autocompletes "b" to "bar"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'b'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'b'); expect(objects.searchTextEditingController.suggestionText, 'ar'); // Select the suggestion. await tester.sendKeyEvent(selectionKey); await tester.pumpAndSettle(); expect(objects.textFieldValue, equals('bar')); }, ); testWidgets( 'selecting "r" autocompletes "ba" to "bar"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'ba'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'ba'); expect(objects.searchTextEditingController.suggestionText, 'r'); // Select the suggestion. await tester.sendKeyEvent(selectionKey); await tester.pumpAndSettle(); expect(objects.textFieldValue, equals('bar')); }, ); testWidgets( 'selecting "foo" autocompletes "someValue." to "someValue.foo"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.'); expect(objects.searchTextEditingController.suggestionText, 'foo'); // Select the suggestion. await tester.sendKeyEvent(selectionKey); await tester.pumpAndSettle(); expect(objects.textFieldValue, equals('someValue.foo')); }, ); testWidgets( 'selecting "oo" autocompletes "someValue.f" to "someValue.foo"', (tester) async { final objects = await _setupEvalFieldObjects(tester); await tester.enterText(objects.textField, 'someValue.f'); await tester.pumpAndSettle(); expect(objects.searchTextEditingController.text, 'someValue.f'); expect(objects.searchTextEditingController.suggestionText, 'oo'); await tester.sendKeyEvent(selectionKey); await tester.pumpAndSettle(); expect(objects.textFieldValue, equals('someValue.foo')); }, ); }); } }); } class _EvalFieldTestObjects { _EvalFieldTestObjects( this.searchTextEditingController, this.textField, this._tester, ); final SearchTextEditingController searchTextEditingController; final Finder textField; final WidgetTester _tester; String? get textFieldValue { final textFieldWidget = _tester.firstWidget(textField) as TextField; return textFieldWidget.controller?.value.text; } } Future<_EvalFieldTestObjects> _setupEvalFieldObjects( WidgetTester tester, ) async { final evalField = ExpressionEvalField( getAutoCompleteResults: (value, controller) async { return ['foo', 'bar', 'bazz', 'fozz', 'barz'] // Simple implementation of search .where((element) => element.startsWith(value.activeWord)) .toList(); }, ); await tester.pumpWidget( MaterialApp( home: Scaffold( body: evalField, ), ), ); final textField = find.byType(TextField).first; final state = tester.state<ExpressionEvalFieldState>(find.byWidget(evalField)); return _EvalFieldTestObjects( state.searchTextFieldController, textField, tester, ); }
devtools/packages/devtools_app/test/debugger/eval_field_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/debugger/eval_field_test.dart", "repo_id": "devtools", "token_count": 5130 }
103
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // ignore_for_file: avoid_print @TestOn('vm') import 'dart:async'; import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_test/helpers.dart'; import 'package:flutter_test/flutter_test.dart'; import '../test_infra/flutter_test_driver.dart' show FlutterRunConfiguration; import '../test_infra/flutter_test_environment.dart'; import '../test_infra/matchers/matchers.dart'; void main() { initializeLiveTestWidgetsFlutterBindingWithAssets(); final FlutterTestEnvironment env = FlutterTestEnvironment( const FlutterRunConfiguration(withDebugger: true), ); InspectorService? inspectorService; env.afterEverySetup = () async { assert(serviceConnection.serviceManager.connectedAppInitialized); setGlobal(IdeTheme, IdeTheme()); inspectorService = InspectorService(); }; env.beforeEveryTearDown = () async { inspectorService?.onIsolateStopped(); inspectorService?.dispose(); inspectorService = null; }; try { group('inspector service tests', () { tearDown(env.tearDownEnvironment); tearDownAll(() => unawaited(env.tearDownEnvironment(force: true))); test('track widget creation on', () async { await env.setupEnvironment(); expect(await inspectorService!.isWidgetCreationTracked(), isTrue); }); test('useDaemonApi', () async { await env.setupEnvironment(); expect(inspectorService!.useDaemonApi, isTrue); // TODO(jacobr): add test where we trigger a breakpoint and verify that // the daemon api is now false. }); test('createObjectGroup', () async { await env.setupEnvironment(); final inspectorServiceLocal = inspectorService!; final g1 = inspectorServiceLocal.createObjectGroup('g1'); final g2 = inspectorServiceLocal.createObjectGroup('g2'); expect(g1.groupName != g2.groupName, isTrue); expect(g1.disposed, isFalse); expect(g2.disposed, isFalse); final g1Disposed = g1.dispose(); expect(g1.disposed, isTrue); expect(g2.disposed, isFalse); final g2Disposed = g2.dispose(); expect(g2.disposed, isTrue); await g1Disposed; await g2Disposed; }); group('pub root directories', () { tearDownAll(() async { await env.tearDownEnvironment(force: true); }); test('can be added and removed', () async { await env.setupEnvironment(); final inspectorServiceLocal = inspectorService!; const testPubRootDirectory = '/alpha/bravo/charlie'; // Empty the pubroot directories. final initialPubRootDirectories = await inspectorServiceLocal.getPubRootDirectories(); await inspectorServiceLocal .removePubRootDirectories(initialPubRootDirectories!); expect( await inspectorServiceLocal.getPubRootDirectories(), equals([]), ); // Can add a new pub root directory. await inspectorServiceLocal .addPubRootDirectories([testPubRootDirectory]); expect( await inspectorServiceLocal.getPubRootDirectories(), equals([ testPubRootDirectory, ]), ); // Can remove the new pub root directory. await inspectorServiceLocal .removePubRootDirectories([testPubRootDirectory]); expect( await inspectorServiceLocal.getPubRootDirectories(), equals([]), ); }); test( 'local classes', () async { await env.setupEnvironment(); final inspectorServiceLocal = inspectorService!; final group = inspectorServiceLocal.createObjectGroup('test-group'); // These tests are moot if widget creation is not tracked. expect( await inspectorServiceLocal.isWidgetCreationTracked(), isTrue, ); final rootLibrary = await serviceConnection.rootLibraryForMainIsolate(); await inspectorServiceLocal.addPubRootDirectories([rootLibrary!]); final List<String> rootDirectories = await inspectorServiceLocal.getPubRootDirectories() ?? []; expect(rootDirectories.length, 1); expect(rootDirectories.first, endsWith('/fixtures/flutter_app')); final originalRootDirectories = rootDirectories.toList(); try { expect( (inspectorServiceLocal.localClasses.keys.toList()..sort()), equals( [ 'AnotherClass', 'ExportedClass', 'FooClass', 'MyApp', 'MyOtherWidget', 'NotAWidget', '_PrivateClass', '_PrivateExportedClass', ], ), ); await inspectorServiceLocal .addPubRootDirectories(['${rootDirectories.first}/lib/src']); // Adding src does not change the directory as local classes are // computed at the library level. expect( (inspectorServiceLocal.localClasses.keys.toList()..sort()), equals( [ 'AnotherClass', 'ExportedClass', 'FooClass', 'MyApp', 'MyOtherWidget', 'NotAWidget', '_PrivateClass', '_PrivateExportedClass', ], ), ); expect( inspectorServiceLocal.rootPackages.toList(), equals(['flutter_app']), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), isEmpty, ); await inspectorServiceLocal.addPubRootDirectories( ['/usr/jacobr/foo/lib', '/usr/jacobr/bar/lib/bla'], ); expect( inspectorServiceLocal.rootPackages.toList(), equals(['foo', 'bar']), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), isEmpty, ); expect( inspectorServiceLocal.isLocalUri('package:foo/src/bar.dart'), isTrue, ); expect( inspectorServiceLocal .isLocalUri('package:foo.bla/src/bar.dart'), isFalse, ); expect( inspectorServiceLocal.isLocalUri('package:foos/src/bar.dart'), isFalse, ); expect( inspectorServiceLocal.isLocalUri('package:bar/src/bar.dart'), isTrue, ); expect( inspectorServiceLocal.isLocalUri( 'package:bar.core/src/bar.dart', ), isFalse, ); expect( inspectorServiceLocal.isLocalUri( 'package:bar.core.bla/src/bar.dart', ), isFalse, ); expect( inspectorServiceLocal.isLocalUri( 'package:bar.cores/src/bar.dart', ), isFalse, ); } finally { // Restore. await inspectorServiceLocal .addPubRootDirectories(originalRootDirectories); await group.dispose(); } }, skip: true, // TODO(https://github.com/flutter/devtools/issues/4393) ); test('local classes for bazel projects', () async { await env.setupEnvironment(); final inspectorServiceLocal = inspectorService!; final group = inspectorServiceLocal.createObjectGroup('test-group'); // These tests are moot if widget creation is not tracked. expect(await inspectorServiceLocal.isWidgetCreationTracked(), isTrue); await inspectorServiceLocal.addPubRootDirectories([]); final originalRootDirectories = await inspectorServiceLocal.getPubRootDirectories(); try { await inspectorServiceLocal.addPubRootDirectories( ['/usr/me/clients/google3/foo/bar/baz/lib/src/bla'], ); expect( inspectorServiceLocal.rootPackages.toList(), equals(['foo.bar.baz']), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), equals(['foo.bar.baz.']), ); await inspectorServiceLocal.addPubRootDirectories([ '/usr/me/clients/google3/foo/bar/baz/lib/src/bla', '/usr/me/clients/google3/foo/core/lib', ]); expect( inspectorServiceLocal.rootPackages.toList(), equals( ['foo.bar.baz', 'foo.core'], ), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), equals( ['foo.bar.baz.', 'foo.core.'], ), ); // Test bazel directories without a lib directory. await inspectorServiceLocal.addPubRootDirectories([ '/usr/me/clients/google3/foo/bar/baz', '/usr/me/clients/google3/foo/core/', ]); expect( inspectorServiceLocal.rootPackages.toList(), equals( ['foo.bar.baz', 'foo.core'], ), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), equals( ['foo.bar.baz.', 'foo.core.'], ), ); await inspectorServiceLocal.addPubRootDirectories([ '/usr/me/clients/google3/third_party/dart/foo/lib/src/bla', '/usr/me/clients/google3/third_party/dart_src/bar/core/lib', ]); expect( inspectorServiceLocal.rootPackages.toList(), equals(['foo', 'bar.core']), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), equals(['foo.', 'bar.core.']), ); expect( inspectorServiceLocal.isLocalUri('package:foo/src/bar.dart'), isTrue, ); // Package at subdirectory. expect( inspectorServiceLocal.isLocalUri('package:foo.bla/src/bar.dart'), isTrue, ); expect( inspectorServiceLocal.isLocalUri('package:foos/src/bar.dart'), isFalse, ); expect( inspectorServiceLocal.isLocalUri('package:bar/src/bar.dart'), isFalse, ); expect( inspectorServiceLocal.isLocalUri('package:bar.core/src/bar.dart'), isTrue, ); // Package at subdirectory. expect( inspectorServiceLocal .isLocalUri('package:bar.core.bla/src/bar.dart'), isTrue, ); expect( inspectorServiceLocal .isLocalUri('package:bar.cores/src/bar.dart'), isFalse, ); await inspectorServiceLocal.addPubRootDirectories([ '/usr/me/clients/google3/third_party/dart/foo', '/usr/me/clients/google3/third_party/dart_src/bar/core', ]); expect( inspectorServiceLocal.rootPackages.toList(), equals(['foo', 'bar.core']), ); expect( inspectorServiceLocal.rootPackagePrefixes.toList(), equals(['foo.', 'bar.core.']), ); } finally { // Restore. await inspectorServiceLocal .addPubRootDirectories(originalRootDirectories ?? []); await group.dispose(); } }); }); test('widget tree', () async { await env.setupEnvironment(); final group = inspectorService!.createObjectGroup('test-group'); final RemoteDiagnosticsNode root = (await group.getRoot(FlutterTreeType.widget))!; // Tree only contains widgets from local app. expect( treeToDebugString(root), equalsIgnoringHashCodes( ''' [root] └─MyApp └─MaterialApp └─Scaffold ├─Center │ └─Text ├─AppBar │ └─Text └─FloatingActionButton └─Icon ''', ), ); RemoteDiagnosticsNode nodeInSummaryTree = findNodeMatching(root, 'MaterialApp')!; expect(nodeInSummaryTree, isNotNull); expect( treeToDebugString(nodeInSummaryTree), equalsIgnoringHashCodes( ''' MaterialApp └─Scaffold ├─Center │ └─Text ├─AppBar │ └─Text └─FloatingActionButton └─Icon ''', ), ); RemoteDiagnosticsNode nodeInDetailsTree = (await group.getDetailsSubtree(nodeInSummaryTree))!; // When flutter rolls, this string may sometimes change due to // implementation details. expect( treeToDebugStringTruncated(nodeInDetailsTree, 30), equalsGoldenIgnoringHashCodes('inspector_service_details_tree.txt'), ); nodeInSummaryTree = findNodeMatching(root, 'Text')!; expect(nodeInSummaryTree, isNotNull); expect( treeToDebugString(nodeInSummaryTree), equalsIgnoringHashCodes( 'Text\n', ), ); nodeInDetailsTree = (await group.getDetailsSubtree(nodeInSummaryTree))!; expect( treeToDebugString(nodeInDetailsTree), equalsGoldenIgnoringHashCodes( 'inspector_service_text_details_tree.txt', ), ); expect(nodeInDetailsTree.valueRef, equals(nodeInSummaryTree.valueRef)); await group.setSelectionInspector(nodeInDetailsTree.valueRef, true); final selection = (await group.getSelection( null, FlutterTreeType.widget, isSummaryTree: false, ))!; expect(selection, isNotNull); expect(selection.valueRef, equals(nodeInDetailsTree.valueRef)); expect( treeToDebugString(selection), equalsIgnoringHashCodes( 'Text\n' ' └─RichText\n', ), ); await group.dispose(); }); test('enables hover eval mode by default', () async { await env.setupEnvironment(); expect(inspectorService!.hoverEvalModeEnabledByDefault, isTrue); }); test('disables hover eval mode by default when embedded', () async { await env.setupEnvironment(); setGlobal(IdeTheme, IdeTheme(embed: true)); expect(inspectorService!.hoverEvalModeEnabledByDefault, isFalse); }); // TODO(jacobr): uncomment this test once we have a more dependable golden // test('render tree', () async { // await env.setupEnvironment( // config: const FlutterRunConfiguration( // withDebugger: true, // trackWidgetCreation: false, // ), // ); // // final group = inspectorService.createObjectGroup('test-group'); // final RemoteDiagnosticsNode root = // await group.getRoot(FlutterTreeType.renderObject); // // Tree only contains widgets from local app. // expect( // treeToDebugString(root), // equalsIgnoringHashCodes( // 'RenderView#00000\n' // ' └─child: RenderSemanticsAnnotations#00000\n', // ), // ); // final child = findNodeMatching(root, 'RenderSemanticsAnnotations'); // expect(child, isNotNull); // final childDetailsSubtree = await group.getDetailsSubtree(child); // expect( // treeToDebugString(childDetailsSubtree), // equalsIgnoringHashCodes( // 'child: RenderSemanticsAnnotations#00000\n' // ' │ parentData: <none>\n' // ' │ constraints: BoxConstraints(w=800.0, h=600.0)\n' // ' │ size: Size(800.0, 600.0)\n' // ' │\n' // ' └─child: RenderCustomPaint#00000\n' // ' │ parentData: <none> (can use size)\n' // ' │ constraints: BoxConstraints(w=800.0, h=600.0)\n' // ' │ size: Size(800.0, 600.0)\n' // ' │\n' // ' └─child: RenderPointerListener#00000\n' // ' parentData: <none> (can use size)\n' // ' constraints: BoxConstraints(w=800.0, h=600.0)\n' // ' size: Size(800.0, 600.0)\n' // ' behavior: deferToChild\n' // ' listeners: down, up, cancel\n', // ), // ); // // await group.setSelectionInspector(child.valueRef, true); // final selection = // await group.getSelection(null, FlutterTreeType.renderObject, false); // expect(selection, isNotNull); // expect(selection.valueRef, equals(child.valueRef)); // expect( // treeToDebugString(selection), // equalsIgnoringHashCodes( // 'RenderSemanticsAnnotations#00000\n' // ' └─child: RenderCustomPaint#00000\n', // ), // ); // }); // Run this test last as it will take a long time due to setting up the test // environment from scratch. test( 'track widget creation off', () async { await env.setupEnvironment( config: const FlutterRunConfiguration( withDebugger: true, trackWidgetCreation: false, ), ); expect(await inspectorService!.isWidgetCreationTracked(), isFalse); }, skip: true, ); // TODO(albertusangga): remove or fix this test // TODO(jacobr): add tests verifying that we can stop the running device // without the InspectorService spewing a bunch of errors. }); } catch (e, s) { print(s); } }
devtools/packages/devtools_app/test/inspector/inspector_service_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/inspector/inspector_service_test.dart", "repo_id": "devtools", "token_count": 9284 }
104
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter_test/flutter_test.dart'; import '../../integration_test/test_infra/run/_in_file_args.dart'; import '../../integration_test/test_infra/run/_test_app_driver.dart'; const _testAppPath = 'test/test_infra/fixtures/memory_app'; final _defaultArgs = TestFileArgs.parse( {}, testAppDevice: TestAppDevice.flutterTester, ); final _defaultArgsForCliDevice = TestFileArgs.parse( {}, testAppDevice: TestAppDevice.cli, ); final tests = [ _InFileTestArgsTest( name: 'empty', input: '', testAppDevice: TestAppDevice.flutterTester, output: TestFileArgs.parse( { TestFileArgItems.experimentsOn: _defaultArgs.experimentsOn, TestFileArgItems.appPath: _defaultArgs.appPath, }, testAppDevice: TestAppDevice.flutterTester, ), ), _InFileTestArgsTest( name: 'empty', input: '', testAppDevice: TestAppDevice.cli, output: TestFileArgs.parse( { TestFileArgItems.experimentsOn: _defaultArgsForCliDevice.experimentsOn, TestFileArgItems.appPath: _defaultArgsForCliDevice.appPath, }, testAppDevice: TestAppDevice.cli, ), ), _InFileTestArgsTest( name: 'non-empty', input: ''' // Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Do not delete these arguments. They are parsed by test runner. //test-argument:appPath="$_testAppPath" // test-argument : experimentsOn = true import 'dart:ui' as ui; ''', testAppDevice: TestAppDevice.flutterTester, output: TestFileArgs.parse( { TestFileArgItems.experimentsOn: true, TestFileArgItems.appPath: _testAppPath, }, testAppDevice: TestAppDevice.flutterTester, ), ), ]; void main() { for (final t in tests) { test('$TestFileArgs, ${t.name}', () { final args = TestFileArgs.fromFileContent( t.input, testAppDevice: t.testAppDevice, ); expect(args.experimentsOn, t.output.experimentsOn); expect(args.appPath, t.output.appPath); }); } } class _InFileTestArgsTest { _InFileTestArgsTest({ required this.name, required this.input, required this.testAppDevice, required this.output, }); final String name; final String input; final TestAppDevice testAppDevice; final TestFileArgs output; }
devtools/packages/devtools_app/test/integration_test_infra/in_file_args_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/integration_test_infra/in_file_args_test.dart", "repo_id": "devtools", "token_count": 987 }
105
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @TestOn('vm') import 'dart:io'; import 'package:devtools_app/src/screens/memory/shared/heap/heap.dart'; import 'package:flutter_test/flutter_test.dart'; import '../test_infra/test_data/memory/heap/heap_data.dart'; void main() { test('memory footprint', () async { final snapshots = <String, AdaptedHeap>{}; final before = ProcessInfo.currentRss; for (var t in goldenHeapTests) { snapshots[t.fileName] = await AdaptedHeap.create(await t.loadHeap()); } final after = ProcessInfo.currentRss; final delta = after - before; double gbToBytes(double gb) => gb * (1024 * 1024 * 1024); final lowerThreshold = gbToBytes(0.85); final upperThreshold = gbToBytes(1.08); // Both thresholds are tested, because we want to lower the values // in case of optimisation. expect(delta, greaterThan(lowerThreshold)); expect(delta, lessThan(upperThreshold)); }); }
devtools/packages/devtools_app/test/memory/memory_footprint_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/memory/memory_footprint_test.dart", "repo_id": "devtools", "token_count": 384 }
106
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @TestOn('vm') import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_test/devtools_test.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:vm_service/vm_service.dart'; import '../test_infra/test_data/network.dart'; import 'utils/network_test_utils.dart'; void main() { group('NetworkScreen NetworkRequestsTable', () { late NetworkController controller; late CurrentNetworkRequests currentRequests; late FakeServiceConnectionManager fakeServiceConnection; late SocketProfile socketProfile; late HttpProfile httpProfile; late List<NetworkRequest> requests; setUpAll(() { httpProfile = loadHttpProfile(); socketProfile = loadSocketProfile(); fakeServiceConnection = FakeServiceConnectionManager( service: FakeServiceManager.createFakeService( httpProfile: httpProfile, socketProfile: socketProfile, ), ); setGlobal(ServiceConnectionManager, fakeServiceConnection); setGlobal(IdeTheme, IdeTheme()); // Bypass controller recording so timelineMicroOffset is not time dependant controller = NetworkController(); currentRequests = CurrentNetworkRequests(); controller.processNetworkTrafficHelper( socketProfile.sockets, httpProfile.requests, 0, currentRequests: currentRequests, ); requests = currentRequests.value; }); DartIOHttpRequestData findRequestById(String id) { return requests .whereType<DartIOHttpRequestData>() .cast<DartIOHttpRequestData>() .firstWhere((request) => request.id == id); } test('UriColumn', () { final column = UriColumn(); for (final request in requests) { expect(column.getDisplayValue(request), request.uri.toString()); } }); test('MethodColumn', () { final column = MethodColumn(); for (final request in requests) { expect(column.getDisplayValue(request), request.method); } }); test('StatusColumn for http request', () { final column = StatusColumn(); final getRequest = findRequestById('1'); expect(column.getDisplayValue(getRequest), httpGet.status); final pendingRequest = findRequestById('7'); expect(column.getDisplayValue(pendingRequest), '--'); }); test('TypeColumn for http request', () { final column = TypeColumn(); final getRequest = findRequestById('1'); expect(column.getDisplayValue(getRequest), 'json'); }); test('DurationColumn for http request', () { final column = DurationColumn(); final getRequest = findRequestById('1'); expect(column.getDisplayValue(getRequest), '811 ms'); final pendingRequest = findRequestById('7'); expect(column.getDisplayValue(pendingRequest), 'Pending'); }); test('TimestampColumn', () { final column = TimestampColumn(); final getRequest = findRequestById('1'); // The hours field may be unreliable since it depends on the timezone the // test is running in. expect(column.getDisplayValue(getRequest), contains(':45:26.279')); }); }); }
devtools/packages/devtools_app/test/network/network_table_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/network/network_table_test.dart", "repo_id": "devtools", "token_count": 1197 }
107
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app/src/screens/performance/panes/raster_stats/raster_stats_model.dart'; import 'package:devtools_app/src/shared/primitives/utils.dart'; import 'package:devtools_test/test_data.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; void main() { late RasterStats rasterStats; group('$RasterStats model', () { test('parse from service data', () { rasterStats = RasterStats.parse(rasterStatsFromServiceJson); expect(rasterStats.layerSnapshots.length, equals(2)); expect(rasterStats.selectedSnapshot, isNotNull); expect(rasterStats.selectedSnapshot!.id, equals(12731)); expect(rasterStats.originalFrameSize, equals(const Size(100.0, 200.0))); expect( rasterStats.totalRasterTime, equals(const Duration(microseconds: 494)), ); // verify each of the [LayerSnapshot]s were parsed correctly final first = rasterStats.layerSnapshots[0]; final second = rasterStats.layerSnapshots[1]; expect(first.id, equals(12731)); expect(first.duration.inMicroseconds, equals(389)); expect(first.totalRenderingDuration!.inMicroseconds, equals(494)); expect(first.percentRenderingTimeDisplay, equals('78.74%')); expect(first.size, equals(const Size(50, 50))); expect(first.offset, equals(const Offset(25, 25))); expect(second.id, equals(12734)); expect(second.duration.inMicroseconds, equals(105)); expect(second.totalRenderingDuration!.inMicroseconds, equals(494)); expect(second.percentRenderingTimeDisplay, equals('21.26%')); expect(second.size, equals(const Size(20, 40))); expect(second.offset, equals(const Offset(35, 30))); }); test('parse from devtools data', () { rasterStats = RasterStats.parse(rasterStatsFromDevToolsJson); expect(rasterStats.layerSnapshots.length, equals(2)); expect(rasterStats.selectedSnapshot, isNotNull); expect(rasterStats.selectedSnapshot!.id, equals(12734)); expect(rasterStats.originalFrameSize, equals(const Size(100.0, 200.0))); expect( rasterStats.totalRasterTime, equals(const Duration(microseconds: 494)), ); // verify each of the [LayerSnapshot]s were parsed correctly final first = rasterStats.layerSnapshots[0]; final second = rasterStats.layerSnapshots[1]; expect(first.id, equals(12731)); expect(first.duration.inMicroseconds, equals(389)); expect(first.totalRenderingDuration!.inMicroseconds, equals(494)); expect(first.percentRenderingTimeDisplay, equals('78.74%')); expect(first.size, equals(const Size(50, 50))); expect(first.offset, equals(const Offset(25, 25))); expect(second.id, equals(12734)); expect(second.duration.inMicroseconds, equals(105)); expect(second.totalRenderingDuration!.inMicroseconds, equals(494)); expect(second.percentRenderingTimeDisplay, equals('21.26%')); expect(second.size, equals(const Size(20, 40))); expect(second.offset, equals(const Offset(35, 30))); }); test('to json', () { rasterStats = RasterStats.parse(rasterStatsFromServiceJson); final json = rasterStats.json; final expected = Map<String, Object?>.from(rasterStatsFromServiceJson); // The expected output should not have the 'type' field that comes from // the service protocol and it should have an additional field for the id // of the selected snapshot. expected.remove('type'); expected['selectedId'] = 12731; expect(collectionEquals(json, expected), isTrue); }); }); }
devtools/packages/devtools_app/test/performance/raster_stats/raster_stats_model_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/performance/raster_stats/raster_stats_model_test.dart", "repo_id": "devtools", "token_count": 1378 }
108
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app_shared/service.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_test/devtools_test.dart'; import 'package:devtools_test/helpers.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; void main() { late FakeServiceConnectionManager fakeServiceConnection; const windowSize = Size(2000.0, 1000.0); group('Connection info', () { void initServiceManager({ bool flutterVersionServiceAvailable = true, }) { final availableServices = [ if (flutterVersionServiceAvailable) flutterVersionService.service, ]; fakeServiceConnection = FakeServiceConnectionManager( availableServices: availableServices, ); when(fakeServiceConnection.serviceManager.vm.version).thenReturn('1.9.1'); when(fakeServiceConnection.serviceManager.vm.targetCPU).thenReturn('x64'); when(fakeServiceConnection.serviceManager.vm.architectureBits) .thenReturn(64); when(fakeServiceConnection.serviceManager.vm.operatingSystem) .thenReturn('android'); final app = fakeServiceConnection.serviceManager.connectedApp!; mockConnectedApp( app, isFlutterApp: true, isProfileBuild: false, isWebApp: false, ); setGlobal(ServiceConnectionManager, fakeServiceConnection); setGlobal(IdeTheme, IdeTheme()); } setUp(() { initServiceManager(); }); testWidgetsWithWindowSize( 'builds summary for dart web app', windowSize, (WidgetTester tester) async { final app = fakeServiceConnection.serviceManager.connectedApp!; mockWebVm(fakeServiceConnection.serviceManager.vm); mockConnectedApp( app, isFlutterApp: false, isProfileBuild: false, isWebApp: true, ); await tester.pumpWidget(wrap(const ConnectedAppSummary())); expect(find.text('CPU / OS: '), findsOneWidget); expect(find.text('Web macos'), findsOneWidget); expect(find.text('Dart Version: '), findsOneWidget); expect(find.text('1.9.1'), findsOneWidget); expect(find.text('Flutter Version: '), findsNothing); expect(find.text('Framework / Engine: '), findsNothing); expect(find.text('Connected app type: '), findsOneWidget); expect(find.text('Dart web'), findsOneWidget); expect(find.text('VM Service Connection: '), findsOneWidget); expect( find.text('ws://127.0.0.1:56137/ISsyt6ki0no=/ws'), findsOneWidget, ); expect(find.byType(CopyToClipboardControl), findsOneWidget); }, ); testWidgetsWithWindowSize( 'builds dialog for dart CLI app', windowSize, (WidgetTester tester) async { final app = fakeServiceConnection.serviceManager.connectedApp!; when(fakeServiceConnection.serviceManager.vm.operatingSystem) .thenReturn('macos'); mockConnectedApp( app, isFlutterApp: false, isProfileBuild: false, isWebApp: false, ); await tester.pumpWidget(wrap(const ConnectedAppSummary())); expect(find.text('CPU / OS: '), findsOneWidget); expect(find.text('x64 (64 bit) macos'), findsOneWidget); expect(find.text('Dart Version: '), findsOneWidget); expect(find.text('1.9.1'), findsOneWidget); expect(find.text('Flutter Version: '), findsNothing); expect(find.text('Framework / Engine: '), findsNothing); expect(find.text('Connected app type: '), findsOneWidget); expect(find.text('Dart CLI'), findsOneWidget); expect(find.text('VM Service Connection: '), findsOneWidget); expect( find.text('ws://127.0.0.1:56137/ISsyt6ki0no=/ws'), findsOneWidget, ); expect(find.byType(CopyToClipboardControl), findsOneWidget); }, ); testWidgetsWithWindowSize( 'builds dialog for flutter native app (debug)', windowSize, (WidgetTester tester) async { final app = fakeServiceConnection.serviceManager.connectedApp!; mockConnectedApp( app, isFlutterApp: true, isProfileBuild: false, isWebApp: false, ); await tester.pumpWidget(wrap(const ConnectedAppSummary())); expect(find.text('CPU / OS: '), findsOneWidget); expect(find.text('x64 (64 bit) android'), findsOneWidget); expect(find.text('Dart Version: '), findsOneWidget); expect(find.text('1.9.1'), findsOneWidget); expect(find.text('Flutter Version: '), findsOneWidget); expect(find.text('2.10.0 / unknown'), findsOneWidget); expect(find.text('Framework / Engine: '), findsOneWidget); expect(find.text('74432fa91c / ae2222f47e'), findsOneWidget); expect(find.text('Connected app type: '), findsOneWidget); expect(find.text('Flutter native (debug build)'), findsOneWidget); expect(find.text('VM Service Connection: '), findsOneWidget); expect( find.text('ws://127.0.0.1:56137/ISsyt6ki0no=/ws'), findsOneWidget, ); expect(find.byType(CopyToClipboardControl), findsOneWidget); }, ); testWidgetsWithWindowSize( 'builds dialog for flutter native app (profile)', windowSize, (WidgetTester tester) async { final app = fakeServiceConnection.serviceManager.connectedApp!; mockConnectedApp( app, isFlutterApp: true, isProfileBuild: true, isWebApp: false, ); await tester.pumpWidget(wrap(const ConnectedAppSummary())); expect(find.text('CPU / OS: '), findsOneWidget); expect(find.text('Dart Version: '), findsOneWidget); expect(find.text('1.9.1'), findsOneWidget); expect(find.text('Flutter Version: '), findsOneWidget); expect(find.text('2.10.0 / unknown'), findsOneWidget); expect(find.text('Framework / Engine: '), findsOneWidget); expect(find.text('74432fa91c / ae2222f47e'), findsOneWidget); expect(find.text('Connected app type: '), findsOneWidget); expect(find.text('Flutter native (profile build)'), findsOneWidget); expect(find.text('VM Service Connection: '), findsOneWidget); expect( find.text('ws://127.0.0.1:56137/ISsyt6ki0no=/ws'), findsOneWidget, ); expect(find.byType(CopyToClipboardControl), findsOneWidget); }, ); testWidgetsWithWindowSize( 'builds dialog for flutter web app (debug)', windowSize, (WidgetTester tester) async { final app = fakeServiceConnection.serviceManager.connectedApp!; mockWebVm(fakeServiceConnection.serviceManager.vm); mockConnectedApp( app, isFlutterApp: true, isProfileBuild: false, isWebApp: true, ); await tester.pumpWidget(wrap(const ConnectedAppSummary())); expect(find.text('CPU / OS: '), findsOneWidget); expect(find.text('Web macos'), findsOneWidget); expect(find.text('Dart Version: '), findsOneWidget); expect(find.text('1.9.1'), findsOneWidget); expect(find.text('Flutter Version: '), findsOneWidget); expect(find.text('2.10.0 / unknown'), findsOneWidget); expect(find.text('Framework / Engine: '), findsOneWidget); expect(find.text('74432fa91c / ae2222f47e'), findsOneWidget); expect(find.text('Connected app type: '), findsOneWidget); expect(find.text('Flutter web (debug build)'), findsOneWidget); expect(find.text('VM Service Connection: '), findsOneWidget); expect( find.text('ws://127.0.0.1:56137/ISsyt6ki0no=/ws'), findsOneWidget, ); expect(find.byType(CopyToClipboardControl), findsOneWidget); }, ); testWidgetsWithWindowSize( 'builds dialog for flutter web app (profile)', windowSize, (WidgetTester tester) async { final app = fakeServiceConnection.serviceManager.connectedApp!; mockWebVm(fakeServiceConnection.serviceManager.vm); mockConnectedApp( app, isFlutterApp: true, isProfileBuild: true, isWebApp: true, ); await tester.pumpWidget(wrap(const ConnectedAppSummary())); expect(find.text('CPU / OS: '), findsOneWidget); expect(find.text('Web macos'), findsOneWidget); expect(find.text('Dart Version: '), findsOneWidget); expect(find.text('1.9.1'), findsOneWidget); expect(find.text('Flutter Version: '), findsOneWidget); expect(find.text('2.10.0 / unknown'), findsOneWidget); expect(find.text('Framework / Engine: '), findsOneWidget); expect(find.text('74432fa91c / ae2222f47e'), findsOneWidget); expect(find.text('Connected app type: '), findsOneWidget); expect(find.text('Flutter web (profile build)'), findsOneWidget); expect(find.text('VM Service Connection: '), findsOneWidget); expect( find.text('ws://127.0.0.1:56137/ISsyt6ki0no=/ws'), findsOneWidget, ); expect(find.byType(CopyToClipboardControl), findsOneWidget); }, ); }); }
devtools/packages/devtools_app/test/shared/connection_info_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/connection_info_test.dart", "repo_id": "devtools", "token_count": 4006 }
109
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file. import 'package:devtools_app/src/shared/primitives/history_manager.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:vm_service/vm_service.dart'; void main() { group('HistoryManager', () { late HistoryManager history; final ScriptRef ref1 = ScriptRef(uri: 'package:foo/foo.dart', id: 'id-1'); final ScriptRef ref2 = ScriptRef(uri: 'package:bar/bar.dart', id: 'id-2'); final ScriptRef ref3 = ScriptRef(uri: 'package:baz/baz.dart', id: 'id-3'); setUp(() { history = HistoryManager<ScriptRef>(); }); test('initial values', () { expect(history.hasNext, false); expect(history.hasPrevious, false); expect(history.current.value, isNull); }); test('moveBack', () { history.push(ref1); history.push(ref2); history.push(ref3); expect(history.hasNext, false); expect(history.hasPrevious, true); expect(history.current.value, ref3); history.moveBack(); expect(history.hasNext, true); expect(history.hasPrevious, true); expect(history.current.value, ref2); history.moveBack(); expect(history.hasNext, true); expect(history.hasPrevious, false); expect(history.current.value, ref1); }); test('moveForward', () { history.push(ref1); history.push(ref2); expect(history.hasNext, false); expect(history.hasPrevious, true); expect(history.current.value, ref2); history.moveBack(); expect(history.hasNext, true); expect(history.hasPrevious, false); expect(history.current.value, ref1); history.moveForward(); expect(history.hasNext, false); expect(history.hasPrevious, true); expect(history.current.value, ref2); }); test('ref can be in history twice', () { history.push(ref1); history.push(ref2); history.push(ref1); history.push(ref2); expect(history.current.value, ref2); history.moveBack(); expect(history.current.value, ref1); history.moveBack(); expect(history.current.value, ref2); history.moveBack(); expect(history.current.value, ref1); }); test('pop entries', () { history.push(ref1); history.push(ref2); history.push(ref3); expect(history.hasNext, false); expect(history.hasPrevious, true); expect(history.current.value, ref3); history.pop(); expect(history.hasNext, false); expect(history.hasPrevious, true); expect(history.current.value, ref2); history.pop(); expect(history.hasNext, false); expect(history.hasPrevious, false); expect(history.current.value, ref1); history.pop(); expect(history.hasNext, false); expect(history.hasPrevious, false); expect(history.current.value, null); }); test('replaceCurrent empty history', () { expect(history.current.value, null); history.replaceCurrent(ref1); expect(history.current.value, ref1); expect(history.hasNext, false); expect(history.hasPrevious, false); }); test('replaceCurrent at the top of the stack', () { history.push(ref1); history.push(ref2); history.push(ref3); expect(history.current.value, ref3); expect(history.hasNext, false); expect(history.hasPrevious, true); history.replaceCurrent(ref1); expect(history.current.value, ref1); expect(history.hasNext, false); expect(history.hasPrevious, true); history.moveBack(); expect(history.current.value, ref2); expect(history.hasNext, true); expect(history.hasPrevious, true); history.moveBack(); expect(history.current.value, ref1); expect(history.hasNext, true); expect(history.hasPrevious, false); }); test('replaceCurrent in the middle of the stack', () { history.push(ref1); history.push(ref2); history.push(ref3); history.moveBack(); expect(history.current.value, ref2); expect(history.hasNext, true); expect(history.hasPrevious, true); history.replaceCurrent(ref3); expect(history.current.value, ref3); expect(history.hasNext, true); expect(history.hasPrevious, true); history.moveBack(); expect(history.current.value, ref1); expect(history.hasNext, true); expect(history.hasPrevious, false); history.moveForward(); history.moveForward(); expect(history.current.value, ref3); expect(history.hasNext, false); expect(history.hasPrevious, true); }); test('replaceCurrent at the bottom of the stack', () { history.push(ref1); history.push(ref2); history.push(ref3); history.moveBack(); history.moveBack(); expect(history.current.value, ref1); expect(history.hasNext, true); expect(history.hasPrevious, false); history.replaceCurrent(ref3); expect(history.current.value, ref3); expect(history.hasNext, true); expect(history.hasPrevious, false); history.moveForward(); expect(history.current.value, ref2); expect(history.hasNext, true); expect(history.hasPrevious, true); history.moveForward(); expect(history.current.value, ref3); expect(history.hasNext, false); expect(history.hasPrevious, true); }); }); }
devtools/packages/devtools_app/test/shared/history_manager_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/history_manager_test.dart", "repo_id": "devtools", "token_count": 2181 }
110
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:devtools_app_shared/service.dart'; import 'package:devtools_test/devtools_test.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; import 'package:vm_service/vm_service.dart'; void main() { late ResolvedUriManager resolvedUriManager; late MockVmServiceWrapper service; const String isolateId = 'anIsolateId'; const uri1 = 'this/is/a/uri1'; const uri2 = 'this/is/a/uri2'; const packageUri1 = 'uri/am/i1'; const packageUri2 = 'uri/am/i2'; setUp(() { service = createMockVmServiceWrapperWithDefaults(); resolvedUriManager = ResolvedUriManager(); }); group('lifecycle', () { setUp(() { when(unawaited(service.lookupPackageUris(isolateId, [uri1]))).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUri1])), ); }); test('does nothing before vmServiceOpened', () async { await resolvedUriManager.fetchPackageUris(isolateId, [uri1]); await resolvedUriManager.fetchFileUris(isolateId, [packageUri1]); expect(resolvedUriManager.lookupPackageUri(isolateId, uri1), isNull); expect(resolvedUriManager.lookupFileUri(isolateId, packageUri1), isNull); verifyNever(service.lookupPackageUris(isolateId, any)); verifyNever(service.lookupResolvedPackageUris(isolateId, any)); }); test('does nothing after vmServiceClosed', () async { resolvedUriManager.vmServiceOpened(service); resolvedUriManager.vmServiceClosed(); await resolvedUriManager.fetchPackageUris(isolateId, [uri1]); await resolvedUriManager.fetchFileUris(isolateId, [packageUri1]); expect(resolvedUriManager.lookupPackageUri(isolateId, uri1), isNull); expect(resolvedUriManager.lookupFileUri(isolateId, packageUri1), isNull); verifyNever(service.lookupPackageUris(isolateId, any)); verifyNever(service.lookupResolvedPackageUris(isolateId, any)); }); }); group('file to package mappings', () { setUp(() { resolvedUriManager.vmServiceOpened(service); }); test('lookupPackageUri when uri is unknown', () { final packageUriResult = resolvedUriManager.lookupPackageUri(isolateId, 'some/uri'); expect(packageUriResult, isNull); }); test('lookupPackageUris', () async { when(service.lookupPackageUris(isolateId, [uri1, uri2])).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUri1, packageUri2])), ); await resolvedUriManager.fetchPackageUris(isolateId, [uri1, uri2]); expect( resolvedUriManager.lookupPackageUri(isolateId, uri1), equals(packageUri1), ); expect( resolvedUriManager.lookupPackageUri(isolateId, uri2), equals(packageUri2), ); }); test('remembers already fetched uris', () async { when(service.lookupPackageUris(isolateId, [uri1])).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUri1])), ); when(service.lookupPackageUris(isolateId, [uri2])).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUri2])), ); await resolvedUriManager.fetchPackageUris(isolateId, [uri1]); expect( resolvedUriManager.lookupPackageUri(isolateId, uri1), equals(packageUri1), ); await resolvedUriManager.fetchPackageUris(isolateId, [uri2]); expect( resolvedUriManager.lookupPackageUri(isolateId, uri1), equals(packageUri1), ); expect( resolvedUriManager.lookupPackageUri(isolateId, uri2), equals(packageUri2), ); }); test('caches different mappings between different isolates', () async { const String isolateId2 = 'anIsolateId2'; const String packageUriFromDifferentIsolate = 'this/is/a/third/packageUri3'; when(service.lookupPackageUris(isolateId, [uri1])).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUri1])), ); when(service.lookupPackageUris(isolateId2, [uri1])).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUriFromDifferentIsolate])), ); await resolvedUriManager.fetchPackageUris(isolateId, [uri1]); await resolvedUriManager.fetchPackageUris(isolateId2, [uri1]); expect( resolvedUriManager.lookupPackageUri(isolateId, uri1), equals(packageUri1), ); expect( resolvedUriManager.lookupPackageUri(isolateId2, uri1), equals(packageUriFromDifferentIsolate), ); }); test('preserves the reverse package to file mapping', () async { when(service.lookupPackageUris(isolateId, [uri1])).thenAnswer( (realInvocation) => Future.value(UriList(uris: [packageUri1])), ); await resolvedUriManager.fetchPackageUris(isolateId, [uri1]); expect( resolvedUriManager.lookupPackageUri(isolateId, uri1), equals(packageUri1), ); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri1), equals(uri1), ); }); }); group('package to file mappings', () { setUp(() { resolvedUriManager.vmServiceOpened(service); }); test('lookupFileUri when package is unknown', () { final fileUriResult = resolvedUriManager.lookupFileUri(isolateId, 'package:some/uri'); expect(fileUriResult, isNull); }); test('lookupFileUri', () async { when( service .lookupResolvedPackageUris(isolateId, [packageUri1, packageUri2]), ).thenAnswer( (realInvocation) => Future.value(UriList(uris: [uri1, uri2])), ); await resolvedUriManager .fetchFileUris(isolateId, [packageUri1, packageUri2]); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri1), equals(uri1), ); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri2), equals(uri2), ); }); test('remembers already fetched file paths', () async { when(service.lookupResolvedPackageUris(isolateId, [packageUri1])) .thenAnswer( (realInvocation) => Future.value(UriList(uris: [uri1])), ); when(service.lookupResolvedPackageUris(isolateId, [packageUri2])) .thenAnswer( (realInvocation) => Future.value(UriList(uris: [uri2])), ); await resolvedUriManager.fetchFileUris(isolateId, [packageUri1]); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri1), equals(uri1), ); await resolvedUriManager.fetchFileUris(isolateId, [packageUri2]); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri1), equals(uri1), ); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri2), equals(uri2), ); }); test('caches different mappings between different isolates', () async { const String isolateId2 = 'anIsolateId2'; const String fileUriFromDifferentIsolate = 'file:///this/is/a/third/fileUri3'; when(service.lookupResolvedPackageUris(isolateId, [packageUri1])) .thenAnswer( (realInvocation) => Future.value(UriList(uris: [uri1])), ); when(service.lookupResolvedPackageUris(isolateId2, [packageUri1])) .thenAnswer( (realInvocation) => Future.value(UriList(uris: [fileUriFromDifferentIsolate])), ); await resolvedUriManager.fetchFileUris(isolateId, [packageUri1]); await resolvedUriManager.fetchFileUris(isolateId2, [packageUri1]); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri1), equals(uri1), ); expect( resolvedUriManager.lookupFileUri(isolateId2, packageUri1), equals(fileUriFromDifferentIsolate), ); }); test('preserves the reverse file to package mapping', () async { when(service.lookupResolvedPackageUris(isolateId, [packageUri1])) .thenAnswer( (realInvocation) => Future.value(UriList(uris: [uri1])), ); await resolvedUriManager.fetchFileUris(isolateId, [packageUri1]); expect( resolvedUriManager.lookupFileUri(isolateId, packageUri1), equals(uri1), ); expect( resolvedUriManager.lookupPackageUri(isolateId, uri1), equals(packageUri1), ); }); }); }
devtools/packages/devtools_app/test/shared/resolved_uri_manager_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/resolved_uri_manager_test.dart", "repo_id": "devtools", "token_count": 3689 }
111
// Copyright 2021 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @TestOn('vm') import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_shared/devtools_test_utils.dart'; import 'package:flutter_test/flutter_test.dart'; import '../test_infra/flutter_test_driver.dart' show FlutterRunConfiguration; import '../test_infra/flutter_test_environment.dart'; void main() { final FlutterTestEnvironment env = FlutterTestEnvironment( const FlutterRunConfiguration(withDebugger: true), ); group('TimelineStreamManager', () { tearDownAll(() async { await env.tearDownEnvironment(force: true); }); test( 'timeline streams initialized on vm service opened', () async { await env.setupEnvironment(); // Await a short delay to make sure the timelineStreamManager is done // initializing. await delay(); expect(serviceConnection.serviceManager.service, equals(env.service)); expect(serviceConnection.timelineStreamManager, isNotNull); expect( serviceConnection.timelineStreamManager.basicStreams, isNotEmpty, ); expect( serviceConnection.timelineStreamManager.advancedStreams, isNotEmpty, ); await env.tearDownEnvironment(); }, timeout: const Timeout.factor(4), ); test( 'notifies on stream change', () async { await env.setupEnvironment(); final initialStreams = serviceConnection.timelineStreamManager.recordedStreams; expect( initialStreams.map((stream) => stream.name).toList(), equals(['Dart', 'Embedder', 'GC']), ); await serviceConnection.serviceManager.service!.setVMTimelineFlags([ TimelineStreamManager.apiTimelineStream, TimelineStreamManager.compilerTimelineStream, TimelineStreamManager.isolateTimelineStream, ]); final newStreams = serviceConnection.timelineStreamManager.recordedStreams; expect( newStreams.map((stream) => stream.name).toList(), equals(['API', 'Compiler', 'Isolate']), ); await env.tearDownEnvironment(); }, timeout: const Timeout.factor(4), ); }); }
devtools/packages/devtools_app/test/shared/timeline_streams_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/shared/timeline_streams_test.dart", "repo_id": "devtools", "token_count": 923 }
112
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // ignore_for_file: avoid_print import 'dart:async'; void main() { print('starting empty app'); // Don't exit until it's indicated we should by the controller. Timer(const Duration(days: 1), () {}); }
devtools/packages/devtools_app/test/test_infra/fixtures/empty_app.dart/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/fixtures/empty_app.dart", "repo_id": "devtools", "token_count": 110 }
113
// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // ignore_for_file: avoid_print import 'dart:async'; import 'dart:developer'; import 'dart:io'; // Allow a test driver to communicate with this app through the controller. final Controller controller = Controller(); void main() { print('starting logging app'); log('starting logging app'); // Don't exit until it's indicated we should by the controller. Timer(const Duration(days: 1), () {}); } class Controller { int count = 0; void emitLog() { count++; print('emitLog called'); log('emit log $count', name: 'logging'); } void shutdown() { print('stopping app'); log('stopping app'); exit(0); } }
devtools/packages/devtools_app/test/test_infra/fixtures/logging_app.dart/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/fixtures/logging_app.dart", "repo_id": "devtools", "token_count": 254 }
114
>// Copyright 2022 The Chromium Authors. All rights reserved. #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart >// Use of this source code is governed by a BSD-style license that can be #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart >// found in the LICENSE file. #^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line.double-slash.dart > >class A { #^^^^^ keyword.declaration.dart # ^ support.class.dart > String get name => ''; # ^^^^^^ support.class.dart # ^^^ keyword.declaration.dart # ^^ keyword.operator.closure.dart # ^^ string.interpolated.single.dart # ^ punctuation.terminator.dart > set name(String value) {} # ^^^ keyword.declaration.dart # ^^^^ entity.name.function.dart # ^^^^^^ support.class.dart > > void method() {} # ^^^^ storage.type.primitive.dart # ^^^^^^ entity.name.function.dart > void get() {} # ^^^^ storage.type.primitive.dart # ^^^ entity.name.function.dart > void set() {} # ^^^^ storage.type.primitive.dart # ^^^ entity.name.function.dart >} > >mixin MyMixin<T> on List<T> {} #^^^^^ keyword.declaration.dart # ^^^^^^^ support.class.dart # ^ other.source.dart # ^ support.class.dart # ^ other.source.dart # ^^ keyword.control.catch-exception.dart # ^^^^ support.class.dart # ^ other.source.dart # ^ support.class.dart # ^ other.source.dart
devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/classes_mixins.dart.golden/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/classes_mixins.dart.golden", "repo_id": "devtools", "token_count": 751 }
115
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:io' as io; import 'package:flutter_test/flutter_test.dart'; import 'matchers.dart'; Matcher matchesDevToolsGolden(Object key) { if (io.Platform.isMacOS) { return matchesGoldenFile(key); } return const AlwaysTrueMatcher(); }
devtools/packages/devtools_app/test/test_infra/matchers/_golden_matcher_io.dart/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/matchers/_golden_matcher_io.dart", "repo_id": "devtools", "token_count": 133 }
116
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file. const newV8 = r''' {"snapshot":{"meta":{"node_fields":["type","name","id","self_size","edge_count"],"node_types":[["Unknown" ,"ArtificialRoot" ,"Null" ,"Array" ,"Type" ,"TypeArguments" ,"bool" ,"ContextScope" ,"PcDescriptors" ,"LocalVarDescriptors" ,"ExceptionHandlers" ,"Bytecode" ,"ArgumentsDescriptor" ,"Class" ,"int" ,"OneByteString" ,"Code" ,"(RO) _OneByteString" ,"Image" ,"(RO) InstructionsSection" ,"(RO) Instructions" ,"ObjectPool" ,"CodeSourceMap" ,"CompressedStackMaps" ,"TwoByteString" ,"TypedData" ,"PatchClass" ,"Function" ,"ClosureData" ,"SignatureData" ,"Field" ,"Script" ,"Library" ,"UnlinkedCall" ,"MegamorphicCache" ,"SubtypeTestCache" ,"Instance" ,"TypeRef" ,"TypeParameter" ,"Closure" ,"double" ,"GrowableObjectArray" ,"DispatchTable" ,"(RO) PcDescriptors" ,"(RO) CodeSourceMap" ,"(RO) CompressedStackMaps" ,"(RO) _TwoByteString" ]],"edge_fields":["type","name_or_index","to_node"],"edge_types":[["context" ,"element" ,"property" ,"internal" ]]},"node_count":135023,"edge_count":524046},"nodes":[1,1,5,2626,318 ,14,27,524288,6,0 ,18,924,1,16,1 ,20,16620,3670018,188,0 ,18,15155,2,16,1 ,17,923,8912900,32,0 ,17,923,6815748,32,0 ,44,15152,2097156,24,0 ,45,15153,4194308,16,0 ,2,2,8,0,0 ,14,27,524296,6,0 ,2,3,16,0,0 ,14,27,524304,6,0 ,2,4,24,0,0 ,14,27,524312,6,0 ,3,5,32,0,0 ,14,27,524320,6,0 ,20,24683,24117282,512,0 ,3,6,40,0,0 ,14,27,524328,6,0 ,4,7,48,0,0 ,14,27,524336,6,0 ,4,8,56,0,0 ,14,27,524344,6,0 ,5,9,64,0,0 ,14,27,524352,6,0 ,17,923,9961540,40,0 ,17,923,7340100,32,0 ,44,15152,1048644,56,0 ,44,15152,3145796,24,0 ,45,15153,4718660,16,0 ,17,923,8388676,24,0 ,6,10,72,0,0 ,14,27,524360,6,0 ,6,11,80,0,0 ,14,27,524368,6,0 ,3,12,88,0,0 ,14,27,524376,6,0 ,3,13,96,0,0 ,14,27,524384,6,0 ,20,21502,16253026,72,0 ,20,21153,15728738,48,0 ,7,14,104,0,0 ,14,27,524392,6,0 ,8,14,112,0,0 ,14,27,524400,6,0 ,9,14,120,0,0 ,14,27,524408,6,0 ,10,14,128,0,0 ,14,27,524416,6,0 ,19,924,129,8,92 ,20,17504,5767298,12,0 ,19,15155,130,8,11411 ,20,15312,524418,184,0 ,20,17095,4718722,12,0 ,17,923,131,16,0 ,45,15153,4194436,32,0 ,43,15151,132,16,0 ,44,15152,524420,24,0 ,11,15,136,0,0 ,14,27,524424,6,0 ,11,16,144,0,0 ,14,27,524432,6,0 ,11,17,152,0,0 ,14,27,524440,6,0 ,11,18,160,0,0 ,14,27,524448,6,0 ,11,19,168,0,0 ,14,27,524456,6,0 ,11,20,176,0,0 ,14,27,524464,6,0 ,11,21,184,0,0 ,14,27,524472,6,0 ,11,22,192,0,0 ,14,27,524480,6,0 ,20,925,193,204,0 ,20,15156,194,112,0 ,17,923,9437380,64,0 ,44,15152,2097348,24,0 ,44,15152,3670212,40,0 ,45,15153,4718788,16,0 ,12,23,200,0,0 ,14,27,524488,6,0 ,12,23,208,0,0 ,14,27,524496,6,0 ,12,23,216,0,0 ,14,27,524504,6,0 ,12,23,224,0,0 ,14,27,524512,6,0 ,20,17505,5767394,12,0 ,20,17096,4718818,352,0 ,12,23,232,0,0 ,14,27,524520,6,0 ,12,23,240,0,0 ,14,27,524528,6,0 ,12,23,248,0,0 ,14,27,524536,6,0 ,12,23,256,0,0 ,14,27,524544,6,0 ,20,23475,20971778,512,0 ,17,923,259,40,0 ,17,923,8913156,40,0 ,17,923,6816004,24,0 ,43,15151,260,16,0 ,44,15152,3145988,24,0 ,17,923,8388868,32,0 ,12,23,264,0,0 ,14,27,524552,6,0 ,12,23,272,0,0 ,14,27,524560,6,0 ,12,23,280,0,0 ,14,27,524568,6,0 ,12,23,288,0,0 ,14,27,524576,6,0 ,12,23,296,0,0 ,14,27,524584,6,0 ,12,23,304,0,0 ,14,27,524592,6,0 ,12,23,312,0,0 ,14,27,524600,6,0 ,12,23,320,0,0 ,14,27,524608,6,0 ,20,18625,8388930,12,0 ,20,17506,5767490,64,0 ,45,15153,4718916,16,0 ,17,923,7864644,40,0 ,17,923,7340356,40,0 ,44,15152,2621764,56,0 ,44,15152,524612,24,0 ,12,23,328,0,0 ,14,27,524616,6,0 ,12,23,336,0,0 ,14,27,524624,6,0 ,12,23,344,0,0 ,14,27,524632,6,0 ,12,23,352,0,0 ,14,27,524640,6,0 ,20,20453,13107554,440,0 ,12,23,360,0,0 ,14,27,524648,6,0 ,12,23,368,0,0 ,14,27,524656,6,0 ,12,23,376,0,0 ,14,27,524664,6,0 ,12,23,384,0,0 ,14,27,524672,6,0 ,17,923,9961860,40,0 ,44,15152,2097540,56,0 ,43,15151,388,16,0 ,45,15153,4194692,24,0 ,45,15153,5243268,16,0 ,12,23,392,0,0 ,14,27,524680,6,0 ,12,23,400,0,0 ,14,27,524688,6,0 ,12,23,408,0,0 ,14,27,524696,6,0 ,12,23,416,0,0 ,14,27,524704,6,0 ,20,21754,16777634,368,0 ,20,18626,8389026,504,0 ,20,20702,13631906,76,0 ,12,23,424,0,0 ,14,27,524712,6,0 ,12,23,432,0,0 ,14,27,524720,6,0 ,12,23,440,0,0 ,14,27,524728,6,0 ,12,23,448,0,0 ,14,27,524736,6,0 ,45,15153,4719044,16,0 ,17,923,6816196,32,0 ,44,15152,3146180,56,0 ,3,24,456,0,0 ,14,27,524744,6,0 ,3,24,464,0,0 ,14,27,524752,6,0 ,3,24,472,0,0 ,14,27,524760,6,0 ,3,24,480,0,0 ,14,27,524768,6,0 ,20,21154,15729122,348,0 ,3,25,488,0,0 ,14,27,524776,6,0 ,13,26,496,0,0 ,14,27,524784,6,0 ,13,26,504,0,0 ,14,27,524792,6,0 ,13,26,512,0,0 ,14,27,524800,6,0 ,20,16913,4194818,60,0 ,17,923,8389124,32,0 ,43,15151,516,32,0 ,44,15152,524804,16,0 ,44,15152,1049092,104,0 ,44,15152,3670532,80,0 ,45,15153,5243396,96,0 ,13,26,520,0,0 ,14,27,524808,6,0 ,13,26,528,0,0 ,14,27,524816,6,0 ,13,26,536,0,0 ,14,27,524824,6,0 ,13,26,544,0,0 ,14,27,524832,6,0 ,13,26,552,0,0 ,14,27,524840,6,0 ,13,26,560,0,0 ,14,27,524848,6,0 ,13,26,568,0,0 ,14,27,524856,6,0 ,13,26,576,0,0 ,14,27,524864,6,0 ,20,26244,28312130,316,0 ,17,923,579,16,0 ,17,923,8913476,56,0 ,45,15153,4194884,16,0 ,45,15153,4719172,24,0 ,13,26,584,0,0 ,14,27,524872,6,0 ,13,26,592,0,0 ,14,27,524880,6,0 ,13,26,600,0,0 ,14,27,524888,6,0 ,13,26,608,0,0 ,14,27,524896,6,0 ,20,22487,18874978,24,0 ,13,26,616,0,0 ,14,27,524904,6,0 ,13,26,624,0,0 ,14,27,524912,6,0 ,13,26,632,0,0 ,14,27,524920,6,0 ,13,26,640,0,0 ,14,27,524928,6,0 ,44,15152,524932,24,0 ,17,923,7864964,48,0 ,17,923,7340676,40,0 ,13,26,648,0,0 ,14,27,524936,6,0 ,13,26,656,0,0 ,14,27,524944,6,0 ,13,26,664,0,0 ,14,27,524952,6,0 ,13,26,672,0,0 ,14,27,524960,6,0 ,20,21503,16253602,448,0 ,20,18397,7864994,256,0 ,13,26,680,0,0 ,14,27,524968,6,0 ,13,26,688,0,0 ,14,27,524976,6,0 ,13,26,696,0,0 ,14,27,524984,6,0 ,13,26,704,0,0 ,14,27,524992,6,0 ,17,923,707,16,0 ,17,923,9962180,32,0 ,17,923,6816452,40,0 ,45,15153,4195012,24,0 ,17,923,9437892,56,0 ,13,26,712,0,0 ,14,27,525000,6,0 ,13,26,720,0,0 ,14,27,525008,6,0 ,13,26,728,0,0 ,14,27,525016,6,0 ,13,26,736,0,0 ,14,27,525024,6,0 ,13,26,744,0,0 ,14,27,525032,6,0 ,13,26,752,0,0 ,14,27,525040,6,0 ,13,26,760,0,0 ,14,27,525048,6,0 ,13,26,768,0,0 ,14,27,525056,6,0 ,17,923,8389380,24,0 ,44,15152,2622212,48,0 ,43,15151,772,16,0 ,45,15153,4719364,48,0 ,13,26,776,0,0 ,14,27,525064,6,0 ,13,26,784,0,0 ,14,27,525072,6,0 ,16,820,792,10,12 ,14,27,525080,6,0 ,16,820,800,11,12 ,14,27,525088,6,0 ,20,22488,18875170,152,0 ,16,820,808,11,12 ,14,27,525096,6,0 ,16,820,816,11,12 ,14,27,525104,6,0 ,16,820,824,11,12 ,14,27,525112,6,0 ,16,820,832,11,12 ,14,27,525120,6,0 ,20,20860,14156610,180,0 ,20,24858,24642370,156,0 ,20,17507,5768002,404,0 ,17,923,835,40,0 ,44,15152,525124,24,0 ,44,15152,2097988,32,0 ,16,820,840,11,12 ,14,27,525128,6,0 ,16,820,848,11,12 ,14,27,525136,6,0 ,16,820,856,11,12 ,14,27,525144,6,0 ,16,820,864,11,12 ,14,27,525152,6,0 ,16,820,872,11,12 ,14,27,525160,6,0 ,16,820,880,11,12 ,14,27,525168,6,0 ,16,820,888,11,12 ,14,27,525176,6,0 ,16,820,896,11,12 ,14,27,525184,6,0 ,45,15153,4195204,32,0 ,43,15151,900,16,0 ,44,15152,3146628,24,0 ,16,820,904,11,12 ,14,27,525192,6,0 ,16,820,912,11,12 ,14,27,525200,6,0 ,16,820,920,11,12 ,14,27,525208,6,0 ,16,820,928,11,12 ,14,27,525216,6,0 ,20,15569,1049506,64,0 ,16,820,936,11,12 ,14,27,525224,6,0 ,16,820,944,11,12 ,14,27,525232,6,0 ,16,820,952,11,12 ,14,27,525240,6,0 ,16,820,960,11,12 ,14,27,525248,6,0 ,17,923,9962436,24,0 ,17,923,7340996,40,0 ,17,923,8389572,32,0 ,16,820,968,11,12 ,14,27,525256,6,0 ,16,820,976,11,12 ,14,27,525264,6,0 ,16,820,984,11,12 ,14,27,525272,6,0 ,16,820,992,11,12 ,14,27,525280,6,0 ,20,16914,4195298,64,0 ,16,820,1000,11,12 ,14,27,525288,6,0 ,16,820,1008,11,12 ,14,27,525296,6,0 ,16,820,1016,11,12 ,14,27,525304,6,0 ,16,820,1024,11,12 ,14,27,525312,6,0 ,20,20703,13632514,76,0 ,17,923,8913924,40,0 ,17,923,7865348,32,0 ,17,923,6816772,24,0 ,43,15151,1028,16,0 ,44,15152,525316,24,0 ,16,820,1032,11,12 ,14,27,525320,6,0 ,16,820,1040,11,12 ,14,27,525328,6,0 ,16,820,1048,11,12 ,14,27,525336,6,0 ,16,820,1056,11,12 ,14,27,525344,6,0 ,16,820,1064,11,12 ,14,27,525352,6,0 ,16,820,1072,11,12 ,14,27,525360,6,0 ,16,820,1080,11,12 ,14,27,525368,6,0 ,16,820,1088,11,12 ,14,27,525376,6,0 ,20,24318,23069762,1240,0 ,20,25307,25691202,168,0 ,20,15157,1090,216,0 ,44,15152,3146820,24,0 ,44,15152,2098244,64,0 ,16,820,1096,11,12 ,14,27,525384,6,0 ,16,820,1104,11,12 ,14,27,525392,6,0 ,16,820,1112,11,12 ,14,27,525400,6,0 ,16,820,1120,11,12 ,14,27,525408,6,0 ,20,25837,27264098,388,0 ,16,820,1128,11,12 ,14,27,525416,6,0 ,16,820,1136,11,12 ,14,27,525424,6,0 ,16,820,1144,11,12 ,14,27,525432,6,0 ,16,820,1152,11,12 ,14,27,525440,6,0 ,17,923,1155,32,0 ,17,923,9962628,24,0 ,44,15152,2622596,56,0 ,43,15151,1156,16,0 ,44,15152,3671172,56,0 ,45,15153,4195460,24,0 ,45,15153,4719748,24,0 ,17,923,9438340,40,0 ,16,820,1160,11,12 ,14,27,525448,6,0 ,16,820,1168,11,12 ,14,27,525456,6,0 ,16,820,1176,11,12 ,14,27,525464,6,0 ,16,820,1184,11,12 ,14,27,525472,6,0 ,20,19091,9438370,956,0 ,16,820,1192,12,12 ,14,27,525480,6,0 ,16,820,1200,12,12 ,14,27,525488,6,0 ,16,820,1208,12,12 ,14,27,525496,6,0 ,16,820,1216,12,12 ,14,27,525504,6,0 ,17,923,8389828,32,0 ,17,923,6816964,40,0 ,44,15152,525508,72,0 ,16,820,1224,12,12 ,14,27,525512,6,0 ,16,820,1232,12,12 ,14,27,525520,6,0 ,16,820,1240,12,12 ,14,27,525528,6,0 ,16,820,1248,12,12 ,14,27,525536,6,0 ,16,820,1256,12,12 ,14,27,525544,6,0 ,16,820,1264,12,12 ,14,27,525552,6,0 ,16,820,1272,12,12 ,14,27,525560,6,0 ,16,820,1280,12,12 ,14,27,525568,6,0 ,20,24148,22545666,140,0 ,45,15153,5244164,24,0 ,17,923,7865604,32,0 ,17,923,7341316,24,0 ,43,15151,1284,16,0 ,44,15152,3147012,128,0 ,16,820,1288,12,12 ,14,27,525576,6,0 ,16,820,1296,12,12 ,14,27,525584,6,0 ,16,820,1304,12,12 ,14,27,525592,6,0 ,16,820,1312,12,12 ,14,27,525600,6,0 ,16,820,1320,12,12 ,14,27,525608,6,0 ,16,820,1328,12,12 ,14,27,525616,6,0 ,16,820,1336,12,12 ,14,27,525624,6,0 ,16,820,1344,12,12 ,14,27,525632,6,0 ,17,923,9962820,32,0 ,44,15152,1049924,24,0 ,45,15153,4195652,24,0 ,45,15153,4719940,24,0 ,17,923,8914244,64,0 ,16,820,1352,12,12 ,14,27,525640,6,0 ,16,820,1360,12,12 ,14,27,525648,6,0 ,16,820,1368,12,12 ,14,27,525656,6,0 ,16,820,1376,12,12 ,14,27,525664,6,0 ,16,820,1384,12,12 ,14,27,525672,6,0 ,16,820,1392,12,12 ,14,27,525680,6,0 ,16,820,1400,12,12 ,14,27,525688,6,0 ,16,820,1408,12,12 ,14,27,525696,6,0 ,17,923,1411,16,0 ,43,15151,1412,16,0 ,16,820,1416,12,12 ,14,27,525704,6,0 ,16,820,1424,12,12 ,14,27,525712,6,0 ,16,820,1432,12,12 ,14,27,525720,6,0 ,16,820,1440,12,12 ,14,27,525728,6,0 ,20,15570,1050018,340,0 ,16,820,1448,12,12 ,14,27,525736,6,0 ,16,820,1456,12,12 ,14,27,525744,6,0 ,16,820,1464,12,12 ,14,27,525752,6,0 ,16,820,1472,12,12 ,14,27,525760,6,0 ,17,923,9438660,24,0 ,17,923,7341508,48,0 ,45,15153,5244356,24,0 ,17,923,8390084,24,0 ,16,820,1480,12,12 ,14,27,525768,6,0 ,16,820,1488,12,12 ,14,27,525776,6,0 ,16,820,1496,12,12 ,14,27,525784,6,0 ,16,820,1504,12,12 ,14,27,525792,6,0 ,20,16915,4195810,64,0 ,20,16621,3671522,128,0 ,16,820,1512,12,12 ,14,27,525800,6,0 ,16,820,1520,12,12 ,14,27,525808,6,0 ,14,27,1528,2,0 ,14,27,525816,6,0 ,14,27,1536,3,0 ,14,27,525824,6,0 ,17,923,1539,24,0 ,45,15153,4720132,32,0 ,17,923,7865860,32,0 ,17,923,6817284,48,0 ,43,15151,1540,16,0 ,44,15152,1050116,32,0 ,45,15153,4195844,16,0 ,3,28,1544,2854,2051 ,14,27,525832,6,0 ,15,29,1552,1,1 ,14,27,525840,6,0 ,15,30,1560,1,1 ,14,27,525848,6,0 ,15,31,1568,1,1 ,14,27,525856,6,0 ,15,32,1576,1,1 ,14,27,525864,6,0 ,15,33,1584,1,1 ,14,27,525872,6,0 ,15,34,1592,1,1 ,14,27,525880,6,0 ,15,35,1600,1,1 ,14,27,525888,6,0 ,20,15313,525890,132,0 ,17,923,9963076,32,0 ,44,15152,2623044,48,0 ,44,15152,2098756,24,0 ,44,15152,3671620,16,0 ,15,36,1608,1,1 ,14,27,525896,6,0 ,15,37,1616,1,1 ,14,27,525904,6,0 ,15,38,1624,1,1 ,14,27,525912,6,0 ,15,39,1632,1,1 ,14,27,525920,6,0 ,20,20704,13633122,156,0 ,15,40,1640,1,1 ,14,27,525928,6,0 ,15,41,1648,1,1 ,14,27,525936,6,0 ,15,42,1656,1,1 ,14,27,525944,6,0 ,15,43,1664,1,1 ,14,27,525952,6,0 ,17,923,9438852,56,0 ,43,15151,1668,24,0 ,45,15153,4195972,24,0 ,45,15153,5244548,32,0 ,17,923,8390276,24,0 ,15,44,1672,1,1 ,14,27,525960,6,0 ,15,45,1680,1,1 ,14,27,525968,6,0 ,15,46,1688,1,1 ,14,27,525976,6,0 ,15,47,1696,1,1 ,14,27,525984,6,0 ,15,48,1704,1,1 ,14,27,525992,6,0 ,15,49,1712,1,1 ,14,27,526000,6,0 ,15,50,1720,1,1 ,14,27,526008,6,0 ,15,51,1728,1,1 ,14,27,526016,6,0 ,17,923,1731,24,0 ,44,15152,3671748,32,0 ,15,52,1736,1,1 ,14,27,526024,6,0 ,15,53,1744,1,1 ,14,27,526032,6,0 ,15,54,1752,1,1 ,14,27,526040,6,0 ,15,55,1760,1,1 ,14,27,526048,6,0 ,15,56,1768,1,1 ,14,27,526056,6,0 ,15,57,1776,1,1 ,14,27,526064,6,0 ,15,58,1784,1,1 ,14,27,526072,6,0 ,15,59,1792,1,1 ,14,27,526080,6,0 ,45,15153,4720388,24,0 ,17,923,7866116,40,0 ,44,15152,2098948,64,0 ,44,15152,526084,24,0 ,44,15152,1050372,24,0 ,15,60,1800,1,1 ,14,27,526088,6,0 ,15,61,1808,1,1 ,14,27,526096,6,0 ,15,62,1816,1,1 ,14,27,526104,6,0 ,15,63,1824,1,1 ,14,27,526112,6,0 ,20,926,1825,144,0 ,15,64,1832,1,1 ,14,27,526120,6,0 ,15,65,1840,1,1 ,14,27,526128,6,0 ,15,66,1848,1,1 ,14,27,526136,6,0 ,15,67,1856,1,1 ,14,27,526144,6,0 ,20,26074,27789122,332,0 ,17,923,9963332,32,0 ,17,923,7341892,32,0 ,43,15151,1860,56,0 ,45,15153,4196164,16,0 ,17,923,8390468,40,0 ,17,923,8914756,24,0 ,15,68,1864,1,1 ,14,27,526152,6,0 ,15,69,1872,1,1 ,14,27,526160,6,0 ,15,70,1880,1,1 ,14,27,526168,6,0 ,15,71,1888,1,1 ,14,27,526176,6,0 ,20,22224,18351970,332,0 ,20,19889,11011938,416,0 ,15,72,1896,1,1 ,14,27,526184,6,0 ,15,73,1904,1,1 ,14,27,526192,6,0 ,15,74,1912,1,1 ,14,27,526200,6,0 ,15,75,1920,1,1 ,14,27,526208,6,0 ,17,923,1923,16,0 ,45,15153,5244804,24,0 ,17,923,6817668,40,0 ,15,76,1928,1,1 ,14,27,526216,6,0 ,15,77,1936,1,1 ,14,27,526224,6,0 ,15,78,1944,1,1 ,14,27,526232,6,0 ,15,79,1952,1,1 ,14,27,526240,6,0 ,15,80,1960,1,1 ,14,27,526248,6,0 ,15,81,1968,1,1 ,14,27,526256,6,0 ,15,82,1976,1,1 ,14,27,526264,6,0 ,15,83,1984,1,1 ,14,27,526272,6,0 ,20,18877,8914882,980,0 ,45,15153,4720580,40,0 ,44,15152,2623428,24,0 ,44,15152,526276,40,0 ,44,15152,1050564,72,0 ,44,15152,3672004,32,0 ,45,15153,4196292,64,0 ,15,84,1992,1,1 ,14,27,526280,6,0 ,15,85,2000,1,1 ,14,27,526288,6,0 ,15,86,2008,1,1 ,14,27,526296,6,0 ,15,87,2016,1,1 ,14,27,526304,6,0 ,20,22489,18876386,24,0 ,20,16916,4196322,60,0 ,15,88,2024,1,1 ,14,27,526312,6,0 ,15,89,2032,1,1 ,14,27,526320,6,0 ,15,90,2040,1,1 ,14,27,526328,6,0 ,15,91,2048,1,1 ,14,27,526336,6,0 ,17,923,2051,16,0 ,17,923,8914948,72,0 ,15,92,2056,1,1 ,14,27,526344,6,0 ,15,93,2064,1,1 ,14,27,526352,6,0 ,15,94,2072,1,1 ,14,27,526360,6,0 ,15,11,2080,1,1 ,14,27,526368,6,0 ,20,24859,24643618,224,0 ,15,95,2088,1,1 ,14,27,526376,6,0 ,15,96,2096,1,1 ,14,27,526384,6,0 ,15,97,2104,1,1 ,14,27,526392,6,0 ,15,98,2112,1,1 ,14,27,526400,6,0 ,17,923,9963588,24,0 ,17,923,7866436,40,0 ,17,923,7342148,48,0 ,45,15153,5244996,16,0 ,17,923,9439300,48,0 ,15,99,2120,1,1 ,14,27,526408,6,0 ,15,100,2128,1,1 ,14,27,526416,6,0 ,15,101,2136,1,1 ,14,27,526424,6,0 ,15,102,2144,1,1 ,14,27,526432,6,0 ,15,103,2152,1,1 ,14,27,526440,6,0 ,15,104,2160,1,1 ,14,27,526448,6,0 ,15,105,2168,1,1 ,14,27,526456,6,0 ,15,106,2176,1,1 ,14,27,526464,6,0 ,17,923,2179,16,0 ,17,923,8390788,40,0 ,44,15152,2623620,48,0 ,15,107,2184,1,1 ,14,27,526472,6,0 ,15,108,2192,1,1 ,14,27,526480,6,0 ,15,109,2200,1,1 ,14,27,526488,6,0 ,15,110,2208,1,1 ,14,27,526496,6,0 ,20,22490,18876578,964,0 ,15,111,2216,1,1 ,14,27,526504,6,0 ,15,112,2224,1,1 ,14,27,526512,6,0 ,15,113,2232,1,1 ,14,27,526520,6,0 ,15,114,2240,1,1 ,14,27,526528,6,0 ,45,15153,5245124,24,0 ,17,923,6817988,40,0 ,44,15152,3672260,32,0 ,15,115,2248,1,1 ,14,27,526536,6,0 ,15,116,2256,1,1 ,14,27,526544,6,0 ,15,117,2264,1,1 ,14,27,526552,6,0 ,15,118,2272,1,1 ,14,27,526560,6,0 ,20,20861,14158050,152,0 ,15,119,2280,1,1 ,14,27,526568,6,0 ,15,120,2288,1,1 ,14,27,526576,6,0 ,15,121,2296,1,1 ,14,27,526584,6,0 ,15,122,2304,1,1 ,14,27,526592,6,0 ,17,923,2307,24,0 ,17,923,9963780,24,0 ,44,15152,2099460,24,0 ,43,15151,2308,24,0 ,44,15152,526596,72,0 ,44,15152,3148036,24,0 ,45,15153,4720900,24,0 ,15,123,2312,1,1 ,14,27,526600,6,0 ,15,124,2320,1,1 ,14,27,526608,6,0 ,15,125,2328,1,1 ,14,27,526616,6,0 ,15,126,2336,1,1 ,14,27,526624,6,0 ,20,16242,3148066,64,0 ,15,127,2344,1,1 ,14,27,526632,6,0 ,15,128,2352,1,1 ,14,27,526640,6,0 ,15,129,2360,1,1 ,14,27,526648,6,0 ,15,130,2368,1,1 ,14,27,526656,6,0 ,15,131,2376,1,1 ,14,27,526664,6,0 ,15,132,2384,1,1 ,14,27,526672,6,0 ,15,133,2392,1,1 ,14,27,526680,6,0 ,15,134,2400,1,1 ,14,27,526688,6,0 ,20,24149,22546786,156,0 ,15,135,2408,1,1 ,14,27,526696,6,0 ,15,136,2416,1,1 ,14,27,526704,6,0 ,15,137,2424,1,1 ,14,27,526712,6,0 ,15,138,2432,1,1 ,14,27,526720,6,0 ,20,25308,25692546,212,0 ,45,15153,5245316,16,0 ,17,923,7866756,32,0 ,15,139,2440,1,1 ,14,27,526728,6,0 ,15,140,2448,1,1 ,14,27,526736,6,0 ,15,141,2456,1,1 ,14,27,526744,6,0 ,15,142,2464,1,1 ,14,27,526752,6,0 ,15,143,2472,1,1 ,14,27,526760,6,0 ,15,144,2480,1,1 ,14,27,526768,6,0 ,15,145,2488,1,1 ,14,27,526776,6,0 ,15,146,2496,1,1 ,14,27,526784,6,0 ,20,16917,4196802,108,0 ,17,923,2499,24,0 ,17,923,9963972,24,0 ,17,923,7342532,24,0 ,44,15152,2099652,24,0 ,43,15151,2500,24,0 ,44,15152,3148228,32,0 ,44,15152,3672516,48,0 ,45,15153,4196804,24,0 ,45,15153,4721092,16,0 ,17,923,8391108,40,0 ,17,923,9439684,32,0 ,15,147,2504,1,1 ,14,27,526792,6,0 ,15,148,2512,1,1 ,14,27,526800,6,0 ,15,149,2520,1,1 ,14,27,526808,6,0 ,15,150,2528,1,1 ,14,27,526816,6,0 ,20,16622,3672546,244,0 ,15,151,2536,1,1 ,14,27,526824,6,0 ,15,152,2544,1,1 ,14,27,526832,6,0 ,15,153,2552,1,1 ,14,27,526840,6,0 ,15,154,2560,1,1 ,14,27,526848,6,0 ,45,15153,5245444,24,0 ,17,923,6818308,40,0 ,44,15152,2624004,56,0 ,44,15152,1051140,24,0 ,15,155,2568,1,1 ,14,27,526856,6,0 ,15,156,2576,1,1 ,14,27,526864,6,0 ,15,157,2584,1,1 ,14,27,526872,6,0 ,15,158,2592,1,1 ,14,27,526880,6,0 ,15,159,2600,1,1 ,14,27,526888,6,0 ,15,160,2608,1,1 ,14,27,526896,6,0 ,15,161,2616,1,1 ,14,27,526904,6,0 ,15,162,2624,1,1 ,14,27,526912,6,0 ,17,923,8915524,32,0 ,45,15153,4721220,24,0 ,15,163,2632,1,1 ,14,27,526920,6,0 ,15,164,2640,1,1 ,14,27,526928,6,0 ,15,165,2648,1,1 ,14,27,526936,6,0 ,15,166,2656,1,1 ,14,27,526944,6,0 ,20,15314,526946,264,0 ,15,167,2664,1,1 ,14,27,526952,6,0 ,15,168,2672,1,1 ,14,27,526960,6,0 ,15,169,2680,1,1 ,14,27,526968,6,0 ,15,170,2688,1,1 ,14,27,526976,6,0 ,17,923,2691,24,0 ,17,923,9964164,24,0 ,17,923,7867012,32,0 ,17,923,7342724,24,0 ,44,15152,2099844,24,0 ,43,15151,2692,16,0 ,45,15153,4196996,40,0 ,15,171,2696,1,1 ,14,27,526984,6,0 ,15,172,2704,1,1 ,14,27,526992,6,0 ,15,173,2712,1,1 ,14,27,527000,6,0 ,15,174,2720,1,1 ,14,27,527008,6,0 ,20,18398,7867042,100,0 ,15,175,2728,1,1 ,14,27,527016,6,0 ,15,176,2736,1,1 ,14,27,527024,6,0 ,15,177,2744,1,1 ,14,27,527032,6,0 ,15,178,2752,1,1 ,14,27,527040,6,0 ,17,923,9439940,32,0 ,44,15152,1051332,80,0 ,44,15152,3148484,24,0 ,45,15153,5245636,16,0 ,15,179,2760,1,1 ,14,27,527048,6,0 ,15,180,2768,1,1 ,14,27,527056,6,0 ,15,181,2776,1,1 ,14,27,527064,6,0 ,15,182,2784,1,1 ,14,27,527072,6,0 ,15,183,2792,1,1 ,14,27,527080,6,0 ,15,184,2800,1,1 ,14,27,527088,6,0 ,15,185,2808,1,1 ,14,27,527096,6,0 ,15,186,2816,1,1 ,14,27,527104,6,0 ,20,15158,2818,12,0 ,17,923,8391428,48,0 ,43,15151,2820,16,0 ,45,15153,4721412,24,0 ,15,187,2824,1,1 ,14,27,527112,6,0 ,15,188,2832,1,1 ,14,27,527120,6,0 ,15,189,2840,1,1 ,14,27,527128,6,0 ,15,190,2848,1,1 ,14,27,527136,6,0 ,20,16243,3148578,56,0 ,15,191,2856,1,1 ,14,27,527144,6,0 ,15,192,2864,1,1 ,14,27,527152,6,0 ,15,193,2872,1,1 ,14,27,527160,6,0 ,15,194,2880,1,1 ,14,27,527168,6,0 ,20,20705,13634370,260,0 ,17,923,2883,16,0 ,17,923,9964356,24,0 ,17,923,7342916,48,0 ,17,923,6818628,40,0 ,44,15152,2100036,48,0 ,44,15152,527172,48,0 ,44,15152,3672900,104,0 ,45,15153,5245764,24,0 ,17,923,8915780,40,0 ,15,195,2888,1,1 ,14,27,527176,6,0 ,15,196,2896,1,1 ,14,27,527184,6,0 ,15,197,2904,1,1 ,14,27,527192,6,0 ,15,198,2912,1,1 ,14,27,527200,6,0 ,20,15159,2914,120,0 ,15,199,2920,1,1 ,14,27,527208,6,0 ,15,200,2928,1,1 ,14,27,527216,6,0 ,15,201,2936,1,1 ,14,27,527224,6,0 ,15,202,2944,1,1 ,14,27,527232,6,0 ,44,15152,3148676,32,0 ,17,923,7867268,40,0 ,43,15151,2948,16,0 ,15,203,2952,1,1 ,14,27,527240,6,0 ,15,204,2960,1,1 ,14,27,527248,6,0 ,15,205,2968,1,1 ,14,27,527256,6,0 ,15,206,2976,1,1 ,14,27,527264,6,0 ,20,927,2977,144,0 ,15,207,2984,1,1 ,14,27,527272,6,0 ,15,208,2992,1,1 ,14,27,527280,6,0 ,15,209,3000,1,1 ,14,27,527288,6,0 ,15,210,3008,1,1 ,14,27,527296,6,0 ,20,16142,2624450,4352,0 ,17,923,3011,16,0 ,17,923,9440196,40,0 ,44,15152,2624452,56,0 ,45,15153,4197316,208,0 ,45,15153,4721604,80,0 ,15,211,3016,1,1 ,14,27,527304,6,0 ,15,212,3024,1,1 ,14,27,527312,6,0 ,15,213,3032,1,1 ,14,27,527320,6,0 ,15,214,3040,1,1 ,14,27,527328,6,0 ,20,17097,4721634,640,0 ,15,215,3048,1,1 ,14,27,527336,6,0 ,15,216,3056,1,1 ,14,27,527344,6,0 ,15,217,3064,1,1 ,14,27,527352,6,0 ,15,218,3072,1,1 ,14,27,527360,6,0 ,17,923,9964548,24,0 ,43,15151,3076,16,0 ,45,15153,5245956,16,0 ,15,219,3080,1,1 ,14,27,527368,6,0 ,15,220,3088,1,1 ,14,27,527376,6,0 ,15,221,3096,1,1 ,14,27,527384,6,0 ,15,222,3104,1,1 ,14,27,527392,6,0 ,20,26245,28314658,432,0 ,15,223,3112,1,1 ,14,27,527400,6,0 ,15,224,3120,1,1 ,14,27,527408,6,0 ,15,225,3128,1,1 ,14,27,527416,6,0 ,15,226,3136,1,1 ,14,27,527424,6,0 ,20,19648,10488898,204,0 ,17,923,3139,24,0 ,15,227,3144,1,1 ,14,27,527432,6,0 ,15,228,3152,1,1 ,14,27,527440,6,0 ,15,229,3160,1,1 ,14,27,527448,6,0 ,15,230,3168,1,1 ,14,27,527456,6,0 ,15,231,3176,1,1 ,14,27,527464,6,0 ,15,232,3184,1,1 ,14,27,527472,6,0 ,15,233,3192,1,1 ,14,27,527480,6,0 ,15,234,3200,1,1 ,14,27,527488,6,0 ,17,923,8916100,56,0 ,17,923,6818948,40,0 ,43,15151,3204,16,0 ,44,15152,3148932,24,0 ,45,15153,5246084,40,0 ,17,923,8391812,24,0 ,15,235,3208,1,1 ,14,27,527496,6,0 ,15,236,3216,1,1 ,14,27,527504,6,0 ,15,237,3224,1,1 ,14,27,527512,6,0 ,15,238,3232,1,1 ,14,27,527520,6,0 ,15,239,3240,1,1 ,14,27,527528,6,0 ,15,240,3248,1,1 ,14,27,527536,6,0 ,15,241,3256,1,1 ,14,27,527544,6,0 ,15,242,3264,1,1 ,14,27,527552,6,0 ,20,21155,15731906,108,0 ,17,923,9964740,24,0 ,17,923,7867588,40,0 ,17,923,7343300,48,0 ,44,15152,2100420,96,0 ,44,15152,527556,48,0 ,15,243,3272,1,1 ,14,27,527560,6,0 ,15,244,3280,1,1 ,14,27,527568,6,0 ,15,245,3288,1,1 ,14,27,527576,6,0 ,15,246,3296,1,1 ,14,27,527584,6,0 ,20,16244,3149026,44,0 ,15,247,3304,1,1 ,14,27,527592,6,0 ,15,248,3312,1,1 ,14,27,527600,6,0 ,15,249,3320,1,1 ,14,27,527608,6,0 ,15,250,3328,1,1 ,14,27,527616,6,0 ,17,923,3331,24,0 ,17,923,9440516,48,0 ,43,15151,3332,16,0 ,15,251,3336,1,1 ,14,27,527624,6,0 ,15,252,3344,1,1 ,14,27,527632,6,0 ,15,253,3352,1,1 ,14,27,527640,6,0 ,15,254,3360,1,1 ,14,27,527648,6,0 ,20,21755,16780578,352,0 ,20,16918,4197666,844,0 ,15,255,3368,1,1 ,14,27,527656,6,0 ,15,256,3376,1,1 ,14,27,527664,6,0 ,15,257,3384,1,1 ,14,27,527672,6,0 ,15,258,3392,1,1 ,14,27,527680,6,0 ,17,923,8392004,32,0 ,44,15152,1051972,40,0 ,44,15152,3149124,24,0 ,15,259,3400,1,1 ,14,27,527688,6,0 ,15,260,3408,1,1 ,14,27,527696,6,0 ,15,261,3416,1,1 ,14,27,527704,6,0 ,15,262,3424,1,1 ,14,27,527712,6,0 ,15,263,3432,1,1 ,14,27,527720,6,0 ,15,264,3440,1,1 ,14,27,527728,6,0 ,15,265,3448,1,1 ,14,27,527736,6,0 ,15,266,3456,1,1 ,14,27,527744,6,0 ,17,923,9964932,24,0 ,44,15152,2624900,24,0 ,43,15151,3460,48,0 ,15,267,3464,1,1 ,14,27,527752,6,0 ,15,268,3472,1,1 ,14,27,527760,6,0 ,15,269,3480,1,1 ,14,27,527768,6,0 ,15,270,3488,1,1 ,14,27,527776,6,0 ,20,20862,14159266,428,0 ,15,271,3496,1,1 ,14,27,527784,6,0 ,15,272,3504,1,1 ,14,27,527792,6,0 ,15,273,3512,1,1 ,14,27,527800,6,0 ,15,274,3520,1,1 ,14,27,527808,6,0 ,20,18399,7867842,196,0 ,17,923,3523,24,0 ,45,15153,5246404,16,0 ,17,923,6819268,24,0 ,15,275,3528,1,1 ,14,27,527816,6,0 ,15,276,3536,1,1 ,14,27,527824,6,0 ,15,277,3544,1,1 ,14,27,527832,6,0 ,15,278,3552,1,1 ,14,27,527840,6,0 ,15,279,3560,1,1 ,14,27,527848,6,0 ,15,280,3568,1,1 ,14,27,527856,6,0 ,15,281,3576,1,1 ,14,27,527864,6,0 ,15,282,3584,1,1 ,14,27,527872,6,0 ,44,15152,3149316,24,0 ,17,923,7867908,48,0 ,15,283,3592,1,1 ,14,27,527880,6,0 ,15,284,3600,1,1 ,14,27,527888,6,0 ,15,285,3608,1,1 ,14,27,527896,6,0 ,15,286,3616,1,1 ,14,27,527904,6,0 ,15,287,3624,1,1 ,14,27,527912,6,0 ,15,288,3632,1,1 ,14,27,527920,6,0 ,15,289,3640,1,1 ,14,27,527928,6,0 ,15,290,3648,1,1 ,14,27,527936,6,0 ,20,24150,22548034,136,0 ,20,16245,3149378,104,0 ,17,923,9965124,24,0 ,17,923,7343684,32,0 ,44,15152,2625092,40,0 ,44,15152,527940,24,0 ,45,15153,4722244,24,0 ,45,15153,5246532,24,0 ,17,923,8392260,24,0 ,17,923,8916548,40,0 ,15,291,3656,1,1 ,14,27,527944,6,0 ,15,292,3664,1,1 ,14,27,527952,6,0 ,15,293,3672,1,1 ,14,27,527960,6,0 ,15,294,3680,1,1 ,14,27,527968,6,0 ,15,295,3688,1,1 ,14,27,527976,6,0 ,15,296,3696,1,1 ,14,27,527984,6,0 ,15,297,3704,1,1 ,14,27,527992,6,0 ,15,298,3712,1,1 ,14,27,528000,6,0 ,20,26379,28839554,420,0 ,17,923,3715,16,0 ,17,923,9440900,40,0 ,17,923,6819460,40,0 ,44,15152,1052292,16,0 ,44,15152,3673732,136,0 ,15,299,3720,1,1 ,14,27,528008,6,0 ,15,300,3728,1,1 ,14,27,528016,6,0 ,15,301,3736,1,1 ,14,27,528024,6,0 ,15,302,3744,1,1 ,14,27,528032,6,0 ,15,303,3752,1,1 ,14,27,528040,6,0 ,15,304,3760,1,1 ,14,27,528048,6,0 ,15,305,3768,1,1 ,14,27,528056,6,0 ,15,306,3776,1,1 ,14,27,528064,6,0 ,44,15152,3149508,24,0 ,15,307,3784,1,1 ,14,27,528072,6,0 ,15,308,3792,1,1 ,14,27,528080,6,0 ,15,309,3800,1,1 ,14,27,528088,6,0 ,15,310,3808,1,1 ,14,27,528096,6,0 ,15,311,3816,1,1 ,14,27,528104,6,0 ,15,312,3824,1,1 ,14,27,528112,6,0 ,15,313,3832,1,1 ,14,27,528120,6,0 ,15,314,3840,1,1 ,14,27,528128,6,0 ,17,923,3843,16,0 ,17,923,9965316,32,0 ,43,15151,3844,24,0 ,44,15152,528132,24,0 ,44,15152,1052420,24,0 ,45,15153,4722436,88,0 ,45,15153,5246724,16,0 ,17,923,8392452,32,0 ,15,315,3848,1,1 ,14,27,528136,6,0 ,15,316,3856,1,1 ,14,27,528144,6,0 ,15,317,3864,1,1 ,14,27,528152,6,0 ,15,9,3872,1,1 ,14,27,528160,6,0 ,20,20454,13111074,160,0 ,20,24860,24645410,56,0 ,20,15160,3874,12,0 ,15,318,3880,1,1 ,14,27,528168,6,0 ,15,319,3888,1,1 ,14,27,528176,6,0 ,15,320,3896,1,1 ,14,27,528184,6,0 ,15,321,3904,1,1 ,14,27,528192,6,0 ,17,923,7343940,32,0 ,15,322,3912,1,1 ,14,27,528200,6,0 ,15,323,3920,1,1 ,14,27,528208,6,0 ,15,324,3928,1,1 ,14,27,528216,6,0 ,15,325,3936,1,1 ,14,27,528224,6,0 ,15,326,3944,1,1 ,14,27,528232,6,0 ,15,327,3952,1,1 ,14,27,528240,6,0 ,15,328,3960,1,1 ,14,27,528248,6,0 ,15,329,3968,1,1 ,14,27,528256,6,0 ,20,17963,6819714,252,0 ,20,15161,3970,136,0 ,17,923,3971,32,0 ,17,923,8916868,64,0 ,17,923,7868292,40,0 ,44,15152,2625412,48,0 ,44,15152,3149700,24,0 ,45,15153,5246852,16,0 ,15,330,3976,1,1 ,14,27,528264,6,0 ,15,331,3984,1,1 ,14,27,528272,6,0 ,15,332,3992,1,1 ,14,27,528280,6,0 ,15,333,4000,1,1 ,14,27,528288,6,0 ,15,334,4008,1,1 ,14,27,528296,6,0 ,15,335,4016,1,1 ,14,27,528304,6,0 ,15,336,4024,1,1 ,14,27,528312,6,0 ,15,337,4032,1,1 ,14,27,528320,6,0 ,17,923,9441220,32,0 ,17,923,6819780,40,0 ,44,15152,2101188,64,0 ,43,15151,4036,16,0 ,44,15152,528324,48,0 ,44,15152,1052612,32,0 ,15,338,4040,1,1 ,14,27,528328,6,0 ,15,339,4048,1,1 ,14,27,528336,6,0 ,15,340,4056,1,1 ,14,27,528344,6,0 ,15,341,4064,1,1 ,14,27,528352,6,0 ,20,22678,19402722,372,0 ,20,17508,5771234,648,0 ,15,342,4072,1,1 ,14,27,528360,6,0 ,15,343,4080,1,1 ,14,27,528368,6,0 ,15,344,4088,1,1 ,14,27,528376,6,0 ,15,345,4096,1,1 ,14,27,528384,6,0 ,17,923,9965572,16,0 ,45,15153,5246980,16,0 ,17,923,8392708,32,0 ,15,346,4104,1,1 ,14,27,528392,6,0 ,15,347,4112,1,1 ,14,27,528400,6,0 ,15,348,4120,1,1 ,14,27,528408,6,0 ,15,349,4128,1,1 ,14,27,528416,6,0 ,20,928,4129,116,0 ,20,21156,15732770,112,0 ,20,25309,25694242,352,0 ,20,24684,24121378,736,0 ,15,350,4136,1,1 ,14,27,528424,6,0 ,15,351,4144,1,1 ,14,27,528432,6,0 ,15,352,4152,1,1 ,14,27,528440,6,0 ,15,353,4160,1,1 ,14,27,528448,6,0 ,20,23254,20451394,716,0 ,20,15571,1052738,400,0 ,44,15152,3149892,24,0 ,17,923,7344196,32,0 ,43,15151,4164,16,0 ,15,354,4168,1,1 ,14,27,528456,6,0 ,15,355,4176,1,1 ,14,27,528464,6,0 ,15,356,4184,1,1 ,14,27,528472,6,0 ,15,357,4192,1,1 ,14,27,528480,6,0 ,15,358,4200,1,1 ,14,27,528488,6,0 ,15,359,4208,1,1 ,14,27,528496,6,0 ,15,360,4216,1,1 ,14,27,528504,6,0 ,15,361,4224,1,1 ,14,27,528512,6,0 ,20,25838,27267202,372,0 ,17,923,4227,24,0 ,17,923,9965700,24,0 ,45,15153,5247108,24,0 ,15,362,4232,1,1 ,14,27,528520,6,0 ,15,363,4240,1,1 ,14,27,528528,6,0 ,15,364,4248,1,1 ,14,27,528536,6,0 ,15,365,4256,1,1 ,14,27,528544,6,0 ,20,23660,21500066,100,0 ,20,21504,16257186,348,0 ,15,366,4264,1,1 ,14,27,528552,6,0 ,15,367,4272,1,1 ,14,27,528560,6,0 ,15,368,4280,1,1 ,14,27,528568,6,0 ,15,369,4288,1,1 ,14,27,528576,6,0 ,17,923,9441476,40,0 ,17,923,7868612,40,0 ,43,15151,4292,16,0 ,44,15152,1052868,144,0 ,15,370,4296,1,1 ,14,27,528584,6,0 ,15,371,4304,1,1 ,14,27,528592,6,0 ,15,372,4312,1,1 ,14,27,528600,6,0 ,15,373,4320,1,1 ,14,27,528608,6,0 ,20,24861,24645858,268,0 ,15,374,4328,1,1 ,14,27,528616,6,0 ,15,375,4336,1,1 ,14,27,528624,6,0 ,15,376,4344,1,1 ,14,27,528632,6,0 ,15,377,4352,1,1 ,14,27,528640,6,0 ,20,23476,20975874,732,0 ,17,923,8392964,40,0 ,17,923,6820100,48,0 ,44,15152,2625796,48,0 ,44,15152,3150084,32,0 ,15,378,4360,1,1 ,14,27,528648,6,0 ,15,379,4368,1,1 ,14,27,528656,6,0 ,15,380,4376,1,1 ,14,27,528664,6,0 ,15,381,4384,1,1 ,14,27,528672,6,0 ,15,382,4392,1,1 ,14,27,528680,6,0 ,15,383,4400,1,1 ,14,27,528688,6,0 ,15,384,4408,1,1 ,14,27,528696,6,0 ,15,385,4416,1,1 ,14,27,528704,6,0 ,17,923,4419,16,0 ,17,923,9965892,24,0 ,17,923,7344452,32,0 ,43,15151,4420,24,0 ,44,15152,528708,48,0 ,45,15153,5247300,16,0 ,15,386,4424,1,1 ,14,27,528712,6,0 ,15,387,4432,1,1 ,14,27,528720,6,0 ,15,388,4440,1,1 ,14,27,528728,6,0 ,15,389,4448,1,1 ,14,27,528736,6,0 ,20,24482,23597410,2432,0 ,20,25656,26743138,112,0 ,20,18627,8393058,12,0 ,15,390,4456,1,1 ,14,27,528744,6,0 ,15,391,4464,1,1 ,14,27,528752,6,0 ,15,392,4472,1,1 ,14,27,528760,6,0 ,15,393,4480,1,1 ,14,27,528768,6,0 ,20,16623,3674498,60,0 ,20,16246,3150210,92,0 ,17,923,8917380,24,0 ,15,394,4488,1,1 ,14,27,528776,6,0 ,15,395,4496,1,1 ,14,27,528784,6,0 ,15,396,4504,1,1 ,14,27,528792,6,0 ,15,397,4512,1,1 ,14,27,528800,6,0 ,20,26075,27791778,548,0 ,15,398,4520,1,1 ,14,27,528808,6,0 ,15,399,4528,1,1 ,14,27,528816,6,0 ,15,400,4536,1,1 ,14,27,528824,6,0 ,15,401,4544,1,1 ,14,27,528832,6,0 ,20,22225,18354626,708,0 ,20,18628,8393154,68,0 ,17,923,4547,32,0 ,45,15153,5247428,16,0 ,44,15152,2101700,24,0 ,45,15153,4723140,64,0 ,15,402,4552,1,1 ,14,27,528840,6,0 ,15,403,4560,1,1 ,14,27,528848,6,0 ,15,404,4568,1,1 ,14,27,528856,6,0 ,15,405,4576,1,1 ,14,27,528864,6,0 ,15,406,4584,1,1 ,14,27,528872,6,0 ,15,10,4592,1,1 ,14,27,528880,6,0 ,15,407,4600,1,1 ,14,27,528888,6,0 ,15,408,4608,1,1 ,14,27,528896,6,0 ,20,23887,22024706,212,0 ,20,16039,2101762,780,0 ,17,923,9966084,32,0 ,17,923,7868932,48,0 ,43,15151,4612,16,0 ,44,15152,3150340,48,0 ,17,923,9441796,32,0 ,15,409,4616,1,1 ,14,27,528904,6,0 ,15,410,4624,1,1 ,14,27,528912,6,0 ,15,411,4632,1,1 ,14,27,528920,6,0 ,15,412,4640,1,1 ,14,27,528928,6,0 ,15,413,4648,1,1 ,14,27,528936,6,0 ,15,414,4656,1,1 ,14,27,528944,6,0 ,15,415,4664,1,1 ,14,27,528952,6,0 ,15,416,4672,1,1 ,14,27,528960,6,0 ,17,923,8917572,72,0 ,17,923,7344708,32,0 ,44,15152,1577540,152,0 ,45,15153,4198980,24,0 ,45,15153,5247556,24,0 ,17,923,8393284,40,0 ,15,417,4680,1,1 ,14,27,528968,6,0 ,15,418,4688,1,1 ,14,27,528976,6,0 ,15,419,4696,1,1 ,14,27,528984,6,0 ,15,420,4704,1,1 ,14,27,528992,6,0 ,15,421,4712,1,1 ,14,27,529000,6,0 ,15,422,4720,1,1 ,14,27,529008,6,0 ,15,423,4728,1,1 ,14,27,529016,6,0 ,15,424,4736,1,1 ,14,27,529024,6,0 ,20,24151,22549122,64,0 ,43,15151,4740,16,0 ,17,923,6820484,24,0 ,44,15152,2626180,48,0 ,44,15152,2101892,96,0 ,15,425,4744,1,1 ,14,27,529032,6,0 ,15,426,4752,1,1 ,14,27,529040,6,0 ,15,427,4760,1,1 ,14,27,529048,6,0 ,15,428,4768,1,1 ,14,27,529056,6,0 ,20,19649,10490530,436,0 ,20,15315,529058,1208,0 ,15,429,4776,1,1 ,14,27,529064,6,0 ,15,430,4784,1,1 ,14,27,529072,6,0 ,15,431,4792,1,1 ,14,27,529080,6,0 ,15,432,4800,1,1 ,14,27,529088,6,0 ,17,923,4803,16,0 ,44,15152,3674820,152,0 ,44,15152,529092,72,0 ,15,433,4808,1,1 ,14,27,529096,6,0 ,15,434,4816,1,1 ,14,27,529104,6,0 ,15,435,4824,1,1 ,14,27,529112,6,0 ,15,436,4832,1,1 ,14,27,529120,6,0 ,15,437,4840,1,1 ,14,27,529128,6,0 ,15,438,4848,1,1 ,14,27,529136,6,0 ,15,439,4856,1,1 ,14,27,529144,6,0 ,15,440,4864,1,1 ,14,27,529152,6,0 ,17,923,9966340,24,0 ,43,15151,4868,24,0 ,45,15153,4199172,128,0 ,45,15153,5247748,24,0 ,17,923,9442052,48,0 ,15,441,4872,1,1 ,14,27,529160,6,0 ,15,442,4880,1,1 ,14,27,529168,6,0 ,15,443,4888,1,1 ,14,27,529176,6,0 ,15,444,4896,1,1 ,14,27,529184,6,0 ,15,445,4904,1,1 ,14,27,529192,6,0 ,15,446,4912,1,1 ,14,27,529200,6,0 ,15,447,4920,1,1 ,14,27,529208,6,0 ,15,448,4928,1,1 ,14,27,529216,6,0 ,17,923,4931,40,0 ,17,923,6820676,24,0 ,17,923,7344964,32,0 ,15,449,4936,1,1 ,14,27,529224,6,0 ,15,450,4944,1,1 ,14,27,529232,6,0 ,15,451,4952,1,1 ,14,27,529240,6,0 ,15,452,4960,1,1 ,14,27,529248,6,0 ,20,20706,13636450,32,0 ,20,16624,3674978,240,0 ,15,453,4968,1,1 ,14,27,529256,6,0 ,15,454,4976,1,1 ,14,27,529264,6,0 ,15,455,4984,1,1 ,14,27,529272,6,0 ,15,456,4992,1,1 ,14,27,529280,6,0 ,17,923,8393604,40,0 ,17,923,7869316,24,0 ,44,15152,3150724,24,0 ,15,457,5000,1,1 ,14,27,529288,6,0 ,15,458,5008,1,1 ,14,27,529296,6,0 ,15,459,5016,1,1 ,14,27,529304,6,0 ,15,460,5024,1,1 ,14,27,529312,6,0 ,20,21157,15733666,120,0 ,15,461,5032,1,1 ,14,27,529320,6,0 ,15,462,5040,1,1 ,14,27,529328,6,0 ,15,463,5048,1,1 ,14,27,529336,6,0 ,15,464,5056,1,1 ,14,27,529344,6,0 ,20,929,5057,72,0 ,20,23661,21500866,228,0 ,20,15162,5058,112,0 ,17,923,9966532,24,0 ,43,15151,5060,16,0 ,45,15153,4723652,40,0 ,45,15153,5247940,24,0 ,15,465,5064,1,1 ,14,27,529352,6,0 ,15,466,5072,1,1 ,14,27,529360,6,0 ,15,467,5080,1,1 ,14,27,529368,6,0 ,15,468,5088,1,1 ,14,27,529376,6,0 ,20,18629,8393698,756,0 ,20,18400,7869410,220,0 ,15,469,5096,1,1 ,14,27,529384,6,0 ,15,470,5104,1,1 ,14,27,529392,6,0 ,15,471,5112,1,1 ,14,27,529400,6,0 ,15,472,5120,1,1 ,14,27,529408,6,0 ,44,15152,2626564,32,0 ,17,923,6820868,40,0 ,15,473,5128,1,1 ,14,27,529416,6,0 ,15,474,5136,1,1 ,14,27,529424,6,0 ,15,475,5144,1,1 ,14,27,529432,6,0 ,15,476,5152,1,1 ,14,27,529440,6,0 ,20,20455,13112354,304,0 ,15,477,5160,1,1 ,14,27,529448,6,0 ,15,478,5168,1,1 ,14,27,529456,6,0 ,15,479,5176,1,1 ,14,27,529464,6,0 ,15,480,5184,1,1 ,14,27,529472,6,0 ,44,15152,3150916,40,0 ,17,923,7869508,48,0 ,17,923,7345220,24,0 ,43,15151,5188,32,0 ,15,481,5192,1,1 ,14,27,529480,6,0 ,15,482,5200,1,1 ,14,27,529488,6,0 ,15,2,5208,1,1 ,14,27,529496,6,0 ,15,483,5216,1,1 ,14,27,529504,6,0 ,20,20707,13636706,1512,0 ,20,16247,3150946,208,0 ,20,19890,11015266,72,0 ,15,484,5224,1,1 ,14,27,529512,6,0 ,15,485,5232,1,1 ,14,27,529520,6,0 ,15,486,5240,1,1 ,14,27,529528,6,0 ,15,487,5248,1,1 ,14,27,529536,6,0 ,20,24152,22549634,164,0 ,20,25085,25171074,188,0 ,17,923,5251,32,0 ,17,923,9966724,24,0 ,45,15153,5248132,24,0 ,17,923,8918148,32,0 ,17,923,9442436,56,0 ,15,488,5256,1,1 ,14,27,529544,6,0 ,15,489,5264,1,1 ,14,27,529552,6,0 ,15,490,5272,1,1 ,14,27,529560,6,0 ,15,491,5280,1,1 ,14,27,529568,6,0 ,15,492,5288,1,1 ,14,27,529576,6,0 ,15,493,5296,1,1 ,14,27,529584,6,0 ,15,494,5304,1,1 ,14,27,529592,6,0 ,15,495,5312,1,1 ,14,27,529600,6,0 ,17,923,8393924,24,0 ,15,496,5320,1,1 ,14,27,529608,6,0 ,15,497,5328,1,1 ,14,27,529616,6,0 ,15,498,5336,1,1 ,14,27,529624,6,0 ,15,499,5344,1,1 ,14,27,529632,6,0 ,20,25657,26744034,580,0 ,15,500,5352,1,1 ,14,27,529640,6,0 ,15,501,5360,1,1 ,14,27,529648,6,0 ,15,502,5368,1,1 ,14,27,529656,6,0 ,15,503,5376,1,1 ,14,27,529664,6,0 ,45,15153,4723972,48,0 ,17,923,7345412,24,0 ,44,15152,2626820,48,0 ,44,15152,529668,32,0 ,15,504,5384,1,1 ,14,27,529672,6,0 ,15,505,5392,1,1 ,14,27,529680,6,0 ,15,506,5400,1,1 ,14,27,529688,6,0 ,15,507,5408,1,1 ,14,27,529696,6,0 ,15,508,5416,1,1 ,14,27,529704,6,0 ,15,509,5424,1,1 ,14,27,529712,6,0 ,15,510,5432,1,1 ,14,27,529720,6,0 ,15,511,5440,1,1 ,14,27,529728,6,0 ,17,923,9966916,24,0 ,17,923,6821188,24,0 ,43,15151,5444,24,0 ,44,15152,1054020,40,0 ,45,15153,5248324,40,0 ,15,512,5448,1,1 ,14,27,529736,6,0 ,15,513,5456,1,1 ,14,27,529744,6,0 ,15,514,5464,1,1 ,14,27,529752,6,0 ,15,515,5472,1,1 ,14,27,529760,6,0 ,15,516,5480,1,1 ,14,27,529768,6,0 ,15,517,5488,1,1 ,14,27,529776,6,0 ,15,518,5496,1,1 ,14,27,529784,6,0 ,15,519,5504,1,1 ,14,27,529792,6,0 ,20,17715,6296962,12,0 ,17,923,5507,24,0 ,17,923,8918404,40,0 ,44,15152,2102660,24,0 ,44,15152,3151236,40,0 ,17,923,8394116,40,0 ,15,520,5512,1,1 ,14,27,529800,6,0 ,15,521,5520,1,1 ,14,27,529808,6,0 ,15,522,5528,1,1 ,14,27,529816,6,0 ,15,523,5536,1,1 ,14,27,529824,6,0 ,15,524,5544,1,1 ,14,27,529832,6,0 ,15,525,5552,1,1 ,14,27,529840,6,0 ,15,526,5560,1,1 ,14,27,529848,6,0 ,15,527,5568,1,1 ,14,27,529856,6,0 ,17,923,7345604,64,0 ,17,923,7869892,32,0 ,15,528,5576,1,1 ,14,27,529864,6,0 ,15,529,5584,1,1 ,14,27,529872,6,0 ,15,530,5592,1,1 ,14,27,529880,6,0 ,15,531,5600,1,1 ,14,27,529888,6,0 ,20,17716,6297058,6196,0 ,15,532,5608,1,1 ,14,27,529896,6,0 ,15,533,5616,1,1 ,14,27,529904,6,0 ,15,534,5624,1,1 ,14,27,529912,6,0 ,15,535,5632,1,1 ,14,27,529920,6,0 ,20,930,5633,40,0 ,17,923,9967108,24,0 ,17,923,6821380,24,0 ,43,15151,5636,24,0 ,44,15152,529924,56,0 ,15,536,5640,1,1 ,14,27,529928,6,0 ,15,537,5648,1,1 ,14,27,529936,6,0 ,15,538,5656,1,1 ,14,27,529944,6,0 ,15,539,5664,1,1 ,14,27,529952,6,0 ,15,540,5672,1,1 ,14,27,529960,6,0 ,15,541,5680,1,1 ,14,27,529968,6,0 ,15,542,5688,1,1 ,14,27,529976,6,0 ,15,543,5696,1,1 ,14,27,529984,6,0 ,17,923,5699,24,0 ,17,923,9442884,40,0 ,44,15152,2102852,192,0 ,15,544,5704,1,1 ,14,27,529992,6,0 ,15,545,5712,1,1 ,14,27,530000,6,0 ,15,546,5720,1,1 ,14,27,530008,6,0 ,15,547,5728,1,1 ,14,27,530016,6,0 ,15,548,5736,1,1 ,14,27,530024,6,0 ,15,549,5744,1,1 ,14,27,530032,6,0 ,15,550,5752,1,1 ,14,27,530040,6,0 ,15,551,5760,1,1 ,14,27,530048,6,0 ,45,15153,5248644,24,0 ,44,15152,2627204,48,0 ,44,15152,1054340,24,0 ,45,15153,4724356,16,0 ,15,552,5768,1,1 ,14,27,530056,6,0 ,15,553,5776,1,1 ,14,27,530064,6,0 ,15,554,5784,1,1 ,14,27,530072,6,0 ,15,555,5792,1,1 ,14,27,530080,6,0 ,20,19891,11015842,92,0 ,15,556,5800,1,1 ,14,27,530088,6,0 ,15,557,5808,1,1 ,14,27,530096,6,0 ,15,558,5816,1,1 ,14,27,530104,6,0 ,15,559,5824,1,1 ,14,27,530112,6,0 ,17,923,9967300,96,0 ,17,923,7870148,32,0 ,17,923,6821572,24,0 ,43,15151,5828,32,0 ,44,15152,3151556,64,0 ,17,923,8394436,40,0 ,17,923,8918724,56,0 ,15,560,5832,1,1 ,14,27,530120,6,0 ,15,561,5840,1,1 ,14,27,530128,6,0 ,15,562,5848,1,1 ,14,27,530136,6,0 ,15,563,5856,1,1 ,14,27,530144,6,0 ,15,564,5864,1,1 ,14,27,530152,6,0 ,15,565,5872,1,1 ,14,27,530160,6,0 ,15,566,5880,1,1 ,14,27,530168,6,0 ,15,567,5888,1,1 ,14,27,530176,6,0 ,17,923,5891,16,0 ,45,15153,4724484,24,0 ,44,15152,1578756,24,0 ,45,15153,4200196,40,0 ,15,568,5896,1,1 ,14,27,530184,6,0 ,15,569,5904,1,1 ,14,27,530192,6,0 ,15,570,5912,1,1 ,14,27,530200,6,0 ,15,571,5920,1,1 ,14,27,530208,6,0 ,15,572,5928,1,1 ,14,27,530216,6,0 ,15,573,5936,1,1 ,14,27,530224,6,0 ,15,574,5944,1,1 ,14,27,530232,6,0 ,15,575,5952,1,1 ,14,27,530240,6,0 ,20,931,5953,44,0 ,20,15163,5954,136,0 ,45,15153,5248836,16,0 ,44,15152,1054532,32,0 ,15,576,5960,1,1 ,14,27,530248,6,0 ,15,577,5968,1,1 ,14,27,530256,6,0 ,15,578,5976,1,1 ,14,27,530264,6,0 ,15,579,5984,1,1 ,14,27,530272,6,0 ,20,21158,15734626,48,0 ,20,17964,6821730,248,0 ,15,580,5992,1,1 ,14,27,530280,6,0 ,15,581,6000,1,1 ,14,27,530288,6,0 ,15,582,6008,1,1 ,14,27,530296,6,0 ,15,583,6016,1,1 ,14,27,530304,6,0 ,17,923,6019,24,0 ,17,923,9443204,24,0 ,17,923,6821764,24,0 ,44,15152,3676036,40,0 ,15,584,6024,1,1 ,14,27,530312,6,0 ,15,585,6032,1,1 ,14,27,530320,6,0 ,15,586,6040,1,1 ,14,27,530328,6,0 ,15,587,6048,1,1 ,14,27,530336,6,0 ,15,588,6056,1,1 ,14,27,530344,6,0 ,15,589,6064,1,1 ,14,27,530352,6,0 ,15,590,6072,1,1 ,14,27,530360,6,0 ,15,591,6080,1,1 ,14,27,530368,6,0 ,45,15153,5248964,24,0 ,17,923,7870404,32,0 ,17,923,7346116,48,0 ,44,15152,1578948,24,0 ,43,15151,6084,40,0 ,44,15152,530372,24,0 ,45,15153,4724676,64,0 ,15,592,6088,1,1 ,14,27,530376,6,0 ,15,593,6096,1,1 ,14,27,530384,6,0 ,15,594,6104,1,1 ,14,27,530392,6,0 ,15,595,6112,1,1 ,14,27,530400,6,0 ,15,596,6120,1,1 ,14,27,530408,6,0 ,15,597,6128,1,1 ,14,27,530416,6,0 ,15,598,6136,1,1 ,14,27,530424,6,0 ,15,599,6144,1,1 ,14,27,530432,6,0 ,17,923,8394756,24,0 ,44,15152,2627588,48,0 ,15,600,6152,1,1 ,14,27,530440,6,0 ,15,601,6160,1,1 ,14,27,530448,6,0 ,15,602,6168,1,1 ,14,27,530456,6,0 ,15,603,6176,1,1 ,14,27,530464,6,0 ,20,21947,17307682,1032,0 ,20,21756,16783394,1604,0 ,15,604,6184,1,1 ,14,27,530472,6,0 ,15,605,6192,1,1 ,14,27,530480,6,0 ,15,606,6200,1,1 ,14,27,530488,6,0 ,15,607,6208,1,1 ,14,27,530496,6,0 ,17,923,6211,24,0 ,17,923,9443396,56,0 ,17,923,6821956,24,0 ,44,15152,1054788,24,0 ,45,15153,4200516,40,0 ,15,608,6216,1,1 ,14,27,530504,6,0 ,15,609,6224,1,1 ,14,27,530512,6,0 ,15,610,6232,1,1 ,14,27,530520,6,0 ,15,611,6240,1,1 ,14,27,530528,6,0 ,15,612,6248,1,1 ,14,27,530536,6,0 ,15,613,6256,1,1 ,14,27,530544,6,0 ,15,614,6264,1,1 ,14,27,530552,6,0 ,15,615,6272,1,1 ,14,27,530560,6,0 ,17,923,8919172,40,0 ,44,15152,1579140,48,0 ,44,15152,530564,32,0 ,45,15153,5249156,64,0 ,15,616,6280,1,1 ,14,27,530568,6,0 ,15,617,6288,1,1 ,14,27,530576,6,0 ,15,618,6296,1,1 ,14,27,530584,6,0 ,15,619,6304,1,1 ,14,27,530592,6,0 ,20,932,6305,40,0 ,20,23888,22026402,444,0 ,20,19317,9967778,12,0 ,15,620,6312,1,1 ,14,27,530600,6,0 ,15,621,6320,1,1 ,14,27,530608,6,0 ,15,622,6328,1,1 ,14,27,530616,6,0 ,15,623,6336,1,1 ,14,27,530624,6,0 ,17,923,8394948,24,0 ,17,923,7870660,40,0 ,44,15152,3152068,24,0 ,44,15152,3676356,32,0 ,15,624,6344,1,1 ,14,27,530632,6,0 ,15,625,6352,1,1 ,14,27,530640,6,0 ,15,626,6360,1,1 ,14,27,530648,6,0 ,15,627,6368,1,1 ,14,27,530656,6,0 ,20,21159,15735010,396,0 ,15,628,6376,1,1 ,14,27,530664,6,0 ,15,629,6384,1,1 ,14,27,530672,6,0 ,15,630,6392,1,1 ,14,27,530680,6,0 ,15,631,6400,1,1 ,14,27,530688,6,0 ,20,19318,9967874,200,0 ,17,923,6403,16,0 ,44,15152,1054980,32,0 ,17,923,6822148,32,0 ,43,15151,6404,16,0 ,15,632,6408,1,1 ,14,27,530696,6,0 ,15,633,6416,1,1 ,14,27,530704,6,0 ,15,634,6424,1,1 ,14,27,530712,6,0 ,15,635,6432,1,1 ,14,27,530720,6,0 ,15,636,6440,1,1 ,14,27,530728,6,0 ,15,637,6448,1,1 ,14,27,530736,6,0 ,15,638,6456,1,1 ,14,27,530744,6,0 ,15,639,6464,1,1 ,14,27,530752,6,0 ,20,24862,24648002,72,0 ,17,923,7346500,40,0 ,15,640,6472,1,1 ,14,27,530760,6,0 ,15,641,6480,1,1 ,14,27,530768,6,0 ,15,642,6488,1,1 ,14,27,530776,6,0 ,15,643,6496,1,1 ,14,27,530784,6,0 ,15,644,6504,1,1 ,14,27,530792,6,0 ,15,645,6512,1,1 ,14,27,530800,6,0 ,15,646,6520,1,1 ,14,27,530808,6,0 ,15,647,6528,1,1 ,14,27,530816,6,0 ,20,19892,11016578,76,0 ,17,923,6531,16,0 ,17,923,8395140,48,0 ,44,15152,2627972,48,0 ,43,15151,6532,24,0 ,44,15152,530820,24,0 ,44,15152,3152260,48,0 ,45,15153,4200836,16,0 ,15,648,6536,1,1 ,14,27,530824,6,0 ,15,649,6544,1,1 ,14,27,530832,6,0 ,15,650,6552,1,1 ,14,27,530840,6,0 ,15,651,6560,1,1 ,14,27,530848,6,0 ,20,24153,22550946,164,0 ,20,26246,28318114,464,0 ,15,652,6568,1,1 ,14,27,530856,6,0 ,15,653,6576,1,1 ,14,27,530864,6,0 ,15,654,6584,1,1 ,14,27,530872,6,0 ,15,655,6592,1,1 ,14,27,530880,6,0 ,17,923,9968068,32,0 ,44,15152,3676612,72,0 ,45,15153,4725188,16,0 ,17,923,8919492,64,0 ,15,656,6600,1,1 ,14,27,530888,6,0 ,15,657,6608,1,1 ,14,27,530896,6,0 ,15,658,6616,1,1 ,14,27,530904,6,0 ,15,659,6624,1,1 ,14,27,530912,6,0 ,20,933,6625,156,0 ,15,660,6632,1,1 ,14,27,530920,6,0 ,15,661,6640,1,1 ,14,27,530928,6,0 ,15,662,6648,1,1 ,14,27,530936,6,0 ,15,663,6656,1,1 ,14,27,530944,6,0 ,17,923,6659,16,0 ,17,923,9443844,48,0 ,17,923,7870980,40,0 ,17,923,6822404,40,0 ,44,15152,1579524,24,0 ,44,15152,1055236,32,0 ,45,15153,4200964,24,0 ,15,664,6664,1,1 ,14,27,530952,6,0 ,15,665,6672,1,1 ,14,27,530960,6,0 ,15,666,6680,1,1 ,14,27,530968,6,0 ,15,667,6688,1,1 ,14,27,530976,6,0 ,15,668,6696,1,1 ,14,27,530984,6,0 ,15,669,6704,1,1 ,14,27,530992,6,0 ,15,670,6712,1,1 ,14,27,531000,6,0 ,15,671,6720,1,1 ,14,27,531008,6,0 ,45,15153,4725316,40,0 ,43,15151,6724,24,0 ,44,15152,531012,32,0 ,15,672,6728,1,1 ,14,27,531016,6,0 ,15,673,6736,1,1 ,14,27,531024,6,0 ,15,674,6744,1,1 ,14,27,531032,6,0 ,15,675,6752,1,1 ,14,27,531040,6,0 ,20,25086,25172578,192,0 ,15,676,6760,1,1 ,14,27,531048,6,0 ,15,677,6768,1,1 ,14,27,531056,6,0 ,15,678,6776,1,1 ,14,27,531064,6,0 ,15,679,6784,1,1 ,14,27,531072,6,0 ,17,923,6787,16,0 ,45,15153,5249668,32,0 ,17,923,7346820,48,0 ,15,680,6792,1,1 ,14,27,531080,6,0 ,15,681,6800,1,1 ,14,27,531088,6,0 ,15,682,6808,1,1 ,14,27,531096,6,0 ,15,683,6816,1,1 ,14,27,531104,6,0 ,15,684,6824,1,1 ,14,27,531112,6,0 ,15,685,6832,1,1 ,14,27,531120,6,0 ,15,686,6840,1,1 ,14,27,531128,6,0 ,15,687,6848,1,1 ,14,27,531136,6,0 ,20,18401,7871170,200,0 ,17,923,9968324,40,0 ,44,15152,1579716,24,0 ,45,15153,4201156,24,0 ,15,688,6856,1,1 ,14,27,531144,6,0 ,15,689,6864,1,1 ,14,27,531152,6,0 ,15,690,6872,1,1 ,14,27,531160,6,0 ,15,691,6880,1,1 ,14,27,531168,6,0 ,20,23662,21502690,76,0 ,20,16248,3152610,12,0 ,20,16625,3676898,372,0 ,15,692,6888,1,1 ,14,27,531176,6,0 ,15,693,6896,1,1 ,14,27,531184,6,0 ,15,694,6904,1,1 ,14,27,531192,6,0 ,15,695,6912,1,1 ,14,27,531200,6,0 ,20,20863,14162690,24,0 ,17,923,6915,32,0 ,17,923,8395524,32,0 ,44,15152,2628356,56,0 ,43,15151,6916,64,0 ,44,15152,1055492,24,0 ,44,15152,3152644,24,0 ,15,696,6920,1,1 ,14,27,531208,6,0 ,15,697,6928,1,1 ,14,27,531216,6,0 ,15,698,6936,1,1 ,14,27,531224,6,0 ,15,699,6944,1,1 ,14,27,531232,6,0 ,20,25310,25697058,284,0 ,15,700,6952,1,1 ,14,27,531240,6,0 ,15,701,6960,1,1 ,14,27,531248,6,0 ,15,702,6968,1,1 ,14,27,531256,6,0 ,15,703,6976,1,1 ,14,27,531264,6,0 ,20,16249,3152706,344,0 ,44,15152,531268,24,0 ,17,923,7871300,80,0 ,17,923,6822724,24,0 ,15,704,6984,1,1 ,14,27,531272,6,0 ,15,705,6992,1,1 ,14,27,531280,6,0 ,15,706,7000,1,1 ,14,27,531288,6,0 ,15,707,7008,1,1 ,14,27,531296,6,0 ,15,708,7016,1,1 ,14,27,531304,6,0 ,15,709,7024,1,1 ,14,27,531312,6,0 ,15,710,7032,1,1 ,14,27,531320,6,0 ,15,711,7040,1,1 ,14,27,531328,6,0 ,20,22679,19405698,1292,0 ,20,24863,24648578,312,0 ,20,15164,7042,128,0 ,20,21505,16259970,172,0 ,17,923,9444228,40,0 ,44,15152,1579908,72,0 ,45,15153,4201348,16,0 ,45,15153,4725636,16,0 ,45,15153,5249924,56,0 ,15,712,7048,1,1 ,14,27,531336,6,0 ,15,713,7056,1,1 ,14,27,531344,6,0 ,15,714,7064,1,1 ,14,27,531352,6,0 ,15,715,7072,1,1 ,14,27,531360,6,0 ,20,26380,28842914,436,0 ,15,716,7080,1,1 ,14,27,531368,6,0 ,15,717,7088,1,1 ,14,27,531376,6,0 ,15,718,7096,1,1 ,14,27,531384,6,0 ,15,719,7104,1,1 ,14,27,531392,6,0 ,20,20864,14162882,212,0 ,17,923,8920004,24,0 ,44,15152,1055684,24,0 ,44,15152,3152836,32,0 ,15,720,7112,1,1 ,14,27,531400,6,0 ,15,721,7120,1,1 ,14,27,531408,6,0 ,15,722,7128,1,1 ,14,27,531416,6,0 ,15,723,7136,1,1 ,14,27,531424,6,0 ,20,19893,11017186,72,0 ,15,724,7144,1,1 ,14,27,531432,6,0 ,15,725,7152,1,1 ,14,27,531440,6,0 ,15,726,7160,1,1 ,14,27,531448,6,0 ,15,727,7168,1,1 ,14,27,531456,6,0 ,17,923,7171,32,0 ,17,923,9968644,24,0 ,17,923,7347204,40,0 ,17,923,6822916,16,0 ,44,15152,531460,56,0 ,44,15152,3677188,24,0 ,45,15153,4201476,16,0 ,45,15153,4725764,32,0 ,17,923,8395780,32,0 ,15,728,7176,1,1 ,14,27,531464,6,0 ,15,729,7184,1,1 ,14,27,531472,6,0 ,15,730,7192,1,1 ,14,27,531480,6,0 ,15,731,7200,1,1 ,14,27,531488,6,0 ,20,25839,27270178,248,0 ,15,732,7208,1,1 ,14,27,531496,6,0 ,15,733,7216,1,1 ,14,27,531504,6,0 ,15,734,7224,1,1 ,14,27,531512,6,0 ,15,735,7232,1,1 ,14,27,531520,6,0 ,44,15152,2104388,24,0 ,15,736,7240,1,1 ,14,27,531528,6,0 ,15,737,7248,1,1 ,14,27,531536,6,0 ,15,738,7256,1,1 ,14,27,531544,6,0 ,15,739,7264,1,1 ,14,27,531552,6,0 ,15,740,7272,1,1 ,14,27,531560,6,0 ,15,741,7280,1,1 ,14,27,531568,6,0 ,15,742,7288,1,1 ,14,27,531576,6,0 ,15,743,7296,1,1 ,14,27,531584,6,0 ,17,923,8920196,72,0 ,17,923,6823044,40,0 ,44,15152,1055876,96,0 ,45,15153,4201604,16,0 ,15,744,7304,1,1 ,14,27,531592,6,0 ,15,745,7312,1,1 ,14,27,531600,6,0 ,15,746,7320,1,1 ,14,27,531608,6,0 ,15,747,7328,1,1 ,14,27,531616,6,0 ,15,748,7336,1,1 ,14,27,531624,6,0 ,15,749,7344,1,1 ,14,27,531632,6,0 ,15,750,7352,1,1 ,14,27,531640,6,0 ,15,751,7360,1,1 ,14,27,531648,6,0 ,20,15572,1055938,60,0 ,17,923,9968836,112,0 ,44,15152,2628804,56,0 ,44,15152,3153092,40,0 ,44,15152,3677380,16,0 ,17,923,9444548,48,0 ,15,752,7368,1,1 ,14,27,531656,6,0 ,15,753,7376,1,1 ,14,27,531664,6,0 ,15,754,7384,1,1 ,14,27,531672,6,0 ,15,755,7392,1,1 ,14,27,531680,6,0 ,15,756,7400,1,1 ,14,27,531688,6,0 ,15,757,7408,1,1 ,14,27,531696,6,0 ,15,758,7416,1,1 ,14,27,531704,6,0 ,15,759,7424,1,1 ,14,27,531712,6,0 ,17,923,7427,16,0 ,17,923,8396036,32,0 ,44,15152,2104580,72,0 ,43,15151,7428,16,0 ,45,15153,4201732,32,0 ,45,15153,4726020,16,0 ,15,760,7432,1,1 ,14,27,531720,6,0 ,15,761,7440,1,1 ,14,27,531728,6,0 ,15,762,7448,1,1 ,14,27,531736,6,0 ,15,763,7456,1,1 ,14,27,531744,6,0 ,15,764,7464,1,1 ,14,27,531752,6,0 ,15,765,7472,1,1 ,14,27,531760,6,0 ,15,766,7480,1,1 ,14,27,531768,6,0 ,15,767,7488,1,1 ,14,27,531776,6,0 ,20,23663,21503298,84,0 ,45,15153,5250372,56,0 ,17,923,7347524,32,0 ,44,15152,3677508,24,0 ,15,768,7496,1,1 ,14,27,531784,6,0 ,15,769,7504,1,1 ,14,27,531792,6,0 ,15,770,7512,1,1 ,14,27,531800,6,0 ,15,771,7520,1,1 ,14,27,531808,6,0 ,15,772,7528,1,1 ,14,27,531816,6,0 ,15,773,7536,1,1 ,14,27,531824,6,0 ,15,774,7544,1,1 ,14,27,531832,6,0 ,15,775,7552,1,1 ,14,27,531840,6,0 ,17,923,7555,16,0 ,45,15153,4726148,16,0 ,43,15151,7556,16,0 ,15,776,7560,1,1 ,14,27,531848,6,0 ,15,777,7568,1,1 ,14,27,531856,6,0 ,15,778,7576,1,1 ,14,27,531864,6,0 ,15,779,7584,1,1 ,14,27,531872,6,0 ,20,20456,13114786,80,0 ,15,780,7592,1,1 ,14,27,531880,6,0 ,15,781,7600,1,1 ,14,27,531888,6,0 ,15,782,7608,1,1 ,14,27,531896,6,0 ,15,783,7616,1,1 ,14,27,531904,6,0 ,44,15152,531908,24,0 ,17,923,7871940,40,0 ,17,923,6823364,48,0 ,44,15152,1580484,32,0 ,15,784,7624,1,1 ,14,27,531912,6,0 ,15,785,7632,1,1 ,14,27,531920,6,0 ,15,786,7640,1,1 ,14,27,531928,6,0 ,15,787,7648,1,1 ,14,27,531936,6,0 ,15,788,7656,1,1 ,14,27,531944,6,0 ,15,789,7664,1,1 ,14,27,531952,6,0 ,15,790,7672,1,1 ,14,27,531960,6,0 ,15,791,7680,1,1 ,14,27,531968,6,0 ,20,22943,19930626,1216,0 ,17,923,7683,16,0 ,17,923,8396292,24,0 ,43,15151,7684,16,0 ,44,15152,3153412,32,0 ,44,15152,3677700,24,0 ,45,15153,4201988,40,0 ,45,15153,4726276,16,0 ,15,792,7688,1,1 ,14,27,531976,6,0 ,15,793,7696,1,1 ,14,27,531984,6,0 ,15,794,7704,1,1 ,14,27,531992,6,0 ,15,795,7712,1,1 ,14,27,532000,6,0 ,20,19894,11017762,72,0 ,15,796,7720,1,1 ,14,27,532008,6,0 ,15,797,7728,1,1 ,14,27,532016,6,0 ,15,798,7736,1,1 ,14,27,532024,6,0 ,15,799,7744,1,1 ,14,27,532032,6,0 ,17,923,9444932,40,0 ,17,923,7347780,32,0 ,15,800,7752,1,1 ,14,27,532040,6,0 ,15,801,7760,1,1 ,14,27,532048,6,0 ,15,802,7768,1,1 ,14,27,532056,6,0 ,15,803,7776,1,1 ,14,27,532064,6,0 ,15,804,7784,1,1 ,14,27,532072,6,0 ,15,805,7792,1,1 ,14,27,532080,6,0 ,15,806,7800,1,1 ,14,27,532088,6,0 ,15,807,7808,1,1 ,14,27,532096,6,0 ,17,923,7811,40,0 ,45,15153,4726404,16,0 ,44,15152,2629252,64,0 ,43,15151,7812,24,0 ,44,15152,532100,24,0 ,15,808,7816,1,1 ,14,27,532104,6,0 ,15,809,7824,1,1 ,14,27,532112,6,0 ,15,810,7832,1,1 ,14,27,532120,6,0 ,15,811,7840,1,1 ,14,27,532128,6,0 ,20,15573,1056418,244,0 ,15,812,7848,1,1 ,14,27,532136,6,0 ,15,813,7856,1,1 ,14,27,532144,6,0 ,15,814,7864,1,1 ,14,27,532152,6,0 ,15,815,7872,1,1 ,14,27,532160,6,0 ,20,934,7873,108,0 ,20,24154,22552258,228,0 ,17,923,8920772,32,0 ,44,15152,1580740,64,0 ,44,15152,3677892,56,0 ,17,923,8396484,32,0 ,15,816,7880,1,1 ,14,27,532168,6,0 ,15,817,7888,1,1 ,14,27,532176,6,0 ,15,818,7896,1,1 ,14,27,532184,6,0 ,15,819,7904,1,1 ,14,27,532192,6,0 ,15,819,7912,1,1 ,14,27,532200,6,0 ,13,552,7920,45,16 ,14,27,532208,6,0 ,13,1515,7928,53,16 ,14,27,532216,6,0 ,13,1508,7936,51,16 ,14,27,532224,6,0 ,45,15153,5250820,24,0 ,17,923,7872260,48,0 ,44,15152,3153668,8,0 ,45,15153,4726532,16,0 ,13,1451,7944,53,16 ,14,27,532232,6,0 ,13,1473,7952,53,16 ,14,27,532240,6,0 ,13,1478,7960,53,16 ,14,27,532248,6,0 ,13,1484,7968,53,16 ,14,27,532256,6,0 ,20,17965,6823714,204,0 ,13,1503,7976,53,16 ,14,27,532264,6,0 ,13,815,7984,44,16 ,14,27,532272,6,0 ,13,2792,7992,48,16 ,14,27,532280,6,0 ,13,3224,8000,49,16 ,14,27,532288,6,0 ,20,19319,9969474,116,0 ,45,15153,4202308,24,0 ,17,923,7348036,24,0 ,17,923,6823748,32,0 ,44,15152,2105156,184,0 ,43,15151,8004,64,0 ,44,15152,532292,40,0 ,44,15152,3153732,32,0 ,13,3207,8008,47,16 ,14,27,532296,6,0 ,13,10518,8016,51,16 ,14,27,532304,6,0 ,13,10519,8024,51,16 ,14,27,532312,6,0 ,13,10520,8032,51,16 ,14,27,532320,6,0 ,13,10523,8040,51,16 ,14,27,532328,6,0 ,13,10527,8048,51,16 ,14,27,532336,6,0 ,13,10531,8056,51,16 ,14,27,532344,6,0 ,13,10536,8064,51,16 ,14,27,532352,6,0 ,20,15165,8066,104,0 ,17,923,9445252,40,0 ,44,15152,1056644,128,0 ,45,15153,4726660,40,0 ,13,10537,8072,51,16 ,14,27,532360,6,0 ,13,10541,8080,51,16 ,14,27,532368,6,0 ,13,10542,8088,51,16 ,14,27,532376,6,0 ,13,10545,8096,51,16 ,14,27,532384,6,0 ,13,10726,8104,51,16 ,14,27,532392,6,0 ,13,10729,8112,51,16 ,14,27,532400,6,0 ,13,10732,8120,51,16 ,14,27,532408,6,0 ,13,10735,8128,51,16 ,14,27,532416,6,0 ,17,923,8131,16,0 ,17,923,8921028,40,0 ,45,15153,5251012,32,0 ,17,923,8396740,32,0 ,13,10738,8136,51,16 ,14,27,532424,6,0 ,13,10797,8144,51,16 ,14,27,532432,6,0 ,13,10798,8152,51,16 ,14,27,532440,6,0 ,13,10799,8160,51,16 ,14,27,532448,6,0 ,20,23664,21503970,604,0 ,20,17098,4726754,12,0 ,13,10800,8168,51,16 ,14,27,532456,6,0 ,13,10801,8176,51,16 ,14,27,532464,6,0 ,13,10803,8184,51,16 ,14,27,532472,6,0 ,13,10805,8192,51,16 ,14,27,532480,6,0 ,45,15153,4202500,24,0 ,17,923,7348228,24,0 ,13,10807,8200,51,16 ,14,27,532488,6,0 ,13,10809,8208,51,16 ,14,27,532496,6,0 ,13,10811,8216,51,16 ,14,27,532504,6,0 ,13,10813,8224,51,16 ,14,27,532512,6,0 ,20,20457,13115426,12,0 ,13,10815,8232,51,16 ,14,27,532520,6,0 ,13,10817,8240,51,16 ,14,27,532528,6,0 ,13,10819,8248,51,16 ,14,27,532536,6,0 ,13,10822,8256,51,16 ,14,27,532544,6,0 ,20,19650,10494018,108,0 ,20,17099,4726850,180,0 ,17,923,8259,24,0 ,17,923,9969732,40,0 ,17,923,6824004,40,0 ,44,15152,3153988,24,0 ,13,10824,8264,51,16 ,14,27,532552,6,0 ,13,10825,8272,51,16 ,14,27,532560,6,0 ,13,10826,8280,51,16 ,14,27,532568,6,0 ,13,10827,8288,51,16 ,14,27,532576,6,0 ,20,19895,11018338,68,0 ,20,25087,25174114,100,0 ,13,10828,8296,51,16 ,14,27,532584,6,0 ,13,10829,8304,51,16 ,14,27,532592,6,0 ,13,771,8312,52,16 ,14,27,532600,6,0 ,13,256,8320,44,16 ,14,27,532608,6,0 ,20,20458,13115522,84,0 ,44,15152,3678340,48,0 ,17,923,7872644,56,0 ,44,15152,2629764,24,0 ,44,15152,532612,32,0 ,13,162,8328,46,16 ,14,27,532616,6,0 ,13,11722,8336,47,16 ,14,27,532624,6,0 ,13,11730,8344,45,16 ,14,27,532632,6,0 ,13,11996,8352,47,16 ,14,27,532640,6,0 ,13,321,8360,44,16 ,14,27,532648,6,0 ,13,233,8368,44,16 ,14,27,532656,6,0 ,13,707,8376,44,16 ,14,27,532664,6,0 ,13,314,8384,44,16 ,14,27,532672,6,0 ,17,923,9445572,32,0 ,17,923,7348420,24,0 ,44,15152,1581252,56,0 ,45,15153,4202692,32,0 ,45,15153,4726980,16,0 ,45,15153,5251268,16,0 ,17,923,8396996,24,0 ,13,468,8392,44,16 ,14,27,532680,6,0 ,13,14665,8400,47,16 ,14,27,532688,11,0 ,13,670,8408,44,16 ,14,27,532696,11,0 ,13,321,8416,44,16 ,14,27,532704,6,0 ,20,21506,16261346,392,0 ,13,707,8424,44,16 ,14,27,532712,7,0 ,13,553,8432,44,16 ,14,27,532720,7,0 ,13,409,8440,44,16 ,14,27,532728,9,0 ,13,160,8448,44,16 ,14,27,532736,7,0 ,20,18402,7872770,132,0 ,17,923,8451,32,0 ,17,923,8921348,56,0 ,44,15152,3154180,24,0 ,13,554,8456,44,16 ,14,27,532744,7,0 ,13,138,8464,44,16 ,14,27,532752,6,0 ,13,314,8472,44,16 ,14,27,532760,6,0 ,13,152,8480,44,16 ,14,27,532768,6,0 ,13,233,8488,44,16 ,14,27,532776,6,0 ,13,596,8496,44,16 ,14,27,532784,6,0 ,13,468,8504,44,16 ,14,27,532792,6,0 ,13,14681,8512,45,16 ,14,27,532800,7,0 ,45,15153,5251396,56,0 ,44,15152,2629956,24,0 ,43,15151,8516,16,0 ,45,15153,4727108,32,0 ,13,14698,8520,43,16 ,14,27,532808,7,0 ,13,14699,8528,43,16 ,14,27,532816,6,0 ,13,14700,8536,45,16 ,14,27,532824,7,0 ,13,14701,8544,43,16 ,14,27,532832,7,0 ,13,14883,8552,49,16 ,14,27,532840,7,0 ,13,14737,8560,51,16 ,14,27,532848,6,0 ,13,14933,8568,51,16 ,14,27,532856,9,0 ,13,14909,8576,51,16 ,14,27,532864,9,0 ,17,923,9970052,40,0 ,17,923,7348612,40,0 ,17,923,6824324,32,0 ,44,15152,532868,24,0 ,17,923,8397188,32,0 ,13,14874,8584,51,16 ,14,27,532872,10,0 ,13,14712,8592,54,16 ,14,27,532880,11,0 ,13,14910,8600,53,16 ,14,27,532888,11,0 ,13,14808,8608,51,16 ,14,27,532896,10,0 ,13,310,8616,44,16 ,14,27,532904,7,0 ,13,14897,8624,49,16 ,14,27,532912,10,0 ,13,14896,8632,49,16 ,14,27,532920,10,0 ,13,14926,8640,49,16 ,14,27,532928,10,0 ,17,923,9445828,48,0 ,43,15151,8644,88,0 ,44,15152,3154372,40,0 ,45,15153,4202948,48,0 ,13,14812,8648,51,16 ,14,27,532936,10,0 ,13,14836,8656,56,16 ,14,27,532944,10,0 ,13,14900,8664,51,16 ,14,27,532952,10,0 ,13,14819,8672,49,16 ,14,27,532960,10,0 ,13,14772,8680,50,16 ,14,27,532968,10,0 ,13,14908,8688,53,16 ,14,27,532976,10,0 ,13,145,8696,32,16 ,14,27,532984,10,0 ,13,120,8704,46,16 ,14,27,532992,10,0 ,17,923,8707,24,0 ,44,15152,3678724,32,0 ,44,15152,2630148,40,0 ,13,677,8712,48,16 ,14,27,533000,10,0 ,13,1424,8720,51,16 ,14,27,533008,10,0 ,13,1420,8728,52,16 ,14,27,533016,10,0 ,13,86,8736,47,16 ,14,27,533024,10,0 ,20,935,8737,60,0 ,13,1033,8744,45,16 ,14,27,533032,10,0 ,13,1406,8752,51,16 ,14,27,533040,10,0 ,13,1405,8760,49,16 ,14,27,533048,10,0 ,13,1399,8768,51,16 ,14,27,533056,10,0 ,45,15153,4727364,16,0 ,17,923,7873092,24,0 ,44,15152,533060,48,0 ,13,1044,8776,47,16 ,14,27,533064,10,0 ,13,1042,8784,45,16 ,14,27,533072,10,0 ,13,1049,8792,48,16 ,14,27,533080,10,0 ,13,1046,8800,47,16 ,14,27,533088,10,0 ,20,20865,14164578,12,0 ,13,1395,8808,48,16 ,14,27,533096,10,0 ,13,1393,8816,51,16 ,14,27,533104,10,0 ,13,438,8824,40,16 ,14,27,533112,10,0 ,13,510,8832,47,16 ,14,27,533120,10,0 ,20,19896,11018882,496,0 ,20,19092,9446018,192,0 ,17,923,8397444,32,0 ,17,923,6824580,32,0 ,44,15152,1581700,24,0 ,13,760,8840,46,16 ,14,27,533128,10,0 ,13,755,8848,46,16 ,14,27,533136,10,0 ,13,1075,8856,43,16 ,14,27,533144,11,0 ,40,15022,533152,10,0 ,13,1106,8864,47,16 ,40,15022,533160,2,0 ,13,1085,8872,47,16 ,13,1101,8880,48,16 ,40,15022,533168,10,0 ,13,1099,8888,49,16 ,40,15022,533176,11,0 ,13,1091,8896,47,16 ,40,15022,533184,11,0 ,20,20866,14164674,12,0 ,20,26076,27796162,40,0 ,20,15166,8898,252,0 ,17,923,8899,32,0 ,17,923,9970372,24,0 ,17,923,7348932,32,0 ,45,15153,4727492,32,0 ,17,923,8921796,40,0 ,40,15022,533192,11,0 ,13,1090,8904,45,16 ,40,15022,533200,11,0 ,13,1098,8912,51,16 ,13,1121,8920,49,16 ,40,15022,533208,11,0 ,13,76,8928,44,16 ,40,15022,533216,11,0 ,20,19320,9970402,12,0 ,13,635,8936,48,16 ,40,15022,533224,11,0 ,13,1139,8944,45,16 ,40,15022,533232,11,0 ,40,15022,533240,11,0 ,13,1137,8952,47,16 ,40,15022,533248,11,0 ,13,359,8960,47,16 ,45,15153,5251844,40,0 ,17,923,7873284,24,0 ,44,15152,3154692,64,0 ,44,15152,3678980,32,0 ,13,52,8968,46,16 ,40,15022,533256,10,0 ,13,1149,8976,45,16 ,40,15022,533264,11,0 ,13,1148,8984,45,16 ,40,15022,533272,10,0 ,40,15022,533280,11,0 ,13,1289,8992,50,16 ,20,20867,14164770,84,0 ,20,20459,13116194,440,0 ,40,15022,533288,9,0 ,13,1188,9000,43,16 ,13,1196,9008,43,16 ,40,15022,533296,11,0 ,40,15022,533304,11,0 ,13,1202,9016,49,16 ,13,1201,9024,50,16 ,40,15022,533312,11,0 ,20,19321,9970498,52,0 ,17,923,9446212,40,0 ,44,15152,2630468,24,0 ,44,15152,1581892,24,0 ,45,15153,4203332,24,0 ,13,1199,9032,45,16 ,40,15022,533320,10,0 ,13,1230,9040,48,16 ,40,15022,533328,11,0 ,13,1214,9048,43,16 ,40,15022,533336,11,0 ,40,15022,533344,11,0 ,13,397,9056,46,16 ,40,15022,533352,11,0 ,13,1241,9064,49,16 ,40,15022,533360,11,0 ,13,642,9072,45,16 ,40,15022,533368,11,0 ,13,1236,9080,43,16 ,13,1244,9088,49,16 ,40,15022,533376,11,0 ,20,25088,25174914,204,0 ,17,923,9970564,112,0 ,17,923,6824836,32,0 ,44,15152,1057668,136,0 ,17,923,8397700,32,0 ,40,15022,533384,11,0 ,13,1262,9096,49,16 ,40,15022,533392,11,0 ,13,1261,9104,47,16 ,13,438,9112,38,16 ,40,15022,533400,11,0 ,13,380,9120,48,16 ,40,15022,533408,11,0 ,20,19651,10494882,56,0 ,40,15022,533416,11,0 ,13,1346,9128,45,16 ,40,15022,533424,11,0 ,13,1341,9136,45,16 ,40,15022,533432,11,0 ,13,422,9144,46,16 ,13,1351,9152,46,16 ,40,15022,533440,11,0 ,17,923,9155,24,0 ,45,15153,4727748,80,0 ,17,923,7873476,24,0 ,17,923,7349188,32,0 ,44,15152,533444,184,0 ,13,1355,9160,48,16 ,40,15022,533448,11,0 ,40,15022,533456,11,0 ,13,1360,9168,48,16 ,40,15022,533464,10,0 ,13,1357,9176,43,16 ,13,1381,9184,50,16 ,40,15022,533472,11,0 ,20,25840,27272162,372,0 ,13,1363,9192,45,16 ,40,15022,533480,11,0 ,13,1370,9200,54,16 ,40,15022,533488,10,0 ,40,15022,533496,11,0 ,13,1367,9208,50,16 ,13,1365,9216,43,16 ,40,15022,533504,11,0 ,20,936,9217,56,0 ,20,25311,25699330,288,0 ,20,26077,27796482,324,0 ,17,923,8922116,56,0 ,44,15152,2630660,32,0 ,44,15152,1582084,144,0 ,44,15152,3679236,96,0 ,45,15153,4203524,16,0 ,13,1373,9224,49,16 ,40,15022,533512,11,0 ,13,1375,9232,54,16 ,40,15022,533520,11,0 ,13,1390,9240,47,16 ,40,15022,533528,11,0 ,13,1425,9248,47,16 ,40,15022,533536,11,0 ,20,17509,5776418,12,0 ,13,1545,9256,52,16 ,40,15022,533544,10,0 ,13,1535,9264,47,16 ,40,15022,533552,11,0 ,40,15022,533560,10,0 ,13,1533,9272,51,16 ,40,15022,533568,10,0 ,13,1430,9280,49,16 ,45,15153,5252164,32,0 ,13,450,9288,46,16 ,40,15022,533576,11,0 ,40,15022,533584,11,0 ,13,1512,9296,47,16 ,40,15022,533592,11,0 ,13,1511,9304,51,16 ,40,15022,533600,10,0 ,13,1510,9312,47,16 ,40,15022,533608,10,0 ,13,1437,9320,45,16 ,40,15022,533616,11,0 ,13,1441,9328,44,16 ,40,15022,533624,10,0 ,13,1446,9336,47,16 ,13,1443,9344,51,16 ,40,15022,533632,11,0 ,20,17510,5776514,1416,0 ,17,923,9347,48,0 ,17,923,9446532,40,0 ,17,923,7873668,40,0 ,17,923,6825092,32,0 ,43,15151,9348,16,0 ,45,15153,4203652,16,0 ,17,923,8397956,32,0 ,40,15022,533640,11,0 ,13,1442,9352,45,16 ,40,15022,533648,11,0 ,13,1445,9360,47,16 ,40,15022,533656,11,0 ,13,438,9368,36,16 ,40,15022,533664,11,0 ,13,703,9376,46,16 ,40,15022,533672,10,0 ,13,1465,9384,45,16 ,40,15022,533680,10,0 ,13,1470,9392,47,16 ,40,15022,533688,10,0 ,13,1469,9400,47,16 ,40,15022,533696,11,0 ,13,1468,9408,44,16 ,17,923,7349444,32,0 ,40,15022,533704,11,0 ,13,1475,9416,47,16 ,40,15022,533712,11,0 ,13,59,9424,46,16 ,40,15022,533720,10,0 ,13,1481,9432,47,16 ,40,15022,533728,10,0 ,13,271,9440,46,16 ,20,19322,9970914,128,0 ,40,15022,533736,11,0 ,13,329,9448,46,16 ,40,15022,533744,11,0 ,13,1521,9456,49,16 ,40,15022,533752,10,0 ,13,1519,9464,45,16 ,40,15022,533760,11,0 ,13,1524,9472,51,16 ,45,15153,4203780,48,0 ,44,15152,2630916,32,0 ,44,15152,2106628,72,0 ,43,15151,9476,24,0 ,44,15152,3155204,24,0 ,40,15022,533768,10,0 ,13,1526,9480,49,16 ,40,15022,533776,10,0 ,13,1529,9488,47,16 ,40,15022,533784,10,0 ,13,438,9496,34,16 ,13,1554,9504,45,16 ,40,15022,533792,11,0 ,20,18403,7873826,480,0 ,13,1547,9512,47,16 ,40,15022,533800,11,0 ,13,1555,9520,49,16 ,40,15022,533808,11,0 ,13,2954,9528,51,16 ,40,15022,533816,11,0 ,13,1595,9536,45,16 ,40,15022,533824,11,0 ,20,21160,15738178,112,0 ,20,24864,24651074,72,0 ,45,15153,5252420,16,0 ,40,15022,533832,11,0 ,13,1594,9544,45,16 ,13,438,9552,36,16 ,40,15022,533840,11,0 ,13,1563,9560,49,16 ,40,15022,533848,11,0 ,13,1567,9568,47,16 ,40,15022,533856,11,0 ,20,19652,10495330,124,0 ,13,1569,9576,47,16 ,40,15022,533864,11,0 ,13,1570,9584,47,16 ,40,15022,533872,11,0 ,13,1572,9592,51,16 ,40,15022,533880,11,0 ,13,1578,9600,47,16 ,40,15022,533888,11,0 ,20,17966,6825346,72,0 ,17,923,8398212,40,0 ,17,923,6825348,48,0 ,13,1579,9608,45,16 ,40,15022,533896,11,0 ,13,1580,9616,44,16 ,40,15022,533904,11,0 ,13,1585,9624,47,16 ,40,15022,533912,11,0 ,13,1590,9632,47,16 ,40,15022,533920,11,0 ,13,1591,9640,47,16 ,40,15022,533928,11,0 ,13,438,9648,34,16 ,40,15022,533936,11,0 ,13,1597,9656,49,16 ,40,15022,533944,11,0 ,13,2671,9664,51,16 ,40,15022,533952,11,0 ,20,937,9665,156,0 ,20,20868,14165442,68,0 ,17,923,9446852,32,0 ,17,923,7873988,24,0 ,17,923,7349700,24,0 ,43,15151,9668,144,0 ,44,15152,3155396,24,0 ,45,15153,5252548,24,0 ,17,923,8922564,24,0 ,13,2636,9672,53,16 ,40,15022,533960,11,0 ,13,438,9680,40,16 ,40,15022,533968,11,0 ,40,15022,533976,9,0 ,13,1669,9688,47,16 ,40,15022,533984,11,0 ,13,64,9696,47,16 ,20,24155,22554082,600,0 ,20,17100,4728290,572,0 ,41,15023,533992,8,3 ,13,1635,9704,52,16 ,41,15023,534000,8,3 ,13,1632,9712,47,16 ,41,15023,534008,8,3 ,13,1628,9720,49,16 ,41,15023,534016,8,3 ,13,1642,9728,53,16 ,20,16250,3155458,1268,0 ,17,923,9731,16,0 ,44,15152,2631172,16,0 ,41,15023,534024,8,3 ,13,1641,9736,49,16 ,41,15023,534032,8,3 ,13,1639,9744,51,16 ,41,15023,534040,8,3 ,13,1640,9752,45,16 ,41,15023,534048,8,3 ,13,1667,9760,52,16 ,41,15023,534056,8,3 ,13,1665,9768,50,16 ,41,15023,534064,8,3 ,13,1663,9776,50,16 ,41,15023,534072,8,3 ,13,1661,9784,54,16 ,41,15023,534080,8,3 ,13,1651,9792,52,16 ,20,15574,1058370,252,0 ,45,15153,4728388,112,0 ,41,15023,534088,8,3 ,13,1652,9800,46,16 ,41,15023,534096,8,3 ,13,1956,9808,47,16 ,41,15023,534104,8,3 ,13,1672,9816,45,16 ,41,15023,534112,8,3 ,13,1678,9824,45,16 ,20,18878,8922722,88,0 ,41,15023,534120,8,3 ,13,1696,9832,56,16 ,41,15023,534128,8,3 ,13,1681,9840,47,16 ,41,15023,534136,8,3 ,13,1680,9848,53,16 ,41,15023,534144,8,3 ,13,1682,9856,47,16 ,20,23889,22029954,628,0 ,20,16626,3679874,12,0 ,17,923,9859,32,0 ,17,923,8922756,64,0 ,17,923,7874180,56,0 ,17,923,7349892,24,0 ,44,15152,2631300,24,0 ,44,15152,3155588,40,0 ,45,15153,4204164,48,0 ,45,15153,5252740,16,0 ,41,15023,534152,8,3 ,13,1702,9864,49,16 ,41,15023,534160,8,3 ,13,1714,9872,47,16 ,41,15023,534168,8,3 ,13,1713,9880,47,16 ,41,15023,534176,8,3 ,13,1712,9888,51,16 ,20,23255,20457122,1080,0 ,41,15023,534184,8,3 ,13,1710,9896,49,16 ,41,15023,534192,8,3 ,13,1708,9904,51,16 ,41,15023,534200,8,3 ,13,1721,9912,47,16 ,41,15023,534208,8,3 ,13,1718,9920,43,16 ,20,22491,18884290,24,0 ,17,923,9447108,40,0 ,17,923,8398532,40,0 ,41,15023,534216,8,3 ,13,1720,9928,47,16 ,41,15023,534224,8,3 ,13,438,9936,40,16 ,41,15023,534232,8,3 ,13,1732,9944,47,16 ,41,15023,534240,8,3 ,13,1840,9952,47,16 ,20,16627,3679970,120,0 ,41,15023,534248,8,3 ,13,1838,9960,49,16 ,41,15023,534256,8,3 ,13,1740,9968,45,16 ,41,15023,534264,8,3 ,13,1742,9976,45,16 ,41,15023,534272,8,3 ,13,1827,9984,55,16 ,20,25658,26748674,568,0 ,17,923,9971460,40,0 ,17,923,6825732,32,0 ,44,15152,3680004,24,0 ,45,15153,5252868,16,0 ,41,15023,534280,8,3 ,13,1756,9992,52,16 ,41,15023,534288,8,3 ,13,1755,10000,53,16 ,41,15023,534296,8,3 ,13,1746,10008,47,16 ,41,15023,534304,8,3 ,13,1749,10016,53,16 ,20,24685,24127266,80,0 ,41,15023,534312,8,3 ,13,1759,10024,53,16 ,41,15023,534320,8,3 ,13,1785,10032,54,16 ,41,15023,534328,8,3 ,13,1793,10040,45,16 ,41,15023,534336,8,3 ,13,1806,10048,47,16 ,44,15152,2107204,72,0 ,17,923,7350084,16,0 ,44,15152,2631492,40,0 ,41,15023,534344,8,3 ,13,1818,10056,45,16 ,41,15023,534352,8,3 ,13,1809,10064,48,16 ,41,15023,534360,8,3 ,13,1831,10072,53,16 ,41,15023,534368,8,3 ,13,1842,10080,49,16 ,41,15023,534376,8,3 ,13,1908,10088,54,16 ,41,15023,534384,8,3 ,13,1900,10096,51,16 ,41,15023,534392,8,3 ,13,440,10104,42,16 ,41,15023,534400,8,3 ,13,1914,10112,49,16 ,20,22492,18884482,120,0 ,20,24865,24651650,72,0 ,20,16919,4204418,184,0 ,17,923,10115,16,0 ,45,15153,5252996,24,0 ,41,15023,534408,8,3 ,13,1912,10120,45,16 ,41,15023,534416,8,3 ,13,1948,10128,51,16 ,41,15023,534424,8,3 ,13,745,10136,48,16 ,41,15023,534432,8,3 ,13,1936,10144,47,16 ,41,15023,534440,8,3 ,13,1940,10152,49,16 ,41,15023,534448,8,3 ,13,1994,10160,51,16 ,41,15023,534456,8,3 ,13,1977,10168,52,16 ,41,15023,534464,8,3 ,13,1983,10176,45,16 ,20,17967,6825922,204,0 ,44,15152,3680196,40,0 ,17,923,7350212,48,0 ,44,15152,1058756,72,0 ,44,15152,3155908,48,0 ,41,15023,534472,8,3 ,13,438,10184,34,16 ,41,15023,534480,8,3 ,13,2009,10192,45,16 ,41,15023,534488,8,3 ,13,807,10200,46,16 ,41,15023,534496,8,3 ,13,2073,10208,54,16 ,20,23477,20981730,248,0 ,20,20869,14165986,24,0 ,20,22226,18360290,1024,0 ,41,15023,534504,8,3 ,13,2021,10216,45,16 ,41,15023,534512,8,3 ,13,2069,10224,53,16 ,41,15023,534520,8,3 ,13,438,10232,36,16 ,41,15023,534528,8,3 ,13,2063,10240,55,16 ,17,923,10243,32,0 ,17,923,9447428,40,0 ,17,923,6825988,24,0 ,45,15153,4204548,40,0 ,17,923,8398852,40,0 ,41,15023,534536,8,3 ,13,2077,10248,47,16 ,41,15023,534544,8,3 ,13,2079,10256,54,16 ,41,15023,534552,8,3 ,13,2086,10264,47,16 ,41,15023,534560,8,3 ,13,2118,10272,49,16 ,20,26247,28321826,684,0 ,41,15023,534568,8,3 ,13,2123,10280,51,16 ,41,15023,534576,8,3 ,13,2125,10288,51,16 ,41,15023,534584,8,3 ,13,1085,10296,47,16 ,41,15023,534592,8,3 ,13,2129,10304,41,16 ,17,923,9971780,32,0 ,17,923,7874628,56,0 ,45,15153,5253188,16,0 ,41,15023,534600,8,3 ,13,2140,10312,47,16 ,41,15023,534608,8,3 ,13,2134,10320,47,16 ,41,15023,534616,8,3 ,13,2179,10328,47,16 ,41,15023,534624,8,3 ,13,2195,10336,49,16 ,41,15023,534632,8,3 ,13,2196,10344,47,16 ,41,15023,534640,8,3 ,13,2201,10352,51,16 ,41,15023,534648,8,3 ,13,2204,10360,47,16 ,41,15023,534656,8,3 ,13,2207,10368,49,16 ,20,19093,9447554,520,0 ,17,923,8923268,48,0 ,44,15152,2631812,48,0 ,44,15152,1583236,24,0 ,41,15023,534664,8,3 ,13,2221,10376,49,16 ,41,15023,534672,8,3 ,13,2228,10384,49,16 ,41,15023,534680,8,3 ,13,2233,10392,47,16 ,41,15023,534688,8,3 ,13,2234,10400,45,16 ,20,20870,14166178,72,0 ,41,15023,534696,8,3 ,13,2235,10408,45,16 ,41,15023,534704,8,3 ,13,2238,10416,47,16 ,41,15023,534712,8,3 ,13,2239,10424,51,16 ,41,15023,534720,8,3 ,13,2305,10432,51,16 ,20,21161,15739074,48,0 ,45,15153,5253316,16,0 ,17,923,6826180,32,0 ,41,15023,534728,8,3 ,13,2307,10440,49,16 ,41,15023,534736,8,3 ,13,2308,10448,45,16 ,41,15023,534744,8,3 ,13,2309,10456,49,16 ,41,15023,534752,8,3 ,13,2310,10464,45,16 ,20,19323,9971938,96,0 ,41,15023,534760,8,3 ,13,2314,10472,47,16 ,41,15023,534768,8,3 ,13,2320,10480,49,16 ,41,15023,534776,8,3 ,13,2321,10488,45,16 ,41,15023,534784,8,3 ,13,2324,10496,49,16 ,17,923,10499,32,0 ,44,15152,3680516,16,0 ,41,15023,534792,8,3 ,13,2325,10504,45,16 ,41,15023,534800,8,3 ,13,2326,10512,45,16 ,41,15023,534808,8,3 ,13,2328,10520,47,16 ,41,15023,534816,8,3 ,13,2338,10528,49,16 ,20,18879,8923426,116,0 ,41,15023,534824,8,3 ,13,2343,10536,49,16 ,41,15023,534832,8,3 ,13,2346,10544,49,16 ,41,15023,534840,8,3 ,13,2348,10552,49,16 ,41,15023,534848,8,3 ,13,2351,10560,49,16 ,20,19653,10496322,84,0 ,20,26381,28846402,1596,0 ,17,923,9972036,24,0 ,17,923,7350596,24,0 ,44,15152,1583428,32,0 ,44,15152,3156292,24,0 ,45,15153,4204868,16,0 ,45,15153,5253444,16,0 ,17,923,8399172,40,0 ,17,923,9447748,24,0 ,41,15023,534856,8,3 ,13,2354,10568,50,16 ,41,15023,534864,8,3 ,13,2375,10576,53,16 ,41,15023,534872,8,3 ,13,2410,10584,51,16 ,41,15023,534880,8,3 ,13,2411,10592,45,16 ,41,15023,534888,8,3 ,13,2412,10600,51,16 ,41,15023,534896,8,3 ,13,2413,10608,44,16 ,41,15023,534904,8,3 ,13,2419,10616,49,16 ,41,15023,534912,8,3 ,13,2434,10624,49,16 ,44,15152,3680644,32,0 ,44,15152,2107780,40,0 ,44,15152,534916,32,0 ,41,15023,534920,8,3 ,13,2439,10632,47,16 ,41,15023,534928,8,3 ,13,2444,10640,49,16 ,41,15023,534936,8,3 ,13,2494,10648,50,16 ,41,15023,534944,8,3 ,13,2495,10656,53,16 ,20,24686,24127906,340,0 ,41,15023,534952,8,3 ,13,2496,10664,45,16 ,41,15023,534960,8,3 ,13,2502,10672,47,16 ,41,15023,534968,8,3 ,13,2504,10680,49,16 ,41,15023,534976,8,3 ,13,2509,10688,47,16 ,20,24866,24652226,764,0 ,45,15153,5253572,24,0 ,17,923,6826436,48,0 ,45,15153,4204996,184,0 ,45,15153,4729284,152,0 ,41,15023,534984,8,3 ,13,2540,10696,49,16 ,41,15023,534992,8,3 ,13,2542,10704,49,16 ,41,15023,535000,8,3 ,13,2543,10712,47,16 ,41,15023,535008,8,3 ,13,2571,10720,51,16 ,20,25089,25176546,208,0 ,41,15023,535016,8,3 ,13,2573,10728,49,16 ,41,15023,535024,8,3 ,13,2575,10736,49,16 ,41,15023,535032,8,3 ,13,2579,10744,47,16 ,41,15023,535040,8,3 ,13,2581,10752,49,16 ,17,923,10755,16,0 ,17,923,9972228,32,0 ,17,923,7875076,40,0 ,17,923,7350788,64,0 ,44,15152,2632196,32,0 ,44,15152,1059332,24,0 ,44,15152,3156484,24,0 ,17,923,8923652,24,0 ,17,923,9447940,24,0 ,41,15023,535048,8,3 ,13,2587,10760,49,16 ,41,15023,535056,8,3 ,13,2588,10768,49,16 ,41,15023,535064,8,3 ,13,2589,10776,45,16 ,41,15023,535072,8,3 ,13,2591,10784,49,16 ,41,15023,535080,8,3 ,13,2592,10792,47,16 ,41,15023,535088,8,3 ,13,2593,10800,43,16 ,41,15023,535096,8,3 ,13,2594,10808,45,16 ,41,15023,535104,8,3 ,13,2605,10816,55,16 ,20,21162,15739458,396,0 ,43,15151,10820,40,0 ,44,15152,1583684,40,0 ,41,15023,535112,8,3 ,13,2607,10824,49,16 ,41,15023,535120,8,3 ,13,2614,10832,49,16 ,41,15023,535128,8,3 ,13,2615,10840,48,16 ,41,15023,535136,8,3 ,13,2618,10848,49,16 ,20,16040,2108002,136,0 ,41,15023,535144,8,3 ,13,2619,10856,45,16 ,41,15023,535152,8,3 ,13,2625,10864,49,16 ,41,15023,535160,8,3 ,13,2626,10872,45,16 ,41,15023,535168,8,3 ,13,2663,10880,53,16 ,17,923,10883,16,0 ,17,923,8399492,40,0 ,44,15152,535172,64,0 ,44,15152,3680900,184,0 ,45,15153,5253764,24,0 ,41,15023,535176,8,3 ,13,2673,10888,49,16 ,41,15023,535184,8,3 ,13,2676,10896,45,16 ,41,15023,535192,8,3 ,13,2677,10904,47,16 ,41,15023,535200,8,3 ,13,2679,10912,48,16 ,20,938,10913,184,0 ,20,16628,3680930,204,0 ,20,15167,10914,128,0 ,41,15023,535208,8,3 ,13,2680,10920,47,16 ,41,15023,535216,8,3 ,13,438,10928,38,16 ,41,15023,535224,8,3 ,13,2709,10936,49,16 ,41,15023,535232,8,3 ,13,2714,10944,49,16 ,17,923,9448132,32,0 ,44,15152,2108100,40,0 ,44,15152,1059524,24,0 ,44,15152,3156676,24,0 ,17,923,8923844,24,0 ,41,15023,535240,8,3 ,13,438,10952,38,16 ,41,15023,535248,8,3 ,13,2914,10960,46,16 ,41,15023,535256,8,3 ,13,2860,10968,55,16 ,41,15023,535264,8,3 ,13,2757,10976,47,16 ,20,20871,14166754,76,0 ,41,15023,535272,8,3 ,13,2762,10984,51,16 ,41,15023,535280,8,3 ,13,313,10992,46,16 ,41,15023,535288,8,3 ,13,2775,11000,47,16 ,41,15023,535296,8,3 ,13,2778,11008,47,16 ,20,24319,23079682,3904,0 ,17,923,11011,32,0 ,17,923,9972484,32,0 ,44,15152,2632452,40,0 ,41,15023,535304,8,3 ,13,2796,11016,51,16 ,41,15023,535312,8,3 ,13,2874,11024,54,16 ,41,15023,535320,8,3 ,13,2888,11032,49,16 ,41,15023,535328,8,3 ,13,2878,11040,49,16 ,41,15023,535336,8,3 ,13,2886,11048,47,16 ,41,15023,535344,8,3 ,13,2885,11056,45,16 ,41,15023,535352,8,3 ,13,2884,11064,45,16 ,41,15023,535360,8,3 ,13,2891,11072,48,16 ,20,22493,18885442,24,0 ,45,15153,5253956,24,0 ,17,923,7875396,24,0 ,17,923,6826820,40,0 ,41,15023,535368,8,3 ,13,2889,11080,49,16 ,41,15023,535376,8,3 ,13,2901,11088,51,16 ,41,15023,535384,8,3 ,13,2936,11096,47,16 ,41,15023,535392,8,3 ,13,2943,11104,49,16 ,41,15023,535400,8,3 ,13,2956,11112,51,16 ,41,15023,535408,8,3 ,13,289,11120,46,16 ,41,15023,535416,8,3 ,13,3270,11128,47,16 ,41,15023,535424,8,3 ,13,438,11136,40,16 ,20,18630,8399746,12,0 ,17,923,8924036,48,0 ,44,15152,1584004,24,0 ,43,15151,11140,16,0 ,44,15152,1059716,40,0 ,44,15152,3156868,24,0 ,41,15023,535432,8,3 ,13,2994,11144,45,16 ,41,15023,535440,8,3 ,13,3001,11152,49,16 ,41,15023,535448,8,3 ,13,2999,11160,43,16 ,41,15023,535456,8,3 ,13,3014,11168,48,16 ,41,15023,535464,8,3 ,13,3006,11176,47,16 ,41,15023,535472,8,3 ,13,3013,11184,46,16 ,41,15023,535480,8,3 ,13,3010,11192,46,16 ,41,15023,535488,8,3 ,13,3026,11200,49,16 ,17,923,9448388,32,0 ,17,923,8399812,32,0 ,41,15023,535496,8,3 ,13,3017,11208,41,16 ,41,15023,535504,8,3 ,13,3022,11216,45,16 ,41,15023,535512,8,3 ,13,3034,11224,47,16 ,41,15023,535520,8,3 ,13,3036,11232,47,16 ,20,19654,10496994,12,0 ,20,18631,8399842,44,0 ,20,19324,9972706,196,0 ,41,15023,535528,8,3 ,13,3051,11240,49,16 ,41,15023,535536,8,3 ,13,438,11248,36,16 ,41,15023,535544,8,3 ,13,3056,11256,45,16 ,41,15023,535552,8,3 ,13,3058,11264,47,16 ,20,22494,18885634,24,0 ,17,923,11267,16,0 ,17,923,9972740,32,0 ,17,923,7875588,24,0 ,17,923,7351300,32,0 ,44,15152,2108420,40,0 ,43,15151,11268,16,0 ,45,15153,5254148,88,0 ,41,15023,535560,8,3 ,13,3067,11272,47,16 ,41,15023,535568,8,3 ,13,3073,11280,47,16 ,41,15023,535576,8,3 ,13,3078,11288,47,16 ,41,15023,535584,8,3 ,13,3080,11296,47,16 ,41,15023,535592,8,3 ,13,3089,11304,47,16 ,41,15023,535600,8,3 ,13,3084,11312,45,16 ,41,15023,535608,8,3 ,13,3083,11320,43,16 ,41,15023,535616,8,3 ,13,3090,11328,45,16 ,20,19655,10497090,12,0 ,44,15152,3157060,56,0 ,44,15152,2632772,32,0 ,44,15152,1584196,184,0 ,41,15023,535624,8,3 ,13,3091,11336,43,16 ,41,15023,535632,8,3 ,13,3100,11344,45,16 ,41,15023,535640,8,3 ,13,3105,11352,45,16 ,41,15023,535648,8,3 ,13,3106,11360,45,16 ,41,15023,535656,8,3 ,13,3107,11368,45,16 ,41,15023,535664,8,3 ,13,3121,11376,47,16 ,41,15023,535672,8,3 ,13,3118,11384,50,16 ,41,15023,535680,8,3 ,13,3113,11392,51,16 ,17,923,11395,16,0 ,44,15152,535684,32,0 ,17,923,6827140,56,0 ,43,15151,11396,24,0 ,41,15023,535688,8,3 ,13,3111,11400,47,16 ,41,15023,535696,8,3 ,13,3116,11408,51,16 ,41,15023,535704,8,3 ,13,3114,11416,49,16 ,41,15023,535712,8,3 ,13,3126,11424,49,16 ,20,19656,10497186,80,0 ,41,15023,535720,8,3 ,13,3127,11432,45,16 ,41,15023,535728,8,3 ,13,3132,11440,45,16 ,41,15023,535736,8,3 ,13,3136,11448,47,16 ,41,15023,535744,8,3 ,13,3138,11456,45,16 ,20,22495,18885826,24,0 ,20,18880,8924354,52,0 ,17,923,9448644,48,0 ,17,923,7875780,24,0 ,44,15152,1060036,40,0 ,17,923,8400068,32,0 ,41,15023,535752,8,3 ,13,3172,11464,45,16 ,41,15023,535760,8,3 ,13,3143,11472,47,16 ,41,15023,535768,8,3 ,13,438,11480,36,16 ,41,15023,535776,8,3 ,13,3173,11488,43,16 ,41,15023,535784,8,3 ,13,3178,11496,47,16 ,41,15023,535792,8,3 ,13,3180,11504,49,16 ,41,15023,535800,8,3 ,13,3181,11512,45,16 ,41,15023,535808,8,3 ,13,3182,11520,47,16 ,20,25312,25701634,276,0 ,17,923,11523,24,0 ,17,923,9972996,32,0 ,17,923,7351556,32,0 ,17,923,8924420,32,0 ,41,15023,535816,8,3 ,13,3184,11528,45,16 ,41,15023,535824,8,3 ,13,3186,11536,47,16 ,41,15023,535832,8,3 ,13,3238,11544,47,16 ,41,15023,535840,8,3 ,13,3227,11552,47,16 ,20,21507,16264482,288,0 ,41,15023,535848,8,3 ,13,438,11560,38,16 ,41,15023,535856,8,3 ,13,3241,11568,48,16 ,41,15023,535864,8,3 ,13,3262,11576,47,16 ,41,15023,535872,8,3 ,13,3263,11584,45,16 ,20,20872,14167362,512,0 ,20,16920,4205890,64,0 ,20,18632,8400194,144,0 ,43,15151,11588,16,0 ,44,15152,2633028,32,0 ,44,15152,2108740,40,0 ,41,15023,535880,8,3 ,13,3264,11592,48,16 ,41,15023,535888,8,3 ,13,3265,11600,45,16 ,41,15023,535896,8,3 ,13,8679,11608,46,16 ,41,15023,535904,8,3 ,13,3437,11616,46,16 ,41,15023,535912,8,3 ,13,3436,11624,47,16 ,41,15023,535920,8,3 ,13,3293,11632,43,16 ,41,15023,535928,8,3 ,13,438,11640,34,16 ,41,15023,535936,8,3 ,13,3273,11648,53,16 ,20,22496,18886018,24,0 ,44,15152,535940,24,0 ,17,923,7875972,32,0 ,41,15023,535944,8,3 ,13,3288,11656,46,16 ,41,15023,535952,8,3 ,13,3286,11664,51,16 ,41,15023,535960,8,3 ,13,438,11672,34,16 ,41,15023,535968,8,3 ,13,3282,11680,51,16 ,41,15023,535976,8,3 ,13,3289,11688,49,16 ,41,15023,535984,8,3 ,13,3290,11696,45,16 ,41,15023,535992,8,3 ,13,438,11704,34,16 ,41,15023,536000,8,3 ,13,3298,11712,47,16 ,17,923,11715,16,0 ,17,923,8400324,32,0 ,43,15151,11716,16,0 ,41,15023,536008,8,3 ,13,3432,11720,49,16 ,41,15023,536016,8,3 ,13,3423,11728,47,16 ,41,15023,536024,8,3 ,13,3422,11736,45,16 ,41,15023,536032,8,3 ,13,438,11744,34,16 ,41,15023,536040,8,3 ,13,3322,11752,49,16 ,41,15023,536048,8,3 ,13,3312,11760,46,16 ,41,15023,536056,8,3 ,13,3306,11768,43,16 ,41,15023,536064,8,3 ,13,438,11776,34,16 ,17,923,9973252,24,0 ,17,923,7351812,40,0 ,44,15152,1060356,48,0 ,44,15152,3157508,88,0 ,17,923,8924676,24,0 ,41,15023,536072,8,3 ,13,3302,11784,43,16 ,41,15023,536080,8,3 ,13,3303,11792,43,16 ,41,15023,536088,8,3 ,13,3304,11800,43,16 ,41,15023,536096,8,3 ,13,3329,11808,47,16 ,20,17968,6827554,420,0 ,20,26078,27799074,472,0 ,20,15575,1060386,12,0 ,41,15023,536104,8,3 ,13,3331,11816,45,16 ,41,15023,536112,8,3 ,13,3333,11824,51,16 ,41,15023,536120,8,3 ,13,3336,11832,49,16 ,41,15023,536128,8,3 ,13,3338,11840,46,16 ,20,22497,18886210,24,0 ,17,923,11843,32,0 ,17,923,9449028,40,0 ,17,923,6827588,48,0 ,44,15152,2633284,32,0 ,43,15151,11844,72,0 ,44,15152,536132,16,0 ,41,15023,536136,8,3 ,13,3340,11848,48,16 ,41,15023,536144,8,3 ,13,3341,11856,47,16 ,41,15023,536152,8,3 ,13,3353,11864,49,16 ,41,15023,536160,8,3 ,13,3345,11872,47,16 ,20,18881,8924770,220,0 ,41,15023,536168,8,3 ,13,438,11880,34,16 ,41,15023,536176,8,3 ,13,3342,11888,43,16 ,41,15023,536184,8,3 ,13,3356,11896,45,16 ,41,15023,536192,8,3 ,13,3357,11904,45,16 ,20,15576,1060482,192,0 ,45,15153,4730500,24,0 ,17,923,7876228,24,0 ,44,15152,2109060,40,0 ,41,15023,536200,8,3 ,13,3358,11912,49,16 ,41,15023,536208,8,3 ,13,3415,11920,49,16 ,41,15023,536216,8,3 ,13,3408,11928,52,16 ,41,15023,536224,8,3 ,13,438,11936,34,16 ,20,16041,2109090,56,0 ,20,15168,11938,164,0 ,41,15023,536232,8,3 ,13,3359,11944,45,16 ,41,15023,536240,8,3 ,13,3363,11952,47,16 ,41,15023,536248,8,3 ,13,3364,11960,45,16 ,41,15023,536256,8,3 ,13,3366,11968,47,16 ,17,923,9973444,32,0 ,44,15152,536260,40,0 ,45,15153,5254852,112,0 ,17,923,8400580,48,0 ,17,923,8924868,32,0 ,41,15023,536264,8,3 ,13,3367,11976,44,16 ,41,15023,536272,8,3 ,13,3369,11984,47,16 ,41,15023,536280,8,3 ,13,3370,11992,47,16 ,41,15023,536288,8,3 ,13,3371,12000,49,16 ,41,15023,536296,8,3 ,13,3405,12008,51,16 ,41,15023,536304,8,3 ,13,3372,12016,49,16 ,41,15023,536312,8,3 ,13,3377,12024,47,16 ,41,15023,536320,8,3 ,13,3374,12032,49,16 ,20,22498,18886402,24,0 ,41,15023,536328,8,3 ,13,3381,12040,50,16 ,41,15023,536336,8,3 ,13,3400,12048,49,16 ,41,15023,536344,8,3 ,13,3390,12056,45,16 ,41,15023,536352,8,3 ,13,3388,12064,47,16 ,20,19657,10497826,104,0 ,41,15023,536360,8,3 ,13,438,12072,34,16 ,41,15023,536368,8,3 ,13,3392,12080,47,16 ,41,15023,536376,8,3 ,13,3393,12088,50,16 ,41,15023,536384,8,3 ,13,3394,12096,49,16 ,20,16921,4206402,60,0 ,17,923,12099,24,0 ,45,15153,4730692,16,0 ,17,923,7876420,24,0 ,17,923,7352132,40,0 ,44,15152,2633540,24,0 ,41,15023,536392,8,3 ,13,3395,12104,47,16 ,41,15023,536400,8,3 ,13,3396,12112,47,16 ,41,15023,536408,8,3 ,13,3397,12120,49,16 ,41,15023,536416,8,3 ,13,3416,12128,47,16 ,41,15023,536424,8,3 ,13,3417,12136,49,16 ,41,15023,536432,8,3 ,13,3418,12144,49,16 ,41,15023,536440,8,3 ,13,3419,12152,49,16 ,41,15023,536448,8,3 ,13,438,12160,34,16 ,20,25841,27275138,268,0 ,17,923,9449348,40,0 ,44,15152,1060740,40,0 ,45,15153,4206468,24,0 ,41,15023,536456,8,3 ,13,3424,12168,49,16 ,41,15023,536464,8,3 ,13,3425,12176,49,16 ,41,15023,536472,8,3 ,13,3427,12184,51,16 ,41,15023,536480,8,3 ,13,3428,12192,49,16 ,20,23478,20983714,1128,0 ,41,15023,536488,8,3 ,13,3429,12200,49,16 ,41,15023,536496,8,3 ,13,438,12208,38,16 ,41,15023,536504,8,3 ,13,3463,12216,47,16 ,41,15023,536512,8,3 ,13,438,12224,34,16 ,20,22499,18886594,136,0 ,17,923,9973700,24,0 ,17,923,6827972,48,0 ,44,15152,2109380,48,0 ,45,15153,4730820,24,0 ,17,923,8925124,32,0 ,41,15023,536520,8,3 ,13,3442,12232,47,16 ,41,15023,536528,8,3 ,13,3444,12240,47,16 ,41,15023,536536,8,3 ,13,3448,12248,47,16 ,41,15023,536544,8,3 ,13,3452,12256,45,16 ,41,15023,536552,8,3 ,13,3458,12264,47,16 ,41,15023,536560,8,3 ,13,3455,12272,45,16 ,41,15023,536568,8,3 ,13,438,12280,34,16 ,41,15023,536576,8,3 ,13,3459,12288,48,16 ,17,923,12291,16,0 ,44,15152,536580,24,0 ,17,923,7876612,40,0 ,44,15152,2633732,32,0 ,41,15023,536584,8,3 ,13,3460,12296,49,16 ,41,15023,536592,8,3 ,13,3468,12304,49,16 ,41,15023,536600,8,3 ,13,3471,12312,47,16 ,41,15023,536608,8,3 ,13,3475,12320,50,16 ,41,15023,536616,8,3 ,13,8673,12328,53,16 ,41,15023,536624,8,3 ,13,3497,12336,51,16 ,41,15023,536632,8,3 ,13,438,12344,34,16 ,41,15023,536640,8,3 ,13,3482,12352,49,16 ,17,923,8400964,32,0 ,44,15152,3682372,24,0 ,45,15153,4206660,32,0 ,41,15023,536648,8,3 ,13,3483,12360,43,16 ,41,15023,536656,8,3 ,13,3494,12368,48,16 ,41,15023,536664,8,3 ,13,8650,12376,51,16 ,41,15023,536672,8,3 ,13,8635,12384,47,16 ,20,939,12385,176,0 ,20,16042,2109538,56,0 ,20,25090,25178210,1112,0 ,41,15023,536680,8,3 ,13,8630,12392,46,16 ,41,15023,536688,8,3 ,13,438,12400,34,16 ,41,15023,536696,8,3 ,13,3504,12408,49,16 ,41,15023,536704,8,3 ,13,3513,12416,47,16 ,17,923,12419,24,0 ,17,923,9973892,112,0 ,17,923,7352452,32,0 ,43,15151,12420,32,0 ,45,15153,4731012,32,0 ,41,15023,536712,8,3 ,13,8628,12424,49,16 ,41,15023,536720,8,3 ,13,3567,12432,47,16 ,41,15023,536728,8,3 ,13,3540,12440,43,16 ,41,15023,536736,8,3 ,13,3539,12448,48,16 ,41,15023,536744,8,3 ,13,438,12456,38,16 ,41,15023,536752,8,3 ,13,3531,12464,47,16 ,41,15023,536760,8,3 ,13,3533,12472,49,16 ,41,15023,536768,8,3 ,13,3535,12480,47,16 ,17,923,9449668,40,0 ,44,15152,536772,24,0 ,44,15152,1061060,32,0 ,44,15152,3158212,40,0 ,17,923,8925380,56,0 ,41,15023,536776,8,3 ,13,438,12488,34,16 ,41,15023,536784,8,3 ,13,3555,12496,50,16 ,41,15023,536792,8,3 ,13,3545,12504,45,16 ,41,15023,536800,8,3 ,13,438,12512,36,16 ,20,20460,13119714,160,0 ,41,15023,536808,8,3 ,13,3565,12520,46,16 ,41,15023,536816,8,3 ,13,3559,12528,43,16 ,41,15023,536824,8,3 ,13,438,12536,34,16 ,41,15023,536832,8,3 ,13,3562,12544,49,16 ,20,16629,3682562,448,0 ,44,15152,3682564,40,0 ,44,15152,2633988,48,0 ,41,15023,536840,8,3 ,13,3683,12552,51,16 ,41,15023,536848,8,3 ,13,3681,12560,55,16 ,41,15023,536856,8,3 ,13,3659,12568,45,16 ,41,15023,536864,8,3 ,13,3570,12576,45,16 ,20,16922,4206882,60,0 ,41,15023,536872,8,3 ,13,3572,12584,47,16 ,41,15023,536880,8,3 ,13,3573,12592,47,16 ,41,15023,536888,8,3 ,13,164,12600,47,16 ,41,15023,536896,8,3 ,13,3578,12608,45,16 ,17,923,12611,16,0 ,17,923,8401220,32,0 ,17,923,7876932,24,0 ,17,923,6828356,40,0 ,44,15152,2109764,40,0 ,45,15153,4206916,56,0 ,45,15153,6304068,16,0 ,41,15023,536904,8,3 ,13,3574,12616,45,16 ,41,15023,536912,8,3 ,13,3577,12624,45,16 ,41,15023,536920,8,3 ,13,3576,12632,43,16 ,41,15023,536928,8,3 ,13,3656,12640,51,16 ,41,15023,536936,8,3 ,13,3654,12648,52,16 ,41,15023,536944,8,3 ,13,3637,12656,50,16 ,41,15023,536952,8,3 ,13,3634,12664,52,16 ,41,15023,536960,8,3 ,13,3632,12672,55,16 ,45,15153,4731268,80,0 ,17,923,7352708,32,0 ,43,15151,12676,16,0 ,44,15152,536964,32,0 ,41,15023,536968,8,3 ,13,3599,12680,49,16 ,41,15023,536976,8,3 ,13,3613,12688,52,16 ,41,15023,536984,8,3 ,13,3602,12696,47,16 ,41,15023,536992,8,3 ,13,3605,12704,49,16 ,41,15023,537000,8,3 ,13,3624,12712,53,16 ,41,15023,537008,8,3 ,13,3622,12720,49,16 ,41,15023,537016,8,3 ,13,3668,12728,51,16 ,41,15023,537024,8,3 ,13,3667,12736,45,16 ,20,18633,8401346,664,0 ,17,923,12739,16,0 ,45,15153,6304196,16,0 ,44,15152,1061316,32,0 ,41,15023,537032,8,3 ,13,3666,12744,45,16 ,41,15023,537040,8,3 ,13,3682,12752,45,16 ,41,15023,537048,8,3 ,13,3691,12760,56,16 ,41,15023,537056,8,3 ,13,8621,12768,54,16 ,41,15023,537064,8,3 ,13,8597,12776,54,16 ,41,15023,537072,8,3 ,13,3982,12784,49,16 ,41,15023,537080,8,3 ,13,3974,12792,49,16 ,41,15023,537088,8,3 ,13,3722,12800,47,16 ,20,19897,11022850,56,0 ,20,19325,9974274,1080,0 ,17,923,9449988,40,0 ,17,923,7877124,56,0 ,44,15152,1585668,24,0 ,43,15151,12804,16,0 ,44,15152,3158532,40,0 ,41,15023,537096,8,3 ,13,3707,12808,45,16 ,41,15023,537104,8,3 ,13,438,12816,34,16 ,41,15023,537112,8,3 ,13,3709,12824,47,16 ,41,15023,537120,8,3 ,13,3718,12832,45,16 ,20,16043,2109986,264,0 ,41,15023,537128,8,3 ,13,438,12840,34,16 ,41,15023,537136,8,3 ,13,3714,12848,48,16 ,41,15023,537144,8,3 ,13,3771,12856,49,16 ,41,15023,537152,8,3 ,13,438,12864,34,16 ,17,923,12867,16,0 ,17,923,8401476,32,0 ,44,15152,3682884,80,0 ,45,15153,5255748,16,0 ,45,15153,6304324,16,0 ,41,15023,537160,8,3 ,13,3730,12872,47,16 ,41,15023,537168,8,3 ,13,3731,12880,49,16 ,41,15023,537176,8,3 ,13,3732,12888,49,16 ,41,15023,537184,8,3 ,13,3735,12896,52,16 ,20,19658,10498658,460,0 ,41,15023,537192,8,3 ,13,3766,12904,47,16 ,41,15023,537200,8,3 ,13,438,12912,34,16 ,41,15023,537208,8,3 ,13,3756,12920,50,16 ,41,15023,537216,8,3 ,13,3758,12928,48,16 ,17,923,8925828,24,0 ,17,923,7352964,48,0 ,17,923,6828676,40,0 ,44,15152,2634372,24,0 ,44,15152,2110084,80,0 ,43,15151,12932,16,0 ,44,15152,537220,24,0 ,41,15023,537224,8,3 ,13,3759,12936,43,16 ,41,15023,537232,8,3 ,13,3760,12944,47,16 ,41,15023,537240,8,3 ,13,3761,12952,47,16 ,41,15023,537248,8,3 ,13,3866,12960,49,16 ,41,15023,537256,8,3 ,13,3825,12968,48,16 ,41,15023,537264,8,3 ,13,438,12976,34,16 ,41,15023,537272,8,3 ,13,3787,12984,47,16 ,41,15023,537280,8,3 ,13,3780,12992,43,16 ,20,23665,21508802,216,0 ,17,923,12995,16,0 ,45,15153,6304452,16,0 ,44,15152,1585860,24,0 ,44,15152,1061572,32,0 ,45,15153,5255876,112,0 ,41,15023,537288,8,3 ,13,438,13000,34,16 ,41,15023,537296,8,3 ,13,3774,13008,47,16 ,41,15023,537304,8,3 ,13,3775,13016,45,16 ,41,15023,537312,8,3 ,13,3776,13024,47,16 ,41,15023,537320,8,3 ,13,3777,13032,47,16 ,41,15023,537328,8,3 ,13,3790,13040,47,16 ,41,15023,537336,8,3 ,13,3791,13048,47,16 ,41,15023,537344,8,3 ,13,3792,13056,51,16 ,20,16923,4207362,40,0 ,45,15153,4207364,16,0 ,43,15151,13060,24,0 ,41,15023,537352,8,3 ,13,3819,13064,47,16 ,41,15023,537360,8,3 ,13,438,13072,34,16 ,41,15023,537368,8,3 ,13,3809,13080,47,16 ,41,15023,537376,8,3 ,13,438,13088,38,16 ,41,15023,537384,8,3 ,13,3843,13096,53,16 ,41,15023,537392,8,3 ,13,3859,13104,50,16 ,41,15023,537400,8,3 ,13,3863,13112,49,16 ,41,15023,537408,8,3 ,13,3884,13120,47,16 ,17,923,13123,24,0 ,17,923,9450308,32,0 ,44,15152,2634564,32,0 ,44,15152,537412,24,0 ,44,15152,3158852,48,0 ,45,15153,6304580,16,0 ,17,923,8401732,32,0 ,17,923,8926020,48,0 ,41,15023,537416,8,3 ,13,438,13128,34,16 ,41,15023,537424,8,3 ,13,3881,13136,46,16 ,41,15023,537432,8,3 ,13,3879,13144,43,16 ,41,15023,537440,8,3 ,13,438,13152,34,16 ,41,15023,537448,8,3 ,13,3868,13160,43,16 ,41,15023,537456,8,3 ,13,3869,13168,43,16 ,41,15023,537464,8,3 ,13,3873,13176,49,16 ,41,15023,537472,8,3 ,13,3876,13184,47,16 ,45,15153,4207492,24,0 ,44,15152,1586052,80,0 ,41,15023,537480,8,3 ,13,3894,13192,47,16 ,41,15023,537488,8,3 ,13,438,13200,34,16 ,41,15023,537496,8,3 ,13,3885,13208,45,16 ,41,15023,537504,8,3 ,13,3964,13216,47,16 ,41,15023,537512,8,3 ,13,438,13224,34,16 ,41,15023,537520,8,3 ,13,3900,13232,46,16 ,41,15023,537528,8,3 ,13,3903,13240,50,16 ,41,15023,537536,8,3 ,13,3904,13248,50,16 ,20,19898,11023298,24,0 ,20,15169,13250,136,0 ,45,15153,6304708,16,0 ,17,923,7877572,32,0 ,17,923,6828996,40,0 ,43,15151,13252,24,0 ,44,15152,1061828,24,0 ,41,15023,537544,8,3 ,13,3905,13256,50,16 ,41,15023,537552,8,3 ,13,3906,13264,50,16 ,41,15023,537560,8,3 ,13,3908,13272,50,16 ,41,15023,537568,8,3 ,13,3909,13280,50,16 ,41,15023,537576,8,3 ,13,3910,13288,50,16 ,41,15023,537584,8,3 ,13,3911,13296,50,16 ,41,15023,537592,8,3 ,13,3912,13304,50,16 ,41,15023,537600,8,3 ,13,3913,13312,50,16 ,20,22500,18887682,24,0 ,17,923,13315,32,0 ,17,923,9974788,40,0 ,17,923,7353348,48,0 ,44,15152,537604,24,0 ,45,15153,4731908,56,0 ,41,15023,537608,8,3 ,13,3956,13320,52,16 ,41,15023,537616,8,3 ,13,438,13328,34,16 ,41,15023,537624,8,3 ,13,3919,13336,43,16 ,41,15023,537632,8,3 ,13,3927,13344,52,16 ,20,18404,7877666,52,0 ,41,15023,537640,8,3 ,13,3931,13352,52,16 ,41,15023,537648,8,3 ,13,3969,13360,46,16 ,41,15023,537656,8,3 ,13,438,13368,36,16 ,41,15023,537664,8,3 ,13,3979,13376,47,16 ,20,16924,4207682,60,0 ,20,24687,24130626,552,0 ,17,923,9450564,48,0 ,44,15152,2634820,64,0 ,45,15153,4207684,24,0 ,45,15153,6304836,16,0 ,17,923,8401988,32,0 ,41,15023,537672,8,3 ,13,438,13384,34,16 ,41,15023,537680,8,3 ,13,3990,13392,46,16 ,41,15023,537688,8,3 ,13,3986,13400,44,16 ,13,3985,13408,44,16 ,41,15023,537696,8,3 ,41,15023,537704,8,3 ,13,3984,13416,45,16 ,41,15023,537712,8,3 ,13,3983,13424,45,16 ,41,15023,537720,8,3 ,13,438,13432,34,16 ,41,15023,537728,8,3 ,13,4374,13440,57,16 ,20,19899,11023490,24,0 ,20,15577,1062018,184,0 ,44,15152,1062020,32,0 ,43,15151,13444,16,0 ,41,15023,537736,8,3 ,13,4335,13448,47,16 ,41,15023,537744,8,3 ,13,4003,13456,45,16 ,41,15023,537752,8,3 ,13,438,13464,34,16 ,41,15023,537760,8,3 ,13,438,13472,34,16 ,41,15023,537768,8,3 ,13,4075,13480,49,16 ,41,15023,537776,8,3 ,13,4067,13488,57,16 ,41,15023,537784,8,3 ,13,438,13496,36,16 ,13,4059,13504,49,16 ,41,15023,537792,6,3 ,20,22501,18887874,24,0 ,17,923,8926404,24,0 ,17,923,7877828,24,0 ,44,15152,537796,24,0 ,44,15152,3159236,112,0 ,44,15152,3683524,48,0 ,45,15153,6304964,16,0 ,13,4060,13512,49,16 ,41,15023,537800,8,3 ,41,15023,537808,8,3 ,13,4078,13520,49,16 ,41,15023,537816,8,3 ,13,4081,13528,49,16 ,41,15023,537824,8,3 ,13,4086,13536,47,16 ,41,15023,537832,8,3 ,13,4087,13544,45,16 ,41,15023,537840,8,3 ,13,4088,13552,47,16 ,41,15023,537848,8,3 ,13,4090,13560,47,16 ,13,4092,13568,49,16 ,41,15023,537856,8,3 ,17,923,13571,16,0 ,45,15153,4207876,56,0 ,17,923,6829316,40,0 ,44,15152,2110724,32,0 ,43,15151,13572,16,0 ,41,15023,537864,8,3 ,13,4093,13576,45,16 ,41,15023,537872,8,3 ,13,4094,13584,47,16 ,41,15023,537880,8,3 ,13,4095,13592,47,16 ,41,15023,537888,8,3 ,13,4097,13600,47,16 ,41,15023,537896,8,3 ,13,4098,13608,47,16 ,41,15023,537904,8,3 ,13,4100,13616,49,16 ,41,15023,537912,8,3 ,13,4217,13624,50,16 ,41,15023,537920,8,3 ,13,4196,13632,45,16 ,20,19900,11023682,24,0 ,20,18882,8926530,720,0 ,17,923,9975108,40,0 ,45,15153,6305092,16,0 ,17,923,8402244,32,0 ,41,15023,537928,8,3 ,13,438,13640,34,16 ,41,15023,537936,8,3 ,13,4188,13648,46,16 ,41,15023,537944,8,3 ,13,438,13656,34,16 ,41,15023,537952,8,3 ,13,4105,13664,51,16 ,41,15023,537960,8,3 ,13,4110,13672,49,16 ,41,15023,537968,8,3 ,13,4130,13680,49,16 ,41,15023,537976,8,3 ,13,4126,13688,48,16 ,13,438,13696,34,16 ,3,28,537984,10,4 ,20,22502,18888066,24,0 ,17,923,13699,24,0 ,17,923,8926596,24,0 ,17,923,7878020,64,0 ,17,923,7353732,32,0 ,43,15151,13700,24,0 ,44,15152,537988,40,0 ,44,15152,1062276,32,0 ,13,4153,13704,49,16 ,3,28,537992,6,2 ,13,4147,13712,55,16 ,3,28,538000,5,2 ,13,4132,13720,51,16 ,3,28,538008,10,4 ,13,4137,13728,47,16 ,3,28,538016,4,1 ,20,25313,25703842,236,0 ,13,4139,13736,51,16 ,3,28,538024,62,35 ,13,4143,13744,51,16 ,3,28,538032,8,3 ,13,4145,13752,51,16 ,3,28,538040,6,3 ,13,4154,13760,49,16 ,3,28,538048,9,3 ,20,18405,7878082,12,0 ,17,923,9450948,40,0 ,45,15153,4732356,72,0 ,45,15153,6305220,16,0 ,13,4156,13768,50,16 ,3,28,538056,7,2 ,13,4159,13776,49,16 ,3,28,538064,4,1 ,13,4162,13784,49,16 ,3,28,538072,20,9 ,13,4163,13792,49,16 ,3,28,538080,10,4 ,20,940,13793,4,0 ,20,20461,13120994,304,0 ,13,4170,13800,47,16 ,3,28,538088,16,7 ,13,4174,13808,51,16 ,3,28,538096,8,3 ,13,4175,13816,49,16 ,3,28,538104,6,2 ,13,4177,13824,49,16 ,3,28,538112,10,4 ,20,941,13825,4,0 ,20,19901,11023874,24,0 ,44,15152,1586692,72,0 ,44,15152,2110980,24,0 ,13,4179,13832,49,16 ,3,28,538120,4,1 ,13,4180,13840,49,16 ,3,28,538128,18,8 ,13,4218,13848,47,16 ,3,28,538136,4,1 ,13,4279,13856,50,16 ,3,28,538144,7,2 ,20,942,13857,56,0 ,20,21508,16266786,712,0 ,20,16925,4208162,32,0 ,20,18406,7878178,52,0 ,13,4219,13864,49,16 ,3,28,538152,7,2 ,13,4222,13872,46,16 ,3,28,538160,6,2 ,13,4230,13880,51,16 ,3,28,538168,10,4 ,13,4238,13888,47,16 ,3,28,538176,11,4 ,20,22503,18888258,24,0 ,17,923,13891,32,0 ,17,923,8926788,56,0 ,17,923,6829636,40,0 ,44,15152,2635332,32,0 ,43,15151,13892,96,0 ,44,15152,3683908,48,0 ,45,15153,5256772,32,0 ,45,15153,6305348,16,0 ,17,923,8402500,24,0 ,13,4255,13896,49,16 ,3,28,538184,4,1 ,13,4256,13904,51,16 ,3,28,538192,6,2 ,13,4322,13912,49,16 ,3,28,538200,7,4 ,13,4332,13920,51,16 ,3,28,538208,98,67 ,13,4336,13928,47,16 ,3,28,538216,12,4 ,13,4338,13936,49,16 ,3,28,538224,4,1 ,13,4339,13944,45,16 ,3,28,538232,6,2 ,13,4340,13952,45,16 ,3,28,538240,16,7 ,17,923,9975428,24,0 ,17,923,7353988,32,0 ,44,15152,1062532,32,0 ,13,4343,13960,47,16 ,3,28,538248,7,2 ,13,4344,13968,47,16 ,3,28,538256,14,6 ,13,4345,13976,49,16 ,3,28,538264,6,2 ,13,4364,13984,43,16 ,3,28,538272,8,3 ,20,21163,15742626,112,0 ,13,438,13992,34,16 ,3,28,538280,13,4 ,13,4358,14000,49,16 ,3,28,538288,10,3 ,13,4359,14008,43,16 ,3,28,538296,8,3 ,13,4361,14016,47,16 ,3,28,538304,10,3 ,20,19902,11024066,24,0 ,45,15153,6305476,16,0 ,44,15152,2111172,64,0 ,44,15152,538308,48,0 ,45,15153,4208324,24,0 ,13,234,14024,42,16 ,3,28,538312,8,3 ,13,4586,14032,50,16 ,3,28,538320,59,35 ,13,4484,14040,46,16 ,3,28,538328,6,2 ,13,4480,14048,49,16 ,3,28,538336,16,7 ,13,438,14056,34,16 ,3,28,538344,10,7 ,13,4380,14064,47,16 ,3,28,538352,4,1 ,13,4426,14072,52,16 ,3,28,538360,7,2 ,13,4402,14080,48,16 ,3,28,538368,4,1 ,20,22504,18888450,104,0 ,17,923,9451268,48,0 ,17,923,8402692,40,0 ,13,438,14088,34,16 ,3,28,538376,16,7 ,13,4394,14096,53,16 ,3,28,538384,8,3 ,13,4395,14104,53,16 ,3,28,538392,11,4 ,13,4397,14112,51,16 ,3,28,538400,14,5 ,20,16926,4208418,64,0 ,13,4431,14120,49,16 ,3,28,538408,4,1 ,13,4437,14128,49,16 ,3,28,538416,6,2 ,13,4442,14136,49,16 ,3,28,538424,4,1 ,13,4443,14144,47,16 ,3,28,538432,10,4 ,17,923,14147,16,0 ,17,923,9975620,88,0 ,44,15152,2635588,32,0 ,45,15153,5257028,16,0 ,45,15153,6305604,16,0 ,13,4444,14152,49,16 ,3,28,538440,14,5 ,13,4445,14160,49,16 ,3,28,538448,10,4 ,13,4446,14168,49,16 ,3,28,538456,7,2 ,13,438,14176,34,16 ,3,28,538464,4,1 ,13,4486,14184,47,16 ,3,28,538472,4,1 ,13,4504,14192,48,16 ,3,28,538480,8,3 ,13,438,14200,36,16 ,3,28,538488,10,4 ,13,4493,14208,45,16 ,3,28,538496,4,1 ,20,19903,11024258,24,0 ,45,15153,4208516,48,0 ,17,923,7878532,32,0 ,17,923,7354244,32,0 ,17,923,6829956,48,0 ,44,15152,1062788,40,0 ,13,4495,14216,49,16 ,3,28,538504,6,2 ,13,4497,14224,47,16 ,3,28,538512,4,1 ,13,4514,14232,47,16 ,3,28,538520,6,2 ,13,438,14240,36,16 ,3,28,538528,12,4 ,13,438,14248,36,16 ,3,28,538536,4,1 ,13,4580,14256,45,16 ,3,28,538544,18,8 ,13,438,14264,34,16 ,3,28,538552,12,5 ,13,4552,14272,47,16 ,3,28,538560,8,5 ,20,18407,7878594,12,0 ,20,17101,4732866,1320,0 ,17,923,14275,32,0 ,45,15153,6305732,16,0 ,44,15152,3684292,24,0 ,45,15153,5257156,24,0 ,13,4534,14280,43,16 ,3,28,538568,4,1 ,13,438,14288,34,16 ,3,28,538576,24,11 ,13,4525,14296,49,16 ,3,28,538584,7,2 ,13,4527,14304,49,16 ,3,28,538592,10,4 ,20,943,14305,192,0 ,20,25842,27277282,372,0 ,13,4530,14312,49,16 ,3,28,538600,14,6 ,13,4528,14320,51,16 ,3,28,538608,9,6 ,13,4531,14328,46,16 ,3,28,538616,7,2 ,13,4532,14336,43,16 ,3,28,538624,8,3 ,20,15170,14338,240,0 ,17,923,8927236,40,0 ,45,15153,4732932,16,0 ,13,4545,14344,47,16 ,3,28,538632,8,3 ,13,438,14352,34,16 ,3,28,538640,4,1 ,13,4539,14360,47,16 ,3,28,538648,14,6 ,13,4540,14368,49,16 ,3,28,538656,26,11 ,20,18408,7878690,12,0 ,13,4542,14376,49,16 ,3,28,538664,7,2 ,13,4556,14384,47,16 ,3,28,538672,4,1 ,13,4559,14392,47,16 ,3,28,538680,6,2 ,13,4560,14400,47,16 ,3,28,538688,7,2 ,20,19904,11024450,24,0 ,17,923,8403012,40,0 ,44,15152,2635844,40,0 ,44,15152,1587268,24,0 ,44,15152,538692,24,0 ,44,15152,3160132,48,0 ,45,15153,6305860,16,0 ,13,4571,14408,47,16 ,3,28,538696,8,3 ,13,4573,14416,49,16 ,3,28,538704,10,4 ,13,4574,14424,48,16 ,3,28,538712,4,1 ,13,438,14432,36,16 ,3,28,538720,7,2 ,20,21948,17315938,492,0 ,20,15316,538722,252,0 ,13,4591,14440,51,16 ,3,28,538728,8,3 ,13,4592,14448,45,16 ,3,28,538736,10,3 ,13,4603,14456,50,16 ,3,28,538744,4,1 ,13,4610,14464,51,16 ,3,28,538752,4,1 ,20,18409,7878786,48,0 ,17,923,9451652,48,0 ,17,923,7878788,24,0 ,17,923,7354500,32,0 ,44,15152,3684484,16,0 ,45,15153,4733060,56,0 ,45,15153,5257348,16,0 ,13,4612,14472,47,16 ,3,28,538760,6,2 ,13,4634,14480,47,16 ,3,28,538768,24,11 ,13,4639,14488,49,16 ,3,28,538776,10,3 ,13,4640,14496,47,16 ,3,28,538784,6,2 ,20,24156,22558882,228,0 ,13,4643,14504,47,16 ,3,28,538792,8,3 ,13,4675,14512,51,16 ,3,28,538800,25,13 ,13,4678,14520,49,16 ,3,28,538808,6,2 ,13,4684,14528,49,16 ,3,28,538816,8,3 ,20,19094,9451714,28,0 ,20,25659,26753218,480,0 ,17,923,14531,32,0 ,45,15153,6305988,16,0 ,44,15152,2111684,32,0 ,44,15152,1063108,24,0 ,13,8516,14536,49,16 ,3,28,538824,8,3 ,13,8510,14544,47,16 ,3,28,538832,8,3 ,13,4687,14552,47,16 ,3,28,538840,6,2 ,13,438,14560,36,16 ,3,28,538848,8,3 ,13,8500,14568,51,16 ,3,28,538856,6,2 ,13,4692,14576,51,16 ,3,28,538864,10,4 ,13,8487,14584,51,16 ,3,28,538872,6,2 ,13,8469,14592,47,16 ,3,28,538880,8,3 ,20,19905,11024642,136,0 ,45,15153,5257476,16,0 ,17,923,6830340,40,0 ,44,15152,1587460,24,0 ,44,15152,538884,40,0 ,44,15152,3684612,16,0 ,45,15153,4208900,32,0 ,13,8453,14600,47,16 ,3,28,538888,6,2 ,13,8420,14608,46,16 ,3,28,538896,8,3 ,13,4704,14616,45,16 ,3,28,538904,7,2 ,13,4708,14624,47,16 ,3,28,538912,195,131 ,20,16927,4208930,60,0 ,13,438,14632,34,16 ,3,28,538920,8,3 ,13,4714,14640,49,16 ,3,28,538928,8,3 ,13,8395,14648,49,16 ,3,28,538936,8,3 ,13,8379,14656,47,16 ,3,28,538944,6,2 ,17,923,8927556,40,0 ,17,923,7878980,24,0 ,43,15151,14660,24,0 ,45,15153,6306116,16,0 ,13,438,14664,36,16 ,3,28,538952,8,3 ,13,4731,14672,47,16 ,3,28,538960,8,3 ,13,438,14680,34,16 ,3,28,538968,11,4 ,13,4723,14688,47,16 ,3,28,538976,4,1 ,13,4726,14696,47,16 ,3,28,538984,8,3 ,13,4728,14704,47,16 ,3,28,538992,8,3 ,13,4842,14712,49,16 ,3,28,539000,4,1 ,13,4841,14720,54,16 ,3,28,539008,4,1 ,20,23666,21510530,60,0 ,17,923,8403332,56,0 ,17,923,7354756,40,0 ,44,15152,2636164,24,0 ,44,15152,1063300,32,0 ,44,15152,3684740,48,0 ,45,15153,5257604,32,0 ,13,4801,14728,50,16 ,3,28,539016,6,2 ,13,4796,14736,52,16 ,3,28,539024,7,2 ,13,438,14744,34,16 ,3,28,539032,7,2 ,13,4750,14752,49,16 ,3,28,539040,8,3 ,20,19095,9451938,284,0 ,13,438,14760,36,16 ,3,28,539048,8,3 ,13,4760,14768,47,16 ,3,28,539056,8,3 ,13,4757,14776,46,16 ,3,28,539064,7,2 ,13,438,14784,34,16 ,3,28,539072,4,1 ,17,923,14787,16,0 ,44,15152,3160516,24,0 ,17,923,6306244,40,0 ,44,15152,2111940,32,0 ,44,15152,1587652,64,0 ,13,4751,14792,49,16 ,3,28,539080,32,15 ,13,4753,14800,47,16 ,3,28,539088,6,2 ,13,4754,14808,45,16 ,3,28,539096,8,3 ,13,4755,14816,47,16 ,3,28,539104,10,3 ,20,20213,12073442,4932,0 ,13,4762,14824,47,16 ,3,28,539112,6,2 ,13,4767,14832,47,16 ,3,28,539120,6,2 ,13,4771,14840,48,16 ,3,28,539128,8,3 ,13,4773,14848,49,16 ,3,28,539136,10,4 ,20,18410,7879170,128,0 ,17,923,9976324,40,0 ,17,923,7879172,24,0 ,43,15151,14852,64,0 ,45,15153,4209156,32,0 ,17,923,9452036,48,0 ,13,4786,14856,55,16 ,3,28,539144,6,2 ,13,4787,14864,49,16 ,3,28,539152,10,3 ,13,4788,14872,47,16 ,3,28,539160,8,3 ,13,4791,14880,48,16 ,3,28,539168,7,2 ,20,23890,22034978,20,0 ,20,21164,15743522,732,0 ,13,438,14888,34,16 ,3,28,539176,7,2 ,13,4803,14896,49,16 ,3,28,539184,18,8 ,13,4807,14904,49,16 ,3,28,539192,8,3 ,13,4810,14912,47,16 ,3,28,539200,7,2 ,20,22505,18889282,308,0 ,20,15578,1063490,592,0 ,17,923,14915,16,0 ,45,15153,4733508,24,0 ,17,923,6830660,48,0 ,44,15152,2636356,24,0 ,44,15152,539204,24,0 ,13,4831,14920,47,16 ,3,28,539208,8,3 ,13,438,14928,34,16 ,3,28,539216,14,6 ,13,4815,14936,49,16 ,3,28,539224,4,1 ,13,4825,14944,52,16 ,3,28,539232,8,3 ,20,16044,2112098,372,0 ,13,4827,14952,49,16 ,3,28,539240,6,2 ,13,4828,14960,53,16 ,3,28,539248,7,2 ,13,5119,14968,50,16 ,3,28,539256,20,9 ,13,5116,14976,53,16 ,3,28,539264,13,4 ,17,923,8927876,40,0 ,44,15152,1063556,24,0 ,44,15152,3160708,24,0 ,45,15153,5257860,16,0 ,13,4853,14984,49,16 ,3,28,539272,11,4 ,13,4850,14992,49,16 ,3,28,539280,10,4 ,13,4848,15000,53,16 ,3,28,539288,11,4 ,13,4843,15008,47,16 ,3,28,539296,10,4 ,13,438,15016,34,16 ,3,28,539304,7,2 ,13,4858,15024,47,16 ,3,28,539312,5,2 ,13,5094,15032,51,16 ,3,28,539320,7,2 ,13,438,15040,34,16 ,3,28,539328,5,2 ,20,23891,22035138,156,0 ,17,923,15043,24,0 ,44,15152,2112196,24,0 ,17,923,7879364,24,0 ,17,923,7355076,40,0 ,13,4863,15048,43,16 ,3,28,539336,4,1 ,13,4865,15056,47,16 ,3,28,539344,6,2 ,13,4866,15064,45,16 ,3,28,539352,15,5 ,13,2434,15072,51,16 ,3,28,539360,8,3 ,13,438,15080,34,16 ,3,28,539368,8,3 ,13,2348,15088,49,16 ,3,28,539376,8,3 ,13,438,15096,34,16 ,3,28,539384,8,3 ,13,5071,15104,48,16 ,3,28,539392,114,56 ,20,16928,4209410,60,0 ,45,15153,5257988,24,0 ,17,923,6306564,24,0 ,44,15152,2636548,64,0 ,44,15152,539396,40,0 ,44,15152,3685124,72,0 ,45,15153,4209412,40,0 ,45,15153,4733700,16,0 ,13,5065,15112,46,16 ,3,28,539400,6,2 ,13,438,15120,34,16 ,3,28,539408,8,3 ,13,5056,15128,47,16 ,3,28,539416,6,2 ,13,5058,15136,47,16 ,3,28,539424,8,3 ,13,438,15144,34,16 ,3,28,539432,13,4 ,13,8252,15152,49,16 ,3,28,539440,18,8 ,13,8251,15160,49,16 ,3,28,539448,11,8 ,13,8085,15168,45,16 ,3,28,539456,8,3 ,20,17969,6830914,72,0 ,17,923,9976644,24,0 ,44,15152,1063748,24,0 ,44,15152,3160900,24,0 ,17,923,8403780,56,0 ,13,8084,15176,45,16 ,3,28,539464,6,2 ,13,8083,15184,45,16 ,3,28,539472,7,2 ,13,438,15192,34,16 ,3,28,539480,7,2 ,13,5124,15200,46,16 ,3,28,539488,8,3 ,20,23667,21511010,256,0 ,13,5128,15208,47,16 ,3,28,539496,26,12 ,13,8072,15216,49,16 ,3,28,539504,15,12 ,13,7272,15224,47,16 ,3,28,539512,8,3 ,13,438,15232,34,16 ,3,28,539520,8,3 ,17,923,15235,16,0 ,17,923,9452420,40,0 ,17,923,7879556,48,0 ,44,15152,2112388,120,0 ,45,15153,4733828,24,0 ,13,5149,15240,51,16 ,3,28,539528,8,3 ,13,5132,15248,43,16 ,3,28,539536,8,3 ,13,438,15256,34,16 ,3,28,539544,8,3 ,13,7269,15264,49,16 ,3,28,539552,8,3 ,13,5158,15272,47,16 ,3,28,539560,8,3 ,13,5150,15280,44,16 ,3,28,539568,8,3 ,13,5151,15288,47,16 ,3,28,539576,4,1 ,13,438,15296,34,16 ,3,28,539584,10,4 ,17,923,8928196,24,0 ,17,923,6831044,48,0 ,17,923,6306756,16,0 ,44,15152,1588164,80,0 ,45,15153,5258180,24,0 ,13,5152,15304,43,16 ,3,28,539592,38,18 ,13,7263,15312,51,16 ,3,28,539600,7,2 ,13,5160,15320,49,16 ,3,28,539608,4,1 ,13,5161,15328,47,16 ,3,28,539616,6,2 ,13,438,15336,34,16 ,3,28,539624,8,3 ,13,5162,15344,49,16 ,3,28,539632,14,6 ,13,5163,15352,49,16 ,3,28,539640,8,3 ,13,5192,15360,49,16 ,3,28,539648,10,3 ,17,923,15363,32,0 ,17,923,9976836,80,0 ,17,923,7355396,40,0 ,43,15151,15364,120,0 ,44,15152,1063940,24,0 ,44,15152,3161092,24,0 ,13,5190,15368,46,16 ,3,28,539656,6,2 ,13,438,15376,34,16 ,3,28,539664,6,2 ,13,5181,15384,54,16 ,3,28,539672,4,1 ,13,5169,15392,50,16 ,3,28,539680,8,3 ,13,5165,15400,52,16 ,3,28,539688,14,6 ,13,438,15408,34,16 ,3,28,539696,7,2 ,13,5180,15416,47,16 ,3,28,539704,10,4 ,13,438,15424,34,16 ,3,28,539712,7,2 ,45,15153,4734020,16,0 ,17,923,6306884,24,0 ,44,15152,539716,40,0 ,45,15153,4209732,24,0 ,13,5173,15432,48,16 ,3,28,539720,4,1 ,13,5177,15440,47,16 ,3,28,539728,10,4 ,13,5182,15448,47,16 ,3,28,539736,7,2 ,13,5196,15456,50,16 ,3,28,539744,7,2 ,13,5197,15464,47,16 ,3,28,539752,32,15 ,13,5198,15472,49,16 ,3,28,539760,10,4 ,13,5210,15480,47,16 ,3,28,539768,7,2 ,13,5211,15488,47,16 ,3,28,539776,4,1 ,17,923,8928388,72,0 ,45,15153,5258372,16,0 ,13,5212,15496,45,16 ,3,28,539784,10,4 ,13,5213,15504,49,16 ,3,28,539792,4,1 ,13,5214,15512,45,16 ,3,28,539800,12,5 ,13,5227,15520,51,16 ,3,28,539808,16,7 ,13,5229,15528,49,16 ,3,28,539816,4,1 ,13,7246,15536,48,16 ,3,28,539824,8,3 ,13,438,15544,34,16 ,3,28,539832,6,2 ,13,7242,15552,48,16 ,3,28,539840,14,6 ,17,923,9452740,48,0 ,44,15152,1064132,24,0 ,44,15152,3161284,24,0 ,45,15153,4734148,16,0 ,13,7233,15560,46,16 ,3,28,539848,10,4 ,13,7230,15568,46,16 ,3,28,539856,4,1 ,13,438,15576,34,16 ,3,28,539864,20,9 ,13,5244,15584,47,16 ,3,28,539872,22,10 ,20,16929,4209890,64,0 ,20,26079,27802850,344,0 ,13,5254,15592,45,16 ,3,28,539880,6,2 ,13,438,15600,34,16 ,3,28,539888,12,5 ,13,5247,15608,43,16 ,3,28,539896,15,5 ,13,5249,15616,49,16 ,3,28,539904,7,2 ,20,25314,25705730,228,0 ,17,923,15619,16,0 ,17,923,8404228,48,0 ,17,923,7879940,24,0 ,17,923,6307076,32,0 ,44,15152,2637060,272,0 ,45,15153,4209924,24,0 ,45,15153,5258500,24,0 ,13,5300,15624,49,16 ,3,28,539912,10,4 ,13,5259,15632,45,16 ,3,28,539920,10,3 ,13,5258,15640,45,16 ,3,28,539928,52,25 ,13,5256,15648,43,16 ,3,28,539936,4,1 ,13,438,15656,36,16 ,3,28,539944,28,13 ,13,5294,15664,49,16 ,3,28,539952,4,1 ,13,5292,15672,48,16 ,3,28,539960,6,2 ,13,438,15680,34,16 ,3,28,539968,14,5 ,20,20873,14171458,944,0 ,20,19906,11025730,12,0 ,45,15153,4734276,24,0 ,17,923,7355716,40,0 ,17,923,6831428,40,0 ,44,15152,3685700,32,0 ,13,5262,15688,47,16 ,3,28,539976,12,4 ,13,5263,15696,47,16 ,3,28,539984,14,5 ,13,5264,15704,47,16 ,3,28,539992,44,21 ,13,5290,15712,51,16 ,3,28,540000,4,1 ,13,438,15720,34,16 ,3,28,540008,8,3 ,13,5282,15728,48,16 ,3,28,540016,7,2 ,13,5276,15736,47,16 ,3,28,540024,16,7 ,13,438,15744,34,16 ,3,28,540032,8,3 ,20,17970,6831490,972,0 ,20,26248,28327298,364,0 ,17,923,15747,32,0 ,44,15152,3161476,24,0 ,44,15152,540036,32,0 ,44,15152,1064324,24,0 ,13,5269,15752,49,16 ,3,28,540040,6,2 ,13,5270,15760,47,16 ,3,28,540048,25,13 ,13,5272,15768,47,16 ,3,28,540056,6,2 ,13,5285,15776,47,16 ,3,28,540064,7,2 ,20,19907,11025826,24,0 ,13,5286,15784,47,16 ,3,28,540072,111,67 ,13,5295,15792,47,16 ,3,28,540080,4,1 ,13,5296,15800,48,16 ,3,28,540088,6,2 ,13,5297,15808,49,16 ,3,28,540096,8,3 ,45,15153,5258692,56,0 ,17,923,7880132,64,0 ,45,15153,4210116,112,0 ,13,7217,15816,51,16 ,3,28,540104,10,3 ,13,7126,15824,48,16 ,3,28,540112,10,4 ,13,5405,15832,45,16 ,3,28,540120,10,4 ,13,438,15840,34,16 ,3,28,540128,6,2 ,20,944,15841,48,0 ,13,5308,15848,47,16 ,3,28,540136,6,2 ,13,5383,15856,54,16 ,3,28,540144,25,13 ,13,5357,15864,47,16 ,3,28,540152,4,1 ,13,438,15872,36,16 ,3,28,540160,14,6 ,20,18411,7880194,64,0 ,45,15153,4734468,16,0 ,17,923,6307332,16,0 ,13,5311,15880,53,16 ,3,28,540168,8,3 ,13,5319,15888,49,16 ,3,28,540176,7,2 ,13,5320,15896,47,16 ,3,28,540184,12,5 ,13,5321,15904,47,16 ,3,28,540192,8,3 ,13,5322,15912,49,16 ,3,28,540200,8,3 ,13,5323,15920,47,16 ,3,28,540208,7,2 ,13,5324,15928,45,16 ,3,28,540216,4,1 ,13,5325,15936,49,16 ,3,28,540224,24,11 ,17,923,9453124,40,0 ,44,15152,1588804,96,0 ,44,15152,1064516,40,0 ,44,15152,3161668,24,0 ,44,15152,3685956,32,0 ,13,5326,15944,47,16 ,3,28,540232,10,4 ,13,5343,15952,50,16 ,3,28,540240,6,2 ,13,5346,15960,47,16 ,3,28,540248,6,2 ,13,5347,15968,47,16 ,3,28,540256,25,13 ,20,19908,11026018,24,0 ,13,5373,15976,49,16 ,3,28,540264,7,2 ,13,5393,15984,53,16 ,3,28,540272,7,2 ,13,5400,15992,55,16 ,3,28,540280,103,67 ,13,5401,16000,55,16 ,3,28,540288,62,30 ,17,923,16003,16,0 ,17,923,9977476,24,0 ,17,923,7356036,32,0 ,17,923,6831748,48,0 ,17,923,6307460,24,0 ,44,15152,540292,24,0 ,45,15153,4734596,16,0 ,17,923,8404612,24,0 ,13,5402,16008,47,16 ,3,28,540296,7,2 ,13,5443,16016,50,16 ,3,28,540304,7,2 ,13,438,16024,34,16 ,3,28,540312,8,3 ,13,5412,16032,51,16 ,3,28,540320,7,2 ,13,5417,16040,51,16 ,3,28,540328,14,6 ,13,5423,16048,51,16 ,3,28,540336,8,3 ,13,5425,16056,51,16 ,3,28,540344,8,3 ,13,5430,16064,49,16 ,3,28,540352,6,2 ,17,923,8928964,72,0 ,13,438,16072,34,16 ,3,28,540360,26,12 ,13,5778,16080,52,16 ,3,28,540368,6,2 ,13,438,16088,34,16 ,3,28,540376,10,3 ,13,5759,16096,43,16 ,3,28,540384,4,1 ,20,16930,4210402,184,0 ,13,438,16104,34,16 ,3,28,540392,6,2 ,13,5451,16112,47,16 ,3,28,540400,8,3 ,13,5452,16120,43,16 ,3,28,540408,10,4 ,13,5738,16128,49,16 ,3,28,540416,6,2 ,20,16630,3686146,60,0 ,17,923,16131,16,0 ,45,15153,4734724,24,0 ,44,15152,3161860,48,0 ,13,5476,16136,55,16 ,3,28,540424,6,2 ,13,5727,16144,49,16 ,3,28,540432,7,2 ,13,5484,16152,49,16 ,3,28,540440,7,2 ,13,5482,16160,47,16 ,3,28,540448,7,2 ,20,19909,11026210,24,0 ,13,438,16168,34,16 ,3,28,540456,8,3 ,13,5622,16176,49,16 ,3,28,540464,7,2 ,13,5621,16184,45,16 ,3,28,540472,14,6 ,13,5503,16192,45,16 ,3,28,540480,8,3 ,17,923,9977668,32,0 ,17,923,6307652,32,0 ,44,15152,2113348,40,0 ,44,15152,540484,24,0 ,44,15152,3686212,32,0 ,17,923,8404804,48,0 ,13,5502,16200,43,16 ,3,28,540488,6,2 ,13,438,16208,34,16 ,3,28,540496,10,4 ,13,5485,16216,47,16 ,3,28,540504,6,2 ,13,5488,16224,47,16 ,3,28,540512,6,2 ,20,945,16225,120,0 ,20,20462,13123426,80,0 ,13,5490,16232,49,16 ,3,28,540520,7,2 ,13,5499,16240,50,16 ,3,28,540528,8,3 ,13,438,16248,34,16 ,3,28,540536,7,2 ,13,5506,16256,47,16 ,3,28,540544,14,6 ,20,15171,16258,12,0 ,17,923,16259,32,0 ,17,923,9453444,40,0 ,17,923,7356292,32,0 ,44,15152,1064836,16,0 ,45,15153,5259140,112,0 ,13,5510,16264,49,16 ,3,28,540552,8,3 ,13,5608,16272,48,16 ,3,28,540560,6,2 ,13,5533,16280,47,16 ,3,28,540568,10,3 ,13,438,16288,34,16 ,3,28,540576,6,2 ,20,23892,22036386,52,0 ,13,5518,16296,45,16 ,3,28,540584,8,3 ,13,5529,16304,49,16 ,3,28,540592,10,4 ,13,5530,16312,49,16 ,3,28,540600,6,2 ,13,5600,16320,47,16 ,3,28,540608,6,2 ,20,24157,22560706,24,0 ,45,15153,4734916,32,0 ,17,923,7880644,40,0 ,43,15151,16324,32,0 ,13,438,16328,34,16 ,3,28,540616,7,2 ,13,5544,16336,50,16 ,3,28,540624,8,3 ,13,5545,16344,45,16 ,3,28,540632,7,2 ,13,5546,16352,45,16 ,3,28,540640,14,6 ,20,19910,11026402,24,0 ,20,15172,16354,136,0 ,13,5595,16360,48,16 ,3,28,540648,8,3 ,13,438,16368,34,16 ,3,28,540656,6,2 ,13,5553,16376,49,16 ,3,28,540664,10,3 ,13,5554,16384,49,16 ,3,28,540672,8,3 ,20,18412,7880706,12,0 ,44,15152,1064964,24,0 ,17,923,6832132,40,0 ,44,15152,540676,24,0 ,13,5556,16392,48,16 ,3,28,540680,8,3 ,13,5557,16400,47,16 ,3,28,540688,7,2 ,13,5591,16408,47,16 ,3,28,540696,59,35 ,13,5590,16416,45,16 ,3,28,540704,8,3 ,13,438,16424,34,16 ,3,28,540712,8,3 ,13,5576,16432,49,16 ,3,28,540720,8,3 ,13,5575,16440,49,16 ,3,28,540728,38,18 ,13,5568,16448,47,16 ,3,28,540736,6,2 ,20,15317,540738,460,0 ,17,923,9977924,24,0 ,17,923,6307908,40,0 ,44,15152,3686468,32,0 ,13,5561,16456,47,16 ,3,28,540744,7,2 ,13,5559,16464,45,16 ,3,28,540752,10,4 ,13,5558,16472,43,16 ,3,28,540760,7,2 ,13,5562,16480,47,16 ,3,28,540768,104,67 ,20,18413,7880802,12,0 ,13,5578,16488,49,16 ,3,28,540776,64,31 ,13,5579,16496,49,16 ,3,28,540784,7,2 ,13,5580,16504,49,16 ,3,28,540792,8,3 ,13,5583,16512,47,16 ,3,28,540800,7,2 ,20,24158,22560898,84,0 ,17,923,16515,32,0 ,44,15152,3162244,88,0 ,17,923,7356548,32,0 ,44,15152,2113668,56,0 ,13,5585,16520,49,16 ,3,28,540808,14,6 ,13,5587,16528,49,16 ,3,28,540816,8,3 ,13,5610,16536,53,16 ,3,28,540824,8,3 ,13,5616,16544,47,16 ,3,28,540832,8,3 ,20,19911,11026594,24,0 ,13,5623,16552,45,16 ,3,28,540840,6,2 ,13,5624,16560,49,16 ,3,28,540848,4,1 ,13,5681,16568,48,16 ,3,28,540856,4,1 ,13,5672,16576,45,16 ,3,28,540864,8,3 ,20,19659,10502338,804,0 ,20,18414,7880898,12,0 ,17,923,9453764,32,0 ,43,15151,16580,32,0 ,44,15152,540868,32,0 ,44,15152,1065156,24,0 ,45,15153,4735172,16,0 ,17,923,8405188,24,0 ,13,438,16584,34,16 ,3,28,540872,8,3 ,13,5669,16592,47,16 ,3,28,540880,4,1 ,13,5678,16600,49,16 ,3,28,540888,6,2 ,13,5682,16608,47,16 ,3,28,540896,4,1 ,20,16631,3686626,132,0 ,13,5717,16616,49,16 ,3,28,540904,8,3 ,13,5712,16624,48,16 ,3,28,540912,4,1 ,13,438,16632,34,16 ,3,28,540920,10,4 ,13,5687,16640,49,16 ,3,28,540928,78,38 ,17,923,9978116,40,0 ,17,923,7880964,24,0 ,17,923,8929540,32,0 ,13,5689,16648,49,16 ,3,28,540936,4,1 ,13,5691,16656,49,16 ,3,28,540944,6,2 ,13,5695,16664,47,16 ,3,28,540952,4,1 ,13,5741,16672,49,16 ,3,28,540960,9,4 ,20,18415,7880994,12,0 ,13,5746,16680,45,16 ,3,28,540968,15,7 ,13,5747,16688,47,16 ,3,28,540976,4,1 ,13,5748,16696,49,16 ,3,28,540984,62,35 ,13,5756,16704,48,16 ,3,28,540992,6,2 ,20,23893,22036802,224,0 ,45,15153,4735300,16,0 ,17,923,6832452,24,0 ,44,15152,1589572,400,0 ,44,15152,3686724,24,0 ,45,15153,4211012,24,0 ,13,5751,16712,43,16 ,3,28,541000,44,21 ,13,438,16720,34,16 ,3,28,541008,7,2 ,13,5769,16728,49,16 ,3,28,541016,4,1 ,13,7116,16736,50,16 ,3,28,541024,8,3 ,20,19912,11026786,24,0 ,13,5790,16744,47,16 ,3,28,541032,18,8 ,13,5787,16752,45,16 ,3,28,541040,8,3 ,13,438,16760,34,16 ,3,28,541048,7,2 ,13,438,16768,38,16 ,3,28,541056,8,3 ,20,18416,7881090,12,0 ,17,923,16771,32,0 ,17,923,8405380,24,0 ,17,923,7356804,16,0 ,17,923,6308228,40,0 ,44,15152,1065348,24,0 ,13,5802,16776,49,16 ,3,28,541064,7,2 ,13,5809,16784,51,16 ,3,28,541072,4,1 ,13,7110,16792,49,16 ,3,28,541080,9,4 ,13,7102,16800,50,16 ,3,28,541088,10,4 ,20,24867,24658338,68,0 ,13,5811,16808,46,16 ,3,28,541096,14,6 ,13,438,16816,36,16 ,3,28,541104,43,23 ,13,5824,16824,49,16 ,3,28,541112,4,1 ,13,7083,16832,51,16 ,3,28,541120,6,2 ,17,923,9454020,40,0 ,17,923,7881156,56,0 ,43,15151,16836,72,0 ,44,15152,541124,24,0 ,45,15153,4735428,224,0 ,13,7063,16840,43,16 ,3,28,541128,7,2 ,13,438,16848,34,16 ,3,28,541136,10,4 ,13,7041,16856,49,16 ,3,28,541144,9,3 ,13,7036,16864,51,16 ,3,28,541152,4,1 ,20,20463,13124066,12,0 ,20,18417,7881186,52,0 ,13,438,16872,34,16 ,3,28,541160,8,3 ,13,5835,16880,49,16 ,3,28,541168,14,5 ,13,5837,16888,48,16 ,3,28,541176,4,1 ,13,5838,16896,49,16 ,3,28,541184,4,1 ,17,923,8929796,24,0 ,17,923,7356932,40,0 ,17,923,6832644,32,0 ,44,15152,3686916,32,0 ,45,15153,4211204,24,0 ,13,5839,16904,45,16 ,3,28,541192,8,3 ,13,5840,16912,43,16 ,3,28,541200,7,2 ,13,7030,16920,49,16 ,3,28,541208,5,2 ,13,438,16928,34,16 ,3,28,541216,4,1 ,20,19913,11026978,12,0 ,13,5844,16936,49,16 ,3,28,541224,8,3 ,13,6974,16944,49,16 ,3,28,541232,12,4 ,13,6588,16952,47,16 ,3,28,541240,18,6 ,13,6429,16960,49,16 ,3,28,541248,4,1 ,20,20464,13124162,84,0 ,17,923,9978436,80,0 ,44,15152,2114116,24,0 ,44,15152,1065540,88,0 ,17,923,8405572,24,0 ,13,6426,16968,45,16 ,3,28,541256,4,1 ,13,6425,16976,47,16 ,3,28,541264,26,11 ,13,438,16984,38,16 ,3,28,541272,4,1 ,13,5860,16992,53,16 ,3,28,541280,6,2 ,13,5853,17000,48,16 ,3,28,541288,26,11 ,13,438,17008,34,16 ,3,28,541296,4,1 ,13,5856,17016,49,16 ,3,28,541304,6,2 ,13,5868,17024,47,16 ,3,28,541312,4,1 ,20,19914,11027074,456,0 ,20,19096,9454210,1348,0 ,17,923,17027,24,0 ,44,15152,541316,24,0 ,13,5876,17032,49,16 ,3,28,541320,7,2 ,13,5877,17040,48,16 ,3,28,541328,4,1 ,13,5878,17048,47,16 ,3,28,541336,9,4 ,13,6384,17056,49,16 ,3,28,541344,29,15 ,13,6383,17064,47,16 ,3,28,541352,4,1 ,13,438,17072,34,16 ,3,28,541360,6,2 ,13,5881,17080,49,16 ,3,28,541368,4,1 ,13,5882,17088,48,16 ,3,28,541376,7,2 ,17,923,8929988,48,0 ,17,923,6308548,24,0 ,45,15153,4211396,16,0 ,13,5883,17096,49,16 ,3,28,541384,10,3 ,13,5888,17104,49,16 ,3,28,541392,8,3 ,13,5889,17112,49,16 ,3,28,541400,18,8 ,13,6369,17120,47,16 ,3,28,541408,11,4 ,13,6368,17128,45,16 ,3,28,541416,6,2 ,13,438,17136,34,16 ,3,28,541424,14,5 ,13,5890,17144,46,16 ,3,28,541432,4,1 ,13,5896,17152,47,16 ,3,28,541440,47,16 ,17,923,9454340,32,0 ,17,923,6832900,24,0 ,44,15152,2114308,24,0 ,44,15152,3687172,32,0 ,45,15153,5260036,16,0 ,17,923,8405764,24,0 ,13,438,17160,34,16 ,3,28,541448,10,3 ,13,5925,17168,47,16 ,3,28,541456,6,2 ,13,5915,17176,46,16 ,3,28,541464,9,3 ,13,5910,17184,49,16 ,3,28,541472,8,3 ,20,946,17185,40,0 ,20,24159,22561570,2988,0 ,13,438,17192,36,16 ,3,28,541480,7,2 ,13,5903,17200,50,16 ,3,28,541488,4,1 ,13,5904,17208,45,16 ,3,28,541496,12,5 ,13,5905,17216,47,16 ,3,28,541504,16,7 ,17,923,17219,16,0 ,45,15153,4211524,32,0 ,17,923,7357252,32,0 ,44,15152,541508,40,0 ,44,15152,3162948,24,0 ,13,438,17224,34,16 ,3,28,541512,10,4 ,13,5918,17232,47,16 ,3,28,541520,7,2 ,13,5922,17240,51,16 ,3,28,541528,8,3 ,13,5937,17248,50,16 ,3,28,541536,4,1 ,20,23668,21513058,1156,0 ,13,438,17256,34,16 ,3,28,541544,8,3 ,13,5930,17264,49,16 ,3,28,541552,7,2 ,13,6367,17272,51,16 ,3,28,541560,5,2 ,13,5964,17280,51,16 ,3,28,541568,4,1 ,20,18418,7881602,12,0 ,20,25843,27280258,540,0 ,45,15153,5260164,40,0 ,17,923,7881604,32,0 ,17,923,6308740,24,0 ,13,2419,17288,44,16 ,3,28,541576,24,11 ,13,438,17296,36,16 ,3,28,541584,6,2 ,13,5938,17304,45,16 ,3,28,541592,10,4 ,13,5943,17312,47,16 ,3,28,541600,10,4 ,20,20708,13648802,188,0 ,13,5942,17320,47,16 ,3,28,541608,7,2 ,13,5957,17328,54,16 ,3,28,541616,20,9 ,13,5953,17336,50,16 ,3,28,541624,7,2 ,13,5952,17344,48,16 ,3,28,541632,7,2 ,20,24868,24658882,268,0 ,17,923,17347,16,0 ,17,923,8405956,24,0 ,17,923,6833092,32,0 ,44,15152,2114500,24,0 ,13,5950,17352,48,16 ,3,28,541640,8,3 ,13,5951,17360,43,16 ,3,28,541648,4,1 ,13,438,17368,38,16 ,3,28,541656,6,2 ,13,6340,17376,51,16 ,3,28,541664,12,5 ,20,22680,19416034,360,0 ,20,18419,7881698,12,0 ,20,22506,18891746,104,0 ,13,6329,17384,49,16 ,3,28,541672,16,7 ,13,5975,17392,48,16 ,3,28,541680,10,4 ,13,438,17400,36,16 ,3,28,541688,7,2 ,13,5979,17408,47,16 ,3,28,541696,12,5 ,20,22944,19940354,324,0 ,20,18163,7357442,92,0 ,17,923,9454596,40,0 ,43,15151,17412,32,0 ,44,15152,3163140,16,0 ,44,15152,3687428,48,0 ,13,6320,17416,51,16 ,3,28,541704,7,2 ,13,6317,17424,45,16 ,3,28,541712,7,2 ,13,438,17432,34,16 ,3,28,541720,61,35 ,13,5982,17440,49,16 ,3,28,541728,6,2 ,20,15173,17442,504,0 ,20,25315,25707554,252,0 ,13,5983,17448,49,16 ,3,28,541736,8,3 ,13,5984,17456,51,16 ,3,28,541744,8,3 ,13,6272,17464,53,16 ,3,28,541752,42,20 ,13,5987,17472,45,16 ,3,28,541760,7,2 ,20,18420,7881794,12,0 ,17,923,17475,32,0 ,17,923,8930372,40,0 ,17,923,7357508,24,0 ,17,923,6308932,40,0 ,45,15153,4211780,24,0 ,13,438,17480,34,16 ,3,28,541768,10,4 ,13,5999,17488,45,16 ,3,28,541776,7,2 ,13,6052,17496,49,16 ,3,28,541784,8,3 ,13,6245,17504,51,16 ,3,28,541792,7,2 ,20,947,17505,112,0 ,13,6054,17512,51,16 ,3,28,541800,6,2 ,13,438,17520,34,16 ,3,28,541808,14,6 ,13,6059,17528,49,16 ,3,28,541816,4,1 ,13,6062,17536,49,16 ,3,28,541824,26,12 ,17,923,8406148,24,0 ,17,923,7881860,24,0 ,44,15152,2114692,32,0 ,44,15152,541828,40,0 ,44,15152,3163268,56,0 ,13,6064,17544,47,16 ,3,28,541832,8,3 ,13,6096,17552,51,16 ,3,28,541840,4,1 ,13,6089,17560,47,16 ,3,28,541848,8,3 ,13,438,17568,34,16 ,3,28,541856,4,1 ,20,18421,7881890,12,0 ,20,16931,4211874,108,0 ,13,6077,17576,48,16 ,3,28,541864,8,3 ,13,6079,17584,47,16 ,3,28,541872,8,3 ,13,6080,17592,43,16 ,3,28,541880,16,7 ,13,6097,17600,47,16 ,3,28,541888,7,2 ,17,923,9979076,88,0 ,17,923,6833348,24,0 ,45,15153,5260484,32,0 ,13,6102,17608,47,16 ,3,28,541896,6,2 ,13,6239,17616,50,16 ,3,28,541904,16,7 ,13,6119,17624,49,16 ,3,28,541912,7,2 ,13,6112,17632,47,16 ,3,28,541920,10,4 ,20,20465,13124834,440,0 ,13,438,17640,34,16 ,3,28,541928,4,1 ,13,438,17648,34,16 ,3,28,541936,28,13 ,13,6234,17656,51,16 ,3,28,541944,7,2 ,13,438,17664,36,16 ,3,28,541952,101,67 ,20,18422,7881986,12,0 ,20,16632,3687682,240,0 ,45,15153,4211972,24,0 ,17,923,7357700,64,0 ,43,15151,17668,24,0 ,44,15152,1066244,24,0 ,13,6124,17672,49,16 ,3,28,541960,8,3 ,13,438,17680,34,16 ,3,28,541968,6,2 ,13,6130,17688,45,16 ,3,28,541976,58,28 ,13,6129,17696,45,16 ,3,28,541984,4,1 ,13,438,17704,34,16 ,3,28,541992,20,9 ,13,6125,17712,47,16 ,3,28,542000,6,2 ,13,6152,17720,49,16 ,3,28,542008,8,3 ,13,6133,17728,49,16 ,3,28,542016,25,13 ,17,923,17731,16,0 ,17,923,9454916,40,0 ,17,923,7882052,32,0 ,17,923,8406340,24,0 ,13,438,17736,36,16 ,3,28,542024,10,4 ,13,6134,17744,45,16 ,3,28,542032,7,2 ,13,6137,17752,49,16 ,3,28,542040,14,6 ,13,438,17760,34,16 ,3,28,542048,4,1 ,20,18423,7882082,376,0 ,13,6138,17768,47,16 ,3,28,542056,10,4 ,13,6140,17776,43,16 ,3,28,542064,7,2 ,13,6141,17784,49,16 ,3,28,542072,61,35 ,13,6143,17792,48,16 ,3,28,542080,8,3 ,20,24688,24135042,772,0 ,17,923,8930692,32,0 ,17,923,6833540,24,0 ,17,923,6309252,24,0 ,44,15152,2639236,64,0 ,44,15152,2114948,24,0 ,44,15152,3687812,40,0 ,13,6146,17800,47,16 ,3,28,542088,8,3 ,13,6208,17808,46,16 ,3,28,542096,42,20 ,13,438,17816,34,16 ,3,28,542104,7,2 ,13,6154,17824,49,16 ,3,28,542112,8,3 ,13,6205,17832,49,16 ,3,28,542120,7,2 ,13,6200,17840,52,16 ,3,28,542128,8,3 ,13,6216,17848,47,16 ,3,28,542136,6,2 ,13,6219,17856,51,16 ,3,28,542144,12,4 ,17,923,17859,16,0 ,45,15153,5260740,16,0 ,43,15151,17860,32,0 ,44,15152,542148,32,0 ,44,15152,1066436,24,0 ,45,15153,4212164,16,0 ,13,6220,17864,50,16 ,3,28,542152,14,5 ,13,6221,17872,51,16 ,3,28,542160,4,1 ,13,6224,17880,49,16 ,3,28,542168,4,1 ,13,6225,17888,47,16 ,3,28,542176,8,3 ,13,6226,17896,45,16 ,3,28,542184,14,5 ,13,6227,17904,51,16 ,3,28,542192,4,1 ,13,6231,17912,51,16 ,3,28,542200,6,2 ,13,6240,17920,49,16 ,3,28,542208,6,2 ,20,16045,2115074,56,0 ,17,923,8406532,24,0 ,13,6273,17928,45,16 ,3,28,542216,8,3 ,13,6274,17936,49,16 ,3,28,542224,10,3 ,13,6278,17944,47,16 ,3,28,542232,8,3 ,13,6279,17952,49,16 ,3,28,542240,7,2 ,13,6280,17960,49,16 ,3,28,542248,5,2 ,13,6284,17968,51,16 ,3,28,542256,16,5 ,13,6285,17976,47,16 ,3,28,542264,4,1 ,13,6286,17984,49,16 ,3,28,542272,8,3 ,17,923,17987,32,0 ,45,15153,5260868,24,0 ,17,923,7882308,32,0 ,17,923,6833732,32,0 ,17,923,6309444,24,0 ,44,15152,2115140,32,0 ,44,15152,3163716,64,0 ,45,15153,4212292,16,0 ,13,6289,17992,50,16 ,3,28,542280,114,67 ,13,6290,18000,45,16 ,3,28,542288,8,3 ,13,6295,18008,53,16 ,3,28,542296,7,2 ,13,6310,18016,49,16 ,3,28,542304,20,9 ,13,6311,18024,47,16 ,3,28,542312,40,19 ,13,6312,18032,47,16 ,3,28,542320,4,1 ,13,6314,18040,49,16 ,3,28,542328,6,2 ,13,6324,18048,51,16 ,3,28,542336,20,7 ,20,18634,8406658,404,0 ,17,923,9455236,40,0 ,44,15152,1066628,64,0 ,17,923,8930948,32,0 ,13,6325,18056,49,16 ,3,28,542344,4,1 ,13,6349,18064,46,16 ,3,28,542352,10,4 ,13,6350,18072,51,16 ,3,28,542360,14,5 ,13,6351,18080,49,16 ,3,28,542368,4,1 ,13,6363,18088,51,16 ,3,28,542376,10,3 ,13,6364,18096,49,16 ,3,28,542384,6,2 ,13,6370,18104,49,16 ,3,28,542392,10,4 ,13,6371,18112,49,16 ,3,28,542400,10,4 ,17,923,8406724,32,0 ,43,15151,18116,136,0 ,44,15152,542404,24,0 ,44,15152,3688132,32,0 ,45,15153,4212420,16,0 ,13,6372,18120,49,16 ,3,28,542408,7,2 ,13,6375,18128,49,16 ,3,28,542416,7,2 ,13,6376,18136,47,16 ,3,28,542424,8,3 ,13,6377,18144,49,16 ,3,28,542432,59,35 ,20,18164,7358178,48,0 ,13,6378,18152,50,16 ,3,28,542440,8,3 ,13,6379,18160,47,16 ,3,28,542448,10,4 ,13,6380,18168,49,16 ,3,28,542456,4,1 ,13,6385,18176,49,16 ,3,28,542464,16,7 ,45,15153,5261060,32,0 ,17,923,7358212,32,0 ,17,923,6309636,24,0 ,13,6386,18184,43,16 ,3,28,542472,6,2 ,13,6387,18192,49,16 ,3,28,542480,38,18 ,13,6388,18200,49,16 ,3,28,542488,4,1 ,13,6389,18208,49,16 ,3,28,542496,16,7 ,20,22507,18892578,312,0 ,13,6400,18216,49,16 ,3,28,542504,10,4 ,13,6395,18224,49,16 ,3,28,542512,4,1 ,13,438,18232,34,16 ,3,28,542520,16,7 ,13,6392,18240,48,16 ,3,28,542528,6,2 ,17,923,18243,24,0 ,45,15153,4212548,24,0 ,17,923,7882564,32,0 ,17,923,6833988,32,0 ,44,15152,2115396,32,0 ,13,6421,18248,49,16 ,3,28,542536,107,67 ,13,6419,18256,46,16 ,3,28,542544,12,4 ,13,438,18264,34,16 ,3,28,542552,19,6 ,13,6401,18272,45,16 ,3,28,542560,17,6 ,13,6416,18280,51,16 ,3,28,542568,22,7 ,13,438,18288,34,16 ,3,28,542576,20,7 ,13,6434,18296,49,16 ,3,28,542584,7,2 ,13,6435,18304,49,16 ,3,28,542592,5,2 ,17,923,9979780,40,0 ,44,15152,2639748,96,0 ,44,15152,542596,40,0 ,17,923,8931204,40,0 ,13,6436,18312,43,16 ,3,28,542600,25,13 ,13,6437,18320,43,16 ,3,28,542608,6,2 ,13,6458,18328,47,16 ,3,28,542616,6,2 ,13,6452,18336,47,16 ,3,28,542624,6,2 ,20,26080,27805602,288,0 ,13,438,18344,34,16 ,3,28,542632,6,2 ,13,6439,18352,49,16 ,3,28,542640,82,35 ,13,6440,18360,47,16 ,3,28,542648,7,2 ,13,6441,18368,47,16 ,3,28,542656,58,35 ,20,21949,17319874,1212,0 ,20,25660,26757058,276,0 ,20,16046,2115522,240,0 ,17,923,9455556,48,0 ,17,923,6309828,24,0 ,44,15152,3688388,64,0 ,17,923,8406980,32,0 ,13,6450,18376,48,16 ,3,28,542664,24,8 ,13,6584,18384,51,16 ,3,28,542672,36,17 ,13,438,18392,36,16 ,3,28,542680,4,1 ,13,6459,18400,47,16 ,3,28,542688,14,6 ,20,948,18401,40,0 ,20,22227,18368482,164,0 ,13,6464,18408,48,16 ,3,28,542696,6,2 ,13,6485,18416,45,16 ,3,28,542704,13,4 ,13,438,18424,34,16 ,3,28,542712,11,4 ,13,6482,18432,45,16 ,3,28,542720,22,7 ,20,16932,4212738,60,0 ,17,923,18435,24,0 ,45,15153,5261316,16,0 ,17,923,7358468,64,0 ,45,15153,4212740,16,0 ,13,438,18440,34,16 ,3,28,542728,20,7 ,13,6491,18448,47,16 ,3,28,542736,10,3 ,13,438,18456,34,16 ,3,28,542744,8,3 ,13,6521,18464,47,16 ,3,28,542752,10,3 ,13,6494,18472,43,16 ,3,28,542760,8,3 ,13,438,18480,36,16 ,3,28,542768,22,7 ,13,6500,18488,48,16 ,3,28,542776,20,7 ,13,6505,18496,49,16 ,3,28,542784,7,2 ,20,23894,22038594,20,0 ,44,15152,3164228,32,0 ,17,923,7882820,24,0 ,17,923,6834244,32,0 ,44,15152,2115652,104,0 ,13,6506,18504,45,16 ,3,28,542792,12,5 ,13,6507,18512,49,16 ,3,28,542800,22,7 ,13,6509,18520,51,16 ,3,28,542808,20,7 ,13,6511,18528,49,16 ,3,28,542816,4,1 ,20,23256,20465762,1232,0 ,20,18165,7358562,24,0 ,13,6512,18536,45,16 ,3,28,542824,6,2 ,13,6517,18544,49,16 ,3,28,542832,14,5 ,13,6518,18552,49,16 ,3,28,542840,7,2 ,13,6559,18560,48,16 ,3,28,542848,46,16 ,45,15153,5261444,48,0 ,17,923,6310020,40,0 ,44,15152,1067140,40,0 ,45,15153,4212868,16,0 ,13,438,18568,34,16 ,3,28,542856,19,16 ,13,6536,18576,49,16 ,3,28,542864,7,2 ,13,6564,18584,49,16 ,3,28,542872,5,2 ,13,6575,18592,49,16 ,3,28,542880,10,3 ,13,6585,18600,47,16 ,3,28,542888,8,3 ,13,6604,18608,49,16 ,3,28,542896,7,2 ,13,438,18616,34,16 ,3,28,542904,5,2 ,13,6595,18624,47,16 ,3,28,542912,10,3 ,17,923,18627,32,0 ,17,923,9980100,24,0 ,44,15152,542916,32,0 ,45,15153,4737220,32,0 ,17,923,8407236,32,0 ,17,923,8931524,40,0 ,13,6592,18632,49,16 ,3,28,542920,8,3 ,13,6600,18640,47,16 ,3,28,542928,19,6 ,13,6599,18648,49,16 ,3,28,542936,17,6 ,13,6652,18656,51,16 ,3,28,542944,7,2 ,20,23895,22038754,80,0 ,20,26249,28330210,360,0 ,13,438,18664,34,16 ,3,28,542952,5,2 ,13,6649,18672,49,16 ,3,28,542960,70,34 ,13,6958,18680,49,16 ,3,28,542968,22,7 ,13,438,18688,34,16 ,3,28,542976,20,7 ,45,15153,4212996,56,0 ,17,923,7883012,24,0 ,13,6655,18696,47,16 ,3,28,542984,17,6 ,13,6925,18704,52,16 ,3,28,542992,19,6 ,13,6664,18712,50,16 ,3,28,543000,17,6 ,13,438,18720,34,16 ,3,28,543008,10,4 ,20,949,18721,112,0 ,20,18166,7358754,1456,0 ,13,6663,18728,43,16 ,3,28,543016,4,1 ,13,438,18736,34,16 ,3,28,543024,101,67 ,13,6723,18744,50,16 ,3,28,543032,13,4 ,13,438,18752,34,16 ,3,28,543040,11,4 ,17,923,9455940,48,0 ,17,923,6834500,24,0 ,44,15152,3164484,48,0 ,13,6722,18760,47,16 ,3,28,543048,10,3 ,13,438,18768,36,16 ,3,28,543056,8,3 ,13,6681,18776,50,16 ,3,28,543064,7,2 ,13,6677,18784,44,16 ,3,28,543072,5,2 ,13,438,18792,34,16 ,3,28,543080,10,3 ,13,6675,18800,43,16 ,3,28,543088,8,3 ,13,6684,18808,47,16 ,3,28,543096,7,2 ,13,6685,18816,47,16 ,3,28,543104,5,2 ,20,20709,13650306,1768,0 ,17,923,9980292,40,0 ,13,6688,18824,47,16 ,3,28,543112,10,3 ,13,6709,18832,54,16 ,3,28,543120,8,3 ,13,6715,18840,47,16 ,3,28,543128,58,28 ,13,6718,18848,50,16 ,3,28,543136,8,3 ,13,6719,18856,52,16 ,3,28,543144,20,7 ,13,6727,18864,49,16 ,3,28,543152,22,7 ,13,438,18872,34,16 ,3,28,543160,20,7 ,13,6724,18880,45,16 ,3,28,543168,20,7 ,17,923,18883,32,0 ,17,923,8407492,32,0 ,17,923,7883204,24,0 ,17,923,6310340,24,0 ,44,15152,543172,88,0 ,44,15152,1067460,368,0 ,44,15152,3688900,64,0 ,45,15153,4737476,40,0 ,13,6730,18888,49,16 ,3,28,543176,22,7 ,13,438,18896,34,16 ,3,28,543184,20,7 ,13,6733,18904,49,16 ,3,28,543192,7,2 ,13,438,18912,34,16 ,3,28,543200,5,2 ,20,16933,4213218,108,0 ,13,6737,18920,49,16 ,3,28,543208,20,7 ,13,438,18928,34,16 ,3,28,543216,10,3 ,13,6734,18936,43,16 ,3,28,543224,8,3 ,13,6750,18944,48,16 ,3,28,543232,22,7 ,17,923,8931844,32,0 ,17,923,7358980,32,0 ,17,923,6834692,24,0 ,45,15153,5261828,40,0 ,13,438,18952,34,16 ,3,28,543240,20,7 ,13,6739,18960,47,16 ,3,28,543248,10,3 ,13,6753,18968,49,16 ,3,28,543256,8,3 ,13,438,18976,34,16 ,3,28,543264,17,6 ,13,6756,18984,49,16 ,3,28,543272,19,6 ,13,438,18992,34,16 ,3,28,543280,17,6 ,13,6759,19000,49,16 ,3,28,543288,20,7 ,13,438,19008,34,16 ,3,28,543296,22,7 ,20,21757,16796226,12,0 ,13,6772,19016,48,16 ,3,28,543304,20,7 ,13,438,19024,34,16 ,3,28,543312,4,1 ,13,6775,19032,49,16 ,3,28,543320,22,7 ,13,438,19040,34,16 ,3,28,543328,20,7 ,13,6778,19048,49,16 ,3,28,543336,4,1 ,13,438,19056,34,16 ,3,28,543344,7,2 ,13,6785,19064,48,16 ,3,28,543352,10,4 ,13,438,19072,34,16 ,3,28,543360,6,2 ,44,15152,2640516,48,0 ,17,923,7883396,24,0 ,17,923,6310532,24,0 ,13,6788,19080,49,16 ,3,28,543368,7,2 ,13,438,19088,34,16 ,3,28,543376,5,2 ,13,6792,19096,49,16 ,3,28,543384,17,6 ,13,438,19104,34,16 ,3,28,543392,7,2 ,20,21758,16796322,212,0 ,13,6789,19112,46,16 ,3,28,543400,5,2 ,13,6795,19120,49,16 ,3,28,543408,17,6 ,13,438,19128,34,16 ,3,28,543416,10,3 ,13,6800,19136,51,16 ,3,28,543424,8,3 ,17,923,19139,16,0 ,17,923,9980612,48,0 ,17,923,6834884,40,0 ,44,15152,3164868,32,0 ,45,15153,4213444,24,0 ,17,923,8407748,48,0 ,17,923,9456324,40,0 ,13,438,19144,34,16 ,3,28,543432,7,2 ,13,6796,19152,45,16 ,3,28,543440,7,2 ,13,6797,19160,45,16 ,3,28,543448,8,3 ,13,6808,19168,49,16 ,3,28,543456,11,4 ,13,438,19176,34,16 ,3,28,543464,7,2 ,13,6807,19184,47,16 ,3,28,543472,5,2 ,13,6804,19192,45,16 ,3,28,543480,20,7 ,13,438,19200,34,16 ,3,28,543488,10,3 ,17,923,8932100,32,0 ,17,923,7359236,64,0 ,43,15151,19204,16,0 ,45,15153,4737796,32,0 ,13,6832,19208,50,16 ,3,28,543496,8,3 ,13,438,19216,34,16 ,3,28,543504,7,2 ,13,6835,19224,50,16 ,3,28,543512,7,2 ,13,438,19232,34,16 ,3,28,543520,108,67 ,13,6919,19240,49,16 ,3,28,543528,11,4 ,13,438,19248,34,16 ,3,28,543536,8,3 ,13,6897,19256,45,16 ,3,28,543544,7,2 ,13,6899,19264,47,16 ,3,28,543552,7,2 ,17,923,19267,24,0 ,45,15153,5262148,128,0 ,17,923,7883588,24,0 ,17,923,6310724,40,0 ,13,6903,19272,47,16 ,3,28,543560,12,5 ,13,6926,19280,51,16 ,3,28,543568,12,4 ,13,6952,19288,49,16 ,3,28,543576,4,1 ,13,6950,19296,50,16 ,3,28,543584,7,2 ,20,23896,22039394,556,0 ,13,6935,19304,51,16 ,3,28,543592,4,1 ,13,6933,19312,49,16 ,3,28,543600,24,11 ,13,6930,19320,49,16 ,3,28,543608,6,2 ,13,438,19328,34,16 ,3,28,543616,4,1 ,45,15153,4213636,48,0 ,44,15152,2116484,80,0 ,43,15151,19332,24,0 ,13,6927,19336,46,16 ,3,28,543624,6,2 ,13,6937,19344,51,16 ,3,28,543632,6,2 ,13,438,19352,34,16 ,3,28,543640,7,2 ,13,6938,19360,47,16 ,3,28,543648,5,2 ,13,6939,19368,49,16 ,3,28,543656,10,3 ,13,6943,19376,47,16 ,3,28,543664,8,3 ,13,6955,19384,51,16 ,3,28,543672,10,3 ,13,6968,19392,49,16 ,3,28,543680,8,3 ,20,18883,8932290,64,0 ,44,15152,3689412,32,0 ,44,15152,3165124,24,0 ,13,438,19400,34,16 ,3,28,543688,72,35 ,13,6963,19408,48,16 ,3,28,543696,6,2 ,13,6964,19416,47,16 ,3,28,543704,7,2 ,13,6965,19424,49,16 ,3,28,543712,4,1 ,13,6966,19432,47,16 ,3,28,543720,10,4 ,13,6975,19440,49,16 ,3,28,543728,8,3 ,13,6976,19448,49,16 ,3,28,543736,7,2 ,13,6977,19456,47,16 ,3,28,543744,5,2 ,20,25316,25709570,356,0 ,17,923,19459,16,0 ,17,923,9456644,40,0 ,17,923,7883780,40,0 ,17,923,6835204,32,0 ,44,15152,2640900,24,0 ,45,15153,4738052,32,0 ,17,923,8932356,40,0 ,13,6979,19464,49,16 ,3,28,543752,23,8 ,13,6980,19472,49,16 ,3,28,543760,13,4 ,13,6998,19480,47,16 ,3,28,543768,11,4 ,13,438,19488,36,16 ,3,28,543776,17,6 ,20,24869,24661026,136,0 ,13,7009,19496,48,16 ,3,28,543784,13,4 ,13,7010,19504,49,16 ,3,28,543792,11,4 ,13,7011,19512,49,16 ,3,28,543800,7,2 ,13,7027,19520,49,16 ,3,28,543808,7,2 ,17,923,9980996,40,0 ,43,15151,19524,16,0 ,17,923,8408132,48,0 ,13,7017,19528,45,16 ,3,28,543816,16,5 ,13,438,19536,34,16 ,3,28,543824,17,6 ,13,7042,19544,43,16 ,3,28,543832,7,2 ,13,7043,19552,49,16 ,3,28,543840,5,2 ,20,21509,16272482,172,0 ,13,7045,19560,51,16 ,3,28,543848,8,3 ,13,7046,19568,47,16 ,3,28,543856,10,3 ,13,7047,19576,43,16 ,3,28,543864,6,3 ,13,7058,19584,51,16 ,3,28,543872,7,2 ,20,16633,3689602,172,0 ,17,923,19587,16,0 ,44,15152,3165316,48,0 ,17,923,6311044,40,0 ,44,15152,543876,56,0 ,13,7059,19592,43,16 ,3,28,543880,5,2 ,13,7060,19600,45,16 ,3,28,543888,8,3 ,13,7069,19608,51,16 ,3,28,543896,13,4 ,13,7075,19616,56,16 ,3,28,543904,11,4 ,20,950,19617,28,0 ,13,7070,19624,52,16 ,3,28,543912,8,3 ,13,7089,19632,49,16 ,3,28,543920,83,40 ,13,7087,19640,50,16 ,3,28,543928,7,2 ,13,438,19648,34,16 ,3,28,543936,4,1 ,20,15579,1068226,12,0 ,44,15152,3689668,64,0 ,44,15152,2641092,64,0 ,43,15151,19652,16,0 ,13,7091,19656,49,16 ,3,28,543944,8,3 ,13,7093,19664,47,16 ,3,28,543952,7,2 ,13,7094,19672,47,16 ,3,28,543960,10,4 ,13,7096,19680,47,16 ,3,28,543968,4,1 ,13,7099,19688,49,16 ,3,28,543976,12,5 ,13,7112,19696,49,16 ,3,28,543984,6,2 ,13,7113,19704,49,16 ,3,28,543992,10,3 ,13,7124,19712,52,16 ,3,28,544000,20,9 ,20,22228,18369794,136,0 ,17,923,19715,16,0 ,45,15153,4738308,32,0 ,17,923,7359748,24,0 ,17,923,6835460,40,0 ,45,15153,4214020,80,0 ,13,7127,19720,47,16 ,3,28,544008,6,2 ,13,438,19728,34,16 ,3,28,544016,187,131 ,13,7130,19736,49,16 ,3,28,544024,6,2 ,13,7135,19744,49,16 ,3,28,544032,38,19 ,20,15580,1068322,380,0 ,13,7136,19752,49,16 ,3,28,544040,296,131 ,13,7141,19760,49,16 ,3,28,544048,4,1 ,13,7142,19768,49,16 ,3,28,544056,59,35 ,13,7143,19776,49,16 ,3,28,544064,8,3 ,20,16934,4214082,60,0 ,17,923,9456964,40,0 ,17,923,7884100,48,0 ,43,15151,19780,16,0 ,17,923,8932676,24,0 ,13,7148,19784,43,16 ,3,28,544072,12,5 ,13,438,19792,34,16 ,3,28,544080,6,2 ,13,7153,19800,47,16 ,3,28,544088,8,3 ,13,438,19808,34,16 ,3,28,544096,8,3 ,13,7212,19816,49,16 ,3,28,544104,6,2 ,13,7179,19824,47,16 ,3,28,544112,10,4 ,13,438,19832,34,16 ,3,28,544120,10,4 ,13,7175,19840,47,16 ,3,28,544128,8,3 ,20,951,19841,4,0 ,17,923,19843,24,0 ,17,923,9981316,32,0 ,13,438,19848,34,16 ,3,28,544136,38,18 ,13,7180,19856,48,16 ,3,28,544144,7,2 ,13,7207,19864,49,16 ,3,28,544152,4,1 ,13,7203,19872,48,16 ,3,28,544160,9,4 ,20,952,19873,4,0 ,20,16251,3165602,884,0 ,13,438,19880,36,16 ,3,28,544168,12,5 ,13,7183,19888,49,16 ,3,28,544176,4,1 ,13,7189,19896,47,16 ,3,28,544184,22,10 ,13,7195,19904,47,16 ,3,28,544192,12,4 ,20,953,19905,176,0 ,20,18884,8932802,48,0 ,17,923,8408516,32,0 ,17,923,7359940,48,0 ,17,923,6311364,24,0 ,44,15152,1592772,96,0 ,43,15151,19908,24,0 ,13,7196,19912,45,16 ,3,28,544200,6,2 ,13,7209,19920,47,16 ,3,28,544208,13,4 ,13,438,19928,36,16 ,3,28,544216,42,20 ,13,438,19936,34,16 ,3,28,544224,23,20 ,13,7237,19944,47,16 ,3,28,544232,7,2 ,13,8047,19952,49,16 ,3,28,544240,5,2 ,13,438,19960,38,16 ,3,28,544248,14,5 ,13,8010,19968,49,16 ,3,28,544256,14,5 ,17,923,8932868,40,0 ,44,15152,2117124,40,0 ,44,15152,3165700,72,0 ,45,15153,4738564,24,0 ,13,8003,19976,56,16 ,3,28,544264,8,3 ,13,7319,19984,57,16 ,3,28,544272,8,3 ,13,7331,19992,47,16 ,3,28,544280,6,2 ,13,7330,20000,47,16 ,3,28,544288,4,1 ,20,22945,19942946,452,0 ,13,7320,20008,47,16 ,3,28,544296,6,2 ,13,7321,20016,44,16 ,3,28,544304,6,2 ,13,438,20024,34,16 ,3,28,544312,28,13 ,13,7332,20032,47,16 ,3,28,544320,16,13 ,17,923,20035,16,0 ,44,15152,544324,96,0 ,17,923,6835780,32,0 ,13,7424,20040,48,16 ,3,28,544328,8,3 ,13,7415,20048,51,16 ,3,28,544336,10,3 ,13,7342,20056,49,16 ,3,28,544344,8,3 ,13,438,20064,34,16 ,3,28,544352,8,3 ,13,438,20072,36,16 ,3,28,544360,25,13 ,13,7343,20080,47,16 ,3,28,544368,6,2 ,13,7348,20088,49,16 ,3,28,544376,6,2 ,13,7363,20096,49,16 ,3,28,544384,6,2 ,17,923,9981572,16,0 ,17,923,6311556,24,0 ,43,15151,20100,56,0 ,17,923,9457284,24,0 ,13,7388,20104,51,16 ,3,28,544392,70,35 ,13,7390,20112,47,16 ,3,28,544400,4,1 ,13,7391,20120,45,16 ,3,28,544408,8,3 ,13,7393,20128,49,16 ,3,28,544416,4,1 ,20,15318,544418,88,0 ,13,7395,20136,47,16 ,3,28,544424,58,35 ,13,7404,20144,51,16 ,3,28,544432,24,11 ,13,7402,20152,47,16 ,3,28,544440,4,1 ,13,438,20160,34,16 ,3,28,544448,102,67 ,17,923,20163,16,0 ,17,923,8408772,24,0 ,17,923,7884484,24,0 ,44,15152,2641604,48,0 ,44,15152,3690180,64,0 ,45,15153,4738756,24,0 ,13,7397,20168,45,16 ,3,28,544456,8,3 ,13,7398,20176,45,16 ,3,28,544464,6,2 ,13,7399,20184,45,16 ,3,28,544472,8,3 ,13,7405,20192,49,16 ,3,28,544480,30,14 ,13,7406,20200,45,16 ,3,28,544488,8,3 ,13,7410,20208,51,16 ,3,28,544496,8,3 ,13,7432,20216,49,16 ,3,28,544504,8,3 ,13,7427,20224,43,16 ,3,28,544512,8,3 ,17,923,9981700,24,0 ,13,438,20232,34,16 ,3,28,544520,8,3 ,13,7669,20240,54,16 ,3,28,544528,6,2 ,13,7668,20248,61,16 ,3,28,544536,11,4 ,13,7436,20256,47,16 ,3,28,544544,8,3 ,20,22681,19418914,2560,0 ,20,16935,4214562,184,0 ,13,438,20264,34,16 ,3,28,544552,6,2 ,13,438,20272,36,16 ,3,28,544560,8,3 ,13,7444,20280,47,16 ,3,28,544568,25,13 ,13,7445,20288,47,16 ,3,28,544576,6,2 ,20,18885,8933186,64,0 ,20,16047,2117442,2420,0 ,17,923,20291,24,0 ,17,923,9457476,48,0 ,17,923,7360324,32,0 ,17,923,6836036,48,0 ,17,923,6311748,32,0 ,44,15152,2117444,72,0 ,45,15153,5263172,16,0 ,17,923,8933188,48,0 ,13,7463,20296,52,16 ,3,28,544584,6,2 ,13,7452,20304,43,16 ,3,28,544592,6,2 ,13,438,20312,34,16 ,3,28,544600,26,11 ,13,7453,20320,49,16 ,3,28,544608,4,1 ,13,7595,20328,47,16 ,3,28,544616,58,35 ,13,438,20336,34,16 ,3,28,544624,6,2 ,13,7527,20344,47,16 ,3,28,544632,36,17 ,13,7528,20352,47,16 ,3,28,544640,10,4 ,17,923,8408964,24,0 ,17,923,7884676,32,0 ,45,15153,4214660,24,0 ,45,15153,4738948,64,0 ,13,7533,20360,47,16 ,3,28,544648,60,29 ,13,7535,20368,45,16 ,3,28,544656,36,17 ,13,7544,20376,51,16 ,3,28,544664,4,1 ,13,7546,20384,47,16 ,3,28,544672,4,1 ,13,7564,20392,48,16 ,3,28,544680,8,3 ,13,438,20400,34,16 ,3,28,544688,62,30 ,13,7567,20408,47,16 ,3,28,544696,33,30 ,13,438,20416,34,16 ,3,28,544704,12,5 ,17,923,9981892,32,0 ,45,15153,5263300,24,0 ,13,7580,20424,48,16 ,3,28,544712,4,1 ,13,438,20432,34,16 ,3,28,544720,16,7 ,13,7574,20440,48,16 ,3,28,544728,6,2 ,13,7576,20448,45,16 ,3,28,544736,6,2 ,13,7577,20456,44,16 ,3,28,544744,8,3 ,13,7585,20464,48,16 ,3,28,544752,8,3 ,13,438,20472,34,16 ,3,28,544760,10,4 ,13,7589,20480,48,16 ,3,28,544768,4,1 ,17,923,20483,16,0 ,13,438,20488,34,16 ,3,28,544776,61,35 ,13,7593,20496,50,16 ,3,28,544784,8,3 ,13,438,20504,34,16 ,3,28,544792,8,3 ,13,7611,20512,51,16 ,3,28,544800,8,3 ,13,7950,20520,51,16 ,3,28,544808,8,3 ,13,438,20528,34,16 ,3,28,544816,6,2 ,13,7677,20536,49,16 ,3,28,544824,8,3 ,13,7678,20544,45,16 ,3,28,544832,8,3 ,17,923,8409156,40,0 ,17,923,7360580,24,0 ,17,923,6312004,24,0 ,44,15152,2641988,24,0 ,43,15151,20548,64,0 ,44,15152,3166276,24,0 ,45,15153,4214852,32,0 ,13,7679,20552,47,16 ,3,28,544840,8,3 ,13,7682,20560,47,16 ,3,28,544848,8,3 ,13,7710,20568,51,16 ,3,28,544856,8,3 ,13,7724,20576,46,16 ,3,28,544864,8,3 ,20,24870,24662114,240,0 ,20,25661,26759266,276,0 ,13,7717,20584,45,16 ,3,28,544872,8,3 ,13,438,20592,34,16 ,3,28,544880,8,3 ,13,7713,20600,45,16 ,3,28,544888,8,3 ,13,7728,20608,47,16 ,3,28,544896,8,3 ,17,923,20611,40,0 ,45,15153,5263492,72,0 ,17,923,7884932,40,0 ,13,7912,20616,49,16 ,3,28,544904,8,3 ,13,7900,20624,51,16 ,3,28,544912,42,20 ,13,7738,20632,54,16 ,3,28,544920,20,9 ,13,438,20640,34,16 ,3,28,544928,12,9 ,20,26081,27807906,1176,0 ,13,7747,20648,47,16 ,3,28,544936,14,5 ,13,7894,20656,49,16 ,3,28,544944,4,1 ,13,438,20664,34,16 ,3,28,544952,16,7 ,13,7759,20672,49,16 ,3,28,544960,8,3 ,20,19915,11030722,12,0 ,20,17511,5787842,12,0 ,17,923,9982148,32,0 ,17,923,6836420,32,0 ,44,15152,1593540,24,0 ,44,15152,3690692,24,0 ,17,923,8933572,40,0 ,17,923,9457860,48,0 ,13,7761,20680,49,16 ,3,28,544968,8,3 ,13,7788,20688,51,16 ,3,28,544976,14,5 ,13,7789,20696,49,16 ,3,28,544984,4,1 ,13,7790,20704,47,16 ,3,28,544992,6,2 ,20,22508,18895074,104,0 ,13,7819,20712,51,16 ,3,28,545000,8,3 ,13,7811,20720,50,16 ,3,28,545008,38,18 ,13,438,20728,34,16 ,3,28,545016,53,18 ,13,7806,20736,47,16 ,3,28,545024,36,17 ,20,21165,15749378,788,0 ,44,15152,3166468,24,0 ,17,923,7360772,24,0 ,17,923,6312196,24,0 ,44,15152,2642180,64,0 ,13,7807,20744,43,16 ,3,28,545032,20,17 ,13,7820,20752,49,16 ,3,28,545040,8,3 ,13,7821,20760,45,16 ,3,28,545048,8,3 ,13,7823,20768,49,16 ,3,28,545056,4,1 ,20,19916,11030818,248,0 ,20,17512,5787938,632,0 ,20,18424,7885090,12,0 ,13,7824,20776,48,16 ,3,28,545064,16,7 ,13,7825,20784,49,16 ,3,28,545072,8,3 ,13,7828,20792,47,16 ,3,28,545080,10,3 ,13,7829,20800,47,16 ,3,28,545088,8,3 ,20,22229,18370882,12,0 ,20,18886,8933698,12,0 ,20,21759,16798018,444,0 ,45,15153,4215108,16,0 ,44,15152,545092,32,0 ,13,7830,20808,47,16 ,3,28,545096,4,1 ,13,7831,20816,47,16 ,3,28,545104,12,5 ,13,7832,20824,49,16 ,3,28,545112,8,3 ,13,7836,20832,49,16 ,3,28,545120,4,1 ,20,15319,545122,200,0 ,13,7837,20840,47,16 ,3,28,545128,12,5 ,13,7840,20848,47,16 ,3,28,545136,8,3 ,13,7852,20856,49,16 ,3,28,545144,8,3 ,13,7920,20864,49,16 ,3,28,545152,8,3 ,20,18425,7885186,12,0 ,17,923,8409476,40,0 ,44,15152,2118020,72,0 ,44,15152,1593732,48,0 ,44,15152,3690884,48,0 ,45,15153,4739460,16,0 ,13,7921,20872,49,16 ,3,28,545160,9,3 ,13,7923,20880,50,16 ,3,28,545168,6,2 ,13,7925,20888,49,16 ,3,28,545176,8,3 ,13,7928,20896,47,16 ,3,28,545184,8,3 ,20,22230,18370978,88,0 ,20,18887,8933794,40,0 ,13,7930,20904,49,16 ,3,28,545192,9,3 ,13,7931,20912,47,16 ,3,28,545200,8,3 ,13,7937,20920,48,16 ,3,28,545208,8,3 ,13,438,20928,34,16 ,3,28,545216,8,3 ,20,21510,16273858,580,0 ,17,923,20931,16,0 ,17,923,9982404,24,0 ,17,923,7885252,32,0 ,17,923,7360964,24,0 ,17,923,6836676,40,0 ,17,923,6312388,24,0 ,44,15152,3166660,88,0 ,45,15153,4215236,16,0 ,13,8014,20936,47,16 ,3,28,545224,10,3 ,13,8016,20944,49,16 ,3,28,545232,5,2 ,13,8017,20952,45,16 ,3,28,545240,5,2 ,13,8018,20960,48,16 ,3,28,545248,14,5 ,20,18426,7885282,372,0 ,20,16634,3690978,176,0 ,13,8019,20968,49,16 ,3,28,545256,8,3 ,13,8022,20976,49,16 ,3,28,545264,44,21 ,13,8024,20984,52,16 ,3,28,545272,24,21 ,13,8025,20992,49,16 ,3,28,545280,8,3 ,17,923,8933892,32,0 ,45,15153,4739588,96,0 ,13,8037,21000,47,16 ,3,28,545288,8,3 ,13,8034,21008,47,16 ,3,28,545296,98,48 ,13,8031,21016,46,16 ,3,28,545304,334,187 ,13,438,21024,34,16 ,3,28,545312,40,19 ,13,438,21032,34,16 ,3,28,545320,4,1 ,13,8043,21040,52,16 ,3,28,545328,6,2 ,13,8069,21048,49,16 ,3,28,545336,4,1 ,13,438,21056,34,16 ,3,28,545344,24,11 ,17,923,21059,24,0 ,17,923,9458244,40,0 ,43,15151,21060,56,0 ,44,15152,545348,32,0 ,45,15153,4215364,48,0 ,13,8048,21064,47,16 ,3,28,545352,8,3 ,13,8064,21072,50,16 ,3,28,545360,8,3 ,13,8065,21080,46,16 ,3,28,545368,8,3 ,13,8066,21088,49,16 ,3,28,545376,8,3 ,13,8077,21096,49,16 ,3,28,545384,34,16 ,13,8079,21104,45,16 ,3,28,545392,8,3 ,13,8080,21112,47,16 ,3,28,545400,8,3 ,13,438,21120,34,16 ,3,28,545408,22,10 ,17,923,9982596,48,0 ,17,923,7361156,64,0 ,17,923,6312580,24,0 ,13,8087,21128,45,16 ,3,28,545416,13,10 ,13,8089,21136,52,16 ,3,28,545424,4,1 ,13,8139,21144,55,16 ,3,28,545432,6,2 ,13,8149,21152,49,16 ,3,28,545440,14,5 ,20,20466,13128354,160,0 ,13,8151,21160,49,16 ,3,28,545448,4,1 ,13,8153,21168,47,16 ,3,28,545456,22,10 ,13,8154,21176,49,16 ,3,28,545464,18,7 ,13,8158,21184,49,16 ,3,28,545472,4,1 ,17,923,8409796,40,0 ,17,923,7885508,32,0 ,45,15153,5264068,16,0 ,13,8163,21192,52,16 ,3,28,545480,6,2 ,13,8166,21200,51,16 ,3,28,545488,18,7 ,13,8171,21208,53,16 ,3,28,545496,4,1 ,13,8177,21216,49,16 ,3,28,545504,6,2 ,20,23479,20992738,24,0 ,20,18888,8934114,40,0 ,13,8183,21224,49,16 ,3,28,545512,4,1 ,13,8188,21232,49,16 ,3,28,545520,12,5 ,13,8192,21240,49,16 ,3,28,545528,42,14 ,13,8199,21248,49,16 ,3,28,545536,17,14 ,17,923,21251,16,0 ,17,923,8934148,32,0 ,17,923,6836996,40,0 ,44,15152,2642692,40,0 ,44,15152,1594116,24,0 ,44,15152,3691268,80,0 ,13,8203,21256,48,16 ,3,28,545544,38,19 ,13,8205,21264,49,16 ,3,28,545552,4,1 ,13,8206,21272,49,16 ,3,28,545560,6,2 ,13,8211,21280,49,16 ,3,28,545568,26,11 ,20,18635,8409890,12,0 ,20,25091,25187106,176,0 ,13,8215,21288,49,16 ,3,28,545576,4,1 ,13,8230,21296,49,16 ,3,28,545584,6,2 ,13,8232,21304,49,16 ,3,28,545592,4,1 ,13,8235,21312,49,16 ,3,28,545600,4,1 ,20,954,21313,128,0 ,45,15153,5264196,56,0 ,17,923,6312772,24,0 ,44,15152,545604,24,0 ,13,8239,21320,52,16 ,3,28,545608,4,1 ,13,8241,21328,49,16 ,3,28,545616,10,4 ,13,8245,21336,49,16 ,3,28,545624,6,2 ,13,8253,21344,49,16 ,3,28,545632,18,7 ,13,8269,21352,47,16 ,3,28,545640,4,1 ,13,8263,21360,45,16 ,3,28,545648,10,4 ,13,8255,21368,49,16 ,3,28,545656,4,1 ,13,8259,21376,45,16 ,3,28,545664,111,67 ,20,18636,8409986,572,0 ,17,923,21379,16,0 ,17,923,9458564,40,0 ,13,438,21384,38,16 ,3,28,545672,12,4 ,13,8270,21392,49,16 ,3,28,545680,15,5 ,13,8271,21400,49,16 ,3,28,545688,8,3 ,13,8272,21408,49,16 ,3,28,545696,8,3 ,20,23480,20992930,1144,0 ,13,8273,21416,49,16 ,3,28,545704,8,3 ,13,8275,21424,49,16 ,3,28,545712,8,3 ,13,8276,21432,49,16 ,3,28,545720,8,3 ,13,8277,21440,49,16 ,3,28,545728,8,3 ,20,19326,9982914,200,0 ,45,15153,4215748,24,0 ,17,923,7885764,32,0 ,44,15152,2118596,144,0 ,44,15152,1594308,24,0 ,13,8279,21448,49,16 ,3,28,545736,8,3 ,13,8280,21456,49,16 ,3,28,545744,8,3 ,13,8281,21464,49,16 ,3,28,545752,12,4 ,13,8282,21472,49,16 ,3,28,545760,8,3 ,20,15174,21474,240,0 ,13,8283,21480,49,16 ,3,28,545768,8,3 ,13,8284,21488,49,16 ,3,28,545776,8,3 ,13,8285,21496,48,16 ,3,28,545784,8,3 ,13,8288,21504,49,16 ,3,28,545792,8,3 ,17,923,21507,24,0 ,17,923,9982980,40,0 ,17,923,6312964,32,0 ,43,15151,21508,56,0 ,44,15152,545796,40,0 ,17,923,8410116,32,0 ,17,923,8934404,32,0 ,13,8289,21512,49,16 ,3,28,545800,8,3 ,13,8291,21520,49,16 ,3,28,545808,8,3 ,13,8293,21528,49,16 ,3,28,545816,8,3 ,13,8295,21536,49,16 ,3,28,545824,8,3 ,20,22509,18895906,304,0 ,20,26250,28333090,116,0 ,20,18889,8934434,1272,0 ,13,8296,21544,49,16 ,3,28,545832,24,11 ,13,8297,21552,47,16 ,3,28,545840,14,11 ,13,8298,21560,49,16 ,3,28,545848,8,3 ,13,8300,21568,49,16 ,3,28,545856,8,3 ,44,15152,2643012,48,0 ,17,923,6837316,32,0 ,13,8301,21576,49,16 ,3,28,545864,8,3 ,13,8303,21584,51,16 ,3,28,545872,8,3 ,13,8307,21592,49,16 ,3,28,545880,8,3 ,13,8309,21600,49,16 ,3,28,545888,78,38 ,20,22231,18371682,884,0 ,20,25844,27284578,372,0 ,13,8310,21608,47,16 ,3,28,545896,14,5 ,13,8311,21616,49,16 ,3,28,545904,4,1 ,13,8312,21624,49,16 ,3,28,545912,6,2 ,13,8313,21632,49,16 ,3,28,545920,4,1 ,45,15153,4215940,16,0 ,17,923,7361668,24,0 ,44,15152,1594500,24,0 ,44,15152,3167364,32,0 ,13,8314,21640,49,16 ,3,28,545928,76,35 ,13,8315,21648,47,16 ,3,28,545936,4,1 ,13,8316,21656,49,16 ,3,28,545944,6,2 ,13,8317,21664,50,16 ,3,28,545952,14,5 ,13,8318,21672,49,16 ,3,28,545960,4,1 ,13,8322,21680,49,16 ,3,28,545968,4,1 ,13,8323,21688,49,16 ,3,28,545976,8,3 ,13,8324,21696,49,16 ,3,28,545984,8,3 ,17,923,21699,24,0 ,17,923,9458884,32,0 ,17,923,7886020,32,0 ,13,8341,21704,49,16 ,3,28,545992,4,1 ,13,8340,21712,49,16 ,3,28,546000,16,5 ,13,8334,21720,46,16 ,3,28,546008,12,5 ,13,8328,21728,47,16 ,3,28,546016,4,1 ,20,16936,4216034,60,0 ,13,438,21736,34,16 ,3,28,546024,18,7 ,13,438,21744,34,16 ,3,28,546032,4,1 ,13,8357,21752,49,16 ,3,28,546040,6,2 ,13,8356,21760,53,16 ,3,28,546048,4,1 ,17,923,8934660,40,0 ,17,923,6313220,24,0 ,45,15153,4216068,152,0 ,45,15153,4740356,32,0 ,45,15153,5264644,24,0 ,17,923,8410372,32,0 ,13,438,21768,34,16 ,3,28,546056,4,1 ,13,8358,21776,49,16 ,3,28,546064,4,1 ,13,8359,21784,49,16 ,3,28,546072,6,2 ,13,8361,21792,47,16 ,3,28,546080,4,1 ,13,8362,21800,49,16 ,3,28,546088,16,7 ,13,8376,21808,49,16 ,3,28,546096,8,3 ,13,8374,21816,53,16 ,3,28,546104,8,3 ,13,8367,21824,49,16 ,3,28,546112,8,3 ,17,923,9983300,40,0 ,17,923,7361860,24,0 ,17,923,6837572,48,0 ,44,15152,1594692,24,0 ,44,15152,546116,48,0 ,44,15152,1070404,24,0 ,13,8365,21832,51,16 ,3,28,546120,4,1 ,13,8363,21840,45,16 ,3,28,546128,10,4 ,13,438,21848,34,16 ,3,28,546136,8,3 ,13,438,21856,36,16 ,3,28,546144,18,7 ,13,438,21864,36,16 ,3,28,546152,4,1 ,13,8399,21872,49,16 ,3,28,546160,6,2 ,13,8401,21880,49,16 ,3,28,546168,4,1 ,13,438,21888,36,16 ,3,28,546176,10,4 ,17,923,21891,16,0 ,44,15152,3691908,120,0 ,44,15152,3167620,64,0 ,13,8415,21896,49,16 ,3,28,546184,18,7 ,13,8421,21904,45,16 ,3,28,546192,4,1 ,13,8422,21912,49,16 ,3,28,546200,6,2 ,13,8424,21920,49,16 ,3,28,546208,4,1 ,13,8425,21928,47,16 ,3,28,546216,18,8 ,13,8427,21936,49,16 ,3,28,546224,4,1 ,13,8429,21944,49,16 ,3,28,546232,10,3 ,13,8431,21952,49,16 ,3,28,546240,58,35 ,17,923,9459140,24,0 ,17,923,7886276,32,0 ,17,923,6313412,24,0 ,44,15152,2643396,32,0 ,43,15151,21956,24,0 ,45,15153,5264836,16,0 ,13,8436,21960,47,16 ,3,28,546248,6,2 ,13,8437,21968,47,16 ,3,28,546256,6,2 ,13,8438,21976,47,16 ,3,28,546264,6,2 ,13,8439,21984,47,16 ,3,28,546272,8,3 ,13,8440,21992,47,16 ,3,28,546280,8,3 ,13,8441,22000,45,16 ,3,28,546288,8,3 ,13,8442,22008,49,16 ,3,28,546296,36,17 ,13,8467,22016,49,16 ,3,28,546304,4,1 ,17,923,22019,24,0 ,17,923,8410628,24,0 ,17,923,7362052,24,0 ,44,15152,1594884,24,0 ,44,15152,1070596,32,0 ,45,15153,4740612,64,0 ,13,438,22024,34,16 ,3,28,546312,64,35 ,13,8461,22032,49,16 ,3,28,546320,8,3 ,13,8462,22040,49,16 ,3,28,546328,8,3 ,13,8463,22048,47,16 ,3,28,546336,8,3 ,13,8464,22056,49,16 ,3,28,546344,8,3 ,13,8505,22064,47,16 ,3,28,546352,8,3 ,13,8507,22072,49,16 ,3,28,546360,8,3 ,13,8517,22080,51,16 ,3,28,546368,8,3 ,17,923,8934980,48,0 ,45,15153,5264964,56,0 ,13,8518,22088,47,16 ,3,28,546376,8,3 ,13,8519,22096,51,16 ,3,28,546384,8,3 ,13,8520,22104,47,16 ,3,28,546392,8,3 ,13,8522,22112,47,16 ,3,28,546400,8,3 ,13,8524,22120,51,16 ,3,28,546408,8,3 ,13,8525,22128,49,16 ,3,28,546416,17,6 ,13,8526,22136,45,16 ,3,28,546424,8,3 ,13,8527,22144,47,16 ,3,28,546432,8,3 ,17,923,9983620,24,0 ,17,923,6313604,24,0 ,43,15151,22148,32,0 ,17,923,9459332,56,0 ,13,8532,22152,51,16 ,3,28,546440,48,23 ,13,8535,22160,47,16 ,3,28,546448,4,1 ,13,8537,22168,49,16 ,3,28,546456,18,7 ,13,8538,22176,47,16 ,3,28,546464,4,1 ,13,8540,22184,47,16 ,3,28,546472,10,4 ,13,8541,22192,49,16 ,3,28,546480,4,1 ,13,8545,22200,49,16 ,3,28,546488,4,1 ,13,8546,22208,47,16 ,3,28,546496,12,5 ,20,16937,4216514,64,0 ,17,923,22211,16,0 ,17,923,8410820,40,0 ,17,923,7886532,48,0 ,17,923,7362244,24,0 ,17,923,6837956,40,0 ,44,15152,2643652,72,0 ,44,15152,1595076,64,0 ,44,15152,546500,32,0 ,13,8547,22216,49,16 ,3,28,546504,8,3 ,13,8548,22224,47,16 ,3,28,546512,8,3 ,13,8549,22232,47,16 ,3,28,546520,4,1 ,13,8551,22240,49,16 ,3,28,546528,12,5 ,13,8552,22248,47,16 ,3,28,546536,63,21 ,13,8583,22256,52,16 ,3,28,546544,4,1 ,13,438,22264,34,16 ,3,28,546552,10,4 ,13,8574,22272,45,16 ,3,28,546560,8,3 ,44,15152,1070852,24,0 ,13,8601,22280,47,16 ,3,28,546568,8,3 ,13,8599,22288,45,16 ,3,28,546576,26,11 ,13,8598,22296,45,16 ,3,28,546584,4,1 ,13,8611,22304,51,16 ,3,28,546592,6,2 ,20,25317,25712418,356,0 ,13,8613,22312,51,16 ,3,28,546600,4,1 ,13,438,22320,36,16 ,3,28,546608,101,67 ,13,8637,22328,54,16 ,3,28,546616,18,6 ,13,8676,22336,47,16 ,3,28,546624,6,2 ,20,955,22337,116,0 ,17,923,22339,16,0 ,17,923,9983812,40,0 ,17,923,6313796,24,0 ,13,8681,22344,51,16 ,3,28,546632,8,3 ,13,8723,22352,49,16 ,3,28,546640,8,3 ,13,438,22360,36,16 ,3,28,546648,8,3 ,13,8683,22368,45,16 ,3,28,546656,8,3 ,20,16635,3692386,748,0 ,13,8685,22376,45,16 ,3,28,546664,12,4 ,13,8687,22384,45,16 ,3,28,546672,8,3 ,13,8686,22392,45,16 ,3,28,546680,15,5 ,13,8692,22400,47,16 ,3,28,546688,8,3 ,44,15152,3168132,40,0 ,17,923,7362436,24,0 ,43,15151,22404,32,0 ,13,8693,22408,48,16 ,3,28,546696,8,3 ,13,8695,22416,47,16 ,3,28,546704,24,8 ,13,8708,22424,48,16 ,3,28,546712,8,3 ,13,8709,22432,45,16 ,3,28,546720,8,3 ,20,20467,13129634,304,0 ,20,15320,546722,464,0 ,13,8718,22440,47,16 ,3,28,546728,8,3 ,13,8714,22448,45,16 ,3,28,546736,8,3 ,13,438,22456,34,16 ,3,28,546744,8,3 ,13,8726,22464,48,16 ,3,28,546752,8,3 ,20,26251,28334018,280,0 ,17,923,22467,24,0 ,17,923,8935364,32,0 ,44,15152,546756,32,0 ,44,15152,1071044,32,0 ,13,438,22472,34,16 ,3,28,546760,15,5 ,13,8729,22480,50,16 ,3,28,546768,15,5 ,13,8731,22488,51,16 ,3,28,546776,8,3 ,13,2134,22496,49,16 ,3,28,546784,8,3 ,20,24871,24664034,136,0 ,13,438,22504,36,16 ,3,28,546792,15,5 ,13,8745,22512,47,16 ,3,28,546800,58,28 ,13,438,22520,34,16 ,3,28,546808,25,13 ,13,8733,22528,47,16 ,3,28,546816,6,2 ,17,923,8411140,40,0 ,17,923,6838276,40,0 ,17,923,6313988,16,0 ,45,15153,4741124,56,0 ,45,15153,5265412,72,0 ,13,8737,22536,49,16 ,3,28,546824,6,2 ,13,8738,22544,49,16 ,3,28,546832,6,2 ,13,8741,22552,49,16 ,3,28,546840,42,19 ,13,8747,22560,47,16 ,3,28,546848,4,1 ,13,8772,22568,49,16 ,3,28,546856,18,8 ,13,8769,22576,49,16 ,3,28,546864,4,1 ,13,438,22584,34,16 ,3,28,546872,28,11 ,13,8767,22592,50,16 ,3,28,546880,4,1 ,17,923,9459780,24,0 ,17,923,7886916,48,0 ,17,923,7362628,24,0 ,44,15152,2119748,48,0 ,13,438,22600,34,16 ,3,28,546888,6,2 ,13,10326,22608,51,16 ,3,28,546896,4,1 ,13,8921,22616,47,16 ,3,28,546904,6,2 ,13,438,22624,34,16 ,3,28,546912,26,11 ,13,9245,22632,49,16 ,3,28,546920,4,1 ,13,9227,22640,45,16 ,3,28,546928,6,2 ,13,438,22648,34,16 ,3,28,546936,4,1 ,13,9228,22656,49,16 ,3,28,546944,20,9 ,17,923,22659,16,0 ,17,923,9984132,32,0 ,17,923,6314116,24,0 ,43,15151,22660,64,0 ,13,9240,22664,49,16 ,3,28,546952,8,3 ,13,9242,22672,49,16 ,3,28,546960,8,3 ,13,9290,22680,47,16 ,3,28,546968,18,6 ,13,9257,22688,45,16 ,3,28,546976,8,3 ,20,25092,25188514,288,0 ,13,9254,22696,49,16 ,3,28,546984,64,31 ,13,438,22704,34,16 ,3,28,546992,34,31 ,13,9278,22712,49,16 ,3,28,547000,83,28 ,13,9269,22720,47,16 ,3,28,547008,31,28 ,20,16938,4217026,60,0 ,17,923,8935620,24,0 ,44,15152,1595588,64,0 ,44,15152,547012,48,0 ,44,15152,1071300,24,0 ,44,15152,3168452,64,0 ,13,9266,22728,49,16 ,3,28,547016,8,3 ,13,9263,22736,50,16 ,3,28,547024,4,1 ,13,9259,22744,45,16 ,3,28,547032,6,2 ,13,9258,22752,47,16 ,3,28,547040,4,1 ,20,19917,11032802,12,0 ,13,438,22760,34,16 ,3,28,547048,6,2 ,13,9265,22768,45,16 ,3,28,547056,4,1 ,13,438,22776,34,16 ,3,28,547064,62,35 ,13,9279,22784,47,16 ,3,28,547072,8,3 ,20,15581,1071362,48,0 ,20,25662,26761474,304,0 ,17,923,22787,16,0 ,17,923,9459972,24,0 ,17,923,7362820,24,0 ,44,15152,2644228,24,0 ,13,9280,22792,49,16 ,3,28,547080,8,3 ,13,9282,22800,47,16 ,3,28,547088,6,2 ,13,9286,22808,49,16 ,3,28,547096,8,3 ,13,9321,22816,49,16 ,3,28,547104,8,3 ,13,438,22824,36,16 ,3,28,547112,8,3 ,13,9312,22832,49,16 ,3,28,547120,8,3 ,13,438,22840,34,16 ,3,28,547128,8,3 ,13,9316,22848,47,16 ,3,28,547136,8,3 ,20,19918,11032898,1236,0 ,17,923,8411460,24,0 ,17,923,6838596,40,0 ,17,923,6314308,32,0 ,44,15152,3692868,32,0 ,13,9315,22856,43,16 ,3,28,547144,8,3 ,13,513,22864,42,16 ,3,28,547152,8,3 ,13,10311,22872,47,16 ,3,28,547160,8,3 ,13,438,22880,34,16 ,3,28,547168,8,3 ,13,9328,22888,42,16 ,3,28,547176,44,21 ,13,4364,22896,47,16 ,3,28,547184,14,5 ,13,9333,22904,46,16 ,3,28,547192,4,1 ,13,10300,22912,46,16 ,3,28,547200,6,2 ,17,923,22915,24,0 ,17,923,9984388,32,0 ,44,15152,1071492,24,0 ,17,923,8935812,48,0 ,13,10293,22920,47,16 ,3,28,547208,14,5 ,13,9335,22928,43,16 ,3,28,547216,4,1 ,13,438,22936,34,16 ,3,28,547224,6,2 ,13,10267,22944,45,16 ,3,28,547232,24,11 ,13,9371,22952,47,16 ,3,28,547240,4,1 ,13,438,22960,38,16 ,3,28,547248,6,2 ,13,9356,22968,43,16 ,3,28,547256,14,5 ,13,9364,22976,47,16 ,3,28,547264,4,1 ,17,923,9460164,24,0 ,17,923,7887300,48,0 ,17,923,7363012,32,0 ,44,15152,2644420,64,0 ,44,15152,2120132,120,0 ,45,15153,4217284,16,0 ,45,15153,4741572,24,0 ,13,9365,22984,45,16 ,3,28,547272,6,2 ,13,9366,22992,45,16 ,3,28,547280,28,11 ,13,9390,23000,49,16 ,3,28,547288,4,1 ,13,9380,23008,45,16 ,3,28,547296,6,2 ,20,19660,10508770,192,0 ,13,438,23016,34,16 ,3,28,547304,4,1 ,13,438,23024,34,16 ,3,28,547312,10,4 ,13,9438,23032,50,16 ,3,28,547320,4,1 ,13,438,23040,34,16 ,3,28,547328,14,5 ,20,19327,9984514,364,0 ,17,923,8411652,56,0 ,13,9397,23048,49,16 ,3,28,547336,4,1 ,13,9396,23056,49,16 ,3,28,547344,6,2 ,13,9395,23064,43,16 ,3,28,547352,44,19 ,13,438,23072,38,16 ,3,28,547360,4,1 ,13,9408,23080,51,16 ,3,28,547368,8,3 ,13,9425,23088,48,16 ,3,28,547376,7,2 ,13,9443,23096,49,16 ,3,28,547384,4,1 ,13,438,23104,34,16 ,3,28,547392,14,5 ,17,923,23107,16,0 ,45,15153,5265988,24,0 ,17,923,6314564,24,0 ,44,15152,547396,32,0 ,44,15152,1071684,24,0 ,44,15152,3693124,24,0 ,45,15153,4217412,24,0 ,13,438,23112,36,16 ,3,28,547400,4,1 ,13,9467,23120,49,16 ,3,28,547408,63,35 ,13,438,23128,34,16 ,3,28,547416,12,5 ,13,9471,23136,49,16 ,3,28,547424,46,22 ,13,438,23144,34,16 ,3,28,547432,14,5 ,13,9648,23152,49,16 ,3,28,547440,4,1 ,13,438,23160,34,16 ,3,28,547448,6,2 ,13,9572,23168,46,16 ,3,28,547456,38,19 ,20,15582,1071746,440,0 ,17,923,9984644,40,0 ,17,923,6838916,48,0 ,43,15151,23172,16,0 ,45,15153,4741764,16,0 ,17,923,9460356,24,0 ,13,9567,23176,54,16 ,3,28,547464,4,1 ,13,9536,23184,49,16 ,3,28,547472,6,2 ,13,9527,23192,45,16 ,3,28,547480,84,35 ,13,9540,23200,50,16 ,3,28,547488,4,1 ,20,16939,4217506,60,0 ,13,9587,23208,49,16 ,3,28,547496,6,2 ,13,9581,23216,45,16 ,3,28,547504,18,7 ,13,438,23224,34,16 ,3,28,547512,4,1 ,13,438,23232,34,16 ,3,28,547520,6,2 ,20,20874,14179010,4548,0 ,17,923,23235,16,0 ,44,15152,3168964,32,0 ,17,923,7363268,24,0 ,44,15152,1596100,80,0 ,13,9585,23240,51,16 ,3,28,547528,4,1 ,13,9595,23248,49,16 ,3,28,547536,4,1 ,13,438,23256,34,16 ,3,28,547544,14,6 ,13,9646,23264,50,16 ,3,28,547552,8,3 ,20,956,23265,240,0 ,13,9599,23272,45,16 ,3,28,547560,8,3 ,13,438,23280,34,16 ,3,28,547568,4,1 ,13,438,23288,38,16 ,3,28,547576,4,1 ,13,9658,23296,49,16 ,3,28,547584,10,3 ,17,923,8936196,40,0 ,17,923,6314756,40,0 ,43,15151,23300,16,0 ,44,15152,1071876,24,0 ,44,15152,3693316,24,0 ,45,15153,4217604,24,0 ,45,15153,4741892,24,0 ,45,15153,5266180,16,0 ,13,9653,23304,43,16 ,3,28,547592,16,7 ,13,438,23312,34,16 ,3,28,547600,4,1 ,13,438,23320,34,16 ,3,28,547608,100,67 ,13,9662,23328,49,16 ,3,28,547616,8,3 ,20,26382,28859170,416,0 ,13,438,23336,34,16 ,3,28,547624,8,3 ,13,9667,23344,49,16 ,3,28,547632,8,3 ,13,438,23352,34,16 ,3,28,547640,8,3 ,13,9685,23360,49,16 ,3,28,547648,8,3 ,17,923,23363,24,0 ,17,923,9460548,24,0 ,17,923,7887684,40,0 ,44,15152,547652,32,0 ,13,9672,23368,43,16 ,3,28,547656,16,5 ,13,438,23376,34,16 ,3,28,547664,14,5 ,13,438,23384,34,16 ,3,28,547672,10,3 ,13,9681,23392,49,16 ,3,28,547680,8,3 ,20,15175,23394,404,0 ,13,438,23400,34,16 ,3,28,547688,56,27 ,13,9692,23408,49,16 ,3,28,547696,6,2 ,13,438,23416,34,16 ,3,28,547704,4,1 ,13,9700,23424,49,16 ,3,28,547712,6,2 ,45,15153,5266308,16,0 ,17,923,7363460,40,0 ,43,15151,23428,32,0 ,13,438,23432,34,16 ,3,28,547720,4,1 ,13,9704,23440,49,16 ,3,28,547728,8,3 ,13,438,23448,34,16 ,3,28,547736,6,2 ,13,9708,23456,49,16 ,3,28,547744,9,3 ,13,438,23464,34,16 ,3,28,547752,15,5 ,13,9716,23472,49,16 ,3,28,547760,4,1 ,13,9713,23480,43,16 ,3,28,547768,4,1 ,13,438,23488,34,16 ,3,28,547776,6,2 ,17,923,9984964,32,0 ,44,15152,2644932,56,0 ,44,15152,1072068,24,0 ,44,15152,3169220,24,0 ,44,15152,3693508,24,0 ,45,15153,4217796,24,0 ,45,15153,4742084,24,0 ,17,923,8412100,24,0 ,13,438,23496,34,16 ,3,28,547784,4,1 ,13,9721,23504,49,16 ,3,28,547792,7,2 ,13,438,23512,34,16 ,3,28,547800,13,4 ,13,9780,23520,49,16 ,3,28,547808,10,3 ,20,17971,6839266,192,0 ,13,9770,23528,45,16 ,3,28,547816,8,3 ,13,438,23536,34,16 ,3,28,547824,20,9 ,13,9730,23544,45,16 ,3,28,547832,6,2 ,13,9729,23552,43,16 ,3,28,547840,6,2 ,17,923,23555,32,0 ,17,923,9460740,24,0 ,17,923,6839300,40,0 ,45,15153,5266436,16,0 ,13,438,23560,34,16 ,3,28,547848,13,4 ,13,9723,23568,43,16 ,3,28,547856,11,4 ,13,9724,23576,43,16 ,3,28,547864,4,1 ,13,9725,23584,43,16 ,3,28,547872,9,4 ,20,24872,24665122,396,0 ,13,9763,23592,45,16 ,3,28,547880,50,23 ,13,438,23600,38,16 ,3,28,547888,4,1 ,13,9724,23608,49,16 ,3,28,547896,7,2 ,13,438,23616,36,16 ,3,28,547904,8,3 ,20,22946,19946562,144,0 ,17,923,8936516,32,0 ,17,923,6315076,40,0 ,44,15152,547908,56,0 ,13,9729,23624,49,16 ,3,28,547912,26,12 ,13,9748,23632,47,16 ,3,28,547920,8,3 ,13,9723,23640,48,16 ,3,28,547928,6,2 ,13,9764,23648,47,16 ,3,28,547936,4,1 ,13,9765,23656,43,16 ,3,28,547944,14,6 ,13,438,23664,34,16 ,3,28,547952,14,6 ,13,438,23672,36,16 ,3,28,547960,10,3 ,13,9787,23680,49,16 ,3,28,547968,10,4 ,20,16940,4217986,184,0 ,17,923,8412292,24,0 ,17,923,7888004,40,0 ,43,15151,23684,24,0 ,44,15152,1072260,24,0 ,44,15152,3169412,32,0 ,44,15152,3693700,24,0 ,45,15153,4217988,16,0 ,45,15153,4742276,112,0 ,45,15153,5266564,24,0 ,13,438,23688,34,16 ,3,28,547976,16,5 ,13,9794,23696,49,16 ,3,28,547984,14,5 ,13,438,23704,34,16 ,3,28,547992,14,5 ,13,9801,23712,49,16 ,3,28,548000,13,4 ,13,438,23720,34,16 ,3,28,548008,7,4 ,13,9808,23728,49,16 ,3,28,548016,7,2 ,13,438,23736,34,16 ,3,28,548024,5,2 ,13,9815,23744,49,16 ,3,28,548032,4,1 ,20,23897,22043842,24,0 ,17,923,9985220,24,0 ,17,923,7363780,16,0 ,17,923,9460932,24,0 ,13,438,23752,34,16 ,3,28,548040,18,8 ,13,9822,23760,49,16 ,3,28,548048,6,2 ,13,438,23768,34,16 ,3,28,548056,13,4 ,13,9829,23776,49,16 ,3,28,548064,11,4 ,13,438,23784,34,16 ,3,28,548072,11,4 ,13,9836,23792,49,16 ,3,28,548080,8,3 ,13,438,23800,34,16 ,3,28,548088,8,3 ,13,9843,23808,49,16 ,3,28,548096,8,3 ,17,923,23811,32,0 ,45,15153,4218116,24,0 ,13,438,23816,34,16 ,3,28,548104,6,2 ,13,9850,23824,49,16 ,3,28,548112,10,4 ,13,438,23832,34,16 ,3,28,548120,6,2 ,13,9857,23840,49,16 ,3,28,548128,7,2 ,13,438,23848,34,16 ,3,28,548136,16,5 ,13,9864,23856,49,16 ,3,28,548144,6,2 ,13,438,23864,34,16 ,3,28,548152,8,3 ,13,9871,23872,49,16 ,3,28,548160,212,131 ,17,923,8936772,40,0 ,17,923,7363908,24,0 ,17,923,6839620,32,0 ,44,15152,1596740,120,0 ,43,15151,23876,16,0 ,44,15152,1072452,32,0 ,44,15152,3693892,24,0 ,45,15153,5266756,16,0 ,17,923,8412484,40,0 ,13,438,23880,34,16 ,3,28,548168,8,3 ,13,9878,23888,49,16 ,3,28,548176,10,4 ,13,438,23896,34,16 ,3,28,548184,6,2 ,13,9885,23904,49,16 ,3,28,548192,6,2 ,20,24483,23616866,196,0 ,13,438,23912,34,16 ,3,28,548200,6,2 ,13,9892,23920,49,16 ,3,28,548208,10,4 ,13,438,23928,34,16 ,3,28,548216,16,7 ,13,9899,23936,49,16 ,3,28,548224,12,5 ,20,23898,22044034,652,0 ,20,18427,7888258,824,0 ,17,923,9985412,24,0 ,17,923,6315396,56,0 ,44,15152,2645380,48,0 ,44,15152,2121092,112,0 ,44,15152,3169668,24,0 ,17,923,9461124,24,0 ,13,438,23944,34,16 ,3,28,548232,10,4 ,13,9906,23952,49,16 ,3,28,548240,33,11 ,13,438,23960,34,16 ,3,28,548248,10,4 ,13,9913,23968,49,16 ,3,28,548256,4,1 ,20,22510,18898338,468,0 ,20,24689,24141218,1504,0 ,13,438,23976,34,16 ,3,28,548264,12,5 ,13,9920,23984,49,16 ,3,28,548272,10,4 ,13,438,23992,34,16 ,3,28,548280,4,1 ,13,9927,24000,49,16 ,3,28,548288,28,13 ,45,15153,5266884,16,0 ,17,923,7888324,32,0 ,43,15151,24004,40,0 ,45,15153,4218308,32,0 ,13,438,24008,34,16 ,3,28,548296,8,3 ,13,9934,24016,49,16 ,3,28,548304,18,6 ,13,438,24024,34,16 ,3,28,548312,8,3 ,13,9941,24032,49,16 ,3,28,548320,21,7 ,13,438,24040,34,16 ,3,28,548328,7,2 ,13,9948,24048,49,16 ,3,28,548336,7,2 ,13,438,24056,34,16 ,3,28,548344,10,3 ,13,9955,24064,49,16 ,3,28,548352,4,1 ,17,923,24067,32,0 ,44,15152,3694084,24,0 ,17,923,7364100,48,0 ,44,15152,548356,40,0 ,13,438,24072,34,16 ,3,28,548360,8,3 ,13,9962,24080,49,16 ,3,28,548368,4,1 ,13,438,24088,34,16 ,3,28,548376,6,2 ,13,9969,24096,49,16 ,3,28,548384,10,4 ,13,438,24104,34,16 ,3,28,548392,22,10 ,13,9976,24112,49,16 ,3,28,548400,8,3 ,13,438,24120,34,16 ,3,28,548408,8,3 ,13,9983,24128,49,16 ,3,28,548416,8,3 ,17,923,9985604,24,0 ,17,923,6839876,40,0 ,44,15152,1072708,24,0 ,44,15152,3169860,24,0 ,45,15153,5267012,16,0 ,17,923,9461316,16,0 ,13,438,24136,34,16 ,3,28,548424,8,3 ,13,9990,24144,49,16 ,3,28,548432,8,3 ,13,438,24152,34,16 ,3,28,548440,21,7 ,13,9997,24160,49,16 ,3,28,548448,6,2 ,13,438,24168,34,16 ,3,28,548456,7,2 ,13,10004,24176,49,16 ,3,28,548464,10,4 ,13,438,24184,34,16 ,3,28,548472,8,3 ,13,10011,24192,49,16 ,3,28,548480,12,4 ,17,923,8937092,32,0 ,17,923,8412804,32,0 ,13,438,24200,34,16 ,3,28,548488,6,2 ,13,10018,24208,49,16 ,3,28,548496,9,3 ,13,438,24216,34,16 ,3,28,548504,6,2 ,13,10025,24224,49,16 ,3,28,548512,18,6 ,13,438,24232,34,16 ,3,28,548520,6,2 ,13,10032,24240,49,16 ,3,28,548528,148,73 ,13,438,24248,34,16 ,3,28,548536,10,4 ,13,10039,24256,49,16 ,3,28,548544,6,2 ,17,923,9461444,24,0 ,17,923,7888580,24,0 ,44,15152,3694276,24,0 ,45,15153,4218564,16,0 ,45,15153,5267140,16,0 ,13,438,24264,34,16 ,3,28,548552,7,2 ,13,10046,24272,49,16 ,3,28,548560,105,67 ,13,438,24280,34,16 ,3,28,548568,6,2 ,13,10053,24288,49,16 ,3,28,548576,10,4 ,13,438,24296,34,16 ,3,28,548584,14,6 ,13,10060,24304,49,16 ,3,28,548592,66,32 ,13,438,24312,34,16 ,3,28,548600,6,2 ,13,10071,24320,50,16 ,3,28,548608,4,1 ,17,923,24323,24,0 ,17,923,9985796,32,0 ,44,15152,2645764,32,0 ,43,15151,24324,48,0 ,44,15152,1072900,24,0 ,44,15152,3170052,24,0 ,13,10065,24328,43,16 ,3,28,548616,18,8 ,13,438,24336,34,16 ,3,28,548624,4,1 ,13,438,24344,34,16 ,3,28,548632,6,2 ,13,10076,24352,50,16 ,3,28,548640,14,5 ,20,21760,16801570,212,0 ,13,438,24360,34,16 ,3,28,548648,4,1 ,13,10112,24368,51,16 ,3,28,548656,8,3 ,13,10104,24376,52,16 ,3,28,548664,14,5 ,13,438,24384,34,16 ,3,28,548672,4,1 ,45,15153,5267268,16,0 ,17,923,6315844,24,0 ,44,15152,548676,24,0 ,45,15153,4218692,16,0 ,13,438,24392,34,16 ,3,28,548680,6,2 ,13,10117,24400,51,16 ,3,28,548688,4,1 ,13,438,24408,34,16 ,3,28,548696,14,5 ,13,10122,24416,51,16 ,3,28,548704,14,5 ,20,21999,17850210,2324,0 ,13,438,24424,34,16 ,3,28,548712,4,1 ,13,10139,24432,50,16 ,3,28,548720,6,2 ,13,10134,24440,45,16 ,3,28,548728,4,1 ,13,438,24448,34,16 ,3,28,548736,12,5 ,17,923,9461636,16,0 ,17,923,7888772,56,0 ,17,923,7364484,48,0 ,17,923,6840196,48,0 ,44,15152,3694468,32,0 ,17,923,8413060,32,0 ,17,923,8937348,40,0 ,13,438,24456,34,16 ,3,28,548744,14,6 ,13,10144,24464,50,16 ,3,28,548752,4,1 ,13,438,24472,34,16 ,3,28,548760,10,3 ,13,10154,24480,50,16 ,3,28,548768,20,9 ,13,438,24488,34,16 ,3,28,548776,6,2 ,13,10162,24496,50,16 ,3,28,548784,8,3 ,13,438,24504,34,16 ,3,28,548792,8,3 ,13,10167,24512,51,16 ,3,28,548800,6,2 ,17,923,24515,32,0 ,45,15153,5267396,16,0 ,44,15152,1073092,32,0 ,44,15152,3170244,72,0 ,45,15153,4218820,48,0 ,13,438,24520,34,16 ,3,28,548808,21,7 ,13,10172,24528,51,16 ,3,28,548816,6,2 ,13,438,24536,34,16 ,3,28,548824,30,14 ,13,10177,24544,51,16 ,3,28,548832,9,3 ,20,19661,10510306,192,0 ,13,438,24552,34,16 ,3,28,548840,8,3 ,13,10182,24560,50,16 ,3,28,548848,8,3 ,13,438,24568,34,16 ,3,28,548856,6,2 ,13,10187,24576,50,16 ,3,28,548864,12,4 ,20,25845,27287554,388,0 ,17,923,9986052,24,0 ,17,923,6316036,24,0 ,44,15152,2646020,24,0 ,44,15152,548868,48,0 ,45,15153,4743172,56,0 ,17,923,9461764,32,0 ,13,438,24584,34,16 ,3,28,548872,11,4 ,13,10192,24592,50,16 ,3,28,548880,10,3 ,13,438,24600,34,16 ,3,28,548888,24,11 ,13,10197,24608,49,16 ,3,28,548896,4,1 ,13,438,24616,34,16 ,3,28,548904,6,2 ,13,10207,24624,50,16 ,3,28,548912,8,3 ,13,438,24632,38,16 ,3,28,548920,4,1 ,13,10216,24640,49,16 ,3,28,548928,6,2 ,45,15153,5267524,24,0 ,13,10213,24648,45,16 ,3,28,548936,13,4 ,13,438,24656,34,16 ,3,28,548944,25,8 ,13,438,24664,34,16 ,3,28,548952,18,8 ,13,10221,24672,49,16 ,3,28,548960,12,4 ,13,438,24680,34,16 ,3,28,548968,11,4 ,13,10228,24688,49,16 ,3,28,548976,10,3 ,13,438,24696,34,16 ,3,28,548984,10,4 ,13,10232,24704,49,16 ,3,28,548992,8,3 ,20,26252,28336258,108,0 ,17,923,8413316,32,0 ,43,15151,24708,48,0 ,44,15152,3694724,24,0 ,13,438,24712,34,16 ,3,28,549000,4,1 ,13,10236,24720,49,16 ,3,28,549008,8,3 ,13,438,24728,34,16 ,3,28,549016,7,2 ,13,10243,24736,49,16 ,3,28,549024,10,4 ,13,438,24744,34,16 ,3,28,549032,4,1 ,13,10251,24752,49,16 ,3,28,549040,133,64 ,13,10248,24760,43,16 ,3,28,549048,10,3 ,13,438,24768,34,16 ,3,28,549056,4,1 ,20,22947,19947714,152,0 ,17,923,24771,40,0 ,17,923,9986244,40,0 ,17,923,6316228,40,0 ,44,15152,2646212,24,0 ,44,15152,1073348,32,0 ,17,923,8937668,32,0 ,13,438,24776,34,16 ,3,28,549064,8,3 ,13,10255,24784,49,16 ,3,28,549072,58,35 ,13,438,24792,34,16 ,3,28,549080,7,2 ,13,10260,24800,49,16 ,3,28,549088,7,2 ,13,438,24808,34,16 ,3,28,549096,12,5 ,13,10270,24816,47,16 ,3,28,549104,8,3 ,13,10272,24824,47,16 ,3,28,549112,4,1 ,13,10274,24832,45,16 ,3,28,549120,10,4 ,20,17102,4743426,160,0 ,17,923,9462020,32,0 ,17,923,7364868,24,0 ,17,923,6840580,48,0 ,44,15152,2121988,72,0 ,44,15152,1597700,1344,0 ,45,15153,5267716,16,0 ,13,10275,24840,43,16 ,3,28,549128,6,2 ,13,10277,24848,47,16 ,3,28,549136,7,2 ,13,10279,24856,45,16 ,3,28,549144,7,2 ,13,10280,24864,45,16 ,3,28,549152,8,3 ,20,20468,13132066,80,0 ,13,10281,24872,43,16 ,3,28,549160,10,4 ,13,9328,24880,43,16 ,3,28,549168,4,1 ,13,8284,24888,45,16 ,3,28,549176,6,2 ,13,10283,24896,43,16 ,3,28,549184,6,2 ,45,15153,4219204,16,0 ,17,923,7889220,32,0 ,44,15152,3694916,32,0 ,13,10285,24904,45,16 ,3,28,549192,16,7 ,13,10286,24912,43,16 ,3,28,549200,8,3 ,13,10288,24920,45,16 ,3,28,549208,7,2 ,13,10304,24928,46,16 ,3,28,549216,4,1 ,13,10306,24936,47,16 ,3,28,549224,10,4 ,13,10348,24944,47,16 ,3,28,549232,8,3 ,13,438,24952,34,16 ,3,28,549240,7,2 ,13,10347,24960,48,16 ,3,28,549248,16,7 ,17,923,8413572,32,0 ,44,15152,2646404,32,0 ,44,15152,549252,72,0 ,45,15153,5267844,24,0 ,13,438,24968,34,16 ,3,28,549256,8,3 ,13,10333,24976,47,16 ,3,28,549264,24,11 ,13,10353,24984,49,16 ,3,28,549272,4,1 ,13,438,24992,36,16 ,3,28,549280,10,4 ,20,25093,25190818,144,0 ,13,10362,25000,49,16 ,3,28,549288,4,1 ,13,438,25008,34,16 ,3,28,549296,4,1 ,13,10421,25016,49,16 ,3,28,549304,11,4 ,13,10415,25024,55,16 ,3,28,549312,7,2 ,17,923,8937924,56,0 ,17,923,7365060,40,0 ,44,15152,1073604,64,0 ,45,15153,4219332,24,0 ,45,15153,4743620,32,0 ,13,10424,25032,49,16 ,3,28,549320,13,5 ,13,10430,25040,47,16 ,3,28,549328,4,1 ,13,10429,25048,47,16 ,3,28,549336,7,2 ,13,10432,25056,51,16 ,3,28,549344,6,2 ,20,17972,6840802,128,0 ,13,10491,25064,50,16 ,3,28,549352,8,3 ,13,10469,25072,50,16 ,3,28,549360,36,17 ,13,438,25080,36,16 ,3,28,549368,157,87 ,13,10452,25088,51,16 ,3,28,549376,4,1 ,17,923,25091,32,0 ,17,923,9986564,32,0 ,17,923,6316548,24,0 ,43,15151,25092,48,0 ,44,15152,3170820,40,0 ,17,923,9462276,32,0 ,13,10438,25096,43,16 ,3,28,549384,4,1 ,13,10458,25104,47,16 ,3,28,549392,6,2 ,13,10495,25112,51,16 ,3,28,549400,7,2 ,13,10493,25120,45,16 ,3,28,549408,13,4 ,13,798,25128,46,16 ,3,28,549416,10,4 ,13,10496,25136,51,16 ,3,28,549424,4,1 ,13,10499,25144,51,16 ,3,28,549432,7,2 ,13,10497,25152,45,16 ,3,28,549440,7,2 ,20,16941,4219458,108,0 ,20,25318,25715266,280,0 ,45,15153,5268036,32,0 ,17,923,7889476,40,0 ,44,15152,3695172,24,0 ,13,151,25160,46,16 ,3,28,549448,5,2 ,13,10500,25168,51,16 ,3,28,549456,10,4 ,13,10503,25176,51,16 ,3,28,549464,8,3 ,13,10501,25184,45,16 ,3,28,549472,7,2 ,20,957,25185,4,0 ,13,586,25192,46,16 ,3,28,549480,8,3 ,13,10504,25200,51,16 ,3,28,549488,4,1 ,13,10505,25208,51,16 ,3,28,549496,6,2 ,13,10517,25216,47,16 ,3,28,549504,4,1 ,20,958,25217,4,0 ,20,25663,26763906,312,0 ,17,923,8413828,32,0 ,17,923,6840964,40,0 ,44,15152,2646660,64,0 ,45,15153,4219524,24,0 ,13,10508,25224,45,16 ,3,28,549512,12,5 ,13,438,25232,34,16 ,3,28,549520,8,3 ,13,10511,25240,47,16 ,3,28,549528,7,2 ,13,10512,25248,47,16 ,3,28,549536,4,1 ,20,959,25249,24,0 ,13,10514,25256,47,16 ,3,28,549544,8,3 ,13,10521,25264,47,16 ,3,28,549552,4,1 ,13,10522,25272,47,16 ,3,28,549560,4,1 ,13,10524,25280,47,16 ,3,28,549568,4,1 ,45,15153,4743876,288,0 ,17,923,6316740,56,0 ,13,42,25288,46,16 ,3,28,549576,16,5 ,13,10526,25296,47,16 ,3,28,549584,7,2 ,13,10528,25304,47,16 ,3,28,549592,8,3 ,13,10529,25312,47,16 ,3,28,549600,6,2 ,13,10530,25320,47,16 ,3,28,549608,6,2 ,13,10532,25328,47,16 ,3,28,549616,4,1 ,13,10533,25336,47,16 ,3,28,549624,7,2 ,13,10534,25344,47,16 ,3,28,549632,10,4 ,17,923,25347,24,0 ,17,923,9986820,24,0 ,17,923,7365380,40,0 ,44,15152,3695364,24,0 ,17,923,9462532,32,0 ,13,10535,25352,47,16 ,3,28,549640,4,1 ,13,10539,25360,47,16 ,3,28,549648,14,6 ,13,764,25368,46,16 ,3,28,549656,10,4 ,13,10540,25376,47,16 ,3,28,549664,4,1 ,13,426,25384,46,16 ,3,28,549672,8,3 ,13,10544,25392,47,16 ,3,28,549680,18,6 ,13,10546,25400,47,16 ,3,28,549688,4,1 ,13,10547,25408,47,16 ,3,28,549696,4,1 ,45,15153,5268292,16,0 ,44,15152,2122564,56,0 ,44,15152,3171140,24,0 ,45,15153,4219716,24,0 ,13,10548,25416,47,16 ,3,28,549704,6,2 ,13,10563,25424,49,16 ,3,28,549712,4,1 ,13,438,25432,34,16 ,3,28,549720,6,2 ,13,10550,25440,49,16 ,3,28,549728,7,2 ,20,960,25441,8,0 ,13,10554,25448,49,16 ,3,28,549736,8,3 ,13,10555,25456,51,16 ,3,28,549744,4,1 ,13,10556,25464,47,16 ,3,28,549752,13,4 ,13,10557,25472,49,16 ,3,28,549760,14,6 ,20,24484,23618434,84,0 ,17,923,8938372,24,0 ,17,923,7889796,40,0 ,43,15151,25476,32,0 ,17,923,8414084,40,0 ,13,10558,25480,45,16 ,3,28,549768,4,1 ,13,10559,25488,49,16 ,3,28,549776,4,1 ,13,10560,25496,51,16 ,3,28,549784,8,3 ,13,10588,25504,51,16 ,3,28,549792,9,3 ,20,961,25505,220,0 ,20,20469,13132706,12,0 ,13,438,25512,34,16 ,3,28,549800,14,5 ,13,10582,25520,51,16 ,3,28,549808,9,3 ,13,10583,25528,50,16 ,3,28,549816,7,2 ,13,10584,25536,45,16 ,3,28,549824,12,5 ,17,923,25539,24,0 ,17,923,9987012,40,0 ,17,923,6841284,32,0 ,44,15152,549828,24,0 ,44,15152,1074116,72,0 ,44,15152,3695556,32,0 ,45,15153,5268420,16,0 ,13,10585,25544,47,16 ,3,28,549832,4,1 ,13,10710,25552,51,16 ,3,28,549840,6,2 ,13,438,25560,34,16 ,3,28,549848,6,2 ,13,10590,25568,47,16 ,3,28,549856,8,3 ,20,21511,16278498,496,0 ,20,26253,28337122,280,0 ,13,10591,25576,43,16 ,3,28,549864,4,1 ,13,10704,25584,48,16 ,3,28,549872,10,4 ,13,438,25592,36,16 ,3,28,549880,4,1 ,13,10607,25600,49,16 ,3,28,549888,10,4 ,20,20470,13132802,84,0 ,17,923,9462788,32,0 ,44,15152,3171332,24,0 ,45,15153,4219908,24,0 ,13,10609,25608,45,16 ,3,28,549896,8,3 ,13,10672,25616,50,16 ,3,28,549904,6,2 ,13,10616,25624,47,16 ,3,28,549912,8,3 ,13,438,25632,38,16 ,3,28,549920,7,2 ,13,438,25640,38,16 ,3,28,549928,5,2 ,13,10693,25648,53,16 ,3,28,549936,11,4 ,13,10695,25656,47,16 ,3,28,549944,8,3 ,13,10713,25664,47,16 ,3,28,549952,24,11 ,17,923,8938564,48,0 ,17,923,7365700,24,0 ,45,15153,5268548,24,0 ,13,438,25672,34,16 ,3,28,549960,8,3 ,13,10719,25680,49,16 ,3,28,549968,8,3 ,13,438,25688,34,16 ,3,28,549976,8,3 ,13,10721,25696,49,16 ,3,28,549984,8,3 ,13,10720,25704,43,16 ,3,28,549992,8,3 ,13,10724,25712,51,16 ,3,28,550000,13,4 ,13,438,25720,34,16 ,3,28,550008,11,4 ,13,10750,25728,47,16 ,3,28,550016,8,3 ,17,923,25731,24,0 ,44,15152,550020,56,0 ,17,923,6317188,40,0 ,44,15152,2647172,32,0 ,43,15151,25732,16,0 ,13,10745,25736,47,16 ,3,28,550024,4,1 ,13,438,25744,34,16 ,3,28,550032,4,1 ,13,438,25752,34,16 ,3,28,550040,10,3 ,13,10772,25760,49,16 ,3,28,550048,8,3 ,13,438,25768,34,16 ,3,28,550056,4,1 ,13,10752,25776,48,16 ,3,28,550064,6,2 ,13,10766,25784,51,16 ,3,28,550072,7,2 ,13,10767,25792,49,16 ,3,28,550080,4,1 ,17,923,8414404,24,0 ,17,923,7890116,48,0 ,17,923,6841540,56,0 ,44,15152,3171524,24,0 ,44,15152,3695812,32,0 ,45,15153,4220100,24,0 ,13,10787,25800,54,16 ,3,28,550088,7,2 ,13,438,25808,34,16 ,3,28,550096,14,6 ,13,10773,25816,49,16 ,3,28,550104,7,2 ,13,10775,25824,49,16 ,3,28,550112,8,3 ,20,17513,5792994,5260,0 ,13,10794,25832,50,16 ,3,28,550120,9,3 ,13,438,25840,34,16 ,3,28,550128,4,1 ,13,10788,25848,43,16 ,3,28,550136,6,2 ,13,10876,25856,55,16 ,3,28,550144,4,1 ,17,923,9987332,32,0 ,17,923,7365892,72,0 ,44,15152,2123012,40,0 ,43,15151,25860,24,0 ,45,15153,5268740,16,0 ,17,923,9463044,48,0 ,13,10831,25864,50,16 ,3,28,550152,19,6 ,13,438,25872,38,16 ,3,28,550160,4,1 ,13,10832,25880,49,16 ,3,28,550168,6,2 ,13,10841,25888,52,16 ,3,28,550176,8,3 ,13,10842,25896,49,16 ,3,28,550184,7,2 ,13,10843,25904,48,16 ,3,28,550192,7,2 ,13,10847,25912,49,16 ,3,28,550200,30,14 ,13,10848,25920,49,16 ,3,28,550208,8,3 ,17,923,25923,16,0 ,13,10856,25928,49,16 ,3,28,550216,7,2 ,13,10857,25936,49,16 ,3,28,550224,7,2 ,13,10858,25944,49,16 ,3,28,550232,5,2 ,13,10861,25952,47,16 ,3,28,550240,18,8 ,20,19328,9987426,128,0 ,20,18637,8414562,12,0 ,13,10862,25960,47,16 ,3,28,550248,8,3 ,13,10869,25968,49,16 ,3,28,550256,7,2 ,13,10870,25976,47,16 ,3,28,550264,16,7 ,13,10886,25984,47,16 ,3,28,550272,8,3 ,20,22948,19948930,144,0 ,17,923,8414596,24,0 ,44,15152,2647428,40,0 ,44,15152,3171716,24,0 ,45,15153,4220292,16,0 ,45,15153,5268868,16,0 ,13,10878,25992,47,16 ,3,28,550280,8,3 ,13,438,26000,34,16 ,3,28,550288,10,4 ,13,10900,26008,48,16 ,3,28,550296,11,4 ,13,10888,26016,48,16 ,3,28,550304,6,2 ,20,16942,4220322,60,0 ,13,10889,26024,46,16 ,3,28,550312,8,3 ,13,438,26032,34,16 ,3,28,550320,8,3 ,13,10951,26040,49,16 ,3,28,550328,8,3 ,13,10936,26048,50,16 ,3,28,550336,18,8 ,20,21761,16803266,116,0 ,20,18638,8414658,68,0 ,17,923,26051,16,0 ,17,923,8938948,32,0 ,17,923,6317508,40,0 ,43,15151,26052,32,0 ,44,15152,3696068,32,0 ,13,10937,26056,47,16 ,3,28,550344,10,4 ,13,438,26064,34,16 ,3,28,550352,16,7 ,13,10938,26072,47,16 ,3,28,550360,7,2 ,13,10939,26080,49,16 ,3,28,550368,7,2 ,20,19662,10511842,496,0 ,20,17973,6841826,100,0 ,13,10940,26088,49,16 ,3,28,550376,7,2 ,13,10971,26096,50,16 ,3,28,550384,22,10 ,13,438,26104,34,16 ,3,28,550392,4,1 ,13,10953,26112,49,16 ,3,28,550400,25,8 ,20,20921,15230466,4352,0 ,20,17103,4744706,180,0 ,17,923,9987588,32,0 ,44,15152,1074692,144,0 ,45,15153,4220420,24,0 ,45,15153,5268996,24,0 ,13,10954,26120,51,16 ,3,28,550408,6,2 ,13,10960,26128,51,16 ,3,28,550416,20,9 ,13,10961,26136,47,16 ,3,28,550424,7,2 ,13,10963,26144,51,16 ,3,28,550432,7,2 ,20,24485,23619106,176,0 ,20,25094,25191970,60,0 ,20,15321,550434,2656,0 ,13,10968,26152,47,16 ,3,28,550440,12,5 ,13,11005,26160,53,16 ,3,28,550448,4,1 ,13,438,26168,34,16 ,3,28,550456,7,2 ,13,10981,26176,48,16 ,3,28,550464,10,4 ,17,923,26179,16,0 ,17,923,8414788,24,0 ,17,923,7890500,40,0 ,44,15152,2123332,40,0 ,44,15152,550468,24,0 ,44,15152,3171908,24,0 ,13,10985,26184,49,16 ,3,28,550472,4,1 ,13,10984,26192,46,16 ,3,28,550480,9,4 ,13,438,26200,34,16 ,3,28,550488,19,9 ,13,10986,26208,46,16 ,3,28,550496,10,4 ,13,10987,26216,47,16 ,3,28,550504,7,2 ,13,10992,26224,49,16 ,3,28,550512,12,5 ,13,10994,26232,49,16 ,3,28,550520,7,2 ,13,11295,26240,48,16 ,3,28,550528,22,10 ,17,923,9463428,32,0 ,17,923,6841988,40,0 ,13,11007,26248,47,16 ,3,28,550536,6,2 ,13,438,26256,34,16 ,3,28,550544,7,2 ,13,11016,26264,47,16 ,3,28,550552,5,2 ,13,438,26272,34,16 ,3,28,550560,10,4 ,20,20471,13133474,440,0 ,13,11013,26280,49,16 ,3,28,550568,4,1 ,13,11040,26288,50,16 ,3,28,550576,9,4 ,13,11035,26296,48,16 ,3,28,550584,12,5 ,13,11030,26304,47,16 ,3,28,550592,10,4 ,17,923,26307,16,0 ,17,923,8939204,24,0 ,44,15152,2647748,40,0 ,43,15151,26308,24,0 ,44,15152,3696324,24,0 ,45,15153,4220612,16,0 ,45,15153,5269188,24,0 ,13,11028,26312,47,16 ,3,28,550600,4,1 ,13,438,26320,34,16 ,3,28,550608,20,9 ,13,11021,26328,49,16 ,3,28,550616,4,1 ,13,11024,26336,48,16 ,3,28,550624,22,10 ,13,11033,26344,50,16 ,3,28,550632,4,1 ,13,438,26352,34,16 ,3,28,550640,12,5 ,13,11037,26360,47,16 ,3,28,550648,4,1 ,13,11044,26368,47,16 ,3,28,550656,4,1 ,17,923,9987844,32,0 ,17,923,6317828,32,0 ,44,15152,550660,32,0 ,44,15152,3172100,40,0 ,17,923,8414980,24,0 ,13,11043,26376,51,16 ,3,28,550664,4,1 ,13,11058,26384,47,16 ,3,28,550672,9,4 ,13,438,26392,34,16 ,3,28,550680,12,5 ,13,11055,26400,49,16 ,3,28,550688,26,11 ,13,438,26408,34,16 ,3,28,550696,4,1 ,13,11072,26416,46,16 ,3,28,550704,6,2 ,13,11065,26424,48,16 ,3,28,550712,7,2 ,13,438,26432,34,16 ,3,28,550720,16,7 ,17,923,26435,32,0 ,45,15153,4220740,16,0 ,17,923,7366468,40,0 ,13,438,26440,34,16 ,3,28,550728,7,2 ,13,11198,26448,47,16 ,3,28,550736,4,1 ,13,438,26456,34,16 ,3,28,550744,11,4 ,13,11081,26464,49,16 ,3,28,550752,50,27 ,13,11180,26472,47,16 ,3,28,550760,7,2 ,13,11085,26480,47,16 ,3,28,550768,4,1 ,13,438,26488,34,16 ,3,28,550776,9,4 ,13,11153,26496,49,16 ,3,28,550784,17,8 ,20,23669,21522306,272,0 ,20,16943,4220802,60,0 ,17,923,9463684,40,0 ,17,923,7890820,32,0 ,44,15152,2123652,112,0 ,43,15151,26500,24,0 ,44,15152,3696516,32,0 ,45,15153,5269380,40,0 ,17,923,8939396,56,0 ,13,438,26504,34,16 ,3,28,550792,4,1 ,13,11097,26512,47,16 ,3,28,550800,4,1 ,13,438,26520,34,16 ,3,28,550808,4,1 ,13,11117,26528,47,16 ,3,28,550816,4,1 ,13,438,26536,34,16 ,3,28,550824,12,5 ,13,11113,26544,47,16 ,3,28,550832,7,2 ,13,438,26552,34,16 ,3,28,550840,5,2 ,13,11145,26560,49,16 ,3,28,550848,8,3 ,17,923,8415172,64,0 ,17,923,6842308,40,0 ,45,15153,4220868,16,0 ,13,438,26568,34,16 ,3,28,550856,4,1 ,13,11134,26576,49,16 ,3,28,550864,22,10 ,13,11131,26584,45,16 ,3,28,550872,7,2 ,13,11141,26592,47,16 ,3,28,550880,5,2 ,20,18639,8415202,2028,0 ,13,438,26600,34,16 ,3,28,550888,8,3 ,13,11148,26608,43,16 ,3,28,550896,8,3 ,13,438,26616,34,16 ,3,28,550904,15,5 ,13,11162,26624,47,16 ,3,28,550912,4,1 ,20,15176,26626,32,0 ,20,25095,25192450,224,0 ,17,923,9988100,24,0 ,17,923,6318084,40,0 ,44,15152,2648068,40,0 ,44,15152,550916,40,0 ,13,438,26632,34,16 ,3,28,550920,18,8 ,13,438,26640,38,16 ,3,28,550928,7,2 ,13,11175,26648,49,16 ,3,28,550936,5,2 ,13,438,26656,34,16 ,3,28,550944,7,2 ,20,26383,28862498,636,0 ,13,11183,26664,47,16 ,3,28,550952,5,2 ,13,11189,26672,45,16 ,3,28,550960,10,4 ,13,11192,26680,49,16 ,3,28,550968,7,2 ,13,11199,26688,46,16 ,3,28,550976,14,6 ,20,15583,1075266,456,0 ,17,923,26691,16,0 ,45,15153,4220996,16,0 ,43,15151,26692,16,0 ,44,15152,3172420,48,0 ,13,11217,26696,47,16 ,3,28,550984,4,1 ,13,438,26704,34,16 ,3,28,550992,8,3 ,13,11206,26712,45,16 ,3,28,551000,18,7 ,13,11208,26720,48,16 ,3,28,551008,4,1 ,13,11210,26728,47,16 ,3,28,551016,6,2 ,13,11212,26736,50,16 ,3,28,551024,7,2 ,13,11226,26744,47,16 ,3,28,551032,12,5 ,13,438,26752,34,16 ,3,28,551040,7,2 ,20,24873,24668290,128,0 ,44,15152,3696772,24,0 ,17,923,7891076,56,0 ,17,923,7366788,48,0 ,13,11235,26760,49,16 ,3,28,551048,5,2 ,13,11232,26768,47,16 ,3,28,551056,4,1 ,13,438,26776,34,16 ,3,28,551064,26,12 ,13,438,26784,34,16 ,3,28,551072,8,3 ,13,11282,26792,48,16 ,3,28,551080,14,5 ,13,438,26800,34,16 ,3,28,551088,4,1 ,13,11243,26808,47,16 ,3,28,551096,20,9 ,13,11248,26816,47,16 ,3,28,551104,4,1 ,17,923,26819,16,0 ,17,923,9988292,32,0 ,43,15151,26820,16,0 ,45,15153,4221124,24,0 ,45,15153,5269700,64,0 ,17,923,9464004,40,0 ,13,11246,26824,43,16 ,3,28,551112,11,4 ,13,438,26832,34,16 ,3,28,551120,12,5 ,13,11268,26840,47,16 ,3,28,551128,4,1 ,13,438,26848,34,16 ,3,28,551136,7,2 ,13,11258,26856,47,16 ,3,28,551144,16,7 ,13,438,26864,34,16 ,3,28,551152,4,1 ,13,11254,26872,47,16 ,3,28,551160,16,7 ,13,11255,26880,47,16 ,3,28,551168,15,5 ,20,17974,6842626,128,0 ,20,15177,26882,108,0 ,17,923,6842628,48,0 ,13,11273,26888,47,16 ,3,28,551176,7,2 ,13,438,26896,34,16 ,3,28,551184,8,3 ,13,11285,26904,47,16 ,3,28,551192,14,6 ,13,438,26912,34,16 ,3,28,551200,14,6 ,13,11293,26920,47,16 ,3,28,551208,7,2 ,13,438,26928,34,16 ,3,28,551216,16,7 ,13,11307,26936,47,16 ,3,28,551224,7,2 ,13,11296,26944,47,16 ,3,28,551232,8,3 ,20,16252,3172674,24,0 ,17,923,26947,32,0 ,17,923,8939844,24,0 ,17,923,6318404,24,0 ,44,15152,2648388,64,0 ,43,15151,26948,72,0 ,44,15152,551236,48,0 ,44,15152,3696964,32,0 ,13,438,26952,34,16 ,3,28,551240,4,1 ,13,11300,26960,47,16 ,3,28,551248,26,12 ,13,11325,26968,48,16 ,3,28,551256,7,2 ,13,11309,26976,47,16 ,3,28,551264,5,2 ,20,21762,16804194,564,0 ,20,16944,4221282,1508,0 ,20,19329,9988450,196,0 ,13,11310,26984,46,16 ,3,28,551272,10,4 ,13,438,26992,34,16 ,3,28,551280,4,1 ,13,11329,27000,49,16 ,3,28,551288,9,4 ,13,438,27008,34,16 ,3,28,551296,31,16 ,45,15153,4221316,24,0 ,13,11330,27016,51,16 ,3,28,551304,4,1 ,13,438,27024,36,16 ,3,28,551312,4,1 ,13,11338,27032,50,16 ,3,28,551320,10,4 ,13,438,27040,34,16 ,3,28,551328,4,1 ,20,21166,15755682,112,0 ,13,11341,27048,51,16 ,3,28,551336,7,2 ,13,438,27056,34,16 ,3,28,551344,6,2 ,13,11348,27064,48,16 ,3,28,551352,4,1 ,13,438,27072,34,16 ,3,28,551360,7,2 ,17,923,9988548,24,0 ,44,15152,3172804,48,0 ,17,923,8415684,32,0 ,13,11352,27080,50,16 ,3,28,551368,6,2 ,13,438,27088,34,16 ,3,28,551376,6,2 ,13,11361,27096,50,16 ,3,28,551384,4,1 ,13,438,27104,34,16 ,3,28,551392,6,2 ,13,11354,27112,47,16 ,3,28,551400,14,5 ,13,11355,27120,47,16 ,3,28,551408,4,1 ,13,11356,27128,47,16 ,3,28,551416,6,2 ,13,11363,27136,51,16 ,3,28,551424,14,5 ,20,22949,19950082,152,0 ,20,16253,3172866,36,0 ,17,923,9464324,40,0 ,17,923,7367172,32,0 ,17,923,6318596,48,0 ,17,923,8940036,48,0 ,13,11364,27144,51,16 ,3,28,551432,4,1 ,13,11367,27152,51,16 ,3,28,551440,10,3 ,13,11368,27160,51,16 ,3,28,551448,4,1 ,13,11369,27168,51,16 ,3,28,551456,8,3 ,13,11375,27176,51,16 ,3,28,551464,4,1 ,13,11373,27184,51,16 ,3,28,551472,10,4 ,13,11376,27192,49,16 ,3,28,551480,4,1 ,13,11377,27200,49,16 ,3,28,551488,8,3 ,17,923,27203,16,0 ,45,15153,4221508,344,0 ,17,923,7891524,32,0 ,44,15152,3697220,32,0 ,13,11378,27208,49,16 ,3,28,551496,4,1 ,13,11379,27216,49,16 ,3,28,551504,16,7 ,13,11381,27224,51,16 ,3,28,551512,14,6 ,13,11380,27232,49,16 ,3,28,551520,8,3 ,13,11383,27240,51,16 ,3,28,551528,12,5 ,13,11382,27248,49,16 ,3,28,551536,9,3 ,13,11384,27256,51,16 ,3,28,551544,4,1 ,13,11385,27264,51,16 ,3,28,551552,8,3 ,20,962,27265,168,0 ,17,923,9988740,24,0 ,17,923,6843012,40,0 ,44,15152,1075844,32,0 ,13,11386,27272,52,16 ,3,28,551560,4,1 ,13,11388,27280,50,16 ,3,28,551568,8,3 ,13,11392,27288,52,16 ,3,28,551576,4,1 ,13,11393,27296,51,16 ,3,28,551584,9,4 ,13,11395,27304,52,16 ,3,28,551592,29,15 ,13,11396,27312,49,16 ,3,28,551600,14,5 ,13,11397,27320,49,16 ,3,28,551608,4,1 ,13,11399,27328,52,16 ,3,28,551616,6,2 ,17,923,27331,16,0 ,17,923,8415940,32,0 ,44,15152,551620,48,0 ,45,15153,5270212,24,0 ,13,11401,27336,49,16 ,3,28,551624,44,19 ,13,11402,27344,49,16 ,3,28,551632,4,1 ,13,11405,27352,51,16 ,3,28,551640,8,3 ,13,11403,27360,49,16 ,3,28,551648,14,5 ,13,11406,27368,51,16 ,3,28,551656,4,1 ,13,11407,27376,51,16 ,3,28,551664,6,2 ,13,11408,27384,51,16 ,3,28,551672,14,5 ,13,11414,27392,47,16 ,3,28,551680,4,1 ,20,25319,25717506,328,0 ,44,15152,2124548,120,0 ,17,923,7367428,24,0 ,13,438,27400,36,16 ,3,28,551688,6,2 ,13,447,27408,49,16 ,3,28,551696,18,7 ,13,438,27416,36,16 ,3,28,551704,4,1 ,13,11443,27424,47,16 ,3,28,551712,8,3 ,20,16254,3173154,12,0 ,13,11440,27432,45,16 ,3,28,551720,42,19 ,13,438,27440,34,16 ,3,28,551728,4,1 ,13,11433,27448,47,16 ,3,28,551736,10,4 ,13,438,27456,34,16 ,3,28,551744,4,1 ,17,923,27459,16,0 ,17,923,9988932,48,0 ,17,923,7891780,40,0 ,44,15152,2648900,56,0 ,44,15152,3173188,32,0 ,44,15152,3697476,200,0 ,17,923,9464644,24,0 ,13,11438,27464,47,16 ,3,28,551752,8,3 ,13,438,27472,34,16 ,3,28,551760,10,4 ,13,438,27480,34,16 ,3,28,551768,15,5 ,13,11457,27488,47,16 ,3,28,551776,4,1 ,13,438,27496,34,16 ,3,28,551784,8,3 ,13,11468,27504,47,16 ,3,28,551792,7,2 ,13,438,27512,34,16 ,3,28,551800,5,2 ,13,438,27520,38,16 ,3,28,551808,14,5 ,20,16255,3173250,268,0 ,17,923,8940420,32,0 ,17,923,6318980,32,0 ,43,15151,27524,32,0 ,44,15152,1076100,40,0 ,45,15153,5270404,48,0 ,13,11494,27528,51,16 ,3,28,551816,4,1 ,13,11507,27536,47,16 ,3,28,551824,20,9 ,13,438,27544,36,16 ,3,28,551832,4,1 ,13,11504,27552,47,16 ,3,28,551840,20,9 ,20,24486,23620514,168,0 ,20,17104,4746146,340,0 ,13,438,27560,36,16 ,3,28,551848,7,2 ,13,11510,27568,47,16 ,3,28,551856,12,5 ,13,11514,27576,51,16 ,3,28,551864,7,2 ,13,11517,27584,49,16 ,3,28,551872,14,6 ,17,923,27587,32,0 ,17,923,8416196,32,0 ,17,923,7367620,32,0 ,17,923,6843332,40,0 ,45,15153,4746180,32,0 ,13,438,27592,34,16 ,3,28,551880,4,1 ,13,11524,27600,49,16 ,3,28,551888,16,7 ,13,438,27608,34,16 ,3,28,551896,4,1 ,13,11519,27616,49,16 ,3,28,551904,11,4 ,13,11521,27624,47,16 ,3,28,551912,33,17 ,13,11528,27632,47,16 ,3,28,551920,4,1 ,13,438,27640,34,16 ,3,28,551928,6,2 ,13,11529,27648,49,16 ,3,28,551936,4,1 ,17,923,9464836,24,0 ,13,11531,27656,52,16 ,3,28,551944,6,2 ,13,11551,27664,50,16 ,3,28,551952,4,1 ,13,438,27672,34,16 ,3,28,551960,8,3 ,13,11542,27680,47,16 ,3,28,551968,4,1 ,20,25846,27290658,372,0 ,13,11538,27688,48,16 ,3,28,551976,6,2 ,13,438,27696,34,16 ,3,28,551984,4,1 ,13,11554,27704,47,16 ,3,28,551992,6,2 ,13,438,27712,34,16 ,3,28,552000,4,1 ,20,22511,18902082,528,0 ,20,25664,26766402,108,0 ,44,15152,3173444,24,0 ,44,15152,552004,24,0 ,13,11564,27720,47,16 ,3,28,552008,10,4 ,13,438,27728,34,16 ,3,28,552016,7,2 ,13,11558,27736,47,16 ,3,28,552024,6,2 ,13,11578,27744,50,16 ,3,28,552032,4,1 ,20,15178,27746,24,0 ,13,11585,27752,51,16 ,3,28,552040,11,4 ,13,11589,27760,51,16 ,3,28,552048,7,2 ,13,438,27768,36,16 ,3,28,552056,4,1 ,13,11618,27776,51,16 ,3,28,552064,9,4 ,20,24874,24669314,132,0 ,17,923,8940676,24,0 ,17,923,7892100,48,0 ,17,923,6319236,32,0 ,43,15151,27780,32,0 ,13,438,27784,36,16 ,3,28,552072,26,13 ,13,11597,27792,45,16 ,3,28,552080,4,1 ,13,11608,27800,49,16 ,3,28,552088,8,3 ,13,11607,27808,49,16 ,3,28,552096,20,7 ,20,19097,9464994,4084,0 ,20,26254,28339362,108,0 ,13,11602,27816,49,16 ,3,28,552104,7,2 ,13,11614,27824,45,16 ,3,28,552112,12,5 ,13,11615,27832,45,16 ,3,28,552120,24,11 ,13,11620,27840,47,16 ,3,28,552128,4,1 ,17,923,27843,40,0 ,17,923,9989316,40,0 ,17,923,7367876,32,0 ,44,15152,1076420,48,0 ,45,15153,4746436,24,0 ,17,923,8416452,40,0 ,17,923,9465028,48,0 ,13,11624,27848,47,16 ,3,28,552136,6,2 ,13,438,27856,34,16 ,3,28,552144,4,1 ,13,11628,27864,47,16 ,3,28,552152,6,2 ,13,438,27872,34,16 ,3,28,552160,4,1 ,13,11625,27880,47,16 ,3,28,552168,9,4 ,13,11632,27888,47,16 ,3,28,552176,10,4 ,13,438,27896,34,16 ,3,28,552184,4,1 ,13,11637,27904,48,16 ,3,28,552192,6,2 ,20,17975,6843650,160,0 ,45,15153,5270788,16,0 ,17,923,6843652,40,0 ,44,15152,2649348,48,0 ,44,15152,552196,64,0 ,44,15152,3173636,48,0 ,13,438,27912,34,16 ,3,28,552200,4,1 ,13,11634,27920,47,16 ,3,28,552208,16,7 ,13,11640,27928,47,16 ,3,28,552216,7,2 ,13,438,27936,34,16 ,3,28,552224,12,5 ,20,21167,15756578,112,0 ,20,15179,27938,112,0 ,13,11643,27944,47,16 ,3,28,552232,7,2 ,13,438,27952,34,16 ,3,28,552240,12,5 ,13,11646,27960,47,16 ,3,28,552248,4,1 ,13,438,27968,34,16 ,3,28,552256,6,2 ,17,923,8940868,56,0 ,13,11649,27976,47,16 ,3,28,552264,6,2 ,13,438,27984,34,16 ,3,28,552272,32,16 ,13,11652,27992,47,16 ,3,28,552280,4,1 ,13,438,28000,34,16 ,3,28,552288,12,5 ,13,11656,28008,47,16 ,3,28,552296,18,7 ,13,11662,28016,46,16 ,3,28,552304,4,1 ,13,438,28024,34,16 ,3,28,552312,6,2 ,13,11658,28032,49,16 ,3,28,552320,4,1 ,45,15153,5270916,40,0 ,17,923,6319492,32,0 ,43,15151,28036,32,0 ,45,15153,4746628,16,0 ,13,11659,28040,49,16 ,3,28,552328,14,6 ,13,11665,28048,45,16 ,3,28,552336,10,4 ,13,438,28056,34,16 ,3,28,552344,10,4 ,13,11673,28064,43,16 ,3,28,552352,6,2 ,20,21950,17329570,1268,0 ,13,11669,28072,43,16 ,3,28,552360,4,1 ,13,438,28080,34,16 ,3,28,552368,101,67 ,13,11670,28088,44,16 ,3,28,552376,14,5 ,13,11674,28096,45,16 ,3,28,552384,4,1 ,17,923,7368132,24,0 ,13,438,28104,36,16 ,3,28,552392,9,4 ,13,11683,28112,49,16 ,3,28,552400,17,8 ,13,513,28120,48,16 ,3,28,552408,7,2 ,13,11699,28128,47,16 ,3,28,552416,24,11 ,13,438,28136,34,16 ,3,28,552424,12,4 ,13,11702,28144,47,16 ,3,28,552432,8,3 ,13,438,28152,34,16 ,3,28,552440,4,1 ,13,438,28160,36,16 ,3,28,552448,4,1 ,17,923,28163,32,0 ,17,923,9989636,48,0 ,17,923,7892484,40,0 ,45,15153,4746756,24,0 ,17,923,8416772,32,0 ,13,438,28168,36,16 ,3,28,552456,28,13 ,13,11727,28176,45,16 ,3,28,552464,8,3 ,13,11735,28184,45,16 ,3,28,552472,9,3 ,13,11731,28192,43,16 ,3,28,552480,9,3 ,13,11732,28200,43,16 ,3,28,552488,9,3 ,13,11737,28208,45,16 ,3,28,552496,10,4 ,13,11738,28216,47,16 ,3,28,552504,7,2 ,13,628,28224,44,16 ,3,28,552512,6,2 ,17,923,9465412,32,0 ,17,923,6843972,56,0 ,44,15152,1076804,40,0 ,13,452,28232,46,16 ,3,28,552520,4,1 ,13,485,28240,46,16 ,3,28,552528,9,4 ,13,11757,28248,47,16 ,3,28,552536,10,4 ,13,11744,28256,43,16 ,3,28,552544,4,1 ,13,305,28264,48,16 ,3,28,552552,12,5 ,13,741,28272,46,16 ,3,28,552560,4,1 ,13,11769,28280,47,16 ,3,28,552568,10,4 ,13,11768,28288,47,16 ,3,28,552576,8,3 ,44,15152,3174020,56,0 ,17,923,7368324,24,0 ,17,923,6319748,48,0 ,44,15152,2649732,32,0 ,43,15151,28292,16,0 ,13,11771,28296,45,16 ,3,28,552584,4,1 ,13,724,28304,46,16 ,3,28,552592,7,2 ,13,580,28312,46,16 ,3,28,552600,12,5 ,13,644,28320,46,16 ,3,28,552608,8,3 ,13,11777,28328,49,16 ,3,28,552616,7,2 ,13,11831,28336,52,16 ,3,28,552624,5,2 ,13,438,28344,38,16 ,3,28,552632,15,5 ,13,11821,28352,47,16 ,3,28,552640,12,4 ,20,22950,19951298,488,0 ,20,16636,3698370,368,0 ,45,15153,5271236,32,0 ,44,15152,2125508,32,0 ,45,15153,4746948,40,0 ,13,438,28360,34,16 ,3,28,552648,7,2 ,13,11835,28368,47,16 ,3,28,552656,10,3 ,13,438,28376,34,16 ,3,28,552664,4,1 ,13,11846,28384,47,16 ,3,28,552672,9,4 ,20,23257,20475618,308,0 ,13,438,28392,34,16 ,3,28,552680,7,2 ,13,11843,28400,47,16 ,3,28,552688,8,3 ,13,11850,28408,47,16 ,3,28,552696,12,4 ,13,438,28416,34,16 ,3,28,552704,11,4 ,20,25096,25194242,24,0 ,17,923,28419,24,0 ,17,923,8941316,24,0 ,43,15151,28420,72,0 ,44,15152,552708,32,0 ,17,923,8417028,24,0 ,13,11853,28424,43,16 ,3,28,552712,10,3 ,13,438,28432,34,16 ,3,28,552720,25,12 ,13,11854,28440,45,16 ,3,28,552728,28,11 ,13,11860,28448,47,16 ,3,28,552736,4,1 ,13,438,28456,34,16 ,3,28,552744,6,2 ,13,11867,28464,47,16 ,3,28,552752,4,1 ,13,438,28472,34,16 ,3,28,552760,8,3 ,13,11864,28480,45,16 ,3,28,552768,4,1 ,17,923,9465668,24,0 ,17,923,7892804,24,0 ,17,923,7368516,32,0 ,13,11911,28488,48,16 ,3,28,552776,6,2 ,13,438,28496,34,16 ,3,28,552784,4,1 ,13,11907,28504,48,16 ,3,28,552792,7,2 ,13,438,28512,38,16 ,3,28,552800,6,2 ,13,11897,28520,47,16 ,3,28,552808,11,4 ,13,438,28528,34,16 ,3,28,552816,4,1 ,13,11917,28536,49,16 ,3,28,552824,9,4 ,13,11918,28544,51,16 ,3,28,552832,15,7 ,20,19330,9990018,116,0 ,17,923,9990020,32,0 ,44,15152,2649988,40,0 ,44,15152,1077124,48,0 ,13,11920,28552,49,16 ,3,28,552840,14,5 ,13,11923,28560,49,16 ,3,28,552848,4,1 ,13,11926,28568,49,16 ,3,28,552856,9,4 ,13,11939,28576,49,16 ,3,28,552864,6,2 ,20,25665,26767266,108,0 ,13,11936,28584,47,16 ,3,28,552872,12,5 ,13,11944,28592,49,16 ,3,28,552880,4,1 ,13,11950,28600,48,16 ,3,28,552888,6,2 ,13,11961,28608,49,16 ,3,28,552896,4,1 ,20,963,28609,136,0 ,20,25097,25194434,60,0 ,17,923,28611,16,0 ,17,923,8941508,64,0 ,44,15152,2125764,40,0 ,45,15153,5271492,24,0 ,17,923,8417220,32,0 ,13,11965,28616,49,16 ,3,28,552904,10,3 ,13,11966,28624,49,16 ,3,28,552912,10,3 ,13,11967,28632,51,16 ,3,28,552920,8,3 ,13,11979,28640,50,16 ,3,28,552928,18,8 ,13,438,28648,34,16 ,3,28,552936,14,5 ,13,11983,28656,45,16 ,3,28,552944,8,3 ,13,438,28664,34,16 ,3,28,552952,10,4 ,13,11993,28672,49,16 ,3,28,552960,8,3 ,20,23670,21524482,340,0 ,20,26255,28340226,352,0 ,20,22232,18378754,160,0 ,17,923,9465860,40,0 ,17,923,7892996,48,0 ,17,923,6844420,48,0 ,17,923,6320132,32,0 ,44,15152,552964,24,0 ,45,15153,4747268,32,0 ,13,438,28680,34,16 ,3,28,552968,4,1 ,13,438,28688,36,16 ,3,28,552976,7,2 ,13,12488,28696,47,16 ,3,28,552984,8,3 ,13,13186,28704,43,16 ,3,28,552992,4,1 ,13,438,28712,34,16 ,3,28,553000,4,1 ,13,13267,28720,43,16 ,3,28,553008,9,4 ,13,438,28728,34,16 ,3,28,553016,15,7 ,13,13264,28736,44,16 ,3,28,553024,4,1 ,17,923,28739,24,0 ,44,15152,3174468,24,0 ,17,923,7368772,24,0 ,13,438,28744,36,16 ,3,28,553032,7,2 ,13,438,28752,36,16 ,3,28,553040,7,2 ,13,13408,28760,47,16 ,3,28,553048,5,2 ,13,438,28768,34,16 ,3,28,553056,6,2 ,13,13412,28776,47,16 ,3,28,553064,4,1 ,13,438,28784,34,16 ,3,28,553072,10,4 ,13,13423,28792,47,16 ,3,28,553080,24,11 ,13,438,28800,34,16 ,3,28,553088,10,4 ,17,923,9990276,32,0 ,45,15153,5271684,24,0 ,13,13427,28808,45,16 ,3,28,553096,7,2 ,13,438,28816,34,16 ,3,28,553104,16,5 ,13,13490,28824,45,16 ,3,28,553112,4,1 ,13,438,28832,34,16 ,3,28,553120,4,1 ,20,21168,15757474,72,0 ,20,24875,24670370,116,0 ,20,15180,28834,84,0 ,13,13858,28840,45,16 ,3,28,553128,6,2 ,13,13859,28848,45,16 ,3,28,553136,4,1 ,13,13860,28856,45,16 ,3,28,553144,7,2 ,13,13861,28864,45,16 ,3,28,553152,10,3 ,17,923,8417476,32,0 ,44,15152,2650308,32,0 ,44,15152,553156,88,0 ,13,13862,28872,45,16 ,3,28,553160,4,1 ,13,13863,28880,45,16 ,3,28,553168,7,2 ,13,438,28888,38,16 ,3,28,553176,4,1 ,13,14171,28896,48,16 ,3,28,553184,8,3 ,20,24487,23621858,204,0 ,13,14179,28904,47,16 ,3,28,553192,10,4 ,13,14190,28912,47,16 ,3,28,553200,7,2 ,13,14209,28920,49,16 ,3,28,553208,103,67 ,13,14212,28928,48,16 ,3,28,553216,8,3 ,17,923,28931,24,0 ,45,15153,4747524,104,0 ,17,923,7368964,24,0 ,17,923,6320388,40,0 ,44,15152,2126084,96,0 ,44,15152,1077508,16,0 ,44,15152,3174660,72,0 ,13,14316,28936,45,16 ,3,28,553224,13,4 ,13,438,28944,34,16 ,3,28,553232,7,2 ,13,438,28952,36,16 ,3,28,553240,10,3 ,13,14395,28960,49,16 ,3,28,553248,8,3 ,13,326,28968,42,16 ,3,28,553256,106,67 ,13,14401,28976,45,16 ,3,28,553264,4,1 ,13,14399,28984,43,16 ,3,28,553272,8,3 ,13,438,28992,34,16 ,3,28,553280,12,5 ,17,923,9466180,40,0 ,43,15151,28996,40,0 ,45,15153,5271876,40,0 ,13,14607,29000,43,16 ,3,28,553288,4,1 ,13,438,29008,34,16 ,3,28,553296,58,35 ,13,14610,29016,45,16 ,3,28,553304,4,1 ,13,438,29024,34,16 ,3,28,553312,12,5 ,13,14613,29032,46,16 ,3,28,553320,9,4 ,13,14614,29040,43,16 ,3,28,553328,7,2 ,13,14615,29048,44,16 ,3,28,553336,7,2 ,13,14616,29056,43,16 ,3,28,553344,4,1 ,17,923,9990532,40,0 ,17,923,7893380,40,0 ,17,923,6844804,48,0 ,44,15152,1077636,24,0 ,44,15152,3699076,56,0 ,13,14617,29064,43,16 ,3,28,553352,6,2 ,13,438,29072,34,16 ,3,28,553360,10,4 ,13,14621,29080,45,16 ,3,28,553368,36,17 ,13,14622,29088,43,16 ,3,28,553376,10,3 ,20,25098,25194914,44,0 ,13,14626,29096,45,16 ,3,28,553384,8,3 ,13,14627,29104,43,16 ,3,28,553392,10,4 ,13,438,29112,34,16 ,3,28,553400,6,2 ,13,14630,29120,43,16 ,3,28,553408,8,3 ,17,923,29123,32,0 ,17,923,8942020,64,0 ,17,923,7369156,40,0 ,44,15152,2650564,40,0 ,17,923,8417732,24,0 ,13,438,29128,36,16 ,3,28,553416,4,1 ,13,438,29136,34,16 ,3,28,553424,8,3 ,13,438,29144,34,16 ,3,28,553432,4,1 ,13,246,29152,44,16 ,3,28,553440,12,5 ,20,23899,22049250,604,0 ,13,78,29160,44,16 ,3,28,553448,8,3 ,13,762,29168,44,16 ,3,28,553456,68,33 ,13,438,29176,34,16 ,3,28,553464,4,1 ,13,438,29184,34,16 ,3,28,553472,16,7 ,20,17976,6844930,12,0 ,13,296,29192,44,16 ,3,28,553480,4,1 ,13,736,29200,44,16 ,3,28,553488,20,9 ,13,14674,29208,43,16 ,3,28,553496,6,2 ,13,14675,29216,43,16 ,3,28,553504,11,4 ,13,14680,29224,43,16 ,3,28,553512,8,3 ,13,166,29232,44,16 ,3,28,553520,62,30 ,13,14705,29240,45,16 ,3,28,553528,4,1 ,13,14709,29248,49,16 ,3,28,553536,10,4 ,44,15152,1077828,48,0 ,17,923,6320708,24,0 ,13,14934,29256,56,16 ,3,28,553544,15,5 ,13,365,29264,49,16 ,3,28,553552,10,3 ,26,14972,29272,7,3 ,3,28,553560,110,67 ,26,14972,29280,7,3 ,3,28,553568,6,2 ,20,17977,6845026,12,0 ,26,14972,29288,7,3 ,3,28,553576,8,3 ,26,14972,29296,7,3 ,3,28,553584,7,2 ,26,14972,29304,7,3 ,3,28,553592,10,3 ,26,14972,29312,7,3 ,3,28,553600,7,2 ,17,923,9466500,40,0 ,43,15151,29316,24,0 ,45,15153,5272196,80,0 ,17,923,8417924,24,0 ,26,14972,29320,7,3 ,3,28,553608,10,4 ,26,14972,29328,7,3 ,3,28,553616,6,2 ,26,14972,29336,7,3 ,3,28,553624,12,5 ,26,14972,29344,7,3 ,3,28,553632,6,2 ,26,14972,29352,7,3 ,3,28,553640,12,4 ,26,14972,29360,7,3 ,3,28,553648,76,37 ,26,14972,29368,7,3 ,3,28,553656,7,2 ,26,14972,29376,7,3 ,3,28,553664,7,2 ,20,17978,6845122,12,0 ,17,923,29379,24,0 ,17,923,9990852,24,0 ,17,923,7893700,40,0 ,26,14972,29384,7,3 ,3,28,553672,10,4 ,26,14972,29392,7,3 ,3,28,553680,21,7 ,26,14972,29400,7,3 ,3,28,553688,10,4 ,26,14972,29408,7,3 ,3,28,553696,6,2 ,20,21169,15758050,108,0 ,26,14972,29416,7,3 ,3,28,553704,10,4 ,26,14972,29424,7,3 ,3,28,553712,4,1 ,26,14972,29432,7,3 ,3,28,553720,7,2 ,26,14972,29440,7,3 ,3,28,553728,60,35 ,20,25099,25195266,508,0 ,20,25666,26768130,116,0 ,44,15152,2650884,48,0 ,17,923,7369476,40,0 ,17,923,6845188,48,0 ,17,923,6320900,40,0 ,26,14972,29448,7,3 ,3,28,553736,40,19 ,26,14972,29456,7,3 ,3,28,553744,12,5 ,26,14972,29464,7,3 ,3,28,553752,7,2 ,26,14972,29472,7,3 ,3,28,553760,5,2 ,20,19331,9990946,224,0 ,20,17979,6845218,432,0 ,26,14972,29480,7,3 ,3,28,553768,8,3 ,26,14972,29488,7,3 ,3,28,553776,7,2 ,26,14972,29496,7,3 ,3,28,553784,5,2 ,26,14972,29504,7,3 ,3,28,553792,8,3 ,20,15181,29506,236,0 ,17,923,8418116,40,0 ,43,15151,29508,40,0 ,44,15152,3175236,24,0 ,44,15152,3699524,32,0 ,26,14972,29512,7,3 ,3,28,553800,7,2 ,26,14972,29520,7,3 ,3,28,553808,5,2 ,26,14972,29528,7,3 ,3,28,553816,7,2 ,26,14972,29536,7,3 ,3,28,553824,10,3 ,20,21512,16282466,296,0 ,26,14972,29544,7,3 ,3,28,553832,4,1 ,26,14972,29552,7,3 ,3,28,553840,9,4 ,26,14972,29560,7,3 ,3,28,553848,12,5 ,26,14972,29568,7,3 ,3,28,553856,4,1 ,17,923,29571,24,0 ,17,923,9991044,40,0 ,44,15152,553860,40,0 ,26,14972,29576,7,3 ,3,28,553864,14,6 ,26,14972,29584,7,3 ,3,28,553872,4,1 ,26,14972,29592,7,3 ,3,28,553880,10,3 ,26,14972,29600,7,3 ,3,28,553888,4,1 ,26,14972,29608,7,3 ,3,28,553896,9,4 ,26,14972,29616,7,3 ,3,28,553904,12,5 ,26,14972,29624,7,3 ,3,28,553912,14,5 ,26,14972,29632,7,3 ,3,28,553920,4,1 ,17,923,9466820,32,0 ,44,15152,1078212,64,0 ,17,923,8942532,32,0 ,26,14972,29640,7,3 ,3,28,553928,6,2 ,26,14972,29648,7,3 ,3,28,553936,4,1 ,26,14972,29656,7,3 ,3,28,553944,6,2 ,26,14972,29664,7,3 ,3,28,553952,6,2 ,20,16256,3175394,280,0 ,26,14972,29672,7,3 ,3,28,553960,20,9 ,26,14972,29680,7,3 ,3,28,553968,15,5 ,26,14972,29688,7,3 ,3,28,553976,14,5 ,26,14972,29696,7,3 ,3,28,553984,15,5 ,20,964,29697,80,0 ,44,15152,3175428,32,0 ,17,923,7894020,32,0 ,44,15152,2126852,288,0 ,26,14972,29704,7,3 ,3,28,553992,4,1 ,26,14972,29712,7,3 ,3,28,554000,9,4 ,26,14972,29720,7,3 ,3,28,554008,17,8 ,26,14972,29728,7,3 ,3,28,554016,4,1 ,26,14972,29736,7,3 ,3,28,554024,4,1 ,26,14972,29744,7,3 ,3,28,554032,6,2 ,26,14972,29752,7,3 ,3,28,554040,4,1 ,26,14972,29760,7,3 ,3,28,554048,6,2 ,20,24876,24671298,84,0 ,17,923,29763,24,0 ,45,15153,4748356,24,0 ,17,923,7369796,24,0 ,17,923,6321220,24,0 ,44,15152,3699780,24,0 ,26,14972,29768,7,3 ,3,28,554056,4,1 ,26,14972,29776,7,3 ,3,28,554064,20,9 ,26,14972,29784,7,3 ,3,28,554072,4,1 ,26,14972,29792,7,3 ,3,28,554080,10,4 ,20,20472,13136994,160,0 ,26,14972,29800,7,3 ,3,28,554088,10,4 ,26,14972,29808,7,3 ,3,28,554096,15,5 ,26,14972,29816,7,3 ,3,28,554104,4,1 ,26,14972,29824,7,3 ,3,28,554112,9,4 ,17,923,8418436,40,0 ,17,923,6845572,48,0 ,44,15152,2651268,32,0 ,43,15151,29828,136,0 ,26,14972,29832,7,3 ,3,28,554120,22,11 ,26,14972,29840,7,3 ,3,28,554128,4,1 ,26,14972,29848,7,3 ,3,28,554136,28,13 ,26,14972,29856,7,3 ,3,28,554144,8,3 ,26,14972,29864,7,3 ,3,28,554152,7,2 ,26,14972,29872,7,3 ,3,28,554160,5,2 ,26,14972,29880,7,3 ,3,28,554168,21,7 ,26,14972,29888,7,3 ,3,28,554176,7,2 ,17,923,9991364,24,0 ,44,15152,554180,32,0 ,17,923,8942788,40,0 ,17,923,9467076,32,0 ,26,14972,29896,7,3 ,3,28,554184,5,2 ,26,14972,29904,7,3 ,3,28,554192,8,3 ,26,14972,29912,7,3 ,3,28,554200,8,3 ,26,14972,29920,7,3 ,3,28,554208,6,2 ,26,14972,29928,7,3 ,3,28,554216,11,4 ,26,14972,29936,7,3 ,3,28,554224,6,2 ,26,14972,29944,7,3 ,3,28,554232,18,6 ,26,14972,29952,7,3 ,3,28,554240,4,1 ,20,22233,18380034,564,0 ,17,923,29955,16,0 ,45,15153,5272836,16,0 ,17,923,7894276,24,0 ,17,923,7369988,32,0 ,17,923,6321412,40,0 ,44,15152,3175684,80,0 ,44,15152,3699972,48,0 ,45,15153,4224260,16,0 ,45,15153,4748548,24,0 ,26,14972,29960,7,3 ,3,28,554248,14,6 ,26,14972,29968,7,3 ,3,28,554256,6,2 ,26,14972,29976,7,3 ,3,28,554264,4,1 ,26,14972,29984,7,3 ,3,28,554272,4,1 ,26,14972,29992,7,3 ,3,28,554280,10,4 ,26,14972,30000,7,3 ,3,28,554288,4,1 ,26,14972,30008,7,3 ,3,28,554296,8,3 ,26,14972,30016,7,3 ,3,28,554304,4,1 ,20,25320,25720130,164,0 ,26,14972,30024,7,3 ,3,28,554312,22,10 ,26,14972,30032,7,3 ,3,28,554320,12,4 ,26,14972,30040,7,3 ,3,28,554328,6,2 ,26,14972,30048,7,3 ,3,28,554336,26,11 ,20,19663,10515810,64,0 ,20,26082,27817314,692,0 ,26,14972,30056,7,3 ,3,28,554344,14,5 ,26,14972,30064,7,3 ,3,28,554352,4,1 ,26,14972,30072,7,3 ,3,28,554360,9,4 ,26,14972,30080,7,3 ,3,28,554368,19,9 ,17,923,30083,32,0 ,17,923,9991556,16,0 ,44,15152,2651524,32,0 ,45,15153,4224388,16,0 ,45,15153,5272964,40,0 ,26,14972,30088,7,3 ,3,28,554376,14,5 ,26,14972,30096,7,3 ,3,28,554384,7,2 ,26,14972,30104,7,3 ,3,28,554392,4,1 ,26,14972,30112,7,3 ,3,28,554400,9,4 ,26,14972,30120,7,3 ,3,28,554408,19,9 ,26,14972,30128,7,3 ,3,28,554416,7,2 ,26,14972,30136,7,3 ,3,28,554424,8,3 ,26,14972,30144,7,3 ,3,28,554432,4,1 ,17,923,9467332,40,0 ,17,923,7894468,56,0 ,44,15152,554436,40,0 ,44,15152,1078724,64,0 ,45,15153,4748740,24,0 ,17,923,8418756,24,0 ,26,14972,30152,7,3 ,3,28,554440,4,1 ,26,14972,30160,7,3 ,3,28,554448,6,2 ,26,14972,30168,7,3 ,3,28,554456,7,2 ,26,14972,30176,7,3 ,3,28,554464,8,3 ,26,14972,30184,7,3 ,3,28,554472,4,1 ,26,14972,30192,7,3 ,3,28,554480,14,6 ,26,14972,30200,7,3 ,3,28,554488,15,5 ,26,14972,30208,7,3 ,3,28,554496,14,5 ,17,923,9991684,32,0 ,17,923,7370244,40,0 ,17,923,6845956,48,0 ,45,15153,4224516,16,0 ,17,923,8943108,40,0 ,26,14972,30216,7,3 ,3,28,554504,7,2 ,26,14972,30224,7,3 ,3,28,554512,8,3 ,26,14972,30232,7,3 ,3,28,554520,14,5 ,26,14972,30240,7,3 ,3,28,554528,7,2 ,26,14972,30248,7,3 ,3,28,554536,8,3 ,26,14972,30256,7,3 ,3,28,554544,14,5 ,26,14972,30264,7,3 ,3,28,554552,7,2 ,26,14972,30272,7,3 ,3,28,554560,14,6 ,20,21170,15758914,120,0 ,20,17105,4748866,772,0 ,17,923,6321732,16,0 ,26,14972,30280,7,3 ,3,28,554568,7,2 ,26,14972,30288,7,3 ,3,28,554576,18,8 ,26,14972,30296,7,3 ,3,28,554584,8,3 ,26,14972,30304,7,3 ,3,28,554592,9,3 ,26,14972,30312,7,3 ,3,28,554600,4,1 ,26,14972,30320,7,3 ,3,28,554608,9,4 ,26,14972,30328,7,3 ,3,28,554616,12,5 ,26,14972,30336,7,3 ,3,28,554624,4,1 ,20,965,30337,572,0 ,20,15584,1078914,872,0 ,17,923,30339,32,0 ,17,923,8418948,24,0 ,44,15152,2651780,32,0 ,44,15152,3700356,48,0 ,45,15153,4224644,32,0 ,45,15153,4748932,24,0 ,26,14972,30344,7,3 ,3,28,554632,30,14 ,26,14972,30352,7,3 ,3,28,554640,8,3 ,26,14972,30360,7,3 ,3,28,554648,6,2 ,26,14972,30368,7,3 ,3,28,554656,11,4 ,20,18167,7370402,476,0 ,20,25667,26769058,108,0 ,26,14972,30376,7,3 ,3,28,554664,6,2 ,26,14972,30384,7,3 ,3,28,554672,6,2 ,26,14972,30392,7,3 ,3,28,554680,6,2 ,26,14972,30400,7,3 ,3,28,554688,10,4 ,45,15153,5273284,24,0 ,17,923,6321860,16,0 ,26,14972,30408,7,3 ,3,28,554696,4,1 ,26,14972,30416,7,3 ,3,28,554704,30,14 ,26,14972,30424,7,3 ,3,28,554712,8,3 ,26,14972,30432,7,3 ,3,28,554720,8,3 ,20,24877,24671970,500,0 ,26,14972,30440,7,3 ,3,28,554728,10,4 ,26,14972,30448,7,3 ,3,28,554736,8,3 ,26,14972,30456,7,3 ,3,28,554744,8,3 ,26,14972,30464,7,3 ,3,28,554752,6,2 ,17,923,9991940,32,0 ,44,15152,554756,40,0 ,17,923,9467652,32,0 ,26,14972,30472,7,3 ,3,28,554760,6,2 ,26,14972,30480,7,3 ,3,28,554768,4,1 ,26,14972,30488,7,3 ,3,28,554776,9,4 ,26,14972,30496,7,3 ,3,28,554784,7,2 ,26,14972,30504,7,3 ,3,28,554792,10,4 ,26,14972,30512,7,3 ,3,28,554800,4,1 ,26,14972,30520,7,3 ,3,28,554808,7,2 ,26,14972,30528,7,3 ,3,28,554816,8,3 ,20,24488,23623490,84,0 ,20,18428,7894850,44,0 ,17,923,8943428,48,0 ,17,923,7370564,48,0 ,17,923,6321988,40,0 ,45,15153,4749124,24,0 ,17,923,8419140,24,0 ,26,14972,30536,7,3 ,3,28,554824,6,2 ,26,14972,30544,7,3 ,3,28,554832,20,9 ,26,14972,30552,7,3 ,3,28,554840,6,2 ,26,14972,30560,7,3 ,3,28,554848,6,2 ,20,23481,21002082,12,0 ,20,19664,10516322,64,0 ,26,14972,30568,7,3 ,3,28,554856,6,2 ,26,14972,30576,7,3 ,3,28,554864,20,9 ,26,14972,30584,7,3 ,3,28,554872,28,11 ,26,14972,30592,7,3 ,3,28,554880,4,1 ,17,923,30595,16,0 ,45,15153,5273476,16,0 ,17,923,7894916,24,0 ,17,923,6846340,48,0 ,44,15152,2652036,40,0 ,44,15152,3176324,24,0 ,45,15153,4224900,16,0 ,26,14972,30600,7,3 ,3,28,554888,16,7 ,26,14972,30608,7,3 ,3,28,554896,10,4 ,26,14972,30616,7,3 ,3,28,554904,15,5 ,26,14972,30624,7,3 ,3,28,554912,24,11 ,26,14972,30632,7,3 ,3,28,554920,4,1 ,26,14972,30640,7,3 ,3,28,554928,6,2 ,26,14972,30648,7,3 ,3,28,554936,4,1 ,26,14972,30656,7,3 ,3,28,554944,10,4 ,20,23482,21002178,436,0 ,20,25847,27293634,456,0 ,44,15152,1079236,32,0 ,26,14972,30664,7,3 ,3,28,554952,8,3 ,26,14972,30672,7,3 ,3,28,554960,6,2 ,26,14972,30680,7,3 ,3,28,554968,10,4 ,26,14972,30688,7,3 ,3,28,554976,4,1 ,26,14972,30696,7,3 ,3,28,554984,9,4 ,26,14972,30704,7,3 ,3,28,554992,12,5 ,26,14972,30712,7,3 ,3,28,555000,13,4 ,26,14972,30720,7,3 ,3,28,555008,4,1 ,17,923,30723,16,0 ,17,923,9992196,24,0 ,44,15152,3700740,40,0 ,45,15153,4225028,32,0 ,45,15153,4749316,24,0 ,45,15153,5273604,56,0 ,17,923,8419332,32,0 ,17,923,9467908,40,0 ,26,14972,30728,7,3 ,3,28,555016,9,4 ,26,14972,30736,7,3 ,3,28,555024,19,9 ,26,14972,30744,7,3 ,3,28,555032,4,1 ,26,14972,30752,7,3 ,3,28,555040,4,1 ,26,14972,30760,7,3 ,3,28,555048,10,4 ,26,14972,30768,7,3 ,3,28,555056,6,2 ,26,14972,30776,7,3 ,3,28,555064,8,3 ,26,14972,30784,7,3 ,3,28,555072,4,1 ,44,15152,3176516,40,0 ,17,923,7895108,24,0 ,44,15152,555076,24,0 ,26,14972,30792,7,3 ,3,28,555080,20,9 ,26,14972,30800,7,3 ,3,28,555088,4,1 ,26,14972,30808,7,3 ,3,28,555096,8,3 ,26,14972,30816,7,3 ,3,28,555104,4,1 ,26,14972,30824,7,3 ,3,28,555112,7,2 ,26,14972,30832,7,3 ,3,28,555120,4,1 ,26,14972,30840,7,3 ,3,28,555128,4,1 ,26,14972,30848,7,3 ,3,28,555136,9,4 ,20,23258,20478082,1600,0 ,17,923,30851,16,0 ,17,923,6322308,32,0 ,26,14972,30856,7,3 ,3,28,555144,12,5 ,26,14972,30864,7,3 ,3,28,555152,4,1 ,26,14972,30872,7,3 ,3,28,555160,4,1 ,26,14972,30880,7,3 ,3,28,555168,20,9 ,20,18429,7895202,176,0 ,26,14972,30888,7,3 ,3,28,555176,7,2 ,26,14972,30896,7,3 ,3,28,555184,5,2 ,26,14972,30904,7,3 ,3,28,555192,10,4 ,26,14972,30912,7,3 ,3,28,555200,10,3 ,17,923,9992388,56,0 ,17,923,7370948,32,0 ,44,15152,2652356,32,0 ,43,15151,30916,32,0 ,44,15152,1079492,48,0 ,45,15153,4749508,24,0 ,17,923,8943812,40,0 ,26,14972,30920,7,3 ,3,28,555208,5,2 ,26,14972,30928,7,3 ,3,28,555216,5,2 ,26,14972,30936,7,3 ,3,28,555224,4,1 ,26,14972,30944,7,3 ,3,28,555232,9,4 ,26,14972,30952,7,3 ,3,28,555240,36,19 ,26,14972,30960,7,3 ,3,28,555248,4,1 ,26,14972,30968,7,3 ,3,28,555256,4,1 ,26,14972,30976,7,3 ,3,28,555264,8,3 ,17,923,30979,32,0 ,17,923,8419588,40,0 ,17,923,7895300,24,0 ,17,923,6846724,40,0 ,44,15152,555268,64,0 ,45,15153,4225284,32,0 ,26,14972,30984,7,3 ,3,28,555272,4,1 ,26,14972,30992,7,3 ,3,28,555280,6,2 ,26,14972,31000,7,3 ,3,28,555288,4,1 ,26,14972,31008,7,3 ,3,28,555296,6,2 ,26,14972,31016,7,3 ,3,28,555304,4,1 ,26,14972,31024,7,3 ,3,28,555312,6,2 ,26,14972,31032,7,3 ,3,28,555320,4,1 ,26,14972,31040,7,3 ,3,28,555328,8,3 ,17,923,9468228,24,0 ,44,15152,3701060,40,0 ,26,14972,31048,7,3 ,3,28,555336,4,1 ,26,14972,31056,7,3 ,3,28,555344,6,2 ,26,14972,31064,7,3 ,3,28,555352,4,1 ,26,14972,31072,7,3 ,3,28,555360,6,2 ,20,20473,13138274,304,0 ,20,19665,10516834,136,0 ,26,14972,31080,7,3 ,3,28,555368,4,1 ,26,14972,31088,7,3 ,3,28,555376,6,2 ,26,14972,31096,7,3 ,3,28,555384,4,1 ,26,14972,31104,7,3 ,3,28,555392,6,2 ,45,15153,4749700,40,0 ,17,923,6322564,40,0 ,44,15152,3176836,24,0 ,26,14972,31112,7,3 ,3,28,555400,4,1 ,26,14972,31120,7,3 ,3,28,555408,6,2 ,26,14972,31128,7,3 ,3,28,555416,4,1 ,26,14972,31136,7,3 ,3,28,555424,10,4 ,26,14972,31144,7,3 ,3,28,555432,43,25 ,26,14972,31152,7,3 ,3,28,555440,6,2 ,26,14972,31160,7,3 ,3,28,555448,6,2 ,26,14972,31168,7,3 ,3,28,555456,8,3 ,45,15153,5274052,16,0 ,17,923,7895492,24,0 ,17,923,7371204,48,0 ,44,15152,2652612,40,0 ,43,15151,31172,32,0 ,26,14972,31176,7,3 ,3,28,555464,6,2 ,26,14972,31184,7,3 ,3,28,555472,6,2 ,26,14972,31192,7,3 ,3,28,555480,4,1 ,26,14972,31200,7,3 ,3,28,555488,21,8 ,20,24489,23624162,24,0 ,26,14972,31208,7,3 ,3,28,555496,17,8 ,26,14972,31216,7,3 ,3,28,555504,4,1 ,26,14972,31224,7,3 ,3,28,555512,43,25 ,26,14972,31232,7,3 ,3,28,555520,6,2 ,20,21171,15759874,12,0 ,20,25668,26769922,504,0 ,17,923,31235,16,0 ,17,923,9468420,104,0 ,45,15153,4225540,16,0 ,17,923,8944132,40,0 ,26,14972,31240,7,3 ,3,28,555528,6,2 ,26,14972,31248,7,3 ,3,28,555536,6,2 ,26,14972,31256,7,3 ,3,28,555544,8,3 ,26,14972,31264,7,3 ,3,28,555552,6,2 ,20,19332,9992738,36,0 ,26,14972,31272,7,3 ,3,28,555560,6,2 ,26,14972,31280,7,3 ,3,28,555568,6,2 ,26,14972,31288,7,3 ,3,28,555576,7,2 ,26,14972,31296,7,3 ,3,28,555584,60,35 ,20,16637,3701314,136,0 ,17,923,8419908,24,0 ,17,923,6847044,48,0 ,44,15152,1079876,24,0 ,44,15152,3177028,24,0 ,45,15153,5274180,48,0 ,26,14972,31304,7,3 ,3,28,555592,6,2 ,26,14972,31312,7,3 ,3,28,555600,6,2 ,26,14972,31320,7,3 ,3,28,555608,40,19 ,26,14972,31328,7,3 ,3,28,555616,43,25 ,20,21172,15759970,20,0 ,20,25321,25721442,124,0 ,26,14972,31336,7,3 ,3,28,555624,6,2 ,26,14972,31344,7,3 ,3,28,555632,6,2 ,26,14972,31352,7,3 ,3,28,555640,6,2 ,26,14972,31360,7,3 ,3,28,555648,8,3 ,17,923,31363,16,0 ,17,923,9992836,56,0 ,17,923,7895684,32,0 ,44,15152,3701380,24,0 ,45,15153,4225668,24,0 ,26,14972,31368,7,3 ,3,28,555656,6,2 ,26,14972,31376,7,3 ,3,28,555664,6,2 ,26,14972,31384,7,3 ,3,28,555672,7,2 ,26,14972,31392,7,3 ,3,28,555680,59,35 ,20,24490,23624354,228,0 ,20,15182,31394,392,0 ,20,23671,21527202,112,0 ,26,14972,31400,7,3 ,3,28,555688,6,2 ,26,14972,31408,7,3 ,3,28,555696,38,18 ,26,14972,31416,7,3 ,3,28,555704,4,1 ,26,14972,31424,7,3 ,3,28,555712,110,67 ,45,15153,4750020,64,0 ,17,923,6322884,40,0 ,43,15151,31428,80,0 ,26,14972,31432,7,3 ,3,28,555720,6,2 ,26,14972,31440,7,3 ,3,28,555728,76,37 ,26,14972,31448,7,3 ,3,28,555736,16,5 ,26,14972,31456,7,3 ,3,28,555744,4,1 ,26,14972,31464,7,3 ,3,28,555752,9,4 ,26,14972,31472,7,3 ,3,28,555760,6,2 ,26,14972,31480,7,3 ,3,28,555768,12,5 ,26,14972,31488,7,3 ,3,28,555776,4,1 ,20,21763,16808706,336,0 ,20,26256,28343042,148,0 ,20,21173,15760130,76,0 ,17,923,31491,16,0 ,17,923,8420100,40,0 ,44,15152,2652932,40,0 ,44,15152,555780,24,0 ,44,15152,1080068,24,0 ,44,15152,3177220,24,0 ,26,14972,31496,7,3 ,3,28,555784,8,3 ,26,14972,31504,7,3 ,3,28,555792,8,3 ,26,14972,31512,7,3 ,3,28,555800,8,3 ,26,14972,31520,7,3 ,3,28,555808,12,5 ,26,14972,31528,7,3 ,3,28,555816,6,2 ,26,14972,31536,7,3 ,3,28,555824,7,2 ,26,14972,31544,7,3 ,3,28,555832,4,1 ,26,14972,31552,7,3 ,3,28,555840,9,4 ,20,19333,9993026,12,0 ,17,923,8944452,32,0 ,17,923,7371588,32,0 ,44,15152,3701572,56,0 ,45,15153,4225860,24,0 ,26,14972,31560,7,3 ,3,28,555848,10,4 ,26,14972,31568,7,3 ,3,28,555856,4,1 ,26,14972,31576,7,3 ,3,28,555864,7,2 ,26,14972,31584,7,3 ,3,28,555872,6,2 ,26,14972,31592,7,3 ,3,28,555880,12,5 ,26,14972,31600,7,3 ,3,28,555888,6,2 ,26,14972,31608,7,3 ,3,28,555896,7,2 ,26,14972,31616,7,3 ,3,28,555904,10,3 ,17,923,31619,16,0 ,17,923,7895940,32,0 ,26,14972,31624,7,3 ,3,28,555912,10,3 ,26,14972,31632,7,3 ,3,28,555920,10,3 ,26,14972,31640,7,3 ,3,28,555928,10,3 ,26,14972,31648,7,3 ,3,28,555936,4,1 ,20,19334,9993122,48,0 ,26,14972,31656,7,3 ,3,28,555944,9,4 ,26,14972,31664,7,3 ,3,28,555952,15,7 ,26,14972,31672,7,3 ,3,28,555960,4,1 ,26,14972,31680,7,3 ,3,28,555968,7,2 ,45,15153,5274564,16,0 ,17,923,6847428,32,0 ,44,15152,555972,32,0 ,44,15152,1080260,56,0 ,44,15152,3177412,48,0 ,26,14972,31688,7,3 ,3,28,555976,101,67 ,26,14972,31696,7,3 ,3,28,555984,11,4 ,26,14972,31704,7,3 ,3,28,555992,4,1 ,26,14972,31712,7,3 ,3,28,556000,9,4 ,20,18890,8944610,12,0 ,26,14972,31720,7,3 ,3,28,556008,10,4 ,26,14972,31728,7,3 ,3,28,556016,4,1 ,26,14972,31736,7,3 ,3,28,556024,18,8 ,26,14972,31744,7,3 ,3,28,556032,8,3 ,20,26384,28867586,484,0 ,17,923,31747,16,0 ,45,15153,4226052,32,0 ,17,923,6323204,16,0 ,26,14972,31752,7,3 ,3,28,556040,4,1 ,26,14972,31760,7,3 ,3,28,556048,11,4 ,26,14972,31768,7,3 ,3,28,556056,54,29 ,26,14972,31776,7,3 ,3,28,556064,4,1 ,26,14972,31784,7,3 ,3,28,556072,14,6 ,26,14972,31792,7,3 ,3,28,556080,10,4 ,26,14972,31800,7,3 ,3,28,556088,6,2 ,26,14972,31808,7,3 ,3,28,556096,4,1 ,20,18891,8944706,112,0 ,17,923,9993284,56,0 ,17,923,7371844,48,0 ,44,15152,2653252,24,0 ,45,15153,5274692,24,0 ,17,923,8420420,24,0 ,17,923,8944708,32,0 ,26,14972,31816,7,3 ,3,28,556104,196,131 ,26,14972,31824,7,3 ,3,28,556112,10,4 ,26,14972,31832,7,3 ,3,28,556120,4,1 ,26,14972,31840,7,3 ,3,28,556128,12,5 ,26,14972,31848,7,3 ,3,28,556136,18,8 ,26,14972,31856,7,3 ,3,28,556144,20,9 ,26,14972,31864,7,3 ,3,28,556152,7,2 ,26,14972,31872,7,3 ,3,28,556160,6,2 ,17,923,31875,24,0 ,17,923,6323332,16,0 ,17,923,7896196,32,0 ,26,14972,31880,7,3 ,3,28,556168,20,9 ,26,14972,31888,7,3 ,3,28,556176,116,57 ,26,14972,31896,7,3 ,3,28,556184,15,5 ,26,14972,31904,7,3 ,3,28,556192,6,2 ,20,21513,16284834,232,0 ,20,16257,3177634,12,0 ,26,14972,31912,7,3 ,3,28,556200,4,1 ,26,14972,31920,7,3 ,3,28,556208,14,6 ,26,14972,31928,7,3 ,3,28,556216,4,1 ,26,14972,31936,7,3 ,3,28,556224,16,7 ,20,22512,18906306,124,0 ,45,15153,4750532,48,0 ,17,923,6847684,32,0 ,44,15152,556228,24,0 ,26,14972,31944,7,3 ,3,28,556232,4,1 ,26,14972,31952,7,3 ,3,28,556240,14,6 ,26,14972,31960,7,3 ,3,28,556248,4,1 ,26,14972,31968,7,3 ,3,28,556256,4,1 ,26,14972,31976,7,3 ,3,28,556264,8,3 ,26,14972,31984,7,3 ,3,28,556272,4,1 ,26,14972,31992,7,3 ,3,28,556280,4,1 ,26,14972,32000,7,3 ,3,28,556288,8,3 ,20,16258,3177730,12,0 ,17,923,8420612,24,0 ,17,923,6323460,16,0 ,44,15152,2653444,64,0 ,44,15152,2129156,312,0 ,44,15152,3702020,72,0 ,45,15153,4226308,16,0 ,45,15153,5274884,24,0 ,26,14972,32008,7,3 ,3,28,556296,4,1 ,26,14972,32016,7,3 ,3,28,556304,4,1 ,26,14972,32024,7,3 ,3,28,556312,4,1 ,26,14972,32032,7,3 ,3,28,556320,4,1 ,20,19335,9993506,12,0 ,26,14972,32040,7,3 ,3,28,556328,4,1 ,26,14972,32048,7,3 ,3,28,556336,4,1 ,26,14972,32056,7,3 ,3,28,556344,8,3 ,26,14972,32064,7,3 ,3,28,556352,4,1 ,17,923,32067,24,0 ,17,923,9469252,32,0 ,43,15151,32068,144,0 ,44,15152,3177796,24,0 ,17,923,8944964,24,0 ,26,14972,32072,7,3 ,3,28,556360,9,4 ,26,14972,32080,7,3 ,3,28,556368,10,4 ,26,14972,32088,7,3 ,3,28,556376,4,1 ,26,14972,32096,7,3 ,3,28,556384,10,4 ,20,21174,15760738,72,0 ,20,16259,3177826,20,0 ,26,14972,32104,7,3 ,3,28,556392,4,1 ,26,14972,32112,7,3 ,3,28,556400,9,4 ,26,14972,32120,7,3 ,3,28,556408,45,24 ,26,14972,32128,7,3 ,3,28,556416,10,4 ,20,19336,9993602,12,0 ,45,15153,4226436,24,0 ,17,923,7896452,24,0 ,17,923,6323588,16,0 ,44,15152,556420,32,0 ,44,15152,1080708,88,0 ,26,14972,32136,7,3 ,3,28,556424,8,3 ,26,14972,32144,7,3 ,3,28,556432,4,1 ,26,14972,32152,7,3 ,3,28,556440,12,5 ,26,14972,32160,7,3 ,3,28,556448,4,1 ,20,19666,10517922,108,0 ,26,14972,32168,7,3 ,3,28,556456,12,5 ,26,14972,32176,7,3 ,3,28,556464,4,1 ,26,14972,32184,7,3 ,3,28,556472,14,6 ,26,14972,32192,7,3 ,3,28,556480,15,5 ,17,923,8420804,40,0 ,17,923,7372228,80,0 ,17,923,6847940,40,0 ,45,15153,5275076,32,0 ,26,14972,32200,7,3 ,3,28,556488,4,1 ,26,14972,32208,7,3 ,3,28,556496,9,4 ,26,14972,32216,7,3 ,3,28,556504,10,4 ,26,14972,32224,7,3 ,3,28,556512,4,1 ,20,19337,9993698,172,0 ,26,14972,32232,7,3 ,3,28,556520,7,2 ,26,14972,32240,7,3 ,3,28,556528,22,10 ,26,14972,32248,7,3 ,3,28,556536,8,3 ,26,14972,32256,7,3 ,3,28,556544,4,1 ,20,22951,19955202,676,0 ,20,16260,3177986,12,0 ,17,923,32259,16,0 ,17,923,9993732,24,0 ,17,923,6323716,48,0 ,44,15152,3177988,48,0 ,17,923,8945156,48,0 ,26,14972,32264,7,3 ,3,28,556552,22,10 ,26,14972,32272,7,3 ,3,28,556560,10,4 ,26,14972,32280,7,3 ,3,28,556568,10,4 ,26,14972,32288,7,3 ,3,28,556576,7,2 ,20,23672,21528098,96,0 ,20,18430,7896610,12,0 ,26,14972,32296,7,3 ,3,28,556584,24,11 ,26,14972,32304,7,3 ,3,28,556592,7,2 ,26,14972,32312,7,3 ,3,28,556600,7,2 ,26,14972,32320,7,3 ,3,28,556608,8,3 ,20,25322,25722434,360,0 ,17,923,9469508,40,0 ,17,923,7896644,32,0 ,45,15153,4226628,16,0 ,45,15153,4750916,56,0 ,26,14972,32328,7,3 ,3,28,556616,8,3 ,26,14972,32336,7,3 ,3,28,556624,6,2 ,26,14972,32344,7,3 ,3,28,556632,62,35 ,26,14972,32352,7,3 ,3,28,556640,12,5 ,20,16261,3178082,28,0 ,26,14972,32360,7,3 ,3,28,556648,4,1 ,26,14972,32368,7,3 ,3,28,556656,14,6 ,26,14972,32376,7,3 ,3,28,556664,4,1 ,26,14972,32384,7,3 ,3,28,556672,16,7 ,20,18431,7896706,12,0 ,20,16638,3702402,464,0 ,17,923,32387,24,0 ,44,15152,556676,24,0 ,26,14972,32392,7,3 ,3,28,556680,8,3 ,26,14972,32400,7,3 ,3,28,556688,4,1 ,26,14972,32408,7,3 ,3,28,556696,22,10 ,26,14972,32416,7,3 ,3,28,556704,8,3 ,26,14972,32424,7,3 ,3,28,556712,8,3 ,26,14972,32432,7,3 ,3,28,556720,44,21 ,26,14972,32440,7,3 ,3,28,556728,12,5 ,26,14972,32448,7,3 ,3,28,556736,4,1 ,17,923,9993924,56,0 ,45,15153,4226756,56,0 ,45,15153,5275332,32,0 ,26,14972,32456,7,3 ,3,28,556744,12,5 ,26,14972,32464,7,3 ,3,28,556752,4,1 ,26,14972,32472,7,3 ,3,28,556760,10,4 ,26,14972,32480,7,3 ,3,28,556768,4,1 ,20,18432,7896802,232,0 ,26,14972,32488,7,3 ,3,28,556776,12,5 ,26,14972,32496,7,3 ,3,28,556784,4,1 ,26,14972,32504,7,3 ,3,28,556792,12,5 ,26,14972,32512,7,3 ,3,28,556800,4,1 ,17,923,8421124,24,0 ,17,923,6848260,40,0 ,44,15152,2653956,40,0 ,26,14972,32520,7,3 ,3,28,556808,6,2 ,26,14972,32528,7,3 ,3,28,556816,4,1 ,26,14972,32536,7,3 ,3,28,556824,26,12 ,26,14972,32544,7,3 ,3,28,556832,6,2 ,26,14972,32552,7,3 ,3,28,556840,6,2 ,26,14972,32560,7,3 ,3,28,556848,4,1 ,26,14972,32568,7,3 ,3,28,556856,10,4 ,26,14972,32576,7,3 ,3,28,556864,17,6 ,20,16262,3178306,52,0 ,17,923,32579,24,0 ,44,15152,3702596,32,0 ,17,923,7896900,24,0 ,44,15152,556868,16,0 ,26,14972,32584,7,3 ,3,28,556872,4,1 ,26,14972,32592,7,3 ,3,28,556880,6,2 ,26,14972,32600,7,3 ,3,28,556888,4,1 ,26,14972,32608,7,3 ,3,28,556896,12,5 ,26,14972,32616,7,3 ,3,28,556904,4,1 ,26,14972,32624,7,3 ,3,28,556912,18,8 ,26,14972,32632,7,3 ,3,28,556920,4,1 ,26,14972,32640,7,3 ,3,28,556928,18,8 ,17,923,9469828,24,0 ,17,923,6324100,32,0 ,44,15152,3178372,48,0 ,17,923,8945540,24,0 ,26,14972,32648,7,3 ,3,28,556936,4,1 ,26,14972,32656,7,3 ,3,28,556944,32,15 ,26,14972,32664,7,3 ,3,28,556952,6,2 ,26,14972,32672,7,3 ,3,28,556960,6,2 ,20,21175,15761314,184,0 ,20,26257,28344226,352,0 ,20,20896,14712738,4812,0 ,26,14972,32680,7,3 ,3,28,556968,6,2 ,26,14972,32688,7,3 ,3,28,556976,6,2 ,26,14972,32696,7,3 ,3,28,556984,4,1 ,26,14972,32704,7,3 ,3,28,556992,59,35 ,20,18892,8945602,128,0 ,17,923,8421316,24,0 ,44,15152,556996,24,0 ,45,15153,5275588,32,0 ,26,14972,32712,7,3 ,3,28,557000,7,2 ,26,14972,32720,7,3 ,3,28,557008,5,2 ,26,14972,32728,7,3 ,3,28,557016,13,4 ,26,14972,32736,7,3 ,3,28,557024,27,9 ,20,19919,11042786,12,0 ,26,14972,32744,7,3 ,3,28,557032,18,6 ,26,14972,32752,7,3 ,3,28,557040,21,7 ,26,14972,32760,7,3 ,3,28,557048,24,8 ,26,14972,32768,7,3 ,3,28,557056,18,6 ,17,923,32771,32,0 ,45,15153,4751364,24,0 ,17,923,7897092,32,0 ,26,14972,32776,7,3 ,3,28,557064,10,3 ,26,14972,32784,7,3 ,3,28,557072,38,18 ,26,14972,32792,7,3 ,3,28,557080,4,1 ,26,14972,32800,7,3 ,3,28,557088,6,2 ,26,14972,32808,7,3 ,3,28,557096,4,1 ,26,14972,32816,7,3 ,3,28,557104,24,11 ,26,14972,32824,7,3 ,3,28,557112,7,2 ,26,14972,32832,7,3 ,3,28,557120,6,2 ,20,19920,11042882,12,0 ,17,923,9470020,72,0 ,17,923,7372868,24,0 ,17,923,6848580,40,0 ,44,15152,2654276,40,0 ,44,15152,1081412,32,0 ,44,15152,3702852,64,0 ,17,923,8945732,32,0 ,26,14972,32840,7,3 ,3,28,557128,4,1 ,26,14972,32848,7,3 ,3,28,557136,12,5 ,26,14972,32856,7,3 ,3,28,557144,8,3 ,26,14972,32864,7,3 ,3,28,557152,12,5 ,26,14972,32872,7,3 ,3,28,557160,4,1 ,26,14972,32880,7,3 ,3,28,557168,14,6 ,26,14972,32888,7,3 ,3,28,557176,12,5 ,26,14972,32896,7,3 ,3,28,557184,4,1 ,17,923,9994372,32,0 ,17,923,6324356,24,0 ,44,15152,557188,24,0 ,45,15153,4227204,32,0 ,17,923,8421508,24,0 ,26,14972,32904,7,3 ,3,28,557192,13,4 ,26,14972,32912,7,3 ,3,28,557200,12,5 ,26,14972,32920,7,3 ,3,28,557208,10,4 ,26,14972,32928,7,3 ,3,28,557216,4,1 ,20,22513,18907298,124,0 ,20,17980,6848674,132,0 ,20,19921,11042978,52,0 ,26,14972,32936,7,3 ,3,28,557224,16,7 ,26,14972,32944,7,3 ,3,28,557232,8,3 ,26,14972,32952,7,3 ,3,28,557240,4,1 ,26,14972,32960,7,3 ,3,28,557248,8,3 ,20,20710,13664450,968,0 ,45,15153,5275844,32,0 ,45,15153,4751556,32,0 ,26,14972,32968,7,3 ,3,28,557256,36,17 ,26,14972,32976,7,3 ,3,28,557264,6,2 ,26,14972,32984,7,3 ,3,28,557272,10,4 ,26,14972,32992,7,3 ,3,28,557280,9,3 ,20,16263,3178722,88,0 ,26,14972,33000,7,3 ,3,28,557288,6,2 ,26,14972,33008,7,3 ,3,28,557296,6,2 ,26,14972,33016,7,3 ,3,28,557304,9,3 ,26,14972,33024,7,3 ,3,28,557312,10,4 ,20,19667,10518786,108,0 ,17,923,33027,16,0 ,44,15152,3178756,160,0 ,17,923,7897348,24,0 ,17,923,7373060,24,0 ,26,14972,33032,7,3 ,3,28,557320,8,3 ,26,14972,33040,7,3 ,3,28,557328,8,3 ,26,14972,33048,7,3 ,3,28,557336,8,3 ,26,14972,33056,7,3 ,3,28,557344,7,2 ,20,23673,21528866,96,0 ,26,14972,33064,7,3 ,3,28,557352,5,2 ,26,14972,33072,7,3 ,3,28,557360,12,5 ,26,14972,33080,7,3 ,3,28,557368,7,2 ,26,14972,33088,7,3 ,3,28,557376,194,131 ,17,923,8945988,24,0 ,17,923,6324548,24,0 ,44,15152,557380,24,0 ,44,15152,1081668,32,0 ,17,923,8421700,32,0 ,26,14972,33096,7,3 ,3,28,557384,12,5 ,26,14972,33104,7,3 ,3,28,557392,18,6 ,26,14972,33112,7,3 ,3,28,557400,17,6 ,26,14972,33120,7,3 ,3,28,557408,18,6 ,26,14972,33128,7,3 ,3,28,557416,8,3 ,26,14972,33136,7,3 ,3,28,557424,11,4 ,26,14972,33144,7,3 ,3,28,557432,11,4 ,26,14972,33152,7,3 ,3,28,557440,7,2 ,17,923,33155,32,0 ,17,923,9994628,16,0 ,17,923,6848900,40,0 ,44,15152,2654596,288,0 ,45,15153,4227460,16,0 ,26,14972,33160,7,3 ,3,28,557448,5,2 ,26,14972,33168,7,3 ,3,28,557456,10,3 ,26,14972,33176,7,3 ,3,28,557464,5,2 ,26,14972,33184,7,3 ,3,28,557472,5,2 ,26,14972,33192,7,3 ,3,28,557480,12,4 ,26,14972,33200,7,3 ,3,28,557488,112,55 ,26,14972,33208,7,3 ,3,28,557496,4,1 ,26,14972,33216,7,3 ,3,28,557504,7,2 ,20,24491,23626178,144,0 ,45,15153,5276100,32,0 ,17,923,7897540,40,0 ,17,923,7373252,40,0 ,43,15151,33220,64,0 ,45,15153,4751812,24,0 ,26,14972,33224,7,3 ,3,28,557512,18,8 ,26,14972,33232,7,3 ,3,28,557520,6,2 ,26,14972,33240,7,3 ,3,28,557528,16,7 ,26,14972,33248,7,3 ,3,28,557536,7,2 ,26,14972,33256,7,3 ,3,28,557544,10,4 ,26,14972,33264,7,3 ,3,28,557552,4,1 ,26,14972,33272,7,3 ,3,28,557560,9,4 ,26,14972,33280,7,3 ,3,28,557568,50,27 ,17,923,9994756,24,0 ,17,923,6324740,24,0 ,44,15152,557572,24,0 ,45,15153,4227588,24,0 ,17,923,8946180,56,0 ,26,14972,33288,7,3 ,3,28,557576,7,2 ,26,14972,33296,7,3 ,3,28,557584,6,2 ,26,14972,33304,7,3 ,3,28,557592,4,1 ,26,14972,33312,7,3 ,3,28,557600,6,2 ,26,14972,33320,7,3 ,3,28,557608,4,1 ,26,14972,33328,7,3 ,3,28,557616,4,1 ,26,14972,33336,7,3 ,3,28,557624,18,7 ,26,14972,33344,7,3 ,3,28,557632,4,1 ,20,19922,11043394,640,0 ,17,923,8421956,24,0 ,44,15152,1081924,48,0 ,44,15152,3703364,32,0 ,26,14972,33352,7,3 ,3,28,557640,6,2 ,26,14972,33360,7,3 ,3,28,557648,4,1 ,26,14972,33368,7,3 ,3,28,557656,4,1 ,26,14972,33376,7,3 ,3,28,557664,8,3 ,26,14972,33384,7,3 ,3,28,557672,4,1 ,26,14972,33392,7,3 ,3,28,557680,19,6 ,26,14972,33400,7,3 ,3,28,557688,107,67 ,26,14972,33408,7,3 ,3,28,557696,10,4 ,17,923,33411,24,0 ,17,923,9470596,24,0 ,45,15153,4752004,32,0 ,27,1421,33416,26,8 ,3,28,557704,6,2 ,27,1421,33424,26,8 ,3,28,557712,12,4 ,27,1025,33432,24,8 ,3,28,557720,12,4 ,27,1026,33440,24,8 ,3,28,557728,4,1 ,27,1027,33448,24,8 ,3,28,557736,9,4 ,27,1028,33456,24,8 ,3,28,557744,17,8 ,27,1029,33464,26,8 ,3,28,557752,4,1 ,27,1418,33472,26,8 ,3,28,557760,12,5 ,17,923,9994948,16,0 ,17,923,6849220,48,0 ,17,923,6324932,24,0 ,44,15152,557764,24,0 ,45,15153,4227780,24,0 ,45,15153,5276356,24,0 ,27,1407,33480,26,8 ,3,28,557768,4,1 ,27,1421,33488,26,8 ,3,28,557776,4,1 ,27,579,33496,22,8 ,3,28,557784,6,2 ,27,579,33504,23,8 ,3,28,557792,4,1 ,20,20474,13140706,80,0 ,20,25100,25199330,24,0 ,27,1035,33512,26,8 ,3,28,557800,4,1 ,27,9,33520,23,8 ,3,28,557808,15,5 ,27,445,33528,23,8 ,3,28,557816,14,5 ,27,1039,33536,21,8 ,3,28,557824,70,34 ,17,923,8422148,32,0 ,17,923,7897860,32,0 ,17,923,7373572,40,0 ,27,1038,33544,26,8 ,3,28,557832,10,3 ,27,41,33552,23,8 ,3,28,557840,6,3 ,27,1038,33560,25,8 ,3,28,557848,14,5 ,27,1026,33568,24,8 ,3,28,557856,7,2 ,27,1040,33576,24,8 ,3,28,557864,4,1 ,27,623,33584,23,8 ,3,28,557872,11,4 ,27,1043,33592,24,8 ,3,28,557880,31,16 ,27,1048,33600,25,8 ,3,28,557888,7,2 ,20,19338,9995074,516,0 ,17,923,33603,24,0 ,17,923,9995076,40,0 ,44,15152,3703620,32,0 ,17,923,9470788,24,0 ,27,1047,33608,25,8 ,3,28,557896,44,19 ,27,1047,33616,26,8 ,3,28,557904,4,1 ,27,1048,33624,26,8 ,3,28,557912,103,67 ,27,1050,33632,24,8 ,3,28,557920,12,4 ,27,1051,33640,26,8 ,3,28,557928,10,4 ,27,1026,33648,24,8 ,3,28,557936,6,2 ,27,1052,33656,24,8 ,3,28,557944,8,3 ,27,1418,33664,26,8 ,3,28,557952,4,1 ,45,15153,5276548,24,0 ,17,923,6325124,24,0 ,44,15152,557956,24,0 ,45,15153,4227972,24,0 ,45,15153,4752260,16,0 ,27,1039,33672,21,8 ,3,28,557960,9,4 ,27,1038,33680,26,8 ,3,28,557968,17,8 ,27,1053,33688,24,8 ,3,28,557976,28,13 ,27,1040,33696,25,8 ,3,28,557984,6,2 ,20,16264,3179426,192,0 ,20,25101,25199522,292,0 ,27,41,33704,23,8 ,3,28,557992,6,2 ,27,1054,33712,26,8 ,3,28,558000,6,2 ,27,1043,33720,24,8 ,3,28,558008,6,2 ,27,1025,33728,24,8 ,3,28,558016,130,67 ,20,18893,8946626,1088,0 ,17,923,8946628,24,0 ,43,15151,33732,32,0 ,44,15152,1082308,80,0 ,27,1055,33736,24,8 ,3,28,558024,4,1 ,27,1038,33744,25,8 ,3,28,558032,28,13 ,27,1029,33752,26,8 ,3,28,558040,18,6 ,27,1056,33760,26,8 ,3,28,558048,6,2 ,20,21514,16286690,172,0 ,27,1057,33768,22,8 ,3,28,558056,28,13 ,27,1060,33776,26,8 ,3,28,558064,6,2 ,27,1396,33784,24,8 ,3,28,558072,6,2 ,27,1407,33792,28,8 ,3,28,558080,6,2 ,17,923,33795,16,0 ,17,923,9470980,64,0 ,17,923,7898116,32,0 ,45,15153,4752388,16,0 ,17,923,8422404,40,0 ,27,579,33800,24,8 ,3,28,558088,6,2 ,27,579,33808,25,8 ,3,28,558096,14,5 ,27,1421,33816,26,8 ,3,28,558104,4,1 ,27,1062,33824,21,8 ,3,28,558112,24,11 ,20,23674,21529634,96,0 ,27,1392,33832,24,8 ,3,28,558120,14,5 ,27,1338,33840,21,8 ,3,28,558128,4,1 ,27,1336,33848,22,8 ,3,28,558136,10,4 ,27,1064,33856,22,8 ,3,28,558144,4,1 ,45,15153,5276740,32,0 ,17,923,7373892,32,0 ,17,923,6849604,24,0 ,17,923,6325316,24,0 ,44,15152,558148,24,0 ,44,15152,3703876,24,0 ,45,15153,4228164,24,0 ,27,163,33864,22,8 ,3,28,558152,24,11 ,27,1071,33872,22,8 ,3,28,558160,12,5 ,27,163,33880,22,8 ,3,28,558168,6,2 ,27,1073,33888,22,8 ,3,28,558176,18,6 ,20,19668,10519650,32,0 ,27,1312,33896,24,8 ,3,28,558184,62,30 ,27,1310,33904,27,8 ,3,28,558192,26,11 ,27,1078,33912,24,8 ,3,28,558200,4,1 ,27,1082,33920,24,8 ,3,28,558208,6,2 ,20,22514,18908290,72,0 ,17,923,33923,16,0 ,17,923,9995396,24,0 ,45,15153,4752516,16,0 ,17,923,8946820,48,0 ,27,1081,33928,26,8 ,3,28,558216,4,1 ,27,1108,33936,24,8 ,3,28,558224,12,5 ,27,1107,33944,26,8 ,3,28,558232,15,5 ,27,1107,33952,24,8 ,3,28,558240,15,5 ,27,1102,33960,24,8 ,3,28,558248,7,2 ,27,1421,33968,26,8 ,3,28,558256,14,6 ,27,1407,33976,26,8 ,3,28,558264,4,1 ,27,1421,33984,26,8 ,3,28,558272,4,1 ,20,23900,22054082,740,0 ,20,17981,6849730,1300,0 ,43,15151,33988,48,0 ,27,1100,33992,24,8 ,3,28,558280,8,3 ,27,1105,34000,24,8 ,3,28,558288,4,1 ,27,1109,34008,24,8 ,3,28,558296,6,2 ,27,1110,34016,24,8 ,3,28,558304,4,1 ,27,1111,34024,26,8 ,3,28,558312,8,3 ,27,41,34032,23,8 ,3,28,558320,4,1 ,27,1112,34040,24,8 ,3,28,558328,109,67 ,27,1113,34048,23,8 ,3,28,558336,12,4 ,17,923,34051,16,0 ,45,15153,4752644,16,0 ,17,923,7898372,24,0 ,17,923,6849796,32,0 ,17,923,6325508,24,0 ,44,15152,558340,24,0 ,44,15152,3704068,32,0 ,45,15153,4228356,24,0 ,27,1114,34056,26,8 ,3,28,558344,12,4 ,27,1115,34064,27,8 ,3,28,558352,11,4 ,27,1116,34072,27,8 ,3,28,558360,12,4 ,27,1118,34080,24,8 ,3,28,558368,8,3 ,27,1112,34088,24,8 ,3,28,558376,12,4 ,27,1120,34096,26,8 ,3,28,558384,74,36 ,27,1123,34104,26,8 ,3,28,558392,18,8 ,27,1122,34112,26,8 ,3,28,558400,4,1 ,17,923,9995588,32,0 ,17,923,7374148,48,0 ,45,15153,5276996,32,0 ,17,923,8422724,40,0 ,27,1112,34120,24,8 ,3,28,558408,11,4 ,27,623,34128,25,8 ,3,28,558416,15,7 ,27,1124,34136,26,8 ,3,28,558424,4,1 ,27,1125,34144,25,8 ,3,28,558432,8,3 ,20,23483,21005666,12,0 ,20,19669,10519906,456,0 ,20,20475,13141346,12,0 ,20,21176,15762786,64,0 ,27,1126,34152,25,8 ,3,28,558440,4,1 ,27,1309,34160,26,8 ,3,28,558448,58,35 ,27,1308,34168,24,8 ,3,28,558456,6,2 ,27,1143,34176,26,8 ,3,28,558464,15,5 ,20,21764,16811394,340,0 ,20,18168,7374210,32,0 ,17,923,34179,24,0 ,45,15153,4752772,40,0 ,27,1141,34184,26,8 ,3,28,558472,4,1 ,27,1138,34192,24,8 ,3,28,558480,9,4 ,27,41,34200,23,8 ,3,28,558488,6,2 ,27,1118,34208,24,8 ,3,28,558496,8,3 ,27,41,34216,23,8 ,3,28,558504,19,9 ,27,1140,34224,27,8 ,3,28,558512,4,1 ,27,1118,34232,26,8 ,3,28,558520,18,7 ,27,1142,34240,24,8 ,3,28,558528,4,1 ,20,23484,21005762,88,0 ,20,20476,13141442,84,0 ,45,15153,4228548,32,0 ,17,923,7898564,24,0 ,17,923,6325700,24,0 ,44,15152,558532,24,0 ,27,1304,34248,24,8 ,3,28,558536,12,5 ,27,1150,34256,22,8 ,3,28,558544,14,5 ,27,142,34264,26,8 ,3,28,558552,4,1 ,27,1308,34272,26,8 ,3,28,558560,6,2 ,27,1141,34280,26,8 ,3,28,558568,4,1 ,27,1153,34288,24,8 ,3,28,558576,10,3 ,27,1154,34296,22,8 ,3,28,558584,10,4 ,27,1290,34304,26,8 ,3,28,558592,16,7 ,20,25848,27297282,108,0 ,17,923,9471492,48,0 ,17,923,6850052,32,0 ,44,15152,3180036,264,0 ,44,15152,3704324,56,0 ,17,923,8947204,32,0 ,27,1175,34312,27,8 ,3,28,558600,38,19 ,27,1174,34320,26,8 ,3,28,558608,4,1 ,27,1157,34328,26,8 ,3,28,558616,9,4 ,27,1159,34336,26,8 ,3,28,558624,6,2 ,20,18433,7898658,264,0 ,27,1163,34344,21,8 ,3,28,558632,12,5 ,27,1161,34352,22,8 ,3,28,558640,4,1 ,27,1164,34360,24,8 ,3,28,558648,6,2 ,27,1165,34368,22,8 ,3,28,558656,4,1 ,20,24492,23627330,248,0 ,17,923,34371,16,0 ,17,923,9995844,32,0 ,43,15151,34372,32,0 ,44,15152,1082948,112,0 ,45,15153,5277252,24,0 ,27,579,34376,23,8 ,3,28,558664,9,4 ,27,579,34384,23,8 ,3,28,558672,10,4 ,27,1166,34392,24,8 ,3,28,558680,6,2 ,27,1168,34400,27,8 ,3,28,558688,6,2 ,27,1169,34408,24,8 ,3,28,558696,4,1 ,27,1170,34416,22,8 ,3,28,558704,11,4 ,27,1171,34424,24,8 ,3,28,558712,26,13 ,27,1172,34432,23,8 ,3,28,558720,7,2 ,20,18169,7374466,52,0 ,20,24878,24675970,1592,0 ,17,923,8423044,40,0 ,17,923,7898756,32,0 ,17,923,6325892,24,0 ,44,15152,558724,24,0 ,27,1173,34440,24,8 ,3,28,558728,4,1 ,27,1037,34448,25,8 ,3,28,558736,9,4 ,27,445,34456,25,8 ,3,28,558744,22,11 ,27,1035,34464,27,8 ,3,28,558752,24,11 ,20,22234,18384546,340,0 ,27,9,34472,26,8 ,3,28,558760,4,1 ,27,1183,34480,24,8 ,3,28,558768,12,5 ,27,1180,34488,27,8 ,3,28,558776,4,1 ,27,71,34496,24,8 ,3,28,558784,8,3 ,20,22515,18908866,104,0 ,17,923,34499,32,0 ,45,15153,4753092,72,0 ,17,923,7374532,24,0 ,44,15152,2131652,56,0 ,45,15153,4228804,16,0 ,27,1182,34504,26,8 ,3,28,558792,14,5 ,27,1184,34512,23,8 ,3,28,558800,4,1 ,27,1186,34520,27,8 ,3,28,558808,10,4 ,27,1039,34528,21,8 ,3,28,558816,6,2 ,20,15183,34530,12,0 ,27,1038,34536,28,8 ,3,28,558824,4,1 ,27,1189,34544,25,8 ,3,28,558832,8,3 ,27,623,34552,26,8 ,3,28,558840,4,1 ,27,1191,34560,24,8 ,3,28,558848,6,2 ,17,923,8947460,24,0 ,17,923,6850308,32,0 ,45,15153,5277444,32,0 ,27,1192,34568,26,8 ,3,28,558856,4,1 ,27,1193,34576,26,8 ,3,28,558864,4,1 ,27,1040,34584,25,8 ,3,28,558872,12,5 ,27,41,34592,23,8 ,3,28,558880,14,6 ,20,23675,21530402,96,0 ,27,178,34600,23,8 ,3,28,558888,4,1 ,27,1194,34608,24,8 ,3,28,558896,9,4 ,27,1195,34616,24,8 ,3,28,558904,17,8 ,27,1197,34624,25,8 ,3,28,558912,26,11 ,20,15184,34626,44,0 ,17,923,9996100,24,0 ,17,923,6326084,40,0 ,43,15151,34628,56,0 ,44,15152,558916,24,0 ,45,15153,4228932,24,0 ,27,1197,34632,26,8 ,3,28,558920,4,1 ,27,1038,34640,27,8 ,3,28,558928,6,2 ,27,1203,34648,24,8 ,3,28,558936,14,5 ,27,1043,34656,24,8 ,3,28,558944,4,1 ,20,21177,15763298,36,0 ,27,809,34664,23,8 ,3,28,558952,8,3 ,27,1200,34672,24,8 ,3,28,558960,4,1 ,27,1204,34680,23,8 ,3,28,558968,6,2 ,27,1028,34688,24,8 ,3,28,558976,7,2 ,17,923,9471876,40,0 ,17,923,7899012,32,0 ,17,923,7374724,56,0 ,27,1205,34696,24,8 ,3,28,558984,6,2 ,27,1207,34704,26,8 ,3,28,558992,4,1 ,27,1208,34712,24,8 ,3,28,559000,14,6 ,27,1210,34720,26,8 ,3,28,559008,7,2 ,27,1266,34728,26,8 ,3,28,559016,8,3 ,27,1231,34736,22,8 ,3,28,559024,10,4 ,27,41,34744,23,8 ,3,28,559032,4,1 ,27,253,34752,21,8 ,3,28,559040,6,2 ,17,923,34755,24,0 ,17,923,8947652,56,0 ,44,15152,3704772,48,0 ,17,923,8423364,24,0 ,27,1215,34760,24,8 ,3,28,559048,4,1 ,27,1216,34768,24,8 ,3,28,559056,26,12 ,27,1218,34776,22,8 ,3,28,559064,8,3 ,27,776,34784,26,8 ,3,28,559072,8,3 ,27,623,34792,23,8 ,3,28,559080,12,5 ,27,1220,34800,26,8 ,3,28,559088,4,1 ,27,1223,34808,22,8 ,3,28,559096,6,2 ,27,1221,34816,22,8 ,3,28,559104,4,1 ,17,923,9996292,48,0 ,17,923,6850564,48,0 ,44,15152,559108,24,0 ,45,15153,4229124,16,0 ,45,15153,5277700,24,0 ,27,1222,34824,22,8 ,3,28,559112,6,2 ,27,1224,34832,22,8 ,3,28,559120,4,1 ,27,1225,34840,22,8 ,3,28,559128,10,4 ,27,1226,34848,22,8 ,3,28,559136,10,3 ,20,18170,7374882,688,0 ,27,1227,34856,26,8 ,3,28,559144,8,3 ,27,1229,34864,23,8 ,3,28,559152,10,3 ,27,1242,34872,24,8 ,3,28,559160,8,3 ,27,1035,34880,26,8 ,3,28,559168,10,3 ,27,9,34888,23,8 ,3,28,559176,8,3 ,27,1232,34896,24,8 ,3,28,559184,7,2 ,27,1233,34904,26,8 ,3,28,559192,5,2 ,27,1237,34912,24,8 ,3,28,559200,36,17 ,20,966,34913,480,0 ,20,20477,13142114,440,0 ,27,1238,34920,24,8 ,3,28,559208,6,2 ,27,1239,34928,24,8 ,3,28,559216,16,5 ,27,1309,34936,24,8 ,3,28,559224,4,1 ,27,1240,34944,24,8 ,3,28,559232,9,4 ,20,23485,21006466,464,0 ,20,21178,15763586,1600,0 ,17,923,34947,48,0 ,17,923,8423556,40,0 ,17,923,7899268,40,0 ,17,923,6326404,24,0 ,44,15152,2132100,32,0 ,45,15153,4229252,64,0 ,27,1243,34952,24,8 ,3,28,559240,92,51 ,27,809,34960,23,8 ,3,28,559248,4,1 ,27,1200,34968,24,8 ,3,28,559256,12,5 ,27,1043,34976,24,8 ,3,28,559264,4,1 ,20,15185,34978,136,0 ,27,1259,34984,24,8 ,3,28,559272,4,1 ,27,1257,34992,21,8 ,3,28,559280,7,2 ,27,1255,35000,22,8 ,3,28,559288,18,8 ,27,1247,35008,21,8 ,3,28,559296,8,3 ,17,923,9472196,24,0 ,44,15152,559300,24,0 ,45,15153,5277892,56,0 ,27,163,35016,24,8 ,3,28,559304,6,2 ,27,1248,35024,25,8 ,3,28,559312,9,3 ,27,1248,35032,26,8 ,3,28,559320,4,1 ,27,1249,35040,22,8 ,3,28,559328,7,2 ,27,616,35048,24,8 ,3,28,559336,10,3 ,27,1251,35056,25,8 ,3,28,559344,8,3 ,27,1251,35064,26,8 ,3,28,559352,14,6 ,27,1252,35072,25,8 ,3,28,559360,6,2 ,45,15153,4753668,224,0 ,43,15151,35076,48,0 ,27,1252,35080,26,8 ,3,28,559368,8,3 ,27,1254,35088,23,8 ,3,28,559376,4,1 ,27,1258,35096,24,8 ,3,28,559384,6,2 ,27,1260,35104,24,8 ,3,28,559392,4,1 ,27,1267,35112,26,8 ,3,28,559400,34,16 ,27,1268,35120,26,8 ,3,28,559408,16,7 ,27,1269,35128,24,8 ,3,28,559416,8,3 ,27,1270,35136,26,8 ,3,28,559424,15,5 ,20,21515,16288066,168,0 ,44,15152,3705156,48,0 ,17,923,7375172,32,0 ,17,923,6326596,40,0 ,27,295,35144,26,8 ,3,28,559432,4,1 ,27,1271,35152,26,8 ,3,28,559440,12,5 ,27,1272,35160,26,8 ,3,28,559448,4,1 ,27,1273,35168,24,8 ,3,28,559456,6,2 ,20,25849,27298146,104,0 ,27,1274,35176,24,8 ,3,28,559464,4,1 ,27,1275,35184,25,8 ,3,28,559472,14,6 ,27,1276,35192,24,8 ,3,28,559480,7,2 ,27,1277,35200,24,8 ,3,28,559488,7,2 ,20,25323,25725314,72,0 ,17,923,9996676,32,0 ,17,923,6850948,48,0 ,44,15152,2132356,32,0 ,44,15152,559492,24,0 ,17,923,8948100,40,0 ,17,923,9472388,32,0 ,27,1278,35208,24,8 ,3,28,559496,117,67 ,27,1279,35216,25,8 ,3,28,559504,9,3 ,27,1280,35224,24,8 ,3,28,559512,8,3 ,27,812,35232,24,8 ,3,28,559520,12,4 ,20,16265,3180962,12,0 ,27,1281,35240,24,8 ,3,28,559528,11,4 ,27,1282,35248,24,8 ,3,28,559536,90,44 ,27,1283,35256,26,8 ,3,28,559544,4,1 ,27,1285,35264,26,8 ,3,28,559552,24,11 ,20,17308,5278146,12,0 ,20,25669,26773954,352,0 ,17,923,8423876,40,0 ,17,923,7899588,32,0 ,44,15152,1083844,48,0 ,27,1287,35272,26,8 ,3,28,559560,4,1 ,27,1288,35280,24,8 ,3,28,559568,24,11 ,27,1288,35288,26,8 ,3,28,559576,8,3 ,27,1291,35296,25,8 ,3,28,559584,4,1 ,27,1292,35304,23,8 ,3,28,559592,14,6 ,27,1293,35312,24,8 ,3,28,559600,6,2 ,27,1295,35320,27,8 ,3,28,559608,7,2 ,27,143,35328,24,8 ,3,28,559616,10,4 ,20,22516,18909698,112,0 ,20,16266,3181058,272,0 ,17,923,35331,24,0 ,27,312,35336,24,8 ,3,28,559624,4,1 ,27,780,35344,24,8 ,3,28,559632,13,4 ,27,1297,35352,24,8 ,3,28,559640,6,2 ,27,1298,35360,24,8 ,3,28,559648,6,2 ,20,23676,21531170,96,0 ,20,17309,5278242,128,0 ,27,1299,35368,24,8 ,3,28,559656,4,1 ,27,1300,35376,24,8 ,3,28,559664,60,35 ,27,1301,35384,24,8 ,3,28,559672,8,3 ,27,1301,35392,26,8 ,3,28,559680,7,2 ,44,15152,559684,40,0 ,17,923,7375428,24,0 ,27,1302,35400,24,8 ,3,28,559688,5,2 ,27,1303,35408,21,8 ,3,28,559696,6,2 ,27,1306,35416,27,8 ,3,28,559704,6,2 ,27,1307,35424,25,8 ,3,28,559712,7,2 ,27,1302,35432,24,8 ,3,28,559720,5,2 ,27,1308,35440,24,8 ,3,28,559728,12,5 ,27,1141,35448,26,8 ,3,28,559736,7,2 ,27,1240,35456,26,8 ,3,28,559744,8,3 ,17,923,9996932,16,0 ,17,923,6326916,40,0 ,44,15152,2656900,32,0 ,44,15152,2132612,88,0 ,43,15151,35460,96,0 ,45,15153,4229764,24,0 ,45,15153,5278340,16,0 ,17,923,9472644,32,0 ,27,1311,35464,26,8 ,3,28,559752,4,1 ,27,1314,35472,25,8 ,3,28,559760,103,67 ,27,1316,35480,25,8 ,3,28,559768,8,3 ,27,1318,35488,27,8 ,3,28,559776,9,3 ,20,26258,28347042,148,0 ,27,1320,35496,27,8 ,3,28,559784,12,4 ,27,1321,35504,22,8 ,3,28,559792,4,1 ,27,1323,35512,25,8 ,3,28,559800,8,3 ,27,1325,35520,28,8 ,3,28,559808,12,4 ,17,923,35523,40,0 ,17,923,8948420,40,0 ,17,923,7899844,32,0 ,44,15152,3705540,48,0 ,27,1327,35528,25,8 ,3,28,559816,4,1 ,27,1329,35536,28,8 ,3,28,559824,20,9 ,27,1330,35544,25,8 ,3,28,559832,4,1 ,27,1331,35552,23,8 ,3,28,559840,10,4 ,27,1333,35560,25,8 ,3,28,559848,4,1 ,27,1335,35568,23,8 ,3,28,559856,9,4 ,27,41,35576,23,8 ,3,28,559864,12,5 ,27,1334,35584,25,8 ,3,28,559872,4,1 ,20,26083,27822850,340,0 ,17,923,9997060,40,0 ,17,923,7375620,16,0 ,17,923,6851332,40,0 ,44,15152,1608452,72,0 ,45,15153,5278468,16,0 ,17,923,8424196,24,0 ,27,1118,35592,26,8 ,3,28,559880,8,3 ,27,1335,35600,24,8 ,3,28,559888,4,1 ,27,1347,35608,24,8 ,3,28,559896,20,9 ,27,1340,35616,24,8 ,3,28,559904,12,5 ,20,26385,28871458,52,0 ,27,1342,35624,21,8 ,3,28,559912,4,1 ,27,1343,35632,23,8 ,3,28,559920,14,6 ,27,1344,35640,23,8 ,3,28,559928,4,1 ,27,1345,35648,23,8 ,3,28,559936,9,4 ,45,15153,4229956,16,0 ,44,15152,1084228,32,0 ,27,406,35656,26,8 ,3,28,559944,6,2 ,27,1352,35664,24,8 ,3,28,559952,26,11 ,27,1350,35672,23,8 ,3,28,559960,4,1 ,27,1356,35680,24,8 ,3,28,559968,9,4 ,27,1353,35688,24,8 ,3,28,559976,17,8 ,27,1354,35696,24,8 ,3,28,559984,26,11 ,27,1361,35704,23,8 ,3,28,559992,4,1 ,27,1358,35712,23,8 ,3,28,560000,6,2 ,17,923,9472900,24,0 ,17,923,7375748,48,0 ,44,15152,2657156,32,0 ,44,15152,560004,56,0 ,45,15153,5278596,24,0 ,27,1359,35720,23,8 ,3,28,560008,18,7 ,27,1382,35728,23,8 ,3,28,560016,4,1 ,27,1026,35736,24,8 ,3,28,560024,6,2 ,27,1029,35744,26,8 ,3,28,560032,14,5 ,27,1057,35752,22,8 ,3,28,560040,4,1 ,27,1052,35760,24,8 ,3,28,560048,6,2 ,27,41,35768,23,8 ,3,28,560056,4,1 ,27,1364,35776,26,8 ,3,28,560064,6,2 ,20,25324,25725890,304,0 ,17,923,8424388,24,0 ,17,923,7900100,32,0 ,17,923,6327236,48,0 ,45,15153,4230084,24,0 ,27,1418,35784,26,8 ,3,28,560072,131,73 ,27,1377,35792,24,8 ,3,28,560080,4,1 ,27,1421,35800,26,8 ,3,28,560088,10,4 ,27,1358,35808,23,8 ,3,28,560096,10,4 ,27,1359,35816,23,8 ,3,28,560104,4,1 ,27,1366,35824,23,8 ,3,28,560112,13,4 ,27,1368,35832,23,8 ,3,28,560120,31,16 ,27,1368,35840,28,8 ,3,28,560128,4,1 ,17,923,35843,40,0 ,17,923,8948740,40,0 ,27,1396,35848,24,8 ,3,28,560136,20,9 ,27,1369,35856,23,8 ,3,28,560144,4,1 ,27,1372,35864,20,8 ,3,28,560152,9,4 ,27,1059,35872,26,8 ,3,28,560160,15,7 ,27,1059,35880,24,8 ,3,28,560168,8,3 ,27,1376,35888,24,8 ,3,28,560176,10,4 ,27,1421,35896,26,8 ,3,28,560184,15,5 ,27,1039,35904,21,8 ,3,28,560192,15,5 ,17,923,9997380,40,0 ,17,923,6851652,32,0 ,44,15152,1084484,88,0 ,44,15152,3705924,40,0 ,45,15153,5278788,16,0 ,17,923,9473092,72,0 ,27,1038,35912,26,8 ,3,28,560200,15,5 ,27,1396,35920,24,8 ,3,28,560208,7,2 ,27,1374,35928,24,8 ,3,28,560216,4,1 ,27,1038,35936,25,8 ,3,28,560224,9,4 ,27,1358,35944,23,8 ,3,28,560232,19,9 ,27,1359,35952,23,8 ,3,28,560240,4,1 ,27,1396,35960,24,8 ,3,28,560248,6,2 ,27,1378,35968,24,8 ,3,28,560256,4,1 ,17,923,8424580,32,0 ,44,15152,2657412,40,0 ,45,15153,4230276,16,0 ,27,1379,35976,22,8 ,3,28,560264,10,4 ,27,1380,35984,22,8 ,3,28,560272,7,2 ,27,1028,35992,24,8 ,3,28,560280,4,1 ,27,1040,36000,24,8 ,3,28,560288,6,2 ,20,24690,24153250,24,0 ,20,25850,27298978,104,0 ,27,1383,36008,23,8 ,3,28,560296,7,2 ,27,1391,36016,26,8 ,3,28,560304,12,5 ,27,1388,36024,24,8 ,3,28,560312,4,1 ,27,1389,36032,24,8 ,3,28,560320,8,3 ,20,25102,25201858,192,0 ,20,26386,28871874,4040,0 ,45,15153,5278916,16,0 ,17,923,7900356,40,0 ,27,1378,36040,24,8 ,3,28,560328,4,1 ,27,1028,36048,24,8 ,3,28,560336,16,7 ,27,1397,36056,26,8 ,3,28,560344,15,5 ,27,1364,36064,26,8 ,3,28,560352,4,1 ,20,15186,36066,52,0 ,27,1398,36072,24,8 ,3,28,560360,8,3 ,27,1062,36080,21,8 ,3,28,560368,13,4 ,27,1400,36088,24,8 ,3,28,560376,4,1 ,27,616,36096,23,8 ,3,28,560384,10,4 ,20,16639,3706114,96,0 ,45,15153,4230404,16,0 ,17,923,7376132,48,0 ,27,1401,36104,24,8 ,3,28,560392,4,1 ,27,1402,36112,22,8 ,3,28,560400,100,67 ,27,1403,36120,22,8 ,3,28,560408,8,3 ,27,1404,36128,24,8 ,3,28,560416,8,3 ,20,23677,21531938,96,0 ,27,1380,36136,22,8 ,3,28,560424,15,5 ,27,340,36144,21,8 ,3,28,560432,56,27 ,27,1409,36152,24,8 ,3,28,560440,4,1 ,27,1411,36160,26,8 ,3,28,560448,10,4 ,17,923,36163,32,0 ,17,923,8949060,24,0 ,17,923,6851908,40,0 ,17,923,6327620,40,0 ,44,15152,2133316,32,0 ,44,15152,1609028,56,0 ,44,15152,560452,8,0 ,45,15153,5279044,16,0 ,27,1412,36168,24,8 ,3,28,560456,4,1 ,27,1414,36176,26,8 ,3,28,560464,6,2 ,27,1415,36184,24,8 ,3,28,560472,7,2 ,27,393,36192,25,8 ,3,28,560480,4,1 ,20,24691,24153442,1608,0 ,27,1417,36200,25,8 ,3,28,560488,6,2 ,27,1038,36208,25,8 ,3,28,560496,30,14 ,27,1038,36216,26,8 ,3,28,560504,12,4 ,27,1052,36224,24,8 ,3,28,560512,8,3 ,20,22517,18910594,140,0 ,17,923,9997700,40,0 ,43,15151,36228,16,0 ,44,15152,560516,24,0 ,44,15152,3706244,16,0 ,45,15153,4230532,72,0 ,17,923,8424836,40,0 ,27,1407,36232,26,8 ,3,28,560520,7,2 ,27,1057,36240,22,8 ,3,28,560528,12,5 ,27,623,36248,23,8 ,3,28,560536,6,2 ,27,1396,36256,24,8 ,3,28,560544,4,1 ,27,1397,36264,26,8 ,3,28,560552,11,4 ,27,1040,36272,24,8 ,3,28,560560,22,11 ,27,1364,36280,26,8 ,3,28,560568,14,5 ,27,41,36288,23,8 ,3,28,560576,4,1 ,45,15153,5279172,16,0 ,44,15152,2657732,32,0 ,27,1039,36296,21,8 ,3,28,560584,6,2 ,27,1419,36304,24,8 ,3,28,560592,24,11 ,27,1055,36312,24,8 ,3,28,560600,4,1 ,27,1426,36320,24,8 ,3,28,560608,6,2 ,27,1427,36328,24,8 ,3,28,560616,4,1 ,27,1546,36336,22,8 ,3,28,560624,14,6 ,27,579,36344,22,8 ,3,28,560632,4,1 ,27,579,36352,23,8 ,3,28,560640,100,67 ,20,24493,23629314,592,0 ,17,923,8949252,48,0 ,17,923,7900676,40,0 ,43,15151,36356,56,0 ,44,15152,3706372,88,0 ,27,1035,36360,26,8 ,3,28,560648,10,4 ,27,9,36368,23,8 ,3,28,560656,6,2 ,27,445,36376,23,8 ,3,28,560664,8,3 ,27,1421,36384,26,8 ,3,28,560672,4,1 ,20,17310,5279266,124,0 ,27,1429,36392,25,8 ,3,28,560680,9,4 ,27,1428,36400,24,8 ,3,28,560688,19,9 ,27,1050,36408,24,8 ,3,28,560696,14,5 ,27,616,36416,23,8 ,3,28,560704,4,1 ,17,923,36419,24,0 ,45,15153,5279300,16,0 ,44,15152,2133572,496,0 ,44,15152,560708,24,0 ,44,15152,3182148,24,0 ,27,1051,36424,26,8 ,3,28,560712,6,2 ,27,1026,36432,24,8 ,3,28,560720,28,13 ,27,1404,36440,24,8 ,3,28,560728,6,2 ,27,1052,36448,24,8 ,3,28,560736,6,2 ,20,18434,7900770,2008,0 ,20,17106,4755042,300,0 ,27,1418,36456,26,8 ,3,28,560744,6,2 ,27,1431,36464,24,8 ,3,28,560752,6,2 ,27,41,36472,23,8 ,3,28,560760,28,11 ,27,1432,36480,22,8 ,3,28,560768,4,1 ,20,21516,16289410,500,0 ,20,15187,36482,128,0 ,17,923,9473668,32,0 ,17,923,7376516,80,0 ,17,923,6852228,48,0 ,17,923,6327940,24,0 ,27,1523,36488,22,8 ,3,28,560776,30,14 ,27,1433,36496,24,8 ,3,28,560784,8,3 ,27,802,36504,26,8 ,3,28,560792,4,1 ,27,1517,36512,24,8 ,3,28,560800,10,4 ,27,1035,36520,27,8 ,3,28,560808,28,13 ,27,9,36528,24,8 ,3,28,560816,6,2 ,27,445,36536,23,8 ,3,28,560824,6,2 ,27,1421,36544,26,8 ,3,28,560832,6,2 ,17,923,9998020,48,0 ,44,15152,2657988,48,0 ,45,15153,5279428,24,0 ,17,923,8425156,32,0 ,27,579,36552,22,8 ,3,28,560840,6,2 ,27,579,36560,23,8 ,3,28,560848,28,11 ,27,1436,36568,26,8 ,3,28,560856,4,1 ,27,41,36576,23,8 ,3,28,560864,26,12 ,27,1028,36584,24,8 ,3,28,560872,4,1 ,27,1040,36592,24,8 ,3,28,560880,16,7 ,27,1029,36600,26,8 ,3,28,560888,12,5 ,27,623,36608,26,8 ,3,28,560896,6,2 ,17,923,36611,16,0 ,44,15152,3182340,24,0 ,44,15152,1609476,144,0 ,44,15152,560900,24,0 ,44,15152,1085188,56,0 ,27,1440,36616,27,8 ,3,28,560904,10,4 ,27,1509,36624,24,8 ,3,28,560912,21,7 ,27,1467,36632,26,8 ,3,28,560920,56,27 ,27,1035,36640,27,8 ,3,28,560928,4,1 ,27,9,36648,24,8 ,3,28,560936,12,5 ,27,445,36656,23,8 ,3,28,560944,10,4 ,27,1421,36664,26,8 ,3,28,560952,7,2 ,27,579,36672,22,8 ,3,28,560960,4,1 ,20,26259,28348226,128,0 ,17,923,6328132,32,0 ,17,923,7900996,24,0 ,27,579,36680,23,8 ,3,28,560968,6,2 ,27,1050,36688,24,8 ,3,28,560976,58,35 ,27,616,36696,23,8 ,3,28,560984,36,17 ,27,1062,36704,21,8 ,3,28,560992,7,2 ,27,1051,36712,26,8 ,3,28,561000,6,2 ,27,1026,36720,24,8 ,3,28,561008,7,2 ,27,1404,36728,24,8 ,3,28,561016,12,5 ,27,1052,36736,24,8 ,3,28,561024,4,1 ,17,923,36739,16,0 ,17,923,9473924,32,0 ,45,15153,5279620,32,0 ,17,923,8949636,40,0 ,27,1418,36744,26,8 ,3,28,561032,11,4 ,27,1039,36752,21,8 ,3,28,561040,22,11 ,27,1038,36760,26,8 ,3,28,561048,26,11 ,27,1402,36768,22,8 ,3,28,561056,4,1 ,27,1380,36776,22,8 ,3,28,561064,6,2 ,27,1053,36784,24,8 ,3,28,561072,4,1 ,27,1054,36792,26,8 ,3,28,561080,189,131 ,27,1043,36800,24,8 ,3,28,561088,8,3 ,17,923,8425412,32,0 ,43,15151,36804,24,0 ,44,15152,561092,24,0 ,44,15152,3182532,24,0 ,45,15153,4231108,104,0 ,27,1025,36808,24,8 ,3,28,561096,4,1 ,27,1055,36816,24,8 ,3,28,561104,9,4 ,27,1038,36824,25,8 ,3,28,561112,17,8 ,27,1057,36832,22,8 ,3,28,561120,4,1 ,20,25851,27299810,104,0 ,27,1060,36840,26,8 ,3,28,561128,14,5 ,27,1396,36848,24,8 ,3,28,561136,4,1 ,27,1397,36856,26,8 ,3,28,561144,6,2 ,27,1401,36864,24,8 ,3,28,561152,4,1 ,20,16640,3706882,128,0 ,17,923,36867,16,0 ,45,15153,4755460,224,0 ,17,923,7901188,40,0 ,17,923,6852612,40,0 ,27,1364,36872,26,8 ,3,28,561160,4,1 ,27,1427,36880,26,8 ,3,28,561168,108,67 ,27,1398,36888,24,8 ,3,28,561176,6,2 ,27,1403,36896,22,8 ,3,28,561184,568,259 ,20,23678,21532706,92,0 ,20,21765,16814114,12,0 ,27,1056,36904,26,8 ,3,28,561192,4,1 ,27,1400,36912,24,8 ,3,28,561200,9,4 ,27,1447,36920,24,8 ,3,28,561208,10,4 ,27,1448,36928,24,8 ,3,28,561216,4,1 ,17,923,9998404,40,0 ,17,923,6328388,32,0 ,44,15152,2658372,32,0 ,27,340,36936,22,8 ,3,28,561224,26,12 ,27,1450,36944,26,8 ,3,28,561232,6,2 ,27,1453,36952,27,8 ,3,28,561240,4,1 ,27,541,36960,23,8 ,3,28,561248,9,4 ,27,1464,36968,22,8 ,3,28,561256,10,4 ,27,1454,36976,22,8 ,3,28,561264,4,1 ,27,1455,36984,24,8 ,3,28,561272,14,6 ,27,1456,36992,24,8 ,3,28,561280,39,13 ,20,21766,16814210,12,0 ,17,923,36995,16,0 ,17,923,9474180,40,0 ,43,15151,36996,16,0 ,44,15152,561284,24,0 ,44,15152,3182724,56,0 ,45,15153,5279876,24,0 ,27,1457,37000,24,8 ,3,28,561288,45,15 ,27,1458,37008,24,8 ,3,28,561296,18,15 ,27,1459,37016,24,8 ,3,28,561304,75,25 ,27,1460,37024,24,8 ,3,28,561312,28,25 ,27,1461,37032,24,8 ,3,28,561320,72,24 ,27,1462,37040,24,8 ,3,28,561328,27,24 ,27,1463,37048,24,8 ,3,28,561336,9,3 ,27,383,37056,26,8 ,3,28,561344,15,5 ,17,923,8949956,32,0 ,44,15152,1085636,104,0 ,44,15152,3707076,48,0 ,17,923,8425668,48,0 ,27,1474,37064,26,8 ,3,28,561352,4,1 ,27,1035,37072,27,8 ,3,28,561360,9,4 ,27,9,37080,24,8 ,3,28,561368,15,7 ,27,1056,37088,26,8 ,3,28,561376,4,1 ,20,21767,16814306,12,0 ,27,1400,37096,24,8 ,3,28,561384,10,4 ,27,1447,37104,24,8 ,3,28,561392,4,1 ,27,1448,37112,24,8 ,3,28,561400,8,3 ,27,340,37120,22,8 ,3,28,561408,4,1 ,17,923,37123,16,0 ,43,15151,37124,16,0 ,17,923,7377156,24,0 ,27,1472,37128,26,8 ,3,28,561416,18,8 ,27,1480,37136,26,8 ,3,28,561424,8,3 ,27,1035,37144,27,8 ,3,28,561432,4,1 ,27,9,37152,24,8 ,3,28,561440,9,4 ,27,1056,37160,26,8 ,3,28,561448,10,4 ,27,1400,37168,24,8 ,3,28,561456,4,1 ,27,1447,37176,24,8 ,3,28,561464,24,11 ,27,1448,37184,24,8 ,3,28,561472,15,5 ,20,22235,18387266,720,0 ,20,21768,16814402,348,0 ,45,15153,5280068,24,0 ,17,923,7901508,48,0 ,17,923,6852932,24,0 ,17,923,6328644,24,0 ,44,15152,2658628,40,0 ,44,15152,561476,24,0 ,27,340,37192,22,8 ,3,28,561480,12,4 ,27,1477,37200,26,8 ,3,28,561488,10,4 ,27,808,37208,26,8 ,3,28,561496,8,3 ,27,1487,37216,26,8 ,3,28,561504,12,5 ,27,1035,37224,27,8 ,3,28,561512,15,5 ,27,9,37232,24,8 ,3,28,561520,10,4 ,27,1056,37240,26,8 ,3,28,561528,72,35 ,27,1400,37248,24,8 ,3,28,561536,6,2 ,17,923,37251,32,0 ,17,923,9998724,48,0 ,43,15151,37252,104,0 ,27,1447,37256,24,8 ,3,28,561544,12,4 ,27,1448,37264,24,8 ,3,28,561552,8,3 ,27,340,37272,22,8 ,3,28,561560,8,3 ,27,1483,37280,26,8 ,3,28,561568,12,5 ,27,1485,37288,24,8 ,3,28,561576,42,14 ,27,187,37296,26,8 ,3,28,561584,8,3 ,27,1506,37304,26,8 ,3,28,561592,8,3 ,27,1489,37312,26,8 ,3,28,561600,102,50 ,20,15585,1085890,12,0 ,17,923,9474500,16,0 ,17,923,7377348,40,0 ,17,923,8950212,24,0 ,27,1490,37320,26,8 ,3,28,561608,42,14 ,27,1491,37328,24,8 ,3,28,561616,4,1 ,27,1492,37336,24,8 ,3,28,561624,8,3 ,27,1493,37344,26,8 ,3,28,561632,4,1 ,20,22518,18911714,140,0 ,27,1494,37352,24,8 ,3,28,561640,11,4 ,27,1495,37360,24,8 ,3,28,561648,24,12 ,27,623,37368,26,8 ,3,28,561656,4,1 ,27,1496,37376,26,8 ,3,28,561664,18,8 ,20,17311,5280258,104,0 ,45,15153,5280260,24,0 ,17,923,6853124,32,0 ,17,923,6328836,24,0 ,44,15152,561668,24,0 ,27,1497,37384,24,8 ,3,28,561672,4,1 ,27,1498,37392,26,8 ,3,28,561680,32,15 ,27,1499,37400,26,8 ,3,28,561688,15,5 ,27,1500,37408,24,8 ,3,28,561696,4,1 ,20,15586,1085986,100,0 ,27,1509,37416,24,8 ,3,28,561704,32,15 ,27,1501,37424,24,8 ,3,28,561712,6,2 ,27,1502,37432,24,8 ,3,28,561720,10,4 ,27,1440,37440,27,8 ,3,28,561728,14,5 ,17,923,9474628,24,0 ,44,15152,3183172,8,0 ,44,15152,3707460,32,0 ,17,923,8426052,24,0 ,27,1504,37448,24,8 ,3,28,561736,4,1 ,27,260,37456,24,8 ,3,28,561744,9,4 ,27,1505,37464,25,8 ,3,28,561752,15,7 ,27,812,37472,23,8 ,3,28,561760,7,2 ,27,295,37480,23,8 ,3,28,561768,4,1 ,27,1502,37488,24,8 ,3,28,561776,9,4 ,27,1507,37496,25,8 ,3,28,561784,10,4 ,27,1502,37504,24,8 ,3,28,561792,7,2 ,20,16267,3183234,64,0 ,20,15188,37506,148,0 ,17,923,37507,16,0 ,17,923,8950404,24,0 ,44,15152,2658948,40,0 ,44,15152,3183236,24,0 ,27,1050,37512,24,8 ,3,28,561800,10,4 ,27,616,37520,23,8 ,3,28,561808,66,22 ,27,1062,37528,21,8 ,3,28,561816,25,22 ,27,1051,37536,26,8 ,3,28,561824,4,1 ,27,1026,37544,24,8 ,3,28,561832,14,6 ,27,1404,37552,24,8 ,3,28,561840,6,2 ,27,1052,37560,24,8 ,3,28,561848,4,1 ,27,1418,37568,26,8 ,3,28,561856,7,2 ,20,25103,25203394,292,0 ,45,15153,5280452,16,0 ,17,923,7901892,40,0 ,17,923,6329028,40,0 ,44,15152,561860,24,0 ,27,1039,37576,21,8 ,3,28,561864,6,2 ,27,1038,37584,26,8 ,3,28,561872,4,1 ,27,1402,37592,22,8 ,3,28,561880,11,4 ,27,1380,37600,22,8 ,3,28,561888,17,8 ,27,1053,37608,24,8 ,3,28,561896,4,1 ,27,1054,37616,26,8 ,3,28,561904,4,1 ,27,1043,37624,24,8 ,3,28,561912,16,7 ,27,1025,37632,24,8 ,3,28,561920,4,1 ,20,23679,21533442,92,0 ,17,923,37635,16,0 ,17,923,9999108,24,0 ,17,923,7377668,64,0 ,17,923,6853380,24,0 ,45,15153,4231940,64,0 ,17,923,8426244,40,0 ,17,923,9474820,24,0 ,27,1055,37640,24,8 ,3,28,561928,8,3 ,27,1038,37648,25,8 ,3,28,561936,10,3 ,27,1057,37656,22,8 ,3,28,561944,7,2 ,27,1060,37664,26,8 ,3,28,561952,12,5 ,20,22952,19960610,144,0 ,20,25852,27300642,104,0 ,27,1396,37672,24,8 ,3,28,561960,6,2 ,27,1397,37680,26,8 ,3,28,561968,4,1 ,27,1401,37688,24,8 ,3,28,561976,11,4 ,27,1364,37696,26,8 ,3,28,561984,45,24 ,20,26260,28349250,128,0 ,17,923,8950596,56,0 ,44,15152,3183428,24,0 ,44,15152,3707716,80,0 ,45,15153,5280580,24,0 ,27,1427,37704,26,8 ,3,28,561992,4,1 ,27,1398,37712,24,8 ,3,28,562000,6,2 ,27,1403,37720,22,8 ,3,28,562008,4,1 ,27,1428,37728,24,8 ,3,28,562016,8,3 ,20,19339,9999202,12,0 ,27,1056,37736,26,8 ,3,28,562024,4,1 ,27,1400,37744,24,8 ,3,28,562032,9,4 ,27,1447,37752,24,8 ,3,28,562040,15,7 ,27,1448,37760,24,8 ,3,28,562048,10,4 ,17,923,37763,24,0 ,44,15152,562052,24,0 ,44,15152,1610628,72,0 ,27,340,37768,22,8 ,3,28,562056,7,2 ,27,1514,37776,26,8 ,3,28,562064,30,14 ,27,1516,37784,26,8 ,3,28,562072,4,1 ,27,1518,37792,24,8 ,3,28,562080,13,4 ,20,19670,10523554,192,0 ,27,1522,37800,23,8 ,3,28,562088,12,5 ,27,1520,37808,25,8 ,3,28,562096,7,2 ,27,1222,37816,22,8 ,3,28,562104,10,4 ,27,340,37824,21,8 ,3,28,562112,4,1 ,20,19340,9999298,52,0 ,20,16143,2659266,3312,0 ,17,923,9999300,24,0 ,17,923,6853572,24,0 ,44,15152,2659268,32,0 ,17,923,9475012,64,0 ,27,1039,37832,21,8 ,3,28,562120,59,35 ,27,1038,37840,26,8 ,3,28,562128,12,4 ,27,1525,37848,26,8 ,3,28,562136,6,2 ,27,1043,37856,24,8 ,3,28,562144,4,1 ,27,1053,37864,24,8 ,3,28,562152,9,4 ,27,1040,37872,25,8 ,3,28,562160,15,7 ,27,41,37880,23,8 ,3,28,562168,4,1 ,27,1054,37888,26,8 ,3,28,562176,6,2 ,20,16641,3707906,396,0 ,45,15153,5280772,16,0 ,17,923,7902212,40,0 ,17,923,6329348,32,0 ,44,15152,1086468,24,0 ,44,15152,3183620,64,0 ,27,1531,37896,26,8 ,3,28,562184,24,11 ,27,41,37904,23,8 ,3,28,562192,4,1 ,27,1118,37912,26,8 ,3,28,562200,6,2 ,27,1530,37920,20,8 ,3,28,562208,4,1 ,27,1527,37928,20,8 ,3,28,562216,8,3 ,27,1528,37936,20,8 ,3,28,562224,38,18 ,27,1400,37944,24,8 ,3,28,562232,4,1 ,27,1532,37952,22,8 ,3,28,562240,6,2 ,17,923,37955,16,0 ,17,923,8426564,24,0 ,44,15152,562244,24,0 ,27,1043,37960,24,8 ,3,28,562248,4,1 ,27,1025,37968,24,8 ,3,28,562256,16,7 ,27,1055,37976,24,8 ,3,28,562264,7,2 ,27,1038,37984,25,8 ,3,28,562272,5,2 ,27,1029,37992,26,8 ,3,28,562280,4,1 ,27,1056,38000,26,8 ,3,28,562288,10,4 ,27,1057,38008,22,8 ,3,28,562296,14,5 ,27,1060,38016,26,8 ,3,28,562304,4,1 ,20,16268,3183746,12,0 ,17,923,9999492,16,0 ,17,923,6853764,32,0 ,45,15153,5280900,64,0 ,27,1396,38024,24,8 ,3,28,562312,8,3 ,27,1028,38032,24,8 ,3,28,562320,12,4 ,27,1397,38040,26,8 ,3,28,562328,4,1 ,27,1401,38048,24,8 ,3,28,562336,4,1 ,27,1364,38056,26,8 ,3,28,562344,6,2 ,27,1427,38064,24,8 ,3,28,562352,48,19 ,27,1398,38072,24,8 ,3,28,562360,4,1 ,27,1534,38080,24,8 ,3,28,562368,6,2 ,20,25670,26776770,656,0 ,17,923,38083,32,0 ,44,15152,1086660,24,0 ,44,15152,2659524,40,0 ,43,15151,38084,32,0 ,27,1539,38088,22,8 ,3,28,562376,7,2 ,27,1062,38096,21,8 ,3,28,562384,12,5 ,27,1540,38104,22,8 ,3,28,562392,4,1 ,27,1541,38112,22,8 ,3,28,562400,4,1 ,20,16269,3183842,252,0 ,27,623,38120,23,8 ,3,28,562408,8,3 ,27,1402,38128,24,8 ,3,28,562416,4,1 ,27,1380,38136,24,8 ,3,28,562424,4,1 ,27,1542,38144,24,8 ,3,28,562432,7,2 ,17,923,9999620,32,0 ,17,923,7378180,104,0 ,17,923,6329604,24,0 ,44,15152,562436,24,0 ,45,15153,4232452,56,0 ,17,923,8426756,32,0 ,17,923,8951044,24,0 ,27,1543,38152,22,8 ,3,28,562440,26,12 ,27,1509,38160,24,8 ,3,28,562448,15,5 ,27,1403,38168,22,8 ,3,28,562456,12,5 ,27,1502,38176,24,8 ,3,28,562464,7,2 ,27,1544,38184,22,8 ,3,28,562472,10,4 ,27,1400,38192,24,8 ,3,28,562480,4,1 ,27,1118,38200,26,8 ,3,28,562488,59,35 ,27,41,38208,23,8 ,3,28,562496,15,5 ,20,21951,17339714,1604,0 ,20,25325,25728322,128,0 ,20,15587,1086786,432,0 ,20,17312,5281090,12,0 ,17,923,7902532,48,0 ,27,1118,38216,26,8 ,3,28,562504,4,1 ,27,41,38224,23,8 ,3,28,562512,9,4 ,27,1548,38232,24,8 ,3,28,562520,10,4 ,27,1549,38240,23,8 ,3,28,562528,4,1 ,20,19341,9999714,280,0 ,27,1551,38248,24,8 ,3,28,562536,28,13 ,27,1552,38256,23,8 ,3,28,562544,4,1 ,27,1553,38264,25,8 ,3,28,562552,9,4 ,27,1118,38272,26,8 ,3,28,562560,12,5 ,44,15152,1086852,48,0 ,17,923,6854020,32,0 ,27,41,38280,23,8 ,3,28,562568,24,11 ,27,1118,38288,24,8 ,3,28,562576,4,1 ,27,1556,38296,24,8 ,3,28,562584,6,2 ,27,1560,38304,24,8 ,3,28,562592,4,1 ,20,17313,5281186,52,0 ,20,26084,27825570,432,0 ,27,1557,38312,24,8 ,3,28,562600,12,5 ,27,633,38320,24,8 ,3,28,562608,4,1 ,27,1558,38328,24,8 ,3,28,562616,9,4 ,27,1559,38336,24,8 ,3,28,562624,15,7 ,17,923,38339,24,0 ,17,923,9475524,32,0 ,17,923,6329796,24,0 ,44,15152,1611204,16,0 ,43,15151,38340,16,0 ,44,15152,562628,24,0 ,44,15152,3708356,32,0 ,17,923,8951236,48,0 ,27,1561,38344,24,8 ,3,28,562632,4,1 ,27,1562,38352,26,8 ,3,28,562640,4,1 ,27,41,38360,25,8 ,3,28,562648,10,4 ,27,1565,38368,24,8 ,3,28,562656,4,1 ,20,23680,21534178,96,0 ,27,1566,38376,24,8 ,3,28,562664,14,6 ,27,1565,38384,24,8 ,3,28,562672,6,2 ,27,1568,38392,23,8 ,3,28,562680,7,2 ,27,1571,38400,22,8 ,3,28,562688,4,1 ,17,923,9999876,40,0 ,44,15152,2659844,40,0 ,44,15152,3184132,32,0 ,17,923,8427012,24,0 ,27,1562,38408,24,8 ,3,28,562696,12,5 ,27,41,38416,25,8 ,3,28,562704,8,3 ,27,1577,38424,26,8 ,3,28,562712,4,1 ,27,41,38432,23,8 ,3,28,562720,6,2 ,20,20478,13145634,160,0 ,27,41,38440,23,8 ,3,28,562728,4,1 ,27,1596,38448,23,8 ,3,28,562736,9,4 ,27,1598,38456,22,8 ,3,28,562744,6,2 ,27,163,38464,24,8 ,3,28,562752,8,3 ,20,22519,18912834,140,0 ,20,19923,11048514,156,0 ,43,15151,38468,16,0 ,44,15152,1611332,64,0 ,27,1600,38472,26,8 ,3,28,562760,29,15 ,27,41,38480,25,8 ,3,28,562768,4,1 ,27,1565,38488,24,8 ,3,28,562776,8,3 ,27,2667,38496,24,8 ,3,28,562784,4,1 ,20,25853,27301474,104,0 ,27,2666,38504,25,8 ,3,28,562792,9,4 ,27,2665,38512,26,8 ,3,28,562800,17,8 ,27,2664,38520,24,8 ,3,28,562808,4,1 ,27,1619,38528,22,8 ,3,28,562816,6,2 ,17,923,38531,16,0 ,45,15153,5281412,24,0 ,17,923,6854276,32,0 ,17,923,6329988,32,0 ,44,15152,562820,24,0 ,27,1617,38536,20,8 ,3,28,562824,4,1 ,27,1616,38544,24,8 ,3,28,562832,6,2 ,27,1616,38552,24,8 ,3,28,562840,4,1 ,27,1618,38560,24,8 ,3,28,562848,6,2 ,27,1957,38568,22,8 ,3,28,562856,4,1 ,27,1621,38576,24,8 ,3,28,562864,8,3 ,27,1670,38584,26,8 ,3,28,562872,16,7 ,27,1407,38592,26,8 ,3,28,562880,6,2 ,17,923,9475780,24,0 ,17,923,7902916,40,0 ,43,15151,38596,24,0 ,44,15152,3708612,48,0 ,45,15153,4232900,24,0 ,17,923,8427204,40,0 ,27,9,38600,23,8 ,3,28,562888,6,2 ,27,1421,38608,26,8 ,3,28,562896,14,5 ,27,1421,38616,26,8 ,3,28,562904,4,1 ,27,41,38624,23,8 ,3,28,562912,9,4 ,27,1630,38632,22,8 ,3,28,562920,17,8 ,27,1631,38640,24,8 ,3,28,562928,4,1 ,27,1028,38648,24,8 ,3,28,562936,10,4 ,27,1040,38656,24,8 ,3,28,562944,4,1 ,20,23486,21010178,260,0 ,17,923,38659,16,0 ,45,15153,4757252,216,0 ,44,15152,1087236,48,0 ,44,15152,3184388,8,0 ,27,623,38664,23,8 ,3,28,562952,9,4 ,27,1633,38672,24,8 ,3,28,562960,17,8 ,27,1057,38680,22,8 ,3,28,562968,10,4 ,27,1374,38688,24,8 ,3,28,562976,6,2 ,20,15189,38690,120,0 ,27,340,38696,21,8 ,3,28,562984,6,2 ,27,1634,38704,24,8 ,3,28,562992,4,1 ,27,1644,38712,24,8 ,3,28,563000,14,6 ,27,1638,38720,24,8 ,3,28,563008,4,1 ,20,17314,5281602,88,0 ,20,26261,28350274,376,0 ,17,923,10000196,40,0 ,44,15152,2660164,64,0 ,44,15152,563012,24,0 ,44,15152,3184452,80,0 ,45,15153,5281604,40,0 ,17,923,8951620,24,0 ,27,1421,38728,26,8 ,3,28,563016,6,2 ,27,9,38736,23,8 ,3,28,563024,4,1 ,27,41,38744,23,8 ,3,28,563032,6,2 ,27,1633,38752,24,8 ,3,28,563040,4,1 ,20,967,38753,36,0 ,27,623,38760,23,8 ,3,28,563048,12,5 ,27,1028,38768,24,8 ,3,28,563056,16,7 ,27,1040,38776,24,8 ,3,28,563064,14,6 ,27,1057,38784,22,8 ,3,28,563072,4,1 ,17,923,38787,40,0 ,17,923,9475972,48,0 ,17,923,6854532,40,0 ,17,923,6330244,32,0 ,43,15151,38788,16,0 ,45,15153,4233092,16,0 ,27,1634,38792,24,8 ,3,28,563080,10,4 ,27,1374,38800,24,8 ,3,28,563088,4,1 ,27,340,38808,21,8 ,3,28,563096,6,2 ,27,1645,38816,24,8 ,3,28,563104,4,1 ,20,22953,19961762,124,0 ,27,1646,38824,24,8 ,3,28,563112,18,8 ,27,1668,38832,24,8 ,3,28,563120,4,1 ,27,9,38840,23,8 ,3,28,563128,8,3 ,27,1647,38848,22,8 ,3,28,563136,4,1 ,20,17107,4757442,644,0 ,27,1421,38856,26,8 ,3,28,563144,8,3 ,27,41,38864,23,8 ,3,28,563152,4,1 ,27,1649,38872,22,8 ,3,28,563160,10,4 ,27,1650,38880,23,8 ,3,28,563168,4,1 ,27,1634,38888,24,8 ,3,28,563176,6,2 ,27,1653,38896,22,8 ,3,28,563184,6,2 ,27,1654,38904,24,8 ,3,28,563192,4,1 ,27,1655,38912,24,8 ,3,28,563200,14,6 ,17,923,8951812,24,0 ,17,923,7903236,40,0 ,43,15151,38916,24,0 ,44,15152,563204,24,0 ,45,15153,4233220,144,0 ,17,923,8427524,40,0 ,27,1057,38920,22,8 ,3,28,563208,10,4 ,27,1028,38928,24,8 ,3,28,563216,7,2 ,27,623,38936,23,8 ,3,28,563224,7,2 ,27,1656,38944,24,8 ,3,28,563232,13,4 ,27,1657,38952,22,8 ,3,28,563240,4,1 ,27,1658,38960,24,8 ,3,28,563248,11,4 ,27,1040,38968,24,8 ,3,28,563256,24,12 ,27,1659,38976,23,8 ,3,28,563264,18,7 ,44,15152,3708996,128,0 ,17,923,7379012,104,0 ,44,15152,1611844,320,0 ,27,340,38984,21,8 ,3,28,563272,4,1 ,27,253,38992,21,8 ,3,28,563280,6,2 ,27,1633,39000,24,8 ,3,28,563288,4,1 ,27,1660,39008,22,8 ,3,28,563296,11,4 ,27,1374,39016,24,8 ,3,28,563304,8,3 ,27,1353,39024,24,8 ,3,28,563312,43,23 ,27,1354,39032,24,8 ,3,28,563320,14,5 ,27,1662,39040,23,8 ,3,28,563328,4,1 ,20,968,39041,576,0 ,20,16945,4233346,440,0 ,17,923,10000516,40,0 ,17,923,6330500,32,0 ,44,15152,1087620,104,0 ,45,15153,5281924,40,0 ,27,1359,39048,24,8 ,3,28,563336,6,2 ,27,1664,39056,23,8 ,3,28,563344,4,1 ,27,1666,39064,23,8 ,3,28,563352,8,3 ,27,1671,39072,25,8 ,3,28,563360,24,8 ,27,1674,39080,20,8 ,3,28,563368,4,1 ,27,1673,39088,24,8 ,3,28,563376,7,2 ,27,1722,39096,22,8 ,3,28,563384,14,6 ,27,1679,39104,24,8 ,3,28,563392,4,1 ,17,923,39107,16,0 ,17,923,8952004,24,0 ,17,923,6854852,40,0 ,43,15151,39108,48,0 ,44,15152,563396,24,0 ,27,1677,39112,24,8 ,3,28,563400,8,3 ,27,1697,39120,24,8 ,3,28,563408,7,2 ,27,1421,39128,26,8 ,3,28,563416,14,6 ,27,1407,39136,26,8 ,3,28,563424,7,2 ,20,23681,21534946,96,0 ,27,579,39144,22,8 ,3,28,563432,4,1 ,27,579,39152,23,8 ,3,28,563440,8,3 ,27,1421,39160,26,8 ,3,28,563448,4,1 ,27,1062,39168,21,8 ,3,28,563456,4,1 ,17,923,9476356,48,0 ,27,579,39176,22,8 ,3,28,563464,18,8 ,27,579,39184,23,8 ,3,28,563472,15,5 ,27,1039,39192,21,8 ,3,28,563480,42,14 ,27,1038,39200,26,8 ,3,28,563488,18,7 ,27,1418,39208,26,8 ,3,28,563496,4,1 ,27,1027,39216,24,8 ,3,28,563504,6,2 ,27,1026,39224,24,8 ,3,28,563512,4,1 ,27,1397,39232,26,8 ,3,28,563520,6,2 ,20,25326,25729346,228,0 ,17,923,39235,16,0 ,17,923,8427844,16,0 ,17,923,7903556,40,0 ,44,15152,2660676,40,0 ,27,1364,39240,26,8 ,3,28,563528,4,1 ,27,1052,39248,24,8 ,3,28,563536,32,15 ,27,1029,39256,26,8 ,3,28,563544,6,2 ,27,1038,39264,25,8 ,3,28,563552,15,5 ,27,1040,39272,24,8 ,3,28,563560,14,5 ,27,1057,39280,22,8 ,3,28,563568,15,5 ,27,1043,39288,24,8 ,3,28,563576,12,4 ,27,1050,39296,24,8 ,3,28,563584,15,5 ,17,923,8952196,24,0 ,17,923,6330756,24,0 ,44,15152,563588,24,0 ,27,616,39304,23,8 ,3,28,563592,7,2 ,27,1062,39312,21,8 ,3,28,563600,106,67 ,27,1685,39320,23,8 ,3,28,563608,8,3 ,27,1686,39328,22,8 ,3,28,563616,21,7 ,20,19671,10525090,192,0 ,20,25854,27302306,104,0 ,27,1418,39336,26,8 ,3,28,563624,18,8 ,27,1687,39344,22,8 ,3,28,563632,7,2 ,27,623,39352,23,8 ,3,28,563640,12,5 ,27,1380,39360,22,8 ,3,28,563648,6,2 ,17,923,39363,32,0 ,17,923,10000836,48,0 ,44,15152,3185092,32,0 ,45,15153,5282244,16,0 ,17,923,8427972,40,0 ,27,1040,39368,24,8 ,3,28,563656,15,5 ,27,41,39376,23,8 ,3,28,563664,39,13 ,27,1688,39384,22,8 ,3,28,563672,68,33 ,27,1043,39392,24,8 ,3,28,563680,4,1 ,27,1025,39400,24,8 ,3,28,563688,30,14 ,27,1055,39408,24,8 ,3,28,563696,10,4 ,27,1689,39416,23,8 ,3,28,563704,18,6 ,27,1690,39424,22,8 ,3,28,563712,4,1 ,20,17315,5282306,20,0 ,17,923,6855172,32,0 ,27,1691,39432,26,8 ,3,28,563720,59,35 ,27,1057,39440,22,8 ,3,28,563728,10,4 ,27,1692,39448,24,8 ,3,28,563736,30,10 ,27,1693,39456,22,8 ,3,28,563744,38,18 ,27,1694,39464,22,8 ,3,28,563752,10,4 ,27,253,39472,21,8 ,3,28,563760,7,2 ,27,1695,39480,24,8 ,3,28,563768,59,35 ,27,1703,39488,24,8 ,3,28,563776,38,18 ,17,923,8952388,24,0 ,17,923,6330948,16,0 ,43,15151,39492,48,0 ,44,15152,563780,24,0 ,45,15153,5282372,16,0 ,27,1698,39496,24,8 ,3,28,563784,4,1 ,27,1699,39504,24,8 ,3,28,563792,6,2 ,27,1700,39512,22,8 ,3,28,563800,4,1 ,27,1040,39520,24,8 ,3,28,563808,6,2 ,27,623,39528,23,8 ,3,28,563816,21,7 ,27,1701,39536,24,8 ,3,28,563824,10,4 ,27,1704,39544,24,8 ,3,28,563832,19,6 ,27,1358,39552,23,8 ,3,28,563840,4,1 ,17,923,9476740,40,0 ,17,923,7903876,40,0 ,44,15152,2660996,32,0 ,27,9,39560,23,8 ,3,28,563848,9,4 ,27,1647,39568,22,8 ,3,28,563856,19,9 ,27,340,39576,21,8 ,3,28,563864,18,7 ,27,1421,39584,26,8 ,3,28,563872,4,1 ,20,22520,18913954,140,0 ,20,17316,5282466,56,0 ,27,41,39592,23,8 ,3,28,563880,10,4 ,27,1709,39600,24,8 ,3,28,563888,14,5 ,27,41,39608,23,8 ,3,28,563896,4,1 ,27,1562,39616,26,8 ,3,28,563904,8,3 ,17,923,39619,24,0 ,45,15153,5282500,16,0 ,17,923,6331076,32,0 ,44,15152,3185348,456,0 ,27,1707,39624,26,8 ,3,28,563912,18,6 ,27,1649,39632,22,8 ,3,28,563920,18,7 ,27,1380,39640,22,8 ,3,28,563928,4,1 ,27,1634,39648,24,8 ,3,28,563936,20,9 ,20,16048,2136802,56,0 ,20,15190,39650,12,0 ,27,1653,39656,22,8 ,3,28,563944,14,5 ,27,1654,39664,24,8 ,3,28,563952,4,1 ,27,1057,39672,22,8 ,3,28,563960,8,3 ,27,1028,39680,24,8 ,3,28,563968,4,1 ,17,923,8952580,56,0 ,17,923,6855428,32,0 ,44,15152,563972,64,0 ,17,923,8428292,32,0 ,27,623,39688,23,8 ,3,28,563976,10,3 ,27,1656,39696,24,8 ,3,28,563984,18,7 ,27,1657,39704,22,8 ,3,28,563992,4,1 ,27,1658,39712,24,8 ,3,28,564000,9,4 ,20,20479,13146914,304,0 ,20,19924,11049762,100,0 ,27,1040,39720,24,8 ,3,28,564008,10,4 ,27,1711,39728,21,8 ,3,28,564016,4,1 ,27,1374,39736,26,8 ,3,28,564024,8,3 ,27,253,39744,21,8 ,3,28,564032,60,35 ,20,15191,39746,128,0 ,17,923,10001220,40,0 ,45,15153,5282628,16,0 ,27,1633,39752,24,8 ,3,28,564040,6,2 ,27,1660,39760,22,8 ,3,28,564048,40,19 ,27,1374,39768,25,8 ,3,28,564056,6,2 ,27,1353,39776,24,8 ,3,28,564064,4,1 ,27,1354,39784,24,8 ,3,28,564072,9,4 ,27,1359,39792,24,8 ,3,28,564080,10,4 ,27,1655,39800,24,8 ,3,28,564088,7,2 ,27,1105,39808,26,8 ,3,28,564096,4,1 ,20,22954,19962754,352,0 ,17,923,39811,24,0 ,44,15152,2661252,40,0 ,17,923,7379844,32,0 ,27,1102,39816,24,8 ,3,28,564104,9,4 ,27,1100,39824,26,8 ,3,28,564112,29,15 ,27,1723,39832,24,8 ,3,28,564120,4,1 ,27,1949,39840,23,8 ,3,28,564128,12,5 ,27,109,39848,23,8 ,3,28,564136,4,1 ,27,109,39856,23,8 ,3,28,564144,4,1 ,27,163,39864,22,8 ,3,28,564152,32,15 ,27,163,39872,22,8 ,3,28,564160,8,3 ,17,923,9477060,48,0 ,17,923,7904196,48,0 ,17,923,6331332,24,0 ,43,15151,39876,56,0 ,44,15152,1088452,104,0 ,45,15153,5282756,24,0 ,27,1725,39880,23,8 ,3,28,564168,4,1 ,27,1727,39888,22,8 ,3,28,564176,58,35 ,27,1730,39896,24,8 ,3,28,564184,24,8 ,27,1731,39904,26,8 ,3,28,564192,36,17 ,20,23901,22060002,748,0 ,20,25104,25205730,92,0 ,20,23682,21535714,176,0 ,27,1845,39912,22,8 ,3,28,564200,4,1 ,27,1843,39920,21,8 ,3,28,564208,10,4 ,27,1737,39928,22,8 ,3,28,564216,24,11 ,27,1739,39936,24,8 ,3,28,564224,4,1 ,17,923,8428548,24,0 ,17,923,6855684,48,0 ,27,1839,39944,23,8 ,3,28,564232,6,2 ,27,1743,39952,24,8 ,3,28,564240,4,1 ,27,1741,39960,22,8 ,3,28,564248,9,4 ,27,9,39968,21,8 ,3,28,564256,26,13 ,20,21769,16817186,44,0 ,27,1761,39976,22,8 ,3,28,564264,4,1 ,27,1757,39984,24,8 ,3,28,564272,9,4 ,27,9,39992,23,8 ,3,28,564280,19,9 ,27,9,40000,23,8 ,3,28,564288,4,1 ,17,923,40003,32,0 ,44,15152,3710020,48,0 ,27,1745,40008,24,8 ,3,28,564296,6,2 ,27,1654,40016,24,8 ,3,28,564304,18,7 ,27,1750,40024,22,8 ,3,28,564312,4,1 ,27,1730,40032,24,8 ,3,28,564320,6,2 ,20,17317,5282914,224,0 ,27,1747,40040,24,8 ,3,28,564328,10,4 ,27,1731,40048,26,8 ,3,28,564336,8,3 ,27,295,40056,25,8 ,3,28,564344,8,3 ,27,1562,40064,26,8 ,3,28,564352,6,2 ,17,923,10001540,48,0 ,17,923,7380100,24,0 ,17,923,6331524,48,0 ,45,15153,4234372,16,0 ,45,15153,5282948,16,0 ,27,1707,40072,26,8 ,3,28,564360,4,1 ,27,1751,40080,24,8 ,3,28,564368,12,5 ,27,1057,40088,22,8 ,3,28,564376,10,4 ,27,1028,40096,24,8 ,3,28,564384,6,2 ,20,16049,2137250,56,0 ,27,623,40104,23,8 ,3,28,564392,11,4 ,27,1658,40112,24,8 ,3,28,564400,4,1 ,27,1634,40120,24,8 ,3,28,564408,26,12 ,27,1040,40128,24,8 ,3,28,564416,4,1 ,20,16270,3185858,328,0 ,17,923,8953028,24,0 ,44,15152,2661572,48,0 ,17,923,8428740,24,0 ,27,1752,40136,22,8 ,3,28,564424,7,2 ,27,340,40144,21,8 ,3,28,564432,10,4 ,27,253,40152,21,8 ,3,28,564440,4,1 ,27,1633,40160,24,8 ,3,28,564448,11,4 ,20,25855,27303138,104,0 ,27,1753,40168,22,8 ,3,28,564456,24,12 ,27,1374,40176,24,8 ,3,28,564464,18,7 ,27,1754,40184,24,8 ,3,28,564472,4,1 ,27,1374,40192,24,8 ,3,28,564480,6,2 ,45,15153,5283076,16,0 ,44,15152,564484,456,0 ,45,15153,4234500,24,0 ,27,1654,40200,24,8 ,3,28,564488,24,11 ,27,340,40208,21,8 ,3,28,564496,4,1 ,27,1634,40216,24,8 ,3,28,564504,6,2 ,27,9,40224,23,8 ,3,28,564512,4,1 ,27,1374,40232,24,8 ,3,28,564520,26,12 ,27,1654,40240,24,8 ,3,28,564528,7,2 ,27,340,40248,21,8 ,3,28,564536,5,2 ,27,1634,40256,24,8 ,3,28,564544,13,5 ,17,923,40259,24,0 ,17,923,9477444,48,0 ,17,923,7904580,32,0 ,17,923,7380292,32,0 ,27,1758,40264,23,8 ,3,28,564552,14,5 ,27,1760,40272,26,8 ,3,28,564560,4,1 ,27,1763,40280,26,8 ,3,28,564568,9,4 ,27,1764,40288,24,8 ,3,28,564576,17,8 ,27,1765,40296,24,8 ,3,28,564584,4,1 ,27,1768,40304,26,8 ,3,28,564592,4,1 ,27,1769,40312,23,8 ,3,28,564600,24,11 ,27,163,40320,22,8 ,3,28,564608,18,6 ,20,21770,16817538,128,0 ,17,923,8953220,48,0 ,17,923,6856068,32,0 ,43,15151,40324,48,0 ,45,15153,5283204,32,0 ,17,923,8428932,24,0 ,27,1794,40328,23,8 ,3,28,564616,14,5 ,27,163,40336,24,8 ,3,28,564624,4,1 ,27,163,40344,22,8 ,3,28,564632,6,2 ,27,1770,40352,26,8 ,3,28,564640,4,1 ,20,18171,7380386,1008,0 ,27,178,40360,23,8 ,3,28,564648,4,1 ,27,1037,40368,26,8 ,3,28,564656,9,4 ,27,445,40376,23,8 ,3,28,564664,17,8 ,27,1771,40384,26,8 ,3,28,564672,4,1 ,45,15153,4758980,224,0 ,44,15152,2137540,32,0 ,44,15152,3710404,176,0 ,45,15153,4234692,16,0 ,27,204,40392,23,8 ,3,28,564680,16,7 ,27,1274,40400,24,8 ,3,28,564688,14,5 ,27,633,40408,23,8 ,3,28,564696,12,4 ,27,433,40416,23,8 ,3,28,564704,9,3 ,27,1773,40424,23,8 ,3,28,564712,10,3 ,27,812,40432,23,8 ,3,28,564720,8,3 ,27,312,40440,22,8 ,3,28,564728,4,1 ,27,295,40448,23,8 ,3,28,564736,4,1 ,17,923,40451,32,0 ,17,923,10001924,40,0 ,17,923,6331908,40,0 ,27,1774,40456,23,8 ,3,28,564744,4,1 ,27,1775,40464,23,8 ,3,28,564752,28,13 ,27,41,40472,23,8 ,3,28,564760,6,2 ,27,1776,40480,23,8 ,3,28,564768,4,1 ,20,21517,16293410,664,0 ,20,19342,10001954,280,0 ,27,1777,40488,23,8 ,3,28,564776,9,4 ,27,1784,40496,26,8 ,3,28,564784,22,11 ,27,1788,40504,24,8 ,3,28,564792,4,1 ,27,1789,40512,24,8 ,3,28,564800,8,3 ,20,20138,11574850,132,0 ,20,19925,11050562,52,0 ,17,923,8429124,40,0 ,17,923,7904836,56,0 ,17,923,7380548,32,0 ,44,15152,2661956,96,0 ,45,15153,4234820,24,0 ,27,1790,40520,22,8 ,3,28,564808,4,1 ,27,1791,40528,24,8 ,3,28,564816,8,3 ,27,1792,40536,24,8 ,3,28,564824,4,1 ,27,1795,40544,24,8 ,3,28,564832,6,2 ,20,16050,2137698,12,0 ,27,1790,40552,26,8 ,3,28,564840,4,1 ,27,1798,40560,26,8 ,3,28,564848,6,2 ,27,163,40568,24,8 ,3,28,564856,4,1 ,27,1839,40576,24,8 ,3,28,564864,9,4 ,45,15153,5283460,40,0 ,17,923,6856324,40,0 ,27,1799,40584,22,8 ,3,28,564872,26,13 ,27,1800,40592,23,8 ,3,28,564880,4,1 ,27,163,40600,24,8 ,3,28,564888,8,3 ,27,163,40608,22,8 ,3,28,564896,7,2 ,27,1801,40616,26,8 ,3,28,564904,10,3 ,27,163,40624,22,8 ,3,28,564912,4,1 ,27,1802,40632,23,8 ,3,28,564920,34,16 ,27,1807,40640,23,8 ,3,28,564928,7,2 ,20,16051,2137794,80,0 ,20,25105,25206466,344,0 ,17,923,9477828,40,0 ,44,15152,2137796,24,0 ,27,163,40648,24,8 ,3,28,564936,4,1 ,27,41,40656,23,8 ,3,28,564944,24,11 ,27,1803,40664,24,8 ,3,28,564952,6,2 ,27,1804,40672,24,8 ,3,28,564960,4,1 ,27,1078,40680,26,8 ,3,28,564968,6,2 ,27,1808,40688,24,8 ,3,28,564976,18,8 ,27,1819,40696,23,8 ,3,28,564984,15,5 ,27,163,40704,24,8 ,3,28,564992,4,1 ,20,22521,18915074,140,0 ,20,20711,13672194,620,0 ,17,923,40707,32,0 ,17,923,8953604,32,0 ,43,15151,40708,80,0 ,44,15152,1089284,112,0 ,45,15153,4235012,24,0 ,27,1817,40712,27,8 ,3,28,565000,12,5 ,27,1815,40720,26,8 ,3,28,565008,4,1 ,27,163,40728,24,8 ,3,28,565016,8,3 ,27,1820,40736,24,8 ,3,28,565024,4,1 ,20,23487,21012258,76,0 ,20,22682,19439394,3060,0 ,27,1821,40744,24,8 ,3,28,565032,8,3 ,27,1810,40752,24,8 ,3,28,565040,4,1 ,27,1812,40760,22,8 ,3,28,565048,16,7 ,27,1814,40768,26,8 ,3,28,565056,4,1 ,20,15192,40770,308,0 ,17,923,10002244,40,0 ,17,923,7380804,32,0 ,17,923,6332228,48,0 ,27,163,40776,24,8 ,3,28,565064,10,4 ,27,1822,40784,26,8 ,3,28,565072,4,1 ,27,163,40792,24,8 ,3,28,565080,12,5 ,27,614,40800,21,8 ,3,28,565088,4,1 ,27,1813,40808,24,8 ,3,28,565096,6,2 ,27,1823,40816,21,8 ,3,28,565104,4,1 ,27,1816,40824,26,8 ,3,28,565112,8,3 ,27,1811,40832,24,8 ,3,28,565120,4,1 ,17,923,8429444,40,0 ,44,15152,2137988,32,0 ,27,1824,40840,26,8 ,3,28,565128,14,6 ,27,163,40848,24,8 ,3,28,565136,9,3 ,27,1825,40856,24,8 ,3,28,565144,8,3 ,27,163,40864,22,8 ,3,28,565152,10,4 ,20,19672,10526626,424,0 ,27,163,40872,22,8 ,3,28,565160,21,7 ,27,1826,40880,22,8 ,3,28,565168,16,7 ,27,163,40888,22,8 ,3,28,565176,6,2 ,27,1828,40896,24,8 ,3,28,565184,6,2 ,45,15153,5283780,40,0 ,17,923,6856644,32,0 ,45,15153,4235204,32,0 ,27,163,40904,22,8 ,3,28,565192,14,5 ,27,1833,40912,26,8 ,3,28,565200,4,1 ,27,1832,40920,24,8 ,3,28,565208,12,5 ,27,9,40928,21,8 ,3,28,565216,4,1 ,20,19926,11050978,12,0 ,27,1763,40936,26,8 ,3,28,565224,22,10 ,27,1764,40944,24,8 ,3,28,565232,4,1 ,27,1768,40952,26,8 ,3,28,565240,18,8 ,27,1765,40960,24,8 ,3,28,565248,4,1 ,17,923,40963,32,0 ,17,923,9478148,40,0 ,17,923,7905284,64,0 ,17,923,8953860,32,0 ,27,1795,40968,24,8 ,3,28,565256,8,3 ,27,1798,40976,26,8 ,3,28,565264,4,1 ,27,163,40984,24,8 ,3,28,565272,4,1 ,27,1799,40992,22,8 ,3,28,565280,8,3 ,20,25856,27303970,104,0 ,27,1839,41000,26,8 ,3,28,565288,4,1 ,27,1790,41008,26,8 ,3,28,565296,18,8 ,27,1801,41016,26,8 ,3,28,565304,144,48 ,27,163,41024,22,8 ,3,28,565312,51,48 ,20,19927,11051074,12,0 ,17,923,7381060,24,0 ,27,1808,41032,24,8 ,3,28,565320,10,3 ,27,1815,41040,26,8 ,3,28,565328,8,3 ,27,163,41048,24,8 ,3,28,565336,4,1 ,27,1820,41056,24,8 ,3,28,565344,9,4 ,20,16642,3711074,252,0 ,20,25327,25731170,348,0 ,27,1821,41064,24,8 ,3,28,565352,15,7 ,27,1810,41072,24,8 ,3,28,565360,28,11 ,27,1812,41080,22,8 ,3,28,565368,4,1 ,27,1814,41088,26,8 ,3,28,565376,6,2 ,20,24494,23634050,1120,0 ,20,24160,22585474,692,0 ,17,923,10002564,40,0 ,44,15152,2138244,24,0 ,27,163,41096,24,8 ,3,28,565384,4,1 ,27,1822,41104,26,8 ,3,28,565392,4,1 ,27,163,41112,24,8 ,3,28,565400,20,9 ,27,1813,41120,24,8 ,3,28,565408,14,5 ,20,19928,11051170,12,0 ,27,614,41128,21,8 ,3,28,565416,21,7 ,27,1816,41136,26,8 ,3,28,565424,4,1 ,27,1811,41144,24,8 ,3,28,565432,6,2 ,27,1824,41152,26,8 ,3,28,565440,4,1 ,17,923,8429764,32,0 ,17,923,6856900,32,0 ,17,923,6332612,32,0 ,45,15153,4235460,16,0 ,27,163,41160,24,8 ,3,28,565448,14,6 ,27,1825,41168,26,8 ,3,28,565456,10,3 ,27,1826,41176,22,8 ,3,28,565464,8,3 ,27,163,41184,24,8 ,3,28,565472,4,1 ,27,1834,41192,26,8 ,3,28,565480,9,4 ,27,163,41200,24,8 ,3,28,565488,19,9 ,27,163,41208,22,8 ,3,28,565496,4,1 ,27,1835,41216,26,8 ,3,28,565504,12,5 ,20,19929,11051266,196,0 ,17,923,41219,24,0 ,17,923,8954116,56,0 ,17,923,7381252,40,0 ,45,15153,5284100,32,0 ,27,163,41224,22,8 ,3,28,565512,12,4 ,27,163,41232,24,8 ,3,28,565520,4,1 ,27,163,41240,22,8 ,3,28,565528,8,3 ,27,1836,41248,24,8 ,3,28,565536,4,1 ,27,163,41256,22,8 ,3,28,565544,12,5 ,27,1837,41264,26,8 ,3,28,565552,24,11 ,27,163,41272,24,8 ,3,28,565560,4,1 ,27,163,41280,22,8 ,3,28,565568,6,2 ,20,16052,2138434,60,0 ,17,923,9478468,40,0 ,44,15152,2662724,48,0 ,44,15152,2138436,24,0 ,45,15153,4235588,24,0 ,27,1819,41288,23,8 ,3,28,565576,4,1 ,27,1769,41296,23,8 ,3,28,565584,59,35 ,27,1800,41304,23,8 ,3,28,565592,15,5 ,27,1794,41312,23,8 ,3,28,565600,12,4 ,20,23683,21537122,392,0 ,27,1825,41320,23,8 ,3,28,565608,21,7 ,27,1807,41328,23,8 ,3,28,565616,8,3 ,27,1841,41336,24,8 ,3,28,565624,38,18 ,27,1200,41344,19,8 ,3,28,565632,4,1 ,20,23488,21012866,712,0 ,20,21771,16818562,128,0 ,43,15151,41348,40,0 ,27,1847,41352,23,8 ,3,28,565640,28,13 ,27,1849,41360,18,8 ,3,28,565648,8,3 ,27,1849,41368,24,8 ,3,28,565656,6,2 ,27,1850,41376,27,8 ,3,28,565664,8,3 ,27,1850,41384,28,8 ,3,28,565672,18,8 ,27,163,41392,24,8 ,3,28,565680,4,1 ,27,1851,41400,23,8 ,3,28,565688,28,13 ,27,1851,41408,24,8 ,3,28,565696,4,1 ,17,923,41411,32,0 ,17,923,10002884,40,0 ,17,923,6857156,40,0 ,17,923,6332868,32,0 ,17,923,8430020,24,0 ,27,1834,41416,25,8 ,3,28,565704,22,10 ,27,1835,41424,25,8 ,3,28,565712,7,2 ,27,1852,41432,26,8 ,3,28,565720,14,6 ,27,1836,41440,23,8 ,3,28,565728,4,1 ,27,1853,41448,26,8 ,3,28,565736,22,10 ,27,1853,41456,28,8 ,3,28,565744,7,2 ,27,163,41464,24,8 ,3,28,565752,4,1 ,27,1855,41472,22,8 ,3,28,565760,9,4 ,45,15153,5284356,32,0 ,17,923,7905796,40,0 ,44,15152,2138628,16,0 ,45,15153,4235780,16,0 ,27,1857,41480,25,8 ,3,28,565768,10,4 ,27,1828,41488,23,8 ,3,28,565776,4,1 ,27,1858,41496,22,8 ,3,28,565784,24,11 ,27,1859,41504,22,8 ,3,28,565792,8,3 ,27,1833,41512,25,8 ,3,28,565800,8,3 ,27,1860,41520,23,8 ,3,28,565808,4,1 ,27,1861,41528,18,8 ,3,28,565816,59,35 ,27,1862,41536,23,8 ,3,28,565824,6,2 ,44,15152,1614404,24,0 ,17,923,7381572,40,0 ,27,1862,41544,24,8 ,3,28,565832,4,1 ,27,1863,41552,27,8 ,3,28,565840,18,8 ,27,1863,41560,28,8 ,3,28,565848,15,5 ,27,163,41568,24,8 ,3,28,565856,12,5 ,20,20139,11575906,1096,0 ,27,1915,41576,24,8 ,3,28,565864,24,8 ,27,1909,41584,22,8 ,3,28,565872,38,18 ,27,1866,41592,24,8 ,3,28,565880,10,4 ,27,747,41600,27,8 ,3,28,565888,24,8 ,17,923,9478788,32,0 ,44,15152,2138756,56,0 ,44,15152,1090180,48,0 ,45,15153,4235908,16,0 ,17,923,8430212,32,0 ,27,1867,41608,23,8 ,3,28,565896,4,1 ,27,1868,41616,22,8 ,3,28,565904,12,5 ,27,1869,41624,22,8 ,3,28,565912,4,1 ,27,1870,41632,24,8 ,3,28,565920,9,4 ,27,1871,41640,22,8 ,3,28,565928,12,5 ,27,1872,41648,22,8 ,3,28,565936,4,1 ,27,1873,41656,22,8 ,3,28,565944,6,2 ,27,1874,41664,23,8 ,3,28,565952,4,1 ,20,15588,1090242,112,0 ,17,923,41667,24,0 ,17,923,8954564,24,0 ,17,923,6333124,32,0 ,44,15152,2663108,64,0 ,43,15151,41668,48,0 ,27,1874,41672,24,8 ,3,28,565960,9,4 ,27,1875,41680,22,8 ,3,28,565968,7,2 ,27,630,41688,25,8 ,3,28,565976,4,1 ,27,1876,41696,22,8 ,3,28,565984,18,8 ,27,1877,41704,22,8 ,3,28,565992,8,3 ,27,1878,41712,22,8 ,3,28,566000,10,4 ,27,1879,41720,24,8 ,3,28,566008,12,4 ,27,1880,41728,22,8 ,3,28,566016,6,2 ,20,26262,28353282,820,0 ,17,923,10003204,40,0 ,17,923,6857476,32,0 ,44,15152,1614596,80,0 ,45,15153,4236036,48,0 ,45,15153,5284612,40,0 ,27,1881,41736,22,8 ,3,28,566024,15,5 ,27,1882,41744,22,8 ,3,28,566032,15,5 ,27,1883,41752,21,8 ,3,28,566040,6,2 ,27,1884,41760,22,8 ,3,28,566048,6,2 ,20,16053,2138914,68,0 ,20,26085,27829026,148,0 ,27,1885,41768,24,8 ,3,28,566056,30,15 ,27,1886,41776,23,8 ,3,28,566064,14,5 ,27,1887,41784,22,8 ,3,28,566072,4,1 ,27,1901,41792,24,8 ,3,28,566080,14,6 ,44,15152,3711812,24,0 ,17,923,7906116,40,0 ,27,1889,41800,22,8 ,3,28,566088,4,1 ,27,1891,41808,24,8 ,3,28,566096,12,5 ,27,1892,41816,24,8 ,3,28,566104,4,1 ,27,1893,41824,24,8 ,3,28,566112,10,4 ,20,22522,18916194,140,0 ,20,25857,27304802,188,0 ,20,17318,5284706,428,0 ,27,1894,41832,24,8 ,3,28,566120,4,1 ,27,1895,41840,23,8 ,3,28,566128,9,4 ,27,163,41848,22,8 ,3,28,566136,8,3 ,27,1896,41856,23,8 ,3,28,566144,8,3 ,17,923,41859,24,0 ,17,923,9479044,40,0 ,17,923,7381892,24,0 ,17,923,8430468,32,0 ,17,923,8954756,48,0 ,27,163,41864,24,8 ,3,28,566152,11,4 ,27,1897,41872,23,8 ,3,28,566160,36,19 ,27,163,41880,24,8 ,3,28,566168,4,1 ,27,1898,41888,23,8 ,3,28,566176,16,7 ,27,1899,41896,26,8 ,3,28,566184,24,8 ,27,1902,41904,23,8 ,3,28,566192,7,2 ,27,1903,41912,22,8 ,3,28,566200,4,1 ,27,1904,41920,24,8 ,3,28,566208,13,4 ,17,923,6333380,40,0 ,27,1905,41928,23,8 ,3,28,566216,31,16 ,27,1906,41936,24,8 ,3,28,566224,7,2 ,27,1907,41944,22,8 ,3,28,566232,12,5 ,27,1910,41952,22,8 ,3,28,566240,8,3 ,27,1911,41960,26,8 ,3,28,566248,8,3 ,27,41,41968,23,8 ,3,28,566256,4,1 ,27,1913,41976,25,8 ,3,28,566264,9,4 ,27,1552,41984,24,8 ,3,28,566272,22,11 ,44,15152,3712004,24,0 ,17,923,6857732,40,0 ,44,15152,1090564,320,0 ,27,1552,41992,24,8 ,3,28,566280,4,1 ,27,1916,42000,27,8 ,3,28,566288,14,6 ,27,1916,42008,28,8 ,3,28,566296,8,3 ,27,163,42016,24,8 ,3,28,566304,8,3 ,27,1917,42024,24,8 ,3,28,566312,8,3 ,27,1812,42032,22,8 ,3,28,566320,4,1 ,27,1918,42040,26,8 ,3,28,566328,8,3 ,27,1918,42048,28,8 ,3,28,566336,4,1 ,17,923,42051,16,0 ,17,923,10003524,40,0 ,17,923,7382084,24,0 ,44,15152,2139204,24,0 ,43,15151,42052,112,0 ,45,15153,5284932,40,0 ,27,163,42056,24,8 ,3,28,566344,6,2 ,27,1837,42064,24,8 ,3,28,566352,4,1 ,27,1921,42072,28,8 ,3,28,566360,4,1 ,27,1922,42080,26,8 ,3,28,566368,4,1 ,27,1922,42088,28,8 ,3,28,566376,14,6 ,27,163,42096,24,8 ,3,28,566384,8,3 ,27,1743,42104,23,8 ,3,28,566392,14,5 ,27,1923,42112,19,8 ,3,28,566400,4,1 ,17,923,8430724,40,0 ,17,923,7906436,48,0 ,45,15153,4236420,32,0 ,27,1925,42120,24,8 ,3,28,566408,11,4 ,27,1926,42128,24,8 ,3,28,566416,38,20 ,27,163,42136,22,8 ,3,28,566424,14,5 ,27,1927,42144,22,8 ,3,28,566432,4,1 ,20,20480,13149346,80,0 ,27,1927,42152,24,8 ,3,28,566440,8,3 ,27,1928,42160,19,8 ,3,28,566448,4,1 ,27,1928,42168,24,8 ,3,28,566456,14,6 ,27,1930,42176,24,8 ,3,28,566464,4,1 ,17,923,42179,24,0 ,17,923,9479364,40,0 ,44,15152,2663620,56,0 ,44,15152,3712196,112,0 ,45,15153,4760772,224,0 ,27,1931,42184,24,8 ,3,28,566472,16,7 ,27,163,42192,22,8 ,3,28,566480,8,3 ,27,1933,42200,24,8 ,3,28,566488,33,11 ,27,538,42208,23,8 ,3,28,566496,7,2 ,27,1937,42216,24,8 ,3,28,566504,5,2 ,27,1934,42224,24,8 ,3,28,566512,4,1 ,27,1935,42232,24,8 ,3,28,566520,11,4 ,27,1883,42240,21,8 ,3,28,566528,7,2 ,20,24320,23110914,2788,0 ,17,923,8955140,32,0 ,17,923,7382276,56,0 ,17,923,6333700,32,0 ,44,15152,2139396,32,0 ,27,1874,42248,24,8 ,3,28,566536,6,2 ,27,1874,42256,23,8 ,3,28,566544,28,13 ,27,1938,42264,24,8 ,3,28,566552,6,2 ,27,1939,42272,23,8 ,3,28,566560,6,2 ,27,1941,42280,23,8 ,3,28,566568,6,2 ,27,1943,42288,20,8 ,3,28,566576,6,2 ,27,1938,42296,26,8 ,3,28,566584,8,3 ,27,1935,42304,24,8 ,3,28,566592,38,19 ,20,16054,2139458,48,0 ,17,923,6858052,40,0 ,27,1938,42312,26,8 ,3,28,566600,10,4 ,27,1944,42320,25,8 ,3,28,566608,6,2 ,27,1945,42328,24,8 ,3,28,566616,4,1 ,27,1946,42336,26,8 ,3,28,566624,18,8 ,27,1947,42344,26,8 ,3,28,566632,8,3 ,27,1950,42352,22,8 ,3,28,566640,4,1 ,27,1951,42360,24,8 ,3,28,566648,9,4 ,27,1952,42368,24,8 ,3,28,566656,15,7 ,20,21772,16819586,412,0 ,17,923,42371,24,0 ,17,923,10003844,40,0 ,44,15152,1615236,96,0 ,45,15153,4236676,40,0 ,45,15153,5285252,40,0 ,27,1699,42376,24,8 ,3,28,566664,4,1 ,27,1953,42384,22,8 ,3,28,566672,10,4 ,27,1673,42392,23,8 ,3,28,566680,4,1 ,27,1954,42400,24,8 ,3,28,566688,26,12 ,27,1955,42408,23,8 ,3,28,566696,28,11 ,27,1995,42416,25,8 ,3,28,566704,4,1 ,27,1562,42424,24,8 ,3,28,566712,6,2 ,27,1959,42432,24,8 ,3,28,566720,6,2 ,20,18894,8955330,128,0 ,17,923,8431044,24,0 ,27,1960,42440,25,8 ,3,28,566728,44,23 ,27,1961,42448,24,8 ,3,28,566736,7,2 ,27,316,42456,23,8 ,3,28,566744,16,7 ,27,1962,42464,24,8 ,3,28,566752,15,5 ,27,1963,42472,24,8 ,3,28,566760,4,1 ,27,812,42480,23,8 ,3,28,566768,12,5 ,27,1964,42488,24,8 ,3,28,566776,7,2 ,27,1970,42496,24,8 ,3,28,566784,12,5 ,17,923,9479684,40,0 ,17,923,7906820,40,0 ,17,923,6333956,24,0 ,44,15152,2139652,56,0 ,17,923,8955396,32,0 ,27,1966,42504,27,8 ,3,28,566792,4,1 ,27,1968,42512,27,8 ,3,28,566800,11,4 ,27,1969,42520,24,8 ,3,28,566808,45,24 ,27,295,42528,23,8 ,3,28,566816,4,1 ,27,1971,42536,24,8 ,3,28,566824,10,4 ,27,1972,42544,24,8 ,3,28,566832,4,1 ,27,1973,42552,24,8 ,3,28,566840,6,2 ,27,1974,42560,24,8 ,3,28,566848,4,1 ,20,16946,4236866,2596,0 ,20,15589,1091138,432,0 ,17,923,42563,24,0 ,27,41,42568,23,8 ,3,28,566856,8,3 ,27,1975,42576,23,8 ,3,28,566864,4,1 ,27,1562,42584,26,8 ,3,28,566872,22,10 ,27,1976,42592,23,8 ,3,28,566880,7,2 ,27,41,42600,25,8 ,3,28,566888,10,4 ,27,295,42608,23,8 ,3,28,566896,4,1 ,27,812,42616,23,8 ,3,28,566904,9,4 ,27,1988,42624,26,8 ,3,28,566912,12,5 ,20,22955,19965570,80,0 ,17,923,8431236,24,0 ,17,923,6858372,40,0 ,44,15152,2664068,24,0 ,27,1989,42632,24,8 ,3,28,566920,4,1 ,27,1990,42640,24,8 ,3,28,566928,6,2 ,27,1991,42648,24,8 ,3,28,566936,4,1 ,27,1993,42656,26,8 ,3,28,566944,18,8 ,27,1996,42664,23,8 ,3,28,566952,15,5 ,27,1996,42672,24,8 ,3,28,566960,14,5 ,27,1997,42680,22,8 ,3,28,566968,15,5 ,27,1997,42688,26,8 ,3,28,566976,4,1 ,20,16055,2139842,364,0 ,17,923,10004164,56,0 ,17,923,7382724,24,0 ,17,923,6334148,24,0 ,45,15153,4236996,48,0 ,45,15153,5285572,64,0 ,27,163,42696,24,8 ,3,28,566984,9,4 ,27,1998,42704,21,8 ,3,28,566992,10,4 ,27,1999,42712,24,8 ,3,28,567000,4,1 ,27,2000,42720,22,8 ,3,28,567008,18,8 ,20,19343,10004194,256,0 ,27,2001,42728,24,8 ,3,28,567016,8,3 ,27,2002,42736,24,8 ,3,28,567024,6,2 ,27,2002,42744,24,8 ,3,28,567032,16,7 ,27,2003,42752,24,8 ,3,28,567040,6,2 ,20,16271,3188482,64,0 ,17,923,42755,24,0 ,17,923,8955652,56,0 ,27,2003,42760,24,8 ,3,28,567048,6,2 ,27,2004,42768,23,8 ,3,28,567056,11,4 ,27,2005,42776,22,8 ,3,28,567064,11,4 ,27,2006,42784,24,8 ,3,28,567072,11,4 ,20,20481,13149986,12,0 ,20,19930,11052834,272,0 ,27,2006,42792,24,8 ,3,28,567080,4,1 ,27,2007,42800,24,8 ,3,28,567088,9,4 ,27,2007,42808,24,8 ,3,28,567096,6,2 ,27,2008,42816,22,8 ,3,28,567104,14,6 ,20,18640,8431426,12,0 ,17,923,9480004,48,0 ,17,923,7907140,40,0 ,44,15152,2664260,56,0 ,17,923,8431428,24,0 ,27,2008,42824,26,8 ,3,28,567112,19,9 ,27,2011,42832,24,8 ,3,28,567120,18,7 ,27,2010,42840,24,8 ,3,28,567128,4,1 ,27,2012,42848,26,8 ,3,28,567136,20,9 ,27,2013,42856,24,8 ,3,28,567144,14,6 ,27,2014,42864,22,8 ,3,28,567152,4,1 ,27,2015,42872,22,8 ,3,28,567160,18,7 ,27,2015,42880,26,8 ,3,28,567168,4,1 ,20,20482,13150082,84,0 ,17,923,6334340,32,0 ,17,923,7382916,48,0 ,27,2016,42888,24,8 ,3,28,567176,6,2 ,27,2017,42896,25,8 ,3,28,567184,4,1 ,27,2018,42904,20,8 ,3,28,567192,18,8 ,27,2018,42912,24,8 ,3,28,567200,4,1 ,20,18641,8431522,516,0 ,27,2076,42920,24,8 ,3,28,567208,14,6 ,27,545,42928,26,8 ,3,28,567216,12,5 ,27,2020,42936,24,8 ,3,28,567224,12,4 ,27,2074,42944,23,8 ,3,28,567232,4,1 ,20,22523,18917314,136,0 ,20,26086,27830210,248,0 ,20,22236,18393026,108,0 ,17,923,42947,32,0 ,43,15151,42948,32,0 ,17,923,6858692,40,0 ,44,15152,2140100,32,0 ,27,1770,42952,26,8 ,3,28,567240,9,4 ,27,178,42960,23,8 ,3,28,567248,17,8 ,27,1037,42968,26,8 ,3,28,567256,18,7 ,27,445,42976,23,8 ,3,28,567264,4,1 ,27,1771,42984,26,8 ,3,28,567272,6,2 ,27,204,42992,23,8 ,3,28,567280,10,4 ,27,433,43000,23,8 ,3,28,567288,6,2 ,27,536,43008,23,8 ,3,28,567296,4,1 ,20,22000,17868802,552,0 ,17,923,8431620,64,0 ,27,633,43016,23,8 ,3,28,567304,32,15 ,27,328,43024,23,8 ,3,28,567312,21,7 ,27,2022,43032,24,8 ,3,28,567320,15,5 ,27,2023,43040,23,8 ,3,28,567328,4,1 ,27,2024,43048,24,8 ,3,28,567336,14,6 ,27,2025,43056,24,8 ,3,28,567344,10,4 ,27,1039,43064,21,8 ,3,28,567352,14,5 ,27,1038,43072,26,8 ,3,28,567360,4,1 ,20,16643,3713090,240,0 ,45,15153,4237380,16,0 ,44,15152,3713092,24,0 ,27,295,43080,23,8 ,3,28,567368,9,4 ,27,2026,43088,24,8 ,3,28,567376,12,5 ,27,2027,43096,24,8 ,3,28,567384,4,1 ,27,2028,43104,23,8 ,3,28,567392,18,8 ,27,2049,43112,24,8 ,3,28,567400,16,7 ,27,2047,43120,26,8 ,3,28,567408,4,1 ,27,2031,43128,24,8 ,3,28,567416,28,13 ,27,2032,43136,24,8 ,3,28,567424,8,3 ,17,923,10004612,40,0 ,17,923,7907460,48,0 ,17,923,6334596,24,0 ,44,15152,1616004,160,0 ,27,2033,43144,25,8 ,3,28,567432,18,7 ,27,2034,43152,25,8 ,3,28,567440,14,5 ,27,2035,43160,24,8 ,3,28,567448,4,1 ,27,2036,43168,25,8 ,3,28,567456,4,1 ,27,2038,43176,26,8 ,3,28,567464,9,4 ,27,2040,43184,26,8 ,3,28,567472,8,3 ,27,2042,43192,26,8 ,3,28,567480,4,1 ,27,2044,43200,26,8 ,3,28,567488,6,2 ,17,923,43203,24,0 ,17,923,9480388,40,0 ,44,15152,2140356,24,0 ,43,15151,43204,72,0 ,45,15153,4237508,16,0 ,45,15153,5286084,16,0 ,17,923,8956100,24,0 ,27,2046,43208,26,8 ,3,28,567496,4,1 ,27,2048,43216,27,8 ,3,28,567504,10,4 ,27,2048,43224,28,8 ,3,28,567512,4,1 ,27,1040,43232,24,8 ,3,28,567520,16,7 ,20,15193,43234,56,0 ,27,41,43240,23,8 ,3,28,567528,4,1 ,27,2050,43248,24,8 ,3,28,567536,18,8 ,27,2051,43256,24,8 ,3,28,567544,6,2 ,27,2052,43264,23,8 ,3,28,567552,6,2 ,20,22956,19966210,584,0 ,20,16272,3188994,64,0 ,44,15152,3713284,56,0 ,17,923,7383300,32,0 ,17,923,6859012,48,0 ,44,15152,2664708,104,0 ,44,15152,3188996,40,0 ,27,2053,43272,24,8 ,3,28,567560,8,3 ,27,2054,43280,24,8 ,3,28,567568,8,3 ,27,2055,43288,24,8 ,3,28,567576,7,2 ,27,2056,43296,24,8 ,3,28,567584,7,2 ,27,1038,43304,25,8 ,3,28,567592,7,2 ,27,2057,43312,25,8 ,3,28,567600,16,7 ,27,2064,43320,24,8 ,3,28,567608,4,1 ,27,1770,43328,26,8 ,3,28,567616,34,16 ,20,25671,26782018,1120,0 ,20,25858,27306306,372,0 ,45,15153,5286212,24,0 ,17,923,6334788,40,0 ,45,15153,4237636,24,0 ,27,178,43336,23,8 ,3,28,567624,19,9 ,27,1037,43344,26,8 ,3,28,567632,4,1 ,27,445,43352,23,8 ,3,28,567640,18,8 ,27,1771,43360,26,8 ,3,28,567648,4,1 ,27,204,43368,23,8 ,3,28,567656,9,4 ,27,2058,43376,24,8 ,3,28,567664,13,4 ,27,1038,43384,25,8 ,3,28,567672,10,4 ,27,1038,43392,26,8 ,3,28,567680,41,20 ,20,25106,25209218,328,0 ,17,923,43395,24,0 ,17,923,8956292,48,0 ,44,15152,2140548,64,0 ,27,2059,43400,24,8 ,3,28,567688,4,1 ,27,1039,43408,21,8 ,3,28,567696,10,4 ,27,812,43416,23,8 ,3,28,567704,4,1 ,27,2060,43424,24,8 ,3,28,567712,10,4 ,27,295,43432,23,8 ,3,28,567720,4,1 ,27,1040,43440,24,8 ,3,28,567728,9,4 ,27,41,43448,23,8 ,3,28,567736,6,2 ,27,1973,43456,24,8 ,3,28,567744,24,12 ,20,18895,8956354,80,0 ,17,923,10004932,48,0 ,27,2061,43464,24,8 ,3,28,567752,18,7 ,27,2062,43472,24,8 ,3,28,567760,4,1 ,27,316,43480,23,8 ,3,28,567768,6,2 ,27,2065,43488,24,8 ,3,28,567776,4,1 ,27,812,43496,23,8 ,3,28,567784,11,4 ,27,2066,43504,24,8 ,3,28,567792,54,29 ,27,1973,43512,24,8 ,3,28,567800,4,1 ,27,2067,43520,23,8 ,3,28,567808,8,3 ,17,923,9480708,40,0 ,17,923,7907844,40,0 ,17,923,7383556,40,0 ,45,15153,4237828,24,0 ,45,15153,5286404,40,0 ,17,923,8432132,96,0 ,27,2068,43528,23,8 ,3,28,567816,8,3 ,27,2055,43536,24,8 ,3,28,567824,4,1 ,27,2070,43544,23,8 ,3,28,567832,8,3 ,27,2071,43552,24,8 ,3,28,567840,14,5 ,20,20483,13150754,440,0 ,27,2072,43560,24,8 ,3,28,567848,4,1 ,27,812,43568,23,8 ,3,28,567856,6,2 ,27,295,43576,23,8 ,3,28,567864,4,1 ,27,1973,43584,24,8 ,3,28,567872,107,67 ,17,923,43587,16,0 ,44,15152,3189316,32,0 ,27,41,43592,23,8 ,3,28,567880,4,1 ,27,316,43600,23,8 ,3,28,567888,9,4 ,27,2075,43608,23,8 ,3,28,567896,10,4 ,27,2080,43616,24,8 ,3,28,567904,4,1 ,27,41,43624,23,8 ,3,28,567912,6,2 ,27,2078,43632,24,8 ,3,28,567920,10,4 ,27,2087,43640,24,8 ,3,28,567928,10,3 ,27,41,43648,23,8 ,3,28,567936,8,3 ,20,969,43649,480,0 ,20,23259,20490882,68,0 ,17,923,6335108,32,0 ,17,923,6859396,24,0 ,27,2081,43656,24,8 ,3,28,567944,8,3 ,27,2082,43664,24,8 ,3,28,567952,18,6 ,27,2083,43672,24,8 ,3,28,567960,34,16 ,27,2084,43680,24,8 ,3,28,567968,4,1 ,20,15194,43682,12,0 ,27,2085,43688,24,8 ,3,28,567976,6,2 ,27,2087,43696,24,8 ,3,28,567984,12,4 ,27,2119,43704,25,8 ,3,28,567992,12,4 ,27,1509,43712,24,8 ,3,28,568000,9,3 ,17,923,43715,32,0 ,45,15153,4238020,64,0 ,44,15152,3713732,24,0 ,27,1440,43720,24,8 ,3,28,568008,14,5 ,27,2089,43728,25,8 ,3,28,568016,22,10 ,27,2091,43736,25,8 ,3,28,568024,6,2 ,27,2093,43744,25,8 ,3,28,568032,9,3 ,27,2095,43752,25,8 ,3,28,568040,6,2 ,27,2096,43760,22,8 ,3,28,568048,12,4 ,27,623,43768,26,8 ,3,28,568056,8,3 ,27,2099,43776,24,8 ,3,28,568064,12,4 ,20,16273,3189506,120,0 ,20,15195,43778,264,0 ,17,923,8956676,32,0 ,43,15151,43780,24,0 ,27,2101,43784,25,8 ,3,28,568072,4,1 ,27,2103,43792,25,8 ,3,28,568080,16,7 ,27,2105,43800,25,8 ,3,28,568088,9,3 ,27,2107,43808,25,8 ,3,28,568096,18,6 ,20,22237,18393890,336,0 ,27,2109,43816,26,8 ,3,28,568104,4,1 ,27,2111,43824,25,8 ,3,28,568112,6,2 ,27,2113,43832,25,8 ,3,28,568120,4,1 ,27,1502,43840,24,8 ,3,28,568128,9,4 ,20,25328,25733954,76,0 ,17,923,10005316,40,0 ,17,923,7908164,48,0 ,17,923,7383876,40,0 ,17,923,6859588,32,0 ,44,15152,568132,360,0 ,44,15152,3189572,288,0 ,45,15153,5286724,24,0 ,17,923,9481028,40,0 ,27,2115,43848,25,8 ,3,28,568136,31,16 ,27,2117,43856,25,8 ,3,28,568144,7,2 ,27,2124,43864,24,8 ,3,28,568152,12,5 ,27,295,43872,23,8 ,3,28,568160,4,1 ,27,812,43880,23,8 ,3,28,568168,8,3 ,27,41,43888,23,8 ,3,28,568176,12,4 ,27,2120,43896,23,8 ,3,28,568184,4,1 ,27,2121,43904,23,8 ,3,28,568192,8,3 ,20,25484,26258306,1540,0 ,44,15152,3713924,104,0 ,17,923,6335364,48,0 ,44,15152,2141060,64,0 ,27,2122,43912,23,8 ,3,28,568200,4,1 ,27,2124,43920,24,8 ,3,28,568208,63,35 ,27,2126,43928,25,8 ,3,28,568216,8,3 ,27,41,43936,23,8 ,3,28,568224,6,2 ,27,2126,43944,25,8 ,3,28,568232,10,4 ,27,2127,43952,24,8 ,3,28,568240,4,1 ,27,2127,43960,24,8 ,3,28,568248,9,4 ,27,2128,43968,24,8 ,3,28,568256,17,8 ,17,923,43971,16,0 ,45,15153,4762564,224,0 ,43,15151,43972,40,0 ,27,2128,43976,24,8 ,3,28,568264,4,1 ,27,2150,43984,24,8 ,3,28,568272,10,4 ,27,2142,43992,20,8 ,3,28,568280,4,1 ,27,2141,44000,26,8 ,3,28,568288,14,6 ,20,17108,4762594,340,0 ,27,163,44008,22,8 ,3,28,568296,4,1 ,27,2135,44016,26,8 ,3,28,568304,4,1 ,27,41,44024,23,8 ,3,28,568312,14,6 ,27,2052,44032,26,8 ,3,28,568320,12,4 ,20,22524,18918402,68,0 ,17,923,8956932,32,0 ,45,15153,5286916,24,0 ,27,2028,44040,26,8 ,3,28,568328,15,5 ,27,2133,44048,25,8 ,3,28,568336,6,2 ,27,2137,44056,26,8 ,3,28,568344,46,22 ,27,2138,44064,24,8 ,3,28,568352,4,1 ,27,2139,44072,25,8 ,3,28,568360,4,1 ,27,2141,44080,26,8 ,3,28,568368,14,6 ,27,2144,44088,24,8 ,3,28,568376,6,2 ,27,2146,44096,26,8 ,3,28,568384,4,1 ,20,18896,8956994,12,0 ,17,923,44099,24,0 ,44,15152,2665540,208,0 ,17,923,6859844,48,0 ,27,2148,44104,26,8 ,3,28,568392,59,35 ,27,2149,44112,25,8 ,3,28,568400,10,4 ,27,2152,44120,24,8 ,3,28,568408,6,2 ,27,2152,44128,24,8 ,3,28,568416,4,1 ,27,2155,44136,24,8 ,3,28,568424,9,4 ,27,2154,44144,24,8 ,3,28,568432,10,4 ,27,2155,44152,24,8 ,3,28,568440,4,1 ,27,2156,44160,21,8 ,3,28,568448,8,3 ,17,923,10005636,40,0 ,17,923,7384196,32,0 ,17,923,9481348,24,0 ,27,2157,44168,20,8 ,3,28,568456,4,1 ,27,2157,44176,24,8 ,3,28,568464,9,4 ,27,2161,44184,24,8 ,3,28,568472,10,4 ,27,2163,44192,24,8 ,3,28,568480,4,1 ,20,23260,20491426,84,0 ,20,18897,8957090,20,0 ,27,2164,44200,24,8 ,3,28,568488,16,7 ,27,2164,44208,24,8 ,3,28,568496,18,6 ,27,2165,44216,26,8 ,3,28,568504,10,4 ,27,2166,44224,27,8 ,3,28,568512,4,1 ,45,15153,5287108,16,0 ,17,923,7908548,24,0 ,45,15153,4238532,24,0 ,27,2167,44232,24,8 ,3,28,568520,9,4 ,27,2167,44240,24,8 ,3,28,568528,6,2 ,27,2168,44248,23,8 ,3,28,568536,8,3 ,27,2169,44256,26,8 ,3,28,568544,30,14 ,20,19673,10530018,108,0 ,27,2170,44264,24,8 ,3,28,568552,14,5 ,27,2170,44272,24,8 ,3,28,568560,4,1 ,27,2171,44280,22,8 ,3,28,568568,9,4 ,27,41,44288,23,8 ,3,28,568576,12,5 ,17,923,44291,16,0 ,17,923,8957188,56,0 ,17,923,6335748,32,0 ,43,15151,44292,24,0 ,17,923,8432900,96,0 ,27,2181,44296,24,8 ,3,28,568584,4,1 ,27,2182,44304,24,8 ,3,28,568592,10,4 ,27,2184,44312,26,8 ,3,28,568600,4,1 ,27,2185,44320,22,8 ,3,28,568608,9,4 ,27,1698,44328,24,8 ,3,28,568616,12,5 ,27,2187,44336,24,8 ,3,28,568624,4,1 ,27,2189,44344,25,8 ,3,28,568632,8,3 ,27,2191,44352,22,8 ,3,28,568640,4,1 ,20,18898,8957250,12,0 ,17,923,9481540,48,0 ,45,15153,5287236,80,0 ,27,2190,44360,23,8 ,3,28,568648,6,2 ,27,2193,44368,25,8 ,3,28,568656,4,1 ,27,2194,44376,25,8 ,3,28,568664,6,2 ,27,41,44384,22,8 ,3,28,568672,13,4 ,20,17982,6860130,208,0 ,27,41,44392,23,8 ,3,28,568680,4,1 ,27,295,44400,23,8 ,3,28,568688,12,5 ,27,812,44408,23,8 ,3,28,568696,4,1 ,27,2197,44416,24,8 ,3,28,568704,9,4 ,17,923,44419,24,0 ,45,15153,4238724,56,0 ,17,923,7908740,56,0 ,17,923,7384452,32,0 ,44,15152,2141572,32,0 ,44,15152,1617284,24,0 ,27,2198,44424,24,8 ,3,28,568712,6,2 ,27,2199,44432,24,8 ,3,28,568720,4,1 ,27,2200,44440,23,8 ,3,28,568728,4,1 ,27,1309,44448,26,8 ,3,28,568736,9,4 ,20,23684,21540258,692,0 ,20,25329,25734562,68,0 ,20,18899,8957346,192,0 ,27,1240,44456,26,8 ,3,28,568744,10,4 ,27,41,44464,23,8 ,3,28,568752,7,2 ,27,41,44472,23,8 ,3,28,568760,10,4 ,27,41,44480,23,8 ,3,28,568768,28,13 ,17,923,10005956,40,0 ,17,923,6860228,24,0 ,43,15151,44484,240,0 ,27,295,44488,23,8 ,3,28,568776,4,1 ,27,812,44496,23,8 ,3,28,568784,6,2 ,27,2220,44504,27,8 ,3,28,568792,29,15 ,27,41,44512,23,8 ,3,28,568800,4,1 ,27,41,44520,23,8 ,3,28,568808,4,1 ,27,2236,44528,24,8 ,3,28,568816,6,2 ,27,2237,44536,23,8 ,3,28,568824,14,5 ,27,41,44544,23,8 ,3,28,568832,7,2 ,44,15152,1093124,48,0 ,17,923,6336004,40,0 ,27,295,44552,23,8 ,3,28,568840,6,2 ,27,812,44560,23,8 ,3,28,568848,14,5 ,27,2242,44568,24,8 ,3,28,568856,4,1 ,27,2244,44576,22,8 ,3,28,568864,12,5 ,20,22525,18918946,52,0 ,27,2243,44584,24,8 ,3,28,568872,4,1 ,27,2247,44592,24,8 ,3,28,568880,20,9 ,27,2248,44600,22,8 ,3,28,568888,4,1 ,27,2249,44608,22,8 ,3,28,568896,9,4 ,17,923,44611,32,0 ,44,15152,1617476,24,0 ,27,2250,44616,22,8 ,3,28,568904,15,7 ,27,2251,44624,22,8 ,3,28,568912,14,5 ,27,2253,44632,24,8 ,3,28,568920,4,1 ,27,2254,44640,22,8 ,3,28,568928,12,5 ,27,2255,44648,22,8 ,3,28,568936,14,5 ,27,2258,44656,27,8 ,3,28,568944,7,2 ,27,2257,44664,26,8 ,3,28,568952,14,6 ,27,2259,44672,22,8 ,3,28,568960,10,4 ,44,15152,2141828,424,0 ,17,923,7384708,24,0 ,17,923,6860420,40,0 ,27,2261,44680,25,8 ,3,28,568968,6,2 ,27,2263,44688,24,8 ,3,28,568976,10,4 ,27,2265,44696,24,8 ,3,28,568984,6,2 ,27,2267,44704,24,8 ,3,28,568992,8,3 ,27,2269,44712,24,8 ,3,28,569000,7,2 ,27,2271,44720,24,8 ,3,28,569008,118,67 ,27,2273,44728,23,8 ,3,28,569016,8,3 ,27,2274,44736,24,8 ,3,28,569024,8,3 ,20,16274,3190466,96,0 ,17,923,9481924,24,0 ,44,15152,3714756,32,0 ,17,923,8957636,24,0 ,27,2276,44744,24,8 ,3,28,569032,6,2 ,27,2055,44752,24,8 ,3,28,569040,6,2 ,27,2279,44760,24,8 ,3,28,569048,8,3 ,27,2280,44768,22,8 ,3,28,569056,8,3 ,20,19344,10006242,112,0 ,27,2281,44776,22,8 ,3,28,569064,6,2 ,27,2284,44784,22,8 ,3,28,569072,8,3 ,27,2283,44792,24,8 ,3,28,569080,8,3 ,27,2286,44800,24,8 ,3,28,569088,10,4 ,17,923,10006276,40,0 ,44,15152,1617668,32,0 ,27,2288,44808,24,8 ,3,28,569096,12,4 ,27,2193,44816,24,8 ,3,28,569104,92,45 ,27,2291,44824,24,8 ,3,28,569112,6,2 ,27,2293,44832,25,8 ,3,28,569120,12,5 ,27,2295,44840,24,8 ,3,28,569128,4,1 ,27,2297,44848,24,8 ,3,28,569136,6,2 ,27,2299,44856,24,8 ,3,28,569144,34,11 ,27,2301,44864,24,8 ,3,28,569152,33,17 ,20,23261,20492098,120,0 ,17,923,44867,32,0 ,45,15153,4239172,24,0 ,17,923,7909188,24,0 ,17,923,7384900,24,0 ,17,923,6336324,56,0 ,27,2302,44872,22,8 ,3,28,569160,4,1 ,27,2304,44880,24,8 ,3,28,569168,8,3 ,27,41,44888,23,8 ,3,28,569176,4,1 ,27,41,44896,23,8 ,3,28,569184,10,4 ,27,2312,44904,24,8 ,3,28,569192,4,1 ,27,2313,44912,25,8 ,3,28,569200,10,4 ,27,2318,44920,26,8 ,3,28,569208,4,1 ,27,2319,44928,26,8 ,3,28,569216,8,3 ,20,26087,27832194,224,0 ,17,923,9482116,24,0 ,44,15152,1093508,24,0 ,17,923,8957828,48,0 ,27,2052,44936,26,8 ,3,28,569224,4,1 ,27,2028,44944,26,8 ,3,28,569232,10,4 ,27,41,44952,23,8 ,3,28,569240,4,1 ,27,2327,44960,25,8 ,3,28,569248,8,3 ,20,19931,11055010,196,0 ,27,2330,44968,24,8 ,3,28,569256,4,1 ,27,2332,44976,24,8 ,3,28,569264,4,1 ,27,2193,44984,24,8 ,3,28,569272,6,2 ,27,2334,44992,23,8 ,3,28,569280,4,1 ,20,22526,18919362,2440,0 ,20,25330,25735106,68,0 ,20,16644,3715010,132,0 ,45,15153,5287876,24,0 ,17,923,6860740,48,0 ,44,15152,3715012,32,0 ,27,2335,45000,23,8 ,3,28,569288,12,5 ,27,2337,45008,26,8 ,3,28,569296,4,1 ,27,2340,45016,26,8 ,3,28,569304,10,4 ,27,2341,45024,24,8 ,3,28,569312,6,2 ,27,2342,45032,25,8 ,3,28,569320,38,18 ,27,41,45040,23,8 ,3,28,569328,4,1 ,27,295,45048,23,8 ,3,28,569336,6,2 ,27,812,45056,23,8 ,3,28,569344,4,1 ,17,923,8433668,32,0 ,17,923,7909380,24,0 ,17,923,7385092,24,0 ,44,15152,1617924,24,0 ,45,15153,4239364,16,0 ,27,2347,45064,25,8 ,3,28,569352,22,10 ,27,41,45072,23,8 ,3,28,569360,9,3 ,27,41,45080,23,8 ,3,28,569368,14,6 ,27,295,45088,23,8 ,3,28,569376,8,3 ,27,812,45096,23,8 ,3,28,569384,22,10 ,27,1309,45104,24,8 ,3,28,569392,8,3 ,27,1240,45112,24,8 ,3,28,569400,22,7 ,27,2352,45120,23,8 ,3,28,569408,20,7 ,20,19674,10530882,124,0 ,17,923,45123,16,0 ,17,923,10006596,40,0 ,44,15152,1093700,40,0 ,17,923,9482308,24,0 ,27,2353,45128,23,8 ,3,28,569416,10,4 ,27,2355,45136,22,8 ,3,28,569424,8,3 ,27,2357,45144,22,8 ,3,28,569432,70,34 ,27,2359,45152,22,8 ,3,28,569440,4,1 ,27,2360,45160,22,8 ,3,28,569448,4,1 ,27,2361,45168,22,8 ,3,28,569456,6,2 ,27,2362,45176,21,8 ,3,28,569464,24,11 ,27,2363,45184,21,8 ,3,28,569472,4,1 ,45,15153,5288068,16,0 ,45,15153,4239492,16,0 ,27,2364,45192,21,8 ,3,28,569480,6,2 ,27,2365,45200,24,8 ,3,28,569488,4,1 ,27,2366,45208,22,8 ,3,28,569496,8,3 ,27,2368,45216,22,8 ,3,28,569504,4,1 ,27,2367,45224,24,8 ,3,28,569512,8,3 ,27,2369,45232,22,8 ,3,28,569520,14,5 ,27,2370,45240,24,8 ,3,28,569528,4,1 ,27,2371,45248,21,8 ,3,28,569536,6,2 ,20,17319,5288130,152,0 ,17,923,45251,24,0 ,44,15152,3715268,40,0 ,17,923,7909572,32,0 ,17,923,7385284,24,0 ,44,15152,1618116,848,0 ,27,41,45256,23,8 ,3,28,569544,15,5 ,27,2372,45264,21,8 ,3,28,569552,4,1 ,27,2373,45272,22,8 ,3,28,569560,4,1 ,27,2374,45280,21,8 ,3,28,569568,8,3 ,27,2376,45288,24,8 ,3,28,569576,4,1 ,27,2377,45296,24,8 ,3,28,569584,61,35 ,27,2378,45304,24,8 ,3,28,569592,42,20 ,27,2380,45312,24,8 ,3,28,569600,4,1 ,17,923,9482500,24,0 ,17,923,6336772,24,0 ,45,15153,4239620,16,0 ,45,15153,5288196,40,0 ,17,923,8433924,32,0 ,17,923,8958212,32,0 ,27,2382,45320,26,8 ,3,28,569608,4,1 ,27,2384,45328,26,8 ,3,28,569616,16,5 ,27,2386,45336,26,8 ,3,28,569624,62,35 ,27,2388,45344,26,8 ,3,28,569632,12,4 ,27,2389,45352,24,8 ,3,28,569640,44,21 ,27,2391,45360,26,8 ,3,28,569648,70,35 ,27,2393,45368,26,8 ,3,28,569656,4,1 ,27,2028,45376,26,8 ,3,28,569664,6,2 ,17,923,6861124,56,0 ,27,2395,45384,24,8 ,3,28,569672,4,1 ,27,2397,45392,26,8 ,3,28,569680,7,2 ,27,2398,45400,22,8 ,3,28,569688,12,5 ,27,2400,45408,26,8 ,3,28,569696,4,1 ,27,2052,45416,26,8 ,3,28,569704,14,6 ,27,2404,45424,26,8 ,3,28,569712,11,4 ,27,2406,45432,26,8 ,3,28,569720,4,1 ,27,2408,45440,26,8 ,3,28,569728,4,1 ,17,923,45443,16,0 ,17,923,10006916,48,0 ,17,923,7385476,32,0 ,44,15152,1094020,80,0 ,45,15153,4239748,16,0 ,27,2409,45448,25,8 ,3,28,569736,7,2 ,27,41,45456,23,8 ,3,28,569744,26,12 ,27,295,45464,23,8 ,3,28,569752,12,4 ,27,812,45472,23,8 ,3,28,569760,4,1 ,27,2414,45480,22,8 ,3,28,569768,7,2 ,27,2416,45488,24,8 ,3,28,569776,24,11 ,27,2193,45496,24,8 ,3,28,569784,4,1 ,27,2418,45504,26,8 ,3,28,569792,12,5 ,20,16275,3191234,132,0 ,17,923,9482692,32,0 ,17,923,7909828,40,0 ,17,923,6336964,40,0 ,27,41,45512,23,8 ,3,28,569800,4,1 ,27,295,45520,23,8 ,3,28,569808,14,6 ,27,812,45528,23,8 ,3,28,569816,9,3 ,27,2433,45536,27,8 ,3,28,569824,8,3 ,20,25331,25735650,68,0 ,27,2436,45544,24,8 ,3,28,569832,6,2 ,27,2193,45552,24,8 ,3,28,569840,4,1 ,27,2438,45560,25,8 ,3,28,569848,12,5 ,27,41,45568,23,8 ,3,28,569856,10,4 ,17,923,45571,40,0 ,17,923,8958468,32,0 ,44,15152,3715588,24,0 ,45,15153,4239876,32,0 ,17,923,8434180,32,0 ,27,2449,45576,24,8 ,3,28,569864,21,7 ,27,1698,45584,22,8 ,3,28,569872,6,2 ,27,1952,45592,24,8 ,3,28,569880,4,1 ,27,2451,45600,25,8 ,3,28,569888,8,3 ,20,16056,2142754,76,0 ,27,2452,45608,22,8 ,3,28,569896,4,1 ,27,2182,45616,24,8 ,3,28,569904,6,2 ,27,2181,45624,24,8 ,3,28,569912,4,1 ,27,2455,45632,24,8 ,3,28,569920,32,15 ,45,15153,5288516,24,0 ,27,2457,45640,24,8 ,3,28,569928,8,3 ,27,2460,45648,26,8 ,3,28,569936,8,3 ,27,2462,45656,24,8 ,3,28,569944,8,3 ,27,2465,45664,26,8 ,3,28,569952,4,1 ,20,21773,16822882,32,0 ,20,19345,10007138,464,0 ,20,20712,13677154,684,0 ,27,2467,45672,24,8 ,3,28,569960,10,4 ,27,2469,45680,24,8 ,3,28,569968,4,1 ,27,2473,45688,27,8 ,3,28,569976,16,7 ,27,2475,45696,24,8 ,3,28,569984,12,5 ,17,923,7385732,24,0 ,27,2477,45704,24,8 ,3,28,569992,4,1 ,27,2478,45712,22,8 ,3,28,570000,6,2 ,27,2480,45720,24,8 ,3,28,570008,4,1 ,27,2482,45728,24,8 ,3,28,570016,8,3 ,27,2484,45736,26,8 ,3,28,570024,4,1 ,27,2193,45744,24,8 ,3,28,570032,8,3 ,27,2486,45752,26,8 ,3,28,570040,4,1 ,27,2488,45760,26,8 ,3,28,570048,8,3 ,17,923,9482948,24,0 ,44,15152,2667204,40,0 ,44,15152,3715780,48,0 ,45,15153,4764356,232,0 ,27,2490,45768,24,8 ,3,28,570056,4,1 ,27,2492,45776,24,8 ,3,28,570064,10,4 ,27,2493,45784,26,8 ,3,28,570072,4,1 ,27,1770,45792,26,8 ,3,28,570080,6,2 ,20,21518,16298722,164,0 ,27,178,45800,23,8 ,3,28,570088,4,1 ,27,1037,45808,26,8 ,3,28,570096,8,3 ,27,445,45816,23,8 ,3,28,570104,4,1 ,27,1771,45824,26,8 ,3,28,570112,8,3 ,20,23262,20493058,276,0 ,17,923,10007300,16,0 ,17,923,7910148,32,0 ,17,923,6861572,40,0 ,17,923,6337284,48,0 ,45,15153,4240132,64,0 ,45,15153,5288708,24,0 ,17,923,8434436,32,0 ,17,923,8958724,56,0 ,27,204,45832,23,8 ,3,28,570120,4,1 ,27,41,45840,23,8 ,3,28,570128,6,2 ,27,295,45848,23,8 ,3,28,570136,4,1 ,27,812,45856,23,8 ,3,28,570144,8,3 ,27,1973,45864,24,8 ,3,28,570152,4,1 ,27,41,45872,23,8 ,3,28,570160,6,2 ,27,2503,45880,25,8 ,3,28,570168,4,1 ,27,41,45888,23,8 ,3,28,570176,8,3 ,20,23902,22065986,748,0 ,20,15196,45890,148,0 ,17,923,45891,32,0 ,17,923,7385924,24,0 ,27,2181,45896,24,8 ,3,28,570184,4,1 ,27,2182,45904,24,8 ,3,28,570192,6,2 ,27,2512,45912,24,8 ,3,28,570200,4,1 ,27,2516,45920,24,8 ,3,28,570208,4,1 ,20,21774,16823138,12,0 ,27,2518,45928,25,8 ,3,28,570216,8,3 ,27,2537,45936,25,8 ,3,28,570224,4,1 ,27,2193,45944,24,8 ,3,28,570232,8,3 ,27,2539,45952,25,8 ,3,28,570240,4,1 ,17,923,10007428,40,0 ,17,923,9483140,24,0 ,27,2541,45960,25,8 ,3,28,570248,8,3 ,27,2054,45968,24,8 ,3,28,570256,4,1 ,27,2545,45976,26,8 ,3,28,570264,14,6 ,27,2547,45984,24,8 ,3,28,570272,24,11 ,20,18900,8958882,12,0 ,27,1038,45992,25,8 ,3,28,570280,4,1 ,27,1038,46000,26,8 ,3,28,570288,9,4 ,27,2548,46008,22,8 ,3,28,570296,12,5 ,27,2549,46016,22,8 ,3,28,570304,4,1 ,20,21775,16823234,128,0 ,20,25107,25211842,148,0 ,20,15590,1094594,120,0 ,45,15153,5288900,16,0 ,27,2550,46024,25,8 ,3,28,570312,24,11 ,27,2551,46032,22,8 ,3,28,570320,15,5 ,27,2010,46040,24,8 ,3,28,570328,4,1 ,27,1039,46048,21,8 ,3,28,570336,20,9 ,20,17983,6861794,148,0 ,20,16645,3716066,296,0 ,27,2193,46056,24,8 ,3,28,570344,8,3 ,27,2554,46064,24,8 ,3,28,570352,4,1 ,27,2556,46072,24,8 ,3,28,570360,9,4 ,27,2558,46080,24,8 ,3,28,570368,15,7 ,20,18901,8958978,12,0 ,20,25332,25736194,68,0 ,17,923,8434692,48,0 ,17,923,7910404,24,0 ,17,923,7386116,40,0 ,44,15152,2667524,40,0 ,44,15152,1094660,32,0 ,27,2560,46088,24,8 ,3,28,570376,4,1 ,27,2562,46096,24,8 ,3,28,570384,4,1 ,27,2564,46104,26,8 ,3,28,570392,61,35 ,27,2566,46112,24,8 ,3,28,570400,12,5 ,20,19675,10531874,272,0 ,27,2568,46120,24,8 ,3,28,570408,24,8 ,27,2570,46128,24,8 ,3,28,570416,10,4 ,27,41,46136,23,8 ,3,28,570424,6,2 ,27,41,46144,23,8 ,3,28,570432,42,20 ,17,923,46147,24,0 ,17,923,9483332,56,0 ,17,923,6861892,32,0 ,44,15152,3191876,24,0 ,44,15152,3716164,24,0 ,45,15153,5289028,24,0 ,27,41,46152,23,8 ,3,28,570440,4,1 ,27,41,46160,23,8 ,3,28,570448,18,8 ,27,41,46168,23,8 ,3,28,570456,4,1 ,27,41,46176,23,8 ,3,28,570464,8,3 ,20,18902,8959074,84,0 ,27,295,46184,23,8 ,3,28,570472,4,1 ,27,812,46192,23,8 ,3,28,570480,10,4 ,27,41,46200,23,8 ,3,28,570488,10,4 ,27,41,46208,23,8 ,3,28,570496,4,1 ,20,16057,2143362,76,0 ,17,923,6337668,40,0 ,27,1973,46216,24,8 ,3,28,570504,8,3 ,27,2595,46224,24,8 ,3,28,570512,4,1 ,27,2053,46232,24,8 ,3,28,570520,11,4 ,27,2054,46240,24,8 ,3,28,570528,31,16 ,27,1038,46248,25,8 ,3,28,570536,24,11 ,27,1038,46256,26,8 ,3,28,570544,4,1 ,27,2596,46264,23,8 ,3,28,570552,6,2 ,27,2597,46272,24,8 ,3,28,570560,4,1 ,17,923,10007748,32,0 ,17,923,7910596,24,0 ,17,923,8959172,24,0 ,27,295,46280,23,8 ,3,28,570568,10,4 ,27,1039,46288,21,8 ,3,28,570576,4,1 ,27,812,46296,23,8 ,3,28,570584,4,1 ,27,2028,46304,23,8 ,3,28,570592,7,2 ,20,25859,27309282,104,0 ,27,2026,46312,24,8 ,3,28,570600,4,1 ,27,2598,46320,24,8 ,3,28,570608,9,4 ,27,2599,46328,24,8 ,3,28,570616,19,9 ,27,41,46336,23,8 ,3,28,570624,4,1 ,17,923,46339,24,0 ,45,15153,5289220,24,0 ,44,15152,1094916,32,0 ,44,15152,3192068,160,0 ,44,15152,3716356,40,0 ,45,15153,4240644,64,0 ,27,2600,46344,24,8 ,3,28,570632,8,3 ,27,2052,46352,23,8 ,3,28,570640,4,1 ,27,2601,46360,24,8 ,3,28,570648,8,3 ,27,2602,46368,24,8 ,3,28,570656,4,1 ,27,2603,46376,24,8 ,3,28,570664,4,1 ,27,2604,46384,24,8 ,3,28,570672,24,11 ,27,41,46392,23,8 ,3,28,570680,12,5 ,27,41,46400,23,8 ,3,28,570688,8,3 ,43,15151,46404,72,0 ,17,923,7386436,32,0 ,17,923,6862148,32,0 ,44,15152,2667844,32,0 ,27,41,46408,23,8 ,3,28,570696,6,2 ,27,41,46416,23,8 ,3,28,570704,4,1 ,27,2621,46424,24,8 ,3,28,570712,16,7 ,27,2622,46432,24,8 ,3,28,570720,6,2 ,27,2193,46440,24,8 ,3,28,570728,7,2 ,27,2624,46448,25,8 ,3,28,570736,110,67 ,27,2633,46456,24,8 ,3,28,570744,4,1 ,27,41,46464,23,8 ,3,28,570752,9,4 ,20,17320,5289346,112,0 ,17,923,8959364,40,0 ,17,923,7910788,40,0 ,17,923,8435076,48,0 ,27,295,46472,23,8 ,3,28,570760,19,9 ,27,812,46480,23,8 ,3,28,570768,14,5 ,27,2634,46488,24,8 ,3,28,570776,4,1 ,27,2635,46496,24,8 ,3,28,570784,6,2 ,20,22238,18396578,324,0 ,27,2637,46504,24,8 ,3,28,570792,4,1 ,27,2638,46512,22,8 ,3,28,570800,18,8 ,27,2639,46520,22,8 ,3,28,570808,10,4 ,27,2641,46528,24,8 ,3,28,570816,10,4 ,20,19932,11056578,124,0 ,17,923,46531,24,0 ,17,923,10008004,24,0 ,17,923,6337988,24,0 ,45,15153,5289412,24,0 ,27,2642,46536,22,8 ,3,28,570824,38,13 ,27,2643,46544,22,8 ,3,28,570832,4,1 ,27,2644,46552,22,8 ,3,28,570840,9,4 ,27,2646,46560,26,8 ,3,28,570848,10,4 ,20,16276,3192290,208,0 ,27,2647,46568,22,8 ,3,28,570856,4,1 ,27,2648,46576,22,8 ,3,28,570864,10,4 ,27,2650,46584,26,8 ,3,28,570872,4,1 ,27,2652,46592,24,8 ,3,28,570880,9,4 ,17,923,9483780,24,0 ,44,15152,1095172,32,0 ,27,2654,46600,24,8 ,3,28,570888,10,4 ,27,2655,46608,22,8 ,3,28,570896,4,1 ,27,2656,46616,24,8 ,3,28,570904,6,2 ,27,163,46624,22,8 ,3,28,570912,8,3 ,20,24161,22591010,84,0 ,20,25333,25736738,68,0 ,27,163,46632,22,8 ,3,28,570920,4,1 ,27,2657,46640,22,8 ,3,28,570928,9,4 ,27,2658,46648,22,8 ,3,28,570936,10,4 ,27,2659,46656,22,8 ,3,28,570944,4,1 ,44,15152,3716676,32,0 ,17,923,7386692,24,0 ,17,923,6862404,48,0 ,44,15152,2668100,32,0 ,27,2660,46664,24,8 ,3,28,570952,20,9 ,27,2661,46672,22,8 ,3,28,570960,10,4 ,27,2662,46680,22,8 ,3,28,570968,8,3 ,27,2665,46688,21,8 ,3,28,570976,14,5 ,27,2668,46696,24,8 ,3,28,570984,4,1 ,27,2669,46704,26,8 ,3,28,570992,4,1 ,27,2670,46712,21,8 ,3,28,571000,9,4 ,27,2672,46720,23,8 ,3,28,571008,6,2 ,20,17109,4765314,812,0 ,20,26088,27833986,44,0 ,17,923,46723,32,0 ,17,923,10008196,24,0 ,17,923,6338180,32,0 ,44,15152,571012,56,0 ,45,15153,5289604,24,0 ,27,2674,46728,26,8 ,3,28,571016,36,19 ,27,2675,46736,26,8 ,3,28,571024,4,1 ,27,2678,46744,23,8 ,3,28,571032,12,5 ,27,2683,46752,22,8 ,3,28,571040,4,1 ,27,2685,46760,22,8 ,3,28,571048,14,6 ,27,163,46768,22,8 ,3,28,571056,8,3 ,27,2687,46776,22,8 ,3,28,571064,8,3 ,27,2688,46784,22,8 ,3,28,571072,4,1 ,17,923,9483972,32,0 ,17,923,7911108,24,0 ,17,923,8959684,24,0 ,27,41,46792,25,8 ,3,28,571080,4,1 ,27,1565,46800,24,8 ,3,28,571088,6,2 ,27,2950,46808,25,8 ,3,28,571096,4,1 ,27,2947,46816,21,8 ,3,28,571104,8,3 ,20,16058,2143970,52,0 ,27,2690,46824,22,8 ,3,28,571112,4,1 ,27,163,46832,24,8 ,3,28,571120,8,3 ,27,2710,46840,21,8 ,3,28,571128,4,1 ,27,2699,46848,22,8 ,3,28,571136,4,1 ,20,18903,8959746,1424,0 ,17,923,8435460,24,0 ,17,923,7386884,56,0 ,44,15152,1095428,32,0 ,45,15153,4241156,64,0 ,27,2697,46856,22,8 ,3,28,571144,20,9 ,27,2698,46864,20,8 ,3,28,571152,8,3 ,27,2702,46872,22,8 ,3,28,571160,10,4 ,27,2703,46880,24,8 ,3,28,571168,14,5 ,27,2704,46888,24,8 ,3,28,571176,4,1 ,27,2705,46896,24,8 ,3,28,571184,6,2 ,27,2558,46904,22,8 ,3,28,571192,4,1 ,27,2706,46912,22,8 ,3,28,571200,8,3 ,17,923,10008388,32,0 ,44,15152,2668356,24,0 ,44,15152,3716932,24,0 ,45,15153,5289796,16,0 ,27,109,46920,21,8 ,3,28,571208,8,3 ,27,2707,46928,23,8 ,3,28,571216,8,3 ,27,2708,46936,21,8 ,3,28,571224,11,4 ,27,2711,46944,22,8 ,3,28,571232,12,4 ,27,2926,46952,25,8 ,3,28,571240,6,2 ,27,1883,46960,21,8 ,3,28,571248,8,3 ,27,1874,46968,24,8 ,3,28,571256,4,1 ,27,1943,46976,20,8 ,3,28,571264,9,4 ,20,15591,1095554,368,0 ,17,923,46979,16,0 ,17,923,8959876,24,0 ,17,923,7911300,32,0 ,17,923,6338436,32,0 ,43,15151,46980,24,0 ,27,1938,46984,26,8 ,3,28,571272,15,7 ,27,1874,46992,23,8 ,3,28,571280,18,7 ,27,1938,47000,25,8 ,3,28,571288,4,1 ,27,2713,47008,23,8 ,3,28,571296,6,2 ,27,614,47016,21,8 ,3,28,571304,4,1 ,27,2719,47024,22,8 ,3,28,571312,18,8 ,27,1400,47032,23,8 ,3,28,571320,18,6 ,27,163,47040,22,8 ,3,28,571328,54,18 ,20,23489,21018562,116,0 ,20,18642,8435650,516,0 ,20,21776,16824258,72,0 ,17,923,9484228,24,0 ,17,923,6862788,48,0 ,45,15153,5289924,16,0 ,17,923,8435652,64,0 ,27,2716,47048,23,8 ,3,28,571336,21,18 ,27,2182,47056,25,8 ,3,28,571344,6,2 ,27,163,47064,24,8 ,3,28,571352,4,1 ,27,2717,47072,20,8 ,3,28,571360,16,7 ,20,20484,13154274,160,0 ,20,26089,27834338,316,0 ,20,15197,47074,608,0 ,27,2722,47080,22,8 ,3,28,571368,27,9 ,27,163,47088,24,8 ,3,28,571376,8,3 ,27,2728,47096,24,8 ,3,28,571384,18,7 ,27,2723,47104,23,8 ,3,28,571392,4,1 ,20,21519,16300034,172,0 ,17,923,47107,32,0 ,44,15152,3717124,104,0 ,44,15152,2668548,24,0 ,44,15152,1095684,168,0 ,27,163,47112,22,8 ,3,28,571400,6,2 ,27,2725,47120,24,8 ,3,28,571408,8,3 ,27,2727,47128,24,8 ,3,28,571416,76,37 ,27,340,47136,21,8 ,3,28,571424,4,1 ,20,25860,27310114,104,0 ,27,2729,47144,24,8 ,3,28,571432,8,3 ,27,2862,47152,24,8 ,3,28,571440,4,1 ,27,2861,47160,24,8 ,3,28,571448,45,15 ,27,2732,47168,26,8 ,3,28,571456,4,1 ,20,24879,24688706,1528,0 ,20,25334,25737282,200,0 ,17,923,10008644,24,0 ,43,15151,47172,16,0 ,44,15152,571460,312,0 ,45,15153,5290052,24,0 ,17,923,8960068,56,0 ,27,2730,47176,24,8 ,3,28,571464,9,4 ,27,2731,47184,24,8 ,3,28,571472,15,7 ,27,2734,47192,26,8 ,3,28,571480,4,1 ,27,2733,47200,25,8 ,3,28,571488,14,6 ,20,25108,25213026,120,0 ,27,2736,47208,26,8 ,3,28,571496,4,1 ,27,2735,47216,24,8 ,3,28,571504,8,3 ,27,2740,47224,26,8 ,3,28,571512,4,1 ,27,2738,47232,22,8 ,3,28,571520,8,3 ,20,17984,6862978,128,0 ,20,16059,2144386,44,0 ,17,923,9484420,24,0 ,17,923,7911556,32,0 ,17,923,6338692,32,0 ,27,2739,47240,24,8 ,3,28,571528,4,1 ,27,2744,47248,22,8 ,3,28,571536,18,8 ,27,2743,47256,22,8 ,3,28,571544,18,6 ,27,2753,47264,27,8 ,3,28,571552,4,1 ,27,1055,47272,24,8 ,3,28,571560,16,7 ,27,2798,47280,26,8 ,3,28,571568,8,3 ,27,2758,47288,23,8 ,3,28,571576,164,55 ,27,2756,47296,22,8 ,3,28,571584,58,55 ,20,24162,22591682,56,0 ,43,15151,47300,16,0 ,17,923,7387332,32,0 ,44,15152,2668740,24,0 ,27,2760,47304,23,8 ,3,28,571592,24,11 ,27,2764,47312,23,8 ,3,28,571600,4,1 ,27,579,47320,22,8 ,3,28,571608,9,4 ,27,579,47328,23,8 ,3,28,571616,12,5 ,27,1062,47336,21,8 ,3,28,571624,14,5 ,27,2761,47344,22,8 ,3,28,571632,4,1 ,27,1040,47352,24,8 ,3,28,571640,10,4 ,27,1057,47360,22,8 ,3,28,571648,4,1 ,20,17321,5290242,300,0 ,17,923,47363,24,0 ,17,923,10008836,32,0 ,45,15153,4241668,48,0 ,45,15153,5290244,56,0 ,27,1055,47368,24,8 ,3,28,571656,6,2 ,27,1025,47376,24,8 ,3,28,571664,4,1 ,27,623,47384,23,8 ,3,28,571672,9,4 ,27,1043,47392,24,8 ,3,28,571680,22,11 ,20,15322,571682,2620,0 ,27,1374,47400,24,8 ,3,28,571688,18,7 ,27,2768,47408,24,8 ,3,28,571696,4,1 ,27,1688,47416,22,8 ,3,28,571704,6,2 ,27,2793,47424,29,8 ,3,28,571712,4,1 ,20,22001,17873218,636,0 ,17,923,9484612,24,0 ,17,923,6863172,40,0 ,43,15151,47428,32,0 ,27,2774,47432,22,8 ,3,28,571720,7,2 ,27,812,47440,23,8 ,3,28,571728,24,11 ,27,295,47448,23,8 ,3,28,571736,14,5 ,27,2777,47456,22,8 ,3,28,571744,4,1 ,27,1707,47464,26,8 ,3,28,571752,9,4 ,27,2780,47472,21,8 ,3,28,571760,10,4 ,27,2781,47480,21,8 ,3,28,571768,4,1 ,27,2783,47488,26,8 ,3,28,571776,12,5 ,20,970,47489,516,0 ,44,15152,2668932,24,0 ,17,923,7911812,32,0 ,17,923,6338948,48,0 ,27,2785,47496,26,8 ,3,28,571784,4,1 ,27,2787,47504,26,8 ,3,28,571792,9,4 ,27,2789,47512,26,8 ,3,28,571800,10,4 ,27,2790,47520,24,8 ,3,28,571808,4,1 ,20,19933,11057570,392,0 ,27,1270,47528,26,8 ,3,28,571816,14,5 ,27,1283,47536,26,8 ,3,28,571824,4,1 ,27,2791,47544,24,8 ,3,28,571832,9,4 ,27,2794,47552,27,8 ,3,28,571840,10,4 ,17,923,47555,32,0 ,17,923,8436164,48,0 ,17,923,7387588,32,0 ,27,809,47560,24,8 ,3,28,571848,4,1 ,27,1200,47568,24,8 ,3,28,571856,12,5 ,27,2795,47576,23,8 ,3,28,571864,38,19 ,27,2799,47584,23,8 ,3,28,571872,4,1 ,20,16060,2144738,140,0 ,27,2800,47592,24,8 ,3,28,571880,19,8 ,27,2801,47600,23,8 ,3,28,571888,6,2 ,27,2802,47608,26,8 ,3,28,571896,31,16 ,27,2803,47616,26,8 ,3,28,571904,7,2 ,20,21777,16824834,128,0 ,17,923,10009092,32,0 ,44,15152,3193348,24,0 ,45,15153,4766212,232,0 ,17,923,8960516,24,0 ,17,923,9484804,24,0 ,27,2804,47624,24,8 ,3,28,571912,4,1 ,27,2805,47632,23,8 ,3,28,571920,9,4 ,27,2806,47640,24,8 ,3,28,571928,12,5 ,27,2807,47648,24,8 ,3,28,571936,4,1 ,27,2808,47656,24,8 ,3,28,571944,4,1 ,27,2809,47664,21,8 ,3,28,571952,6,2 ,27,41,47672,23,8 ,3,28,571960,10,4 ,27,2810,47680,26,8 ,3,28,571968,18,7 ,43,15151,47684,56,0 ,44,15152,2669124,24,0 ,27,2811,47688,24,8 ,3,28,571976,4,1 ,27,2812,47696,22,8 ,3,28,571984,6,2 ,27,2813,47704,24,8 ,3,28,571992,4,1 ,27,2814,47712,24,8 ,3,28,572000,6,2 ,27,2815,47720,24,8 ,3,28,572008,18,7 ,27,2816,47728,22,8 ,3,28,572016,4,1 ,27,2817,47736,24,8 ,3,28,572024,6,2 ,27,2818,47744,24,8 ,3,28,572032,4,1 ,20,24163,22592130,84,0 ,20,21179,15776386,24,0 ,45,15153,4242052,48,0 ,17,923,7912068,24,0 ,17,923,6863492,24,0 ,27,2819,47752,23,8 ,3,28,572040,102,67 ,27,2820,47760,24,8 ,3,28,572048,12,5 ,27,2821,47768,24,8 ,3,28,572056,30,10 ,27,2822,47776,24,8 ,3,28,572064,15,5 ,27,2823,47784,24,8 ,3,28,572072,60,29 ,27,1993,47792,24,8 ,3,28,572080,28,11 ,27,2824,47800,24,8 ,3,28,572088,4,1 ,27,2825,47808,24,8 ,3,28,572096,6,2 ,17,923,47811,16,0 ,17,923,9484996,24,0 ,17,923,7387844,32,0 ,44,15152,3193540,24,0 ,45,15153,5290692,24,0 ,17,923,8960708,40,0 ,27,2826,47816,24,8 ,3,28,572104,7,2 ,27,2827,47824,24,8 ,3,28,572112,16,7 ,27,2828,47832,24,8 ,3,28,572120,10,4 ,27,2829,47840,26,8 ,3,28,572128,7,2 ,27,2830,47848,22,8 ,3,28,572136,30,14 ,27,2831,47856,24,8 ,3,28,572144,4,1 ,27,2832,47864,24,8 ,3,28,572152,6,2 ,27,2833,47872,24,8 ,3,28,572160,14,5 ,17,923,10009348,32,0 ,17,923,6339332,48,0 ,44,15152,2669316,24,0 ,27,2834,47880,24,8 ,3,28,572168,4,1 ,27,2835,47888,24,8 ,3,28,572176,9,4 ,27,295,47896,25,8 ,3,28,572184,12,5 ,27,2836,47904,24,8 ,3,28,572192,4,1 ,27,2837,47912,23,8 ,3,28,572200,6,2 ,27,2838,47920,24,8 ,3,28,572208,4,1 ,27,2839,47928,25,8 ,3,28,572216,10,4 ,27,2840,47936,24,8 ,3,28,572224,14,5 ,20,22957,19970882,192,0 ,20,21180,15776578,372,0 ,17,923,47939,32,0 ,17,923,8436548,32,0 ,17,923,7912260,24,0 ,17,923,6863684,24,0 ,44,15152,3717956,56,0 ,27,2841,47944,24,8 ,3,28,572232,4,1 ,27,2842,47952,24,8 ,3,28,572240,9,4 ,27,2843,47960,24,8 ,3,28,572248,10,4 ,27,2844,47968,26,8 ,3,28,572256,4,1 ,20,23490,21019490,152,0 ,20,25861,27310946,148,0 ,27,2845,47976,24,8 ,3,28,572264,10,4 ,27,2846,47984,23,8 ,3,28,572272,14,5 ,27,2847,47992,24,8 ,3,28,572280,4,1 ,27,812,48000,23,8 ,3,28,572288,9,4 ,17,923,9485188,32,0 ,44,15152,3193732,32,0 ,45,15153,5290884,24,0 ,27,2848,48008,20,8 ,3,28,572296,10,4 ,27,2849,48016,24,8 ,3,28,572304,4,1 ,27,2850,48024,24,8 ,3,28,572312,10,4 ,27,2851,48032,24,8 ,3,28,572320,14,5 ,20,23263,20495266,276,0 ,27,2852,48040,24,8 ,3,28,572328,4,1 ,27,2853,48048,24,8 ,3,28,572336,9,4 ,27,2857,48056,26,8 ,3,28,572344,12,5 ,27,2858,48064,24,8 ,3,28,572352,4,1 ,44,15152,2145220,176,0 ,17,923,7388100,24,0 ,44,15152,2669508,24,0 ,27,2859,48072,24,8 ,3,28,572360,4,1 ,27,2863,48080,25,8 ,3,28,572368,12,5 ,27,2863,48088,26,8 ,3,28,572376,4,1 ,27,1141,48096,26,8 ,3,28,572384,9,4 ,27,2732,48104,26,8 ,3,28,572392,12,5 ,27,2731,48112,24,8 ,3,28,572400,14,5 ,27,2864,48120,24,8 ,3,28,572408,4,1 ,27,2829,48128,26,8 ,3,28,572416,6,2 ,17,923,10009604,24,0 ,17,923,7912452,56,0 ,17,923,6863876,24,0 ,43,15151,48132,40,0 ,45,15153,4242436,32,0 ,17,923,8961028,24,0 ,27,2831,48136,24,8 ,3,28,572424,4,1 ,27,2802,48144,24,8 ,3,28,572432,14,6 ,27,2803,48152,24,8 ,3,28,572440,24,8 ,27,2834,48160,24,8 ,3,28,572448,14,5 ,20,25109,25213986,100,0 ,27,2804,48168,24,8 ,3,28,572456,4,1 ,27,2865,48176,24,8 ,3,28,572464,9,4 ,27,2866,48184,24,8 ,3,28,572472,10,4 ,27,295,48192,23,8 ,3,28,572480,4,1 ,17,923,48195,16,0 ,17,923,8436804,32,0 ,45,15153,5291076,16,0 ,27,2867,48200,24,8 ,3,28,572488,10,4 ,27,2868,48208,24,8 ,3,28,572496,14,5 ,27,41,48216,23,8 ,3,28,572504,4,1 ,27,2869,48224,24,8 ,3,28,572512,9,4 ,20,16277,3193954,32,0 ,27,2838,48232,24,8 ,3,28,572520,10,4 ,27,2810,48240,24,8 ,3,28,572528,4,1 ,27,2811,48248,24,8 ,3,28,572536,10,4 ,27,2841,48256,24,8 ,3,28,572544,14,5 ,20,17985,6864002,360,0 ,17,923,9485444,32,0 ,17,923,7388292,16,0 ,17,923,6339716,32,0 ,44,15152,2669700,24,0 ,44,15152,3193988,24,0 ,27,2849,48264,24,8 ,3,28,572552,4,1 ,27,812,48272,23,8 ,3,28,572560,9,4 ,27,2870,48280,24,8 ,3,28,572568,10,4 ,27,2818,48288,24,8 ,3,28,572576,4,1 ,20,19676,10534050,12,0 ,20,26263,28359842,520,0 ,27,2850,48296,24,8 ,3,28,572584,12,5 ,27,2820,48304,24,8 ,3,28,572592,4,1 ,27,2822,48312,24,8 ,3,28,572600,9,4 ,27,2871,48320,24,8 ,3,28,572608,10,4 ,17,923,48323,16,0 ,17,923,10009796,24,0 ,17,923,6864068,48,0 ,45,15153,5291204,40,0 ,17,923,8961220,24,0 ,27,1993,48328,24,8 ,3,28,572616,4,1 ,27,2872,48336,24,8 ,3,28,572624,16,7 ,27,2859,48344,24,8 ,3,28,572632,45,15 ,27,2873,48352,24,8 ,3,28,572640,14,5 ,20,20485,13155554,304,0 ,27,2875,48360,21,8 ,3,28,572648,4,1 ,27,2876,48368,24,8 ,3,28,572656,9,4 ,27,41,48376,23,8 ,3,28,572664,10,4 ,27,2877,48384,22,8 ,3,28,572672,4,1 ,20,19677,10534146,216,0 ,45,15153,4242692,16,0 ,17,923,7388420,24,0 ,44,15152,3718404,32,0 ,27,2880,48392,24,8 ,3,28,572680,10,4 ,27,2879,48400,24,8 ,3,28,572688,14,5 ,27,2881,48408,24,8 ,3,28,572696,4,1 ,27,2882,48416,22,8 ,3,28,572704,9,4 ,20,24164,22592802,144,0 ,20,16646,3718434,104,0 ,20,18172,7388450,12,0 ,27,2887,48424,24,8 ,3,28,572712,10,4 ,27,1107,48432,24,8 ,3,28,572720,4,1 ,27,1102,48440,24,8 ,3,28,572728,12,5 ,27,1100,48448,26,8 ,3,28,572736,4,1 ,17,923,48451,32,0 ,17,923,8437060,32,0 ,44,15152,2669892,24,0 ,43,15151,48452,56,0 ,44,15152,1097028,24,0 ,44,15152,3194180,48,0 ,27,2892,48456,22,8 ,3,28,572744,9,4 ,27,1100,48464,24,8 ,3,28,572752,10,4 ,27,1105,48472,24,8 ,3,28,572760,4,1 ,27,1102,48480,24,8 ,3,28,572768,12,5 ,20,21520,16301410,12,0 ,20,16278,3194210,108,0 ,27,2902,48488,21,8 ,3,28,572776,18,6 ,27,2893,48496,22,8 ,3,28,572784,14,5 ,27,2895,48504,22,8 ,3,28,572792,4,1 ,27,2892,48512,24,8 ,3,28,572800,9,4 ,20,18173,7388546,12,0 ,17,923,10009988,24,0 ,17,923,6339972,32,0 ,45,15153,4242820,24,0 ,17,923,8961412,56,0 ,17,923,9485700,32,0 ,27,2897,48520,24,8 ,3,28,572808,10,4 ,27,2898,48528,24,8 ,3,28,572816,4,1 ,27,2899,48536,24,8 ,3,28,572824,10,4 ,27,2562,48544,22,8 ,3,28,572832,14,5 ,27,1105,48552,24,8 ,3,28,572840,4,1 ,27,2900,48560,21,8 ,3,28,572848,9,4 ,27,2903,48568,26,8 ,3,28,572856,12,5 ,27,2904,48576,24,8 ,3,28,572864,4,1 ,20,21521,16301506,12,0 ,17,923,7388612,24,0 ,17,923,7912900,56,0 ,27,1302,48584,24,8 ,3,28,572872,6,2 ,27,2905,48592,24,8 ,3,28,572880,4,1 ,27,2911,48600,27,8 ,3,28,572888,10,4 ,27,2913,48608,20,8 ,3,28,572896,14,5 ,20,18174,7388642,364,0 ,27,2912,48616,22,8 ,3,28,572904,4,1 ,27,330,48624,25,8 ,3,28,572912,9,4 ,27,330,48632,25,8 ,3,28,572920,10,4 ,27,335,48640,26,8 ,3,28,572928,4,1 ,20,21778,16825858,108,0 ,45,15153,5291524,24,0 ,44,15152,2670084,24,0 ,44,15152,1097220,24,0 ,44,15152,3718660,64,0 ,27,335,48648,25,8 ,3,28,572936,10,4 ,27,2918,48656,21,8 ,3,28,572944,14,5 ,27,2918,48664,26,8 ,3,28,572952,4,1 ,27,2920,48672,24,8 ,3,28,572960,9,4 ,20,21522,16301602,644,0 ,27,2922,48680,27,8 ,3,28,572968,15,7 ,27,2924,48688,24,8 ,3,28,572976,4,1 ,27,2925,48696,24,8 ,3,28,572984,4,1 ,27,2926,48704,26,8 ,3,28,572992,4,1 ,20,16061,2145858,128,0 ,17,923,48707,40,0 ,17,923,10010180,40,0 ,17,923,6864452,48,0 ,45,15153,4243012,64,0 ,17,923,8437316,32,0 ,27,2927,48712,22,8 ,3,28,573000,10,4 ,27,2929,48720,22,8 ,3,28,573008,26,11 ,27,2931,48728,22,8 ,3,28,573016,4,1 ,27,41,48736,23,8 ,3,28,573024,9,4 ,27,2937,48744,21,8 ,3,28,573032,10,4 ,27,2938,48752,19,8 ,3,28,573040,4,1 ,27,2938,48760,24,8 ,3,28,573048,20,9 ,27,2939,48768,22,8 ,3,28,573056,7,2 ,20,25335,25738882,1620,0 ,17,923,9485956,32,0 ,17,923,7388804,32,0 ,17,923,6340228,48,0 ,27,2941,48776,21,8 ,3,28,573064,8,3 ,27,2945,48784,26,8 ,3,28,573072,4,1 ,27,1043,48792,24,8 ,3,28,573080,11,4 ,27,2950,48800,26,8 ,3,28,573088,12,5 ,27,2951,48808,24,8 ,3,28,573096,4,1 ,27,2952,48816,21,8 ,3,28,573104,8,3 ,27,2953,48824,21,8 ,3,28,573112,15,5 ,27,1050,48832,24,8 ,3,28,573120,8,3 ,45,15153,5291716,24,0 ,44,15152,2670276,24,0 ,44,15152,1097412,24,0 ,44,15152,3194564,32,0 ,27,623,48840,23,8 ,3,28,573128,48,19 ,27,1118,48848,26,8 ,3,28,573136,4,1 ,27,41,48856,23,8 ,3,28,573144,9,4 ,27,2957,48864,25,8 ,3,28,573152,10,4 ,27,1118,48872,26,8 ,3,28,573160,4,1 ,27,2989,48880,22,8 ,3,28,573168,14,6 ,27,2991,48888,22,8 ,3,28,573176,75,25 ,27,2992,48896,21,8 ,3,28,573184,14,5 ,43,15151,48900,24,0 ,27,2993,48904,21,8 ,3,28,573192,4,1 ,27,2996,48912,23,8 ,3,28,573200,9,4 ,27,2997,48920,25,8 ,3,28,573208,10,4 ,27,2998,48928,21,8 ,3,28,573216,4,1 ,27,3029,48936,21,8 ,3,28,573224,12,5 ,27,41,48944,23,8 ,3,28,573232,204,68 ,27,3000,48952,27,8 ,3,28,573240,71,68 ,27,2803,48960,26,8 ,3,28,573248,4,1 ,20,25110,25214786,204,0 ,17,923,8961860,24,0 ,17,923,8437572,24,0 ,27,1118,48968,26,8 ,3,28,573256,9,4 ,27,3015,48976,24,8 ,3,28,573264,17,8 ,27,3003,48984,24,8 ,3,28,573272,4,1 ,27,3004,48992,24,8 ,3,28,573280,6,2 ,27,3005,49000,24,8 ,3,28,573288,14,5 ,27,3009,49008,25,8 ,3,28,573296,4,1 ,27,3007,49016,26,8 ,3,28,573304,6,2 ,27,3008,49024,24,8 ,3,28,573312,24,11 ,17,923,49027,40,0 ,17,923,10010500,16,0 ,17,923,7913348,24,0 ,17,923,7389060,40,0 ,44,15152,2670468,24,0 ,44,15152,1097604,24,0 ,45,15153,5291908,32,0 ,17,923,9486212,32,0 ,27,3012,49032,25,8 ,3,28,573320,4,1 ,27,1200,49040,20,8 ,3,28,573328,6,2 ,27,3011,49048,23,8 ,3,28,573336,4,1 ,27,41,49056,23,8 ,3,28,573344,34,16 ,20,24692,24166306,2040,0 ,27,2803,49064,24,8 ,3,28,573352,51,17 ,27,3027,49072,26,8 ,3,28,573360,6,2 ,27,3018,49080,23,8 ,3,28,573368,6,2 ,27,3018,49088,22,8 ,3,28,573376,210,70 ,20,22239,18399170,136,0 ,44,15152,3194820,136,0 ,17,923,6864836,24,0 ,43,15151,49092,48,0 ,27,3021,49096,20,8 ,3,28,573384,73,70 ,27,3020,49104,26,8 ,3,28,573392,4,1 ,27,3021,49112,20,8 ,3,28,573400,8,3 ,27,3025,49120,22,8 ,3,28,573408,14,5 ,27,3028,49128,20,8 ,3,28,573416,14,5 ,27,3028,49136,20,8 ,3,28,573424,4,1 ,27,3029,49144,26,8 ,3,28,573432,8,3 ,27,3030,49152,19,8 ,3,28,573440,4,1 ,20,25862,27312130,148,0 ,17,923,10010628,32,0 ,17,923,6340612,40,0 ,44,15152,3719172,24,0 ,17,923,8437764,56,0 ,17,923,8962052,40,0 ,27,3031,49160,24,8 ,3,28,573448,6,2 ,27,3032,49168,21,8 ,3,28,573456,14,5 ,27,3037,49176,25,8 ,3,28,573464,4,1 ,27,3035,49184,24,8 ,3,28,573472,9,4 ,20,23491,21020706,12,0 ,27,41,49192,23,8 ,3,28,573480,12,5 ,27,3033,49200,24,8 ,3,28,573488,4,1 ,27,3038,49208,21,8 ,3,28,573496,6,2 ,27,3039,49216,20,8 ,3,28,573504,4,1 ,45,15153,4243524,64,0 ,17,923,7913540,24,0 ,44,15152,2670660,32,0 ,44,15152,1097796,24,0 ,27,3040,49224,23,8 ,3,28,573512,8,3 ,27,3041,49232,19,8 ,3,28,573520,9,3 ,27,3042,49240,20,8 ,3,28,573528,14,5 ,27,3053,49248,24,8 ,3,28,573536,4,1 ,20,16647,3719266,272,0 ,27,3052,49256,22,8 ,3,28,573544,6,2 ,27,3044,49264,22,8 ,3,28,573552,15,5 ,27,3049,49272,22,8 ,3,28,573560,4,1 ,27,3054,49280,22,8 ,3,28,573568,9,4 ,20,23492,21020802,52,0 ,17,923,9486468,24,0 ,17,923,6865028,40,0 ,45,15153,5292164,24,0 ,27,3055,49288,23,8 ,3,28,573576,24,12 ,27,3057,49296,27,8 ,3,28,573584,4,1 ,27,3060,49304,22,8 ,3,28,573592,6,2 ,27,3062,49312,22,8 ,3,28,573600,4,1 ,27,3064,49320,26,8 ,3,28,573608,6,2 ,27,3065,49328,22,8 ,3,28,573616,4,1 ,27,3066,49336,22,8 ,3,28,573624,12,5 ,27,163,49344,24,8 ,3,28,573632,6,2 ,20,16279,3195074,132,0 ,17,923,49347,24,0 ,44,15152,3719364,16,0 ,17,923,7389380,24,0 ,27,3069,49352,20,8 ,3,28,573640,4,1 ,27,3071,49360,22,8 ,3,28,573648,14,6 ,27,3072,49368,23,8 ,3,28,573656,6,2 ,27,3075,49376,25,8 ,3,28,573664,4,1 ,20,19346,10010850,732,0 ,27,3007,49384,26,8 ,3,28,573672,16,7 ,27,3074,49392,24,8 ,3,28,573680,14,5 ,27,3077,49400,25,8 ,3,28,573688,4,1 ,27,3076,49408,24,8 ,3,28,573696,16,7 ,17,923,10010884,24,0 ,17,923,7913732,40,0 ,44,15152,1097988,32,0 ,27,3079,49416,25,8 ,3,28,573704,4,1 ,27,3085,49424,22,8 ,3,28,573712,8,3 ,27,3086,49432,22,8 ,3,28,573720,6,2 ,27,3087,49440,24,8 ,3,28,573728,6,2 ,27,3088,49448,24,8 ,3,28,573736,4,1 ,27,3092,49456,22,8 ,3,28,573744,9,4 ,27,3094,49464,22,8 ,3,28,573752,19,9 ,27,3096,49472,22,8 ,3,28,573760,4,1 ,20,22958,19972418,56,0 ,17,923,9486660,24,0 ,17,923,6340932,32,0 ,44,15152,2670916,64,0 ,44,15152,2146628,72,0 ,43,15151,49476,48,0 ,44,15152,3719492,40,0 ,45,15153,4768068,32,0 ,45,15153,5292356,24,0 ,17,923,8962372,24,0 ,27,3098,49480,22,8 ,3,28,573768,8,3 ,27,3102,49488,25,8 ,3,28,573776,4,1 ,27,3101,49496,23,8 ,3,28,573784,6,2 ,27,3104,49504,25,8 ,3,28,573792,4,1 ,20,21779,16826722,12,0 ,27,3103,49512,23,8 ,3,28,573800,8,3 ,27,1421,49520,26,8 ,3,28,573808,4,1 ,27,623,49528,23,8 ,3,28,573816,8,3 ,27,1364,49536,26,8 ,3,28,573824,4,1 ,17,923,49539,16,0 ,17,923,7389572,24,0 ,27,1407,49544,26,8 ,3,28,573832,7,2 ,27,1421,49552,26,8 ,3,28,573840,12,5 ,27,3112,49560,26,8 ,3,28,573848,10,3 ,27,3117,49568,24,8 ,3,28,573856,8,3 ,20,24165,22593954,24,0 ,27,3112,49576,26,8 ,3,28,573864,11,4 ,27,3115,49584,24,8 ,3,28,573872,4,1 ,27,3119,49592,21,8 ,3,28,573880,6,2 ,27,3120,49600,21,8 ,3,28,573888,4,1 ,20,21780,16826818,12,0 ,20,26090,27836866,104,0 ,17,923,10011076,40,0 ,17,923,6865348,56,0 ,17,923,8438212,24,0 ,27,3123,49608,24,8 ,3,28,573896,6,2 ,27,1309,49616,26,8 ,3,28,573904,7,2 ,27,3124,49624,24,8 ,3,28,573912,10,4 ,27,1240,49632,26,8 ,3,28,573920,4,1 ,27,3125,49640,24,8 ,3,28,573928,8,3 ,27,3129,49648,24,8 ,3,28,573936,8,3 ,27,3129,49656,24,8 ,3,28,573944,4,1 ,27,3131,49664,22,8 ,3,28,573952,12,5 ,17,923,49667,16,0 ,17,923,9486852,24,0 ,44,15152,573956,88,0 ,44,15152,1098244,16,0 ,45,15153,5292548,24,0 ,17,923,8962564,24,0 ,27,3131,49672,26,8 ,3,28,573960,4,1 ,27,41,49680,23,8 ,3,28,573968,8,3 ,27,3133,49688,27,8 ,3,28,573976,4,1 ,27,1118,49696,26,8 ,3,28,573984,9,4 ,20,23493,21021218,200,0 ,20,21781,16826914,360,0 ,27,3135,49704,26,8 ,3,28,573992,22,11 ,27,3137,49712,25,8 ,3,28,574000,8,3 ,27,3137,49720,26,8 ,3,28,574008,8,3 ,27,3139,49728,20,8 ,3,28,574016,16,7 ,20,16062,2146882,128,0 ,45,15153,4768324,232,0 ,17,923,7914052,40,0 ,17,923,7389764,24,0 ,17,923,6341188,40,0 ,45,15153,4244036,40,0 ,27,3150,49736,25,8 ,3,28,574024,8,3 ,27,3144,49744,22,8 ,3,28,574032,33,11 ,27,3141,49752,23,8 ,3,28,574040,4,1 ,27,3142,49760,23,8 ,3,28,574048,30,14 ,20,24166,22594146,1100,0 ,20,17322,5292642,280,0 ,27,215,49768,26,8 ,3,28,574056,8,3 ,27,3147,49776,21,8 ,3,28,574064,10,4 ,27,3145,49784,22,8 ,3,28,574072,4,1 ,27,253,49792,19,8 ,3,28,574080,6,2 ,17,923,49795,16,0 ,17,923,8438404,32,0 ,44,15152,1098372,16,0 ,44,15152,3719812,24,0 ,27,3148,49800,20,8 ,3,28,574088,4,1 ,27,109,49808,19,8 ,3,28,574096,6,2 ,27,3149,49816,20,8 ,3,28,574104,4,1 ,27,3150,49824,26,8 ,3,28,574112,32,15 ,27,3171,49832,20,8 ,3,28,574120,4,1 ,27,3169,49840,24,8 ,3,28,574128,9,4 ,27,3155,49848,24,8 ,3,28,574136,10,4 ,27,3157,49856,24,8 ,3,28,574144,4,1 ,17,923,9487044,24,0 ,43,15151,49860,48,0 ,45,15153,5292740,24,0 ,17,923,8962756,56,0 ,27,3159,49864,22,8 ,3,28,574152,8,3 ,27,3161,49872,22,8 ,3,28,574160,4,1 ,27,3163,49880,24,8 ,3,28,574168,8,3 ,27,3165,49888,26,8 ,3,28,574176,12,5 ,27,163,49896,24,8 ,3,28,574184,6,2 ,27,3167,49904,24,8 ,3,28,574192,18,6 ,27,3168,49912,22,8 ,3,28,574200,7,2 ,27,3170,49920,22,8 ,3,28,574208,7,2 ,20,22959,19972866,144,0 ,20,15592,1098498,188,0 ,17,923,49923,16,0 ,17,923,10011396,40,0 ,17,923,7389956,32,0 ,44,15152,1098500,32,0 ,27,3171,49928,24,8 ,3,28,574216,6,2 ,27,3176,49936,24,8 ,3,28,574224,10,4 ,27,3177,49944,24,8 ,3,28,574232,7,2 ,27,3179,49952,21,8 ,3,28,574240,34,16 ,27,623,49960,20,8 ,3,28,574248,6,2 ,27,290,49968,23,8 ,3,28,574256,4,1 ,27,290,49976,23,8 ,3,28,574264,6,2 ,27,3185,49984,27,8 ,3,28,574272,7,2 ,20,23685,21545794,100,0 ,44,15152,3720004,48,0 ,44,15152,2671428,56,0 ,27,3187,49992,22,8 ,3,28,574280,4,1 ,27,3189,50000,22,8 ,3,28,574288,98,67 ,27,3226,50008,26,8 ,3,28,574296,11,4 ,27,3225,50016,24,8 ,3,28,574304,11,4 ,27,3195,50024,22,8 ,3,28,574312,8,3 ,27,3194,50032,18,8 ,3,28,574320,8,3 ,27,3197,50040,21,8 ,3,28,574328,15,5 ,27,3199,50048,24,8 ,3,28,574336,6,2 ,20,24495,23643010,664,0 ,17,923,50051,24,0 ,17,923,9487236,24,0 ,17,923,7914372,40,0 ,17,923,6865796,48,0 ,17,923,6341508,40,0 ,44,15152,2147204,80,0 ,45,15153,4244356,32,0 ,45,15153,5292932,16,0 ,17,923,8438660,24,0 ,27,3216,50056,23,8 ,3,28,574344,12,4 ,27,3215,50064,19,8 ,3,28,574352,52,25 ,27,163,50072,22,8 ,3,28,574360,7,2 ,27,3202,50080,19,8 ,3,28,574368,7,2 ,27,3210,50088,23,8 ,3,28,574376,14,6 ,27,3208,50096,24,8 ,3,28,574384,4,1 ,27,3205,50104,24,8 ,3,28,574392,64,35 ,27,3225,50112,24,8 ,3,28,574400,8,3 ,20,19678,10535874,12,0 ,27,295,50120,23,8 ,3,28,574408,10,4 ,27,812,50128,23,8 ,3,28,574416,4,1 ,27,3209,50136,23,8 ,3,28,574424,8,3 ,27,3211,50144,21,8 ,3,28,574432,10,4 ,27,3212,50152,24,8 ,3,28,574440,10,4 ,27,3212,50160,24,8 ,3,28,574448,7,2 ,27,3213,50168,21,8 ,3,28,574456,8,3 ,27,3214,50176,22,8 ,3,28,574464,4,1 ,20,22240,18400258,116,0 ,45,15153,5293060,32,0 ,17,923,7390212,32,0 ,44,15152,1098756,48,0 ,44,15152,3195908,320,0 ,27,3214,50184,24,8 ,3,28,574472,59,35 ,27,3217,50192,23,8 ,3,28,574480,38,18 ,27,3219,50200,24,8 ,3,28,574488,6,2 ,27,295,50208,23,8 ,3,28,574496,21,7 ,20,19679,10535970,12,0 ,27,812,50216,23,8 ,3,28,574504,48,23 ,27,3220,50224,24,8 ,3,28,574512,4,1 ,27,2562,50232,22,8 ,3,28,574520,8,3 ,27,3222,50240,26,8 ,3,28,574528,4,1 ,20,23264,20497474,244,0 ,17,923,50243,40,0 ,17,923,10011716,32,0 ,43,15151,50244,24,0 ,17,923,8438852,32,0 ,17,923,9487428,32,0 ,27,3223,50248,21,8 ,3,28,574536,9,4 ,27,3229,50256,22,8 ,3,28,574544,10,4 ,27,3231,50264,24,8 ,3,28,574552,4,1 ,27,3232,50272,19,8 ,3,28,574560,8,3 ,27,3233,50280,18,8 ,3,28,574568,12,4 ,27,3234,50288,18,8 ,3,28,574576,4,1 ,27,3235,50296,21,8 ,3,28,574584,6,2 ,27,3236,50304,21,8 ,3,28,574592,4,1 ,20,19680,10536066,12,0 ,17,923,8963204,40,0 ,45,15153,4244612,32,0 ,27,3237,50312,21,8 ,3,28,574600,6,2 ,27,623,50320,20,8 ,3,28,574608,4,1 ,27,290,50328,25,8 ,3,28,574616,4,1 ,27,41,50336,23,8 ,3,28,574624,10,4 ,20,20140,11584674,56,0 ,20,25863,27313314,388,0 ,27,290,50344,24,8 ,3,28,574632,4,1 ,27,3239,50352,24,8 ,3,28,574640,12,5 ,27,3240,50360,20,8 ,3,28,574648,15,5 ,27,2803,50368,24,8 ,3,28,574656,4,1 ,44,15152,3720388,40,0 ,17,923,7914692,32,0 ,17,923,6341828,32,0 ,44,15152,574660,24,0 ,27,3243,50376,22,8 ,3,28,574664,12,5 ,27,3242,50384,21,8 ,3,28,574672,6,2 ,27,3245,50392,22,8 ,3,28,574680,38,13 ,27,3247,50400,22,8 ,3,28,574688,4,1 ,20,19681,10536162,136,0 ,20,16280,3196130,48,0 ,27,3249,50408,22,8 ,3,28,574696,10,4 ,27,3251,50416,22,8 ,3,28,574704,4,1 ,27,3253,50424,22,8 ,3,28,574712,8,3 ,27,3255,50432,22,8 ,3,28,574720,4,1 ,20,26091,27837698,88,0 ,45,15153,5293316,24,0 ,17,923,7390468,80,0 ,17,923,6866180,40,0 ,44,15152,2671876,72,0 ,43,15151,50436,16,0 ,27,3069,50440,20,8 ,3,28,574728,6,2 ,27,3256,50448,21,8 ,3,28,574736,7,2 ,27,3257,50456,21,8 ,3,28,574744,26,12 ,27,3258,50464,21,8 ,3,28,574752,21,7 ,27,3259,50472,21,8 ,3,28,574760,7,2 ,27,3260,50480,21,8 ,3,28,574768,12,5 ,27,3261,50488,21,8 ,3,28,574776,4,1 ,27,41,50496,23,8 ,3,28,574784,11,4 ,17,923,10011972,24,0 ,17,923,8439108,48,0 ,17,923,9487684,40,0 ,27,2803,50504,24,8 ,3,28,574792,29,15 ,27,41,50512,23,8 ,3,28,574800,38,19 ,27,3269,50520,27,8 ,3,28,574808,4,1 ,27,8680,50528,23,8 ,3,28,574816,6,2 ,27,8680,50536,24,8 ,3,28,574824,4,1 ,27,1747,50544,22,8 ,3,28,574832,20,9 ,27,41,50552,23,8 ,3,28,574840,6,2 ,27,1562,50560,24,8 ,3,28,574848,18,6 ,17,923,50563,16,0 ,45,15153,4244868,64,0 ,43,15151,50564,48,0 ,44,15152,574852,32,0 ,44,15152,1099140,16,0 ,27,3272,50568,23,8 ,3,28,574856,4,1 ,27,3275,50576,20,8 ,3,28,574864,6,2 ,27,3274,50584,24,8 ,3,28,574872,4,1 ,27,3276,50592,21,8 ,3,28,574880,14,6 ,20,25111,25216418,104,0 ,27,8680,50600,24,8 ,3,28,574888,12,4 ,27,3274,50608,23,8 ,3,28,574896,18,7 ,27,2312,50616,22,8 ,3,28,574904,4,1 ,27,3277,50624,22,8 ,3,28,574912,6,2 ,17,923,8963524,40,0 ,17,923,7914948,48,0 ,17,923,6342084,40,0 ,45,15153,5293508,16,0 ,27,8680,50632,23,8 ,3,28,574920,4,1 ,27,3278,50640,24,8 ,3,28,574928,10,4 ,27,3279,50648,23,8 ,3,28,574936,7,2 ,27,3287,50656,26,8 ,3,28,574944,4,1 ,20,19934,11060706,356,0 ,27,579,50664,22,8 ,3,28,574952,9,4 ,27,579,50672,23,8 ,3,28,574960,10,4 ,27,579,50680,22,8 ,3,28,574968,4,1 ,27,579,50688,23,8 ,3,28,574976,106,67 ,17,923,50691,40,0 ,17,923,10012164,24,0 ,44,15152,2147844,80,0 ,44,15152,1099268,56,0 ,44,15152,3720708,24,0 ,27,1039,50696,21,8 ,3,28,574984,4,1 ,27,1038,50704,26,8 ,3,28,574992,9,4 ,27,1062,50712,21,8 ,3,28,575000,10,4 ,27,1040,50720,24,8 ,3,28,575008,4,1 ,27,1043,50728,24,8 ,3,28,575016,8,3 ,27,1038,50736,25,8 ,3,28,575024,6,2 ,27,1374,50744,24,8 ,3,28,575032,8,3 ,27,3281,50752,23,8 ,3,28,575040,6,2 ,20,16063,2147906,76,0 ,45,15153,5293636,16,0 ,17,923,6866500,40,0 ,27,1039,50760,21,8 ,3,28,575048,6,2 ,27,1038,50768,26,8 ,3,28,575056,8,3 ,27,1062,50776,21,8 ,3,28,575064,10,4 ,27,1028,50784,24,8 ,3,28,575072,14,5 ,20,23686,21546594,100,0 ,20,16281,3196514,68,0 ,20,20141,11585122,232,0 ,20,20486,13157986,80,0 ,27,1040,50792,24,8 ,3,28,575080,4,1 ,27,1043,50800,24,8 ,3,28,575088,9,4 ,27,1038,50808,25,8 ,3,28,575096,12,5 ,27,1374,50816,24,8 ,3,28,575104,4,1 ,17,923,9488004,48,0 ,44,15152,575108,24,0 ,27,3285,50824,23,8 ,3,28,575112,10,4 ,27,3276,50832,21,8 ,3,28,575120,4,1 ,27,8680,50840,24,8 ,3,28,575128,12,5 ,27,41,50848,23,8 ,3,28,575136,4,1 ,27,3277,50856,22,8 ,3,28,575144,9,4 ,27,8680,50864,23,8 ,3,28,575152,17,8 ,27,41,50872,23,8 ,3,28,575160,4,1 ,27,3301,50880,24,8 ,3,28,575168,6,2 ,17,923,10012356,24,0 ,44,15152,3720900,32,0 ,45,15153,5293764,16,0 ,17,923,8439492,24,0 ,27,41,50888,23,8 ,3,28,575176,4,1 ,27,3434,50896,26,8 ,3,28,575184,16,7 ,27,3307,50904,22,8 ,3,28,575192,4,1 ,27,3308,50912,22,8 ,3,28,575200,9,4 ,20,21181,15779554,24,0 ,27,3309,50920,22,8 ,3,28,575208,6,2 ,27,3311,50928,24,8 ,3,28,575216,6,2 ,27,3310,50936,23,8 ,3,28,575224,7,2 ,27,3314,50944,21,8 ,3,28,575232,10,4 ,17,923,8963844,40,0 ,17,923,6342404,40,0 ,43,15151,50948,16,0 ,27,3313,50952,24,8 ,3,28,575240,19,9 ,27,3274,50960,22,8 ,3,28,575248,26,11 ,27,3316,50968,21,8 ,3,28,575256,4,1 ,27,3315,50976,24,8 ,3,28,575264,6,2 ,27,41,50984,23,8 ,3,28,575272,4,1 ,27,2312,50992,22,8 ,3,28,575280,22,10 ,27,1562,51000,24,8 ,3,28,575288,6,2 ,27,3313,51008,23,8 ,3,28,575296,26,11 ,17,923,51011,16,0 ,45,15153,5293892,16,0 ,17,923,7915332,48,0 ,44,15152,2672452,56,0 ,44,15152,575300,40,0 ,27,3317,51016,24,8 ,3,28,575304,4,1 ,27,3315,51024,23,8 ,3,28,575312,4,1 ,27,3321,51032,26,8 ,3,28,575320,22,10 ,27,41,51040,23,8 ,3,28,575328,8,3 ,20,21952,17352546,900,0 ,27,1562,51048,24,8 ,3,28,575336,11,4 ,27,3317,51056,24,8 ,3,28,575344,14,5 ,27,3323,51064,22,8 ,3,28,575352,4,1 ,27,3324,51072,22,8 ,3,28,575360,6,2 ,20,22960,19974018,204,0 ,17,923,10012548,24,0 ,17,923,7391108,24,0 ,17,923,6866820,32,0 ,43,15151,51076,24,0 ,45,15153,4245380,32,0 ,17,923,8439684,24,0 ,27,3325,51080,22,8 ,3,28,575368,4,1 ,27,3307,51088,23,8 ,3,28,575376,8,3 ,27,3307,51096,24,8 ,3,28,575384,12,5 ,27,3274,51104,23,8 ,3,28,575392,68,33 ,20,22241,18401186,376,0 ,20,21182,15779746,192,0 ,27,3274,51112,24,8 ,3,28,575400,16,7 ,27,3328,51120,26,8 ,3,28,575408,20,9 ,27,3326,51128,23,8 ,3,28,575416,12,5 ,27,3327,51136,23,8 ,3,28,575424,4,1 ,20,20713,13682626,148,0 ,20,26092,27838402,104,0 ,20,17986,6866882,328,0 ,17,923,51139,16,0 ,45,15153,5294020,16,0 ,44,15152,1099716,24,0 ,44,15152,3721156,32,0 ,27,3330,51144,20,8 ,3,28,575432,9,4 ,27,3308,51152,22,8 ,3,28,575440,12,5 ,27,3309,51160,22,8 ,3,28,575448,8,3 ,27,1562,51168,24,8 ,3,28,575456,6,2 ,20,18643,8439778,12,0 ,27,3332,51176,23,8 ,3,28,575464,6,2 ,27,41,51184,23,8 ,3,28,575472,15,5 ,27,3307,51192,22,8 ,3,28,575480,18,6 ,27,3308,51200,22,8 ,3,28,575488,7,2 ,17,923,9488388,48,0 ,27,3309,51208,22,8 ,3,28,575496,12,5 ,27,3337,51216,23,8 ,3,28,575504,4,1 ,27,3316,51224,21,8 ,3,28,575512,11,4 ,27,3315,51232,24,8 ,3,28,575520,15,7 ,27,3276,51240,21,8 ,3,28,575528,24,11 ,27,8680,51248,24,8 ,3,28,575536,4,1 ,27,41,51256,23,8 ,3,28,575544,6,2 ,27,1562,51264,24,8 ,3,28,575552,4,1 ,20,18644,8439874,1088,0 ,17,923,51267,32,0 ,17,923,10012740,24,0 ,17,923,7391300,32,0 ,17,923,6342724,56,0 ,43,15151,51268,24,0 ,45,15153,5294148,16,0 ,17,923,8439876,32,0 ,17,923,8964164,24,0 ,27,3317,51272,24,8 ,3,28,575560,101,67 ,27,3315,51280,23,8 ,3,28,575568,58,28 ,27,3323,51288,21,8 ,3,28,575576,15,5 ,27,3324,51296,21,8 ,3,28,575584,6,2 ,20,23494,21022818,356,0 ,27,3277,51304,22,8 ,3,28,575592,8,3 ,27,8680,51312,23,8 ,3,28,575600,15,5 ,27,3339,51320,24,8 ,3,28,575608,33,11 ,27,3276,51328,21,8 ,3,28,575616,38,18 ,20,16282,3197058,32,0 ,45,15153,4245636,104,0 ,17,923,6867076,32,0 ,44,15152,2148484,128,0 ,44,15152,575620,24,0 ,44,15152,1099908,72,0 ,27,8680,51336,24,8 ,3,28,575624,4,1 ,27,41,51344,23,8 ,3,28,575632,12,5 ,27,1562,51352,24,8 ,3,28,575640,4,1 ,27,3317,51360,24,8 ,3,28,575648,13,4 ,20,16064,2148514,128,0 ,27,3308,51368,22,8 ,3,28,575656,7,2 ,27,3309,51376,22,8 ,3,28,575664,4,1 ,27,3277,51384,22,8 ,3,28,575672,14,6 ,27,8680,51392,23,8 ,3,28,575680,4,1 ,45,15153,5294276,24,0 ,17,923,7915716,24,0 ,44,15152,3721412,48,0 ,27,3276,51400,21,8 ,3,28,575688,7,2 ,27,8680,51408,24,8 ,3,28,575696,10,4 ,27,3317,51416,24,8 ,3,28,575704,173,58 ,27,3308,51424,22,8 ,3,28,575712,61,58 ,20,20487,13158626,12,0 ,20,25112,25217250,696,0 ,20,15593,1100002,348,0 ,20,16648,3721442,96,0 ,27,3309,51432,22,8 ,3,28,575720,7,2 ,27,3277,51440,22,8 ,3,28,575728,16,7 ,27,8680,51448,23,8 ,3,28,575736,6,2 ,27,3347,51456,21,8 ,3,28,575744,7,2 ,17,923,10012932,24,0 ,44,15152,2672900,64,0 ,43,15151,51460,16,0 ,17,923,8964356,48,0 ,27,3346,51464,24,8 ,3,28,575752,4,1 ,27,41,51472,23,8 ,3,28,575760,20,9 ,27,1562,51480,24,8 ,3,28,575768,7,2 ,27,3348,51488,24,8 ,3,28,575776,12,5 ,20,19682,10537250,12,0 ,27,3346,51496,23,8 ,3,28,575784,4,1 ,27,3352,51504,26,8 ,3,28,575792,19,8 ,27,3354,51512,22,8 ,3,28,575800,29,15 ,27,3275,51520,20,8 ,3,28,575808,14,5 ,20,20488,13158722,84,0 ,20,18175,7391554,32,0 ,17,923,51523,32,0 ,17,923,8440132,48,0 ,17,923,7391556,80,0 ,44,15152,575812,24,0 ,27,3355,51528,22,8 ,3,28,575816,4,1 ,27,3276,51536,21,8 ,3,28,575824,14,5 ,27,8680,51544,24,8 ,3,28,575832,14,5 ,27,3277,51552,22,8 ,3,28,575840,4,1 ,27,8680,51560,23,8 ,3,28,575848,9,4 ,27,3354,51568,22,8 ,3,28,575856,10,4 ,27,3355,51576,22,8 ,3,28,575864,4,1 ,27,3410,51584,20,8 ,3,28,575872,20,9 ,20,23687,21547394,260,0 ,20,16283,3197314,44,0 ,20,19683,10537346,528,0 ,17,923,9488772,40,0 ,17,923,7915908,24,0 ,17,923,6867332,24,0 ,43,15151,51588,24,0 ,45,15153,4770180,232,0 ,45,15153,5294468,24,0 ,27,3409,51592,24,8 ,3,28,575880,18,6 ,27,3274,51600,22,8 ,3,28,575888,12,4 ,27,1562,51608,24,8 ,3,28,575896,4,1 ,27,3360,51616,24,8 ,3,28,575904,9,4 ,20,971,51617,516,0 ,27,3361,51624,23,8 ,3,28,575912,12,5 ,27,3362,51632,24,8 ,3,28,575920,4,1 ,27,3365,51640,24,8 ,3,28,575928,24,11 ,27,3368,51648,24,8 ,3,28,575936,4,1 ,17,923,10013124,24,0 ,27,41,51656,23,8 ,3,28,575944,6,2 ,27,41,51664,23,8 ,3,28,575952,68,35 ,27,3373,51672,22,8 ,3,28,575960,4,1 ,27,41,51680,23,8 ,3,28,575968,6,2 ,27,2250,51688,24,8 ,3,28,575976,47,25 ,27,3375,51696,24,8 ,3,28,575984,4,1 ,27,41,51704,23,8 ,3,28,575992,7,2 ,27,2250,51712,24,8 ,3,28,576000,22,10 ,44,15152,576004,48,0 ,17,923,6343172,40,0 ,27,3376,51720,24,8 ,3,28,576008,6,2 ,27,3382,51728,22,8 ,3,28,576016,6,2 ,27,41,51736,23,8 ,3,28,576024,8,3 ,27,2250,51744,24,8 ,3,28,576032,21,7 ,27,1973,51752,24,8 ,3,28,576040,14,5 ,27,3123,51760,24,8 ,3,28,576048,4,1 ,27,1309,51768,26,8 ,3,28,576056,6,2 ,27,3380,51776,24,8 ,3,28,576064,4,1 ,20,18176,7391810,32,0 ,17,923,51779,32,0 ,45,15153,5294660,24,0 ,17,923,7916100,24,0 ,17,923,6867524,32,0 ,43,15151,51780,24,0 ,44,15152,3721796,32,0 ,27,3387,51784,26,8 ,3,28,576072,14,5 ,27,3384,51792,23,8 ,3,28,576080,4,1 ,27,3385,51800,24,8 ,3,28,576088,6,2 ,27,3386,51808,23,8 ,3,28,576096,14,5 ,27,3401,51816,26,8 ,3,28,576104,4,1 ,27,41,51824,23,8 ,3,28,576112,6,2 ,27,2250,51832,24,8 ,3,28,576120,10,4 ,27,3389,51840,24,8 ,3,28,576128,6,2 ,17,923,10013316,48,0 ,17,923,8964740,32,0 ,27,2250,51848,24,8 ,3,28,576136,6,2 ,27,3391,51856,24,8 ,3,28,576144,4,1 ,27,41,51864,23,8 ,3,28,576152,9,4 ,27,3391,51872,24,8 ,3,28,576160,17,8 ,20,23903,22071970,692,0 ,27,3391,51880,24,8 ,3,28,576168,4,1 ,27,3391,51888,24,8 ,3,28,576176,4,1 ,27,41,51896,23,8 ,3,28,576184,7,2 ,27,3391,51904,24,8 ,3,28,576192,4,1 ,17,923,9489092,40,0 ,44,15152,1100484,48,0 ,17,923,8440516,40,0 ,27,41,51912,23,8 ,3,28,576200,6,2 ,27,3391,51920,24,8 ,3,28,576208,4,1 ,27,1309,51928,26,8 ,3,28,576216,6,2 ,27,41,51936,23,8 ,3,28,576224,10,4 ,20,16284,3197666,136,0 ,20,15198,51938,472,0 ,27,3391,51944,24,8 ,3,28,576232,14,5 ,27,3362,51952,26,8 ,3,28,576240,4,1 ,27,3403,51960,21,8 ,3,28,576248,14,6 ,27,3404,51968,21,8 ,3,28,576256,4,1 ,20,26093,27839234,564,0 ,45,15153,5294852,16,0 ,17,923,7916292,24,0 ,44,15152,2673412,96,0 ,43,15151,51972,40,0 ,27,3412,51976,20,8 ,3,28,576264,4,1 ,27,3411,51984,24,8 ,3,28,576272,7,2 ,27,3307,51992,22,8 ,3,28,576280,30,14 ,27,3409,52000,23,8 ,3,28,576288,8,3 ,20,17323,5294882,172,0 ,27,3411,52008,23,8 ,3,28,576296,4,1 ,27,41,52016,23,8 ,3,28,576304,16,7 ,27,3317,52024,24,8 ,3,28,576312,15,5 ,27,3323,52032,22,8 ,3,28,576320,6,2 ,20,18177,7392066,44,0 ,17,923,52035,16,0 ,44,15152,3722052,32,0 ,17,923,6867780,32,0 ,17,923,6343492,32,0 ,44,15152,1624900,24,0 ,27,3324,52040,22,8 ,3,28,576328,4,1 ,27,3413,52048,23,8 ,3,28,576336,22,10 ,27,1731,52056,26,8 ,3,28,576344,6,2 ,27,1025,52064,26,8 ,3,28,576352,6,2 ,27,3276,52072,21,8 ,3,28,576360,12,4 ,27,8680,52080,24,8 ,3,28,576368,10,4 ,27,41,52088,23,8 ,3,28,576376,9,3 ,27,1562,52096,24,8 ,3,28,576384,4,1 ,17,923,8964996,16,0 ,44,15152,576388,24,0 ,45,15153,5294980,16,0 ,27,3317,52104,24,8 ,3,28,576392,9,4 ,27,3308,52112,22,8 ,3,28,576400,10,4 ,27,3309,52120,22,8 ,3,28,576408,4,1 ,27,3277,52128,22,8 ,3,28,576416,4,1 ,27,8680,52136,23,8 ,3,28,576424,12,5 ,27,3276,52144,21,8 ,3,28,576432,4,1 ,27,8680,52152,24,8 ,3,28,576440,10,4 ,27,3301,52160,24,8 ,3,28,576448,4,1 ,17,923,52163,32,0 ,45,15153,4246468,24,0 ,17,923,7916484,24,0 ,17,923,7392196,112,0 ,27,3317,52168,24,8 ,3,28,576456,11,4 ,27,3308,52176,22,8 ,3,28,576464,10,4 ,27,3309,52184,22,8 ,3,28,576472,7,2 ,27,3277,52192,22,8 ,3,28,576480,12,5 ,20,23265,20499426,84,0 ,20,16649,3722210,92,0 ,20,20489,13159394,440,0 ,27,8680,52200,23,8 ,3,28,576488,6,2 ,27,1562,52208,26,8 ,3,28,576496,4,1 ,27,3308,52216,22,8 ,3,28,576504,9,4 ,27,3309,52224,22,8 ,3,28,576512,8,3 ,17,923,10013700,24,0 ,44,15152,1625092,112,0 ,45,15153,5295108,24,0 ,17,923,8440836,40,0 ,17,923,8965124,32,0 ,17,923,9489412,56,0 ,27,3276,52232,21,8 ,3,28,576520,19,9 ,27,8680,52240,24,8 ,3,28,576528,28,11 ,27,3277,52248,22,8 ,3,28,576536,4,1 ,27,8680,52256,23,8 ,3,28,576544,6,2 ,27,3276,52264,21,8 ,3,28,576552,4,1 ,27,8680,52272,24,8 ,3,28,576560,6,2 ,27,3317,52280,24,8 ,3,28,576568,4,1 ,27,3308,52288,22,8 ,3,28,576576,22,7 ,20,25672,26790978,108,0 ,44,15152,3722308,32,0 ,17,923,6868036,24,0 ,17,923,6343748,32,0 ,43,15151,52292,24,0 ,44,15152,576580,24,0 ,44,15152,1100868,64,0 ,27,3309,52296,22,8 ,3,28,576584,20,9 ,27,3277,52304,22,8 ,3,28,576592,1066,515 ,27,8680,52312,23,8 ,3,28,576600,4,1 ,27,1973,52320,24,8 ,3,28,576608,4,1 ,20,20714,13683810,32,0 ,27,1973,52328,24,8 ,3,28,576616,9,4 ,27,1973,52336,24,8 ,3,28,576624,15,7 ,27,3426,52344,24,8 ,3,28,576632,1058,515 ,27,1973,52352,24,8 ,3,28,576640,4,1 ,45,15153,4246660,16,0 ,17,923,7916676,24,0 ,44,15152,2149508,24,0 ,27,1973,52360,24,8 ,3,28,576648,8,3 ,27,3301,52368,24,8 ,3,28,576656,4,1 ,27,41,52376,23,8 ,3,28,576664,7,2 ,27,1562,52384,24,8 ,3,28,576672,18,8 ,20,18178,7392418,216,0 ,20,16065,2149538,128,0 ,27,3433,52392,24,8 ,3,28,576680,18,8 ,27,1934,52400,24,8 ,3,28,576688,18,8 ,27,3435,52408,24,8 ,3,28,576696,392,259 ,27,3309,52416,21,8 ,3,28,576704,12,5 ,17,923,52419,16,0 ,17,923,10013892,32,0 ,45,15153,5295300,16,0 ,27,2312,52424,22,8 ,3,28,576712,8,3 ,27,3464,52432,22,8 ,3,28,576720,12,5 ,27,228,52440,23,8 ,3,28,576728,6,2 ,27,3441,52448,25,8 ,3,28,576736,9,3 ,20,26264,28364002,148,0 ,27,3135,52456,24,8 ,3,28,576744,6,2 ,27,2464,52464,24,8 ,3,28,576752,8,3 ,27,228,52472,23,8 ,3,28,576760,6,2 ,27,3443,52480,24,8 ,3,28,576768,12,5 ,17,923,8965380,32,0 ,17,923,6868228,16,0 ,43,15151,52484,16,0 ,44,15152,576772,24,0 ,45,15153,4246788,16,0 ,27,41,52488,23,8 ,3,28,576776,14,6 ,27,3451,52496,24,8 ,3,28,576784,15,5 ,27,3449,52504,24,8 ,3,28,576792,8,3 ,27,3450,52512,24,8 ,3,28,576800,8,3 ,20,22002,17878306,756,0 ,20,18435,7916834,556,0 ,27,41,52520,23,8 ,3,28,576808,10,4 ,27,41,52528,23,8 ,3,28,576816,12,5 ,27,3456,52536,24,8 ,3,28,576824,8,3 ,27,2464,52544,24,8 ,3,28,576832,12,5 ,17,923,52547,32,0 ,17,923,8441156,24,0 ,17,923,7916868,24,0 ,17,923,6344004,40,0 ,44,15152,2149700,112,0 ,44,15152,3722564,32,0 ,45,15153,5295428,16,0 ,27,228,52552,23,8 ,3,28,576840,10,4 ,27,3135,52560,24,8 ,3,28,576848,6,2 ,27,3457,52568,26,8 ,3,28,576856,10,4 ,27,3135,52576,24,8 ,3,28,576864,8,3 ,20,21782,16829794,76,0 ,20,20715,13684066,244,0 ,27,2464,52584,24,8 ,3,28,576872,10,4 ,27,228,52592,23,8 ,3,28,576880,8,3 ,27,3135,52600,24,8 ,3,28,576888,12,5 ,27,2464,52608,24,8 ,3,28,576896,8,3 ,45,15153,4246916,144,0 ,17,923,6868356,24,0 ,43,15151,52612,16,0 ,27,228,52616,23,8 ,3,28,576904,8,3 ,27,41,52624,23,8 ,3,28,576912,10,3 ,27,3466,52632,21,8 ,3,28,576920,8,3 ,27,3456,52640,24,8 ,3,28,576928,4,1 ,20,21183,15781282,308,0 ,20,20142,11586978,96,0 ,27,2464,52648,24,8 ,3,28,576936,9,4 ,27,228,52656,23,8 ,3,28,576944,26,13 ,27,3467,52664,24,8 ,3,28,576952,4,1 ,27,41,52672,23,8 ,3,28,576960,4,1 ,17,923,10014148,32,0 ,44,15152,576964,80,0 ,45,15153,5295556,16,0 ,17,923,9489860,56,0 ,27,3456,52680,24,8 ,3,28,576968,26,11 ,27,2464,52688,24,8 ,3,28,576976,4,1 ,27,228,52696,23,8 ,3,28,576984,6,2 ,27,3472,52704,24,8 ,3,28,576992,4,1 ,20,22961,19975650,720,0 ,27,3474,52712,26,8 ,3,28,577000,6,2 ,27,1748,52720,24,8 ,3,28,577008,82,35 ,27,1747,52728,22,8 ,3,28,577016,4,1 ,27,3317,52736,24,8 ,3,28,577024,8,3 ,17,923,8965636,56,0 ,17,923,7917060,24,0 ,44,15152,2674180,120,0 ,43,15151,52740,16,0 ,44,15152,3198468,24,0 ,17,923,8441348,24,0 ,27,8653,52744,22,8 ,3,28,577032,44,19 ,27,41,52752,23,8 ,3,28,577040,4,1 ,27,1879,52760,24,8 ,3,28,577048,6,2 ,27,747,52768,27,8 ,3,28,577056,4,1 ,27,630,52776,25,8 ,3,28,577064,20,9 ,27,3477,52784,24,8 ,3,28,577072,8,3 ,27,3478,52792,22,8 ,3,28,577080,4,1 ,27,3479,52800,22,8 ,3,28,577088,9,4 ,17,923,52803,16,0 ,45,15153,5295684,24,0 ,17,923,6868548,32,0 ,44,15152,1101380,24,0 ,44,15152,3722820,32,0 ,27,3480,52808,23,8 ,3,28,577096,10,4 ,27,3481,52816,23,8 ,3,28,577104,4,1 ,27,3485,52824,21,8 ,3,28,577112,16,7 ,27,3484,52832,24,8 ,3,28,577120,12,4 ,27,41,52840,25,8 ,3,28,577128,4,1 ,27,2312,52848,22,8 ,3,28,577136,9,4 ,27,3487,52856,22,8 ,3,28,577144,10,4 ,27,3489,52864,24,8 ,3,28,577152,4,1 ,20,23266,20500098,12,0 ,44,15152,52868,24,0 ,17,923,6344324,24,0 ,27,3484,52872,23,8 ,3,28,577160,16,7 ,27,3490,52880,24,8 ,3,28,577168,4,1 ,27,2706,52888,24,8 ,3,28,577176,9,4 ,27,109,52896,23,8 ,3,28,577184,17,8 ,27,3492,52904,24,8 ,3,28,577192,4,1 ,27,3493,52912,22,8 ,3,28,577200,14,6 ,27,41,52920,23,8 ,3,28,577208,21,7 ,27,3498,52928,22,8 ,3,28,577216,15,5 ,20,16650,3722946,12,0 ,17,923,52931,40,0 ,17,923,10014404,32,0 ,17,923,7917252,32,0 ,44,15152,3198660,40,0 ,17,923,8441540,24,0 ,27,8651,52936,22,8 ,3,28,577224,4,1 ,27,41,52944,23,8 ,3,28,577232,6,2 ,27,3516,52952,24,8 ,3,28,577240,7,2 ,27,3505,52960,22,8 ,3,28,577248,4,1 ,20,23267,20500194,384,0 ,27,3502,52968,22,8 ,3,28,577256,16,7 ,27,3503,52976,22,8 ,3,28,577264,4,1 ,27,3514,52984,21,8 ,3,28,577272,9,4 ,27,3506,52992,22,8 ,3,28,577280,10,4 ,45,15153,5295876,24,0 ,44,15152,1101572,376,0 ,27,3511,53000,28,8 ,3,28,577288,4,1 ,27,3512,53008,18,8 ,3,28,577296,18,8 ,27,3515,53016,24,8 ,3,28,577304,4,1 ,27,2156,53024,24,8 ,3,28,577312,9,4 ,20,16651,3723042,128,0 ,20,16285,3198754,112,0 ,27,8629,53032,24,8 ,3,28,577320,10,4 ,27,3517,53040,22,8 ,3,28,577328,4,1 ,27,3517,53048,22,8 ,3,28,577336,18,8 ,27,3519,53056,22,8 ,3,28,577344,4,1 ,44,15152,3723076,112,0 ,17,923,7393092,112,0 ,17,923,6868804,24,0 ,17,923,6344516,24,0 ,44,15152,53060,24,0 ,27,3524,53064,27,8 ,3,28,577352,9,4 ,27,3521,53072,24,8 ,3,28,577360,10,4 ,27,3524,53080,28,8 ,3,28,577368,4,1 ,27,3525,53088,19,8 ,3,28,577376,18,8 ,27,41,53096,23,8 ,3,28,577384,4,1 ,27,1790,53104,22,8 ,3,28,577392,16,5 ,27,3532,53112,24,8 ,3,28,577400,8,3 ,27,3534,53120,23,8 ,3,28,577408,6,2 ,17,923,9490308,40,0 ,44,15152,1625988,80,0 ,17,923,8441732,32,0 ,27,3538,53128,25,8 ,3,28,577416,28,13 ,27,3538,53136,26,8 ,3,28,577424,12,5 ,27,3541,53144,20,8 ,3,28,577432,14,6 ,27,3544,53152,21,8 ,3,28,577440,6,2 ,20,25673,26791842,108,0 ,27,3546,53160,22,8 ,3,28,577448,24,11 ,27,163,53168,24,8 ,3,28,577456,8,3 ,27,3548,53176,22,8 ,3,28,577464,8,3 ,27,3551,53184,21,8 ,3,28,577472,18,6 ,20,21783,16830402,52,0 ,17,923,10014660,32,0 ,17,923,7917508,24,0 ,45,15153,5296068,24,0 ,17,923,8966084,24,0 ,27,3550,53192,26,8 ,3,28,577480,8,3 ,27,3544,53200,22,8 ,3,28,577488,14,6 ,27,3209,53208,24,8 ,3,28,577496,123,41 ,27,3550,53216,24,8 ,3,28,577504,44,41 ,20,17110,4771810,76,0 ,27,3552,53224,24,8 ,3,28,577512,12,5 ,27,3553,53232,21,8 ,3,28,577520,18,6 ,27,3554,53240,21,8 ,3,28,577528,252,125 ,27,3558,53248,23,8 ,3,28,577536,13,4 ,17,923,53251,16,0 ,44,15152,3198980,40,0 ,17,923,6868996,40,0 ,17,923,6344708,32,0 ,44,15152,53252,24,0 ,27,3566,53256,25,8 ,3,28,577544,211,131 ,27,163,53264,24,8 ,3,28,577552,22,10 ,27,3561,53272,22,8 ,3,28,577560,8,3 ,27,178,53280,23,8 ,3,28,577568,8,3 ,27,3566,53288,26,8 ,3,28,577576,10,4 ,27,3569,53296,20,8 ,3,28,577584,8,3 ,27,3568,53304,26,8 ,3,28,577592,4,1 ,27,3697,53312,20,8 ,3,28,577600,13,4 ,44,15152,577604,64,0 ,27,3696,53320,26,8 ,3,28,577608,45,24 ,27,579,53328,22,8 ,3,28,577616,24,11 ,27,579,53336,23,8 ,3,28,577624,4,1 ,27,3571,53344,21,8 ,3,28,577632,6,2 ,27,3658,53352,26,8 ,3,28,577640,4,1 ,27,579,53360,22,8 ,3,28,577648,4,1 ,27,579,53368,23,8 ,3,28,577656,6,2 ,27,3579,53376,22,8 ,3,28,577664,7,2 ,20,17324,5296258,488,0 ,17,923,53379,16,0 ,17,923,8966276,80,0 ,17,923,7917700,24,0 ,45,15153,5296260,24,0 ,17,923,8441988,32,0 ,27,1062,53384,21,8 ,3,28,577672,22,10 ,27,3580,53392,23,8 ,3,28,577680,4,1 ,27,3580,53400,24,8 ,3,28,577688,103,67 ,27,3571,53408,23,8 ,3,28,577696,6,2 ,20,20143,11587746,728,0 ,20,16066,2150562,128,0 ,27,3571,53416,24,8 ,3,28,577704,8,3 ,27,3581,53424,24,8 ,3,28,577712,8,3 ,27,3582,53432,24,8 ,3,28,577720,6,2 ,27,3583,53440,24,8 ,3,28,577728,8,3 ,20,25864,27316418,372,0 ,17,923,10014916,32,0 ,44,15152,2150596,24,0 ,44,15152,53444,24,0 ,45,15153,4772036,232,0 ,17,923,9490628,24,0 ,27,3584,53448,24,8 ,3,28,577736,8,3 ,27,2562,53456,24,8 ,3,28,577744,8,3 ,27,3585,53464,21,8 ,3,28,577752,62,30 ,27,3586,53472,24,8 ,3,28,577760,4,1 ,27,3587,53480,24,8 ,3,28,577768,20,9 ,27,3588,53488,24,8 ,3,28,577776,10,4 ,27,1910,53496,22,8 ,3,28,577784,4,1 ,27,3638,53504,23,8 ,3,28,577792,9,4 ,20,19935,11063554,348,0 ,17,923,53507,16,0 ,17,923,6344964,32,0 ,27,163,53512,22,8 ,3,28,577800,12,5 ,27,3591,53520,22,8 ,3,28,577808,4,1 ,27,3592,53528,24,8 ,3,28,577816,4,1 ,27,3580,53536,23,8 ,3,28,577824,8,3 ,27,3580,53544,24,8 ,3,28,577832,10,4 ,27,3571,53552,23,8 ,3,28,577840,24,11 ,27,3571,53560,24,8 ,3,28,577848,4,1 ,27,3593,53568,22,8 ,3,28,577856,6,2 ,45,15153,5296452,16,0 ,17,923,7917892,32,0 ,17,923,6869316,40,0 ,44,15152,3199300,88,0 ,27,3585,53576,21,8 ,3,28,577864,4,1 ,27,3595,53584,20,8 ,3,28,577872,61,35 ,27,3594,53592,24,8 ,3,28,577880,11,4 ,27,3597,53600,21,8 ,3,28,577888,10,4 ,20,21784,16830818,128,0 ,27,3596,53608,24,8 ,3,28,577896,12,5 ,27,3614,53616,22,8 ,3,28,577904,4,1 ,27,3600,53624,22,8 ,3,28,577912,6,2 ,27,3598,53632,22,8 ,3,28,577920,4,1 ,20,26265,28365186,128,0 ,17,923,53635,24,0 ,17,923,9490820,32,0 ,44,15152,2150788,280,0 ,44,15152,53636,40,0 ,17,923,8442244,40,0 ,27,3594,53640,23,8 ,3,28,577928,9,4 ,27,3594,53648,24,8 ,3,28,577936,15,7 ,27,3594,53656,23,8 ,3,28,577944,4,1 ,27,3594,53664,24,8 ,3,28,577952,24,11 ,20,23688,21549474,256,0 ,27,3603,53672,23,8 ,3,28,577960,6,2 ,27,3603,53680,22,8 ,3,28,577968,8,3 ,27,3601,53688,22,8 ,3,28,577976,8,3 ,27,3115,53696,24,8 ,3,28,577984,7,2 ,17,923,10015172,40,0 ,44,15152,2675140,40,0 ,45,15153,5296580,48,0 ,27,3112,53704,26,8 ,3,28,577992,63,35 ,27,3603,53712,24,8 ,3,28,578000,6,2 ,27,3604,53720,23,8 ,3,28,578008,10,4 ,27,3604,53728,24,8 ,3,28,578016,8,3 ,27,3606,53736,23,8 ,3,28,578024,11,4 ,27,3606,53744,22,8 ,3,28,578032,8,3 ,27,3606,53752,24,8 ,3,28,578040,4,1 ,27,3607,53760,21,8 ,3,28,578048,11,4 ,20,17987,6869506,448,0 ,45,15153,4248068,64,0 ,17,923,6345220,32,0 ,44,15152,1626628,112,0 ,27,3580,53768,23,8 ,3,28,578056,57,31 ,27,3580,53776,24,8 ,3,28,578064,4,1 ,27,3608,53784,23,8 ,3,28,578072,8,3 ,27,3609,53792,20,8 ,3,28,578080,14,5 ,27,3601,53800,24,8 ,3,28,578088,4,1 ,27,3610,53808,20,8 ,3,28,578096,6,2 ,27,3611,53816,20,8 ,3,28,578104,4,1 ,27,3595,53824,20,8 ,3,28,578112,192,131 ,20,21523,16306754,1768,0 ,20,17111,4772418,128,0 ,17,923,53827,24,0 ,44,15152,578116,96,0 ,17,923,7918148,24,0 ,27,3597,53832,21,8 ,3,28,578120,10,4 ,27,3596,53840,24,8 ,3,28,578128,6,2 ,27,3585,53848,21,8 ,3,28,578136,14,6 ,27,3601,53856,23,8 ,3,28,578144,108,53 ,27,3612,53864,24,8 ,3,28,578152,4,1 ,27,3596,53872,23,8 ,3,28,578160,10,4 ,27,3596,53880,24,8 ,3,28,578168,4,1 ,27,3596,53888,23,8 ,3,28,578176,8,3 ,17,923,9491076,40,0 ,17,923,6869636,32,0 ,27,3615,53896,24,8 ,3,28,578184,4,1 ,27,3110,53904,22,8 ,3,28,578192,98,67 ,27,3594,53912,22,8 ,3,28,578200,6,2 ,27,3616,53920,26,8 ,3,28,578208,14,5 ,20,16286,3199650,12,0 ,27,3617,53928,22,8 ,3,28,578216,4,1 ,27,3618,53936,22,8 ,3,28,578224,9,4 ,27,3596,53944,22,8 ,3,28,578232,15,7 ,27,634,53952,23,8 ,3,28,578240,14,5 ,17,923,8442564,16,0 ,17,923,7393988,32,0 ,44,15152,53956,32,0 ,44,15152,3723972,48,0 ,27,3619,53960,24,8 ,3,28,578248,4,1 ,27,3604,53968,23,8 ,3,28,578256,12,5 ,27,3604,53976,24,8 ,3,28,578264,24,8 ,27,3620,53984,22,8 ,3,28,578272,4,1 ,27,1917,53992,24,8 ,3,28,578280,4,1 ,27,3607,54000,21,8 ,3,28,578288,22,10 ,27,3621,54008,26,8 ,3,28,578296,12,4 ,27,163,54016,22,8 ,3,28,578304,8,3 ,20,16287,3199746,104,0 ,20,25674,26792706,116,0 ,17,923,54019,16,0 ,17,923,10015492,48,0 ,17,923,7918340,24,0 ,17,923,6345476,48,0 ,44,15152,2675460,40,0 ,17,923,8966916,72,0 ,27,3625,54024,22,8 ,3,28,578312,52,25 ,27,1034,54032,24,8 ,3,28,578320,4,1 ,27,579,54040,22,8 ,3,28,578328,16,7 ,27,579,54048,23,8 ,3,28,578336,7,2 ,20,16652,3724066,272,0 ,27,1730,54056,24,8 ,3,28,578344,12,5 ,27,1731,54064,26,8 ,3,28,578352,4,1 ,27,1062,54072,21,8 ,3,28,578360,10,4 ,27,3623,54080,22,8 ,3,28,578368,4,1 ,17,923,8442692,24,0 ,45,15153,5296964,48,0 ,27,1040,54088,24,8 ,3,28,578376,4,1 ,27,3626,54096,24,8 ,3,28,578384,6,2 ,27,1296,54104,22,8 ,3,28,578392,4,1 ,27,3627,54112,22,8 ,3,28,578400,16,7 ,20,22242,18404194,116,0 ,20,18179,7394146,628,0 ,27,3148,54120,24,8 ,3,28,578408,7,2 ,27,3628,54128,21,8 ,3,28,578416,12,5 ,27,3629,54136,22,8 ,3,28,578424,4,1 ,27,3608,54144,23,8 ,3,28,578432,6,2 ,20,23495,21025666,272,0 ,17,923,54147,16,0 ,17,923,6869892,40,0 ,27,3630,54152,24,8 ,3,28,578440,4,1 ,27,3631,54160,22,8 ,3,28,578448,12,5 ,27,3595,54168,20,8 ,3,28,578456,14,5 ,27,3597,54176,21,8 ,3,28,578464,4,1 ,27,3633,54184,23,8 ,3,28,578472,8,3 ,27,3595,54192,20,8 ,3,28,578480,4,1 ,27,3594,54200,24,8 ,3,28,578488,30,14 ,27,3597,54208,21,8 ,3,28,578496,6,2 ,20,15594,1102786,68,0 ,17,923,9491396,32,0 ,17,923,7918532,24,0 ,17,923,7394244,144,0 ,44,15152,54212,24,0 ,27,3596,54216,24,8 ,3,28,578504,7,2 ,27,3594,54224,22,8 ,3,28,578512,10,4 ,27,3596,54232,22,8 ,3,28,578520,4,1 ,27,3635,54240,22,8 ,3,28,578528,12,5 ,27,3636,54248,24,8 ,3,28,578536,48,19 ,27,3640,54256,23,8 ,3,28,578544,4,1 ,27,3642,54264,24,8 ,3,28,578552,6,2 ,27,3604,54272,23,8 ,3,28,578560,4,1 ,20,20214,12112898,4932,0 ,17,923,54275,16,0 ,17,923,8442884,32,0 ,44,15152,3200004,200,0 ,45,15153,4248580,24,0 ,27,3604,54280,24,8 ,3,28,578568,14,6 ,27,3643,54288,22,8 ,3,28,578576,135,45 ,27,3607,54296,21,8 ,3,28,578584,48,45 ,27,3644,54304,26,8 ,3,28,578592,46,22 ,27,3645,54312,24,8 ,3,28,578600,6,2 ,27,3646,54320,22,8 ,3,28,578608,15,5 ,27,3647,54328,22,8 ,3,28,578616,42,20 ,27,3648,54336,24,8 ,3,28,578624,4,1 ,44,15152,3724356,32,0 ,44,15152,2675780,64,0 ,27,3650,54344,24,8 ,3,28,578632,32,15 ,27,3651,54352,24,8 ,3,28,578640,6,2 ,27,3652,54360,22,8 ,3,28,578648,4,1 ,27,3653,54368,22,8 ,3,28,578656,34,16 ,27,3628,54376,21,8 ,3,28,578664,10,3 ,27,3631,54384,21,8 ,3,28,578672,8,3 ,27,3620,54392,22,8 ,3,28,578680,13,4 ,27,3591,54400,22,8 ,3,28,578688,11,4 ,17,923,54403,16,0 ,17,923,10015876,40,0 ,17,923,7918724,24,0 ,17,923,6345860,40,0 ,44,15152,54404,24,0 ,27,3579,54408,22,8 ,3,28,578696,10,3 ,27,3662,54416,23,8 ,3,28,578704,8,3 ,27,1062,54424,21,8 ,3,28,578712,10,3 ,27,3580,54432,23,8 ,3,28,578720,8,3 ,20,16067,2151586,152,0 ,27,3580,54440,24,8 ,3,28,578728,10,3 ,27,3663,54448,24,8 ,3,28,578736,8,3 ,27,3571,54456,23,8 ,3,28,578744,10,3 ,27,3571,54464,24,8 ,3,28,578752,8,3 ,17,923,9491652,24,0 ,17,923,6870212,40,0 ,45,15153,4248772,32,0 ,45,15153,5297348,16,0 ,27,3664,54472,26,8 ,3,28,578760,10,3 ,27,3581,54480,24,8 ,3,28,578768,8,3 ,27,3582,54488,24,8 ,3,28,578776,4,1 ,27,3584,54496,24,8 ,3,28,578784,8,3 ,27,3585,54504,21,8 ,3,28,578792,4,1 ,27,2562,54512,24,8 ,3,28,578800,10,4 ,27,3586,54520,24,8 ,3,28,578808,18,7 ,27,3665,54528,23,8 ,3,28,578816,4,1 ,20,20716,13686018,820,0 ,17,923,54531,32,0 ,17,923,8443140,80,0 ,27,3587,54536,24,8 ,3,28,578824,6,2 ,27,3669,54544,22,8 ,3,28,578832,4,1 ,27,3631,54552,21,8 ,3,28,578840,18,8 ,27,3631,54560,21,8 ,3,28,578848,8,3 ,27,3620,54568,22,8 ,3,28,578856,7,2 ,27,3591,54576,22,8 ,3,28,578864,10,4 ,27,3588,54584,24,8 ,3,28,578872,4,1 ,27,3604,54592,23,8 ,3,28,578880,61,35 ,17,923,8967492,24,0 ,17,923,7918916,24,0 ,44,15152,54596,24,0 ,44,15152,578884,80,0 ,44,15152,3724612,80,0 ,45,15153,5297476,16,0 ,27,3604,54600,24,8 ,3,28,578888,4,1 ,27,3642,54608,24,8 ,3,28,578896,9,4 ,27,3670,54616,24,8 ,3,28,578904,10,4 ,27,3646,54624,22,8 ,3,28,578912,4,1 ,20,21785,16831842,212,0 ,27,3607,54632,21,8 ,3,28,578920,10,4 ,27,3671,54640,24,8 ,3,28,578928,6,2 ,27,3648,54648,24,8 ,3,28,578936,44,15 ,27,3645,54656,24,8 ,3,28,578944,42,20 ,20,26266,28366210,224,0 ,17,923,9491844,32,0 ,44,15152,1627524,104,0 ,27,3674,54664,21,8 ,3,28,578952,10,4 ,27,3672,54672,22,8 ,3,28,578960,18,8 ,27,3675,54680,24,8 ,3,28,578968,10,4 ,27,3647,54688,24,8 ,3,28,578976,14,6 ,27,3644,54696,26,8 ,3,28,578984,8,3 ,27,3650,54704,24,8 ,3,28,578992,14,5 ,27,3677,54712,24,8 ,3,28,579000,8,3 ,27,3678,54720,24,8 ,3,28,579008,8,3 ,17,923,10016196,16,0 ,17,923,6346180,40,0 ,45,15153,4249028,24,0 ,45,15153,5297604,24,0 ,27,3651,54728,24,8 ,3,28,579016,6,2 ,27,3679,54736,26,8 ,3,28,579024,24,11 ,27,3680,54744,23,8 ,3,28,579032,6,2 ,27,3628,54752,21,8 ,3,28,579040,12,5 ,20,15595,1103330,76,0 ,27,3620,54760,22,8 ,3,28,579048,8,3 ,27,3591,54768,22,8 ,3,28,579056,9,3 ,27,3685,54776,27,8 ,3,28,579064,6,2 ,27,3692,54784,20,8 ,3,28,579072,6,2 ,17,923,54787,24,0 ,17,923,8967684,40,0 ,17,923,7919108,24,0 ,17,923,6870532,40,0 ,44,15152,54788,40,0 ,27,3649,54792,24,8 ,3,28,579080,146,72 ,27,3687,54800,20,8 ,3,28,579088,8,3 ,27,3686,54808,24,8 ,3,28,579096,6,2 ,27,3686,54816,23,8 ,3,28,579104,41,21 ,27,3688,54824,22,8 ,3,28,579112,4,1 ,27,3649,54832,23,8 ,3,28,579120,6,2 ,27,579,54840,24,8 ,3,28,579128,4,1 ,27,579,54848,25,8 ,3,28,579136,6,2 ,20,17112,4773442,76,0 ,20,16288,3200578,20,0 ,17,923,10016324,40,0 ,44,15152,2676292,24,0 ,27,3676,54856,23,8 ,3,28,579144,7,2 ,27,3676,54864,24,8 ,3,28,579152,12,5 ,27,1062,54872,21,8 ,3,28,579160,4,1 ,27,3689,54880,24,8 ,3,28,579168,8,3 ,27,3644,54888,24,8 ,3,28,579176,4,1 ,27,3581,54896,24,8 ,3,28,579184,8,3 ,27,3641,54904,23,8 ,3,28,579192,4,1 ,27,3641,54912,24,8 ,3,28,579200,18,8 ,17,923,9492100,24,0 ,45,15153,4249220,16,0 ,45,15153,5297796,24,0 ,27,2562,54920,22,8 ,3,28,579208,10,4 ,27,3588,54928,22,8 ,3,28,579216,7,2 ,27,3690,54936,26,8 ,3,28,579224,28,13 ,27,3693,54944,20,8 ,3,28,579232,4,1 ,20,25675,26793634,108,0 ,27,3694,54952,20,8 ,3,28,579240,10,4 ,27,3695,54960,24,8 ,3,28,579248,4,1 ,27,3568,54968,24,8 ,3,28,579256,22,10 ,27,8625,54976,22,8 ,3,28,579264,4,1 ,17,923,54979,24,0 ,17,923,7919300,24,0 ,27,3701,54984,20,8 ,3,28,579272,9,4 ,27,3700,54992,24,8 ,3,28,579280,10,4 ,27,3698,55000,24,8 ,3,28,579288,4,1 ,27,1043,55008,25,8 ,3,28,579296,6,2 ,20,16289,3200738,424,0 ,27,3699,55016,22,8 ,3,28,579304,4,1 ,27,3700,55024,23,8 ,3,28,579312,9,4 ,27,3705,55032,20,8 ,3,28,579320,10,4 ,27,3704,55040,24,8 ,3,28,579328,4,1 ,20,22243,18405122,440,0 ,45,15153,4249348,24,0 ,17,923,6346500,56,0 ,44,15152,2676484,24,0 ,27,3702,55048,24,8 ,3,28,579336,6,2 ,27,3703,55056,22,8 ,3,28,579344,4,1 ,27,3704,55064,23,8 ,3,28,579352,26,12 ,27,3706,55072,22,8 ,3,28,579360,8,3 ,27,8622,55080,24,8 ,3,28,579368,4,1 ,27,3276,55088,21,8 ,3,28,579376,12,5 ,27,8680,55096,24,8 ,3,28,579384,4,1 ,27,3277,55104,22,8 ,3,28,579392,11,4 ,20,21184,15783746,12,0 ,17,923,9492292,24,0 ,17,923,6870852,32,0 ,44,15152,55108,24,0 ,45,15153,5297988,32,0 ,17,923,8968004,24,0 ,27,8680,55112,23,8 ,3,28,579400,19,9 ,27,3274,55120,22,8 ,3,28,579408,4,1 ,27,3708,55128,23,8 ,3,28,579416,10,4 ,27,3712,55136,22,8 ,3,28,579424,4,1 ,27,3713,55144,23,8 ,3,28,579432,60,35 ,27,3717,55152,23,8 ,3,28,579440,9,3 ,27,3721,55160,21,8 ,3,28,579448,40,19 ,27,3724,55168,20,8 ,3,28,579456,7,2 ,20,17717,6346626,152,0 ,17,923,55171,24,0 ,17,923,10016644,16,0 ,17,923,7919492,24,0 ,17,923,8443780,80,0 ,27,3723,55176,26,8 ,3,28,579464,10,4 ,27,3728,55184,21,8 ,3,28,579472,4,1 ,27,2150,55192,28,8 ,3,28,579480,10,4 ,27,3723,55200,24,8 ,3,28,579488,4,1 ,20,21185,15783842,12,0 ,27,3729,55208,22,8 ,3,28,579496,12,5 ,27,2150,55216,27,8 ,3,28,579504,12,4 ,27,3773,55224,24,8 ,3,28,579512,4,1 ,27,3772,55232,24,8 ,3,28,579520,12,5 ,20,19347,10016706,12,0 ,45,15153,4249540,16,0 ,44,15152,2676676,24,0 ,44,15152,579524,104,0 ,44,15152,3725252,40,0 ,27,3277,55240,22,8 ,3,28,579528,21,7 ,27,3277,55248,22,8 ,3,28,579536,4,1 ,27,3736,55256,22,8 ,3,28,579544,28,13 ,27,1040,55264,24,8 ,3,28,579552,4,1 ,27,623,55272,23,8 ,3,28,579560,6,2 ,27,1043,55280,24,8 ,3,28,579568,7,2 ,27,1634,55288,24,8 ,3,28,579576,18,8 ,27,1654,55296,26,8 ,3,28,579584,7,2 ,20,21186,15783938,52,0 ,17,923,10016772,16,0 ,44,15152,55300,24,0 ,45,15153,4773892,224,0 ,17,923,8968196,56,0 ,17,923,9492484,32,0 ,27,3276,55304,21,8 ,3,28,579592,34,16 ,27,8680,55312,24,8 ,3,28,579600,4,1 ,27,3744,55320,20,8 ,3,28,579608,6,2 ,27,3743,55328,24,8 ,3,28,579616,4,1 ,20,19348,10016802,228,0 ,27,2688,55336,25,8 ,3,28,579624,9,4 ,27,3742,55344,22,8 ,3,28,579632,103,57 ,27,3746,55352,21,8 ,3,28,579640,4,1 ,27,3745,55360,24,8 ,3,28,579648,14,6 ,20,24496,23648322,24,0 ,20,15596,1103938,88,0 ,17,923,55363,24,0 ,45,15153,5298244,16,0 ,17,923,7919684,40,0 ,17,923,7395396,144,0 ,17,923,6871108,40,0 ,45,15153,4249668,48,0 ,27,3278,55368,24,8 ,3,28,579656,12,4 ,27,3277,55376,22,8 ,3,28,579664,4,1 ,27,8680,55384,23,8 ,3,28,579672,16,7 ,27,3747,55392,22,8 ,3,28,579680,10,4 ,27,3749,55400,22,8 ,3,28,579688,6,2 ,27,3748,55408,26,8 ,3,28,579696,4,1 ,27,3750,55416,23,8 ,3,28,579704,215,131 ,27,3751,55424,24,8 ,3,28,579712,164,55 ,17,923,10016900,16,0 ,44,15152,2676868,24,0 ,27,3743,55432,23,8 ,3,28,579720,154,76 ,27,3745,55440,23,8 ,3,28,579728,4,1 ,27,3755,55448,26,8 ,3,28,579736,30,14 ,27,3752,55456,24,8 ,3,28,579744,6,2 ,20,17113,4774050,756,0 ,27,3276,55464,21,8 ,3,28,579752,8,3 ,27,8680,55472,24,8 ,3,28,579760,6,2 ,27,1707,55480,24,8 ,3,28,579768,15,5 ,27,3277,55488,22,8 ,3,28,579776,4,1 ,45,15153,5298372,24,0 ,17,923,6346948,48,0 ,44,15152,1628356,88,0 ,44,15152,55492,8,0 ,27,8680,55496,23,8 ,3,28,579784,8,3 ,27,3757,55504,22,8 ,3,28,579792,9,3 ,27,1057,55512,23,8 ,3,28,579800,4,1 ,27,812,55520,23,8 ,3,28,579808,6,2 ,27,295,55528,23,8 ,3,28,579816,4,1 ,27,41,55536,23,8 ,3,28,579824,8,3 ,27,812,55544,23,8 ,3,28,579832,4,1 ,27,295,55552,23,8 ,3,28,579840,16,7 ,20,24497,23648514,176,0 ,17,923,55555,16,0 ,17,923,10017028,24,0 ,44,15152,55556,32,0 ,44,15152,3725572,40,0 ,17,923,9492740,32,0 ,27,3276,55560,21,8 ,3,28,579848,15,5 ,27,8680,55568,24,8 ,3,28,579856,4,1 ,27,3764,55576,22,8 ,3,28,579864,14,6 ,27,3765,55584,21,8 ,3,28,579872,8,3 ,27,3277,55592,22,8 ,3,28,579880,15,5 ,27,8680,55600,23,8 ,3,28,579888,4,1 ,27,3767,55608,22,8 ,3,28,579896,60,35 ,27,3768,55616,22,8 ,3,28,579904,12,4 ,44,15152,2677060,64,0 ,27,3770,55624,26,8 ,3,28,579912,40,19 ,27,253,55632,21,8 ,3,28,579920,10,4 ,27,3972,55640,22,8 ,3,28,579928,4,1 ,27,3867,55648,24,8 ,3,28,579936,16,7 ,20,16068,2152802,240,0 ,27,41,55656,23,8 ,3,28,579944,14,5 ,27,1118,55664,26,8 ,3,28,579952,4,1 ,27,41,55672,23,8 ,3,28,579960,28,13 ,27,41,55680,23,8 ,3,28,579968,24,8 ,17,923,55683,40,0 ,45,15153,5298564,24,0 ,17,923,7920004,24,0 ,17,923,6871428,32,0 ,27,1118,55688,26,8 ,3,28,579976,4,1 ,27,3782,55696,26,8 ,3,28,579984,24,11 ,27,3783,55704,24,8 ,3,28,579992,16,7 ,27,3784,55712,22,8 ,3,28,580000,10,4 ,20,23689,21551522,292,0 ,20,15199,55714,384,0 ,20,20490,13162914,160,0 ,20,21187,15784354,12,0 ,27,3785,55720,24,8 ,3,28,580008,4,1 ,27,3786,55728,24,8 ,3,28,580016,16,7 ,27,3788,55736,22,8 ,3,28,580024,14,6 ,27,3789,55744,24,8 ,3,28,580032,24,8 ,20,972,55745,512,0 ,17,923,10017220,40,0 ,45,15153,4250052,160,0 ,17,923,8968644,32,0 ,27,3789,55752,24,8 ,3,28,580040,24,8 ,27,3788,55760,24,8 ,3,28,580048,4,1 ,27,3784,55768,22,8 ,3,28,580056,20,9 ,27,3782,55776,26,8 ,3,28,580064,27,9 ,27,3783,55784,24,8 ,3,28,580072,4,1 ,27,3785,55792,24,8 ,3,28,580080,12,5 ,27,3786,55800,24,8 ,3,28,580088,14,6 ,27,3820,55808,24,8 ,3,28,580096,27,9 ,20,21188,15784450,136,0 ,20,25676,26794498,112,0 ,20,19684,10541570,1352,0 ,17,923,9492996,32,0 ,44,15152,55812,24,0 ,17,923,8444420,112,0 ,27,1490,55816,26,8 ,3,28,580104,4,1 ,27,3796,55824,24,8 ,3,28,580112,26,12 ,27,3797,55832,22,8 ,3,28,580120,10,4 ,27,3798,55840,22,8 ,3,28,580128,10,4 ,27,3799,55848,22,8 ,3,28,580136,12,4 ,27,3800,55856,22,8 ,3,28,580144,4,1 ,27,3801,55864,22,8 ,3,28,580152,12,5 ,27,3802,55872,24,8 ,3,28,580160,14,6 ,45,15153,5298756,16,0 ,17,923,7920196,24,0 ,17,923,6347332,48,0 ,44,15152,2153028,184,0 ,44,15152,3201604,40,0 ,44,15152,3725892,40,0 ,27,3803,55880,24,8 ,3,28,580168,12,4 ,27,3804,55888,24,8 ,3,28,580176,4,1 ,27,3805,55896,24,8 ,3,28,580184,16,7 ,27,3806,55904,24,8 ,3,28,580192,4,1 ,27,3807,55912,22,8 ,3,28,580200,30,14 ,27,3808,55920,24,8 ,3,28,580208,16,7 ,27,3797,55928,22,8 ,3,28,580216,18,6 ,27,3812,55936,24,8 ,3,28,580224,4,1 ,17,923,6871684,32,0 ,27,3813,55944,24,8 ,3,28,580232,10,4 ,27,3814,55952,24,8 ,3,28,580240,12,4 ,27,3815,55960,24,8 ,3,28,580248,7,2 ,27,1498,55968,26,8 ,3,28,580256,34,16 ,27,1499,55976,26,8 ,3,28,580264,9,3 ,27,1493,55984,26,8 ,3,28,580272,24,8 ,27,1496,55992,26,8 ,3,28,580280,4,1 ,27,1491,56000,24,8 ,3,28,580288,14,6 ,17,923,56003,16,0 ,17,923,8968900,56,0 ,44,15152,56004,16,0 ,44,15152,1104580,32,0 ,45,15153,5298884,32,0 ,27,3816,56008,24,8 ,3,28,580296,15,5 ,27,3818,56016,23,8 ,3,28,580304,18,7 ,27,3821,56024,22,8 ,3,28,580312,4,1 ,27,3822,56032,22,8 ,3,28,580320,6,2 ,20,23268,20503266,68,0 ,27,3823,56040,22,8 ,3,28,580328,4,1 ,27,3824,56048,22,8 ,3,28,580336,12,5 ,27,3788,56056,22,8 ,3,28,580344,11,4 ,27,3789,56064,24,8 ,3,28,580352,4,1 ,20,15597,1104642,372,0 ,17,923,10017540,16,0 ,17,923,7920388,24,0 ,44,15152,580356,56,0 ,17,923,9493252,32,0 ,27,3844,56072,22,8 ,3,28,580360,8,3 ,27,9,56080,23,8 ,3,28,580368,4,1 ,27,3835,56088,22,8 ,3,28,580376,18,8 ,27,3833,56096,26,8 ,3,28,580384,15,5 ,27,3834,56104,24,8 ,3,28,580392,4,1 ,27,340,56112,21,8 ,3,28,580400,10,4 ,27,41,56120,23,8 ,3,28,580408,12,4 ,27,3838,56128,22,8 ,3,28,580416,4,1 ,17,923,56131,24,0 ,44,15152,56132,24,0 ,44,15152,2677572,56,0 ,27,3837,56136,27,8 ,3,28,580424,10,4 ,27,3839,56144,22,8 ,3,28,580432,4,1 ,27,3840,56152,22,8 ,3,28,580440,6,2 ,27,3841,56160,25,8 ,3,28,580448,6,2 ,27,3842,56168,21,8 ,3,28,580456,4,1 ,27,3846,56176,21,8 ,3,28,580464,9,4 ,27,3852,56184,23,8 ,3,28,580472,23,11 ,27,3853,56192,22,8 ,3,28,580480,4,1 ,17,923,10017668,24,0 ,17,923,6871940,24,0 ,44,15152,1629060,32,0 ,44,15152,3201924,24,0 ,44,15152,3726212,16,0 ,27,3854,56200,27,8 ,3,28,580488,8,3 ,27,3855,56208,28,8 ,3,28,580496,4,1 ,27,3858,56216,27,8 ,3,28,580504,10,4 ,27,3867,56224,24,8 ,3,28,580512,12,4 ,20,16653,3726242,200,0 ,20,25485,26270626,60,0 ,27,3855,56232,27,8 ,3,28,580520,4,1 ,27,3209,56240,23,8 ,3,28,580528,10,4 ,27,3544,56248,22,8 ,3,28,580536,10,4 ,27,3971,56256,20,8 ,3,28,580544,6,2 ,45,15153,5299140,24,0 ,17,923,7920580,24,0 ,17,923,6347716,32,0 ,44,15152,1104836,96,0 ,27,3970,56264,24,8 ,3,28,580552,7,2 ,27,1034,56272,24,8 ,3,28,580560,8,3 ,27,579,56280,22,8 ,3,28,580568,4,1 ,27,579,56288,23,8 ,3,28,580576,8,3 ,20,19936,11066338,312,0 ,27,1062,56296,21,8 ,3,28,580584,4,1 ,27,41,56304,23,8 ,3,28,580592,8,3 ,27,3870,56312,22,8 ,3,28,580600,4,1 ,27,2460,56320,22,8 ,3,28,580608,8,3 ,20,23496,21027842,244,0 ,20,21786,16833538,168,0 ,17,923,56323,24,0 ,17,923,9493508,24,0 ,44,15152,56324,24,0 ,44,15152,3726340,32,0 ,27,2803,56328,24,8 ,3,28,580616,4,1 ,27,3871,56336,23,8 ,3,28,580624,10,4 ,27,3872,56344,24,8 ,3,28,580632,4,1 ,27,41,56352,23,8 ,3,28,580640,6,2 ,27,3875,56360,26,8 ,3,28,580648,30,10 ,27,3895,56368,22,8 ,3,28,580656,4,1 ,27,3888,56376,22,8 ,3,28,580664,8,3 ,27,3889,56384,22,8 ,3,28,580672,4,1 ,20,17718,6347842,292,0 ,17,923,10017860,32,0 ,17,923,6872132,16,0 ,44,15152,3202116,32,0 ,27,3890,56392,24,8 ,3,28,580680,8,3 ,27,3891,56400,22,8 ,3,28,580688,4,1 ,27,3892,56408,24,8 ,3,28,580696,12,5 ,27,3893,56416,24,8 ,3,28,580704,4,1 ,20,25865,27319394,104,0 ,27,3896,56424,22,8 ,3,28,580712,8,3 ,27,3897,56432,22,8 ,3,28,580720,4,1 ,27,3898,56440,22,8 ,3,28,580728,8,3 ,27,3899,56448,23,8 ,3,28,580736,4,1 ,20,26267,28368002,232,0 ,17,923,8969348,24,0 ,17,923,7920772,24,0 ,44,15152,1629316,80,0 ,45,15153,5299332,16,0 ,27,3899,56456,24,8 ,3,28,580744,8,3 ,27,1051,56464,24,8 ,3,28,580752,4,1 ,27,3901,56472,24,8 ,3,28,580760,8,3 ,27,3902,56480,23,8 ,3,28,580768,4,1 ,20,26094,27843746,220,0 ,27,3901,56488,24,8 ,3,28,580776,8,3 ,27,3901,56496,24,8 ,3,28,580784,4,1 ,27,3901,56504,24,8 ,3,28,580792,8,3 ,27,3901,56512,24,8 ,3,28,580800,4,1 ,17,923,56515,16,0 ,17,923,9493700,32,0 ,17,923,7396548,32,0 ,17,923,6872260,40,0 ,17,923,6347972,32,0 ,44,15152,56516,24,0 ,44,15152,580804,40,0 ,27,3907,56520,23,8 ,3,28,580808,12,5 ,27,3901,56528,24,8 ,3,28,580816,24,8 ,27,3901,56536,24,8 ,3,28,580824,4,1 ,27,3901,56544,24,8 ,3,28,580832,6,2 ,27,3901,56552,24,8 ,3,28,580840,4,1 ,27,3901,56560,24,8 ,3,28,580848,10,4 ,27,3958,56568,24,8 ,3,28,580856,4,1 ,27,3957,56576,22,8 ,3,28,580864,8,3 ,20,23269,20503810,76,0 ,45,15153,5299460,16,0 ,44,15152,2678020,24,0 ,44,15152,3726596,56,0 ,27,1037,56584,26,8 ,3,28,580872,32,11 ,27,445,56592,23,8 ,3,28,580880,4,1 ,27,178,56600,21,8 ,3,28,580888,10,4 ,27,1034,56608,24,8 ,3,28,580896,4,1 ,27,579,56616,22,8 ,3,28,580904,10,4 ,27,579,56624,23,8 ,3,28,580912,4,1 ,27,1771,56632,26,8 ,3,28,580920,4,1 ,27,204,56640,23,8 ,3,28,580928,6,2 ,17,923,56643,24,0 ,17,923,10018116,24,0 ,17,923,7920964,16,0 ,44,15152,3202372,32,0 ,17,923,8969540,56,0 ,27,1035,56648,26,8 ,3,28,580936,4,1 ,27,9,56656,23,8 ,3,28,580944,10,4 ,27,1770,56664,26,8 ,3,28,580952,4,1 ,27,178,56672,23,8 ,3,28,580960,8,3 ,27,1037,56680,26,8 ,3,28,580968,24,11 ,27,445,56688,23,8 ,3,28,580976,4,1 ,27,1034,56696,24,8 ,3,28,580984,12,5 ,27,579,56704,22,8 ,3,28,580992,4,1 ,20,25486,26271106,60,0 ,20,25677,26795394,528,0 ,17,923,8445316,112,0 ,44,15152,56708,24,0 ,45,15153,5299588,16,0 ,27,579,56712,23,8 ,3,28,581000,14,6 ,27,1035,56720,26,8 ,3,28,581008,4,1 ,27,9,56728,23,8 ,3,28,581016,8,3 ,27,1771,56736,26,8 ,3,28,581024,4,1 ,27,204,56744,23,8 ,3,28,581032,4,1 ,27,2274,56752,22,8 ,3,28,581040,8,3 ,27,3920,56760,21,8 ,3,28,581048,4,1 ,27,1062,56768,21,8 ,3,28,581056,8,3 ,17,923,9493956,40,0 ,17,923,7921092,24,0 ,17,923,7396804,32,0 ,17,923,6348228,48,0 ,44,15152,2678212,48,0 ,27,3921,56776,24,8 ,3,28,581064,4,1 ,27,623,56784,23,8 ,3,28,581072,10,4 ,27,812,56792,23,8 ,3,28,581080,4,1 ,27,3922,56800,22,8 ,3,28,581088,6,2 ,27,295,56808,23,8 ,3,28,581096,4,1 ,27,3923,56816,24,8 ,3,28,581104,4,1 ,27,3924,56824,23,8 ,3,28,581112,8,3 ,27,41,56832,23,8 ,3,28,581120,4,1 ,17,923,56835,32,0 ,17,923,10018308,24,0 ,17,923,6872580,32,0 ,44,15152,581124,96,0 ,45,15153,5299716,24,0 ,27,3925,56840,24,8 ,3,28,581128,12,5 ,27,3926,56848,24,8 ,3,28,581136,4,1 ,27,1770,56856,26,8 ,3,28,581144,8,3 ,27,178,56864,23,8 ,3,28,581152,4,1 ,27,1037,56872,26,8 ,3,28,581160,12,5 ,27,445,56880,23,8 ,3,28,581168,6,2 ,27,1034,56888,24,8 ,3,28,581176,4,1 ,27,579,56896,22,8 ,3,28,581184,8,3 ,20,21189,15785538,80,0 ,44,15152,3202628,32,0 ,44,15152,56900,16,0 ,27,579,56904,23,8 ,3,28,581192,4,1 ,27,1035,56912,26,8 ,3,28,581200,10,4 ,27,9,56920,23,8 ,3,28,581208,4,1 ,27,1771,56928,26,8 ,3,28,581216,8,3 ,27,204,56936,23,8 ,3,28,581224,4,1 ,27,2274,56944,22,8 ,3,28,581232,11,4 ,27,3920,56952,22,8 ,3,28,581240,10,4 ,27,1062,56960,21,8 ,3,28,581248,7,2 ,20,24498,23649922,144,0 ,20,18436,7921282,68,0 ,17,923,7921284,24,0 ,27,623,56968,23,8 ,3,28,581256,18,8 ,27,812,56976,23,8 ,3,28,581264,4,1 ,27,3922,56984,22,8 ,3,28,581272,30,14 ,27,295,56992,23,8 ,3,28,581280,8,3 ,20,20491,13164194,304,0 ,20,25113,25222818,24,0 ,27,3928,57000,24,8 ,3,28,581288,8,3 ,27,3923,57008,24,8 ,3,28,581296,4,1 ,27,3929,57016,24,8 ,3,28,581304,9,4 ,27,41,57024,23,8 ,3,28,581312,12,5 ,17,923,10018500,24,0 ,17,923,7397060,32,0 ,44,15152,57028,32,0 ,44,15152,1105604,56,0 ,44,15152,3727044,40,0 ,45,15153,4251332,24,0 ,45,15153,5299908,24,0 ,27,3930,57032,23,8 ,3,28,581320,4,1 ,27,3936,57040,24,8 ,3,28,581328,16,7 ,27,3937,57048,23,8 ,3,28,581336,4,1 ,27,3938,57056,22,8 ,3,28,581344,10,4 ,27,3920,57064,22,8 ,3,28,581352,4,1 ,27,1062,57072,21,8 ,3,28,581360,9,4 ,27,3939,57080,24,8 ,3,28,581368,10,4 ,27,3921,57088,26,8 ,3,28,581376,4,1 ,17,923,57091,24,0 ,17,923,9494276,40,0 ,17,923,6872836,40,0 ,44,15152,1629956,88,0 ,45,15153,4775684,232,0 ,17,923,8969988,32,0 ,27,3940,57096,22,8 ,3,28,581384,105,67 ,27,3941,57104,24,8 ,3,28,581392,66,32 ,27,2250,57112,24,8 ,3,28,581400,4,1 ,27,3942,57120,24,8 ,3,28,581408,8,3 ,27,3943,57128,24,8 ,3,28,581416,4,1 ,27,3944,57136,24,8 ,3,28,581424,8,3 ,27,295,57144,23,8 ,3,28,581432,4,1 ,27,41,57152,23,8 ,3,28,581440,10,4 ,20,19349,10018626,116,0 ,44,15152,3202884,24,0 ,17,923,7921476,24,0 ,17,923,6348612,40,0 ,44,15152,2678596,24,0 ,27,3945,57160,24,8 ,3,28,581448,4,1 ,27,3946,57168,24,8 ,3,28,581456,6,2 ,27,3947,57176,22,8 ,3,28,581464,4,1 ,27,2055,57184,24,8 ,3,28,581472,12,5 ,20,23270,20504418,40,0 ,20,25487,26271586,712,0 ,20,25114,25223010,60,0 ,27,2274,57192,24,8 ,3,28,581480,10,4 ,27,3948,57200,24,8 ,3,28,581488,7,2 ,27,3949,57208,22,8 ,3,28,581496,4,1 ,27,812,57216,23,8 ,3,28,581504,30,14 ,17,923,10018692,16,0 ,45,15153,4251524,48,0 ,45,15153,5300100,24,0 ,27,3950,57224,22,8 ,3,28,581512,7,2 ,27,3951,57232,24,8 ,3,28,581520,12,5 ,27,3923,57240,24,8 ,3,28,581528,4,1 ,27,3952,57248,24,8 ,3,28,581536,13,4 ,20,25866,27320226,232,0 ,27,3953,57256,22,8 ,3,28,581544,17,8 ,27,3954,57264,24,8 ,3,28,581552,4,1 ,27,3955,57272,24,8 ,3,28,581560,60,35 ,27,3962,57280,26,8 ,3,28,581568,12,4 ,20,17325,5300162,476,0 ,17,923,57283,32,0 ,44,15152,57284,8,0 ,17,923,7397316,40,0 ,27,3963,57288,24,8 ,3,28,581576,40,19 ,27,3965,57296,24,8 ,3,28,581584,4,1 ,27,3968,57304,23,8 ,3,28,581592,8,3 ,27,3970,57312,23,8 ,3,28,581600,4,1 ,27,3972,57320,22,8 ,3,28,581608,9,4 ,27,3972,57328,22,8 ,3,28,581616,19,9 ,27,3973,57336,23,8 ,3,28,581624,14,6 ,27,3978,57344,20,8 ,3,28,581632,6,2 ,20,17988,6873090,56,0 ,17,923,10018820,40,0 ,17,923,7921668,24,0 ,44,15152,2678788,72,0 ,44,15152,2154500,288,0 ,44,15152,57348,56,0 ,44,15152,3203076,40,0 ,44,15152,3727364,48,0 ,17,923,8970244,32,0 ,27,2120,57352,24,8 ,3,28,581640,13,4 ,27,3980,57360,22,8 ,3,28,581648,11,4 ,27,3972,57368,22,8 ,3,28,581656,4,1 ,27,3981,57376,23,8 ,3,28,581664,9,4 ,27,3991,57384,21,8 ,3,28,581672,10,4 ,27,3992,57392,23,8 ,3,28,581680,6,2 ,27,3992,57400,24,8 ,3,28,581688,8,3 ,27,3993,57408,21,8 ,3,28,581696,15,5 ,20,23904,22077506,772,0 ,17,923,9494596,24,0 ,17,923,6873156,40,0 ,45,15153,5300292,16,0 ,27,4379,57416,20,8 ,3,28,581704,4,1 ,27,4378,57424,24,8 ,3,28,581712,10,4 ,27,4375,57432,24,8 ,3,28,581720,18,8 ,27,3997,57440,20,8 ,3,28,581728,4,1 ,27,3996,57448,24,8 ,3,28,581736,12,5 ,27,3998,57456,22,8 ,3,28,581744,6,2 ,27,3999,57464,22,8 ,3,28,581752,11,4 ,27,4000,57472,22,8 ,3,28,581760,12,5 ,44,15152,1106052,112,0 ,17,923,6348932,24,0 ,27,4001,57480,22,8 ,3,28,581768,28,13 ,27,4002,57488,22,8 ,3,28,581776,10,3 ,27,3996,57496,23,8 ,3,28,581784,8,3 ,27,1380,57504,22,8 ,3,28,581792,8,3 ,20,23271,20504738,68,0 ,20,18437,7921826,152,0 ,27,4004,57512,22,8 ,3,28,581800,12,4 ,27,4068,57520,24,8 ,3,28,581808,4,1 ,27,1748,57528,24,8 ,3,28,581816,6,2 ,27,1747,57536,22,8 ,3,28,581824,12,4 ,20,21190,15786178,80,0 ,17,923,57539,24,0 ,45,15153,5300420,16,0 ,17,923,7921860,24,0 ,27,4005,57544,22,8 ,3,28,581832,4,1 ,27,4006,57552,22,8 ,3,28,581840,9,4 ,27,4007,57560,22,8 ,3,28,581848,61,33 ,27,4008,57568,24,8 ,3,28,581856,4,1 ,20,16069,2154722,128,0 ,27,4009,57576,22,8 ,3,28,581864,4,1 ,27,4010,57584,22,8 ,3,28,581872,10,4 ,27,4011,57592,22,8 ,3,28,581880,4,1 ,27,4012,57600,22,8 ,3,28,581888,8,3 ,17,923,9494788,48,0 ,17,923,7397636,24,0 ,44,15152,581892,56,0 ,45,15153,4251908,48,0 ,17,923,8446212,24,0 ,17,923,8970500,56,0 ,27,4013,57608,24,8 ,3,28,581896,4,1 ,27,1562,57616,24,8 ,3,28,581904,4,1 ,27,4014,57624,21,8 ,3,28,581912,8,3 ,27,4015,57632,22,8 ,3,28,581920,4,1 ,27,4016,57640,24,8 ,3,28,581928,8,3 ,27,4017,57648,21,8 ,3,28,581936,4,1 ,27,4018,57656,21,8 ,3,28,581944,8,3 ,27,4019,57664,22,8 ,3,28,581952,26,11 ,20,21787,16834882,284,0 ,20,25115,25223490,348,0 ,17,923,10019140,24,0 ,17,923,6349124,40,0 ,44,15152,3203396,24,0 ,45,15153,5300548,16,0 ,27,4020,57672,22,8 ,3,28,581960,4,1 ,27,4021,57680,22,8 ,3,28,581968,6,2 ,27,4022,57688,21,8 ,3,28,581976,4,1 ,27,4023,57696,22,8 ,3,28,581984,14,5 ,27,4024,57704,22,8 ,3,28,581992,4,1 ,27,4025,57712,22,8 ,3,28,582000,26,11 ,27,4026,57720,24,8 ,3,28,582008,4,1 ,27,4027,57728,22,8 ,3,28,582016,14,5 ,17,923,57731,32,0 ,44,15152,3727748,40,0 ,17,923,7922052,32,0 ,17,923,6873476,24,0 ,27,4028,57736,22,8 ,3,28,582024,4,1 ,27,4029,57744,22,8 ,3,28,582032,4,1 ,27,4030,57752,22,8 ,3,28,582040,4,1 ,27,4031,57760,22,8 ,3,28,582048,10,4 ,27,4032,57768,21,8 ,3,28,582056,7,2 ,27,4033,57776,22,8 ,3,28,582064,24,11 ,27,4034,57784,22,8 ,3,28,582072,8,3 ,27,4035,57792,22,8 ,3,28,582080,6,2 ,20,17989,6873538,400,0 ,17,923,8446404,56,0 ,17,923,7397828,24,0 ,44,15152,1630660,120,0 ,44,15152,57796,24,0 ,45,15153,5300676,16,0 ,27,4036,57800,22,8 ,3,28,582088,8,3 ,27,4037,57808,22,8 ,3,28,582096,15,5 ,27,4038,57816,22,8 ,3,28,582104,10,4 ,27,4039,57824,22,8 ,3,28,582112,4,1 ,20,16654,3727842,128,0 ,27,4040,57832,22,8 ,3,28,582120,9,4 ,27,4041,57840,22,8 ,3,28,582128,19,9 ,27,4042,57848,22,8 ,3,28,582136,4,1 ,27,4043,57856,22,8 ,3,28,582144,28,13 ,17,923,10019332,24,0 ,44,15152,3203588,32,0 ,27,4044,57864,22,8 ,3,28,582152,6,2 ,27,4045,57872,22,8 ,3,28,582160,10,4 ,27,4046,57880,22,8 ,3,28,582168,4,1 ,27,4047,57888,22,8 ,3,28,582176,8,3 ,27,4048,57896,22,8 ,3,28,582184,4,1 ,27,4049,57904,22,8 ,3,28,582192,4,1 ,27,4050,57912,22,8 ,3,28,582200,8,3 ,27,4051,57920,21,8 ,3,28,582208,4,1 ,45,15153,5300804,24,0 ,17,923,6873668,24,0 ,44,15152,2679364,32,0 ,27,4052,57928,22,8 ,3,28,582216,10,4 ,27,4053,57936,22,8 ,3,28,582224,12,4 ,27,4054,57944,22,8 ,3,28,582232,21,7 ,27,4055,57952,22,8 ,3,28,582240,62,30 ,27,4064,57960,22,8 ,3,28,582248,16,7 ,27,4063,57968,24,8 ,3,28,582256,12,5 ,27,4061,57976,24,8 ,3,28,582264,40,19 ,27,4056,57984,24,8 ,3,28,582272,31,16 ,17,923,57987,24,0 ,17,923,9495172,48,0 ,17,923,7922308,32,0 ,17,923,7398020,56,0 ,17,923,6349444,32,0 ,44,15152,57988,56,0 ,45,15153,4252292,32,0 ,27,4057,57992,24,8 ,3,28,582280,18,7 ,27,1274,58000,24,8 ,3,28,582288,4,1 ,27,4058,58008,23,8 ,3,28,582296,6,2 ,27,1274,58016,24,8 ,3,28,582304,14,5 ,27,4062,58024,24,8 ,3,28,582312,4,1 ,27,4065,58032,22,8 ,3,28,582320,6,2 ,27,4066,58040,22,8 ,3,28,582328,7,2 ,27,4072,58048,26,8 ,3,28,582336,18,8 ,20,23690,21553858,124,0 ,20,23272,20505282,24,0 ,17,923,10019524,24,0 ,44,15152,582340,32,0 ,44,15152,3728068,48,0 ,17,923,8970948,24,0 ,27,4074,58056,24,8 ,3,28,582344,18,8 ,27,4073,58064,23,8 ,3,28,582352,10,4 ,27,4004,58072,22,8 ,3,28,582360,9,3 ,27,4072,58080,26,8 ,3,28,582368,4,1 ,20,19350,10019554,516,0 ,27,4068,58088,24,8 ,3,28,582376,10,4 ,27,4076,58096,24,8 ,3,28,582384,4,1 ,27,4077,58104,23,8 ,3,28,582392,6,2 ,27,4004,58112,22,8 ,3,28,582400,4,1 ,20,24499,23651074,244,0 ,45,15153,5300996,16,0 ,17,923,6873860,40,0 ,44,15152,3203844,72,0 ,27,4079,58120,22,8 ,3,28,582408,6,2 ,27,1380,58128,22,8 ,3,28,582416,4,1 ,27,4068,58136,24,8 ,3,28,582424,6,2 ,27,4072,58144,26,8 ,3,28,582432,4,1 ,27,4080,58152,24,8 ,3,28,582440,16,7 ,27,4082,58160,21,8 ,3,28,582448,9,3 ,27,4083,58168,21,8 ,3,28,582456,4,1 ,27,4084,58176,23,8 ,3,28,582464,14,6 ,20,21191,15786818,140,0 ,17,923,58179,16,0 ,44,15152,2679620,16,0 ,27,4085,58184,24,8 ,3,28,582472,4,1 ,27,41,58192,23,8 ,3,28,582480,20,9 ,27,4000,58200,22,8 ,3,28,582488,4,1 ,27,1380,58208,22,8 ,3,28,582496,4,1 ,27,4091,58216,23,8 ,3,28,582504,16,7 ,27,2312,58224,22,8 ,3,28,582512,10,4 ,27,4099,58232,24,8 ,3,28,582520,6,2 ,27,4193,58240,22,8 ,3,28,582528,4,1 ,20,23273,20505474,84,0 ,20,26095,27845506,128,0 ,20,18904,8971138,52,0 ,20,21953,17359746,344,0 ,17,923,10019716,24,0 ,17,923,7922564,24,0 ,17,923,6349700,24,0 ,45,15153,4252548,56,0 ,45,15153,5301124,32,0 ,17,923,8446852,32,0 ,17,923,8971140,56,0 ,27,4189,58248,22,8 ,3,28,582536,20,9 ,27,579,58256,22,8 ,3,28,582544,6,2 ,27,579,58264,23,8 ,3,28,582552,7,2 ,27,1062,58272,21,8 ,3,28,582560,5,2 ,20,23497,21029794,116,0 ,27,4103,58280,24,8 ,3,28,582568,4,1 ,27,4104,58288,23,8 ,3,28,582576,10,4 ,27,4106,58296,24,8 ,3,28,582584,4,1 ,27,4107,58304,22,8 ,3,28,582592,12,5 ,20,26268,28369858,248,0 ,17,923,58307,32,0 ,44,15152,582596,24,0 ,44,15152,2679748,40,0 ,27,4108,58312,22,8 ,3,28,582600,4,1 ,27,4109,58320,22,8 ,3,28,582608,6,2 ,27,4107,58328,22,8 ,3,28,582616,4,1 ,27,4114,58336,28,8 ,3,28,582624,10,4 ,27,4128,58344,24,8 ,3,28,582632,4,1 ,27,4127,58352,24,8 ,3,28,582640,6,2 ,27,4118,58360,24,8 ,3,28,582648,4,1 ,27,4119,58368,24,8 ,3,28,582656,20,9 ,17,923,9495556,40,0 ,44,15152,1106948,64,0 ,27,4120,58376,24,8 ,3,28,582664,4,1 ,27,4121,58384,22,8 ,3,28,582672,6,2 ,27,4122,58392,24,8 ,3,28,582680,4,1 ,27,4123,58400,24,8 ,3,28,582688,6,2 ,20,16290,3204130,20,0 ,27,4124,58408,24,8 ,3,28,582696,4,1 ,27,4125,58416,24,8 ,3,28,582704,8,3 ,27,4106,58424,24,8 ,3,28,582712,4,1 ,27,4129,58432,22,8 ,3,28,582720,8,3 ,17,923,10019908,16,0 ,17,923,7922756,24,0 ,17,923,7398468,24,0 ,17,923,6874180,32,0 ,17,923,6349892,24,0 ,44,15152,58436,40,0 ,44,15152,3728452,48,0 ,27,4107,58440,22,8 ,3,28,582728,4,1 ,27,4106,58448,24,8 ,3,28,582736,22,10 ,27,4131,58456,24,8 ,3,28,582744,4,1 ,27,4149,58464,22,8 ,3,28,582752,6,2 ,20,22962,19981410,568,0 ,27,579,58472,24,8 ,3,28,582760,6,2 ,27,579,58480,25,8 ,3,28,582768,6,2 ,27,1421,58488,26,8 ,3,28,582776,10,3 ,27,1026,58496,24,8 ,3,28,582784,5,2 ,17,923,8447108,48,0 ,44,15152,582788,72,0 ,45,15153,5301380,16,0 ,27,1029,58504,26,8 ,3,28,582792,5,2 ,27,1057,58512,22,8 ,3,28,582800,10,4 ,27,1052,58520,24,8 ,3,28,582808,10,3 ,27,41,58528,23,8 ,3,28,582816,5,2 ,27,1364,58536,26,8 ,3,28,582824,5,2 ,27,1418,58544,26,8 ,3,28,582832,12,5 ,27,1040,58552,24,8 ,3,28,582840,7,2 ,27,1378,58560,24,8 ,3,28,582848,5,2 ,20,24167,22602946,124,0 ,20,16291,3204290,64,0 ,20,22003,17884354,372,0 ,20,22244,18408642,116,0 ,17,923,58563,16,0 ,17,923,10020036,32,0 ,27,4135,58568,24,8 ,3,28,582856,8,3 ,27,4134,58576,23,8 ,3,28,582864,10,4 ,27,4136,58584,26,8 ,3,28,582872,6,2 ,27,4138,58592,23,8 ,3,28,582880,10,4 ,20,16070,2155746,80,0 ,27,1043,58600,24,8 ,3,28,582888,4,1 ,27,4146,58608,24,8 ,3,28,582896,9,4 ,27,1730,58616,24,8 ,3,28,582904,12,5 ,27,1374,58624,24,8 ,3,28,582912,4,1 ,45,15153,5301508,24,0 ,17,923,7922948,16,0 ,17,923,7398660,24,0 ,17,923,6350084,24,0 ,44,15152,2680068,72,0 ,27,1731,58632,26,8 ,3,28,582920,7,2 ,27,295,58640,25,8 ,3,28,582928,32,15 ,27,1707,58648,26,8 ,3,28,582936,10,4 ,27,1358,58656,23,8 ,3,28,582944,12,5 ,20,18905,8971554,108,0 ,27,4141,58664,20,8 ,3,28,582952,10,4 ,27,4140,58672,28,8 ,3,28,582960,30,14 ,27,4140,58680,27,8 ,3,28,582968,58,28 ,27,4138,58688,23,8 ,3,28,582976,7,2 ,17,923,58691,16,0 ,17,923,9495876,24,0 ,17,923,6874436,32,0 ,44,15152,3204420,88,0 ,45,15153,4252996,16,0 ,17,923,8971588,40,0 ,27,1359,58696,23,8 ,3,28,582984,10,3 ,27,4142,58704,23,8 ,3,28,582992,10,3 ,27,1358,58712,23,8 ,3,28,583000,4,1 ,27,4141,58720,20,8 ,3,28,583008,7,2 ,20,18438,7923042,152,0 ,20,17719,6350178,124,0 ,27,4140,58728,28,8 ,3,28,583016,103,67 ,27,1039,58736,21,8 ,3,28,583024,4,1 ,27,1038,58744,26,8 ,3,28,583032,28,13 ,27,4140,58752,27,8 ,3,28,583040,7,2 ,44,15152,58756,16,0 ,17,923,7923076,32,0 ,44,15152,1631620,80,0 ,27,4138,58760,23,8 ,3,28,583048,5,2 ,27,1359,58768,23,8 ,3,28,583056,4,1 ,27,1038,58776,25,8 ,3,28,583064,18,8 ,27,1374,58784,24,8 ,3,28,583072,8,3 ,20,19937,11068834,148,0 ,20,15200,58786,12,0 ,27,4144,58792,24,8 ,3,28,583080,62,30 ,27,4141,58800,20,8 ,3,28,583088,10,4 ,27,4140,58808,28,8 ,3,28,583096,20,9 ,27,1038,58816,25,8 ,3,28,583104,7,2 ,17,923,58819,16,0 ,17,923,10020292,24,0 ,17,923,7398852,40,0 ,17,923,6350276,40,0 ,44,15152,3728836,24,0 ,45,15153,4253124,16,0 ,45,15153,5301700,40,0 ,27,1038,58824,26,8 ,3,28,583112,34,16 ,27,1359,58832,23,8 ,3,28,583120,11,4 ,27,1062,58840,21,8 ,3,28,583128,6,2 ,27,1750,58848,22,8 ,3,28,583136,4,1 ,20,16655,3728866,88,0 ,27,1039,58856,21,8 ,3,28,583144,25,8 ,27,1028,58864,24,8 ,3,28,583152,6,2 ,27,623,58872,23,8 ,3,28,583160,4,1 ,27,1358,58880,23,8 ,3,28,583168,8,3 ,20,15201,58882,236,0 ,17,923,9496068,24,0 ,44,15152,58884,16,0 ,44,15152,1107460,80,0 ,17,923,8447492,48,0 ,27,4140,58888,27,8 ,3,28,583176,6,2 ,27,1380,58896,22,8 ,3,28,583184,50,27 ,27,1040,58904,24,8 ,3,28,583192,7,2 ,27,1752,58912,22,8 ,3,28,583200,110,67 ,20,23274,20506146,72,0 ,27,253,58920,21,8 ,3,28,583208,6,2 ,27,1374,58928,24,8 ,3,28,583216,12,5 ,27,4148,58936,24,8 ,3,28,583224,7,2 ,27,4150,58944,24,8 ,3,28,583232,5,2 ,17,923,58947,16,0 ,45,15153,4777540,224,0 ,17,923,6874692,40,0 ,45,15153,4253252,56,0 ,27,4151,58952,24,8 ,3,28,583240,18,6 ,27,4114,58960,28,8 ,3,28,583248,76,37 ,27,4128,58968,26,8 ,3,28,583256,8,3 ,27,4152,58976,22,8 ,3,28,583264,6,2 ,27,4106,58984,24,8 ,3,28,583272,8,3 ,27,4107,58992,22,8 ,3,28,583280,29,10 ,27,4114,59000,28,8 ,3,28,583288,15,5 ,27,4108,59008,22,8 ,3,28,583296,8,3 ,17,923,10020484,32,0 ,17,923,7923332,24,0 ,44,15152,59012,32,0 ,44,15152,3729028,88,0 ,17,923,8971908,40,0 ,27,4114,59016,28,8 ,3,28,583304,9,3 ,27,4106,59024,24,8 ,3,28,583312,18,6 ,27,4155,59032,24,8 ,3,28,583320,9,3 ,27,4106,59040,24,8 ,3,28,583328,23,8 ,20,23691,21554850,312,0 ,20,15598,1107618,556,0 ,27,4114,59048,28,8 ,3,28,583336,12,4 ,27,4157,59056,22,8 ,3,28,583344,58,28 ,27,4158,59064,22,8 ,3,28,583352,18,7 ,27,4114,59072,28,8 ,3,28,583360,4,1 ,20,16292,3204802,208,0 ,17,923,59075,24,0 ,17,923,9496260,24,0 ,44,15152,583364,24,0 ,27,4106,59080,24,8 ,3,28,583368,6,2 ,27,4160,59088,22,8 ,3,28,583376,7,2 ,27,4161,59096,22,8 ,3,28,583384,14,6 ,27,41,59104,23,8 ,3,28,583392,4,1 ,20,25867,27322082,104,0 ,27,4107,59112,22,8 ,3,28,583400,6,2 ,27,4165,59120,24,8 ,3,28,583408,4,1 ,27,4164,59128,21,8 ,3,28,583416,13,4 ,27,4106,59136,24,8 ,3,28,583424,12,5 ,20,18180,7399170,48,0 ,45,15153,5302020,24,0 ,17,923,7399172,40,0 ,17,923,6350596,40,0 ,27,4166,59144,22,8 ,3,28,583432,4,1 ,27,3998,59152,22,8 ,3,28,583440,4,1 ,27,4167,59160,22,8 ,3,28,583448,4,1 ,27,4000,59168,22,8 ,3,28,583456,4,1 ,27,4001,59176,22,8 ,3,28,583464,8,3 ,27,4114,59184,28,8 ,3,28,583472,43,23 ,27,4168,59192,22,8 ,3,28,583480,4,1 ,27,4169,59200,24,8 ,3,28,583488,6,2 ,20,23498,21030722,84,0 ,44,15152,2680644,64,0 ,17,923,7923524,56,0 ,27,4114,59208,28,8 ,3,28,583496,4,1 ,27,4173,59216,26,8 ,3,28,583504,6,2 ,27,1562,59224,26,8 ,3,28,583512,4,1 ,27,41,59232,23,8 ,3,28,583520,6,2 ,20,20144,11593570,912,0 ,20,16071,2156386,80,0 ,27,4106,59240,24,8 ,3,28,583528,10,3 ,27,4114,59248,28,8 ,3,28,583536,8,3 ,27,4157,59256,22,8 ,3,28,583544,4,1 ,27,4176,59264,22,8 ,3,28,583552,20,9 ,20,26096,27846530,92,0 ,17,923,59267,16,0 ,17,923,10020740,24,0 ,17,923,6875012,40,0 ,44,15152,59268,56,0 ,44,15152,583556,72,0 ,17,923,8447876,24,0 ,17,923,9496452,24,0 ,27,4106,59272,24,8 ,3,28,583560,10,4 ,27,4114,59280,28,8 ,3,28,583568,4,1 ,27,4178,59288,22,8 ,3,28,583576,6,2 ,27,2366,59296,22,8 ,3,28,583584,4,1 ,20,21192,15787938,192,0 ,27,4010,59304,22,8 ,3,28,583592,9,4 ,27,4157,59312,22,8 ,3,28,583600,10,4 ,27,4176,59320,22,8 ,3,28,583608,4,1 ,27,4107,59328,22,8 ,3,28,583616,6,2 ,17,923,8972228,32,0 ,45,15153,5302212,56,0 ,27,4106,59336,24,8 ,3,28,583624,4,1 ,27,4114,59344,28,8 ,3,28,583632,10,3 ,27,4000,59352,22,8 ,3,28,583640,12,5 ,27,4001,59360,22,8 ,3,28,583648,6,2 ,27,4131,59368,24,8 ,3,28,583656,7,2 ,27,4152,59376,22,8 ,3,28,583664,6,2 ,27,1565,59384,24,8 ,3,28,583672,6,2 ,27,4183,59392,26,8 ,3,28,583680,4,1 ,20,24880,24700930,68,0 ,17,923,59395,32,0 ,45,15153,4253700,16,0 ,44,15152,1632260,24,0 ,44,15152,3205124,56,0 ,27,4184,59400,26,8 ,3,28,583688,9,4 ,27,1374,59408,22,8 ,3,28,583696,10,4 ,27,4185,59416,24,8 ,3,28,583704,4,1 ,27,4186,59424,24,8 ,3,28,583712,10,4 ,20,20492,13166626,80,0 ,27,4168,59432,22,8 ,3,28,583720,6,2 ,27,4187,59440,22,8 ,3,28,583728,8,3 ,27,4131,59448,24,8 ,3,28,583736,10,3 ,27,3999,59456,22,8 ,3,28,583744,5,2 ,17,923,10020932,32,0 ,17,923,7399492,32,0 ,17,923,6350916,24,0 ,17,923,8448068,32,0 ,17,923,9496644,40,0 ,27,4190,59464,22,8 ,3,28,583752,5,2 ,27,4191,59472,22,8 ,3,28,583760,4,1 ,27,4192,59480,24,8 ,3,28,583768,18,8 ,27,4194,59488,22,8 ,3,28,583776,4,1 ,20,23275,20506722,128,0 ,20,22245,18409570,428,0 ,27,4195,59496,22,8 ,3,28,583784,8,3 ,27,4197,59504,22,8 ,3,28,583792,6,2 ,27,4203,59512,24,8 ,3,28,583800,4,1 ,27,4198,59520,22,8 ,3,28,583808,11,4 ,20,18906,8972418,64,0 ,20,18181,7399554,372,0 ,45,15153,4253828,24,0 ,44,15152,1108100,80,0 ,27,4199,59528,22,8 ,3,28,583816,6,2 ,27,4204,59536,22,8 ,3,28,583824,4,1 ,27,4205,59544,22,8 ,3,28,583832,9,4 ,27,4206,59552,22,8 ,3,28,583840,19,9 ,20,24168,22603938,96,0 ,20,16656,3729570,136,0 ,27,2486,59560,26,8 ,3,28,583848,4,1 ,27,41,59568,23,8 ,3,28,583856,8,3 ,27,2488,59576,26,8 ,3,28,583864,4,1 ,27,4210,59584,22,8 ,3,28,583872,16,7 ,17,923,8972484,32,0 ,17,923,6875332,32,0 ,44,15152,1632452,56,0 ,27,2460,59592,26,8 ,3,28,583880,4,1 ,27,4211,59600,22,8 ,3,28,583888,10,4 ,27,2493,59608,26,8 ,3,28,583896,4,1 ,27,4214,59616,24,8 ,3,28,583904,8,3 ,20,20875,14215394,12,0 ,27,4215,59624,24,8 ,3,28,583912,4,1 ,27,4216,59632,24,8 ,3,28,583920,12,5 ,27,4076,59640,24,8 ,3,28,583928,24,8 ,27,4263,59648,22,8 ,3,28,583936,10,3 ,17,923,59651,24,0 ,44,15152,2156804,32,0 ,17,923,7923972,16,0 ,17,923,6351108,32,0 ,27,1274,59656,24,8 ,3,28,583944,17,8 ,27,4223,59664,24,8 ,3,28,583952,7,2 ,27,4221,59672,24,8 ,3,28,583960,22,10 ,27,4224,59680,24,8 ,3,28,583968,4,1 ,27,1404,59688,24,8 ,3,28,583976,32,15 ,27,4226,59696,27,8 ,3,28,583984,11,4 ,27,253,59704,21,8 ,3,28,583992,9,3 ,27,4148,59712,23,8 ,3,28,584000,4,1 ,20,20876,14215490,112,0 ,20,17720,6351170,12,0 ,17,923,10021188,24,0 ,17,923,7399748,40,0 ,44,15152,2681156,24,0 ,44,15152,59716,24,0 ,44,15152,3729732,24,0 ,45,15153,4254020,24,0 ,17,923,8448324,40,0 ,27,4227,59720,24,8 ,3,28,584008,9,4 ,27,4228,59728,24,8 ,3,28,584016,10,4 ,27,4229,59736,24,8 ,3,28,584024,4,1 ,27,295,59744,23,8 ,3,28,584032,8,3 ,27,812,59752,23,8 ,3,28,584040,10,4 ,27,1565,59760,24,8 ,3,28,584048,4,1 ,27,1562,59768,26,8 ,3,28,584056,9,4 ,27,4239,59776,21,8 ,3,28,584064,10,4 ,17,923,9496964,32,0 ,17,923,7924100,40,0 ,45,15153,5302660,24,0 ,27,4231,59784,22,8 ,3,28,584072,4,1 ,27,4233,59792,22,8 ,3,28,584080,7,2 ,27,4235,59800,22,8 ,3,28,584088,24,11 ,27,4237,59808,23,8 ,3,28,584096,6,2 ,20,17721,6351266,124,0 ,27,4240,59816,21,8 ,3,28,584104,6,2 ,27,4241,59824,23,8 ,3,28,584112,4,1 ,27,4242,59832,24,8 ,3,28,584120,8,3 ,27,4245,59840,21,8 ,3,28,584128,10,4 ,20,973,59841,564,0 ,17,923,59843,16,0 ,17,923,8972740,56,0 ,17,923,6875588,40,0 ,44,15152,584132,32,0 ,44,15152,3205572,32,0 ,27,4243,59848,22,8 ,3,28,584136,16,7 ,27,4249,59856,21,8 ,3,28,584144,144,67 ,27,4247,59864,22,8 ,3,28,584152,14,5 ,27,4246,59872,20,8 ,3,28,584160,4,1 ,20,23499,21031394,64,0 ,20,16072,2157026,128,0 ,27,4252,59880,21,8 ,3,28,584168,9,4 ,27,4250,59888,22,8 ,3,28,584176,10,4 ,27,4253,59896,22,8 ,3,28,584184,4,1 ,27,4085,59904,24,8 ,3,28,584192,6,2 ,17,923,10021380,24,0 ,17,923,6351364,40,0 ,44,15152,2681348,72,0 ,44,15152,2157060,24,0 ,44,15152,59908,24,0 ,44,15152,3729924,24,0 ,45,15153,4254212,32,0 ,27,41,59912,23,8 ,3,28,584200,14,5 ,27,2312,59920,22,8 ,3,28,584208,4,1 ,27,4254,59928,24,8 ,3,28,584216,4,1 ,27,1657,59936,22,8 ,3,28,584224,9,4 ,20,21788,16837154,148,0 ,20,25868,27322914,92,0 ,20,24881,24701474,76,0 ,20,18439,7924258,96,0 ,27,1364,59944,26,8 ,3,28,584232,19,9 ,27,1043,59952,24,8 ,3,28,584240,14,5 ,27,4257,59960,22,8 ,3,28,584248,4,1 ,27,253,59968,21,8 ,3,28,584256,6,2 ,20,19938,11070018,56,0 ,20,18645,8448578,12,0 ,17,923,59971,16,0 ,45,15153,5302852,24,0 ,27,4258,59976,22,8 ,3,28,584264,4,1 ,27,4259,59984,24,8 ,3,28,584272,13,4 ,27,4261,59992,26,8 ,3,28,584280,16,7 ,27,4262,60000,22,8 ,3,28,584288,10,4 ,20,26097,27847266,244,0 ,27,4085,60008,23,8 ,3,28,584296,15,5 ,27,4264,60016,22,8 ,3,28,584304,14,5 ,27,4266,60024,26,8 ,3,28,584312,4,1 ,27,4268,60032,22,8 ,3,28,584320,12,5 ,20,18907,8972930,92,0 ,17,923,9497220,40,0 ,17,923,7400068,24,0 ,44,15152,1632900,80,0 ,17,923,8448644,24,0 ,27,4267,60040,22,8 ,3,28,584328,4,1 ,27,4271,60048,22,8 ,3,28,584336,6,2 ,27,4269,60056,23,8 ,3,28,584344,4,1 ,27,4269,60064,24,8 ,3,28,584352,10,3 ,20,24500,23653026,268,0 ,20,18646,8448674,96,0 ,20,20493,13167266,12,0 ,27,4270,60072,22,8 ,3,28,584360,18,8 ,27,4272,60080,22,8 ,3,28,584368,7,2 ,27,4275,60088,22,8 ,3,28,584376,12,5 ,27,4273,60096,23,8 ,3,28,584384,4,1 ,17,923,60099,32,0 ,17,923,10021572,32,0 ,17,923,7924420,48,0 ,44,15152,2157252,24,0 ,44,15152,60100,24,0 ,44,15152,584388,112,0 ,44,15152,3205828,24,0 ,44,15152,3730116,160,0 ,27,4273,60104,24,8 ,3,28,584392,11,4 ,27,4274,60112,22,8 ,3,28,584400,26,13 ,27,4276,60120,22,8 ,3,28,584408,4,1 ,27,4277,60128,22,8 ,3,28,584416,10,4 ,27,4278,60136,24,8 ,3,28,584424,10,4 ,27,4280,60144,24,8 ,3,28,584432,10,4 ,27,1565,60152,24,8 ,3,28,584440,7,2 ,27,4281,60160,24,8 ,3,28,584448,26,12 ,20,20494,13167362,84,0 ,45,15153,5303044,16,0 ,17,923,6875908,40,0 ,44,15152,1108740,56,0 ,45,15153,4254468,24,0 ,27,4282,60168,24,8 ,3,28,584456,4,1 ,27,4283,60176,22,8 ,3,28,584464,4,1 ,27,41,60184,25,8 ,3,28,584472,9,4 ,27,4284,60192,22,8 ,3,28,584480,15,7 ,27,4287,60200,26,8 ,3,28,584488,7,2 ,27,4287,60208,27,8 ,3,28,584496,10,4 ,27,4288,60216,22,8 ,3,28,584504,7,2 ,27,4289,60224,26,8 ,3,28,584512,7,2 ,17,923,8448836,24,0 ,17,923,7400260,64,0 ,17,923,6351684,40,0 ,27,4290,60232,24,8 ,3,28,584520,6,2 ,27,4291,60240,23,8 ,3,28,584528,8,3 ,27,4291,60248,24,8 ,3,28,584536,4,1 ,27,4292,60256,24,8 ,3,28,584544,9,4 ,27,4293,60264,22,8 ,3,28,584552,15,7 ,27,4294,60272,23,8 ,3,28,584560,4,1 ,27,4294,60280,24,8 ,3,28,584568,32,15 ,27,4295,60288,23,8 ,3,28,584576,15,5 ,20,26269,28371842,264,0 ,17,923,8973188,24,0 ,44,15152,2157444,48,0 ,44,15152,60292,96,0 ,44,15152,3206020,40,0 ,45,15153,5303172,24,0 ,27,4295,60296,24,8 ,3,28,584584,12,4 ,27,4296,60304,24,8 ,3,28,584592,4,1 ,27,4297,60312,21,8 ,3,28,584600,4,1 ,27,4298,60320,22,8 ,3,28,584608,8,3 ,20,24169,22604706,156,0 ,27,4299,60328,22,8 ,3,28,584616,7,2 ,27,4301,60336,22,8 ,3,28,584624,10,4 ,27,4300,60344,22,8 ,3,28,584632,4,1 ,27,4302,60352,22,8 ,3,28,584640,18,8 ,17,923,60355,16,0 ,17,923,10021828,32,0 ,45,15153,4254660,160,0 ,17,923,9497540,40,0 ,27,3999,60360,22,8 ,3,28,584648,6,2 ,27,4303,60368,21,8 ,3,28,584656,11,4 ,27,4304,60376,22,8 ,3,28,584664,4,1 ,27,4305,60384,24,8 ,3,28,584672,8,3 ,20,23500,21031906,64,0 ,27,4306,60392,22,8 ,3,28,584680,10,3 ,27,3998,60400,22,8 ,3,28,584688,8,3 ,27,4001,60408,22,8 ,3,28,584696,4,1 ,27,4307,60416,22,8 ,3,28,584704,9,4 ,20,19939,11070466,76,0 ,17,923,8449028,56,0 ,27,4308,60424,24,8 ,3,28,584712,6,2 ,27,4309,60432,24,8 ,3,28,584720,6,2 ,27,4310,60440,22,8 ,3,28,584728,6,2 ,27,4311,60448,22,8 ,3,28,584736,4,1 ,20,25116,25226274,24,0 ,27,4312,60456,22,8 ,3,28,584744,9,4 ,27,4313,60464,24,8 ,3,28,584752,12,5 ,27,4314,60472,21,8 ,3,28,584760,4,1 ,27,4315,60480,20,8 ,3,28,584768,13,4 ,20,19098,9497666,56,0 ,17,923,60483,24,0 ,17,923,8973380,56,0 ,17,923,7924804,40,0 ,17,923,6876228,32,0 ,44,15152,2681924,48,0 ,45,15153,5303364,16,0 ,27,4316,60488,22,8 ,3,28,584776,14,6 ,27,2398,60496,24,8 ,3,28,584784,17,6 ,27,4319,60504,22,8 ,3,28,584792,14,5 ,27,4320,60512,22,8 ,3,28,584800,4,1 ,20,23276,20507746,136,0 ,27,4321,60520,22,8 ,3,28,584808,4,1 ,27,4323,60528,22,8 ,3,28,584816,8,3 ,27,4325,60536,24,8 ,3,28,584824,16,5 ,27,4326,60544,23,8 ,3,28,584832,15,7 ,20,24882,24702082,60,0 ,17,923,6352004,24,0 ,27,4327,60552,22,8 ,3,28,584840,4,1 ,27,4328,60560,23,8 ,3,28,584848,10,4 ,27,4329,60568,22,8 ,3,28,584856,4,1 ,27,4330,60576,23,8 ,3,28,584864,40,19 ,27,4331,60584,21,8 ,3,28,584872,4,1 ,27,1600,60592,26,8 ,3,28,584880,21,8 ,27,1565,60600,24,8 ,3,28,584888,24,12 ,27,41,60608,25,8 ,3,28,584896,4,1 ,20,20877,14216386,4636,0 ,17,923,10022084,24,0 ,44,15152,1109188,40,0 ,44,15152,3206340,32,0 ,45,15153,5303492,80,0 ,27,1274,60616,24,8 ,3,28,584904,4,1 ,27,4337,60624,24,8 ,3,28,584912,6,2 ,27,41,60632,23,8 ,3,28,584920,4,1 ,27,1565,60640,24,8 ,3,28,584928,12,5 ,20,16657,3730658,60,0 ,20,25117,25226466,24,0 ,27,1562,60648,26,8 ,3,28,584936,7,2 ,27,4348,60656,22,8 ,3,28,584944,16,7 ,27,4350,60664,22,8 ,3,28,584952,4,1 ,27,4354,60672,24,8 ,3,28,584960,4,1 ,20,25869,27323650,92,0 ,17,923,60675,16,0 ,17,923,9497860,48,0 ,44,15152,2157828,144,0 ,44,15152,1633540,16,0 ,27,4355,60680,26,8 ,3,28,584968,71,32 ,27,4356,60688,21,8 ,3,28,584976,47,25 ,27,1565,60696,24,8 ,3,28,584984,4,1 ,27,4357,60704,22,8 ,3,28,584992,6,2 ,20,18440,7925026,172,0 ,27,1707,60712,26,8 ,3,28,585000,4,1 ,27,41,60720,23,8 ,3,28,585008,9,4 ,27,295,60728,23,8 ,3,28,585016,10,3 ,27,812,60736,23,8 ,3,28,585024,8,3 ,20,16293,3206466,12,0 ,45,15153,4779332,256,0 ,17,923,7400772,40,0 ,17,923,6876484,48,0 ,17,923,6352196,24,0 ,27,1562,60744,26,8 ,3,28,585032,4,1 ,27,3135,60752,23,8 ,3,28,585040,10,4 ,27,4001,60760,22,8 ,3,28,585048,6,2 ,27,4365,60768,24,8 ,3,28,585056,33,16 ,20,18908,8973666,124,0 ,20,15202,60770,72,0 ,27,1562,60776,24,8 ,3,28,585064,4,1 ,27,4000,60784,22,8 ,3,28,585072,10,4 ,27,4367,60792,26,8 ,3,28,585080,7,2 ,27,4002,60800,22,8 ,3,28,585088,5,2 ,20,17722,6352258,92,0 ,17,923,60803,16,0 ,17,923,10022276,24,0 ,17,923,7925124,40,0 ,44,15152,1633668,16,0 ,27,4368,60808,24,8 ,3,28,585096,6,2 ,27,4369,60816,24,8 ,3,28,585104,4,1 ,27,1600,60824,26,8 ,3,28,585112,6,2 ,27,4371,60832,20,8 ,3,28,585120,4,1 ,20,21193,15789474,192,0 ,20,25118,25226658,24,0 ,20,16294,3206562,128,0 ,20,18647,8449442,384,0 ,20,20495,13168034,440,0 ,27,4298,60840,22,8 ,3,28,585128,7,2 ,27,4372,60848,22,8 ,3,28,585136,22,10 ,27,4129,60856,22,8 ,3,28,585144,10,4 ,27,4373,60864,22,8 ,3,28,585152,4,1 ,17,923,8449476,32,0 ,44,15152,2682308,24,0 ,44,15152,3206596,24,0 ,27,4376,60872,24,8 ,3,28,585160,9,4 ,27,163,60880,22,8 ,3,28,585168,10,4 ,27,4377,60888,24,8 ,3,28,585176,7,2 ,27,4587,60896,24,8 ,3,28,585184,6,2 ,20,23501,21032418,44,0 ,20,16073,2158050,148,0 ,27,4381,60904,26,8 ,3,28,585192,4,1 ,27,295,60912,23,8 ,3,28,585200,9,4 ,27,4382,60920,25,8 ,3,28,585208,10,4 ,27,4383,60928,24,8 ,3,28,585216,4,1 ,20,20922,15265282,12,0 ,20,25678,26799618,228,0 ,20,19099,9498114,204,0 ,17,923,60931,32,0 ,17,923,8973828,32,0 ,17,923,6352388,24,0 ,44,15152,1633796,24,0 ,44,15152,1109508,32,0 ,27,4384,60936,24,8 ,3,28,585224,7,2 ,27,2026,60944,24,8 ,3,28,585232,22,10 ,27,4403,60952,24,8 ,3,28,585240,4,1 ,27,1034,60960,26,8 ,3,28,585248,9,4 ,27,579,60968,24,8 ,3,28,585256,10,4 ,27,579,60976,25,8 ,3,28,585264,4,1 ,27,1770,60984,26,8 ,3,28,585272,13,4 ,27,178,60992,23,8 ,3,28,585280,10,4 ,20,21954,17362498,400,0 ,20,17990,6876738,324,0 ,17,923,10022468,24,0 ,44,15152,585284,32,0 ,27,1037,61000,26,8 ,3,28,585288,6,2 ,27,445,61008,23,8 ,3,28,585296,6,2 ,27,1771,61016,26,8 ,3,28,585304,10,4 ,27,204,61024,23,8 ,3,28,585312,7,2 ,20,20923,15265378,12,0 ,20,25119,25226850,84,0 ,20,24883,24702562,416,0 ,20,19940,11071074,152,0 ,27,1034,61032,26,8 ,3,28,585320,7,2 ,27,579,61040,24,8 ,3,28,585328,24,11 ,27,579,61048,25,8 ,3,28,585336,4,1 ,27,1062,61056,21,8 ,3,28,585344,8,3 ,17,923,9498244,40,0 ,17,923,7401092,24,0 ,44,15152,2682500,24,0 ,44,15152,61060,24,0 ,44,15152,3206788,24,0 ,27,4389,61064,27,8 ,3,28,585352,6,2 ,27,1993,61072,24,8 ,3,28,585360,24,11 ,27,1973,61080,24,8 ,3,28,585368,6,2 ,27,4390,61088,24,8 ,3,28,585376,4,1 ,20,20717,13692578,148,0 ,20,17326,5303970,60,0 ,27,4391,61096,24,8 ,3,28,585384,9,4 ,27,4392,61104,24,8 ,3,28,585392,34,17 ,27,4393,61112,24,8 ,3,28,585400,10,4 ,27,1770,61120,26,8 ,3,28,585408,6,2 ,20,21789,16838338,356,0 ,20,16658,3731138,128,0 ,20,20924,15265474,136,0 ,17,923,8449732,40,0 ,17,923,7925444,56,0 ,17,923,6876868,40,0 ,17,923,6352580,24,0 ,44,15152,1633988,24,0 ,27,178,61128,23,8 ,3,28,585416,6,2 ,27,1037,61136,26,8 ,3,28,585424,4,1 ,27,445,61144,23,8 ,3,28,585432,16,7 ,27,1771,61152,26,8 ,3,28,585440,12,5 ,27,204,61160,23,8 ,3,28,585448,12,5 ,27,1034,61168,26,8 ,3,28,585456,4,1 ,27,579,61176,24,8 ,3,28,585464,34,16 ,27,579,61184,25,8 ,3,28,585472,7,2 ,17,923,61187,24,0 ,17,923,10022660,24,0 ,44,15152,1109764,32,0 ,17,923,8974084,56,0 ,27,1062,61192,21,8 ,3,28,585480,20,9 ,27,1993,61200,24,8 ,3,28,585488,6,2 ,27,1973,61208,24,8 ,3,28,585496,8,3 ,27,4392,61216,24,8 ,3,28,585504,8,3 ,27,1309,61224,26,8 ,3,28,585512,4,1 ,27,1240,61232,26,8 ,3,28,585520,9,4 ,27,1993,61240,24,8 ,3,28,585528,10,4 ,27,178,61248,23,8 ,3,28,585536,4,1 ,20,23502,21032770,64,0 ,45,15153,5304132,16,0 ,17,923,7401284,32,0 ,44,15152,2682692,24,0 ,44,15152,61252,24,0 ,44,15152,585540,24,0 ,44,15152,3206980,128,0 ,27,4392,61256,26,8 ,3,28,585544,7,2 ,27,1062,61264,21,8 ,3,28,585552,8,3 ,27,295,61272,23,8 ,3,28,585560,4,1 ,27,812,61280,23,8 ,3,28,585568,9,4 ,27,41,61288,23,8 ,3,28,585576,38,20 ,27,1973,61296,24,8 ,3,28,585584,30,14 ,27,4390,61304,24,8 ,3,28,585592,8,3 ,27,4400,61312,24,8 ,3,28,585600,4,1 ,44,15152,1634180,40,0 ,17,923,6352772,48,0 ,27,4401,61320,24,8 ,3,28,585608,9,4 ,27,4404,61328,26,8 ,3,28,585616,10,4 ,27,4405,61336,23,8 ,3,28,585624,7,2 ,27,41,61344,23,8 ,3,28,585632,10,3 ,20,15203,61346,108,0 ,27,4406,61352,24,8 ,3,28,585640,12,5 ,27,4407,61360,26,8 ,3,28,585648,4,1 ,27,4408,61368,23,8 ,3,28,585656,9,4 ,27,178,61376,23,8 ,3,28,585664,10,4 ,17,923,61379,16,0 ,17,923,10022852,40,0 ,44,15152,3731396,40,0 ,45,15153,5304260,24,0 ,17,923,9498564,40,0 ,27,4409,61384,23,8 ,3,28,585672,7,2 ,27,4410,61392,23,8 ,3,28,585680,7,2 ,27,4411,61400,23,8 ,3,28,585688,6,2 ,27,4412,61408,24,8 ,3,28,585696,10,4 ,20,25870,27324386,92,0 ,27,4413,61416,24,8 ,3,28,585704,4,1 ,27,4414,61424,24,8 ,3,28,585712,9,4 ,27,4389,61432,27,8 ,3,28,585720,10,4 ,27,4419,61440,23,8 ,3,28,585728,7,2 ,17,923,8450052,48,0 ,17,923,6877188,48,0 ,44,15152,2682884,64,0 ,44,15152,61444,48,0 ,44,15152,585732,32,0 ,44,15152,1110020,96,0 ,27,812,61448,23,8 ,3,28,585736,7,2 ,27,4420,61456,24,8 ,3,28,585744,10,4 ,27,4421,61464,24,8 ,3,28,585752,7,2 ,27,4422,61472,23,8 ,3,28,585760,14,6 ,27,4423,61480,24,8 ,3,28,585768,46,25 ,27,1973,61488,24,8 ,3,28,585776,6,2 ,27,4424,61496,23,8 ,3,28,585784,6,2 ,27,4425,61504,24,8 ,3,28,585792,12,5 ,20,17114,4780098,156,0 ,17,923,61507,24,0 ,17,923,7401540,24,0 ,27,41,61512,23,8 ,3,28,585800,6,2 ,27,4433,61520,26,8 ,3,28,585808,12,5 ,27,4434,61528,26,8 ,3,28,585816,6,2 ,27,4435,61536,26,8 ,3,28,585824,6,2 ,20,23692,21557346,816,0 ,20,17723,6352994,180,0 ,20,22004,17887330,188,0 ,27,4436,61544,23,8 ,3,28,585832,6,2 ,27,4000,61552,22,8 ,3,28,585840,8,3 ,27,4439,61560,24,8 ,3,28,585848,11,4 ,27,4186,61568,26,8 ,3,28,585856,6,2 ,20,24170,22605954,128,0 ,20,17327,5304450,416,0 ,45,15153,5304452,16,0 ,17,923,7925892,48,0 ,27,4441,61576,24,8 ,3,28,585864,10,4 ,27,4185,61584,26,8 ,3,28,585872,6,2 ,27,41,61592,23,8 ,3,28,585880,6,2 ,27,3875,61600,24,8 ,3,28,585888,7,2 ,20,23277,20508834,72,0 ,27,41,61608,23,8 ,3,28,585896,49,16 ,27,295,61616,23,8 ,3,28,585904,213,131 ,27,812,61624,23,8 ,3,28,585912,10,4 ,27,4449,61632,22,8 ,3,28,585920,7,2 ,17,923,8974532,24,0 ,44,15152,1634500,80,0 ,45,15153,4255940,16,0 ,27,4452,61640,26,8 ,3,28,585928,4,1 ,27,4453,61648,26,8 ,3,28,585936,22,10 ,27,3992,61656,27,8 ,3,28,585944,8,3 ,27,3992,61664,28,8 ,3,28,585952,7,2 ,27,3993,61672,21,8 ,3,28,585960,18,8 ,27,4454,61680,24,8 ,3,28,585968,8,3 ,27,4455,61688,20,8 ,3,28,585976,8,3 ,27,4316,61696,24,8 ,3,28,585984,20,9 ,20,25120,25227522,184,0 ,17,923,61699,16,0 ,17,923,10023172,32,0 ,17,923,7401732,24,0 ,17,923,6353156,24,0 ,44,15152,585988,24,0 ,44,15152,3731716,32,0 ,45,15153,5304580,24,0 ,17,923,9498884,48,0 ,27,4456,61704,24,8 ,3,28,585992,6,2 ,27,4456,61712,26,8 ,3,28,586000,8,3 ,27,4459,61720,26,8 ,3,28,586008,12,5 ,27,4461,61728,21,8 ,3,28,586016,8,3 ,20,25336,25751842,568,0 ,27,4460,61736,26,8 ,3,28,586024,150,74 ,27,4462,61744,24,8 ,3,28,586032,6,2 ,27,4463,61752,22,8 ,3,28,586040,12,5 ,27,4288,61760,22,8 ,3,28,586048,6,2 ,20,23503,21033282,260,0 ,20,18909,8974658,88,0 ,45,15153,4256068,32,0 ,27,4460,61768,24,8 ,3,28,586056,4,1 ,27,4309,61776,24,8 ,3,28,586064,9,4 ,27,4464,61784,24,8 ,3,28,586072,10,4 ,27,4295,61792,23,8 ,3,28,586080,7,2 ,27,4295,61800,24,8 ,3,28,586088,10,4 ,27,4465,61808,24,8 ,3,28,586096,6,2 ,27,4466,61816,21,8 ,3,28,586104,4,1 ,27,4467,61824,26,8 ,3,28,586112,9,4 ,17,923,61827,40,0 ,17,923,8974724,56,0 ,17,923,6877572,40,0 ,44,15152,2158980,40,0 ,44,15152,61828,16,0 ,17,923,8450436,32,0 ,27,4314,61832,21,8 ,3,28,586120,10,4 ,27,4468,61840,24,8 ,3,28,586128,7,2 ,27,4468,61848,26,8 ,3,28,586136,7,2 ,27,4469,61856,24,8 ,3,28,586144,14,6 ,20,16295,3207586,44,0 ,27,4470,61864,24,8 ,3,28,586152,25,13 ,27,4471,61872,22,8 ,3,28,586160,7,2 ,27,4316,61880,23,8 ,3,28,586168,105,67 ,27,4472,61888,24,8 ,3,28,586176,66,32 ,45,15153,5304772,24,0 ,17,923,7401924,24,0 ,17,923,6353348,48,0 ,44,15152,586180,24,0 ,27,4474,61896,21,8 ,3,28,586184,4,1 ,27,4473,61904,26,8 ,3,28,586192,9,4 ,27,4475,61912,23,8 ,3,28,586200,10,4 ,27,4476,61920,21,8 ,3,28,586208,7,2 ,27,4477,61928,24,8 ,3,28,586216,7,2 ,27,4478,61936,24,8 ,3,28,586224,16,7 ,27,4473,61944,24,8 ,3,28,586232,4,1 ,27,4479,61952,24,8 ,3,28,586240,9,4 ,20,26098,27849218,96,0 ,17,923,10023428,24,0 ,17,923,7926276,24,0 ,44,15152,2683396,24,0 ,44,15152,61956,56,0 ,44,15152,3731972,24,0 ,27,4321,61960,22,8 ,3,28,586248,10,4 ,27,4298,61968,22,8 ,3,28,586256,7,2 ,27,4002,61976,22,8 ,3,28,586264,6,2 ,27,4000,61984,22,8 ,3,28,586272,4,1 ,27,4001,61992,22,8 ,3,28,586280,9,4 ,27,4481,62000,22,8 ,3,28,586288,37,12 ,27,4482,62008,24,8 ,3,28,586296,34,16 ,27,4483,62016,23,8 ,3,28,586304,6,2 ,45,15153,4256324,64,0 ,27,41,62024,23,8 ,3,28,586312,82,39 ,27,4485,62032,24,8 ,3,28,586320,4,1 ,27,4288,62040,22,8 ,3,28,586328,7,2 ,27,4489,62048,24,8 ,3,28,586336,22,10 ,27,4294,62056,22,8 ,3,28,586344,10,4 ,27,3993,62064,21,8 ,3,28,586352,10,4 ,27,3992,62072,28,8 ,3,28,586360,14,6 ,27,3992,62080,27,8 ,3,28,586368,14,6 ,20,18441,7926402,968,0 ,20,16074,2159234,128,0 ,17,923,9499268,32,0 ,17,923,7402116,24,0 ,44,15152,586372,40,0 ,45,15153,5304964,24,0 ,17,923,8450692,32,0 ,27,4491,62088,26,8 ,3,28,586376,6,2 ,27,4518,62096,22,8 ,3,28,586384,8,3 ,27,4505,62104,22,8 ,3,28,586392,4,1 ,27,4492,62112,24,8 ,3,28,586400,9,4 ,27,812,62120,23,8 ,3,28,586408,10,4 ,27,295,62128,23,8 ,3,28,586416,7,2 ,27,41,62136,23,8 ,3,28,586424,4,1 ,27,4494,62144,24,8 ,3,28,586432,9,4 ,20,16659,3732162,96,0 ,20,25871,27325122,92,0 ,17,923,62147,16,0 ,17,923,10023620,40,0 ,17,923,7926468,80,0 ,17,923,6877892,40,0 ,44,15152,2683588,16,0 ,44,15152,2159300,96,0 ,44,15152,3732164,32,0 ,27,41,62152,23,8 ,3,28,586440,10,4 ,27,4502,62160,23,8 ,3,28,586448,4,1 ,27,4503,62168,23,8 ,3,28,586456,7,2 ,27,4517,62176,20,8 ,3,28,586464,12,5 ,20,23278,20509410,80,0 ,27,4517,62184,20,8 ,3,28,586472,4,1 ,27,41,62192,23,8 ,3,28,586480,9,4 ,27,4582,62200,21,8 ,3,28,586488,10,4 ,27,4581,62208,26,8 ,3,28,586496,4,1 ,20,24501,23655170,120,0 ,20,15204,62210,44,0 ,20,16296,3207938,100,0 ,20,19351,10023682,784,0 ,20,20925,15266562,424,0 ,44,15152,1110788,32,0 ,27,295,62216,23,8 ,3,28,586504,7,2 ,27,812,62224,23,8 ,3,28,586512,12,5 ,27,4523,62232,24,8 ,3,28,586520,6,2 ,27,4524,62240,24,8 ,3,28,586528,4,1 ,20,19941,11072290,228,0 ,27,2312,62248,22,8 ,3,28,586536,9,4 ,27,4526,62256,24,8 ,3,28,586544,10,4 ,27,4529,62264,24,8 ,3,28,586552,7,2 ,27,809,62272,23,8 ,3,28,586560,7,2 ,20,20718,13693762,416,0 ,17,923,62275,16,0 ,17,923,8975172,32,0 ,17,923,7402308,40,0 ,17,923,6353732,48,0 ,44,15152,2683716,32,0 ,44,15152,1635140,64,0 ,44,15152,3208004,32,0 ,45,15153,5305156,16,0 ,27,1200,62280,24,8 ,3,28,586568,18,8 ,27,4524,62288,24,8 ,3,28,586576,6,2 ,27,4523,62296,23,8 ,3,28,586584,10,4 ,27,41,62304,25,8 ,3,28,586592,4,1 ,27,4547,62312,22,8 ,3,28,586600,9,4 ,27,4523,62320,23,8 ,3,28,586608,10,4 ,27,41,62328,23,8 ,3,28,586616,7,2 ,27,4524,62336,24,8 ,3,28,586624,4,1 ,17,923,9499524,40,0 ,17,923,8450948,24,0 ,27,1993,62344,24,8 ,3,28,586632,9,4 ,27,4541,62352,26,8 ,3,28,586640,10,4 ,27,4546,62360,23,8 ,3,28,586648,4,1 ,27,4548,62368,24,8 ,3,28,586656,7,2 ,20,21194,15791010,140,0 ,27,4549,62376,22,8 ,3,28,586664,12,5 ,27,4551,62384,24,8 ,3,28,586672,6,2 ,27,4550,62392,24,8 ,3,28,586680,4,1 ,27,41,62400,23,8 ,3,28,586688,9,4 ,20,26270,28373954,512,0 ,17,923,62403,16,0 ,45,15153,5305284,24,0 ,44,15152,62404,80,0 ,44,15152,586692,32,0 ,44,15152,3732420,24,0 ,27,4546,62408,24,8 ,3,28,586696,10,4 ,27,4553,62416,24,8 ,3,28,586704,4,1 ,27,4554,62424,24,8 ,3,28,586712,7,2 ,27,4555,62432,23,8 ,3,28,586720,20,9 ,27,4549,62440,22,8 ,3,28,586728,4,1 ,27,4557,62448,22,8 ,3,28,586736,9,4 ,27,4558,62456,23,8 ,3,28,586744,10,4 ,27,4562,62464,21,8 ,3,28,586752,4,1 ,20,18910,8975362,284,0 ,17,923,10023940,32,0 ,17,923,6878212,32,0 ,44,15152,1111044,24,0 ,27,4561,62472,24,8 ,3,28,586760,7,2 ,27,4563,62480,22,8 ,3,28,586768,14,6 ,27,4561,62488,23,8 ,3,28,586776,4,1 ,27,4564,62496,24,8 ,3,28,586784,9,4 ,20,18182,7402530,204,0 ,27,4565,62504,24,8 ,3,28,586792,10,4 ,27,4566,62512,22,8 ,3,28,586800,4,1 ,27,4567,62520,22,8 ,3,28,586808,10,3 ,27,4568,62528,24,8 ,3,28,586816,12,5 ,17,923,62531,24,0 ,17,923,8975428,56,0 ,44,15152,2683972,32,0 ,44,15152,3208260,32,0 ,45,15153,4256836,192,0 ,17,923,8451140,56,0 ,27,4570,62536,22,8 ,3,28,586824,8,3 ,27,4569,62544,21,8 ,3,28,586832,4,1 ,27,2312,62552,22,8 ,3,28,586840,9,4 ,27,4572,62560,23,8 ,3,28,586848,10,4 ,20,19100,9499746,168,0 ,20,15205,62562,304,0 ,27,4577,62568,23,8 ,3,28,586856,7,2 ,27,163,62576,22,8 ,3,28,586864,7,2 ,27,4578,62584,23,8 ,3,28,586872,6,2 ,27,163,62592,22,8 ,3,28,586880,4,1 ,20,24171,22606978,5588,0 ,45,15153,5305476,16,0 ,17,923,7402628,24,0 ,44,15152,3732612,72,0 ,27,4579,62600,23,8 ,3,28,586888,9,4 ,27,163,62608,22,8 ,3,28,586896,10,4 ,27,4583,62616,22,8 ,3,28,586904,7,2 ,27,4581,62624,25,8 ,3,28,586912,7,2 ,27,4308,62632,24,8 ,3,28,586920,6,2 ,27,4584,62640,22,8 ,3,28,586928,8,3 ,27,4477,62648,24,8 ,3,28,586936,4,1 ,27,4462,62656,24,8 ,3,28,586944,9,4 ,17,923,9499844,24,0 ,17,923,6354116,40,0 ,44,15152,586948,24,0 ,44,15152,1111236,32,0 ,27,4463,62664,22,8 ,3,28,586952,10,4 ,27,4585,62672,22,8 ,3,28,586960,7,2 ,27,4589,62680,22,8 ,3,28,586968,4,1 ,27,4588,62688,22,8 ,3,28,586976,9,4 ,27,8562,62696,20,8 ,3,28,586984,10,4 ,27,8561,62704,24,8 ,3,28,586992,4,1 ,27,4590,62712,22,8 ,3,28,587000,7,2 ,27,8555,62720,26,8 ,3,28,587008,6,2 ,20,26099,27849986,276,0 ,17,923,62723,32,0 ,17,923,10024196,56,0 ,17,923,6878468,40,0 ,45,15153,5305604,16,0 ,27,41,62728,23,8 ,3,28,587016,4,1 ,27,295,62736,23,8 ,3,28,587024,9,4 ,27,812,62744,23,8 ,3,28,587032,10,4 ,27,1562,62752,26,8 ,3,28,587040,4,1 ,20,17115,4781346,1212,0 ,20,25679,26801442,256,0 ,27,4593,62760,22,8 ,3,28,587048,7,2 ,27,4595,62768,24,8 ,3,28,587056,8,3 ,27,4596,62776,24,8 ,3,28,587064,86,42 ,27,4597,62784,24,8 ,3,28,587072,4,1 ,45,15153,4781380,224,0 ,17,923,7927108,24,0 ,17,923,7402820,40,0 ,44,15152,2684228,32,0 ,44,15152,1635652,40,0 ,44,15152,3208516,64,0 ,27,4598,62792,22,8 ,3,28,587080,9,4 ,27,4599,62800,22,8 ,3,28,587088,19,9 ,27,4601,62808,26,8 ,3,28,587096,7,2 ,27,4602,62816,21,8 ,3,28,587104,4,1 ,20,23279,20510050,132,0 ,27,4604,62824,22,8 ,3,28,587112,9,4 ,27,163,62832,24,8 ,3,28,587120,17,8 ,27,4606,62840,24,8 ,3,28,587128,4,1 ,27,4607,62848,25,8 ,3,28,587136,4,1 ,17,923,9500036,24,0 ,44,15152,587140,24,0 ,45,15153,5305732,16,0 ,27,4607,62856,26,8 ,3,28,587144,4,1 ,27,4608,62864,23,8 ,3,28,587152,4,1 ,27,1118,62872,26,8 ,3,28,587160,6,2 ,27,4609,62880,21,8 ,3,28,587168,7,2 ,20,25488,26277282,1956,0 ,20,25872,27325858,92,0 ,27,4611,62888,24,8 ,3,28,587176,10,4 ,27,4613,62896,22,8 ,3,28,587184,6,2 ,27,4614,62904,22,8 ,3,28,587192,4,1 ,27,4615,62912,22,8 ,3,28,587200,9,4 ,20,22246,18412994,744,0 ,20,16660,3732930,56,0 ,44,15152,1111492,80,0 ,44,15152,2160068,32,0 ,27,4616,62920,22,8 ,3,28,587208,18,8 ,27,4617,62928,22,8 ,3,28,587216,6,2 ,27,4618,62936,22,8 ,3,28,587224,7,2 ,27,4625,62944,26,8 ,3,28,587232,10,4 ,27,4619,62952,22,8 ,3,28,587240,16,7 ,27,4620,62960,24,8 ,3,28,587248,4,1 ,27,4621,62968,25,8 ,3,28,587256,9,4 ,27,4626,62976,22,8 ,3,28,587264,12,5 ,20,17724,6354434,12,0 ,17,923,62979,16,0 ,17,923,8975876,24,0 ,17,923,7927300,72,0 ,17,923,6354436,32,0 ,45,15153,5305860,16,0 ,17,923,8451588,32,0 ,27,4627,62984,22,8 ,3,28,587272,18,8 ,27,4628,62992,22,8 ,3,28,587280,25,13 ,27,4629,63000,23,8 ,3,28,587288,4,1 ,27,4630,63008,23,8 ,3,28,587296,26,12 ,20,22963,19985954,84,0 ,20,16297,3208738,472,0 ,27,4631,63016,24,8 ,3,28,587304,14,6 ,27,4632,63024,24,8 ,3,28,587312,18,8 ,27,4633,63032,23,8 ,3,28,587320,12,5 ,27,4635,63040,22,8 ,3,28,587328,10,4 ,20,22005,17888834,144,0 ,17,923,9500228,24,0 ,17,923,6878788,40,0 ,44,15152,2684484,104,0 ,44,15152,63044,40,0 ,44,15152,587332,72,0 ,27,4636,63048,22,8 ,3,28,587336,10,4 ,27,4637,63056,22,8 ,3,28,587344,7,2 ,27,4638,63064,23,8 ,3,28,587352,8,3 ,27,4611,63072,24,8 ,3,28,587360,14,5 ,20,17725,6354530,12,0 ,27,4641,63080,22,8 ,3,28,587368,26,13 ,27,4627,63088,22,8 ,3,28,587376,4,1 ,27,2182,63096,24,8 ,3,28,587384,18,8 ,27,4632,63104,24,8 ,3,28,587392,4,1 ,20,16075,2160258,128,0 ,17,923,63107,24,0 ,45,15153,5305988,16,0 ,17,923,7403140,40,0 ,44,15152,1635972,32,0 ,27,4642,63112,23,8 ,3,28,587400,14,6 ,27,4644,63120,22,8 ,3,28,587408,10,4 ,27,4627,63128,22,8 ,3,28,587416,6,2 ,27,4646,63136,26,8 ,3,28,587424,7,2 ,27,4647,63144,24,8 ,3,28,587432,14,6 ,27,4648,63152,24,8 ,3,28,587440,4,1 ,27,4649,63160,26,8 ,3,28,587448,7,2 ,27,4650,63168,26,8 ,3,28,587456,6,2 ,20,24502,23656130,116,0 ,20,25121,25228994,60,0 ,20,17726,6354626,12,0 ,17,923,10024644,72,0 ,44,15152,2160324,24,0 ,44,15152,3733188,48,0 ,17,923,8976068,56,0 ,27,4652,63176,28,8 ,3,28,587464,4,1 ,27,4653,63184,24,8 ,3,28,587472,9,4 ,27,4654,63192,26,8 ,3,28,587480,10,4 ,27,4655,63200,22,8 ,3,28,587488,4,1 ,27,4656,63208,22,8 ,3,28,587496,7,2 ,27,4613,63216,22,8 ,3,28,587504,12,5 ,27,4631,63224,24,8 ,3,28,587512,10,4 ,27,295,63232,23,8 ,3,28,587520,4,1 ,17,923,9500420,32,0 ,17,923,6354692,24,0 ,45,15153,5306116,16,0 ,17,923,8451844,24,0 ,27,4657,63240,24,8 ,3,28,587528,9,4 ,27,4658,63248,22,8 ,3,28,587536,10,4 ,27,4659,63256,22,8 ,3,28,587544,6,2 ,27,4618,63264,22,8 ,3,28,587552,4,1 ,20,17727,6354722,316,0 ,27,4660,63272,24,8 ,3,28,587560,9,4 ,27,4662,63280,22,8 ,3,28,587568,10,4 ,27,4661,63288,22,8 ,3,28,587576,4,1 ,27,4617,63296,22,8 ,3,28,587584,7,2 ,17,923,63299,16,0 ,44,15152,3209028,88,0 ,27,4663,63304,22,8 ,3,28,587592,12,5 ,27,4664,63312,24,8 ,3,28,587600,4,1 ,27,4665,63320,26,8 ,3,28,587608,9,4 ,27,4666,63328,22,8 ,3,28,587616,10,4 ,20,16947,4257634,12,0 ,27,4614,63336,22,8 ,3,28,587624,4,1 ,27,4628,63344,22,8 ,3,28,587632,7,2 ,27,2064,63352,24,8 ,3,28,587640,12,5 ,27,4632,63360,24,8 ,3,28,587648,4,1 ,20,16661,3733378,128,0 ,45,15153,5306244,48,0 ,17,923,6879108,32,0 ,44,15152,2160516,32,0 ,44,15152,1636228,32,0 ,44,15152,63364,24,0 ,27,4667,63368,25,8 ,3,28,587656,9,4 ,27,4667,63376,26,8 ,3,28,587664,10,4 ,27,4298,63384,22,8 ,3,28,587672,4,1 ,27,812,63392,23,8 ,3,28,587680,7,2 ,27,4615,63400,22,8 ,3,28,587688,12,5 ,27,4668,63408,22,8 ,3,28,587696,4,1 ,27,4669,63416,22,8 ,3,28,587704,9,4 ,27,4670,63424,26,8 ,3,28,587712,10,4 ,20,16948,4257730,3384,0 ,17,923,63427,24,0 ,17,923,8452036,48,0 ,17,923,7403460,32,0 ,17,923,6354884,56,0 ,27,4671,63432,24,8 ,3,28,587720,4,1 ,27,4526,63440,22,8 ,3,28,587728,7,2 ,27,4672,63448,23,8 ,3,28,587736,12,5 ,27,4672,63456,24,8 ,3,28,587744,4,1 ,27,4673,63464,22,8 ,3,28,587752,9,4 ,27,1565,63472,24,8 ,3,28,587760,10,4 ,27,4674,63480,26,8 ,3,28,587768,4,1 ,27,4627,63488,22,8 ,3,28,587776,7,2 ,20,21195,15792130,80,0 ,20,15599,1112066,96,0 ,17,923,9500676,32,0 ,27,4628,63496,22,8 ,3,28,587784,12,5 ,27,4656,63504,22,8 ,3,28,587792,4,1 ,27,4298,63512,22,8 ,3,28,587800,9,4 ,27,4635,63520,22,8 ,3,28,587808,10,4 ,27,4636,63528,22,8 ,3,28,587816,4,1 ,27,4637,63536,22,8 ,3,28,587824,7,2 ,27,4676,63544,24,8 ,3,28,587832,12,5 ,27,4632,63552,24,8 ,3,28,587840,4,1 ,44,15152,3733572,32,0 ,17,923,7927876,40,0 ,44,15152,63556,32,0 ,44,15152,1112132,32,0 ,27,4677,63560,23,8 ,3,28,587848,9,4 ,27,4663,63568,22,8 ,3,28,587856,10,4 ,27,4665,63576,26,8 ,3,28,587864,4,1 ,27,4617,63584,22,8 ,3,28,587872,7,2 ,20,23905,22083682,688,0 ,20,17991,6879330,400,0 ,27,4618,63592,22,8 ,3,28,587880,12,5 ,27,4526,63600,22,8 ,3,28,587888,4,1 ,27,4627,63608,22,8 ,3,28,587896,9,4 ,27,4626,63616,22,8 ,3,28,587904,10,4 ,20,25873,27326594,92,0 ,17,923,63619,16,0 ,17,923,8976516,40,0 ,17,923,6879364,32,0 ,44,15152,2160772,120,0 ,44,15152,1636484,24,0 ,44,15152,587908,40,0 ,27,4679,63624,22,8 ,3,28,587912,4,1 ,27,2182,63632,24,8 ,3,28,587920,7,2 ,27,4683,63640,24,8 ,3,28,587928,12,5 ,27,4681,63648,23,8 ,3,28,587936,4,1 ,20,25122,25229474,208,0 ,27,4682,63656,23,8 ,3,28,587944,9,4 ,27,4685,63664,24,8 ,3,28,587952,10,4 ,27,4686,63672,22,8 ,3,28,587960,4,1 ,27,8515,63680,26,8 ,3,28,587968,7,2 ,20,22964,19986626,364,0 ,17,923,7403716,40,0 ,27,8511,63688,24,8 ,3,28,587976,12,5 ,27,1600,63696,26,8 ,3,28,587984,4,1 ,27,1565,63704,24,8 ,3,28,587992,9,4 ,27,41,63712,25,8 ,3,28,588000,10,4 ,27,8502,63720,20,8 ,3,28,588008,4,1 ,27,8501,63728,23,8 ,3,28,588016,7,2 ,27,4688,63736,23,8 ,3,28,588024,12,5 ,27,4688,63744,24,8 ,3,28,588032,4,1 ,17,923,63747,16,0 ,17,923,10025220,32,0 ,45,15153,5306628,40,0 ,17,923,9500932,16,0 ,27,4689,63752,22,8 ,3,28,588040,9,4 ,27,3978,63760,20,8 ,3,28,588048,10,4 ,27,4690,63768,20,8 ,3,28,588056,4,1 ,27,4691,63776,22,8 ,3,28,588064,7,2 ,27,8489,63784,23,8 ,3,28,588072,12,5 ,27,3274,63792,22,8 ,3,28,588080,4,1 ,27,1374,63800,24,8 ,3,28,588088,9,4 ,27,809,63808,23,8 ,3,28,588096,10,4 ,17,923,8452420,32,0 ,44,15152,1636676,24,0 ,44,15152,63812,40,0 ,44,15152,1112388,48,0 ,44,15152,3733828,24,0 ,27,1200,63816,24,8 ,3,28,588104,4,1 ,27,8488,63824,22,8 ,3,28,588112,7,2 ,27,4693,63832,24,8 ,3,28,588120,12,5 ,27,4695,63840,24,8 ,3,28,588128,4,1 ,20,23504,21035362,12,0 ,27,1565,63848,24,8 ,3,28,588136,9,4 ,27,4696,63856,24,8 ,3,28,588144,10,4 ,27,4697,63864,24,8 ,3,28,588152,4,1 ,27,4698,63872,24,8 ,3,28,588160,7,2 ,20,23280,20511106,304,0 ,17,923,63875,16,0 ,17,923,9501060,40,0 ,17,923,7928196,40,0 ,17,923,6879620,24,0 ,17,923,6355332,40,0 ,44,15152,2685316,24,0 ,27,4699,63880,22,8 ,3,28,588168,12,5 ,27,4700,63888,24,8 ,3,28,588176,4,1 ,27,4001,63896,26,8 ,3,28,588184,9,4 ,27,8468,63904,24,8 ,3,28,588192,10,4 ,20,19101,9501090,192,0 ,20,18648,8452514,12,0 ,27,8454,63912,24,8 ,3,28,588200,4,1 ,27,8413,63920,26,8 ,3,28,588208,7,2 ,27,4632,63928,24,8 ,3,28,588216,12,5 ,27,4611,63936,24,8 ,3,28,588224,4,1 ,20,23505,21035458,52,0 ,17,923,8976836,40,0 ,44,15152,588228,224,0 ,27,4707,63944,24,8 ,3,28,588232,9,4 ,27,4710,63952,20,8 ,3,28,588240,10,4 ,27,4709,63960,24,8 ,3,28,588248,4,1 ,27,4617,63968,22,8 ,3,28,588256,7,2 ,20,21790,16841186,128,0 ,27,4711,63976,22,8 ,3,28,588264,12,5 ,27,4709,63984,23,8 ,3,28,588272,4,1 ,27,2182,63992,24,8 ,3,28,588280,9,4 ,27,4627,64000,22,8 ,3,28,588288,10,4 ,20,18649,8452610,1376,0 ,17,923,64003,16,0 ,17,923,10025476,40,0 ,17,923,7404036,32,0 ,44,15152,1636868,56,0 ,44,15152,3209732,24,0 ,44,15152,3734020,32,0 ,27,4713,64008,24,8 ,3,28,588296,4,1 ,27,4712,64016,23,8 ,3,28,588304,7,2 ,27,4632,64024,24,8 ,3,28,588312,12,5 ,27,8396,64032,24,8 ,3,28,588320,4,1 ,27,8380,64040,24,8 ,3,28,588328,9,4 ,27,4732,64048,24,8 ,3,28,588336,10,4 ,27,41,64056,23,8 ,3,28,588344,4,1 ,27,41,64064,23,8 ,3,28,588352,7,2 ,20,19942,11074114,56,0 ,17,923,8452676,16,0 ,17,923,6879812,16,0 ,44,15152,2685508,176,0 ,45,15153,4258372,48,0 ,45,15153,5306948,72,0 ,27,41,64072,23,8 ,3,28,588360,12,5 ,27,41,64080,23,8 ,3,28,588368,4,1 ,27,4733,64088,22,8 ,3,28,588376,9,4 ,27,4606,64096,24,8 ,3,28,588384,10,4 ,20,24503,23657058,1092,0 ,27,579,64104,22,8 ,3,28,588392,4,1 ,27,579,64112,23,8 ,3,28,588400,7,2 ,27,2182,64120,24,8 ,3,28,588408,12,5 ,27,4736,64128,22,8 ,3,28,588416,4,1 ,20,21196,15792770,140,0 ,20,16076,2161282,128,0 ,20,18183,7404162,92,0 ,17,923,64131,16,0 ,44,15152,64132,40,0 ,27,4735,64136,22,8 ,3,28,588424,9,4 ,27,4737,64144,22,8 ,3,28,588432,10,4 ,27,4746,64152,24,8 ,3,28,588440,4,1 ,27,4742,64160,26,8 ,3,28,588448,7,2 ,27,4738,64168,26,8 ,3,28,588456,12,5 ,27,4739,64176,26,8 ,3,28,588464,4,1 ,27,1402,64184,24,8 ,3,28,588472,9,4 ,27,1403,64192,24,8 ,3,28,588480,10,4 ,20,22006,17889986,448,0 ,20,21955,17365698,440,0 ,17,923,9501380,32,0 ,17,923,7928516,24,0 ,17,923,6879940,48,0 ,17,923,6355652,40,0 ,44,15152,1112772,32,0 ,44,15152,3209924,24,0 ,17,923,8452804,24,0 ,27,4748,64200,22,8 ,3,28,588488,4,1 ,27,4749,64208,23,8 ,3,28,588496,7,2 ,27,2312,64216,22,8 ,3,28,588504,12,5 ,27,2182,64224,24,8 ,3,28,588512,4,1 ,27,4752,64232,24,8 ,3,28,588520,9,4 ,27,4482,64240,26,8 ,3,28,588528,10,4 ,27,4707,64248,24,8 ,3,28,588536,4,1 ,27,4663,64256,22,8 ,3,28,588544,7,2 ,20,15600,1112834,176,0 ,17,923,64259,16,0 ,17,923,8977156,32,0 ,17,923,7404292,32,0 ,44,15152,3734276,24,0 ,27,2312,64264,22,8 ,3,28,588552,12,5 ,27,4758,64272,22,8 ,3,28,588560,4,1 ,27,4759,64280,24,8 ,3,28,588568,9,4 ,27,4761,64288,22,8 ,3,28,588576,10,4 ,27,2182,64296,24,8 ,3,28,588584,4,1 ,27,41,64304,23,8 ,3,28,588592,7,2 ,27,4662,64312,22,8 ,3,28,588600,12,5 ,27,1374,64320,22,8 ,3,28,588608,4,1 ,20,16144,2685762,244,0 ,17,923,10025796,24,0 ,27,4763,64328,24,8 ,3,28,588616,9,4 ,27,4764,64336,22,8 ,3,28,588624,10,4 ,27,4766,64344,25,8 ,3,28,588632,4,1 ,27,4768,64352,24,8 ,3,28,588640,7,2 ,20,974,64353,468,0 ,20,23506,21035874,292,0 ,20,25874,27327330,92,0 ,20,24884,24705890,520,0 ,20,20496,13171554,160,0 ,27,4752,64360,26,8 ,3,28,588648,12,5 ,27,4631,64368,24,8 ,3,28,588656,4,1 ,27,4632,64376,24,8 ,3,28,588664,9,4 ,27,4772,64384,23,8 ,3,28,588672,10,4 ,20,16662,3734402,12,0 ,17,923,64387,32,0 ,17,923,8452996,40,0 ,17,923,7928708,64,0 ,44,15152,3210116,24,0 ,27,4774,64392,23,8 ,3,28,588680,4,1 ,27,4774,64400,24,8 ,3,28,588688,7,2 ,27,4282,64408,24,8 ,3,28,588696,12,5 ,27,4775,64416,22,8 ,3,28,588704,4,1 ,27,4456,64424,25,8 ,3,28,588712,9,4 ,27,4776,64432,24,8 ,3,28,588720,10,4 ,27,4456,64440,26,8 ,3,28,588728,4,1 ,27,4777,64448,22,8 ,3,28,588736,7,2 ,17,923,9501636,32,0 ,44,15152,1637316,32,0 ,44,15152,64452,120,0 ,44,15152,1113028,40,0 ,44,15152,3734468,32,0 ,45,15153,4258756,16,0 ,27,4461,64456,21,8 ,3,28,588744,12,5 ,27,4460,64464,26,8 ,3,28,588752,4,1 ,27,4778,64472,22,8 ,3,28,588760,9,4 ,27,4779,64480,24,8 ,3,28,588768,10,4 ,20,16663,3734498,392,0 ,27,4463,64488,22,8 ,3,28,588776,4,1 ,27,4780,64496,20,8 ,3,28,588784,7,2 ,27,4460,64504,25,8 ,3,28,588792,12,5 ,27,4292,64512,24,8 ,3,28,588800,4,1 ,20,22527,18938882,776,0 ,20,19943,11074562,80,0 ,17,923,10025988,56,0 ,17,923,7404548,40,0 ,17,923,6355972,24,0 ,17,923,8977412,32,0 ,27,4294,64520,22,8 ,3,28,588808,9,4 ,27,4047,64528,22,8 ,3,28,588816,10,4 ,27,4466,64536,21,8 ,3,28,588824,4,1 ,27,4468,64544,25,8 ,3,28,588832,7,2 ,20,24321,23133218,856,0 ,27,4468,64552,26,8 ,3,28,588840,12,5 ,27,4471,64560,22,8 ,3,28,588848,4,1 ,27,4476,64568,21,8 ,3,28,588856,9,4 ,27,4474,64576,21,8 ,3,28,588864,10,4 ,45,15153,4783172,256,0 ,17,923,6880324,48,0 ,44,15152,2161732,24,0 ,44,15152,3210308,56,0 ,45,15153,4258884,16,0 ,27,4473,64584,26,8 ,3,28,588872,4,1 ,27,4781,64592,24,8 ,3,28,588880,7,2 ,27,4467,64600,26,8 ,3,28,588888,12,5 ,27,4478,64608,24,8 ,3,28,588896,4,1 ,27,4473,64616,25,8 ,3,28,588904,9,4 ,27,4320,64624,22,8 ,3,28,588912,10,4 ,27,4321,64632,22,8 ,3,28,588920,4,1 ,27,4785,64640,26,8 ,3,28,588928,7,2 ,17,923,64643,24,0 ,45,15153,5307524,16,0 ,27,4782,64648,23,8 ,3,28,588936,12,5 ,27,4733,64656,22,8 ,3,28,588944,4,1 ,27,4606,64664,24,8 ,3,28,588952,9,4 ,27,4611,64672,24,8 ,3,28,588960,10,4 ,27,4768,64680,24,8 ,3,28,588968,4,1 ,27,41,64688,23,8 ,3,28,588976,7,2 ,27,1062,64696,21,8 ,3,28,588984,12,5 ,27,4298,64704,22,8 ,3,28,588992,4,1 ,17,923,9501892,32,0 ,17,923,6356164,24,0 ,44,15152,1637572,32,0 ,44,15152,3734724,24,0 ,45,15153,4259012,24,0 ,17,923,8453316,40,0 ,27,4002,64712,22,8 ,3,28,589000,9,4 ,27,4000,64720,22,8 ,3,28,589008,10,4 ,27,4001,64728,22,8 ,3,28,589016,4,1 ,27,4793,64736,24,8 ,3,28,589024,7,2 ,20,18911,8977634,12,0 ,27,1374,64744,22,8 ,3,28,589032,12,5 ,27,4794,64752,22,8 ,3,28,589040,4,1 ,27,1380,64760,22,8 ,3,28,589048,9,4 ,27,1403,64768,24,8 ,3,28,589056,10,4 ,17,923,8977668,56,0 ,44,15152,2161924,144,0 ,44,15152,1113348,40,0 ,45,15153,5307652,16,0 ,27,4795,64776,24,8 ,3,28,589064,4,1 ,27,4797,64784,22,8 ,3,28,589072,7,2 ,27,4798,64792,26,8 ,3,28,589080,12,5 ,27,4799,64800,24,8 ,3,28,589088,4,1 ,20,25680,26803490,256,0 ,27,4800,64808,23,8 ,3,28,589096,9,4 ,27,41,64816,23,8 ,3,28,589104,10,4 ,27,41,64824,23,8 ,3,28,589112,4,1 ,27,41,64832,23,8 ,3,28,589120,7,2 ,20,18912,8977730,12,0 ,17,923,64835,24,0 ,17,923,7404868,40,0 ,27,295,64840,23,8 ,3,28,589128,12,5 ,27,812,64848,23,8 ,3,28,589136,4,1 ,27,4808,64856,24,8 ,3,28,589144,9,4 ,27,4809,64864,24,8 ,3,28,589152,10,4 ,20,18184,7404898,204,0 ,27,4813,64872,22,8 ,3,28,589160,4,1 ,27,4774,64880,23,8 ,3,28,589168,7,2 ,27,4774,64888,24,8 ,3,28,589176,12,5 ,27,4282,64896,24,8 ,3,28,589184,4,1 ,20,17328,5307778,124,0 ,45,15153,5307780,16,0 ,17,923,7929220,40,0 ,17,923,6356356,24,0 ,44,15152,3734916,32,0 ,45,15153,4259204,24,0 ,27,4814,64904,22,8 ,3,28,589192,9,4 ,27,4456,64912,25,8 ,3,28,589200,10,4 ,27,4456,64920,26,8 ,3,28,589208,4,1 ,27,4461,64928,21,8 ,3,28,589216,7,2 ,20,18913,8977826,12,0 ,20,26100,27852194,568,0 ,27,4460,64936,26,8 ,3,28,589224,12,5 ,27,4832,64944,24,8 ,3,28,589232,4,1 ,27,1034,64952,26,8 ,3,28,589240,9,4 ,27,579,64960,24,8 ,3,28,589248,10,4 ,17,923,10026436,40,0 ,17,923,6880708,32,0 ,44,15152,1637828,32,0 ,17,923,9502148,24,0 ,27,579,64968,25,8 ,3,28,589256,4,1 ,27,41,64976,23,8 ,3,28,589264,7,2 ,27,1770,64984,26,8 ,3,28,589272,12,5 ,27,178,64992,23,8 ,3,28,589280,4,1 ,20,21791,16842210,264,0 ,20,15206,64994,128,0 ,27,1037,65000,26,8 ,3,28,589288,9,4 ,27,445,65008,23,8 ,3,28,589296,10,4 ,27,1771,65016,26,8 ,3,28,589304,4,1 ,27,204,65024,23,8 ,3,28,589312,7,2 ,20,18914,8977922,60,0 ,17,923,65027,16,0 ,17,923,8453636,48,0 ,44,15152,3210756,40,0 ,45,15153,5307908,16,0 ,27,1034,65032,26,8 ,3,28,589320,12,5 ,27,579,65040,24,8 ,3,28,589328,4,1 ,27,579,65048,25,8 ,3,28,589336,9,4 ,27,1062,65056,21,8 ,3,28,589344,10,4 ,27,41,65064,23,8 ,3,28,589352,4,1 ,27,4819,65072,24,8 ,3,28,589360,7,2 ,27,4817,65080,26,8 ,3,28,589368,12,5 ,27,4818,65088,24,8 ,3,28,589376,4,1 ,20,25875,27328066,92,0 ,45,15153,4259396,16,0 ,17,923,6356548,40,0 ,44,15152,1113668,88,0 ,27,1993,65096,24,8 ,3,28,589384,9,4 ,27,4820,65104,24,8 ,3,28,589392,10,4 ,27,4821,65112,24,8 ,3,28,589400,4,1 ,27,4822,65120,24,8 ,3,28,589408,7,2 ,27,4823,65128,24,8 ,3,28,589416,12,5 ,27,4824,65136,24,8 ,3,28,589424,4,1 ,27,1993,65144,24,8 ,3,28,589432,9,4 ,27,178,65152,23,8 ,3,28,589440,10,4 ,20,19944,11075202,96,0 ,20,16077,2162306,32,0 ,17,923,65155,16,0 ,17,923,9502340,32,0 ,17,923,7405188,40,0 ,44,15152,3735172,24,0 ,45,15153,5308036,24,0 ,27,4824,65160,26,8 ,3,28,589448,4,1 ,27,1770,65168,26,8 ,3,28,589456,7,2 ,27,178,65176,23,8 ,3,28,589464,12,5 ,27,1037,65184,26,8 ,3,28,589472,38,18 ,27,445,65192,23,8 ,3,28,589480,4,1 ,27,1771,65200,26,8 ,3,28,589488,9,4 ,27,204,65208,23,8 ,3,28,589496,10,4 ,27,1034,65216,26,8 ,3,28,589504,7,2 ,20,22683,19463874,12,0 ,17,923,8978116,24,0 ,17,923,7929540,48,0 ,17,923,6880964,24,0 ,44,15152,1638084,64,0 ,45,15153,4259524,16,0 ,27,579,65224,24,8 ,3,28,589512,4,1 ,27,579,65232,25,8 ,3,28,589520,9,4 ,27,1062,65240,21,8 ,3,28,589528,10,4 ,27,41,65248,23,8 ,3,28,589536,7,2 ,20,21197,15793890,80,0 ,27,4819,65256,24,8 ,3,28,589544,7,2 ,27,1993,65264,24,8 ,3,28,589552,12,5 ,27,1973,65272,24,8 ,3,28,589560,4,1 ,27,4824,65280,24,8 ,3,28,589568,9,4 ,17,923,65283,16,0 ,17,923,10026756,16,0 ,27,1240,65288,26,8 ,3,28,589576,10,4 ,27,1062,65296,21,8 ,3,28,589584,7,2 ,27,295,65304,23,8 ,3,28,589592,7,2 ,27,812,65312,23,8 ,3,28,589600,12,5 ,20,22684,19463970,56,0 ,20,25123,25231138,24,0 ,27,41,65320,23,8 ,3,28,589608,6,2 ,27,1973,65328,24,8 ,3,28,589616,6,2 ,27,4833,65336,22,8 ,3,28,589624,4,1 ,27,4463,65344,22,8 ,3,28,589632,9,4 ,45,15153,5308228,24,0 ,44,15152,3211076,48,0 ,44,15152,3735364,32,0 ,45,15153,4259652,16,0 ,27,4780,65352,20,8 ,3,28,589640,10,4 ,27,4837,65360,26,8 ,3,28,589648,4,1 ,27,4460,65368,25,8 ,3,28,589656,10,3 ,27,4838,65376,22,8 ,3,28,589664,59,35 ,20,24693,24182626,24,0 ,27,4839,65384,24,8 ,3,28,589672,10,4 ,27,4294,65392,22,8 ,3,28,589680,12,5 ,27,4047,65400,22,8 ,3,28,589688,6,2 ,27,4466,65408,21,8 ,3,28,589696,6,2 ,20,16078,2162562,128,0 ,17,923,65411,32,0 ,17,923,10026884,48,0 ,17,923,6881156,24,0 ,17,923,6356868,32,0 ,44,15152,65412,72,0 ,17,923,8454020,48,0 ,17,923,8978308,80,0 ,17,923,9502596,32,0 ,27,4468,65416,25,8 ,3,28,589704,38,18 ,27,4468,65424,26,8 ,3,28,589712,4,1 ,27,4474,65432,21,8 ,3,28,589720,9,4 ,27,4473,65440,26,8 ,3,28,589728,10,4 ,20,19102,9502626,380,0 ,27,4467,65448,26,8 ,3,28,589736,7,2 ,27,4476,65456,21,8 ,3,28,589744,13,4 ,27,4478,65464,24,8 ,3,28,589752,18,8 ,27,4840,65472,22,8 ,3,28,589760,8,3 ,45,15153,4259780,32,0 ,17,923,7405508,40,0 ,44,15152,2686916,56,0 ,27,4473,65480,25,8 ,3,28,589768,4,1 ,27,4321,65488,22,8 ,3,28,589776,9,4 ,27,4832,65496,26,8 ,3,28,589784,10,4 ,27,4733,65504,22,8 ,3,28,589792,7,2 ,20,18915,8978402,376,0 ,20,25124,25231330,24,0 ,27,4606,65512,24,8 ,3,28,589800,7,2 ,27,579,65520,22,8 ,3,28,589808,12,5 ,27,579,65528,23,8 ,3,28,589816,4,1 ,27,41,65536,23,8 ,3,28,589824,9,4 ,45,15153,5308420,32,0 ,27,4795,65544,24,8 ,3,28,589832,10,4 ,27,4844,65552,23,8 ,3,28,589840,7,2 ,27,1062,65560,21,8 ,3,28,589848,7,2 ,27,4845,65568,23,8 ,3,28,589856,12,5 ,20,24694,24182818,24,0 ,27,4298,65576,22,8 ,3,28,589864,4,1 ,27,4001,65584,22,8 ,3,28,589872,9,4 ,27,1380,65592,22,8 ,3,28,589880,10,4 ,27,4846,65600,23,8 ,3,28,589888,4,1 ,20,20926,15269954,136,0 ,20,20719,13697090,24,0 ,44,15152,3735620,24,0 ,17,923,7929924,48,0 ,17,923,6881348,32,0 ,27,4847,65608,24,8 ,3,28,589896,26,12 ,27,4793,65616,24,8 ,3,28,589904,16,7 ,27,4002,65624,22,8 ,3,28,589912,6,2 ,27,4794,65632,22,8 ,3,28,589920,6,2 ,20,20497,13172834,304,0 ,27,4000,65640,22,8 ,3,28,589928,8,3 ,27,1403,65648,24,8 ,3,28,589936,4,1 ,27,1374,65656,22,8 ,3,28,589944,9,4 ,27,4849,65664,23,8 ,3,28,589952,10,4 ,20,15601,1114242,188,0 ,17,923,65667,16,0 ,17,923,9502852,32,0 ,17,923,6357124,56,0 ,27,4000,65672,22,8 ,3,28,589960,7,2 ,27,4001,65680,22,8 ,3,28,589968,7,2 ,27,4851,65688,22,8 ,3,28,589976,12,5 ,27,4852,65696,23,8 ,3,28,589984,4,1 ,20,25125,25231522,152,0 ,27,41,65704,23,8 ,3,28,589992,9,4 ,27,5095,65712,24,8 ,3,28,590000,10,4 ,27,4862,65720,27,8 ,3,28,590008,7,2 ,27,2388,65728,24,8 ,3,28,590016,7,2 ,45,15153,4260036,16,0 ,44,15152,1638596,24,0 ,44,15152,590020,16,0 ,44,15152,3211460,40,0 ,27,41,65736,23,8 ,3,28,590024,12,5 ,27,2377,65744,24,8 ,3,28,590032,6,2 ,27,5052,65752,24,8 ,3,28,590040,4,1 ,27,5050,65760,23,8 ,3,28,590048,9,4 ,20,22685,19464418,2076,0 ,20,24695,24183010,24,0 ,27,1565,65768,24,8 ,3,28,590056,10,4 ,27,295,65776,23,8 ,3,28,590064,7,2 ,27,812,65784,23,8 ,3,28,590072,10,3 ,27,1274,65792,24,8 ,3,28,590080,16,7 ,20,20720,13697282,12,0 ,20,17728,6357250,12,0 ,17,923,65795,32,0 ,17,923,10027268,32,0 ,17,923,7405828,40,0 ,44,15152,1114372,48,0 ,44,15152,3735812,32,0 ,45,15153,5308676,56,0 ,17,923,8454404,48,0 ,27,5034,65800,27,8 ,3,28,590088,4,1 ,27,5050,65808,23,8 ,3,28,590096,9,4 ,27,1565,65816,24,8 ,3,28,590104,10,4 ,27,295,65824,23,8 ,3,28,590112,7,2 ,20,25876,27328802,92,0 ,27,812,65832,23,8 ,3,28,590120,7,2 ,27,5032,65840,27,8 ,3,28,590128,20,9 ,27,1973,65848,24,8 ,3,28,590136,4,1 ,27,5035,65856,24,8 ,3,28,590144,9,4 ,45,15153,4260164,32,0 ,17,923,6881604,24,0 ,44,15152,590148,56,0 ,27,5048,65864,27,8 ,3,28,590152,10,4 ,27,4389,65872,27,8 ,3,28,590160,7,2 ,27,5051,65880,26,8 ,3,28,590168,7,2 ,27,5074,65888,24,8 ,3,28,590176,12,5 ,20,21198,15794530,192,0 ,20,17329,5308770,128,0 ,20,17729,6357346,444,0 ,20,20721,13697378,24,0 ,27,5072,65896,24,8 ,3,28,590184,4,1 ,27,41,65904,23,8 ,3,28,590192,9,4 ,27,295,65912,23,8 ,3,28,590200,10,4 ,27,812,65920,23,8 ,3,28,590208,7,2 ,20,19945,11075970,76,0 ,17,923,9503108,24,0 ,44,15152,2687364,72,0 ,44,15152,2163076,64,0 ,44,15152,1638788,24,0 ,27,5057,65928,22,8 ,3,28,590216,7,2 ,27,1562,65936,24,8 ,3,28,590224,12,5 ,27,295,65944,23,8 ,3,28,590232,4,1 ,27,812,65952,23,8 ,3,28,590240,9,4 ,20,24696,24183202,172,0 ,27,5061,65960,24,8 ,3,28,590248,10,4 ,27,5063,65968,24,8 ,3,28,590256,7,2 ,27,5062,65976,22,8 ,3,28,590264,7,2 ,27,5064,65984,24,8 ,3,28,590272,12,5 ,44,15152,65988,24,0 ,17,923,7930308,40,0 ,27,4298,65992,23,8 ,3,28,590280,4,1 ,27,1565,66000,24,8 ,3,28,590288,9,4 ,27,295,66008,23,8 ,3,28,590296,10,4 ,27,812,66016,23,8 ,3,28,590304,7,2 ,20,15207,66018,148,0 ,27,1274,66024,24,8 ,3,28,590312,7,2 ,27,5068,66032,24,8 ,3,28,590320,12,5 ,27,5069,66040,24,8 ,3,28,590328,4,1 ,27,4298,66048,24,8 ,3,28,590336,9,4 ,17,923,66051,24,0 ,17,923,10027524,24,0 ,17,923,6881796,24,0 ,44,15152,3211780,32,0 ,44,15152,3736068,24,0 ,17,923,8978948,64,0 ,27,2182,66056,24,8 ,3,28,590344,10,4 ,27,5073,66064,26,8 ,3,28,590352,7,2 ,27,2386,66072,24,8 ,3,28,590360,7,2 ,27,5075,66080,24,8 ,3,28,590368,12,5 ,20,20722,13697570,24,0 ,27,2028,66088,24,8 ,3,28,590376,4,1 ,27,5076,66096,24,8 ,3,28,590384,9,4 ,27,5077,66104,22,8 ,3,28,590392,10,4 ,27,5078,66112,24,8 ,3,28,590400,7,2 ,17,923,9503300,72,0 ,17,923,7406148,40,0 ,17,923,6357572,32,0 ,44,15152,1638980,24,0 ,45,15153,4260420,72,0 ,27,5080,66120,26,8 ,3,28,590408,7,2 ,27,2052,66128,24,8 ,3,28,590416,12,5 ,27,5081,66136,22,8 ,3,28,590424,4,1 ,27,5082,66144,22,8 ,3,28,590432,9,4 ,27,5083,66152,24,8 ,3,28,590440,10,4 ,27,5084,66160,24,8 ,3,28,590448,4,1 ,27,4294,66168,22,8 ,3,28,590456,7,2 ,27,5085,66176,26,8 ,3,28,590464,10,4 ,17,923,8454788,24,0 ,44,15152,66180,24,0 ,44,15152,1114756,24,0 ,27,4047,66184,22,8 ,3,28,590472,4,1 ,27,2064,66192,24,8 ,3,28,590480,9,4 ,27,5086,66200,24,8 ,3,28,590488,7,2 ,27,2378,66208,24,8 ,3,28,590496,6,2 ,27,5087,66216,22,8 ,3,28,590504,16,7 ,27,2389,66224,24,8 ,3,28,590512,7,2 ,27,5088,66232,22,8 ,3,28,590520,7,2 ,27,5089,66240,22,8 ,3,28,590528,12,5 ,17,923,66243,16,0 ,17,923,10027716,32,0 ,17,923,6881988,32,0 ,44,15152,3736260,24,0 ,45,15153,5309124,24,0 ,27,5090,66248,22,8 ,3,28,590536,18,6 ,27,4316,66256,22,8 ,3,28,590544,20,9 ,27,5091,66264,22,8 ,3,28,590552,4,1 ,27,5092,66272,22,8 ,3,28,590560,9,4 ,20,20723,13697762,24,0 ,20,25337,25756386,76,0 ,20,16145,2687714,1188,0 ,27,4478,66280,24,8 ,3,28,590568,10,4 ,27,2406,66288,24,8 ,3,28,590576,4,1 ,27,5093,66296,23,8 ,3,28,590584,12,5 ,27,2398,66304,24,8 ,3,28,590592,4,1 ,20,23281,20513538,248,0 ,44,15152,3212036,24,0 ,17,923,7930628,40,0 ,44,15152,1639172,24,0 ,44,15152,590596,80,0 ,27,5098,66312,26,8 ,3,28,590600,9,4 ,27,5099,66320,22,8 ,3,28,590608,10,4 ,27,4456,66328,25,8 ,3,28,590616,4,1 ,27,4456,66336,26,8 ,3,28,590624,7,2 ,27,5100,66344,24,8 ,3,28,590632,6,2 ,27,4461,66352,21,8 ,3,28,590640,4,1 ,27,4460,66360,26,8 ,3,28,590648,9,4 ,27,5080,66368,23,8 ,3,28,590656,10,4 ,17,923,66371,32,0 ,17,923,8454980,32,0 ,17,923,6357828,32,0 ,44,15152,66372,64,0 ,44,15152,1114948,88,0 ,27,5101,66376,22,8 ,3,28,590664,4,1 ,27,4284,66384,22,8 ,3,28,590672,7,2 ,27,4463,66392,22,8 ,3,28,590680,16,7 ,27,5082,66400,22,8 ,3,28,590688,4,1 ,27,5102,66408,22,8 ,3,28,590696,9,4 ,27,4294,66416,22,8 ,3,28,590704,10,4 ,27,4295,66424,23,8 ,3,28,590712,4,1 ,27,4295,66432,24,8 ,3,28,590720,7,2 ,20,16079,2163586,128,0 ,45,15153,5309316,168,0 ,17,923,7406468,32,0 ,44,15152,2163588,104,0 ,44,15152,3736452,24,0 ,27,5103,66440,22,8 ,3,28,590728,20,9 ,27,4466,66448,21,8 ,3,28,590736,6,2 ,27,5104,66456,22,8 ,3,28,590744,4,1 ,27,5105,66464,24,8 ,3,28,590752,9,4 ,20,20724,13697954,144,0 ,27,5106,66472,22,8 ,3,28,590760,10,4 ,27,5107,66480,22,8 ,3,28,590768,4,1 ,27,5089,66488,22,8 ,3,28,590776,7,2 ,27,5090,66496,22,8 ,3,28,590784,14,6 ,20,18185,7406530,28,0 ,20,26271,28378050,380,0 ,17,923,10027972,40,0 ,17,923,6882244,40,0 ,44,15152,2687940,40,0 ,44,15152,1639364,24,0 ,44,15152,3212228,40,0 ,27,5091,66504,22,8 ,3,28,590792,4,1 ,27,2664,66512,24,8 ,3,28,590800,9,4 ,27,5092,66520,22,8 ,3,28,590808,10,4 ,27,4476,66528,21,8 ,3,28,590816,4,1 ,20,20145,11600866,1040,0 ,20,19946,11076578,80,0 ,27,4468,66536,26,8 ,3,28,590824,7,2 ,27,4851,66544,23,8 ,3,28,590832,6,2 ,27,4851,66552,24,8 ,3,28,590840,4,1 ,27,5108,66560,24,8 ,3,28,590848,9,4 ,20,25877,27329538,92,0 ,17,923,8979460,40,0 ,27,5109,66568,24,8 ,3,28,590856,10,4 ,27,4813,66576,22,8 ,3,28,590864,4,1 ,27,4304,66584,22,8 ,3,28,590872,7,2 ,27,5110,66592,20,8 ,3,28,590880,20,9 ,20,22965,19989538,380,0 ,27,5111,66600,22,8 ,3,28,590888,10,4 ,27,5112,66608,22,8 ,3,28,590896,4,1 ,27,4307,66616,22,8 ,3,28,590904,9,4 ,27,5113,66624,24,8 ,3,28,590912,10,4 ,20,19685,10552386,616,0 ,17,923,66627,24,0 ,17,923,8455236,56,0 ,17,923,7930948,48,0 ,17,923,6358084,24,0 ,44,15152,3736644,32,0 ,45,15153,4785220,224,0 ,27,5077,66632,22,8 ,3,28,590920,7,2 ,27,4460,66640,25,8 ,3,28,590928,4,1 ,27,4047,66648,22,8 ,3,28,590936,9,4 ,27,4314,66656,21,8 ,3,28,590944,10,4 ,27,4468,66664,25,8 ,3,28,590952,4,1 ,27,4470,66672,24,8 ,3,28,590960,7,2 ,27,4474,66680,21,8 ,3,28,590968,6,2 ,27,4473,66688,26,8 ,3,28,590976,4,1 ,20,23507,21038210,292,0 ,20,20927,15271042,144,0 ,17,923,9503876,32,0 ,17,923,7406724,40,0 ,44,15152,1639556,24,0 ,45,15153,4260996,16,0 ,27,4467,66696,26,8 ,3,28,590984,9,4 ,27,4478,66704,24,8 ,3,28,590992,10,4 ,27,5114,66712,24,8 ,3,28,591000,4,1 ,27,4473,66720,25,8 ,3,28,591008,7,2 ,20,18186,7406754,204,0 ,27,4321,66728,22,8 ,3,28,591016,6,2 ,27,5115,66736,22,8 ,3,28,591024,4,1 ,27,5117,66744,24,8 ,3,28,591032,9,4 ,27,5118,66752,27,8 ,3,28,591040,10,4 ,27,4733,66760,22,8 ,3,28,591048,4,1 ,27,4606,66768,24,8 ,3,28,591056,7,2 ,27,5120,66776,22,8 ,3,28,591064,8,3 ,27,4047,66784,22,8 ,3,28,591072,6,2 ,20,17992,6882530,244,0 ,20,16298,3212514,32,0 ,27,4838,66792,22,8 ,3,28,591080,6,2 ,27,4832,66800,24,8 ,3,28,591088,7,2 ,27,5121,66808,22,8 ,3,28,591096,7,2 ,27,5122,66816,22,8 ,3,28,591104,12,5 ,17,923,66819,16,0 ,17,923,10028292,64,0 ,17,923,6882564,40,0 ,17,923,6358276,32,0 ,44,15152,2688260,24,0 ,44,15152,3212548,48,0 ,45,15153,4261124,40,0 ,27,5123,66824,23,8 ,3,28,591112,4,1 ,27,4466,66832,21,8 ,3,28,591120,6,2 ,27,4456,66840,26,8 ,3,28,591128,4,1 ,27,4461,66848,21,8 ,3,28,591136,7,2 ,20,25681,26805538,160,0 ,27,4460,66856,26,8 ,3,28,591144,4,1 ,27,4474,66864,21,8 ,3,28,591152,6,2 ,27,4473,66872,26,8 ,3,28,591160,4,1 ,27,4476,66880,21,8 ,3,28,591168,6,2 ,20,25338,25756994,140,0 ,17,923,8979780,24,0 ,44,15152,1639748,24,0 ,44,15152,66884,72,0 ,44,15152,3736900,48,0 ,27,4468,66888,26,8 ,3,28,591176,4,1 ,27,4463,66896,22,8 ,3,28,591184,4,1 ,27,4456,66904,25,8 ,3,28,591192,4,1 ,27,4460,66912,25,8 ,3,28,591200,6,2 ,20,17330,5309794,392,0 ,20,25126,25232738,24,0 ,27,4473,66920,25,8 ,3,28,591208,4,1 ,27,4468,66928,25,8 ,3,28,591216,7,2 ,27,4047,66936,22,8 ,3,28,591224,6,2 ,27,5125,66944,22,8 ,3,28,591232,4,1 ,17,923,66947,16,0 ,17,923,9504132,72,0 ,44,15152,591236,24,0 ,27,5121,66952,22,8 ,3,28,591240,4,1 ,27,5122,66960,22,8 ,3,28,591248,6,2 ,27,5127,66968,25,8 ,3,28,591256,4,1 ,27,4466,66976,21,8 ,3,28,591264,6,2 ,27,4456,66984,26,8 ,3,28,591272,12,4 ,27,4461,66992,21,8 ,3,28,591280,12,4 ,27,4460,67000,26,8 ,3,28,591288,6,2 ,27,4474,67008,21,8 ,3,28,591296,15,5 ,44,15152,2688452,24,0 ,17,923,7931332,72,0 ,17,923,7407044,40,0 ,27,4473,67016,26,8 ,3,28,591304,4,1 ,27,4476,67024,21,8 ,3,28,591312,12,5 ,27,4468,67032,26,8 ,3,28,591320,12,4 ,27,4463,67040,22,8 ,3,28,591328,4,1 ,20,16299,3212770,20,0 ,27,4456,67048,25,8 ,3,28,591336,6,2 ,27,4460,67056,25,8 ,3,28,591344,4,1 ,27,4473,67064,25,8 ,3,28,591352,6,2 ,27,4468,67072,25,8 ,3,28,591360,7,2 ,17,923,67075,32,0 ,17,923,8979972,64,0 ,17,923,6358532,32,0 ,44,15152,1639940,24,0 ,44,15152,1115652,48,0 ,17,923,8455684,40,0 ,27,5129,67080,24,8 ,3,28,591368,30,14 ,27,4000,67088,22,8 ,3,28,591376,4,1 ,27,4001,67096,22,8 ,3,28,591384,9,4 ,27,8070,67104,22,8 ,3,28,591392,10,4 ,20,21792,16844322,128,0 ,20,25127,25232930,128,0 ,27,7273,67112,24,8 ,3,28,591400,4,1 ,27,4768,67120,24,8 ,3,28,591408,12,5 ,27,5133,67128,24,8 ,3,28,591416,4,1 ,27,5148,67136,27,8 ,3,28,591424,9,4 ,45,15153,4261444,48,0 ,17,923,6882884,32,0 ,44,15152,591428,24,0 ,27,7266,67144,20,8 ,3,28,591432,12,5 ,27,7265,67152,24,8 ,3,28,591440,26,11 ,27,5159,67160,22,8 ,3,28,591448,4,1 ,27,2312,67168,21,8 ,3,28,591456,6,2 ,20,19947,11077218,72,0 ,20,15602,1115746,504,0 ,27,2562,67176,22,8 ,3,28,591464,4,1 ,27,5155,67184,21,8 ,3,28,591472,32,15 ,27,5156,67192,21,8 ,3,28,591480,6,2 ,27,5157,67200,21,8 ,3,28,591488,8,3 ,20,16300,3212930,832,0 ,20,15208,67202,12,0 ,44,15152,3212932,24,0 ,44,15152,2688644,40,0 ,27,2312,67208,21,8 ,3,28,591496,12,5 ,27,7264,67216,22,8 ,3,28,591504,27,9 ,27,4768,67224,24,8 ,3,28,591512,4,1 ,27,4752,67232,26,8 ,3,28,591520,9,4 ,27,4663,67240,22,8 ,3,28,591528,8,3 ,27,2312,67248,22,8 ,3,28,591536,8,3 ,27,4758,67256,22,8 ,3,28,591544,14,5 ,27,4759,67264,24,8 ,3,28,591552,14,5 ,44,15152,3737284,72,0 ,44,15152,2164420,56,0 ,44,15152,1640132,24,0 ,27,4707,67272,24,8 ,3,28,591560,10,3 ,27,4768,67280,24,8 ,3,28,591568,8,3 ,27,4482,67288,26,8 ,3,28,591576,12,4 ,27,579,67296,22,8 ,3,28,591584,15,7 ,20,15209,67298,28,0 ,20,25878,27330274,92,0 ,27,579,67304,23,8 ,3,28,591592,4,1 ,27,1062,67312,21,8 ,3,28,591600,8,3 ,27,4298,67320,22,8 ,3,28,591608,10,4 ,27,4002,67328,22,8 ,3,28,591616,10,4 ,20,24697,24184578,80,0 ,17,923,67331,16,0 ,17,923,10028804,24,0 ,17,923,7407364,40,0 ,17,923,6358788,40,0 ,44,15152,591620,24,0 ,27,4000,67336,22,8 ,3,28,591624,20,9 ,27,4001,67344,22,8 ,3,28,591632,4,1 ,27,4793,67352,24,8 ,3,28,591640,9,4 ,27,1374,67360,22,8 ,3,28,591648,10,4 ,27,4794,67368,22,8 ,3,28,591656,4,1 ,27,1380,67376,22,8 ,3,28,591664,13,4 ,27,1403,67384,24,8 ,3,28,591672,28,13 ,27,4795,67392,24,8 ,3,28,591680,7,2 ,17,923,8456004,40,0 ,17,923,6883140,24,0 ,44,15152,3213124,24,0 ,27,5164,67400,23,8 ,3,28,591688,5,2 ,27,4797,67408,22,8 ,3,28,591696,10,4 ,27,4798,67416,26,8 ,3,28,591704,6,2 ,27,5168,67424,23,8 ,3,28,591712,8,3 ,20,21199,15796066,420,0 ,27,4460,67432,25,8 ,3,28,591720,46,25 ,27,4460,67440,26,8 ,3,28,591728,6,2 ,27,5170,67448,24,8 ,3,28,591736,6,2 ,27,4294,67456,22,8 ,3,28,591744,8,3 ,20,16080,2164610,12,0 ,17,923,67459,24,0 ,44,15152,1116036,24,0 ,44,15152,1640324,24,0 ,44,15152,67460,24,0 ,27,4466,67464,21,8 ,3,28,591752,6,2 ,27,4456,67472,26,8 ,3,28,591760,8,3 ,27,5172,67480,25,8 ,3,28,591768,6,3 ,27,4468,67488,25,8 ,3,28,591776,6,2 ,27,4468,67496,26,8 ,3,28,591784,8,3 ,27,4461,67504,21,8 ,3,28,591792,6,3 ,27,4456,67512,25,8 ,3,28,591800,6,2 ,27,4001,67520,22,8 ,3,28,591808,8,3 ,20,15210,67522,12,0 ,17,923,10028996,16,0 ,44,15152,2688964,16,0 ,44,15152,591812,24,0 ,45,15153,4261828,24,0 ,17,923,9504708,24,0 ,27,4476,67528,21,8 ,3,28,591816,6,3 ,27,4474,67536,21,8 ,3,28,591824,6,2 ,27,4473,67544,26,8 ,3,28,591832,8,3 ,27,8070,67552,22,8 ,3,28,591840,6,3 ,20,16081,2164706,184,0 ,27,7273,67560,24,8 ,3,28,591848,7,2 ,27,2182,67568,24,8 ,3,28,591856,31,10 ,27,41,67576,23,8 ,3,28,591864,98,67 ,27,4463,67584,22,8 ,3,28,591872,6,2 ,17,923,8980484,24,0 ,17,923,7931908,40,0 ,17,923,6883332,48,0 ,44,15152,3213316,40,0 ,27,4467,67592,26,8 ,3,28,591880,14,6 ,27,4473,67600,25,8 ,3,28,591888,12,5 ,27,4000,67608,22,8 ,3,28,591896,7,2 ,27,4321,67616,22,8 ,3,28,591904,5,2 ,20,20725,13699106,144,0 ,20,15211,67618,288,0 ,20,16664,3737634,500,0 ,27,4463,67624,22,8 ,3,28,591912,14,5 ,27,41,67632,23,8 ,3,28,591920,52,25 ,27,41,67640,23,8 ,3,28,591928,4,1 ,27,5185,67648,24,8 ,3,28,591936,32,15 ,17,923,67651,16,0 ,17,923,10029124,16,0 ,17,923,7407684,40,0 ,17,923,6359108,40,0 ,44,15152,2689092,48,0 ,44,15152,1640516,24,0 ,44,15152,67652,24,0 ,44,15152,1116228,184,0 ,27,5186,67656,22,8 ,3,28,591944,8,3 ,27,5187,67664,22,8 ,3,28,591952,10,4 ,27,5188,67672,24,8 ,3,28,591960,8,3 ,27,5189,67680,24,8 ,3,28,591968,12,5 ,27,7273,67688,24,8 ,3,28,591976,7,2 ,27,4463,67696,22,8 ,3,28,591984,12,5 ,27,5191,67704,25,8 ,3,28,591992,7,2 ,27,4389,67712,26,8 ,3,28,592000,7,2 ,20,21956,17369218,228,0 ,17,923,9504900,24,0 ,44,15152,2164868,104,0 ,44,15152,592004,24,0 ,45,15153,4262020,24,0 ,17,923,8456324,56,0 ,27,5195,67720,24,8 ,3,28,592008,6,2 ,27,2182,67728,24,8 ,3,28,592016,10,4 ,27,41,67736,23,8 ,3,28,592024,6,2 ,27,4663,67744,22,8 ,3,28,592032,16,7 ,20,19948,11077794,68,0 ,27,2312,67752,22,8 ,3,28,592040,6,2 ,27,4758,67760,22,8 ,3,28,592048,4,1 ,27,4759,67768,24,8 ,3,28,592056,8,3 ,27,295,67776,23,8 ,3,28,592064,4,1 ,20,22007,17893570,144,0 ,17,923,67779,24,0 ,17,923,10029252,16,0 ,45,15153,5310660,48,0 ,17,923,8980676,56,0 ,27,812,67784,23,8 ,3,28,592072,100,67 ,27,5215,67792,22,8 ,3,28,592080,4,1 ,27,5220,67800,20,8 ,3,28,592088,22,10 ,27,5219,67808,24,8 ,3,28,592096,8,3 ,27,5218,67816,24,8 ,3,28,592104,10,4 ,27,5222,67824,20,8 ,3,28,592112,10,4 ,27,5221,67832,24,8 ,3,28,592120,6,2 ,27,5223,67840,22,8 ,3,28,592128,8,3 ,20,20928,15272194,12,0 ,44,15152,3737860,72,0 ,44,15152,1640708,80,0 ,44,15152,67844,24,0 ,27,5219,67848,23,8 ,3,28,592136,6,3 ,27,2182,67856,24,8 ,3,28,592144,4,1 ,27,5221,67864,23,8 ,3,28,592152,4,1 ,27,5224,67872,22,8 ,3,28,592160,58,35 ,27,5225,67880,22,8 ,3,28,592168,36,17 ,27,2312,67888,22,8 ,3,28,592176,8,3 ,27,4748,67896,22,8 ,3,28,592184,10,4 ,27,5226,67904,21,8 ,3,28,592192,12,5 ,20,17514,5835074,52,0 ,17,923,10029380,16,0 ,17,923,7932228,40,0 ,44,15152,592196,48,0 ,44,15152,3213636,40,0 ,45,15153,4262212,24,0 ,17,923,9505092,24,0 ,27,1562,67912,24,8 ,3,28,592200,4,1 ,27,5228,67920,24,8 ,3,28,592208,18,8 ,27,5232,67928,24,8 ,3,28,592216,6,2 ,27,5233,67936,22,8 ,3,28,592224,28,13 ,20,20929,15272290,12,0 ,27,5234,67944,22,8 ,3,28,592232,8,3 ,27,4748,67952,22,8 ,3,28,592240,6,2 ,27,4663,67960,22,8 ,3,28,592248,56,27 ,27,5235,67968,24,8 ,3,28,592256,6,2 ,20,21524,16320898,1888,0 ,20,24698,24185218,188,0 ,17,923,67971,16,0 ,17,923,6359428,32,0 ,17,923,7408004,32,0 ,17,923,6883716,40,0 ,27,2182,67976,24,8 ,3,28,592264,6,2 ,27,7248,67984,24,8 ,3,28,592272,6,2 ,27,7247,67992,26,8 ,3,28,592280,25,13 ,27,5240,68000,22,8 ,3,28,592288,7,2 ,20,25339,25758114,32,0 ,27,41,68008,23,8 ,3,28,592296,7,2 ,27,7243,68016,23,8 ,3,28,592304,105,67 ,27,41,68024,23,8 ,3,28,592312,10,3 ,27,5240,68032,22,8 ,3,28,592320,6,2 ,20,20930,15272386,12,0 ,20,25879,27331010,92,0 ,17,923,10029508,24,0 ,44,15152,2689476,32,0 ,44,15152,68036,24,0 ,27,41,68040,23,8 ,3,28,592328,8,3 ,27,2556,68048,26,8 ,3,28,592336,66,32 ,27,5255,68056,22,8 ,3,28,592344,25,13 ,27,2182,68064,24,8 ,3,28,592352,7,2 ,20,23693,21563874,128,0 ,20,20498,13175266,80,0 ,27,5248,68072,24,8 ,3,28,592360,105,67 ,27,4482,68080,26,8 ,3,28,592368,66,32 ,27,5253,68088,21,8 ,3,28,592376,25,13 ,27,5252,68096,26,8 ,3,28,592384,7,2 ,20,975,68097,4,0 ,17,923,68099,16,0 ,17,923,9505284,40,0 ,45,15153,4262404,40,0 ,27,4632,68104,24,8 ,3,28,592392,7,2 ,27,5240,68112,22,8 ,3,28,592400,105,67 ,27,41,68120,23,8 ,3,28,592408,10,3 ,27,5252,68128,25,8 ,3,28,592416,6,2 ,20,976,68129,4,0 ,20,21793,16845346,348,0 ,20,25682,26806818,140,0 ,20,25128,25233954,336,0 ,20,20931,15272482,132,0 ,27,5253,68136,21,8 ,3,28,592424,8,3 ,27,5252,68144,26,8 ,3,28,592432,66,32 ,27,5240,68152,22,8 ,3,28,592440,25,13 ,27,5252,68160,25,8 ,3,28,592448,7,2 ,20,977,68161,4,0 ,17,923,8456772,24,0 ,45,15153,5311044,16,0 ,27,5257,68168,23,8 ,3,28,592456,105,67 ,27,5240,68176,22,8 ,3,28,592464,66,32 ,27,5260,68184,25,8 ,3,28,592472,25,13 ,27,5260,68192,26,8 ,3,28,592480,7,2 ,20,978,68193,144,0 ,27,5240,68200,22,8 ,3,28,592488,7,2 ,27,5293,68208,26,8 ,3,28,592496,105,67 ,27,41,68216,23,8 ,3,28,592504,10,3 ,27,41,68224,23,8 ,3,28,592512,6,2 ,17,923,68227,32,0 ,17,923,10029700,24,0 ,17,923,7932548,24,0 ,17,923,7408260,40,0 ,17,923,6359684,40,0 ,44,15152,68228,24,0 ,44,15152,3213956,48,0 ,17,923,8981124,24,0 ,27,41,68232,23,8 ,3,28,592520,8,3 ,27,41,68240,23,8 ,3,28,592528,66,32 ,27,5291,68248,26,8 ,3,28,592536,25,13 ,27,1037,68256,26,8 ,3,28,592544,7,2 ,20,25340,25758370,172,0 ,27,445,68264,23,8 ,3,28,592552,105,67 ,27,1771,68272,26,8 ,3,28,592560,66,32 ,27,204,68280,23,8 ,3,28,592568,25,13 ,27,5279,68288,24,8 ,3,28,592576,7,2 ,20,23282,20515522,60,0 ,20,19949,11078338,496,0 ,45,15153,5311172,16,0 ,17,923,6884036,32,0 ,44,15152,2689732,24,0 ,44,15152,592580,40,0 ,27,573,68296,23,8 ,3,28,592584,103,67 ,27,1035,68304,26,8 ,3,28,592592,62,30 ,27,9,68312,23,8 ,3,28,592600,6,2 ,27,5267,68320,24,8 ,3,28,592608,6,2 ,20,17515,5835490,320,0 ,27,178,68328,23,8 ,3,28,592616,6,2 ,27,340,68336,21,8 ,3,28,592624,4,1 ,27,5268,68344,24,8 ,3,28,592632,10,4 ,27,5271,68352,23,8 ,3,28,592640,9,3 ,20,18187,7408386,76,0 ,20,26387,28904194,332,0 ,20,15323,592642,280,0 ,17,923,8456964,32,0 ,27,3942,68360,24,8 ,3,28,592648,4,1 ,27,650,68368,21,8 ,3,28,592656,9,4 ,27,5275,68376,23,8 ,3,28,592664,19,9 ,27,5277,68384,24,8 ,3,28,592672,14,5 ,27,5278,68392,23,8 ,3,28,592680,4,1 ,27,5280,68400,22,8 ,3,28,592688,6,2 ,27,5281,68408,23,8 ,3,28,592696,4,1 ,27,41,68416,23,8 ,3,28,592704,8,3 ,17,923,10029892,40,0 ,17,923,7932740,40,0 ,44,15152,68420,40,0 ,44,15152,3738436,8,0 ,45,15153,4262724,32,0 ,45,15153,4787012,224,0 ,45,15153,5311300,56,0 ,17,923,8981316,64,0 ,17,923,9505604,40,0 ,27,2138,68424,26,8 ,3,28,592712,14,5 ,27,5284,68432,26,8 ,3,28,592720,4,1 ,27,41,68440,23,8 ,3,28,592728,6,2 ,27,41,68448,23,8 ,3,28,592736,4,1 ,27,295,68456,23,8 ,3,28,592744,8,3 ,27,812,68464,23,8 ,3,28,592752,10,4 ,27,5289,68472,24,8 ,3,28,592760,10,4 ,27,5284,68480,26,8 ,3,28,592768,6,2 ,20,19352,10029954,156,0 ,20,19103,9505666,192,0 ,17,923,68483,24,0 ,44,15152,3738500,24,0 ,44,15152,2689924,48,0 ,44,15152,1641348,24,0 ,27,5240,68488,22,8 ,3,28,592776,7,2 ,27,5293,68496,26,8 ,3,28,592784,12,5 ,27,5240,68504,22,8 ,3,28,592792,8,3 ,27,5293,68512,26,8 ,3,28,592800,10,4 ,20,18916,8981410,12,0 ,20,24885,24710050,728,0 ,27,5240,68520,22,8 ,3,28,592808,10,4 ,27,5291,68528,26,8 ,3,28,592816,6,2 ,27,5293,68536,26,8 ,3,28,592824,7,2 ,27,5240,68544,22,8 ,3,28,592832,12,5 ,44,15152,2165700,16,0 ,17,923,7408580,40,0 ,17,923,6884292,16,0 ,17,923,6360004,40,0 ,27,7218,68552,24,8 ,3,28,592840,10,4 ,27,5408,68560,26,8 ,3,28,592848,10,4 ,27,5301,68568,24,8 ,3,28,592856,6,2 ,27,5305,68576,28,8 ,3,28,592864,7,2 ,27,4752,68584,24,8 ,3,28,592872,12,5 ,27,41,68592,23,8 ,3,28,592880,12,5 ,27,5309,68600,24,8 ,3,28,592888,7,2 ,27,5310,68608,24,8 ,3,28,592896,8,3 ,20,18917,8981506,452,0 ,17,923,8457220,32,0 ,44,15152,592900,32,0 ,44,15152,3214340,72,0 ,27,1565,68616,24,8 ,3,28,592904,12,5 ,27,5317,68624,27,8 ,3,28,592912,10,4 ,27,5318,68632,23,8 ,3,28,592920,6,2 ,27,4000,68640,22,8 ,3,28,592928,6,2 ,27,4439,68648,24,8 ,3,28,592936,7,2 ,27,4186,68656,26,8 ,3,28,592944,8,3 ,27,4441,68664,24,8 ,3,28,592952,7,2 ,27,4185,68672,26,8 ,3,28,592960,12,5 ,17,923,68675,32,0 ,45,15153,4262980,16,0 ,17,923,6884420,24,0 ,44,15152,2165828,104,0 ,44,15152,1641540,16,0 ,44,15152,3738692,24,0 ,27,41,68680,23,8 ,3,28,592968,7,2 ,27,4288,68688,22,8 ,3,28,592976,8,3 ,27,4000,68696,22,8 ,3,28,592984,8,3 ,27,4439,68704,24,8 ,3,28,592992,10,3 ,20,20499,13175906,12,0 ,27,4186,68712,26,8 ,3,28,593000,6,2 ,27,4441,68720,24,8 ,3,28,593008,12,5 ,27,4185,68728,26,8 ,3,28,593016,10,4 ,27,41,68736,23,8 ,3,28,593024,6,2 ,20,17993,6884482,104,0 ,17,923,10030212,24,0 ,17,923,7933060,72,0 ,44,15152,68740,112,0 ,17,923,9505924,40,0 ,27,3875,68744,24,8 ,3,28,593032,6,2 ,27,41,68752,23,8 ,3,28,593040,7,2 ,27,295,68760,23,8 ,3,28,593048,8,3 ,27,812,68768,23,8 ,3,28,593056,7,2 ,20,23283,20516002,260,0 ,20,25880,27331746,92,0 ,20,20726,13700258,68,0 ,27,5330,68776,26,8 ,3,28,593064,12,5 ,27,4406,68784,24,8 ,3,28,593072,7,2 ,27,5331,68792,24,8 ,3,28,593080,8,3 ,27,4389,68800,27,8 ,3,28,593088,12,5 ,20,20500,13176002,84,0 ,45,15153,4263108,64,0 ,44,15152,1641668,248,0 ,27,41,68808,23,8 ,3,28,593096,7,2 ,27,41,68816,23,8 ,3,28,593104,8,3 ,27,4314,68824,21,8 ,3,28,593112,12,5 ,27,4295,68832,24,8 ,3,28,593120,10,4 ,27,3993,68840,21,8 ,3,28,593128,6,2 ,27,3992,68848,28,8 ,3,28,593136,6,2 ,27,4295,68856,23,8 ,3,28,593144,7,2 ,27,5350,68864,24,8 ,3,28,593152,8,3 ,20,22247,18418946,784,0 ,17,923,8457476,24,0 ,17,923,7408900,40,0 ,17,923,6884612,24,0 ,17,923,6360324,24,0 ,44,15152,2690308,32,0 ,44,15152,593156,24,0 ,44,15152,3738884,288,0 ,45,15153,5311748,16,0 ,27,5353,68872,26,8 ,3,28,593160,7,2 ,27,5354,68880,26,8 ,3,28,593168,12,5 ,27,4470,68888,26,8 ,3,28,593176,7,2 ,27,3992,68896,27,8 ,3,28,593184,8,3 ,27,4471,68904,22,8 ,3,28,593192,16,7 ,27,4462,68912,24,8 ,3,28,593200,7,2 ,27,4477,68920,24,8 ,3,28,593208,8,3 ,27,5355,68928,22,8 ,3,28,593216,7,2 ,20,22008,17894722,192,0 ,17,923,68931,16,0 ,17,923,10030404,16,0 ,17,923,8981828,32,0 ,27,4309,68936,24,8 ,3,28,593224,8,3 ,27,5356,68944,23,8 ,3,28,593232,12,5 ,27,4305,68952,24,8 ,3,28,593240,10,4 ,27,4282,68960,24,8 ,3,28,593248,6,2 ,20,18188,7408994,156,0 ,27,5359,68968,22,8 ,3,28,593256,6,2 ,27,5360,68976,22,8 ,3,28,593264,7,2 ,27,5364,68984,26,8 ,3,28,593272,8,3 ,27,5361,68992,23,8 ,3,28,593280,7,2 ,45,15153,5311876,16,0 ,27,4456,69000,24,8 ,3,28,593288,14,6 ,27,4456,69008,26,8 ,3,28,593296,10,4 ,27,4001,69016,22,8 ,3,28,593304,6,2 ,27,4307,69024,22,8 ,3,28,593312,7,2 ,20,23508,21040546,112,0 ,20,16082,2166178,292,0 ,27,5365,69032,24,8 ,3,28,593320,14,6 ,27,4461,69040,21,8 ,3,28,593328,7,2 ,27,4460,69048,26,8 ,3,28,593336,10,3 ,27,4308,69056,24,8 ,3,28,593344,6,2 ,17,923,69059,24,0 ,17,923,10030532,24,0 ,17,923,6884804,24,0 ,17,923,6360516,24,0 ,44,15152,593348,32,0 ,17,923,8457668,48,0 ,17,923,9506244,24,0 ,27,5366,69064,22,8 ,3,28,593352,8,3 ,27,4000,69072,22,8 ,3,28,593360,8,3 ,27,4287,69080,26,8 ,3,28,593368,16,7 ,27,4287,69088,27,8 ,3,28,593376,10,4 ,20,23906,22089186,564,0 ,20,23694,21564898,52,0 ,27,4460,69096,24,8 ,3,28,593384,6,2 ,27,5367,69104,24,8 ,3,28,593392,6,2 ,27,2556,69112,26,8 ,3,28,593400,7,2 ,27,4294,69120,22,8 ,3,28,593408,8,3 ,45,15153,5312004,16,0 ,44,15152,2690564,64,0 ,44,15152,1117700,32,0 ,27,5331,69128,24,8 ,3,28,593416,7,2 ,27,5375,69136,23,8 ,3,28,593424,14,6 ,27,5368,69144,23,8 ,3,28,593432,10,4 ,27,5368,69152,24,8 ,3,28,593440,6,2 ,27,1200,69160,24,8 ,3,28,593448,7,2 ,27,809,69168,23,8 ,3,28,593456,14,6 ,27,5370,69176,23,8 ,3,28,593464,8,3 ,27,5372,69184,23,8 ,3,28,593472,10,3 ,20,20932,15273538,3976,0 ,17,923,8982084,56,0 ,17,923,7409220,24,0 ,44,15152,3214916,80,0 ,27,5374,69192,23,8 ,3,28,593480,6,2 ,27,5374,69200,23,8 ,3,28,593488,14,6 ,27,5375,69208,24,8 ,3,28,593496,10,4 ,27,4108,69216,22,8 ,3,28,593504,6,2 ,27,4466,69224,21,8 ,3,28,593512,6,2 ,27,4297,69232,21,8 ,3,28,593520,7,2 ,27,5376,69240,20,8 ,3,28,593528,8,3 ,27,4468,69248,24,8 ,3,28,593536,7,2 ,20,25683,26807938,368,0 ,17,923,69251,24,0 ,17,923,10030724,24,0 ,17,923,6884996,40,0 ,17,923,6360708,32,0 ,45,15153,5312132,16,0 ,17,923,9506436,40,0 ,27,4468,69256,26,8 ,3,28,593544,12,5 ,27,5377,69264,26,8 ,3,28,593552,7,2 ,27,4474,69272,21,8 ,3,28,593560,8,3 ,27,4473,69280,26,8 ,3,28,593568,12,5 ,27,5381,69288,27,8 ,3,28,593576,7,2 ,27,4476,69296,21,8 ,3,28,593584,8,3 ,27,4467,69304,26,8 ,3,28,593592,16,7 ,27,4473,69312,24,8 ,3,28,593600,7,2 ,20,20727,13700802,976,0 ,45,15153,4263620,16,0 ,17,923,7933636,104,0 ,44,15152,593604,24,0 ,27,5382,69320,22,8 ,3,28,593608,8,3 ,27,4320,69328,22,8 ,3,28,593616,4,1 ,27,5384,69336,24,8 ,3,28,593624,9,4 ,27,5385,69344,24,8 ,3,28,593632,29,15 ,20,979,69345,144,0 ,27,4288,69352,22,8 ,3,28,593640,7,2 ,27,5386,69360,24,8 ,3,28,593648,8,3 ,27,5387,69368,24,8 ,3,28,593656,14,5 ,27,5388,69376,22,8 ,3,28,593664,7,2 ,45,15153,5312260,16,0 ,17,923,7409412,40,0 ,44,15152,1117956,40,0 ,27,5389,69384,22,8 ,3,28,593672,16,7 ,27,5391,69392,24,8 ,3,28,593680,11,4 ,27,5390,69400,20,8 ,3,28,593688,7,2 ,27,4846,69408,26,8 ,3,28,593696,8,3 ,27,4846,69416,25,8 ,3,28,593704,7,2 ,27,4463,69424,22,8 ,3,28,593712,8,3 ,27,4321,69432,22,8 ,3,28,593720,4,1 ,27,5392,69440,25,8 ,3,28,593728,4,1 ,20,17730,6360898,12,0 ,17,923,69443,24,0 ,17,923,10030916,40,0 ,45,15153,4263748,16,0 ,17,923,8458052,40,0 ,27,4288,69448,22,8 ,3,28,593736,18,7 ,27,4292,69456,24,8 ,3,28,593744,7,2 ,27,5389,69464,22,8 ,3,28,593752,8,3 ,27,5391,69472,24,8 ,3,28,593760,14,5 ,20,20501,13176674,440,0 ,20,26101,27856738,292,0 ,20,24699,24186722,716,0 ,27,5394,69480,25,8 ,3,28,593768,7,2 ,27,5394,69488,26,8 ,3,28,593776,8,3 ,27,5395,69496,20,8 ,3,28,593784,4,1 ,27,5397,69504,26,8 ,3,28,593792,12,5 ,20,23695,21565314,72,0 ,20,25881,27332482,92,0 ,45,15153,5312388,24,0 ,17,923,6360964,32,0 ,44,15152,2166660,16,0 ,44,15152,593796,24,0 ,27,5387,69512,24,8 ,3,28,593800,8,3 ,27,5398,69520,22,8 ,3,28,593808,8,3 ,27,5399,69528,22,8 ,3,28,593816,6,2 ,27,4471,69536,22,8 ,3,28,593824,8,3 ,20,21957,17371042,132,0 ,20,26272,28381090,612,0 ,20,17731,6360994,12,0 ,27,5384,69544,24,8 ,3,28,593832,4,1 ,27,5386,69552,24,8 ,3,28,593840,11,4 ,27,5388,69560,22,8 ,3,28,593848,19,9 ,27,4321,69568,22,8 ,3,28,593856,4,1 ,20,17994,6885314,12,0 ,17,923,9506756,24,0 ,17,923,6885316,32,0 ,45,15153,4263876,16,0 ,27,4463,69576,22,8 ,3,28,593864,16,5 ,27,5385,69584,24,8 ,3,28,593872,24,11 ,27,579,69592,22,8 ,3,28,593880,12,4 ,27,579,69600,23,8 ,3,28,593888,4,1 ,27,4795,69608,24,8 ,3,28,593896,6,2 ,27,1062,69616,21,8 ,3,28,593904,4,1 ,27,4298,69624,22,8 ,3,28,593912,8,3 ,27,4001,69632,22,8 ,3,28,593920,7,2 ,20,22966,19992578,60,0 ,20,25341,25759746,92,0 ,20,17732,6361090,12,0 ,17,923,69635,16,0 ,17,923,8982532,24,0 ,44,15152,2691076,40,0 ,44,15152,2166788,24,0 ,44,15152,69636,200,0 ,27,1380,69640,22,8 ,3,28,593928,10,4 ,27,4793,69648,24,8 ,3,28,593936,4,1 ,27,4002,69656,22,8 ,3,28,593944,12,5 ,27,4794,69664,22,8 ,3,28,593952,16,7 ,20,17995,6885410,388,0 ,27,4000,69672,22,8 ,3,28,593960,6,2 ,27,1403,69680,24,8 ,3,28,593968,6,2 ,27,1374,69688,22,8 ,3,28,593976,4,1 ,27,41,69696,23,8 ,3,28,593984,9,4 ,45,15153,5312580,64,0 ,17,923,7409732,40,0 ,44,15152,593988,24,0 ,44,15152,1118276,24,0 ,45,15153,4264004,16,0 ,27,5408,69704,27,8 ,3,28,593992,15,7 ,27,7125,69712,24,8 ,3,28,594000,7,2 ,27,5444,69720,24,8 ,3,28,594008,8,3 ,27,5409,69728,24,8 ,3,28,594016,4,1 ,20,19353,10031202,516,0 ,20,17733,6361186,48,0 ,27,5410,69736,24,8 ,3,28,594024,7,2 ,27,5411,69744,24,8 ,3,28,594032,16,7 ,27,5416,69752,27,8 ,3,28,594040,4,1 ,27,5411,69760,24,8 ,3,28,594048,19,8 ,17,923,69763,32,0 ,17,923,10031236,56,0 ,17,923,6361220,48,0 ,17,923,8458372,112,0 ,17,923,9506948,96,0 ,27,5418,69768,24,8 ,3,28,594056,10,4 ,27,5419,69776,24,8 ,3,28,594064,29,15 ,27,5420,69784,24,8 ,3,28,594072,4,1 ,27,5409,69792,24,8 ,3,28,594080,7,2 ,27,5410,69800,24,8 ,3,28,594088,10,4 ,27,5421,69808,24,8 ,3,28,594096,6,2 ,27,5422,69816,23,8 ,3,28,594104,4,1 ,27,5411,69824,24,8 ,3,28,594112,12,5 ,20,18442,7934146,112,0 ,17,923,8982724,64,0 ,17,923,6885572,40,0 ,44,15152,2166980,24,0 ,44,15152,3215556,72,0 ,45,15153,4264132,24,0 ,27,5424,69832,24,8 ,3,28,594120,4,1 ,27,5411,69840,24,8 ,3,28,594128,99,67 ,27,5431,69848,22,8 ,3,28,594136,10,4 ,27,41,69856,23,8 ,3,28,594144,8,3 ,27,5291,69864,26,8 ,3,28,594152,4,1 ,27,5433,69872,22,8 ,3,28,594160,9,4 ,27,5424,69880,24,8 ,3,28,594168,21,9 ,27,5421,69888,24,8 ,3,28,594176,4,1 ,44,15152,1118468,200,0 ,44,15152,594180,24,0 ,27,5435,69896,21,8 ,3,28,594184,6,2 ,27,5436,69904,24,8 ,3,28,594192,10,3 ,27,41,69912,23,8 ,3,28,594200,8,3 ,27,5420,69920,24,8 ,3,28,594208,4,1 ,20,23509,21041442,112,0 ,20,15212,69922,3196,0 ,27,5437,69928,24,8 ,3,28,594216,9,4 ,27,5416,69936,27,8 ,3,28,594224,28,12 ,27,5438,69944,24,8 ,3,28,594232,8,3 ,27,5439,69952,24,8 ,3,28,594240,16,5 ,44,15152,2691396,32,0 ,27,5418,69960,24,8 ,3,28,594248,10,4 ,27,5440,69968,21,8 ,3,28,594256,6,2 ,27,5409,69976,24,8 ,3,28,594264,10,4 ,27,5441,69984,24,8 ,3,28,594272,8,3 ,27,5410,69992,24,8 ,3,28,594280,6,2 ,27,5442,70000,24,8 ,3,28,594288,14,6 ,27,5419,70008,24,8 ,3,28,594296,10,4 ,27,5445,70016,24,8 ,3,28,594304,8,3 ,20,19104,9507202,380,0 ,17,923,70019,40,0 ,45,15153,4264324,16,0 ,17,923,7410052,40,0 ,44,15152,2167172,24,0 ,27,5445,70024,24,8 ,3,28,594312,8,3 ,27,5291,70032,24,8 ,3,28,594320,8,3 ,27,5448,70040,24,8 ,3,28,594328,16,7 ,27,5449,70048,24,8 ,3,28,594336,8,3 ,20,17331,5312930,812,0 ,27,5450,70056,22,8 ,3,28,594344,10,4 ,27,5456,70064,20,8 ,3,28,594352,8,3 ,27,5455,70072,24,8 ,3,28,594360,10,4 ,27,5453,70080,22,8 ,3,28,594368,8,3 ,20,23696,21565890,60,0 ,44,15152,594372,24,0 ,27,5454,70088,22,8 ,3,28,594376,10,4 ,27,5733,70096,20,8 ,3,28,594384,10,4 ,27,5732,70104,24,8 ,3,28,594392,8,3 ,27,5457,70112,22,8 ,3,28,594400,14,6 ,20,22967,19993058,56,0 ,20,17734,6361570,12,0 ,27,5458,70120,22,8 ,3,28,594408,8,3 ,27,5477,70128,22,8 ,3,28,594416,54,26 ,27,5464,70136,26,8 ,3,28,594424,4,1 ,27,5466,70144,20,8 ,3,28,594432,13,4 ,45,15153,4264452,16,0 ,17,923,7934468,136,0 ,17,923,6885892,32,0 ,17,923,6361604,40,0 ,27,5465,70152,24,8 ,3,28,594440,99,67 ,27,5465,70160,23,8 ,3,28,594448,6,2 ,27,4048,70168,22,8 ,3,28,594456,13,4 ,27,5467,70176,22,8 ,3,28,594464,11,4 ,27,5468,70184,22,8 ,3,28,594472,8,3 ,27,5469,70192,23,8 ,3,28,594480,10,4 ,27,5469,70200,24,8 ,3,28,594488,8,3 ,27,5471,70208,20,8 ,3,28,594496,10,4 ,20,18189,7410242,500,0 ,20,17735,6361666,12,0 ,17,923,10031684,24,0 ,44,15152,2691652,40,0 ,44,15152,2167364,24,0 ,45,15153,4788804,24,0 ,45,15153,5313092,48,0 ,27,5470,70216,24,8 ,3,28,594504,13,4 ,27,5472,70224,24,8 ,3,28,594512,54,26 ,27,5473,70232,20,8 ,3,28,594520,4,1 ,27,4307,70240,22,8 ,3,28,594528,6,2 ,20,25882,27333218,92,0 ,27,5470,70248,23,8 ,3,28,594536,4,1 ,27,5475,70256,20,8 ,3,28,594544,10,3 ,27,5474,70264,24,8 ,3,28,594552,16,7 ,27,5474,70272,23,8 ,3,28,594560,4,1 ,45,15153,4264580,16,0 ,44,15152,594564,24,0 ,27,4014,70280,22,8 ,3,28,594568,9,4 ,27,5728,70288,22,8 ,3,28,594576,10,4 ,27,4768,70296,24,8 ,3,28,594584,7,2 ,27,5483,70304,26,8 ,3,28,594592,8,3 ,20,17736,6361762,992,0 ,27,41,70312,23,8 ,3,28,594600,6,2 ,27,4482,70320,26,8 ,3,28,594608,6,2 ,27,1993,70328,22,8 ,3,28,594616,6,2 ,27,41,70336,23,8 ,3,28,594624,6,2 ,17,923,70339,24,0 ,17,923,8983236,32,0 ,17,923,7410372,40,0 ,27,1034,70344,24,8 ,3,28,594632,6,2 ,27,579,70352,22,8 ,3,28,594640,6,2 ,27,579,70360,23,8 ,3,28,594648,6,2 ,27,1062,70368,21,8 ,3,28,594656,6,2 ,20,25342,25760482,1204,0 ,27,41,70376,23,8 ,3,28,594664,6,2 ,27,5489,70384,23,8 ,3,28,594672,6,2 ,27,1034,70392,26,8 ,3,28,594680,6,2 ,27,579,70400,24,8 ,3,28,594688,6,2 ,17,923,10031876,24,0 ,17,923,6886148,48,0 ,44,15152,2167556,24,0 ,44,15152,3216132,72,0 ,45,15153,4264708,24,0 ,45,15153,4788996,232,0 ,27,579,70408,25,8 ,3,28,594696,6,2 ,27,1062,70416,21,8 ,3,28,594704,6,2 ,27,5491,70424,22,8 ,3,28,594712,8,3 ,27,5492,70432,22,8 ,3,28,594720,8,3 ,27,5493,70440,22,8 ,3,28,594728,6,2 ,27,5494,70448,22,8 ,3,28,594736,6,2 ,27,5495,70456,22,8 ,3,28,594744,4,1 ,27,5496,70464,22,8 ,3,28,594752,9,4 ,20,22009,17896258,528,0 ,44,15152,594756,24,0 ,17,923,6361924,24,0 ,27,5497,70472,22,8 ,3,28,594760,10,4 ,27,2562,70480,22,8 ,3,28,594768,4,1 ,27,5498,70488,23,8 ,3,28,594776,10,4 ,27,1600,70496,26,8 ,3,28,594784,10,4 ,20,980,70497,304,0 ,27,1565,70504,24,8 ,3,28,594792,7,2 ,27,41,70512,25,8 ,3,28,594800,4,1 ,27,41,70520,23,8 ,3,28,594808,18,8 ,27,41,70528,23,8 ,3,28,594816,16,7 ,17,923,70531,16,0 ,17,923,9507716,32,0 ,44,15152,2691972,32,0 ,27,4314,70536,21,8 ,3,28,594824,6,2 ,27,4295,70544,24,8 ,3,28,594832,6,2 ,27,5511,70552,24,8 ,3,28,594840,14,5 ,27,5512,70560,22,8 ,3,28,594848,4,1 ,20,23697,21566370,1408,0 ,20,22968,19993506,216,0 ,27,2312,70568,22,8 ,3,28,594856,9,4 ,27,5513,70576,22,8 ,3,28,594864,10,4 ,27,5514,70584,22,8 ,3,28,594872,4,1 ,27,5515,70592,22,8 ,3,28,594880,10,4 ,20,21958,17372098,172,0 ,20,15324,594882,316,0 ,17,923,10032068,48,0 ,44,15152,2167748,24,0 ,45,15153,4264900,104,0 ,45,15153,5313476,16,0 ,17,923,8983492,24,0 ,27,5602,70600,22,8 ,3,28,594888,10,4 ,27,5517,70608,28,8 ,3,28,594896,6,2 ,27,5515,70616,22,8 ,3,28,594904,7,2 ,27,1993,70624,22,8 ,3,28,594912,16,7 ,27,5519,70632,22,8 ,3,28,594920,6,2 ,27,5520,70640,22,8 ,3,28,594928,8,3 ,27,5521,70648,22,8 ,3,28,594936,10,4 ,27,5522,70656,22,8 ,3,28,594944,6,2 ,17,923,70659,16,0 ,17,923,8459268,32,0 ,17,923,7410692,40,0 ,17,923,6362116,32,0 ,44,15152,594948,48,0 ,27,5523,70664,21,8 ,3,28,594952,7,2 ,27,5524,70672,24,8 ,3,28,594960,16,7 ,27,5528,70680,25,8 ,3,28,594968,8,3 ,27,5291,70688,26,8 ,3,28,594976,10,4 ,27,5534,70696,22,8 ,3,28,594984,6,2 ,27,5601,70704,22,8 ,3,28,594992,7,2 ,27,5537,70712,24,8 ,3,28,595000,16,7 ,27,5539,70720,24,8 ,3,28,595008,8,3 ,20,22528,18945090,540,0 ,20,18443,7935042,52,0 ,45,15153,5313604,56,0 ,27,5540,70728,24,8 ,3,28,595016,12,5 ,27,5524,70736,24,8 ,3,28,595024,10,4 ,27,5541,70744,23,8 ,3,28,595032,6,2 ,27,5543,70752,26,8 ,3,28,595040,7,2 ,27,163,70760,22,8 ,3,28,595048,16,7 ,27,5549,70768,22,8 ,3,28,595056,10,4 ,27,5550,70776,22,8 ,3,28,595064,6,2 ,27,5596,70784,22,8 ,3,28,595072,7,2 ,20,21200,15799426,12,0 ,17,923,70787,32,0 ,17,923,9507972,24,0 ,17,923,6886532,48,0 ,44,15152,2692228,32,0 ,44,15152,2167940,24,0 ,44,15152,1643652,224,0 ,17,923,8983684,32,0 ,27,5539,70792,24,8 ,3,28,595080,16,7 ,27,5551,70800,22,8 ,3,28,595088,4,1 ,27,5552,70808,24,8 ,3,28,595096,9,4 ,27,2182,70816,24,8 ,3,28,595104,10,4 ,20,23510,21042338,12,0 ,20,25129,25236642,116,0 ,27,4482,70824,26,8 ,3,28,595112,4,1 ,27,5555,70832,22,8 ,3,28,595120,7,2 ,27,2182,70840,24,8 ,3,28,595128,8,3 ,27,4733,70848,22,8 ,3,28,595136,6,2 ,20,23284,20518082,60,0 ,27,4606,70856,24,8 ,3,28,595144,4,1 ,27,4466,70864,21,8 ,3,28,595152,9,4 ,27,4456,70872,26,8 ,3,28,595160,10,4 ,27,4461,70880,21,8 ,3,28,595168,4,1 ,20,21201,15799522,388,0 ,20,17516,5838050,2504,0 ,27,4460,70888,26,8 ,3,28,595176,12,5 ,27,4474,70896,21,8 ,3,28,595184,4,1 ,27,4473,70904,26,8 ,3,28,595192,9,4 ,27,4476,70912,21,8 ,3,28,595200,17,8 ,20,23511,21042434,64,0 ,20,21794,16848130,268,0 ,17,923,8459524,24,0 ,17,923,6362372,24,0 ,27,4468,70920,26,8 ,3,28,595208,4,1 ,27,4294,70928,23,8 ,3,28,595216,10,4 ,27,4294,70936,24,8 ,3,28,595224,4,1 ,27,4288,70944,22,8 ,3,28,595232,58,35 ,27,4467,70952,26,8 ,3,28,595240,10,4 ,27,4463,70960,22,8 ,3,28,595248,36,17 ,27,4478,70968,24,8 ,3,28,595256,4,1 ,27,4456,70976,25,8 ,3,28,595264,8,3 ,20,25883,27333954,92,0 ,17,923,10032452,24,0 ,17,923,7411012,40,0 ,44,15152,2168132,24,0 ,44,15152,3216708,24,0 ,17,923,9508164,24,0 ,27,4460,70984,25,8 ,3,28,595272,4,1 ,27,4473,70992,25,8 ,3,28,595280,30,14 ,27,4468,71000,25,8 ,3,28,595288,4,1 ,27,4321,71008,22,8 ,3,28,595296,9,4 ,20,26388,28906850,248,0 ,27,5560,71016,23,8 ,3,28,595304,15,7 ,27,5564,71024,20,8 ,3,28,595312,4,1 ,27,5563,71032,24,8 ,3,28,595320,8,3 ,27,4320,71040,22,8 ,3,28,595328,4,1 ,17,923,71043,24,0 ,17,923,8983940,40,0 ,44,15152,2692484,24,0 ,44,15152,595332,64,0 ,27,4294,71048,22,8 ,3,28,595336,12,5 ,27,5563,71056,23,8 ,3,28,595344,7,2 ,27,4000,71064,22,8 ,3,28,595352,107,67 ,27,4001,71072,22,8 ,3,28,595360,8,3 ,27,5565,71080,22,8 ,3,28,595368,8,3 ,27,5566,71088,22,8 ,3,28,595376,18,6 ,27,4313,71096,24,8 ,3,28,595384,6,2 ,27,5567,71104,23,8 ,3,28,595392,70,34 ,17,923,8459716,24,0 ,17,923,6362564,32,0 ,27,5574,71112,26,8 ,3,28,595400,4,1 ,27,5569,71120,23,8 ,3,28,595408,9,4 ,27,5570,71128,23,8 ,3,28,595416,12,5 ,27,5571,71136,25,8 ,3,28,595424,4,1 ,20,18444,7935458,152,0 ,27,2182,71144,24,8 ,3,28,595432,4,1 ,27,5577,71152,23,8 ,3,28,595440,34,16 ,27,4482,71160,26,8 ,3,28,595448,8,3 ,27,4832,71168,26,8 ,3,28,595456,10,4 ,20,20897,14751234,464,0 ,17,923,10032644,40,0 ,17,923,6886916,40,0 ,44,15152,2168324,24,0 ,44,15152,3216900,24,0 ,44,15152,3741188,32,0 ,45,15153,5314052,184,0 ,17,923,9508356,64,0 ,27,2182,71176,24,8 ,3,28,595464,6,2 ,27,4482,71184,26,8 ,3,28,595472,7,2 ,27,2182,71192,24,8 ,3,28,595480,16,7 ,27,4482,71200,26,8 ,3,28,595488,6,2 ,20,15603,1119778,184,0 ,27,5582,71208,20,8 ,3,28,595496,6,2 ,27,5581,71216,24,8 ,3,28,595504,10,4 ,27,2182,71224,24,8 ,3,28,595512,6,2 ,27,5581,71232,23,8 ,3,28,595520,7,2 ,17,923,71235,24,0 ,44,15152,71236,272,0 ,17,923,7935556,136,0 ,44,15152,2692676,32,0 ,27,2312,71240,22,8 ,3,28,595528,16,7 ,27,5225,71248,22,8 ,3,28,595536,6,2 ,27,4748,71256,22,8 ,3,28,595544,6,2 ,27,2182,71264,24,8 ,3,28,595552,10,4 ,27,5584,71272,23,8 ,3,28,595560,6,2 ,27,4482,71280,26,8 ,3,28,595568,7,2 ,27,2182,71288,24,8 ,3,28,595576,16,7 ,27,5586,71296,23,8 ,3,28,595584,6,2 ,17,923,8459908,32,0 ,17,923,7411332,40,0 ,27,4482,71304,26,8 ,3,28,595592,6,2 ,27,4832,71312,26,8 ,3,28,595600,10,4 ,27,4768,71320,24,8 ,3,28,595608,6,2 ,27,2182,71328,24,8 ,3,28,595616,7,2 ,20,23285,20518562,60,0 ,27,2365,71336,23,8 ,3,28,595624,16,7 ,27,5537,71344,24,8 ,3,28,595632,6,2 ,27,5540,71352,24,8 ,3,28,595640,6,2 ,27,5524,71360,24,8 ,3,28,595648,10,4 ,20,16083,2168514,12,0 ,17,923,8984260,32,0 ,17,923,6362820,24,0 ,44,15152,2168516,24,0 ,44,15152,3217092,48,0 ,27,5594,71368,25,8 ,3,28,595656,6,2 ,27,5514,71376,22,8 ,3,28,595664,7,2 ,27,5515,71384,22,8 ,3,28,595672,16,7 ,27,5523,71392,21,8 ,3,28,595680,6,2 ,20,24322,23140066,128,0 ,27,1993,71400,22,8 ,3,28,595688,10,4 ,27,5522,71408,22,8 ,3,28,595696,6,2 ,27,5597,71416,23,8 ,3,28,595704,7,2 ,27,5598,71424,22,8 ,3,28,595712,16,7 ,20,23512,21042946,72,0 ,17,923,71427,24,0 ,45,15153,4265732,56,0 ,44,15152,3741444,24,0 ,27,5599,71432,23,8 ,3,28,595720,6,2 ,27,4295,71440,23,8 ,3,28,595728,10,4 ,27,5598,71448,22,8 ,3,28,595736,6,2 ,27,5607,71456,26,8 ,3,28,595744,7,2 ,20,16084,2168610,12,0 ,27,5603,71464,23,8 ,3,28,595752,16,7 ,27,5604,71472,24,8 ,3,28,595760,6,2 ,27,1037,71480,26,8 ,3,28,595768,10,4 ,27,445,71488,23,8 ,3,28,595776,6,2 ,17,923,10032964,16,0 ,17,923,6887236,32,0 ,44,15152,2692932,32,0 ,44,15152,1120068,24,0 ,27,1771,71496,26,8 ,3,28,595784,7,2 ,27,204,71504,23,8 ,3,28,595792,16,7 ,27,41,71512,23,8 ,3,28,595800,6,2 ,27,5609,71520,24,8 ,3,28,595808,10,4 ,27,5611,71528,22,8 ,3,28,595816,6,2 ,27,5612,71536,22,8 ,3,28,595824,7,2 ,27,5597,71544,24,8 ,3,28,595832,16,7 ,27,5613,71552,24,8 ,3,28,595840,8,3 ,20,19686,10557314,504,0 ,20,16085,2168706,12,0 ,17,923,8460164,48,0 ,17,923,6363012,32,0 ,44,15152,2168708,24,0 ,44,15152,595844,56,0 ,27,2312,71560,22,8 ,3,28,595848,10,4 ,27,5614,71568,22,8 ,3,28,595856,6,2 ,27,1993,71576,22,8 ,3,28,595864,7,2 ,27,5615,71584,22,8 ,3,28,595872,16,7 ,27,2312,71592,22,8 ,3,28,595880,6,2 ,27,5619,71600,24,8 ,3,28,595888,8,3 ,27,5524,71608,24,8 ,3,28,595896,10,4 ,27,5615,71616,22,8 ,3,28,595904,6,2 ,20,16665,3741634,172,0 ,17,923,71619,16,0 ,17,923,10033092,32,0 ,17,923,7411652,40,0 ,44,15152,3741636,32,0 ,17,923,8984516,40,0 ,27,5620,71624,22,8 ,3,28,595912,7,2 ,27,5551,71632,22,8 ,3,28,595920,16,7 ,27,5552,71640,24,8 ,3,28,595928,10,4 ,27,4733,71648,22,8 ,3,28,595936,10,4 ,20,16086,2168802,20,0 ,27,4606,71656,24,8 ,3,28,595944,6,2 ,27,2182,71664,24,8 ,3,28,595952,7,2 ,27,5663,71672,27,8 ,3,28,595960,16,7 ,27,5483,71680,26,8 ,3,28,595968,8,3 ,17,923,9508868,32,0 ,44,15152,1120260,32,0 ,27,5679,71688,26,8 ,3,28,595976,10,4 ,27,163,71696,22,8 ,3,28,595984,10,4 ,27,41,71704,23,8 ,3,28,595992,6,2 ,27,4314,71712,21,8 ,3,28,596000,7,2 ,20,25884,27334690,92,0 ,27,4295,71720,24,8 ,3,28,596008,16,7 ,27,5673,71728,25,8 ,3,28,596016,8,3 ,27,5673,71736,26,8 ,3,28,596024,10,4 ,27,5514,71744,22,8 ,3,28,596032,6,2 ,20,25130,25237570,132,0 ,17,923,71747,16,0 ,44,15152,3217476,64,0 ,17,923,6887492,16,0 ,44,15152,2693188,152,0 ,44,15152,2168900,24,0 ,27,5513,71752,22,8 ,3,28,596040,7,2 ,27,5515,71760,22,8 ,3,28,596048,16,7 ,27,4295,71768,23,8 ,3,28,596056,6,2 ,27,5598,71776,22,8 ,3,28,596064,10,4 ,27,5677,71784,27,8 ,3,28,596072,10,4 ,27,5680,71792,26,8 ,3,28,596080,6,2 ,27,5543,71800,26,8 ,3,28,596088,7,2 ,27,4482,71808,26,8 ,3,28,596096,16,7 ,20,23286,20519042,172,0 ,20,26102,27859074,220,0 ,20,16087,2168962,24,0 ,17,923,6363268,24,0 ,27,41,71816,23,8 ,3,28,596104,8,3 ,27,5713,71824,24,8 ,3,28,596112,6,2 ,27,163,71832,22,8 ,3,28,596120,10,4 ,27,5683,71840,23,8 ,3,28,596128,6,2 ,27,5684,71848,23,8 ,3,28,596136,7,2 ,27,5685,71856,24,8 ,3,28,596144,12,5 ,27,5686,71864,25,8 ,3,28,596152,10,4 ,27,5685,71872,24,8 ,3,28,596160,6,2 ,17,923,71875,32,0 ,17,923,10033348,24,0 ,17,923,6887620,24,0 ,44,15152,3741892,48,0 ,45,15153,4266180,16,0 ,27,5688,71880,23,8 ,3,28,596168,7,2 ,27,5683,71888,23,8 ,3,28,596176,12,5 ,27,5684,71896,23,8 ,3,28,596184,6,2 ,27,5685,71904,24,8 ,3,28,596192,10,4 ,27,5690,71912,25,8 ,3,28,596200,6,2 ,27,41,71920,23,8 ,3,28,596208,7,2 ,27,5515,71928,22,8 ,3,28,596216,12,5 ,27,5698,71936,22,8 ,3,28,596224,10,4 ,17,923,9509124,48,0 ,17,923,7411972,40,0 ,44,15152,2169092,24,0 ,44,15152,1120516,48,0 ,17,923,8460548,48,0 ,17,923,8984836,32,0 ,27,5514,71944,22,8 ,3,28,596232,6,2 ,27,4295,71952,23,8 ,3,28,596240,7,2 ,27,4295,71960,24,8 ,3,28,596248,12,5 ,27,5524,71968,24,8 ,3,28,596256,10,4 ,20,21959,17373474,244,0 ,27,4314,71976,21,8 ,3,28,596264,6,2 ,27,5699,71984,22,8 ,3,28,596272,7,2 ,27,5700,71992,26,8 ,3,28,596280,12,5 ,27,5701,72000,22,8 ,3,28,596288,8,3 ,20,23513,21043522,56,0 ,20,16088,2169154,32,0 ,45,15153,4266308,24,0 ,17,923,6363460,48,0 ,44,15152,596292,32,0 ,27,5704,72008,24,8 ,3,28,596296,10,4 ,27,5420,72016,26,8 ,3,28,596304,6,2 ,27,5598,72024,22,8 ,3,28,596312,7,2 ,27,3650,72032,24,8 ,3,28,596320,12,5 ,27,2312,72040,22,8 ,3,28,596328,8,3 ,27,5710,72048,25,8 ,3,28,596336,7,2 ,27,5711,72056,22,8 ,3,28,596344,6,2 ,27,5513,72064,22,8 ,3,28,596352,4,1 ,17,923,10033540,32,0 ,17,923,6887812,24,0 ,27,5714,72072,24,8 ,3,28,596360,11,4 ,27,5715,72080,24,8 ,3,28,596368,7,2 ,27,5716,72088,24,8 ,3,28,596376,4,1 ,27,5555,72096,22,8 ,3,28,596384,12,5 ,27,5721,72104,20,8 ,3,28,596392,6,2 ,27,5720,72112,24,8 ,3,28,596400,48,25 ,27,5723,72120,20,8 ,3,28,596408,4,1 ,27,5722,72128,24,8 ,3,28,596416,22,10 ,17,923,72131,32,0 ,44,15152,2169284,24,0 ,27,2182,72136,24,8 ,3,28,596424,4,1 ,27,5720,72144,23,8 ,3,28,596432,10,4 ,27,5724,72152,24,8 ,3,28,596440,4,1 ,27,5722,72160,23,8 ,3,28,596448,8,3 ,27,5725,72168,22,8 ,3,28,596456,24,11 ,27,2312,72176,22,8 ,3,28,596464,4,1 ,27,5726,72184,22,8 ,3,28,596472,6,2 ,27,5225,72192,22,8 ,3,28,596480,4,1 ,20,25684,26810882,152,0 ,17,923,8985092,40,0 ,45,15153,4266500,16,0 ,27,4748,72200,22,8 ,3,28,596488,6,2 ,27,5729,72208,22,8 ,3,28,596496,4,1 ,27,5730,72216,22,8 ,3,28,596504,28,13 ,27,3274,72224,22,8 ,3,28,596512,6,2 ,20,18918,8985122,1012,0 ,27,5731,72232,24,8 ,3,28,596520,10,4 ,27,5731,72240,24,8 ,3,28,596528,4,1 ,27,41,72248,23,8 ,3,28,596536,6,2 ,27,2312,72256,22,8 ,3,28,596544,4,1 ,20,19950,11082306,76,0 ,20,16089,2169410,132,0 ,45,15153,4790852,32,0 ,17,923,7412292,40,0 ,17,923,6888004,48,0 ,44,15152,596548,32,0 ,44,15152,3217988,48,0 ,44,15152,3742276,24,0 ,27,5291,72264,24,8 ,3,28,596552,8,3 ,27,5448,72272,24,8 ,3,28,596560,4,1 ,27,5449,72280,24,8 ,3,28,596568,16,7 ,27,5734,72288,22,8 ,3,28,596576,7,2 ,20,22969,19995234,52,0 ,27,5455,72296,23,8 ,3,28,596584,12,5 ,27,5735,72304,24,8 ,3,28,596592,4,1 ,27,5732,72312,23,8 ,3,28,596600,24,11 ,27,5450,72320,22,8 ,3,28,596608,6,2 ,17,923,10033796,48,0 ,17,923,7936644,32,0 ,44,15152,2169476,24,0 ,44,15152,1120900,48,0 ,45,15153,4266628,40,0 ,17,923,8460932,32,0 ,17,923,9509508,32,0 ,27,5736,72328,22,8 ,3,28,596616,4,1 ,27,5737,72336,24,8 ,3,28,596624,6,2 ,27,5456,72344,20,8 ,3,28,596632,4,1 ,27,5455,72352,24,8 ,3,28,596640,59,35 ,20,18445,7936674,12,0 ,27,5733,72360,20,8 ,3,28,596648,10,4 ,27,5732,72368,24,8 ,3,28,596656,38,18 ,27,41,72376,23,8 ,3,28,596664,6,2 ,27,2312,72384,22,8 ,3,28,596672,8,3 ,17,923,72387,16,0 ,17,923,6363844,40,0 ,27,5291,72392,24,8 ,3,28,596680,14,6 ,27,5448,72400,24,8 ,3,28,596688,16,7 ,27,5449,72408,24,8 ,3,28,596696,10,4 ,27,5734,72416,22,8 ,3,28,596704,4,1 ,20,24323,23141090,200,0 ,27,5455,72424,23,8 ,3,28,596712,8,3 ,27,5732,72432,23,8 ,3,28,596720,4,1 ,27,5739,72440,23,8 ,3,28,596728,9,4 ,27,5740,72448,24,8 ,3,28,596736,12,5 ,20,23514,21043970,28,0 ,20,25885,27335426,92,0 ,20,17116,4791042,128,0 ,20,18446,7936770,52,0 ,44,15152,3742468,40,0 ,27,41,72456,23,8 ,3,28,596744,4,1 ,27,2312,72464,22,8 ,3,28,596752,22,10 ,27,5450,72472,22,8 ,3,28,596760,11,4 ,27,5742,72480,22,8 ,3,28,596768,8,3 ,27,5734,72488,22,8 ,3,28,596776,4,1 ,27,5743,72496,22,8 ,3,28,596784,8,3 ,27,5744,72504,22,8 ,3,28,596792,7,2 ,27,5736,72512,22,8 ,3,28,596800,10,4 ,17,923,72515,40,0 ,17,923,8985412,40,0 ,44,15152,2169668,24,0 ,44,15152,596804,56,0 ,45,15153,4791108,32,0 ,27,5745,72520,22,8 ,3,28,596808,4,1 ,27,2312,72528,22,8 ,3,28,596816,11,4 ,27,634,72536,21,8 ,3,28,596824,15,7 ,27,5291,72544,24,8 ,3,28,596832,4,1 ,27,5448,72552,24,8 ,3,28,596840,30,14 ,27,5449,72560,24,8 ,3,28,596848,6,2 ,27,41,72568,23,8 ,3,28,596856,8,3 ,27,2312,72576,22,8 ,3,28,596864,8,3 ,17,923,9509764,24,0 ,17,923,7936900,32,0 ,17,923,7412612,40,0 ,44,15152,1645444,2048,0 ,17,923,8461188,24,0 ,27,5291,72584,24,8 ,3,28,596872,10,4 ,27,5448,72592,24,8 ,3,28,596880,8,3 ,27,5449,72600,24,8 ,3,28,596888,8,3 ,27,5742,72608,22,8 ,3,28,596896,4,1 ,27,5734,72616,22,8 ,3,28,596904,16,5 ,27,5743,72624,22,8 ,3,28,596912,14,6 ,27,5744,72632,22,8 ,3,28,596920,8,3 ,27,41,72640,23,8 ,3,28,596928,16,7 ,45,15153,5315524,16,0 ,17,923,6888388,40,0 ,44,15152,3218372,200,0 ,45,15153,4266948,16,0 ,27,2312,72648,22,8 ,3,28,596936,10,4 ,27,634,72656,21,8 ,3,28,596944,93,31 ,27,1127,72664,22,8 ,3,28,596952,7,2 ,27,4627,72672,22,8 ,3,28,596960,16,7 ,20,23515,21044194,36,0 ,20,15604,1121250,72,0 ,27,5752,72680,24,8 ,3,28,596968,4,1 ,27,5753,72688,22,8 ,3,28,596976,11,4 ,27,5745,72696,22,8 ,3,28,596984,22,11 ,27,5754,72704,24,8 ,3,28,596992,7,2 ,20,22970,19995650,360,0 ,17,923,10034180,48,0 ,17,923,6364164,48,0 ,44,15152,2169860,24,0 ,44,15152,1121284,48,0 ,27,5755,72712,23,8 ,3,28,597000,14,6 ,27,5496,72720,24,8 ,3,28,597008,4,1 ,27,5760,72728,20,8 ,3,28,597016,8,3 ,27,2312,72736,24,8 ,3,28,597024,4,1 ,27,5761,72744,24,8 ,3,28,597032,18,8 ,27,5762,72752,22,8 ,3,28,597040,4,1 ,27,5450,72760,22,8 ,3,28,597048,34,16 ,27,5240,72768,22,8 ,3,28,597056,8,3 ,20,17996,6888514,52,0 ,17,923,9509956,24,0 ,44,15152,3742788,24,0 ,45,15153,4267076,48,0 ,45,15153,4791364,16,0 ,45,15153,5315652,112,0 ,17,923,8461380,40,0 ,27,2312,72776,23,8 ,3,28,597064,10,4 ,27,5776,72784,26,8 ,3,28,597072,4,1 ,27,5763,72792,22,8 ,3,28,597080,9,4 ,27,5770,72800,22,8 ,3,28,597088,24,12 ,20,25131,25238626,132,0 ,27,3993,72808,21,8 ,3,28,597096,4,1 ,27,3992,72816,28,8 ,3,28,597104,16,7 ,27,4320,72824,22,8 ,3,28,597112,4,1 ,27,3992,72832,27,8 ,3,28,597120,6,2 ,20,24504,23665794,140,0 ,17,923,72835,32,0 ,17,923,8985732,40,0 ,17,923,7937156,24,0 ,27,5764,72840,24,8 ,3,28,597128,4,1 ,27,5765,72848,22,8 ,3,28,597136,18,8 ,27,5768,72856,25,8 ,3,28,597144,4,1 ,27,5771,72864,22,8 ,3,28,597152,8,3 ,20,19951,11082914,152,0 ,20,18447,7937186,12,0 ,27,4064,72872,22,8 ,3,28,597160,4,1 ,27,5772,72880,23,8 ,3,28,597168,16,7 ,27,5773,72888,24,8 ,3,28,597176,26,11 ,27,4064,72896,22,8 ,3,28,597184,4,1 ,45,15153,4791492,224,0 ,17,923,7412932,40,0 ,44,15152,2170052,24,0 ,27,5777,72904,22,8 ,3,28,597192,6,2 ,27,4389,72912,26,8 ,3,28,597200,4,1 ,27,5784,72920,23,8 ,3,28,597208,12,5 ,27,5785,72928,24,8 ,3,28,597216,22,10 ,20,981,72929,284,0 ,27,5786,72936,23,8 ,3,28,597224,10,4 ,27,5331,72944,24,8 ,3,28,597232,8,3 ,27,41,72952,23,8 ,3,28,597240,4,1 ,27,5803,72960,22,8 ,3,28,597248,11,4 ,20,23516,21044482,28,0 ,20,18448,7937282,48,0 ,17,923,9510148,32,0 ,17,923,6888708,24,0 ,44,15152,2694404,24,0 ,44,15152,597252,136,0 ,44,15152,3742980,48,0 ,27,4001,72968,22,8 ,3,28,597256,24,12 ,27,7243,72976,23,8 ,3,28,597264,4,1 ,27,5795,72984,26,8 ,3,28,597272,18,8 ,27,5791,72992,24,8 ,3,28,597280,10,4 ,20,20502,13180194,160,0 ,20,26389,28908834,12,0 ,20,16666,3743010,88,0 ,27,5792,73000,24,8 ,3,28,597288,14,6 ,27,5793,73008,24,8 ,3,28,597296,14,6 ,27,5794,73016,24,8 ,3,28,597304,4,1 ,27,5796,73024,26,8 ,3,28,597312,11,4 ,17,923,7937348,32,0 ,27,5798,73032,26,8 ,3,28,597320,10,4 ,27,5794,73040,24,8 ,3,28,597328,7,2 ,27,5801,73048,25,8 ,3,28,597336,12,5 ,27,5805,73056,21,8 ,3,28,597344,8,3 ,20,21795,16850274,12,0 ,20,19105,9510242,844,0 ,27,5409,73064,24,8 ,3,28,597352,4,1 ,27,5806,73072,24,8 ,3,28,597360,6,2 ,27,5807,73080,24,8 ,3,28,597368,7,2 ,27,5808,73088,24,8 ,3,28,597376,12,5 ,20,26390,28908930,104,0 ,17,923,73091,32,0 ,17,923,10034564,272,0 ,17,923,6364548,48,0 ,44,15152,2170244,24,0 ,44,15152,1121668,48,0 ,17,923,8461700,32,0 ,27,5411,73096,24,8 ,3,28,597384,4,1 ,27,4768,73104,24,8 ,3,28,597392,10,4 ,27,7109,73112,27,8 ,3,28,597400,26,11 ,27,5240,73120,22,8 ,3,28,597408,4,1 ,20,15325,597410,148,0 ,27,41,73128,23,8 ,3,28,597416,6,2 ,27,5810,73136,24,8 ,3,28,597424,4,1 ,27,5812,73144,24,8 ,3,28,597432,10,4 ,27,5813,73152,24,8 ,3,28,597440,4,1 ,20,21796,16850370,12,0 ,17,923,8986052,40,0 ,17,923,6888900,48,0 ,44,15152,2694596,56,0 ,45,15153,4267460,16,0 ,27,5813,73160,26,8 ,3,28,597448,7,2 ,27,5814,73168,24,8 ,3,28,597456,32,15 ,27,5815,73176,24,8 ,3,28,597464,10,4 ,27,2182,73184,24,8 ,3,28,597472,14,6 ,20,23517,21044706,28,0 ,20,25886,27336162,92,0 ,20,17997,6888930,132,0 ,20,23287,20520418,212,0 ,27,5816,73192,24,8 ,3,28,597480,8,3 ,27,5817,73200,24,8 ,3,28,597488,8,3 ,27,5823,73208,27,8 ,3,28,597496,8,3 ,27,7037,73216,22,8 ,3,28,597504,8,3 ,17,923,9510404,32,0 ,17,923,7413252,32,0 ,27,5825,73224,24,8 ,3,28,597512,6,2 ,27,5826,73232,24,8 ,3,28,597520,6,2 ,27,5350,73240,24,8 ,3,28,597528,4,1 ,27,5827,73248,23,8 ,3,28,597536,6,2 ,20,21797,16850466,352,0 ,20,15605,1121826,172,0 ,27,5828,73256,24,8 ,3,28,597544,4,1 ,27,5829,73264,23,8 ,3,28,597552,9,4 ,27,5831,73272,24,8 ,3,28,597560,12,5 ,27,5830,73280,23,8 ,3,28,597568,4,1 ,45,15153,4267588,48,0 ,17,923,7937604,32,0 ,44,15152,2170436,24,0 ,27,5834,73288,24,8 ,3,28,597576,32,15 ,27,5833,73296,27,8 ,3,28,597584,4,1 ,27,143,73304,23,8 ,3,28,597592,9,4 ,27,41,73312,23,8 ,3,28,597600,12,5 ,20,16090,2170466,788,0 ,27,5836,73320,24,8 ,3,28,597608,4,1 ,27,41,73328,23,8 ,3,28,597616,6,2 ,27,4463,73336,22,8 ,3,28,597624,4,1 ,27,7031,73344,22,8 ,3,28,597632,8,3 ,20,18449,7937666,12,0 ,17,923,73347,16,0 ,17,923,8461956,32,0 ,44,15152,3743364,80,0 ,27,7273,73352,24,8 ,3,28,597640,59,20 ,27,5843,73360,24,8 ,3,28,597648,4,1 ,27,6972,73368,20,8 ,3,28,597656,12,5 ,27,6971,73376,26,8 ,3,28,597664,4,1 ,27,5845,73384,19,8 ,3,28,597672,9,4 ,27,6428,73392,20,8 ,3,28,597680,15,7 ,27,6427,73400,26,8 ,3,28,597688,4,1 ,27,163,73408,24,8 ,3,28,597696,8,3 ,20,23518,21044930,144,0 ,20,25685,26812098,228,0 ,44,15152,73412,24,0 ,27,5851,73416,25,8 ,3,28,597704,4,1 ,27,5862,73424,22,8 ,3,28,597712,16,7 ,27,5861,73432,23,8 ,3,28,597720,14,6 ,27,1770,73440,26,8 ,3,28,597728,4,1 ,20,18450,7937762,52,0 ,27,178,73448,23,8 ,3,28,597736,12,5 ,27,1037,73456,25,8 ,3,28,597744,4,1 ,27,445,73464,23,8 ,3,28,597752,6,2 ,27,1771,73472,26,8 ,3,28,597760,22,10 ,20,17117,4792066,148,0 ,17,923,73475,48,0 ,17,923,9510660,40,0 ,17,923,7413508,40,0 ,17,923,6364932,40,0 ,44,15152,2170628,32,0 ,44,15152,1122052,96,0 ,17,923,8986372,40,0 ,27,204,73480,23,8 ,3,28,597768,4,1 ,27,1034,73488,26,8 ,3,28,597776,8,3 ,27,579,73496,24,8 ,3,28,597784,59,20 ,27,579,73504,25,8 ,3,28,597792,4,1 ,27,1034,73512,26,8 ,3,28,597800,9,4 ,27,579,73520,24,8 ,3,28,597808,19,9 ,27,579,73528,25,8 ,3,28,597816,14,5 ,27,1062,73536,21,8 ,3,28,597824,4,1 ,17,923,6889284,48,0 ,17,923,7937860,32,0 ,27,295,73544,23,8 ,3,28,597832,6,2 ,27,812,73552,23,8 ,3,28,597840,4,1 ,27,41,73560,23,8 ,3,28,597848,8,3 ,27,1973,73568,24,8 ,3,28,597856,4,1 ,20,26103,27860834,220,0 ,27,5852,73576,24,8 ,3,28,597864,10,4 ,27,5852,73584,24,8 ,3,28,597872,4,1 ,27,1993,73592,24,8 ,3,28,597880,8,3 ,27,178,73600,23,8 ,3,28,597888,9,3 ,20,23907,22093698,680,0 ,17,923,8462212,48,0 ,44,15152,2695044,88,0 ,44,15152,73604,56,0 ,27,5855,73608,26,8 ,3,28,597896,4,1 ,27,1062,73616,21,8 ,3,28,597904,9,4 ,27,1993,73624,24,8 ,3,28,597912,10,4 ,27,1973,73632,24,8 ,3,28,597920,4,1 ,27,5859,73640,24,8 ,3,28,597928,7,2 ,27,5855,73648,24,8 ,3,28,597936,12,5 ,27,41,73656,23,8 ,3,28,597944,6,2 ,27,5870,73664,21,8 ,3,28,597952,10,4 ,45,15153,5316548,16,0 ,45,15153,4267972,16,0 ,27,4294,73672,22,8 ,3,28,597960,6,2 ,27,4470,73680,24,8 ,3,28,597968,4,1 ,27,5871,73688,22,8 ,3,28,597976,9,4 ,27,5872,73696,22,8 ,3,28,597984,10,4 ,20,16667,3743714,160,0 ,27,5873,73704,22,8 ,3,28,597992,4,1 ,27,5875,73712,25,8 ,3,28,598000,6,2 ,27,4768,73720,24,8 ,3,28,598008,4,1 ,27,4752,73728,24,8 ,3,28,598016,9,4 ,44,15152,2170884,24,0 ,27,3135,73736,26,8 ,3,28,598024,10,4 ,27,4482,73744,26,8 ,3,28,598032,4,1 ,27,4663,73752,22,8 ,3,28,598040,7,2 ,27,2312,73760,22,8 ,3,28,598048,10,4 ,27,4758,73768,22,8 ,3,28,598056,10,4 ,27,4759,73776,24,8 ,3,28,598064,4,1 ,27,2182,73784,24,8 ,3,28,598072,9,4 ,27,5879,73792,22,8 ,3,28,598080,10,4 ,17,923,9510980,56,0 ,17,923,7938116,24,0 ,17,923,7413828,40,0 ,17,923,6365252,40,0 ,45,15153,4268100,32,0 ,45,15153,5316676,40,0 ,17,923,8986692,48,0 ,27,5880,73800,22,8 ,3,28,598088,4,1 ,27,1973,73808,24,8 ,3,28,598096,8,3 ,27,4768,73816,24,8 ,3,28,598104,18,6 ,27,4482,73824,26,8 ,3,28,598112,4,1 ,27,5879,73832,22,8 ,3,28,598120,35,16 ,27,5880,73840,21,8 ,3,28,598128,24,12 ,27,5884,73848,24,8 ,3,28,598136,10,4 ,27,5885,73856,22,8 ,3,28,598144,6,2 ,20,19354,10035330,544,0 ,20,25132,25239682,24,0 ,20,16301,3219586,208,0 ,20,18451,7938178,12,0 ,17,923,73859,24,0 ,27,5886,73864,24,8 ,3,28,598152,8,3 ,27,2312,73872,22,8 ,3,28,598160,4,1 ,27,5887,73880,22,8 ,3,28,598168,10,4 ,27,5225,73888,22,8 ,3,28,598176,4,1 ,27,4748,73896,22,8 ,3,28,598184,12,5 ,27,4663,73904,22,8 ,3,28,598192,12,5 ,27,2312,73912,22,8 ,3,28,598200,4,1 ,27,4759,73920,24,8 ,3,28,598208,9,4 ,20,21960,17375426,468,0 ,20,26391,28909762,104,0 ,20,25887,27336898,92,0 ,44,15152,2171076,24,0 ,17,923,6889668,48,0 ,27,2312,73928,22,8 ,3,28,598216,10,4 ,27,3993,73936,21,8 ,3,28,598224,4,1 ,27,3992,73944,28,8 ,3,28,598232,8,3 ,27,3992,73952,27,8 ,3,28,598240,4,1 ,20,24505,23666914,112,0 ,20,18452,7938274,12,0 ,27,1973,73960,24,8 ,3,28,598248,9,4 ,27,41,73968,23,8 ,3,28,598256,10,4 ,27,295,73976,23,8 ,3,28,598264,4,1 ,27,812,73984,23,8 ,3,28,598272,19,6 ,20,21202,15802626,192,0 ,17,923,8462596,32,0 ,17,923,7938308,40,0 ,44,15152,3744004,32,0 ,27,1973,73992,24,8 ,3,28,598280,10,3 ,27,2274,74000,24,8 ,3,28,598288,8,3 ,27,5895,74008,23,8 ,3,28,598296,4,1 ,27,5897,74016,24,8 ,3,28,598304,9,4 ,20,24324,23142690,128,0 ,27,2274,74024,23,8 ,3,28,598312,10,4 ,27,1037,74032,26,8 ,3,28,598320,4,1 ,27,445,74040,23,8 ,3,28,598328,7,2 ,27,1034,74048,28,8 ,3,28,598336,10,4 ,20,18453,7938370,196,0 ,20,25133,25239874,808,0 ,17,923,74051,32,0 ,45,15153,4268356,32,0 ,44,15152,74052,48,0 ,44,15152,598340,24,0 ,27,579,74056,26,8 ,3,28,598344,20,9 ,27,579,74064,27,8 ,3,28,598352,4,1 ,27,5899,74072,22,8 ,3,28,598360,9,4 ,27,41,74080,23,8 ,3,28,598368,10,4 ,20,19952,11084130,272,0 ,27,295,74088,23,8 ,3,28,598376,4,1 ,27,812,74096,23,8 ,3,28,598384,14,6 ,27,1973,74104,24,8 ,3,28,598392,8,3 ,27,5902,74112,24,8 ,3,28,598400,4,1 ,45,15153,5316996,24,0 ,17,923,7414148,32,0 ,17,923,6365572,48,0 ,44,15152,2171268,24,0 ,27,5895,74120,24,8 ,3,28,598408,9,4 ,27,2274,74128,24,8 ,3,28,598416,10,4 ,27,5035,74136,24,8 ,3,28,598424,4,1 ,27,41,74144,23,8 ,3,28,598432,7,2 ,27,1062,74152,21,8 ,3,28,598440,16,7 ,27,41,74160,23,8 ,3,28,598448,6,2 ,27,1973,74168,24,8 ,3,28,598456,9,3 ,27,5908,74176,24,8 ,3,28,598464,6,2 ,17,923,8987076,40,0 ,27,5909,74184,24,8 ,3,28,598472,12,4 ,27,5911,74192,22,8 ,3,28,598480,10,4 ,27,5912,74200,22,8 ,3,28,598488,10,4 ,27,5913,74208,22,8 ,3,28,598496,6,2 ,20,18190,7414242,656,0 ,27,5914,74216,26,8 ,3,28,598504,4,1 ,27,41,74224,23,8 ,3,28,598512,9,4 ,27,1034,74232,28,8 ,3,28,598520,10,4 ,27,579,74240,26,8 ,3,28,598528,7,2 ,20,17998,6889986,160,0 ,17,923,9511428,40,0 ,44,15152,598532,24,0 ,44,15152,1122820,56,0 ,44,15152,3219972,24,0 ,44,15152,3744260,24,0 ,17,923,8462852,32,0 ,27,579,74248,27,8 ,3,28,598536,12,5 ,27,1062,74256,21,8 ,3,28,598544,8,3 ,27,41,74264,23,8 ,3,28,598552,7,2 ,27,295,74272,23,8 ,3,28,598560,4,1 ,20,20503,13181474,304,0 ,27,812,74280,23,8 ,3,28,598568,6,2 ,27,4294,74288,24,8 ,3,28,598576,8,3 ,27,1973,74296,24,8 ,3,28,598584,6,2 ,27,5908,74304,24,8 ,3,28,598592,8,3 ,20,15326,598594,12,0 ,17,923,74307,16,0 ,45,15153,5317188,16,0 ,17,923,7938628,32,0 ,17,923,6890052,40,0 ,44,15152,2695748,64,0 ,44,15152,2171460,24,0 ,45,15153,4268612,40,0 ,27,5909,74312,24,8 ,3,28,598600,10,3 ,27,2274,74320,24,8 ,3,28,598608,18,8 ,27,5919,74328,24,8 ,3,28,598616,8,3 ,27,5920,74336,23,8 ,3,28,598624,4,1 ,20,24886,24715874,164,0 ,27,5035,74344,24,8 ,3,28,598632,9,4 ,27,5921,74352,26,8 ,3,28,598640,10,4 ,27,4294,74360,23,8 ,3,28,598648,4,1 ,27,5919,74368,23,8 ,3,28,598656,7,2 ,17,923,7414404,32,0 ,27,5920,74376,23,8 ,3,28,598664,8,3 ,27,1973,74384,24,8 ,3,28,598672,8,3 ,27,1973,74392,24,8 ,3,28,598680,4,1 ,27,1973,74400,24,8 ,3,28,598688,9,4 ,20,15327,598690,80,0 ,27,41,74408,23,8 ,3,28,598696,10,4 ,27,4294,74416,22,8 ,3,28,598704,4,1 ,27,2312,74424,22,8 ,3,28,598712,4,1 ,27,5926,74432,22,8 ,3,28,598720,9,4 ,20,26273,28385986,264,0 ,17,923,74435,32,0 ,45,15153,5317316,376,0 ,44,15152,74436,40,0 ,44,15152,598724,24,0 ,44,15152,3220164,32,0 ,44,15152,3744452,152,0 ,27,5927,74440,22,8 ,3,28,598728,10,4 ,27,5928,74448,22,8 ,3,28,598736,4,1 ,27,5929,74456,24,8 ,3,28,598744,10,3 ,27,3993,74464,21,8 ,3,28,598752,16,7 ,27,3992,74472,28,8 ,3,28,598760,6,2 ,27,5933,74480,26,8 ,3,28,598768,6,2 ,27,3992,74488,27,8 ,3,28,598776,8,3 ,27,295,74496,23,8 ,3,28,598784,4,1 ,17,923,8987396,24,0 ,17,923,6365956,48,0 ,44,15152,2171652,24,0 ,17,923,8463108,32,0 ,27,812,74504,23,8 ,3,28,598792,9,4 ,27,5908,74512,24,8 ,3,28,598800,13,5 ,27,5909,74520,24,8 ,3,28,598808,7,2 ,27,5934,74528,24,8 ,3,28,598816,6,2 ,27,2274,74536,24,8 ,3,28,598824,4,1 ,27,5935,74544,24,8 ,3,28,598832,9,4 ,27,5936,74552,24,8 ,3,28,598840,10,4 ,27,5959,74560,24,8 ,3,28,598848,4,1 ,20,23519,21046082,64,0 ,17,923,9511748,24,0 ,17,923,7938884,40,0 ,27,5958,74568,26,8 ,3,28,598856,10,3 ,27,5940,74576,23,8 ,3,28,598864,14,6 ,27,5941,74584,23,8 ,3,28,598872,9,3 ,27,1707,74592,26,8 ,3,28,598880,4,1 ,27,579,74600,24,8 ,3,28,598888,22,10 ,27,579,74608,25,8 ,3,28,598896,4,1 ,27,1421,74616,26,8 ,3,28,598904,16,7 ,27,5944,74624,24,8 ,3,28,598912,6,2 ,20,15606,1123202,72,0 ,45,15153,4268932,16,0 ,17,923,7414660,40,0 ,17,923,6890372,40,0 ,44,15152,598916,40,0 ,27,5945,74632,24,8 ,3,28,598920,10,4 ,27,5946,74640,22,8 ,3,28,598928,6,2 ,27,4146,74648,24,8 ,3,28,598936,4,1 ,27,5947,74656,24,8 ,3,28,598944,10,4 ,20,17118,4793250,408,0 ,20,25888,27337634,92,0 ,27,5948,74664,24,8 ,3,28,598952,4,1 ,27,5949,74672,24,8 ,3,28,598960,8,3 ,27,1026,74680,24,8 ,3,28,598968,4,1 ,27,1029,74688,26,8 ,3,28,598976,6,2 ,20,22010,17900482,188,0 ,17,923,74691,32,0 ,17,923,8987588,24,0 ,44,15152,2171844,24,0 ,44,15152,1123268,48,0 ,44,15152,3220420,24,0 ,45,15153,4793284,16,0 ,27,1057,74696,22,8 ,3,28,598984,8,3 ,27,1052,74704,24,8 ,3,28,598992,6,2 ,27,1364,74712,26,8 ,3,28,599000,4,1 ,27,1418,74720,26,8 ,3,28,599008,25,8 ,27,1062,74728,21,8 ,3,28,599016,19,9 ,27,1039,74736,21,8 ,3,28,599024,4,1 ,27,1038,74744,26,8 ,3,28,599032,6,2 ,27,5954,74752,20,8 ,3,28,599040,4,1 ,20,26392,28910594,52,0 ,17,923,9511940,32,0 ,44,15152,74756,64,0 ,45,15153,4269060,48,0 ,17,923,8463364,48,0 ,27,4138,74760,28,8 ,3,28,599048,8,3 ,27,41,74768,23,8 ,3,28,599056,4,1 ,27,1378,74776,24,8 ,3,28,599064,8,3 ,27,1380,74784,22,8 ,3,28,599072,4,1 ,27,1038,74792,25,8 ,3,28,599080,7,2 ,27,1040,74800,24,8 ,3,28,599088,6,2 ,27,623,74808,23,8 ,3,28,599096,14,6 ,27,1043,74816,24,8 ,3,28,599104,8,3 ,45,15153,4793412,232,0 ,44,15152,2696260,24,0 ,27,4138,74824,27,8 ,3,28,599112,4,1 ,27,5956,74832,26,8 ,3,28,599120,8,3 ,27,5960,74840,24,8 ,3,28,599128,4,1 ,27,41,74848,23,8 ,3,28,599136,9,4 ,20,24506,23667810,384,0 ,20,20146,11609186,84,0 ,27,295,74856,23,8 ,3,28,599144,10,4 ,27,812,74864,23,8 ,3,28,599152,4,1 ,27,1973,74872,24,8 ,3,28,599160,16,7 ,27,2274,74880,24,8 ,3,28,599168,26,11 ,20,23288,20522114,132,0 ,20,20898,14754946,4620,0 ,17,923,8987780,24,0 ,17,923,7939204,40,0 ,17,923,6366340,40,0 ,44,15152,2172036,24,0 ,44,15152,3220612,24,0 ,27,5963,74888,26,8 ,3,28,599176,48,19 ,27,1309,74896,26,8 ,3,28,599184,4,1 ,27,5965,74904,22,8 ,3,28,599192,9,4 ,27,5967,74912,22,8 ,3,28,599200,10,4 ,27,5969,74920,22,8 ,3,28,599208,4,1 ,27,5971,74928,21,8 ,3,28,599216,10,4 ,27,5972,74936,21,8 ,3,28,599224,4,1 ,27,5973,74944,21,8 ,3,28,599232,9,4 ,17,923,74947,16,0 ,44,15152,599236,40,0 ,17,923,7414980,40,0 ,17,923,6890692,48,0 ,27,6337,74952,22,8 ,3,28,599240,10,4 ,27,6330,74960,22,8 ,3,28,599248,4,1 ,27,4768,74968,24,8 ,3,28,599256,6,2 ,27,5974,74976,24,8 ,3,28,599264,12,4 ,20,16668,3744994,304,0 ,27,4482,74984,26,8 ,3,28,599272,6,2 ,27,5976,74992,26,8 ,3,28,599280,4,1 ,27,41,75000,23,8 ,3,28,599288,9,4 ,27,5981,75008,21,8 ,3,28,599296,15,7 ,20,18650,8463618,12,0 ,17,923,9512196,32,0 ,44,15152,2696452,24,0 ,27,5980,75016,24,8 ,3,28,599304,4,1 ,27,5980,75024,23,8 ,3,28,599312,6,2 ,27,5981,75032,21,8 ,3,28,599320,7,2 ,27,5980,75040,24,8 ,3,28,599328,4,1 ,20,24325,23143714,100,0 ,20,15328,599330,116,0 ,20,22529,18949410,648,0 ,27,5980,75048,23,8 ,3,28,599336,9,4 ,27,41,75056,23,8 ,3,28,599344,10,4 ,27,6012,75064,24,8 ,3,28,599352,4,1 ,27,5988,75072,22,8 ,3,28,599360,12,5 ,20,23520,21046594,28,0 ,17,923,75075,16,0 ,17,923,8987972,32,0 ,44,15152,2172228,128,0 ,44,15152,1123652,24,0 ,44,15152,3220804,32,0 ,27,5989,75080,24,8 ,3,28,599368,4,1 ,27,5990,75088,23,8 ,3,28,599376,24,11 ,27,5993,75096,21,8 ,3,28,599384,8,3 ,27,5991,75104,22,8 ,3,28,599392,4,1 ,20,18651,8463714,896,0 ,27,163,75112,24,8 ,3,28,599400,9,4 ,27,5998,75120,25,8 ,3,28,599408,10,4 ,27,2312,75128,22,8 ,3,28,599416,4,1 ,27,4026,75136,22,8 ,3,28,599424,16,7 ,20,22248,18425218,132,0 ,17,923,8463748,40,0 ,45,15153,4269444,24,0 ,27,1401,75144,24,8 ,3,28,599432,4,1 ,27,6000,75152,23,8 ,3,28,599440,9,4 ,27,6001,75160,23,8 ,3,28,599448,15,7 ,27,6004,75168,21,8 ,3,28,599456,14,5 ,20,26393,28911010,1168,0 ,27,6002,75176,22,8 ,3,28,599464,4,1 ,27,6005,75184,21,8 ,3,28,599472,6,2 ,27,6006,75192,24,8 ,3,28,599480,4,1 ,27,6007,75200,23,8 ,3,28,599488,8,3 ,20,982,75201,248,0 ,20,15607,1123778,156,0 ,20,24700,24192450,412,0 ,17,923,75203,16,0 ,44,15152,2696644,24,0 ,17,923,7939524,32,0 ,17,923,6366660,40,0 ,27,6010,75208,21,8 ,3,28,599496,4,1 ,27,6008,75216,22,8 ,3,28,599504,8,3 ,27,1698,75224,26,8 ,3,28,599512,12,4 ,27,6013,75232,24,8 ,3,28,599520,18,6 ,20,25686,26813922,104,0 ,27,6014,75240,22,8 ,3,28,599528,4,1 ,27,2182,75248,24,8 ,3,28,599536,9,4 ,27,6016,75256,28,8 ,3,28,599544,10,4 ,27,6017,75264,24,8 ,3,28,599552,4,1 ,17,923,10036740,272,0 ,17,923,7415300,40,0 ,44,15152,75268,64,0 ,44,15152,599556,64,0 ,44,15152,1123844,24,0 ,17,923,9512452,32,0 ,27,6018,75272,24,8 ,3,28,599560,7,2 ,27,6020,75280,20,8 ,3,28,599568,8,3 ,27,6019,75288,24,8 ,3,28,599576,6,2 ,27,6021,75296,24,8 ,3,28,599584,12,4 ,20,23521,21046818,28,0 ,27,6022,75304,24,8 ,3,28,599592,10,4 ,27,6024,75312,20,8 ,3,28,599600,18,6 ,27,6023,75320,24,8 ,3,28,599608,8,3 ,27,6025,75328,22,8 ,3,28,599616,4,1 ,20,26104,27862594,172,0 ,17,923,75331,16,0 ,17,923,8988228,32,0 ,17,923,6891076,48,0 ,44,15152,3221060,32,0 ,45,15153,4269636,24,0 ,27,6026,75336,27,8 ,3,28,599624,9,4 ,27,6027,75344,24,8 ,3,28,599632,10,4 ,27,4748,75352,22,8 ,3,28,599640,4,1 ,27,1699,75360,26,8 ,3,28,599648,16,7 ,27,6033,75368,21,8 ,3,28,599656,4,1 ,27,6031,75376,22,8 ,3,28,599664,9,4 ,27,6029,75384,26,8 ,3,28,599672,10,4 ,27,6030,75392,23,8 ,3,28,599680,4,1 ,20,25889,27338370,92,0 ,44,15152,2696836,24,0 ,27,6034,75400,24,8 ,3,28,599688,12,5 ,27,6035,75408,22,8 ,3,28,599696,12,5 ,27,4663,75416,22,8 ,3,28,599704,4,1 ,27,6019,75424,23,8 ,3,28,599712,6,2 ,27,6036,75432,22,8 ,3,28,599720,4,1 ,27,6037,75440,22,8 ,3,28,599728,9,4 ,27,6039,75448,28,8 ,3,28,599736,15,7 ,27,6040,75456,22,8 ,3,28,599744,24,11 ,17,923,75459,32,0 ,17,923,8464068,40,0 ,17,923,7939780,40,0 ,44,15152,1124036,48,0 ,27,6043,75464,28,8 ,3,28,599752,4,1 ,27,6268,75472,22,8 ,3,28,599760,6,2 ,27,6053,75480,22,8 ,3,28,599768,4,1 ,27,6045,75488,24,8 ,3,28,599776,20,9 ,27,6046,75496,22,8 ,3,28,599784,4,1 ,27,6047,75504,24,8 ,3,28,599792,6,2 ,27,6048,75512,24,8 ,3,28,599800,7,2 ,27,6051,75520,27,8 ,3,28,599808,8,3 ,20,23522,21047042,124,0 ,20,16302,3221250,20,0 ,20,17999,6891266,116,0 ,20,20147,11609858,92,0 ,20,21203,15804162,308,0 ,17,923,9512708,24,0 ,17,923,6366980,56,0 ,45,15153,4269828,32,0 ,27,6246,75528,24,8 ,3,28,599816,4,1 ,27,4768,75536,24,8 ,3,28,599824,11,4 ,27,6055,75544,24,8 ,3,28,599832,15,7 ,27,6056,75552,24,8 ,3,28,599840,4,1 ,27,6057,75560,23,8 ,3,28,599848,32,15 ,27,6058,75568,23,8 ,3,28,599856,8,3 ,27,4763,75576,24,8 ,3,28,599864,14,6 ,27,6061,75584,25,8 ,3,28,599872,6,2 ,20,22971,19998530,36,0 ,20,19687,10561346,344,0 ,17,923,8988484,24,0 ,17,923,7415620,40,0 ,44,15152,2697028,56,0 ,44,15152,3221316,24,0 ,27,6063,75592,22,8 ,3,28,599880,14,6 ,27,1374,75600,21,8 ,3,28,599888,6,2 ,27,6065,75608,24,8 ,3,28,599896,8,3 ,27,6066,75616,24,8 ,3,28,599904,14,6 ,20,18454,7939938,820,0 ,27,6068,75624,21,8 ,3,28,599912,6,2 ,27,6067,75632,26,8 ,3,28,599920,6,2 ,27,6069,75640,24,8 ,3,28,599928,6,2 ,27,6070,75648,24,8 ,3,28,599936,6,2 ,20,24887,24717186,12,0 ,44,15152,3745668,72,0 ,27,6067,75656,25,8 ,3,28,599944,6,2 ,27,6071,75664,22,8 ,3,28,599952,14,6 ,27,6073,75672,24,8 ,3,28,599960,12,5 ,27,6072,75680,24,8 ,3,28,599968,8,3 ,20,16303,3221410,20,0 ,27,6074,75688,22,8 ,3,28,599976,14,6 ,27,6090,75696,26,8 ,3,28,599984,4,1 ,27,6075,75704,23,8 ,3,28,599992,9,4 ,27,6076,75712,24,8 ,3,28,600000,10,4 ,17,923,75715,24,0 ,17,923,9512900,32,0 ,17,923,6891460,48,0 ,27,2182,75720,24,8 ,3,28,600008,4,1 ,27,4752,75728,24,8 ,3,28,600016,8,3 ,27,4482,75736,26,8 ,3,28,600024,12,5 ,27,41,75744,23,8 ,3,28,600032,8,3 ,20,24888,24717282,252,0 ,27,295,75752,23,8 ,3,28,600040,6,2 ,27,812,75760,23,8 ,3,28,600048,6,2 ,27,1028,75768,24,8 ,3,28,600056,24,11 ,27,1633,75776,26,8 ,3,28,600064,14,6 ,20,16146,2697218,244,0 ,17,923,8988676,24,0 ,17,923,7940100,40,0 ,44,15152,75780,32,0 ,44,15152,600068,24,0 ,44,15152,3221508,24,0 ,45,15153,4270084,24,0 ,17,923,8464388,32,0 ,27,6084,75784,24,8 ,3,28,600072,6,2 ,27,6085,75792,24,8 ,3,28,600080,18,8 ,27,6086,75800,24,8 ,3,28,600088,8,3 ,27,6087,75808,24,8 ,3,28,600096,8,3 ,27,6088,75816,24,8 ,3,28,600104,12,5 ,27,6006,75824,22,8 ,3,28,600112,36,17 ,27,6091,75832,22,8 ,3,28,600120,6,2 ,27,6093,75840,21,8 ,3,28,600128,8,3 ,20,24326,23144514,24,0 ,20,16304,3221570,48,0 ,44,15152,1124420,24,0 ,27,6092,75848,26,8 ,3,28,600136,6,2 ,27,41,75856,23,8 ,3,28,600144,10,4 ,27,6057,75864,23,8 ,3,28,600152,6,2 ,27,6094,75872,24,8 ,3,28,600160,7,2 ,20,22972,19998818,80,0 ,27,4752,75880,26,8 ,3,28,600168,14,6 ,27,6095,75888,22,8 ,3,28,600176,6,2 ,27,6092,75896,25,8 ,3,28,600184,8,3 ,27,2312,75904,22,8 ,3,28,600192,8,3 ,17,923,75907,16,0 ,17,923,7415940,40,0 ,27,6056,75912,24,8 ,3,28,600200,22,7 ,27,6098,75920,22,8 ,3,28,600208,4,1 ,27,6099,75928,23,8 ,3,28,600216,9,4 ,27,6100,75936,24,8 ,3,28,600224,10,4 ,20,23289,20523170,120,0 ,27,6071,75944,22,8 ,3,28,600232,6,2 ,27,6101,75952,24,8 ,3,28,600240,18,8 ,27,6103,75960,24,8 ,3,28,600248,8,3 ,27,6104,75968,22,8 ,3,28,600256,18,8 ,20,15329,600258,32,0 ,17,923,9513156,32,0 ,17,923,6367428,40,0 ,44,15152,600260,56,0 ,44,15152,3221700,32,0 ,45,15153,4270276,24,0 ,17,923,8988868,24,0 ,27,6105,75976,22,8 ,3,28,600264,4,1 ,27,6069,75984,24,8 ,3,28,600272,9,4 ,27,6106,75992,23,8 ,3,28,600280,10,4 ,27,6106,76000,24,8 ,3,28,600288,4,1 ,27,6107,76008,20,8 ,3,28,600296,6,2 ,27,6108,76016,24,8 ,3,28,600304,8,3 ,27,6071,76024,22,8 ,3,28,600312,10,4 ,27,6120,76032,23,8 ,3,28,600320,8,3 ,20,24327,23144706,380,0 ,17,923,76035,16,0 ,17,923,8464644,32,0 ,44,15152,2697476,184,0 ,44,15152,76036,32,0 ,44,15152,1124612,32,0 ,27,6103,76040,24,8 ,3,28,600328,8,3 ,27,6111,76048,23,8 ,3,28,600336,12,5 ,27,6065,76056,24,8 ,3,28,600344,10,4 ,27,6115,76064,24,8 ,3,28,600352,4,1 ,20,21798,16853282,352,0 ,20,25687,26814754,112,0 ,27,6116,76072,23,8 ,3,28,600360,9,4 ,27,6118,76080,25,8 ,3,28,600368,10,4 ,27,4763,76088,26,8 ,3,28,600376,4,1 ,27,6235,76096,23,8 ,3,28,600384,12,5 ,44,15152,2173252,48,0 ,17,923,7940420,40,0 ,17,923,6891844,24,0 ,27,6214,76104,28,8 ,3,28,600392,4,1 ,27,6121,76112,25,8 ,3,28,600400,9,4 ,27,4752,76120,24,8 ,3,28,600408,10,4 ,27,812,76128,23,8 ,3,28,600416,4,1 ,20,25890,27339106,92,0 ,27,295,76136,23,8 ,3,28,600424,22,10 ,27,1973,76144,24,8 ,3,28,600432,8,3 ,27,2182,76152,24,8 ,3,28,600440,16,7 ,27,4482,76160,26,8 ,3,28,600448,4,1 ,17,923,76163,16,0 ,17,923,8989060,24,0 ,45,15153,4270468,64,0 ,27,6128,76168,24,8 ,3,28,600456,9,4 ,27,4752,76176,26,8 ,3,28,600464,10,4 ,27,6153,76184,26,8 ,3,28,600472,4,1 ,27,4768,76192,24,8 ,3,28,600480,10,4 ,20,22249,18426274,132,0 ,20,22011,17901986,144,0 ,27,6132,76200,24,8 ,3,28,600488,16,7 ,27,4482,76208,26,8 ,3,28,600496,10,4 ,27,6139,76216,24,8 ,3,28,600504,4,1 ,27,1879,76224,24,8 ,3,28,600512,9,4 ,20,16305,3221954,48,0 ,20,15330,600514,252,0 ,17,923,9513412,24,0 ,17,923,7416260,40,0 ,44,15152,3221956,32,0 ,44,15152,3746244,32,0 ,27,747,76232,27,8 ,3,28,600520,17,8 ,27,630,76240,25,8 ,3,28,600528,4,1 ,27,3135,76248,24,8 ,3,28,600536,8,3 ,27,4707,76256,24,8 ,3,28,600544,4,1 ,20,20148,11610594,112,0 ,20,19953,11086306,140,0 ,27,6142,76264,24,8 ,3,28,600552,8,3 ,27,41,76272,23,8 ,3,28,600560,4,1 ,27,6144,76280,24,8 ,3,28,600568,6,2 ,27,6142,76288,24,8 ,3,28,600576,4,1 ,17,923,76291,24,0 ,17,923,8464900,32,0 ,17,923,6892036,24,0 ,17,923,6367748,48,0 ,44,15152,76292,16,0 ,44,15152,1124868,32,0 ,27,6145,76296,24,8 ,3,28,600584,14,6 ,27,2182,76304,24,8 ,3,28,600592,6,2 ,27,6149,76312,24,8 ,3,28,600600,6,2 ,27,6142,76320,22,8 ,3,28,600608,10,4 ,27,5225,76328,22,8 ,3,28,600616,6,2 ,27,6150,76336,24,8 ,3,28,600624,8,3 ,27,4748,76344,22,8 ,3,28,600632,8,3 ,27,6151,76352,23,8 ,3,28,600640,4,1 ,17,923,8989252,24,0 ,27,4752,76360,26,8 ,3,28,600648,8,3 ,27,4752,76368,24,8 ,3,28,600656,10,4 ,27,41,76376,23,8 ,3,28,600664,4,1 ,27,6144,76384,24,8 ,3,28,600672,6,2 ,27,6142,76392,24,8 ,3,28,600680,18,8 ,27,6145,76400,24,8 ,3,28,600688,8,3 ,27,6142,76408,24,8 ,3,28,600696,8,3 ,27,6155,76416,24,8 ,3,28,600704,14,6 ,17,923,9513604,40,0 ,17,923,7940740,32,0 ,44,15152,76420,40,0 ,44,15152,600708,24,0 ,27,6202,76424,24,8 ,3,28,600712,8,3 ,27,6201,76432,24,8 ,3,28,600720,6,2 ,27,1034,76440,26,8 ,3,28,600728,6,2 ,27,579,76448,24,8 ,3,28,600736,6,2 ,20,18000,6892194,108,0 ,20,15608,1125026,100,0 ,27,579,76456,25,8 ,3,28,600744,6,2 ,27,6158,76464,23,8 ,3,28,600752,6,2 ,27,5852,76472,24,8 ,3,28,600760,6,2 ,27,6160,76480,26,8 ,3,28,600768,6,2 ,17,923,76483,16,0 ,44,15152,3746500,48,0 ,17,923,6892228,48,0 ,44,15152,2173636,56,0 ,44,15152,3222212,32,0 ,27,6161,76488,23,8 ,3,28,600776,6,2 ,27,1062,76496,21,8 ,3,28,600784,6,2 ,27,6162,76504,24,8 ,3,28,600792,6,2 ,27,6163,76512,24,8 ,3,28,600800,6,2 ,20,23523,21048034,28,0 ,20,22973,19999458,52,0 ,27,6165,76520,24,8 ,3,28,600808,6,2 ,27,6164,76528,26,8 ,3,28,600816,6,2 ,27,6166,76536,24,8 ,3,28,600824,6,2 ,27,6168,76544,22,8 ,3,28,600832,6,2 ,20,17332,5319426,104,0 ,20,26274,28388098,628,0 ,17,923,8989444,24,0 ,17,923,7416580,40,0 ,44,15152,1125124,40,0 ,17,923,8465156,32,0 ,27,295,76552,23,8 ,3,28,600840,6,2 ,27,6169,76560,24,8 ,3,28,600848,6,2 ,27,6170,76568,23,8 ,3,28,600856,6,2 ,27,6171,76576,24,8 ,3,28,600864,8,3 ,27,6172,76584,24,8 ,3,28,600872,8,3 ,27,41,76592,23,8 ,3,28,600880,8,3 ,27,6173,76600,26,8 ,3,28,600888,8,3 ,27,6174,76608,25,8 ,3,28,600896,6,2 ,20,16306,3222338,32,0 ,17,923,76611,16,0 ,44,15152,600900,24,0 ,27,6175,76616,22,8 ,3,28,600904,6,2 ,27,6176,76624,24,8 ,3,28,600912,8,3 ,27,6177,76632,24,8 ,3,28,600920,8,3 ,27,1274,76640,24,8 ,3,28,600928,8,3 ,27,6178,76648,23,8 ,3,28,600936,6,2 ,27,6179,76656,24,8 ,3,28,600944,8,3 ,27,6181,76664,22,8 ,3,28,600952,6,2 ,27,6182,76672,24,8 ,3,28,600960,6,2 ,45,15153,4795268,256,0 ,17,923,7940996,24,0 ,17,923,6368132,40,0 ,45,15153,4270980,56,0 ,27,6183,76680,24,8 ,3,28,600968,8,3 ,27,6184,76688,24,8 ,3,28,600976,18,8 ,27,6185,76696,27,8 ,3,28,600984,6,2 ,27,812,76704,23,8 ,3,28,600992,6,2 ,20,20504,13183906,80,0 ,20,26105,27863970,440,0 ,27,6186,76712,24,8 ,3,28,601000,6,2 ,27,6187,76720,24,8 ,3,28,601008,4,1 ,27,6188,76728,24,8 ,3,28,601016,26,12 ,27,6189,76736,24,8 ,3,28,601024,12,5 ,20,23524,21048258,108,0 ,17,923,76739,24,0 ,17,923,9513924,32,0 ,44,15152,76740,24,0 ,44,15152,3222468,24,0 ,17,923,8989636,32,0 ,27,6192,76744,26,8 ,3,28,601032,8,3 ,27,6193,76752,24,8 ,3,28,601040,7,2 ,27,6194,76760,23,8 ,3,28,601048,8,3 ,27,6195,76768,24,8 ,3,28,601056,10,4 ,27,6196,76776,24,8 ,3,28,601064,4,1 ,27,6197,76784,25,8 ,3,28,601072,10,4 ,27,6198,76792,24,8 ,3,28,601080,6,2 ,27,6199,76800,24,8 ,3,28,601088,4,1 ,17,923,8465412,40,0 ,44,15152,601092,40,0 ,27,6203,76808,24,8 ,3,28,601096,12,5 ,27,6204,76816,24,8 ,3,28,601104,7,2 ,27,4463,76824,22,8 ,3,28,601112,12,5 ,27,6215,76832,25,8 ,3,28,601120,8,3 ,27,6218,76840,20,8 ,3,28,601128,6,2 ,27,6217,76848,24,8 ,3,28,601136,6,2 ,27,2182,76856,24,8 ,3,28,601144,7,2 ,27,6217,76864,23,8 ,3,28,601152,8,3 ,20,16307,3222594,124,0 ,20,25891,27339842,92,0 ,44,15152,3746884,8,0 ,17,923,7941188,32,0 ,17,923,7416900,40,0 ,17,923,6892612,40,0 ,44,15152,1125444,80,0 ,27,4768,76872,24,8 ,3,28,601160,4,1 ,27,4482,76880,26,8 ,3,28,601168,8,3 ,27,1562,76888,26,8 ,3,28,601176,7,2 ,27,4768,76896,24,8 ,3,28,601184,8,3 ,20,23290,20524130,24,0 ,27,4482,76904,26,8 ,3,28,601192,4,1 ,27,7273,76912,24,8 ,3,28,601200,8,3 ,27,6222,76920,24,8 ,3,28,601208,7,2 ,27,6223,76928,23,8 ,3,28,601216,6,2 ,20,22974,19999874,60,0 ,17,923,76931,24,0 ,44,15152,3746948,24,0 ,44,15152,2174084,24,0 ,44,15152,76932,168,0 ,44,15152,3222660,88,0 ,27,4733,76936,22,8 ,3,28,601224,4,1 ,27,4606,76944,24,8 ,3,28,601232,6,2 ,27,2182,76952,24,8 ,3,28,601240,4,1 ,27,6229,76960,20,8 ,3,28,601248,8,3 ,20,25688,26815650,196,0 ,27,6228,76968,24,8 ,3,28,601256,4,1 ,27,1698,76976,26,8 ,3,28,601264,12,5 ,27,2182,76984,24,8 ,3,28,601272,4,1 ,27,6228,76992,23,8 ,3,28,601280,6,2 ,17,923,9514180,48,0 ,17,923,6368452,48,0 ,17,923,8989892,32,0 ,27,6230,77000,24,8 ,3,28,601288,4,1 ,27,6115,77008,24,8 ,3,28,601296,12,5 ,27,6056,77016,24,8 ,3,28,601304,7,2 ,27,6235,77024,24,8 ,3,28,601312,8,3 ,27,6236,77032,24,8 ,3,28,601320,14,6 ,27,6006,77040,22,8 ,3,28,601328,8,3 ,27,2312,77048,22,8 ,3,28,601336,7,2 ,27,6237,77056,22,8 ,3,28,601344,14,6 ,27,6238,77064,22,8 ,3,28,601352,4,1 ,27,4707,77072,24,8 ,3,28,601360,6,2 ,27,2182,77080,24,8 ,3,28,601368,6,2 ,27,2312,77088,22,8 ,3,28,601376,4,1 ,20,23291,20524322,120,0 ,27,6243,77096,22,8 ,3,28,601384,10,4 ,27,4663,77104,22,8 ,3,28,601392,4,1 ,27,5225,77112,22,8 ,3,28,601400,6,2 ,27,4748,77120,22,8 ,3,28,601408,6,2 ,20,20728,13708610,1196,0 ,17,923,77123,24,0 ,17,923,8465732,40,0 ,17,923,7941444,24,0 ,44,15152,2174276,24,0 ,44,15152,601412,40,0 ,44,15152,3747140,80,0 ,45,15153,4271428,40,0 ,27,6244,77128,24,8 ,3,28,601416,7,2 ,27,6247,77136,24,8 ,3,28,601424,8,3 ,27,6248,77144,22,8 ,3,28,601432,4,1 ,27,4735,77152,22,8 ,3,28,601440,6,2 ,20,20149,11611490,64,0 ,27,6249,77160,22,8 ,3,28,601448,7,2 ,27,6250,77168,24,8 ,3,28,601456,12,5 ,27,6252,77176,24,8 ,3,28,601464,7,2 ,27,6253,77184,24,8 ,3,28,601472,8,3 ,20,983,77185,56,0 ,17,923,6892932,48,0 ,17,923,7417220,40,0 ,27,6255,77192,20,8 ,3,28,601480,6,2 ,27,6254,77200,26,8 ,3,28,601488,7,2 ,27,6254,77208,25,8 ,3,28,601496,8,3 ,27,109,77216,21,8 ,3,28,601504,4,1 ,27,6256,77224,22,8 ,3,28,601512,12,5 ,27,6258,77232,20,8 ,3,28,601520,7,2 ,27,6257,77240,24,8 ,3,28,601528,7,2 ,27,6259,77248,23,8 ,3,28,601536,8,3 ,20,22250,18427330,140,0 ,20,15609,1125826,220,0 ,17,923,8990148,24,0 ,27,6262,77256,20,8 ,3,28,601544,4,1 ,27,6261,77264,24,8 ,3,28,601552,8,3 ,27,6260,77272,24,8 ,3,28,601560,4,1 ,27,6261,77280,23,8 ,3,28,601568,8,3 ,27,6265,77288,21,8 ,3,28,601576,6,2 ,27,6263,77296,22,8 ,3,28,601584,4,1 ,27,163,77304,24,8 ,3,28,601592,9,4 ,27,6266,77312,22,8 ,3,28,601600,6,2 ,20,18001,6893058,12,0 ,17,923,77315,16,0 ,44,15152,2174468,24,0 ,17,923,7941636,32,0 ,27,6267,77320,22,8 ,3,28,601608,12,5 ,27,6268,77328,21,8 ,3,28,601616,7,2 ,27,6269,77336,22,8 ,3,28,601624,16,7 ,27,2312,77344,22,8 ,3,28,601632,10,4 ,20,22012,17903138,164,0 ,20,20505,13184546,12,0 ,27,6270,77352,24,8 ,3,28,601640,4,1 ,27,5225,77360,22,8 ,3,28,601648,9,4 ,27,6271,77368,24,8 ,3,28,601656,10,4 ,27,6023,77376,23,8 ,3,28,601664,8,3 ,20,19954,11087426,12,0 ,20,17333,5320258,588,0 ,17,923,9514564,48,0 ,17,923,6368836,40,0 ,27,41,77384,23,8 ,3,28,601672,14,6 ,27,4707,77392,24,8 ,3,28,601680,4,1 ,27,4752,77400,24,8 ,3,28,601688,9,4 ,27,5981,77408,21,8 ,3,28,601696,10,4 ,20,22975,20000354,100,0 ,20,16669,3747426,128,0 ,20,18002,6893154,392,0 ,27,5980,77416,24,8 ,3,28,601704,4,1 ,27,5980,77424,23,8 ,3,28,601712,10,4 ,27,1993,77432,26,8 ,3,28,601720,10,4 ,27,5981,77440,21,8 ,3,28,601728,4,1 ,20,20506,13184642,84,0 ,17,923,77443,32,0 ,17,923,10038916,40,0 ,44,15152,601732,16,0 ,45,15153,4271748,16,0 ,45,15153,5320324,16,0 ,17,923,8466052,40,0 ,17,923,8990340,16,0 ,27,5980,77448,24,8 ,3,28,601736,9,4 ,27,5980,77456,23,8 ,3,28,601744,10,4 ,27,6287,77464,24,8 ,3,28,601752,4,1 ,27,6104,77472,22,8 ,3,28,601760,24,11 ,20,19955,11087522,1392,0 ,27,6105,77480,22,8 ,3,28,601768,12,4 ,27,6101,77488,24,8 ,3,28,601776,4,1 ,27,6069,77496,24,8 ,3,28,601784,9,4 ,27,6071,77504,22,8 ,3,28,601792,10,4 ,44,15152,1126084,32,0 ,17,923,7417540,40,0 ,44,15152,2698948,72,0 ,44,15152,2174660,48,0 ,27,6074,77512,22,8 ,3,28,601800,4,1 ,27,6056,77520,24,8 ,3,28,601808,24,11 ,27,6006,77528,22,8 ,3,28,601816,4,1 ,27,2312,77536,22,8 ,3,28,601824,9,4 ,27,6288,77544,22,8 ,3,28,601832,10,4 ,27,6237,77552,22,8 ,3,28,601840,4,1 ,27,6057,77560,23,8 ,3,28,601848,22,10 ,27,6095,77568,22,8 ,3,28,601856,4,1 ,17,923,8990468,16,0 ,17,923,7941892,24,0 ,17,923,6893316,40,0 ,44,15152,601860,64,0 ,45,15153,4271876,24,0 ,45,15153,5320452,16,0 ,27,6055,77576,24,8 ,3,28,601864,9,4 ,27,1938,77584,26,8 ,3,28,601872,10,4 ,27,1698,77592,24,8 ,3,28,601880,4,1 ,27,6292,77600,24,8 ,3,28,601888,16,5 ,20,23525,21049122,72,0 ,20,25892,27340578,92,0 ,27,6293,77608,24,8 ,3,28,601896,18,8 ,27,6294,77616,24,8 ,3,28,601904,17,8 ,27,41,77624,23,8 ,3,28,601912,4,1 ,27,4663,77632,22,8 ,3,28,601920,60,35 ,20,984,77633,140,0 ,44,15152,3223364,24,0 ,27,2312,77640,22,8 ,3,28,601928,4,1 ,27,4758,77648,22,8 ,3,28,601936,9,4 ,27,4759,77656,24,8 ,3,28,601944,10,4 ,27,4768,77664,24,8 ,3,28,601952,4,1 ,20,21961,17379170,2352,0 ,20,20150,11612002,64,0 ,27,6313,77672,25,8 ,3,28,601960,14,6 ,27,6313,77680,26,8 ,3,28,601968,10,4 ,27,6026,77688,28,8 ,3,28,601976,9,3 ,27,6237,77696,24,8 ,3,28,601984,10,4 ,17,923,77699,32,0 ,17,923,8990596,24,0 ,17,923,6369156,32,0 ,45,15153,5320580,16,0 ,27,6056,77704,22,8 ,3,28,601992,20,9 ,27,6069,77712,22,8 ,3,28,602000,6,2 ,27,6319,77720,23,8 ,3,28,602008,8,3 ,27,6321,77728,22,8 ,3,28,602016,6,2 ,20,16147,2699170,276,0 ,27,41,77736,23,8 ,3,28,602024,12,4 ,27,6323,77744,21,8 ,3,28,602032,40,19 ,27,41,77752,23,8 ,3,28,602040,12,5 ,27,3135,77760,26,8 ,3,28,602048,7,2 ,20,24889,24719298,192,0 ,17,923,10039236,40,0 ,17,923,7942084,24,0 ,44,15152,1126340,56,0 ,44,15152,3747780,384,0 ,45,15153,4272068,48,0 ,17,923,8466372,40,0 ,17,923,9514948,48,0 ,27,2182,77768,24,8 ,3,28,602056,7,2 ,27,6328,77776,23,8 ,3,28,602064,4,1 ,27,6332,77784,24,8 ,3,28,602072,9,4 ,27,6257,77792,23,8 ,3,28,602080,37,17 ,27,6333,77800,22,8 ,3,28,602088,6,2 ,27,6333,77808,22,8 ,3,28,602096,6,2 ,27,6335,77816,27,8 ,3,28,602104,16,5 ,27,6336,77824,24,8 ,3,28,602112,18,8 ,45,15153,5320708,24,0 ,17,923,7417860,32,0 ,44,15152,3223556,48,0 ,27,6338,77832,22,8 ,3,28,602120,6,2 ,27,6339,77840,23,8 ,3,28,602128,11,4 ,27,6345,77848,26,8 ,3,28,602136,6,2 ,27,6344,77856,26,8 ,3,28,602144,6,2 ,20,16308,3223586,88,0 ,27,6346,77864,26,8 ,3,28,602152,8,3 ,27,6347,77872,26,8 ,3,28,602160,8,3 ,27,6348,77880,24,8 ,3,28,602168,8,3 ,27,4768,77888,24,8 ,3,28,602176,6,2 ,17,923,8990788,48,0 ,17,923,6893636,48,0 ,44,15152,2175044,40,0 ,27,4482,77896,26,8 ,3,28,602184,6,2 ,27,4294,77904,22,8 ,3,28,602192,8,3 ,27,6353,77912,20,8 ,3,28,602200,18,8 ,27,6352,77920,24,8 ,3,28,602208,16,7 ,20,24507,23670882,916,0 ,20,17119,4796514,200,0 ,27,6355,77928,20,8 ,3,28,602216,18,8 ,27,6354,77936,24,8 ,3,28,602224,8,3 ,27,6357,77944,20,8 ,3,28,602232,8,3 ,27,6356,77952,24,8 ,3,28,602240,8,3 ,17,923,77955,16,0 ,17,923,6369412,40,0 ,17,923,7942276,24,0 ,27,4752,77960,24,8 ,3,28,602248,12,5 ,27,6359,77968,20,8 ,3,28,602256,6,2 ,27,6358,77976,24,8 ,3,28,602264,6,2 ,27,6361,77984,20,8 ,3,28,602272,10,4 ,20,21204,15806626,192,0 ,27,6360,77992,24,8 ,3,28,602280,14,6 ,27,2182,78000,24,8 ,3,28,602288,8,3 ,27,6362,78008,24,8 ,3,28,602296,12,5 ,27,6352,78016,23,8 ,3,28,602304,4,1 ,45,15153,5320900,24,0 ,27,6354,78024,23,8 ,3,28,602312,10,4 ,27,6356,78032,23,8 ,3,28,602320,12,5 ,27,6358,78040,23,8 ,3,28,602328,8,3 ,27,6360,78048,23,8 ,3,28,602336,8,3 ,20,23292,20525282,120,0 ,27,2312,78056,22,8 ,3,28,602344,12,5 ,27,4748,78064,22,8 ,3,28,602352,6,2 ,27,2182,78072,24,8 ,3,28,602360,8,3 ,27,4482,78080,26,8 ,3,28,602368,6,2 ,17,923,78083,32,0 ,17,923,10039556,40,0 ,17,923,7418116,40,0 ,44,15152,2699524,24,0 ,44,15152,602372,72,0 ,17,923,8466692,32,0 ,27,295,78088,23,8 ,3,28,602376,8,3 ,27,812,78096,23,8 ,3,28,602384,8,3 ,27,5933,78104,26,8 ,3,28,602392,16,7 ,27,5908,78112,24,8 ,3,28,602400,8,3 ,20,20507,13185314,440,0 ,27,5909,78120,24,8 ,3,28,602408,10,4 ,27,1973,78128,24,8 ,3,28,602416,7,2 ,27,5908,78136,24,8 ,3,28,602424,5,2 ,27,5909,78144,24,8 ,3,28,602432,14,5 ,17,923,9515332,48,0 ,17,923,7942468,32,0 ,45,15153,4272452,24,0 ,27,5934,78152,24,8 ,3,28,602440,4,1 ,27,1565,78160,24,8 ,3,28,602448,9,4 ,27,1973,78168,24,8 ,3,28,602456,6,2 ,27,4768,78176,24,8 ,3,28,602464,15,7 ,20,23526,21049698,28,0 ,20,20151,11612514,60,0 ,27,4482,78184,26,8 ,3,28,602472,40,19 ,27,2182,78192,24,8 ,3,28,602480,4,1 ,27,5880,78200,22,8 ,3,28,602488,6,2 ,27,2182,78208,24,8 ,3,28,602496,4,1 ,20,22976,20001154,12,0 ,20,19355,10039682,204,0 ,45,15153,5321092,16,0 ,44,15152,2175364,24,0 ,44,15152,1126788,120,0 ,44,15152,3223940,72,0 ,27,5880,78216,22,8 ,3,28,602504,18,8 ,27,6374,78224,20,8 ,3,28,602512,4,1 ,27,6373,78232,24,8 ,3,28,602520,9,4 ,27,6373,78240,23,8 ,3,28,602528,12,5 ,20,17737,6369698,1324,0 ,20,15331,602530,48,0 ,27,4748,78248,22,8 ,3,28,602536,14,5 ,27,1973,78256,24,8 ,3,28,602544,4,1 ,27,2182,78264,24,8 ,3,28,602552,6,2 ,27,5880,78272,22,8 ,3,28,602560,6,2 ,17,923,8991172,32,0 ,17,923,6894020,40,0 ,17,923,6369732,24,0 ,44,15152,2699716,56,0 ,44,15152,78276,24,0 ,27,4768,78280,24,8 ,3,28,602568,16,7 ,27,4482,78288,26,8 ,3,28,602576,6,2 ,27,1973,78296,24,8 ,3,28,602584,6,2 ,27,4768,78304,24,8 ,3,28,602592,6,2 ,20,22977,20001250,12,0 ,27,4482,78312,26,8 ,3,28,602600,6,2 ,27,2138,78320,26,8 ,3,28,602608,20,9 ,27,4768,78328,24,8 ,3,28,602616,7,2 ,27,4482,78336,26,8 ,3,28,602624,8,3 ,20,19688,10564098,284,0 ,20,25893,27341314,92,0 ,17,923,78339,24,0 ,17,923,8466948,56,0 ,45,15153,4272644,24,0 ,45,15153,5321220,16,0 ,27,1973,78344,24,8 ,3,28,602632,8,3 ,27,2182,78352,24,8 ,3,28,602640,14,5 ,27,4482,78360,26,8 ,3,28,602648,4,1 ,27,4733,78368,22,8 ,3,28,602656,9,4 ,20,22251,18428450,940,0 ,27,4606,78376,24,8 ,3,28,602664,10,4 ,27,2182,78384,24,8 ,3,28,602672,4,1 ,27,5880,78392,22,8 ,3,28,602680,20,9 ,27,6396,78400,24,8 ,3,28,602688,14,5 ,20,23527,21049922,28,0 ,20,22978,20001346,320,0 ,17,923,10039876,16,0 ,17,923,7942724,40,0 ,17,923,7418436,32,0 ,44,15152,2175556,24,0 ,27,41,78408,23,8 ,3,28,602696,4,1 ,27,295,78416,23,8 ,3,28,602704,9,4 ,27,812,78424,23,8 ,3,28,602712,15,7 ,27,4294,78432,24,8 ,3,28,602720,4,1 ,20,16670,3748450,80,0 ,27,5914,78440,26,8 ,3,28,602728,22,10 ,27,6390,78448,24,8 ,3,28,602736,4,1 ,27,6391,78456,24,8 ,3,28,602744,24,11 ,27,5908,78464,24,8 ,3,28,602752,4,1 ,45,15153,5321348,88,0 ,17,923,6369924,40,0 ,44,15152,78468,24,0 ,27,5909,78472,24,8 ,3,28,602760,20,9 ,27,2274,78480,24,8 ,3,28,602768,8,3 ,27,41,78488,23,8 ,3,28,602776,6,2 ,27,295,78496,23,8 ,3,28,602784,10,4 ,20,24701,24195746,72,0 ,27,812,78504,23,8 ,3,28,602792,8,3 ,27,4294,78512,24,8 ,3,28,602800,12,5 ,27,5914,78520,26,8 ,3,28,602808,12,5 ,27,5908,78528,24,8 ,3,28,602816,14,6 ,20,25489,26292930,32,0 ,20,25689,26817218,96,0 ,17,923,78531,16,0 ,17,923,10040004,32,0 ,45,15153,4272836,16,0 ,17,923,8991428,64,0 ,17,923,9515716,40,0 ,27,5909,78536,24,8 ,3,28,602824,12,5 ,27,2274,78544,24,8 ,3,28,602832,14,6 ,27,6397,78552,24,8 ,3,28,602840,16,7 ,27,2182,78560,24,8 ,3,28,602848,14,6 ,20,16309,3224290,64,0 ,27,6398,78568,24,8 ,3,28,602856,12,5 ,27,6399,78576,23,8 ,3,28,602864,14,6 ,27,4304,78584,22,8 ,3,28,602872,12,5 ,27,6402,78592,22,8 ,3,28,602880,14,6 ,44,15152,2175748,24,0 ,17,923,6894340,40,0 ,27,6407,78600,26,8 ,3,28,602888,14,6 ,27,4294,78608,22,8 ,3,28,602896,14,6 ,27,6408,78616,24,8 ,3,28,602904,12,5 ,27,6410,78624,22,8 ,3,28,602912,14,6 ,20,23528,21050146,28,0 ,20,15332,602914,76,0 ,27,6409,78632,24,8 ,3,28,602920,14,6 ,27,6411,78640,23,8 ,3,28,602928,14,6 ,27,4470,78648,24,8 ,3,28,602936,14,6 ,27,4471,78656,22,8 ,3,28,602944,14,6 ,20,22013,17904450,108,0 ,20,20152,11612994,808,0 ,17,923,78659,24,0 ,45,15153,4272964,32,0 ,17,923,7418692,40,0 ,44,15152,78660,112,0 ,44,15152,602948,40,0 ,27,4001,78664,22,8 ,3,28,602952,14,6 ,27,4307,78672,22,8 ,3,28,602960,14,6 ,27,6412,78680,23,8 ,3,28,602968,16,7 ,27,4284,78688,22,8 ,3,28,602976,14,6 ,27,4467,78696,26,8 ,3,28,602984,14,6 ,27,5934,78704,26,8 ,3,28,602992,12,5 ,27,4000,78712,22,8 ,3,28,603000,12,5 ,27,6413,78720,22,8 ,3,28,603008,12,5 ,45,15153,4797316,224,0 ,17,923,7943044,32,0 ,44,15152,2700164,40,0 ,27,6414,78728,22,8 ,3,28,603016,6,2 ,27,6415,78736,22,8 ,3,28,603024,4,1 ,27,3993,78744,21,8 ,3,28,603032,9,4 ,27,3992,78752,26,8 ,3,28,603040,10,4 ,20,985,78753,72,0 ,27,3276,78760,21,8 ,3,28,603048,4,1 ,27,8680,78768,24,8 ,3,28,603056,8,3 ,27,41,78776,23,8 ,3,28,603064,6,2 ,27,3992,78784,25,8 ,3,28,603072,8,3 ,20,25490,26293186,368,0 ,17,923,10040260,32,0 ,17,923,6370244,24,0 ,44,15152,2175940,192,0 ,44,15152,3224516,24,0 ,17,923,8467396,32,0 ,27,3277,78792,22,8 ,3,28,603080,6,2 ,27,8680,78800,23,8 ,3,28,603088,8,3 ,27,6420,78808,24,8 ,3,28,603096,4,1 ,27,4294,78816,22,8 ,3,28,603104,14,6 ,27,41,78824,23,8 ,3,28,603112,4,1 ,27,6424,78832,22,8 ,3,28,603120,6,2 ,27,2312,78840,22,8 ,3,28,603128,6,2 ,27,2366,78848,22,8 ,3,28,603136,8,3 ,20,23529,21050370,28,0 ,17,923,78851,24,0 ,17,923,9516036,40,0 ,27,2182,78856,24,8 ,3,28,603144,6,2 ,27,6427,78864,24,8 ,3,28,603152,6,2 ,27,5543,78872,26,8 ,3,28,603160,6,2 ,27,4482,78880,26,8 ,3,28,603168,8,3 ,20,21799,16856098,344,0 ,27,41,78888,23,8 ,3,28,603176,12,5 ,27,4768,78896,24,8 ,3,28,603184,6,2 ,27,5543,78904,26,8 ,3,28,603192,6,2 ,27,4482,78912,26,8 ,3,28,603200,6,2 ,45,15153,4273220,24,0 ,17,923,6894660,40,0 ,27,5495,78920,22,8 ,3,28,603208,6,2 ,27,6438,78928,24,8 ,3,28,603216,4,1 ,27,4768,78936,24,8 ,3,28,603224,9,4 ,27,4482,78944,26,8 ,3,28,603232,12,5 ,27,6445,78952,20,8 ,3,28,603240,4,1 ,27,6444,78960,26,8 ,3,28,603248,20,9 ,27,6442,78968,22,8 ,3,28,603256,6,2 ,27,6443,78976,22,8 ,3,28,603264,8,3 ,44,15152,3224708,32,0 ,17,923,7943300,32,0 ,17,923,7419012,32,0 ,17,923,6370436,24,0 ,44,15152,603268,24,0 ,27,2182,78984,24,8 ,3,28,603272,4,1 ,27,6446,78992,23,8 ,3,28,603280,9,4 ,27,6447,79000,22,8 ,3,28,603288,10,4 ,27,6448,79008,24,8 ,3,28,603296,4,1 ,20,23293,20526242,120,0 ,20,15610,1127586,384,0 ,27,6444,79016,25,8 ,3,28,603304,16,7 ,27,2312,79024,22,8 ,3,28,603312,18,6 ,27,6449,79032,22,8 ,3,28,603320,6,2 ,27,5225,79040,22,8 ,3,28,603328,12,5 ,20,23908,22099138,188,0 ,17,923,79043,16,0 ,17,923,10040516,48,0 ,44,15152,2700484,136,0 ,17,923,8467652,40,0 ,17,923,8991940,24,0 ,27,4748,79048,22,8 ,3,28,603336,4,1 ,27,2182,79056,24,8 ,3,28,603344,7,2 ,27,6453,79064,24,8 ,3,28,603352,18,8 ,27,6454,79072,24,8 ,3,28,603360,10,4 ,20,24328,23147746,184,0 ,20,25894,27342050,92,0 ,20,24702,24196322,324,0 ,20,16310,3224802,152,0 ,20,16671,3749090,924,0 ,20,23530,21050594,28,0 ,27,4618,79080,22,8 ,3,28,603368,18,6 ,27,4748,79088,22,8 ,3,28,603376,6,2 ,27,6455,79096,22,8 ,3,28,603384,10,4 ,27,6456,79104,22,8 ,3,28,603392,8,3 ,45,15153,4273412,16,0 ,27,6457,79112,22,8 ,3,28,603400,8,3 ,27,6476,79120,24,8 ,3,28,603408,8,3 ,27,6468,79128,24,8 ,3,28,603416,14,6 ,27,6461,79136,20,8 ,3,28,603424,8,3 ,27,6460,79144,24,8 ,3,28,603432,8,3 ,27,6462,79152,22,8 ,3,28,603440,6,2 ,27,2312,79160,22,8 ,3,28,603448,10,4 ,27,6460,79168,23,8 ,3,28,603456,14,5 ,17,923,79171,32,0 ,17,923,9516356,40,0 ,17,923,6370628,24,0 ,44,15152,603460,144,0 ,44,15152,1127748,72,0 ,45,15153,5322052,16,0 ,27,634,79176,21,8 ,3,28,603464,4,1 ,27,6463,79184,22,8 ,3,28,603472,9,4 ,27,6465,79192,23,8 ,3,28,603480,10,4 ,27,6469,79200,24,8 ,3,28,603488,4,1 ,27,6470,79208,25,8 ,3,28,603496,6,2 ,27,6475,79216,27,8 ,3,28,603504,10,4 ,27,2182,79224,24,8 ,3,28,603512,6,2 ,27,6522,79232,23,8 ,3,28,603520,8,3 ,20,15333,603522,84,0 ,17,923,8992132,40,0 ,17,923,7943556,24,0 ,17,923,7419268,40,0 ,17,923,6894980,40,0 ,44,15152,3224964,24,0 ,45,15153,4273540,16,0 ,27,6486,79240,23,8 ,3,28,603528,4,1 ,27,6479,79248,24,8 ,3,28,603536,9,4 ,27,6484,79256,24,8 ,3,28,603544,15,7 ,27,6483,79264,19,8 ,3,28,603552,4,1 ,27,6492,79272,20,8 ,3,28,603560,10,4 ,27,6487,79280,24,8 ,3,28,603568,6,2 ,27,6487,79288,23,8 ,3,28,603576,4,1 ,27,6462,79296,22,8 ,3,28,603584,14,6 ,20,23531,21050818,28,0 ,20,25690,26817986,444,0 ,20,24890,24720834,12,0 ,45,15153,5322180,104,0 ,27,6490,79304,22,8 ,3,28,603592,4,1 ,27,2312,79312,22,8 ,3,28,603600,62,35 ,27,4618,79320,22,8 ,3,28,603608,6,2 ,27,4526,79328,22,8 ,3,28,603616,6,2 ,20,986,79329,108,0 ,27,6493,79336,25,8 ,3,28,603624,6,2 ,27,6522,79344,24,8 ,3,28,603632,44,21 ,27,6495,79352,23,8 ,3,28,603640,8,3 ,27,6496,79360,21,8 ,3,28,603648,10,4 ,17,923,8467972,32,0 ,17,923,6370820,24,0 ,45,15153,4273668,32,0 ,27,6497,79368,21,8 ,3,28,603656,6,2 ,27,6498,79376,24,8 ,3,28,603664,6,2 ,27,6499,79384,24,8 ,3,28,603672,20,9 ,27,4768,79392,24,8 ,3,28,603680,6,2 ,20,24891,24720930,1160,0 ,27,6502,79400,26,8 ,3,28,603688,7,2 ,27,6501,79408,26,8 ,3,28,603696,5,2 ,27,6503,79416,24,8 ,3,28,603704,6,2 ,27,6504,79424,24,8 ,3,28,603712,4,1 ,17,923,79427,16,0 ,17,923,10040900,40,0 ,17,923,7943748,40,0 ,44,15152,3225156,24,0 ,27,4482,79432,26,8 ,3,28,603720,16,7 ,27,4707,79440,24,8 ,3,28,603728,7,2 ,27,6502,79448,24,8 ,3,28,603736,24,11 ,27,6508,79456,23,8 ,3,28,603744,6,2 ,20,18191,7419490,488,0 ,27,6502,79464,22,8 ,3,28,603752,6,2 ,27,6510,79472,24,8 ,3,28,603760,6,2 ,27,6514,79480,20,8 ,3,28,603768,16,7 ,27,6513,79488,24,8 ,3,28,603776,6,2 ,17,923,9516676,40,0 ,27,2182,79496,24,8 ,3,28,603784,10,4 ,27,2312,79504,22,8 ,3,28,603792,6,2 ,27,5225,79512,22,8 ,3,28,603800,4,1 ,27,6515,79520,22,8 ,3,28,603808,4,1 ,20,23532,21051042,92,0 ,20,17120,4798114,1256,0 ,20,21205,15808162,308,0 ,20,22014,17905314,144,0 ,27,6513,79528,23,8 ,3,28,603816,12,5 ,27,4748,79536,22,8 ,3,28,603824,8,3 ,27,6516,79544,23,8 ,3,28,603832,8,3 ,27,6524,79552,20,8 ,3,28,603840,6,2 ,17,923,79555,32,0 ,17,923,8992452,40,0 ,17,923,7419588,32,0 ,17,923,6895300,40,0 ,17,923,6371012,24,0 ,44,15152,79556,24,0 ,27,6523,79560,24,8 ,3,28,603848,6,2 ,27,6525,79568,23,8 ,3,28,603856,8,3 ,27,6525,79576,24,8 ,3,28,603864,7,2 ,27,6526,79584,22,8 ,3,28,603872,5,2 ,27,6527,79592,24,8 ,3,28,603880,10,4 ,27,6528,79600,24,8 ,3,28,603888,6,2 ,27,6530,79608,20,8 ,3,28,603896,4,1 ,27,6529,79616,24,8 ,3,28,603904,9,4 ,20,16091,2176770,24,0 ,17,923,8468228,32,0 ,44,15152,3225348,152,0 ,45,15153,4273924,16,0 ,27,6531,79624,24,8 ,3,28,603912,14,6 ,27,6532,79632,24,8 ,3,28,603920,4,1 ,27,6529,79640,23,8 ,3,28,603928,7,2 ,27,6533,79648,20,8 ,3,28,603936,4,1 ,27,6523,79656,23,8 ,3,28,603944,7,2 ,27,4618,79664,22,8 ,3,28,603952,4,1 ,27,6566,79672,20,8 ,3,28,603960,6,2 ,27,6565,79680,24,8 ,3,28,603968,6,2 ,27,4752,79688,26,8 ,3,28,603976,8,3 ,27,41,79696,23,8 ,3,28,603984,8,3 ,27,41,79704,23,8 ,3,28,603992,6,2 ,27,295,79712,23,8 ,3,28,604000,8,3 ,27,812,79720,23,8 ,3,28,604008,8,3 ,27,6543,79728,27,8 ,3,28,604016,36,19 ,27,6544,79736,27,8 ,3,28,604024,4,1 ,27,4389,79744,27,8 ,3,28,604032,4,1 ,17,923,10041220,40,0 ,17,923,7944068,40,0 ,17,923,6371204,24,0 ,44,15152,79748,48,0 ,44,15152,1128324,112,0 ,45,15153,4274052,128,0 ,27,6558,79752,24,8 ,3,28,604040,4,1 ,27,4707,79760,24,8 ,3,28,604048,10,4 ,27,6560,79768,24,8 ,3,28,604056,4,1 ,27,6561,79776,24,8 ,3,28,604064,6,2 ,27,6562,79784,26,8 ,3,28,604072,4,1 ,27,6563,79792,26,8 ,3,28,604080,9,4 ,27,6567,79800,22,8 ,3,28,604088,10,4 ,27,6568,79808,24,8 ,3,28,604096,4,1 ,20,19106,9516994,216,0 ,20,25895,27342786,92,0 ,20,16092,2176962,12,0 ,17,923,79811,24,0 ,17,923,9516996,40,0 ,17,923,7419844,40,0 ,27,6569,79816,24,8 ,3,28,604104,14,6 ,27,4748,79824,22,8 ,3,28,604112,10,4 ,27,6570,79832,24,8 ,3,28,604120,13,4 ,27,6571,79840,23,8 ,3,28,604128,14,5 ,20,19356,10041314,340,0 ,27,6572,79848,22,8 ,3,28,604136,4,1 ,27,6565,79856,23,8 ,3,28,604144,9,4 ,27,6577,79864,20,8 ,3,28,604152,12,5 ,27,6576,79872,24,8 ,3,28,604160,14,5 ,17,923,8992772,16,0 ,17,923,6895620,40,0 ,17,923,8468484,48,0 ,27,41,79880,23,8 ,3,28,604168,4,1 ,27,6579,79888,20,8 ,3,28,604176,6,2 ,27,6578,79896,24,8 ,3,28,604184,4,1 ,27,6580,79904,22,8 ,3,28,604192,8,3 ,20,16093,2177058,32,0 ,20,15334,604194,164,0 ,27,6576,79912,23,8 ,3,28,604200,13,4 ,27,6581,79920,20,8 ,3,28,604208,14,5 ,27,2312,79928,22,8 ,3,28,604216,4,1 ,27,6582,79936,21,8 ,3,28,604224,9,4 ,20,16148,2701378,344,0 ,17,923,6371396,32,0 ,27,5225,79944,22,8 ,3,28,604232,10,4 ,27,6583,79952,24,8 ,3,28,604240,4,1 ,27,6578,79960,23,8 ,3,28,604248,8,3 ,27,4752,79968,24,8 ,3,28,604256,4,1 ,20,23294,20527202,120,0 ,27,4707,79976,24,8 ,3,28,604264,9,4 ,27,6605,79984,27,8 ,3,28,604272,12,5 ,27,3276,79992,21,8 ,3,28,604280,14,5 ,27,8680,80000,24,8 ,3,28,604288,4,1 ,20,25343,25770114,80,0 ,17,923,80003,16,0 ,17,923,8992900,24,0 ,27,41,80008,23,8 ,3,28,604296,6,2 ,27,6591,80016,24,8 ,3,28,604304,4,1 ,27,3277,80024,22,8 ,3,28,604312,8,3 ,27,8680,80032,23,8 ,3,28,604320,8,3 ,27,6593,80040,23,8 ,3,28,604328,22,10 ,27,6594,80048,23,8 ,3,28,604336,10,4 ,27,4733,80056,22,8 ,3,28,604344,6,2 ,27,4606,80064,24,8 ,3,28,604352,4,1 ,17,923,10041540,64,0 ,17,923,7944388,40,0 ,27,4294,80072,22,8 ,3,28,604360,9,4 ,27,4470,80080,24,8 ,3,28,604368,10,4 ,27,4000,80088,22,8 ,3,28,604376,4,1 ,27,4583,80096,22,8 ,3,28,604384,8,3 ,27,6596,80104,22,8 ,3,28,604392,4,1 ,27,6597,80112,22,8 ,3,28,604400,9,4 ,27,6598,80120,25,8 ,3,28,604408,10,4 ,27,2182,80128,24,8 ,3,28,604416,4,1 ,17,923,80131,24,0 ,17,923,9517316,40,0 ,17,923,7420164,32,0 ,44,15152,2701572,40,0 ,44,15152,80132,40,0 ,45,15153,5323012,16,0 ,27,6603,80136,24,8 ,3,28,604424,8,3 ,27,4309,80144,26,8 ,3,28,604432,14,5 ,27,4832,80152,26,8 ,3,28,604440,4,1 ,27,4482,80160,26,8 ,3,28,604448,9,4 ,20,16094,2177314,32,0 ,27,6647,80168,27,8 ,3,28,604456,10,4 ,27,6648,80176,24,8 ,3,28,604464,4,1 ,27,4707,80184,24,8 ,3,28,604472,6,2 ,27,4752,80192,24,8 ,3,28,604480,4,1 ,20,987,80193,28,0 ,17,923,8993092,24,0 ,17,923,6895940,40,0 ,17,923,6371652,32,0 ,27,2182,80200,24,8 ,3,28,604488,9,4 ,27,41,80208,23,8 ,3,28,604496,10,4 ,27,6657,80216,22,8 ,3,28,604504,4,1 ,27,6656,80224,24,8 ,3,28,604512,8,3 ,20,22530,18954594,176,0 ,20,26106,27867490,712,0 ,27,295,80232,23,8 ,3,28,604520,6,2 ,27,812,80240,23,8 ,3,28,604528,6,2 ,27,1973,80248,24,8 ,3,28,604536,10,4 ,27,812,80256,23,8 ,3,28,604544,6,2 ,20,23533,21051778,28,0 ,17,923,8468868,24,0 ,45,15153,5323140,152,0 ,27,295,80264,23,8 ,3,28,604552,6,2 ,27,3135,80272,26,8 ,3,28,604560,4,1 ,27,1973,80280,24,8 ,3,28,604568,9,4 ,27,812,80288,23,8 ,3,28,604576,12,5 ,20,16311,3226018,12,0 ,27,295,80296,23,8 ,3,28,604584,4,1 ,27,4832,80304,26,8 ,3,28,604592,6,2 ,27,6674,80312,24,8 ,3,28,604600,4,1 ,27,6680,80320,24,8 ,3,28,604608,16,7 ,20,18919,8993218,12,0 ,17,923,80323,24,0 ,44,15152,604612,64,0 ,44,15152,2177476,40,0 ,27,6678,80328,23,8 ,3,28,604616,6,2 ,27,6679,80336,23,8 ,3,28,604624,16,7 ,27,41,80344,23,8 ,3,28,604632,6,2 ,27,41,80352,23,8 ,3,28,604640,8,3 ,27,41,80360,23,8 ,3,28,604648,8,3 ,27,1565,80368,24,8 ,3,28,604656,8,3 ,27,6689,80376,23,8 ,3,28,604664,6,2 ,27,6690,80384,23,8 ,3,28,604672,16,7 ,20,16312,3226114,68,0 ,17,923,8993284,16,0 ,17,923,7944708,40,0 ,17,923,7420420,32,0 ,27,4282,80392,24,8 ,3,28,604680,8,3 ,27,6691,80400,23,8 ,3,28,604688,8,3 ,27,6692,80408,23,8 ,3,28,604696,6,2 ,27,4456,80416,25,8 ,3,28,604704,10,4 ,20,988,80417,68,0 ,20,18920,8993314,100,0 ,20,16095,2177570,124,0 ,27,4456,80424,26,8 ,3,28,604712,12,5 ,27,4461,80432,21,8 ,3,28,604720,8,3 ,27,4460,80440,26,8 ,3,28,604728,18,8 ,27,6693,80448,22,8 ,3,28,604736,8,3 ,17,923,9517636,32,0 ,17,923,6371908,24,0 ,44,15152,2701892,24,0 ,44,15152,80452,32,0 ,17,923,8469060,64,0 ,27,4463,80456,22,8 ,3,28,604744,4,1 ,27,6694,80464,22,8 ,3,28,604752,9,4 ,27,4460,80472,25,8 ,3,28,604760,15,7 ,27,4294,80480,22,8 ,3,28,604768,14,5 ,20,23534,21052002,28,0 ,27,4466,80488,21,8 ,3,28,604776,4,1 ,27,4047,80496,22,8 ,3,28,604784,12,5 ,27,6695,80504,22,8 ,3,28,604792,14,5 ,27,6696,80512,22,8 ,3,28,604800,7,2 ,20,25134,25246338,1848,0 ,17,923,80515,32,0 ,17,923,8993412,16,0 ,17,923,6896260,40,0 ,45,15153,4799108,232,0 ,27,6702,80520,26,8 ,3,28,604808,6,2 ,27,4468,80528,25,8 ,3,28,604816,4,1 ,27,4468,80536,26,8 ,3,28,604824,6,2 ,27,6706,80544,26,8 ,3,28,604832,8,3 ,20,24329,23149218,104,0 ,20,25896,27343522,92,0 ,20,18003,6896290,464,0 ,20,23909,22100642,180,0 ,27,6707,80552,22,8 ,3,28,604840,10,4 ,27,6708,80560,22,8 ,3,28,604848,10,4 ,27,4474,80568,21,8 ,3,28,604856,32,15 ,27,4473,80576,26,8 ,3,28,604864,8,3 ,17,923,10042052,16,0 ,27,4476,80584,21,8 ,3,28,604872,4,1 ,27,4467,80592,26,8 ,3,28,604880,9,4 ,27,4478,80600,24,8 ,3,28,604888,10,4 ,27,4473,80608,25,8 ,3,28,604896,4,1 ,20,19689,10566370,808,0 ,27,4321,80616,22,8 ,3,28,604904,6,2 ,27,41,80624,23,8 ,3,28,604912,12,5 ,27,6716,80632,20,8 ,3,28,604920,6,2 ,27,4797,80640,24,8 ,3,28,604928,16,7 ,20,25344,25770754,76,0 ,17,923,8993540,24,0 ,17,923,7420676,40,0 ,17,923,6372100,24,0 ,44,15152,2702084,48,0 ,44,15152,2177796,40,0 ,44,15152,1129220,40,0 ,27,4797,80648,23,8 ,3,28,604936,6,2 ,27,4798,80656,26,8 ,3,28,604944,12,5 ,27,4799,80664,24,8 ,3,28,604952,12,5 ,27,6717,80672,24,8 ,3,28,604960,10,4 ,20,22015,17906466,132,0 ,27,579,80680,22,8 ,3,28,604968,20,9 ,27,579,80688,23,8 ,3,28,604976,6,2 ,27,1062,80696,21,8 ,3,28,604984,8,3 ,27,4298,80704,22,8 ,3,28,604992,6,2 ,20,23535,21052226,28,0 ,17,923,10042180,16,0 ,17,923,7945028,40,0 ,44,15152,80708,56,0 ,17,923,9517892,40,0 ,27,4002,80712,22,8 ,3,28,605000,12,5 ,27,4000,80720,22,8 ,3,28,605008,8,3 ,27,4001,80728,22,8 ,3,28,605016,6,2 ,27,4793,80736,24,8 ,3,28,605024,6,2 ,27,1374,80744,22,8 ,3,28,605032,6,2 ,27,4794,80752,22,8 ,3,28,605040,20,9 ,27,1380,80760,22,8 ,3,28,605048,6,2 ,27,1403,80768,24,8 ,3,28,605056,8,3 ,17,923,80771,24,0 ,45,15153,4275076,16,0 ,27,4795,80776,24,8 ,3,28,605064,8,3 ,27,41,80784,23,8 ,3,28,605072,10,4 ,27,1973,80792,24,8 ,3,28,605080,8,3 ,27,4752,80800,24,8 ,3,28,605088,16,7 ,27,812,80808,23,8 ,3,28,605096,7,2 ,27,295,80816,23,8 ,3,28,605104,5,2 ,27,1973,80824,24,8 ,3,28,605112,8,3 ,27,812,80832,23,8 ,3,28,605120,13,4 ,17,923,10042308,16,0 ,17,923,6896580,40,0 ,17,923,6372292,24,0 ,44,15152,605124,856,0 ,44,15152,3226564,24,0 ,44,15152,3750852,64,0 ,17,923,8993732,24,0 ,27,295,80840,23,8 ,3,28,605128,5,2 ,27,1973,80848,24,8 ,3,28,605136,5,2 ,27,812,80856,23,8 ,3,28,605144,5,2 ,27,295,80864,23,8 ,3,28,605152,12,5 ,27,1973,80872,24,8 ,3,28,605160,7,2 ,27,812,80880,23,8 ,3,28,605168,4,1 ,27,295,80888,23,8 ,3,28,605176,9,4 ,27,5483,80896,26,8 ,3,28,605184,17,8 ,45,15153,4275204,16,0 ,27,1973,80904,24,8 ,3,28,605192,4,1 ,27,41,80912,23,8 ,3,28,605200,4,1 ,27,295,80920,23,8 ,3,28,605208,4,1 ,27,812,80928,23,8 ,3,28,605216,6,2 ,20,23536,21052450,56,0 ,20,16313,3226658,148,0 ,20,23295,20528162,120,0 ,27,6742,80936,24,8 ,3,28,605224,8,3 ,27,6749,80944,27,8 ,3,28,605232,8,3 ,27,1973,80952,24,8 ,3,28,605240,7,2 ,27,812,80960,23,8 ,3,28,605248,5,2 ,20,989,80961,4,0 ,20,22979,20003906,112,0 ,17,923,80963,24,0 ,17,923,10042436,16,0 ,17,923,7420996,40,0 ,44,15152,2178116,24,0 ,44,15152,1129540,56,0 ,17,923,8469572,24,0 ,27,295,80968,23,8 ,3,28,605256,8,3 ,27,1973,80976,24,8 ,3,28,605264,6,2 ,27,812,80984,23,8 ,3,28,605272,8,3 ,27,295,80992,23,8 ,3,28,605280,10,4 ,20,990,80993,4,0 ,27,1973,81000,24,8 ,3,28,605288,10,4 ,27,812,81008,23,8 ,3,28,605296,10,4 ,27,295,81016,23,8 ,3,28,605304,8,3 ,27,4752,81024,24,8 ,3,28,605312,14,6 ,20,991,81025,216,0 ,17,923,9518212,40,0 ,17,923,7945348,32,0 ,17,923,6372484,24,0 ,44,15152,2702468,24,0 ,44,15152,3226756,24,0 ,45,15153,4275332,24,0 ,17,923,8993924,24,0 ,27,1973,81032,24,8 ,3,28,605320,14,6 ,27,295,81040,23,8 ,3,28,605328,14,6 ,27,812,81048,23,8 ,3,28,605336,12,5 ,27,4389,81056,27,8 ,3,28,605344,8,3 ,27,6770,81064,24,8 ,3,28,605352,10,4 ,27,6771,81072,25,8 ,3,28,605360,10,4 ,27,1973,81080,24,8 ,3,28,605368,8,3 ,27,812,81088,23,8 ,3,28,605376,14,6 ,17,923,10042564,16,0 ,27,295,81096,23,8 ,3,28,605384,10,4 ,27,1973,81104,24,8 ,3,28,605392,6,2 ,27,812,81112,23,8 ,3,28,605400,4,1 ,27,295,81120,23,8 ,3,28,605408,9,4 ,27,4752,81128,24,8 ,3,28,605416,10,4 ,27,1973,81136,24,8 ,3,28,605424,6,2 ,27,812,81144,23,8 ,3,28,605432,6,2 ,27,295,81152,23,8 ,3,28,605440,8,3 ,17,923,81155,40,0 ,17,923,8469764,40,0 ,17,923,6896900,40,0 ,44,15152,2178308,24,0 ,44,15152,81156,32,0 ,27,6784,81160,26,8 ,3,28,605448,12,5 ,27,1973,81168,24,8 ,3,28,605456,6,2 ,27,812,81176,23,8 ,3,28,605464,7,2 ,27,295,81184,23,8 ,3,28,605472,5,2 ,27,1973,81192,24,8 ,3,28,605480,28,13 ,27,4752,81200,24,8 ,3,28,605488,12,5 ,27,812,81208,23,8 ,3,28,605496,8,3 ,27,295,81216,23,8 ,3,28,605504,8,3 ,20,18921,8994114,56,0 ,20,15335,605506,188,0 ,17,923,10042692,16,0 ,17,923,6372676,40,0 ,44,15152,2702660,64,0 ,44,15152,3226948,40,0 ,45,15153,4275524,24,0 ,17,923,8994116,24,0 ,27,1973,81224,24,8 ,3,28,605512,7,2 ,27,812,81232,23,8 ,3,28,605520,5,2 ,27,295,81240,23,8 ,3,28,605528,6,2 ,27,1973,81248,24,8 ,3,28,605536,10,4 ,20,25345,25771362,800,0 ,27,812,81256,23,8 ,3,28,605544,7,2 ,27,295,81264,23,8 ,3,28,605552,14,6 ,27,1973,81272,24,8 ,3,28,605560,7,2 ,27,1961,81280,24,8 ,3,28,605568,7,2 ,20,25897,27344258,92,0 ,17,923,7421316,32,0 ,17,923,7945604,32,0 ,27,295,81288,23,8 ,3,28,605576,10,4 ,27,812,81296,23,8 ,3,28,605584,8,3 ,27,6803,81304,24,8 ,3,28,605592,8,3 ,27,1993,81312,24,8 ,3,28,605600,6,2 ,27,5035,81320,24,8 ,3,28,605608,8,3 ,27,41,81328,25,8 ,3,28,605616,6,2 ,27,1565,81336,24,8 ,3,28,605624,8,3 ,27,4389,81344,26,8 ,3,28,605632,6,2 ,17,923,10042820,16,0 ,44,15152,2178500,224,0 ,44,15152,3751364,24,0 ,17,923,9518532,40,0 ,27,1993,81352,24,8 ,3,28,605640,6,2 ,27,4389,81360,26,8 ,3,28,605648,14,5 ,27,1973,81368,24,8 ,3,28,605656,14,5 ,27,295,81376,23,8 ,3,28,605664,7,2 ,20,24330,23150050,1800,0 ,20,23537,21052898,56,0 ,27,812,81384,23,8 ,3,28,605672,14,6 ,27,5035,81392,24,8 ,3,28,605680,8,3 ,27,4389,81400,27,8 ,3,28,605688,8,3 ,27,1973,81408,24,8 ,3,28,605696,6,2 ,20,16096,2178562,124,0 ,17,923,8994308,32,0 ,44,15152,81412,24,0 ,44,15152,1129988,32,0 ,45,15153,4275716,16,0 ,27,812,81416,23,8 ,3,28,605704,8,3 ,27,295,81424,23,8 ,3,28,605712,6,2 ,27,4309,81432,26,8 ,3,28,605720,4,1 ,27,1973,81440,24,8 ,3,28,605728,9,4 ,27,1973,81448,24,8 ,3,28,605736,10,4 ,27,6836,81456,24,8 ,3,28,605744,4,1 ,27,4389,81464,27,8 ,3,28,605752,8,3 ,27,6920,81472,24,8 ,3,28,605760,4,1 ,17,923,81475,16,0 ,17,923,10042948,16,0 ,17,923,6897220,40,0 ,45,15153,5324356,24,0 ,17,923,8470084,48,0 ,27,4752,81480,24,8 ,3,28,605768,9,4 ,27,41,81488,23,8 ,3,28,605776,10,4 ,27,41,81496,23,8 ,3,28,605784,4,1 ,27,295,81504,23,8 ,3,28,605792,8,3 ,27,812,81512,23,8 ,3,28,605800,6,2 ,27,4389,81520,27,8 ,3,28,605808,10,4 ,27,6908,81528,24,8 ,3,28,605816,4,1 ,27,6909,81536,24,8 ,3,28,605824,11,4 ,20,19107,9518722,360,0 ,45,15153,4275844,24,0 ,17,923,7945860,56,0 ,17,923,7421572,32,0 ,17,923,6372996,32,0 ,44,15152,3227268,24,0 ,44,15152,3751556,64,0 ,27,6910,81544,24,8 ,3,28,605832,17,8 ,27,6911,81552,24,8 ,3,28,605840,12,5 ,27,6912,81560,24,8 ,3,28,605848,4,1 ,27,6913,81568,24,8 ,3,28,605856,9,4 ,20,26275,28393122,648,0 ,27,6914,81576,24,8 ,3,28,605864,15,7 ,27,6915,81584,24,8 ,3,28,605872,10,4 ,27,6916,81592,24,8 ,3,28,605880,8,3 ,27,6917,81600,24,8 ,3,28,605888,4,1 ,17,923,81603,32,0 ,17,923,10043076,16,0 ,44,15152,81604,64,0 ,27,6918,81608,23,8 ,3,28,605896,10,4 ,27,4309,81616,24,8 ,3,28,605904,8,3 ,27,6921,81624,24,8 ,3,28,605912,8,3 ,27,6923,81632,27,8 ,3,28,605920,7,2 ,20,22531,18956002,288,0 ,20,20508,13188834,160,0 ,20,21800,16858850,328,0 ,27,6924,81640,21,8 ,3,28,605928,12,5 ,27,1654,81648,24,8 ,3,28,605936,8,3 ,27,6934,81656,26,8 ,3,28,605944,8,3 ,27,6932,81664,24,8 ,3,28,605952,8,3 ,20,18922,8994562,128,0 ,20,24703,24198914,544,0 ,17,923,9518852,32,0 ,44,15152,1130244,32,0 ,45,15153,5324548,16,0 ,17,923,8994564,16,0 ,27,6931,81672,24,8 ,3,28,605960,8,3 ,27,6932,81680,24,8 ,3,28,605968,8,3 ,27,6932,81688,24,8 ,3,28,605976,7,2 ,27,1988,81696,26,8 ,3,28,605984,6,2 ,27,1988,81704,26,8 ,3,28,605992,8,3 ,27,4707,81712,24,8 ,3,28,606000,4,1 ,27,1988,81720,26,8 ,3,28,606008,8,3 ,27,2182,81728,24,8 ,3,28,606016,8,3 ,20,22016,17907522,56,0 ,20,25491,26296130,268,0 ,17,923,10043204,16,0 ,44,15152,2703172,24,0 ,44,15152,3227460,16,0 ,45,15153,4276036,16,0 ,27,6941,81736,24,8 ,3,28,606024,14,6 ,27,6940,81744,24,8 ,3,28,606032,10,3 ,27,4752,81752,24,8 ,3,28,606040,4,1 ,27,6942,81760,24,8 ,3,28,606048,4,1 ,27,1988,81768,26,8 ,3,28,606056,10,4 ,27,4482,81776,26,8 ,3,28,606064,8,3 ,27,1988,81784,26,8 ,3,28,606072,10,3 ,27,6946,81792,24,8 ,3,28,606080,8,3 ,17,923,8994692,24,0 ,17,923,7421828,32,0 ,17,923,6897540,32,0 ,17,923,6373252,24,0 ,45,15153,5324676,16,0 ,27,6948,81800,24,8 ,3,28,606088,4,1 ,27,6947,81808,23,8 ,3,28,606096,6,2 ,27,6949,81816,23,8 ,3,28,606104,4,1 ,27,6947,81824,23,8 ,3,28,606112,8,3 ,20,23698,21577634,668,0 ,20,23538,21053346,28,0 ,27,6949,81832,23,8 ,3,28,606120,8,3 ,27,6951,81840,23,8 ,3,28,606128,4,1 ,27,1565,81848,24,8 ,3,28,606136,8,3 ,27,295,81856,23,8 ,3,28,606144,4,1 ,20,22980,20004802,112,0 ,17,923,81859,16,0 ,17,923,10043332,16,0 ,44,15152,3227588,24,0 ,45,15153,4276164,16,0 ,17,923,8470468,48,0 ,27,812,81864,23,8 ,3,28,606152,8,3 ,27,6953,81872,24,8 ,3,28,606160,7,2 ,27,6954,81880,24,8 ,3,28,606168,4,1 ,27,812,81888,23,8 ,3,28,606176,28,13 ,20,23296,20529122,120,0 ,27,295,81896,23,8 ,3,28,606184,8,3 ,27,6959,81904,24,8 ,3,28,606192,4,1 ,27,6969,81912,21,8 ,3,28,606200,18,8 ,27,6961,81920,22,8 ,3,28,606208,8,3 ,17,923,9519108,32,0 ,44,15152,2703364,48,0 ,44,15152,1130500,64,0 ,45,15153,5324804,24,0 ,27,4768,81928,24,8 ,3,28,606216,10,4 ,27,4482,81936,26,8 ,3,28,606224,8,3 ,27,1973,81944,24,8 ,3,28,606232,4,1 ,27,2182,81952,24,8 ,3,28,606240,8,3 ,27,5880,81960,22,8 ,3,28,606248,4,1 ,27,4707,81968,24,8 ,3,28,606256,6,2 ,27,6648,81976,24,8 ,3,28,606264,4,1 ,27,2182,81984,24,8 ,3,28,606272,6,2 ,20,23910,22102082,60,0 ,20,21206,15810626,192,0 ,17,923,81987,16,0 ,17,923,10043460,16,0 ,17,923,7946308,104,0 ,17,923,6373444,48,0 ,45,15153,4276292,32,0 ,17,923,8994884,40,0 ,27,4482,81992,26,8 ,3,28,606280,4,1 ,27,4752,82000,26,8 ,3,28,606288,8,3 ,27,2182,82008,24,8 ,3,28,606296,12,5 ,27,6973,82016,24,8 ,3,28,606304,14,6 ,20,25898,27344994,92,0 ,27,6971,82024,25,8 ,3,28,606312,7,2 ,27,4748,82032,22,8 ,3,28,606320,10,4 ,27,4768,82040,24,8 ,3,28,606328,7,2 ,27,4768,82048,24,8 ,3,28,606336,10,4 ,20,23539,21053570,28,0 ,44,15152,3752068,24,0 ,17,923,7422084,40,0 ,17,923,6897796,32,0 ,44,15152,3227780,40,0 ,27,4663,82056,22,8 ,3,28,606344,14,5 ,27,2312,82064,22,8 ,3,28,606352,7,2 ,27,4759,82072,24,8 ,3,28,606360,8,3 ,27,2182,82080,24,8 ,3,28,606368,14,5 ,20,17334,5324962,148,0 ,20,15611,1130658,636,0 ,27,6978,82088,24,8 ,3,28,606376,7,2 ,27,2312,82096,22,8 ,3,28,606384,6,2 ,27,2182,82104,24,8 ,3,28,606392,6,2 ,27,5225,82112,22,8 ,3,28,606400,8,3 ,20,16314,3227842,44,0 ,17,923,82115,24,0 ,17,923,10043588,16,0 ,44,15152,82116,24,0 ,45,15153,5324996,16,0 ,27,4748,82120,22,8 ,3,28,606408,6,2 ,27,4768,82128,24,8 ,3,28,606416,4,1 ,27,6997,82136,27,8 ,3,28,606424,9,4 ,27,6988,82144,24,8 ,3,28,606432,28,9 ,27,6981,82152,24,8 ,3,28,606440,20,9 ,27,6982,82160,24,8 ,3,28,606448,55,25 ,27,6983,82168,23,8 ,3,28,606456,4,1 ,27,6984,82176,24,8 ,3,28,606464,10,3 ,20,22017,17907970,200,0 ,20,18455,7946498,92,0 ,17,923,9519364,24,0 ,27,6985,82184,24,8 ,3,28,606472,59,35 ,27,7000,82192,20,8 ,3,28,606480,4,1 ,27,6999,82200,24,8 ,3,28,606488,9,4 ,27,7002,82208,20,8 ,3,28,606496,10,4 ,27,7001,82216,24,8 ,3,28,606504,7,2 ,27,7004,82224,20,8 ,3,28,606512,24,11 ,27,7003,82232,24,8 ,3,28,606520,7,2 ,27,2182,82240,24,8 ,3,28,606528,7,2 ,17,923,10043716,16,0 ,44,15152,3752260,128,0 ,45,15153,4276548,24,0 ,45,15153,5325124,24,0 ,17,923,8470852,48,0 ,27,7005,82248,24,8 ,3,28,606536,10,4 ,27,6999,82256,23,8 ,3,28,606544,38,18 ,27,7001,82264,23,8 ,3,28,606552,6,2 ,27,7003,82272,23,8 ,3,28,606560,10,4 ,20,23540,21053794,64,0 ,20,18652,8470882,76,0 ,27,7006,82280,22,8 ,3,28,606568,6,2 ,27,7007,82288,22,8 ,3,28,606576,14,6 ,27,4663,82296,22,8 ,3,28,606584,8,3 ,27,4748,82304,22,8 ,3,28,606592,11,4 ,17,923,82307,16,0 ,17,923,8995204,24,0 ,17,923,6898052,24,0 ,44,15152,2703748,16,0 ,44,15152,82308,40,0 ,27,7008,82312,23,8 ,3,28,606600,6,2 ,27,2182,82320,24,8 ,3,28,606608,8,3 ,27,4768,82328,24,8 ,3,28,606616,4,1 ,27,7013,82336,20,8 ,3,28,606624,9,4 ,27,7012,82344,26,8 ,3,28,606632,10,4 ,27,7020,82352,20,8 ,3,28,606640,4,1 ,27,7019,82360,24,8 ,3,28,606648,8,3 ,27,7018,82368,23,8 ,3,28,606656,24,11 ,20,22686,19481026,496,0 ,17,923,10043844,16,0 ,17,923,7422404,40,0 ,17,923,6373828,40,0 ,44,15152,3228100,112,0 ,45,15153,4800964,224,0 ,17,923,9519556,32,0 ,27,7016,82376,23,8 ,3,28,606664,4,1 ,27,7022,82384,20,8 ,3,28,606672,9,4 ,27,7021,82392,24,8 ,3,28,606680,12,5 ,27,7024,82400,20,8 ,3,28,606688,4,1 ,20,16097,2179554,724,0 ,27,7023,82408,24,8 ,3,28,606696,7,2 ,27,2182,82416,24,8 ,3,28,606704,8,3 ,27,7012,82424,25,8 ,3,28,606712,4,1 ,27,7025,82432,24,8 ,3,28,606720,6,2 ,17,923,82435,32,0 ,45,15153,5325316,24,0 ,44,15152,2703876,16,0 ,44,15152,1131012,64,0 ,45,15153,4276740,16,0 ,27,7026,82440,24,8 ,3,28,606728,14,5 ,27,7019,82448,23,8 ,3,28,606736,4,1 ,27,7021,82456,23,8 ,3,28,606744,9,4 ,27,7023,82464,23,8 ,3,28,606752,10,4 ,20,23911,22102562,60,0 ,20,16315,3228194,12,0 ,27,2312,82472,22,8 ,3,28,606760,4,1 ,27,4663,82480,22,8 ,3,28,606768,6,2 ,27,4748,82488,22,8 ,3,28,606776,8,3 ,27,5843,82496,24,8 ,3,28,606784,6,2 ,17,923,10043972,16,0 ,17,923,6898244,40,0 ,17,923,8995396,56,0 ,27,7273,82504,24,8 ,3,28,606792,4,1 ,27,4321,82512,22,8 ,3,28,606800,9,4 ,27,7035,82520,24,8 ,3,28,606808,12,5 ,27,7032,82528,23,8 ,3,28,606816,4,1 ,27,7033,82536,23,8 ,3,28,606824,4,1 ,27,7034,82544,24,8 ,3,28,606832,6,2 ,27,7038,82552,26,8 ,3,28,606840,6,2 ,27,7039,82560,24,8 ,3,28,606848,8,3 ,20,19357,10044034,128,0 ,20,16316,3228290,12,0 ,45,15153,4276868,24,0 ,44,15152,2704004,72,0 ,27,7040,82568,23,8 ,3,28,606856,6,2 ,27,579,82576,22,8 ,3,28,606864,6,2 ,27,579,82584,23,8 ,3,28,606872,6,2 ,27,1062,82592,21,8 ,3,28,606880,6,2 ,27,4846,82600,24,8 ,3,28,606888,6,2 ,27,5394,82608,23,8 ,3,28,606896,8,3 ,27,4298,82616,22,8 ,3,28,606904,6,2 ,27,4002,82624,22,8 ,3,28,606912,8,3 ,17,923,10044100,16,0 ,44,15152,82628,64,0 ,45,15153,5325508,24,0 ,17,923,8471236,24,0 ,17,923,9519812,32,0 ,27,4000,82632,22,8 ,3,28,606920,6,2 ,27,4001,82640,22,8 ,3,28,606928,18,7 ,27,4793,82648,24,8 ,3,28,606936,4,1 ,27,1374,82656,22,8 ,3,28,606944,9,4 ,20,16317,3228386,120,0 ,27,4794,82664,22,8 ,3,28,606952,10,4 ,27,1403,82672,24,8 ,3,28,606960,4,1 ,27,7044,82680,22,8 ,3,28,606968,6,2 ,27,3999,82688,22,8 ,3,28,606976,6,2 ,20,18923,8995586,196,0 ,20,16149,2704130,2272,0 ,17,923,82691,24,0 ,17,923,6374148,24,0 ,17,923,7422724,32,0 ,27,4795,82696,24,8 ,3,28,606984,6,2 ,27,4844,82704,23,8 ,3,28,606992,6,2 ,27,41,82712,23,8 ,3,28,607000,6,2 ,27,7048,82720,22,8 ,3,28,607008,8,3 ,20,15336,607010,28,0 ,27,1268,82728,24,8 ,3,28,607016,8,3 ,27,7049,82736,24,8 ,3,28,607024,10,4 ,27,4001,82744,22,8 ,3,28,607032,14,5 ,27,7051,82752,26,8 ,3,28,607040,4,1 ,20,992,82753,76,0 ,20,22981,20005698,2492,0 ,20,25899,27345730,92,0 ,17,923,10044228,16,0 ,45,15153,4277060,16,0 ,27,7050,82760,22,8 ,3,28,607048,9,4 ,27,4000,82768,22,8 ,3,28,607056,12,5 ,27,4002,82776,22,8 ,3,28,607064,4,1 ,27,7053,82784,22,8 ,3,28,607072,6,2 ,20,23541,21054306,76,0 ,27,4631,82792,24,8 ,3,28,607080,4,1 ,27,7052,82800,23,8 ,3,28,607088,6,2 ,27,7052,82808,24,8 ,3,28,607096,6,2 ,27,4288,82816,22,8 ,3,28,607104,8,3 ,17,923,8471428,48,0 ,17,923,7947140,72,0 ,17,923,6898564,32,0 ,45,15153,5325700,24,0 ,27,4294,82824,22,8 ,3,28,607112,4,1 ,27,7055,82832,26,8 ,3,28,607120,9,4 ,27,4298,82840,22,8 ,3,28,607128,10,4 ,27,7056,82848,24,8 ,3,28,607136,7,2 ,20,23297,20530082,120,0 ,20,25691,26821538,588,0 ,27,4320,82856,22,8 ,3,28,607144,12,5 ,27,4467,82864,26,8 ,3,28,607152,4,1 ,27,4321,82872,22,8 ,3,28,607160,9,4 ,27,1403,82880,24,8 ,3,28,607168,19,6 ,20,18653,8471490,104,0 ,17,923,82883,32,0 ,17,923,10044356,16,0 ,17,923,6374340,16,0 ,45,15153,4277188,24,0 ,17,923,9520068,32,0 ,27,4793,82888,24,8 ,3,28,607176,14,6 ,27,1374,82896,22,8 ,3,28,607184,38,17 ,27,7057,82904,26,8 ,3,28,607192,7,2 ,27,4000,82912,22,8 ,3,28,607200,32,15 ,20,20509,13190114,304,0 ,20,18456,7947234,92,0 ,27,4439,82920,24,8 ,3,28,607208,14,6 ,27,4186,82928,26,8 ,3,28,607216,12,4 ,27,4441,82936,24,8 ,3,28,607224,6,2 ,27,4185,82944,26,8 ,3,28,607232,6,2 ,20,23912,22103042,324,0 ,20,15337,607234,32,0 ,17,923,8995844,24,0 ,17,923,7422980,40,0 ,44,15152,1131524,32,0 ,27,4627,82952,22,8 ,3,28,607240,14,6 ,27,7064,82960,24,8 ,3,28,607248,7,2 ,27,4648,82968,24,8 ,3,28,607256,7,2 ,27,4844,82976,24,8 ,3,28,607264,4,1 ,20,20230,12665890,176,0 ,27,4637,82984,22,8 ,3,28,607272,9,4 ,27,4656,82992,22,8 ,3,28,607280,10,4 ,27,4632,83000,24,8 ,3,28,607288,7,2 ,27,4298,83008,22,8 ,3,28,607296,12,5 ,17,923,10044484,16,0 ,17,923,6374468,40,0 ,45,15153,5325892,32,0 ,27,4635,83016,22,8 ,3,28,607304,10,3 ,27,7065,83024,22,8 ,3,28,607312,12,4 ,27,7066,83032,24,8 ,3,28,607320,8,3 ,27,7067,83040,23,8 ,3,28,607328,8,3 ,27,4626,83048,22,8 ,3,28,607336,6,2 ,27,7068,83056,20,8 ,3,28,607344,12,5 ,27,7077,83064,24,8 ,3,28,607352,12,5 ,27,7076,83072,26,8 ,3,28,607360,8,3 ,20,21525,16336002,248,0 ,45,15153,4277380,16,0 ,17,923,6898820,48,0 ,27,1747,83080,24,8 ,3,28,607368,6,2 ,27,1562,83088,26,8 ,3,28,607376,10,4 ,27,9,83096,23,8 ,3,28,607384,4,1 ,27,1421,83104,26,8 ,3,28,607392,8,3 ,27,41,83112,23,8 ,3,28,607400,10,4 ,27,5956,83120,26,8 ,3,28,607408,4,1 ,27,7071,83128,24,8 ,3,28,607416,6,2 ,27,1654,83136,24,8 ,3,28,607424,10,4 ,17,923,83139,32,0 ,17,923,10044612,16,0 ,44,15152,2704580,72,0 ,44,15152,2180292,16,0 ,44,15152,83140,40,0 ,17,923,8996036,24,0 ,17,923,9520324,32,0 ,27,7072,83144,24,8 ,3,28,607432,6,2 ,27,1057,83152,22,8 ,3,28,607440,10,4 ,27,1028,83160,24,8 ,3,28,607448,32,15 ,27,623,83168,23,8 ,3,28,607456,10,4 ,27,7073,83176,24,8 ,3,28,607464,6,2 ,27,1658,83184,24,8 ,3,28,607472,7,2 ,27,1634,83192,24,8 ,3,28,607480,6,2 ,27,1040,83200,24,8 ,3,28,607488,8,3 ,20,15338,607490,12,0 ,17,923,8471812,40,0 ,44,15152,1131780,32,0 ,45,15153,4277508,16,0 ,27,7074,83208,24,8 ,3,28,607496,10,4 ,27,340,83216,21,8 ,3,28,607504,4,1 ,27,1633,83224,24,8 ,3,28,607512,14,6 ,27,1374,83232,24,8 ,3,28,607520,6,2 ,27,5810,83240,27,8 ,3,28,607528,6,2 ,27,4636,83248,22,8 ,3,28,607536,14,5 ,27,7082,83256,22,8 ,3,28,607544,4,1 ,27,4606,83264,24,8 ,3,28,607552,6,2 ,20,17335,5326146,308,0 ,17,923,10044740,16,0 ,17,923,7423300,40,0 ,44,15152,2180420,152,0 ,44,15152,3228996,64,0 ,44,15152,3753284,40,0 ,45,15153,5326148,32,0 ,27,4463,83272,22,8 ,3,28,607560,4,1 ,27,7086,83280,23,8 ,3,28,607568,20,9 ,27,7088,83288,25,8 ,3,28,607576,8,3 ,27,7090,83296,22,8 ,3,28,607584,4,1 ,20,15339,607586,56,0 ,27,7092,83304,23,8 ,3,28,607592,20,9 ,27,5810,83312,24,8 ,3,28,607600,8,3 ,27,4611,83320,24,8 ,3,28,607608,10,4 ,27,7095,83328,23,8 ,3,28,607616,7,2 ,17,923,8996228,32,0 ,17,923,6374788,24,0 ,45,15153,4277636,16,0 ,27,5810,83336,24,8 ,3,28,607624,7,2 ,27,4733,83344,22,8 ,3,28,607632,8,3 ,27,4606,83352,24,8 ,3,28,607640,14,5 ,27,7098,83360,25,8 ,3,28,607648,4,1 ,20,993,83361,52,0 ,20,18192,7423394,268,0 ,27,5814,83368,24,8 ,3,28,607656,6,2 ,27,5815,83376,24,8 ,3,28,607664,6,2 ,27,2182,83384,24,8 ,3,28,607672,4,1 ,27,5816,83392,24,8 ,3,28,607680,16,7 ,20,23542,21054914,60,0 ,17,923,83395,16,0 ,17,923,10044868,16,0 ,17,923,7947716,24,0 ,17,923,9520580,48,0 ,27,3474,83400,26,8 ,3,28,607688,8,3 ,27,5442,83408,26,8 ,3,28,607696,10,4 ,27,2182,83416,24,8 ,3,28,607704,4,1 ,27,7111,83424,24,8 ,3,28,607712,24,11 ,27,4748,83432,22,8 ,3,28,607720,6,2 ,27,5411,83440,24,8 ,3,28,607728,14,6 ,27,5442,83448,26,8 ,3,28,607736,18,7 ,27,5794,83456,24,8 ,3,28,607744,4,1 ,45,15153,4277764,24,0 ,17,923,6899204,40,0 ,44,15152,83460,32,0 ,44,15152,1132036,40,0 ,27,7117,83464,24,8 ,3,28,607752,6,2 ,27,7118,83472,24,8 ,3,28,607760,14,5 ,27,7119,83480,22,8 ,3,28,607768,7,2 ,27,7120,83488,21,8 ,3,28,607776,10,4 ,20,25900,27346466,92,0 ,27,7122,83496,22,8 ,3,28,607784,8,3 ,27,7121,83504,22,8 ,3,28,607792,10,4 ,27,7123,83512,24,8 ,3,28,607800,10,4 ,27,4389,83520,26,8 ,3,28,607808,8,3 ,20,21207,15812162,308,0 ,17,923,83523,24,0 ,17,923,10044996,16,0 ,17,923,6374980,48,0 ,45,15153,5326404,16,0 ,17,923,8472132,112,0 ,27,5444,83528,24,8 ,3,28,607816,7,2 ,27,4752,83536,24,8 ,3,28,607824,5,2 ,27,4768,83544,24,8 ,3,28,607832,12,5 ,27,5331,83552,24,8 ,3,28,607840,8,3 ,27,4663,83560,22,8 ,3,28,607848,8,3 ,27,2312,83568,22,8 ,3,28,607856,10,4 ,27,4758,83576,22,8 ,3,28,607864,8,3 ,27,4759,83584,24,8 ,3,28,607872,14,5 ,20,19358,10045058,1088,0 ,17,923,8996484,24,0 ,17,923,7947908,56,0 ,17,923,7423620,40,0 ,44,15152,3753604,16,0 ,27,3135,83592,26,8 ,3,28,607880,7,2 ,27,4304,83600,22,8 ,3,28,607888,8,3 ,27,4284,83608,22,8 ,3,28,607896,6,2 ,27,4307,83616,22,8 ,3,28,607904,12,5 ,20,16318,3229346,44,0 ,27,7131,83624,22,8 ,3,28,607912,7,2 ,27,7132,83632,22,8 ,3,28,607920,7,2 ,27,5442,83640,24,8 ,3,28,607928,10,4 ,27,6596,83648,22,8 ,3,28,607936,12,5 ,20,18457,7947970,104,0 ,17,923,10045124,16,0 ,45,15153,4277956,328,0 ,45,15153,5326532,24,0 ,27,7134,83656,26,8 ,3,28,607944,6,2 ,27,4707,83664,24,8 ,3,28,607952,6,2 ,27,6502,83672,22,8 ,3,28,607960,7,2 ,27,7137,83680,24,8 ,3,28,607968,7,2 ,27,7139,83688,26,8 ,3,28,607976,7,2 ,27,6498,83696,24,8 ,3,28,607984,7,2 ,27,7140,83704,23,8 ,3,28,607992,8,3 ,27,41,83712,23,8 ,3,28,608000,6,2 ,20,18654,8472322,492,0 ,17,923,83715,16,0 ,44,15152,3753732,104,0 ,44,15152,2705156,16,0 ,44,15152,83716,24,0 ,27,4733,83720,22,8 ,3,28,608008,7,2 ,27,4606,83728,24,8 ,3,28,608016,7,2 ,27,5442,83736,26,8 ,3,28,608024,8,3 ,27,7149,83744,23,8 ,3,28,608032,8,3 ,20,15340,608034,176,0 ,27,7149,83752,24,8 ,3,28,608040,7,2 ,27,7150,83760,23,8 ,3,28,608048,7,2 ,27,7150,83768,24,8 ,3,28,608056,7,2 ,27,7156,83776,20,8 ,3,28,608064,7,2 ,20,994,83777,164,0 ,20,22018,17909570,104,0 ,17,923,10045252,16,0 ,17,923,6899524,40,0 ,44,15152,1132356,56,0 ,44,15152,3229508,16,0 ,17,923,8996676,32,0 ,17,923,9520964,40,0 ,27,7155,83784,24,8 ,3,28,608072,8,3 ,27,7154,83792,22,8 ,3,28,608080,7,2 ,27,1993,83800,22,8 ,3,28,608088,7,2 ,27,7158,83808,21,8 ,3,28,608096,7,2 ,20,23298,20531042,120,0 ,27,7157,83816,24,8 ,3,28,608104,7,2 ,27,7159,83824,23,8 ,3,28,608112,6,2 ,27,7159,83832,24,8 ,3,28,608120,6,2 ,27,2182,83840,24,8 ,3,28,608128,8,3 ,17,923,83843,32,0 ,45,15153,5326724,24,0 ,44,15152,2705284,72,0 ,27,7160,83848,24,8 ,3,28,608136,10,4 ,27,7157,83856,23,8 ,3,28,608144,12,5 ,27,7155,83864,23,8 ,3,28,608152,8,3 ,27,7162,83872,20,8 ,3,28,608160,10,4 ,20,23543,21055394,36,0 ,20,25492,26298274,428,0 ,27,7161,83880,24,8 ,3,28,608168,4,1 ,27,7163,83888,23,8 ,3,28,608176,11,4 ,27,7163,83896,24,8 ,3,28,608184,10,4 ,27,7164,83904,23,8 ,3,28,608192,4,1 ,17,923,10045380,16,0 ,17,923,7423940,32,0 ,17,923,6375364,48,0 ,44,15152,83908,200,0 ,44,15152,3229636,24,0 ,27,7164,83912,24,8 ,3,28,608200,7,2 ,27,7165,83920,21,8 ,3,28,608208,18,8 ,27,7166,83928,23,8 ,3,28,608216,21,7 ,27,7166,83936,24,8 ,3,28,608224,7,2 ,20,22532,18958306,336,0 ,27,7167,83944,24,8 ,3,28,608232,5,2 ,27,4663,83952,22,8 ,3,28,608240,12,5 ,27,7168,83960,20,8 ,3,28,608248,12,5 ,27,7169,83968,22,8 ,3,28,608256,4,1 ,20,16319,3229698,368,0 ,27,7170,83976,20,8 ,3,28,608264,9,4 ,27,7171,83984,21,8 ,3,28,608272,10,4 ,27,7172,83992,24,8 ,3,28,608280,4,1 ,27,7173,84000,21,8 ,3,28,608288,6,2 ,27,7174,84008,21,8 ,3,28,608296,4,1 ,27,2312,84016,22,8 ,3,28,608304,9,4 ,27,7161,84024,23,8 ,3,28,608312,10,4 ,27,5225,84032,22,8 ,3,28,608320,4,1 ,17,923,10045508,16,0 ,17,923,7948356,32,0 ,45,15153,5326916,32,0 ,17,923,8996932,16,0 ,27,7215,84040,22,8 ,3,28,608328,7,2 ,27,7213,84048,24,8 ,3,28,608336,20,9 ,27,4707,84056,24,8 ,3,28,608344,10,4 ,27,4752,84064,24,8 ,3,28,608352,8,3 ,27,5483,84072,26,8 ,3,28,608360,4,1 ,27,41,84080,23,8 ,3,28,608368,6,2 ,27,7178,84088,24,8 ,3,28,608376,8,3 ,27,4768,84096,24,8 ,3,28,608384,8,3 ,17,923,84099,16,0 ,17,923,9521284,32,0 ,17,923,6899844,40,0 ,44,15152,3229828,16,0 ,27,7205,84104,20,8 ,3,28,608392,8,3 ,27,7204,84112,26,8 ,3,28,608400,12,5 ,27,7184,84120,26,8 ,3,28,608408,10,4 ,27,809,84128,24,8 ,3,28,608416,6,2 ,27,1200,84136,24,8 ,3,28,608424,8,3 ,27,7182,84144,24,8 ,3,28,608432,10,4 ,27,41,84152,23,8 ,3,28,608440,7,2 ,27,41,84160,23,8 ,3,28,608448,5,2 ,20,23544,21055682,180,0 ,17,923,10045636,16,0 ,17,923,7424196,40,0 ,45,15153,4802756,232,0 ,17,923,8997060,24,0 ,27,1973,84168,24,8 ,3,28,608456,6,2 ,27,3123,84176,22,8 ,3,28,608464,8,3 ,27,3380,84184,22,8 ,3,28,608472,8,3 ,27,7191,84192,24,8 ,3,28,608480,10,4 ,27,7190,84200,25,8 ,3,28,608488,8,3 ,27,344,84208,25,8 ,3,28,608496,18,8 ,27,7192,84216,24,8 ,3,28,608504,4,1 ,27,7193,84224,24,8 ,3,28,608512,9,4 ,20,25901,27347202,92,0 ,17,923,84227,16,0 ,44,15152,3229956,16,0 ,44,15152,1132804,32,0 ,27,2050,84232,24,8 ,3,28,608520,10,4 ,27,7194,84240,22,8 ,3,28,608528,6,2 ,27,41,84248,23,8 ,3,28,608536,8,3 ,27,1973,84256,24,8 ,3,28,608544,8,3 ,20,21801,16861474,344,0 ,20,18004,6900002,100,0 ,20,18924,8997154,272,0 ,27,3123,84264,22,8 ,3,28,608552,8,3 ,27,3380,84272,22,8 ,3,28,608560,8,3 ,27,7199,84280,24,8 ,3,28,608568,8,3 ,27,7200,84288,24,8 ,3,28,608576,8,3 ,17,923,10045764,16,0 ,17,923,7948612,32,0 ,17,923,6375748,32,0 ,45,15153,5327172,32,0 ,27,7201,84296,24,8 ,3,28,608584,8,3 ,27,7202,84304,24,8 ,3,28,608592,8,3 ,27,7194,84312,22,8 ,3,28,608600,8,3 ,27,2182,84320,24,8 ,3,28,608608,8,3 ,27,7206,84328,24,8 ,3,28,608616,24,11 ,27,7204,84336,25,8 ,3,28,608624,8,3 ,27,5225,84344,22,8 ,3,28,608632,8,3 ,27,4748,84352,22,8 ,3,28,608640,12,5 ,17,923,84355,24,0 ,17,923,9521540,40,0 ,44,15152,3230084,16,0 ,17,923,8997252,16,0 ,27,41,84360,23,8 ,3,28,608648,10,4 ,27,7178,84368,24,8 ,3,28,608656,6,2 ,27,7213,84376,24,8 ,3,28,608664,20,9 ,27,7214,84384,24,8 ,3,28,608672,8,3 ,20,20231,12667298,80,0 ,27,7216,84392,24,8 ,3,28,608680,8,3 ,27,7219,84400,22,8 ,3,28,608688,8,3 ,27,7220,84408,22,8 ,3,28,608696,8,3 ,27,7221,84416,22,8 ,3,28,608704,8,3 ,20,19108,9521602,28,0 ,17,923,10045892,16,0 ,17,923,6900164,32,0 ,44,15152,2705860,56,0 ,17,923,8473028,24,0 ,27,7120,84424,21,8 ,3,28,608712,8,3 ,27,7222,84432,22,8 ,3,28,608720,8,3 ,27,7223,84440,22,8 ,3,28,608728,8,3 ,27,7223,84448,22,8 ,3,28,608736,8,3 ,27,7227,84456,24,8 ,3,28,608744,8,3 ,27,7224,84464,24,8 ,3,28,608752,8,3 ,27,7228,84472,26,8 ,3,28,608760,8,3 ,27,7229,84480,24,8 ,3,28,608768,21,8 ,20,18458,7948802,168,0 ,17,923,8997380,24,0 ,17,923,7424516,40,0 ,44,15152,2181636,24,0 ,44,15152,1133060,40,0 ,44,15152,3230212,296,0 ,27,7231,84488,24,8 ,3,28,608776,8,3 ,27,7232,84496,24,8 ,3,28,608784,11,4 ,27,41,84504,23,8 ,3,28,608792,6,3 ,27,7240,84512,24,8 ,3,28,608800,11,4 ,20,26394,28920354,288,0 ,27,7241,84520,21,8 ,3,28,608808,8,3 ,27,5240,84528,22,8 ,3,28,608816,6,2 ,27,5410,84536,24,8 ,3,28,608824,8,3 ,27,7117,84544,24,8 ,3,28,608832,7,2 ,17,923,84547,16,0 ,17,923,10046020,16,0 ,17,923,7948868,24,0 ,17,923,6376004,24,0 ,44,15152,3754564,40,0 ,45,15153,5327428,32,0 ,27,5450,84552,22,8 ,3,28,608840,5,2 ,27,7118,84560,24,8 ,3,28,608848,10,3 ,27,2312,84568,22,8 ,3,28,608856,8,3 ,27,5442,84576,24,8 ,3,28,608864,11,4 ,27,7119,84584,22,8 ,3,28,608872,8,3 ,27,2312,84592,22,8 ,3,28,608880,8,3 ,27,4000,84600,22,8 ,3,28,608888,12,5 ,27,4001,84608,22,8 ,3,28,608896,7,2 ,20,22019,17910402,276,0 ,17,923,8473220,48,0 ,27,5777,84616,22,8 ,3,28,608904,5,2 ,27,7228,84624,26,8 ,3,28,608912,8,3 ,27,7244,84632,24,8 ,3,28,608920,8,3 ,27,5584,84640,24,8 ,3,28,608928,6,2 ,20,19109,9521826,140,0 ,27,7245,84648,24,8 ,3,28,608936,8,3 ,27,7249,84656,22,8 ,3,28,608944,6,2 ,27,7250,84664,24,8 ,3,28,608952,8,3 ,27,7251,84672,22,8 ,3,28,608960,10,4 ,17,923,84675,24,0 ,17,923,10046148,16,0 ,17,923,6900420,40,0 ,44,15152,2181828,24,0 ,17,923,8997572,24,0 ,17,923,9521860,40,0 ,27,7260,84680,25,8 ,3,28,608968,16,7 ,27,7252,84688,25,8 ,3,28,608976,11,4 ,27,2312,84696,22,8 ,3,28,608984,11,4 ,27,7261,84704,23,8 ,3,28,608992,8,3 ,27,7261,84712,24,8 ,3,28,609000,8,3 ,27,5225,84720,22,8 ,3,28,609008,7,2 ,27,7262,84728,20,8 ,3,28,609016,5,2 ,27,7268,84736,20,8 ,3,28,609024,8,3 ,17,923,6376196,40,0 ,17,923,7949060,24,0 ,27,7267,84744,24,8 ,3,28,609032,7,2 ,27,2182,84752,24,8 ,3,28,609040,5,2 ,27,7265,84760,23,8 ,3,28,609048,12,5 ,27,7267,84768,23,8 ,3,28,609056,7,2 ,20,23299,20532002,120,0 ,27,6222,84776,24,8 ,3,28,609064,5,2 ,27,5185,84784,24,8 ,3,28,609072,7,2 ,27,6223,84792,23,8 ,3,28,609080,5,2 ,27,7273,84800,24,8 ,3,28,609088,7,2 ,17,923,10046276,16,0 ,17,923,7424836,40,0 ,44,15152,1133380,40,0 ,45,15153,5327684,48,0 ,27,8011,84808,22,8 ,3,28,609096,5,2 ,27,8005,84816,24,8 ,3,28,609104,7,2 ,27,8004,84824,24,8 ,3,28,609112,5,2 ,27,7274,84832,22,8 ,3,28,609120,8,3 ,27,4768,84840,24,8 ,3,28,609128,11,4 ,27,7276,84848,24,8 ,3,28,609136,8,3 ,27,7318,84856,27,8 ,3,28,609144,12,5 ,27,2182,84864,24,8 ,3,28,609152,7,2 ,17,923,84867,32,0 ,17,923,8997764,32,0 ,44,15152,2706308,32,0 ,44,15152,2182020,24,0 ,44,15152,3754884,104,0 ,27,6454,84872,24,8 ,3,28,609160,5,2 ,27,4618,84880,22,8 ,3,28,609168,10,4 ,27,4748,84888,22,8 ,3,28,609176,8,3 ,27,6455,84896,22,8 ,3,28,609184,7,2 ,27,6456,84904,22,8 ,3,28,609192,5,2 ,27,6457,84912,22,8 ,3,28,609200,10,3 ,27,7322,84920,22,8 ,3,28,609208,8,3 ,27,7323,84928,22,8 ,3,28,609216,10,3 ,17,923,10046404,16,0 ,17,923,7949252,64,0 ,27,7324,84936,22,8 ,3,28,609224,6,3 ,27,7325,84944,22,8 ,3,28,609232,8,3 ,27,7326,84952,22,8 ,3,28,609240,8,3 ,27,7327,84960,22,8 ,3,28,609248,13,4 ,20,25902,27347938,92,0 ,27,7328,84968,24,8 ,3,28,609256,11,4 ,27,7329,84976,24,8 ,3,28,609264,8,3 ,27,4663,84984,22,8 ,3,28,609272,6,2 ,27,2312,84992,22,8 ,3,28,609280,7,2 ,17,923,9522180,40,0 ,17,923,6900740,40,0 ,17,923,8473604,48,0 ,27,4758,85000,22,8 ,3,28,609288,5,2 ,27,4759,85008,24,8 ,3,28,609296,7,2 ,27,4389,85016,27,8 ,3,28,609304,5,2 ,27,295,85024,23,8 ,3,28,609312,7,2 ,20,20232,12667938,12,0 ,27,812,85032,23,8 ,3,28,609320,5,2 ,27,41,85040,23,8 ,3,28,609328,7,2 ,27,7339,85048,24,8 ,3,28,609336,5,2 ,27,2913,85056,24,8 ,3,28,609344,7,2 ,20,21526,16337986,456,0 ,20,18005,6900802,248,0 ,17,923,10046532,16,0 ,17,923,6376516,32,0 ,44,15152,2182212,144,0 ,27,7340,85064,25,8 ,3,28,609352,5,2 ,27,7341,85072,25,8 ,3,28,609360,12,5 ,27,7344,85080,24,8 ,3,28,609368,7,2 ,27,7349,85088,24,8 ,3,28,609376,5,2 ,20,995,85089,88,0 ,27,41,85096,23,8 ,3,28,609384,6,2 ,27,7364,85104,24,8 ,3,28,609392,8,3 ,27,41,85112,23,8 ,3,28,609400,7,2 ,27,7365,85120,23,8 ,3,28,609408,5,2 ,20,20233,12668034,80,0 ,20,20153,11619458,604,0 ,17,923,85123,16,0 ,17,923,8998020,16,0 ,17,923,7425156,32,0 ,44,15152,2706564,40,0 ,44,15152,1133700,24,0 ,27,7366,85128,22,8 ,3,28,609416,8,3 ,27,7374,85136,22,8 ,3,28,609424,8,3 ,27,7373,85144,21,8 ,3,28,609432,9,3 ,27,7371,85152,22,8 ,3,28,609440,8,3 ,20,15341,609442,288,0 ,27,7369,85160,20,8 ,3,28,609448,11,4 ,27,7368,85168,26,8 ,3,28,609456,10,4 ,27,7368,85176,24,8 ,3,28,609464,8,3 ,27,7370,85184,24,8 ,3,28,609472,8,3 ,17,923,10046660,16,0 ,45,15153,5328068,72,0 ,27,2562,85192,22,8 ,3,28,609480,8,3 ,27,7376,85200,25,8 ,3,28,609488,11,4 ,27,7375,85208,22,8 ,3,28,609496,16,7 ,27,7378,85216,22,8 ,3,28,609504,8,3 ,27,7377,85224,22,8 ,3,28,609512,11,4 ,27,7381,85232,22,8 ,3,28,609520,11,4 ,27,7379,85240,24,8 ,3,28,609528,10,4 ,27,7380,85248,22,8 ,3,28,609536,8,3 ,20,24508,23678210,144,0 ,17,923,85251,32,0 ,17,923,8998148,24,0 ,27,7383,85256,22,8 ,3,28,609544,12,5 ,27,7382,85264,22,8 ,3,28,609552,7,2 ,27,7385,85272,22,8 ,3,28,609560,5,2 ,27,7384,85280,22,8 ,3,28,609568,11,4 ,27,7386,85288,24,8 ,3,28,609576,8,3 ,27,7387,85296,23,8 ,3,28,609584,7,2 ,27,41,85304,23,8 ,3,28,609592,5,2 ,27,41,85312,23,8 ,3,28,609600,8,3 ,17,923,10046788,16,0 ,17,923,6901060,40,0 ,17,923,6376772,40,0 ,44,15152,1133892,40,0 ,17,923,9522500,40,0 ,27,41,85320,23,8 ,3,28,609608,11,4 ,27,3149,85328,24,8 ,3,28,609616,7,2 ,27,7396,85336,23,8 ,3,28,609624,5,2 ,27,3149,85344,24,8 ,3,28,609632,7,2 ,20,20510,13192546,80,0 ,27,3149,85352,23,8 ,3,28,609640,5,2 ,27,295,85360,23,8 ,3,28,609648,8,3 ,27,812,85368,23,8 ,3,28,609656,7,2 ,27,41,85376,23,8 ,3,28,609664,5,2 ,17,923,8473988,40,0 ,17,923,7425412,40,0 ,27,7407,85384,22,8 ,3,28,609672,7,2 ,27,7408,85392,22,8 ,3,28,609680,5,2 ,27,7409,85400,22,8 ,3,28,609688,10,4 ,27,4001,85408,24,8 ,3,28,609696,7,2 ,27,295,85416,23,8 ,3,28,609704,5,2 ,27,812,85424,23,8 ,3,28,609712,7,2 ,27,41,85432,23,8 ,3,28,609720,5,2 ,27,4389,85440,26,8 ,3,28,609728,7,2 ,17,923,10046916,16,0 ,17,923,7949764,32,0 ,44,15152,2706884,24,0 ,17,923,8998340,48,0 ,27,7414,85448,24,8 ,3,28,609736,5,2 ,27,7416,85456,24,8 ,3,28,609744,7,2 ,27,7417,85464,22,8 ,3,28,609752,5,2 ,27,7418,85472,22,8 ,3,28,609760,7,2 ,27,7419,85480,24,8 ,3,28,609768,5,2 ,27,7421,85488,26,8 ,3,28,609776,7,2 ,27,5082,85496,22,8 ,3,28,609784,5,2 ,27,5100,85504,24,8 ,3,28,609792,6,2 ,20,18193,7425538,64,0 ,17,923,85507,24,0 ,44,15152,85508,56,0 ,27,7422,85512,24,8 ,3,28,609800,6,2 ,27,7423,85520,26,8 ,3,28,609808,18,7 ,27,7428,85528,23,8 ,3,28,609816,4,1 ,27,7429,85536,23,8 ,3,28,609824,7,2 ,20,23913,22105634,60,0 ,27,7430,85544,24,8 ,3,28,609832,5,2 ,27,7431,85552,24,8 ,3,28,609840,10,4 ,27,4733,85560,22,8 ,3,28,609848,7,2 ,27,4606,85568,24,8 ,3,28,609856,5,2 ,17,923,10047044,16,0 ,27,4000,85576,22,8 ,3,28,609864,8,3 ,27,5110,85584,20,8 ,3,28,609872,8,3 ,27,4851,85592,24,8 ,3,28,609880,7,2 ,27,4851,85600,23,8 ,3,28,609888,5,2 ,20,23545,21057122,28,0 ,27,4001,85608,22,8 ,3,28,609896,7,2 ,27,4851,85616,22,8 ,3,28,609904,5,2 ,27,7435,85624,23,8 ,3,28,609912,10,4 ,27,7437,85632,23,8 ,3,28,609920,7,2 ,17,923,9522820,32,0 ,17,923,6901380,24,0 ,17,923,6377092,32,0 ,44,15152,2707076,40,0 ,44,15152,1134212,32,0 ,27,7438,85640,23,8 ,3,28,609928,5,2 ,27,41,85648,23,8 ,3,28,609936,7,2 ,27,41,85656,23,8 ,3,28,609944,5,2 ,27,7451,85664,22,8 ,3,28,609952,10,4 ,27,7448,85672,21,8 ,3,28,609960,7,2 ,27,7449,85680,21,8 ,3,28,609968,5,2 ,27,7450,85688,21,8 ,3,28,609976,7,2 ,27,812,85696,23,8 ,3,28,609984,5,2 ,20,25903,27348674,92,0 ,17,923,85699,48,0 ,17,923,10047172,16,0 ,17,923,7950020,24,0 ,17,923,7425732,40,0 ,44,15152,3755716,88,0 ,17,923,8474308,40,0 ,27,295,85704,23,8 ,3,28,609992,7,2 ,27,7456,85712,22,8 ,3,28,610000,5,2 ,27,7458,85720,24,8 ,3,28,610008,6,2 ,27,7459,85728,23,8 ,3,28,610016,8,3 ,20,23300,20532962,120,0 ,20,17336,5328610,292,0 ,27,7460,85736,24,8 ,3,28,610024,7,2 ,27,7461,85744,24,8 ,3,28,610032,5,2 ,27,812,85752,23,8 ,3,28,610040,7,2 ,27,295,85760,23,8 ,3,28,610048,5,2 ,20,20234,12668674,12,0 ,20,19110,9522946,192,0 ,45,15153,5328644,24,0 ,27,7462,85768,21,8 ,3,28,610056,8,3 ,27,7465,85776,22,8 ,3,28,610064,7,2 ,27,7467,85784,22,8 ,3,28,610072,5,2 ,27,7471,85792,22,8 ,3,28,610080,7,2 ,20,996,85793,88,0 ,27,7469,85800,21,8 ,3,28,610088,5,2 ,27,7470,85808,21,8 ,3,28,610096,7,2 ,27,7473,85816,22,8 ,3,28,610104,5,2 ,27,7475,85824,22,8 ,3,28,610112,8,3 ,20,23546,21057346,28,0 ,20,18459,7950146,104,0 ,17,923,10047300,16,0 ,17,923,6901572,40,0 ,17,923,8998724,56,0 ,27,5052,85832,24,8 ,3,28,610120,10,3 ,27,7477,85840,23,8 ,3,28,610128,8,3 ,27,7477,85848,24,8 ,3,28,610136,8,3 ,27,7478,85856,22,8 ,3,28,610144,6,2 ,20,20235,12668770,104,0 ,27,7479,85864,22,8 ,3,28,610152,8,3 ,27,7481,85872,20,8 ,3,28,610160,8,3 ,27,7480,85880,24,8 ,3,28,610168,8,3 ,27,4456,85888,25,8 ,3,28,610176,7,2 ,20,22252,18435970,140,0 ,17,923,9523076,32,0 ,17,923,7950212,64,0 ,17,923,6377348,48,0 ,44,15152,1134468,96,0 ,27,4456,85896,26,8 ,3,28,610184,5,2 ,27,7482,85904,24,8 ,3,28,610192,7,2 ,27,7483,85912,22,8 ,3,28,610200,5,2 ,27,4000,85920,22,8 ,3,28,610208,7,2 ,20,26107,27873186,148,0 ,27,7484,85928,22,8 ,3,28,610216,5,2 ,27,7486,85936,24,8 ,3,28,610224,8,3 ,27,7487,85944,24,8 ,3,28,610232,8,3 ,27,5102,85952,22,8 ,3,28,610240,8,3 ,17,923,10047428,16,0 ,44,15152,2707396,48,0 ,44,15152,85956,24,0 ,45,15153,5328836,40,0 ,27,4294,85960,22,8 ,3,28,610248,8,3 ,27,7489,85968,20,8 ,3,28,610256,6,2 ,27,7488,85976,24,8 ,3,28,610264,14,5 ,27,5089,85984,22,8 ,3,28,610272,8,3 ,20,21208,15814626,24,0 ,20,20511,13193186,12,0 ,27,7490,85992,22,8 ,3,28,610280,7,2 ,27,5091,86000,22,8 ,3,28,610288,5,2 ,27,7488,86008,23,8 ,3,28,610296,7,2 ,27,7491,86016,24,8 ,3,28,610304,5,2 ,20,23914,22106114,208,0 ,20,24704,24203266,108,0 ,20,18194,7426050,324,0 ,17,923,8474628,32,0 ,17,923,7426052,32,0 ,45,15153,4804612,16,0 ,27,7492,86024,24,8 ,3,28,610312,8,3 ,27,7493,86032,22,8 ,3,28,610320,8,3 ,27,7494,86040,24,8 ,3,28,610328,7,2 ,27,5111,86048,22,8 ,3,28,610336,5,2 ,20,23547,21057570,56,0 ,27,7495,86056,24,8 ,3,28,610344,12,5 ,27,7496,86064,24,8 ,3,28,610352,11,4 ,27,7497,86072,24,8 ,3,28,610360,7,2 ,27,7499,86080,20,8 ,3,28,610368,5,2 ,20,20512,13193282,84,0 ,17,923,86083,24,0 ,17,923,10047556,16,0 ,27,7498,86088,24,8 ,3,28,610376,6,2 ,27,7500,86096,22,8 ,3,28,610384,11,4 ,27,7501,86104,22,8 ,3,28,610392,11,4 ,27,7502,86112,22,8 ,3,28,610400,7,2 ,27,4460,86120,25,8 ,3,28,610408,5,2 ,27,4460,86128,26,8 ,3,28,610416,8,3 ,27,7503,86136,22,8 ,3,28,610424,7,2 ,27,7511,86144,22,8 ,3,28,610432,5,2 ,17,923,9523332,40,0 ,17,923,6901892,80,0 ,44,15152,86148,32,0 ,45,15153,4804740,16,0 ,27,7504,86152,24,8 ,3,28,610440,29,10 ,27,7505,86160,24,8 ,3,28,610448,8,3 ,27,7506,86168,22,8 ,3,28,610456,11,4 ,27,7507,86176,22,8 ,3,28,610464,8,3 ,20,21209,15814818,24,0 ,27,7508,86184,24,8 ,3,28,610472,8,3 ,27,7509,86192,22,8 ,3,28,610480,6,2 ,27,7510,86200,22,8 ,3,28,610488,8,3 ,27,7512,86208,24,8 ,3,28,610496,7,2 ,17,923,10047684,16,0 ,44,15152,2183364,16,0 ,27,4047,86216,22,8 ,3,28,610504,5,2 ,27,7513,86224,22,8 ,3,28,610512,8,3 ,27,7514,86232,24,8 ,3,28,610520,6,2 ,27,7515,86240,23,8 ,3,28,610528,8,3 ,27,4470,86248,24,8 ,3,28,610536,10,4 ,27,7516,86256,22,8 ,3,28,610544,7,2 ,27,4474,86264,21,8 ,3,28,610552,5,2 ,27,4473,86272,26,8 ,3,28,610560,8,3 ,17,923,86275,32,0 ,17,923,8999172,40,0 ,17,923,7426308,40,0 ,17,923,6377732,24,0 ,45,15153,4280580,240,0 ,45,15153,4804868,208,0 ,45,15153,5329156,24,0 ,17,923,8474884,32,0 ,27,7517,86280,22,8 ,3,28,610568,8,3 ,27,7518,86288,24,8 ,3,28,610576,12,5 ,27,4473,86296,25,8 ,3,28,610584,10,3 ,27,4478,86304,24,8 ,3,28,610592,5,2 ,27,7519,86312,24,8 ,3,28,610600,5,2 ,27,7520,86320,22,8 ,3,28,610608,4,1 ,27,7480,86328,23,8 ,3,28,610616,9,4 ,27,7522,86336,20,8 ,3,28,610624,10,4 ,20,22687,19484994,196,0 ,17,923,10047812,16,0 ,44,15152,2707780,112,0 ,44,15152,2183492,32,0 ,27,7521,86344,24,8 ,3,28,610632,4,1 ,27,7524,86352,20,8 ,3,28,610640,12,5 ,27,7523,86360,24,8 ,3,28,610648,16,5 ,27,7525,86368,24,8 ,3,28,610656,12,5 ,20,21210,15815010,24,0 ,27,7526,86376,24,8 ,3,28,610664,10,3 ,27,7612,86384,22,8 ,3,28,610672,6,3 ,27,8680,86392,23,8 ,3,28,610680,10,3 ,27,8680,86400,24,8 ,3,28,610688,8,3 ,20,24509,23679362,156,0 ,44,15152,3756420,80,0 ,17,923,7950724,40,0 ,44,15152,86404,24,0 ,27,163,86408,22,8 ,3,28,610696,8,3 ,27,41,86416,23,8 ,3,28,610704,7,2 ,27,7534,86424,24,8 ,3,28,610712,5,2 ,27,295,86432,23,8 ,3,28,610720,7,2 ,20,18925,8999330,72,0 ,20,25904,27349410,92,0 ,27,812,86440,23,8 ,3,28,610728,5,2 ,27,41,86448,23,8 ,3,28,610736,7,2 ,27,7549,86456,24,8 ,3,28,610744,5,2 ,27,7550,86464,24,8 ,3,28,610752,10,3 ,20,16672,3756482,288,0 ,17,923,10047940,16,0 ,17,923,6377924,40,0 ,45,15153,5329348,40,0 ,17,923,9523652,32,0 ,27,7552,86472,24,8 ,3,28,610760,8,3 ,27,7551,86480,24,8 ,3,28,610768,8,3 ,27,7553,86488,24,8 ,3,28,610776,8,3 ,27,7554,86496,24,8 ,3,28,610784,7,2 ,20,997,86497,88,0 ,20,23548,21058018,56,0 ,27,7555,86504,24,8 ,3,28,610792,5,2 ,27,7556,86512,24,8 ,3,28,610800,10,3 ,27,7594,86520,24,8 ,3,28,610808,8,3 ,27,7559,86528,24,8 ,3,28,610816,6,2 ,17,923,86531,16,0 ,17,923,8475140,40,0 ,27,7561,86536,26,8 ,3,28,610824,9,4 ,27,7562,86544,24,8 ,3,28,610832,13,4 ,27,7549,86552,24,8 ,3,28,610840,11,4 ,27,7550,86560,24,8 ,3,28,610848,13,4 ,20,21211,15815202,24,0 ,27,7563,86568,24,8 ,3,28,610856,11,4 ,27,41,86576,23,8 ,3,28,610864,8,3 ,27,7559,86584,24,8 ,3,28,610872,7,2 ,27,7561,86592,26,8 ,3,28,610880,5,2 ,17,923,10048068,16,0 ,17,923,7426628,40,0 ,44,15152,2183748,40,0 ,44,15152,86596,24,0 ,17,923,8999492,24,0 ,27,7549,86600,24,8 ,3,28,610888,8,3 ,27,7550,86608,24,8 ,3,28,610896,10,4 ,27,1707,86616,26,8 ,3,28,610904,8,3 ,27,7568,86624,24,8 ,3,28,610912,7,2 ,20,22533,18960994,68,0 ,27,7569,86632,24,8 ,3,28,610920,5,2 ,27,7559,86640,24,8 ,3,28,610928,10,3 ,27,7561,86648,26,8 ,3,28,610936,8,3 ,27,7573,86656,25,8 ,3,28,610944,7,2 ,20,18460,7950978,156,0 ,17,923,86659,16,0 ,44,15152,1135236,24,0 ,27,7575,86664,24,8 ,3,28,610952,5,2 ,27,41,86672,23,8 ,3,28,610960,8,3 ,27,7559,86680,24,8 ,3,28,610968,7,2 ,27,7561,86688,26,8 ,3,28,610976,5,2 ,20,23301,20533922,76,0 ,20,20236,12669602,168,0 ,20,20729,13718178,456,0 ,27,7549,86696,24,8 ,3,28,610984,4,1 ,27,7550,86704,24,8 ,3,28,610992,9,4 ,27,7563,86712,24,8 ,3,28,611000,12,5 ,27,41,86720,23,8 ,3,28,611008,4,1 ,17,923,10048196,16,0 ,17,923,7951044,24,0 ,17,923,9523908,32,0 ,27,7583,86728,24,8 ,3,28,611016,4,1 ,27,7559,86736,24,8 ,3,28,611024,7,2 ,27,7561,86744,26,8 ,3,28,611032,5,2 ,27,7584,86752,24,8 ,3,28,611040,8,3 ,20,21212,15815394,24,0 ,20,26276,28398306,184,0 ,20,20513,13193954,440,0 ,27,7549,86760,24,8 ,3,28,611048,9,4 ,27,7550,86768,24,8 ,3,28,611056,8,3 ,27,41,86776,23,8 ,3,28,611064,7,2 ,27,7559,86784,24,8 ,3,28,611072,5,2 ,17,923,86787,24,0 ,17,923,8999684,64,0 ,17,923,6902532,40,0 ,17,923,6378244,40,0 ,44,15152,86788,344,0 ,45,15153,5329668,64,0 ,27,7561,86792,26,8 ,3,28,611080,8,3 ,27,7588,86800,24,8 ,3,28,611088,7,2 ,27,7550,86808,24,8 ,3,28,611096,5,2 ,27,7549,86816,24,8 ,3,28,611104,20,7 ,20,22020,17912610,396,0 ,20,26395,28922658,436,0 ,27,7563,86824,24,8 ,3,28,611112,8,3 ,27,41,86832,23,8 ,3,28,611120,10,3 ,27,7559,86840,24,8 ,3,28,611128,7,2 ,27,7561,86848,26,8 ,3,28,611136,5,2 ,17,923,10048324,16,0 ,44,15152,1135428,24,0 ,44,15152,3232580,120,0 ,17,923,8475460,24,0 ,27,7592,86856,24,8 ,3,28,611144,13,4 ,27,7549,86864,24,8 ,3,28,611152,9,4 ,27,7550,86872,24,8 ,3,28,611160,8,3 ,27,7563,86880,24,8 ,3,28,611168,8,3 ,20,24705,24204130,108,0 ,27,7597,86888,22,8 ,3,28,611176,7,2 ,27,7596,86896,21,8 ,3,28,611184,5,2 ,27,7599,86904,22,8 ,3,28,611192,12,5 ,27,7601,86912,22,8 ,3,28,611200,11,4 ,20,16320,3232642,1000,0 ,44,15152,2184068,16,0 ,17,923,7951236,64,0 ,17,923,7426948,40,0 ,27,7606,86920,22,8 ,3,28,611208,8,3 ,27,7604,86928,20,8 ,3,28,611216,6,2 ,27,7603,86936,26,8 ,3,28,611224,8,3 ,27,7603,86944,24,8 ,3,28,611232,8,3 ,20,23549,21058466,36,0 ,20,21213,15815586,24,0 ,27,7605,86952,24,8 ,3,28,611240,8,3 ,27,3276,86960,21,8 ,3,28,611248,20,7 ,27,7608,86968,22,8 ,3,28,611256,11,4 ,27,3277,86976,22,8 ,3,28,611264,14,6 ,17,923,86979,16,0 ,17,923,10048452,16,0 ,17,923,9524164,40,0 ,27,7609,86984,21,8 ,3,28,611272,8,3 ,27,7610,86992,21,8 ,3,28,611280,4,1 ,27,3978,87000,21,8 ,3,28,611288,9,4 ,27,7613,87008,22,8 ,3,28,611296,12,5 ,20,22253,18437090,128,0 ,20,18926,8999906,12,0 ,20,21802,16864226,12,0 ,27,4282,87016,24,8 ,3,28,611304,8,3 ,27,7614,87024,22,8 ,3,28,611312,7,2 ,27,7615,87032,24,8 ,3,28,611320,5,2 ,27,7617,87040,20,8 ,3,28,611328,7,2 ,20,18006,6902786,192,0 ,17,923,8475652,40,0 ,44,15152,2184196,32,0 ,44,15152,1135620,72,0 ,44,15152,3757060,64,0 ,27,7616,87048,24,8 ,3,28,611336,5,2 ,27,7618,87056,23,8 ,3,28,611344,7,2 ,27,7619,87064,22,8 ,3,28,611352,5,2 ,27,5100,87072,24,8 ,3,28,611360,10,4 ,20,19690,10572834,336,0 ,27,4461,87080,21,8 ,3,28,611368,7,2 ,27,7620,87088,24,8 ,3,28,611376,5,2 ,27,7621,87096,24,8 ,3,28,611384,7,2 ,27,7622,87104,24,8 ,3,28,611392,5,2 ,20,21803,16864322,12,0 ,20,26108,27874370,568,0 ,20,18927,9000002,764,0 ,17,923,87107,40,0 ,17,923,10048580,16,0 ,17,923,6902852,24,0 ,17,923,6378564,24,0 ,27,4463,87112,22,8 ,3,28,611400,7,2 ,27,7624,87120,23,8 ,3,28,611408,5,2 ,27,7623,87128,24,8 ,3,28,611416,7,2 ,27,7624,87136,24,8 ,3,28,611424,5,2 ,20,21214,15815778,24,0 ,27,5082,87144,22,8 ,3,28,611432,7,2 ,27,7626,87152,20,8 ,3,28,611440,5,2 ,27,7625,87160,24,8 ,3,28,611448,7,2 ,27,7523,87168,23,8 ,3,28,611456,5,2 ,20,23699,21582978,24,0 ,20,25905,27350146,92,0 ,20,15612,1135746,540,0 ,20,22534,18961538,476,0 ,27,7628,87176,20,8 ,3,28,611464,8,3 ,27,7627,87184,24,8 ,3,28,611472,7,2 ,27,7629,87192,24,8 ,3,28,611480,5,2 ,27,4295,87200,23,8 ,3,28,611488,8,3 ,20,998,87201,4,0 ,20,21804,16864418,52,0 ,27,4295,87208,24,8 ,3,28,611496,7,2 ,27,7632,87216,24,8 ,3,28,611504,5,2 ,27,4108,87224,22,8 ,3,28,611512,4,1 ,27,4466,87232,21,8 ,3,28,611520,9,4 ,20,999,87233,48,0 ,20,23550,21058754,28,0 ,17,923,10048708,16,0 ,17,923,7427268,40,0 ,44,15152,2708676,16,0 ,27,5105,87240,24,8 ,3,28,611528,10,4 ,27,7633,87248,22,8 ,3,28,611536,6,2 ,27,5090,87256,22,8 ,3,28,611544,8,3 ,27,7498,87264,23,8 ,3,28,611552,8,3 ,27,4476,87272,21,8 ,3,28,611560,4,1 ,27,4468,87280,26,8 ,3,28,611568,9,4 ,27,5092,87288,22,8 ,3,28,611576,10,4 ,27,7634,87296,24,8 ,3,28,611584,4,1 ,20,23302,20534530,64,0 ,20,25493,26301698,888,0 ,20,19111,9524482,120,0 ,17,923,9524484,32,0 ,17,923,6903044,48,0 ,17,923,6378756,48,0 ,44,15152,2184452,24,0 ,45,15153,5330180,24,0 ,17,923,9000196,48,0 ,27,7635,87304,24,8 ,3,28,611592,6,2 ,27,7636,87312,22,8 ,3,28,611600,8,3 ,27,7637,87320,22,8 ,3,28,611608,4,1 ,27,7625,87328,23,8 ,3,28,611616,9,4 ,20,21215,15815970,24,0 ,27,7627,87336,23,8 ,3,28,611624,10,4 ,27,6228,87344,22,8 ,3,28,611632,4,1 ,27,7616,87352,23,8 ,3,28,611640,6,2 ,27,7638,87360,20,8 ,3,28,611648,8,3 ,20,23700,21583170,12,0 ,17,923,10048836,16,0 ,44,15152,2708804,40,0 ,17,923,8475972,40,0 ,27,7648,87368,26,8 ,3,28,611656,10,4 ,27,7649,87376,20,8 ,3,28,611664,4,1 ,27,7650,87384,24,8 ,3,28,611672,9,4 ,27,7651,87392,22,8 ,3,28,611680,10,4 ,27,7652,87400,24,8 ,3,28,611688,4,1 ,27,4001,87408,22,8 ,3,28,611696,6,2 ,27,4307,87416,22,8 ,3,28,611704,4,1 ,27,5077,87424,22,8 ,3,28,611712,9,4 ,17,923,87427,16,0 ,17,923,7951748,32,0 ,27,7653,87432,22,8 ,3,28,611720,10,4 ,27,7654,87440,22,8 ,3,28,611728,4,1 ,27,5540,87448,22,8 ,3,28,611736,12,5 ,27,7655,87456,24,8 ,3,28,611744,7,2 ,20,23701,21583266,108,0 ,20,15342,611746,12,0 ,20,23551,21058978,64,0 ,27,7656,87464,22,8 ,3,28,611752,5,2 ,27,7657,87472,22,8 ,3,28,611760,7,2 ,27,7658,87480,24,8 ,3,28,611768,5,2 ,27,4468,87488,25,8 ,3,28,611776,7,2 ,17,923,10048964,16,0 ,44,15152,2184644,16,0 ,45,15153,5330372,48,0 ,27,7659,87496,22,8 ,3,28,611784,5,2 ,27,7660,87504,22,8 ,3,28,611792,9,4 ,27,7661,87512,22,8 ,3,28,611800,7,2 ,27,4314,87520,21,8 ,3,28,611808,5,2 ,20,21216,15816162,24,0 ,27,7521,87528,23,8 ,3,28,611816,7,2 ,27,7665,87536,24,8 ,3,28,611824,5,2 ,27,7666,87544,21,8 ,3,28,611832,7,2 ,27,7667,87552,24,8 ,3,28,611840,5,2 ,20,15343,611842,60,0 ,20,25692,26826242,148,0 ,17,923,87555,40,0 ,17,923,9524740,112,0 ,17,923,7427588,40,0 ,44,15152,3757572,56,0 ,27,7418,87560,22,8 ,3,28,611848,10,3 ,27,1562,87568,26,8 ,3,28,611856,7,2 ,27,7672,87576,22,8 ,3,28,611864,5,2 ,27,7673,87584,22,8 ,3,28,611872,10,4 ,27,7952,87592,22,8 ,3,28,611880,7,2 ,27,7951,87600,22,8 ,3,28,611888,5,2 ,27,41,87608,23,8 ,3,28,611896,9,3 ,27,41,87616,23,8 ,3,28,611904,6,3 ,20,1000,87617,88,0 ,20,21805,16864834,172,0 ,17,923,10049092,16,0 ,44,15152,2184772,88,0 ,44,15152,1136196,64,0 ,27,7322,87624,22,8 ,3,28,611912,10,4 ,27,7323,87632,22,8 ,3,28,611920,7,2 ,27,7325,87640,22,8 ,3,28,611928,5,2 ,27,7326,87648,22,8 ,3,28,611936,10,3 ,20,24510,23680610,100,0 ,20,25346,25777762,760,0 ,20,18655,8476258,12,0 ,27,7327,87656,22,8 ,3,28,611944,8,3 ,27,7680,87664,22,8 ,3,28,611952,7,2 ,27,7328,87672,24,8 ,3,28,611960,5,2 ,27,7329,87680,24,8 ,3,28,611968,11,4 ,20,23915,22107778,760,0 ,17,923,9000580,48,0 ,17,923,7952004,32,0 ,17,923,6903428,40,0 ,17,923,6379140,32,0 ,44,15152,2709124,24,0 ,44,15152,611972,96,0 ,17,923,8476292,24,0 ,27,7681,87688,24,8 ,3,28,611976,11,4 ,27,7684,87696,20,8 ,3,28,611984,8,3 ,27,7683,87704,24,8 ,3,28,611992,24,11 ,27,7685,87712,23,8 ,3,28,612000,4,1 ,20,21217,15816354,192,0 ,27,7685,87720,24,8 ,3,28,612008,9,4 ,27,7686,87728,23,8 ,3,28,612016,10,4 ,27,7686,87736,24,8 ,3,28,612024,4,1 ,27,7688,87744,21,8 ,3,28,612032,11,4 ,20,18656,8476354,12,0 ,20,24706,24204994,108,0 ,17,923,10049220,16,0 ,27,7687,87752,24,8 ,3,28,612040,11,4 ,27,7689,87760,21,8 ,3,28,612048,8,3 ,27,2182,87768,24,8 ,3,28,612056,8,3 ,27,7690,87776,23,8 ,3,28,612064,8,3 ,27,7690,87784,24,8 ,3,28,612072,7,2 ,27,7691,87792,21,8 ,3,28,612080,5,2 ,27,7692,87800,23,8 ,3,28,612088,10,3 ,27,7692,87808,24,8 ,3,28,612096,8,3 ,20,23303,20535042,24,0 ,44,15152,3233540,80,0 ,27,7693,87816,21,8 ,3,28,612104,14,5 ,27,7695,87824,21,8 ,3,28,612112,7,2 ,27,7694,87832,24,8 ,3,28,612120,5,2 ,27,7696,87840,23,8 ,3,28,612128,8,3 ,20,18657,8476450,1632,0 ,27,7696,87848,24,8 ,3,28,612136,8,3 ,27,7698,87856,21,8 ,3,28,612144,6,2 ,27,7697,87864,24,8 ,3,28,612152,9,4 ,27,7699,87872,23,8 ,3,28,612160,8,3 ,17,923,87875,16,0 ,17,923,10049348,16,0 ,17,923,7427908,40,0 ,44,15152,2709316,24,0 ,45,15153,5330756,16,0 ,17,923,8476484,56,0 ,27,7699,87880,24,8 ,3,28,612168,14,5 ,27,7700,87888,21,8 ,3,28,612176,4,1 ,27,7702,87896,21,8 ,3,28,612184,14,5 ,27,7701,87904,24,8 ,3,28,612192,4,1 ,20,22688,19486562,196,0 ,20,25906,27350882,92,0 ,20,18461,7952226,88,0 ,27,7703,87912,21,8 ,3,28,612200,14,5 ,27,7697,87920,23,8 ,3,28,612208,4,1 ,27,7705,87928,21,8 ,3,28,612216,14,5 ,27,7704,87936,24,8 ,3,28,612224,4,1 ,45,15153,4806532,16,0 ,17,923,7952260,24,0 ,17,923,6379396,32,0 ,27,7707,87944,20,8 ,3,28,612232,14,5 ,27,7706,87952,24,8 ,3,28,612240,4,1 ,27,7708,87960,24,8 ,3,28,612248,14,5 ,27,7706,87968,23,8 ,3,28,612256,4,1 ,20,23552,21059490,36,0 ,27,7687,87976,23,8 ,3,28,612264,9,3 ,27,7701,87984,23,8 ,3,28,612272,8,3 ,27,7683,87992,23,8 ,3,28,612280,13,4 ,27,7709,88000,21,8 ,3,28,612288,11,4 ,20,23304,20535234,24,0 ,17,923,88003,24,0 ,17,923,10049476,16,0 ,17,923,6903748,32,0 ,44,15152,3758020,328,0 ,45,15153,5330884,16,0 ,27,7704,88008,23,8 ,3,28,612296,8,3 ,27,2312,88016,22,8 ,3,28,612304,6,2 ,27,7694,88024,23,8 ,3,28,612312,12,5 ,27,7711,88032,22,8 ,3,28,612320,6,2 ,20,22254,18438114,72,0 ,20,15344,612322,512,0 ,20,20237,12670946,12,0 ,27,7712,88040,23,8 ,3,28,612328,10,4 ,27,7719,88048,22,8 ,3,28,612336,8,3 ,27,7718,88056,23,8 ,3,28,612344,6,2 ,27,7716,88064,23,8 ,3,28,612352,8,3 ,20,17337,5330946,176,0 ,17,923,9000964,48,0 ,44,15152,2709508,16,0 ,45,15153,4806660,16,0 ,27,7720,88072,22,8 ,3,28,612360,7,2 ,27,8005,88080,24,8 ,3,28,612368,5,2 ,27,7721,88088,24,8 ,3,28,612376,7,2 ,27,7722,88096,24,8 ,3,28,612384,5,2 ,27,7723,88104,24,8 ,3,28,612392,7,2 ,27,41,88112,23,8 ,3,28,612400,5,2 ,27,7729,88120,24,8 ,3,28,612408,6,2 ,27,7731,88128,21,8 ,3,28,612416,6,2 ,20,20238,12671042,1264,0 ,17,923,10049604,16,0 ,17,923,7952452,64,0 ,44,15152,1136708,40,0 ,45,15153,5331012,24,0 ,27,7730,88136,24,8 ,3,28,612424,11,4 ,27,7732,88144,22,8 ,3,28,612432,8,3 ,27,7732,88152,24,8 ,3,28,612440,8,3 ,27,7902,88160,21,8 ,3,28,612448,7,2 ,27,7901,88168,24,8 ,3,28,612456,5,2 ,27,7736,88176,20,8 ,3,28,612464,10,3 ,27,7735,88184,26,8 ,3,28,612472,8,3 ,27,7733,88192,24,8 ,3,28,612480,8,3 ,20,23305,20535426,376,0 ,20,16098,2185346,176,0 ,17,923,88195,24,0 ,45,15153,4806788,24,0 ,17,923,7428228,40,0 ,17,923,6379652,48,0 ,44,15152,2709636,80,0 ,45,15153,4282500,24,0 ,27,7734,88200,23,8 ,3,28,612488,10,4 ,27,7735,88208,25,8 ,3,28,612496,16,7 ,27,7737,88216,22,8 ,3,28,612504,10,4 ,27,7621,88224,24,8 ,3,28,612512,8,3 ,20,26277,28399778,592,0 ,27,4768,88232,24,8 ,3,28,612520,7,2 ,27,7740,88240,21,8 ,3,28,612528,5,2 ,27,7739,88248,24,8 ,3,28,612536,10,3 ,27,7744,88256,21,8 ,3,28,612544,8,3 ,20,23553,21059778,36,0 ,20,19112,9525442,1728,0 ,17,923,10049732,16,0 ,17,923,6904004,32,0 ,27,7743,88264,24,8 ,3,28,612552,8,3 ,27,7741,88272,24,8 ,3,28,612560,8,3 ,27,7742,88280,22,8 ,3,28,612568,7,2 ,27,7746,88288,21,8 ,3,28,612576,5,2 ,27,7745,88296,24,8 ,3,28,612584,10,3 ,27,5679,88304,21,8 ,3,28,612592,8,3 ,27,5635,88312,24,8 ,3,28,612600,6,2 ,27,5680,88320,21,8 ,3,28,612608,12,5 ,20,1001,88321,212,0 ,20,23702,21584130,224,0 ,17,923,8476932,24,0 ,44,15152,2185476,32,0 ,45,15153,5331204,40,0 ,27,5638,88328,24,8 ,3,28,612616,8,3 ,27,7739,88336,23,8 ,3,28,612624,7,2 ,27,7743,88344,23,8 ,3,28,612632,5,2 ,27,7745,88352,23,8 ,3,28,612640,10,3 ,27,5635,88360,22,8 ,3,28,612648,8,3 ,27,5638,88368,23,8 ,3,28,612656,6,2 ,27,7750,88376,24,8 ,3,28,612664,8,3 ,27,7751,88384,24,8 ,3,28,612672,7,2 ,17,923,88387,16,0 ,17,923,10049860,16,0 ,45,15153,4282692,40,0 ,45,15153,4806980,96,0 ,27,7752,88392,23,8 ,3,28,612680,5,2 ,27,7752,88400,24,8 ,3,28,612688,11,4 ,27,4748,88408,22,8 ,3,28,612696,16,5 ,27,7754,88416,20,8 ,3,28,612704,14,5 ,27,7753,88424,24,8 ,3,28,612712,10,3 ,27,4663,88432,22,8 ,3,28,612720,8,3 ,27,2182,88440,24,8 ,3,28,612728,4,1 ,27,7755,88448,24,8 ,3,28,612736,9,4 ,20,24511,23681410,764,0 ,17,923,9525636,40,0 ,44,15152,612740,40,0 ,44,15152,1137028,120,0 ,44,15152,3234180,144,0 ,17,923,9001348,48,0 ,27,7756,88456,24,8 ,3,28,612744,14,5 ,27,7757,88464,22,8 ,3,28,612752,7,2 ,27,7758,88472,24,8 ,3,28,612760,7,2 ,27,7896,88480,24,8 ,3,28,612768,7,2 ,27,7895,88488,24,8 ,3,28,612776,5,2 ,27,295,88496,23,8 ,3,28,612784,10,3 ,27,812,88504,23,8 ,3,28,612792,7,2 ,27,41,88512,23,8 ,3,28,612800,5,2 ,17,923,88515,32,0 ,17,923,10049988,16,0 ,17,923,7428548,72,0 ,17,923,6904260,24,0 ,17,923,8477124,24,0 ,27,7762,88520,22,8 ,3,28,612808,4,1 ,27,7763,88528,24,8 ,3,28,612816,19,6 ,27,7764,88536,24,8 ,3,28,612824,9,3 ,27,4461,88544,21,8 ,3,28,612832,25,8 ,20,23554,21060066,28,0 ,27,4460,88552,26,8 ,3,28,612840,8,3 ,27,4456,88560,25,8 ,3,28,612848,12,5 ,27,4456,88568,26,8 ,3,28,612856,4,1 ,27,7765,88576,22,8 ,3,28,612864,19,6 ,20,18007,6904322,592,0 ,44,15152,2185732,24,0 ,17,923,6380036,32,0 ,27,7766,88584,24,8 ,3,28,612872,7,2 ,27,7483,88592,22,8 ,3,28,612880,10,3 ,27,7768,88600,20,8 ,3,28,612888,7,2 ,27,7767,88608,24,8 ,3,28,612896,5,2 ,20,22255,18438690,84,0 ,20,24707,24205858,76,0 ,20,18195,7428642,12,0 ,20,18462,7952930,132,0 ,20,19956,11098658,740,0 ,27,7769,88616,23,8 ,3,28,612904,7,2 ,27,4000,88624,22,8 ,3,28,612912,5,2 ,27,4463,88632,22,8 ,3,28,612920,4,1 ,27,4002,88640,22,8 ,3,28,612928,13,4 ,20,25907,27351618,92,0 ,17,923,10050116,16,0 ,17,923,7952964,32,0 ,45,15153,5331524,24,0 ,27,7770,88648,24,8 ,3,28,612936,7,2 ,27,4288,88656,22,8 ,3,28,612944,7,2 ,27,7771,88664,23,8 ,3,28,612952,5,2 ,27,4292,88672,24,8 ,3,28,612960,10,4 ,20,24892,24730210,604,0 ,27,7772,88680,22,8 ,3,28,612968,12,5 ,27,4294,88688,22,8 ,3,28,612976,7,2 ,27,4020,88696,22,8 ,3,28,612984,5,2 ,27,4466,88704,21,8 ,3,28,612992,7,2 ,20,21527,16341634,52,0 ,20,18196,7428738,52,0 ,17,923,8477316,32,0 ,17,923,6904452,40,0 ,45,15153,4283012,24,0 ,27,7773,88712,22,8 ,3,28,613000,7,2 ,27,7774,88720,22,8 ,3,28,613008,5,2 ,27,4298,88728,22,8 ,3,28,613016,10,3 ,27,4023,88736,22,8 ,3,28,613024,5,2 ,20,25693,26827426,108,0 ,27,7775,88744,24,8 ,3,28,613032,5,2 ,27,7776,88752,24,8 ,3,28,613040,7,2 ,27,7777,88760,22,8 ,3,28,613048,5,2 ,27,4476,88768,21,8 ,3,28,613056,7,2 ,20,23555,21060290,40,0 ,20,16673,3758786,204,0 ,17,923,88771,24,0 ,17,923,10050244,16,0 ,44,15152,2185924,32,0 ,44,15152,613060,32,0 ,17,923,9525956,24,0 ,27,4468,88776,26,8 ,3,28,613064,5,2 ,27,7778,88784,22,8 ,3,28,613072,6,2 ,27,7779,88792,24,8 ,3,28,613080,7,2 ,27,7780,88800,22,8 ,3,28,613088,5,2 ,27,7781,88808,22,8 ,3,28,613096,18,8 ,27,7782,88816,24,8 ,3,28,613104,7,2 ,27,4001,88824,22,8 ,3,28,613112,5,2 ,27,7783,88832,22,8 ,3,28,613120,8,3 ,20,17738,6380290,284,0 ,17,923,9001732,40,0 ,17,923,6380292,32,0 ,44,15152,2710276,24,0 ,45,15153,5331716,16,0 ,27,7784,88840,24,8 ,3,28,613128,10,3 ,27,7785,88848,24,8 ,3,28,613136,8,3 ,27,7767,88856,23,8 ,3,28,613144,8,3 ,27,4460,88864,25,8 ,3,28,613152,4,1 ,27,6597,88872,22,8 ,3,28,613160,10,3 ,27,7786,88880,24,8 ,3,28,613168,9,3 ,27,4047,88888,22,8 ,3,28,613176,4,1 ,27,4468,88896,25,8 ,3,28,613184,13,4 ,17,923,10050372,16,0 ,17,923,7953220,40,0 ,45,15153,4283204,96,0 ,27,7787,88904,22,8 ,3,28,613192,11,4 ,27,4470,88912,24,8 ,3,28,613200,12,4 ,27,6707,88920,22,8 ,3,28,613208,11,4 ,27,4474,88928,21,8 ,3,28,613216,7,2 ,27,4473,88936,26,8 ,3,28,613224,5,2 ,27,4467,88944,26,8 ,3,28,613232,8,3 ,27,4478,88952,24,8 ,3,28,613240,8,3 ,27,4473,88960,25,8 ,3,28,613248,11,4 ,17,923,88963,16,0 ,17,923,9526148,24,0 ,44,15152,1661828,2072,0 ,45,15153,5331844,16,0 ,17,923,8477572,40,0 ,27,4320,88968,22,8 ,3,28,613256,8,3 ,27,4733,88976,22,8 ,3,28,613264,7,2 ,27,4606,88984,24,8 ,3,28,613272,5,2 ,27,4611,88992,24,8 ,3,28,613280,10,3 ,20,21806,16866210,100,0 ,27,4768,89000,24,8 ,3,28,613288,8,3 ,27,4482,89008,26,8 ,3,28,613296,14,6 ,27,7791,89016,24,8 ,3,28,613304,7,2 ,27,7792,89024,24,8 ,3,28,613312,5,2 ,17,923,10050500,16,0 ,17,923,6904772,32,0 ,44,15152,2710468,24,0 ,44,15152,2186180,80,0 ,44,15152,613316,24,0 ,27,7793,89032,24,8 ,3,28,613320,10,3 ,27,7794,89040,24,8 ,3,28,613328,8,3 ,27,2182,89048,24,8 ,3,28,613336,14,6 ,27,7795,89056,24,8 ,3,28,613344,6,2 ,27,7796,89064,24,8 ,3,28,613352,11,4 ,27,7797,89072,24,8 ,3,28,613360,8,3 ,27,7798,89080,23,8 ,3,28,613368,8,3 ,27,7798,89088,24,8 ,3,28,613376,8,3 ,20,23556,21060610,68,0 ,17,923,89091,16,0 ,45,15153,5331972,24,0 ,17,923,7429124,24,0 ,17,923,6380548,48,0 ,27,7799,89096,24,8 ,3,28,613384,8,3 ,27,1040,89104,24,8 ,3,28,613392,7,2 ,27,7800,89112,24,8 ,3,28,613400,5,2 ,27,7801,89120,24,8 ,3,28,613408,10,3 ,20,21528,16342050,52,0 ,20,18197,7429154,12,0 ,27,7812,89128,24,8 ,3,28,613416,8,3 ,27,4294,89136,25,8 ,3,28,613424,8,3 ,27,5914,89144,26,8 ,3,28,613432,10,4 ,27,2274,89152,24,8 ,3,28,613440,7,2 ,17,923,10050628,16,0 ,45,15153,4807748,24,0 ,17,923,9002052,24,0 ,17,923,9526340,32,0 ,27,7805,89160,24,8 ,3,28,613448,5,2 ,27,295,89168,23,8 ,3,28,613456,10,3 ,27,812,89176,23,8 ,3,28,613464,8,3 ,27,4294,89184,25,8 ,3,28,613472,7,2 ,27,5908,89192,24,8 ,3,28,613480,5,2 ,27,5909,89200,24,8 ,3,28,613488,12,5 ,27,5914,89208,26,8 ,3,28,613496,13,4 ,27,2274,89216,24,8 ,3,28,613504,5,2 ,20,18198,7429250,356,0 ,20,24708,24206466,76,0 ,17,923,89219,16,0 ,44,15152,613508,208,0 ,17,923,7953540,32,0 ,44,15152,2710660,24,0 ,27,4389,89224,25,8 ,3,28,613512,5,2 ,27,7805,89232,24,8 ,3,28,613520,5,2 ,27,7813,89240,24,8 ,3,28,613528,7,2 ,27,7814,89248,24,8 ,3,28,613536,5,2 ,20,21218,15817890,12,0 ,27,4748,89256,22,8 ,3,28,613544,11,4 ,27,4663,89264,22,8 ,3,28,613552,10,3 ,27,7815,89272,20,8 ,3,28,613560,11,4 ,27,7816,89280,24,8 ,3,28,613568,5,2 ,20,22256,18439362,688,0 ,17,923,10050756,16,0 ,17,923,7429316,40,0 ,17,923,6905028,40,0 ,45,15153,5332164,24,0 ,17,923,8477892,32,0 ,27,7817,89288,24,8 ,3,28,613576,7,2 ,27,2312,89296,22,8 ,3,28,613584,5,2 ,27,5225,89304,22,8 ,3,28,613592,7,2 ,27,7818,89312,23,8 ,3,28,613600,4,1 ,27,7815,89320,20,8 ,3,28,613608,9,4 ,27,7798,89328,24,8 ,3,28,613616,10,4 ,27,2182,89336,24,8 ,3,28,613624,4,1 ,27,5225,89344,22,8 ,3,28,613632,7,2 ,20,21219,15817986,12,0 ,17,923,89347,24,0 ,17,923,9002244,64,0 ,45,15153,4807940,40,0 ,27,7798,89352,23,8 ,3,28,613640,7,2 ,27,2312,89360,22,8 ,3,28,613648,5,2 ,27,4748,89368,22,8 ,3,28,613656,7,2 ,27,4663,89376,22,8 ,3,28,613664,5,2 ,20,25908,27352354,92,0 ,27,2312,89384,22,8 ,3,28,613672,10,4 ,27,4758,89392,22,8 ,3,28,613680,10,3 ,27,4759,89400,24,8 ,3,28,613688,8,3 ,27,4768,89408,24,8 ,3,28,613696,7,2 ,17,923,10050884,16,0 ,44,15152,2710852,96,0 ,44,15152,1137988,136,0 ,17,923,9526596,32,0 ,27,4482,89416,26,8 ,3,28,613704,5,2 ,27,1040,89424,26,8 ,3,28,613712,7,2 ,27,4768,89432,24,8 ,3,28,613720,5,2 ,27,295,89440,23,8 ,3,28,613728,7,2 ,20,21220,15818082,12,0 ,27,812,89448,23,8 ,3,28,613736,5,2 ,27,7826,89456,22,8 ,3,28,613744,7,2 ,27,3124,89464,22,8 ,3,28,613752,5,2 ,27,1240,89472,24,8 ,3,28,613760,10,3 ,20,22689,19488130,268,0 ,20,17338,5332354,492,0 ,45,15153,5332356,48,0 ,17,923,7953796,24,0 ,17,923,6380932,32,0 ,27,7827,89480,24,8 ,3,28,613768,8,3 ,27,4663,89488,22,8 ,3,28,613776,11,4 ,27,2312,89496,22,8 ,3,28,613784,11,4 ,27,4758,89504,22,8 ,3,28,613792,10,3 ,27,4759,89512,24,8 ,3,28,613800,8,3 ,27,1973,89520,24,8 ,3,28,613808,7,2 ,27,2182,89528,24,8 ,3,28,613816,5,2 ,27,5225,89536,22,8 ,3,28,613824,6,2 ,20,21529,16342466,12,0 ,20,21221,15818178,716,0 ,17,923,89539,16,0 ,17,923,10051012,16,0 ,44,15152,89540,16,0 ,17,923,8478148,32,0 ,27,2312,89544,22,8 ,3,28,613832,7,2 ,27,4748,89552,22,8 ,3,28,613840,5,2 ,27,812,89560,23,8 ,3,28,613848,7,2 ,27,295,89568,23,8 ,3,28,613856,10,3 ,20,17121,4808162,764,0 ,27,4636,89576,22,8 ,3,28,613864,8,3 ,27,4635,89584,22,8 ,3,28,613872,13,4 ,27,4637,89592,22,8 ,3,28,613880,11,4 ,27,7833,89600,22,8 ,3,28,613888,10,3 ,20,16099,2186754,112,0 ,20,25694,26828290,44,0 ,44,15152,3235332,64,0 ,17,923,7429636,40,0 ,17,923,6905348,40,0 ,27,4627,89608,22,8 ,3,28,613896,8,3 ,27,7770,89616,22,8 ,3,28,613904,6,2 ,27,4628,89624,22,8 ,3,28,613912,7,2 ,27,7834,89632,22,8 ,3,28,613920,7,2 ,20,23557,21061154,36,0 ,20,21530,16342562,12,0 ,27,4656,89640,22,8 ,3,28,613928,7,2 ,27,4298,89648,22,8 ,3,28,613936,7,2 ,27,4631,89656,24,8 ,3,28,613944,7,2 ,27,4632,89664,24,8 ,3,28,613952,7,2 ,20,18463,7953986,136,0 ,17,923,89667,16,0 ,17,923,10051140,16,0 ,17,923,7953988,56,0 ,44,15152,2186820,24,0 ,44,15152,89668,24,0 ,45,15153,4283972,16,0 ,45,15153,4808260,24,0 ,17,923,9526852,32,0 ,27,7835,89672,24,8 ,3,28,613960,4,1 ,27,4663,89680,22,8 ,3,28,613968,4,1 ,27,2312,89688,22,8 ,3,28,613976,7,2 ,27,4759,89696,24,8 ,3,28,613984,10,3 ,27,6420,89704,24,8 ,3,28,613992,7,2 ,27,4294,89712,22,8 ,3,28,614000,4,1 ,27,7838,89720,24,8 ,3,28,614008,7,2 ,27,7839,89728,25,8 ,3,28,614016,11,4 ,20,21531,16342658,204,0 ,17,923,6381188,40,0 ,27,41,89736,23,8 ,3,28,614024,8,3 ,27,41,89744,23,8 ,3,28,614032,13,4 ,27,295,89752,23,8 ,3,28,614040,11,4 ,27,812,89760,23,8 ,3,28,614048,11,4 ,20,19691,10575522,116,0 ,27,4389,89768,27,8 ,3,28,614056,13,4 ,27,7753,89776,23,8 ,3,28,614064,9,4 ,27,2312,89784,22,8 ,3,28,614072,9,4 ,27,5225,89792,22,8 ,3,28,614080,10,3 ,20,21807,16867010,876,0 ,17,923,89795,24,0 ,17,923,10051268,16,0 ,45,15153,4284100,72,0 ,17,923,8478404,32,0 ,27,7897,89800,24,8 ,3,28,614088,8,3 ,27,7898,89808,20,8 ,3,28,614096,7,2 ,27,7899,89816,23,8 ,3,28,614104,7,2 ,27,7904,89824,21,8 ,3,28,614112,20,7 ,20,24709,24207074,108,0 ,27,7903,89832,24,8 ,3,28,614120,7,2 ,27,7730,89840,23,8 ,3,28,614128,5,2 ,27,7905,89848,21,8 ,3,28,614136,10,3 ,27,7903,89856,22,8 ,3,28,614144,8,3 ,17,923,9002756,40,0 ,44,15152,2187012,24,0 ,44,15152,89860,16,0 ,45,15153,4808452,16,0 ,45,15153,5332740,16,0 ,27,5542,89864,23,8 ,3,28,614152,13,4 ,27,5542,89872,24,8 ,3,28,614160,11,4 ,27,7906,89880,24,8 ,3,28,614168,11,4 ,27,5543,89888,21,8 ,3,28,614176,8,3 ,27,7908,89896,21,8 ,3,28,614184,2165,1024 ,27,7907,89904,24,8 ,3,28,614192,4027,2051 ,27,7901,89912,23,8 ,3,28,614200,4,1 ,27,5680,89920,21,8 ,3,28,614208,9,4 ,20,23558,21061442,140,0 ,17,923,10051396,16,0 ,17,923,7429956,32,0 ,17,923,6905668,56,0 ,17,923,9527108,40,0 ,27,5638,89928,24,8 ,3,28,614216,10,4 ,27,7909,89936,26,8 ,3,28,614224,4,1 ,27,7911,89944,21,8 ,3,28,614232,4,1 ,27,7910,89952,24,8 ,3,28,614240,9,4 ,20,20154,11624290,796,0 ,20,25695,26828642,216,0 ,27,7907,89960,23,8 ,3,28,614248,10,4 ,27,5638,89968,23,8 ,3,28,614256,4,1 ,27,7910,89976,23,8 ,3,28,614264,4,1 ,27,7914,89984,20,8 ,3,28,614272,9,4 ,20,22021,17915778,12,0 ,17,923,89987,16,0 ,45,15153,5332868,24,0 ,44,15152,89988,24,0 ,45,15153,4808580,16,0 ,27,7913,89992,24,8 ,3,28,614280,19,9 ,27,7693,90000,21,8 ,3,28,614288,4,1 ,27,7692,90008,24,8 ,3,28,614296,7,2 ,27,7700,90016,21,8 ,3,28,614304,4,1 ,20,1002,90017,104,0 ,27,7690,90024,24,8 ,3,28,614312,4,1 ,27,7917,90032,20,8 ,3,28,614320,4,1 ,27,7916,90040,24,8 ,3,28,614328,4,1 ,27,7915,90048,24,8 ,3,28,614336,4,1 ,17,923,10051524,16,0 ,17,923,6381508,40,0 ,44,15152,2187204,16,0 ,17,923,8478660,40,0 ,27,7918,90056,24,8 ,3,28,614344,11,4 ,27,2182,90064,24,8 ,3,28,614352,17,8 ,27,7913,90072,23,8 ,3,28,614360,4,1 ,27,7692,90080,23,8 ,3,28,614368,10,3 ,20,22022,17915874,424,0 ,27,7690,90088,23,8 ,3,28,614376,7,2 ,27,2312,90096,22,8 ,3,28,614384,4,1 ,27,5225,90104,22,8 ,3,28,614392,16,5 ,27,7916,90112,23,8 ,3,28,614400,4,1 ,20,23703,21585922,140,0 ,20,25909,27353090,304,0 ,17,923,90115,16,0 ,45,15153,4808708,16,0 ,17,923,7954436,48,0 ,44,15152,3235844,56,0 ,27,4748,90120,22,8 ,3,28,614408,4,1 ,27,7919,90128,24,8 ,3,28,614416,9,4 ,27,4768,90136,24,8 ,3,28,614424,10,4 ,27,4482,90144,26,8 ,3,28,614432,4,1 ,27,5483,90152,26,8 ,3,28,614440,4,1 ,27,7904,90160,26,8 ,3,28,614448,9,4 ,27,163,90168,22,8 ,3,28,614456,34,11 ,27,7731,90176,26,8 ,3,28,614464,41,16 ,17,923,10051652,16,0 ,17,923,7430212,40,0 ,44,15152,2711620,48,0 ,44,15152,2187332,16,0 ,44,15152,90180,48,0 ,45,15153,5333060,16,0 ,17,923,9003076,40,0 ,27,163,90184,22,8 ,3,28,614472,1507,512 ,27,7911,90192,26,8 ,3,28,614480,4,1 ,27,163,90200,22,8 ,3,28,614488,11,4 ,27,7902,90208,26,8 ,3,28,614496,24,12 ,27,7908,90216,26,8 ,3,28,614504,4,1 ,27,163,90224,22,8 ,3,28,614512,4,1 ,27,7746,90232,26,8 ,3,28,614520,4,1 ,27,163,90240,22,8 ,3,28,614528,4,1 ,17,923,90243,24,0 ,17,923,9527428,32,0 ,45,15153,4808836,24,0 ,27,7740,90248,26,8 ,3,28,614536,4,1 ,27,163,90256,22,8 ,3,28,614544,4,1 ,27,7905,90264,26,8 ,3,28,614552,9,4 ,27,7744,90272,26,8 ,3,28,614560,8,3 ,20,20514,13197474,160,0 ,27,163,90280,22,8 ,3,28,614568,4,1 ,27,5679,90288,26,8 ,3,28,614576,11,4 ,27,5680,90296,26,8 ,3,28,614584,299,168 ,27,5543,90304,26,8 ,3,28,614592,4,1 ,20,26396,28926146,12,0 ,17,923,10051780,16,0 ,44,15152,2187460,24,0 ,45,15153,5333188,16,0 ,27,5514,90312,22,8 ,3,28,614600,4,1 ,27,7922,90320,23,8 ,3,28,614608,4,1 ,27,4768,90328,24,8 ,3,28,614616,4,1 ,27,4631,90336,26,8 ,3,28,614624,9,4 ,20,20730,13721826,12,0 ,27,41,90344,23,8 ,3,28,614632,13,5 ,27,3276,90352,21,8 ,3,28,614640,4,1 ,27,8680,90360,24,8 ,3,28,614648,9,4 ,27,2312,90368,22,8 ,3,28,614656,12,5 ,17,923,8478980,32,0 ,17,923,6906116,40,0 ,17,923,6381828,24,0 ,45,15153,4284676,24,0 ,27,7324,90376,22,8 ,3,28,614664,4,1 ,27,3277,90384,22,8 ,3,28,614672,11,4 ,27,8680,90392,23,8 ,3,28,614680,10,4 ,27,4627,90400,22,8 ,3,28,614688,4,1 ,20,16674,3760418,88,0 ,20,26397,28926242,596,0 ,27,7929,90408,25,8 ,3,28,614696,13,4 ,27,4663,90416,22,8 ,3,28,614704,43,23 ,27,2312,90424,22,8 ,3,28,614712,4,1 ,27,4759,90432,24,8 ,3,28,614720,19,8 ,20,20731,13721922,120,0 ,17,923,90435,40,0 ,17,923,10051908,16,0 ,45,15153,4809028,24,0 ,45,15153,5333316,24,0 ,27,4627,90440,22,8 ,3,28,614728,60,32 ,27,7934,90448,22,8 ,3,28,614736,7,2 ,27,7938,90456,24,8 ,3,28,614744,4,1 ,27,2182,90464,24,8 ,3,28,614752,4,1 ,27,4763,90472,26,8 ,3,28,614760,47,16 ,27,4482,90480,26,8 ,3,28,614768,165,91 ,27,7939,90488,22,8 ,3,28,614776,4,1 ,27,7940,90496,22,8 ,3,28,614784,7,2 ,20,16949,4284802,2988,0 ,20,16100,2187650,96,0 ,17,923,9527684,32,0 ,17,923,7954820,16,0 ,17,923,7430532,32,0 ,44,15152,2187652,24,0 ,44,15152,1139076,56,0 ,17,923,9003396,40,0 ,27,7945,90504,26,8 ,3,28,614792,8,3 ,27,4631,90512,26,8 ,3,28,614800,4,1 ,27,7947,90520,20,8 ,3,28,614808,25,8 ,27,7946,90528,26,8 ,3,28,614816,57,31 ,27,7946,90536,25,8 ,3,28,614824,4,1 ,27,7948,90544,22,8 ,3,28,614832,4,1 ,27,2312,90552,22,8 ,3,28,614840,4,1 ,27,1562,90560,24,8 ,3,28,614848,4,1 ,17,923,10052036,16,0 ,17,923,6382020,24,0 ,44,15152,2712004,32,0 ,44,15152,90564,136,0 ,44,15152,3236292,64,0 ,45,15153,4284868,16,0 ,27,7949,90568,22,8 ,3,28,614856,4,1 ,27,7953,90576,24,8 ,3,28,614864,4,1 ,27,7954,90584,23,8 ,3,28,614872,4,1 ,27,7954,90592,24,8 ,3,28,614880,4,1 ,27,7955,90600,23,8 ,3,28,614888,4,1 ,27,7955,90608,24,8 ,3,28,614896,4,1 ,27,7956,90616,22,8 ,3,28,614904,4,1 ,27,7960,90624,20,8 ,3,28,614912,4,1 ,17,923,8479236,24,0 ,17,923,7954948,24,0 ,44,15152,3760644,40,0 ,45,15153,4809220,32,0 ,45,15153,5333508,40,0 ,27,7959,90632,24,8 ,3,28,614920,4,1 ,27,7957,90640,24,8 ,3,28,614928,4,1 ,27,7958,90648,21,8 ,3,28,614936,4,1 ,27,7962,90656,20,8 ,3,28,614944,4,1 ,27,7961,90664,24,8 ,3,28,614952,25,8 ,27,7964,90672,20,8 ,3,28,614960,50,27 ,27,7963,90680,24,8 ,3,28,614968,4,1 ,27,7965,90688,24,8 ,3,28,614976,7,2 ,20,19692,10576450,192,0 ,20,24710,24207938,224,0 ,17,923,10052164,16,0 ,17,923,6906436,40,0 ,44,15152,2187844,8,0 ,45,15153,4284996,24,0 ,27,7961,90696,23,8 ,3,28,614984,4,1 ,27,7966,90704,22,8 ,3,28,614992,39,16 ,27,7967,90712,22,8 ,3,28,615000,80,44 ,27,7737,90720,24,8 ,3,28,615008,4,1 ,27,7968,90728,22,8 ,3,28,615016,47,16 ,27,7970,90736,20,8 ,3,28,615024,216,121 ,27,7969,90744,24,8 ,3,28,615032,4,1 ,27,7963,90752,23,8 ,3,28,615040,193,64 ,20,18464,7955074,108,0 ,17,923,90755,16,0 ,17,923,9527940,24,0 ,17,923,7430788,40,0 ,17,923,6382212,24,0 ,44,15152,2187908,64,0 ,27,7971,90760,24,8 ,3,28,615048,308,172 ,27,7972,90768,22,8 ,3,28,615056,4,1 ,27,7973,90776,24,8 ,3,28,615064,4,1 ,27,4748,90784,22,8 ,3,28,615072,4,1 ,27,7974,90792,22,8 ,3,28,615080,7,2 ,27,4663,90800,22,8 ,3,28,615088,4,1 ,27,7976,90808,21,8 ,3,28,615096,4,1 ,27,7975,90816,24,8 ,3,28,615104,49,16 ,17,923,10052292,16,0 ,17,923,7955140,24,0 ,44,15152,2712260,24,0 ,17,923,8479428,40,0 ,17,923,9003716,40,0 ,27,7977,90824,24,8 ,3,28,615112,283,156 ,27,7978,90832,24,8 ,3,28,615120,4,1 ,27,7979,90840,24,8 ,3,28,615128,7,2 ,27,7980,90848,23,8 ,3,28,615136,10,3 ,20,1003,90849,100,0 ,27,7980,90856,24,8 ,3,28,615144,8,3 ,27,2312,90864,22,8 ,3,28,615152,4,1 ,27,7680,90872,22,8 ,3,28,615160,7,2 ,27,7981,90880,22,8 ,3,28,615168,10,3 ,17,923,90883,24,0 ,45,15153,4809476,24,0 ,44,15152,615172,24,0 ,45,15153,4285188,40,0 ,27,5225,90888,22,8 ,3,28,615176,4456,2051 ,27,7983,90896,20,8 ,3,28,615184,13,4 ,27,7982,90904,24,8 ,3,28,615192,11,4 ,27,7985,90912,24,8 ,3,28,615200,7,2 ,20,17517,5858082,3080,0 ,27,7729,90920,24,8 ,3,28,615208,5,2 ,27,7986,90928,24,8 ,3,28,615216,18498,8195 ,27,7987,90936,24,8 ,3,28,615224,10,3 ,27,7975,90944,23,8 ,3,28,615232,8,3 ,17,923,10052420,16,0 ,17,923,6382404,32,0 ,44,15152,1139524,32,0 ,44,15152,3760964,136,0 ,45,15153,5333828,16,0 ,17,923,9528132,32,0 ,27,2182,90952,24,8 ,3,28,615240,16,5 ,27,7988,90960,24,8 ,3,28,615248,14,5 ,27,7989,90968,22,8 ,3,28,615256,10,3 ,27,7421,90976,24,8 ,3,28,615264,8,3 ,20,22535,18965346,564,0 ,27,7990,90984,21,8 ,3,28,615272,22,7 ,27,7991,90992,20,8 ,3,28,615280,20,7 ,27,7992,91000,22,8 ,3,28,615288,10,3 ,27,7993,91008,22,8 ,3,28,615296,8,3 ,44,15152,2712452,32,0 ,17,923,7955332,24,0 ,17,923,6906756,32,0 ,27,7994,91016,24,8 ,3,28,615304,10,3 ,27,7995,91024,24,8 ,3,28,615312,8,3 ,27,7996,91032,24,8 ,3,28,615320,10,3 ,27,4377,91040,22,8 ,3,28,615328,8,3 ,20,23559,21062562,64,0 ,27,7997,91048,24,8 ,3,28,615336,13,4 ,27,7998,91056,22,8 ,3,28,615344,11,4 ,27,7959,91064,23,8 ,3,28,615352,10,3 ,27,7969,91072,23,8 ,3,28,615360,8,3 ,17,923,91075,24,0 ,17,923,10052548,16,0 ,17,923,7431108,32,0 ,44,15152,615364,72,0 ,44,15152,3236804,200,0 ,45,15153,4809668,24,0 ,45,15153,5333956,24,0 ,27,7999,91080,22,8 ,3,28,615368,10,3 ,27,7982,91088,23,8 ,3,28,615376,8,3 ,27,8000,91096,24,8 ,3,28,615384,10,3 ,27,8001,91104,20,8 ,3,28,615392,8,3 ,20,17739,6382562,1224,0 ,20,16675,3761122,516,0 ,27,8002,91112,22,8 ,3,28,615400,10,3 ,27,7949,91120,22,8 ,3,28,615408,8,3 ,27,8006,91128,24,8 ,3,28,615416,10,3 ,27,8007,91136,24,8 ,3,28,615424,8,3 ,17,923,9004036,40,0 ,17,923,8479748,32,0 ,27,8008,91144,25,8 ,3,28,615432,10,3 ,27,8009,91152,24,8 ,3,28,615440,8,3 ,27,8013,91160,21,8 ,3,28,615448,16,5 ,27,4768,91168,24,8 ,3,28,615456,10,5 ,27,8015,91176,23,8 ,3,28,615464,10,3 ,27,4663,91184,22,8 ,3,28,615472,8,3 ,27,2312,91192,22,8 ,3,28,615480,10,3 ,27,4758,91200,22,8 ,3,28,615488,8,3 ,20,23306,20538434,712,0 ,17,923,10052676,16,0 ,17,923,7955524,24,0 ,17,923,6382660,32,0 ,44,15152,1139780,24,0 ,45,15153,4285508,48,0 ,17,923,9528388,16,0 ,27,4759,91208,24,8 ,3,28,615496,10,3 ,27,4733,91216,22,8 ,3,28,615504,8,3 ,27,4606,91224,24,8 ,3,28,615512,13,4 ,27,6420,91232,24,8 ,3,28,615520,11,4 ,20,23704,21587042,164,0 ,27,4294,91240,22,8 ,3,28,615528,10,3 ,27,4288,91248,22,8 ,3,28,615536,8,3 ,27,4321,91256,22,8 ,3,28,615544,7,2 ,27,4467,91264,26,8 ,3,28,615552,5,2 ,20,16101,2188418,256,0 ,17,923,91267,24,0 ,45,15153,5334148,64,0 ,17,923,6907012,24,0 ,44,15152,2712708,40,0 ,44,15152,2188420,16,0 ,45,15153,4809860,24,0 ,27,4294,91272,22,8 ,3,28,615560,13,4 ,27,4463,91280,22,8 ,3,28,615568,11,4 ,27,8020,91288,22,8 ,3,28,615576,10,3 ,27,8021,91296,23,8 ,3,28,615584,8,3 ,27,579,91304,22,8 ,3,28,615592,19,6 ,27,579,91312,23,8 ,3,28,615600,17,6 ,27,1062,91320,21,8 ,3,28,615608,13,4 ,27,4298,91328,22,8 ,3,28,615616,11,4 ,17,923,10052804,16,0 ,17,923,7431364,40,0 ,17,923,9528516,32,0 ,27,4002,91336,22,8 ,3,28,615624,25,8 ,27,4000,91344,22,8 ,3,28,615632,23,8 ,27,4001,91352,22,8 ,3,28,615640,13,4 ,27,4793,91360,24,8 ,3,28,615648,11,4 ,20,21532,16344290,100,0 ,27,1374,91368,22,8 ,3,28,615656,19,6 ,27,4794,91376,22,8 ,3,28,615664,17,6 ,27,1403,91384,24,8 ,3,28,615672,10,3 ,27,4795,91392,24,8 ,3,28,615680,6,3 ,20,20732,13722882,204,0 ,17,923,8480004,40,0 ,17,923,7955716,24,0 ,44,15152,2188548,32,0 ,44,15152,1139972,64,0 ,27,8023,91400,23,8 ,3,28,615688,13,4 ,27,4611,91408,24,8 ,3,28,615696,11,4 ,27,4733,91416,22,8 ,3,28,615704,13,4 ,27,4606,91424,24,8 ,3,28,615712,11,4 ,27,8027,91432,20,8 ,3,28,615720,10,3 ,27,8026,91440,24,8 ,3,28,615728,8,3 ,27,2182,91448,24,8 ,3,28,615736,13,4 ,27,2312,91456,22,8 ,3,28,615744,11,4 ,17,923,91459,24,0 ,17,923,10052932,16,0 ,17,923,6907204,48,0 ,17,923,6382916,32,0 ,45,15153,4810052,24,0 ,17,923,9004356,40,0 ,27,5225,91464,22,8 ,3,28,615752,13,4 ,27,4748,91472,22,8 ,3,28,615760,11,4 ,27,8026,91480,23,8 ,3,28,615768,10,3 ,27,8028,91488,22,8 ,3,28,615776,8,3 ,20,15613,1140066,348,0 ,27,8035,91496,24,8 ,3,28,615784,13,4 ,27,4482,91504,26,8 ,3,28,615792,11,4 ,27,2182,91512,24,8 ,3,28,615800,10,3 ,27,8036,91520,23,8 ,3,28,615808,8,3 ,27,4320,91528,22,8 ,3,28,615816,10,3 ,27,4467,91536,26,8 ,3,28,615824,8,3 ,27,4321,91544,22,8 ,3,28,615832,13,4 ,27,4294,91552,22,8 ,3,28,615840,11,4 ,20,23560,21063074,28,0 ,20,20515,13198754,304,0 ,27,4463,91560,22,8 ,3,28,615848,10,3 ,27,8038,91568,22,8 ,3,28,615856,8,3 ,27,8039,91576,24,8 ,3,28,615864,10,3 ,27,8040,91584,22,8 ,3,28,615872,8,3 ,17,923,10053060,16,0 ,17,923,7955908,40,0 ,44,15152,2713028,32,0 ,45,15153,4285892,16,0 ,17,923,9528772,24,0 ,27,8020,91592,22,8 ,3,28,615880,10,3 ,27,8041,91600,22,8 ,3,28,615888,8,3 ,27,8042,91608,24,8 ,3,28,615896,10,3 ,27,6222,91616,24,8 ,3,28,615904,8,3 ,20,22690,19490274,2428,0 ,20,18465,7955938,64,0 ,27,6223,91624,23,8 ,3,28,615912,10,3 ,27,8046,91632,23,8 ,3,28,615920,8,3 ,27,7273,91640,24,8 ,3,28,615928,10,3 ,27,4768,91648,24,8 ,3,28,615936,8,3 ,20,1004,91649,80,0 ,20,26109,27878914,336,0 ,17,923,91651,32,0 ,45,15153,4810244,24,0 ,17,923,7431684,40,0 ,44,15152,2188804,40,0 ,44,15152,91652,136,0 ,44,15152,615940,168,0 ,27,4482,91656,26,8 ,3,28,615944,10,3 ,27,1118,91664,26,8 ,3,28,615952,8,3 ,27,8050,91672,21,8 ,3,28,615960,22,7 ,27,8049,91680,26,8 ,3,28,615968,20,7 ,20,25696,26830370,148,0 ,27,8052,91688,24,8 ,3,28,615976,10,3 ,27,8054,91696,20,8 ,3,28,615984,8,3 ,27,8053,91704,24,8 ,3,28,615992,10,3 ,27,4748,91712,22,8 ,3,28,616000,8,3 ,17,923,10053188,16,0 ,17,923,6383172,40,0 ,45,15153,4286020,56,0 ,17,923,8480324,40,0 ,27,2182,91720,24,8 ,3,28,616008,16,5 ,27,8055,91728,23,8 ,3,28,616016,14,5 ,27,8055,91736,24,8 ,3,28,616024,10,3 ,27,8056,91744,20,8 ,3,28,616032,8,3 ,27,8049,91752,25,8 ,3,28,616040,10,3 ,27,8057,91760,23,8 ,3,28,616048,8,3 ,27,8057,91768,24,8 ,3,28,616056,10,3 ,27,8058,91776,24,8 ,3,28,616064,8,3 ,20,23561,21063298,116,0 ,17,923,9528964,32,0 ,45,15153,5334660,32,0 ,17,923,9004676,24,0 ,27,8059,91784,22,8 ,3,28,616072,10,3 ,27,8053,91792,23,8 ,3,28,616080,8,3 ,27,8061,91800,20,8 ,3,28,616088,10,3 ,27,8060,91808,24,8 ,3,28,616096,8,3 ,27,4618,91816,22,8 ,3,28,616104,10,3 ,27,2312,91824,22,8 ,3,28,616112,8,3 ,27,8062,91832,20,8 ,3,28,616120,13,4 ,27,8060,91840,23,8 ,3,28,616128,11,4 ,17,923,10053316,16,0 ,17,923,6907588,40,0 ,44,15152,2713284,24,0 ,45,15153,4810436,24,0 ,27,8063,91848,22,8 ,3,28,616136,10,3 ,27,4663,91856,22,8 ,3,28,616144,8,3 ,27,2312,91864,22,8 ,3,28,616152,10,3 ,27,4759,91872,24,8 ,3,28,616160,8,3 ,27,2182,91880,24,8 ,3,28,616168,10,3 ,27,3875,91888,26,8 ,3,28,616176,8,3 ,27,1118,91896,26,8 ,3,28,616184,10,3 ,27,6222,91904,24,8 ,3,28,616192,8,3 ,17,923,91907,16,0 ,44,15152,1140484,32,0 ,17,923,7956228,24,0 ,27,6223,91912,23,8 ,3,28,616200,10,3 ,27,3875,91920,26,8 ,3,28,616208,8,3 ,27,8071,91928,25,8 ,3,28,616216,13,4 ,27,4463,91936,22,8 ,3,28,616224,11,4 ,27,8073,91944,22,8 ,3,28,616232,7,2 ,27,8074,91952,22,8 ,3,28,616240,5,2 ,27,8076,91960,25,8 ,3,28,616248,10,3 ,27,4466,91968,21,8 ,3,28,616256,8,3 ,17,923,10053444,16,0 ,17,923,7432004,40,0 ,44,15152,2189124,64,0 ,17,923,9004868,24,0 ,27,4456,91976,26,8 ,3,28,616264,10,3 ,27,4461,91984,21,8 ,3,28,616272,8,3 ,27,4460,91992,26,8 ,3,28,616280,13,4 ,27,4474,92000,21,8 ,3,28,616288,11,4 ,27,4473,92008,26,8 ,3,28,616296,10,3 ,27,4476,92016,21,8 ,3,28,616304,8,3 ,27,4468,92024,26,8 ,3,28,616312,19,6 ,27,4467,92032,26,8 ,3,28,616320,17,6 ,17,923,92035,24,0 ,17,923,9529220,24,0 ,17,923,6383492,32,0 ,44,15152,2713476,24,0 ,44,15152,3762052,48,0 ,45,15153,4810628,16,0 ,45,15153,5334916,40,0 ,17,923,8480644,24,0 ,27,4294,92040,23,8 ,3,28,616328,10,3 ,27,4294,92048,24,8 ,3,28,616336,8,3 ,27,4478,92056,24,8 ,3,28,616344,13,4 ,27,4456,92064,25,8 ,3,28,616352,11,4 ,20,18199,7432098,756,0 ,27,4460,92072,25,8 ,3,28,616360,22,7 ,27,4473,92080,25,8 ,3,28,616368,20,7 ,27,4468,92088,25,8 ,3,28,616376,10,3 ,27,8078,92096,23,8 ,3,28,616384,8,3 ,17,923,10053572,16,0 ,17,923,7956420,24,0 ,27,5185,92104,24,8 ,3,28,616392,22,7 ,27,4298,92112,22,8 ,3,28,616400,20,7 ,27,4002,92120,22,8 ,3,28,616408,10,3 ,27,4000,92128,22,8 ,3,28,616416,8,3 ,20,18466,7956450,76,0 ,20,15345,616418,12,0 ,27,4001,92136,22,8 ,3,28,616424,7,2 ,27,4481,92144,22,8 ,3,28,616432,5,2 ,27,4482,92152,24,8 ,3,28,616440,13,4 ,27,4466,92160,21,8 ,3,28,616448,11,4 ,20,21533,16345090,204,0 ,17,923,9005060,32,0 ,17,923,6907908,48,0 ,44,15152,1140740,24,0 ,45,15153,4286468,24,0 ,45,15153,4810756,24,0 ,27,4456,92168,26,8 ,3,28,616456,10,3 ,27,4461,92176,21,8 ,3,28,616464,8,3 ,27,4460,92184,26,8 ,3,28,616472,19,6 ,27,4474,92192,21,8 ,3,28,616480,17,6 ,27,4473,92200,26,8 ,3,28,616488,10,3 ,27,4476,92208,21,8 ,3,28,616496,8,3 ,27,4468,92216,26,8 ,3,28,616504,13,4 ,27,4294,92224,23,8 ,3,28,616512,11,4 ,20,19693,10577986,192,0 ,20,15346,616514,128,0 ,17,923,92227,32,0 ,17,923,10053700,16,0 ,44,15152,2713668,32,0 ,17,923,8480836,32,0 ,17,923,9529412,32,0 ,27,4294,92232,24,8 ,3,28,616520,10,3 ,27,4288,92240,22,8 ,3,28,616528,8,3 ,27,4467,92248,26,8 ,3,28,616536,10,3 ,27,4463,92256,22,8 ,3,28,616544,8,3 ,27,4478,92264,24,8 ,3,28,616552,10,3 ,27,4456,92272,25,8 ,3,28,616560,8,3 ,27,4460,92280,25,8 ,3,28,616568,10,3 ,27,4473,92288,25,8 ,3,28,616576,8,3 ,20,1005,92289,208,0 ,20,19359,10053762,52,0 ,17,923,6383748,48,0 ,17,923,7956612,72,0 ,17,923,7432324,32,0 ,27,4468,92296,25,8 ,3,28,616584,7,2 ,27,4321,92304,22,8 ,3,28,616592,5,2 ,27,3993,92312,21,8 ,3,28,616600,10,3 ,27,3992,92320,28,8 ,3,28,616608,8,3 ,27,4470,92328,24,8 ,3,28,616616,13,4 ,27,3992,92336,27,8 ,3,28,616624,11,4 ,27,8086,92344,25,8 ,3,28,616632,13,4 ,27,5483,92352,26,8 ,3,28,616640,11,4 ,17,923,10053828,16,0 ,44,15152,1140932,24,0 ,45,15153,4286660,48,0 ,45,15153,4810948,40,0 ,45,15153,5335236,16,0 ,27,4320,92360,22,8 ,3,28,616648,10,3 ,27,4294,92368,22,8 ,3,28,616656,8,3 ,27,5565,92376,22,8 ,3,28,616664,13,4 ,27,5566,92384,22,8 ,3,28,616672,11,4 ,27,4313,92392,24,8 ,3,28,616680,10,3 ,27,8088,92400,26,8 ,3,28,616688,8,3 ,27,1748,92408,24,8 ,3,28,616696,10,3 ,27,1747,92416,22,8 ,3,28,616704,8,3 ,17,923,9005316,24,0 ,44,15152,3762436,24,0 ,27,8090,92424,22,8 ,3,28,616712,10,3 ,27,8091,92432,22,8 ,3,28,616720,8,3 ,27,8092,92440,22,8 ,3,28,616728,10,3 ,27,4005,92448,22,8 ,3,28,616736,8,3 ,27,8096,92456,26,8 ,3,28,616744,10,3 ,27,4152,92464,22,8 ,3,28,616752,8,3 ,27,7765,92472,22,8 ,3,28,616760,10,3 ,27,8097,92480,23,8 ,3,28,616768,8,3 ,20,24711,24209730,12,0 ,17,923,92483,16,0 ,17,923,10053956,16,0 ,44,15152,2713924,64,0 ,44,15152,2189636,64,0 ,45,15153,5335364,24,0 ,17,923,8481092,24,0 ,17,923,9529668,24,0 ,27,8097,92488,24,8 ,3,28,616776,10,3 ,27,8099,92496,20,8 ,3,28,616784,6,3 ,27,8098,92504,24,8 ,3,28,616792,10,3 ,27,8100,92512,21,8 ,3,28,616800,8,3 ,27,4014,92520,22,8 ,3,28,616808,16,5 ,27,1562,92528,24,8 ,3,28,616816,14,5 ,27,4015,92536,22,8 ,3,28,616824,13,4 ,27,8101,92544,22,8 ,3,28,616832,11,4 ,20,23705,21588354,2920,0 ,20,25910,27355522,372,0 ,44,15152,1141124,24,0 ,17,923,7432580,32,0 ,17,923,6908292,48,0 ,27,8103,92552,20,8 ,3,28,616840,13,4 ,27,8102,92560,24,8 ,3,28,616848,11,4 ,27,8104,92568,23,8 ,3,28,616856,10,3 ,27,8104,92576,24,8 ,3,28,616864,8,3 ,20,24712,24209826,204,0 ,27,4018,92584,22,8 ,3,28,616872,10,3 ,27,4017,92592,22,8 ,3,28,616880,8,3 ,27,8105,92600,21,8 ,3,28,616888,10,3 ,27,4019,92608,22,8 ,3,28,616896,8,3 ,17,923,92611,16,0 ,17,923,10054084,16,0 ,44,15152,3762628,24,0 ,17,923,9005508,32,0 ,27,8106,92616,22,8 ,3,28,616904,13,4 ,27,8102,92624,23,8 ,3,28,616912,11,4 ,27,8107,92632,22,8 ,3,28,616920,10,3 ,27,8108,92640,22,8 ,3,28,616928,8,3 ,27,7773,92648,22,8 ,3,28,616936,10,3 ,27,8109,92656,22,8 ,3,28,616944,8,3 ,27,4022,92664,22,8 ,3,28,616952,10,3 ,27,4023,92672,22,8 ,3,28,616960,8,3 ,17,923,9529860,32,0 ,17,923,6384132,40,0 ,44,15152,3238404,24,0 ,45,15153,4811268,16,0 ,45,15153,5335556,40,0 ,17,923,8481284,32,0 ,27,4024,92680,22,8 ,3,28,616968,10,3 ,27,8110,92688,22,8 ,3,28,616976,8,3 ,27,8111,92696,21,8 ,3,28,616984,13,4 ,27,4025,92704,22,8 ,3,28,616992,11,4 ,20,23562,21064226,64,0 ,20,19360,10054178,432,0 ,27,8112,92712,22,8 ,3,28,617000,10,3 ,27,8113,92720,22,8 ,3,28,617008,8,3 ,27,8115,92728,20,8 ,3,28,617016,10,3 ,27,8114,92736,24,8 ,3,28,617024,8,3 ,20,18467,7957058,72,0 ,17,923,92739,32,0 ,17,923,10054212,16,0 ,44,15152,92740,24,0 ,44,15152,1141316,32,0 ,45,15153,4287044,104,0 ,27,8116,92744,22,8 ,3,28,617032,10,3 ,27,8117,92752,21,8 ,3,28,617040,8,3 ,27,8118,92760,21,8 ,3,28,617048,13,4 ,27,8119,92768,22,8 ,3,28,617056,11,4 ,27,8120,92776,21,8 ,3,28,617064,7,2 ,27,4032,92784,22,8 ,3,28,617072,5,2 ,27,8121,92792,22,8 ,3,28,617080,13,4 ,27,4036,92800,22,8 ,3,28,617088,11,4 ,45,15153,4811396,24,0 ,17,923,7432836,32,0 ,44,15152,3762820,16,0 ,27,4307,92808,22,8 ,3,28,617096,19,6 ,27,4040,92816,22,8 ,3,28,617104,17,6 ,27,8122,92824,22,8 ,3,28,617112,10,3 ,27,8123,92832,22,8 ,3,28,617120,8,3 ,27,4042,92840,22,8 ,3,28,617128,10,3 ,27,8124,92848,22,8 ,3,28,617136,8,3 ,27,8125,92856,22,8 ,3,28,617144,10,3 ,27,8126,92864,22,8 ,3,28,617152,8,3 ,20,25697,26831554,148,0 ,17,923,10054340,16,0 ,17,923,7957188,40,0 ,44,15152,3238596,48,0 ,17,923,9005764,32,0 ,27,8127,92872,20,8 ,3,28,617160,16,5 ,27,8128,92880,20,8 ,3,28,617168,12,5 ,27,4047,92888,22,8 ,3,28,617176,13,4 ,27,8129,92896,22,8 ,3,28,617184,11,4 ,27,4049,92904,22,8 ,3,28,617192,10,3 ,27,4048,92912,22,8 ,3,28,617200,8,3 ,27,8130,92920,22,8 ,3,28,617208,10,3 ,27,8131,92928,22,8 ,3,28,617216,8,3 ,17,923,9530116,16,0 ,17,923,6908676,32,0 ,44,15152,92932,48,0 ,44,15152,3762948,88,0 ,17,923,8481540,32,0 ,27,8132,92936,21,8 ,3,28,617224,10,3 ,27,7661,92944,22,8 ,3,28,617232,8,3 ,27,8133,92952,22,8 ,3,28,617240,13,4 ,27,8134,92960,21,8 ,3,28,617248,11,4 ,20,26278,28404514,264,0 ,27,4053,92968,22,8 ,3,28,617256,10,3 ,27,8114,92976,23,8 ,3,28,617264,8,3 ,27,8135,92984,22,8 ,3,28,617272,10,3 ,27,4054,92992,22,8 ,3,28,617280,8,3 ,17,923,92995,24,0 ,17,923,10054468,16,0 ,17,923,6384452,48,0 ,44,15152,2714436,32,0 ,44,15152,2190148,48,0 ,44,15152,617284,24,0 ,44,15152,1141572,72,0 ,45,15153,4811588,16,0 ,45,15153,5335876,40,0 ,27,4052,93000,22,8 ,3,28,617288,13,4 ,27,8098,93008,23,8 ,3,28,617296,11,4 ,27,8136,93016,21,8 ,3,28,617304,10,3 ,27,4320,93024,22,8 ,3,28,617312,8,3 ,20,20733,13724514,12,0 ,27,8137,93032,22,8 ,3,28,617320,13,4 ,27,4066,93040,22,8 ,3,28,617328,11,4 ,27,8138,93048,22,8 ,3,28,617336,22,7 ,27,4466,93056,21,8 ,3,28,617344,20,7 ,17,923,9530244,32,0 ,17,923,7433092,40,0 ,27,4456,93064,26,8 ,3,28,617352,16,5 ,27,8141,93072,27,8 ,3,28,617360,14,5 ,27,8142,93080,24,8 ,3,28,617368,10,3 ,27,4461,93088,21,8 ,3,28,617376,8,3 ,27,4460,93096,26,8 ,3,28,617384,10,3 ,27,4474,93104,21,8 ,3,28,617392,8,3 ,27,4473,93112,26,8 ,3,28,617400,13,4 ,27,4476,93120,21,8 ,3,28,617408,11,4 ,20,20734,13724610,400,0 ,17,923,10054596,16,0 ,45,15153,4811716,16,0 ,17,923,9006020,24,0 ,27,4468,93128,26,8 ,3,28,617416,13,4 ,27,4463,93136,22,8 ,3,28,617424,11,4 ,27,4456,93144,25,8 ,3,28,617432,10,3 ,27,4460,93152,25,8 ,3,28,617440,8,3 ,27,4473,93160,25,8 ,3,28,617448,10,3 ,27,4468,93168,25,8 ,3,28,617456,8,3 ,27,8143,93176,24,8 ,3,28,617464,10,3 ,27,8144,93184,22,8 ,3,28,617472,8,3 ,17,923,93187,16,0 ,17,923,8481796,32,0 ,17,923,7957508,24,0 ,17,923,6908932,40,0 ,44,15152,617476,24,0 ,27,8145,93192,22,8 ,3,28,617480,10,3 ,27,8148,93200,25,8 ,3,28,617488,8,3 ,27,4308,93208,24,8 ,3,28,617496,7,2 ,27,8150,93216,25,8 ,3,28,617504,5,2 ,20,23563,21064738,52,0 ,20,18928,9006114,88,0 ,27,8152,93224,23,8 ,3,28,617512,13,4 ,27,6593,93232,23,8 ,3,28,617520,11,4 ,27,6594,93240,23,8 ,3,28,617528,10,3 ,27,3993,93248,21,8 ,3,28,617536,8,3 ,20,15347,617538,220,0 ,17,923,10054724,16,0 ,44,15152,2714692,56,0 ,44,15152,3238980,32,0 ,45,15153,4811844,64,0 ,27,3992,93256,28,8 ,3,28,617544,7,2 ,27,4320,93264,22,8 ,3,28,617552,5,2 ,27,3992,93272,27,8 ,3,28,617560,7,2 ,27,5765,93280,22,8 ,3,28,617568,5,2 ,27,8155,93288,22,8 ,3,28,617576,10,3 ,27,8157,93296,25,8 ,3,28,617584,8,3 ,27,4463,93304,22,8 ,3,28,617592,10,3 ,27,8159,93312,24,8 ,3,28,617600,8,3 ,20,18468,7957634,124,0 ,20,16102,2190466,640,0 ,20,18008,6909058,304,0 ,17,923,93315,32,0 ,17,923,9530500,32,0 ,44,15152,93316,128,0 ,45,15153,5336196,120,0 ,17,923,9006212,32,0 ,27,8160,93320,22,8 ,3,28,617608,10,3 ,27,8161,93328,22,8 ,3,28,617616,8,3 ,27,8162,93336,26,8 ,3,28,617624,7,2 ,27,4460,93344,25,8 ,3,28,617632,5,2 ,27,4460,93352,26,8 ,3,28,617640,13,4 ,27,4292,93360,24,8 ,3,28,617648,11,4 ,27,4294,93368,22,8 ,3,28,617656,13,4 ,27,4466,93376,21,8 ,3,28,617664,11,4 ,17,923,10054852,16,0 ,17,923,7957700,80,0 ,17,923,7433412,40,0 ,17,923,6384836,40,0 ,44,15152,2190532,24,0 ,44,15152,617668,264,0 ,27,4456,93384,26,8 ,3,28,617672,13,4 ,27,3992,93392,27,8 ,3,28,617680,11,4 ,27,3992,93400,28,8 ,3,28,617688,13,4 ,27,6249,93408,22,8 ,3,28,617696,11,4 ,20,17339,5336290,316,0 ,27,3993,93416,21,8 ,3,28,617704,13,4 ,27,4468,93424,25,8 ,3,28,617712,11,4 ,27,4468,93432,26,8 ,3,28,617720,10,3 ,27,4456,93440,25,8 ,3,28,617728,8,3 ,17,923,8482052,24,0 ,27,4471,93448,22,8 ,3,28,617736,13,4 ,27,4461,93456,21,8 ,3,28,617744,11,4 ,27,4474,93464,21,8 ,3,28,617752,13,4 ,27,4473,93472,26,8 ,3,28,617760,11,4 ,20,22023,17919266,440,0 ,27,4476,93480,21,8 ,3,28,617768,10,3 ,27,4478,93488,24,8 ,3,28,617776,8,3 ,27,8165,93496,25,8 ,3,28,617784,10,3 ,27,4473,93504,25,8 ,3,28,617792,8,3 ,20,24893,24735042,212,0 ,17,923,10054980,16,0 ,17,923,6909252,40,0 ,44,15152,3239236,56,0 ,27,4320,93512,22,8 ,3,28,617800,10,3 ,27,4463,93520,22,8 ,3,28,617808,8,3 ,27,1747,93528,22,8 ,3,28,617816,13,4 ,27,4294,93536,22,8 ,3,28,617824,11,4 ,27,8167,93544,22,8 ,3,28,617832,10,3 ,27,1562,93552,24,8 ,3,28,617840,8,3 ,27,8169,93560,26,8 ,3,28,617848,10,3 ,27,4313,93568,26,8 ,3,28,617856,8,3 ,17,923,93571,16,0 ,17,923,9530756,32,0 ,44,15152,2190724,32,0 ,44,15152,1142148,24,0 ,45,15153,4287876,32,0 ,17,923,9006468,24,0 ,27,3993,93576,21,8 ,3,28,617864,10,3 ,27,3992,93584,28,8 ,3,28,617872,8,3 ,27,4288,93592,22,8 ,3,28,617880,10,3 ,27,4294,93600,22,8 ,3,28,617888,8,3 ,27,4467,93608,26,8 ,3,28,617896,10,3 ,27,3992,93616,27,8 ,3,28,617904,8,3 ,27,8172,93624,24,8 ,3,28,617912,13,4 ,27,4129,93632,22,8 ,3,28,617920,11,4 ,20,23564,21065154,92,0 ,17,923,10055108,16,0 ,44,15152,3763652,16,0 ,17,923,8482244,48,0 ,27,4047,93640,22,8 ,3,28,617928,13,4 ,27,4838,93648,22,8 ,3,28,617936,11,4 ,27,4832,93656,24,8 ,3,28,617944,13,4 ,27,8173,93664,22,8 ,3,28,617952,11,4 ,27,8176,93672,26,8 ,3,28,617960,13,4 ,27,8178,93680,19,8 ,3,28,617968,11,4 ,27,4282,93688,24,8 ,3,28,617976,10,3 ,27,8179,93696,22,8 ,3,28,617984,8,3 ,17,923,93699,24,0 ,44,15152,2715140,72,0 ,17,923,7433732,40,0 ,17,923,6385156,48,0 ,27,8152,93704,24,8 ,3,28,617992,13,4 ,27,8152,93712,24,8 ,3,28,618000,11,4 ,27,4463,93720,22,8 ,3,28,618008,13,4 ,27,4157,93728,22,8 ,3,28,618016,11,4 ,20,20215,12152354,4932,0 ,20,25347,25783842,316,0 ,27,8180,93736,22,8 ,3,28,618024,13,4 ,27,4000,93744,22,8 ,3,28,618032,11,4 ,27,4001,93752,22,8 ,3,28,618040,7,2 ,27,8181,93760,22,8 ,3,28,618048,5,2 ,20,23916,22113858,124,0 ,20,19694,10579522,284,0 ,17,923,10055236,16,0 ,44,15152,1142340,24,0 ,44,15152,3763780,24,0 ,45,15153,4812356,24,0 ,17,923,9006660,24,0 ,27,8182,93768,23,8 ,3,28,618056,7,2 ,27,3993,93776,21,8 ,3,28,618064,5,2 ,27,3992,93784,28,8 ,3,28,618072,13,4 ,27,4294,93792,22,8 ,3,28,618080,9,4 ,20,21534,16346722,332,0 ,27,3992,93800,27,8 ,3,28,618088,13,4 ,27,8184,93808,24,8 ,3,28,618096,11,4 ,27,8187,93816,26,8 ,3,28,618104,10,3 ,27,8186,93824,26,8 ,3,28,618112,8,3 ,17,923,9531012,40,0 ,17,923,6909572,40,0 ,44,15152,2190980,24,0 ,45,15153,4288132,136,0 ,27,3993,93832,21,8 ,3,28,618120,10,3 ,27,3992,93840,28,8 ,3,28,618128,8,3 ,27,4294,93848,22,8 ,3,28,618136,10,3 ,27,3992,93856,27,8 ,3,28,618144,8,3 ,27,8152,93864,24,8 ,3,28,618152,7,2 ,27,8189,93872,22,8 ,3,28,618160,5,2 ,27,8190,93880,22,8 ,3,28,618168,10,3 ,27,8184,93888,24,8 ,3,28,618176,8,3 ,17,923,93891,24,0 ,17,923,10055364,16,0 ,27,8191,93896,26,8 ,3,28,618184,13,4 ,27,4314,93904,21,8 ,3,28,618192,11,4 ,27,4295,93912,24,8 ,3,28,618200,10,3 ,27,4295,93920,23,8 ,3,28,618208,8,3 ,20,18929,9006818,448,0 ,27,4471,93928,22,8 ,3,28,618216,19,6 ,27,8198,93936,26,8 ,3,28,618224,17,6 ,27,4466,93944,21,8 ,3,28,618232,10,3 ,27,4456,93952,26,8 ,3,28,618240,6,3 ,20,1006,93953,112,0 ,17,923,9006852,64,0 ,44,15152,1142532,32,0 ,44,15152,3239684,32,0 ,44,15152,3763972,56,0 ,45,15153,4812548,32,0 ,27,4461,93960,21,8 ,3,28,618248,7,2 ,27,4460,93968,26,8 ,3,28,618256,5,2 ,27,4474,93976,21,8 ,3,28,618264,13,4 ,27,4473,93984,26,8 ,3,28,618272,11,4 ,20,20516,13201186,80,0 ,27,4476,93992,21,8 ,3,28,618280,13,4 ,27,4468,94000,26,8 ,3,28,618288,11,4 ,27,4463,94008,22,8 ,3,28,618296,13,4 ,27,4456,94016,25,8 ,3,28,618304,11,4 ,17,923,10055492,16,0 ,17,923,7958340,48,0 ,17,923,7434052,32,0 ,44,15152,2191172,56,0 ,17,923,8482628,40,0 ,27,4460,94024,25,8 ,3,28,618312,7,2 ,27,4473,94032,25,8 ,3,28,618320,5,2 ,27,4468,94040,25,8 ,3,28,618328,10,3 ,27,8200,94048,22,8 ,3,28,618336,8,3 ,20,25698,26832738,132,0 ,27,8202,94056,25,8 ,3,28,618344,10,3 ,27,4294,94064,22,8 ,3,28,618352,8,3 ,27,4313,94072,24,8 ,3,28,618360,10,3 ,27,4152,94080,22,8 ,3,28,618368,8,3 ,17,923,94083,32,0 ,17,923,6385540,40,0 ,27,8204,94088,26,8 ,3,28,618376,7,2 ,27,4307,94096,22,8 ,3,28,618384,5,2 ,27,4313,94104,24,8 ,3,28,618392,10,3 ,27,2366,94112,22,8 ,3,28,618400,6,3 ,27,4178,94120,22,8 ,3,28,618408,10,3 ,27,4010,94128,22,8 ,3,28,618416,8,3 ,27,3993,94136,21,8 ,3,28,618424,10,3 ,27,3992,94144,28,8 ,3,28,618432,8,3 ,17,923,10055620,16,0 ,17,923,6909892,32,0 ,17,923,9531332,24,0 ,27,4288,94152,22,8 ,3,28,618440,10,3 ,27,4294,94160,22,8 ,3,28,618448,8,3 ,27,4467,94168,26,8 ,3,28,618456,19,6 ,27,3992,94176,27,8 ,3,28,618464,17,6 ,27,8207,94184,24,8 ,3,28,618472,10,3 ,27,8184,94192,24,8 ,3,28,618480,8,3 ,27,4313,94200,24,8 ,3,28,618488,10,3 ,27,4000,94208,22,8 ,3,28,618496,8,3 ,20,24713,24211458,2132,0 ,45,15153,4812804,24,0 ,44,15152,1142788,40,0 ,44,15152,3239940,24,0 ,27,4108,94216,22,8 ,3,28,618504,10,3 ,27,8208,94224,22,8 ,3,28,618512,8,3 ,27,4152,94232,22,8 ,3,28,618520,10,3 ,27,8210,94240,26,8 ,3,28,618528,8,3 ,27,4320,94248,22,8 ,3,28,618536,10,3 ,27,8212,94256,22,8 ,3,28,618544,8,3 ,27,8214,94264,25,8 ,3,28,618552,10,3 ,27,8217,94272,20,8 ,3,28,618560,8,3 ,20,15614,1142850,552,0 ,17,923,10055748,16,0 ,17,923,7434308,40,0 ,44,15152,2715716,32,0 ,45,15153,5337156,192,0 ,27,8216,94280,24,8 ,3,28,618568,13,4 ,27,4471,94288,22,8 ,3,28,618576,11,4 ,27,4294,94296,22,8 ,3,28,618584,13,4 ,27,4290,94304,24,8 ,3,28,618592,11,4 ,20,18469,7958626,12,0 ,27,4000,94312,22,8 ,3,28,618600,10,3 ,27,4001,94320,22,8 ,3,28,618608,8,3 ,27,8216,94328,23,8 ,3,28,618616,13,4 ,27,8218,94336,22,8 ,3,28,618624,11,4 ,20,26110,27881602,304,0 ,17,923,94339,32,0 ,17,923,9531524,24,0 ,44,15152,94340,160,0 ,17,923,8482948,32,0 ,27,8220,94344,24,8 ,3,28,618632,13,4 ,27,8221,94352,22,8 ,3,28,618640,11,4 ,27,8222,94360,22,8 ,3,28,618648,10,3 ,27,8223,94368,22,8 ,3,28,618656,8,3 ,20,23565,21065890,64,0 ,27,8224,94376,22,8 ,3,28,618664,13,4 ,27,4764,94384,22,8 ,3,28,618672,11,4 ,27,8229,94392,26,8 ,3,28,618680,10,3 ,27,3993,94400,21,8 ,3,28,618688,6,3 ,20,18470,7958722,52,0 ,20,25494,26308802,140,0 ,17,923,10055876,16,0 ,17,923,7958724,24,0 ,17,923,6910148,40,0 ,17,923,6385860,40,0 ,44,15152,3240132,64,0 ,44,15152,3764420,112,0 ,45,15153,4812996,32,0 ,27,3992,94408,28,8 ,3,28,618696,13,4 ,27,4294,94416,22,8 ,3,28,618704,11,4 ,27,3992,94424,27,8 ,3,28,618712,13,4 ,27,8231,94432,25,8 ,3,28,618720,11,4 ,27,41,94440,23,8 ,3,28,618728,10,3 ,27,4307,94448,22,8 ,3,28,618736,8,3 ,27,8236,94456,22,8 ,3,28,618744,16,5 ,27,8237,94464,23,8 ,3,28,618752,14,5 ,17,923,9007364,48,0 ,44,15152,2191620,24,0 ,27,8238,94472,25,8 ,3,28,618760,10,3 ,27,4307,94480,22,8 ,3,28,618768,8,3 ,27,8240,94488,25,8 ,3,28,618776,7,2 ,27,3993,94496,21,8 ,3,28,618784,5,2 ,27,3992,94504,28,8 ,3,28,618792,13,4 ,27,4288,94512,22,8 ,3,28,618800,11,4 ,27,4294,94520,22,8 ,3,28,618808,10,3 ,27,4467,94528,26,8 ,3,28,618816,8,3 ,20,19957,11104578,124,0 ,17,923,10056004,16,0 ,44,15152,2715972,64,0 ,44,15152,1143108,32,0 ,17,923,9531716,32,0 ,27,3992,94536,27,8 ,3,28,618824,10,3 ,27,8242,94544,22,8 ,3,28,618832,8,3 ,27,8244,94552,25,8 ,3,28,618840,10,3 ,27,4307,94560,22,8 ,3,28,618848,8,3 ,20,24512,23687522,480,0 ,27,8248,94568,22,8 ,3,28,618856,10,3 ,27,8250,94576,25,8 ,3,28,618864,8,3 ,27,4733,94584,22,8 ,3,28,618872,10,3 ,27,4606,94592,24,8 ,3,28,618880,8,3 ,17,923,94595,32,0 ,17,923,8483204,40,0 ,17,923,7958916,64,0 ,17,923,7434628,40,0 ,27,4309,94600,26,8 ,3,28,618888,10,3 ,27,4752,94608,24,8 ,3,28,618896,8,3 ,27,8268,94616,21,8 ,3,28,618904,10,3 ,27,8266,94624,22,8 ,3,28,618912,8,3 ,20,20517,13201826,12,0 ,27,8264,94632,24,8 ,3,28,618920,10,3 ,27,6142,94640,23,8 ,3,28,618928,8,3 ,27,8254,94648,23,8 ,3,28,618936,10,3 ,27,41,94656,23,8 ,3,28,618944,8,3 ,17,923,10056132,16,0 ,44,15152,2191812,24,0 ,45,15153,4813252,64,0 ,27,8256,94664,25,8 ,3,28,618952,10,3 ,27,8256,94672,26,8 ,3,28,618960,8,3 ,27,8258,94680,25,8 ,3,28,618968,10,3 ,27,8262,94688,26,8 ,3,28,618976,8,3 ,27,8258,94696,26,8 ,3,28,618984,10,3 ,27,8265,94704,20,8 ,3,28,618992,6,3 ,27,2182,94712,24,8 ,3,28,619000,13,4 ,27,5483,94720,26,8 ,3,28,619008,11,4 ,20,20518,13201922,84,0 ,17,923,6386180,56,0 ,17,923,6910468,40,0 ,27,4733,94728,22,8 ,3,28,619016,13,4 ,27,4606,94736,24,8 ,3,28,619024,11,4 ,27,4733,94744,22,8 ,3,28,619032,10,3 ,27,4606,94752,24,8 ,3,28,619040,8,3 ,20,23917,22114850,60,0 ,27,4733,94760,22,8 ,3,28,619048,7,2 ,27,4606,94768,24,8 ,3,28,619056,5,2 ,27,5483,94776,26,8 ,3,28,619064,7,2 ,27,8274,94784,27,8 ,3,28,619072,5,2 ,20,22257,18444866,136,0 ,17,923,10056260,16,0 ,44,15152,1143364,40,0 ,17,923,9531972,40,0 ,27,7090,94792,22,8 ,3,28,619080,13,4 ,27,4733,94800,22,8 ,3,28,619088,11,4 ,27,4606,94808,24,8 ,3,28,619096,13,4 ,27,8278,94816,22,8 ,3,28,619104,11,4 ,20,18471,7959138,680,0 ,27,4733,94824,22,8 ,3,28,619112,22,7 ,27,4606,94832,24,8 ,3,28,619120,20,7 ,27,5934,94840,26,8 ,3,28,619128,13,4 ,27,4733,94848,22,8 ,3,28,619136,11,4 ,20,1007,94849,248,0 ,17,923,94851,32,0 ,17,923,9007748,24,0 ,44,15152,2192004,56,0 ,27,4606,94856,24,8 ,3,28,619144,10,3 ,27,4768,94864,24,8 ,3,28,619152,8,3 ,27,4482,94872,26,8 ,3,28,619160,10,3 ,27,2182,94880,24,8 ,3,28,619168,8,3 ,20,23566,21066402,28,0 ,27,4482,94888,26,8 ,3,28,619176,10,3 ,27,4733,94896,22,8 ,3,28,619184,8,3 ,27,4606,94904,24,8 ,3,28,619192,10,3 ,27,4733,94912,22,8 ,3,28,619200,8,3 ,20,16321,3240642,224,0 ,17,923,10056388,16,0 ,17,923,7434948,40,0 ,44,15152,3240644,48,0 ,45,15153,4289220,16,0 ,17,923,8483524,48,0 ,27,4606,94920,24,8 ,3,28,619208,10,3 ,27,4733,94928,22,8 ,3,28,619216,8,3 ,27,4606,94936,24,8 ,3,28,619224,16,5 ,27,4733,94944,22,8 ,3,28,619232,14,5 ,27,4606,94952,24,8 ,3,28,619240,7,2 ,27,8287,94960,27,8 ,3,28,619248,5,2 ,27,4832,94968,26,8 ,3,28,619256,10,3 ,27,4606,94976,24,8 ,3,28,619264,8,3 ,27,4294,94984,22,8 ,3,28,619272,13,4 ,27,2366,94992,22,8 ,3,28,619280,11,4 ,27,8290,95000,23,8 ,3,28,619288,10,3 ,27,7090,95008,22,8 ,3,28,619296,8,3 ,20,15348,619298,272,0 ,27,8292,95016,26,8 ,3,28,619304,13,4 ,27,4733,95024,22,8 ,3,28,619312,11,4 ,27,4606,95032,24,8 ,3,28,619320,10,3 ,27,8294,95040,23,8 ,3,28,619328,8,3 ,17,923,10056516,16,0 ,17,923,6910788,16,0 ,44,15152,2716484,32,0 ,45,15153,4289348,24,0 ,17,923,9007940,56,0 ,27,4733,95048,22,8 ,3,28,619336,10,3 ,27,4606,95056,24,8 ,3,28,619344,8,3 ,27,4832,95064,26,8 ,3,28,619352,10,3 ,27,4606,95072,24,8 ,3,28,619360,8,3 ,20,26279,28406626,128,0 ,27,4733,95080,22,8 ,3,28,619368,10,3 ,27,4606,95088,24,8 ,3,28,619376,8,3 ,27,8299,95096,24,8 ,3,28,619384,10,3 ,27,4733,95104,22,8 ,3,28,619392,8,3 ,20,23567,21066626,28,0 ,20,25699,26833794,804,0 ,17,923,95107,16,0 ,17,923,9532292,32,0 ,17,923,7959428,24,0 ,44,15152,1143684,32,0 ,27,4606,95112,24,8 ,3,28,619400,10,3 ,27,1565,95120,24,8 ,3,28,619408,8,3 ,27,4733,95128,22,8 ,3,28,619416,10,3 ,27,8302,95136,24,8 ,3,28,619424,8,3 ,27,4606,95144,24,8 ,3,28,619432,13,4 ,27,4733,95152,22,8 ,3,28,619440,11,4 ,27,8304,95160,24,8 ,3,28,619448,10,3 ,27,4606,95168,24,8 ,3,28,619456,8,3 ,20,26398,28931010,144,0 ,17,923,10056644,16,0 ,17,923,6910916,40,0 ,17,923,6386628,56,0 ,45,15153,4813764,88,0 ,27,8306,95176,26,8 ,3,28,619464,10,3 ,27,4632,95184,24,8 ,3,28,619472,8,3 ,27,8308,95192,23,8 ,3,28,619480,10,3 ,27,4733,95200,22,8 ,3,28,619488,8,3 ,20,24894,24736738,120,0 ,27,4606,95208,24,8 ,3,28,619496,10,3 ,27,4733,95216,22,8 ,3,28,619504,8,3 ,27,4606,95224,24,8 ,3,28,619512,10,3 ,27,4611,95232,24,8 ,3,28,619520,8,3 ,20,23918,22115330,60,0 ,20,16676,3765250,280,0 ,17,923,95235,16,0 ,45,15153,4289540,56,0 ,17,923,7435268,40,0 ,27,4733,95240,22,8 ,3,28,619528,10,3 ,27,4606,95248,24,8 ,3,28,619536,8,3 ,27,2182,95256,24,8 ,3,28,619544,13,4 ,27,4733,95264,22,8 ,3,28,619552,11,4 ,20,21222,15823906,116,0 ,27,4606,95272,24,8 ,3,28,619560,10,3 ,27,2182,95280,24,8 ,3,28,619568,8,3 ,27,4482,95288,26,8 ,3,28,619576,59662,32771 ,27,1309,95296,26,8 ,3,28,619584,10,4 ,20,25135,25261122,60,0 ,17,923,10056772,16,0 ,17,923,7959620,24,0 ,44,15152,2716740,24,0 ,44,15152,2192452,112,0 ,44,15152,3241028,40,0 ,44,15152,3765316,104,0 ,17,923,8483908,48,0 ,27,1240,95304,26,8 ,3,28,619592,4,1 ,27,4733,95312,22,8 ,3,28,619600,20,9 ,27,4606,95320,24,8 ,3,28,619608,28,13 ,27,8320,95328,20,8 ,3,28,619616,6,2 ,20,23568,21066850,36,0 ,27,8319,95336,24,8 ,3,28,619624,6,2 ,27,2182,95344,24,8 ,3,28,619632,6,2 ,27,8321,95352,24,8 ,3,28,619640,7,2 ,27,8319,95360,23,8 ,3,28,619648,10,4 ,17,923,95363,16,0 ,17,923,9532548,32,0 ,44,15152,1143940,128,0 ,27,4733,95368,22,8 ,3,28,619656,18,7 ,27,4606,95376,24,8 ,3,28,619664,6,2 ,27,8278,95384,22,8 ,3,28,619672,6,2 ,27,4733,95392,22,8 ,3,28,619680,7,2 ,20,20519,13202594,440,0 ,27,4606,95400,24,8 ,3,28,619688,8,3 ,27,4733,95408,22,8 ,3,28,619696,28,13 ,27,4606,95416,24,8 ,3,28,619704,6,2 ,27,4298,95424,22,8 ,3,28,619712,6,2 ,17,923,10056900,16,0 ,27,4002,95432,22,8 ,3,28,619720,6,2 ,27,4000,95440,22,8 ,3,28,619728,7,2 ,27,4001,95448,22,8 ,3,28,619736,10,4 ,27,4481,95456,22,8 ,3,28,619744,26,13 ,27,4482,95464,24,8 ,3,28,619752,7,2 ,27,8327,95472,23,8 ,3,28,619760,60,35 ,27,4294,95480,22,8 ,3,28,619768,39,18 ,27,4288,95488,22,8 ,3,28,619776,7,2 ,20,22536,18969858,24,0 ,20,15213,95490,12,0 ,17,923,95491,16,0 ,17,923,9008388,32,0 ,17,923,7959812,64,0 ,17,923,6911236,48,0 ,44,15152,2716932,48,0 ,44,15152,619780,24,0 ,27,5825,95496,24,8 ,3,28,619784,6,2 ,27,5350,95504,24,8 ,3,28,619792,17,7 ,27,5826,95512,24,8 ,3,28,619800,6,2 ,27,4467,95520,26,8 ,3,28,619808,4,1 ,20,19958,11105570,416,0 ,20,25911,27358498,68,0 ,20,25495,26309922,1192,0 ,27,4463,95528,22,8 ,3,28,619816,7,2 ,27,4321,95536,22,8 ,3,28,619824,111,67 ,27,8329,95544,24,8 ,3,28,619832,78,38 ,27,8330,95552,24,8 ,3,28,619840,11,4 ,17,923,10057028,16,0 ,17,923,7435588,40,0 ,27,8331,95560,24,8 ,3,28,619848,6,2 ,27,8332,95568,24,8 ,3,28,619856,1882,1027 ,27,8333,95576,23,8 ,3,28,619864,4,1 ,27,4463,95584,22,8 ,3,28,619872,22,10 ,20,15214,95586,980,0 ,27,4047,95592,22,8 ,3,28,619880,18,7 ,27,5125,95600,22,8 ,3,28,619888,6,2 ,27,8337,95608,22,8 ,3,28,619896,6,2 ,27,8338,95616,22,8 ,3,28,619904,4,1 ,20,23569,21067138,84,0 ,17,923,95619,32,0 ,17,923,9532804,32,0 ,17,923,6387076,40,0 ,44,15152,95620,40,0 ,44,15152,3241348,48,0 ,27,8339,95624,25,8 ,3,28,619912,34,16 ,27,4733,95632,22,8 ,3,28,619920,4,1 ,27,4606,95640,24,8 ,3,28,619928,14,6 ,27,8344,95648,22,8 ,3,28,619936,4,1 ,27,8345,95656,22,8 ,3,28,619944,8,3 ,27,2363,95664,22,8 ,3,28,619952,4,1 ,27,2366,95672,22,8 ,3,28,619960,8,3 ,27,8346,95680,22,8 ,3,28,619968,4,1 ,20,22537,18970050,24,0 ,20,17122,4814274,180,0 ,17,923,10057156,16,0 ,44,15152,619972,24,0 ,45,15153,4289988,152,0 ,17,923,8484292,56,0 ,27,4456,95688,25,8 ,3,28,619976,10,4 ,27,4456,95696,26,8 ,3,28,619984,4,1 ,27,4461,95704,21,8 ,3,28,619992,60,35 ,27,4460,95712,26,8 ,3,28,620000,40,19 ,20,23919,22115810,60,0 ,27,4832,95720,24,8 ,3,28,620008,4,1 ,27,2371,95728,22,8 ,3,28,620016,7,2 ,27,8347,95736,22,8 ,3,28,620024,15,6 ,27,8348,95744,22,8 ,3,28,620032,28,13 ,20,18009,6911490,136,0 ,17,923,9008644,32,0 ,27,8349,95752,22,8 ,3,28,620040,6,2 ,27,4463,95760,22,8 ,3,28,620048,6,2 ,27,4460,95768,25,8 ,3,28,620056,6,2 ,27,4838,95776,22,8 ,3,28,620064,478,259 ,20,24331,23164450,128,0 ,20,25136,25261602,312,0 ,27,4047,95784,22,8 ,3,28,620072,7,2 ,27,4294,95792,22,8 ,3,28,620080,10,3 ,27,8350,95800,22,8 ,3,28,620088,118,67 ,27,8351,95808,22,8 ,3,28,620096,92,45 ,17,923,10057284,16,0 ,45,15153,5338692,16,0 ,27,8352,95816,24,8 ,3,28,620104,8068,4099 ,27,4466,95824,21,8 ,3,28,620112,4,1 ,27,8353,95832,22,8 ,3,28,620120,14,6 ,27,8354,95840,22,8 ,3,28,620128,11,4 ,27,4468,95848,25,8 ,3,28,620136,6,2 ,27,4468,95856,26,8 ,3,28,620144,4,1 ,27,4470,95864,24,8 ,3,28,620152,24,11 ,27,4474,95872,21,8 ,3,28,620160,102,49 ,20,22538,18970242,24,0 ,20,22258,18445954,140,0 ,17,923,95875,24,0 ,17,923,9533060,64,0 ,17,923,7435908,32,0 ,17,923,6911620,40,0 ,44,15152,2717316,24,0 ,44,15152,620164,24,0 ,45,15153,4814468,32,0 ,27,4473,95880,26,8 ,3,28,620168,6,2 ,27,4476,95888,21,8 ,3,28,620176,7,2 ,27,4840,95896,22,8 ,3,28,620184,8,3 ,27,4473,95904,25,8 ,3,28,620192,6,3 ,27,8137,95912,22,8 ,3,28,620200,6,2 ,27,8355,95920,25,8 ,3,28,620208,7,2 ,27,4832,95928,26,8 ,3,28,620216,8,3 ,27,4733,95936,22,8 ,3,28,620224,6,3 ,20,17340,5338818,184,0 ,17,923,10057412,16,0 ,17,923,6387396,32,0 ,44,15152,95940,24,0 ,45,15153,5338820,16,0 ,27,4606,95944,24,8 ,3,28,620232,8,3 ,27,4733,95952,22,8 ,3,28,620240,7,2 ,27,4606,95960,24,8 ,3,28,620248,6,2 ,27,4733,95968,22,8 ,3,28,620256,6,2 ,27,4606,95976,24,8 ,3,28,620264,6,2 ,27,8360,95984,24,8 ,3,28,620272,6,2 ,27,7090,95992,22,8 ,3,28,620280,6,2 ,27,4733,96000,22,8 ,3,28,620288,6,2 ,17,923,9008900,24,0 ,17,923,7960324,24,0 ,44,15152,3241732,24,0 ,27,4606,96008,24,8 ,3,28,620296,7,2 ,27,579,96016,22,8 ,3,28,620304,116,67 ,27,579,96024,23,8 ,3,28,620312,86,41 ,27,1062,96032,21,8 ,3,28,620320,43,25 ,20,19695,10581794,284,0 ,27,4298,96040,22,8 ,3,28,620328,7,2 ,27,4002,96048,22,8 ,3,28,620336,22,7 ,27,4000,96056,22,8 ,3,28,620344,71,35 ,27,4001,96064,22,8 ,3,28,620352,49,17 ,20,22539,18970434,548,0 ,20,25912,27359042,68,0 ,17,923,96067,16,0 ,17,923,10057540,16,0 ,44,15152,2717508,48,0 ,44,15152,620356,24,0 ,45,15153,5338948,32,0 ,27,4793,96072,24,8 ,3,28,620360,4,1 ,27,1374,96080,22,8 ,3,28,620368,10,4 ,27,4794,96088,22,8 ,3,28,620376,14,5 ,27,1380,96096,22,8 ,3,28,620384,4,1 ,20,26280,28407650,676,0 ,27,1403,96104,24,8 ,3,28,620392,7,2 ,27,4795,96112,24,8 ,3,28,620400,37,15 ,27,8364,96120,23,8 ,3,28,620408,8,3 ,27,4797,96128,22,8 ,3,28,620416,8,3 ,17,923,8484740,40,0 ,17,923,7436164,40,0 ,44,15152,96132,120,0 ,44,15152,3766148,216,0 ,45,15153,4814724,32,0 ,27,4798,96136,26,8 ,3,28,620424,21,6 ,27,6717,96144,24,8 ,3,28,620432,18,5 ,27,8366,96152,23,8 ,3,28,620440,18,5 ,27,4460,96160,25,8 ,3,28,620448,94,31 ,20,19361,10057634,212,0 ,20,24895,24737698,236,0 ,27,4460,96168,26,8 ,3,28,620456,76,25 ,27,4294,96176,22,8 ,3,28,620464,948,315 ,27,8370,96184,25,8 ,3,28,620472,106,35 ,27,4466,96192,21,8 ,3,28,620480,473,157 ,20,23920,22116290,60,0 ,20,21223,15824834,280,0 ,17,923,96195,16,0 ,17,923,10057668,16,0 ,17,923,7960516,24,0 ,17,923,6911940,56,0 ,17,923,6387652,48,0 ,44,15152,2193348,72,0 ,44,15152,3241924,24,0 ,17,923,9009092,24,0 ,27,4456,96200,26,8 ,3,28,620488,702,233 ,27,8371,96208,24,8 ,3,28,620496,1608,535 ,27,4468,96216,25,8 ,3,28,620504,1608,535 ,27,4468,96224,26,8 ,3,28,620512,130,43 ,27,8372,96232,24,8 ,3,28,620520,10,3 ,27,4456,96240,25,8 ,3,28,620528,10,3 ,27,8373,96248,24,8 ,3,28,620536,40,13 ,27,4461,96256,21,8 ,3,28,620544,251,89 ,20,25348,25786370,148,0 ,44,15152,620548,16,0 ,27,4474,96264,21,8 ,3,28,620552,690,229 ,27,4473,96272,26,8 ,3,28,620560,1386,461 ,27,4467,96280,26,8 ,3,28,620568,64,21 ,27,4476,96288,21,8 ,3,28,620576,4,1 ,20,23570,21067810,116,0 ,27,4478,96296,24,8 ,3,28,620584,64,21 ,27,5366,96304,22,8 ,3,28,620592,1290,429 ,27,4473,96312,25,8 ,3,28,620600,34,11 ,27,4321,96320,22,8 ,3,28,620608,58,19 ,20,20735,13727810,472,0 ,20,26399,28932162,52,0 ,20,20155,11630658,1208,0 ,17,923,96323,24,0 ,17,923,10057796,16,0 ,45,15153,5339204,24,0 ,27,4463,96328,22,8 ,3,28,620616,1632,543 ,27,8375,96336,24,8 ,3,28,620624,118,39 ,27,3474,96344,26,8 ,3,28,620632,1098,365 ,27,4707,96352,24,8 ,3,28,620640,1386,461 ,27,8392,96360,22,8 ,3,28,620648,1374,457 ,27,8386,96368,25,8 ,3,28,620656,100,33 ,27,8381,96376,24,8 ,3,28,620664,118,39 ,27,8382,96384,24,8 ,3,28,620672,726,241 ,17,923,9533572,48,0 ,17,923,7960708,24,0 ,44,15152,620676,40,0 ,44,15152,1144964,48,0 ,44,15152,3242116,24,0 ,45,15153,4814980,40,0 ,17,923,9009284,32,0 ,27,8383,96392,24,8 ,3,28,620680,46,15 ,27,8389,96400,21,8 ,3,28,620688,23,8 ,27,163,96408,24,8 ,3,28,620696,53,18 ,27,8391,96416,26,8 ,3,28,620704,23,8 ,27,8393,96424,24,8 ,3,28,620712,28,10 ,27,8394,96432,23,8 ,3,28,620720,41,14 ,27,8392,96440,22,8 ,3,28,620728,29,10 ,27,8397,96448,24,8 ,3,28,620736,23,8 ,20,21535,16349378,92,0 ,17,923,10057924,16,0 ,17,923,7436484,40,0 ,44,15152,2717892,24,0 ,17,923,8485060,56,0 ,27,8398,96456,23,8 ,3,28,620744,23,8 ,27,8402,96464,24,8 ,3,28,620752,29,10 ,27,8400,96472,23,8 ,3,28,620760,35,12 ,27,8403,96480,25,8 ,3,28,620768,53,18 ,20,21962,17397986,124,0 ,27,8404,96488,24,8 ,3,28,620776,17,6 ,27,8405,96496,24,8 ,3,28,620784,23,8 ,27,8408,96504,25,8 ,3,28,620792,23,8 ,27,8407,96512,22,8 ,3,28,620800,29,10 ,17,923,96515,16,0 ,45,15153,5339396,24,0 ,27,8409,96520,23,8 ,3,28,620808,35,12 ,27,8410,96528,22,8 ,3,28,620816,28,10 ,27,8414,96536,24,8 ,3,28,620824,29,10 ,27,8416,96544,24,8 ,3,28,620832,41,14 ,27,4707,96552,24,8 ,3,28,620840,41,14 ,27,5995,96560,24,8 ,3,28,620848,53,18 ,27,1729,96568,24,8 ,3,28,620856,29,10 ,27,8418,96576,26,8 ,3,28,620864,35,12 ,17,923,10058052,16,0 ,17,923,7960900,24,0 ,17,923,6388036,48,0 ,44,15152,3242308,112,0 ,27,8419,96584,24,8 ,3,28,620872,29,10 ,27,6044,96592,24,8 ,3,28,620880,35,12 ,27,4768,96600,24,8 ,3,28,620888,23,8 ,27,4752,96608,26,8 ,3,28,620896,71,24 ,20,25913,27359586,68,0 ,27,4482,96616,26,8 ,3,28,620904,29,10 ,27,6502,96624,22,8 ,3,28,620912,23,8 ,27,8423,96632,23,8 ,3,28,620920,23,8 ,27,6502,96640,22,8 ,3,28,620928,41,14 ,17,923,96643,32,0 ,17,923,9009540,32,0 ,17,923,6912388,48,0 ,44,15152,2718084,24,0 ,27,8426,96648,23,8 ,3,28,620936,23,8 ,27,6502,96656,22,8 ,3,28,620944,23,8 ,27,8428,96664,23,8 ,3,28,620952,23,8 ,27,6502,96672,22,8 ,3,28,620960,29,10 ,20,23921,22116770,60,0 ,27,8430,96680,23,8 ,3,28,620968,35,12 ,27,41,96688,23,8 ,3,28,620976,42,13 ,27,2182,96696,24,8 ,3,28,620984,35,12 ,27,2312,96704,22,8 ,3,28,620992,41,14 ,20,16322,3242434,52,0 ,17,923,10058180,16,0 ,44,15152,620996,64,0 ,45,15153,4815300,40,0 ,45,15153,5339588,40,0 ,27,4748,96712,22,8 ,3,28,621000,41,14 ,27,8445,96720,24,8 ,3,28,621008,29,10 ,27,8446,96728,22,8 ,3,28,621016,35,12 ,27,8447,96736,24,8 ,3,28,621024,23,8 ,20,26400,28932578,252,0 ,27,8448,96744,24,8 ,3,28,621032,82,28 ,27,8449,96752,24,8 ,3,28,621040,23,8 ,27,8451,96760,26,8 ,3,28,621048,23,8 ,27,8452,96768,24,8 ,3,28,621056,22,8 ,20,26111,27884034,52,0 ,17,923,9533956,24,0 ,17,923,7961092,24,0 ,17,923,7436804,40,0 ,44,15152,2193924,16,0 ,44,15152,1145348,56,0 ,27,4752,96776,24,8 ,3,28,621064,65,22 ,27,8456,96784,20,8 ,3,28,621072,41,14 ,27,8455,96792,24,8 ,3,28,621080,23,8 ,27,2182,96800,24,8 ,3,28,621088,167,56 ,20,24332,23165474,12,0 ,20,21808,16874018,644,0 ,27,8455,96808,23,8 ,3,28,621096,29,10 ,27,5225,96816,22,8 ,3,28,621104,23,8 ,27,4618,96824,22,8 ,3,28,621112,23,8 ,27,8457,96832,22,8 ,3,28,621120,23,8 ,20,1008,96833,272,0 ,20,18010,6912578,12,0 ,17,923,10058308,16,0 ,44,15152,2718276,24,0 ,27,4752,96840,24,8 ,3,28,621128,23,8 ,27,4663,96848,22,8 ,3,28,621136,29,10 ,27,2312,96856,22,8 ,3,28,621144,29,10 ,27,8458,96864,24,8 ,3,28,621152,23,8 ,27,8459,96872,22,8 ,3,28,621160,29,10 ,27,8458,96880,24,8 ,3,28,621168,23,8 ,27,4748,96888,22,8 ,3,28,621176,23,8 ,27,8460,96896,24,8 ,3,28,621184,47,16 ,20,24333,23165570,256,0 ,20,23307,20544130,516,0 ,17,923,96899,24,0 ,17,923,9009796,32,0 ,44,15152,2194052,64,0 ,45,15153,4291204,16,0 ,17,923,8485508,48,0 ,27,4768,96904,24,8 ,3,28,621192,35,12 ,27,2182,96912,24,8 ,3,28,621200,29,10 ,27,4768,96920,24,8 ,3,28,621208,17,6 ,27,4482,96928,26,8 ,3,28,621216,29,10 ,20,18011,6912674,384,0 ,27,4000,96936,22,8 ,3,28,621224,23,8 ,27,8470,96944,22,8 ,3,28,621232,23,8 ,27,8471,96952,24,8 ,3,28,621240,41,14 ,27,8472,96960,22,8 ,3,28,621248,23,8 ,17,923,10058436,16,0 ,17,923,7961284,32,0 ,17,923,6388420,48,0 ,17,923,9534148,40,0 ,27,8474,96968,24,8 ,3,28,621256,23,8 ,27,8475,96976,22,8 ,3,28,621264,29,10 ,27,6048,96984,24,8 ,3,28,621272,29,10 ,27,8397,96992,24,8 ,3,28,621280,34,12 ,20,22259,18447074,280,0 ,20,22024,17922786,804,0 ,27,8476,97000,24,8 ,3,28,621288,35,12 ,27,8477,97008,22,8 ,3,28,621296,35,12 ,27,8478,97016,24,8 ,3,28,621304,29,10 ,27,6045,97024,24,8 ,3,28,621312,23,8 ,45,15153,5339908,64,0 ,17,923,6912772,48,0 ,44,15152,2718468,32,0 ,45,15153,4291332,16,0 ,45,15153,4815620,32,0 ,27,8479,97032,22,8 ,3,28,621320,35,12 ,27,8481,97040,27,8 ,3,28,621328,29,10 ,27,8482,97048,24,8 ,3,28,621336,41,14 ,27,8483,97056,24,8 ,3,28,621344,28,10 ,27,8484,97064,24,8 ,3,28,621352,29,10 ,27,2312,97072,22,8 ,3,28,621360,29,10 ,27,8485,97080,22,8 ,3,28,621368,17,6 ,27,8486,97088,24,8 ,3,28,621376,35,12 ,17,923,97091,32,0 ,17,923,10058564,16,0 ,17,923,7437124,40,0 ,44,15152,97092,40,0 ,27,8489,97096,24,8 ,3,28,621384,35,12 ,27,8490,97104,24,8 ,3,28,621392,28,10 ,27,8470,97112,22,8 ,3,28,621400,17,6 ,27,8492,97120,20,8 ,3,28,621408,23,8 ,20,17123,4815714,60,0 ,20,16323,3242850,108,0 ,27,8491,97128,24,8 ,3,28,621416,29,10 ,27,8491,97136,23,8 ,3,28,621424,41,14 ,27,8493,97144,22,8 ,3,28,621432,29,10 ,27,8494,97152,22,8 ,3,28,621440,59,20 ,20,23922,22117250,60,0 ,20,25914,27360130,240,0 ,17,923,9010052,40,0 ,45,15153,4291460,80,0 ,27,8495,97160,22,8 ,3,28,621448,29,10 ,27,8496,97168,20,8 ,3,28,621456,53,18 ,27,8497,97176,22,8 ,3,28,621464,29,10 ,27,8498,97184,20,8 ,3,28,621472,23,8 ,20,21536,16350114,4040,0 ,20,26112,27884450,104,0 ,20,15349,621474,12,0 ,27,8499,97192,22,8 ,3,28,621480,35,12 ,27,41,97200,23,8 ,3,28,621488,83,28 ,27,41,97208,23,8 ,3,28,621496,35,11 ,27,3276,97216,21,8 ,3,28,621504,29,10 ,20,23571,21068738,24,0 ,17,923,10058692,16,0 ,17,923,7961540,24,0 ,44,15152,621508,416,0 ,44,15152,1145796,24,0 ,27,8680,97224,24,8 ,3,28,621512,23,8 ,27,2312,97232,22,8 ,3,28,621520,41,14 ,27,3277,97240,22,8 ,3,28,621528,17,6 ,27,8680,97248,23,8 ,3,28,621536,17,6 ,27,3287,97256,26,8 ,3,28,621544,23,8 ,27,8512,97264,24,8 ,3,28,621552,29,10 ,27,8513,97272,23,8 ,3,28,621560,35,12 ,27,295,97280,23,8 ,3,28,621568,23,8 ,20,15350,621570,296,0 ,17,923,9534468,32,0 ,44,15152,2718724,32,0 ,45,15153,4815876,80,0 ,17,923,8485892,48,0 ,27,812,97288,23,8 ,3,28,621576,35,12 ,27,1562,97296,26,8 ,3,28,621584,17,6 ,27,4482,97304,26,8 ,3,28,621592,23,8 ,27,41,97312,23,8 ,3,28,621600,29,10 ,27,4611,97320,24,8 ,3,28,621608,23,8 ,27,295,97328,23,8 ,3,28,621616,29,10 ,27,812,97336,23,8 ,3,28,621624,23,8 ,27,1565,97344,24,8 ,3,28,621632,23,8 ,17,923,97347,24,0 ,17,923,10058820,16,0 ,17,923,6388804,40,0 ,27,8521,97352,25,8 ,3,28,621640,23,8 ,27,1707,97360,26,8 ,3,28,621648,23,8 ,27,4711,97368,22,8 ,3,28,621656,41,14 ,27,4632,97376,24,8 ,3,28,621664,23,8 ,27,8523,97384,23,8 ,3,28,621672,17,6 ,27,4663,97392,22,8 ,3,28,621680,23,8 ,27,2312,97400,22,8 ,3,28,621688,23,8 ,27,4618,97408,22,8 ,3,28,621696,6,1 ,20,23572,21068930,24,0 ,20,17341,5340290,76,0 ,44,15152,1145988,320,0 ,17,923,7961732,32,0 ,17,923,7437444,40,0 ,17,923,6913156,40,0 ,44,15152,2194564,40,0 ,44,15152,97412,24,0 ,27,5225,97416,22,8 ,3,28,621704,29,10 ,27,4748,97424,22,8 ,3,28,621712,23,8 ,27,4632,97432,24,8 ,3,28,621720,27,8 ,27,4656,97440,22,8 ,3,28,621728,35,12 ,20,25349,25787554,112,0 ,27,4298,97448,22,8 ,3,28,621736,29,10 ,27,4626,97456,22,8 ,3,28,621744,23,8 ,27,4679,97464,22,8 ,3,28,621752,29,10 ,27,4628,97472,22,8 ,3,28,621760,35,12 ,20,21963,17398978,9776,0 ,20,16677,3767490,48,0 ,17,923,10058948,16,0 ,44,15152,3243204,16,0 ,17,923,9010372,40,0 ,27,1034,97480,24,8 ,3,28,621768,29,10 ,27,579,97488,22,8 ,3,28,621776,23,8 ,27,579,97496,23,8 ,3,28,621784,23,8 ,27,1062,97504,21,8 ,3,28,621792,29,10 ,20,18930,9010402,88,0 ,27,8529,97512,20,8 ,3,28,621800,12,3 ,27,8528,97520,24,8 ,3,28,621808,83,28 ,27,1374,97528,22,8 ,3,28,621816,47,16 ,27,8530,97536,23,8 ,3,28,621824,65,22 ,17,923,97539,24,0 ,17,923,9534724,24,0 ,44,15152,2718980,32,0 ,45,15153,5340420,112,0 ,27,8530,97544,24,8 ,3,28,621832,29,10 ,27,8531,97552,22,8 ,3,28,621840,29,10 ,27,8528,97560,23,8 ,3,28,621848,23,8 ,27,4628,97568,22,8 ,3,28,621856,23,8 ,27,8533,97576,22,8 ,3,28,621864,23,8 ,27,8534,97584,23,8 ,3,28,621872,23,8 ,27,4627,97592,22,8 ,3,28,621880,23,8 ,27,2182,97600,24,8 ,3,28,621888,23,8 ,20,23573,21069122,24,0 ,20,17124,4816194,152,0 ,17,923,10059076,16,0 ,44,15152,97604,32,0 ,44,15152,3243332,40,0 ,27,8536,97608,23,8 ,3,28,621896,29,10 ,27,4611,97616,24,8 ,3,28,621904,29,10 ,27,8278,97624,22,8 ,3,28,621912,29,10 ,27,4733,97632,22,8 ,3,28,621920,29,10 ,20,23923,22117730,224,0 ,27,8539,97640,23,8 ,3,28,621928,23,8 ,27,4611,97648,24,8 ,3,28,621936,35,12 ,27,4711,97656,22,8 ,3,28,621944,23,8 ,27,4641,97664,21,8 ,3,28,621952,23,8 ,17,923,8486276,40,0 ,17,923,7961988,40,0 ,17,923,6389124,40,0 ,27,8542,97672,21,8 ,3,28,621960,29,10 ,27,8543,97680,22,8 ,3,28,621968,41,14 ,27,8544,97688,22,8 ,3,28,621976,29,10 ,27,4669,97696,22,8 ,3,28,621984,23,8 ,20,20878,14253474,4420,0 ,27,41,97704,23,8 ,3,28,621992,23,8 ,27,41,97712,23,8 ,3,28,622000,12,3 ,27,4673,97720,21,8 ,3,28,622008,18,5 ,27,4668,97728,21,8 ,3,28,622016,18,5 ,17,923,97731,32,0 ,17,923,10059204,16,0 ,17,923,7437764,40,0 ,17,923,6913476,40,0 ,44,15152,2194884,24,0 ,17,923,9534916,16,0 ,27,4611,97736,24,8 ,3,28,622024,20,8 ,27,4482,97744,26,8 ,3,28,622032,27,8 ,27,4635,97752,22,8 ,3,28,622040,27,8 ,27,4636,97760,22,8 ,3,28,622048,42,13 ,27,4637,97768,22,8 ,3,28,622056,42,13 ,27,4627,97776,22,8 ,3,28,622064,30,13 ,27,4628,97784,22,8 ,3,28,622072,12,3 ,27,4656,97792,22,8 ,3,28,622080,12,3 ,20,23574,21069314,68,0 ,17,923,9010692,48,0 ,44,15152,2719236,24,0 ,45,15153,4292100,24,0 ,27,4298,97800,22,8 ,3,28,622088,23,8 ,27,4632,97808,24,8 ,3,28,622096,35,12 ,27,8550,97816,23,8 ,3,28,622104,23,8 ,27,4611,97824,24,8 ,3,28,622112,47,16 ,27,8556,97832,22,8 ,3,28,622120,23,8 ,27,8558,97840,20,8 ,3,28,622128,29,10 ,27,8557,97848,24,8 ,3,28,622136,34,12 ,27,8557,97856,23,8 ,3,28,622144,28,10 ,20,19362,10059330,528,0 ,20,16678,3767874,12,0 ,17,923,10059332,16,0 ,44,15152,97860,120,0 ,44,15152,3767876,24,0 ,17,923,9535044,40,0 ,27,8559,97864,22,8 ,3,28,622152,29,10 ,27,8560,97872,22,8 ,3,28,622160,29,10 ,27,8563,97880,24,8 ,3,28,622168,23,8 ,27,8565,97888,20,8 ,3,28,622176,40,14 ,27,8564,97896,24,8 ,3,28,622184,41,14 ,27,8561,97904,23,8 ,3,28,622192,23,8 ,27,8566,97912,24,8 ,3,28,622200,23,8 ,27,8567,97920,22,8 ,3,28,622208,41,14 ,45,15153,4816516,32,0 ,44,15152,2195076,16,0 ,44,15152,3243652,40,0 ,27,4378,97928,23,8 ,3,28,622216,22,8 ,27,8564,97936,23,8 ,3,28,622224,29,10 ,27,8568,97944,23,8 ,3,28,622232,23,8 ,27,8568,97952,24,8 ,3,28,622240,35,12 ,20,16679,3767970,172,0 ,27,8570,97960,22,8 ,3,28,622248,41,14 ,27,8569,97968,22,8 ,3,28,622256,47,16 ,27,8571,97976,20,8 ,3,28,622264,35,12 ,27,8560,97984,22,8 ,3,28,622272,125,42 ,20,16324,3243714,12,0 ,17,923,97987,16,0 ,17,923,10059460,16,0 ,17,923,7962308,40,0 ,17,923,6389444,24,0 ,44,15152,2719428,40,0 ,45,15153,4292292,56,0 ,17,923,8486596,24,0 ,27,8572,97992,22,8 ,3,28,622280,29,10 ,27,8585,98000,24,8 ,3,28,622288,23,8 ,27,8573,98008,24,8 ,3,28,622296,23,8 ,27,579,98016,22,8 ,3,28,622304,35,12 ,20,17342,5340898,628,0 ,20,26113,27885282,396,0 ,27,579,98024,23,8 ,3,28,622312,23,8 ,27,1062,98032,21,8 ,3,28,622320,23,8 ,27,8577,98040,22,8 ,3,28,622328,23,8 ,27,8578,98048,22,8 ,3,28,622336,35,12 ,20,24896,24739586,388,0 ,44,15152,3768068,24,0 ,17,923,7438084,32,0 ,17,923,6913796,48,0 ,44,15152,2195204,32,0 ,27,8579,98056,22,8 ,3,28,622344,23,8 ,27,8580,98064,24,8 ,3,28,622352,23,8 ,27,8581,98072,22,8 ,3,28,622360,17,6 ,27,41,98080,23,8 ,3,28,622368,29,10 ,20,16325,3243810,72,0 ,27,1697,98088,24,8 ,3,28,622376,29,10 ,27,623,98096,23,8 ,3,28,622384,23,8 ,27,1028,98104,24,8 ,3,28,622392,23,8 ,27,1040,98112,24,8 ,3,28,622400,29,10 ,20,18200,7438146,732,0 ,17,923,98115,16,0 ,17,923,10059588,16,0 ,27,1025,98120,24,8 ,3,28,622408,6,1 ,27,8582,98128,23,8 ,3,28,622416,23,8 ,27,8584,98136,24,8 ,3,28,622424,35,12 ,27,8587,98144,20,8 ,3,28,622432,17,6 ,27,8586,98152,24,8 ,3,28,622440,23,8 ,27,3972,98160,22,8 ,3,28,622448,17,6 ,27,8588,98168,21,8 ,3,28,622456,35,12 ,27,8589,98176,20,8 ,3,28,622464,23,8 ,17,923,9535364,24,0 ,17,923,6389636,48,0 ,45,15153,4816772,96,0 ,17,923,8486788,32,0 ,17,923,9011076,40,0 ,27,3991,98184,24,8 ,3,28,622472,23,8 ,27,3991,98192,23,8 ,3,28,622480,23,8 ,27,8591,98200,20,8 ,3,28,622488,23,8 ,27,8590,98208,24,8 ,3,28,622496,12,3 ,20,18931,9011106,112,0 ,27,8590,98216,23,8 ,3,28,622504,42,13 ,27,8592,98224,20,8 ,3,28,622512,42,13 ,27,4589,98232,24,8 ,3,28,622520,18,5 ,27,4589,98240,23,8 ,3,28,622528,95,32 ,20,20239,12681154,248,0 ,17,923,98243,16,0 ,17,923,10059716,16,0 ,44,15152,3243972,176,0 ,44,15152,3768260,24,0 ,27,8594,98248,20,8 ,3,28,622536,35,12 ,27,8593,98256,24,8 ,3,28,622544,29,10 ,27,8593,98264,23,8 ,3,28,622552,23,8 ,27,8590,98272,21,8 ,3,28,622560,23,8 ,20,25137,25264098,60,0 ,27,8586,98280,23,8 ,3,28,622568,47,16 ,27,8595,98288,22,8 ,3,28,622576,47,16 ,27,8596,98296,22,8 ,3,28,622584,6,1 ,27,8602,98304,25,8 ,3,28,622592,29,10 ,20,19696,10584066,192,0 ,44,15152,2195460,32,0 ,17,923,7962628,24,0 ,17,923,7438340,40,0 ,44,15152,2719748,40,0 ,27,8602,98312,26,8 ,3,28,622600,143,48 ,27,8603,98320,24,8 ,3,28,622608,29,10 ,27,8604,98328,22,8 ,3,28,622616,65,22 ,27,8606,98336,20,8 ,3,28,622624,29,10 ,20,23575,21069858,24,0 ,20,25350,25788450,116,0 ,27,8605,98344,24,8 ,3,28,622632,23,8 ,27,8607,98352,23,8 ,3,28,622640,23,8 ,27,8608,98360,23,8 ,3,28,622648,23,8 ,27,3729,98368,22,8 ,3,28,622656,23,8 ,17,923,98371,24,0 ,17,923,10059844,16,0 ,17,923,9535556,24,0 ,27,8615,98376,22,8 ,3,28,622664,23,8 ,27,8614,98384,26,8 ,3,28,622672,29,10 ,27,4635,98392,22,8 ,3,28,622680,23,8 ,27,4636,98400,22,8 ,3,28,622688,23,8 ,20,24513,23691362,668,0 ,27,4637,98408,22,8 ,3,28,622696,23,8 ,27,4631,98416,24,8 ,3,28,622704,23,8 ,27,8609,98424,22,8 ,3,28,622712,23,8 ,27,4626,98432,22,8 ,3,28,622720,29,10 ,20,21224,15827074,304,0 ,20,16103,2195586,1092,0 ,17,923,8487044,32,0 ,17,923,6914180,40,0 ,44,15152,3768452,24,0 ,45,15153,4292740,24,0 ,45,15153,5341316,96,0 ,27,4627,98440,22,8 ,3,28,622728,41,14 ,27,4628,98448,22,8 ,3,28,622736,23,8 ,27,4656,98456,22,8 ,3,28,622744,23,8 ,27,4298,98464,22,8 ,3,28,622752,29,10 ,27,4632,98472,24,8 ,3,28,622760,15,4 ,27,8610,98480,23,8 ,3,28,622768,23,8 ,27,1565,98488,24,8 ,3,28,622776,6,1 ,27,4733,98496,22,8 ,3,28,622784,23,8 ,17,923,10059972,16,0 ,17,923,7962820,24,0 ,17,923,9011396,40,0 ,27,4606,98504,24,8 ,3,28,622792,23,8 ,27,4611,98512,24,8 ,3,28,622800,41,14 ,27,8612,98520,23,8 ,3,28,622808,23,8 ,27,4482,98528,26,8 ,3,28,622816,29,10 ,20,23576,21070050,24,0 ,27,8616,98536,20,8 ,3,28,622824,29,10 ,27,3980,98544,23,8 ,3,28,622832,23,8 ,27,3980,98552,24,8 ,3,28,622840,23,8 ,27,8617,98560,22,8 ,3,28,622848,23,8 ,17,923,98563,24,0 ,17,923,9535748,40,0 ,17,923,6390020,40,0 ,44,15152,2195716,24,0 ,27,8618,98568,20,8 ,3,28,622856,24,7 ,27,3972,98576,22,8 ,3,28,622864,23,8 ,27,8619,98584,23,8 ,3,28,622872,23,8 ,27,8619,98592,24,8 ,3,28,622880,9,2 ,27,8620,98600,20,8 ,3,28,622888,6,1 ,27,8605,98608,23,8 ,3,28,622896,35,12 ,27,2641,98616,22,8 ,3,28,622904,23,8 ,27,8623,98624,22,8 ,3,28,622912,29,10 ,17,923,10060100,16,0 ,17,923,7438660,40,0 ,44,15152,2720068,32,0 ,44,15152,3768644,24,0 ,45,15153,4292932,64,0 ,27,8624,98632,22,8 ,3,28,622920,17,6 ,27,8624,98640,22,8 ,3,28,622928,17,6 ,27,3696,98648,24,8 ,3,28,622936,29,10 ,27,8626,98656,22,8 ,3,28,622944,41,14 ,20,16326,3244386,120,0 ,27,3723,98664,23,8 ,3,28,622952,23,8 ,27,3972,98672,22,8 ,3,28,622960,23,8 ,27,8627,98680,23,8 ,3,28,622968,23,8 ,27,3517,98688,22,8 ,3,28,622976,23,8 ,20,15615,1147266,84,0 ,17,923,8487300,56,0 ,17,923,7963012,72,0 ,27,3517,98696,22,8 ,3,28,622984,21,6 ,27,4314,98704,21,8 ,3,28,622992,608,201 ,27,4295,98712,24,8 ,3,28,623000,595,200 ,27,3993,98720,21,8 ,3,28,623008,17,6 ,20,23577,21070242,24,0 ,27,3992,98728,24,8 ,3,28,623016,17,6 ,27,8631,98736,20,8 ,3,28,623024,17,6 ,27,8633,98744,21,8 ,3,28,623032,12,3 ,27,8632,98752,24,8 ,3,28,623040,21,6 ,20,25138,25264578,144,0 ,20,26401,28934594,348,0 ,17,923,98755,32,0 ,17,923,10060228,16,0 ,17,923,6914500,24,0 ,44,15152,2195908,40,0 ,27,4295,98760,23,8 ,3,28,623048,12,3 ,27,3992,98768,23,8 ,3,28,623056,33,10 ,27,8632,98776,23,8 ,3,28,623064,12,3 ,27,8634,98784,22,8 ,3,28,623072,24,7 ,27,8639,98792,22,8 ,3,28,623080,23,8 ,27,8636,98800,23,8 ,3,28,623088,23,8 ,27,8638,98808,20,8 ,3,28,623096,17,6 ,27,8642,98816,22,8 ,3,28,623104,6,1 ,20,17125,4817410,184,0 ,17,923,9011716,40,0 ,44,15152,98820,24,0 ,44,15152,3768836,136,0 ,27,8643,98824,24,8 ,3,28,623112,23,8 ,27,8644,98832,22,8 ,3,28,623120,35,12 ,27,8645,98840,24,8 ,3,28,623128,23,8 ,27,8646,98848,23,8 ,3,28,623136,23,8 ,20,19959,11108898,292,0 ,27,8646,98856,24,8 ,3,28,623144,23,8 ,27,8647,98864,20,8 ,3,28,623152,6,1 ,27,8649,98872,28,8 ,3,28,623160,29,10 ,27,8634,98880,22,8 ,3,28,623168,23,8 ,17,923,10060356,16,0 ,17,923,6390340,32,0 ,44,15152,2720324,40,0 ,17,923,9536068,32,0 ,27,8652,98888,22,8 ,3,28,623176,23,8 ,27,8654,98896,23,8 ,3,28,623184,35,12 ,27,8654,98904,24,8 ,3,28,623192,23,8 ,27,8659,98912,27,8 ,3,28,623200,23,8 ,20,23578,21070434,24,0 ,20,20520,13206114,160,0 ,27,3301,98920,24,8 ,3,28,623208,23,8 ,27,8660,98928,22,8 ,3,28,623216,23,8 ,27,2706,98936,24,8 ,3,28,623224,17,6 ,27,8661,98944,26,8 ,3,28,623232,17,6 ,20,24334,23167618,52,0 ,45,15153,4817540,24,0 ,17,923,7438980,40,0 ,17,923,6914692,40,0 ,27,8663,98952,21,8 ,3,28,623240,23,8 ,27,8662,98960,24,8 ,3,28,623248,30,9 ,27,2138,98968,26,8 ,3,28,623256,23,8 ,27,8664,98976,21,8 ,3,28,623264,23,8 ,27,3474,98984,21,8 ,3,28,623272,23,8 ,27,3473,98992,28,8 ,3,28,623280,35,12 ,27,8665,99000,22,8 ,3,28,623288,29,10 ,27,1562,99008,24,8 ,3,28,623296,17,6 ,20,1009,99009,56,0 ,17,923,99011,16,0 ,17,923,10060484,16,0 ,44,15152,99012,72,0 ,27,8666,99016,26,8 ,3,28,623304,23,8 ,27,8667,99024,24,8 ,3,28,623312,23,8 ,27,8669,99032,27,8 ,3,28,623320,23,8 ,27,3473,99040,27,8 ,3,28,623328,28,10 ,27,8670,99048,27,8 ,3,28,623336,23,8 ,27,8671,99056,26,8 ,3,28,623344,23,8 ,27,7228,99064,26,8 ,3,28,623352,35,12 ,27,8662,99072,23,8 ,3,28,623360,23,8 ,20,25915,27362050,772,0 ,44,15152,2196228,24,0 ,27,2312,99080,22,8 ,3,28,623368,172,58 ,27,8411,99088,26,8 ,3,28,623376,33,10 ,27,8672,99096,24,8 ,3,28,623384,47,16 ,27,5291,99104,24,8 ,3,28,623392,23,8 ,20,23579,21070626,24,0 ,20,18932,9012002,128,0 ,27,41,99112,23,8 ,3,28,623400,35,12 ,27,3276,99120,21,8 ,3,28,623408,29,10 ,27,3277,99128,22,8 ,3,28,623416,29,10 ,27,1043,99136,24,8 ,3,28,623424,17,6 ,17,923,99139,24,0 ,17,923,10060612,16,0 ,17,923,6390596,40,0 ,45,15153,4293444,16,0 ,45,15153,4817732,24,0 ,17,923,8487748,40,0 ,17,923,9012036,40,0 ,17,923,9536324,24,0 ,27,1118,99144,26,8 ,3,28,623432,17,6 ,27,8684,99152,24,8 ,3,28,623440,23,8 ,27,8688,99160,24,8 ,3,28,623448,23,8 ,27,8689,99168,25,8 ,3,28,623456,29,10 ,27,8689,99176,26,8 ,3,28,623464,23,8 ,27,8690,99184,24,8 ,3,28,623472,6,1 ,27,8691,99192,24,8 ,3,28,623480,17,6 ,27,8691,99200,23,8 ,3,28,623488,23,8 ,45,15153,5342084,40,0 ,44,15152,2720644,56,0 ,27,8694,99208,23,8 ,3,28,623496,17,6 ,27,163,99216,22,8 ,3,28,623504,23,8 ,27,8697,99224,20,8 ,3,28,623512,17,6 ,27,8696,99232,26,8 ,3,28,623520,17,6 ,20,22260,18449314,48,0 ,27,8699,99240,21,8 ,3,28,623528,30,9 ,27,8698,99248,26,8 ,3,28,623536,30,9 ,27,8700,99256,22,8 ,3,28,623544,23,8 ,27,8696,99264,24,8 ,3,28,623552,23,8 ,20,25351,25789378,116,0 ,17,923,10060740,16,0 ,17,923,7963588,32,0 ,17,923,7439300,40,0 ,17,923,6915012,40,0 ,44,15152,2196420,16,0 ,45,15153,4293572,72,0 ,27,8698,99272,25,8 ,3,28,623560,41,14 ,27,8701,99280,23,8 ,3,28,623568,35,12 ,27,8702,99288,23,8 ,3,28,623576,23,8 ,27,8707,99296,24,8 ,3,28,623584,30,9 ,20,23580,21070818,24,0 ,27,8705,99304,21,8 ,3,28,623592,30,9 ,27,8703,99312,22,8 ,3,28,623600,30,9 ,27,8706,99320,23,8 ,3,28,623608,30,9 ,27,41,99328,23,8 ,3,28,623616,23,8 ,20,16680,3769346,148,0 ,17,923,99331,16,0 ,17,923,9536516,32,0 ,45,15153,4817924,24,0 ,27,8713,99336,22,8 ,3,28,623624,30,9 ,27,8715,99344,22,8 ,3,28,623632,30,9 ,27,3978,99352,20,8 ,3,28,623640,23,8 ,27,8717,99360,21,8 ,3,28,623648,29,10 ,20,24335,23168034,24,0 ,20,15616,1147938,140,0 ,27,4832,99368,26,8 ,3,28,623656,15,5 ,27,2182,99376,24,8 ,3,28,623664,23,8 ,27,4309,99384,26,8 ,3,28,623672,75,24 ,27,8730,99392,24,8 ,3,28,623680,17,6 ,17,923,10060868,16,0 ,44,15152,2196548,24,0 ,27,1418,99400,26,8 ,3,28,623688,17,6 ,27,1026,99408,24,8 ,3,28,623696,17,6 ,27,623,99416,23,8 ,3,28,623704,23,8 ,27,8727,99424,24,8 ,3,28,623712,12,3 ,20,23924,22119522,80,0 ,27,8728,99432,24,8 ,3,28,623720,12,3 ,27,1050,99440,24,8 ,3,28,623728,428,141 ,27,1050,99448,24,8 ,3,28,623736,17,6 ,27,623,99456,23,8 ,3,28,623744,15,4 ,20,1010,99457,464,0 ,17,923,99459,16,0 ,17,923,9012356,32,0 ,17,923,6390916,24,0 ,17,923,8488068,32,0 ,27,4832,99464,26,8 ,3,28,623752,21,6 ,27,8746,99472,26,8 ,3,28,623760,27,8 ,27,8732,99480,23,8 ,3,28,623768,17,6 ,27,6142,99488,24,8 ,3,28,623776,29,10 ,20,23581,21071010,24,0 ,27,41,99496,23,8 ,3,28,623784,17,6 ,27,6142,99504,23,8 ,3,28,623792,17,6 ,27,8734,99512,22,8 ,3,28,623800,17,6 ,27,8735,99520,22,8 ,15,1024,623808,3,1 ,17,923,10060996,16,0 ,17,923,7963844,24,0 ,45,15153,4818116,24,0 ,45,15153,5342404,16,0 ,27,8736,99528,24,8 ,15,1025,623816,1,1 ,27,1993,99536,24,8 ,15,1026,623824,1,1 ,27,41,99544,23,8 ,15,1027,623832,1,1 ,27,295,99552,23,8 ,15,1028,623840,1,1 ,20,24336,23168226,128,0 ,27,812,99560,23,8 ,15,1029,623848,1,1 ,27,8739,99568,25,8 ,15,1030,623856,1,1 ,27,8740,99576,23,8 ,15,1031,623864,1,1 ,27,41,99584,23,8 ,15,1032,623872,1,1 ,17,923,99587,16,0 ,17,923,9536772,16,0 ,17,923,7439620,40,0 ,17,923,6915332,40,0 ,44,15152,2196740,40,0 ,44,15152,99588,24,0 ,27,295,99592,23,8 ,15,1033,623880,1,1 ,27,812,99600,23,8 ,15,1034,623888,1,1 ,27,4389,99608,27,8 ,15,1035,623896,1,1 ,27,7322,99616,22,8 ,15,1036,623904,1,1 ,20,22261,18449698,88,0 ,20,16327,3245346,12,0 ,27,7323,99624,22,8 ,15,1037,623912,1,1 ,27,7324,99632,22,8 ,15,1038,623920,1,1 ,27,7325,99640,22,8 ,15,1039,623928,1,1 ,27,7326,99648,22,8 ,15,1040,623936,1,1 ,20,15351,623938,136,0 ,17,923,10061124,16,0 ,17,923,6391108,24,0 ,44,15152,2721092,24,0 ,44,15152,3245380,144,0 ,45,15153,5342532,16,0 ,27,7327,99656,22,8 ,15,1041,623944,1,1 ,27,7680,99664,22,8 ,15,1042,623952,1,1 ,27,7328,99672,24,8 ,15,1043,623960,1,1 ,27,7329,99680,24,8 ,15,1044,623968,1,1 ,20,23582,21071202,24,0 ,27,8749,99688,21,8 ,15,1045,623976,1,1 ,27,8748,99696,24,8 ,15,1046,623984,1,1 ,27,2182,99704,24,8 ,15,1047,623992,1,1 ,27,8750,99712,22,8 ,15,1048,624000,1,1 ,20,16328,3245442,116,0 ,17,923,99715,32,0 ,17,923,9536900,32,0 ,17,923,7964036,64,0 ,45,15153,4818308,16,0 ,17,923,8488324,48,0 ,17,923,9012612,32,0 ,27,8751,99720,22,8 ,15,1049,624008,1,1 ,27,8752,99728,22,8 ,15,1050,624016,1,1 ,27,8748,99736,23,8 ,15,1051,624024,1,1 ,27,8754,99744,26,8 ,15,1052,624032,1,1 ,27,8770,99752,22,8 ,15,1053,624040,1,1 ,27,8768,99760,24,8 ,15,1054,624048,1,1 ,27,8768,99768,24,8 ,15,1055,624056,1,1 ,27,8759,99776,22,8 ,15,1056,624064,1,1 ,17,923,10061252,16,0 ,44,15152,99780,304,0 ,45,15153,5342660,32,0 ,27,41,99784,23,8 ,15,1057,624072,1,1 ,27,295,99792,23,8 ,15,1058,624080,1,1 ,27,812,99800,23,8 ,15,1059,624088,1,1 ,27,8761,99808,24,8 ,15,1060,624096,1,1 ,27,8762,99816,24,8 ,15,1061,624104,1,1 ,27,8763,99824,24,8 ,15,1062,624112,1,1 ,27,8764,99832,25,8 ,15,1063,624120,1,1 ,27,8764,99840,26,8 ,15,1064,624128,1,1 ,20,19697,10585602,192,0 ,45,15153,4818436,48,0 ,17,923,6391300,24,0 ,44,15152,2721284,16,0 ,45,15153,4294148,32,0 ,27,8765,99848,21,8 ,15,1065,624136,1,1 ,27,8766,99856,26,8 ,15,1066,624144,1,1 ,27,8734,99864,22,8 ,15,1067,624152,1,1 ,27,8771,99872,22,8 ,15,1068,624160,1,1 ,20,23583,21071394,24,0 ,27,7322,99880,22,8 ,15,1069,624168,1,1 ,27,5225,99888,22,8 ,15,1070,624176,1,1 ,27,4663,99896,22,8 ,15,1071,624184,1,1 ,27,2312,99904,22,8 ,15,1072,624192,1,1 ,20,25139,25265730,152,0 ,17,923,10061380,16,0 ,17,923,7439940,40,0 ,17,923,6915652,40,0 ,44,15152,2197060,24,0 ,44,15152,3769924,40,0 ,27,4748,99912,22,8 ,15,1073,624200,1,1 ,27,4768,99920,24,8 ,15,1074,624208,1,1 ,27,1374,99928,24,8 ,15,1075,624216,1,1 ,27,1421,99936,26,8 ,15,1076,624224,1,1 ,27,9,99944,23,8 ,15,1077,624232,1,1 ,27,41,99952,23,8 ,15,1078,624240,1,1 ,27,6065,99960,26,8 ,15,1079,624248,1,1 ,27,9229,99968,22,8 ,15,1080,624256,1,1 ,20,15787,1672834,12,0 ,17,923,99971,24,0 ,17,923,9537156,32,0 ,44,15152,2721412,48,0 ,44,15152,1148548,24,0 ,17,923,9012868,32,0 ,27,9231,99976,22,8 ,15,1081,624264,1,1 ,27,9233,99984,22,8 ,15,1082,624272,1,1 ,27,2182,99992,24,8 ,15,1083,624280,1,1 ,27,9236,100000,26,8 ,15,1084,624288,1,1 ,20,18012,6915746,116,0 ,27,4482,100008,26,8 ,15,1085,624296,1,1 ,27,9237,100016,21,8 ,15,1086,624304,1,1 ,27,9238,100024,21,8 ,15,1087,624312,1,1 ,27,9239,100032,21,8 ,15,1088,624320,1,1 ,17,923,10061508,16,0 ,17,923,6391492,40,0 ,45,15153,5342916,16,0 ,27,295,100040,23,8 ,15,1089,624328,1,1 ,27,812,100048,23,8 ,15,1090,624336,1,1 ,27,9241,100056,24,8 ,15,1091,624344,1,1 ,27,6065,100064,26,8 ,15,1092,624352,1,1 ,20,23925,22120162,80,0 ,20,15788,1672930,12,0 ,20,23584,21071586,24,0 ,27,6065,100072,26,8 ,15,1093,624360,1,1 ,27,9246,100080,22,8 ,15,1094,624368,1,1 ,27,9248,100088,22,8 ,15,1095,624376,1,1 ,27,295,100096,23,8 ,15,1096,624384,1,1 ,20,20736,13731586,140,0 ,17,923,8488708,40,0 ,44,15152,2197252,24,0 ,45,15153,4294404,32,0 ,27,812,100104,23,8 ,15,1097,624392,1,1 ,27,1633,100112,24,8 ,15,1098,624400,1,1 ,27,9250,100120,23,8 ,15,1099,624408,1,1 ,27,9251,100128,24,8 ,15,1100,624416,1,1 ,20,18933,9013026,272,0 ,27,9252,100136,21,8 ,15,1101,624424,1,1 ,27,9253,100144,21,8 ,15,1102,624432,1,1 ,27,41,100152,25,8 ,15,1103,624440,1,1 ,27,1565,100160,24,8 ,15,1104,624448,1,1 ,20,15789,1673026,780,0 ,17,923,100163,16,0 ,17,923,10061636,16,0 ,44,15152,1148740,24,0 ,45,15153,5343044,72,0 ,27,9255,100168,23,8 ,15,1105,624456,1,1 ,27,9256,100176,23,8 ,15,1106,624464,1,1 ,27,9273,100184,26,8 ,15,1107,624472,1,1 ,27,579,100192,24,8 ,15,1108,624480,1,1 ,20,20521,13207394,304,0 ,20,25352,25790306,420,0 ,27,579,100200,25,8 ,15,1109,624488,1,1 ,27,1421,100208,26,8 ,15,1110,624496,1,1 ,27,1039,100216,21,8 ,15,1111,624504,1,1 ,27,1038,100224,26,8 ,15,1112,624512,1,1 ,20,20240,12683138,168,0 ,17,923,9537412,16,0 ,17,923,7964548,24,0 ,17,923,7440260,40,0 ,17,923,6915972,32,0 ,44,15152,3770244,24,0 ,45,15153,4818820,56,0 ,17,923,9013124,32,0 ,27,41,100232,23,8 ,15,1113,624520,1,1 ,27,1052,100240,24,8 ,15,1114,624528,1,1 ,27,1026,100248,24,8 ,15,1115,624536,1,1 ,27,1364,100256,26,8 ,15,1116,624544,1,1 ,20,23585,21071778,24,0 ,20,18472,7964578,984,0 ,27,623,100264,23,8 ,15,1117,624552,1,1 ,27,1029,100272,26,8 ,15,1118,624560,1,1 ,27,1043,100280,24,8 ,15,1119,624568,1,1 ,27,1040,100288,24,8 ,15,1120,624576,1,1 ,20,17126,4818882,236,0 ,17,923,100291,16,0 ,17,923,10061764,16,0 ,44,15152,2197444,24,0 ,27,1057,100296,22,8 ,15,1121,624584,1,1 ,27,1038,100304,25,8 ,15,1122,624592,1,1 ,27,1378,100312,24,8 ,15,1123,624600,1,1 ,27,9262,100320,23,8 ,15,1124,624608,1,1 ,20,22262,18450402,228,0 ,27,9264,100328,22,8 ,15,1125,624616,1,1 ,27,1062,100336,21,8 ,15,1126,624624,1,1 ,27,1025,100344,24,8 ,15,1127,624632,1,1 ,27,9270,100352,23,8 ,15,1128,624640,1,1 ,17,923,9537540,32,0 ,17,923,6391812,32,0 ,44,15152,2721796,24,0 ,44,15152,1148932,24,0 ,45,15153,4294660,16,0 ,27,9274,100360,22,8 ,15,1129,624648,1,1 ,27,9277,100368,25,8 ,15,1130,624656,1,1 ,27,4768,100376,24,8 ,15,1131,624664,1,1 ,27,4482,100384,26,8 ,15,1132,624672,1,1 ,27,41,100392,25,8 ,15,1133,624680,1,1 ,27,1565,100400,24,8 ,15,1134,624688,1,1 ,27,9281,100408,24,8 ,15,1135,624696,1,1 ,27,9284,100416,20,8 ,15,1136,624704,1,1 ,17,923,100419,40,0 ,17,923,10061892,16,0 ,17,923,7964740,24,0 ,44,15152,3770436,32,0 ,17,923,8489028,24,0 ,27,9283,100424,26,8 ,15,1137,624712,1,1 ,27,2182,100432,24,8 ,15,1138,624720,1,1 ,27,9283,100440,25,8 ,15,1139,624728,1,1 ,27,5225,100448,22,8 ,15,1140,624736,1,1 ,20,23586,21071970,24,0 ,20,22540,18974818,228,0 ,27,4748,100456,22,8 ,15,1141,624744,1,1 ,27,2312,100464,22,8 ,15,1142,624752,1,1 ,27,9285,100472,24,8 ,15,1143,624760,1,1 ,27,9289,100480,25,8 ,15,1144,624768,1,1 ,20,15617,1149058,156,0 ,17,923,9013380,40,0 ,17,923,6916228,32,0 ,44,15152,2197636,32,0 ,45,15153,4294788,16,0 ,27,163,100488,24,8 ,15,1145,624776,1,1 ,27,9318,100496,28,8 ,15,1146,624784,1,1 ,27,9300,100504,25,8 ,15,1147,624792,1,1 ,27,9317,100512,20,8 ,15,1148,624800,1,1 ,20,16681,3770530,24,0 ,27,9313,100520,26,8 ,15,1149,624808,1,1 ,27,9303,100528,22,8 ,15,1150,624816,1,1 ,27,9305,100536,22,8 ,15,1151,624824,1,1 ,27,9307,100544,22,8 ,15,1152,624832,1,1 ,17,923,10062020,16,0 ,17,923,7440580,40,0 ,44,15152,2721988,24,0 ,44,15152,624836,32,0 ,44,15152,1149124,24,0 ,27,2182,100552,24,8 ,15,1153,624840,1,1 ,27,9309,100560,21,8 ,15,1154,624848,1,1 ,27,9310,100568,21,8 ,15,1155,624856,1,1 ,27,9311,100576,21,8 ,15,1156,624864,1,1 ,20,24337,23169250,96,0 ,27,4482,100584,26,8 ,15,1157,624872,1,1 ,27,9313,100592,25,8 ,15,1158,624880,1,1 ,27,6065,100600,24,8 ,15,1159,624888,1,1 ,27,6115,100608,24,8 ,15,1160,624896,1,1 ,17,923,9537796,32,0 ,17,923,7964932,56,0 ,17,923,6392068,32,0 ,45,15153,4294916,16,0 ,17,923,8489220,64,0 ,27,9329,100616,23,8 ,15,1161,624904,1,1 ,27,812,100624,23,8 ,15,1162,624912,1,1 ,27,9330,100632,24,8 ,15,1163,624920,1,1 ,27,9331,100640,23,8 ,15,1164,624928,1,1 ,20,23587,21072162,108,0 ,20,16329,3246370,12,0 ,27,9332,100648,23,8 ,15,1165,624936,1,1 ,27,10294,100656,24,8 ,15,1166,624944,1,1 ,27,10266,100664,24,8 ,15,1167,624952,1,1 ,27,9351,100672,24,8 ,15,1168,624960,1,1 ,17,923,10062148,16,0 ,44,15152,3770692,24,0 ,45,15153,4819268,32,0 ,27,9372,100680,22,8 ,15,1169,624968,1,1 ,27,9352,100688,22,8 ,15,1170,624976,1,1 ,27,9355,100696,22,8 ,15,1171,624984,1,1 ,27,9354,100704,24,8 ,15,1172,624992,1,1 ,20,23926,22120802,80,0 ,20,16682,3770722,272,0 ,27,9358,100712,24,8 ,15,1173,625000,1,1 ,27,9359,100720,21,8 ,15,1174,625008,1,1 ,27,9360,100728,21,8 ,15,1175,625016,1,1 ,27,9361,100736,23,8 ,15,1176,625024,1,1 ,20,16330,3246466,64,0 ,20,15352,625026,12,0 ,17,923,100739,40,0 ,45,15153,5343620,24,0 ,17,923,6916484,32,0 ,44,15152,2722180,40,0 ,44,15152,2197892,40,0 ,44,15152,1149316,24,0 ,45,15153,4295044,16,0 ,27,163,100744,22,8 ,15,1177,625032,1,1 ,27,9362,100752,24,8 ,15,1178,625040,1,1 ,27,9363,100760,23,8 ,15,1179,625048,1,1 ,27,3135,100768,26,8 ,15,1180,625056,1,1 ,27,9370,100776,22,8 ,15,1181,625064,1,1 ,27,7154,100784,24,8 ,15,1182,625072,1,1 ,27,9391,100792,21,8 ,15,1183,625080,1,1 ,27,9374,100800,22,8 ,15,1184,625088,1,1 ,17,923,10062276,16,0 ,44,15152,625092,32,0 ,44,15152,3246532,24,0 ,17,923,9013700,40,0 ,27,9379,100808,24,8 ,15,1185,625096,1,1 ,27,9383,100816,22,8 ,15,1186,625104,1,1 ,27,9384,100824,22,8 ,15,1187,625112,1,1 ,27,9385,100832,22,8 ,15,1188,625120,1,1 ,20,15353,625122,420,0 ,27,9386,100840,23,8 ,15,1189,625128,1,1 ,27,9387,100848,22,8 ,15,1190,625136,1,1 ,27,9388,100856,22,8 ,15,1191,625144,1,1 ,27,2558,100864,22,8 ,15,1192,625152,1,1 ,20,21225,15829506,192,0 ,20,16150,2722306,892,0 ,17,923,9538052,32,0 ,17,923,7440900,40,0 ,17,923,6392324,40,0 ,44,15152,3770884,24,0 ,45,15153,4295172,16,0 ,27,9389,100872,24,8 ,15,1193,625160,1,1 ,27,9391,100880,21,8 ,15,1194,625168,1,1 ,27,9374,100888,22,8 ,15,1195,625176,1,1 ,27,9398,100896,22,8 ,15,1196,625184,1,1 ,20,18658,8489506,12,0 ,20,17740,6392354,236,0 ,27,1035,100904,26,8 ,15,1197,625192,1,1 ,27,9,100912,23,8 ,15,1198,625200,1,1 ,27,579,100920,22,8 ,15,1199,625208,1,1 ,27,579,100928,23,8 ,15,1200,625216,1,1 ,20,18013,6916674,196,0 ,17,923,10062404,16,0 ,44,15152,1149508,64,0 ,45,15153,4819524,16,0 ,45,15153,5343812,24,0 ,27,1062,100936,21,8 ,15,1201,625224,1,1 ,27,1400,100944,24,8 ,15,1202,625232,1,1 ,27,616,100952,23,8 ,15,1203,625240,1,1 ,27,1401,100960,24,8 ,15,1204,625248,1,1 ,27,1404,100968,24,8 ,15,1205,625256,1,1 ,27,1380,100976,22,8 ,15,1206,625264,1,1 ,27,1402,100984,22,8 ,15,1207,625272,1,1 ,27,1403,100992,22,8 ,15,1208,625280,1,1 ,20,20933,15305346,36,0 ,20,18659,8489602,1320,0 ,45,15153,4295300,32,0 ,17,923,6916740,40,0 ,44,15152,3246724,24,0 ,27,340,101000,21,8 ,15,1209,625288,1,1 ,27,623,101008,23,8 ,15,1210,625296,1,1 ,27,9400,101016,22,8 ,15,1211,625304,1,1 ,27,9432,101024,22,8 ,15,1212,625312,1,1 ,20,23308,20548258,112,0 ,27,9428,101032,21,8 ,15,1213,625320,1,1 ,27,9403,101040,22,8 ,15,1214,625328,1,1 ,27,9405,101048,24,8 ,15,1215,625336,1,1 ,27,1035,101056,26,8 ,15,1216,625344,1,1 ,17,923,101059,16,0 ,17,923,10062532,16,0 ,17,923,7965380,24,0 ,44,15152,2722500,32,0 ,44,15152,2198212,48,0 ,44,15152,625348,152,0 ,44,15152,3771076,112,0 ,45,15153,4819652,16,0 ,27,9,101064,23,8 ,15,1217,625352,1,1 ,27,41,101072,23,8 ,15,1218,625360,1,1 ,27,1428,101080,24,8 ,15,1219,625368,1,1 ,27,623,101088,23,8 ,15,1220,625376,1,1 ,27,9406,101096,24,8 ,15,1221,625384,1,1 ,27,9407,101104,24,8 ,15,1222,625392,1,1 ,27,9409,101112,24,8 ,15,1223,625400,1,1 ,27,9410,101120,23,8 ,15,1224,625408,1,1 ,20,25140,25266946,272,0 ,17,923,9538308,32,0 ,45,15153,5344004,16,0 ,17,923,8489732,80,0 ,17,923,9014020,40,0 ,27,9411,101128,23,8 ,15,1225,625416,1,1 ,27,9412,101136,22,8 ,15,1226,625424,1,1 ,27,9413,101144,22,8 ,15,1227,625432,1,1 ,27,41,101152,23,8 ,15,1228,625440,1,1 ,20,24897,24742690,1140,0 ,27,9414,101160,22,8 ,15,1229,625448,1,1 ,27,9415,101168,22,8 ,15,1230,625456,1,1 ,27,9416,101176,22,8 ,15,1231,625464,1,1 ,27,9417,101184,22,8 ,15,1232,625472,1,1 ,20,19960,11111234,364,0 ,20,26114,27888450,428,0 ,17,923,101187,16,0 ,17,923,10062660,16,0 ,17,923,7441220,40,0 ,17,923,6392644,32,0 ,44,15152,3246916,32,0 ,45,15153,4819780,16,0 ,27,9418,101192,22,8 ,15,1233,625480,1,1 ,27,9419,101200,22,8 ,15,1234,625488,1,1 ,27,9420,101208,22,8 ,15,1235,625496,1,1 ,27,9421,101216,22,8 ,15,1236,625504,1,1 ,20,20737,13732706,112,0 ,27,650,101224,23,8 ,15,1237,625512,1,1 ,27,433,101232,23,8 ,15,1238,625520,1,1 ,27,812,101240,23,8 ,15,1239,625528,1,1 ,27,9422,101248,25,8 ,15,1240,625536,1,1 ,20,16331,3246978,64,0 ,45,15153,5344132,16,0 ,17,923,7965572,32,0 ,45,15153,4295556,24,0 ,27,9424,101256,26,8 ,15,1241,625544,1,1 ,27,9429,101264,24,8 ,15,1242,625552,1,1 ,27,9430,101272,24,8 ,15,1243,625560,1,1 ,27,9431,101280,22,8 ,15,1244,625568,1,1 ,20,20934,15305634,76,0 ,27,9433,101288,21,8 ,15,1245,625576,1,1 ,27,9434,101296,22,8 ,15,1246,625584,1,1 ,27,9387,101304,22,8 ,15,1247,625592,1,1 ,27,9388,101312,22,8 ,15,1248,625600,1,1 ,17,923,101315,24,0 ,17,923,10062788,16,0 ,17,923,6917060,40,0 ,44,15152,2722756,56,0 ,45,15153,4819908,88,0 ,27,2558,101320,22,8 ,15,1249,625608,1,1 ,27,9435,101328,24,8 ,15,1250,625616,1,1 ,27,9436,101336,21,8 ,15,1251,625624,1,1 ,27,9437,101344,21,8 ,15,1252,625632,1,1 ,20,24338,23170018,48,0 ,20,23927,22121442,80,0 ,27,9391,101352,21,8 ,15,1253,625640,1,1 ,27,9374,101360,22,8 ,15,1254,625648,1,1 ,27,9442,101368,23,8 ,15,1255,625656,1,1 ,27,9458,101376,22,8 ,15,1256,625664,1,1 ,20,19698,10587138,284,0 ,17,923,9538564,40,0 ,45,15153,5344260,16,0 ,27,9444,101384,22,8 ,15,1257,625672,1,1 ,27,9445,101392,22,8 ,15,1258,625680,1,1 ,27,9446,101400,22,8 ,15,1259,625688,1,1 ,27,9447,101408,22,8 ,15,1260,625696,1,1 ,27,9448,101416,22,8 ,15,1261,625704,1,1 ,27,9449,101424,22,8 ,15,1262,625712,1,1 ,27,9450,101432,22,8 ,15,1263,625720,1,1 ,27,9451,101440,22,8 ,15,1264,625728,1,1 ,17,923,10062916,16,0 ,17,923,6392900,32,0 ,44,15152,2198596,40,0 ,44,15152,1150020,96,0 ,44,15152,3247172,16,0 ,45,15153,4295748,32,0 ,17,923,9014340,40,0 ,27,9452,101448,22,8 ,15,1265,625736,1,1 ,27,9453,101456,22,8 ,15,1266,625744,1,1 ,27,9454,101464,22,8 ,15,1267,625752,1,1 ,27,9391,101472,21,8 ,15,1268,625760,1,1 ,27,9374,101480,22,8 ,15,1269,625768,1,1 ,27,9462,101488,22,8 ,15,1270,625776,1,1 ,27,9464,101496,24,8 ,15,1271,625784,1,1 ,27,9465,101504,23,8 ,15,1272,625792,1,1 ,20,23588,21073026,144,0 ,20,26281,28413058,256,0 ,17,923,101507,40,0 ,45,15153,5344388,16,0 ,17,923,7965828,24,0 ,17,923,7441540,32,0 ,27,9466,101512,21,8 ,15,1273,625800,1,1 ,27,9391,101520,21,8 ,15,1274,625808,1,1 ,27,9374,101528,22,8 ,15,1275,625816,1,1 ,27,9391,101536,21,8 ,15,1276,625824,1,1 ,20,25700,26840226,332,0 ,20,26402,28937378,368,0 ,27,9374,101544,22,8 ,15,1277,625832,1,1 ,27,9573,101552,24,8 ,15,1278,625840,1,1 ,27,9571,101560,24,8 ,15,1279,625848,1,1 ,27,2858,101568,24,8 ,15,1280,625856,1,1 ,20,20241,12684482,12,0 ,17,923,10063044,16,0 ,44,15152,3247300,24,0 ,27,1771,101576,25,8 ,15,1281,625864,1,1 ,27,204,101584,23,8 ,15,1282,625872,1,1 ,27,9476,101592,25,8 ,15,1283,625880,1,1 ,27,328,101600,23,8 ,15,1284,625888,1,1 ,27,9488,101608,25,8 ,15,1285,625896,1,1 ,27,9477,101616,23,8 ,15,1286,625904,1,1 ,27,9480,101624,21,8 ,15,1287,625912,1,1 ,27,9478,101632,22,8 ,15,1288,625920,1,1 ,45,15153,5344516,16,0 ,17,923,6917380,40,0 ,27,9483,101640,21,8 ,15,1289,625928,1,1 ,27,9481,101648,22,8 ,15,1290,625936,1,1 ,27,633,101656,23,8 ,15,1291,625944,1,1 ,27,9486,101664,21,8 ,15,1292,625952,1,1 ,20,20242,12684578,324,0 ,27,9484,101672,22,8 ,15,1293,625960,1,1 ,27,9487,101680,24,8 ,15,1294,625968,1,1 ,27,673,101688,23,8 ,15,1295,625976,1,1 ,27,1037,101696,25,8 ,15,1296,625984,1,1 ,17,923,10063172,16,0 ,17,923,7966020,40,0 ,17,923,6393156,32,0 ,45,15153,4296004,24,0 ,17,923,9538884,24,0 ,27,445,101704,23,8 ,15,1297,625992,1,1 ,27,6164,101712,25,8 ,15,1298,626000,1,1 ,27,9489,101720,24,8 ,15,1299,626008,1,1 ,27,9490,101728,25,8 ,15,1300,626016,1,1 ,20,24339,23170402,132,0 ,20,15618,1150306,44,0 ,27,9497,101736,21,8 ,15,1301,626024,1,1 ,27,9495,101744,22,8 ,15,1302,626032,1,1 ,27,9494,101752,28,8 ,15,1303,626040,1,1 ,27,9498,101760,25,8 ,15,1304,626048,1,1 ,20,16332,3247490,40,0 ,17,923,9014660,40,0 ,17,923,7441796,40,0 ,44,15152,2723204,56,0 ,44,15152,2198916,32,0 ,44,15152,3247492,72,0 ,45,15153,5344644,24,0 ,17,923,8490372,80,0 ,27,9499,101768,23,8 ,15,1305,626056,1,1 ,27,9500,101776,24,8 ,15,1306,626064,1,1 ,27,9501,101784,24,8 ,15,1307,626072,1,1 ,27,9502,101792,23,8 ,15,1308,626080,1,1 ,27,9503,101800,24,8 ,15,1309,626088,1,1 ,27,9504,101808,22,8 ,15,1310,626096,1,1 ,27,9506,101816,21,8 ,15,1311,626104,1,1 ,27,9508,101824,21,8 ,15,1312,626112,1,1 ,17,923,101827,16,0 ,17,923,10063300,16,0 ,27,9510,101832,21,8 ,15,1313,626120,1,1 ,27,9511,101840,24,8 ,15,1314,626128,1,1 ,27,9512,101848,24,8 ,15,1315,626136,1,1 ,27,541,101856,23,8 ,15,1316,626144,1,1 ,27,1770,101864,25,8 ,15,1317,626152,1,1 ,27,178,101872,23,8 ,15,1318,626160,1,1 ,27,9513,101880,22,8 ,15,1319,626168,1,1 ,27,9520,101888,22,8 ,15,1320,626176,1,1 ,20,20935,15306242,32,0 ,17,923,9539076,24,0 ,45,15153,4296196,16,0 ,27,9522,101896,22,8 ,15,1321,626184,1,1 ,27,9524,101904,24,8 ,15,1322,626192,1,1 ,27,1966,101912,24,8 ,15,1323,626200,1,1 ,27,9525,101920,24,8 ,15,1324,626208,1,1 ,20,23309,20549154,12,0 ,27,9526,101928,24,8 ,15,1325,626216,1,1 ,27,9542,101936,24,8 ,15,1326,626224,1,1 ,27,9537,101944,25,8 ,15,1327,626232,1,1 ,27,9528,101952,24,8 ,15,1328,626240,1,1 ,20,21809,16879170,412,0 ,17,923,101955,16,0 ,17,923,10063428,16,0 ,17,923,6917700,32,0 ,17,923,6393412,32,0 ,44,15152,3771972,40,0 ,45,15153,5344836,24,0 ,27,9529,101960,24,8 ,15,1329,626248,1,1 ,27,9530,101968,24,8 ,15,1330,626256,1,1 ,27,9531,101976,24,8 ,15,1331,626264,1,1 ,27,9532,101984,22,8 ,15,1332,626272,1,1 ,20,23928,22122082,80,0 ,27,9533,101992,24,8 ,15,1333,626280,1,1 ,27,9535,102000,26,8 ,15,1334,626288,1,1 ,27,9538,102008,24,8 ,15,1335,626296,1,1 ,27,2725,102016,24,8 ,15,1336,626304,1,1 ,20,23310,20549250,204,0 ,45,15153,4820612,24,0 ,17,923,7966340,32,0 ,44,15152,2199172,24,0 ,45,15153,4296324,32,0 ,27,9528,102024,24,8 ,15,1337,626312,1,1 ,27,9529,102032,24,8 ,15,1338,626320,1,1 ,27,9538,102040,24,8 ,15,1339,626328,1,1 ,27,9530,102048,24,8 ,15,1340,626336,1,1 ,27,9531,102056,24,8 ,15,1341,626344,1,1 ,27,9535,102064,26,8 ,15,1342,626352,1,1 ,27,9541,102072,24,8 ,15,1343,626360,1,1 ,27,340,102080,21,8 ,15,1344,626368,1,1 ,20,19363,10063554,520,0 ,20,15619,1150658,400,0 ,20,16333,3247810,72,0 ,20,19113,9539266,276,0 ,17,923,102083,16,0 ,17,923,10063556,16,0 ,17,923,7442116,40,0 ,17,923,9014980,32,0 ,17,923,9539268,32,0 ,27,9543,102088,25,8 ,15,1345,626376,1,1 ,27,9544,102096,24,8 ,15,1346,626384,1,1 ,27,41,102104,23,8 ,15,1347,626392,1,1 ,27,9545,102112,24,8 ,15,1348,626400,1,1 ,20,20738,13733602,96,0 ,27,9546,102120,24,8 ,15,1349,626408,1,1 ,27,9547,102128,21,8 ,15,1350,626416,1,1 ,27,9548,102136,23,8 ,15,1351,626424,1,1 ,27,9549,102144,24,8 ,15,1352,626432,1,1 ,20,22263,18452226,572,0 ,20,20936,15306498,32,0 ,45,15153,5345028,16,0 ,27,9550,102152,24,8 ,15,1353,626440,1,1 ,27,780,102160,23,8 ,15,1354,626448,1,1 ,27,9551,102168,24,8 ,15,1355,626456,1,1 ,27,9552,102176,24,8 ,15,1356,626464,1,1 ,20,17127,4820770,212,0 ,27,336,102184,23,8 ,15,1357,626472,1,1 ,27,9553,102192,25,8 ,15,1358,626480,1,1 ,27,143,102200,22,8 ,15,1359,626488,1,1 ,27,9554,102208,24,8 ,15,1360,626496,1,1 ,17,923,102211,40,0 ,17,923,10063684,16,0 ,17,923,6917956,32,0 ,17,923,6393668,40,0 ,44,15152,2723652,80,0 ,44,15152,2199364,24,0 ,44,15152,102212,136,0 ,44,15152,1150788,24,0 ,45,15153,4820804,24,0 ,27,9555,102216,21,8 ,15,1361,626504,1,1 ,27,9556,102224,24,8 ,15,1362,626512,1,1 ,27,9557,102232,24,8 ,15,1363,626520,1,1 ,27,1299,102240,24,8 ,15,1364,626528,1,1 ,27,295,102248,23,8 ,15,1365,626536,1,1 ,27,9558,102256,21,8 ,15,1366,626544,1,1 ,27,155,102264,23,8 ,15,1367,626552,1,1 ,27,1141,102272,24,8 ,15,1368,626560,1,1 ,20,22541,18976642,672,0 ,45,15153,5345156,24,0 ,17,923,7966596,24,0 ,44,15152,626564,56,0 ,44,15152,3772292,64,0 ,45,15153,4296580,32,0 ,27,9559,102280,24,8 ,15,1369,626568,1,1 ,27,9560,102288,24,8 ,15,1370,626576,1,1 ,27,1274,102296,24,8 ,15,1371,626584,1,1 ,27,9561,102304,24,8 ,15,1372,626592,1,1 ,20,18934,9015202,104,0 ,27,5278,102312,24,8 ,15,1373,626600,1,1 ,27,812,102320,23,8 ,15,1374,626608,1,1 ,27,312,102328,23,8 ,15,1375,626616,1,1 ,27,9562,102336,24,8 ,15,1376,626624,1,1 ,17,923,10063812,16,0 ,44,15152,3248068,72,0 ,17,923,9015236,32,0 ,17,923,9539524,24,0 ,27,9563,102344,21,8 ,15,1377,626632,1,1 ,27,9564,102352,24,8 ,15,1378,626640,1,1 ,27,9565,102360,24,8 ,15,1379,626648,1,1 ,27,9566,102368,24,8 ,15,1380,626656,1,1 ,27,1293,102376,23,8 ,15,1381,626664,1,1 ,27,9568,102384,24,8 ,15,1382,626672,1,1 ,27,9569,102392,24,8 ,15,1383,626680,1,1 ,27,9570,102400,24,8 ,15,1384,626688,1,1 ,20,21226,15831042,764,0 ,20,20937,15306754,100,0 ,17,923,8491012,32,0 ,17,923,7442436,40,0 ,44,15152,2199556,16,0 ,44,15152,1150980,24,0 ,45,15153,4820996,40,0 ,27,1141,102408,24,8 ,15,1385,626696,1,1 ,27,9555,102416,20,8 ,15,1386,626704,1,1 ,27,9480,102424,19,8 ,15,1387,626712,1,1 ,27,9486,102432,20,8 ,15,1388,626720,1,1 ,27,9647,102440,24,8 ,15,1389,626728,1,1 ,27,9588,102448,24,8 ,15,1390,626736,1,1 ,27,9579,102456,24,8 ,15,1391,626744,1,1 ,27,9577,102464,21,8 ,15,1392,626752,1,1 ,17,923,10063940,16,0 ,17,923,7966788,56,0 ,17,923,6918212,32,0 ,45,15153,5345348,24,0 ,27,9578,102472,24,8 ,15,1393,626760,1,1 ,27,9580,102480,24,8 ,15,1394,626768,1,1 ,27,9573,102488,24,8 ,15,1395,626776,1,1 ,27,9374,102496,22,8 ,15,1396,626784,1,1 ,20,18014,6918242,12,0 ,27,9586,102504,22,8 ,15,1397,626792,1,1 ,27,9431,102512,22,8 ,15,1398,626800,1,1 ,27,445,102520,23,8 ,15,1399,626808,1,1 ,27,1421,102528,26,8 ,15,1400,626816,1,1 ,17,923,102531,16,0 ,17,923,9539716,24,0 ,17,923,6393988,40,0 ,44,15152,2199684,40,0 ,45,15153,4296836,40,0 ,27,579,102536,22,8 ,15,1401,626824,1,1 ,27,579,102544,23,8 ,15,1402,626832,1,1 ,27,1050,102552,24,8 ,15,1403,626840,1,1 ,27,616,102560,23,8 ,15,1404,626848,1,1 ,27,1062,102568,21,8 ,15,1405,626856,1,1 ,27,1051,102576,26,8 ,15,1406,626864,1,1 ,27,1026,102584,24,8 ,15,1407,626872,1,1 ,27,1404,102592,24,8 ,15,1408,626880,1,1 ,20,18015,6918338,52,0 ,17,923,10064068,16,0 ,44,15152,1151172,80,0 ,17,923,9015492,40,0 ,27,1052,102600,24,8 ,15,1409,626888,1,1 ,27,1418,102608,26,8 ,15,1410,626896,1,1 ,27,1039,102616,21,8 ,15,1411,626904,1,1 ,27,1038,102624,26,8 ,15,1412,626912,1,1 ,20,23929,22122722,80,0 ,20,20522,13209826,80,0 ,27,1402,102632,22,8 ,15,1413,626920,1,1 ,27,1380,102640,22,8 ,15,1414,626928,1,1 ,27,1053,102648,24,8 ,15,1415,626936,1,1 ,27,1054,102656,26,8 ,15,1416,626944,1,1 ,20,23589,21074178,72,0 ,20,16334,3248386,240,0 ,17,923,102659,24,0 ,17,923,8491268,40,0 ,45,15153,5345540,32,0 ,27,1043,102664,24,8 ,15,1417,626952,1,1 ,27,1025,102672,24,8 ,15,1418,626960,1,1 ,27,1055,102680,24,8 ,15,1419,626968,1,1 ,27,1038,102688,25,8 ,15,1420,626976,1,1 ,20,22982,20025634,632,0 ,27,1057,102696,22,8 ,15,1421,626984,1,1 ,27,1060,102704,26,8 ,15,1422,626992,1,1 ,27,1396,102712,24,8 ,15,1423,627000,1,1 ,27,1397,102720,26,8 ,15,1424,627008,1,1 ,17,923,10064196,16,0 ,17,923,7442756,32,0 ,17,923,6918468,40,0 ,44,15152,627012,96,0 ,45,15153,4821316,16,0 ,17,923,9539908,40,0 ,27,1401,102728,24,8 ,15,1425,627016,1,1 ,27,1364,102736,26,8 ,15,1426,627024,1,1 ,27,1427,102744,26,8 ,15,1427,627032,1,1 ,27,1398,102752,24,8 ,15,1428,627040,1,1 ,27,1403,102760,22,8 ,15,1429,627048,1,1 ,27,1428,102768,24,8 ,15,1430,627056,1,1 ,27,9374,102776,22,8 ,15,1431,627064,1,1 ,27,9592,102784,22,8 ,15,1432,627072,1,1 ,20,24340,23171458,120,0 ,20,17741,6394242,168,0 ,44,15152,3772804,24,0 ,27,9593,102792,22,8 ,15,1433,627080,1,1 ,27,9580,102800,24,8 ,15,1434,627088,1,1 ,27,9573,102808,24,8 ,15,1435,627096,1,1 ,27,9594,102816,25,8 ,15,1436,627104,1,1 ,27,9379,102824,24,8 ,15,1437,627112,1,1 ,27,9600,102832,22,8 ,15,1438,627120,1,1 ,27,9602,102840,22,8 ,15,1439,627128,1,1 ,27,9604,102848,22,8 ,15,1440,627136,1,1 ,17,923,102851,32,0 ,17,923,10064324,16,0 ,17,923,6394308,32,0 ,44,15152,2724292,24,0 ,44,15152,2200004,56,0 ,45,15153,4297156,16,0 ,45,15153,4821444,24,0 ,27,9606,102856,22,8 ,15,1441,627144,1,1 ,27,9608,102864,22,8 ,15,1442,627152,1,1 ,27,9610,102872,22,8 ,15,1443,627160,1,1 ,27,9612,102880,22,8 ,15,1444,627168,1,1 ,20,20739,13734370,116,0 ,20,16683,3772898,344,0 ,27,9614,102888,22,8 ,15,1445,627176,1,1 ,27,9616,102896,22,8 ,15,1446,627184,1,1 ,27,9618,102904,22,8 ,15,1447,627192,1,1 ,27,9620,102912,22,8 ,15,1448,627200,1,1 ,17,923,9015812,48,0 ,17,923,7967236,24,0 ,44,15152,3248644,64,0 ,45,15153,5345796,24,0 ,27,9622,102920,24,8 ,15,1449,627208,1,1 ,27,9623,102928,23,8 ,15,1450,627216,1,1 ,27,9624,102936,24,8 ,15,1451,627224,1,1 ,27,9625,102944,24,8 ,15,1452,627232,1,1 ,27,9626,102952,21,8 ,15,1453,627240,1,1 ,27,9627,102960,21,8 ,15,1454,627248,1,1 ,27,9628,102968,21,8 ,15,1455,627256,1,1 ,27,9629,102976,21,8 ,15,1456,627264,1,1 ,17,923,10064452,16,0 ,17,923,7443012,32,0 ,44,15152,3772996,32,0 ,45,15153,4297284,16,0 ,17,923,8491588,32,0 ,27,9630,102984,21,8 ,15,1457,627272,1,1 ,27,9631,102992,21,8 ,15,1458,627280,1,1 ,27,9632,103000,21,8 ,15,1459,627288,1,1 ,27,9633,103008,21,8 ,15,1460,627296,1,1 ,20,18016,6918754,712,0 ,27,9634,103016,21,8 ,15,1461,627304,1,1 ,27,9635,103024,21,8 ,15,1462,627312,1,1 ,27,9636,103032,21,8 ,15,1463,627320,1,1 ,27,9374,103040,22,8 ,15,1464,627328,1,1 ,20,17343,5345922,12,0 ,17,923,9540228,40,0 ,17,923,6918788,40,0 ,44,15152,2724484,32,0 ,45,15153,4821636,32,0 ,27,9640,103048,22,8 ,15,1465,627336,1,1 ,27,9641,103056,22,8 ,15,1466,627344,1,1 ,27,9642,103064,22,8 ,15,1467,627352,1,1 ,27,9643,103072,22,8 ,15,1468,627360,1,1 ,27,9644,103080,24,8 ,15,1469,627368,1,1 ,27,9388,103088,22,8 ,15,1470,627376,1,1 ,27,2558,103096,22,8 ,15,1471,627384,1,1 ,27,9645,103104,24,8 ,15,1472,627392,1,1 ,17,923,103107,24,0 ,17,923,10064580,16,0 ,17,923,7967428,24,0 ,17,923,6394564,40,0 ,45,15153,4297412,40,0 ,45,15153,5345988,16,0 ,27,9391,103112,21,8 ,15,1473,627400,1,1 ,27,9391,103120,21,8 ,15,1474,627408,1,1 ,27,9391,103128,21,8 ,15,1475,627416,1,1 ,27,9391,103136,21,8 ,15,1476,627424,1,1 ,20,18935,9016034,80,0 ,20,17344,5346018,124,0 ,27,9374,103144,22,8 ,15,1477,627432,1,1 ,27,9656,103152,24,8 ,15,1478,627440,1,1 ,27,9657,103160,24,8 ,15,1479,627448,1,1 ,27,9388,103168,24,8 ,15,1480,627456,1,1 ,20,1011,103169,192,0 ,27,9391,103176,21,8 ,15,1481,627464,1,1 ,27,9374,103184,22,8 ,15,1482,627472,1,1 ,27,9656,103192,24,8 ,15,1483,627480,1,1 ,27,9657,103200,24,8 ,15,1484,627488,1,1 ,20,20938,15307554,176,0 ,27,9388,103208,24,8 ,15,1485,627496,1,1 ,27,9391,103216,21,8 ,15,1486,627504,1,1 ,27,9374,103224,22,8 ,15,1487,627512,1,1 ,27,9666,103232,24,8 ,15,1488,627520,1,1 ,20,23590,21074754,236,0 ,17,923,10064708,16,0 ,17,923,7443268,40,0 ,44,15152,1151812,16,0 ,44,15152,3773252,40,0 ,45,15153,5346116,16,0 ,17,923,8491844,24,0 ,27,9644,103240,24,8 ,15,1489,627528,1,1 ,27,9379,103248,24,8 ,15,1490,627536,1,1 ,27,9388,103256,22,8 ,15,1491,627544,1,1 ,27,2558,103264,22,8 ,15,1492,627552,1,1 ,20,23930,22123362,80,0 ,20,20523,13210466,12,0 ,27,9645,103272,24,8 ,15,1493,627560,1,1 ,27,9391,103280,21,8 ,15,1494,627568,1,1 ,27,9374,103288,22,8 ,15,1495,627576,1,1 ,27,9675,103296,24,8 ,15,1496,627584,1,1 ,20,25141,25269122,24,0 ,17,923,103299,16,0 ,17,923,9016196,32,0 ,17,923,7967620,24,0 ,44,15152,2724740,40,0 ,44,15152,2200452,32,0 ,44,15152,103300,64,0 ,45,15153,4821892,48,0 ,27,9683,103304,24,8 ,15,1497,627592,1,1 ,27,9645,103312,24,8 ,15,1498,627600,1,1 ,27,9374,103320,22,8 ,15,1499,627608,1,1 ,27,9679,103328,24,8 ,15,1500,627616,1,1 ,27,9680,103336,24,8 ,15,1501,627624,1,1 ,27,9644,103344,24,8 ,15,1502,627632,1,1 ,27,9388,103352,22,8 ,15,1503,627640,1,1 ,27,2558,103360,22,8 ,15,1504,627648,1,1 ,20,20524,13210562,84,0 ,17,923,10064836,16,0 ,17,923,6919108,40,0 ,44,15152,1151940,32,0 ,45,15153,5346244,24,0 ,17,923,9540548,32,0 ,27,9391,103368,21,8 ,15,1505,627656,1,1 ,27,9682,103376,24,8 ,15,1506,627664,1,1 ,27,9684,103384,24,8 ,15,1507,627672,1,1 ,27,9391,103392,21,8 ,15,1508,627680,1,1 ,27,9374,103400,22,8 ,15,1509,627688,1,1 ,27,9675,103408,24,8 ,15,1510,627696,1,1 ,27,9689,103416,24,8 ,15,1511,627704,1,1 ,27,9690,103424,24,8 ,15,1512,627712,1,1 ,20,22025,17929218,804,0 ,20,15215,103426,48,0 ,17,923,103427,32,0 ,17,923,8492036,24,0 ,17,923,6394884,40,0 ,44,15152,3249156,48,0 ,45,15153,4297732,32,0 ,27,9691,103432,24,8 ,15,1513,627720,1,1 ,27,9391,103440,21,8 ,15,1514,627728,1,1 ,27,9374,103448,22,8 ,15,1515,627736,1,1 ,27,9696,103456,22,8 ,15,1516,627744,1,1 ,27,9675,103464,24,8 ,15,1517,627752,1,1 ,27,9698,103472,24,8 ,15,1518,627760,1,1 ,27,9699,103480,21,8 ,15,1519,627768,1,1 ,27,9391,103488,21,8 ,15,1520,627776,1,1 ,20,25142,25269314,176,0 ,17,923,10064964,16,0 ,44,15152,627780,32,0 ,17,923,7967812,64,0 ,27,9374,103496,22,8 ,15,1521,627784,1,1 ,27,9391,103504,21,8 ,15,1522,627792,1,1 ,27,9374,103512,22,8 ,15,1523,627800,1,1 ,27,9391,103520,21,8 ,15,1524,627808,1,1 ,27,9374,103528,22,8 ,15,1525,627816,1,1 ,27,9391,103536,21,8 ,15,1526,627824,1,1 ,27,9374,103544,22,8 ,15,1527,627832,1,1 ,27,9720,103552,23,8 ,15,1528,627840,1,1 ,20,25353,25793666,116,0 ,20,26282,28415106,112,0 ,17,923,9016452,32,0 ,17,923,7443588,40,0 ,44,15152,2200708,32,0 ,44,15152,3773572,56,0 ,45,15153,5346436,16,0 ,27,9391,103560,21,8 ,15,1529,627848,1,1 ,27,9374,103568,22,8 ,15,1530,627856,1,1 ,27,41,103576,23,8 ,15,1531,627864,1,1 ,27,9739,103584,24,8 ,15,1532,627872,1,1 ,27,9738,103592,24,8 ,15,1533,627880,1,1 ,27,9731,103600,24,8 ,15,1534,627888,1,1 ,27,9732,103608,22,8 ,15,1535,627896,1,1 ,27,9734,103616,21,8 ,15,1536,627904,1,1 ,17,923,10065092,16,0 ,44,15152,2725060,16,0 ,44,15152,1152196,24,0 ,17,923,8492228,24,0 ,17,923,9540804,48,0 ,27,9761,103624,24,8 ,15,1537,627912,1,1 ,27,9759,103632,26,8 ,15,1538,627920,1,1 ,27,204,103640,23,8 ,15,1539,627928,1,1 ,27,445,103648,23,8 ,15,1540,627936,1,1 ,20,23311,20550882,24,0 ,20,19699,10589410,108,0 ,27,9740,103656,24,8 ,15,1541,627944,1,1 ,27,9749,103664,25,8 ,15,1542,627952,1,1 ,27,9741,103672,22,8 ,15,1543,627960,1,1 ,27,9746,103680,24,8 ,15,1544,627968,1,1 ,17,923,103683,16,0 ,45,15153,5346564,16,0 ,17,923,6919428,40,0 ,45,15153,4297988,32,0 ,45,15153,4822276,16,0 ,27,178,103688,23,8 ,15,1545,627976,1,1 ,27,204,103696,23,8 ,15,1546,627984,1,1 ,27,445,103704,23,8 ,15,1547,627992,1,1 ,27,295,103712,23,8 ,15,1548,628000,1,1 ,27,812,103720,23,8 ,15,1549,628008,1,1 ,27,9742,103728,24,8 ,15,1550,628016,1,1 ,27,9744,103736,24,8 ,15,1551,628024,1,1 ,27,9743,103744,26,8 ,15,1552,628032,1,1 ,20,24514,23696706,588,0 ,20,24341,23172418,164,0 ,17,923,10065220,16,0 ,17,923,6395204,40,0 ,44,15152,2725188,48,0 ,44,15152,628036,40,0 ,27,9745,103752,24,8 ,15,1553,628040,1,1 ,27,316,103760,23,8 ,15,1554,628048,1,1 ,27,633,103768,23,8 ,15,1555,628056,1,1 ,27,633,103776,23,8 ,15,1556,628064,1,1 ,20,18936,9016674,104,0 ,27,9747,103784,24,8 ,15,1557,628072,1,1 ,27,9749,103792,26,8 ,15,1558,628080,1,1 ,27,9750,103800,24,8 ,15,1559,628088,1,1 ,27,9751,103808,24,8 ,15,1560,628096,1,1 ,20,20740,13735298,60,0 ,20,15216,103810,288,0 ,17,923,103811,24,0 ,17,923,9016708,40,0 ,44,15152,2200964,56,0 ,44,15152,103812,56,0 ,44,15152,1152388,136,0 ,44,15152,3249540,88,0 ,45,15153,4822404,64,0 ,45,15153,5346692,16,0 ,17,923,8492420,24,0 ,27,295,103816,23,8 ,15,1561,628104,1,1 ,27,812,103824,23,8 ,15,1562,628112,1,1 ,27,9752,103832,24,8 ,15,1563,628120,1,1 ,27,9753,103840,24,8 ,15,1564,628128,1,1 ,20,23312,20551074,24,0 ,27,9754,103848,24,8 ,15,1565,628136,1,1 ,27,9755,103856,24,8 ,15,1566,628144,1,1 ,27,9760,103864,26,8 ,15,1567,628152,1,1 ,27,9762,103872,24,8 ,15,1568,628160,1,1 ,20,17128,4822466,152,0 ,17,923,10065348,16,0 ,17,923,7443908,40,0 ,27,1770,103880,26,8 ,15,1569,628168,1,1 ,27,178,103888,23,8 ,15,1570,628176,1,1 ,27,295,103896,23,8 ,15,1571,628184,1,1 ,27,41,103904,23,8 ,15,1572,628192,1,1 ,20,23931,22124002,80,0 ,27,812,103912,23,8 ,15,1573,628200,1,1 ,27,9769,103920,23,8 ,15,1574,628208,1,1 ,27,9773,103928,25,8 ,15,1575,628216,1,1 ,27,9773,103936,26,8 ,15,1576,628224,1,1 ,45,15153,5346820,32,0 ,45,15153,4298244,24,0 ,27,9778,103944,24,8 ,15,1577,628232,1,1 ,27,9777,103952,25,8 ,15,1578,628240,1,1 ,27,9779,103960,24,8 ,15,1579,628248,1,1 ,27,9391,103968,21,8 ,15,1580,628256,1,1 ,20,18201,7444002,1160,0 ,27,9374,103976,22,8 ,15,1581,628264,1,1 ,27,9784,103984,25,8 ,15,1582,628272,1,1 ,27,9784,103992,26,8 ,15,1583,628280,1,1 ,27,9785,104000,24,8 ,15,1584,628288,1,1 ,17,923,104003,24,0 ,17,923,10065476,16,0 ,17,923,6919748,32,0 ,44,15152,3774020,32,0 ,17,923,7968324,32,0 ,17,923,8492612,32,0 ,17,923,9541188,32,0 ,27,9786,104008,24,8 ,15,1585,628296,1,1 ,27,9391,104016,21,8 ,15,1586,628304,1,1 ,27,9374,104024,22,8 ,15,1587,628312,1,1 ,27,9791,104032,25,8 ,15,1588,628320,1,1 ,20,23313,20551266,24,0 ,20,20525,13211234,440,0 ,27,9791,104040,26,8 ,15,1589,628328,1,1 ,27,9792,104048,24,8 ,15,1590,628336,1,1 ,27,9793,104056,24,8 ,15,1591,628344,1,1 ,27,9391,104064,21,8 ,15,1592,628352,1,1 ,44,15152,628356,32,0 ,17,923,6395524,40,0 ,27,9374,104072,22,8 ,15,1593,628360,1,1 ,27,9798,104080,25,8 ,15,1594,628368,1,1 ,27,9798,104088,26,8 ,15,1595,628376,1,1 ,27,9799,104096,24,8 ,15,1596,628384,1,1 ,20,19961,11114146,172,0 ,27,9800,104104,24,8 ,15,1597,628392,1,1 ,27,9391,104112,21,8 ,15,1598,628400,1,1 ,27,9374,104120,22,8 ,15,1599,628408,1,1 ,27,9805,104128,25,8 ,15,1600,628416,1,1 ,20,17742,6395586,196,0 ,20,17345,5347010,12,0 ,17,923,10065604,16,0 ,44,15152,2725572,32,0 ,45,15153,4298436,16,0 ,17,923,9017028,32,0 ,27,9805,104136,26,8 ,15,1601,628424,1,1 ,27,9806,104144,24,8 ,15,1602,628432,1,1 ,27,9807,104152,24,8 ,15,1603,628440,1,1 ,27,9391,104160,21,8 ,15,1604,628448,1,1 ,27,9374,104168,22,8 ,15,1605,628456,1,1 ,27,9812,104176,25,8 ,15,1606,628464,1,1 ,27,9812,104184,26,8 ,15,1607,628472,1,1 ,27,9813,104192,24,8 ,15,1608,628480,1,1 ,20,15354,628482,240,0 ,20,25701,26842882,112,0 ,17,923,104195,24,0 ,45,15153,5347076,40,0 ,17,923,7444228,40,0 ,27,9814,104200,24,8 ,15,1609,628488,1,1 ,27,9391,104208,21,8 ,15,1610,628496,1,1 ,27,9374,104216,22,8 ,15,1611,628504,1,1 ,27,9819,104224,25,8 ,15,1612,628512,1,1 ,20,23314,20551458,144,0 ,20,17346,5347106,268,0 ,27,9819,104232,26,8 ,15,1613,628520,1,1 ,27,9820,104240,24,8 ,15,1614,628528,1,1 ,27,9821,104248,24,8 ,15,1615,628536,1,1 ,27,9391,104256,21,8 ,15,1616,628544,1,1 ,20,20243,12687170,92,0 ,17,923,10065732,16,0 ,17,923,6920004,48,0 ,44,15152,2201412,16,0 ,44,15152,104260,16,0 ,44,15152,3774276,32,0 ,45,15153,4298564,24,0 ,17,923,7968580,24,0 ,17,923,8492868,40,0 ,17,923,9541444,24,0 ,27,9374,104264,22,8 ,15,1617,628552,1,1 ,27,9826,104272,25,8 ,15,1618,628560,1,1 ,27,9826,104280,26,8 ,15,1619,628568,1,1 ,27,9827,104288,24,8 ,15,1620,628576,1,1 ,20,20741,13735778,208,0 ,20,19114,9541474,140,0 ,27,9828,104296,24,8 ,15,1621,628584,1,1 ,27,9391,104304,21,8 ,15,1622,628592,1,1 ,27,9374,104312,22,8 ,15,1623,628600,1,1 ,27,9833,104320,25,8 ,15,1624,628608,1,1 ,45,15153,4822916,48,0 ,44,15152,628612,136,0 ,27,9833,104328,26,8 ,15,1625,628616,1,1 ,27,9834,104336,24,8 ,15,1626,628624,1,1 ,27,9835,104344,24,8 ,15,1627,628632,1,1 ,27,9391,104352,21,8 ,15,1628,628640,1,1 ,27,9374,104360,22,8 ,15,1629,628648,1,1 ,27,9840,104368,25,8 ,15,1630,628656,1,1 ,27,9840,104376,26,8 ,15,1631,628664,1,1 ,27,9841,104384,24,8 ,15,1632,628672,1,1 ,17,923,104387,16,0 ,17,923,10065860,16,0 ,17,923,6395844,40,0 ,44,15152,2725828,24,0 ,44,15152,2201540,40,0 ,44,15152,104388,24,0 ,17,923,9017284,40,0 ,27,9842,104392,24,8 ,15,1633,628680,1,1 ,27,9391,104400,21,8 ,15,1634,628688,1,1 ,27,9374,104408,22,8 ,15,1635,628696,1,1 ,27,9847,104416,25,8 ,15,1636,628704,1,1 ,27,9847,104424,26,8 ,15,1637,628712,1,1 ,27,9848,104432,24,8 ,15,1638,628720,1,1 ,27,9849,104440,24,8 ,15,1639,628728,1,1 ,27,9391,104448,21,8 ,15,1640,628736,1,1 ,20,26283,28416002,352,0 ,17,923,9541636,32,0 ,45,15153,4298756,48,0 ,17,923,7968772,64,0 ,27,9374,104456,22,8 ,15,1641,628744,1,1 ,27,9854,104464,25,8 ,15,1642,628752,1,1 ,27,9854,104472,26,8 ,15,1643,628760,1,1 ,27,9855,104480,24,8 ,15,1644,628768,1,1 ,20,25354,25794594,112,0 ,20,26403,28940322,368,0 ,27,9856,104488,24,8 ,15,1645,628776,1,1 ,27,9391,104496,21,8 ,15,1646,628784,1,1 ,27,9374,104504,22,8 ,15,1647,628792,1,1 ,27,9861,104512,25,8 ,15,1648,628800,1,1 ,20,19700,10590274,56,0 ,17,923,104515,32,0 ,17,923,10065988,24,0 ,17,923,7444548,40,0 ,44,15152,3250244,88,0 ,44,15152,3774532,24,0 ,45,15153,5347396,16,0 ,27,9861,104520,26,8 ,15,1649,628808,1,1 ,27,9862,104528,24,8 ,15,1650,628816,1,1 ,27,9863,104536,24,8 ,15,1651,628824,1,1 ,27,9391,104544,21,8 ,15,1652,628832,1,1 ,20,23932,22124642,80,0 ,27,9374,104552,22,8 ,15,1653,628840,1,1 ,27,9868,104560,25,8 ,15,1654,628848,1,1 ,27,9868,104568,26,8 ,15,1655,628856,1,1 ,27,9869,104576,24,8 ,15,1656,628864,1,1 ,20,16335,3250306,112,0 ,17,923,8493188,24,0 ,44,15152,2726020,40,0 ,44,15152,104580,48,0 ,27,9870,104584,24,8 ,15,1657,628872,1,1 ,27,9391,104592,21,8 ,15,1658,628880,1,1 ,27,9374,104600,22,8 ,15,1659,628888,1,1 ,27,9875,104608,25,8 ,15,1660,628896,1,1 ,20,20939,15308962,1712,0 ,20,26115,27891874,372,0 ,20,18937,9017506,80,0 ,27,9875,104616,26,8 ,15,1661,628904,1,1 ,27,9876,104624,24,8 ,15,1662,628912,1,1 ,27,9877,104632,24,8 ,15,1663,628920,1,1 ,27,9391,104640,21,8 ,15,1664,628928,1,1 ,45,15153,5347524,24,0 ,17,923,6920388,40,0 ,27,9374,104648,22,8 ,15,1665,628936,1,1 ,27,9882,104656,25,8 ,15,1666,628944,1,1 ,27,9882,104664,26,8 ,15,1667,628952,1,1 ,27,9883,104672,24,8 ,15,1668,628960,1,1 ,27,9884,104680,24,8 ,15,1669,628968,1,1 ,27,9391,104688,21,8 ,15,1670,628976,1,1 ,27,9374,104696,22,8 ,15,1671,628984,1,1 ,27,9889,104704,25,8 ,15,1672,628992,1,1 ,20,1012,104705,304,0 ,17,923,10066180,16,0 ,17,923,6396164,72,0 ,44,15152,2201860,32,0 ,44,15152,3774724,24,0 ,45,15153,4823300,40,0 ,17,923,9017604,40,0 ,17,923,9541892,32,0 ,27,9889,104712,26,8 ,15,1673,629000,1,1 ,27,9890,104720,24,8 ,15,1674,629008,1,1 ,27,9891,104728,24,8 ,15,1675,629016,1,1 ,27,9391,104736,21,8 ,15,1676,629024,1,1 ,27,9374,104744,22,8 ,15,1677,629032,1,1 ,27,9896,104752,25,8 ,15,1678,629040,1,1 ,27,9896,104760,26,8 ,15,1679,629048,1,1 ,27,9897,104768,24,8 ,15,1680,629056,1,1 ,17,923,104771,16,0 ,17,923,8493380,24,0 ,27,9898,104776,24,8 ,15,1681,629064,1,1 ,27,9391,104784,21,8 ,15,1682,629072,1,1 ,27,9374,104792,22,8 ,15,1683,629080,1,1 ,27,9903,104800,25,8 ,15,1684,629088,1,1 ,27,9903,104808,26,8 ,15,1685,629096,1,1 ,27,9904,104816,24,8 ,15,1686,629104,1,1 ,27,9905,104824,24,8 ,15,1687,629112,1,1 ,27,9391,104832,21,8 ,15,1688,629120,1,1 ,17,923,10066308,32,0 ,17,923,7444868,40,0 ,45,15153,4299140,24,0 ,45,15153,5347716,24,0 ,27,9374,104840,22,8 ,15,1689,629128,1,1 ,27,9910,104848,25,8 ,15,1690,629136,1,1 ,27,9910,104856,26,8 ,15,1691,629144,1,1 ,27,9911,104864,24,8 ,15,1692,629152,1,1 ,27,9912,104872,24,8 ,15,1693,629160,1,1 ,27,9391,104880,21,8 ,15,1694,629168,1,1 ,27,9374,104888,22,8 ,15,1695,629176,1,1 ,27,9917,104896,25,8 ,15,1696,629184,1,1 ,20,25143,25270722,248,0 ,17,923,104899,16,0 ,44,15152,3774916,24,0 ,44,15152,2726340,56,0 ,44,15152,1153476,40,0 ,27,9917,104904,26,8 ,15,1697,629192,1,1 ,27,9918,104912,24,8 ,15,1698,629200,1,1 ,27,9919,104920,24,8 ,15,1699,629208,1,1 ,27,9391,104928,21,8 ,15,1700,629216,1,1 ,27,9374,104936,22,8 ,15,1701,629224,1,1 ,27,9924,104944,25,8 ,15,1702,629232,1,1 ,27,9924,104952,26,8 ,15,1703,629240,1,1 ,27,9925,104960,24,8 ,15,1704,629248,1,1 ,20,19701,10590722,52,0 ,17,923,9542148,40,0 ,17,923,6920708,32,0 ,44,15152,2202116,24,0 ,44,15152,104964,144,0 ,17,923,7969284,24,0 ,17,923,8493572,32,0 ,27,9926,104968,24,8 ,15,1705,629256,1,1 ,27,9391,104976,21,8 ,15,1706,629264,1,1 ,27,9374,104984,22,8 ,15,1707,629272,1,1 ,27,9931,104992,25,8 ,15,1708,629280,1,1 ,20,20244,12687906,1000,0 ,27,9931,105000,26,8 ,15,1709,629288,1,1 ,27,9932,105008,24,8 ,15,1710,629296,1,1 ,27,9933,105016,24,8 ,15,1711,629304,1,1 ,27,9391,105024,21,8 ,15,1712,629312,1,1 ,17,923,105027,40,0 ,17,923,9017924,32,0 ,45,15153,4299332,24,0 ,45,15153,4823620,40,0 ,45,15153,5347908,32,0 ,27,9374,105032,22,8 ,15,1713,629320,1,1 ,27,9938,105040,25,8 ,15,1714,629328,1,1 ,27,9938,105048,26,8 ,15,1715,629336,1,1 ,27,9939,105056,24,8 ,15,1716,629344,1,1 ,20,24342,23173730,116,0 ,20,25496,26319458,88,0 ,27,9940,105064,24,8 ,15,1717,629352,1,1 ,27,9391,105072,21,8 ,15,1718,629360,1,1 ,27,9374,105080,22,8 ,15,1719,629368,1,1 ,27,9945,105088,25,8 ,15,1720,629376,1,1 ,20,17129,4823682,348,0 ,20,25702,26843778,112,0 ,17,923,10066564,16,0 ,44,15152,3775108,24,0 ,27,9945,105096,26,8 ,15,1721,629384,1,1 ,27,9946,105104,24,8 ,15,1722,629392,1,1 ,27,9947,105112,24,8 ,15,1723,629400,1,1 ,27,9391,105120,21,8 ,15,1724,629408,1,1 ,20,23591,21076642,452,0 ,27,9374,105128,22,8 ,15,1725,629416,1,1 ,27,9952,105136,25,8 ,15,1726,629424,1,1 ,27,9952,105144,26,8 ,15,1727,629432,1,1 ,27,9953,105152,24,8 ,15,1728,629440,1,1 ,17,923,7969476,32,0 ,17,923,7445188,40,0 ,44,15152,2202308,48,0 ,27,9954,105160,24,8 ,15,1729,629448,1,1 ,27,9391,105168,21,8 ,15,1730,629456,1,1 ,27,9374,105176,22,8 ,15,1731,629464,1,1 ,27,9959,105184,25,8 ,15,1732,629472,1,1 ,20,23933,22125282,80,0 ,27,9959,105192,26,8 ,15,1733,629480,1,1 ,27,9960,105200,24,8 ,15,1734,629488,1,1 ,27,9961,105208,24,8 ,15,1735,629496,1,1 ,27,9391,105216,21,8 ,15,1736,629504,1,1 ,17,923,10066692,24,0 ,17,923,6920964,48,0 ,44,15152,1153796,112,0 ,44,15152,3250948,24,0 ,45,15153,4299524,24,0 ,17,923,8493828,32,0 ,27,9374,105224,22,8 ,15,1737,629512,1,1 ,27,9966,105232,25,8 ,15,1738,629520,1,1 ,27,9966,105240,26,8 ,15,1739,629528,1,1 ,27,9967,105248,24,8 ,15,1740,629536,1,1 ,20,21810,16882466,384,0 ,20,25916,27368226,268,0 ,20,18938,9018146,108,0 ,27,9968,105256,24,8 ,15,1741,629544,1,1 ,27,9391,105264,21,8 ,15,1742,629552,1,1 ,27,9374,105272,22,8 ,15,1743,629560,1,1 ,27,9973,105280,25,8 ,15,1744,629568,1,1 ,20,15620,1153858,684,0 ,17,923,9542468,24,0 ,17,923,6396740,72,0 ,44,15152,3775300,24,0 ,45,15153,5348164,48,0 ,17,923,9018180,40,0 ,27,9973,105288,26,8 ,15,1745,629576,1,1 ,27,9974,105296,24,8 ,15,1746,629584,1,1 ,27,9975,105304,24,8 ,15,1747,629592,1,1 ,27,9391,105312,21,8 ,15,1748,629600,1,1 ,27,9374,105320,22,8 ,15,1749,629608,1,1 ,27,9980,105328,25,8 ,15,1750,629616,1,1 ,27,9980,105336,26,8 ,15,1751,629624,1,1 ,27,9981,105344,24,8 ,15,1752,629632,1,1 ,17,923,105347,16,0 ,45,15153,4823940,64,0 ,44,15152,2726788,24,0 ,27,9982,105352,24,8 ,15,1753,629640,1,1 ,27,9391,105360,21,8 ,15,1754,629648,1,1 ,27,9374,105368,22,8 ,15,1755,629656,1,1 ,27,9987,105376,25,8 ,15,1756,629664,1,1 ,20,23315,20552610,24,0 ,20,25355,25795490,116,0 ,20,19702,10591138,112,0 ,27,9987,105384,26,8 ,15,1757,629672,1,1 ,27,9988,105392,24,8 ,15,1758,629680,1,1 ,27,9989,105400,24,8 ,15,1759,629688,1,1 ,27,9391,105408,21,8 ,15,1760,629696,1,1 ,20,19115,9542594,140,0 ,17,923,10066884,24,0 ,44,15152,629700,24,0 ,44,15152,3251140,16,0 ,45,15153,4299716,40,0 ,17,923,7969732,24,0 ,27,9374,105416,22,8 ,15,1761,629704,1,1 ,27,9994,105424,25,8 ,15,1762,629712,1,1 ,27,9994,105432,26,8 ,15,1763,629720,1,1 ,27,9995,105440,24,8 ,15,1764,629728,1,1 ,27,9996,105448,24,8 ,15,1765,629736,1,1 ,27,9391,105456,21,8 ,15,1766,629744,1,1 ,27,9374,105464,22,8 ,15,1767,629752,1,1 ,27,10001,105472,25,8 ,15,1768,629760,1,1 ,20,19962,11115522,12,0 ,20,16336,3251202,104,0 ,17,923,105475,48,0 ,17,923,9542660,32,0 ,17,923,7445508,40,0 ,44,15152,3775492,48,0 ,17,923,8494084,24,0 ,27,10001,105480,26,8 ,15,1769,629768,1,1 ,27,10002,105488,24,8 ,15,1770,629776,1,1 ,27,10003,105496,24,8 ,15,1771,629784,1,1 ,27,9391,105504,21,8 ,15,1772,629792,1,1 ,27,9374,105512,22,8 ,15,1773,629800,1,1 ,27,10008,105520,25,8 ,15,1774,629808,1,1 ,27,10008,105528,26,8 ,15,1775,629816,1,1 ,27,10009,105536,24,8 ,15,1776,629824,1,1 ,44,15152,3251268,24,0 ,44,15152,2726980,32,0 ,44,15152,2202692,24,0 ,44,15152,1678404,32,0 ,27,10010,105544,24,8 ,15,1777,629832,1,1 ,27,9391,105552,21,8 ,15,1778,629840,1,1 ,27,9374,105560,22,8 ,15,1779,629848,1,1 ,27,10015,105568,25,8 ,15,1780,629856,1,1 ,20,23316,20552802,24,0 ,20,19963,11115618,356,0 ,27,10015,105576,26,8 ,15,1781,629864,1,1 ,27,10016,105584,24,8 ,15,1782,629872,1,1 ,27,10017,105592,24,8 ,15,1783,629880,1,1 ,27,9391,105600,21,8 ,15,1784,629888,1,1 ,17,923,10067076,32,0 ,17,923,6921348,32,0 ,44,15152,629892,104,0 ,17,923,7969924,24,0 ,17,923,9018500,40,0 ,27,9374,105608,22,8 ,15,1785,629896,1,1 ,27,10022,105616,25,8 ,15,1786,629904,1,1 ,27,10022,105624,26,8 ,15,1787,629912,1,1 ,27,10023,105632,24,8 ,15,1788,629920,1,1 ,20,16684,3775650,136,0 ,27,10024,105640,24,8 ,15,1789,629928,1,1 ,27,9391,105648,21,8 ,15,1790,629936,1,1 ,27,9374,105656,22,8 ,15,1791,629944,1,1 ,27,10029,105664,25,8 ,15,1792,629952,1,1 ,17,923,8494276,40,0 ,45,15153,5348548,24,0 ,27,10029,105672,26,8 ,15,1793,629960,1,1 ,27,10030,105680,24,8 ,15,1794,629968,1,1 ,27,10031,105688,24,8 ,15,1795,629976,1,1 ,27,9391,105696,21,8 ,15,1796,629984,1,1 ,20,17743,6397154,12,0 ,27,9374,105704,22,8 ,15,1797,629992,1,1 ,27,10036,105712,25,8 ,15,1798,630000,1,1 ,27,10036,105720,26,8 ,15,1799,630008,1,1 ,27,10037,105728,24,8 ,15,1800,630016,1,1 ,17,923,9542916,40,0 ,44,15152,2202884,40,0 ,44,15152,3251460,32,0 ,45,15153,4300036,16,0 ,27,10038,105736,24,8 ,15,1801,630024,1,1 ,27,9391,105744,21,8 ,15,1802,630032,1,1 ,27,9374,105752,22,8 ,15,1803,630040,1,1 ,27,10043,105760,25,8 ,15,1804,630048,1,1 ,20,23317,20552994,24,0 ,20,25497,26320162,76,0 ,27,10043,105768,26,8 ,15,1805,630056,1,1 ,27,10044,105776,24,8 ,15,1806,630064,1,1 ,27,10045,105784,24,8 ,15,1807,630072,1,1 ,27,9391,105792,21,8 ,15,1808,630080,1,1 ,20,17744,6397250,12,0 ,17,923,7970116,64,0 ,17,923,7445828,24,0 ,44,15152,2727236,48,0 ,44,15152,1678660,48,0 ,27,9374,105800,22,8 ,15,1809,630088,1,1 ,27,10050,105808,25,8 ,15,1810,630096,1,1 ,27,10050,105816,26,8 ,15,1811,630104,1,1 ,27,10051,105824,24,8 ,15,1812,630112,1,1 ,20,23934,22125922,80,0 ,27,10052,105832,24,8 ,15,1813,630120,1,1 ,27,9391,105840,21,8 ,15,1814,630128,1,1 ,27,9374,105848,22,8 ,15,1815,630136,1,1 ,27,10057,105856,25,8 ,15,1816,630144,1,1 ,17,923,105859,16,0 ,17,923,10067332,32,0 ,17,923,6921604,24,0 ,17,923,6397316,48,0 ,44,15152,3775876,48,0 ,45,15153,4300164,24,0 ,45,15153,4824452,40,0 ,45,15153,5348740,24,0 ,27,10057,105864,26,8 ,15,1817,630152,1,1 ,27,10058,105872,24,8 ,15,1818,630160,1,1 ,27,10059,105880,24,8 ,15,1819,630168,1,1 ,27,9391,105888,21,8 ,15,1820,630176,1,1 ,20,17745,6397346,1280,0 ,27,9374,105896,22,8 ,15,1821,630184,1,1 ,27,2558,105904,22,8 ,15,1822,630192,1,1 ,27,10068,105912,24,8 ,15,1823,630200,1,1 ,27,10070,105920,26,8 ,15,1824,630208,1,1 ,17,923,9018820,32,0 ,27,9391,105928,21,8 ,15,1825,630216,1,1 ,27,9374,105936,22,8 ,15,1826,630224,1,1 ,27,2558,105944,22,8 ,15,1827,630232,1,1 ,27,10075,105952,24,8 ,15,1828,630240,1,1 ,20,23318,20553186,24,0 ,20,20742,13737442,76,0 ,27,10070,105960,26,8 ,15,1829,630248,1,1 ,27,9391,105968,21,8 ,15,1830,630256,1,1 ,27,9374,105976,22,8 ,15,1831,630264,1,1 ,27,10080,105984,21,8 ,15,1832,630272,1,1 ,20,24343,23174658,116,0 ,20,25703,26844674,252,0 ,20,20156,11640322,9860,0 ,17,923,105987,32,0 ,17,923,8494596,32,0 ,17,923,7446020,40,0 ,44,15152,3251716,32,0 ,27,10078,105992,22,8 ,15,1833,630280,1,1 ,27,10084,106000,22,8 ,15,1834,630288,1,1 ,27,10086,106008,22,8 ,15,1835,630296,1,1 ,27,10088,106016,24,8 ,15,1836,630304,1,1 ,27,10089,106024,24,8 ,15,1837,630312,1,1 ,27,10090,106032,22,8 ,15,1838,630320,1,1 ,27,10091,106040,22,8 ,15,1839,630328,1,1 ,27,10092,106048,23,8 ,15,1840,630336,1,1 ,17,923,9543236,32,0 ,17,923,6921796,24,0 ,44,15152,2203204,40,0 ,45,15153,4300356,16,0 ,45,15153,5348932,24,0 ,27,10093,106056,24,8 ,15,1841,630344,1,1 ,27,10094,106064,22,8 ,15,1842,630352,1,1 ,27,10095,106072,22,8 ,15,1843,630360,1,1 ,27,10097,106080,23,8 ,15,1844,630368,1,1 ,27,10098,106088,24,8 ,15,1845,630376,1,1 ,27,10099,106096,24,8 ,15,1846,630384,1,1 ,27,10100,106104,21,8 ,15,1847,630392,1,1 ,27,2558,106112,22,8 ,15,1848,630400,1,1 ,20,18939,9019010,12,0 ,20,15217,106114,628,0 ,20,15355,630402,108,0 ,17,923,10067588,24,0 ,44,15152,106116,32,0 ,44,15152,1154692,24,0 ,27,10101,106120,24,8 ,15,1849,630408,1,1 ,27,10102,106128,22,8 ,15,1850,630416,1,1 ,27,10103,106136,21,8 ,15,1851,630424,1,1 ,27,3503,106144,22,8 ,15,1852,630432,1,1 ,20,23319,20553378,24,0 ,27,10107,106152,22,8 ,15,1853,630440,1,1 ,27,10109,106160,22,8 ,15,1854,630448,1,1 ,27,2558,106168,22,8 ,15,1855,630456,1,1 ,27,10110,106176,24,8 ,15,1856,630464,1,1 ,17,923,9019076,40,0 ,44,15152,2727620,24,0 ,44,15152,1679044,32,0 ,45,15153,4300484,16,0 ,45,15153,4824772,72,0 ,27,10070,106184,26,8 ,15,1857,630472,1,1 ,27,10111,106192,21,8 ,15,1858,630480,1,1 ,27,9391,106200,21,8 ,15,1859,630488,1,1 ,27,9374,106208,22,8 ,15,1860,630496,1,1 ,20,18940,9019106,576,0 ,27,2558,106216,22,8 ,15,1861,630504,1,1 ,27,10116,106224,23,8 ,15,1862,630512,1,1 ,27,10070,106232,26,8 ,15,1863,630520,1,1 ,27,9391,106240,21,8 ,15,1864,630528,1,1 ,20,19364,10067714,284,0 ,17,923,106243,16,0 ,17,923,8494852,32,0 ,17,923,6921988,24,0 ,17,923,6397700,32,0 ,44,15152,3251972,32,0 ,44,15152,3776260,16,0 ,45,15153,5349124,56,0 ,27,9374,106248,22,8 ,15,1865,630536,1,1 ,27,2558,106256,22,8 ,15,1866,630544,1,1 ,27,10121,106264,23,8 ,15,1867,630552,1,1 ,27,10070,106272,26,8 ,15,1868,630560,1,1 ,20,19703,10592034,1192,0 ,27,9391,106280,21,8 ,15,1869,630568,1,1 ,27,9374,106288,22,8 ,15,1870,630576,1,1 ,27,10127,106296,22,8 ,15,1871,630584,1,1 ,27,10128,106304,22,8 ,15,1872,630592,1,1 ,20,16337,3252034,208,0 ,20,25356,25796418,116,0 ,17,923,10067780,40,0 ,17,923,7446340,40,0 ,44,15152,1154884,104,0 ,45,15153,4300612,40,0 ,17,923,7970628,32,0 ,17,923,9543492,32,0 ,27,10129,106312,22,8 ,15,1873,630600,1,1 ,27,10130,106320,22,8 ,15,1874,630608,1,1 ,27,10131,106328,22,8 ,15,1875,630616,1,1 ,27,10132,106336,22,8 ,15,1876,630624,1,1 ,20,23320,20553570,144,0 ,27,9666,106344,24,8 ,15,1877,630632,1,1 ,27,10095,106352,22,8 ,15,1878,630640,1,1 ,27,2558,106360,22,8 ,15,1879,630648,1,1 ,27,10133,106368,26,8 ,15,1880,630656,1,1 ,20,17347,5349250,12,0 ,20,25498,26320770,100,0 ,17,923,106371,24,0 ,44,15152,3776388,40,0 ,44,15152,2727812,24,0 ,44,15152,2203524,80,0 ,44,15152,106372,32,0 ,27,1509,106376,24,8 ,15,1881,630664,1,1 ,27,10137,106384,22,8 ,15,1882,630672,1,1 ,27,10138,106392,24,8 ,15,1883,630680,1,1 ,27,10070,106400,26,8 ,15,1884,630688,1,1 ,20,15790,1679266,12,0 ,27,9391,106408,21,8 ,15,1885,630696,1,1 ,27,9374,106416,22,8 ,15,1886,630704,1,1 ,27,10137,106424,22,8 ,15,1887,630712,1,1 ,27,10143,106432,24,8 ,15,1888,630720,1,1 ,44,15152,630724,24,0 ,17,923,6922180,32,0 ,44,15152,1679300,32,0 ,27,10070,106440,26,8 ,15,1889,630728,1,1 ,27,9391,106448,21,8 ,15,1890,630736,1,1 ,27,9374,106456,22,8 ,15,1891,630744,1,1 ,27,10148,106464,21,8 ,15,1892,630752,1,1 ,20,23935,22126562,80,0 ,20,17348,5349346,384,0 ,27,10146,106472,22,8 ,15,1893,630760,1,1 ,27,10151,106480,22,8 ,15,1894,630768,1,1 ,27,10152,106488,22,8 ,15,1895,630776,1,1 ,27,10070,106496,24,8 ,15,1896,630784,1,1 ,20,15791,1679362,192,0 ,17,923,9019396,40,0 ,17,923,6397956,32,0 ,44,15152,3252228,40,0 ,17,923,8495108,40,0 ,27,10153,106504,26,8 ,15,1897,630792,1,1 ,27,9391,106512,21,8 ,15,1898,630800,1,1 ,27,9374,106520,22,8 ,15,1899,630808,1,1 ,27,10158,106528,23,8 ,15,1900,630816,1,1 ,20,19116,9543714,940,0 ,27,10159,106536,23,8 ,15,1901,630824,1,1 ,27,10160,106544,23,8 ,15,1902,630832,1,1 ,27,9644,106552,22,8 ,15,1903,630840,1,1 ,27,10137,106560,22,8 ,15,1904,630848,1,1 ,20,20743,13738050,92,0 ,17,923,106563,24,0 ,17,923,9543748,24,0 ,44,15152,2728004,16,0 ,17,923,7970884,24,0 ,27,10161,106568,24,8 ,15,1905,630856,1,1 ,27,10070,106576,26,8 ,15,1906,630864,1,1 ,27,9391,106584,21,8 ,15,1907,630872,1,1 ,27,9374,106592,22,8 ,15,1908,630880,1,1 ,27,10137,106600,22,8 ,15,1909,630888,1,1 ,27,10166,106608,24,8 ,15,1910,630896,1,1 ,27,10070,106616,26,8 ,15,1911,630904,1,1 ,27,9391,106624,21,8 ,15,1912,630912,1,1 ,17,923,10068100,24,0 ,17,923,7446660,40,0 ,44,15152,106628,48,0 ,44,15152,630916,48,0 ,45,15153,4300932,24,0 ,27,9374,106632,22,8 ,15,1913,630920,1,1 ,27,10137,106640,22,8 ,15,1914,630928,1,1 ,27,10171,106648,24,8 ,15,1915,630936,1,1 ,27,10070,106656,26,8 ,15,1916,630944,1,1 ,27,9391,106664,21,8 ,15,1917,630952,1,1 ,27,9374,106672,22,8 ,15,1918,630960,1,1 ,27,10137,106680,22,8 ,15,1919,630968,1,1 ,27,10176,106688,24,8 ,15,1920,630976,1,1 ,45,15153,5349572,32,0 ,17,923,6922436,24,0 ,44,15152,2728132,136,0 ,44,15152,1679556,216,0 ,44,15152,3776708,80,0 ,27,10070,106696,26,8 ,15,1921,630984,1,1 ,27,9391,106704,21,8 ,15,1922,630992,1,1 ,27,9374,106712,22,8 ,15,1923,631000,1,1 ,27,10137,106720,22,8 ,15,1924,631008,1,1 ,20,22264,18456802,12,0 ,20,16685,3776738,352,0 ,27,10181,106728,24,8 ,15,1925,631016,1,1 ,27,10070,106736,26,8 ,15,1926,631024,1,1 ,27,9391,106744,21,8 ,15,1927,631032,1,1 ,27,9374,106752,22,8 ,15,1928,631040,1,1 ,17,923,106755,32,0 ,17,923,9543940,32,0 ,17,923,6398212,96,0 ,45,15153,4825348,24,0 ,17,923,7971076,64,0 ,27,10137,106760,22,8 ,15,1929,631048,1,1 ,27,10186,106768,24,8 ,15,1930,631056,1,1 ,27,10070,106776,26,8 ,15,1931,631064,1,1 ,27,9391,106784,21,8 ,15,1932,631072,1,1 ,27,9374,106792,22,8 ,15,1933,631080,1,1 ,27,10137,106800,22,8 ,15,1934,631088,1,1 ,27,10191,106808,24,8 ,15,1935,631096,1,1 ,27,10070,106816,26,8 ,15,1936,631104,1,1 ,20,22265,18456898,76,0 ,17,923,10068292,32,0 ,44,15152,3252548,16,0 ,45,15153,4301124,40,0 ,17,923,8495428,48,0 ,17,923,9019716,48,0 ,27,9391,106824,21,8 ,15,1937,631112,1,1 ,27,9374,106832,22,8 ,15,1938,631120,1,1 ,27,10070,106840,24,8 ,15,1939,631128,1,1 ,27,10196,106848,24,8 ,15,1940,631136,1,1 ,27,9391,106856,21,8 ,15,1941,631144,1,1 ,27,9374,106864,22,8 ,15,1942,631152,1,1 ,27,10199,106872,22,8 ,15,1943,631160,1,1 ,27,10201,106880,21,8 ,15,1944,631168,1,1 ,20,25144,25272706,304,0 ,17,923,6922628,32,0 ,27,9388,106888,22,8 ,15,1945,631176,1,1 ,27,10070,106896,24,8 ,15,1946,631184,1,1 ,27,10206,106904,27,8 ,15,1947,631192,1,1 ,27,9391,106912,21,8 ,15,1948,631200,1,1 ,20,24344,23175586,216,0 ,27,9374,106920,22,8 ,15,1949,631208,1,1 ,27,9644,106928,24,8 ,15,1950,631216,1,1 ,27,9388,106936,22,8 ,15,1951,631224,1,1 ,27,2558,106944,22,8 ,15,1952,631232,1,1 ,45,15153,5349828,16,0 ,17,923,7446980,40,0 ,44,15152,3252676,96,0 ,45,15153,4825540,16,0 ,27,9645,106952,26,8 ,15,1953,631240,1,1 ,27,9391,106960,21,8 ,15,1954,631248,1,1 ,27,9374,106968,22,8 ,15,1955,631256,1,1 ,27,9644,106976,24,8 ,15,1956,631264,1,1 ,20,15356,631266,292,0 ,27,9388,106984,22,8 ,15,1957,631272,1,1 ,27,2558,106992,22,8 ,15,1958,631280,1,1 ,27,10220,107000,24,8 ,15,1959,631288,1,1 ,27,9645,107008,26,8 ,15,1960,631296,1,1 ,17,923,107011,16,0 ,17,923,9544196,32,0 ,44,15152,2204164,40,0 ,44,15152,107012,24,0 ,44,15152,631300,112,0 ,27,9391,107016,21,8 ,15,1961,631304,1,1 ,27,9374,107024,22,8 ,15,1962,631312,1,1 ,27,10225,107032,22,8 ,15,1963,631320,1,1 ,27,10226,107040,24,8 ,15,1964,631328,1,1 ,27,9644,107048,24,8 ,15,1965,631336,1,1 ,27,9388,107056,22,8 ,15,1966,631344,1,1 ,27,2558,107064,22,8 ,15,1967,631352,1,1 ,27,9645,107072,24,8 ,15,1968,631360,1,1 ,17,923,10068548,16,0 ,45,15153,4825668,16,0 ,45,15153,5349956,16,0 ,27,10227,107080,24,8 ,15,1969,631368,1,1 ,27,9391,107088,21,8 ,15,1970,631376,1,1 ,27,9374,107096,22,8 ,15,1971,631384,1,1 ,27,9644,107104,24,8 ,15,1972,631392,1,1 ,20,23936,22127202,80,0 ,27,9388,107112,22,8 ,15,1973,631400,1,1 ,27,2558,107120,22,8 ,15,1974,631408,1,1 ,27,9645,107128,24,8 ,15,1975,631416,1,1 ,27,9391,107136,21,8 ,15,1976,631424,1,1 ,20,1013,107137,288,0 ,17,923,107139,32,0 ,45,15153,4301444,24,0 ,17,923,6922884,24,0 ,44,15152,1155716,144,0 ,27,9374,107144,22,8 ,15,1977,631432,1,1 ,27,9391,107152,21,8 ,15,1978,631440,1,1 ,27,9374,107160,22,8 ,15,1979,631448,1,1 ,27,10240,107168,24,8 ,15,1980,631456,1,1 ,20,16104,2204322,12,0 ,20,25499,26321570,412,0 ,27,10241,107176,24,8 ,15,1981,631464,1,1 ,27,9644,107184,24,8 ,15,1982,631472,1,1 ,27,9388,107192,22,8 ,15,1983,631480,1,1 ,27,2558,107200,22,8 ,15,1984,631488,1,1 ,17,923,10068676,16,0 ,44,15152,107204,40,0 ,45,15153,4825796,16,0 ,45,15153,5350084,16,0 ,17,923,8495812,32,0 ,17,923,9020100,40,0 ,27,10242,107208,24,8 ,15,1985,631496,1,1 ,27,9645,107216,26,8 ,15,1986,631504,1,1 ,27,9391,107224,21,8 ,15,1987,631512,1,1 ,27,9374,107232,22,8 ,15,1988,631520,1,1 ,20,25357,25797346,648,0 ,27,9391,107240,21,8 ,15,1989,631528,1,1 ,27,9374,107248,22,8 ,15,1990,631536,1,1 ,27,9391,107256,21,8 ,15,1991,631544,1,1 ,27,9374,107264,22,8 ,15,1992,631552,1,1 ,20,16105,2204418,240,0 ,20,26284,28418818,116,0 ,17,923,9544452,32,0 ,17,923,7447300,24,0 ,17,923,7971588,32,0 ,27,10259,107272,24,8 ,15,1993,631560,1,1 ,27,10261,107280,22,8 ,15,1994,631568,1,1 ,27,10262,107288,22,8 ,15,1995,631576,1,1 ,27,10263,107296,22,8 ,15,1996,631584,1,1 ,20,24172,22651682,1972,0 ,20,20744,13738786,60,0 ,27,10264,107304,24,8 ,15,1997,631592,1,1 ,27,10265,107312,24,8 ,15,1998,631600,1,1 ,27,6475,107320,26,8 ,15,1999,631608,1,1 ,27,41,107328,23,8 ,15,2000,631616,1,1 ,17,923,10068804,48,0 ,17,923,6923076,24,0 ,44,15152,2204484,40,0 ,44,15152,3777348,64,0 ,45,15153,4301636,16,0 ,45,15153,4825924,16,0 ,45,15153,5350212,24,0 ,27,10271,107336,26,8 ,15,2001,631624,1,1 ,27,1118,107344,26,8 ,15,2002,631632,1,1 ,27,10273,107352,24,8 ,15,2003,631640,1,1 ,27,10278,107360,24,8 ,15,2004,631648,1,1 ,27,10282,107368,24,8 ,15,2005,631656,1,1 ,27,10284,107376,24,8 ,15,2006,631664,1,1 ,27,10287,107384,24,8 ,15,2007,631672,1,1 ,27,1707,107392,26,8 ,15,2008,631680,1,1 ,20,25917,27370370,372,0 ,17,923,107395,24,0 ,27,10295,107400,24,8 ,15,2009,631688,1,1 ,27,10298,107408,26,8 ,15,2010,631696,1,1 ,27,10309,107416,26,8 ,15,2011,631704,1,1 ,27,10299,107424,26,8 ,15,2012,631712,1,1 ,20,22266,18457506,64,0 ,20,26404,28943266,368,0 ,27,1707,107432,26,8 ,15,2013,631720,1,1 ,27,10298,107440,26,8 ,15,2014,631728,1,1 ,27,10301,107448,26,8 ,15,2015,631736,1,1 ,27,10309,107456,26,8 ,15,2016,631744,1,1 ,17,923,8496068,40,0 ,17,923,7447492,56,0 ,45,15153,4301764,16,0 ,45,15153,4826052,16,0 ,27,10303,107464,26,8 ,15,2017,631752,1,1 ,27,10305,107472,23,8 ,15,2018,631760,1,1 ,27,41,107480,23,8 ,15,2019,631768,1,1 ,27,41,107488,23,8 ,15,2020,631776,1,1 ,20,23321,20554722,392,0 ,27,340,107496,21,8 ,15,2021,631784,1,1 ,27,1634,107504,24,8 ,15,2022,631792,1,1 ,27,1658,107512,24,8 ,15,2023,631800,1,1 ,27,1633,107520,24,8 ,15,2024,631808,1,1 ,17,923,9544708,32,0 ,17,923,6923268,24,0 ,17,923,6398980,96,0 ,44,15152,107524,40,0 ,45,15153,5350404,40,0 ,17,923,7971844,80,0 ,17,923,9020420,48,0 ,27,1057,107528,22,8 ,15,2025,631816,1,1 ,27,623,107536,23,8 ,15,2026,631824,1,1 ,27,1028,107544,24,8 ,15,2027,631832,1,1 ,27,1040,107552,24,8 ,15,2028,631840,1,1 ,20,20526,13214754,160,0 ,27,10325,107560,25,8 ,15,2029,631848,1,1 ,27,4832,107568,26,8 ,15,2030,631856,1,1 ,27,4733,107576,22,8 ,15,2031,631864,1,1 ,27,4606,107584,24,8 ,15,2032,631872,1,1 ,20,26116,27894850,276,0 ,17,923,107587,40,0 ,45,15153,4826180,32,0 ,45,15153,4301892,32,0 ,27,41,107592,23,8 ,15,2033,631880,1,1 ,27,4294,107600,22,8 ,15,2034,631888,1,1 ,27,10336,107608,22,8 ,15,2035,631896,1,1 ,27,10337,107616,22,8 ,15,2036,631904,1,1 ,27,10338,107624,22,8 ,15,2037,631912,1,1 ,27,10339,107632,22,8 ,15,2038,631920,1,1 ,27,10340,107640,22,8 ,15,2039,631928,1,1 ,27,4463,107648,22,8 ,15,2040,631936,1,1 ,20,22542,18982018,1612,0 ,44,15152,2204804,40,0 ,27,10341,107656,24,8 ,15,2041,631944,1,1 ,27,4000,107664,22,8 ,15,2042,631952,1,1 ,27,10342,107672,22,8 ,15,2043,631960,1,1 ,27,10343,107680,22,8 ,15,2044,631968,1,1 ,27,10344,107688,22,8 ,15,2045,631976,1,1 ,27,10345,107696,22,8 ,15,2046,631984,1,1 ,27,10346,107704,26,8 ,15,2047,631992,1,1 ,27,2138,107712,26,8 ,15,2048,632000,1,1 ,17,923,10069188,48,0 ,17,923,6923460,24,0 ,44,15152,3253444,24,0 ,27,1118,107720,26,8 ,15,2049,632008,1,1 ,27,10349,107728,26,8 ,15,2050,632016,1,1 ,27,10349,107736,28,8 ,15,2051,632024,1,1 ,27,10350,107744,28,8 ,15,2052,632032,1,1 ,20,23937,22127842,80,0 ,20,22983,20030690,268,0 ,27,10350,107752,30,8 ,15,2053,632040,1,1 ,27,163,107760,24,8 ,15,2054,632048,1,1 ,27,5048,107768,24,8 ,15,2055,632056,1,1 ,27,1374,107776,24,8 ,15,2056,632064,1,1 ,20,20745,13739266,76,0 ,17,923,9544964,32,0 ,44,15152,2729220,32,0 ,17,923,8496388,24,0 ,27,1118,107784,26,8 ,15,2057,632072,1,1 ,27,10356,107792,22,8 ,15,2058,632080,1,1 ,27,10357,107800,22,8 ,15,2059,632088,1,1 ,27,10359,107808,22,8 ,15,2060,632096,1,1 ,27,4466,107816,21,8 ,15,2061,632104,1,1 ,27,4456,107824,26,8 ,15,2062,632112,1,1 ,27,4474,107832,21,8 ,15,2063,632120,1,1 ,27,4473,107840,26,8 ,15,2064,632128,1,1 ,45,15153,5350724,16,0 ,44,15152,107844,40,0 ,44,15152,3777860,16,0 ,45,15153,4302148,32,0 ,45,15153,4826436,16,0 ,27,4294,107848,22,8 ,15,2065,632136,1,1 ,27,4471,107856,22,8 ,15,2066,632144,1,1 ,27,4470,107864,24,8 ,15,2067,632152,1,1 ,27,4292,107872,24,8 ,15,2068,632160,1,1 ,20,17130,4826466,368,0 ,27,4456,107880,24,8 ,15,2069,632168,1,1 ,27,4473,107888,24,8 ,15,2070,632176,1,1 ,27,10360,107896,24,8 ,15,2071,632184,1,1 ,27,10361,107904,21,8 ,15,2072,632192,1,1 ,17,923,107907,32,0 ,17,923,9020804,40,0 ,17,923,7447940,24,0 ,17,923,6923652,24,0 ,44,15152,632196,24,0 ,44,15152,3253636,40,0 ,27,5936,107912,21,8 ,15,2073,632200,1,1 ,27,10422,107920,22,8 ,15,2074,632208,1,1 ,27,1034,107928,23,8 ,15,2075,632216,1,1 ,27,579,107936,22,8 ,15,2076,632224,1,1 ,20,22267,18458018,80,0 ,27,579,107944,23,8 ,15,2077,632232,1,1 ,27,10379,107952,22,8 ,15,2078,632240,1,1 ,27,10363,107960,20,8 ,15,2079,632248,1,1 ,27,10364,107968,22,8 ,15,2080,632256,1,1 ,20,16338,3253698,96,0 ,17,923,8496580,40,0 ,44,15152,2205124,40,0 ,44,15152,3777988,24,0 ,45,15153,4826564,16,0 ,45,15153,5350852,32,0 ,27,10365,107976,18,8 ,15,2081,632264,1,1 ,27,10366,107984,18,8 ,15,2082,632272,1,1 ,27,10373,107992,21,8 ,15,2083,632280,1,1 ,27,10371,108000,22,8 ,15,2084,632288,1,1 ,20,16151,2729442,924,0 ,20,25704,26846690,1380,0 ,27,10369,108008,21,8 ,15,2085,632296,1,1 ,27,10367,108016,22,8 ,15,2086,632304,1,1 ,27,10370,108024,26,8 ,15,2087,632312,1,1 ,27,10374,108032,18,8 ,15,2088,632320,1,1 ,20,15792,1680898,132,0 ,17,923,9545220,24,0 ,44,15152,2729476,168,0 ,27,10375,108040,18,8 ,15,2089,632328,1,1 ,27,10378,108048,21,8 ,15,2090,632336,1,1 ,27,10376,108056,22,8 ,15,2091,632344,1,1 ,27,10381,108064,21,8 ,15,2092,632352,1,1 ,27,10385,108072,23,8 ,15,2093,632360,1,1 ,27,10384,108080,23,8 ,15,2094,632368,1,1 ,27,10388,108088,23,8 ,15,2095,632376,1,1 ,27,10387,108096,23,8 ,15,2096,632384,1,1 ,17,923,10069572,48,0 ,17,923,7448132,64,0 ,17,923,6923844,48,0 ,44,15152,632388,152,0 ,45,15153,4302404,24,0 ,45,15153,4826692,16,0 ,27,10391,108104,23,8 ,15,2097,632392,1,1 ,27,10390,108112,23,8 ,15,2098,632400,1,1 ,27,10394,108120,24,8 ,15,2099,632408,1,1 ,27,10393,108128,23,8 ,15,2100,632416,1,1 ,20,18473,7972450,1376,0 ,27,10395,108136,22,8 ,15,2101,632424,1,1 ,27,10397,108144,22,8 ,15,2102,632432,1,1 ,27,10401,108152,22,8 ,15,2103,632440,1,1 ,27,10404,108160,19,8 ,15,2104,632448,1,1 ,17,923,108163,16,0 ,17,923,7972484,24,0 ,44,15152,108164,32,0 ,44,15152,3778180,24,0 ,27,10405,108168,26,8 ,15,2105,632456,1,1 ,27,10406,108176,24,8 ,15,2106,632464,1,1 ,27,634,108184,21,8 ,15,2107,632472,1,1 ,27,10407,108192,24,8 ,15,2108,632480,1,1 ,20,26285,28419746,108,0 ,27,10408,108200,20,8 ,15,2109,632488,1,1 ,27,1697,108208,23,8 ,15,2110,632496,1,1 ,27,1025,108216,24,8 ,15,2111,632504,1,1 ,27,10409,108224,20,8 ,15,2112,632512,1,1 ,17,923,9545412,24,0 ,44,15152,3253956,24,0 ,45,15153,4826820,24,0 ,45,15153,5351108,32,0 ,17,923,9021124,32,0 ,27,10410,108232,24,8 ,15,2113,632520,1,1 ,27,10411,108240,24,8 ,15,2114,632528,1,1 ,27,3216,108248,23,8 ,15,2115,632536,1,1 ,27,3216,108256,24,8 ,15,2116,632544,1,1 ,27,10412,108264,22,8 ,15,2117,632552,1,1 ,27,10413,108272,23,8 ,15,2118,632560,1,1 ,27,10414,108280,25,8 ,15,2119,632568,1,1 ,27,10414,108288,26,8 ,15,2120,632576,1,1 ,17,923,108291,32,0 ,17,923,8496900,40,0 ,17,923,6399748,40,0 ,44,15152,2205444,240,0 ,44,15152,1156868,96,0 ,45,15153,4302596,16,0 ,27,1062,108296,21,8 ,15,2121,632584,1,1 ,27,10416,108304,23,8 ,15,2122,632592,1,1 ,27,10417,108312,23,8 ,15,2123,632600,1,1 ,27,10418,108320,23,8 ,15,2124,632608,1,1 ,20,21811,16885538,12,0 ,27,10419,108328,22,8 ,15,2125,632616,1,1 ,27,10420,108336,22,8 ,15,2126,632624,1,1 ,27,1040,108344,24,8 ,15,2127,632632,1,1 ,27,10423,108352,22,8 ,15,2128,632640,1,1 ,17,923,7972676,64,0 ,44,15152,3778372,40,0 ,27,1374,108360,22,8 ,15,2129,632648,1,1 ,27,3583,108368,23,8 ,15,2130,632656,1,1 ,27,3620,108376,21,8 ,15,2131,632664,1,1 ,27,3591,108384,21,8 ,15,2132,632672,1,1 ,20,23938,22128482,80,0 ,20,20746,13739874,432,0 ,27,3631,108392,21,8 ,15,2133,632680,1,1 ,27,2562,108400,23,8 ,15,2134,632688,1,1 ,27,2562,108408,24,8 ,15,2135,632696,1,1 ,27,10428,108416,24,8 ,15,2136,632704,1,1 ,20,21812,16885634,12,0 ,20,19964,11118466,172,0 ,17,923,9545604,32,0 ,44,15152,1681284,64,0 ,44,15152,108420,40,0 ,44,15152,3254148,32,0 ,45,15153,4302724,16,0 ,45,15153,4827012,16,0 ,27,10425,108424,20,8 ,15,2137,632712,1,1 ,27,10426,108432,24,8 ,15,2138,632720,1,1 ,27,10427,108440,23,8 ,15,2139,632728,1,1 ,27,3112,108448,26,8 ,15,2140,632736,1,1 ,20,24515,23701410,272,0 ,27,3220,108456,24,8 ,15,2141,632744,1,1 ,27,1562,108464,26,8 ,15,2142,632752,1,1 ,27,10431,108472,22,8 ,15,2143,632760,1,1 ,27,10492,108480,26,8 ,15,2144,632768,1,1 ,17,923,10069956,48,0 ,17,923,6924228,32,0 ,45,15153,5351364,24,0 ,17,923,9021380,32,0 ,27,10434,108488,21,8 ,15,2145,632776,1,1 ,27,10435,108496,23,8 ,15,2146,632784,1,1 ,27,10471,108504,24,8 ,15,2147,632792,1,1 ,27,10470,108512,22,8 ,15,2148,632800,1,1 ,20,21813,16885730,52,0 ,20,19365,10069986,116,0 ,20,21227,15837154,192,0 ,27,10462,108520,24,8 ,15,2149,632808,1,1 ,27,10461,108528,26,8 ,15,2150,632816,1,1 ,27,10437,108536,23,8 ,15,2151,632824,1,1 ,27,10437,108544,24,8 ,15,2152,632832,1,1 ,17,923,108547,16,0 ,45,15153,4827140,16,0 ,45,15153,4302852,24,0 ,27,10460,108552,22,8 ,15,2153,632840,1,1 ,27,10453,108560,22,8 ,15,2154,632848,1,1 ,27,1748,108568,24,8 ,15,2155,632856,1,1 ,27,1747,108576,23,8 ,15,2156,632864,1,1 ,20,22268,18458658,96,0 ,27,10439,108584,21,8 ,15,2157,632872,1,1 ,27,10440,108592,22,8 ,15,2158,632880,1,1 ,27,10441,108600,23,8 ,15,2159,632888,1,1 ,27,10442,108608,22,8 ,15,2160,632896,1,1 ,17,923,8497220,32,0 ,17,923,7448644,24,0 ,17,923,6400068,24,0 ,27,10443,108616,22,8 ,15,2161,632904,1,1 ,27,1707,108624,26,8 ,15,2162,632912,1,1 ,27,10444,108632,22,8 ,15,2163,632920,1,1 ,27,10445,108640,22,8 ,15,2164,632928,1,1 ,20,24345,23177314,252,0 ,27,10446,108648,21,8 ,15,2165,632936,1,1 ,27,10447,108656,21,8 ,15,2166,632944,1,1 ,27,10448,108664,21,8 ,15,2167,632952,1,1 ,27,1562,108672,24,8 ,15,2168,632960,1,1 ,17,923,108675,16,0 ,17,923,9545860,24,0 ,44,15152,3254404,96,0 ,44,15152,3778692,56,0 ,45,15153,4827268,16,0 ,45,15153,5351556,24,0 ,27,10449,108680,21,8 ,15,2169,632968,1,1 ,27,10450,108688,21,8 ,15,2170,632976,1,1 ,27,10451,108696,22,8 ,15,2171,632984,1,1 ,27,10459,108704,22,8 ,15,2172,632992,1,1 ,20,18017,6924450,12,0 ,27,10462,108712,24,8 ,15,2173,633000,1,1 ,27,10454,108720,24,8 ,15,2174,633008,1,1 ,27,10455,108728,24,8 ,15,2175,633016,1,1 ,27,10456,108736,23,8 ,15,2176,633024,1,1 ,20,23592,21080258,900,0 ,20,16339,3254466,160,0 ,17,923,9021636,40,0 ,17,923,6924484,24,0 ,44,15152,108740,24,0 ,45,15153,4303044,24,0 ,27,10457,108744,24,8 ,15,2177,633032,1,1 ,27,623,108752,25,8 ,15,2178,633040,1,1 ,27,10463,108760,24,8 ,15,2179,633048,1,1 ,27,10464,108768,22,8 ,15,2180,633056,1,1 ,27,10465,108776,22,8 ,15,2181,633064,1,1 ,27,10466,108784,22,8 ,15,2182,633072,1,1 ,27,10455,108792,24,8 ,15,2183,633080,1,1 ,27,10467,108800,24,8 ,15,2184,633088,1,1 ,20,18018,6924546,248,0 ,17,923,108803,16,0 ,45,15153,4827396,16,0 ,17,923,7448836,24,0 ,17,923,6400260,16,0 ,27,10468,108808,23,8 ,15,2185,633096,1,1 ,27,10472,108816,24,8 ,15,2186,633104,1,1 ,27,10473,108824,24,8 ,15,2187,633112,1,1 ,27,10474,108832,24,8 ,15,2188,633120,1,1 ,20,20527,13216034,304,0 ,27,10475,108840,22,8 ,15,2189,633128,1,1 ,27,1509,108848,24,8 ,15,2190,633136,1,1 ,27,1141,108856,22,8 ,15,2191,633144,1,1 ,27,10476,108864,24,8 ,15,2192,633152,1,1 ,17,923,10070340,48,0 ,45,15153,5351748,32,0 ,17,923,7973188,40,0 ,17,923,8497476,32,0 ,17,923,9546052,32,0 ,27,10477,108872,24,8 ,15,2193,633160,1,1 ,27,10478,108880,24,8 ,15,2194,633168,1,1 ,27,10479,108888,24,8 ,15,2195,633176,1,1 ,27,10480,108896,24,8 ,15,2196,633184,1,1 ,27,10481,108904,24,8 ,15,2197,633192,1,1 ,27,10482,108912,24,8 ,15,2198,633200,1,1 ,27,10483,108920,24,8 ,15,2199,633208,1,1 ,27,10484,108928,24,8 ,15,2200,633216,1,1 ,20,21814,16886146,280,0 ,17,923,108931,16,0 ,45,15153,4827524,24,0 ,17,923,6924676,32,0 ,17,923,6400388,56,0 ,44,15152,1681796,32,0 ,44,15152,108932,24,0 ,45,15153,4303236,16,0 ,27,10485,108936,23,8 ,15,2201,633224,1,1 ,27,10486,108944,24,8 ,15,2202,633232,1,1 ,27,10487,108952,24,8 ,15,2203,633240,1,1 ,27,10488,108960,24,8 ,15,2204,633248,1,1 ,27,10489,108968,24,8 ,15,2205,633256,1,1 ,27,10490,108976,24,8 ,15,2206,633264,1,1 ,27,2562,108984,22,8 ,15,2207,633272,1,1 ,27,1427,108992,26,8 ,15,2208,633280,1,1 ,17,923,7449028,32,0 ,27,445,109000,23,8 ,15,2209,633288,1,1 ,27,1421,109008,26,8 ,15,2210,633296,1,1 ,27,579,109016,22,8 ,15,2211,633304,1,1 ,27,579,109024,23,8 ,15,2212,633312,1,1 ,20,23939,22129122,80,0 ,27,1050,109032,24,8 ,15,2213,633320,1,1 ,27,616,109040,23,8 ,15,2214,633328,1,1 ,27,1062,109048,21,8 ,15,2215,633336,1,1 ,27,1051,109056,26,8 ,15,2216,633344,1,1 ,20,26286,28420610,260,0 ,17,923,109059,16,0 ,17,923,9021956,32,0 ,44,15152,1157636,40,0 ,45,15153,4303364,16,0 ,27,1026,109064,24,8 ,15,2217,633352,1,1 ,27,1404,109072,24,8 ,15,2218,633360,1,1 ,27,1052,109080,24,8 ,15,2219,633368,1,1 ,27,1418,109088,26,8 ,15,2220,633376,1,1 ,20,15793,1681954,148,0 ,27,1039,109096,21,8 ,15,2221,633384,1,1 ,27,1038,109104,26,8 ,15,2222,633392,1,1 ,27,1402,109112,22,8 ,15,2223,633400,1,1 ,27,1380,109120,22,8 ,15,2224,633408,1,1 ,17,923,9546308,24,0 ,44,15152,109124,16,0 ,44,15152,3779140,48,0 ,45,15153,4827716,80,0 ,45,15153,5352004,16,0 ,17,923,8497732,32,0 ,27,1053,109128,24,8 ,15,2225,633416,1,1 ,27,1054,109136,26,8 ,15,2226,633424,1,1 ,27,1043,109144,24,8 ,15,2227,633432,1,1 ,27,1025,109152,24,8 ,15,2228,633440,1,1 ,27,1055,109160,24,8 ,15,2229,633448,1,1 ,27,1038,109168,25,8 ,15,2230,633456,1,1 ,27,1400,109176,24,8 ,15,2231,633464,1,1 ,27,1057,109184,22,8 ,15,2232,633472,1,1 ,20,16106,2206338,164,0 ,17,923,109187,24,0 ,17,923,7973508,32,0 ,17,923,6924932,32,0 ,44,15152,1682052,56,0 ,45,15153,4303492,24,0 ,27,1060,109192,26,8 ,15,2233,633480,1,1 ,27,1056,109200,26,8 ,15,2234,633488,1,1 ,27,469,109208,26,8 ,15,2235,633496,1,1 ,27,1396,109216,24,8 ,15,2236,633504,1,1 ,27,1397,109224,26,8 ,15,2237,633512,1,1 ,27,1401,109232,24,8 ,15,2238,633520,1,1 ,27,1364,109240,26,8 ,15,2239,633528,1,1 ,27,1398,109248,24,8 ,15,2240,633536,1,1 ,17,923,10070724,48,0 ,17,923,7449284,24,0 ,44,15152,109252,24,0 ,45,15153,5352132,16,0 ,27,1403,109256,22,8 ,15,2241,633544,1,1 ,27,1427,109264,26,8 ,15,2242,633552,1,1 ,27,445,109272,23,8 ,15,2243,633560,1,1 ,27,1421,109280,26,8 ,15,2244,633568,1,1 ,27,579,109288,22,8 ,15,2245,633576,1,1 ,27,579,109296,23,8 ,15,2246,633584,1,1 ,27,1050,109304,24,8 ,15,2247,633592,1,1 ,27,616,109312,23,8 ,15,2248,633600,1,1 ,20,15357,633602,76,0 ,20,25145,25275138,172,0 ,17,923,9546500,32,0 ,44,15152,633604,24,0 ,17,923,9022212,40,0 ,27,1062,109320,21,8 ,15,2249,633608,1,1 ,27,1051,109328,26,8 ,15,2250,633616,1,1 ,27,1026,109336,24,8 ,15,2251,633624,1,1 ,27,1404,109344,24,8 ,15,2252,633632,1,1 ,20,22269,18459426,52,0 ,27,1052,109352,24,8 ,15,2253,633640,1,1 ,27,1418,109360,26,8 ,15,2254,633648,1,1 ,27,1039,109368,21,8 ,15,2255,633656,1,1 ,27,1038,109376,26,8 ,15,2256,633664,1,1 ,17,923,109379,32,0 ,17,923,8497988,32,0 ,17,923,6400836,104,0 ,44,15152,2730820,24,0 ,44,15152,1157956,88,0 ,45,15153,4303684,16,0 ,45,15153,5352260,48,0 ,27,1402,109384,22,8 ,15,2257,633672,1,1 ,27,1380,109392,22,8 ,15,2258,633680,1,1 ,27,1053,109400,24,8 ,15,2259,633688,1,1 ,27,1054,109408,26,8 ,15,2260,633696,1,1 ,27,1043,109416,24,8 ,15,2261,633704,1,1 ,27,1025,109424,24,8 ,15,2262,633712,1,1 ,27,1055,109432,24,8 ,15,2263,633720,1,1 ,27,1038,109440,25,8 ,15,2264,633728,1,1 ,20,1014,109441,28,0 ,20,19366,10070914,56,0 ,17,923,7973764,24,0 ,17,923,7449476,40,0 ,17,923,6925188,24,0 ,44,15152,109444,16,0 ,44,15152,3255172,24,0 ,27,1400,109448,24,8 ,15,2265,633736,1,1 ,27,1057,109456,22,8 ,15,2266,633744,1,1 ,27,1060,109464,26,8 ,15,2267,633752,1,1 ,27,1056,109472,26,8 ,15,2268,633760,1,1 ,27,1396,109480,24,8 ,15,2269,633768,1,1 ,27,1397,109488,26,8 ,15,2270,633776,1,1 ,27,1401,109496,24,8 ,15,2271,633784,1,1 ,27,1364,109504,26,8 ,15,2272,633792,1,1 ,45,15153,4303812,16,0 ,44,15152,633796,40,0 ,44,15152,3779524,56,0 ,27,1398,109512,24,8 ,15,2273,633800,1,1 ,27,1403,109520,22,8 ,15,2274,633808,1,1 ,27,1427,109528,26,8 ,15,2275,633816,1,1 ,27,445,109536,23,8 ,15,2276,633824,1,1 ,20,17349,5352418,856,0 ,20,16686,3779554,524,0 ,27,1421,109544,26,8 ,15,2277,633832,1,1 ,27,579,109552,22,8 ,15,2278,633840,1,1 ,27,579,109560,23,8 ,15,2279,633848,1,1 ,27,1050,109568,24,8 ,15,2280,633856,1,1 ,17,923,9546756,32,0 ,44,15152,2731012,72,0 ,44,15152,109572,16,0 ,27,616,109576,23,8 ,15,2281,633864,1,1 ,27,1062,109584,21,8 ,15,2282,633872,1,1 ,27,1051,109592,26,8 ,15,2283,633880,1,1 ,27,1026,109600,24,8 ,15,2284,633888,1,1 ,27,1404,109608,24,8 ,15,2285,633896,1,1 ,27,1052,109616,24,8 ,15,2286,633904,1,1 ,27,1418,109624,26,8 ,15,2287,633912,1,1 ,27,1039,109632,21,8 ,15,2288,633920,1,1 ,17,923,109635,32,0 ,17,923,10071108,48,0 ,17,923,6925380,24,0 ,44,15152,1682500,24,0 ,44,15152,3255364,72,0 ,45,15153,4303940,24,0 ,17,923,7973956,56,0 ,17,923,8498244,32,0 ,17,923,9022532,32,0 ,27,1038,109640,26,8 ,15,2289,633928,1,1 ,27,1402,109648,22,8 ,15,2290,633936,1,1 ,27,1380,109656,22,8 ,15,2291,633944,1,1 ,27,1053,109664,24,8 ,15,2292,633952,1,1 ,20,1015,109665,52,0 ,20,23940,22129762,80,0 ,27,1054,109672,26,8 ,15,2293,633960,1,1 ,27,1043,109680,24,8 ,15,2294,633968,1,1 ,27,1025,109688,24,8 ,15,2295,633976,1,1 ,27,1055,109696,24,8 ,15,2296,633984,1,1 ,44,15152,109700,16,0 ,27,1038,109704,25,8 ,15,2297,633992,1,1 ,27,1400,109712,24,8 ,15,2298,634000,1,1 ,27,1057,109720,22,8 ,15,2299,634008,1,1 ,27,1060,109728,26,8 ,15,2300,634016,1,1 ,27,1056,109736,26,8 ,15,2301,634024,1,1 ,27,350,109744,26,8 ,15,2302,634032,1,1 ,27,1396,109752,24,8 ,15,2303,634040,1,1 ,27,1397,109760,26,8 ,15,2304,634048,1,1 ,20,22270,18459842,52,0 ,45,15153,5352644,16,0 ,17,923,7449796,32,0 ,45,15153,4828356,16,0 ,27,1401,109768,24,8 ,15,2305,634056,1,1 ,27,1364,109776,26,8 ,15,2306,634064,1,1 ,27,1398,109784,24,8 ,15,2307,634072,1,1 ,27,1403,109792,22,8 ,15,2308,634080,1,1 ,20,19965,11119842,124,0 ,20,26117,27897058,152,0 ,27,1427,109800,26,8 ,15,2309,634088,1,1 ,27,445,109808,23,8 ,15,2310,634096,1,1 ,27,1421,109816,26,8 ,15,2311,634104,1,1 ,27,579,109824,22,8 ,15,2312,634112,1,1 ,17,923,9547012,40,0 ,17,923,6925572,24,0 ,44,15152,1682692,152,0 ,44,15152,109828,24,0 ,44,15152,634116,128,0 ,45,15153,4304132,24,0 ,27,579,109832,23,8 ,15,2313,634120,1,1 ,27,1050,109840,24,8 ,15,2314,634128,1,1 ,27,616,109848,23,8 ,15,2315,634136,1,1 ,27,1062,109856,21,8 ,15,2316,634144,1,1 ,20,22026,17935650,440,0 ,27,1051,109864,26,8 ,15,2317,634152,1,1 ,27,1026,109872,24,8 ,15,2318,634160,1,1 ,27,1404,109880,24,8 ,15,2319,634168,1,1 ,27,1052,109888,24,8 ,15,2320,634176,1,1 ,20,22984,20032834,12,0 ,20,19367,10071362,204,0 ,17,923,109891,24,0 ,17,923,9022788,40,0 ,45,15153,4828484,16,0 ,45,15153,5352772,32,0 ,17,923,8498500,32,0 ,27,1418,109896,26,8 ,15,2321,634184,1,1 ,27,1039,109904,21,8 ,15,2322,634192,1,1 ,27,1038,109912,26,8 ,15,2323,634200,1,1 ,27,1402,109920,22,8 ,15,2324,634208,1,1 ,20,15358,634210,56,0 ,27,1380,109928,22,8 ,15,2325,634216,1,1 ,27,1053,109936,24,8 ,15,2326,634224,1,1 ,27,1054,109944,26,8 ,15,2327,634232,1,1 ,27,1043,109952,24,8 ,15,2328,634240,1,1 ,44,15152,3779972,32,0 ,27,1025,109960,24,8 ,15,2329,634248,1,1 ,27,1055,109968,24,8 ,15,2330,634256,1,1 ,27,1038,109976,25,8 ,15,2331,634264,1,1 ,27,1400,109984,24,8 ,15,2332,634272,1,1 ,20,22985,20032930,196,0 ,27,1057,109992,22,8 ,15,2333,634280,1,1 ,27,1060,110000,26,8 ,15,2334,634288,1,1 ,27,1056,110008,26,8 ,15,2335,634296,1,1 ,27,1396,110016,24,8 ,15,2336,634304,1,1 ,20,16340,3255746,148,0 ,17,923,10071492,48,0 ,17,923,7450052,32,0 ,17,923,6925764,24,0 ,44,15152,110020,32,0 ,45,15153,4304324,24,0 ,45,15153,4828612,16,0 ,27,1397,110024,26,8 ,15,2337,634312,1,1 ,27,1401,110032,24,8 ,15,2338,634320,1,1 ,27,1364,110040,26,8 ,15,2339,634328,1,1 ,27,1398,110048,24,8 ,15,2340,634336,1,1 ,20,21228,15838690,108,0 ,27,1403,110056,22,8 ,15,2341,634344,1,1 ,27,1427,110064,26,8 ,15,2342,634352,1,1 ,27,445,110072,23,8 ,15,2343,634360,1,1 ,27,1421,110080,26,8 ,15,2344,634368,1,1 ,20,1016,110081,8,0 ,17,923,110083,24,0 ,17,923,7974404,24,0 ,44,15152,1158660,16,0 ,27,579,110088,22,8 ,15,2345,634376,1,1 ,27,579,110096,23,8 ,15,2346,634384,1,1 ,27,1050,110104,24,8 ,15,2347,634392,1,1 ,27,616,110112,23,8 ,15,2348,634400,1,1 ,27,1062,110120,21,8 ,15,2349,634408,1,1 ,27,1051,110128,26,8 ,15,2350,634416,1,1 ,27,1026,110136,24,8 ,15,2351,634424,1,1 ,27,1404,110144,24,8 ,15,2352,634432,1,1 ,17,923,9547332,32,0 ,44,15152,2731588,24,0 ,45,15153,4828740,24,0 ,45,15153,5353028,24,0 ,17,923,8498756,32,0 ,27,1052,110152,24,8 ,15,2353,634440,1,1 ,27,1418,110160,26,8 ,15,2354,634448,1,1 ,27,1039,110168,21,8 ,15,2355,634456,1,1 ,27,1038,110176,26,8 ,15,2356,634464,1,1 ,20,22271,18460258,52,0 ,27,1402,110184,22,8 ,15,2357,634472,1,1 ,27,1380,110192,22,8 ,15,2358,634480,1,1 ,27,1053,110200,24,8 ,15,2359,634488,1,1 ,27,1054,110208,26,8 ,15,2360,634496,1,1 ,17,923,9023108,32,0 ,17,923,6925956,32,0 ,17,923,6401668,104,0 ,44,15152,2207364,56,0 ,44,15152,1158788,32,0 ,44,15152,3255940,56,0 ,44,15152,3780228,80,0 ,45,15153,4304516,16,0 ,27,1043,110216,24,8 ,15,2361,634504,1,1 ,27,1025,110224,24,8 ,15,2362,634512,1,1 ,27,1055,110232,24,8 ,15,2363,634520,1,1 ,27,1038,110240,25,8 ,15,2364,634528,1,1 ,27,1400,110248,24,8 ,15,2365,634536,1,1 ,27,1057,110256,22,8 ,15,2366,634544,1,1 ,27,1060,110264,26,8 ,15,2367,634552,1,1 ,27,1056,110272,26,8 ,15,2368,634560,1,1 ,20,15794,1683138,132,0 ,20,24898,24751810,280,0 ,17,923,110275,16,0 ,17,923,7974596,24,0 ,17,923,7450308,24,0 ,44,15152,110276,16,0 ,27,287,110280,26,8 ,15,2369,634568,1,1 ,27,1396,110288,24,8 ,15,2370,634576,1,1 ,27,1397,110296,26,8 ,15,2371,634584,1,1 ,27,1401,110304,24,8 ,15,2372,634592,1,1 ,20,23941,22130402,80,0 ,27,1364,110312,26,8 ,15,2373,634600,1,1 ,27,1398,110320,24,8 ,15,2374,634608,1,1 ,27,1403,110328,22,8 ,15,2375,634616,1,1 ,27,1427,110336,26,8 ,15,2376,634624,1,1 ,45,15153,5353220,40,0 ,44,15152,2731780,24,0 ,45,15153,4304644,32,0 ,45,15153,4828932,16,0 ,27,445,110344,23,8 ,15,2377,634632,1,1 ,27,1421,110352,26,8 ,15,2378,634640,1,1 ,27,579,110360,22,8 ,15,2379,634648,1,1 ,27,579,110368,23,8 ,15,2380,634656,1,1 ,20,15359,634658,76,0 ,20,26405,28946210,564,0 ,20,25918,27373346,596,0 ,27,1050,110376,24,8 ,15,2381,634664,1,1 ,27,616,110384,23,8 ,15,2382,634672,1,1 ,27,1062,110392,21,8 ,15,2383,634680,1,1 ,27,1051,110400,26,8 ,15,2384,634688,1,1 ,17,923,110403,24,0 ,17,923,10071876,48,0 ,44,15152,110404,24,0 ,17,923,8499012,32,0 ,17,923,9547588,32,0 ,27,1026,110408,24,8 ,15,2385,634696,1,1 ,27,1404,110416,24,8 ,15,2386,634704,1,1 ,27,1052,110424,24,8 ,15,2387,634712,1,1 ,27,1418,110432,26,8 ,15,2388,634720,1,1 ,27,1039,110440,21,8 ,15,2389,634728,1,1 ,27,1038,110448,26,8 ,15,2390,634736,1,1 ,27,1402,110456,22,8 ,15,2391,634744,1,1 ,27,1380,110464,22,8 ,15,2392,634752,1,1 ,20,25500,26324866,884,0 ,17,923,9023364,40,0 ,17,923,7450500,24,0 ,17,923,6926212,48,0 ,44,15152,1159044,80,0 ,45,15153,4829060,16,0 ,17,923,7974788,24,0 ,27,1053,110472,24,8 ,15,2393,634760,1,1 ,27,1054,110480,26,8 ,15,2394,634768,1,1 ,27,1043,110488,24,8 ,15,2395,634776,1,1 ,27,1025,110496,24,8 ,15,2396,634784,1,1 ,20,16107,2207650,148,0 ,27,1055,110504,24,8 ,15,2397,634792,1,1 ,27,1038,110512,25,8 ,15,2398,634800,1,1 ,27,1400,110520,24,8 ,15,2399,634808,1,1 ,27,1057,110528,22,8 ,15,2400,634816,1,1 ,44,15152,2731972,24,0 ,27,1060,110536,26,8 ,15,2401,634824,1,1 ,27,1056,110544,26,8 ,15,2402,634832,1,1 ,27,1396,110552,24,8 ,15,2403,634840,1,1 ,27,1397,110560,26,8 ,15,2404,634848,1,1 ,27,1401,110568,24,8 ,15,2405,634856,1,1 ,27,1364,110576,26,8 ,15,2406,634864,1,1 ,27,1398,110584,24,8 ,15,2407,634872,1,1 ,27,1403,110592,22,8 ,15,2408,634880,1,1 ,20,22272,18460674,52,0 ,17,923,110595,24,0 ,45,15153,4829188,16,0 ,44,15152,110596,24,0 ,45,15153,4304900,24,0 ,27,1427,110600,26,8 ,15,2409,634888,1,1 ,27,445,110608,23,8 ,15,2410,634896,1,1 ,27,1421,110616,26,8 ,15,2411,634904,1,1 ,27,579,110624,22,8 ,15,2412,634912,1,1 ,20,24516,23703586,24,0 ,20,23322,20557858,724,0 ,27,579,110632,23,8 ,15,2413,634920,1,1 ,27,1050,110640,24,8 ,15,2414,634928,1,1 ,27,616,110648,23,8 ,15,2415,634936,1,1 ,27,1062,110656,21,8 ,15,2416,634944,1,1 ,20,24346,23179330,116,0 ,17,923,9547844,32,0 ,17,923,7450692,24,0 ,44,15152,2207812,64,0 ,44,15152,3256388,24,0 ,45,15153,5353540,24,0 ,17,923,7974980,24,0 ,17,923,8499268,32,0 ,27,1051,110664,26,8 ,15,2417,634952,1,1 ,27,1026,110672,24,8 ,15,2418,634960,1,1 ,27,1404,110680,24,8 ,15,2419,634968,1,1 ,27,1052,110688,24,8 ,15,2420,634976,1,1 ,20,25146,25276514,248,0 ,27,1418,110696,26,8 ,15,2421,634984,1,1 ,27,1039,110704,21,8 ,15,2422,634992,1,1 ,27,1038,110712,26,8 ,15,2423,635000,1,1 ,27,1402,110720,22,8 ,15,2424,635008,1,1 ,45,15153,4829316,24,0 ,44,15152,2732164,88,0 ,27,1380,110728,22,8 ,15,2425,635016,1,1 ,27,1053,110736,24,8 ,15,2426,635024,1,1 ,27,1054,110744,26,8 ,15,2427,635032,1,1 ,27,1043,110752,24,8 ,15,2428,635040,1,1 ,20,15621,1159330,96,0 ,27,1025,110760,24,8 ,15,2429,635048,1,1 ,27,1055,110768,24,8 ,15,2430,635056,1,1 ,27,1038,110776,25,8 ,15,2431,635064,1,1 ,27,1057,110784,22,8 ,15,2432,635072,1,1 ,20,19966,11120834,12,0 ,20,18019,6926530,216,0 ,17,923,110787,24,0 ,17,923,10072260,40,0 ,44,15152,110788,40,0 ,45,15153,4305092,24,0 ,17,923,9023684,40,0 ,27,1060,110792,26,8 ,15,2433,635080,1,1 ,27,1396,110800,24,8 ,15,2434,635088,1,1 ,27,1397,110808,26,8 ,15,2435,635096,1,1 ,27,1401,110816,24,8 ,15,2436,635104,1,1 ,20,24517,23703778,56,0 ,20,17131,4829410,296,0 ,20,18941,9023714,364,0 ,27,1364,110824,26,8 ,15,2437,635112,1,1 ,27,1398,110832,24,8 ,15,2438,635120,1,1 ,27,1403,110840,22,8 ,15,2439,635128,1,1 ,27,1118,110848,26,8 ,15,2440,635136,1,1 ,17,923,7975172,24,0 ,17,923,7450884,32,0 ,17,923,6926596,24,0 ,44,15152,635140,24,0 ,44,15152,3256580,48,0 ,44,15152,3780868,72,0 ,45,15153,5353732,16,0 ,27,41,110856,23,8 ,15,2441,635144,1,1 ,27,10507,110864,26,8 ,15,2442,635152,1,1 ,27,3135,110872,26,8 ,15,2443,635160,1,1 ,27,10510,110880,24,8 ,15,2444,635168,1,1 ,20,19967,11120930,244,0 ,27,10510,110888,24,8 ,15,2445,635176,1,1 ,27,1118,110896,26,8 ,15,2446,635184,1,1 ,27,10510,110904,24,8 ,15,2447,635192,1,1 ,27,10510,110912,24,8 ,15,2448,635200,1,1 ,20,21229,15839554,144,0 ,17,923,9548100,32,0 ,45,15153,4829508,48,0 ,17,923,8499524,32,0 ,27,1447,110920,24,8 ,15,2449,635208,1,1 ,27,1035,110928,26,8 ,15,2450,635216,1,1 ,27,9,110936,23,8 ,15,2451,635224,1,1 ,27,1448,110944,24,8 ,15,2452,635232,1,1 ,20,23942,22131042,80,0 ,27,340,110952,21,8 ,15,2453,635240,1,1 ,27,1447,110960,24,8 ,15,2454,635248,1,1 ,27,1035,110968,26,8 ,15,2455,635256,1,1 ,27,9,110976,23,8 ,15,2456,635264,1,1 ,20,15360,635266,524,0 ,17,923,110979,16,0 ,45,15153,5353860,16,0 ,45,15153,4305284,24,0 ,27,1448,110984,24,8 ,15,2457,635272,1,1 ,27,340,110992,21,8 ,15,2458,635280,1,1 ,27,1447,111000,24,8 ,15,2459,635288,1,1 ,27,1035,111008,26,8 ,15,2460,635296,1,1 ,20,22273,18461090,52,0 ,20,26118,27898274,324,0 ,27,9,111016,23,8 ,15,2461,635304,1,1 ,27,1448,111024,24,8 ,15,2462,635312,1,1 ,27,340,111032,21,8 ,15,2463,635320,1,1 ,27,1400,111040,24,8 ,15,2464,635328,1,1 ,20,22691,19509698,200,0 ,17,923,7975364,24,0 ,17,923,6926788,24,0 ,17,923,6402500,32,0 ,44,15152,1683908,144,0 ,44,15152,635332,40,0 ,27,1056,111048,26,8 ,15,2465,635336,1,1 ,27,340,111056,22,8 ,15,2466,635344,1,1 ,27,1035,111064,27,8 ,15,2467,635352,1,1 ,27,9,111072,24,8 ,15,2468,635360,1,1 ,27,1056,111080,26,8 ,15,2469,635368,1,1 ,27,1448,111088,24,8 ,15,2470,635376,1,1 ,27,1447,111096,24,8 ,15,2471,635384,1,1 ,27,1400,111104,24,8 ,15,2472,635392,1,1 ,17,923,111107,40,0 ,17,923,10072580,40,0 ,17,923,7451140,32,0 ,44,15152,111108,104,0 ,44,15152,1159684,64,0 ,45,15153,5353988,48,0 ,17,923,9024004,48,0 ,27,1400,111112,24,8 ,15,2473,635400,1,1 ,27,1056,111120,26,8 ,15,2474,635408,1,1 ,27,367,111128,26,8 ,15,2475,635416,1,1 ,27,340,111136,22,8 ,15,2476,635424,1,1 ,20,15218,111138,1012,0 ,20,26287,28422690,112,0 ,27,1035,111144,27,8 ,15,2477,635432,1,1 ,27,9,111152,24,8 ,15,2478,635440,1,1 ,27,1056,111160,26,8 ,15,2479,635448,1,1 ,27,1448,111168,24,8 ,15,2480,635456,1,1 ,20,21815,16888386,280,0 ,17,923,9548356,24,0 ,44,15152,2208324,32,0 ,45,15153,4305476,16,0 ,17,923,8499780,24,0 ,27,1447,111176,24,8 ,15,2481,635464,1,1 ,27,1400,111184,24,8 ,15,2482,635472,1,1 ,27,1400,111192,24,8 ,15,2483,635480,1,1 ,27,1056,111200,26,8 ,15,2484,635488,1,1 ,20,16341,3256930,720,0 ,27,1400,111208,24,8 ,15,2485,635496,1,1 ,27,1056,111216,26,8 ,15,2486,635504,1,1 ,27,340,111224,22,8 ,15,2487,635512,1,1 ,27,1035,111232,27,8 ,15,2488,635520,1,1 ,17,923,7975556,24,0 ,17,923,6926980,32,0 ,44,15152,3256964,72,0 ,27,9,111240,24,8 ,15,2489,635528,1,1 ,27,1056,111248,26,8 ,15,2490,635536,1,1 ,27,1448,111256,24,8 ,15,2491,635544,1,1 ,27,1447,111264,24,8 ,15,2492,635552,1,1 ,20,24518,23704226,24,0 ,20,24714,24228514,552,0 ,20,20528,13218466,80,0 ,27,1400,111272,24,8 ,15,2493,635560,1,1 ,27,1400,111280,24,8 ,15,2494,635568,1,1 ,27,1056,111288,26,8 ,15,2495,635576,1,1 ,27,1400,111296,24,8 ,15,2496,635584,1,1 ,45,15153,4829892,56,0 ,17,923,6402756,56,0 ,45,15153,4305604,24,0 ,27,1056,111304,26,8 ,15,2497,635592,1,1 ,27,1400,111312,24,8 ,15,2498,635600,1,1 ,27,1056,111320,26,8 ,15,2499,635608,1,1 ,27,340,111328,22,8 ,15,2500,635616,1,1 ,20,15795,1684194,132,0 ,27,1035,111336,27,8 ,15,2501,635624,1,1 ,27,9,111344,24,8 ,15,2502,635632,1,1 ,27,1056,111352,26,8 ,15,2503,635640,1,1 ,27,1448,111360,24,8 ,15,2504,635648,1,1 ,17,923,9548548,32,0 ,17,923,7451396,32,0 ,44,15152,635652,24,0 ,17,923,8499972,24,0 ,27,1447,111368,24,8 ,15,2505,635656,1,1 ,27,1400,111376,24,8 ,15,2506,635664,1,1 ,27,1400,111384,24,8 ,15,2507,635672,1,1 ,27,1400,111392,24,8 ,15,2508,635680,1,1 ,27,1035,111400,27,8 ,15,2509,635688,1,1 ,27,9,111408,24,8 ,15,2510,635696,1,1 ,27,1447,111416,24,8 ,15,2511,635704,1,1 ,27,1448,111424,24,8 ,15,2512,635712,1,1 ,20,22274,18461506,48,0 ,17,923,111427,24,0 ,17,923,10072900,24,0 ,44,15152,2732868,64,0 ,44,15152,2208580,72,0 ,44,15152,3781444,16,0 ,17,923,7975748,24,0 ,27,340,111432,21,8 ,15,2513,635720,1,1 ,27,1400,111440,24,8 ,15,2514,635728,1,1 ,27,127,111448,26,8 ,15,2515,635736,1,1 ,27,1056,111456,26,8 ,15,2516,635744,1,1 ,20,24519,23704418,344,0 ,27,340,111464,22,8 ,15,2517,635752,1,1 ,27,1035,111472,27,8 ,15,2518,635760,1,1 ,27,9,111480,24,8 ,15,2519,635768,1,1 ,27,1056,111488,26,8 ,15,2520,635776,1,1 ,17,923,9024388,32,0 ,17,923,6927236,24,0 ,45,15153,4305796,24,0 ,45,15153,5354372,24,0 ,27,1448,111496,24,8 ,15,2521,635784,1,1 ,27,1447,111504,24,8 ,15,2522,635792,1,1 ,27,1400,111512,24,8 ,15,2523,635800,1,1 ,27,1400,111520,24,8 ,15,2524,635808,1,1 ,20,19368,10072994,184,0 ,20,15622,1160098,76,0 ,27,1400,111528,24,8 ,15,2525,635816,1,1 ,27,1035,111536,27,8 ,15,2526,635824,1,1 ,27,9,111544,24,8 ,15,2527,635832,1,1 ,27,1447,111552,24,8 ,15,2528,635840,1,1 ,20,22986,20034498,424,0 ,20,18660,8500162,1836,0 ,17,923,8500164,24,0 ,44,15152,635844,144,0 ,44,15152,3781572,64,0 ,27,1448,111560,24,8 ,15,2529,635848,1,1 ,27,340,111568,21,8 ,15,2530,635856,1,1 ,27,706,111576,26,8 ,15,2531,635864,1,1 ,27,340,111584,22,8 ,15,2532,635872,1,1 ,20,24347,23180258,276,0 ,20,23943,22131682,80,0 ,27,1035,111592,27,8 ,15,2533,635880,1,1 ,27,9,111600,24,8 ,15,2534,635888,1,1 ,27,1056,111608,26,8 ,15,2535,635896,1,1 ,27,1448,111616,24,8 ,15,2536,635904,1,1 ,17,923,111619,24,0 ,17,923,10073092,24,0 ,17,923,7451652,32,0 ,44,15152,1160196,40,0 ,17,923,7975940,24,0 ,17,923,9548804,32,0 ,27,1447,111624,24,8 ,15,2537,635912,1,1 ,27,1400,111632,24,8 ,15,2538,635920,1,1 ,27,1400,111640,24,8 ,15,2539,635928,1,1 ,27,1056,111648,26,8 ,15,2540,635936,1,1 ,27,1400,111656,24,8 ,15,2541,635944,1,1 ,27,1056,111664,26,8 ,15,2542,635952,1,1 ,27,1400,111672,24,8 ,15,2543,635960,1,1 ,27,1056,111680,26,8 ,15,2544,635968,1,1 ,20,16108,2208834,32,0 ,45,15153,5354564,16,0 ,17,923,6927428,24,0 ,45,15153,4305988,64,0 ,27,1562,111688,24,8 ,15,2545,635976,1,1 ,27,10549,111696,24,8 ,15,2546,635984,1,1 ,27,1386,111704,24,8 ,15,2547,635992,1,1 ,27,10551,111712,20,8 ,15,2548,636000,1,1 ,27,1384,111720,26,8 ,15,2549,636008,1,1 ,27,10552,111728,20,8 ,15,2550,636016,1,1 ,27,10549,111736,26,8 ,15,2551,636024,1,1 ,27,10553,111744,20,8 ,15,2552,636032,1,1 ,17,923,9024644,48,0 ,17,923,6403204,56,0 ,45,15153,4830340,40,0 ,17,923,8500356,48,0 ,27,1386,111752,26,8 ,15,2553,636040,1,1 ,27,1384,111760,25,8 ,15,2554,636048,1,1 ,27,10549,111768,25,8 ,15,2555,636056,1,1 ,27,1386,111776,25,8 ,15,2556,636064,1,1 ,27,10549,111784,24,8 ,15,2557,636072,1,1 ,27,1386,111792,24,8 ,15,2558,636080,1,1 ,27,10549,111800,24,8 ,15,2559,636088,1,1 ,27,1386,111808,24,8 ,15,2560,636096,1,1 ,20,22275,18461890,48,0 ,17,923,111811,24,0 ,17,923,10073284,120,0 ,44,15152,3257540,48,0 ,45,15153,5354692,24,0 ,17,923,7976132,24,0 ,27,10549,111816,24,8 ,15,2561,636104,1,1 ,27,1386,111824,24,8 ,15,2562,636112,1,1 ,27,10549,111832,24,8 ,15,2563,636120,1,1 ,27,1386,111840,24,8 ,15,2564,636128,1,1 ,20,20899,14791906,4964,0 ,20,20747,13743330,244,0 ,27,812,111848,23,8 ,15,2565,636136,1,1 ,27,295,111856,23,8 ,15,2566,636144,1,1 ,27,1707,111864,24,8 ,15,2567,636152,1,1 ,27,623,111872,26,8 ,15,2568,636160,1,1 ,17,923,9549060,32,0 ,17,923,7451908,32,0 ,17,923,6927620,64,0 ,27,1400,111880,24,8 ,15,2569,636168,1,1 ,27,623,111888,26,8 ,15,2570,636176,1,1 ,27,1562,111896,26,8 ,15,2571,636184,1,1 ,27,10566,111904,22,8 ,15,2572,636192,1,1 ,20,20529,13219106,12,0 ,27,10568,111912,22,8 ,15,2573,636200,1,1 ,27,10570,111920,22,8 ,15,2574,636208,1,1 ,27,10572,111928,22,8 ,15,2575,636216,1,1 ,27,2182,111936,24,8 ,15,2576,636224,1,1 ,20,16109,2209090,26864,0 ,44,15152,1160516,24,0 ,44,15152,2733380,72,0 ,44,15152,111940,16,0 ,27,10574,111944,24,8 ,15,2577,636232,1,1 ,27,10577,111952,24,8 ,15,2578,636240,1,1 ,27,10575,111960,26,8 ,15,2579,636248,1,1 ,27,10576,111968,25,8 ,15,2580,636256,1,1 ,27,2312,111976,22,8 ,15,2581,636264,1,1 ,27,5225,111984,22,8 ,15,2582,636272,1,1 ,27,4748,111992,22,8 ,15,2583,636280,1,1 ,27,10578,112000,21,8 ,15,2584,636288,1,1 ,20,20530,13219202,84,0 ,17,923,112003,16,0 ,17,923,7976324,24,0 ,44,15152,2209156,40,0 ,45,15153,5354884,32,0 ,27,10579,112008,21,8 ,15,2585,636296,1,1 ,27,10580,112016,21,8 ,15,2586,636304,1,1 ,27,10581,112024,21,8 ,15,2587,636312,1,1 ,27,4768,112032,24,8 ,15,2588,636320,1,1 ,20,26288,28423586,628,0 ,27,1562,112040,26,8 ,15,2589,636328,1,1 ,27,4663,112048,22,8 ,15,2590,636336,1,1 ,27,2312,112056,22,8 ,15,2591,636344,1,1 ,27,4759,112064,24,8 ,15,2592,636352,1,1 ,20,21230,15840706,128,0 ,45,15153,4830660,16,0 ,44,15152,112068,48,0 ,44,15152,3782084,40,0 ,27,6420,112072,24,8 ,15,2593,636360,1,1 ,27,4294,112080,22,8 ,15,2594,636368,1,1 ,27,1118,112088,26,8 ,15,2595,636376,1,1 ,27,10589,112096,25,8 ,15,2596,636384,1,1 ,27,1634,112104,24,8 ,15,2597,636392,1,1 ,27,1035,112112,26,8 ,15,2598,636400,1,1 ,27,9,112120,23,8 ,15,2599,636408,1,1 ,27,41,112128,23,8 ,15,2600,636416,1,1 ,20,15623,1160706,2968,0 ,17,923,112131,16,0 ,17,923,9549316,24,0 ,17,923,7452164,32,0 ,44,15152,1160708,32,0 ,17,923,8500740,48,0 ,17,923,9025028,32,0 ,27,1118,112136,26,8 ,15,2601,636424,1,1 ,27,10595,112144,24,8 ,15,2602,636432,1,1 ,27,10708,112152,24,8 ,15,2603,636440,1,1 ,27,10705,112160,20,8 ,15,2604,636448,1,1 ,27,10599,112168,24,8 ,15,2605,636456,1,1 ,27,10600,112176,24,8 ,15,2606,636464,1,1 ,27,10601,112184,24,8 ,15,2607,636472,1,1 ,27,10602,112192,22,8 ,15,2608,636480,1,1 ,20,22276,18462274,340,0 ,17,923,7976516,24,0 ,17,923,6403652,56,0 ,44,15152,1685060,64,0 ,44,15152,3257924,48,0 ,45,15153,4306500,32,0 ,45,15153,4830788,16,0 ,27,10604,112200,24,8 ,15,2609,636488,1,1 ,27,10605,112208,23,8 ,15,2610,636496,1,1 ,27,10606,112216,21,8 ,15,2611,636504,1,1 ,27,2316,112224,24,8 ,15,2612,636512,1,1 ,20,23944,22132322,80,0 ,27,41,112232,23,8 ,15,2613,636520,1,1 ,27,2028,112240,23,8 ,15,2614,636528,1,1 ,27,10608,112248,23,8 ,15,2615,636536,1,1 ,27,10633,112256,24,8 ,15,2616,636544,1,1 ,17,923,112259,16,0 ,45,15153,5355140,24,0 ,27,10630,112264,19,8 ,15,2617,636552,1,1 ,27,10621,112272,20,8 ,15,2618,636560,1,1 ,27,10619,112280,21,8 ,15,2619,636568,1,1 ,27,10617,112288,22,8 ,15,2620,636576,1,1 ,27,10610,112296,21,8 ,15,2621,636584,1,1 ,27,10611,112304,22,8 ,15,2622,636592,1,1 ,27,41,112312,23,8 ,15,2623,636600,1,1 ,27,10624,112320,20,8 ,15,2624,636608,1,1 ,17,923,9549508,24,0 ,44,15152,2209476,40,0 ,45,15153,4830916,16,0 ,27,10626,112328,19,8 ,15,2625,636616,1,1 ,27,10631,112336,18,8 ,15,2626,636624,1,1 ,27,10632,112344,24,8 ,15,2627,636632,1,1 ,27,10650,112352,24,8 ,15,2628,636640,1,1 ,27,10636,112360,21,8 ,15,2629,636648,1,1 ,27,10634,112368,22,8 ,15,2630,636656,1,1 ,27,10637,112376,24,8 ,15,2631,636664,1,1 ,27,10638,112384,24,8 ,15,2632,636672,1,1 ,20,15796,1685250,148,0 ,17,923,112387,24,0 ,17,923,9025284,32,0 ,17,923,7452420,32,0 ,17,923,6928132,32,0 ,44,15152,1160964,56,0 ,44,15152,3782404,24,0 ,17,923,7976708,24,0 ,27,10639,112392,24,8 ,15,2633,636680,1,1 ,27,10642,112400,21,8 ,15,2634,636688,1,1 ,27,10640,112408,22,8 ,15,2635,636696,1,1 ,27,10643,112416,24,8 ,15,2636,636704,1,1 ,20,25358,25802530,328,0 ,27,10644,112424,24,8 ,15,2637,636712,1,1 ,27,10645,112432,23,8 ,15,2638,636720,1,1 ,27,10646,112440,24,8 ,15,2639,636728,1,1 ,27,10648,112448,27,8 ,15,2640,636736,1,1 ,45,15153,5355332,16,0 ,44,15152,112452,24,0 ,45,15153,4306756,24,0 ,45,15153,4831044,16,0 ,27,10649,112456,23,8 ,15,2641,636744,1,1 ,27,2316,112464,24,8 ,15,2642,636752,1,1 ,27,10651,112472,24,8 ,15,2643,636760,1,1 ,27,10652,112480,24,8 ,15,2644,636768,1,1 ,27,10653,112488,24,8 ,15,2645,636776,1,1 ,27,10654,112496,24,8 ,15,2646,636784,1,1 ,27,10655,112504,24,8 ,15,2647,636792,1,1 ,27,10656,112512,24,8 ,15,2648,636800,1,1 ,20,18020,6928258,12,0 ,20,24899,24754050,188,0 ,17,923,9549700,24,0 ,44,15152,2733956,24,0 ,17,923,8501124,48,0 ,27,10657,112520,24,8 ,15,2649,636808,1,1 ,27,10658,112528,24,8 ,15,2650,636816,1,1 ,27,10659,112536,24,8 ,15,2651,636824,1,1 ,27,10660,112544,24,8 ,15,2652,636832,1,1 ,27,10661,112552,24,8 ,15,2653,636840,1,1 ,27,10662,112560,24,8 ,15,2654,636848,1,1 ,27,10663,112568,24,8 ,15,2655,636856,1,1 ,27,10664,112576,24,8 ,15,2656,636864,1,1 ,17,923,112579,32,0 ,17,923,7976900,24,0 ,44,15152,3258308,48,0 ,44,15152,3782596,80,0 ,45,15153,4831172,32,0 ,45,15153,5355460,24,0 ,27,10665,112584,24,8 ,15,2657,636872,1,1 ,27,10666,112592,24,8 ,15,2658,636880,1,1 ,27,10667,112600,24,8 ,15,2659,636888,1,1 ,27,10668,112608,24,8 ,15,2660,636896,1,1 ,20,18021,6928354,680,0 ,27,10669,112616,24,8 ,15,2661,636904,1,1 ,27,6204,112624,24,8 ,15,2662,636912,1,1 ,27,10670,112632,23,8 ,15,2663,636920,1,1 ,27,10671,112640,24,8 ,15,2664,636928,1,1 ,20,22692,19511298,76,0 ,17,923,9025540,32,0 ,17,923,7452676,40,0 ,17,923,6928388,32,0 ,17,923,6404100,24,0 ,44,15152,2209796,48,0 ,44,15152,112644,24,0 ,45,15153,4306948,24,0 ,27,10673,112648,22,8 ,15,2665,636936,1,1 ,27,2316,112656,24,8 ,15,2666,636944,1,1 ,27,10675,112664,21,8 ,15,2667,636952,1,1 ,27,10676,112672,25,8 ,15,2668,636960,1,1 ,20,20531,13219874,440,0 ,20,25147,25278498,304,0 ,27,10676,112680,26,8 ,15,2669,636968,1,1 ,27,10677,112688,20,8 ,15,2670,636976,1,1 ,27,163,112696,24,8 ,15,2671,636984,1,1 ,27,10678,112704,24,8 ,15,2672,636992,1,1 ,17,923,9549892,40,0 ,44,15152,2734148,40,0 ,44,15152,1685572,40,0 ,44,15152,636996,32,0 ,27,10679,112712,24,8 ,15,2673,637000,1,1 ,27,10680,112720,24,8 ,15,2674,637008,1,1 ,27,10681,112728,24,8 ,15,2675,637016,1,1 ,27,10682,112736,26,8 ,15,2676,637024,1,1 ,27,10683,112744,24,8 ,15,2677,637032,1,1 ,27,10684,112752,24,8 ,15,2678,637040,1,1 ,27,10685,112760,24,8 ,15,2679,637048,1,1 ,27,10686,112768,22,8 ,15,2680,637056,1,1 ,17,923,10074244,72,0 ,45,15153,5355652,32,0 ,17,923,7977092,24,0 ,27,10687,112776,24,8 ,15,2681,637064,1,1 ,27,10692,112784,26,8 ,15,2682,637072,1,1 ,27,10688,112792,24,8 ,15,2683,637080,1,1 ,27,10691,112800,26,8 ,15,2684,637088,1,1 ,27,10694,112808,23,8 ,15,2685,637096,1,1 ,27,10700,112816,22,8 ,15,2686,637104,1,1 ,27,10703,112824,25,8 ,15,2687,637112,1,1 ,27,10703,112832,26,8 ,15,2688,637120,1,1 ,20,19968,11122882,148,0 ,17,923,112835,24,0 ,45,15153,4831428,32,0 ,17,923,6404292,32,0 ,44,15152,112836,56,0 ,44,15152,1161412,88,0 ,45,15153,4307140,40,0 ,27,10706,112840,20,8 ,15,2689,637128,1,1 ,27,10707,112848,24,8 ,15,2690,637136,1,1 ,27,10709,112856,23,8 ,15,2691,637144,1,1 ,27,1118,112864,26,8 ,15,2692,637152,1,1 ,20,23945,22132962,280,0 ,27,41,112872,23,8 ,15,2693,637160,1,1 ,27,1056,112880,26,8 ,15,2694,637168,1,1 ,27,10715,112888,26,8 ,15,2695,637176,1,1 ,27,10716,112896,24,8 ,15,2696,637184,1,1 ,17,923,9025796,32,0 ,17,923,6928644,32,0 ,17,923,8501508,40,0 ,27,1056,112904,26,8 ,15,2697,637192,1,1 ,27,1056,112912,26,8 ,15,2698,637200,1,1 ,27,1562,112920,26,8 ,15,2699,637208,1,1 ,27,4733,112928,22,8 ,15,2700,637216,1,1 ,27,4606,112936,24,8 ,15,2701,637224,1,1 ,27,1401,112944,24,8 ,15,2702,637232,1,1 ,27,579,112952,22,8 ,15,2703,637240,1,1 ,27,579,112960,23,8 ,15,2704,637248,1,1 ,17,923,7977284,24,0 ,17,923,7452996,40,0 ,44,15152,637252,24,0 ,44,15152,3258692,32,0 ,27,1062,112968,21,8 ,15,2705,637256,1,1 ,27,616,112976,23,8 ,15,2706,637264,1,1 ,27,1380,112984,22,8 ,15,2707,637272,1,1 ,27,1402,112992,22,8 ,15,2708,637280,1,1 ,20,20245,12695906,908,0 ,20,19369,10074466,128,0 ,27,1403,113000,22,8 ,15,2709,637288,1,1 ,27,9431,113008,22,8 ,15,2710,637296,1,1 ,27,1402,113016,22,8 ,15,2711,637304,1,1 ,27,1562,113024,24,8 ,15,2712,637312,1,1 ,17,923,113027,24,0 ,17,923,9550212,40,0 ,44,15152,2734468,24,0 ,44,15152,2210180,16,0 ,44,15152,1685892,24,0 ,45,15153,5355908,16,0 ,27,1037,113032,26,8 ,15,2713,637320,1,1 ,27,445,113040,23,8 ,15,2714,637328,1,1 ,27,1771,113048,26,8 ,15,2715,637336,1,1 ,27,204,113056,23,8 ,15,2716,637344,1,1 ,27,10727,113064,24,8 ,15,2717,637352,1,1 ,27,1035,113072,26,8 ,15,2718,637360,1,1 ,27,9,113080,23,8 ,15,2719,637368,1,1 ,27,10725,113088,22,8 ,15,2720,637376,1,1 ,20,21231,15841730,64,0 ,45,15153,4831684,32,0 ,17,923,6404548,24,0 ,27,1447,113096,24,8 ,15,2721,637384,1,1 ,27,1448,113104,24,8 ,15,2722,637392,1,1 ,27,340,113112,21,8 ,15,2723,637400,1,1 ,27,10730,113120,23,8 ,15,2724,637408,1,1 ,27,1035,113128,26,8 ,15,2725,637416,1,1 ,27,10728,113136,21,8 ,15,2726,637424,1,1 ,27,1447,113144,24,8 ,15,2727,637432,1,1 ,27,1448,113152,24,8 ,15,2728,637440,1,1 ,17,923,9026052,40,0 ,17,923,6928900,32,0 ,44,15152,2210308,24,0 ,44,15152,637444,24,0 ,45,15153,4307460,64,0 ,45,15153,5356036,32,0 ,17,923,7977476,24,0 ,27,340,113160,21,8 ,15,2729,637448,1,1 ,27,9,113168,23,8 ,15,2730,637456,1,1 ,27,10733,113176,23,8 ,15,2731,637464,1,1 ,27,1035,113184,26,8 ,15,2732,637472,1,1 ,20,17132,4831778,108,0 ,27,10731,113192,21,8 ,15,2733,637480,1,1 ,27,1447,113200,24,8 ,15,2734,637488,1,1 ,27,1448,113208,24,8 ,15,2735,637496,1,1 ,27,340,113216,21,8 ,15,2736,637504,1,1 ,17,923,113219,32,0 ,17,923,8501828,24,0 ,44,15152,2734660,32,0 ,44,15152,1686084,56,0 ,44,15152,3258948,32,0 ,44,15152,3783236,40,0 ,27,9,113224,23,8 ,15,2737,637512,1,1 ,27,10736,113232,23,8 ,15,2738,637520,1,1 ,27,1035,113240,26,8 ,15,2739,637528,1,1 ,27,10734,113248,21,8 ,15,2740,637536,1,1 ,20,22693,19511906,424,0 ,20,18202,7453282,272,0 ,27,1447,113256,24,8 ,15,2741,637544,1,1 ,27,1448,113264,24,8 ,15,2742,637552,1,1 ,27,340,113272,21,8 ,15,2743,637560,1,1 ,27,9,113280,23,8 ,15,2744,637568,1,1 ,44,15152,113284,24,0 ,17,923,7453316,32,0 ,17,923,6404740,48,0 ,27,10739,113288,23,8 ,15,2745,637576,1,1 ,27,1035,113296,26,8 ,15,2746,637584,1,1 ,27,10737,113304,21,8 ,15,2747,637592,1,1 ,27,1447,113312,24,8 ,15,2748,637600,1,1 ,27,1448,113320,24,8 ,15,2749,637608,1,1 ,27,340,113328,21,8 ,15,2750,637616,1,1 ,27,9,113336,23,8 ,15,2751,637624,1,1 ,27,10751,113344,24,8 ,15,2752,637632,1,1 ,17,923,10074820,64,0 ,44,15152,2210500,24,0 ,44,15152,637636,24,0 ,45,15153,4831940,40,0 ,17,923,7977668,24,0 ,17,923,9550532,40,0 ,27,10742,113352,22,8 ,15,2753,637640,1,1 ,27,3978,113360,20,8 ,15,2754,637648,1,1 ,27,10744,113368,21,8 ,15,2755,637656,1,1 ,27,10748,113376,24,8 ,15,2756,637664,1,1 ,20,22027,17939170,12,0 ,27,10749,113384,24,8 ,15,2757,637672,1,1 ,27,1374,113392,24,8 ,15,2758,637680,1,1 ,27,1050,113400,24,8 ,15,2759,637688,1,1 ,27,4476,113408,21,8 ,15,2760,637696,1,1 ,20,21816,16890626,240,0 ,17,923,8502020,56,0 ,17,923,6929156,32,0 ,45,15153,5356292,24,0 ,27,4468,113416,26,8 ,15,2761,637704,1,1 ,27,4468,113424,25,8 ,15,2762,637712,1,1 ,27,4768,113432,24,8 ,15,2763,637720,1,1 ,27,4482,113440,26,8 ,15,2764,637728,1,1 ,27,4309,113448,26,8 ,15,2765,637736,1,1 ,27,10753,113456,22,8 ,15,2766,637744,1,1 ,27,10754,113464,24,8 ,15,2767,637752,1,1 ,27,10755,113472,24,8 ,15,2768,637760,1,1 ,20,22028,17939266,56,0 ,17,923,113475,24,0 ,17,923,9026372,32,0 ,44,15152,2734916,80,0 ,44,15152,113476,136,0 ,44,15152,3259204,24,0 ,27,4748,113480,22,8 ,15,2769,637768,1,1 ,27,2182,113488,24,8 ,15,2770,637776,1,1 ,27,10756,113496,23,8 ,15,2771,637784,1,1 ,27,10756,113504,24,8 ,15,2772,637792,1,1 ,27,10757,113512,20,8 ,15,2773,637800,1,1 ,27,10759,113520,20,8 ,15,2774,637808,1,1 ,27,10758,113528,24,8 ,15,2775,637816,1,1 ,27,5225,113536,22,8 ,15,2776,637824,1,1 ,17,923,7977860,24,0 ,17,923,7453572,24,0 ,44,15152,2210692,24,0 ,44,15152,637828,32,0 ,44,15152,1162116,32,0 ,44,15152,3783556,24,0 ,27,10760,113544,23,8 ,15,2777,637832,1,1 ,27,10760,113552,24,8 ,15,2778,637840,1,1 ,27,10761,113560,23,8 ,15,2779,637848,1,1 ,27,10762,113568,24,8 ,15,2780,637856,1,1 ,20,15797,1686434,1236,0 ,27,10758,113576,23,8 ,15,2781,637864,1,1 ,27,10763,113584,24,8 ,15,2782,637872,1,1 ,27,10764,113592,24,8 ,15,2783,637880,1,1 ,27,10765,113600,20,8 ,15,2784,637888,1,1 ,20,21232,15842242,868,0 ,20,26119,27900866,528,0 ,45,15153,5356484,40,0 ,27,4733,113608,22,8 ,15,2785,637896,1,1 ,27,4606,113616,24,8 ,15,2786,637904,1,1 ,27,3993,113624,21,8 ,15,2787,637912,1,1 ,27,3992,113632,28,8 ,15,2788,637920,1,1 ,27,4466,113640,21,8 ,15,2789,637928,1,1 ,27,4456,113648,26,8 ,15,2790,637936,1,1 ,27,4474,113656,21,8 ,15,2791,637944,1,1 ,27,4473,113664,26,8 ,15,2792,637952,1,1 ,17,923,113667,24,0 ,17,923,9550852,24,0 ,17,923,6929412,32,0 ,17,923,6405124,48,0 ,44,15152,1686532,152,0 ,44,15152,3259396,24,0 ,45,15153,4307972,24,0 ,45,15153,4832260,48,0 ,27,4461,113672,21,8 ,15,2793,637960,1,1 ,27,4460,113680,26,8 ,15,2794,637968,1,1 ,27,3992,113688,27,8 ,15,2795,637976,1,1 ,27,4463,113696,22,8 ,15,2796,637984,1,1 ,27,4456,113704,25,8 ,15,2797,637992,1,1 ,27,4473,113712,25,8 ,15,2798,638000,1,1 ,27,4460,113720,25,8 ,15,2799,638008,1,1 ,27,10770,113728,22,8 ,15,2800,638016,1,1 ,20,18942,9026626,104,0 ,20,16687,3783746,248,0 ,17,923,9026628,32,0 ,17,923,7453764,24,0 ,44,15152,2210884,32,0 ,44,15152,3783748,32,0 ,17,923,7978052,24,0 ,27,10771,113736,25,8 ,15,2801,638024,1,1 ,27,4476,113744,21,8 ,15,2802,638032,1,1 ,27,4468,113752,26,8 ,15,2803,638040,1,1 ,27,4468,113760,25,8 ,15,2804,638048,1,1 ,27,4733,113768,22,8 ,15,2805,638056,1,1 ,27,4606,113776,24,8 ,15,2806,638064,1,1 ,27,2182,113784,24,8 ,15,2807,638072,1,1 ,27,10774,113792,24,8 ,15,2808,638080,1,1 ,20,24348,23182466,24,0 ,20,20748,13745282,52,0 ,44,15152,1162372,24,0 ,44,15152,638084,64,0 ,27,4482,113800,26,8 ,15,2809,638088,1,1 ,27,3474,113808,26,8 ,15,2810,638096,1,1 ,27,4305,113816,24,8 ,15,2811,638104,1,1 ,27,10778,113824,24,8 ,15,2812,638112,1,1 ,27,10779,113832,24,8 ,15,2813,638120,1,1 ,27,10780,113840,26,8 ,15,2814,638128,1,1 ,27,4282,113848,24,8 ,15,2815,638136,1,1 ,27,4456,113856,25,8 ,15,2816,638144,1,1 ,17,923,113859,24,0 ,17,923,10075332,24,0 ,44,15152,3259588,24,0 ,45,15153,4308164,24,0 ,17,923,8502468,48,0 ,17,923,9551044,40,0 ,27,4456,113864,26,8 ,15,2817,638152,1,1 ,27,4001,113872,22,8 ,15,2818,638160,1,1 ,27,4287,113880,26,8 ,15,2819,638168,1,1 ,27,4287,113888,27,8 ,15,2820,638176,1,1 ,27,4461,113896,21,8 ,15,2821,638184,1,1 ,27,4460,113904,26,8 ,15,2822,638192,1,1 ,27,4308,113912,24,8 ,15,2823,638200,1,1 ,27,5366,113920,22,8 ,15,2824,638208,1,1 ,20,22029,17939714,56,0 ,17,923,7978244,24,0 ,17,923,7453956,40,0 ,17,923,6929668,32,0 ,45,15153,5356804,16,0 ,27,10781,113928,24,8 ,15,2825,638216,1,1 ,27,4000,113936,22,8 ,15,2826,638224,1,1 ,27,10783,113944,20,8 ,15,2827,638232,1,1 ,27,10782,113952,24,8 ,15,2828,638240,1,1 ,27,4463,113960,22,8 ,15,2829,638248,1,1 ,27,10784,113968,24,8 ,15,2830,638256,1,1 ,27,4460,113976,25,8 ,15,2831,638264,1,1 ,27,10785,113984,24,8 ,15,2832,638272,1,1 ,20,24349,23182658,24,0 ,17,923,9026884,32,0 ,44,15152,2211140,24,0 ,44,15152,1162564,56,0 ,44,15152,3784004,24,0 ,27,4288,113992,22,8 ,15,2833,638280,1,1 ,27,10786,114000,24,8 ,15,2834,638288,1,1 ,27,10782,114008,23,8 ,15,2835,638296,1,1 ,27,5331,114016,24,8 ,15,2836,638304,1,1 ,20,19969,11124066,12,0 ,20,24900,24755554,148,0 ,20,19370,10075490,252,0 ,27,4294,114024,22,8 ,15,2837,638312,1,1 ,27,4108,114032,22,8 ,15,2838,638320,1,1 ,27,4466,114040,21,8 ,15,2839,638328,1,1 ,27,4297,114048,21,8 ,15,2840,638336,1,1 ,20,19117,9551234,3352,0 ,20,17133,4832642,696,0 ,17,923,114051,32,0 ,17,923,10075524,32,0 ,17,923,6405508,24,0 ,44,15152,3259780,40,0 ,45,15153,4308356,48,0 ,45,15153,4832644,16,0 ,45,15153,5356932,24,0 ,27,5377,114056,26,8 ,15,2841,638344,1,1 ,27,4474,114064,21,8 ,15,2842,638352,1,1 ,27,4473,114072,26,8 ,15,2843,638360,1,1 ,27,4467,114080,26,8 ,15,2844,638368,1,1 ,27,4473,114088,25,8 ,15,2845,638376,1,1 ,27,4321,114096,22,8 ,15,2846,638384,1,1 ,27,4476,114104,21,8 ,15,2847,638392,1,1 ,27,4468,114112,26,8 ,15,2848,638400,1,1 ,20,19970,11124162,12,0 ,17,923,7978436,24,0 ,44,15152,2735556,72,0 ,27,4468,114120,24,8 ,15,2849,638408,1,1 ,27,4466,114128,21,8 ,15,2850,638416,1,1 ,27,4456,114136,26,8 ,15,2851,638424,1,1 ,27,4461,114144,21,8 ,15,2852,638432,1,1 ,27,4460,114152,26,8 ,15,2853,638440,1,1 ,27,4474,114160,21,8 ,15,2854,638448,1,1 ,27,4473,114168,26,8 ,15,2855,638456,1,1 ,27,4294,114176,22,8 ,15,2856,638464,1,1 ,20,24350,23182850,240,0 ,17,923,9551364,32,0 ,17,923,6929924,32,0 ,44,15152,2211332,24,0 ,44,15152,3784196,24,0 ,45,15153,4832772,24,0 ,27,4471,114184,22,8 ,15,2857,638472,1,1 ,27,4456,114192,25,8 ,15,2858,638480,1,1 ,27,4460,114200,25,8 ,15,2859,638488,1,1 ,27,10791,114208,24,8 ,15,2860,638496,1,1 ,20,24520,23707170,424,0 ,20,19971,11124258,472,0 ,20,20749,13745698,1140,0 ,27,4473,114216,24,8 ,15,2861,638504,1,1 ,27,4313,114224,24,8 ,15,2862,638512,1,1 ,27,4292,114232,24,8 ,15,2863,638520,1,1 ,27,10792,114240,22,8 ,15,2864,638528,1,1 ,17,923,9027140,32,0 ,17,923,7454276,24,0 ,17,923,6405700,24,0 ,45,15153,5357124,24,0 ,17,923,8502852,24,0 ,27,10793,114248,24,8 ,15,2865,638536,1,1 ,27,10796,114256,24,8 ,15,2866,638544,1,1 ,27,1562,114264,22,8 ,15,2867,638552,1,1 ,27,10725,114272,22,8 ,15,2868,638560,1,1 ,27,1035,114280,27,8 ,15,2869,638568,1,1 ,27,9,114288,24,8 ,15,2870,638576,1,1 ,27,10727,114296,24,8 ,15,2871,638584,1,1 ,27,1447,114304,24,8 ,15,2872,638592,1,1 ,17,923,114307,16,0 ,17,923,10075780,48,0 ,44,15152,638596,24,0 ,17,923,7978628,24,0 ,27,1448,114312,24,8 ,15,2873,638600,1,1 ,27,340,114320,21,8 ,15,2874,638608,1,1 ,27,10728,114328,21,8 ,15,2875,638616,1,1 ,27,1035,114336,27,8 ,15,2876,638624,1,1 ,27,9,114344,24,8 ,15,2877,638632,1,1 ,27,10730,114352,23,8 ,15,2878,638640,1,1 ,27,1447,114360,24,8 ,15,2879,638648,1,1 ,27,1448,114368,24,8 ,15,2880,638656,1,1 ,20,22030,17940162,964,0 ,45,15153,4832964,16,0 ,44,15152,2211524,56,0 ,44,15152,3260100,72,0 ,44,15152,3784388,40,0 ,27,340,114376,21,8 ,15,2881,638664,1,1 ,27,10731,114384,21,8 ,15,2882,638672,1,1 ,27,1035,114392,27,8 ,15,2883,638680,1,1 ,27,9,114400,24,8 ,15,2884,638688,1,1 ,20,16950,4308706,12,0 ,27,10733,114408,23,8 ,15,2885,638696,1,1 ,27,1447,114416,24,8 ,15,2886,638704,1,1 ,27,1448,114424,24,8 ,15,2887,638712,1,1 ,27,340,114432,21,8 ,15,2888,638720,1,1 ,17,923,114435,16,0 ,17,923,9551620,40,0 ,17,923,7454468,40,0 ,17,923,6930180,32,0 ,17,923,6405892,24,0 ,44,15152,1163012,72,0 ,45,15153,4308740,16,0 ,45,15153,5357316,24,0 ,17,923,8503044,48,0 ,27,10734,114440,21,8 ,15,2889,638728,1,1 ,27,1035,114448,27,8 ,15,2890,638736,1,1 ,27,9,114456,24,8 ,15,2891,638744,1,1 ,27,10736,114464,23,8 ,15,2892,638752,1,1 ,27,1447,114472,24,8 ,15,2893,638760,1,1 ,27,1448,114480,24,8 ,15,2894,638768,1,1 ,27,340,114488,21,8 ,15,2895,638776,1,1 ,27,10737,114496,21,8 ,15,2896,638784,1,1 ,20,16951,4308802,48,0 ,17,923,9027396,32,0 ,44,15152,638788,24,0 ,45,15153,4833092,16,0 ,17,923,7978820,72,0 ,27,1035,114504,27,8 ,15,2897,638792,1,1 ,27,9,114512,24,8 ,15,2898,638800,1,1 ,27,10739,114520,23,8 ,15,2899,638808,1,1 ,27,1447,114528,24,8 ,15,2900,638816,1,1 ,27,1448,114536,24,8 ,15,2901,638824,1,1 ,27,340,114544,21,8 ,15,2902,638832,1,1 ,27,10804,114552,21,8 ,15,2903,638840,1,1 ,27,1035,114560,26,8 ,15,2904,638848,1,1 ,20,18943,9027458,136,0 ,17,923,114563,16,0 ,45,15153,4308868,48,0 ,44,15152,114564,64,0 ,27,9,114568,23,8 ,15,2905,638856,1,1 ,27,10802,114576,23,8 ,15,2906,638864,1,1 ,27,1447,114584,24,8 ,15,2907,638872,1,1 ,27,1448,114592,24,8 ,15,2908,638880,1,1 ,27,340,114600,21,8 ,15,2909,638888,1,1 ,27,10804,114608,21,8 ,15,2910,638896,1,1 ,27,1035,114616,26,8 ,15,2911,638904,1,1 ,27,9,114624,23,8 ,15,2912,638912,1,1 ,45,15153,5357508,88,0 ,17,923,6406084,24,0 ,45,15153,4833220,88,0 ,27,10802,114632,23,8 ,15,2913,638920,1,1 ,27,1447,114640,24,8 ,15,2914,638928,1,1 ,27,1448,114648,24,8 ,15,2915,638936,1,1 ,27,340,114656,21,8 ,15,2916,638944,1,1 ,27,10808,114664,21,8 ,15,2917,638952,1,1 ,27,1035,114672,26,8 ,15,2918,638960,1,1 ,27,9,114680,23,8 ,15,2919,638968,1,1 ,27,10806,114688,23,8 ,15,2920,638976,1,1 ,17,923,114691,24,0 ,17,923,10076164,32,0 ,17,923,6930436,32,0 ,44,15152,2736132,16,0 ,44,15152,638980,56,0 ,44,15152,3784708,24,0 ,27,1447,114696,24,8 ,15,2921,638984,1,1 ,27,1448,114704,24,8 ,15,2922,638992,1,1 ,27,340,114712,21,8 ,15,2923,639000,1,1 ,27,10808,114720,21,8 ,15,2924,639008,1,1 ,27,1035,114728,26,8 ,15,2925,639016,1,1 ,27,9,114736,23,8 ,15,2926,639024,1,1 ,27,10806,114744,23,8 ,15,2927,639032,1,1 ,27,1447,114752,24,8 ,15,2928,639040,1,1 ,17,923,9551940,24,0 ,17,923,7454788,32,0 ,17,923,9027652,32,0 ,27,1448,114760,24,8 ,15,2929,639048,1,1 ,27,340,114768,21,8 ,15,2930,639056,1,1 ,27,10812,114776,21,8 ,15,2931,639064,1,1 ,27,1035,114784,26,8 ,15,2932,639072,1,1 ,27,9,114792,23,8 ,15,2933,639080,1,1 ,27,10810,114800,23,8 ,15,2934,639088,1,1 ,27,1447,114808,24,8 ,15,2935,639096,1,1 ,27,1448,114816,24,8 ,15,2936,639104,1,1 ,17,923,8503428,56,0 ,17,923,6406276,104,0 ,44,15152,2736260,40,0 ,44,15152,2211972,24,0 ,27,340,114824,21,8 ,15,2937,639112,1,1 ,27,10812,114832,21,8 ,15,2938,639120,1,1 ,27,1035,114840,26,8 ,15,2939,639128,1,1 ,27,9,114848,23,8 ,15,2940,639136,1,1 ,27,10810,114856,23,8 ,15,2941,639144,1,1 ,27,1447,114864,24,8 ,15,2942,639152,1,1 ,27,1448,114872,24,8 ,15,2943,639160,1,1 ,27,340,114880,21,8 ,15,2944,639168,1,1 ,20,16952,4309186,420,0 ,20,26406,28950722,148,0 ,17,923,114883,16,0 ,44,15152,3784900,24,0 ,44,15152,1687748,40,0 ,27,10816,114888,21,8 ,15,2945,639176,1,1 ,27,1035,114896,26,8 ,15,2946,639184,1,1 ,27,9,114904,23,8 ,15,2947,639192,1,1 ,27,10814,114912,23,8 ,15,2948,639200,1,1 ,20,22277,18464994,340,0 ,27,1447,114920,24,8 ,15,2949,639208,1,1 ,27,1448,114928,24,8 ,15,2950,639216,1,1 ,27,340,114936,21,8 ,15,2951,639224,1,1 ,27,10816,114944,21,8 ,15,2952,639232,1,1 ,20,22987,20037890,540,0 ,17,923,10076420,24,0 ,17,923,6930692,32,0 ,44,15152,3260676,16,0 ,45,15153,4309252,16,0 ,17,923,9552132,32,0 ,27,1035,114952,26,8 ,15,2953,639240,1,1 ,27,9,114960,23,8 ,15,2954,639248,1,1 ,27,10814,114968,23,8 ,15,2955,639256,1,1 ,27,1447,114976,24,8 ,15,2956,639264,1,1 ,27,1448,114984,24,8 ,15,2957,639272,1,1 ,27,340,114992,21,8 ,15,2958,639280,1,1 ,27,10820,115000,21,8 ,15,2959,639288,1,1 ,27,1035,115008,26,8 ,15,2960,639296,1,1 ,17,923,115011,16,0 ,17,923,9027908,32,0 ,17,923,7455044,40,0 ,44,15152,2212164,64,0 ,44,15152,1163588,24,0 ,27,9,115016,23,8 ,15,2961,639304,1,1 ,27,10818,115024,23,8 ,15,2962,639312,1,1 ,27,1447,115032,24,8 ,15,2963,639320,1,1 ,27,1448,115040,24,8 ,15,2964,639328,1,1 ,20,25359,25805154,116,0 ,27,340,115048,21,8 ,15,2965,639336,1,1 ,27,10823,115056,21,8 ,15,2966,639344,1,1 ,27,1035,115064,26,8 ,15,2967,639352,1,1 ,27,9,115072,23,8 ,15,2968,639360,1,1 ,17,923,7979396,40,0 ,44,15152,115076,40,0 ,44,15152,3260804,80,0 ,44,15152,3785092,48,0 ,45,15153,4309380,24,0 ,27,10821,115080,23,8 ,15,2969,639368,1,1 ,27,1447,115088,24,8 ,15,2970,639376,1,1 ,27,1448,115096,24,8 ,15,2971,639384,1,1 ,27,340,115104,21,8 ,15,2972,639392,1,1 ,20,23946,22135202,196,0 ,20,25148,25280930,356,0 ,27,340,115112,21,8 ,15,2973,639400,1,1 ,27,1035,115120,27,8 ,15,2974,639408,1,1 ,27,9,115128,24,8 ,15,2975,639416,1,1 ,27,1447,115136,24,8 ,15,2976,639424,1,1 ,20,25919,27378114,372,0 ,17,923,115139,24,0 ,17,923,10076612,48,0 ,44,15152,2736580,48,0 ,44,15152,639428,56,0 ,27,1448,115144,24,8 ,15,2977,639432,1,1 ,27,340,115152,21,8 ,15,2978,639440,1,1 ,27,1035,115160,27,8 ,15,2979,639448,1,1 ,27,9,115168,24,8 ,15,2980,639456,1,1 ,20,15361,639458,136,0 ,27,1447,115176,24,8 ,15,2981,639464,1,1 ,27,1448,115184,24,8 ,15,2982,639472,1,1 ,27,340,115192,21,8 ,15,2983,639480,1,1 ,27,1035,115200,27,8 ,15,2984,639488,1,1 ,20,24901,24756738,116,0 ,17,923,9552388,32,0 ,17,923,6930948,24,0 ,44,15152,1688068,24,0 ,44,15152,1163780,32,0 ,27,9,115208,24,8 ,15,2985,639496,1,1 ,27,1447,115216,24,8 ,15,2986,639504,1,1 ,27,1448,115224,24,8 ,15,2987,639512,1,1 ,27,340,115232,21,8 ,15,2988,639520,1,1 ,27,1035,115240,27,8 ,15,2989,639528,1,1 ,27,9,115248,24,8 ,15,2990,639536,1,1 ,27,1447,115256,24,8 ,15,2991,639544,1,1 ,27,1448,115264,24,8 ,15,2992,639552,1,1 ,17,923,9028164,56,0 ,45,15153,4309572,16,0 ,17,923,8503876,32,0 ,27,340,115272,21,8 ,15,2993,639560,1,1 ,27,1035,115280,26,8 ,15,2994,639568,1,1 ,27,9,115288,23,8 ,15,2995,639576,1,1 ,27,1447,115296,24,8 ,15,2996,639584,1,1 ,27,1448,115304,24,8 ,15,2997,639592,1,1 ,27,340,115312,21,8 ,15,2998,639600,1,1 ,27,1035,115320,27,8 ,15,2999,639608,1,1 ,27,9,115328,24,8 ,15,3000,639616,1,1 ,20,21817,16892546,252,0 ,17,923,115331,32,0 ,45,15153,5358212,160,0 ,17,923,7455364,24,0 ,45,15153,4833924,32,0 ,27,1447,115336,24,8 ,15,3001,639624,1,1 ,27,1448,115344,24,8 ,15,3002,639632,1,1 ,27,1403,115352,22,8 ,15,3003,639640,1,1 ,27,10877,115360,24,8 ,15,3004,639648,1,1 ,27,10830,115368,23,8 ,15,3005,639656,1,1 ,27,10833,115376,22,8 ,15,3006,639664,1,1 ,27,8006,115384,24,8 ,15,3007,639672,1,1 ,27,8007,115392,24,8 ,15,3008,639680,1,1 ,20,16152,2736834,108,0 ,17,923,7979716,40,0 ,17,923,6931140,64,0 ,44,15152,1688260,24,0 ,44,15152,115396,56,0 ,45,15153,4309700,24,0 ,27,8008,115400,25,8 ,15,3009,639688,1,1 ,27,8009,115408,24,8 ,15,3010,639696,1,1 ,27,10835,115416,21,8 ,15,3011,639704,1,1 ,27,4294,115424,22,8 ,15,3012,639712,1,1 ,20,18203,7455458,176,0 ,27,10836,115432,24,8 ,15,3013,639720,1,1 ,27,4463,115440,22,8 ,15,3014,639728,1,1 ,27,4321,115448,22,8 ,15,3015,639736,1,1 ,27,10837,115456,22,8 ,15,3016,639744,1,1 ,17,923,9552644,32,0 ,44,15152,1164036,56,0 ,44,15152,3785476,24,0 ,27,10838,115464,22,8 ,15,3017,639752,1,1 ,27,10839,115472,22,8 ,15,3018,639760,1,1 ,27,4308,115480,24,8 ,15,3019,639768,1,1 ,27,10840,115488,23,8 ,15,3020,639776,1,1 ,27,4611,115496,24,8 ,15,3021,639784,1,1 ,27,4733,115504,22,8 ,15,3022,639792,1,1 ,27,4606,115512,24,8 ,15,3023,639800,1,1 ,27,4733,115520,22,8 ,15,3024,639808,1,1 ,17,923,10076996,32,0 ,17,923,7455556,48,0 ,44,15152,2736964,40,0 ,44,15152,2212676,56,0 ,17,923,8504132,24,0 ,27,4606,115528,24,8 ,15,3025,639816,1,1 ,27,41,115536,23,8 ,15,3026,639824,1,1 ,27,4768,115544,24,8 ,15,3027,639832,1,1 ,27,4627,115552,22,8 ,15,3028,639840,1,1 ,20,17518,5882722,268,0 ,27,4628,115560,22,8 ,15,3029,639848,1,1 ,27,10849,115568,22,8 ,15,3030,639856,1,1 ,27,4656,115576,22,8 ,15,3031,639864,1,1 ,27,4298,115584,22,8 ,15,3032,639872,1,1 ,17,923,115587,48,0 ,45,15153,4834180,24,0 ,44,15152,1688452,56,0 ,44,15152,639876,24,0 ,45,15153,4309892,16,0 ,27,4635,115592,22,8 ,15,3033,639880,1,1 ,27,4636,115600,22,8 ,15,3034,639888,1,1 ,27,4637,115608,22,8 ,15,3035,639896,1,1 ,27,10854,115616,22,8 ,15,3036,639904,1,1 ,27,10850,115624,24,8 ,15,3037,639912,1,1 ,27,10851,115632,22,8 ,15,3038,639920,1,1 ,27,10852,115640,22,8 ,15,3039,639928,1,1 ,27,10853,115648,22,8 ,15,3040,639936,1,1 ,20,18944,9028546,376,0 ,44,15152,3785668,32,0 ,17,923,6407108,104,0 ,27,4631,115656,24,8 ,15,3041,639944,1,1 ,27,4632,115664,24,8 ,15,3042,639952,1,1 ,27,10855,115672,24,8 ,15,3043,639960,1,1 ,27,41,115680,23,8 ,15,3044,639968,1,1 ,20,24715,24232930,116,0 ,27,6420,115688,24,8 ,15,3045,639976,1,1 ,27,4294,115696,22,8 ,15,3046,639984,1,1 ,27,10860,115704,20,8 ,15,3047,639992,1,1 ,27,10859,115712,24,8 ,15,3048,640000,1,1 ,20,16688,3785730,64,0 ,17,923,9552900,32,0 ,44,15152,3261444,24,0 ,45,15153,4310020,32,0 ,17,923,7980036,40,0 ,17,923,8504324,56,0 ,17,923,9028612,24,0 ,27,2182,115720,24,8 ,15,3049,640008,1,1 ,27,2312,115728,22,8 ,15,3050,640016,1,1 ,27,5225,115736,22,8 ,15,3051,640024,1,1 ,27,4748,115744,22,8 ,15,3052,640032,1,1 ,27,10859,115752,23,8 ,15,3053,640040,1,1 ,27,4663,115760,22,8 ,15,3054,640048,1,1 ,27,2312,115768,22,8 ,15,3055,640056,1,1 ,27,4758,115776,22,8 ,15,3056,640064,1,1 ,17,923,10077252,72,0 ,44,15152,640068,56,0 ,45,15153,4834372,16,0 ,27,4759,115784,24,8 ,15,3057,640072,1,1 ,27,10864,115792,20,8 ,15,3058,640080,1,1 ,27,10863,115800,24,8 ,15,3059,640088,1,1 ,27,10866,115808,20,8 ,15,3060,640096,1,1 ,20,19704,10601570,1780,0 ,27,10865,115816,24,8 ,15,3061,640104,1,1 ,27,10868,115824,20,8 ,15,3062,640112,1,1 ,27,10867,115832,24,8 ,15,3063,640120,1,1 ,27,2182,115840,24,8 ,15,3064,640128,1,1 ,44,15152,115844,56,0 ,44,15152,2737284,24,0 ,27,2312,115848,22,8 ,15,3065,640136,1,1 ,27,5225,115856,22,8 ,15,3066,640144,1,1 ,27,4748,115864,22,8 ,15,3067,640152,1,1 ,27,10863,115872,23,8 ,15,3068,640160,1,1 ,27,10865,115880,23,8 ,15,3069,640168,1,1 ,27,10867,115888,23,8 ,15,3070,640176,1,1 ,27,4768,115896,24,8 ,15,3071,640184,1,1 ,27,4294,115904,22,8 ,15,3072,640192,1,1 ,20,23706,21611714,116,0 ,17,923,9028804,56,0 ,17,923,7455940,24,0 ,17,923,6931652,32,0 ,44,15152,1164484,24,0 ,44,15152,3261636,24,0 ,44,15152,3785924,96,0 ,45,15153,4834500,24,0 ,27,10873,115912,22,8 ,15,3073,640200,1,1 ,27,4298,115920,22,8 ,15,3074,640208,1,1 ,27,10874,115928,22,8 ,15,3075,640216,1,1 ,27,4001,115936,22,8 ,15,3076,640224,1,1 ,20,23593,21087458,24,0 ,27,10875,115944,24,8 ,15,3077,640232,1,1 ,27,4320,115952,22,8 ,15,3078,640240,1,1 ,27,4000,115960,22,8 ,15,3079,640248,1,1 ,27,4463,115968,22,8 ,15,3080,640256,1,1 ,20,25360,25806082,32,0 ,17,923,115971,16,0 ,17,923,9553156,32,0 ,44,15152,2213124,24,0 ,45,15153,4310276,48,0 ,27,4321,115976,22,8 ,15,3081,640264,1,1 ,27,4002,115984,22,8 ,15,3082,640272,1,1 ,27,4467,115992,26,8 ,15,3083,640280,1,1 ,27,10887,116000,22,8 ,15,3084,640288,1,1 ,27,4768,116008,24,8 ,15,3085,640296,1,1 ,27,4482,116016,26,8 ,15,3086,640304,1,1 ,27,10882,116024,20,8 ,15,3087,640312,1,1 ,27,10881,116032,24,8 ,15,3088,640320,1,1 ,20,19371,10077506,444,0 ,17,923,7980356,40,0 ,44,15152,2737476,24,0 ,44,15152,1688900,48,0 ,27,2182,116040,24,8 ,15,3089,640328,1,1 ,27,2312,116048,22,8 ,15,3090,640336,1,1 ,27,10884,116056,26,8 ,15,3091,640344,1,1 ,27,4748,116064,22,8 ,15,3092,640352,1,1 ,20,26407,28951906,128,0 ,27,10885,116072,24,8 ,15,3093,640360,1,1 ,27,10881,116080,23,8 ,15,3094,640368,1,1 ,27,5225,116088,22,8 ,15,3095,640376,1,1 ,27,10901,116096,22,8 ,15,3096,640384,1,1 ,20,24351,23184770,448,0 ,17,923,116099,16,0 ,45,15153,4834692,32,0 ,17,923,7456132,24,0 ,44,15152,1164676,24,0 ,44,15152,3261828,24,0 ,27,4768,116104,24,8 ,15,3097,640392,1,1 ,27,4482,116112,26,8 ,15,3098,640400,1,1 ,27,4663,116120,22,8 ,15,3099,640408,1,1 ,27,2312,116128,22,8 ,15,3100,640416,1,1 ,20,23594,21087650,476,0 ,20,24902,24757666,80,0 ,20,17746,6407586,12,0 ,27,4759,116136,24,8 ,15,3101,640424,1,1 ,27,10893,116144,20,8 ,15,3102,640432,1,1 ,27,10892,116152,24,8 ,15,3103,640440,1,1 ,27,10895,116160,20,8 ,15,3104,640448,1,1 ,17,923,8504772,56,0 ,17,923,6931908,24,0 ,44,15152,2213316,40,0 ,27,10894,116168,24,8 ,15,3105,640456,1,1 ,27,10897,116176,20,8 ,15,3106,640464,1,1 ,27,10896,116184,24,8 ,15,3107,640472,1,1 ,27,2182,116192,24,8 ,15,3108,640480,1,1 ,20,20532,13223394,160,0 ,27,10898,116200,22,8 ,15,3109,640488,1,1 ,27,10892,116208,23,8 ,15,3110,640496,1,1 ,27,10894,116216,23,8 ,15,3111,640504,1,1 ,27,10896,116224,23,8 ,15,3112,640512,1,1 ,20,17747,6407682,12,0 ,20,25361,25806338,168,0 ,20,16689,3786242,56,0 ,17,923,116227,16,0 ,17,923,9553412,48,0 ,44,15152,2737668,16,0 ,44,15152,640516,72,0 ,27,2312,116232,22,8 ,15,3113,640520,1,1 ,27,4748,116240,22,8 ,15,3114,640528,1,1 ,27,10899,116248,23,8 ,15,3115,640536,1,1 ,27,5225,116256,22,8 ,15,3116,640544,1,1 ,20,16153,2737698,1000,0 ,20,15362,640546,128,0 ,27,5225,116264,22,8 ,15,3117,640552,1,1 ,27,10902,116272,22,8 ,15,3118,640560,1,1 ,27,10904,116280,22,8 ,15,3119,640568,1,1 ,27,10906,116288,22,8 ,15,3120,640576,1,1 ,44,15152,3262020,40,0 ,17,923,7456324,24,0 ,44,15152,116292,24,0 ,44,15152,1164868,24,0 ,27,10908,116296,22,8 ,15,3121,640584,1,1 ,27,4768,116304,24,8 ,15,3122,640592,1,1 ,27,10910,116312,20,8 ,15,3123,640600,1,1 ,27,10932,116320,26,8 ,15,3124,640608,1,1 ,20,17748,6407778,12,0 ,27,10933,116328,21,8 ,15,3125,640616,1,1 ,27,10934,116336,21,8 ,15,3126,640624,1,1 ,27,10935,116344,21,8 ,15,3127,640632,1,1 ,27,7322,116352,22,8 ,15,3128,640640,1,1 ,17,923,116355,16,0 ,17,923,10077828,64,0 ,17,923,6932100,40,0 ,44,15152,2737796,40,0 ,45,15153,4310660,16,0 ,45,15153,4834948,56,0 ,17,923,7980676,32,0 ,17,923,9029252,40,0 ,27,7323,116360,22,8 ,15,3129,640648,1,1 ,27,7324,116368,22,8 ,15,3130,640656,1,1 ,27,7326,116376,22,8 ,15,3131,640664,1,1 ,27,7327,116384,22,8 ,15,3132,640672,1,1 ,20,17350,5359266,160,0 ,27,7680,116392,22,8 ,15,3133,640680,1,1 ,27,7323,116400,22,8 ,15,3134,640688,1,1 ,27,7324,116408,22,8 ,15,3135,640696,1,1 ,27,7325,116416,22,8 ,15,3136,640704,1,1 ,20,23323,20563650,548,0 ,20,17749,6407874,12,0 ,44,15152,1689284,16,0 ,27,7328,116424,24,8 ,15,3137,640712,1,1 ,27,7329,116432,24,8 ,15,3138,640720,1,1 ,27,4768,116440,24,8 ,15,3139,640728,1,1 ,27,4482,116448,26,8 ,15,3140,640736,1,1 ,27,2312,116456,22,8 ,15,3141,640744,1,1 ,27,2182,116464,24,8 ,15,3142,640752,1,1 ,27,7326,116472,22,8 ,15,3143,640760,1,1 ,27,7327,116480,22,8 ,15,3144,640768,1,1 ,17,923,116483,24,0 ,45,15153,4310788,16,0 ,17,923,7456516,64,0 ,17,923,6407940,48,0 ,44,15152,2213636,40,0 ,44,15152,116484,24,0 ,44,15152,1165060,96,0 ,27,7680,116488,22,8 ,15,3145,640776,1,1 ,27,7322,116496,22,8 ,15,3146,640784,1,1 ,27,4748,116504,22,8 ,15,3147,640792,1,1 ,27,10944,116512,20,8 ,15,3148,640800,1,1 ,20,17750,6407970,12,0 ,27,10943,116520,26,8 ,15,3149,640808,1,1 ,27,10946,116528,20,8 ,15,3150,640816,1,1 ,27,10945,116536,26,8 ,15,3151,640824,1,1 ,27,2182,116544,24,8 ,15,3152,640832,1,1 ,44,15152,1689412,16,0 ,27,10947,116552,24,8 ,15,3153,640840,1,1 ,27,7325,116560,22,8 ,15,3154,640848,1,1 ,27,10948,116568,24,8 ,15,3155,640856,1,1 ,27,10949,116576,24,8 ,15,3156,640864,1,1 ,27,7328,116584,23,8 ,15,3157,640872,1,1 ,27,7329,116592,23,8 ,15,3158,640880,1,1 ,27,10943,116600,25,8 ,15,3159,640888,1,1 ,27,10945,116608,25,8 ,15,3160,640896,1,1 ,20,17751,6408066,504,0 ,20,24716,24233858,228,0 ,17,923,9553796,40,0 ,44,15152,3262340,32,0 ,45,15153,4310916,32,0 ,45,15153,5359492,24,0 ,17,923,7980932,24,0 ,17,923,8505220,40,0 ,27,10950,116616,22,8 ,15,3161,640904,1,1 ,27,2312,116624,22,8 ,15,3162,640912,1,1 ,27,4748,116632,22,8 ,15,3163,640920,1,1 ,27,10952,116640,22,8 ,15,3164,640928,1,1 ,20,22694,19515298,80,0 ,27,2312,116648,22,8 ,15,3165,640936,1,1 ,27,2182,116656,24,8 ,15,3166,640944,1,1 ,27,4748,116664,22,8 ,15,3167,640952,1,1 ,27,4768,116672,24,8 ,15,3168,640960,1,1 ,20,23947,22136770,64,0 ,20,16690,3786690,296,0 ,17,923,116675,16,0 ,17,923,9029572,24,0 ,17,923,6932420,32,0 ,44,15152,2738116,40,0 ,44,15152,1689540,48,0 ,44,15152,116676,24,0 ,44,15152,3786692,40,0 ,27,2182,116680,24,8 ,15,3169,640968,1,1 ,27,10955,116688,24,8 ,15,3170,640976,1,1 ,27,10956,116696,24,8 ,15,3171,640984,1,1 ,27,10957,116704,24,8 ,15,3172,640992,1,1 ,27,10958,116712,24,8 ,15,3173,641000,1,1 ,27,10959,116720,24,8 ,15,3174,641008,1,1 ,27,4768,116728,24,8 ,15,3175,641016,1,1 ,27,3581,116736,26,8 ,15,3176,641024,1,1 ,27,10952,116744,22,8 ,15,3177,641032,1,1 ,27,10962,116752,22,8 ,15,3178,641040,1,1 ,27,2312,116760,22,8 ,15,3179,641048,1,1 ,27,2182,116768,24,8 ,15,3180,641056,1,1 ,20,24903,24758306,320,0 ,27,5225,116776,22,8 ,15,3181,641064,1,1 ,27,4748,116784,22,8 ,15,3182,641072,1,1 ,27,41,116792,23,8 ,15,3183,641080,1,1 ,27,295,116800,23,8 ,15,3184,641088,1,1 ,17,923,116803,16,0 ,17,923,7981124,24,0 ,44,15152,2213956,40,0 ,44,15152,641092,40,0 ,45,15153,4835396,32,0 ,45,15153,5359684,32,0 ,27,812,116808,23,8 ,15,3185,641096,1,1 ,27,41,116816,23,8 ,15,3186,641104,1,1 ,27,10972,116824,24,8 ,15,3187,641112,1,1 ,27,10973,116832,24,8 ,15,3188,641120,1,1 ,20,23707,21612642,904,0 ,20,18204,7456866,200,0 ,27,10962,116840,22,8 ,15,3189,641128,1,1 ,27,5225,116848,22,8 ,15,3190,641136,1,1 ,27,11006,116856,22,8 ,15,3191,641144,1,1 ,27,10979,116864,20,8 ,15,3192,641152,1,1 ,17,923,10078340,48,0 ,17,923,6408324,24,0 ,44,15152,116868,24,0 ,44,15152,3262596,88,0 ,45,15153,4311172,32,0 ,17,923,9029764,24,0 ,27,10978,116872,26,8 ,15,3193,641160,1,1 ,27,10974,116880,22,8 ,15,3194,641168,1,1 ,27,10975,116888,22,8 ,15,3195,641176,1,1 ,27,10976,116896,22,8 ,15,3196,641184,1,1 ,27,10977,116904,22,8 ,15,3197,641192,1,1 ,27,2182,116912,24,8 ,15,3198,641200,1,1 ,27,2312,116920,22,8 ,15,3199,641208,1,1 ,27,10978,116928,25,8 ,15,3200,641216,1,1 ,17,923,116931,16,0 ,17,923,9554116,32,0 ,17,923,6932676,40,0 ,17,923,8505540,56,0 ,27,4748,116936,22,8 ,15,3201,641224,1,1 ,27,10980,116944,24,8 ,15,3202,641232,1,1 ,27,5253,116952,21,8 ,15,3203,641240,1,1 ,27,5252,116960,26,8 ,15,3204,641248,1,1 ,20,16342,3262690,196,0 ,27,5240,116968,22,8 ,15,3205,641256,1,1 ,27,5252,116976,25,8 ,15,3206,641264,1,1 ,27,5257,116984,23,8 ,15,3207,641272,1,1 ,27,5240,116992,22,8 ,15,3208,641280,1,1 ,17,923,7981316,32,0 ,17,923,7457028,24,0 ,44,15152,2738436,24,0 ,44,15152,3787012,32,0 ,27,4663,117000,22,8 ,15,3209,641288,1,1 ,27,2312,117008,22,8 ,15,3210,641296,1,1 ,27,4758,117016,22,8 ,15,3211,641304,1,1 ,27,4759,117024,24,8 ,15,3212,641312,1,1 ,27,4768,117032,24,8 ,15,3213,641320,1,1 ,27,5331,117040,24,8 ,15,3214,641328,1,1 ,27,4482,117048,26,8 ,15,3215,641336,1,1 ,27,41,117056,23,8 ,15,3216,641344,1,1 ,20,26289,28428610,112,0 ,17,923,117059,16,0 ,17,923,9029956,40,0 ,17,923,6408516,24,0 ,44,15152,1689924,16,0 ,44,15152,117060,24,0 ,45,15153,4835652,16,0 ,45,15153,5359940,24,0 ,27,6420,117064,24,8 ,15,3217,641352,1,1 ,27,4294,117072,22,8 ,15,3218,641360,1,1 ,27,10993,117080,22,8 ,15,3219,641368,1,1 ,27,10997,117088,22,8 ,15,3220,641376,1,1 ,20,26408,28952930,368,0 ,27,11000,117096,20,8 ,15,3221,641384,1,1 ,27,10999,117104,24,8 ,15,3222,641392,1,1 ,27,11002,117112,20,8 ,15,3223,641400,1,1 ,27,11001,117120,24,8 ,15,3224,641408,1,1 ,45,15153,4311428,24,0 ,44,15152,2214276,24,0 ,44,15152,641412,56,0 ,27,4294,117128,22,8 ,15,3225,641416,1,1 ,27,10999,117136,23,8 ,15,3226,641424,1,1 ,27,11001,117144,23,8 ,15,3227,641432,1,1 ,27,2312,117152,22,8 ,15,3228,641440,1,1 ,27,2366,117160,22,8 ,15,3229,641448,1,1 ,27,11003,117168,24,8 ,15,3230,641456,1,1 ,27,11004,117176,21,8 ,15,3231,641464,1,1 ,27,5225,117184,22,8 ,15,3232,641472,1,1 ,20,23948,22137282,312,0 ,17,923,117187,16,0 ,17,923,9554372,32,0 ,17,923,7457220,40,0 ,44,15152,2738628,40,0 ,44,15152,1690052,24,0 ,45,15153,4835780,24,0 ,27,4748,117192,22,8 ,15,3233,641480,1,1 ,27,4768,117200,24,8 ,15,3234,641488,1,1 ,27,11011,117208,20,8 ,15,3235,641496,1,1 ,27,11010,117216,26,8 ,15,3236,641504,1,1 ,27,11012,117224,24,8 ,15,3237,641512,1,1 ,27,11017,117232,24,8 ,15,3238,641520,1,1 ,27,2182,117240,24,8 ,15,3239,641528,1,1 ,27,2182,117248,24,8 ,15,3240,641536,1,1 ,17,923,10078724,16,0 ,17,923,6932996,32,0 ,17,923,6408708,24,0 ,44,15152,117252,56,0 ,44,15152,1165828,24,0 ,44,15152,3787268,24,0 ,45,15153,5360132,40,0 ,17,923,7981572,32,0 ,27,4482,117256,26,8 ,15,3241,641544,1,1 ,27,11010,117264,24,8 ,15,3242,641552,1,1 ,27,11042,117272,24,8 ,15,3243,641560,1,1 ,27,11041,117280,27,8 ,15,3244,641568,1,1 ,20,22695,19515938,12,0 ,20,15363,641570,12,0 ,27,2182,117288,24,8 ,15,3245,641576,1,1 ,27,11029,117296,24,8 ,15,3246,641584,1,1 ,27,4733,117304,22,8 ,15,3247,641592,1,1 ,27,4606,117312,24,8 ,15,3248,641600,1,1 ,17,923,117315,32,0 ,45,15153,4311620,16,0 ,44,15152,2214468,40,0 ,27,11022,117320,22,8 ,15,3249,641608,1,1 ,27,4627,117328,22,8 ,15,3250,641616,1,1 ,27,4628,117336,22,8 ,15,3251,641624,1,1 ,27,4631,117344,24,8 ,15,3252,641632,1,1 ,20,21818,16894562,52,0 ,27,4632,117352,24,8 ,15,3253,641640,1,1 ,27,11023,117360,23,8 ,15,3254,641648,1,1 ,27,4611,117368,24,8 ,15,3255,641656,1,1 ,27,4733,117376,22,8 ,15,3256,641664,1,1 ,20,22696,19516034,80,0 ,20,15364,641666,368,0 ,17,923,10078852,40,0 ,44,15152,1690244,592,0 ,45,15153,4835972,72,0 ,17,923,8505988,56,0 ,17,923,9030276,24,0 ,27,4606,117384,24,8 ,15,3257,641672,1,1 ,27,11027,117392,24,8 ,15,3258,641680,1,1 ,27,7428,117400,24,8 ,15,3259,641688,1,1 ,27,3474,117408,26,8 ,15,3260,641696,1,1 ,27,11034,117416,24,8 ,15,3261,641704,1,1 ,27,11031,117424,23,8 ,15,3262,641712,1,1 ,27,11031,117432,23,8 ,15,3263,641720,1,1 ,27,11032,117440,27,8 ,15,3264,641728,1,1 ,17,923,9554628,40,0 ,17,923,6408900,48,0 ,44,15152,1166020,24,0 ,44,15152,3787460,40,0 ,45,15153,4311748,32,0 ,27,41,117448,23,8 ,15,3265,641736,1,1 ,27,11228,117456,24,8 ,15,3266,641744,1,1 ,27,812,117464,23,8 ,15,3267,641752,1,1 ,27,295,117472,23,8 ,15,3268,641760,1,1 ,20,20533,13224674,304,0 ,27,3115,117480,24,8 ,15,3269,641768,1,1 ,27,11073,117488,26,8 ,15,3270,641776,1,1 ,27,11048,117496,22,8 ,15,3271,641784,1,1 ,27,11050,117504,22,8 ,15,3272,641792,1,1 ,17,923,7981828,32,0 ,17,923,7457540,40,0 ,17,923,6933252,24,0 ,44,15152,2738948,40,0 ,27,11051,117512,23,8 ,15,3273,641800,1,1 ,27,11056,117520,26,8 ,15,3274,641808,1,1 ,27,1035,117528,24,8 ,15,3275,641816,1,1 ,27,9,117536,21,8 ,15,3276,641824,1,1 ,20,25501,26331938,168,0 ,27,11057,117544,21,8 ,15,3277,641832,1,1 ,27,11061,117552,22,8 ,15,3278,641840,1,1 ,27,2803,117560,24,8 ,15,3279,641848,1,1 ,27,11063,117568,24,8 ,15,3280,641856,1,1 ,20,25362,25807682,140,0 ,17,923,117571,32,0 ,17,923,9030468,32,0 ,44,15152,641860,32,0 ,44,15152,3263300,24,0 ,45,15153,5360452,24,0 ,27,11064,117576,21,8 ,15,3281,641864,1,1 ,27,11071,117584,25,8 ,15,3282,641872,1,1 ,27,11073,117592,26,8 ,15,3283,641880,1,1 ,27,1034,117600,25,8 ,15,3284,641888,1,1 ,20,24521,23710562,172,0 ,27,579,117608,23,8 ,15,3285,641896,1,1 ,27,579,117616,25,8 ,15,3286,641904,1,1 ,27,1062,117624,21,8 ,15,3287,641912,1,1 ,27,11080,117632,26,8 ,15,3288,641920,1,1 ,20,22278,18467714,108,0 ,44,15152,1166212,136,0 ,44,15152,2214788,24,0 ,27,11082,117640,24,8 ,15,3289,641928,1,1 ,27,3978,117648,19,8 ,15,3290,641936,1,1 ,27,11178,117656,24,8 ,15,3291,641944,1,1 ,27,11154,117664,21,8 ,15,3292,641952,1,1 ,20,17351,5360546,64,0 ,27,11087,117672,22,8 ,15,3293,641960,1,1 ,27,3822,117680,22,8 ,15,3294,641968,1,1 ,27,3824,117688,22,8 ,15,3295,641976,1,1 ,27,11090,117696,22,8 ,15,3296,641984,1,1 ,20,17519,5884866,760,0 ,17,923,10079172,16,0 ,17,923,6933444,64,0 ,44,15152,117700,24,0 ,45,15153,4312004,24,0 ,27,163,117704,24,8 ,15,3297,641992,1,1 ,27,11093,117712,22,8 ,15,3298,642000,1,1 ,27,3503,117720,24,8 ,15,3299,642008,1,1 ,27,11095,117728,23,8 ,15,3300,642016,1,1 ,27,11096,117736,21,8 ,15,3301,642024,1,1 ,27,11099,117744,22,8 ,15,3302,642032,1,1 ,27,11101,117752,22,8 ,15,3303,642040,1,1 ,27,11103,117760,22,8 ,15,3304,642048,1,1 ,20,21819,16894978,516,0 ,17,923,9554948,32,0 ,44,15152,3263492,40,0 ,44,15152,3787780,184,0 ,45,15153,5360644,216,0 ,17,923,7982084,40,0 ,27,11080,117768,24,8 ,15,3305,642056,1,1 ,27,11114,117776,24,8 ,15,3306,642064,1,1 ,27,2803,117784,24,8 ,15,3307,642072,1,1 ,27,11109,117792,22,8 ,15,3308,642080,1,1 ,27,295,117800,23,8 ,15,3309,642088,1,1 ,27,812,117808,23,8 ,15,3310,642096,1,1 ,27,11050,117816,22,8 ,15,3311,642104,1,1 ,27,11111,117824,23,8 ,15,3312,642112,1,1 ,20,26120,27905090,404,0 ,17,923,117827,40,0 ,17,923,10079300,16,0 ,17,923,7457860,32,0 ,17,923,6409284,32,0 ,44,15152,2739268,40,0 ,44,15152,2214980,40,0 ,44,15152,642116,56,0 ,17,923,8506436,32,0 ,17,923,9030724,56,0 ,27,11112,117832,21,8 ,15,3313,642120,1,1 ,27,573,117840,24,8 ,15,3314,642128,1,1 ,27,11115,117848,24,8 ,15,3315,642136,1,1 ,27,7718,117856,26,8 ,15,3316,642144,1,1 ,27,11116,117864,23,8 ,15,3317,642152,1,1 ,27,11082,117872,24,8 ,15,3318,642160,1,1 ,27,1034,117880,25,8 ,15,3319,642168,1,1 ,27,579,117888,23,8 ,15,3320,642176,1,1 ,45,15153,4312196,24,0 ,44,15152,117892,24,0 ,27,579,117896,25,8 ,15,3321,642184,1,1 ,27,1062,117904,21,8 ,15,3322,642192,1,1 ,27,11080,117912,26,8 ,15,3323,642200,1,1 ,27,11135,117920,24,8 ,15,3324,642208,1,1 ,27,11130,117928,26,8 ,15,3325,642216,1,1 ,27,11123,117936,26,8 ,15,3326,642224,1,1 ,27,11128,117944,21,8 ,15,3327,642232,1,1 ,27,11126,117952,22,8 ,15,3328,642240,1,1 ,20,25149,25283778,24,0 ,20,26290,28429506,96,0 ,17,923,10079428,32,0 ,45,15153,4836548,16,0 ,27,11125,117960,22,8 ,15,3329,642248,1,1 ,27,11129,117968,20,8 ,15,3330,642256,1,1 ,27,11133,117976,26,8 ,15,3331,642264,1,1 ,27,11136,117984,24,8 ,15,3332,642272,1,1 ,20,19972,11128034,12,0 ,27,11142,117992,21,8 ,15,3333,642280,1,1 ,27,11138,118000,22,8 ,15,3334,642288,1,1 ,27,11143,118008,20,8 ,15,3335,642296,1,1 ,27,11144,118016,23,8 ,15,3336,642304,1,1 ,20,22697,19516674,80,0 ,17,923,9555204,40,0 ,27,11149,118024,24,8 ,15,3337,642312,1,1 ,27,11150,118032,21,8 ,15,3338,642320,1,1 ,27,11151,118040,21,8 ,15,3339,642328,1,1 ,27,11152,118048,21,8 ,15,3340,642336,1,1 ,20,18022,6933794,512,0 ,27,11163,118056,21,8 ,15,3341,642344,1,1 ,27,11156,118064,22,8 ,15,3342,642352,1,1 ,27,812,118072,23,8 ,15,3343,642360,1,1 ,27,295,118080,23,8 ,15,3344,642368,1,1 ,20,19973,11128130,48,0 ,17,923,8506692,32,0 ,17,923,7458116,24,0 ,17,923,6409540,32,0 ,44,15152,118084,24,0 ,44,15152,3263812,24,0 ,45,15153,4312388,24,0 ,45,15153,4836676,24,0 ,17,923,7982404,24,0 ,27,11161,118088,24,8 ,15,3345,642376,1,1 ,27,11164,118096,23,8 ,15,3346,642384,1,1 ,27,3978,118104,21,8 ,15,3347,642392,1,1 ,27,7606,118112,22,8 ,15,3348,642400,1,1 ,20,25920,27381090,316,0 ,27,11173,118120,21,8 ,15,3349,642408,1,1 ,27,11171,118128,22,8 ,15,3350,642416,1,1 ,27,11169,118136,21,8 ,15,3351,642424,1,1 ,27,11166,118144,22,8 ,15,3352,642432,1,1 ,20,25150,25283970,204,0 ,17,923,118147,40,0 ,44,15152,2215300,40,0 ,44,15152,2739588,48,0 ,27,41,118152,23,8 ,15,3353,642440,1,1 ,27,295,118160,23,8 ,15,3354,642448,1,1 ,27,812,118168,23,8 ,15,3355,642456,1,1 ,27,11177,118176,26,8 ,15,3356,642464,1,1 ,20,17352,5361058,252,0 ,27,3978,118184,20,8 ,15,3357,642472,1,1 ,27,11179,118192,25,8 ,15,3358,642480,1,1 ,27,11082,118200,24,8 ,15,3359,642488,1,1 ,27,11114,118208,24,8 ,15,3360,642496,1,1 ,17,923,10079684,16,0 ,17,923,6933956,24,0 ,27,573,118216,24,8 ,15,3361,642504,1,1 ,27,11115,118224,24,8 ,15,3362,642512,1,1 ,27,11181,118232,24,8 ,15,3363,642520,1,1 ,27,7718,118240,26,8 ,15,3364,642528,1,1 ,20,16953,4312546,48,0 ,27,2803,118248,24,8 ,15,3365,642536,1,1 ,27,295,118256,23,8 ,15,3366,642544,1,1 ,27,812,118264,23,8 ,15,3367,642552,1,1 ,27,11182,118272,23,8 ,15,3368,642560,1,1 ,17,923,9031172,24,0 ,17,923,7458308,24,0 ,44,15152,118276,24,0 ,44,15152,642564,32,0 ,44,15152,3264004,48,0 ,45,15153,4312580,24,0 ,45,15153,4836868,16,0 ,17,923,7982596,32,0 ,27,11184,118280,22,8 ,15,3369,642568,1,1 ,27,11185,118288,22,8 ,15,3370,642576,1,1 ,27,11186,118296,24,8 ,15,3371,642584,1,1 ,27,11187,118304,24,8 ,15,3372,642592,1,1 ,20,20940,15322658,284,0 ,27,11188,118312,24,8 ,15,3373,642600,1,1 ,27,1035,118320,24,8 ,15,3374,642608,1,1 ,27,9,118328,21,8 ,15,3375,642616,1,1 ,27,11190,118336,24,8 ,15,3376,642624,1,1 ,17,923,10079812,24,0 ,17,923,6409796,32,0 ,17,923,8506948,56,0 ,17,923,9555524,56,0 ,27,11191,118344,24,8 ,15,3377,642632,1,1 ,27,11056,118352,24,8 ,15,3378,642640,1,1 ,27,11197,118360,23,8 ,15,3379,642648,1,1 ,27,11218,118368,23,8 ,15,3380,642656,1,1 ,27,11205,118376,24,8 ,15,3381,642664,1,1 ,27,41,118384,23,8 ,15,3382,642672,1,1 ,27,11207,118392,24,8 ,15,3383,642680,1,1 ,27,41,118400,23,8 ,15,3384,642688,1,1 ,45,15153,4836996,16,0 ,17,923,6934148,40,0 ,27,11209,118408,24,8 ,15,3385,642696,1,1 ,27,7606,118416,22,8 ,15,3386,642704,1,1 ,27,8699,118424,21,8 ,15,3387,642712,1,1 ,27,8698,118432,26,8 ,15,3388,642720,1,1 ,20,18205,7458466,160,0 ,20,24717,24235682,624,0 ,27,11211,118440,23,8 ,15,3389,642728,1,1 ,27,8698,118448,25,8 ,15,3390,642736,1,1 ,27,8701,118456,23,8 ,15,3391,642744,1,1 ,27,3978,118464,21,8 ,15,3392,642752,1,1 ,20,19974,11128514,364,0 ,17,923,118467,24,0 ,17,923,9031364,24,0 ,17,923,7458500,56,0 ,44,15152,2215620,40,0 ,44,15152,118468,32,0 ,45,15153,4312772,16,0 ,27,41,118472,23,8 ,15,3393,642760,1,1 ,27,11227,118480,24,8 ,15,3394,642768,1,1 ,27,11221,118488,22,8 ,15,3395,642776,1,1 ,27,11222,118496,23,8 ,15,3396,642784,1,1 ,20,22279,18468578,380,0 ,27,11223,118504,21,8 ,15,3397,642792,1,1 ,27,11224,118512,21,8 ,15,3398,642800,1,1 ,27,11225,118520,23,8 ,15,3399,642808,1,1 ,27,11238,118528,26,8 ,15,3400,642816,1,1 ,20,16343,3264258,52,0 ,17,923,10080004,48,0 ,44,15152,2739972,56,0 ,44,15152,642820,24,0 ,45,15153,4837124,16,0 ,17,923,7982852,40,0 ,27,41,118536,23,8 ,15,3401,642824,1,1 ,27,295,118544,23,8 ,15,3402,642832,1,1 ,27,812,118552,23,8 ,15,3403,642840,1,1 ,27,2182,118560,24,8 ,15,3404,642848,1,1 ,27,11239,118568,24,8 ,15,3405,642856,1,1 ,27,11240,118576,24,8 ,15,3406,642864,1,1 ,27,11241,118584,24,8 ,15,3407,642872,1,1 ,27,11242,118592,24,8 ,15,3408,642880,1,1 ,45,15153,4312900,16,0 ,17,923,6410052,32,0 ,27,2182,118600,24,8 ,15,3409,642888,1,1 ,27,11294,118608,24,8 ,15,3410,642896,1,1 ,27,41,118616,23,8 ,15,3411,642904,1,1 ,27,41,118624,23,8 ,15,3412,642912,1,1 ,20,16954,4312930,72,0 ,27,295,118632,23,8 ,15,3413,642920,1,1 ,27,812,118640,23,8 ,15,3414,642928,1,1 ,27,11247,118648,23,8 ,15,3415,642936,1,1 ,27,8699,118656,21,8 ,15,3416,642944,1,1 ,20,22698,19517314,80,0 ,20,18945,9031554,260,0 ,17,923,118659,40,0 ,17,923,9031556,24,0 ,44,15152,3264388,64,0 ,45,15153,4837252,16,0 ,27,8698,118664,26,8 ,15,3417,642952,1,1 ,27,11274,118672,21,8 ,15,3418,642960,1,1 ,27,11270,118680,22,8 ,15,3419,642968,1,1 ,27,8699,118688,21,8 ,15,3420,642976,1,1 ,20,25363,25808802,244,0 ,27,8698,118696,26,8 ,15,3421,642984,1,1 ,27,11260,118704,21,8 ,15,3422,642992,1,1 ,27,11259,118712,26,8 ,15,3423,643000,1,1 ,27,41,118720,23,8 ,15,3424,643008,1,1 ,20,26291,28430274,596,0 ,45,15153,4313028,40,0 ,17,923,6934468,40,0 ,44,15152,118724,40,0 ,44,15152,643012,112,0 ,44,15152,1167300,32,0 ,27,812,118728,23,8 ,15,3425,643016,1,1 ,27,295,118736,23,8 ,15,3426,643024,1,1 ,27,812,118744,23,8 ,15,3427,643032,1,1 ,27,295,118752,23,8 ,15,3428,643040,1,1 ,27,8698,118760,25,8 ,15,3429,643048,1,1 ,27,11263,118768,26,8 ,15,3430,643056,1,1 ,27,11259,118776,25,8 ,15,3431,643064,1,1 ,27,9388,118784,27,8 ,15,3432,643072,1,1 ,17,923,9555972,24,0 ,44,15152,2215940,40,0 ,45,15153,4837380,24,0 ,17,923,8507396,32,0 ,27,3978,118792,20,8 ,15,3433,643080,1,1 ,27,11260,118800,21,8 ,15,3434,643088,1,1 ,27,11259,118808,26,8 ,15,3435,643096,1,1 ,27,8698,118816,25,8 ,15,3436,643104,1,1 ,27,11259,118824,25,8 ,15,3437,643112,1,1 ,27,11276,118832,25,8 ,15,3438,643120,1,1 ,27,11277,118840,24,8 ,15,3439,643128,1,1 ,27,11278,118848,24,8 ,15,3440,643136,1,1 ,17,923,9031748,40,0 ,17,923,6410308,40,0 ,17,923,7983172,24,0 ,27,11279,118856,24,8 ,15,3441,643144,1,1 ,27,11280,118864,23,8 ,15,3442,643152,1,1 ,27,11281,118872,25,8 ,15,3443,643160,1,1 ,27,11286,118880,24,8 ,15,3444,643168,1,1 ,20,25502,26333282,64,0 ,27,8699,118888,21,8 ,15,3445,643176,1,1 ,27,8698,118896,24,8 ,15,3446,643184,1,1 ,27,11260,118904,21,8 ,15,3447,643192,1,1 ,27,11259,118912,26,8 ,15,3448,643200,1,1 ,17,923,10080388,48,0 ,17,923,7458948,32,0 ,27,8698,118920,22,8 ,15,3449,643208,1,1 ,27,11259,118928,24,8 ,15,3450,643216,1,1 ,27,8702,118936,23,8 ,15,3451,643224,1,1 ,27,11289,118944,23,8 ,15,3452,643232,1,1 ,20,16344,3264674,220,0 ,27,11290,118952,23,8 ,15,3453,643240,1,1 ,27,11291,118960,23,8 ,15,3454,643248,1,1 ,27,11292,118968,23,8 ,15,3455,643256,1,1 ,27,11308,118976,21,8 ,15,3456,643264,1,1 ,20,24522,23711938,172,0 ,17,923,118979,16,0 ,17,923,9556164,40,0 ,44,15152,2740420,56,0 ,44,15152,1167556,24,0 ,45,15153,4837572,32,0 ,27,4768,118984,24,8 ,15,3457,643272,1,1 ,27,41,118992,23,8 ,15,3458,643280,1,1 ,27,11303,119000,24,8 ,15,3459,643288,1,1 ,27,11012,119008,24,8 ,15,3460,643296,1,1 ,27,11304,119016,24,8 ,15,3461,643304,1,1 ,27,11305,119024,24,8 ,15,3462,643312,1,1 ,27,11306,119032,24,8 ,15,3463,643320,1,1 ,27,2182,119040,24,8 ,15,3464,643328,1,1 ,20,16691,3789058,12,0 ,20,25705,26857730,116,0 ,17,923,8507652,32,0 ,17,923,6934788,40,0 ,44,15152,119044,24,0 ,45,15153,4313348,32,0 ,17,923,7983364,24,0 ,27,4748,119048,22,8 ,15,3465,643336,1,1 ,27,4748,119056,22,8 ,15,3466,643344,1,1 ,27,4768,119064,24,8 ,15,3467,643352,1,1 ,27,4663,119072,22,8 ,15,3468,643360,1,1 ,27,2312,119080,22,8 ,15,3469,643368,1,1 ,27,11313,119088,24,8 ,15,3470,643376,1,1 ,27,11314,119096,24,8 ,15,3471,643384,1,1 ,27,11315,119104,24,8 ,15,3472,643392,1,1 ,17,923,119107,16,0 ,44,15152,2216260,56,0 ,27,11316,119112,24,8 ,15,3473,643400,1,1 ,27,11317,119120,24,8 ,15,3474,643408,1,1 ,27,11318,119128,24,8 ,15,3475,643416,1,1 ,27,11319,119136,24,8 ,15,3476,643424,1,1 ,20,18474,7983458,176,0 ,20,16692,3789154,12,0 ,27,11320,119144,24,8 ,15,3477,643432,1,1 ,27,11321,119152,24,8 ,15,3478,643440,1,1 ,27,11322,119160,24,8 ,15,3479,643448,1,1 ,27,11323,119168,24,8 ,15,3480,643456,1,1 ,17,923,9032068,40,0 ,17,923,7459204,40,0 ,17,923,6410628,24,0 ,44,15152,1167748,32,0 ,44,15152,3264900,64,0 ,27,11324,119176,24,8 ,15,3481,643464,1,1 ,27,2182,119184,24,8 ,15,3482,643472,1,1 ,27,2312,119192,22,8 ,15,3483,643480,1,1 ,27,11328,119200,24,8 ,15,3484,643488,1,1 ,20,16955,4313506,60,0 ,27,1025,119208,24,8 ,15,3485,643496,1,1 ,27,9,119216,23,8 ,15,3486,643504,1,1 ,27,1035,119224,26,8 ,15,3487,643512,1,1 ,27,1238,119232,24,8 ,15,3488,643520,1,1 ,20,16693,3789250,12,0 ,20,15219,119234,884,0 ,17,923,119235,16,0 ,17,923,7983556,32,0 ,44,15152,119236,24,0 ,44,15152,3789252,112,0 ,45,15153,4837828,16,0 ,27,1237,119240,24,8 ,15,3489,643528,1,1 ,27,1309,119248,24,8 ,15,3490,643536,1,1 ,27,1240,119256,26,8 ,15,3491,643544,1,1 ,27,11335,119264,26,8 ,15,3492,643552,1,1 ,20,22988,20042210,104,0 ,27,4309,119272,23,8 ,15,3493,643560,1,1 ,27,9,119280,23,8 ,15,3494,643568,1,1 ,27,41,119288,23,8 ,15,3495,643576,1,1 ,27,295,119296,23,8 ,15,3496,643584,1,1 ,20,22699,19517954,80,0 ,17,923,10080772,48,0 ,45,15153,4313604,24,0 ,17,923,8507908,56,0 ,17,923,9556484,32,0 ,27,812,119304,23,8 ,15,3497,643592,1,1 ,27,5827,119312,24,8 ,15,3498,643600,1,1 ,27,11344,119320,24,8 ,15,3499,643608,1,1 ,27,11345,119328,24,8 ,15,3500,643616,1,1 ,20,16694,3789346,48,0 ,20,24904,24760866,84,0 ,27,5810,119336,27,8 ,15,3501,643624,1,1 ,27,5831,119344,24,8 ,15,3502,643632,1,1 ,27,5834,119352,24,8 ,15,3503,643640,1,1 ,27,11346,119360,23,8 ,15,3504,643648,1,1 ,17,923,119363,16,0 ,45,15153,4837956,24,0 ,17,923,6935108,40,0 ,17,923,6410820,24,0 ,27,11347,119368,23,8 ,15,3505,643656,1,1 ,27,11353,119376,23,8 ,15,3506,643664,1,1 ,27,7122,119384,22,8 ,15,3507,643672,1,1 ,27,11351,119392,23,8 ,15,3508,643680,1,1 ,20,25503,26333794,272,0 ,27,4463,119400,22,8 ,15,3509,643688,1,1 ,27,11362,119408,22,8 ,15,3510,643696,1,1 ,27,4733,119416,22,8 ,15,3511,643704,1,1 ,27,4606,119424,24,8 ,15,3512,643712,1,1 ,44,15152,1168004,24,0 ,44,15152,2740868,120,0 ,44,15152,119428,56,0 ,27,4733,119432,22,8 ,15,3513,643720,1,1 ,27,4606,119440,24,8 ,15,3514,643728,1,1 ,27,2182,119448,24,8 ,15,3515,643736,1,1 ,27,11359,119456,22,8 ,15,3516,643744,1,1 ,27,7122,119464,22,8 ,15,3517,643752,1,1 ,27,11360,119472,23,8 ,15,3518,643760,1,1 ,27,4463,119480,22,8 ,15,3519,643768,1,1 ,27,809,119488,23,8 ,15,3520,643776,1,1 ,17,923,119491,40,0 ,17,923,9032388,24,0 ,17,923,7459524,24,0 ,45,15153,4313796,32,0 ,45,15153,5362372,24,0 ,17,923,7983812,24,0 ,27,1200,119496,24,8 ,15,3521,643784,1,1 ,27,1043,119504,24,8 ,15,3522,643792,1,1 ,27,1380,119512,22,8 ,15,3523,643800,1,1 ,27,9,119520,25,8 ,15,3524,643808,1,1 ,27,9,119528,25,8 ,15,3525,643816,1,1 ,27,9,119536,25,8 ,15,3526,643824,1,1 ,27,1419,119544,24,8 ,15,3527,643832,1,1 ,27,1418,119552,26,8 ,15,3528,643840,1,1 ,17,923,9556740,32,0 ,17,923,6411012,16,0 ,44,15152,2216708,40,0 ,45,15153,4838148,32,0 ,27,1039,119560,21,8 ,15,3529,643848,1,1 ,27,1038,119568,26,8 ,15,3530,643856,1,1 ,27,1026,119576,24,8 ,15,3531,643864,1,1 ,27,1364,119584,26,8 ,15,3532,643872,1,1 ,20,19372,10081058,128,0 ,27,1052,119592,24,8 ,15,3533,643880,1,1 ,27,1029,119600,26,8 ,15,3534,643888,1,1 ,27,1038,119608,25,8 ,15,3535,643896,1,1 ,27,623,119616,23,8 ,15,3536,643904,1,1 ,20,17134,4838210,156,0 ,44,15152,1168196,24,0 ,44,15152,643908,32,0 ,27,1040,119624,24,8 ,15,3537,643912,1,1 ,27,1057,119632,22,8 ,15,3538,643920,1,1 ,27,1043,119640,24,8 ,15,3539,643928,1,1 ,27,1055,119648,24,8 ,15,3540,643936,1,1 ,27,1055,119656,24,8 ,15,3541,643944,1,1 ,27,1200,119664,24,8 ,15,3542,643952,1,1 ,27,809,119672,23,8 ,15,3543,643960,1,1 ,27,1396,119680,24,8 ,15,3544,643968,1,1 ,20,24352,23188354,108,0 ,20,16956,4313986,196,0 ,20,23949,22139778,312,0 ,17,923,10081156,40,0 ,17,923,7459716,24,0 ,17,923,6935428,32,0 ,17,923,6411140,24,0 ,44,15152,3265412,48,0 ,45,15153,5362564,24,0 ,17,923,7984004,32,0 ,17,923,9032580,24,0 ,27,1043,119688,24,8 ,15,3545,643976,1,1 ,27,1040,119696,24,8 ,15,3546,643984,1,1 ,27,623,119704,23,8 ,15,3547,643992,1,1 ,27,1043,119712,24,8 ,15,3548,644000,1,1 ,20,18206,7459746,168,0 ,20,16695,3789730,752,0 ,27,1026,119720,24,8 ,15,3549,644008,1,1 ,27,11371,119728,24,8 ,15,3550,644016,1,1 ,27,11370,119736,24,8 ,15,3551,644024,1,1 ,27,11372,119744,23,8 ,15,3552,644032,1,1 ,17,923,8508356,32,0 ,45,15153,4314052,24,0 ,27,623,119752,23,8 ,15,3553,644040,1,1 ,27,11374,119760,23,8 ,15,3554,644048,1,1 ,27,1026,119768,24,8 ,15,3555,644056,1,1 ,27,1200,119776,24,8 ,15,3556,644064,1,1 ,20,25151,25285602,272,0 ,27,809,119784,23,8 ,15,3557,644072,1,1 ,27,1043,119792,24,8 ,15,3558,644080,1,1 ,27,623,119800,23,8 ,15,3559,644088,1,1 ,27,1200,119808,24,8 ,15,3560,644096,1,1 ,17,923,119811,16,0 ,17,923,9556996,32,0 ,44,15152,1168388,24,0 ,45,15153,4838404,16,0 ,27,809,119816,23,8 ,15,3561,644104,1,1 ,27,1043,119824,24,8 ,15,3562,644112,1,1 ,27,623,119832,23,8 ,15,3563,644120,1,1 ,27,809,119840,23,8 ,15,3564,644128,1,1 ,27,1200,119848,24,8 ,15,3565,644136,1,1 ,27,1043,119856,24,8 ,15,3566,644144,1,1 ,27,1040,119864,24,8 ,15,3567,644152,1,1 ,27,623,119872,23,8 ,15,3568,644160,1,1 ,17,923,9032772,40,0 ,17,923,7459908,32,0 ,17,923,6411332,16,0 ,44,15152,2217028,24,0 ,44,15152,119876,88,0 ,44,15152,644164,48,0 ,45,15153,5362756,144,0 ,27,1039,119880,21,8 ,15,3569,644168,1,1 ,27,1038,119888,26,8 ,15,3570,644176,1,1 ,27,1057,119896,22,8 ,15,3571,644184,1,1 ,27,1038,119904,25,8 ,15,3572,644192,1,1 ,20,20534,13227106,80,0 ,27,1200,119912,24,8 ,15,3573,644200,1,1 ,27,1043,119920,24,8 ,15,3574,644208,1,1 ,27,1039,119928,21,8 ,15,3575,644216,1,1 ,27,1038,119936,26,8 ,15,3576,644224,1,1 ,20,23595,21091458,572,0 ,20,22700,19518594,80,0 ,17,923,119939,16,0 ,17,923,7984260,40,0 ,17,923,6935684,24,0 ,45,15153,4314244,32,0 ,45,15153,4838532,32,0 ,27,1057,119944,22,8 ,15,3577,644232,1,1 ,27,1038,119952,25,8 ,15,3578,644240,1,1 ,27,809,119960,23,8 ,15,3579,644248,1,1 ,27,1200,119968,24,8 ,15,3580,644256,1,1 ,20,25706,26858658,864,0 ,27,11389,119976,21,8 ,15,3581,644264,1,1 ,27,809,119984,23,8 ,15,3582,644272,1,1 ,27,11387,119992,22,8 ,15,3583,644280,1,1 ,27,1200,120000,24,8 ,15,3584,644288,1,1 ,20,24905,24761538,112,0 ,17,923,10081476,16,0 ,17,923,6411460,16,0 ,44,15152,1168580,16,0 ,17,923,8508612,72,0 ,27,11390,120008,24,8 ,15,3585,644296,1,1 ,27,11391,120016,23,8 ,15,3586,644304,1,1 ,27,1043,120024,24,8 ,15,3587,644312,1,1 ,27,1040,120032,24,8 ,15,3588,644320,1,1 ,20,26409,28955874,256,0 ,27,623,120040,23,8 ,15,3589,644328,1,1 ,27,11394,120048,23,8 ,15,3590,644336,1,1 ,27,1200,120056,24,8 ,15,3591,644344,1,1 ,27,809,120064,23,8 ,15,3592,644352,1,1 ,17,923,120067,16,0 ,17,923,9557252,32,0 ,44,15152,2217220,24,0 ,44,15152,3265796,104,0 ,27,1043,120072,24,8 ,15,3593,644360,1,1 ,27,11400,120080,24,8 ,15,3594,644368,1,1 ,27,1200,120088,24,8 ,15,3595,644376,1,1 ,27,809,120096,23,8 ,15,3596,644384,1,1 ,20,22989,20043042,24,0 ,27,1354,120104,26,8 ,15,3597,644392,1,1 ,27,809,120112,23,8 ,15,3598,644400,1,1 ,27,1200,120120,24,8 ,15,3599,644408,1,1 ,27,1200,120128,24,8 ,15,3600,644416,1,1 ,17,923,10081604,16,0 ,17,923,7460164,24,0 ,17,923,6935876,56,0 ,17,923,6411588,64,0 ,44,15152,1168708,32,0 ,44,15152,3790148,24,0 ,27,809,120136,23,8 ,15,3601,644424,1,1 ,27,1043,120144,24,8 ,15,3602,644432,1,1 ,27,1040,120152,24,8 ,15,3603,644440,1,1 ,27,623,120160,23,8 ,15,3604,644448,1,1 ,27,11404,120168,24,8 ,15,3605,644456,1,1 ,27,809,120176,23,8 ,15,3606,644464,1,1 ,27,1200,120184,24,8 ,15,3607,644472,1,1 ,27,1200,120192,24,8 ,15,3608,644480,1,1 ,20,17353,5363074,188,0 ,17,923,120195,16,0 ,17,923,9033092,32,0 ,45,15153,4314500,16,0 ,45,15153,4838788,32,0 ,27,809,120200,23,8 ,15,3609,644488,1,1 ,27,1200,120208,24,8 ,15,3610,644496,1,1 ,27,809,120216,23,8 ,15,3611,644504,1,1 ,27,1043,120224,24,8 ,15,3612,644512,1,1 ,27,1274,120232,24,8 ,15,3613,644520,1,1 ,27,11409,120240,22,8 ,15,3614,644528,1,1 ,27,11412,120248,22,8 ,15,3615,644536,1,1 ,27,41,120256,23,8 ,15,3616,644544,1,1 ,20,20246,12703170,12,0 ,17,923,10081732,16,0 ,44,15152,2217412,128,0 ,44,15152,644548,80,0 ,17,923,7984580,40,0 ,27,812,120264,23,8 ,15,3617,644552,1,1 ,27,295,120272,23,8 ,15,3618,644560,1,1 ,27,11413,120280,23,8 ,15,3619,644568,1,1 ,27,11415,120288,22,8 ,15,3620,644576,1,1 ,20,22990,20043234,80,0 ,27,11416,120296,24,8 ,15,3621,644584,1,1 ,27,11460,120304,20,8 ,15,3622,644592,1,1 ,27,11458,120312,21,8 ,15,3623,644600,1,1 ,27,11455,120320,22,8 ,15,3624,644608,1,1 ,20,15365,644610,408,0 ,17,923,120323,24,0 ,17,923,9557508,32,0 ,17,923,7460356,48,0 ,44,15152,3790340,24,0 ,45,15153,4314628,16,0 ,27,11448,120328,21,8 ,15,3625,644616,1,1 ,27,11446,120336,22,8 ,15,3626,644624,1,1 ,27,11444,120344,24,8 ,15,3627,644632,1,1 ,27,11419,120352,24,8 ,15,3628,644640,1,1 ,20,24523,23713314,252,0 ,20,20247,12703266,220,0 ,27,11420,120360,24,8 ,15,3629,644648,1,1 ,27,11439,120368,24,8 ,15,3630,644656,1,1 ,27,11434,120376,24,8 ,15,3631,644664,1,1 ,27,11423,120384,24,8 ,15,3632,644672,1,1 ,17,923,10081860,16,0 ,44,15152,2741828,40,0 ,44,15152,1168964,40,0 ,27,11420,120392,24,8 ,15,3633,644680,1,1 ,27,11424,120400,24,8 ,15,3634,644688,1,1 ,27,11426,120408,26,8 ,15,3635,644696,1,1 ,27,11427,120416,24,8 ,15,3636,644704,1,1 ,27,11428,120424,24,8 ,15,3637,644712,1,1 ,27,11429,120432,24,8 ,15,3638,644720,1,1 ,27,11430,120440,24,8 ,15,3639,644728,1,1 ,27,11432,120448,26,8 ,15,3640,644736,1,1 ,17,923,9033348,24,0 ,45,15153,4314756,24,0 ,45,15153,4839044,32,0 ,27,11434,120456,24,8 ,15,3641,644744,1,1 ,27,11419,120464,24,8 ,15,3642,644752,1,1 ,27,11423,120472,24,8 ,15,3643,644760,1,1 ,27,11424,120480,24,8 ,15,3644,644768,1,1 ,27,11426,120488,26,8 ,15,3645,644776,1,1 ,27,11427,120496,24,8 ,15,3646,644784,1,1 ,27,11428,120504,24,8 ,15,3647,644792,1,1 ,27,11429,120512,24,8 ,15,3648,644800,1,1 ,17,923,120515,32,0 ,17,923,10081988,40,0 ,44,15152,3790532,184,0 ,27,11437,120520,24,8 ,15,3649,644808,1,1 ,27,11432,120528,26,8 ,15,3650,644816,1,1 ,27,11426,120536,26,8 ,15,3651,644824,1,1 ,27,11423,120544,24,8 ,15,3652,644832,1,1 ,20,24353,23189218,384,0 ,20,18475,7984866,744,0 ,20,20535,13227746,12,0 ,20,21233,15849186,68,0 ,20,22543,18994914,868,0 ,27,11424,120552,24,8 ,15,3653,644840,1,1 ,27,11434,120560,24,8 ,15,3654,644848,1,1 ,27,11427,120568,24,8 ,15,3655,644856,1,1 ,27,11428,120576,24,8 ,15,3656,644864,1,1 ,20,22701,19519234,76,0 ,20,20941,15324930,796,0 ,17,923,9557764,40,0 ,17,923,6936324,32,0 ,44,15152,120580,24,0 ,17,923,7984900,24,0 ,17,923,8509188,32,0 ,27,11429,120584,24,8 ,15,3657,644872,1,1 ,27,11432,120592,26,8 ,15,3658,644880,1,1 ,27,11450,120600,21,8 ,15,3659,644888,1,1 ,27,11449,120608,22,8 ,15,3660,644896,1,1 ,20,19373,10082082,124,0 ,27,11453,120616,21,8 ,15,3661,644904,1,1 ,27,11451,120624,22,8 ,15,3662,644912,1,1 ,27,11454,120632,20,8 ,15,3663,644920,1,1 ,27,41,120640,23,8 ,15,3664,644928,1,1 ,20,20536,13227842,84,0 ,20,25921,27383618,372,0 ,20,25364,25810754,24,0 ,20,17752,6412098,116,0 ,17,923,9033540,24,0 ,17,923,6412100,24,0 ,45,15153,4314948,32,0 ,27,11459,120648,23,8 ,15,3665,644936,1,1 ,27,11470,120656,24,8 ,15,3666,644944,1,1 ,27,41,120664,23,8 ,15,3667,644952,1,1 ,27,2903,120672,24,8 ,15,3668,644960,1,1 ,27,11466,120680,22,8 ,15,3669,644968,1,1 ,27,11467,120688,24,8 ,15,3670,644976,1,1 ,27,11469,120696,24,8 ,15,3671,644984,1,1 ,27,11471,120704,24,8 ,15,3672,644992,1,1 ,20,16345,3266434,12,0 ,45,15153,4839300,32,0 ,17,923,7460740,32,0 ,44,15152,2742148,24,0 ,44,15152,1169284,32,0 ,27,11472,120712,24,8 ,15,3673,645000,1,1 ,27,11473,120720,24,8 ,15,3674,645008,1,1 ,27,2903,120728,24,8 ,15,3675,645016,1,1 ,27,11432,120736,24,8 ,15,3676,645024,1,1 ,20,18946,9033634,1336,0 ,27,1029,120744,27,8 ,15,3677,645032,1,1 ,27,11474,120752,24,8 ,15,3678,645040,1,1 ,27,11475,120760,26,8 ,15,3679,645048,1,1 ,27,1205,120768,24,8 ,15,3680,645056,1,1 ,17,923,120771,16,0 ,17,923,7985092,24,0 ,44,15152,120772,32,0 ,27,11476,120776,24,8 ,15,3681,645064,1,1 ,27,11477,120784,24,8 ,15,3682,645072,1,1 ,27,1200,120792,24,8 ,15,3683,645080,1,1 ,27,11478,120800,24,8 ,15,3684,645088,1,1 ,20,23324,20568034,100,0 ,20,16346,3266530,88,0 ,27,11434,120808,24,8 ,15,3685,645096,1,1 ,27,11479,120816,27,8 ,15,3686,645104,1,1 ,27,1200,120824,20,8 ,15,3687,645112,1,1 ,27,11479,120832,27,8 ,15,3688,645120,1,1 ,20,25365,25810946,24,0 ,17,923,10082308,24,0 ,17,923,6936580,40,0 ,17,923,6412292,24,0 ,17,923,8509444,24,0 ,17,923,9033732,24,0 ,27,11328,120840,21,8 ,15,3689,645128,1,1 ,27,11472,120848,24,8 ,15,3690,645136,1,1 ,27,11449,120856,22,8 ,15,3691,645144,1,1 ,27,11478,120864,24,8 ,15,3692,645152,1,1 ,20,17135,4839458,192,0 ,27,11450,120872,21,8 ,15,3693,645160,1,1 ,27,11482,120880,22,8 ,15,3694,645168,1,1 ,27,11476,120888,24,8 ,15,3695,645176,1,1 ,27,11485,120896,26,8 ,15,3696,645184,1,1 ,20,24906,24762434,80,0 ,17,923,120899,16,0 ,17,923,9558084,40,0 ,44,15152,2742340,24,0 ,44,15152,645188,376,0 ,44,15152,3266628,120,0 ,45,15153,4315204,32,0 ,27,11328,120904,24,8 ,15,3697,645192,1,1 ,27,204,120912,25,8 ,15,3698,645200,1,1 ,27,204,120920,25,8 ,15,3699,645208,1,1 ,27,204,120928,26,8 ,15,3700,645216,1,1 ,20,22991,20043874,200,0 ,27,204,120936,24,8 ,15,3701,645224,1,1 ,27,204,120944,24,8 ,15,3702,645232,1,1 ,27,1039,120952,21,8 ,15,3703,645240,1,1 ,27,1038,120960,26,8 ,15,3704,645248,1,1 ,17,923,7985284,24,0 ,17,923,7460996,32,0 ,44,15152,1169540,40,0 ,45,15153,4839556,32,0 ,27,1038,120968,25,8 ,15,3705,645256,1,1 ,27,1025,120976,24,8 ,15,3706,645264,1,1 ,27,1025,120984,24,8 ,15,3707,645272,1,1 ,27,1418,120992,26,8 ,15,3708,645280,1,1 ,27,1418,121000,26,8 ,15,3709,645288,1,1 ,27,1418,121008,26,8 ,15,3710,645296,1,1 ,27,11489,121016,24,8 ,15,3711,645304,1,1 ,27,445,121024,25,8 ,15,3712,645312,1,1 ,20,25366,25811138,3160,0 ,17,923,121027,24,0 ,17,923,10082500,24,0 ,17,923,6412484,24,0 ,44,15152,121028,24,0 ,45,15153,5363908,16,0 ,17,923,8509636,56,0 ,17,923,9033924,24,0 ,27,445,121032,25,8 ,15,3713,645320,1,1 ,27,445,121040,26,8 ,15,3714,645328,1,1 ,27,445,121048,24,8 ,15,3715,645336,1,1 ,27,445,121056,24,8 ,15,3716,645344,1,1 ,20,18207,7461090,52,0 ,20,26121,27908322,324,0 ,27,1040,121064,24,8 ,15,3717,645352,1,1 ,27,3623,121072,22,8 ,15,3718,645360,1,1 ,27,11493,121080,23,8 ,15,3719,645368,1,1 ,27,1274,121088,24,8 ,15,3720,645376,1,1 ,20,21234,15849730,152,0 ,44,15152,2742532,32,0 ,27,1274,121096,24,8 ,15,3721,645384,1,1 ,27,11495,121104,24,8 ,15,3722,645392,1,1 ,27,11496,121112,23,8 ,15,3723,645400,1,1 ,27,41,121120,23,8 ,15,3724,645408,1,1 ,27,11508,121128,24,8 ,15,3725,645416,1,1 ,27,11513,121136,23,8 ,15,3726,645424,1,1 ,27,41,121144,23,8 ,15,3727,645432,1,1 ,27,1200,121152,24,8 ,15,3728,645440,1,1 ,17,923,7985476,24,0 ,17,923,6936900,40,0 ,45,15153,4315460,16,0 ,45,15153,5364036,80,0 ,27,809,121160,23,8 ,15,3729,645448,1,1 ,27,1043,121168,25,8 ,15,3730,645456,1,1 ,27,1043,121176,25,8 ,15,3731,645464,1,1 ,27,4294,121184,24,8 ,15,3732,645472,1,1 ,20,22702,19519842,12,0 ,27,41,121192,23,8 ,15,3733,645480,1,1 ,27,295,121200,23,8 ,15,3734,645488,1,1 ,27,812,121208,23,8 ,15,3735,645496,1,1 ,27,5914,121216,26,8 ,15,3736,645504,1,1 ,17,923,121219,32,0 ,17,923,10082692,24,0 ,17,923,7461252,24,0 ,17,923,6412676,24,0 ,44,15152,121220,48,0 ,45,15153,4839812,32,0 ,17,923,9034116,24,0 ,17,923,9558404,32,0 ,27,5908,121224,24,8 ,15,3737,645512,1,1 ,27,5909,121232,24,8 ,15,3738,645520,1,1 ,27,2274,121240,24,8 ,15,3739,645528,1,1 ,27,4294,121248,24,8 ,15,3740,645536,1,1 ,20,16957,4315554,12,0 ,27,41,121256,23,8 ,15,3741,645544,1,1 ,27,295,121264,23,8 ,15,3742,645552,1,1 ,27,812,121272,23,8 ,15,3743,645560,1,1 ,27,4294,121280,24,8 ,15,3744,645568,1,1 ,20,22703,19519938,80,0 ,45,15153,4315588,64,0 ,44,15152,2218436,72,0 ,44,15152,1169860,24,0 ,27,5914,121288,26,8 ,15,3745,645576,1,1 ,27,11518,121296,24,8 ,15,3746,645584,1,1 ,27,5908,121304,24,8 ,15,3747,645592,1,1 ,27,5909,121312,24,8 ,15,3748,645600,1,1 ,20,20537,13228514,440,0 ,27,2274,121320,24,8 ,15,3749,645608,1,1 ,27,41,121328,23,8 ,15,3750,645616,1,1 ,27,295,121336,23,8 ,15,3751,645624,1,1 ,27,812,121344,23,8 ,15,3752,645632,1,1 ,20,16958,4315650,12,0 ,17,923,7985668,24,0 ,44,15152,2742788,56,0 ,27,4294,121352,24,8 ,15,3753,645640,1,1 ,27,5914,121360,26,8 ,15,3754,645648,1,1 ,27,11518,121368,24,8 ,15,3755,645656,1,1 ,27,11520,121376,24,8 ,15,3756,645664,1,1 ,20,19975,11131426,420,0 ,27,5908,121384,24,8 ,15,3757,645672,1,1 ,27,5909,121392,24,8 ,15,3758,645680,1,1 ,27,2274,121400,24,8 ,15,3759,645688,1,1 ,27,41,121408,23,8 ,15,3760,645696,1,1 ,17,923,10082884,24,0 ,17,923,7461444,32,0 ,17,923,6412868,16,0 ,17,923,9034308,32,0 ,27,295,121416,23,8 ,15,3761,645704,1,1 ,27,812,121424,23,8 ,15,3762,645712,1,1 ,27,5914,121432,26,8 ,15,3763,645720,1,1 ,27,5908,121440,24,8 ,15,3764,645728,1,1 ,20,16959,4315746,120,0 ,27,5909,121448,24,8 ,15,3765,645736,1,1 ,27,2274,121456,24,8 ,15,3766,645744,1,1 ,27,11525,121464,24,8 ,15,3767,645752,1,1 ,27,1029,121472,26,8 ,15,3768,645760,1,1 ,20,18208,7461506,200,0 ,17,923,121475,24,0 ,17,923,9558660,32,0 ,17,923,6937220,40,0 ,44,15152,1170052,64,0 ,45,15153,4840068,32,0 ,17,923,8510084,32,0 ,27,4606,121480,24,8 ,15,3769,645768,1,1 ,27,4733,121488,22,8 ,15,3770,645776,1,1 ,27,1039,121496,21,8 ,15,3771,645784,1,1 ,27,1038,121504,28,8 ,15,3772,645792,1,1 ,20,16347,3267234,48,0 ,27,1038,121512,27,8 ,15,3773,645800,1,1 ,27,1043,121520,23,8 ,15,3774,645808,1,1 ,27,4141,121528,20,8 ,15,3775,645816,1,1 ,27,4140,121536,28,8 ,15,3776,645824,1,1 ,20,22280,18471618,464,0 ,20,24907,24763074,192,0 ,17,923,7985860,32,0 ,17,923,6412996,40,0 ,27,623,121544,23,8 ,15,3777,645832,1,1 ,27,4140,121552,27,8 ,15,3778,645840,1,1 ,27,4138,121560,23,8 ,15,3779,645848,1,1 ,27,11530,121568,23,8 ,15,3780,645856,1,1 ,20,17753,6413026,220,0 ,20,25504,26335970,196,0 ,27,1421,121576,26,8 ,15,3781,645864,1,1 ,27,1028,121584,24,8 ,15,3782,645872,1,1 ,27,5291,121592,26,8 ,15,3783,645880,1,1 ,27,41,121600,23,8 ,15,3784,645888,1,1 ,20,23325,20568834,68,0 ,20,19374,10083074,160,0 ,17,923,10083076,24,0 ,44,15152,121604,24,0 ,27,3456,121608,24,8 ,15,3785,645896,1,1 ,27,2464,121616,24,8 ,15,3786,645904,1,1 ,27,228,121624,23,8 ,15,3787,645912,1,1 ,27,11532,121632,24,8 ,15,3788,645920,1,1 ,27,11533,121640,24,8 ,15,3789,645928,1,1 ,27,11534,121648,24,8 ,15,3790,645936,1,1 ,27,11541,121656,24,8 ,15,3791,645944,1,1 ,27,11539,121664,23,8 ,15,3792,645952,1,1 ,17,923,121667,24,0 ,17,923,9034564,24,0 ,17,923,7461700,24,0 ,27,3456,121672,24,8 ,15,3793,645960,1,1 ,27,2464,121680,24,8 ,15,3794,645968,1,1 ,27,228,121688,23,8 ,15,3795,645976,1,1 ,27,11537,121696,26,8 ,15,3796,645984,1,1 ,20,17354,5364578,604,0 ,27,11540,121704,24,8 ,15,3797,645992,1,1 ,27,11545,121712,22,8 ,15,3798,646000,1,1 ,27,3456,121720,24,8 ,15,3799,646008,1,1 ,27,2464,121728,24,8 ,15,3800,646016,1,1 ,17,923,9558916,24,0 ,45,15153,4840324,16,0 ,17,923,8510340,40,0 ,27,228,121736,23,8 ,15,3801,646024,1,1 ,27,11547,121744,24,8 ,15,3802,646032,1,1 ,27,11549,121752,26,8 ,15,3803,646040,1,1 ,27,11550,121760,21,8 ,15,3804,646048,1,1 ,27,1040,121768,24,8 ,15,3805,646056,1,1 ,27,1062,121776,21,8 ,15,3806,646064,1,1 ,27,579,121784,25,8 ,15,3807,646072,1,1 ,27,579,121792,24,8 ,15,3808,646080,1,1 ,17,923,10083268,32,0 ,17,923,6937540,24,0 ,44,15152,2743236,48,0 ,44,15152,121796,24,0 ,45,15153,4316100,16,0 ,45,15153,5364676,16,0 ,17,923,7986116,32,0 ,27,3135,121800,26,8 ,15,3809,646088,1,1 ,27,11579,121808,20,8 ,15,3810,646096,1,1 ,27,11565,121816,24,8 ,15,3811,646104,1,1 ,27,11565,121824,23,8 ,15,3812,646112,1,1 ,27,11556,121832,20,8 ,15,3813,646120,1,1 ,27,11555,121840,24,8 ,15,3814,646128,1,1 ,27,11555,121848,23,8 ,15,3815,646136,1,1 ,27,11557,121856,24,8 ,15,3816,646144,1,1 ,17,923,121859,32,0 ,17,923,9034756,24,0 ,17,923,7461892,32,0 ,17,923,6413316,24,0 ,44,15152,2219012,64,0 ,44,15152,3267588,40,0 ,45,15153,4840452,32,0 ,27,11561,121864,24,8 ,15,3817,646152,1,1 ,27,11562,121872,24,8 ,15,3818,646160,1,1 ,27,5612,121880,22,8 ,15,3819,646168,1,1 ,27,5597,121888,22,8 ,15,3820,646176,1,1 ,20,21820,16899106,328,0 ,20,16348,3267618,40,0 ,27,11563,121896,24,8 ,15,3821,646184,1,1 ,27,5515,121904,22,8 ,15,3822,646192,1,1 ,27,11566,121912,22,8 ,15,3823,646200,1,1 ,27,11567,121920,23,8 ,15,3824,646208,1,1 ,20,22704,19520578,80,0 ,17,923,9559108,32,0 ,45,15153,4316228,32,0 ,45,15153,5364804,16,0 ,27,11567,121928,24,8 ,15,3825,646216,1,1 ,27,5514,121936,22,8 ,15,3826,646224,1,1 ,27,11568,121944,22,8 ,15,3827,646232,1,1 ,27,5524,121952,24,8 ,15,3828,646240,1,1 ,20,25152,25287778,12,0 ,27,11569,121960,22,8 ,15,3829,646248,1,1 ,27,11570,121968,22,8 ,15,3830,646256,1,1 ,27,5598,121976,22,8 ,15,3831,646264,1,1 ,27,11571,121984,22,8 ,15,3832,646272,1,1 ,44,15152,3792004,24,0 ,17,923,6937732,48,0 ,44,15152,121988,56,0 ,44,15152,1170564,16,0 ,27,11572,121992,20,8 ,15,3833,646280,1,1 ,27,11573,122000,26,8 ,15,3834,646288,1,1 ,27,11575,122008,20,8 ,15,3835,646296,1,1 ,27,11574,122016,24,8 ,15,3836,646304,1,1 ,27,11576,122024,22,8 ,15,3837,646312,1,1 ,27,11577,122032,22,8 ,15,3838,646320,1,1 ,27,11580,122040,22,8 ,15,3839,646328,1,1 ,27,11574,122048,23,8 ,15,3840,646336,1,1 ,20,25153,25287874,56,0 ,17,923,10083524,24,0 ,17,923,6413508,24,0 ,45,15153,5364932,32,0 ,17,923,7986372,32,0 ,17,923,8510660,32,0 ,17,923,9034948,24,0 ,27,2312,122056,22,8 ,15,3841,646344,1,1 ,27,11582,122064,27,8 ,15,3842,646352,1,1 ,27,541,122072,23,8 ,15,3843,646360,1,1 ,27,1660,122080,22,8 ,15,3844,646368,1,1 ,20,22031,17947874,12,0 ,20,26410,28957922,92,0 ,27,634,122088,23,8 ,15,3845,646376,1,1 ,27,1938,122096,22,8 ,15,3846,646384,1,1 ,27,3593,122104,22,8 ,15,3847,646392,1,1 ,27,3148,122112,22,8 ,15,3848,646400,1,1 ,20,20248,12705026,92,0 ,17,923,122115,16,0 ,45,15153,4840708,32,0 ,17,923,7462148,40,0 ,44,15152,1694980,16,0 ,44,15152,1170692,48,0 ,27,11583,122120,21,8 ,15,3849,646408,1,1 ,27,11584,122128,24,8 ,15,3850,646416,1,1 ,27,634,122136,23,8 ,15,3851,646424,1,1 ,27,11586,122144,20,8 ,15,3852,646432,1,1 ,20,23326,20569378,72,0 ,20,18023,6937890,12,0 ,27,3631,122152,24,8 ,15,3853,646440,1,1 ,27,3631,122160,23,8 ,15,3854,646448,1,1 ,27,3593,122168,22,8 ,15,3855,646456,1,1 ,27,3148,122176,24,8 ,15,3856,646464,1,1 ,20,23950,22142274,168,0 ,20,22032,17947970,496,0 ,17,923,9559364,32,0 ,44,15152,2743620,48,0 ,44,15152,3267908,168,0 ,44,15152,3792196,32,0 ,45,15153,4316484,16,0 ,27,1296,122184,22,8 ,15,3857,646472,1,1 ,27,3110,122192,22,8 ,15,3858,646480,1,1 ,27,11587,122200,22,8 ,15,3859,646488,1,1 ,27,3584,122208,24,8 ,15,3860,646496,1,1 ,20,16349,3267938,32,0 ,27,11588,122216,23,8 ,15,3861,646504,1,1 ,27,1057,122224,23,8 ,15,3862,646512,1,1 ,27,1057,122232,23,8 ,15,3863,646520,1,1 ,27,623,122240,23,8 ,15,3864,646528,1,1 ,20,18024,6937986,1044,0 ,17,923,122243,40,0 ,17,923,10083716,48,0 ,17,923,6413700,48,0 ,44,15152,1695108,64,0 ,17,923,9035140,40,0 ,27,1422,122248,28,8 ,15,3865,646536,1,1 ,27,295,122256,23,8 ,15,3866,646544,1,1 ,27,812,122264,23,8 ,15,3867,646552,1,1 ,27,11592,122272,23,8 ,15,3868,646560,1,1 ,27,11594,122280,27,8 ,15,3869,646568,1,1 ,27,1421,122288,26,8 ,15,3870,646576,1,1 ,27,11596,122296,24,8 ,15,3871,646584,1,1 ,27,1747,122304,22,8 ,15,3872,646592,1,1 ,20,21235,15850946,356,0 ,17,923,8510916,40,0 ,45,15153,4316612,48,0 ,45,15153,5365188,24,0 ,17,923,7986628,32,0 ,27,1062,122312,21,8 ,15,3873,646600,1,1 ,27,579,122320,23,8 ,15,3874,646608,1,1 ,27,579,122328,22,8 ,15,3875,646616,1,1 ,27,1034,122336,24,8 ,15,3876,646624,1,1 ,27,11598,122344,24,8 ,15,3877,646632,1,1 ,27,11599,122352,24,8 ,15,3878,646640,1,1 ,27,11611,122360,24,8 ,15,3879,646648,1,1 ,27,11609,122368,24,8 ,15,3880,646656,1,1 ,20,24524,23715330,420,0 ,45,15153,4840964,32,0 ,17,923,6938116,40,0 ,44,15152,2219524,64,0 ,27,11604,122376,22,8 ,15,3881,646664,1,1 ,27,11600,122384,24,8 ,15,3882,646672,1,1 ,27,11601,122392,23,8 ,15,3883,646680,1,1 ,27,11603,122400,24,8 ,15,3884,646688,1,1 ,20,17136,4840994,120,0 ,20,16960,4316706,256,0 ,27,3978,122408,20,8 ,15,3885,646696,1,1 ,27,11606,122416,21,8 ,15,3886,646704,1,1 ,27,11610,122424,26,8 ,15,3887,646712,1,1 ,27,11612,122432,24,8 ,15,3888,646720,1,1 ,17,923,9559620,24,0 ,17,923,7462468,24,0 ,44,15152,122436,24,0 ,44,15152,3792452,32,0 ,27,11613,122440,25,8 ,15,3889,646728,1,1 ,27,11613,122448,26,8 ,15,3890,646736,1,1 ,27,2182,122456,24,8 ,15,3891,646744,1,1 ,27,6648,122464,24,8 ,15,3892,646752,1,1 ,20,16350,3268194,280,0 ,27,4707,122472,24,8 ,15,3893,646760,1,1 ,27,11623,122480,24,8 ,15,3894,646768,1,1 ,27,4752,122488,24,8 ,15,3895,646776,1,1 ,27,5035,122496,26,8 ,15,3896,646784,1,1 ,20,25154,25288322,184,0 ,45,15153,5365380,64,0 ,44,15152,1171076,80,0 ,27,11629,122504,24,8 ,15,3897,646792,1,1 ,27,2182,122512,24,8 ,15,3898,646800,1,1 ,27,2182,122520,24,8 ,15,3899,646808,1,1 ,27,11633,122528,26,8 ,15,3900,646816,1,1 ,20,22992,20045474,120,0 ,27,2182,122536,24,8 ,15,3901,646824,1,1 ,27,2182,122544,24,8 ,15,3902,646832,1,1 ,27,41,122552,23,8 ,15,3903,646840,1,1 ,27,4482,122560,26,8 ,15,3904,646848,1,1 ,20,22705,19521218,220,0 ,17,923,122563,16,0 ,17,923,9035460,24,0 ,44,15152,2744004,24,0 ,17,923,7986884,32,0 ,27,2182,122568,24,8 ,15,3905,646856,1,1 ,27,4482,122576,26,8 ,15,3906,646864,1,1 ,27,4707,122584,24,8 ,15,3907,646872,1,1 ,27,4752,122592,24,8 ,15,3908,646880,1,1 ,27,2182,122600,24,8 ,15,3909,646888,1,1 ,27,2182,122608,24,8 ,15,3910,646896,1,1 ,27,4482,122616,26,8 ,15,3911,646904,1,1 ,27,11657,122624,24,8 ,15,3912,646912,1,1 ,17,923,10084100,24,0 ,17,923,7462660,40,0 ,17,923,6414084,32,0 ,44,15152,122628,24,0 ,45,15153,4841220,16,0 ,17,923,8511236,32,0 ,17,923,9559812,24,0 ,27,11653,122632,24,8 ,15,3913,646920,1,1 ,27,11654,122640,24,8 ,15,3914,646928,1,1 ,27,11655,122648,24,8 ,15,3915,646936,1,1 ,27,11012,122656,24,8 ,15,3916,646944,1,1 ,27,2182,122664,24,8 ,15,3917,646952,1,1 ,27,4768,122672,24,8 ,15,3918,646960,1,1 ,27,1062,122680,21,8 ,15,3919,646968,1,1 ,27,4752,122688,24,8 ,15,3920,646976,1,1 ,17,923,122691,24,0 ,45,15153,4316996,24,0 ,17,923,6938436,32,0 ,44,15152,3792708,48,0 ,27,41,122696,23,8 ,15,3921,646984,1,1 ,27,6144,122704,24,8 ,15,3922,646992,1,1 ,27,6142,122712,24,8 ,15,3923,647000,1,1 ,27,6145,122720,24,8 ,15,3924,647008,1,1 ,20,23327,20569954,348,0 ,27,6142,122728,24,8 ,15,3925,647016,1,1 ,27,11666,122736,24,8 ,15,3926,647024,1,1 ,27,178,122744,25,8 ,15,3927,647032,1,1 ,27,178,122752,26,8 ,15,3928,647040,1,1 ,17,923,9035652,24,0 ,44,15152,2744196,40,0 ,44,15152,1695620,88,0 ,45,15153,4841348,32,0 ,27,178,122760,24,8 ,15,3929,647048,1,1 ,27,178,122768,24,8 ,15,3930,647056,1,1 ,27,4752,122776,24,8 ,15,3931,647064,1,1 ,27,623,122784,26,8 ,15,3932,647072,1,1 ,27,11677,122792,24,8 ,15,3933,647080,1,1 ,27,11679,122800,24,8 ,15,3934,647088,1,1 ,27,1707,122808,22,8 ,15,3935,647096,1,1 ,27,3110,122816,22,8 ,15,3936,647104,1,1 ,20,26411,28958658,284,0 ,17,923,10084292,24,0 ,44,15152,122820,24,0 ,17,923,7987140,40,0 ,17,923,9560004,32,0 ,27,11681,122824,20,8 ,15,3937,647112,1,1 ,27,11680,122832,24,8 ,15,3938,647120,1,1 ,27,11680,122840,23,8 ,15,3939,647128,1,1 ,27,1296,122848,22,8 ,15,3940,647136,1,1 ,20,20249,12705762,12,0 ,27,11682,122856,24,8 ,15,3941,647144,1,1 ,27,1186,122864,24,8 ,15,3942,647152,1,1 ,27,1186,122872,24,8 ,15,3943,647160,1,1 ,27,1186,122880,26,8 ,15,3944,647168,1,1 ,20,19375,10084354,96,0 ,17,923,122883,16,0 ,17,923,8511492,32,0 ,17,923,6414340,24,0 ,44,15152,2220036,72,0 ,45,15153,4317188,24,0 ,27,1186,122888,24,8 ,15,3945,647176,1,1 ,27,1186,122896,24,8 ,15,3946,647184,1,1 ,27,11688,122904,21,8 ,15,3947,647192,1,1 ,27,11686,122912,22,8 ,15,3948,647200,1,1 ,27,11689,122920,24,8 ,15,3949,647208,1,1 ,27,1186,122928,24,8 ,15,3950,647216,1,1 ,27,316,122936,24,8 ,15,3951,647224,1,1 ,27,92,122944,26,8 ,15,3952,647232,1,1 ,20,20250,12705858,1008,0 ,17,923,9035844,24,0 ,17,923,7462980,40,0 ,17,923,6938692,32,0 ,27,3503,122952,25,8 ,15,3953,647240,1,1 ,27,344,122960,25,8 ,15,3954,647248,1,1 ,27,295,122968,23,8 ,15,3955,647256,1,1 ,27,11691,122976,25,8 ,15,3956,647264,1,1 ,27,295,122984,23,8 ,15,3957,647272,1,1 ,27,11695,122992,24,8 ,15,3958,647280,1,1 ,27,11696,123000,23,8 ,15,3959,647288,1,1 ,27,41,123008,23,8 ,15,3960,647296,1,1 ,17,923,123011,16,0 ,17,923,10084484,16,0 ,44,15152,123012,56,0 ,45,15153,4841604,32,0 ,45,15153,5365892,208,0 ,27,812,123016,23,8 ,15,3961,647304,1,1 ,27,295,123024,23,8 ,15,3962,647312,1,1 ,27,812,123032,23,8 ,15,3963,647320,1,1 ,27,295,123040,23,8 ,15,3964,647328,1,1 ,27,812,123048,23,8 ,15,3965,647336,1,1 ,27,11709,123056,24,8 ,15,3966,647344,1,1 ,27,11704,123064,23,8 ,15,3967,647352,1,1 ,27,11705,123072,24,8 ,15,3968,647360,1,1 ,20,24173,22667458,156,0 ,20,24908,24764610,88,0 ,20,18209,7463106,12,0 ,17,923,9560260,32,0 ,17,923,6414532,32,0 ,44,15152,2744516,24,0 ,44,15152,3793092,32,0 ,45,15153,4317380,24,0 ,27,11710,123080,24,8 ,15,3969,647368,1,1 ,27,11714,123088,24,8 ,15,3970,647376,1,1 ,27,11711,123096,23,8 ,15,3971,647384,1,1 ,27,11710,123104,24,8 ,15,3972,647392,1,1 ,27,295,123112,23,8 ,15,3973,647400,1,1 ,27,11718,123120,26,8 ,15,3974,647408,1,1 ,27,812,123128,23,8 ,15,3975,647416,1,1 ,27,295,123136,23,8 ,15,3976,647424,1,1 ,20,25505,26337538,248,0 ,17,923,123139,16,0 ,17,923,10084612,24,0 ,44,15152,1171716,128,0 ,17,923,7987460,24,0 ,17,923,8511748,32,0 ,17,923,9036036,40,0 ,27,295,123144,26,8 ,15,3977,647432,1,1 ,27,3205,123152,24,8 ,15,3978,647440,1,1 ,27,11721,123160,24,8 ,15,3979,647448,1,1 ,27,812,123168,23,8 ,15,3980,647456,1,1 ,20,18210,7463202,12,0 ,27,295,123176,23,8 ,15,3981,647464,1,1 ,27,295,123184,23,8 ,15,3982,647472,1,1 ,27,295,123192,25,8 ,15,3983,647480,1,1 ,27,295,123200,23,8 ,15,3984,647488,1,1 ,17,923,6938948,112,0 ,27,295,123208,23,8 ,15,3985,647496,1,1 ,27,11724,123216,26,8 ,15,3986,647504,1,1 ,27,295,123224,23,8 ,15,3987,647512,1,1 ,27,295,123232,26,8 ,15,3988,647520,1,1 ,27,41,123240,25,8 ,15,3989,647528,1,1 ,27,812,123248,26,8 ,15,3990,647536,1,1 ,27,41,123256,23,8 ,15,3991,647544,1,1 ,27,1552,123264,25,8 ,15,3992,647552,1,1 ,20,18211,7463298,96,0 ,17,923,123267,16,0 ,45,15153,4841860,32,0 ,17,923,7463300,48,0 ,44,15152,2744708,64,0 ,45,15153,4317572,16,0 ,27,11734,123272,25,8 ,15,3993,647560,1,1 ,27,41,123280,23,8 ,15,3994,647568,1,1 ,27,11736,123288,25,8 ,15,3995,647576,1,1 ,27,41,123296,23,8 ,15,3996,647584,1,1 ,27,41,123304,23,8 ,15,3997,647592,1,1 ,27,11739,123312,25,8 ,15,3998,647600,1,1 ,27,41,123320,23,8 ,15,3999,647608,1,1 ,27,11740,123328,25,8 ,15,4000,647616,1,1 ,20,20750,13754818,88,0 ,20,17754,6414786,512,0 ,17,923,10084804,32,0 ,17,923,6414788,24,0 ,44,15152,3793348,24,0 ,17,923,7987652,24,0 ,17,923,9560516,32,0 ,27,41,123336,23,8 ,15,4001,647624,1,1 ,27,11741,123344,25,8 ,15,4002,647632,1,1 ,27,11758,123352,24,8 ,15,4003,647640,1,1 ,27,11745,123360,23,8 ,15,4004,647648,1,1 ,20,17137,4841954,340,0 ,27,11746,123368,25,8 ,15,4005,647656,1,1 ,27,11747,123376,24,8 ,15,4006,647664,1,1 ,27,11748,123384,24,8 ,15,4007,647672,1,1 ,27,11749,123392,24,8 ,15,4008,647680,1,1 ,17,923,123395,24,0 ,17,923,8512004,96,0 ,45,15153,4317700,48,0 ,27,11751,123400,26,8 ,15,4009,647688,1,1 ,27,11752,123408,24,8 ,15,4010,647696,1,1 ,27,11753,123416,24,8 ,15,4011,647704,1,1 ,27,11754,123424,24,8 ,15,4012,647712,1,1 ,20,24718,24240674,2796,0 ,27,11755,123432,22,8 ,15,4013,647720,1,1 ,27,11756,123440,24,8 ,15,4014,647728,1,1 ,27,11763,123448,24,8 ,15,4015,647736,1,1 ,27,11760,123456,26,8 ,15,4016,647744,1,1 ,20,15798,1696322,208,0 ,17,923,9036356,40,0 ,44,15152,2220612,64,0 ,44,15152,1696324,24,0 ,44,15152,123460,72,0 ,27,11761,123464,24,8 ,15,4017,647752,1,1 ,27,1552,123472,23,8 ,15,4018,647760,1,1 ,27,11762,123480,26,8 ,15,4019,647768,1,1 ,27,11764,123488,24,8 ,15,4020,647776,1,1 ,20,22993,20046434,60,0 ,20,26292,28435042,544,0 ,27,11766,123496,26,8 ,15,4021,647784,1,1 ,27,41,123504,23,8 ,15,4022,647792,1,1 ,27,41,123512,23,8 ,15,4023,647800,1,1 ,27,11767,123520,27,8 ,15,4024,647808,1,1 ,20,23951,22143618,64,0 ,17,923,7987844,32,0 ,17,923,6414980,24,0 ,44,15152,3269252,24,0 ,44,15152,3793540,144,0 ,45,15153,4842116,32,0 ,27,41,123528,23,8 ,15,4025,647816,1,1 ,27,41,123536,23,8 ,15,4026,647824,1,1 ,27,41,123544,23,8 ,15,4027,647832,1,1 ,27,11770,123552,25,8 ,15,4028,647840,1,1 ,27,11772,123560,25,8 ,15,4029,647848,1,1 ,27,344,123568,25,8 ,15,4030,647856,1,1 ,27,11773,123576,25,8 ,15,4031,647864,1,1 ,27,41,123584,23,8 ,15,4032,647872,1,1 ,20,15366,647874,352,0 ,17,923,123587,40,0 ,17,923,10085060,56,0 ,17,923,9560772,24,0 ,27,1078,123592,24,8 ,15,4033,647880,1,1 ,27,11774,123600,25,8 ,15,4034,647888,1,1 ,27,41,123608,23,8 ,15,4035,647896,1,1 ,27,1078,123616,24,8 ,15,4036,647904,1,1 ,20,24354,23192290,144,0 ,20,25922,27386594,68,0 ,27,11775,123624,25,8 ,15,4037,647912,1,1 ,27,41,123632,23,8 ,15,4038,647920,1,1 ,27,11776,123640,25,8 ,15,4039,647928,1,1 ,27,41,123648,23,8 ,15,4040,647936,1,1 ,20,19376,10085122,204,0 ,20,26122,27910914,572,0 ,44,15152,1696516,32,0 ,17,923,7463684,48,0 ,27,2669,123656,24,8 ,15,4041,647944,1,1 ,27,11778,123664,22,8 ,15,4042,647952,1,1 ,27,11780,123672,22,8 ,15,4043,647960,1,1 ,27,11782,123680,22,8 ,15,4044,647968,1,1 ,27,11784,123688,22,8 ,15,4045,647976,1,1 ,27,11786,123696,22,8 ,15,4046,647984,1,1 ,27,11788,123704,22,8 ,15,4047,647992,1,1 ,27,11790,123712,22,8 ,15,4048,648000,1,1 ,44,15152,3269444,136,0 ,17,923,6415172,24,0 ,27,11792,123720,22,8 ,15,4049,648008,1,1 ,27,11794,123728,21,8 ,15,4050,648016,1,1 ,27,11795,123736,21,8 ,15,4051,648024,1,1 ,27,11796,123744,21,8 ,15,4052,648032,1,1 ,27,11797,123752,21,8 ,15,4053,648040,1,1 ,27,11798,123760,21,8 ,15,4054,648048,1,1 ,27,11799,123768,21,8 ,15,4055,648056,1,1 ,27,11800,123776,21,8 ,15,4056,648064,1,1 ,20,17520,5890946,12,0 ,20,24909,24765314,96,0 ,17,923,9560964,32,0 ,44,15152,2745220,48,0 ,45,15153,4318084,24,0 ,45,15153,4842372,16,0 ,17,923,7988100,40,0 ,17,923,9036676,40,0 ,27,11801,123784,21,8 ,15,4057,648072,1,1 ,27,11804,123792,22,8 ,15,4058,648080,1,1 ,27,11806,123800,22,8 ,15,4059,648088,1,1 ,27,11823,123808,24,8 ,15,4060,648096,1,1 ,27,11822,123816,24,8 ,15,4061,648104,1,1 ,27,41,123824,23,8 ,15,4062,648112,1,1 ,27,11811,123832,26,8 ,15,4063,648120,1,1 ,27,11813,123840,26,8 ,15,4064,648128,1,1 ,27,8766,123848,26,8 ,15,4065,648136,1,1 ,27,2669,123856,26,8 ,15,4066,648144,1,1 ,27,11815,123864,26,8 ,15,4067,648152,1,1 ,27,11817,123872,26,8 ,15,4068,648160,1,1 ,20,17521,5891042,12,0 ,27,11819,123880,26,8 ,15,4069,648168,1,1 ,27,2881,123888,26,8 ,15,4070,648176,1,1 ,27,11815,123896,24,8 ,15,4071,648184,1,1 ,27,11824,123904,24,8 ,15,4072,648192,1,1 ,17,923,123907,24,0 ,45,15153,4842500,32,0 ,17,923,6415364,24,0 ,44,15152,1696772,24,0 ,44,15152,648196,24,0 ,27,11825,123912,24,8 ,15,4073,648200,1,1 ,27,11826,123920,24,8 ,15,4074,648208,1,1 ,27,11819,123928,26,8 ,15,4075,648216,1,1 ,27,11827,123936,24,8 ,15,4076,648224,1,1 ,27,8766,123944,24,8 ,15,4077,648232,1,1 ,27,2881,123952,26,8 ,15,4078,648240,1,1 ,27,11813,123960,24,8 ,15,4079,648248,1,1 ,27,41,123968,23,8 ,15,4080,648256,1,1 ,20,22994,20046914,132,0 ,20,25155,25289794,640,0 ,20,17522,5891138,12,0 ,45,15153,4318276,40,0 ,44,15152,2221124,64,0 ,27,11828,123976,21,8 ,15,4081,648264,1,1 ,27,11817,123984,26,8 ,15,4082,648272,1,1 ,27,11829,123992,21,8 ,15,4083,648280,1,1 ,27,11811,124000,26,8 ,15,4084,648288,1,1 ,27,11830,124008,24,8 ,15,4085,648296,1,1 ,27,41,124016,24,8 ,15,4086,648304,1,1 ,27,41,124024,23,8 ,15,4087,648312,1,1 ,27,11834,124032,24,8 ,15,4088,648320,1,1 ,20,23952,22144130,88,0 ,20,18212,7464066,268,0 ,20,20751,13755522,1464,0 ,17,923,10085508,56,0 ,17,923,7464068,48,0 ,44,15152,124036,24,0 ,17,923,9561220,16,0 ,27,41,124040,23,8 ,15,4089,648328,1,1 ,27,11839,124048,22,8 ,15,4090,648336,1,1 ,27,11841,124056,23,8 ,15,4091,648344,1,1 ,27,11842,124064,21,8 ,15,4092,648352,1,1 ,20,23708,21619874,168,0 ,20,17523,5891234,56,0 ,27,41,124072,23,8 ,15,4093,648360,1,1 ,27,4752,124080,24,8 ,15,4094,648368,1,1 ,27,11855,124088,25,8 ,15,4095,648376,1,1 ,27,344,124096,25,8 ,15,4096,648384,1,1 ,17,923,124099,32,0 ,17,923,9036996,32,0 ,17,923,6939844,152,0 ,17,923,6415556,16,0 ,44,15152,1696964,272,0 ,44,15152,648388,32,0 ,17,923,7988420,40,0 ,27,11855,124104,25,8 ,15,4097,648392,1,1 ,27,41,124112,23,8 ,15,4098,648400,1,1 ,27,11855,124120,25,8 ,15,4099,648408,1,1 ,27,11861,124128,25,8 ,15,4100,648416,1,1 ,27,41,124136,23,8 ,15,4101,648424,1,1 ,27,11863,124144,23,8 ,15,4102,648432,1,1 ,27,41,124152,23,8 ,15,4103,648440,1,1 ,27,11908,124160,24,8 ,15,4104,648448,1,1 ,20,25923,27387138,68,0 ,17,923,9561348,16,0 ,44,15152,2745604,16,0 ,44,15152,1172740,32,0 ,45,15153,4842756,32,0 ,17,923,8512772,160,0 ,27,11870,124168,22,8 ,15,4105,648456,1,1 ,27,11872,124176,22,8 ,15,4106,648464,1,1 ,27,11874,124184,22,8 ,15,4107,648472,1,1 ,27,11876,124192,22,8 ,15,4108,648480,1,1 ,27,11878,124200,22,8 ,15,4109,648488,1,1 ,27,11880,124208,21,8 ,15,4110,648496,1,1 ,27,11881,124216,21,8 ,15,4111,648504,1,1 ,27,11882,124224,21,8 ,15,4112,648512,1,1 ,44,15152,124228,48,0 ,17,923,6415684,40,0 ,27,11883,124232,21,8 ,15,4113,648520,1,1 ,27,11884,124240,21,8 ,15,4114,648528,1,1 ,27,41,124248,23,8 ,15,4115,648536,1,1 ,27,11889,124256,26,8 ,15,4116,648544,1,1 ,20,16154,2745698,12,0 ,27,11890,124264,24,8 ,15,4117,648552,1,1 ,27,11891,124272,24,8 ,15,4118,648560,1,1 ,27,11892,124280,24,8 ,15,4119,648568,1,1 ,27,11898,124288,24,8 ,15,4120,648576,1,1 ,17,923,9561476,24,0 ,44,15152,2745732,24,0 ,45,15153,4318596,16,0 ,27,41,124296,23,8 ,15,4121,648584,1,1 ,27,11890,124304,24,8 ,15,4122,648592,1,1 ,27,11895,124312,24,8 ,15,4123,648600,1,1 ,27,11896,124320,24,8 ,15,4124,648608,1,1 ,20,24174,22668706,12,0 ,20,22706,19522978,632,0 ,27,2316,124328,26,8 ,15,4125,648616,1,1 ,27,11901,124336,25,8 ,15,4126,648624,1,1 ,27,11902,124344,24,8 ,15,4127,648632,1,1 ,27,11903,124352,24,8 ,15,4128,648640,1,1 ,20,16155,2745794,136,0 ,17,923,124355,24,0 ,17,923,9037252,32,0 ,44,15152,648644,24,0 ,27,11904,124360,24,8 ,15,4129,648648,1,1 ,27,11905,124368,24,8 ,15,4130,648656,1,1 ,27,11906,124376,23,8 ,15,4131,648664,1,1 ,27,11895,124384,26,8 ,15,4132,648672,1,1 ,27,11909,124392,24,8 ,15,4133,648680,1,1 ,27,11910,124400,23,8 ,15,4134,648688,1,1 ,27,41,124408,23,8 ,15,4135,648696,1,1 ,27,41,124416,23,8 ,15,4136,648704,1,1 ,20,24175,22668802,108,0 ,17,923,7988740,24,0 ,17,923,7464452,24,0 ,44,15152,1172996,32,0 ,45,15153,4318724,32,0 ,45,15153,4843012,32,0 ,27,41,124424,23,8 ,15,4137,648712,1,1 ,27,1081,124432,26,8 ,15,4138,648720,1,1 ,27,2781,124440,21,8 ,15,4139,648728,1,1 ,27,2777,124448,22,8 ,15,4140,648736,1,1 ,20,16961,4318754,48,0 ,27,41,124456,23,8 ,15,4141,648744,1,1 ,27,11914,124464,24,8 ,15,4142,648752,1,1 ,27,11915,124472,24,8 ,15,4143,648760,1,1 ,27,11916,124480,24,8 ,15,4144,648768,1,1 ,17,923,10085956,40,0 ,44,15152,2745924,88,0 ,44,15152,2221636,56,0 ,17,923,9561668,24,0 ,27,41,124488,23,8 ,15,4145,648776,1,1 ,27,41,124496,25,8 ,15,4146,648784,1,1 ,27,4390,124504,24,8 ,15,4147,648792,1,1 ,27,4390,124512,24,8 ,15,4148,648800,1,1 ,20,23596,21096034,1436,0 ,20,17524,5891682,64,0 ,20,21821,16901730,364,0 ,27,1078,124520,26,8 ,15,4149,648808,1,1 ,27,10431,124528,22,8 ,15,4150,648816,1,1 ,27,11919,124536,24,8 ,15,4151,648824,1,1 ,27,1799,124544,22,8 ,15,4152,648832,1,1 ,20,24910,24766082,136,0 ,17,923,124547,16,0 ,44,15152,648836,272,0 ,17,923,6416004,24,0 ,27,11924,124552,22,8 ,15,4153,648840,1,1 ,27,11921,124560,23,8 ,15,4154,648848,1,1 ,27,11922,124568,23,8 ,15,4155,648856,1,1 ,27,11925,124576,25,8 ,15,4156,648864,1,1 ,27,1107,124584,24,8 ,15,4157,648872,1,1 ,27,1100,124592,26,8 ,15,4158,648880,1,1 ,27,11940,124600,24,8 ,15,4159,648888,1,1 ,27,11927,124608,24,8 ,15,4160,648896,1,1 ,17,923,9037508,40,0 ,17,923,7464644,32,0 ,44,15152,124612,72,0 ,17,923,7988932,32,0 ,27,11928,124616,22,8 ,15,4161,648904,1,1 ,27,11929,124624,24,8 ,15,4162,648912,1,1 ,27,11930,124632,21,8 ,15,4163,648920,1,1 ,27,11931,124640,22,8 ,15,4164,648928,1,1 ,27,11934,124648,22,8 ,15,4165,648936,1,1 ,27,11932,124656,22,8 ,15,4166,648944,1,1 ,27,11933,124664,22,8 ,15,4167,648952,1,1 ,27,1218,124672,21,8 ,15,4168,648960,1,1 ,17,923,124675,32,0 ,17,923,9561860,48,0 ,44,15152,1173252,40,0 ,44,15152,3794692,24,0 ,45,15153,4318980,16,0 ,45,15153,4843268,32,0 ,45,15153,5367556,16,0 ,27,11935,124680,23,8 ,15,4169,648968,1,1 ,27,11937,124688,22,8 ,15,4170,648976,1,1 ,27,11938,124696,23,8 ,15,4171,648984,1,1 ,27,11941,124704,22,8 ,15,4172,648992,1,1 ,20,16351,3270434,208,0 ,20,25924,27387682,328,0 ,27,11942,124712,22,8 ,15,4173,649000,1,1 ,27,11943,124720,24,8 ,15,4174,649008,1,1 ,27,1100,124728,22,8 ,15,4175,649016,1,1 ,27,11951,124736,23,8 ,15,4176,649024,1,1 ,20,23953,22144834,120,0 ,20,19976,11134786,308,0 ,17,923,6416196,24,0 ,27,11946,124744,24,8 ,15,4177,649032,1,1 ,27,11947,124752,24,8 ,15,4178,649040,1,1 ,27,11948,124760,23,8 ,15,4179,649048,1,1 ,27,11949,124768,23,8 ,15,4180,649056,1,1 ,20,24355,23193442,184,0 ,27,11952,124776,22,8 ,15,4181,649064,1,1 ,27,11962,124784,23,8 ,15,4182,649072,1,1 ,27,11954,124792,24,8 ,15,4183,649080,1,1 ,27,11955,124800,24,8 ,15,4184,649088,1,1 ,17,923,10086276,40,0 ,44,15152,3270532,72,0 ,45,15153,4319108,32,0 ,45,15153,5367684,24,0 ,27,11956,124808,24,8 ,15,4185,649096,1,1 ,27,11957,124816,24,8 ,15,4186,649104,1,1 ,27,11958,124824,24,8 ,15,4187,649112,1,1 ,27,11959,124832,24,8 ,15,4188,649120,1,1 ,20,20538,13232034,160,0 ,20,16962,4319138,52,0 ,27,11960,124840,24,8 ,15,4189,649128,1,1 ,27,11963,124848,24,8 ,15,4190,649136,1,1 ,27,11964,124856,24,8 ,15,4191,649144,1,1 ,27,1100,124864,26,8 ,15,4192,649152,1,1 ,17,923,7989188,32,0 ,17,923,7464900,32,0 ,44,15152,3794884,32,0 ,27,1731,124872,24,8 ,15,4193,649160,1,1 ,27,1730,124880,22,8 ,15,4194,649168,1,1 ,27,10431,124888,22,8 ,15,4195,649176,1,1 ,27,1200,124896,24,8 ,15,4196,649184,1,1 ,27,809,124904,23,8 ,15,4197,649192,1,1 ,27,1938,124912,24,8 ,15,4198,649200,1,1 ,27,11980,124920,21,8 ,15,4199,649208,1,1 ,27,11968,124928,26,8 ,15,4200,649216,1,1 ,17,923,124931,24,0 ,17,923,9037828,24,0 ,17,923,6416388,24,0 ,44,15152,2222084,72,0 ,45,15153,4843524,32,0 ,27,11968,124936,24,8 ,15,4201,649224,1,1 ,27,7606,124944,22,8 ,15,4202,649232,1,1 ,27,11973,124952,24,8 ,15,4203,649240,1,1 ,27,11976,124960,25,8 ,15,4204,649248,1,1 ,27,11977,124968,24,8 ,15,4205,649256,1,1 ,27,11978,124976,24,8 ,15,4206,649264,1,1 ,27,3978,124984,21,8 ,15,4207,649272,1,1 ,27,11984,124992,21,8 ,15,4208,649280,1,1 ,45,15153,5367876,24,0 ,44,15152,1173572,32,0 ,27,1634,125000,24,8 ,15,4209,649288,1,1 ,27,11988,125008,19,8 ,15,4210,649296,1,1 ,27,11989,125016,24,8 ,15,4211,649304,1,1 ,27,11990,125024,24,8 ,15,4212,649312,1,1 ,20,22995,20047970,132,0 ,20,17525,5892194,204,0 ,27,10455,125032,24,8 ,15,4213,649320,1,1 ,27,573,125040,21,8 ,15,4214,649328,1,1 ,27,11991,125048,19,8 ,15,4215,649336,1,1 ,27,11992,125056,20,8 ,15,4216,649344,1,1 ,17,923,9562244,32,0 ,45,15153,4319364,16,0 ,27,812,125064,23,8 ,15,4217,649352,1,1 ,27,812,125072,23,8 ,15,4218,649360,1,1 ,27,812,125080,24,8 ,15,4219,649368,1,1 ,27,812,125088,24,8 ,15,4220,649376,1,1 ,20,26412,28960930,148,0 ,27,812,125096,25,8 ,15,4221,649384,1,1 ,27,11998,125104,27,8 ,15,4222,649392,1,1 ,27,812,125112,24,8 ,15,4223,649400,1,1 ,27,812,125120,24,8 ,15,4224,649408,1,1 ,20,15799,1697986,84,0 ,20,25506,26339522,308,0 ,17,923,125123,56,0 ,17,923,10086596,56,0 ,17,923,7465156,32,0 ,17,923,6416580,16,0 ,44,15152,3795140,176,0 ,17,923,7989444,24,0 ,17,923,9038020,24,0 ,27,812,125128,25,8 ,15,4225,649416,1,1 ,27,812,125136,26,8 ,15,4226,649424,1,1 ,27,9546,125144,24,8 ,15,4227,649432,1,1 ,27,9546,125152,24,8 ,15,4228,649440,1,1 ,20,21236,15853794,192,0 ,27,9528,125160,27,8 ,15,4229,649448,1,1 ,27,12003,125168,27,8 ,15,4230,649456,1,1 ,27,433,125176,24,8 ,15,4231,649464,1,1 ,27,433,125184,24,8 ,15,4232,649472,1,1 ,45,15153,5368068,56,0 ,44,15152,2746628,32,0 ,44,15152,125188,56,0 ,45,15153,4319492,16,0 ,45,15153,4843780,32,0 ,27,12006,125192,24,8 ,15,4233,649480,1,1 ,27,12008,125200,26,8 ,15,4234,649488,1,1 ,27,12008,125208,27,8 ,15,4235,649496,1,1 ,27,1207,125216,27,8 ,15,4236,649504,1,1 ,27,12011,125224,25,8 ,15,4237,649512,1,1 ,27,12011,125232,27,8 ,15,4238,649520,1,1 ,27,12013,125240,24,8 ,15,4239,649528,1,1 ,27,12013,125248,27,8 ,15,4240,649536,1,1 ,20,22281,18475330,72,0 ,20,16963,4319554,12,0 ,44,15152,1173828,24,0 ,17,923,6416708,24,0 ,27,12015,125256,24,8 ,15,4241,649544,1,1 ,27,12015,125264,27,8 ,15,4242,649552,1,1 ,27,9564,125272,27,8 ,15,4243,649560,1,1 ,27,9564,125280,24,8 ,15,4244,649568,1,1 ,20,24176,22669666,208,0 ,20,19377,10086754,100,0 ,27,12019,125288,27,8 ,15,4245,649576,1,1 ,27,12020,125296,24,8 ,15,4246,649584,1,1 ,27,12020,125304,27,8 ,15,4247,649592,1,1 ,27,12023,125312,27,8 ,15,4248,649600,1,1 ,17,923,9562500,40,0 ,17,923,6941060,144,0 ,45,15153,4319620,16,0 ,17,923,7989636,32,0 ,17,923,9038212,32,0 ,27,12023,125320,24,8 ,15,4249,649608,1,1 ,27,1271,125328,26,8 ,15,4250,649616,1,1 ,27,1287,125336,24,8 ,15,4251,649624,1,1 ,27,1272,125344,26,8 ,15,4252,649632,1,1 ,20,16964,4319650,12,0 ,27,1268,125352,26,8 ,15,4253,649640,1,1 ,27,9552,125360,27,8 ,15,4254,649648,1,1 ,27,9552,125368,27,8 ,15,4255,649656,1,1 ,27,155,125376,26,8 ,15,4256,649664,1,1 ,44,15152,3271108,24,0 ,17,923,7465412,24,0 ,27,155,125384,26,8 ,15,4257,649672,1,1 ,27,1210,125392,24,8 ,15,4258,649680,1,1 ,27,536,125400,24,8 ,15,4259,649688,1,1 ,27,536,125408,24,8 ,15,4260,649696,1,1 ,20,23709,21621218,124,0 ,27,328,125416,24,8 ,15,4261,649704,1,1 ,27,328,125424,23,8 ,15,4262,649712,1,1 ,27,12029,125432,26,8 ,15,4263,649720,1,1 ,27,1205,125440,24,8 ,15,4264,649728,1,1 ,20,16965,4319746,12,0 ,20,16156,2746882,484,0 ,17,923,8514052,56,0 ,17,923,6416900,40,0 ,44,15152,2746884,40,0 ,44,15152,1174020,24,0 ,45,15153,4319748,16,0 ,45,15153,4844036,32,0 ,27,5061,125448,27,8 ,15,4265,649736,1,1 ,27,5061,125456,27,8 ,15,4266,649744,1,1 ,27,5061,125464,27,8 ,15,4267,649752,1,1 ,27,5061,125472,27,8 ,15,4268,649760,1,1 ,27,1307,125480,24,8 ,15,4269,649768,1,1 ,27,8142,125488,24,8 ,15,4270,649776,1,1 ,27,1969,125496,24,8 ,15,4271,649784,1,1 ,27,12032,125504,27,8 ,15,4272,649792,1,1 ,20,23328,20572738,56,0 ,44,15152,2222660,32,0 ,27,12032,125512,27,8 ,15,4273,649800,1,1 ,27,344,125520,25,8 ,15,4274,649808,1,1 ,27,344,125528,25,8 ,15,4275,649816,1,1 ,27,344,125536,25,8 ,15,4276,649824,1,1 ,20,16966,4319842,12,0 ,27,344,125544,25,8 ,15,4277,649832,1,1 ,27,344,125552,25,8 ,15,4278,649840,1,1 ,27,344,125560,25,8 ,15,4279,649848,1,1 ,27,344,125568,25,8 ,15,4280,649856,1,1 ,17,923,125571,16,0 ,17,923,10087044,56,0 ,17,923,7465604,48,0 ,44,15152,3271300,48,0 ,45,15153,4319876,24,0 ,17,923,7989892,24,0 ,17,923,9038468,32,0 ,27,344,125576,25,8 ,15,4281,649864,1,1 ,27,344,125584,25,8 ,15,4282,649872,1,1 ,27,344,125592,23,8 ,15,4283,649880,1,1 ,27,344,125600,23,8 ,15,4284,649888,1,1 ,27,344,125608,23,8 ,15,4285,649896,1,1 ,27,344,125616,25,8 ,15,4286,649904,1,1 ,27,344,125624,25,8 ,15,4287,649912,1,1 ,27,344,125632,25,8 ,15,4288,649920,1,1 ,20,16967,4319938,12,0 ,20,24911,24767170,120,0 ,17,923,9562820,32,0 ,44,15152,125636,72,0 ,44,15152,1174212,56,0 ,45,15153,5368516,112,0 ,27,344,125640,25,8 ,15,4289,649928,1,1 ,27,344,125648,25,8 ,15,4290,649936,1,1 ,27,344,125656,25,8 ,15,4291,649944,1,1 ,27,344,125664,25,8 ,15,4292,649952,1,1 ,27,344,125672,25,8 ,15,4293,649960,1,1 ,27,344,125680,25,8 ,15,4294,649968,1,1 ,27,344,125688,25,8 ,15,4295,649976,1,1 ,27,344,125696,25,8 ,15,4296,649984,1,1 ,20,23954,22145794,300,0 ,17,923,125699,32,0 ,45,15153,4844292,32,0 ,27,344,125704,25,8 ,15,4297,649992,1,1 ,27,344,125712,25,8 ,15,4298,650000,1,1 ,27,344,125720,25,8 ,15,4299,650008,1,1 ,27,344,125728,25,8 ,15,4300,650016,1,1 ,20,24525,23718690,420,0 ,20,16696,3795746,12,0 ,20,16968,4320034,148,0 ,27,344,125736,25,8 ,15,4301,650024,1,1 ,27,12055,125744,26,8 ,15,4302,650032,1,1 ,27,12056,125752,26,8 ,15,4303,650040,1,1 ,27,344,125760,26,8 ,15,4304,650048,1,1 ,17,923,7990084,32,0 ,17,923,6417220,24,0 ,44,15152,2747204,24,0 ,44,15152,2222916,72,0 ,45,15153,4320068,16,0 ,27,12058,125768,26,8 ,15,4305,650056,1,1 ,27,163,125776,24,8 ,15,4306,650064,1,1 ,27,163,125784,24,8 ,15,4307,650072,1,1 ,27,344,125792,25,8 ,15,4308,650080,1,1 ,20,15800,1698658,84,0 ,27,344,125800,25,8 ,15,4309,650088,1,1 ,27,344,125808,25,8 ,15,4310,650096,1,1 ,27,344,125816,25,8 ,15,4311,650104,1,1 ,27,344,125824,25,8 ,15,4312,650112,1,1 ,20,22282,18475906,308,0 ,20,16697,3795842,12,0 ,17,923,9038724,24,0 ,27,344,125832,25,8 ,15,4313,650120,1,1 ,27,344,125840,25,8 ,15,4314,650128,1,1 ,27,344,125848,25,8 ,15,4315,650136,1,1 ,27,344,125856,25,8 ,15,4316,650144,1,1 ,27,344,125864,25,8 ,15,4317,650152,1,1 ,27,344,125872,25,8 ,15,4318,650160,1,1 ,27,344,125880,25,8 ,15,4319,650168,1,1 ,27,344,125888,25,8 ,15,4320,650176,1,1 ,17,923,9563076,32,0 ,45,15153,4320196,56,0 ,17,923,8514500,56,0 ,27,344,125896,25,8 ,15,4321,650184,1,1 ,27,344,125904,25,8 ,15,4322,650192,1,1 ,27,12069,125912,24,8 ,15,4323,650200,1,1 ,27,344,125920,23,8 ,15,4324,650208,1,1 ,20,16698,3795938,204,0 ,27,344,125928,23,8 ,15,4325,650216,1,1 ,27,344,125936,23,8 ,15,4326,650224,1,1 ,27,344,125944,25,8 ,15,4327,650232,1,1 ,27,344,125952,25,8 ,15,4328,650240,1,1 ,20,23329,20573186,24,0 ,17,923,125955,24,0 ,45,15153,4844548,32,0 ,17,923,7465988,24,0 ,17,923,6417412,56,0 ,44,15152,2747396,24,0 ,44,15152,3271684,24,0 ,27,344,125960,25,8 ,15,4329,650248,1,1 ,27,344,125968,25,8 ,15,4330,650256,1,1 ,27,344,125976,25,8 ,15,4331,650264,1,1 ,27,344,125984,25,8 ,15,4332,650272,1,1 ,27,344,125992,25,8 ,15,4333,650280,1,1 ,27,344,126000,25,8 ,15,4334,650288,1,1 ,27,344,126008,25,8 ,15,4335,650296,1,1 ,27,12095,126016,26,8 ,15,4336,650304,1,1 ,17,923,10087492,40,0 ,17,923,7990340,40,0 ,17,923,9038916,24,0 ,27,12096,126024,26,8 ,15,4337,650312,1,1 ,27,803,126032,26,8 ,15,4338,650320,1,1 ,27,344,126040,25,8 ,15,4339,650328,1,1 ,27,344,126048,25,8 ,15,4340,650336,1,1 ,27,344,126056,25,8 ,15,4341,650344,1,1 ,27,344,126064,25,8 ,15,4342,650352,1,1 ,27,344,126072,25,8 ,15,4343,650360,1,1 ,27,344,126080,24,8 ,15,4344,650368,1,1 ,20,22996,20049026,144,0 ,20,17138,4844674,64,0 ,20,19378,10087554,176,0 ,44,15152,1174660,24,0 ,27,344,126088,25,8 ,15,4345,650376,1,1 ,27,344,126096,24,8 ,15,4346,650384,1,1 ,27,344,126104,25,8 ,15,4347,650392,1,1 ,27,344,126112,25,8 ,15,4348,650400,1,1 ,20,20539,13233314,304,0 ,27,344,126120,25,8 ,15,4349,650408,1,1 ,27,344,126128,25,8 ,15,4350,650416,1,1 ,27,344,126136,25,8 ,15,4351,650424,1,1 ,27,344,126144,25,8 ,15,4352,650432,1,1 ,20,23330,20573378,24,0 ,20,22033,17951938,12,0 ,17,923,126147,32,0 ,17,923,9563332,24,0 ,17,923,7466180,48,0 ,44,15152,2747588,32,0 ,44,15152,3271876,72,0 ,27,344,126152,25,8 ,15,4353,650440,1,1 ,27,344,126160,25,8 ,15,4354,650448,1,1 ,27,344,126168,25,8 ,15,4355,650456,1,1 ,27,344,126176,25,8 ,15,4356,650464,1,1 ,20,18213,7466210,52,0 ,27,344,126184,25,8 ,15,4357,650472,1,1 ,27,344,126192,23,8 ,15,4358,650480,1,1 ,27,344,126200,23,8 ,15,4359,650488,1,1 ,27,344,126208,25,8 ,15,4360,650496,1,1 ,17,923,9039108,40,0 ,44,15152,126212,24,0 ,45,15153,4844804,32,0 ,27,344,126216,25,8 ,15,4361,650504,1,1 ,27,344,126224,23,8 ,15,4362,650512,1,1 ,27,344,126232,25,8 ,15,4363,650520,1,1 ,27,344,126240,25,8 ,15,4364,650528,1,1 ,20,24356,23194914,284,0 ,20,18661,8514850,12,0 ,20,22034,17952034,48,0 ,27,344,126248,25,8 ,15,4365,650536,1,1 ,27,344,126256,23,8 ,15,4366,650544,1,1 ,27,344,126264,23,8 ,15,4367,650552,1,1 ,27,12172,126272,26,8 ,15,4368,650560,1,1 ,20,26413,28962114,2868,0 ,44,15152,1174852,64,0 ,44,15152,1699140,32,0 ,27,344,126280,25,8 ,15,4369,650568,1,1 ,27,344,126288,23,8 ,15,4370,650576,1,1 ,27,344,126296,25,8 ,15,4371,650584,1,1 ,27,344,126304,23,8 ,15,4372,650592,1,1 ,20,15220,126306,256,0 ,27,344,126312,23,8 ,15,4373,650600,1,1 ,27,803,126320,26,8 ,15,4374,650608,1,1 ,27,344,126328,25,8 ,15,4375,650616,1,1 ,27,803,126336,26,8 ,15,4376,650624,1,1 ,20,23331,20573570,56,0 ,20,18662,8514946,484,0 ,17,923,10087812,32,0 ,44,15152,2223492,48,0 ,45,15153,4320644,168,0 ,17,923,7990660,32,0 ,17,923,8514948,40,0 ,17,923,9563524,40,0 ,27,803,126344,26,8 ,15,4377,650632,1,1 ,27,344,126352,23,8 ,15,4378,650640,1,1 ,27,344,126360,25,8 ,15,4379,650648,1,1 ,27,344,126368,23,8 ,15,4380,650656,1,1 ,20,16352,3272098,172,0 ,27,344,126376,23,8 ,15,4381,650664,1,1 ,27,344,126384,25,8 ,15,4382,650672,1,1 ,27,803,126392,26,8 ,15,4383,650680,1,1 ,27,344,126400,25,8 ,15,4384,650688,1,1 ,20,23710,21622210,336,0 ,20,15367,650690,136,0 ,17,923,126403,32,0 ,44,15152,126404,48,0 ,17,923,6417860,32,0 ,44,15152,2747844,48,0 ,27,344,126408,23,8 ,15,4385,650696,1,1 ,27,344,126416,23,8 ,15,4386,650704,1,1 ,27,344,126424,25,8 ,15,4387,650712,1,1 ,27,344,126432,23,8 ,15,4388,650720,1,1 ,27,344,126440,25,8 ,15,4389,650728,1,1 ,27,344,126448,23,8 ,15,4390,650736,1,1 ,27,344,126456,25,8 ,15,4391,650744,1,1 ,27,344,126464,25,8 ,15,4392,650752,1,1 ,20,15801,1699330,84,0 ,45,15153,4845060,24,0 ,17,923,6942212,48,0 ,27,344,126472,25,8 ,15,4393,650760,1,1 ,27,6471,126480,24,8 ,15,4394,650768,1,1 ,27,803,126488,26,8 ,15,4395,650776,1,1 ,27,803,126496,26,8 ,15,4396,650784,1,1 ,20,18476,7990818,204,0 ,27,12216,126504,24,8 ,15,4397,650792,1,1 ,27,344,126512,23,8 ,15,4398,650800,1,1 ,27,344,126520,25,8 ,15,4399,650808,1,1 ,27,344,126528,25,8 ,15,4400,650816,1,1 ,20,17355,5369410,240,0 ,17,923,9039428,40,0 ,17,923,7466564,32,0 ,44,15152,1699396,216,0 ,44,15152,3796548,24,0 ,45,15153,5369412,24,0 ,27,344,126536,25,8 ,15,4401,650824,1,1 ,27,344,126544,25,8 ,15,4402,650832,1,1 ,27,344,126552,25,8 ,15,4403,650840,1,1 ,27,344,126560,25,8 ,15,4404,650848,1,1 ,27,344,126568,25,8 ,15,4405,650856,1,1 ,27,344,126576,25,8 ,15,4406,650864,1,1 ,27,344,126584,23,8 ,15,4407,650872,1,1 ,27,344,126592,25,8 ,15,4408,650880,1,1 ,20,18214,7466626,92,0 ,20,24912,24768130,64,0 ,20,17139,4845186,168,0 ,17,923,10088068,32,0 ,17,923,7990916,32,0 ,27,344,126600,25,8 ,15,4409,650888,1,1 ,27,12256,126608,24,8 ,15,4410,650896,1,1 ,27,12257,126616,24,8 ,15,4411,650904,1,1 ,27,344,126624,25,8 ,15,4412,650912,1,1 ,20,22035,17952418,44,0 ,27,344,126632,25,8 ,15,4413,650920,1,1 ,27,344,126640,25,8 ,15,4414,650928,1,1 ,27,344,126648,25,8 ,15,4415,650936,1,1 ,27,803,126656,26,8 ,15,4416,650944,1,1 ,20,17526,5893826,80,0 ,17,923,126659,16,0 ,17,923,9563844,32,0 ,17,923,6418116,24,0 ,45,15153,4845252,16,0 ,17,923,8515268,48,0 ,27,344,126664,25,8 ,15,4417,650952,1,1 ,27,344,126672,25,8 ,15,4418,650960,1,1 ,27,344,126680,23,8 ,15,4419,650968,1,1 ,27,344,126688,23,8 ,15,4420,650976,1,1 ,20,21237,15855330,24,0 ,27,344,126696,25,8 ,15,4421,650984,1,1 ,27,344,126704,26,8 ,15,4422,650992,1,1 ,27,12058,126712,26,8 ,15,4423,651000,1,1 ,27,163,126720,24,8 ,15,4424,651008,1,1 ,45,15153,5369604,16,0 ,44,15152,2223876,32,0 ,44,15152,651012,88,0 ,44,15152,3272452,80,0 ,44,15152,3796740,24,0 ,27,163,126728,24,8 ,15,4425,651016,1,1 ,27,344,126736,26,8 ,15,4426,651024,1,1 ,27,12058,126744,26,8 ,15,4427,651032,1,1 ,27,344,126752,25,8 ,15,4428,651040,1,1 ,27,344,126760,25,8 ,15,4429,651048,1,1 ,27,163,126768,24,8 ,15,4430,651056,1,1 ,27,344,126776,25,8 ,15,4431,651064,1,1 ,27,344,126784,25,8 ,15,4432,651072,1,1 ,20,23332,20574018,56,0 ,17,923,126787,16,0 ,45,15153,4845380,32,0 ,17,923,7466820,24,0 ,44,15152,2748228,64,0 ,44,15152,126788,48,0 ,44,15152,1175364,24,0 ,27,344,126792,25,8 ,15,4433,651080,1,1 ,27,344,126800,25,8 ,15,4434,651088,1,1 ,27,344,126808,25,8 ,15,4435,651096,1,1 ,27,344,126816,25,8 ,15,4436,651104,1,1 ,27,344,126824,25,8 ,15,4437,651112,1,1 ,27,344,126832,25,8 ,15,4438,651120,1,1 ,27,344,126840,25,8 ,15,4439,651128,1,1 ,27,344,126848,25,8 ,15,4440,651136,1,1 ,17,923,10088324,40,0 ,17,923,6942596,48,0 ,17,923,6418308,24,0 ,45,15153,5369732,16,0 ,17,923,7991172,24,0 ,17,923,9039748,32,0 ,27,344,126856,25,8 ,15,4441,651144,1,1 ,27,344,126864,25,8 ,15,4442,651152,1,1 ,27,344,126872,25,8 ,15,4443,651160,1,1 ,27,344,126880,25,8 ,15,4444,651168,1,1 ,20,21238,15855522,24,0 ,20,25707,26865570,864,0 ,27,344,126888,25,8 ,15,4445,651176,1,1 ,27,163,126896,24,8 ,15,4446,651184,1,1 ,27,344,126904,25,8 ,15,4447,651192,1,1 ,27,344,126912,25,8 ,15,4448,651200,1,1 ,20,16969,4321218,12,0 ,17,923,126915,24,0 ,17,923,9564100,32,0 ,44,15152,3796932,224,0 ,27,344,126920,25,8 ,15,4449,651208,1,1 ,27,344,126928,25,8 ,15,4450,651216,1,1 ,27,163,126936,24,8 ,15,4451,651224,1,1 ,27,163,126944,24,8 ,15,4452,651232,1,1 ,20,24177,22671330,120,0 ,20,20942,15331298,160,0 ,27,163,126952,24,8 ,15,4453,651240,1,1 ,27,163,126960,24,8 ,15,4454,651248,1,1 ,27,163,126968,24,8 ,15,4455,651256,1,1 ,27,344,126976,25,8 ,15,4456,651264,1,1 ,20,22036,17952770,12,0 ,45,15153,5369860,16,0 ,17,923,7467012,32,0 ,44,15152,2224132,24,0 ,44,15152,1175556,40,0 ,27,344,126984,25,8 ,15,4457,651272,1,1 ,27,344,126992,25,8 ,15,4458,651280,1,1 ,27,344,127000,25,8 ,15,4459,651288,1,1 ,27,344,127008,25,8 ,15,4460,651296,1,1 ,20,16970,4321314,124,0 ,27,344,127016,25,8 ,15,4461,651304,1,1 ,27,344,127024,25,8 ,15,4462,651312,1,1 ,27,344,127032,25,8 ,15,4463,651320,1,1 ,27,344,127040,25,8 ,15,4464,651328,1,1 ,17,923,8515652,40,0 ,17,923,6418500,32,0 ,45,15153,4845636,24,0 ,17,923,7991364,32,0 ,27,344,127048,25,8 ,15,4465,651336,1,1 ,27,344,127056,25,8 ,15,4466,651344,1,1 ,27,344,127064,25,8 ,15,4467,651352,1,1 ,27,344,127072,25,8 ,15,4468,651360,1,1 ,20,22037,17952866,240,0 ,20,21239,15855714,24,0 ,27,344,127080,25,8 ,15,4469,651368,1,1 ,27,5378,127088,26,8 ,15,4470,651376,1,1 ,27,344,127096,25,8 ,15,4471,651384,1,1 ,27,344,127104,25,8 ,15,4472,651392,1,1 ,20,24913,24768642,64,0 ,17,923,127107,32,0 ,17,923,9040004,32,0 ,45,15153,5369988,24,0 ,27,344,127112,26,8 ,15,4473,651400,1,1 ,27,344,127120,26,8 ,15,4474,651408,1,1 ,27,12058,127128,26,8 ,15,4475,651416,1,1 ,27,12058,127136,26,8 ,15,4476,651424,1,1 ,20,15802,1700002,84,0 ,27,344,127144,25,8 ,15,4477,651432,1,1 ,27,344,127152,25,8 ,15,4478,651440,1,1 ,27,344,127160,25,8 ,15,4479,651448,1,1 ,27,344,127168,25,8 ,15,4480,651456,1,1 ,17,923,10088644,64,0 ,44,15152,2224324,360,0 ,44,15152,127172,24,0 ,17,923,9564356,32,0 ,27,344,127176,25,8 ,15,4481,651464,1,1 ,27,344,127184,25,8 ,15,4482,651472,1,1 ,27,344,127192,25,8 ,15,4483,651480,1,1 ,27,344,127200,25,8 ,15,4484,651488,1,1 ,20,19977,11137250,20,0 ,27,344,127208,25,8 ,15,4485,651496,1,1 ,27,344,127216,25,8 ,15,4486,651504,1,1 ,27,344,127224,25,8 ,15,4487,651512,1,1 ,27,11610,127232,24,8 ,15,4488,651520,1,1 ,20,23333,20574466,24,0 ,20,22997,20050178,88,0 ,45,15153,4845828,32,0 ,17,923,7467268,64,0 ,17,923,6942980,48,0 ,27,2562,127240,23,8 ,15,4489,651528,1,1 ,27,344,127248,25,8 ,15,4490,651536,1,1 ,27,12415,127256,26,8 ,15,4491,651544,1,1 ,27,344,127264,25,8 ,15,4492,651552,1,1 ,20,21240,15855906,24,0 ,27,344,127272,25,8 ,15,4493,651560,1,1 ,27,344,127280,25,8 ,15,4494,651568,1,1 ,27,344,127288,25,8 ,15,4495,651576,1,1 ,27,344,127296,25,8 ,15,4496,651584,1,1 ,20,17527,5894466,800,0 ,17,923,7991620,24,0 ,17,923,6418756,40,0 ,44,15152,2748740,24,0 ,44,15152,1175876,40,0 ,45,15153,5370180,24,0 ,27,344,127304,25,8 ,15,4497,651592,1,1 ,27,344,127312,25,8 ,15,4498,651600,1,1 ,27,344,127320,25,8 ,15,4499,651608,1,1 ,27,344,127328,25,8 ,15,4500,651616,1,1 ,20,18215,7467362,204,0 ,20,25925,27390306,372,0 ,27,344,127336,25,8 ,15,4501,651624,1,1 ,27,344,127344,25,8 ,15,4502,651632,1,1 ,27,344,127352,25,8 ,15,4503,651640,1,1 ,27,344,127360,25,8 ,15,4504,651648,1,1 ,20,19978,11137410,12,0 ,17,923,127363,24,0 ,17,923,9040260,24,0 ,44,15152,127364,24,0 ,44,15152,3273092,168,0 ,17,923,8515972,48,0 ,27,344,127368,25,8 ,15,4505,651656,1,1 ,27,344,127376,25,8 ,15,4506,651664,1,1 ,27,12419,127384,26,8 ,15,4507,651672,1,1 ,27,344,127392,25,8 ,15,4508,651680,1,1 ,27,344,127400,25,8 ,15,4509,651688,1,1 ,27,344,127408,25,8 ,15,4510,651696,1,1 ,27,344,127416,25,8 ,15,4511,651704,1,1 ,27,344,127424,25,8 ,15,4512,651712,1,1 ,20,23334,20574658,108,0 ,20,17755,6418882,752,0 ,20,21822,16904642,220,0 ,17,923,9564612,32,0 ,44,15152,651716,72,0 ,27,344,127432,25,8 ,15,4513,651720,1,1 ,27,344,127440,25,8 ,15,4514,651728,1,1 ,27,12421,127448,24,8 ,15,4515,651736,1,1 ,27,344,127456,25,8 ,15,4516,651744,1,1 ,20,21241,15856098,24,0 ,20,19979,11137506,12,0 ,27,344,127464,25,8 ,15,4517,651752,1,1 ,27,344,127472,25,8 ,15,4518,651760,1,1 ,27,344,127480,25,8 ,15,4519,651768,1,1 ,27,344,127488,25,8 ,15,4520,651776,1,1 ,20,22544,19001858,2416,0 ,20,15368,651778,112,0 ,20,19379,10088962,364,0 ,17,923,7991812,24,0 ,44,15152,2748932,24,0 ,45,15153,4846084,24,0 ,45,15153,5370372,32,0 ,27,344,127496,25,8 ,15,4521,651784,1,1 ,27,344,127504,25,8 ,15,4522,651792,1,1 ,27,344,127512,25,8 ,15,4523,651800,1,1 ,27,344,127520,25,8 ,15,4524,651808,1,1 ,27,344,127528,25,8 ,15,4525,651816,1,1 ,27,803,127536,26,8 ,15,4526,651824,1,1 ,27,344,127544,25,8 ,15,4527,651832,1,1 ,27,344,127552,25,8 ,15,4528,651840,1,1 ,20,19980,11137602,432,0 ,20,16699,3797570,52,0 ,17,923,127555,32,0 ,17,923,9040452,32,0 ,44,15152,127556,64,0 ,27,344,127560,25,8 ,15,4529,651848,1,1 ,27,344,127568,25,8 ,15,4530,651856,1,1 ,27,344,127576,25,8 ,15,4531,651864,1,1 ,27,803,127584,26,8 ,15,4532,651872,1,1 ,20,25507,26341986,868,0 ,27,344,127592,25,8 ,15,4533,651880,1,1 ,27,344,127600,25,8 ,15,4534,651888,1,1 ,27,163,127608,24,8 ,15,4535,651896,1,1 ,27,344,127616,25,8 ,15,4536,651904,1,1 ,20,24914,24769154,100,0 ,44,15152,1176196,24,0 ,17,923,6943364,48,0 ,17,923,6419076,16,0 ,27,344,127624,25,8 ,15,4537,651912,1,1 ,27,163,127632,24,8 ,15,4538,651920,1,1 ,27,344,127640,25,8 ,15,4539,651928,1,1 ,27,344,127648,25,8 ,15,4540,651936,1,1 ,20,21242,15856290,24,0 ,27,344,127656,25,8 ,15,4541,651944,1,1 ,27,344,127664,25,8 ,15,4542,651952,1,1 ,27,163,127672,24,8 ,15,4543,651960,1,1 ,27,344,127680,25,8 ,15,4544,651968,1,1 ,17,923,10089156,56,0 ,44,15152,2749124,40,0 ,45,15153,4321988,16,0 ,45,15153,4846276,24,0 ,17,923,7992004,24,0 ,17,923,9564868,16,0 ,27,344,127688,25,8 ,15,4545,651976,1,1 ,27,163,127696,24,8 ,15,4546,651984,1,1 ,27,344,127704,25,8 ,15,4547,651992,1,1 ,27,344,127712,25,8 ,15,4548,652000,1,1 ,27,163,127720,24,8 ,15,4549,652008,1,1 ,27,344,127728,25,8 ,15,4550,652016,1,1 ,27,344,127736,25,8 ,15,4551,652024,1,1 ,27,163,127744,24,8 ,15,4552,652032,1,1 ,20,16353,3273474,304,0 ,17,923,8516356,40,0 ,17,923,7467780,24,0 ,17,923,6419204,24,0 ,45,15153,5370628,56,0 ,27,344,127752,25,8 ,15,4553,652040,1,1 ,27,344,127760,25,8 ,15,4554,652048,1,1 ,27,163,127768,24,8 ,15,4555,652056,1,1 ,27,344,127776,25,8 ,15,4556,652064,1,1 ,27,344,127784,25,8 ,15,4557,652072,1,1 ,27,163,127792,24,8 ,15,4558,652080,1,1 ,27,344,127800,25,8 ,15,4559,652088,1,1 ,27,344,127808,25,8 ,15,4560,652096,1,1 ,20,15803,1700674,560,0 ,17,923,127811,24,0 ,17,923,9564996,40,0 ,44,15152,1176388,40,0 ,45,15153,4322116,16,0 ,17,923,9040708,24,0 ,27,163,127816,24,8 ,15,4561,652104,1,1 ,27,344,127824,25,8 ,15,4562,652112,1,1 ,27,344,127832,25,8 ,15,4563,652120,1,1 ,27,344,127840,25,8 ,15,4564,652128,1,1 ,20,21243,15856482,24,0 ,20,26293,28439394,204,0 ,27,344,127848,25,8 ,15,4565,652136,1,1 ,27,344,127856,25,8 ,15,4566,652144,1,1 ,27,344,127864,25,8 ,15,4567,652152,1,1 ,27,344,127872,25,8 ,15,4568,652160,1,1 ,17,923,7992196,24,0 ,45,15153,4846468,32,0 ,27,344,127880,25,8 ,15,4569,652168,1,1 ,27,344,127888,25,8 ,15,4570,652176,1,1 ,27,344,127896,25,8 ,15,4571,652184,1,1 ,27,344,127904,25,8 ,15,4572,652192,1,1 ,20,24178,22672290,260,0 ,27,344,127912,25,8 ,15,4573,652200,1,1 ,27,163,127920,24,8 ,15,4574,652208,1,1 ,27,344,127928,25,8 ,15,4575,652216,1,1 ,27,344,127936,25,8 ,15,4576,652224,1,1 ,20,22998,20050882,64,0 ,20,17140,4846530,1080,0 ,45,15153,4322244,344,0 ,17,923,7467972,64,0 ,17,923,6419396,48,0 ,27,344,127944,25,8 ,15,4577,652232,1,1 ,27,344,127952,25,8 ,15,4578,652240,1,1 ,27,344,127960,25,8 ,15,4579,652248,1,1 ,27,344,127968,25,8 ,15,4580,652256,1,1 ,20,16700,3797986,204,0 ,27,163,127976,24,8 ,15,4581,652264,1,1 ,27,344,127984,25,8 ,15,4582,652272,1,1 ,27,344,127992,25,8 ,15,4583,652280,1,1 ,27,344,128000,25,8 ,15,4584,652288,1,1 ,20,16971,4322306,764,0 ,17,923,128003,16,0 ,17,923,9040900,32,0 ,17,923,6943748,24,0 ,44,15152,2749444,24,0 ,44,15152,652292,40,0 ,27,344,128008,25,8 ,15,4585,652296,1,1 ,27,344,128016,25,8 ,15,4586,652304,1,1 ,27,344,128024,25,8 ,15,4587,652312,1,1 ,27,344,128032,25,8 ,15,4588,652320,1,1 ,20,21244,15856674,24,0 ,27,344,128040,25,8 ,15,4589,652328,1,1 ,27,344,128048,25,8 ,15,4590,652336,1,1 ,27,344,128056,25,8 ,15,4591,652344,1,1 ,27,344,128064,25,8 ,15,4592,652352,1,1 ,17,923,8516676,32,0 ,44,15152,128068,24,0 ,17,923,7992388,32,0 ,27,344,128072,25,8 ,15,4593,652360,1,1 ,27,344,128080,25,8 ,15,4594,652368,1,1 ,27,344,128088,25,8 ,15,4595,652376,1,1 ,27,344,128096,25,8 ,15,4596,652384,1,1 ,20,23955,22148194,188,0 ,27,344,128104,25,8 ,15,4597,652392,1,1 ,27,344,128112,25,8 ,15,4598,652400,1,1 ,27,344,128120,25,8 ,15,4599,652408,1,1 ,27,344,128128,25,8 ,15,4600,652416,1,1 ,20,18477,7992450,68,0 ,17,923,128131,24,0 ,17,923,10089604,40,0 ,44,15152,1176708,24,0 ,45,15153,4846724,16,0 ,17,923,9565316,64,0 ,27,344,128136,25,8 ,15,4601,652424,1,1 ,27,344,128144,25,8 ,15,4602,652432,1,1 ,27,344,128152,25,8 ,15,4603,652440,1,1 ,27,344,128160,25,8 ,15,4604,652448,1,1 ,27,344,128168,25,8 ,15,4605,652456,1,1 ,27,344,128176,25,8 ,15,4606,652464,1,1 ,27,344,128184,25,8 ,15,4607,652472,1,1 ,27,344,128192,25,8 ,15,4608,652480,1,1 ,45,15153,5371076,32,0 ,17,923,6943940,32,0 ,44,15152,2749636,24,0 ,27,344,128200,25,8 ,15,4609,652488,1,1 ,27,344,128208,25,8 ,15,4610,652496,1,1 ,27,344,128216,25,8 ,15,4611,652504,1,1 ,27,344,128224,25,8 ,15,4612,652512,1,1 ,20,21245,15856866,24,0 ,20,26123,27915490,540,0 ,20,20943,15332578,68,0 ,27,344,128232,25,8 ,15,4613,652520,1,1 ,27,344,128240,25,8 ,15,4614,652528,1,1 ,27,344,128248,25,8 ,15,4615,652536,1,1 ,27,344,128256,25,8 ,15,4616,652544,1,1 ,17,923,9041156,24,0 ,44,15152,1701124,560,0 ,44,15152,128260,40,0 ,45,15153,4846852,16,0 ,27,344,128264,25,8 ,15,4617,652552,1,1 ,27,344,128272,25,8 ,15,4618,652560,1,1 ,27,344,128280,25,8 ,15,4619,652568,1,1 ,27,344,128288,25,8 ,15,4620,652576,1,1 ,20,23335,20575522,124,0 ,20,22283,18478370,100,0 ,27,344,128296,25,8 ,15,4621,652584,1,1 ,27,344,128304,25,8 ,15,4622,652592,1,1 ,27,344,128312,25,8 ,15,4623,652600,1,1 ,27,344,128320,25,8 ,15,4624,652608,1,1 ,17,923,128323,16,0 ,17,923,8516932,40,0 ,17,923,6419780,40,0 ,44,15152,652612,40,0 ,44,15152,1176900,40,0 ,17,923,7992644,40,0 ,27,344,128328,25,8 ,15,4625,652616,1,1 ,27,344,128336,25,8 ,15,4626,652624,1,1 ,27,344,128344,25,8 ,15,4627,652632,1,1 ,27,163,128352,24,8 ,15,4628,652640,1,1 ,20,15221,128354,132,0 ,27,344,128360,25,8 ,15,4629,652648,1,1 ,27,344,128368,25,8 ,15,4630,652656,1,1 ,27,344,128376,25,8 ,15,4631,652664,1,1 ,27,344,128384,25,8 ,15,4632,652672,1,1 ,20,15369,652674,440,0 ,45,15153,4846980,40,0 ,44,15152,2749828,32,0 ,27,344,128392,25,8 ,15,4633,652680,1,1 ,27,163,128400,24,8 ,15,4634,652688,1,1 ,27,344,128408,25,8 ,15,4635,652696,1,1 ,27,344,128416,25,8 ,15,4636,652704,1,1 ,20,21246,15857058,140,0 ,20,24915,24769954,80,0 ,27,163,128424,24,8 ,15,4637,652712,1,1 ,27,344,128432,25,8 ,15,4638,652720,1,1 ,27,344,128440,25,8 ,15,4639,652728,1,1 ,27,163,128448,24,8 ,15,4640,652736,1,1 ,20,22999,20051394,156,0 ,20,17356,5371330,60,0 ,17,923,128451,40,0 ,17,923,10089924,40,0 ,17,923,7468484,32,0 ,17,923,6944196,32,0 ,45,15153,5371332,16,0 ,17,923,9041348,40,0 ,27,344,128456,25,8 ,15,4641,652744,1,1 ,27,344,128464,25,8 ,15,4642,652752,1,1 ,27,163,128472,24,8 ,15,4643,652760,1,1 ,27,344,128480,25,8 ,15,4644,652768,1,1 ,27,344,128488,25,8 ,15,4645,652776,1,1 ,27,344,128496,25,8 ,15,4646,652784,1,1 ,27,344,128504,25,8 ,15,4647,652792,1,1 ,27,163,128512,24,8 ,15,4648,652800,1,1 ,20,24357,23197186,172,0 ,27,344,128520,25,8 ,15,4649,652808,1,1 ,27,344,128528,25,8 ,15,4650,652816,1,1 ,27,163,128536,24,8 ,15,4651,652824,1,1 ,27,344,128544,25,8 ,15,4652,652832,1,1 ,20,20540,13235746,80,0 ,27,344,128552,25,8 ,15,4653,652840,1,1 ,27,344,128560,25,8 ,15,4654,652848,1,1 ,27,163,128568,24,8 ,15,4655,652856,1,1 ,27,344,128576,25,8 ,15,4656,652864,1,1 ,45,15153,5371460,24,0 ,44,15152,128580,40,0 ,27,344,128584,25,8 ,15,4657,652872,1,1 ,27,163,128592,24,8 ,15,4658,652880,1,1 ,27,344,128600,25,8 ,15,4659,652888,1,1 ,27,344,128608,25,8 ,15,4660,652896,1,1 ,27,163,128616,24,8 ,15,4661,652904,1,1 ,27,344,128624,25,8 ,15,4662,652912,1,1 ,27,344,128632,25,8 ,15,4663,652920,1,1 ,27,344,128640,25,8 ,15,4664,652928,1,1 ,17,923,9565828,32,0 ,17,923,6420100,32,0 ,44,15152,2750084,40,0 ,44,15152,652932,24,0 ,44,15152,1177220,32,0 ,17,923,7992964,24,0 ,17,923,8517252,32,0 ,27,344,128648,25,8 ,15,4665,652936,1,1 ,27,344,128656,25,8 ,15,4666,652944,1,1 ,27,163,128664,24,8 ,15,4667,652952,1,1 ,27,344,128672,25,8 ,15,4668,652960,1,1 ,20,18478,7992994,392,0 ,27,344,128680,25,8 ,15,4669,652968,1,1 ,27,803,128688,26,8 ,15,4670,652976,1,1 ,27,803,128696,26,8 ,15,4671,652984,1,1 ,27,344,128704,25,8 ,15,4672,652992,1,1 ,45,15153,4847300,16,0 ,17,923,7468740,48,0 ,17,923,6944452,40,0 ,44,15152,3274436,160,0 ,44,15152,3798724,56,0 ,27,344,128712,25,8 ,15,4673,653000,1,1 ,27,344,128720,25,8 ,15,4674,653008,1,1 ,27,344,128728,25,8 ,15,4675,653016,1,1 ,27,344,128736,25,8 ,15,4676,653024,1,1 ,27,344,128744,23,8 ,15,4677,653032,1,1 ,27,344,128752,25,8 ,15,4678,653040,1,1 ,27,344,128760,23,8 ,15,4679,653048,1,1 ,27,344,128768,23,8 ,15,4680,653056,1,1 ,20,20944,15333122,12,0 ,17,923,128771,16,0 ,17,923,10090244,40,0 ,45,15153,5371652,24,0 ,17,923,9041668,32,0 ,27,344,128776,25,8 ,15,4681,653064,1,1 ,27,163,128784,22,8 ,15,4682,653072,1,1 ,27,344,128792,25,8 ,15,4683,653080,1,1 ,27,344,128800,25,8 ,15,4684,653088,1,1 ,27,344,128808,25,8 ,15,4685,653096,1,1 ,27,344,128816,25,8 ,15,4686,653104,1,1 ,27,344,128824,25,8 ,15,4687,653112,1,1 ,27,344,128832,25,8 ,15,4688,653120,1,1 ,17,923,7993156,40,0 ,44,15152,653124,40,0 ,45,15153,4847428,16,0 ,27,344,128840,25,8 ,15,4689,653128,1,1 ,27,344,128848,25,8 ,15,4690,653136,1,1 ,27,344,128856,25,8 ,15,4691,653144,1,1 ,27,344,128864,25,8 ,15,4692,653152,1,1 ,20,20945,15333218,12,0 ,27,344,128872,25,8 ,15,4693,653160,1,1 ,27,803,128880,26,8 ,15,4694,653168,1,1 ,27,803,128888,26,8 ,15,4695,653176,1,1 ,27,803,128896,26,8 ,15,4696,653184,1,1 ,17,923,128899,32,0 ,17,923,9566084,32,0 ,17,923,6420356,32,0 ,44,15152,128900,24,0 ,44,15152,1177476,48,0 ,17,923,8517508,32,0 ,27,344,128904,25,8 ,15,4697,653192,1,1 ,27,344,128912,25,8 ,15,4698,653200,1,1 ,27,344,128920,25,8 ,15,4699,653208,1,1 ,27,344,128928,25,8 ,15,4700,653216,1,1 ,20,17357,5371810,204,0 ,27,344,128936,25,8 ,15,4701,653224,1,1 ,27,344,128944,25,8 ,15,4702,653232,1,1 ,27,344,128952,25,8 ,15,4703,653240,1,1 ,27,344,128960,25,8 ,15,4704,653248,1,1 ,20,20946,15333314,52,0 ,20,18216,7468994,720,0 ,45,15153,5371844,72,0 ,44,15152,2750404,24,0 ,45,15153,4847556,16,0 ,27,344,128968,25,8 ,15,4705,653256,1,1 ,27,344,128976,25,8 ,15,4706,653264,1,1 ,27,344,128984,25,8 ,15,4707,653272,1,1 ,27,344,128992,25,8 ,15,4708,653280,1,1 ,20,22038,17954786,96,0 ,27,344,129000,25,8 ,15,4709,653288,1,1 ,27,344,129008,25,8 ,15,4710,653296,1,1 ,27,344,129016,25,8 ,15,4711,653304,1,1 ,27,344,129024,25,8 ,15,4712,653312,1,1 ,17,923,9041924,32,0 ,17,923,6944772,40,0 ,27,344,129032,25,8 ,15,4713,653320,1,1 ,27,344,129040,25,8 ,15,4714,653328,1,1 ,27,344,129048,25,8 ,15,4715,653336,1,1 ,27,344,129056,25,8 ,15,4716,653344,1,1 ,20,24916,24770594,80,0 ,27,344,129064,25,8 ,15,4717,653352,1,1 ,27,344,129072,25,8 ,15,4718,653360,1,1 ,27,344,129080,25,8 ,15,4719,653368,1,1 ,27,344,129088,25,8 ,15,4720,653376,1,1 ,20,24526,23722050,420,0 ,20,25156,25294914,2164,0 ,20,22284,18479170,100,0 ,20,23711,21624898,224,0 ,17,923,10090564,40,0 ,17,923,7469124,40,0 ,44,15152,129092,24,0 ,45,15153,4847684,16,0 ,27,344,129096,25,8 ,15,4721,653384,1,1 ,27,344,129104,25,8 ,15,4722,653392,1,1 ,27,344,129112,25,8 ,15,4723,653400,1,1 ,27,344,129120,25,8 ,15,4724,653408,1,1 ,27,803,129128,26,8 ,15,4725,653416,1,1 ,27,803,129136,26,8 ,15,4726,653424,1,1 ,27,344,129144,23,8 ,15,4727,653432,1,1 ,27,344,129152,23,8 ,15,4728,653440,1,1 ,17,923,129155,24,0 ,17,923,9566340,32,0 ,17,923,6420612,40,0 ,44,15152,2750596,40,0 ,44,15152,653444,24,0 ,44,15152,3799172,40,0 ,17,923,7993476,24,0 ,17,923,8517764,160,0 ,27,344,129160,23,8 ,15,4729,653448,1,1 ,27,344,129168,25,8 ,15,4730,653456,1,1 ,27,344,129176,25,8 ,15,4731,653464,1,1 ,27,344,129184,23,8 ,15,4732,653472,1,1 ,20,21823,16906402,108,0 ,20,20541,13236386,12,0 ,27,344,129192,23,8 ,15,4733,653480,1,1 ,27,344,129200,25,8 ,15,4734,653488,1,1 ,27,344,129208,25,8 ,15,4735,653496,1,1 ,27,344,129216,25,8 ,15,4736,653504,1,1 ,45,15153,4847812,16,0 ,27,344,129224,25,8 ,15,4737,653512,1,1 ,27,344,129232,25,8 ,15,4738,653520,1,1 ,27,344,129240,25,8 ,15,4739,653528,1,1 ,27,344,129248,25,8 ,15,4740,653536,1,1 ,27,344,129256,25,8 ,15,4741,653544,1,1 ,27,344,129264,25,8 ,15,4742,653552,1,1 ,27,344,129272,25,8 ,15,4743,653560,1,1 ,27,344,129280,25,8 ,15,4744,653568,1,1 ,20,23336,20576514,80,0 ,20,20542,13236482,84,0 ,17,923,9042180,32,0 ,44,15152,129284,72,0 ,44,15152,1177860,96,0 ,27,344,129288,25,8 ,15,4745,653576,1,1 ,27,344,129296,25,8 ,15,4746,653584,1,1 ,27,344,129304,25,8 ,15,4747,653592,1,1 ,27,803,129312,26,8 ,15,4748,653600,1,1 ,20,16157,2750754,96,0 ,27,13015,129320,24,8 ,15,4749,653608,1,1 ,27,803,129328,26,8 ,15,4750,653616,1,1 ,27,344,129336,25,8 ,15,4751,653624,1,1 ,27,71,129344,22,8 ,15,4752,653632,1,1 ,17,923,129347,40,0 ,17,923,7993668,32,0 ,17,923,6945092,40,0 ,44,15152,653636,32,0 ,45,15153,4847940,16,0 ,27,344,129352,25,8 ,15,4753,653640,1,1 ,27,344,129360,25,8 ,15,4754,653648,1,1 ,27,344,129368,25,8 ,15,4755,653656,1,1 ,27,13028,129376,24,8 ,15,4756,653664,1,1 ,20,22707,19528034,68,0 ,20,20947,15333730,36,0 ,27,803,129384,26,8 ,15,4757,653672,1,1 ,27,344,129392,25,8 ,15,4758,653680,1,1 ,27,344,129400,25,8 ,15,4759,653688,1,1 ,27,344,129408,25,8 ,15,4760,653696,1,1 ,20,15222,129410,484,0 ,17,923,10090884,40,0 ,17,923,7469444,32,0 ,17,923,9566596,32,0 ,27,344,129416,25,8 ,15,4761,653704,1,1 ,27,344,129424,25,8 ,15,4762,653712,1,1 ,27,344,129432,25,8 ,15,4763,653720,1,1 ,27,344,129440,25,8 ,15,4764,653728,1,1 ,27,344,129448,25,8 ,15,4765,653736,1,1 ,27,803,129456,26,8 ,15,4766,653744,1,1 ,27,344,129464,26,8 ,15,4767,653752,1,1 ,27,344,129472,25,8 ,15,4768,653760,1,1 ,20,26294,28441026,240,0 ,45,15153,4848068,32,0 ,17,923,6420932,32,0 ,44,15152,2750916,16,0 ,44,15152,3799492,32,0 ,27,344,129480,25,8 ,15,4769,653768,1,1 ,27,344,129488,25,8 ,15,4770,653776,1,1 ,27,344,129496,25,8 ,15,4771,653784,1,1 ,27,344,129504,25,8 ,15,4772,653792,1,1 ,20,21537,16382434,72,0 ,27,803,129512,26,8 ,15,4773,653800,1,1 ,27,344,129520,25,8 ,15,4774,653808,1,1 ,27,344,129528,25,8 ,15,4775,653816,1,1 ,27,344,129536,25,8 ,15,4776,653824,1,1 ,20,21247,15858178,12,0 ,17,923,9042436,32,0 ,45,15153,5372420,16,0 ,27,344,129544,25,8 ,15,4777,653832,1,1 ,27,344,129552,25,8 ,15,4778,653840,1,1 ,27,803,129560,26,8 ,15,4779,653848,1,1 ,27,344,129568,25,8 ,15,4780,653856,1,1 ,27,344,129576,25,8 ,15,4781,653864,1,1 ,27,344,129584,25,8 ,15,4782,653872,1,1 ,27,344,129592,23,8 ,15,4783,653880,1,1 ,27,344,129600,23,8 ,15,4784,653888,1,1 ,20,23956,22149698,92,0 ,20,16701,3799618,984,0 ,17,923,7993924,32,0 ,44,15152,2751044,40,0 ,44,15152,653892,24,0 ,27,344,129608,25,8 ,15,4785,653896,1,1 ,27,344,129616,25,8 ,15,4786,653904,1,1 ,27,344,129624,25,8 ,15,4787,653912,1,1 ,27,344,129632,25,8 ,15,4788,653920,1,1 ,20,21248,15858274,192,0 ,27,344,129640,25,8 ,15,4789,653928,1,1 ,27,803,129648,26,8 ,15,4790,653936,1,1 ,27,344,129656,25,8 ,15,4791,653944,1,1 ,27,344,129664,25,8 ,15,4792,653952,1,1 ,20,20948,15334018,36,0 ,17,923,129667,32,0 ,17,923,9566852,32,0 ,17,923,7469700,64,0 ,17,923,6945412,32,0 ,45,15153,5372548,16,0 ,27,344,129672,25,8 ,15,4793,653960,1,1 ,27,344,129680,25,8 ,15,4794,653968,1,1 ,27,344,129688,23,8 ,15,4795,653976,1,1 ,27,344,129696,23,8 ,15,4796,653984,1,1 ,20,23000,20052642,80,0 ,20,24917,24771234,108,0 ,27,344,129704,25,8 ,15,4797,653992,1,1 ,27,344,129712,25,8 ,15,4798,654000,1,1 ,27,344,129720,25,8 ,15,4799,654008,1,1 ,27,163,129728,24,8 ,15,4800,654016,1,1 ,17,923,10091204,40,0 ,17,923,6421188,40,0 ,44,15152,3799748,32,0 ,45,15153,4848324,40,0 ,27,163,129736,24,8 ,15,4801,654024,1,1 ,27,344,129744,25,8 ,15,4802,654032,1,1 ,27,344,129752,25,8 ,15,4803,654040,1,1 ,27,163,129760,22,8 ,15,4804,654048,1,1 ,20,22039,17955554,140,0 ,27,344,129768,25,8 ,15,4805,654056,1,1 ,27,344,129776,25,8 ,15,4806,654064,1,1 ,27,344,129784,25,8 ,15,4807,654072,1,1 ,27,803,129792,26,8 ,15,4808,654080,1,1 ,17,923,9042692,32,0 ,44,15152,654084,24,0 ,45,15153,5372676,40,0 ,27,803,129800,26,8 ,15,4809,654088,1,1 ,27,803,129808,26,8 ,15,4810,654096,1,1 ,27,344,129816,25,8 ,15,4811,654104,1,1 ,27,163,129824,22,8 ,15,4812,654112,1,1 ,27,344,129832,26,8 ,15,4813,654120,1,1 ,27,12058,129840,26,8 ,15,4814,654128,1,1 ,27,163,129848,24,8 ,15,4815,654136,1,1 ,27,163,129856,24,8 ,15,4816,654144,1,1 ,17,923,7994180,40,0 ,44,15152,129860,72,0 ,27,344,129864,25,8 ,15,4817,654152,1,1 ,27,344,129872,25,8 ,15,4818,654160,1,1 ,27,344,129880,25,8 ,15,4819,654168,1,1 ,27,344,129888,25,8 ,15,4820,654176,1,1 ,20,24358,23198562,24,0 ,20,22285,18479970,168,0 ,27,344,129896,25,8 ,15,4821,654184,1,1 ,27,344,129904,25,8 ,15,4822,654192,1,1 ,27,344,129912,25,8 ,15,4823,654200,1,1 ,27,1368,129920,28,8 ,15,4824,654208,1,1 ,20,23337,20577154,80,0 ,20,22708,19528578,384,0 ,17,923,129923,16,0 ,17,923,9567108,32,0 ,17,923,6945668,32,0 ,44,15152,2751364,32,0 ,27,1368,129928,23,8 ,15,4825,654216,1,1 ,27,163,129936,24,8 ,15,4826,654224,1,1 ,27,163,129944,24,8 ,15,4827,654232,1,1 ,27,344,129952,25,8 ,15,4828,654240,1,1 ,20,20949,15334306,92,0 ,20,20543,13237154,440,0 ,27,344,129960,24,8 ,15,4829,654248,1,1 ,27,344,129968,25,8 ,15,4830,654256,1,1 ,27,803,129976,26,8 ,15,4831,654264,1,1 ,27,344,129984,25,8 ,15,4832,654272,1,1 ,20,24179,22674370,324,0 ,44,15152,3800004,24,0 ,44,15152,654276,72,0 ,44,15152,3275716,112,0 ,27,344,129992,25,8 ,15,4833,654280,1,1 ,27,344,130000,25,8 ,15,4834,654288,1,1 ,27,344,130008,25,8 ,15,4835,654296,1,1 ,27,344,130016,25,8 ,15,4836,654304,1,1 ,27,344,130024,25,8 ,15,4837,654312,1,1 ,27,344,130032,25,8 ,15,4838,654320,1,1 ,27,13236,130040,24,8 ,15,4839,654328,1,1 ,27,344,130048,26,8 ,15,4840,654336,1,1 ,20,21824,16907266,2144,0 ,20,19705,10615810,1280,0 ,17,923,130051,16,0 ,17,923,10091524,40,0 ,17,923,6421508,32,0 ,44,15152,2227204,40,0 ,44,15152,1178628,24,0 ,45,15153,4848644,16,0 ,17,923,9042948,24,0 ,27,12058,130056,26,8 ,15,4841,654344,1,1 ,27,163,130064,24,8 ,15,4842,654352,1,1 ,27,163,130072,24,8 ,15,4843,654360,1,1 ,27,803,130080,26,8 ,15,4844,654368,1,1 ,20,24359,23198754,200,0 ,20,16158,2751522,124,0 ,20,21538,16383010,88,0 ,27,344,130088,25,8 ,15,4845,654376,1,1 ,27,163,130096,24,8 ,15,4846,654384,1,1 ,27,344,130104,25,8 ,15,4847,654392,1,1 ,27,803,130112,26,8 ,15,4848,654400,1,1 ,45,15153,5372996,56,0 ,27,344,130120,25,8 ,15,4849,654408,1,1 ,27,344,130128,25,8 ,15,4850,654416,1,1 ,27,344,130136,25,8 ,15,4851,654424,1,1 ,27,344,130144,25,8 ,15,4852,654432,1,1 ,27,344,130152,25,8 ,15,4853,654440,1,1 ,27,344,130160,25,8 ,15,4854,654448,1,1 ,27,344,130168,25,8 ,15,4855,654456,1,1 ,27,344,130176,25,8 ,15,4856,654464,1,1 ,20,16354,3275906,76,0 ,17,923,130179,24,0 ,17,923,9567364,32,0 ,17,923,7470212,24,0 ,17,923,6945924,24,0 ,44,15152,2751620,32,0 ,44,15152,3800196,24,0 ,45,15153,4848772,88,0 ,17,923,7994500,32,0 ,27,1891,130184,26,8 ,15,4857,654472,1,1 ,27,344,130192,25,8 ,15,4858,654480,1,1 ,27,344,130200,25,8 ,15,4859,654488,1,1 ,27,4265,130208,24,8 ,15,4860,654496,1,1 ,20,18663,8518818,12,0 ,27,344,130216,25,8 ,15,4861,654504,1,1 ,27,344,130224,25,8 ,15,4862,654512,1,1 ,27,803,130232,26,8 ,15,4863,654520,1,1 ,27,344,130240,25,8 ,15,4864,654528,1,1 ,17,923,9043140,24,0 ,44,15152,1178820,32,0 ,27,344,130248,25,8 ,15,4865,654536,1,1 ,27,344,130256,25,8 ,15,4866,654544,1,1 ,27,344,130264,23,8 ,15,4867,654552,1,1 ,27,344,130272,25,8 ,15,4868,654560,1,1 ,27,163,130280,22,8 ,15,4869,654568,1,1 ,27,344,130288,25,8 ,15,4870,654576,1,1 ,27,344,130296,25,8 ,15,4871,654584,1,1 ,27,803,130304,26,8 ,15,4872,654592,1,1 ,20,18664,8518914,52,0 ,20,25926,27393282,268,0 ,17,923,6421764,24,0 ,27,344,130312,25,8 ,15,4873,654600,1,1 ,27,344,130320,25,8 ,15,4874,654608,1,1 ,27,344,130328,25,8 ,15,4875,654616,1,1 ,27,344,130336,25,8 ,15,4876,654624,1,1 ,20,23957,22150434,1052,0 ,20,23001,20053282,148,0 ,27,344,130344,25,8 ,15,4877,654632,1,1 ,27,344,130352,25,8 ,15,4878,654640,1,1 ,27,344,130360,25,8 ,15,4879,654648,1,1 ,27,344,130368,25,8 ,15,4880,654656,1,1 ,17,923,130371,16,0 ,17,923,10091844,40,0 ,17,923,7470404,48,0 ,17,923,6946116,104,0 ,44,15152,2227524,40,0 ,44,15152,3800388,24,0 ,27,344,130376,25,8 ,15,4881,654664,1,1 ,27,344,130384,25,8 ,15,4882,654672,1,1 ,27,344,130392,25,8 ,15,4883,654680,1,1 ,27,344,130400,25,8 ,15,4884,654688,1,1 ,20,19380,10091874,128,0 ,27,344,130408,25,8 ,15,4885,654696,1,1 ,27,344,130416,25,8 ,15,4886,654704,1,1 ,27,344,130424,25,8 ,15,4887,654712,1,1 ,27,344,130432,25,8 ,15,4888,654720,1,1 ,17,923,9567620,32,0 ,44,15152,2751876,24,0 ,44,15152,130436,24,0 ,17,923,7994756,24,0 ,17,923,8519044,120,0 ,17,923,9043332,24,0 ,27,344,130440,25,8 ,15,4889,654728,1,1 ,27,344,130448,25,8 ,15,4890,654736,1,1 ,27,13324,130456,24,8 ,15,4891,654744,1,1 ,27,13325,130464,24,8 ,15,4892,654752,1,1 ,27,344,130472,25,8 ,15,4893,654760,1,1 ,27,344,130480,25,8 ,15,4894,654768,1,1 ,27,344,130488,25,8 ,15,4895,654776,1,1 ,27,344,130496,25,8 ,15,4896,654784,1,1 ,17,923,130499,16,0 ,44,15152,1179076,64,0 ,17,923,6421956,40,0 ,27,344,130504,25,8 ,15,4897,654792,1,1 ,27,344,130512,25,8 ,15,4898,654800,1,1 ,27,344,130520,25,8 ,15,4899,654808,1,1 ,27,344,130528,25,8 ,15,4900,654816,1,1 ,27,344,130536,25,8 ,15,4901,654824,1,1 ,27,13356,130544,26,8 ,15,4902,654832,1,1 ,27,13356,130552,25,8 ,15,4903,654840,1,1 ,27,13353,130560,25,8 ,15,4904,654848,1,1 ,20,23338,20577794,80,0 ,20,24918,24772098,24,0 ,20,17358,5373442,140,0 ,45,15153,5373444,16,0 ,44,15152,654852,72,0 ,44,15152,3800580,48,0 ,27,13353,130568,26,8 ,15,4905,654856,1,1 ,27,803,130576,26,8 ,15,4906,654864,1,1 ,27,803,130584,26,8 ,15,4907,654872,1,1 ,27,803,130592,26,8 ,15,4908,654880,1,1 ,20,18025,6946338,308,0 ,27,344,130600,25,8 ,15,4909,654888,1,1 ,27,344,130608,25,8 ,15,4910,654896,1,1 ,27,344,130616,25,8 ,15,4911,654904,1,1 ,27,344,130624,25,8 ,15,4912,654912,1,1 ,17,923,130627,40,0 ,17,923,9043524,24,0 ,44,15152,2752068,24,0 ,44,15152,130628,40,0 ,17,923,7994948,48,0 ,27,803,130632,26,8 ,15,4913,654920,1,1 ,27,344,130640,25,8 ,15,4914,654928,1,1 ,27,803,130648,26,8 ,15,4915,654936,1,1 ,27,344,130656,25,8 ,15,4916,654944,1,1 ,27,344,130664,25,8 ,15,4917,654952,1,1 ,27,803,130672,26,8 ,15,4918,654960,1,1 ,27,344,130680,25,8 ,15,4919,654968,1,1 ,27,13362,130688,26,8 ,15,4920,654976,1,1 ,20,20950,15335042,92,0 ,17,923,10092164,32,0 ,44,15152,2227844,64,0 ,45,15153,4324996,40,0 ,45,15153,5373572,40,0 ,17,923,9567876,32,0 ,27,803,130696,26,8 ,15,4921,654984,1,1 ,27,803,130704,26,8 ,15,4922,654992,1,1 ,27,803,130712,26,8 ,15,4923,655000,1,1 ,27,344,130720,25,8 ,15,4924,655008,1,1 ,20,18665,8519330,4488,0 ,27,803,130728,26,8 ,15,4925,655016,1,1 ,27,344,130736,25,8 ,15,4926,655024,1,1 ,27,803,130744,26,8 ,15,4927,655032,1,1 ,27,344,130752,25,8 ,15,4928,655040,1,1 ,20,24919,24772290,24,0 ,17,923,7470788,40,0 ,27,13405,130760,24,8 ,15,4929,655048,1,1 ,27,13404,130768,24,8 ,15,4930,655056,1,1 ,27,344,130776,25,8 ,15,4931,655064,1,1 ,27,13409,130784,24,8 ,15,4932,655072,1,1 ,20,21539,16383714,308,0 ,20,16355,3276514,96,0 ,27,344,130792,25,8 ,15,4933,655080,1,1 ,27,344,130800,25,8 ,15,4934,655088,1,1 ,27,1891,130808,24,8 ,15,4935,655096,1,1 ,27,803,130816,26,8 ,15,4936,655104,1,1 ,17,923,9043716,32,0 ,17,923,6422276,72,0 ,44,15152,2752260,24,0 ,27,13424,130824,24,8 ,15,4937,655112,1,1 ,27,344,130832,25,8 ,15,4938,655120,1,1 ,27,803,130840,26,8 ,15,4939,655128,1,1 ,27,803,130848,26,8 ,15,4940,655136,1,1 ,27,344,130856,23,8 ,15,4941,655144,1,1 ,27,344,130864,23,8 ,15,4942,655152,1,1 ,27,344,130872,25,8 ,15,4943,655160,1,1 ,27,803,130880,26,8 ,15,4944,655168,1,1 ,20,23712,21626690,60,0 ,20,22040,17956674,120,0 ,45,15153,4849476,24,0 ,44,15152,3276612,56,0 ,27,344,130888,23,8 ,15,4945,655176,1,1 ,27,344,130896,23,8 ,15,4946,655184,1,1 ,27,803,130904,26,8 ,15,4947,655192,1,1 ,27,803,130912,26,8 ,15,4948,655200,1,1 ,27,803,130920,26,8 ,15,4949,655208,1,1 ,27,803,130928,26,8 ,15,4950,655216,1,1 ,27,344,130936,25,8 ,15,4951,655224,1,1 ,27,344,130944,25,8 ,15,4952,655232,1,1 ,20,24920,24772482,116,0 ,17,923,130947,40,0 ,17,923,10092420,32,0 ,44,15152,130948,56,0 ,44,15152,3800964,56,0 ,17,923,9568132,32,0 ,27,13446,130952,24,8 ,15,4953,655240,1,1 ,27,4051,130960,23,8 ,15,4954,655248,1,1 ,27,344,130968,25,8 ,15,4955,655256,1,1 ,27,344,130976,25,8 ,15,4956,655264,1,1 ,27,344,130984,26,8 ,15,4957,655272,1,1 ,27,12058,130992,26,8 ,15,4958,655280,1,1 ,27,344,131000,25,8 ,15,4959,655288,1,1 ,27,344,131008,25,8 ,15,4960,655296,1,1 ,20,20251,12713922,864,0 ,20,19981,11141058,52,0 ,17,923,7995332,40,0 ,44,15152,2752452,32,0 ,44,15152,1179588,56,0 ,45,15153,4325316,16,0 ,45,15153,5373892,32,0 ,27,344,131016,25,8 ,15,4961,655304,1,1 ,27,344,131024,25,8 ,15,4962,655312,1,1 ,27,344,131032,25,8 ,15,4963,655320,1,1 ,27,344,131040,25,8 ,15,4964,655328,1,1 ,27,344,131048,25,8 ,15,4965,655336,1,1 ,27,344,131056,25,8 ,15,4966,655344,1,1 ,27,803,131064,26,8 ,15,4967,655352,1,1 ,27,344,131072,25,8 ,15,4968,655360,1,1 ,20,16159,2752514,412,0 ,17,923,9043972,32,0 ,17,923,7471108,40,0 ,45,15153,4849668,56,0 ,27,344,131080,26,8 ,15,4969,655368,1,1 ,27,12058,131088,26,8 ,15,4970,655376,1,1 ,27,163,131096,22,8 ,15,4971,655384,1,1 ,27,163,131104,24,8 ,15,4972,655392,1,1 ,27,344,131112,25,8 ,15,4973,655400,1,1 ,27,344,131120,25,8 ,15,4974,655408,1,1 ,27,344,131128,27,8 ,15,4975,655416,1,1 ,27,344,131136,25,8 ,15,4976,655424,1,1 ,45,15153,4325444,80,0 ,44,15152,655428,32,0 ,27,344,131144,25,8 ,15,4977,655432,1,1 ,27,344,131152,25,8 ,15,4978,655440,1,1 ,27,344,131160,25,8 ,15,4979,655448,1,1 ,27,344,131168,25,8 ,15,4980,655456,1,1 ,20,21249,15859810,44,0 ,27,344,131176,23,8 ,15,4981,655464,1,1 ,27,344,131184,25,8 ,15,4982,655472,1,1 ,27,344,131192,25,8 ,15,4983,655480,1,1 ,27,344,131200,26,8 ,15,4984,655488,1,1 ,20,23339,20578434,80,0 ,17,923,10092676,32,0 ,17,923,6946948,144,0 ,44,15152,2228356,40,0 ,17,923,9568388,32,0 ,27,12058,131208,26,8 ,15,4985,655496,1,1 ,27,163,131216,24,8 ,15,4986,655504,1,1 ,27,163,131224,24,8 ,15,4987,655512,1,1 ,27,344,131232,26,8 ,15,4988,655520,1,1 ,20,22286,18481314,12,0 ,27,12058,131240,26,8 ,15,4989,655528,1,1 ,27,344,131248,25,8 ,15,4990,655536,1,1 ,27,344,131256,24,8 ,15,4991,655544,1,1 ,27,344,131264,25,8 ,15,4992,655552,1,1 ,17,923,131267,32,0 ,45,15153,5374148,32,0 ,44,15152,2752708,24,0 ,27,344,131272,25,8 ,15,4993,655560,1,1 ,27,13549,131280,26,8 ,15,4994,655568,1,1 ,27,344,131288,26,8 ,15,4995,655576,1,1 ,27,12058,131296,26,8 ,15,4996,655584,1,1 ,27,344,131304,25,8 ,15,4997,655592,1,1 ,27,163,131312,24,8 ,15,4998,655600,1,1 ,27,344,131320,25,8 ,15,4999,655608,1,1 ,27,344,131328,25,8 ,15,5000,655616,1,1 ,20,22287,18481410,100,0 ,17,923,9044228,32,0 ,44,15152,3277060,24,0 ,17,923,7995652,40,0 ,27,344,131336,25,8 ,15,5001,655624,1,1 ,27,344,131344,25,8 ,15,5002,655632,1,1 ,27,344,131352,25,8 ,15,5003,655640,1,1 ,27,344,131360,25,8 ,15,5004,655648,1,1 ,20,23713,21627170,48,0 ,27,344,131368,25,8 ,15,5005,655656,1,1 ,27,344,131376,25,8 ,15,5006,655664,1,1 ,27,344,131384,25,8 ,15,5007,655672,1,1 ,27,344,131392,25,8 ,15,5008,655680,1,1 ,20,26295,28442946,216,0 ,17,923,8520004,136,0 ,17,923,7471428,40,0 ,17,923,6422852,24,0 ,44,15152,131396,96,0 ,44,15152,655684,32,0 ,44,15152,3801412,32,0 ,27,344,131400,25,8 ,15,5009,655688,1,1 ,27,344,131408,25,8 ,15,5010,655696,1,1 ,27,344,131416,25,8 ,15,5011,655704,1,1 ,27,344,131424,25,8 ,15,5012,655712,1,1 ,20,20951,15335778,100,0 ,20,18947,9044322,44,0 ,20,19381,10092898,128,0 ,20,19982,11141474,12,0 ,27,344,131432,25,8 ,15,5013,655720,1,1 ,27,344,131440,25,8 ,15,5014,655728,1,1 ,27,344,131448,25,8 ,15,5015,655736,1,1 ,27,344,131456,25,8 ,15,5016,655744,1,1 ,17,923,10092932,24,0 ,44,15152,2752900,24,0 ,44,15152,1180036,128,0 ,17,923,9568644,24,0 ,27,344,131464,25,8 ,15,5017,655752,1,1 ,27,344,131472,25,8 ,15,5018,655760,1,1 ,27,344,131480,23,8 ,15,5019,655768,1,1 ,27,344,131488,25,8 ,15,5020,655776,1,1 ,27,344,131496,25,8 ,15,5021,655784,1,1 ,27,344,131504,25,8 ,15,5022,655792,1,1 ,27,13869,131512,24,8 ,15,5023,655800,1,1 ,27,344,131520,25,8 ,15,5024,655808,1,1 ,20,23002,20054466,112,0 ,20,19983,11141570,256,0 ,20,21250,15860162,324,0 ,17,923,131523,40,0 ,45,15153,5374404,32,0 ,44,15152,2228676,80,0 ,44,15152,3277252,64,0 ,45,15153,4850116,24,0 ,27,3179,131528,23,8 ,15,5025,655816,1,1 ,27,163,131536,22,8 ,15,5026,655824,1,1 ,27,344,131544,25,8 ,15,5027,655832,1,1 ,27,344,131552,25,8 ,15,5028,655840,1,1 ,20,16356,3277282,92,0 ,27,344,131560,25,8 ,15,5029,655848,1,1 ,27,344,131568,25,8 ,15,5030,655856,1,1 ,27,344,131576,25,8 ,15,5031,655864,1,1 ,27,344,131584,25,8 ,15,5032,655872,1,1 ,17,923,9044484,24,0 ,17,923,6423044,48,0 ,27,14001,131592,26,8 ,15,5033,655880,1,1 ,27,344,131600,25,8 ,15,5034,655888,1,1 ,27,344,131608,25,8 ,15,5035,655896,1,1 ,27,344,131616,25,8 ,15,5036,655904,1,1 ,27,344,131624,25,8 ,15,5037,655912,1,1 ,27,344,131632,25,8 ,15,5038,655920,1,1 ,27,344,131640,25,8 ,15,5039,655928,1,1 ,27,344,131648,25,8 ,15,5040,655936,1,1 ,17,923,10093124,24,0 ,44,15152,2753092,16,0 ,44,15152,655940,16,0 ,44,15152,3801668,192,0 ,17,923,7995972,40,0 ,17,923,9568836,32,0 ,27,344,131656,25,8 ,15,5041,655944,1,1 ,27,344,131664,25,8 ,15,5042,655952,1,1 ,27,344,131672,25,8 ,15,5043,655960,1,1 ,27,344,131680,25,8 ,15,5044,655968,1,1 ,20,24360,23200354,144,0 ,20,17359,5374562,60,0 ,27,344,131688,25,8 ,15,5045,655976,1,1 ,27,344,131696,25,8 ,15,5046,655984,1,1 ,27,344,131704,25,8 ,15,5047,655992,1,1 ,27,344,131712,25,8 ,15,5048,656000,1,1 ,45,15153,4850308,24,0 ,17,923,7471748,48,0 ,27,344,131720,25,8 ,15,5049,656008,1,1 ,27,344,131728,25,8 ,15,5050,656016,1,1 ,27,803,131736,26,8 ,15,5051,656024,1,1 ,27,803,131744,26,8 ,15,5052,656032,1,1 ,20,23714,21627554,96,0 ,27,14079,131752,24,8 ,15,5053,656040,1,1 ,27,344,131760,25,8 ,15,5054,656048,1,1 ,27,344,131768,25,8 ,15,5055,656056,1,1 ,27,344,131776,25,8 ,15,5056,656064,1,1 ,20,18948,9044674,216,0 ,17,923,9044676,40,0 ,44,15152,2753220,48,0 ,44,15152,656068,48,0 ,45,15153,4326084,16,0 ,45,15153,5374660,24,0 ,27,163,131784,24,8 ,15,5057,656072,1,1 ,27,344,131792,25,8 ,15,5058,656080,1,1 ,27,344,131800,23,8 ,15,5059,656088,1,1 ,27,344,131808,25,8 ,15,5060,656096,1,1 ,20,18479,7996130,12,0 ,27,344,131816,26,8 ,15,5061,656104,1,1 ,27,12058,131824,26,8 ,15,5062,656112,1,1 ,27,163,131832,24,8 ,15,5063,656120,1,1 ,27,163,131840,24,8 ,15,5064,656128,1,1 ,20,23340,20579074,80,0 ,20,22041,17957634,24,0 ,17,923,131843,16,0 ,17,923,10093316,24,0 ,27,344,131848,25,8 ,15,5065,656136,1,1 ,27,344,131856,26,8 ,15,5066,656144,1,1 ,27,12058,131864,26,8 ,15,5067,656152,1,1 ,27,344,131872,25,8 ,15,5068,656160,1,1 ,20,24921,24773410,144,0 ,27,344,131880,26,8 ,15,5069,656168,1,1 ,27,12058,131888,26,8 ,15,5070,656176,1,1 ,27,344,131896,26,8 ,15,5071,656184,1,1 ,27,12058,131904,26,8 ,15,5072,656192,1,1 ,20,18480,7996226,52,0 ,20,15370,656194,12,0 ,17,923,9569092,32,0 ,45,15153,4326212,16,0 ,45,15153,4850500,32,0 ,27,163,131912,24,8 ,15,5073,656200,1,1 ,27,163,131920,24,8 ,15,5074,656208,1,1 ,27,1813,131928,24,8 ,15,5075,656216,1,1 ,27,344,131936,26,8 ,15,5076,656224,1,1 ,27,12058,131944,26,8 ,15,5077,656232,1,1 ,27,163,131952,24,8 ,15,5078,656240,1,1 ,27,163,131960,24,8 ,15,5079,656248,1,1 ,27,344,131968,25,8 ,15,5080,656256,1,1 ,17,923,131971,32,0 ,17,923,7996292,40,0 ,17,923,6423428,96,0 ,45,15153,5374852,24,0 ,27,344,131976,23,8 ,15,5081,656264,1,1 ,27,344,131984,26,8 ,15,5082,656272,1,1 ,27,12058,131992,26,8 ,15,5083,656280,1,1 ,27,163,132000,24,8 ,15,5084,656288,1,1 ,20,15371,656290,56,0 ,27,163,132008,24,8 ,15,5085,656296,1,1 ,27,344,132016,25,8 ,15,5086,656304,1,1 ,27,344,132024,25,8 ,15,5087,656312,1,1 ,27,803,132032,26,8 ,15,5088,656320,1,1 ,20,22042,17957826,548,0 ,17,923,10093508,32,0 ,44,15152,3277764,56,0 ,45,15153,4326340,24,0 ,27,803,132040,26,8 ,15,5089,656328,1,1 ,27,14160,132048,21,8 ,15,5090,656336,1,1 ,27,163,132056,28,8 ,15,5091,656344,1,1 ,27,163,132064,24,8 ,15,5092,656352,1,1 ,27,803,132072,26,8 ,15,5093,656360,1,1 ,27,344,132080,25,8 ,15,5094,656368,1,1 ,27,14192,132088,24,8 ,15,5095,656376,1,1 ,27,14166,132096,27,8 ,15,5096,656384,1,1 ,17,923,9044996,16,0 ,17,923,7472132,32,0 ,27,14167,132104,24,8 ,15,5097,656392,1,1 ,27,14169,132112,24,8 ,15,5098,656400,1,1 ,27,14170,132120,24,8 ,15,5099,656408,1,1 ,27,803,132128,26,8 ,15,5100,656416,1,1 ,20,22288,18482210,700,0 ,27,14180,132136,18,8 ,15,5101,656424,1,1 ,27,14183,132144,24,8 ,15,5102,656432,1,1 ,27,344,132152,25,8 ,15,5103,656440,1,1 ,27,803,132160,26,8 ,15,5104,656448,1,1 ,20,17360,5375042,136,0 ,17,923,9569348,32,0 ,44,15152,2753604,24,0 ,44,15152,2229316,56,0 ,44,15152,132164,24,0 ,44,15152,656452,72,0 ,45,15153,4850756,120,0 ,45,15153,5375044,24,0 ,27,344,132168,25,8 ,15,5105,656456,1,1 ,27,344,132176,25,8 ,15,5106,656464,1,1 ,27,803,132184,26,8 ,15,5107,656472,1,1 ,27,1127,132192,24,8 ,15,5108,656480,1,1 ,27,3379,132200,26,8 ,15,5109,656488,1,1 ,27,14191,132208,24,8 ,15,5110,656496,1,1 ,27,344,132216,25,8 ,15,5111,656504,1,1 ,27,344,132224,25,8 ,15,5112,656512,1,1 ,20,20952,15336578,268,0 ,17,923,132227,24,0 ,17,923,9045124,40,0 ,45,15153,4326532,24,0 ,27,803,132232,26,8 ,15,5113,656520,1,1 ,27,14198,132240,22,8 ,15,5114,656528,1,1 ,27,803,132248,26,8 ,15,5115,656536,1,1 ,27,344,132256,25,8 ,15,5116,656544,1,1 ,27,344,132264,25,8 ,15,5117,656552,1,1 ,27,803,132272,26,8 ,15,5118,656560,1,1 ,27,803,132280,26,8 ,15,5119,656568,1,1 ,27,803,132288,26,8 ,15,5120,656576,1,1 ,20,16357,3278018,124,0 ,20,15804,1705154,84,0 ,17,923,10093764,32,0 ,17,923,7996612,32,0 ,27,803,132296,26,8 ,15,5121,656584,1,1 ,27,803,132304,26,8 ,15,5122,656592,1,1 ,27,344,132312,25,8 ,15,5123,656600,1,1 ,27,163,132320,22,8 ,15,5124,656608,1,1 ,20,18481,7996642,88,0 ,27,344,132328,25,8 ,15,5125,656616,1,1 ,27,14206,132336,22,8 ,15,5126,656624,1,1 ,27,14208,132344,22,8 ,15,5127,656632,1,1 ,27,803,132352,26,8 ,15,5128,656640,1,1 ,45,15153,5375236,16,0 ,17,923,7472388,48,0 ,17,923,6948100,32,0 ,44,15152,2753796,24,0 ,44,15152,132356,16,0 ,27,3503,132360,24,8 ,15,5129,656648,1,1 ,27,109,132368,23,8 ,15,5130,656656,1,1 ,27,14211,132376,25,8 ,15,5131,656664,1,1 ,27,344,132384,25,8 ,15,5132,656672,1,1 ,27,344,132392,25,8 ,15,5133,656680,1,1 ,27,344,132400,25,8 ,15,5134,656688,1,1 ,27,344,132408,25,8 ,15,5135,656696,1,1 ,27,344,132416,25,8 ,15,5136,656704,1,1 ,20,23003,20055362,80,0 ,17,923,132419,16,0 ,17,923,9569604,32,0 ,45,15153,4326724,64,0 ,27,344,132424,25,8 ,15,5137,656712,1,1 ,27,344,132432,25,8 ,15,5138,656720,1,1 ,27,344,132440,26,8 ,15,5139,656728,1,1 ,27,12058,132448,26,8 ,15,5140,656736,1,1 ,20,24527,23725410,512,0 ,20,25927,27395426,372,0 ,20,15372,656738,876,0 ,20,19382,10093922,64,0 ,27,344,132456,25,8 ,15,5141,656744,1,1 ,27,344,132464,25,8 ,15,5142,656752,1,1 ,27,344,132472,25,8 ,15,5143,656760,1,1 ,27,344,132480,26,8 ,15,5144,656768,1,1 ,20,23341,20579714,80,0 ,17,923,8521092,32,0 ,44,15152,132484,16,0 ,44,15152,1181060,56,0 ,44,15152,3278212,72,0 ,45,15153,5375364,24,0 ,27,12058,132488,26,8 ,15,5145,656776,1,1 ,27,163,132496,24,8 ,15,5146,656784,1,1 ,27,163,132504,24,8 ,15,5147,656792,1,1 ,27,344,132512,25,8 ,15,5148,656800,1,1 ,20,23715,21628322,60,0 ,27,163,132520,24,8 ,15,5149,656808,1,1 ,27,163,132528,24,8 ,15,5150,656816,1,1 ,27,344,132536,26,8 ,15,5151,656824,1,1 ,27,12058,132544,26,8 ,15,5152,656832,1,1 ,20,26124,27919810,400,0 ,17,923,132547,16,0 ,17,923,10094020,32,0 ,44,15152,2753988,16,0 ,17,923,7996868,24,0 ,17,923,9045444,40,0 ,27,344,132552,25,8 ,15,5153,656840,1,1 ,27,344,132560,25,8 ,15,5154,656848,1,1 ,27,344,132568,25,8 ,15,5155,656856,1,1 ,27,344,132576,25,8 ,15,5156,656864,1,1 ,20,24180,22676962,156,0 ,27,14252,132584,24,8 ,15,5157,656872,1,1 ,27,344,132592,25,8 ,15,5158,656880,1,1 ,27,344,132600,25,8 ,15,5159,656888,1,1 ,27,344,132608,25,8 ,15,5160,656896,1,1 ,44,15152,132612,16,0 ,17,923,6948356,32,0 ,44,15152,2229764,24,0 ,27,344,132616,25,8 ,15,5161,656904,1,1 ,27,344,132624,25,8 ,15,5162,656912,1,1 ,27,344,132632,25,8 ,15,5163,656920,1,1 ,27,344,132640,25,8 ,15,5164,656928,1,1 ,27,344,132648,25,8 ,15,5165,656936,1,1 ,27,344,132656,25,8 ,15,5166,656944,1,1 ,27,344,132664,25,8 ,15,5167,656952,1,1 ,27,344,132672,25,8 ,15,5168,656960,1,1 ,17,923,132675,16,0 ,17,923,9569860,32,0 ,44,15152,2754116,24,0 ,45,15153,5375556,32,0 ,27,344,132680,25,8 ,15,5169,656968,1,1 ,27,344,132688,25,8 ,15,5170,656976,1,1 ,27,344,132696,25,8 ,15,5171,656984,1,1 ,27,803,132704,26,8 ,15,5172,656992,1,1 ,27,344,132712,25,8 ,15,5173,657000,1,1 ,27,163,132720,24,8 ,15,5174,657008,1,1 ,27,344,132728,25,8 ,15,5175,657016,1,1 ,27,803,132736,26,8 ,15,5176,657024,1,1 ,17,923,8521348,32,0 ,17,923,7472772,40,0 ,17,923,6424196,32,0 ,44,15152,1705604,32,0 ,44,15152,132740,16,0 ,44,15152,657028,16,0 ,17,923,7997060,64,0 ,27,344,132744,25,8 ,15,5177,657032,1,1 ,27,163,132752,22,8 ,15,5178,657040,1,1 ,27,803,132760,26,8 ,15,5179,657048,1,1 ,27,803,132768,26,8 ,15,5180,657056,1,1 ,27,803,132776,26,8 ,15,5181,657064,1,1 ,27,344,132784,25,8 ,15,5182,657072,1,1 ,27,803,132792,26,8 ,15,5183,657080,1,1 ,27,344,132800,25,8 ,15,5184,657088,1,1 ,17,923,132803,16,0 ,17,923,10094276,32,0 ,44,15152,2229956,40,0 ,27,803,132808,26,8 ,15,5185,657096,1,1 ,27,1698,132816,25,8 ,15,5186,657104,1,1 ,27,803,132824,26,8 ,15,5187,657112,1,1 ,27,803,132832,26,8 ,15,5188,657120,1,1 ,20,24361,23201506,24,0 ,27,344,132840,26,8 ,15,5189,657128,1,1 ,27,12058,132848,26,8 ,15,5190,657136,1,1 ,27,163,132856,22,8 ,15,5191,657144,1,1 ,27,344,132864,25,8 ,15,5192,657152,1,1 ,17,923,9045764,80,0 ,17,923,6948612,40,0 ,44,15152,2754308,24,0 ,44,15152,132868,72,0 ,44,15152,657156,32,0 ,27,344,132872,25,8 ,15,5193,657160,1,1 ,27,803,132880,26,8 ,15,5194,657168,1,1 ,27,803,132888,26,8 ,15,5195,657176,1,1 ,27,803,132896,26,8 ,15,5196,657184,1,1 ,27,344,132904,25,8 ,15,5197,657192,1,1 ,27,344,132912,26,8 ,15,5198,657200,1,1 ,27,12058,132920,26,8 ,15,5199,657208,1,1 ,27,344,132928,25,8 ,15,5200,657216,1,1 ,17,923,132931,32,0 ,17,923,9570116,24,0 ,44,15152,1181508,32,0 ,45,15153,4327236,24,0 ,45,15153,5375812,32,0 ,27,14079,132936,24,8 ,15,5201,657224,1,1 ,27,344,132944,25,8 ,15,5202,657232,1,1 ,27,344,132952,25,8 ,15,5203,657240,1,1 ,27,344,132960,25,8 ,15,5204,657248,1,1 ,20,19383,10094434,100,0 ,20,15805,1705826,84,0 ,27,344,132968,25,8 ,15,5205,657256,1,1 ,27,344,132976,25,8 ,15,5206,657264,1,1 ,27,163,132984,22,8 ,15,5207,657272,1,1 ,27,344,132992,25,8 ,15,5208,657280,1,1 ,20,23716,21628802,224,0 ,20,22709,19531650,12,0 ,17,923,8521604,56,0 ,17,923,6424452,40,0 ,44,15152,1705860,40,0 ,27,344,133000,26,8 ,15,5209,657288,1,1 ,27,12058,133008,26,8 ,15,5210,657296,1,1 ,27,344,133016,26,8 ,15,5211,657304,1,1 ,27,12058,133024,26,8 ,15,5212,657312,1,1 ,20,24362,23201698,132,0 ,20,24922,24774562,48,0 ,20,18482,7997346,232,0 ,27,344,133032,25,8 ,15,5213,657320,1,1 ,27,344,133040,25,8 ,15,5214,657328,1,1 ,27,344,133048,25,8 ,15,5215,657336,1,1 ,27,344,133056,25,8 ,15,5216,657344,1,1 ,20,23004,20056002,112,0 ,20,18026,6948802,212,0 ,20,20879,14288834,112,0 ,17,923,10094532,40,0 ,17,923,7473092,32,0 ,44,15152,2754500,24,0 ,44,15152,3278788,24,0 ,27,163,133064,22,8 ,15,5217,657352,1,1 ,27,344,133072,25,8 ,15,5218,657360,1,1 ,27,803,133080,26,8 ,15,5219,657368,1,1 ,27,344,133088,25,8 ,15,5220,657376,1,1 ,20,22710,19531746,544,0 ,27,344,133096,25,8 ,15,5221,657384,1,1 ,27,344,133104,25,8 ,15,5222,657392,1,1 ,27,344,133112,25,8 ,15,5223,657400,1,1 ,27,803,133120,26,8 ,15,5224,657408,1,1 ,20,23342,20580354,80,0 ,20,26296,28444674,328,0 ,17,923,9570308,32,0 ,44,15152,2230276,32,0 ,44,15152,657412,24,0 ,45,15153,4327428,24,0 ,45,15153,4851716,32,0 ,27,14374,133128,21,8 ,15,5225,657416,1,1 ,27,14374,133136,26,8 ,15,5226,657424,1,1 ,27,163,133144,22,8 ,15,5227,657432,1,1 ,27,163,133152,22,8 ,15,5228,657440,1,1 ,27,344,133160,25,8 ,15,5229,657448,1,1 ,27,344,133168,25,8 ,15,5230,657456,1,1 ,27,344,133176,25,8 ,15,5231,657464,1,1 ,27,344,133184,25,8 ,15,5232,657472,1,1 ,20,20216,12191810,4932,0 ,17,923,133187,24,0 ,45,15153,5376068,40,0 ,17,923,6948932,144,0 ,44,15152,1181764,56,0 ,44,15152,3803204,16,0 ,27,344,133192,25,8 ,15,5233,657480,1,1 ,27,344,133200,25,8 ,15,5234,657488,1,1 ,27,344,133208,24,8 ,15,5235,657496,1,1 ,27,344,133216,25,8 ,15,5236,657504,1,1 ,27,344,133224,25,8 ,15,5237,657512,1,1 ,27,163,133232,22,8 ,15,5238,657520,1,1 ,27,1891,133240,24,8 ,15,5239,657528,1,1 ,27,14387,133248,24,8 ,15,5240,657536,1,1 ,20,21540,16386178,312,0 ,20,17361,5376130,976,0 ,17,923,7997572,32,0 ,44,15152,2754692,40,0 ,44,15152,3278980,32,0 ,27,14388,133256,24,8 ,15,5241,657544,1,1 ,27,344,133264,25,8 ,15,5242,657552,1,1 ,27,14391,133272,22,8 ,15,5243,657560,1,1 ,27,14393,133280,25,8 ,15,5244,657568,1,1 ,20,16358,3279010,8,0 ,20,15223,133282,1264,0 ,27,14394,133288,22,8 ,15,5245,657576,1,1 ,27,14400,133296,27,8 ,15,5246,657584,1,1 ,27,14400,133304,26,8 ,15,5247,657592,1,1 ,27,344,133312,25,8 ,15,5248,657600,1,1 ,45,15153,4327620,24,0 ,17,923,7473348,40,0 ,17,923,6424772,48,0 ,44,15152,1706180,64,0 ,44,15152,657604,32,0 ,44,15152,3803332,32,0 ,27,344,133320,25,8 ,15,5249,657608,1,1 ,27,344,133328,25,8 ,15,5250,657616,1,1 ,27,14488,133336,26,8 ,15,5251,657624,1,1 ,27,163,133344,24,8 ,15,5252,657632,1,1 ,20,16359,3279074,164,0 ,27,2723,133352,26,8 ,15,5253,657640,1,1 ,27,163,133360,24,8 ,15,5254,657648,1,1 ,27,344,133368,25,8 ,15,5255,657656,1,1 ,27,163,133376,24,8 ,15,5256,657664,1,1 ,17,923,133379,32,0 ,17,923,10094852,32,0 ,44,15152,2230532,104,0 ,45,15153,4851972,24,0 ,17,923,9570564,24,0 ,27,344,133384,25,8 ,15,5257,657672,1,1 ,27,344,133392,25,8 ,15,5258,657680,1,1 ,27,344,133400,25,8 ,15,5259,657688,1,1 ,27,344,133408,25,8 ,15,5260,657696,1,1 ,20,24923,24774946,36,0 ,27,163,133416,24,8 ,15,5261,657704,1,1 ,27,163,133424,22,8 ,15,5262,657712,1,1 ,27,163,133432,22,8 ,15,5263,657720,1,1 ,27,344,133440,25,8 ,15,5264,657728,1,1 ,20,17756,6424898,752,0 ,17,923,8522052,176,0 ,44,15152,133444,16,0 ,27,344,133448,25,8 ,15,5265,657736,1,1 ,27,344,133456,25,8 ,15,5266,657744,1,1 ,27,14606,133464,21,8 ,15,5267,657752,1,1 ,27,2312,133472,21,8 ,15,5268,657760,1,1 ,20,20544,13240674,160,0 ,27,14620,133480,21,8 ,15,5269,657768,1,1 ,27,2312,133488,21,8 ,15,5270,657776,1,1 ,27,14623,133496,21,8 ,15,5271,657784,1,1 ,27,14624,133504,21,8 ,15,5272,657792,1,1 ,20,18949,9046402,96,0 ,17,923,9046404,72,0 ,44,15152,3279236,64,0 ,45,15153,4327812,24,0 ,45,15153,5376388,56,0 ,17,923,7997828,32,0 ,27,14625,133512,21,8 ,15,5273,657800,1,1 ,27,2312,133520,21,8 ,15,5274,657808,1,1 ,27,14633,133528,22,8 ,15,5275,657816,1,1 ,27,14636,133536,22,8 ,15,5276,657824,1,1 ,27,14638,133544,22,8 ,15,5277,657832,1,1 ,27,14641,133552,22,8 ,15,5278,657840,1,1 ,27,14643,133560,22,8 ,15,5279,657848,1,1 ,27,14645,133568,22,8 ,15,5280,657856,1,1 ,20,19984,11143618,116,0 ,17,923,9570756,32,0 ,44,15152,2755012,40,0 ,44,15152,133572,48,0 ,44,15152,657860,24,0 ,44,15152,3803588,416,0 ,45,15153,4852164,32,0 ,27,14647,133576,22,8 ,15,5281,657864,1,1 ,27,14649,133584,22,8 ,15,5282,657872,1,1 ,27,255,133592,26,8 ,15,5283,657880,1,1 ,27,163,133600,22,8 ,15,5284,657888,1,1 ,27,14707,133608,24,8 ,15,5285,657896,1,1 ,27,14708,133616,26,8 ,15,5286,657904,1,1 ,27,163,133624,26,8 ,15,5287,657912,1,1 ,27,163,133632,26,8 ,15,5288,657920,1,1 ,20,15806,1706498,84,0 ,17,923,133635,24,0 ,17,923,10095108,32,0 ,17,923,7473668,24,0 ,44,15152,1182212,24,0 ,27,163,133640,24,8 ,15,5289,657928,1,1 ,27,163,133648,22,8 ,15,5290,657936,1,1 ,27,163,133656,22,8 ,15,5291,657944,1,1 ,27,163,133664,24,8 ,15,5292,657952,1,1 ,27,163,133672,24,8 ,15,5293,657960,1,1 ,27,163,133680,24,8 ,15,5294,657968,1,1 ,27,163,133688,22,8 ,15,5295,657976,1,1 ,27,163,133696,24,8 ,15,5296,657984,1,1 ,20,17528,5900866,48,0 ,20,24924,24775234,124,0 ,45,15153,4328004,24,0 ,17,923,6425156,48,0 ,27,163,133704,24,8 ,15,5297,657992,1,1 ,27,163,133712,22,8 ,15,5298,658000,1,1 ,27,163,133720,24,8 ,15,5299,658008,1,1 ,27,163,133728,22,8 ,15,5300,658016,1,1 ,27,163,133736,24,8 ,15,5301,658024,1,1 ,27,163,133744,24,8 ,15,5302,658032,1,1 ,27,163,133752,22,8 ,15,5303,658040,1,1 ,27,163,133760,24,8 ,15,5304,658048,1,1 ,20,23343,20580994,76,0 ,20,19384,10095234,224,0 ,17,923,7998084,32,0 ,44,15152,658052,24,0 ,27,163,133768,24,8 ,15,5305,658056,1,1 ,27,163,133776,24,8 ,15,5306,658064,1,1 ,27,163,133784,24,8 ,15,5307,658072,1,1 ,27,163,133792,24,8 ,15,5308,658080,1,1 ,20,25708,26872482,272,0 ,27,163,133800,24,8 ,15,5309,658088,1,1 ,27,163,133808,24,8 ,15,5310,658096,1,1 ,27,163,133816,22,8 ,15,5311,658104,1,1 ,27,163,133824,24,8 ,15,5312,658112,1,1 ,20,24181,22678210,76,0 ,17,923,133827,32,0 ,17,923,9571012,48,0 ,17,923,7473860,24,0 ,44,15152,1706692,352,0 ,44,15152,1182404,136,0 ,45,15153,4852420,32,0 ,27,163,133832,26,8 ,15,5313,658120,1,1 ,27,163,133840,24,8 ,15,5314,658128,1,1 ,27,163,133848,26,8 ,15,5315,658136,1,1 ,27,163,133856,22,8 ,15,5316,658144,1,1 ,27,163,133864,24,8 ,15,5317,658152,1,1 ,27,163,133872,24,8 ,15,5318,658160,1,1 ,27,163,133880,22,8 ,15,5319,658168,1,1 ,27,163,133888,24,8 ,15,5320,658176,1,1 ,17,923,10095364,24,0 ,44,15152,2755332,24,0 ,45,15153,4328196,40,0 ,27,163,133896,24,8 ,15,5321,658184,1,1 ,27,163,133904,22,8 ,15,5322,658192,1,1 ,27,163,133912,22,8 ,15,5323,658200,1,1 ,27,163,133920,24,8 ,15,5324,658208,1,1 ,27,163,133928,22,8 ,15,5325,658216,1,1 ,27,163,133936,24,8 ,15,5326,658224,1,1 ,27,163,133944,24,8 ,15,5327,658232,1,1 ,27,163,133952,22,8 ,15,5328,658240,1,1 ,20,23005,20056898,80,0 ,20,20880,14289730,4508,0 ,45,15153,5376836,64,0 ,44,15152,133956,24,0 ,44,15152,658244,24,0 ,27,163,133960,24,8 ,15,5329,658248,1,1 ,27,163,133968,22,8 ,15,5330,658256,1,1 ,27,163,133976,22,8 ,15,5331,658264,1,1 ,27,163,133984,22,8 ,15,5332,658272,1,1 ,27,163,133992,22,8 ,15,5333,658280,1,1 ,27,163,134000,22,8 ,15,5334,658288,1,1 ,27,163,134008,22,8 ,15,5335,658296,1,1 ,27,163,134016,22,8 ,15,5336,658304,1,1 ,17,923,7998340,24,0 ,17,923,7474052,24,0 ,44,15152,3279748,24,0 ,27,163,134024,24,8 ,15,5337,658312,1,1 ,27,163,134032,26,8 ,15,5338,658320,1,1 ,27,163,134040,24,8 ,15,5339,658328,1,1 ,27,163,134048,24,8 ,15,5340,658336,1,1 ,27,163,134056,22,8 ,15,5341,658344,1,1 ,27,163,134064,22,8 ,15,5342,658352,1,1 ,27,163,134072,24,8 ,15,5343,658360,1,1 ,27,163,134080,24,8 ,15,5344,658368,1,1 ,20,24363,23202754,608,0 ,20,17529,5901250,152,0 ,17,923,134083,32,0 ,17,923,10095556,24,0 ,17,923,6425540,40,0 ,44,15152,2755524,24,0 ,45,15153,4852676,24,0 ,17,923,9046980,40,0 ,27,163,134088,22,8 ,15,5345,658376,1,1 ,27,163,134096,24,8 ,15,5346,658384,1,1 ,27,163,134104,22,8 ,15,5347,658392,1,1 ,27,163,134112,24,8 ,15,5348,658400,1,1 ,20,21251,15862754,192,0 ,20,16972,4328418,280,0 ,27,630,134120,24,8 ,15,5349,658408,1,1 ,27,163,134128,24,8 ,15,5350,658416,1,1 ,27,163,134136,22,8 ,15,5351,658424,1,1 ,27,163,134144,24,8 ,15,5352,658432,1,1 ,44,15152,658436,24,0 ,44,15152,134148,32,0 ,27,163,134152,24,8 ,15,5353,658440,1,1 ,27,163,134160,24,8 ,15,5354,658448,1,1 ,27,163,134168,24,8 ,15,5355,658456,1,1 ,27,163,134176,24,8 ,15,5356,658464,1,1 ,27,163,134184,22,8 ,15,5357,658472,1,1 ,27,163,134192,24,8 ,15,5358,658480,1,1 ,27,163,134200,26,8 ,15,5359,658488,1,1 ,27,163,134208,24,8 ,15,5360,658496,1,1 ,17,923,9571396,24,0 ,17,923,7474244,48,0 ,44,15152,2231364,88,0 ,44,15152,3279940,24,0 ,45,15153,4328516,64,0 ,17,923,7998532,24,0 ,27,163,134216,24,8 ,15,5361,658504,1,1 ,27,163,134224,26,8 ,15,5362,658512,1,1 ,27,163,134232,24,8 ,15,5363,658520,1,1 ,27,163,134240,24,8 ,15,5364,658528,1,1 ,27,163,134248,24,8 ,15,5365,658536,1,1 ,27,163,134256,22,8 ,15,5366,658544,1,1 ,27,163,134264,22,8 ,15,5367,658552,1,1 ,27,163,134272,26,8 ,15,5368,658560,1,1 ,20,18950,9047170,208,0 ,17,923,10095748,24,0 ,44,15152,2755716,24,0 ,45,15153,4852868,56,0 ,27,163,134280,24,8 ,15,5369,658568,1,1 ,27,163,134288,24,8 ,15,5370,658576,1,1 ,27,163,134296,24,8 ,15,5371,658584,1,1 ,27,163,134304,24,8 ,15,5372,658592,1,1 ,20,15807,1707170,84,0 ,27,163,134312,22,8 ,15,5373,658600,1,1 ,27,163,134320,22,8 ,15,5374,658608,1,1 ,27,163,134328,24,8 ,15,5375,658616,1,1 ,27,163,134336,22,8 ,15,5376,658624,1,1 ,17,923,134339,16,0 ,44,15152,658628,32,0 ,17,923,6950084,32,0 ,27,163,134344,24,8 ,15,5377,658632,1,1 ,27,163,134352,24,8 ,15,5378,658640,1,1 ,27,163,134360,24,8 ,15,5379,658648,1,1 ,27,163,134368,24,8 ,15,5380,658656,1,1 ,20,23344,20581602,24,0 ,20,16160,2755810,56,0 ,20,20953,15338722,228,0 ,27,163,134376,22,8 ,15,5381,658664,1,1 ,27,163,134384,24,8 ,15,5382,658672,1,1 ,27,163,134392,24,8 ,15,5383,658680,1,1 ,27,163,134400,22,8 ,15,5384,658688,1,1 ,17,923,9571588,32,0 ,17,923,6425860,40,0 ,44,15152,134404,112,0 ,44,15152,3280132,24,0 ,17,923,7998724,32,0 ,17,923,9047300,40,0 ,27,163,134408,22,8 ,15,5385,658696,1,1 ,27,163,134416,24,8 ,15,5386,658704,1,1 ,27,163,134424,24,8 ,15,5387,658712,1,1 ,27,163,134432,22,8 ,15,5388,658720,1,1 ,20,24182,22678818,12,0 ,27,163,134440,22,8 ,15,5389,658728,1,1 ,27,163,134448,22,8 ,15,5390,658736,1,1 ,27,163,134456,22,8 ,15,5391,658744,1,1 ,27,163,134464,24,8 ,15,5392,658752,1,1 ,17,923,134467,40,0 ,17,923,10095940,24,0 ,44,15152,2755908,24,0 ,45,15153,5377348,56,0 ,27,163,134472,24,8 ,15,5393,658760,1,1 ,27,163,134480,24,8 ,15,5394,658768,1,1 ,27,163,134488,24,8 ,15,5395,658776,1,1 ,27,163,134496,22,8 ,15,5396,658784,1,1 ,20,19985,11144546,136,0 ,27,163,134504,24,8 ,15,5397,658792,1,1 ,27,163,134512,24,8 ,15,5398,658800,1,1 ,27,163,134520,24,8 ,15,5399,658808,1,1 ,27,163,134528,24,8 ,15,5400,658816,1,1 ,20,24183,22678914,780,0 ,20,25508,26348930,764,0 ,27,163,134536,22,8 ,15,5401,658824,1,1 ,27,163,134544,22,8 ,15,5402,658832,1,1 ,27,163,134552,24,8 ,15,5403,658840,1,1 ,27,163,134560,24,8 ,15,5404,658848,1,1 ,20,23345,20581794,24,0 ,27,163,134568,24,8 ,15,5405,658856,1,1 ,27,163,134576,24,8 ,15,5406,658864,1,1 ,27,163,134584,26,8 ,15,5407,658872,1,1 ,27,163,134592,24,8 ,15,5408,658880,1,1 ,20,23006,20057538,80,0 ,44,15152,3280324,24,0 ,17,923,7474628,32,0 ,17,923,6950340,24,0 ,44,15152,658884,80,0 ,27,163,134600,22,8 ,15,5409,658888,1,1 ,27,163,134608,22,8 ,15,5410,658896,1,1 ,27,163,134616,24,8 ,15,5411,658904,1,1 ,27,163,134624,24,8 ,15,5412,658912,1,1 ,27,163,134632,24,8 ,15,5413,658920,1,1 ,27,163,134640,22,8 ,15,5414,658928,1,1 ,27,163,134648,22,8 ,15,5415,658936,1,1 ,27,163,134656,24,8 ,15,5416,658944,1,1 ,20,16360,3280386,80,0 ,17,923,10096132,24,0 ,44,15152,2756100,32,0 ,17,923,7998980,32,0 ,17,923,9571844,32,0 ,27,163,134664,22,8 ,15,5417,658952,1,1 ,27,163,134672,22,8 ,15,5418,658960,1,1 ,27,163,134680,24,8 ,15,5419,658968,1,1 ,27,163,134688,24,8 ,15,5420,658976,1,1 ,20,24925,24776226,124,0 ,27,163,134696,24,8 ,15,5421,658984,1,1 ,27,163,134704,24,8 ,15,5422,658992,1,1 ,27,163,134712,22,8 ,15,5423,659000,1,1 ,27,163,134720,24,8 ,15,5424,659008,1,1 ,20,18217,7474754,12,0 ,17,923,9047620,72,0 ,17,923,6426180,40,0 ,45,15153,4329028,32,0 ,45,15153,4853316,40,0 ,27,163,134728,24,8 ,15,5425,659016,1,1 ,27,163,134736,24,8 ,15,5426,659024,1,1 ,27,163,134744,22,8 ,15,5427,659032,1,1 ,27,163,134752,24,8 ,15,5428,659040,1,1 ,20,23346,20581986,64,0 ,20,18027,6950498,12,0 ,20,20545,13241954,304,0 ,27,163,134760,22,8 ,15,5429,659048,1,1 ,27,163,134768,24,8 ,15,5430,659056,1,1 ,27,163,134776,22,8 ,15,5431,659064,1,1 ,27,163,134784,24,8 ,15,5432,659072,1,1 ,20,23717,21630594,132,0 ,17,923,134787,40,0 ,44,15152,3280516,16,0 ,17,923,6950532,40,0 ,27,163,134792,24,8 ,15,5433,659080,1,1 ,27,163,134800,24,8 ,15,5434,659088,1,1 ,27,163,134808,24,8 ,15,5435,659096,1,1 ,27,163,134816,24,8 ,15,5436,659104,1,1 ,20,18218,7474850,64,0 ,20,16161,2756258,52,0 ,27,163,134824,24,8 ,15,5437,659112,1,1 ,27,163,134832,22,8 ,15,5438,659120,1,1 ,27,163,134840,22,8 ,15,5439,659128,1,1 ,27,163,134848,24,8 ,15,5440,659136,1,1 ,20,18028,6950594,12,0 ,17,923,10096324,24,0 ,17,923,7474884,40,0 ,17,923,8523460,40,0 ,27,163,134856,24,8 ,15,5441,659144,1,1 ,27,163,134864,24,8 ,15,5442,659152,1,1 ,27,163,134872,24,8 ,15,5443,659160,1,1 ,27,163,134880,24,8 ,15,5444,659168,1,1 ,20,18483,7999202,264,0 ,27,163,134888,24,8 ,15,5445,659176,1,1 ,27,163,134896,22,8 ,15,5446,659184,1,1 ,27,163,134904,24,8 ,15,5447,659192,1,1 ,27,163,134912,24,8 ,15,5448,659200,1,1 ,17,923,9572100,40,0 ,44,15152,2756356,48,0 ,44,15152,2232068,48,0 ,44,15152,1183492,32,0 ,44,15152,3280644,32,0 ,45,15153,5377796,56,0 ,17,923,7999236,32,0 ,27,163,134920,24,8 ,15,5449,659208,1,1 ,27,163,134928,24,8 ,15,5450,659216,1,1 ,27,163,134936,24,8 ,15,5451,659224,1,1 ,27,163,134944,24,8 ,15,5452,659232,1,1 ,20,18029,6950690,612,0 ,27,163,134952,22,8 ,15,5453,659240,1,1 ,27,163,134960,22,8 ,15,5454,659248,1,1 ,27,163,134968,24,8 ,15,5455,659256,1,1 ,27,163,134976,24,8 ,15,5456,659264,1,1 ,20,15808,1707842,84,0 ,45,15153,4329284,40,0 ,27,163,134984,22,8 ,15,5457,659272,1,1 ,27,163,134992,22,8 ,15,5458,659280,1,1 ,27,163,135000,22,8 ,15,5459,659288,1,1 ,27,163,135008,24,8 ,15,5460,659296,1,1 ,27,163,135016,24,8 ,15,5461,659304,1,1 ,27,163,135024,24,8 ,15,5462,659312,1,1 ,27,163,135032,24,8 ,15,5463,659320,1,1 ,27,163,135040,24,8 ,15,5464,659328,1,1 ,17,923,10096516,24,0 ,17,923,6426500,32,0 ,45,15153,4853636,64,0 ,27,163,135048,24,8 ,15,5465,659336,1,1 ,27,163,135056,24,8 ,15,5466,659344,1,1 ,27,163,135064,24,8 ,15,5467,659352,1,1 ,27,163,135072,22,8 ,15,5468,659360,1,1 ,27,163,135080,24,8 ,15,5469,659368,1,1 ,27,163,135088,24,8 ,15,5470,659376,1,1 ,27,163,135096,24,8 ,15,5471,659384,1,1 ,27,163,135104,22,8 ,15,5472,659392,1,1 ,17,923,135107,16,0 ,17,923,6950852,40,0 ,27,163,135112,24,8 ,15,5473,659400,1,1 ,27,163,135120,24,8 ,15,5474,659408,1,1 ,27,163,135128,24,8 ,15,5475,659416,1,1 ,27,163,135136,24,8 ,15,5476,659424,1,1 ,27,163,135144,24,8 ,15,5477,659432,1,1 ,27,163,135152,22,8 ,15,5478,659440,1,1 ,27,163,135160,24,8 ,15,5479,659448,1,1 ,27,163,135168,22,8 ,15,5480,659456,1,1 ,17,923,8523780,32,0 ,17,923,7475204,40,0 ,44,15152,1183748,24,0 ,44,15152,3280900,40,0 ,17,923,7999492,32,0 ,27,163,135176,24,8 ,15,5481,659464,1,1 ,27,163,135184,24,8 ,15,5482,659472,1,1 ,27,163,135192,24,8 ,15,5483,659480,1,1 ,27,163,135200,22,8 ,15,5484,659488,1,1 ,27,163,135208,24,8 ,15,5485,659496,1,1 ,27,163,135216,24,8 ,15,5486,659504,1,1 ,27,163,135224,24,8 ,15,5487,659512,1,1 ,27,163,135232,24,8 ,15,5488,659520,1,1 ,20,23007,20058178,64,0 ,20,16162,2756674,48,0 ,17,923,135235,24,0 ,17,923,10096708,24,0 ,44,15152,659524,88,0 ,17,923,9572420,24,0 ,27,163,135240,22,8 ,15,5489,659528,1,1 ,27,163,135248,22,8 ,15,5490,659536,1,1 ,27,163,135256,22,8 ,15,5491,659544,1,1 ,27,163,135264,22,8 ,15,5492,659552,1,1 ,20,23347,20582498,140,0 ,27,163,135272,24,8 ,15,5493,659560,1,1 ,27,163,135280,24,8 ,15,5494,659568,1,1 ,27,163,135288,22,8 ,15,5495,659576,1,1 ,27,163,135296,24,8 ,15,5496,659584,1,1 ,20,17530,5902466,236,0 ,20,16361,3281026,76,0 ,17,923,9048196,64,0 ,17,923,6426756,32,0 ,44,15152,2756740,16,0 ,44,15152,2232452,64,0 ,44,15152,135300,40,0 ,45,15153,4329604,16,0 ,27,163,135304,24,8 ,15,5497,659592,1,1 ,27,163,135312,24,8 ,15,5498,659600,1,1 ,27,163,135320,24,8 ,15,5499,659608,1,1 ,27,163,135328,24,8 ,15,5500,659616,1,1 ,20,18219,7475362,144,0 ,27,163,135336,24,8 ,15,5501,659624,1,1 ,27,163,135344,24,8 ,15,5502,659632,1,1 ,27,163,135352,22,8 ,15,5503,659640,1,1 ,27,163,135360,22,8 ,15,5504,659648,1,1 ,45,15153,5378244,16,0 ,44,15152,1183940,40,0 ,27,163,135368,24,8 ,15,5505,659656,1,1 ,27,163,135376,22,8 ,15,5506,659664,1,1 ,27,163,135384,24,8 ,15,5507,659672,1,1 ,27,163,135392,24,8 ,15,5508,659680,1,1 ,27,163,135400,24,8 ,15,5509,659688,1,1 ,27,163,135408,26,8 ,15,5510,659696,1,1 ,27,163,135416,22,8 ,15,5511,659704,1,1 ,27,163,135424,24,8 ,15,5512,659712,1,1 ,20,25928,27398402,104,0 ,17,923,135427,16,0 ,17,923,10096900,40,0 ,17,923,6951172,40,0 ,44,15152,2756868,56,0 ,45,15153,4329732,16,0 ,17,923,7999748,24,0 ,17,923,8524036,40,0 ,17,923,9572612,40,0 ,27,163,135432,22,8 ,15,5513,659720,1,1 ,27,163,135440,24,8 ,15,5514,659728,1,1 ,27,163,135448,24,8 ,15,5515,659736,1,1 ,27,163,135456,24,8 ,15,5516,659744,1,1 ,27,163,135464,22,8 ,15,5517,659752,1,1 ,27,163,135472,22,8 ,15,5518,659760,1,1 ,27,163,135480,24,8 ,15,5519,659768,1,1 ,27,163,135488,24,8 ,15,5520,659776,1,1 ,45,15153,5378372,24,0 ,17,923,7475524,24,0 ,44,15152,3281220,40,0 ,27,163,135496,22,8 ,15,5521,659784,1,1 ,27,163,135504,24,8 ,15,5522,659792,1,1 ,27,163,135512,24,8 ,15,5523,659800,1,1 ,27,163,135520,24,8 ,15,5524,659808,1,1 ,27,163,135528,24,8 ,15,5525,659816,1,1 ,27,163,135536,24,8 ,15,5526,659824,1,1 ,27,163,135544,24,8 ,15,5527,659832,1,1 ,27,163,135552,22,8 ,15,5528,659840,1,1 ,20,19385,10097026,180,0 ,17,923,135555,24,0 ,45,15153,4854148,96,0 ,17,923,6427012,32,0 ,45,15153,4329860,144,0 ,27,163,135560,24,8 ,15,5529,659848,1,1 ,27,163,135568,24,8 ,15,5530,659856,1,1 ,27,163,135576,24,8 ,15,5531,659864,1,1 ,27,163,135584,24,8 ,15,5532,659872,1,1 ,20,19986,11145634,408,0 ,27,163,135592,24,8 ,15,5533,659880,1,1 ,27,163,135600,24,8 ,15,5534,659888,1,1 ,27,163,135608,22,8 ,15,5535,659896,1,1 ,27,163,135616,24,8 ,15,5536,659904,1,1 ,20,16163,2757058,52,0 ,17,923,7999940,24,0 ,44,15152,135620,88,0 ,27,163,135624,24,8 ,15,5537,659912,1,1 ,27,163,135632,22,8 ,15,5538,659920,1,1 ,27,163,135640,22,8 ,15,5539,659928,1,1 ,27,163,135648,24,8 ,15,5540,659936,1,1 ,20,21252,15864290,44,0 ,20,15809,1708514,144,0 ,27,163,135656,24,8 ,15,5541,659944,1,1 ,27,163,135664,24,8 ,15,5542,659952,1,1 ,27,163,135672,24,8 ,15,5543,659960,1,1 ,27,163,135680,24,8 ,15,5544,659968,1,1 ,20,24926,24777218,124,0 ,45,15153,5378564,32,0 ,17,923,7475716,24,0 ,44,15152,1184260,40,0 ,27,163,135688,24,8 ,15,5545,659976,1,1 ,27,163,135696,24,8 ,15,5546,659984,1,1 ,27,163,135704,22,8 ,15,5547,659992,1,1 ,27,163,135712,24,8 ,15,5548,660000,1,1 ,27,163,135720,22,8 ,15,5549,660008,1,1 ,27,163,135728,22,8 ,15,5550,660016,1,1 ,27,163,135736,22,8 ,15,5551,660024,1,1 ,27,163,135744,24,8 ,15,5552,660032,1,1 ,20,23008,20058690,80,0 ,20,26297,28447298,1176,0 ,20,26125,27923010,48,0 ,20,20752,13767234,52,0 ,20,21541,16388674,108,0 ,17,923,135747,24,0 ,17,923,10097220,40,0 ,17,923,6951492,112,0 ,17,923,8524356,32,0 ,17,923,9572932,32,0 ,27,163,135752,24,8 ,15,5553,660040,1,1 ,27,163,135760,24,8 ,15,5554,660048,1,1 ,27,163,135768,24,8 ,15,5555,660056,1,1 ,27,163,135776,24,8 ,15,5556,660064,1,1 ,27,163,135784,24,8 ,15,5557,660072,1,1 ,27,163,135792,24,8 ,15,5558,660080,1,1 ,27,163,135800,24,8 ,15,5559,660088,1,1 ,27,163,135808,24,8 ,15,5560,660096,1,1 ,17,923,9048708,40,0 ,17,923,6427268,32,0 ,44,15152,2232964,40,0 ,44,15152,3281540,304,0 ,17,923,8000132,32,0 ,27,163,135816,22,8 ,15,5561,660104,1,1 ,27,1770,135824,26,8 ,15,5562,660112,1,1 ,27,1037,135832,26,8 ,15,5563,660120,1,1 ,27,1771,135840,26,8 ,15,5564,660128,1,1 ,20,23718,21631650,140,0 ,27,1037,135848,26,8 ,15,5565,660136,1,1 ,27,1771,135856,26,8 ,15,5566,660144,1,1 ,27,1770,135864,27,8 ,15,5567,660152,1,1 ,27,1037,135872,27,8 ,15,5568,660160,1,1 ,20,15624,1184450,308,0 ,44,15152,2757316,40,0 ,17,923,7475908,32,0 ,27,1771,135880,27,8 ,15,5569,660168,1,1 ,27,1647,135888,22,8 ,15,5570,660176,1,1 ,27,1035,135896,26,8 ,15,5571,660184,1,1 ,27,1035,135904,26,8 ,15,5572,660192,1,1 ,20,16362,3281634,116,0 ,27,1035,135912,26,8 ,15,5573,660200,1,1 ,27,1705,135920,23,8 ,15,5574,660208,1,1 ,27,1770,135928,27,8 ,15,5575,660216,1,1 ,27,1037,135936,27,8 ,15,5576,660224,1,1 ,20,18951,9048834,40,0 ,17,923,135939,16,0 ,45,15153,5378820,24,0 ,44,15152,660228,64,0 ,27,1771,135944,27,8 ,15,5577,660232,1,1 ,27,14881,135952,22,8 ,15,5578,660240,1,1 ,27,9476,135960,26,8 ,15,5579,660248,1,1 ,27,9476,135968,27,8 ,15,5580,660256,1,1 ,20,25709,26874658,272,0 ,27,12465,135976,26,8 ,15,5581,660264,1,1 ,27,606,135984,23,8 ,15,5582,660272,1,1 ,27,14827,135992,26,8 ,15,5583,660280,1,1 ,27,14838,136000,26,8 ,15,5584,660288,1,1 ,20,23597,21107522,1448,0 ,20,21253,15864642,140,0 ,17,923,9573188,56,0 ,44,15152,1184580,32,0 ,17,923,8524612,32,0 ,27,336,136008,23,8 ,15,5585,660296,1,1 ,27,9488,136016,27,8 ,15,5586,660304,1,1 ,27,14734,136024,27,8 ,15,5587,660312,1,1 ,27,673,136032,24,8 ,15,5588,660320,1,1 ,20,16164,2757474,128,0 ,27,1770,136040,27,8 ,15,5589,660328,1,1 ,27,14757,136048,26,8 ,15,5590,660336,1,1 ,27,14825,136056,26,8 ,15,5591,660344,1,1 ,27,14903,136064,26,8 ,15,5592,660352,1,1 ,17,923,136067,32,0 ,17,923,10097540,32,0 ,17,923,6427524,32,0 ,17,923,8000388,32,0 ,27,1771,136072,27,8 ,15,5593,660360,1,1 ,27,1037,136080,27,8 ,15,5594,660368,1,1 ,27,522,136088,21,8 ,15,5595,660376,1,1 ,27,522,136096,21,8 ,15,5596,660384,1,1 ,27,522,136104,21,8 ,15,5597,660392,1,1 ,27,522,136112,21,8 ,15,5598,660400,1,1 ,27,522,136120,21,8 ,15,5599,660408,1,1 ,27,516,136128,23,8 ,15,5600,660416,1,1 ,20,26126,27923394,108,0 ,17,923,9049028,40,0 ,17,923,7476164,32,0 ,44,15152,2233284,64,0 ,45,15153,5379012,96,0 ,27,14918,136136,24,8 ,15,5601,660424,1,1 ,27,14739,136144,24,8 ,15,5602,660432,1,1 ,27,14826,136152,24,8 ,15,5603,660440,1,1 ,27,14823,136160,24,8 ,15,5604,660448,1,1 ,20,20753,13767650,192,0 ,27,14824,136168,24,8 ,15,5605,660456,1,1 ,27,14858,136176,24,8 ,15,5606,660464,1,1 ,27,14715,136184,24,8 ,15,5607,660472,1,1 ,27,14724,136192,24,8 ,15,5608,660480,1,1 ,20,20954,15340546,540,0 ,44,15152,2757636,80,0 ,27,14761,136200,24,8 ,15,5609,660488,1,1 ,27,14776,136208,24,8 ,15,5610,660496,1,1 ,27,14898,136216,24,8 ,15,5611,660504,1,1 ,27,14843,136224,24,8 ,15,5612,660512,1,1 ,27,639,136232,22,8 ,15,5613,660520,1,1 ,27,14820,136240,25,8 ,15,5614,660528,1,1 ,27,14922,136248,25,8 ,15,5615,660536,1,1 ,27,14751,136256,27,8 ,15,5616,660544,1,1 ,20,18952,9049154,1068,0 ,20,25929,27399234,328,0 ,17,923,8524868,32,0 ,44,15152,1184836,48,0 ,27,14794,136264,27,8 ,15,5617,660552,1,1 ,28,14980,136272,6,3 ,15,5618,660560,1,1 ,28,14980,136280,6,3 ,15,5619,660568,1,1 ,28,14980,136288,8,3 ,15,5620,660576,1,1 ,28,14980,136296,8,3 ,15,5621,660584,1,1 ,28,14980,136304,6,3 ,15,5622,660592,1,1 ,28,14980,136312,6,3 ,15,5623,660600,1,1 ,28,14980,136320,6,3 ,15,5624,660608,1,1 ,17,923,136323,32,0 ,17,923,10097796,32,0 ,17,923,6427780,40,0 ,44,15152,136324,56,0 ,45,15153,4854916,56,0 ,17,923,8000644,32,0 ,28,14980,136328,6,3 ,15,5625,660616,1,1 ,28,14980,136336,8,3 ,15,5626,660624,1,1 ,28,14980,136344,8,3 ,15,5627,660632,1,1 ,28,14980,136352,8,3 ,15,5628,660640,1,1 ,20,16973,4330658,232,0 ,28,14980,136360,8,3 ,15,5629,660648,1,1 ,28,14980,136368,8,3 ,15,5630,660656,1,1 ,28,14980,136376,8,3 ,15,5631,660664,1,1 ,28,14980,136384,8,3 ,15,5632,660672,1,1 ,20,23348,20583618,100,0 ,20,23009,20059330,80,0 ,17,923,7476420,32,0 ,28,14980,136392,8,3 ,15,5633,660680,1,1 ,28,14980,136400,6,3 ,15,5634,660688,1,1 ,28,14980,136408,6,3 ,15,5635,660696,1,1 ,28,14980,136416,6,3 ,15,5636,660704,1,1 ,20,22043,17962210,48,0 ,28,14980,136424,6,3 ,15,5637,660712,1,1 ,28,14980,136432,6,3 ,15,5638,660720,1,1 ,28,14980,136440,6,3 ,15,5639,660728,1,1 ,28,14980,136448,6,3 ,15,5640,660736,1,1 ,17,923,9573636,40,0 ,44,15152,660740,24,0 ,17,923,9049348,80,0 ,28,14980,136456,6,3 ,15,5641,660744,1,1 ,28,14980,136464,6,3 ,15,5642,660752,1,1 ,28,14980,136472,6,3 ,15,5643,660760,1,1 ,28,14980,136480,6,3 ,15,5644,660768,1,1 ,20,18220,7476514,232,0 ,28,14980,136488,6,3 ,15,5645,660776,1,1 ,28,14980,136496,6,3 ,15,5646,660784,1,1 ,28,14980,136504,6,3 ,15,5647,660792,1,1 ,28,14980,136512,6,3 ,15,5648,660800,1,1 ,17,923,8525124,40,0 ,28,14980,136520,6,3 ,15,5649,660808,1,1 ,28,14980,136528,6,3 ,15,5650,660816,1,1 ,28,14980,136536,8,3 ,15,5651,660824,1,1 ,28,14980,136544,8,3 ,15,5652,660832,1,1 ,20,24528,23729506,788,0 ,28,14980,136552,8,3 ,15,5653,660840,1,1 ,28,14980,136560,8,3 ,15,5654,660848,1,1 ,28,14980,136568,8,3 ,15,5655,660856,1,1 ,28,14980,136576,8,3 ,15,5656,660864,1,1 ,20,17141,4855170,12,0 ,17,923,136579,32,0 ,17,923,10098052,24,0 ,17,923,8000900,32,0 ,28,14980,136584,8,3 ,15,5657,660872,1,1 ,28,14980,136592,8,3 ,15,5658,660880,1,1 ,28,14980,136600,8,3 ,15,5659,660888,1,1 ,28,14980,136608,8,3 ,15,5660,660896,1,1 ,20,21542,16389538,100,0 ,28,14980,136616,8,3 ,15,5661,660904,1,1 ,28,14980,136624,8,3 ,15,5662,660912,1,1 ,28,14980,136632,8,3 ,15,5663,660920,1,1 ,28,14980,136640,6,3 ,15,5664,660928,1,1 ,44,15152,1185220,24,0 ,17,923,7476676,24,0 ,17,923,6952388,112,0 ,17,923,6428100,32,0 ,44,15152,2233796,88,0 ,44,15152,1709508,40,0 ,44,15152,660932,24,0 ,28,14980,136648,6,3 ,15,5665,660936,1,1 ,28,14980,136656,8,3 ,15,5666,660944,1,1 ,28,14980,136664,8,3 ,15,5667,660952,1,1 ,28,14980,136672,8,3 ,15,5668,660960,1,1 ,20,17142,4855266,96,0 ,20,24927,24778210,24,0 ,28,14980,136680,8,3 ,15,5669,660968,1,1 ,28,14980,136688,8,3 ,15,5670,660976,1,1 ,28,14980,136696,6,3 ,15,5671,660984,1,1 ,28,14980,136704,6,3 ,15,5672,660992,1,1 ,45,15153,4331012,24,0 ,28,14980,136712,8,3 ,15,5673,661000,1,1 ,28,14980,136720,6,3 ,15,5674,661008,1,1 ,28,14980,136728,6,3 ,15,5675,661016,1,1 ,28,14980,136736,6,3 ,15,5676,661024,1,1 ,28,14980,136744,6,3 ,15,5677,661032,1,1 ,28,14980,136752,6,3 ,15,5678,661040,1,1 ,28,14980,136760,6,3 ,15,5679,661048,1,1 ,28,14980,136768,6,3 ,15,5680,661056,1,1 ,17,923,10098244,24,0 ,44,15152,136772,40,0 ,45,15153,4855364,96,0 ,17,923,9573956,32,0 ,28,14980,136776,6,3 ,15,5681,661064,1,1 ,28,14980,136784,6,3 ,15,5682,661072,1,1 ,28,14980,136792,8,3 ,15,5683,661080,1,1 ,28,14980,136800,6,3 ,15,5684,661088,1,1 ,20,22044,17962594,248,0 ,20,15810,1709666,84,0 ,28,14980,136808,6,3 ,15,5685,661096,1,1 ,28,14980,136816,6,3 ,15,5686,661104,1,1 ,28,14980,136824,6,3 ,15,5687,661112,1,1 ,28,14980,136832,6,3 ,15,5688,661120,1,1 ,20,16363,3282562,104,0 ,17,923,136835,16,0 ,17,923,8525444,40,0 ,17,923,7476868,64,0 ,44,15152,2758276,72,0 ,44,15152,661124,24,0 ,44,15152,1185412,24,0 ,17,923,8001156,32,0 ,28,14980,136840,6,3 ,15,5689,661128,1,1 ,28,14980,136848,6,3 ,15,5690,661136,1,1 ,28,14980,136856,8,3 ,15,5691,661144,1,1 ,28,14980,136864,6,3 ,15,5692,661152,1,1 ,20,24928,24778402,24,0 ,28,14980,136872,6,3 ,15,5693,661160,1,1 ,28,14980,136880,6,3 ,15,5694,661168,1,1 ,28,14980,136888,6,3 ,15,5695,661176,1,1 ,28,14980,136896,6,3 ,15,5696,661184,1,1 ,45,15153,5379780,16,0 ,17,923,6428356,32,0 ,44,15152,3806916,16,0 ,45,15153,4331204,32,0 ,28,14980,136904,6,3 ,15,5697,661192,1,1 ,28,14980,136912,6,3 ,15,5698,661200,1,1 ,28,14980,136920,8,3 ,15,5699,661208,1,1 ,28,14980,136928,6,3 ,15,5700,661216,1,1 ,28,14980,136936,6,3 ,15,5701,661224,1,1 ,28,14980,136944,6,3 ,15,5702,661232,1,1 ,28,14980,136952,6,3 ,15,5703,661240,1,1 ,28,14980,136960,6,3 ,15,5704,661248,1,1 ,20,23719,21632770,88,0 ,17,923,136963,16,0 ,17,923,10098436,24,0 ,44,15152,1709828,40,0 ,28,14980,136968,6,3 ,15,5705,661256,1,1 ,28,14980,136976,6,3 ,15,5706,661264,1,1 ,28,14980,136984,8,3 ,15,5707,661272,1,1 ,28,14980,136992,8,3 ,15,5708,661280,1,1 ,20,19386,10098466,252,0 ,20,26127,27924258,836,0 ,20,18484,8001314,68,0 ,28,14980,137000,8,3 ,15,5709,661288,1,1 ,28,14980,137008,8,3 ,15,5710,661296,1,1 ,28,14980,137016,8,3 ,15,5711,661304,1,1 ,28,14980,137024,8,3 ,15,5712,661312,1,1 ,20,23010,20059970,728,0 ,17,923,9574212,32,0 ,44,15152,661316,24,0 ,44,15152,1185604,24,0 ,44,15152,3807044,128,0 ,45,15153,5379908,24,0 ,28,14980,137032,8,3 ,15,5713,661320,1,1 ,28,14980,137040,8,3 ,15,5714,661328,1,1 ,28,14980,137048,8,3 ,15,5715,661336,1,1 ,28,14980,137056,8,3 ,15,5716,661344,1,1 ,20,16165,2758498,128,0 ,20,24929,24778594,240,0 ,28,14980,137064,8,3 ,15,5717,661352,1,1 ,28,14980,137072,8,3 ,15,5718,661360,1,1 ,28,14980,137080,6,3 ,15,5719,661368,1,1 ,28,14980,137088,6,3 ,15,5720,661376,1,1 ,17,923,137091,32,0 ,17,923,9049988,72,0 ,44,15152,137092,24,0 ,17,923,8001412,32,0 ,28,14980,137096,8,3 ,15,5721,661384,1,1 ,28,14980,137104,8,3 ,15,5722,661392,1,1 ,28,14980,137112,6,3 ,15,5723,661400,1,1 ,28,14980,137120,6,3 ,15,5724,661408,1,1 ,20,21254,15865762,112,0 ,28,14980,137128,6,3 ,15,5725,661416,1,1 ,28,14980,137136,6,3 ,15,5726,661424,1,1 ,28,14980,137144,6,3 ,15,5727,661432,1,1 ,28,14980,137152,6,3 ,15,5728,661440,1,1 ,17,923,10098628,32,0 ,17,923,6428612,32,0 ,45,15153,4331460,32,0 ,17,923,8525764,40,0 ,28,14980,137160,6,3 ,15,5729,661448,1,1 ,28,14980,137168,6,3 ,15,5730,661456,1,1 ,28,14980,137176,6,3 ,15,5731,661464,1,1 ,28,14980,137184,6,3 ,15,5732,661472,1,1 ,20,23349,20584418,24,0 ,20,17531,5904354,444,0 ,20,20546,13244386,1256,0 ,28,14980,137192,6,3 ,15,5733,661480,1,1 ,28,14980,137200,6,3 ,15,5734,661488,1,1 ,28,14980,137208,6,3 ,15,5735,661496,1,1 ,28,14980,137216,6,3 ,15,5736,661504,1,1 ,45,15153,5380100,16,0 ,44,15152,661508,32,0 ,44,15152,1185796,48,0 ,28,14980,137224,6,3 ,15,5737,661512,1,1 ,28,14980,137232,6,3 ,15,5738,661520,1,1 ,28,14980,137240,6,3 ,15,5739,661528,1,1 ,28,14980,137248,6,3 ,15,5740,661536,1,1 ,28,14980,137256,6,3 ,15,5741,661544,1,1 ,28,14980,137264,6,3 ,15,5742,661552,1,1 ,28,14980,137272,6,3 ,15,5743,661560,1,1 ,28,14980,137280,6,3 ,15,5744,661568,1,1 ,17,923,9574468,32,0 ,44,15152,1710148,136,0 ,44,15152,137284,32,0 ,28,14980,137288,6,3 ,15,5745,661576,1,1 ,28,14980,137296,6,3 ,15,5746,661584,1,1 ,28,14980,137304,6,3 ,15,5747,661592,1,1 ,28,14980,137312,6,3 ,15,5748,661600,1,1 ,28,14980,137320,8,3 ,15,5749,661608,1,1 ,28,14980,137328,8,3 ,15,5750,661616,1,1 ,28,14980,137336,6,3 ,15,5751,661624,1,1 ,28,14980,137344,8,3 ,15,5752,661632,1,1 ,17,923,137347,16,0 ,17,923,8001668,24,0 ,17,923,7477380,32,0 ,44,15152,2234500,40,0 ,45,15153,5380228,16,0 ,28,14980,137352,6,3 ,15,5753,661640,1,1 ,28,14980,137360,6,3 ,15,5754,661648,1,1 ,28,14980,137368,6,3 ,15,5755,661656,1,1 ,28,14980,137376,6,3 ,15,5756,661664,1,1 ,20,23350,20584610,24,0 ,28,14980,137384,6,3 ,15,5757,661672,1,1 ,28,14980,137392,6,3 ,15,5758,661680,1,1 ,28,14980,137400,6,3 ,15,5759,661688,1,1 ,28,14980,137408,6,3 ,15,5760,661696,1,1 ,20,21543,16390338,12,0 ,17,923,10098884,24,0 ,17,923,6428868,32,0 ,44,15152,2758852,80,0 ,45,15153,4331716,24,0 ,28,14980,137416,6,3 ,15,5761,661704,1,1 ,28,14980,137424,6,3 ,15,5762,661712,1,1 ,28,14980,137432,6,3 ,15,5763,661720,1,1 ,28,14980,137440,6,3 ,15,5764,661728,1,1 ,20,22711,19536098,556,0 ,20,17143,4856034,188,0 ,28,14980,137448,6,3 ,15,5765,661736,1,1 ,28,14980,137456,6,3 ,15,5766,661744,1,1 ,28,14980,137464,6,3 ,15,5767,661752,1,1 ,28,14980,137472,6,3 ,15,5768,661760,1,1 ,20,16702,3807490,352,0 ,20,15811,1710338,84,0 ,17,923,137475,24,0 ,17,923,8526084,40,0 ,44,15152,661764,80,0 ,45,15153,5380356,24,0 ,28,14980,137480,6,3 ,15,5769,661768,1,1 ,28,14980,137488,6,3 ,15,5770,661776,1,1 ,28,14980,137496,6,3 ,15,5771,661784,1,1 ,28,14980,137504,6,3 ,15,5772,661792,1,1 ,20,21544,16390434,12,0 ,28,14980,137512,6,3 ,15,5773,661800,1,1 ,28,14980,137520,6,3 ,15,5774,661808,1,1 ,28,14980,137528,6,3 ,15,5775,661816,1,1 ,28,14980,137536,6,3 ,15,5776,661824,1,1 ,20,18485,8001858,264,0 ,17,923,9574724,32,0 ,17,923,6953284,32,0 ,44,15152,137540,16,0 ,45,15153,4856132,40,0 ,17,923,8001860,56,0 ,28,14980,137544,6,3 ,15,5777,661832,1,1 ,28,14980,137552,6,3 ,15,5778,661840,1,1 ,28,14980,137560,6,3 ,15,5779,661848,1,1 ,28,14980,137568,6,3 ,15,5780,661856,1,1 ,20,23351,20584802,24,0 ,28,14980,137576,6,3 ,15,5781,661864,1,1 ,28,14980,137584,6,3 ,15,5782,661872,1,1 ,28,14980,137592,6,3 ,15,5783,661880,1,1 ,28,14980,137600,6,3 ,15,5784,661888,1,1 ,20,21545,16390530,124,0 ,17,923,10099076,24,0 ,17,923,7477636,48,0 ,44,15152,1186180,144,0 ,45,15153,4331908,16,0 ,28,14980,137608,6,3 ,15,5785,661896,1,1 ,28,14980,137616,6,3 ,15,5786,661904,1,1 ,28,14980,137624,6,3 ,15,5787,661912,1,1 ,28,14980,137632,6,3 ,15,5788,661920,1,1 ,28,14980,137640,6,3 ,15,5789,661928,1,1 ,28,14980,137648,6,3 ,15,5790,661936,1,1 ,28,14980,137656,6,3 ,15,5791,661944,1,1 ,28,14980,137664,6,3 ,15,5792,661952,1,1 ,20,23720,21633474,276,0 ,20,16364,3283394,64,0 ,17,923,137667,16,0 ,17,923,9050564,64,0 ,17,923,6429124,48,0 ,44,15152,2234820,64,0 ,44,15152,137668,16,0 ,45,15153,5380548,48,0 ,28,14980,137672,6,3 ,15,5793,661960,1,1 ,28,14980,137680,6,3 ,15,5794,661968,1,1 ,28,14980,137688,6,3 ,15,5795,661976,1,1 ,28,14980,137696,6,3 ,15,5796,661984,1,1 ,20,20754,13769186,2420,0 ,28,14980,137704,6,3 ,15,5797,661992,1,1 ,28,14980,137712,6,3 ,15,5798,662000,1,1 ,28,14980,137720,6,3 ,15,5799,662008,1,1 ,28,14980,137728,6,3 ,15,5800,662016,1,1 ,20,22289,18487810,48,0 ,45,15153,4332036,16,0 ,28,14980,137736,6,3 ,15,5801,662024,1,1 ,28,14980,137744,6,3 ,15,5802,662032,1,1 ,28,14980,137752,6,3 ,15,5803,662040,1,1 ,28,14980,137760,6,3 ,15,5804,662048,1,1 ,20,23352,20584994,24,0 ,28,14980,137768,6,3 ,15,5805,662056,1,1 ,28,14980,137776,6,3 ,15,5806,662064,1,1 ,28,14980,137784,6,3 ,15,5807,662072,1,1 ,28,14980,137792,6,3 ,15,5808,662080,1,1 ,17,923,137795,32,0 ,17,923,10099268,32,0 ,17,923,6953540,32,0 ,44,15152,137796,24,0 ,17,923,8526404,32,0 ,17,923,9574980,24,0 ,28,14980,137800,6,3 ,15,5809,662088,1,1 ,28,14980,137808,6,3 ,15,5810,662096,1,1 ,28,14980,137816,6,3 ,15,5811,662104,1,1 ,28,14980,137824,6,3 ,15,5812,662112,1,1 ,28,14980,137832,8,3 ,15,5813,662120,1,1 ,28,14980,137840,6,3 ,15,5814,662128,1,1 ,28,14980,137848,6,3 ,15,5815,662136,1,1 ,28,14980,137856,6,3 ,15,5816,662144,1,1 ,45,15153,4856452,40,0 ,45,15153,4332164,24,0 ,28,14980,137864,6,3 ,15,5817,662152,1,1 ,28,14980,137872,6,3 ,15,5818,662160,1,1 ,28,14980,137880,6,3 ,15,5819,662168,1,1 ,28,14980,137888,6,3 ,15,5820,662176,1,1 ,28,14980,137896,6,3 ,15,5821,662184,1,1 ,28,14980,137904,6,3 ,15,5822,662192,1,1 ,28,14980,137912,6,3 ,15,5823,662200,1,1 ,28,14980,137920,6,3 ,15,5824,662208,1,1 ,20,20252,12720834,148,0 ,28,14980,137928,6,3 ,15,5825,662216,1,1 ,28,14980,137936,6,3 ,15,5826,662224,1,1 ,28,14980,137944,6,3 ,15,5827,662232,1,1 ,28,14980,137952,6,3 ,15,5828,662240,1,1 ,20,23353,20585186,24,0 ,28,14980,137960,6,3 ,15,5829,662248,1,1 ,28,14980,137968,8,3 ,15,5830,662256,1,1 ,28,14980,137976,6,3 ,15,5831,662264,1,1 ,28,14980,137984,8,3 ,15,5832,662272,1,1 ,17,923,9575172,24,0 ,17,923,7478020,32,0 ,44,15152,137988,32,0 ,17,923,8002308,24,0 ,28,14980,137992,8,3 ,15,5833,662280,1,1 ,28,14980,138000,6,3 ,15,5834,662288,1,1 ,28,14980,138008,6,3 ,15,5835,662296,1,1 ,28,14980,138016,6,3 ,15,5836,662304,1,1 ,20,21255,15866658,116,0 ,28,14980,138024,6,3 ,15,5837,662312,1,1 ,28,14980,138032,6,3 ,15,5838,662320,1,1 ,28,14980,138040,6,3 ,15,5839,662328,1,1 ,28,14980,138048,6,3 ,15,5840,662336,1,1 ,17,923,138051,24,0 ,17,923,10099524,32,0 ,17,923,6953796,48,0 ,17,923,6429508,40,0 ,44,15152,2759492,72,0 ,44,15152,3808068,32,0 ,45,15153,4332356,88,0 ,45,15153,5380932,32,0 ,17,923,8526660,32,0 ,28,14980,138056,6,3 ,15,5841,662344,1,1 ,28,14980,138064,6,3 ,15,5842,662352,1,1 ,28,14980,138072,6,3 ,15,5843,662360,1,1 ,28,14980,138080,6,3 ,15,5844,662368,1,1 ,20,16166,2759522,140,0 ,28,14980,138088,6,3 ,15,5845,662376,1,1 ,28,14980,138096,6,3 ,15,5846,662384,1,1 ,28,14980,138104,6,3 ,15,5847,662392,1,1 ,28,14980,138112,6,3 ,15,5848,662400,1,1 ,20,22290,18488194,20,0 ,44,15152,662404,312,0 ,28,14980,138120,6,3 ,15,5849,662408,1,1 ,28,14980,138128,6,3 ,15,5850,662416,1,1 ,28,14980,138136,6,3 ,15,5851,662424,1,1 ,28,14980,138144,6,3 ,15,5852,662432,1,1 ,20,23354,20585378,24,0 ,20,25710,26876834,272,0 ,20,15812,1711010,84,0 ,28,14980,138152,6,3 ,15,5853,662440,1,1 ,28,14980,138160,6,3 ,15,5854,662448,1,1 ,28,14980,138168,6,3 ,15,5855,662456,1,1 ,28,14980,138176,6,3 ,15,5856,662464,1,1 ,20,16365,3283906,36,0 ,17,923,9575364,32,0 ,44,15152,2235332,128,0 ,45,15153,4856772,24,0 ,17,923,8002500,32,0 ,17,923,9051076,24,0 ,28,14980,138184,6,3 ,15,5857,662472,1,1 ,28,14980,138192,6,3 ,15,5858,662480,1,1 ,28,14980,138200,6,3 ,15,5859,662488,1,1 ,28,14980,138208,6,3 ,15,5860,662496,1,1 ,20,16974,4332514,104,0 ,28,14980,138216,6,3 ,15,5861,662504,1,1 ,28,14980,138224,6,3 ,15,5862,662512,1,1 ,28,14980,138232,6,3 ,15,5863,662520,1,1 ,28,14980,138240,6,3 ,15,5864,662528,1,1 ,17,923,138243,16,0 ,44,15152,3283972,56,0 ,17,923,7478276,32,0 ,44,15152,138244,120,0 ,28,14980,138248,6,3 ,15,5865,662536,1,1 ,28,14980,138256,6,3 ,15,5866,662544,1,1 ,28,14980,138264,6,3 ,15,5867,662552,1,1 ,28,14980,138272,6,3 ,15,5868,662560,1,1 ,20,22291,18488354,44,0 ,28,14980,138280,6,3 ,15,5869,662568,1,1 ,28,14980,138288,6,3 ,15,5870,662576,1,1 ,28,14980,138296,6,3 ,15,5871,662584,1,1 ,28,14980,138304,6,3 ,15,5872,662592,1,1 ,17,923,10099780,32,0 ,44,15152,3808324,416,0 ,45,15153,5381188,24,0 ,17,923,8526916,56,0 ,28,14980,138312,6,3 ,15,5873,662600,1,1 ,28,14980,138320,8,3 ,15,5874,662608,1,1 ,28,14980,138328,6,3 ,15,5875,662616,1,1 ,28,14980,138336,6,3 ,15,5876,662624,1,1 ,20,23355,20585570,24,0 ,20,15625,1186914,456,0 ,20,18221,7478370,396,0 ,28,14980,138344,6,3 ,15,5877,662632,1,1 ,28,14980,138352,6,3 ,15,5878,662640,1,1 ,28,14980,138360,6,3 ,15,5879,662648,1,1 ,28,14980,138368,6,3 ,15,5880,662656,1,1 ,17,923,138371,32,0 ,17,923,9051268,24,0 ,17,923,6429828,40,0 ,44,15152,1711236,248,0 ,45,15153,4856964,24,0 ,28,14980,138376,6,3 ,15,5881,662664,1,1 ,28,14980,138384,6,3 ,15,5882,662672,1,1 ,28,14980,138392,6,3 ,15,5883,662680,1,1 ,28,14980,138400,6,3 ,15,5884,662688,1,1 ,28,14980,138408,6,3 ,15,5885,662696,1,1 ,28,14980,138416,6,3 ,15,5886,662704,1,1 ,28,14980,138424,6,3 ,15,5887,662712,1,1 ,28,14980,138432,6,3 ,15,5888,662720,1,1 ,17,923,9575620,24,0 ,17,923,6954180,32,0 ,17,923,8002756,40,0 ,28,14980,138440,6,3 ,15,5889,662728,1,1 ,28,14980,138448,6,3 ,15,5890,662736,1,1 ,28,14980,138456,6,3 ,15,5891,662744,1,1 ,28,14980,138464,6,3 ,15,5892,662752,1,1 ,20,16366,3284194,128,0 ,28,14980,138472,6,3 ,15,5893,662760,1,1 ,28,14980,138480,6,3 ,15,5894,662768,1,1 ,28,14980,138488,6,3 ,15,5895,662776,1,1 ,28,14980,138496,6,3 ,15,5896,662784,1,1 ,45,15153,5381380,80,0 ,17,923,7478532,24,0 ,28,14980,138504,6,3 ,15,5897,662792,1,1 ,28,14980,138512,6,3 ,15,5898,662800,1,1 ,28,14980,138520,6,3 ,15,5899,662808,1,1 ,28,14980,138528,6,3 ,15,5900,662816,1,1 ,20,23356,20585762,24,0 ,28,14980,138536,6,3 ,15,5901,662824,1,1 ,28,14980,138544,8,3 ,15,5902,662832,1,1 ,28,14980,138552,6,3 ,15,5903,662840,1,1 ,28,14980,138560,6,3 ,15,5904,662848,1,1 ,17,923,10100036,32,0 ,45,15153,4857156,24,0 ,17,923,9051460,32,0 ,28,14980,138568,6,3 ,15,5905,662856,1,1 ,28,14980,138576,6,3 ,15,5906,662864,1,1 ,28,14980,138584,6,3 ,15,5907,662872,1,1 ,28,14980,138592,6,3 ,15,5908,662880,1,1 ,20,21546,16391522,12,0 ,28,14980,138600,6,3 ,15,5909,662888,1,1 ,28,14980,138608,6,3 ,15,5910,662896,1,1 ,28,14980,138616,8,3 ,15,5911,662904,1,1 ,28,14980,138624,6,3 ,15,5912,662912,1,1 ,20,22292,18488706,268,0 ,17,923,138627,40,0 ,17,923,9575812,24,0 ,44,15152,2760068,80,0 ,28,14980,138632,6,3 ,15,5913,662920,1,1 ,28,14980,138640,6,3 ,15,5914,662928,1,1 ,28,14980,138648,6,3 ,15,5915,662936,1,1 ,28,14980,138656,6,3 ,15,5916,662944,1,1 ,28,14980,138664,6,3 ,15,5917,662952,1,1 ,28,14980,138672,6,3 ,15,5918,662960,1,1 ,28,14980,138680,6,3 ,15,5919,662968,1,1 ,28,14980,138688,6,3 ,15,5920,662976,1,1 ,20,21547,16391618,12,0 ,44,15152,3284420,32,0 ,17,923,7478724,40,0 ,17,923,6954436,24,0 ,17,923,6430148,32,0 ,28,14980,138696,6,3 ,15,5921,662984,1,1 ,28,14980,138704,6,3 ,15,5922,662992,1,1 ,28,14980,138712,6,3 ,15,5923,663000,1,1 ,28,14980,138720,6,3 ,15,5924,663008,1,1 ,20,23357,20585954,24,0 ,28,14980,138728,6,3 ,15,5925,663016,1,1 ,28,14980,138736,6,3 ,15,5926,663024,1,1 ,28,14980,138744,6,3 ,15,5927,663032,1,1 ,28,14980,138752,6,3 ,15,5928,663040,1,1 ,20,23958,22158850,496,0 ,17,923,8527364,40,0 ,44,15152,1187332,24,0 ,45,15153,4333060,24,0 ,45,15153,4857348,24,0 ,17,923,8003076,24,0 ,28,14980,138760,6,3 ,15,5929,663048,1,1 ,28,14980,138768,6,3 ,15,5930,663056,1,1 ,28,14980,138776,6,3 ,15,5931,663064,1,1 ,28,14980,138784,6,3 ,15,5932,663072,1,1 ,20,22045,17964578,168,0 ,20,21548,16391714,92,0 ,28,14980,138792,6,3 ,15,5933,663080,1,1 ,28,14980,138800,6,3 ,15,5934,663088,1,1 ,28,14980,138808,6,3 ,15,5935,663096,1,1 ,28,14980,138816,6,3 ,15,5936,663104,1,1 ,20,15813,1711682,84,0 ,17,923,10100292,24,0 ,17,923,9051716,16,0 ,17,923,9576004,24,0 ,28,14980,138824,8,3 ,15,5937,663112,1,1 ,28,14980,138832,6,3 ,15,5938,663120,1,1 ,28,14980,138840,6,3 ,15,5939,663128,1,1 ,28,14980,138848,6,3 ,15,5940,663136,1,1 ,20,19987,11148898,140,0 ,28,14980,138856,6,3 ,15,5941,663144,1,1 ,28,14980,138864,6,3 ,15,5942,663152,1,1 ,28,14980,138872,6,3 ,15,5943,663160,1,1 ,28,14980,138880,6,3 ,15,5944,663168,1,1 ,20,25930,27401858,508,0 ,17,923,6954628,56,0 ,28,14980,138888,6,3 ,15,5945,663176,1,1 ,28,14980,138896,6,3 ,15,5946,663184,1,1 ,28,14980,138904,6,3 ,15,5947,663192,1,1 ,28,14980,138912,6,3 ,15,5948,663200,1,1 ,20,23358,20586146,140,0 ,28,14980,138920,6,3 ,15,5949,663208,1,1 ,28,14980,138928,6,3 ,15,5950,663216,1,1 ,28,14980,138936,6,3 ,15,5951,663224,1,1 ,28,14980,138944,6,3 ,15,5952,663232,1,1 ,20,24364,23207618,796,0 ,20,17144,4857538,464,0 ,20,21256,15867586,24,0 ,17,923,138947,24,0 ,17,923,9051844,24,0 ,17,923,6430404,40,0 ,44,15152,1187524,96,0 ,44,15152,3284676,104,0 ,45,15153,4333252,32,0 ,45,15153,4857540,24,0 ,17,923,8003268,64,0 ,28,14980,138952,6,3 ,15,5953,663240,1,1 ,28,14980,138960,6,3 ,15,5954,663248,1,1 ,28,14980,138968,6,3 ,15,5955,663256,1,1 ,28,14980,138976,6,3 ,15,5956,663264,1,1 ,20,24930,24780514,144,0 ,28,14980,138984,6,3 ,15,5957,663272,1,1 ,28,14980,138992,6,3 ,15,5958,663280,1,1 ,28,14980,139000,6,3 ,15,5959,663288,1,1 ,28,14980,139008,6,3 ,15,5960,663296,1,1 ,20,19387,10100482,164,0 ,17,923,10100484,24,0 ,17,923,7479044,24,0 ,17,923,9576196,32,0 ,28,14980,139016,6,3 ,15,5961,663304,1,1 ,28,14980,139024,6,3 ,15,5962,663312,1,1 ,28,14980,139032,6,3 ,15,5963,663320,1,1 ,28,14980,139040,6,3 ,15,5964,663328,1,1 ,20,16975,4333346,60,0 ,28,14980,139048,6,3 ,15,5965,663336,1,1 ,28,14980,139056,6,3 ,15,5966,663344,1,1 ,28,14980,139064,6,3 ,15,5967,663352,1,1 ,28,14980,139072,6,3 ,15,5968,663360,1,1 ,17,923,8527684,56,0 ,28,14980,139080,6,3 ,15,5969,663368,1,1 ,28,14980,139088,6,3 ,15,5970,663376,1,1 ,28,14980,139096,6,3 ,15,5971,663384,1,1 ,28,14980,139104,6,3 ,15,5972,663392,1,1 ,20,20253,12722018,92,0 ,28,14980,139112,6,3 ,15,5973,663400,1,1 ,28,14980,139120,6,3 ,15,5974,663408,1,1 ,28,14980,139128,6,3 ,15,5975,663416,1,1 ,28,14980,139136,6,3 ,15,5976,663424,1,1 ,20,21257,15867778,24,0 ,17,923,139139,16,0 ,17,923,9052036,32,0 ,45,15153,4857732,32,0 ,45,15153,5382020,24,0 ,28,14980,139144,6,3 ,15,5977,663432,1,1 ,28,14980,139152,6,3 ,15,5978,663440,1,1 ,28,14980,139160,6,3 ,15,5979,663448,1,1 ,28,14980,139168,6,3 ,15,5980,663456,1,1 ,28,14980,139176,6,3 ,15,5981,663464,1,1 ,28,14980,139184,6,3 ,15,5982,663472,1,1 ,28,14980,139192,6,3 ,15,5983,663480,1,1 ,28,14980,139200,6,3 ,15,5984,663488,1,1 ,20,16167,2760642,136,0 ,17,923,10100676,24,0 ,17,923,7479236,24,0 ,44,15152,2236356,40,0 ,44,15152,139204,16,0 ,45,15153,4333508,88,0 ,28,14980,139208,6,3 ,15,5985,663496,1,1 ,28,14980,139216,6,3 ,15,5986,663504,1,1 ,28,14980,139224,6,3 ,15,5987,663512,1,1 ,28,14980,139232,6,3 ,15,5988,663520,1,1 ,28,14980,139240,6,3 ,15,5989,663528,1,1 ,28,14980,139248,6,3 ,15,5990,663536,1,1 ,28,14980,139256,6,3 ,15,5991,663544,1,1 ,28,14980,139264,6,3 ,15,5992,663552,1,1 ,17,923,139267,24,0 ,17,923,9576452,32,0 ,17,923,6430724,40,0 ,44,15152,2760708,104,0 ,28,14980,139272,6,3 ,15,5993,663560,1,1 ,28,14980,139280,6,3 ,15,5994,663568,1,1 ,28,14980,139288,6,3 ,15,5995,663576,1,1 ,28,14980,139296,6,3 ,15,5996,663584,1,1 ,28,14980,139304,6,3 ,15,5997,663592,1,1 ,28,14980,139312,6,3 ,15,5998,663600,1,1 ,28,14980,139320,6,3 ,15,5999,663608,1,1 ,28,14980,139328,6,3 ,15,6000,663616,1,1 ,20,21258,15867970,24,0 ,45,15153,5382212,16,0 ,17,923,6955076,80,0 ,44,15152,139332,96,0 ,28,14980,139336,6,3 ,15,6001,663624,1,1 ,28,14980,139344,6,3 ,15,6002,663632,1,1 ,28,14980,139352,6,3 ,15,6003,663640,1,1 ,28,14980,139360,6,3 ,15,6004,663648,1,1 ,28,14980,139368,6,3 ,15,6005,663656,1,1 ,28,14980,139376,6,3 ,15,6006,663664,1,1 ,28,14980,139384,6,3 ,15,6007,663672,1,1 ,28,14980,139392,6,3 ,15,6008,663680,1,1 ,17,923,10100868,32,0 ,17,923,7479428,24,0 ,45,15153,4857988,16,0 ,17,923,9052292,40,0 ,28,14980,139400,6,3 ,15,6009,663688,1,1 ,28,14980,139408,6,3 ,15,6010,663696,1,1 ,28,14980,139416,6,3 ,15,6011,663704,1,1 ,28,14980,139424,6,3 ,15,6012,663712,1,1 ,28,14980,139432,6,3 ,15,6013,663720,1,1 ,28,14980,139440,6,3 ,15,6014,663728,1,1 ,28,14980,139448,6,3 ,15,6015,663736,1,1 ,28,14980,139456,6,3 ,15,6016,663744,1,1 ,20,17757,6430914,56,0 ,20,15373,663746,724,0 ,17,923,139459,16,0 ,17,923,8003780,48,0 ,45,15153,5382340,24,0 ,28,14980,139464,6,3 ,15,6017,663752,1,1 ,28,14980,139472,6,3 ,15,6018,663760,1,1 ,28,14980,139480,6,3 ,15,6019,663768,1,1 ,28,14980,139488,6,3 ,15,6020,663776,1,1 ,20,16367,3285218,76,0 ,20,15814,1712354,328,0 ,28,14980,139496,6,3 ,15,6021,663784,1,1 ,28,14980,139504,6,3 ,15,6022,663792,1,1 ,28,14980,139512,6,3 ,15,6023,663800,1,1 ,28,14980,139520,6,3 ,15,6024,663808,1,1 ,20,21549,16392450,108,0 ,20,16976,4333826,12,0 ,20,21259,15868162,24,0 ,17,923,9576708,40,0 ,44,15152,2236676,56,0 ,45,15153,4858116,32,0 ,17,923,8528132,48,0 ,28,14980,139528,6,3 ,15,6025,663816,1,1 ,28,14980,139536,6,3 ,15,6026,663824,1,1 ,28,14980,139544,6,3 ,15,6027,663832,1,1 ,28,14980,139552,6,3 ,15,6028,663840,1,1 ,28,14980,139560,6,3 ,15,6029,663848,1,1 ,28,14980,139568,6,3 ,15,6030,663856,1,1 ,28,14980,139576,6,3 ,15,6031,663864,1,1 ,28,14980,139584,6,3 ,15,6032,663872,1,1 ,17,923,139587,32,0 ,17,923,6431044,88,0 ,17,923,7479620,32,0 ,28,14980,139592,6,3 ,15,6033,663880,1,1 ,28,14980,139600,6,3 ,15,6034,663888,1,1 ,28,14980,139608,6,3 ,15,6035,663896,1,1 ,28,14980,139616,6,3 ,15,6036,663904,1,1 ,20,16977,4333922,468,0 ,28,14980,139624,6,3 ,15,6037,663912,1,1 ,28,14980,139632,6,3 ,15,6038,663920,1,1 ,28,14980,139640,6,3 ,15,6039,663928,1,1 ,28,14980,139648,6,3 ,15,6040,663936,1,1 ,20,18486,8003970,332,0 ,17,923,10101124,24,0 ,45,15153,5382532,56,0 ,28,14980,139656,6,3 ,15,6041,663944,1,1 ,28,14980,139664,6,3 ,15,6042,663952,1,1 ,28,14980,139672,6,3 ,15,6043,663960,1,1 ,28,14980,139680,6,3 ,15,6044,663968,1,1 ,28,14980,139688,6,3 ,15,6045,663976,1,1 ,28,14980,139696,6,3 ,15,6046,663984,1,1 ,28,14980,139704,6,3 ,15,6047,663992,1,1 ,28,14980,139712,6,3 ,15,6048,664000,1,1 ,20,21260,15868354,24,0 ,17,923,9052612,24,0 ,44,15152,1188292,32,0 ,28,14980,139720,6,3 ,15,6049,664008,1,1 ,28,14980,139728,6,3 ,15,6050,664016,1,1 ,28,14980,139736,6,3 ,15,6051,664024,1,1 ,28,14980,139744,6,3 ,15,6052,664032,1,1 ,28,14980,139752,6,3 ,15,6053,664040,1,1 ,28,14980,139760,6,3 ,15,6054,664048,1,1 ,28,14980,139768,6,3 ,15,6055,664056,1,1 ,28,14980,139776,6,3 ,15,6056,664064,1,1 ,45,15153,4858372,24,0 ,44,15152,3285508,128,0 ,28,14980,139784,6,3 ,15,6057,664072,1,1 ,28,14980,139792,6,3 ,15,6058,664080,1,1 ,28,14980,139800,6,3 ,15,6059,664088,1,1 ,28,14980,139808,6,3 ,15,6060,664096,1,1 ,28,14980,139816,6,3 ,15,6061,664104,1,1 ,28,14980,139824,6,3 ,15,6062,664112,1,1 ,28,14980,139832,6,3 ,15,6063,664120,1,1 ,28,14980,139840,6,3 ,15,6064,664128,1,1 ,20,20254,12722754,12,0 ,20,18030,6955586,12,0 ,17,923,139843,40,0 ,17,923,10101316,24,0 ,17,923,7479876,24,0 ,17,923,8004164,40,0 ,17,923,9577028,32,0 ,28,14980,139848,6,3 ,15,6065,664136,1,1 ,28,14980,139856,6,3 ,15,6066,664144,1,1 ,28,14980,139864,6,3 ,15,6067,664152,1,1 ,28,14980,139872,6,3 ,15,6068,664160,1,1 ,20,23721,21635682,476,0 ,28,14980,139880,6,3 ,15,6069,664168,1,1 ,28,14980,139888,6,3 ,15,6070,664176,1,1 ,28,14980,139896,6,3 ,15,6071,664184,1,1 ,28,14980,139904,6,3 ,15,6072,664192,1,1 ,20,21261,15868546,24,0 ,20,17758,6431362,52,0 ,17,923,9052804,40,0 ,45,15153,4334212,16,0 ,17,923,8528516,48,0 ,28,14980,139912,6,3 ,15,6073,664200,1,1 ,28,14980,139920,6,3 ,15,6074,664208,1,1 ,28,14980,139928,6,3 ,15,6075,664216,1,1 ,28,14980,139936,6,3 ,15,6076,664224,1,1 ,20,20255,12722850,424,0 ,20,18031,6955682,480,0 ,28,14980,139944,6,3 ,15,6077,664232,1,1 ,28,14980,139952,6,3 ,15,6078,664240,1,1 ,28,14980,139960,6,3 ,15,6079,664248,1,1 ,28,14980,139968,6,3 ,15,6080,664256,1,1 ,20,19988,11150018,484,0 ,45,15153,4858564,16,0 ,17,923,6955716,48,0 ,44,15152,2237124,48,0 ,44,15152,1188548,24,0 ,28,14980,139976,6,3 ,15,6081,664264,1,1 ,28,14980,139984,6,3 ,15,6082,664272,1,1 ,28,14980,139992,6,3 ,15,6083,664280,1,1 ,28,14980,140000,6,3 ,15,6084,664288,1,1 ,28,14980,140008,6,3 ,15,6085,664296,1,1 ,28,14980,140016,6,3 ,15,6086,664304,1,1 ,28,14980,140024,6,3 ,15,6087,664312,1,1 ,28,14980,140032,6,3 ,15,6088,664320,1,1 ,20,23359,20587266,140,0 ,17,923,10101508,24,0 ,17,923,7480068,24,0 ,45,15153,4334340,24,0 ,28,14980,140040,6,3 ,15,6089,664328,1,1 ,28,14980,140048,6,3 ,15,6090,664336,1,1 ,28,14980,140056,6,3 ,15,6091,664344,1,1 ,28,14980,140064,6,3 ,15,6092,664352,1,1 ,28,14980,140072,6,3 ,15,6093,664360,1,1 ,28,14980,140080,6,3 ,15,6094,664368,1,1 ,28,14980,140088,6,3 ,15,6095,664376,1,1 ,28,14980,140096,6,3 ,15,6096,664384,1,1 ,20,21262,15868738,24,0 ,20,16368,3285826,208,0 ,17,923,9577284,40,0 ,44,15152,2761540,120,0 ,44,15152,140100,24,0 ,45,15153,4858692,48,0 ,45,15153,5382980,32,0 ,28,14980,140104,6,3 ,15,6097,664392,1,1 ,28,14980,140112,6,3 ,15,6098,664400,1,1 ,28,14980,140120,6,3 ,15,6099,664408,1,1 ,28,14980,140128,6,3 ,15,6100,664416,1,1 ,20,22046,17965922,64,0 ,20,24931,24781666,24,0 ,28,14980,140136,6,3 ,15,6101,664424,1,1 ,28,14980,140144,6,3 ,15,6102,664432,1,1 ,28,14980,140152,6,3 ,15,6103,664440,1,1 ,28,14980,140160,8,3 ,15,6104,664448,1,1 ,17,923,140163,16,0 ,17,923,8004484,32,0 ,44,15152,1188740,56,0 ,28,14980,140168,6,3 ,15,6105,664456,1,1 ,28,14980,140176,6,3 ,15,6106,664464,1,1 ,28,14980,140184,6,3 ,15,6107,664472,1,1 ,28,14980,140192,6,3 ,15,6108,664480,1,1 ,28,14980,140200,6,3 ,15,6109,664488,1,1 ,28,14980,140208,6,3 ,15,6110,664496,1,1 ,28,14980,140216,6,3 ,15,6111,664504,1,1 ,28,14980,140224,6,3 ,15,6112,664512,1,1 ,17,923,10101700,24,0 ,17,923,7480260,24,0 ,45,15153,4334532,32,0 ,17,923,9053124,24,0 ,28,14980,140232,6,3 ,15,6113,664520,1,1 ,28,14980,140240,6,3 ,15,6114,664528,1,1 ,28,14980,140248,6,3 ,15,6115,664536,1,1 ,28,14980,140256,6,3 ,15,6116,664544,1,1 ,28,14980,140264,6,3 ,15,6117,664552,1,1 ,28,14980,140272,6,3 ,15,6118,664560,1,1 ,28,14980,140280,6,3 ,15,6119,664568,1,1 ,28,14980,140288,6,3 ,15,6120,664576,1,1 ,20,21263,15868930,24,0 ,20,16168,2761730,128,0 ,20,16703,3810306,96,0 ,20,19706,10626050,860,0 ,17,923,140291,16,0 ,17,923,8528900,168,0 ,17,923,6431748,48,0 ,44,15152,140292,40,0 ,28,14980,140296,6,3 ,15,6121,664584,1,1 ,28,14980,140304,8,3 ,15,6122,664592,1,1 ,28,14980,140312,6,3 ,15,6123,664600,1,1 ,28,14980,140320,6,3 ,15,6124,664608,1,1 ,20,19388,10101794,116,0 ,20,25711,26879010,156,0 ,20,24932,24781858,212,0 ,20,17759,6431778,108,0 ,28,14980,140328,6,3 ,15,6125,664616,1,1 ,28,14980,140336,6,3 ,15,6126,664624,1,1 ,28,14980,140344,6,3 ,15,6127,664632,1,1 ,28,14980,140352,6,3 ,15,6128,664640,1,1 ,45,15153,5383236,16,0 ,17,923,6956100,48,0 ,44,15152,2237508,64,0 ,44,15152,1713220,32,0 ,28,14980,140360,6,3 ,15,6129,664648,1,1 ,28,14980,140368,6,3 ,15,6130,664656,1,1 ,28,14980,140376,6,3 ,15,6131,664664,1,1 ,28,14980,140384,6,3 ,15,6132,664672,1,1 ,20,21550,16393314,96,0 ,28,14980,140392,6,3 ,15,6133,664680,1,1 ,28,14980,140400,6,3 ,15,6134,664688,1,1 ,28,14980,140408,6,3 ,15,6135,664696,1,1 ,28,14980,140416,6,3 ,15,6136,664704,1,1 ,17,923,140419,16,0 ,17,923,10101892,32,0 ,17,923,7480452,32,0 ,17,923,8004740,56,0 ,17,923,9053316,64,0 ,17,923,9577604,48,0 ,28,14980,140424,6,3 ,15,6137,664712,1,1 ,28,14980,140432,6,3 ,15,6138,664720,1,1 ,28,14980,140440,6,3 ,15,6139,664728,1,1 ,28,14980,140448,6,3 ,15,6140,664736,1,1 ,28,14980,140456,6,3 ,15,6141,664744,1,1 ,28,14980,140464,6,3 ,15,6142,664752,1,1 ,28,14980,140472,6,3 ,15,6143,664760,1,1 ,28,14980,140480,8,3 ,15,6144,664768,1,1 ,20,21264,15869122,24,0 ,45,15153,5383364,184,0 ,45,15153,4334788,16,0 ,45,15153,4859076,16,0 ,28,14980,140488,6,3 ,15,6145,664776,1,1 ,28,14980,140496,6,3 ,15,6146,664784,1,1 ,28,14980,140504,6,3 ,15,6147,664792,1,1 ,28,14980,140512,8,3 ,15,6148,664800,1,1 ,20,20955,15344866,12,0 ,28,14980,140520,6,3 ,15,6149,664808,1,1 ,28,14980,140528,6,3 ,15,6150,664816,1,1 ,28,14980,140536,6,3 ,15,6151,664824,1,1 ,28,14980,140544,6,3 ,15,6152,664832,1,1 ,17,923,140547,24,0 ,28,14980,140552,6,3 ,15,6153,664840,1,1 ,28,14980,140560,6,3 ,15,6154,664848,1,1 ,28,14980,140568,6,3 ,15,6155,664856,1,1 ,28,14980,140576,8,3 ,15,6156,664864,1,1 ,28,14980,140584,8,3 ,15,6157,664872,1,1 ,28,14980,140592,8,3 ,15,6158,664880,1,1 ,28,14980,140600,8,3 ,15,6159,664888,1,1 ,28,14980,140608,8,3 ,15,6160,664896,1,1 ,20,20956,15344962,56,0 ,45,15153,4859204,32,0 ,44,15152,1713476,24,0 ,44,15152,140612,32,0 ,44,15152,664900,48,0 ,44,15152,1189188,56,0 ,45,15153,4334916,16,0 ,28,14980,140616,8,3 ,15,6161,664904,1,1 ,28,14980,140624,8,3 ,15,6162,664912,1,1 ,28,14980,140632,8,3 ,15,6163,664920,1,1 ,28,14980,140640,8,3 ,15,6164,664928,1,1 ,20,22047,17966434,64,0 ,20,25509,26355042,60,0 ,28,14980,140648,8,3 ,15,6165,664936,1,1 ,28,14980,140656,8,3 ,15,6166,664944,1,1 ,28,14980,140664,8,3 ,15,6167,664952,1,1 ,28,14980,140672,8,3 ,15,6168,664960,1,1 ,20,21265,15869314,24,0 ,17,923,10102148,24,0 ,17,923,7480708,24,0 ,17,923,6432132,48,0 ,28,14980,140680,8,3 ,15,6169,664968,1,1 ,28,14980,140688,8,3 ,15,6170,664976,1,1 ,28,14980,140696,8,3 ,15,6171,664984,1,1 ,28,14980,140704,8,3 ,15,6172,664992,1,1 ,28,14980,140712,8,3 ,15,6173,665000,1,1 ,28,14980,140720,8,3 ,15,6174,665008,1,1 ,28,14980,140728,8,3 ,15,6175,665016,1,1 ,28,14980,140736,8,3 ,15,6176,665024,1,1 ,20,17532,5907906,60,0 ,17,923,140739,16,0 ,45,15153,4335044,16,0 ,17,923,6956484,48,0 ,28,14980,140744,8,3 ,15,6177,665032,1,1 ,28,14980,140752,8,3 ,15,6178,665040,1,1 ,28,14980,140760,8,3 ,15,6179,665048,1,1 ,28,14980,140768,8,3 ,15,6180,665056,1,1 ,20,24184,22685154,88,0 ,20,22293,18490850,312,0 ,28,14980,140776,8,3 ,15,6181,665064,1,1 ,28,14980,140784,8,3 ,15,6182,665072,1,1 ,28,14980,140792,8,3 ,15,6183,665080,1,1 ,28,14980,140800,8,3 ,15,6184,665088,1,1 ,17,923,9577988,40,0 ,44,15152,1713668,32,0 ,44,15152,3286532,48,0 ,28,14980,140808,8,3 ,15,6185,665096,1,1 ,28,14980,140816,8,3 ,15,6186,665104,1,1 ,28,14980,140824,8,3 ,15,6187,665112,1,1 ,28,14980,140832,8,3 ,15,6188,665120,1,1 ,28,14980,140840,8,3 ,15,6189,665128,1,1 ,28,14980,140848,8,3 ,15,6190,665136,1,1 ,28,14980,140856,8,3 ,15,6191,665144,1,1 ,28,14980,140864,8,3 ,15,6192,665152,1,1 ,20,21266,15869506,24,0 ,20,19118,9578050,108,0 ,17,923,140867,32,0 ,17,923,10102340,24,0 ,17,923,7480900,40,0 ,44,15152,2238020,56,0 ,44,15152,140868,16,0 ,45,15153,4335172,16,0 ,45,15153,4859460,16,0 ,17,923,8005188,32,0 ,28,14980,140872,8,3 ,15,6193,665160,1,1 ,28,14980,140880,8,3 ,15,6194,665168,1,1 ,28,14980,140888,8,3 ,15,6195,665176,1,1 ,28,14980,140896,8,3 ,15,6196,665184,1,1 ,28,14980,140904,8,3 ,15,6197,665192,1,1 ,28,14980,140912,8,3 ,15,6198,665200,1,1 ,28,14980,140920,8,3 ,15,6199,665208,1,1 ,28,14980,140928,6,3 ,15,6200,665216,1,1 ,17,923,9053828,40,0 ,28,14980,140936,6,3 ,15,6201,665224,1,1 ,28,14980,140944,6,3 ,15,6202,665232,1,1 ,28,14980,140952,8,3 ,15,6203,665240,1,1 ,28,14980,140960,8,3 ,15,6204,665248,1,1 ,28,14980,140968,6,3 ,15,6205,665256,1,1 ,28,14980,140976,8,3 ,15,6206,665264,1,1 ,28,14980,140984,6,3 ,15,6207,665272,1,1 ,28,14980,140992,6,3 ,15,6208,665280,1,1 ,45,15153,4859588,16,0 ,44,15152,140996,24,0 ,44,15152,665284,48,0 ,45,15153,4335300,40,0 ,28,14980,141000,6,3 ,15,6209,665288,1,1 ,28,14980,141008,6,3 ,15,6210,665296,1,1 ,28,14980,141016,6,3 ,15,6211,665304,1,1 ,28,14980,141024,6,3 ,15,6212,665312,1,1 ,28,14980,141032,6,3 ,15,6213,665320,1,1 ,28,14980,141040,6,3 ,15,6214,665328,1,1 ,28,14980,141048,6,3 ,15,6215,665336,1,1 ,28,14980,141056,6,3 ,15,6216,665344,1,1 ,20,21267,15869698,24,0 ,20,16704,3811074,504,0 ,20,17362,5383938,664,0 ,20,20957,15345410,12,0 ,17,923,10102532,40,0 ,17,923,6432516,40,0 ,44,15152,2762500,40,0 ,44,15152,1713924,24,0 ,44,15152,1189636,112,0 ,28,14980,141064,6,3 ,15,6217,665352,1,1 ,28,14980,141072,6,3 ,15,6218,665360,1,1 ,28,14980,141080,6,3 ,15,6219,665368,1,1 ,28,14980,141088,6,3 ,15,6220,665376,1,1 ,28,14980,141096,6,3 ,15,6221,665384,1,1 ,28,14980,141104,6,3 ,15,6222,665392,1,1 ,28,14980,141112,6,3 ,15,6223,665400,1,1 ,28,14980,141120,8,3 ,15,6224,665408,1,1 ,20,25510,26355522,472,0 ,17,923,141123,16,0 ,17,923,9578308,40,0 ,17,923,6956868,24,0 ,45,15153,4859716,40,0 ,17,923,8005444,56,0 ,28,14980,141128,8,3 ,15,6225,665416,1,1 ,28,14980,141136,6,3 ,15,6226,665424,1,1 ,28,14980,141144,6,3 ,15,6227,665432,1,1 ,28,14980,141152,6,3 ,15,6228,665440,1,1 ,20,23360,20588386,500,0 ,20,20958,15345506,112,0 ,20,21551,16394082,148,0 ,20,22048,17966946,64,0 ,28,14980,141160,6,3 ,15,6229,665448,1,1 ,28,14980,141168,6,3 ,15,6230,665456,1,1 ,28,14980,141176,6,3 ,15,6231,665464,1,1 ,28,14980,141184,6,3 ,15,6232,665472,1,1 ,20,17760,6432642,108,0 ,44,15152,3286916,48,0 ,17,923,7481220,24,0 ,44,15152,141188,176,0 ,28,14980,141192,6,3 ,15,6233,665480,1,1 ,28,14980,141200,6,3 ,15,6234,665488,1,1 ,28,14980,141208,6,3 ,15,6235,665496,1,1 ,28,14980,141216,6,3 ,15,6236,665504,1,1 ,20,17533,5908386,316,0 ,28,14980,141224,6,3 ,15,6237,665512,1,1 ,28,14980,141232,6,3 ,15,6238,665520,1,1 ,28,14980,141240,6,3 ,15,6239,665528,1,1 ,28,14980,141248,6,3 ,15,6240,665536,1,1 ,20,21268,15869890,24,0 ,20,19389,10102722,12,0 ,17,923,141251,32,0 ,17,923,9054148,40,0 ,44,15152,1714116,40,0 ,28,14980,141256,6,3 ,15,6241,665544,1,1 ,28,14980,141264,6,3 ,15,6242,665552,1,1 ,28,14980,141272,6,3 ,15,6243,665560,1,1 ,28,14980,141280,6,3 ,15,6244,665568,1,1 ,28,14980,141288,6,3 ,15,6245,665576,1,1 ,28,14980,141296,6,3 ,15,6246,665584,1,1 ,28,14980,141304,6,3 ,15,6247,665592,1,1 ,28,14980,141312,6,3 ,15,6248,665600,1,1 ,20,16169,2762754,172,0 ,45,15153,4335620,72,0 ,17,923,6957060,24,0 ,44,15152,2238468,128,0 ,28,14980,141320,6,3 ,15,6249,665608,1,1 ,28,14980,141328,6,3 ,15,6250,665616,1,1 ,28,14980,141336,6,3 ,15,6251,665624,1,1 ,28,14980,141344,6,3 ,15,6252,665632,1,1 ,20,19390,10102818,52,0 ,28,14980,141352,6,3 ,15,6253,665640,1,1 ,28,14980,141360,6,3 ,15,6254,665648,1,1 ,28,14980,141368,6,3 ,15,6255,665656,1,1 ,28,14980,141376,6,3 ,15,6256,665664,1,1 ,17,923,10102852,32,0 ,17,923,7481412,24,0 ,17,923,6432836,24,0 ,44,15152,2762820,40,0 ,44,15152,665668,80,0 ,28,14980,141384,6,3 ,15,6257,665672,1,1 ,28,14980,141392,6,3 ,15,6258,665680,1,1 ,28,14980,141400,6,3 ,15,6259,665688,1,1 ,28,14980,141408,6,3 ,15,6260,665696,1,1 ,28,14980,141416,6,3 ,15,6261,665704,1,1 ,28,14980,141424,6,3 ,15,6262,665712,1,1 ,28,14980,141432,6,3 ,15,6263,665720,1,1 ,28,14980,141440,6,3 ,15,6264,665728,1,1 ,20,21269,15870082,24,0 ,17,923,9578628,48,0 ,45,15153,4860036,40,0 ,28,14980,141448,6,3 ,15,6265,665736,1,1 ,28,14980,141456,6,3 ,15,6266,665744,1,1 ,28,14980,141464,6,3 ,15,6267,665752,1,1 ,28,14980,141472,6,3 ,15,6268,665760,1,1 ,20,24185,22685858,552,0 ,28,14980,141480,6,3 ,15,6269,665768,1,1 ,28,14980,141488,6,3 ,15,6270,665776,1,1 ,28,14980,141496,6,3 ,15,6271,665784,1,1 ,28,14980,141504,6,3 ,15,6272,665792,1,1 ,20,18222,7481538,308,0 ,17,923,141507,24,0 ,17,923,6957252,24,0 ,28,14980,141512,6,3 ,15,6273,665800,1,1 ,28,14980,141520,6,3 ,15,6274,665808,1,1 ,28,14980,141528,6,3 ,15,6275,665816,1,1 ,28,14980,141536,6,3 ,15,6276,665824,1,1 ,28,14980,141544,6,3 ,15,6277,665832,1,1 ,28,14980,141552,6,3 ,15,6278,665840,1,1 ,28,14980,141560,6,3 ,15,6279,665848,1,1 ,28,14980,141568,6,3 ,15,6280,665856,1,1 ,20,25712,26880258,2428,0 ,17,923,9054468,40,0 ,17,923,7481604,32,0 ,17,923,6433028,88,0 ,44,15152,1714436,80,0 ,44,15152,3287300,56,0 ,17,923,8005892,32,0 ,28,14980,141576,6,3 ,15,6281,665864,1,1 ,28,14980,141584,6,3 ,15,6282,665872,1,1 ,28,14980,141592,6,3 ,15,6283,665880,1,1 ,28,14980,141600,6,3 ,15,6284,665888,1,1 ,28,14980,141608,8,3 ,15,6285,665896,1,1 ,28,14980,141616,6,3 ,15,6286,665904,1,1 ,28,14980,141624,6,3 ,15,6287,665912,1,1 ,28,14980,141632,6,3 ,15,6288,665920,1,1 ,20,21270,15870274,24,0 ,17,923,10103108,32,0 ,44,15152,3811652,24,0 ,17,923,8530244,32,0 ,28,14980,141640,6,3 ,15,6289,665928,1,1 ,28,14980,141648,6,3 ,15,6290,665936,1,1 ,28,14980,141656,6,3 ,15,6291,665944,1,1 ,28,14980,141664,6,3 ,15,6292,665952,1,1 ,20,22049,17967458,64,0 ,28,14980,141672,6,3 ,15,6293,665960,1,1 ,28,14980,141680,6,3 ,15,6294,665968,1,1 ,28,14980,141688,6,3 ,15,6295,665976,1,1 ,28,14980,141696,6,3 ,15,6296,665984,1,1 ,17,923,141699,16,0 ,44,15152,2763140,176,0 ,17,923,6957444,32,0 ,28,14980,141704,6,3 ,15,6297,665992,1,1 ,28,14980,141712,6,3 ,15,6298,666000,1,1 ,28,14980,141720,6,3 ,15,6299,666008,1,1 ,28,14980,141728,6,3 ,15,6300,666016,1,1 ,20,19119,9578914,296,0 ,28,14980,141736,6,3 ,15,6301,666024,1,1 ,28,14980,141744,6,3 ,15,6302,666032,1,1 ,28,14980,141752,6,3 ,15,6303,666040,1,1 ,28,14980,141760,6,3 ,15,6304,666048,1,1 ,20,19391,10103234,12,0 ,20,16369,3287490,52,0 ,45,15153,4860356,24,0 ,28,14980,141768,6,3 ,15,6305,666056,1,1 ,28,14980,141776,6,3 ,15,6306,666064,1,1 ,28,14980,141784,6,3 ,15,6307,666072,1,1 ,28,14980,141792,6,3 ,15,6308,666080,1,1 ,28,14980,141800,6,3 ,15,6309,666088,1,1 ,28,14980,141808,6,3 ,15,6310,666096,1,1 ,28,14980,141816,6,3 ,15,6311,666104,1,1 ,28,14980,141824,6,3 ,15,6312,666112,1,1 ,20,21271,15870466,24,0 ,17,923,141827,24,0 ,17,923,9579012,48,0 ,17,923,7481860,88,0 ,44,15152,3811844,40,0 ,17,923,8006148,48,0 ,28,14980,141832,6,3 ,15,6313,666120,1,1 ,28,14980,141840,6,3 ,15,6314,666128,1,1 ,28,14980,141848,6,3 ,15,6315,666136,1,1 ,28,14980,141856,6,3 ,15,6316,666144,1,1 ,20,19392,10103330,12,0 ,28,14980,141864,6,3 ,15,6317,666152,1,1 ,28,14980,141872,6,3 ,15,6318,666160,1,1 ,28,14980,141880,6,3 ,15,6319,666168,1,1 ,28,14980,141888,6,3 ,15,6320,666176,1,1 ,20,22712,19540546,368,0 ,17,923,10103364,24,0 ,45,15153,4336196,56,0 ,17,923,8530500,48,0 ,17,923,9054788,40,0 ,28,14980,141896,6,3 ,15,6321,666184,1,1 ,28,14980,141904,6,3 ,15,6322,666192,1,1 ,28,14980,141912,6,3 ,15,6323,666200,1,1 ,28,14980,141920,6,3 ,15,6324,666208,1,1 ,28,14980,141928,6,3 ,15,6325,666216,1,1 ,28,14980,141936,6,3 ,15,6326,666224,1,1 ,28,14980,141944,6,3 ,15,6327,666232,1,1 ,28,14980,141952,6,3 ,15,6328,666240,1,1 ,20,19393,10103426,12,0 ,45,15153,5384836,56,0 ,17,923,6957700,32,0 ,44,15152,1190532,56,0 ,45,15153,4860548,32,0 ,28,14980,141960,6,3 ,15,6329,666248,1,1 ,28,14980,141968,6,3 ,15,6330,666256,1,1 ,28,14980,141976,6,3 ,15,6331,666264,1,1 ,28,14980,141984,6,3 ,15,6332,666272,1,1 ,20,15626,1190562,92,0 ,28,14980,141992,6,3 ,15,6333,666280,1,1 ,28,14980,142000,6,3 ,15,6334,666288,1,1 ,28,14980,142008,6,3 ,15,6335,666296,1,1 ,28,14980,142016,6,3 ,15,6336,666304,1,1 ,20,21272,15870658,24,0 ,20,24933,24783554,144,0 ,17,923,142019,16,0 ,44,15152,3287748,24,0 ,44,15152,666308,24,0 ,28,14980,142024,6,3 ,15,6337,666312,1,1 ,28,14980,142032,6,3 ,15,6338,666320,1,1 ,28,14980,142040,6,3 ,15,6339,666328,1,1 ,28,14980,142048,6,3 ,15,6340,666336,1,1 ,20,20959,15346402,12,0 ,20,17761,6433506,488,0 ,20,19394,10103522,12,0 ,28,14980,142056,6,3 ,15,6341,666344,1,1 ,28,14980,142064,6,3 ,15,6342,666352,1,1 ,28,14980,142072,6,3 ,15,6343,666360,1,1 ,28,14980,142080,6,3 ,15,6344,666368,1,1 ,17,923,10103556,32,0 ,28,14980,142088,6,3 ,15,6345,666376,1,1 ,28,14980,142096,6,3 ,15,6346,666384,1,1 ,28,14980,142104,6,3 ,15,6347,666392,1,1 ,28,14980,142112,6,3 ,15,6348,666400,1,1 ,20,15815,1714978,12,0 ,28,14980,142120,6,3 ,15,6349,666408,1,1 ,28,14980,142128,6,3 ,15,6350,666416,1,1 ,28,14980,142136,6,3 ,15,6351,666424,1,1 ,28,14980,142144,6,3 ,15,6352,666432,1,1 ,20,20960,15346498,160,0 ,20,19395,10103618,80,0 ,17,923,142147,16,0 ,44,15152,3812164,448,0 ,28,14980,142152,6,3 ,15,6353,666440,1,1 ,28,14980,142160,6,3 ,15,6354,666448,1,1 ,28,14980,142168,6,3 ,15,6355,666456,1,1 ,28,14980,142176,6,3 ,15,6356,666464,1,1 ,20,22050,17967970,64,0 ,20,16370,3287906,60,0 ,28,14980,142184,6,3 ,15,6357,666472,1,1 ,28,14980,142192,6,3 ,15,6358,666480,1,1 ,28,14980,142200,6,3 ,15,6359,666488,1,1 ,28,14980,142208,6,3 ,15,6360,666496,1,1 ,20,21273,15870850,24,0 ,20,15816,1715074,172,0 ,17,923,9579396,16,0 ,17,923,6957956,40,0 ,44,15152,1715076,24,0 ,44,15152,666500,24,0 ,44,15152,3287940,32,0 ,45,15153,4860804,24,0 ,17,923,8006532,48,0 ,17,923,9055108,88,0 ,28,14980,142216,6,3 ,15,6361,666504,1,1 ,28,14980,142224,6,3 ,15,6362,666512,1,1 ,28,14980,142232,6,3 ,15,6363,666520,1,1 ,28,14980,142240,6,3 ,15,6364,666528,1,1 ,28,14980,142248,6,3 ,15,6365,666536,1,1 ,28,14980,142256,6,3 ,15,6366,666544,1,1 ,28,14980,142264,6,3 ,15,6367,666552,1,1 ,28,14980,142272,6,3 ,15,6368,666560,1,1 ,17,923,142275,16,0 ,17,923,8530884,48,0 ,17,923,6433732,48,0 ,28,14980,142280,6,3 ,15,6369,666568,1,1 ,28,14980,142288,6,3 ,15,6370,666576,1,1 ,28,14980,142296,6,3 ,15,6371,666584,1,1 ,28,14980,142304,6,3 ,15,6372,666592,1,1 ,20,18487,8006626,1248,0 ,28,14980,142312,6,3 ,15,6373,666600,1,1 ,28,14980,142320,6,3 ,15,6374,666608,1,1 ,28,14980,142328,6,3 ,15,6375,666616,1,1 ,28,14980,142336,6,3 ,15,6376,666624,1,1 ,20,21552,16395266,40,0 ,17,923,10103812,32,0 ,44,15152,2239492,24,0 ,45,15153,4336644,64,0 ,17,923,9579524,56,0 ,28,14980,142344,6,3 ,15,6377,666632,1,1 ,28,14980,142352,6,3 ,15,6378,666640,1,1 ,28,14980,142360,6,3 ,15,6379,666648,1,1 ,28,14980,142368,6,3 ,15,6380,666656,1,1 ,28,14980,142376,6,3 ,15,6381,666664,1,1 ,28,14980,142384,6,3 ,15,6382,666672,1,1 ,28,14980,142392,6,3 ,15,6383,666680,1,1 ,28,14980,142400,6,3 ,15,6384,666688,1,1 ,20,21274,15871042,24,0 ,17,923,142403,32,0 ,45,15153,5385284,32,0 ,44,15152,1715268,120,0 ,44,15152,666692,40,0 ,44,15152,1190980,56,0 ,45,15153,4860996,64,0 ,28,14980,142408,6,3 ,15,6385,666696,1,1 ,28,14980,142416,6,3 ,15,6386,666704,1,1 ,28,14980,142424,6,3 ,15,6387,666712,1,1 ,28,14980,142432,6,3 ,15,6388,666720,1,1 ,28,14980,142440,6,3 ,15,6389,666728,1,1 ,28,14980,142448,6,3 ,15,6390,666736,1,1 ,28,14980,142456,6,3 ,15,6391,666744,1,1 ,28,14980,142464,6,3 ,15,6392,666752,1,1 ,44,15152,3288196,24,0 ,28,14980,142472,6,3 ,15,6393,666760,1,1 ,28,14980,142480,6,3 ,15,6394,666768,1,1 ,28,14980,142488,6,3 ,15,6395,666776,1,1 ,28,14980,142496,6,3 ,15,6396,666784,1,1 ,28,14980,142504,6,3 ,15,6397,666792,1,1 ,28,14980,142512,6,3 ,15,6398,666800,1,1 ,28,14980,142520,6,3 ,15,6399,666808,1,1 ,28,14980,142528,6,3 ,15,6400,666816,1,1 ,44,15152,2239684,96,0 ,17,923,7482564,32,0 ,17,923,6958276,32,0 ,28,14980,142536,6,3 ,15,6401,666824,1,1 ,28,14980,142544,6,3 ,15,6402,666832,1,1 ,28,14980,142552,6,3 ,15,6403,666840,1,1 ,28,14980,142560,6,3 ,15,6404,666848,1,1 ,28,14980,142568,6,3 ,15,6405,666856,1,1 ,28,14980,142576,6,3 ,15,6406,666864,1,1 ,28,14980,142584,6,3 ,15,6407,666872,1,1 ,28,14980,142592,6,3 ,15,6408,666880,1,1 ,20,21275,15871234,24,0 ,17,923,10104068,40,0 ,44,15152,142596,56,0 ,17,923,8006916,56,0 ,28,14980,142600,6,3 ,15,6409,666888,1,1 ,28,14980,142608,6,3 ,15,6410,666896,1,1 ,28,14980,142616,6,3 ,15,6411,666904,1,1 ,28,14980,142624,6,3 ,15,6412,666912,1,1 ,28,14980,142632,6,3 ,15,6413,666920,1,1 ,28,14980,142640,6,3 ,15,6414,666928,1,1 ,28,14980,142648,6,3 ,15,6415,666936,1,1 ,28,14980,142656,6,3 ,15,6416,666944,1,1 ,20,21553,16395586,12,0 ,20,16371,3288386,252,0 ,20,17145,4861250,2784,0 ,17,923,142659,40,0 ,17,923,8531268,56,0 ,17,923,6434116,48,0 ,44,15152,3288388,360,0 ,45,15153,5385540,56,0 ,28,14980,142664,6,3 ,15,6417,666952,1,1 ,28,14980,142672,6,3 ,15,6418,666960,1,1 ,28,14980,142680,6,3 ,15,6419,666968,1,1 ,28,14980,142688,6,3 ,15,6420,666976,1,1 ,20,22051,17968482,64,0 ,20,16170,2764130,12,0 ,28,14980,142696,6,3 ,15,6421,666984,1,1 ,28,14980,142704,6,3 ,15,6422,666992,1,1 ,28,14980,142712,6,3 ,15,6423,667000,1,1 ,28,14980,142720,6,3 ,15,6424,667008,1,1 ,20,23959,22162818,928,0 ,20,15627,1191298,136,0 ,44,15152,667012,16,0 ,28,14980,142728,6,3 ,15,6425,667016,1,1 ,28,14980,142736,6,3 ,15,6426,667024,1,1 ,28,14980,142744,6,3 ,15,6427,667032,1,1 ,28,14980,142752,6,3 ,15,6428,667040,1,1 ,20,21554,16395682,96,0 ,28,14980,142760,6,3 ,15,6429,667048,1,1 ,28,14980,142768,6,3 ,15,6430,667056,1,1 ,28,14980,142776,6,3 ,15,6431,667064,1,1 ,28,14980,142784,6,3 ,15,6432,667072,1,1 ,20,21276,15871426,24,0 ,20,16171,2764226,12,0 ,20,19396,10104258,136,0 ,17,923,9579972,128,0 ,17,923,7482820,24,0 ,17,923,6958532,80,0 ,28,14980,142792,6,3 ,15,6433,667080,1,1 ,28,14980,142800,6,3 ,15,6434,667088,1,1 ,28,14980,142808,6,3 ,15,6435,667096,1,1 ,28,14980,142816,6,3 ,15,6436,667104,1,1 ,28,14980,142824,6,3 ,15,6437,667112,1,1 ,28,14980,142832,6,3 ,15,6438,667120,1,1 ,28,14980,142840,6,3 ,15,6439,667128,1,1 ,28,14980,142848,6,3 ,15,6440,667136,1,1 ,20,24529,23735810,972,0 ,20,23011,20065794,64,0 ,45,15153,4337156,32,0 ,44,15152,667140,40,0 ,44,15152,1191428,24,0 ,28,14980,142856,6,3 ,15,6441,667144,1,1 ,28,14980,142864,6,3 ,15,6442,667152,1,1 ,28,14980,142872,6,3 ,15,6443,667160,1,1 ,28,14980,142880,6,3 ,15,6444,667168,1,1 ,20,16172,2764322,12,0 ,28,14980,142888,6,3 ,15,6445,667176,1,1 ,28,14980,142896,6,3 ,15,6446,667184,1,1 ,28,14980,142904,6,3 ,15,6447,667192,1,1 ,28,14980,142912,6,3 ,15,6448,667200,1,1 ,17,923,10104388,24,0 ,45,15153,4861508,48,0 ,17,923,9055812,96,0 ,28,14980,142920,6,3 ,15,6449,667208,1,1 ,28,14980,142928,6,3 ,15,6450,667216,1,1 ,28,14980,142936,6,3 ,15,6451,667224,1,1 ,28,14980,142944,6,3 ,15,6452,667232,1,1 ,20,25931,27405922,196,0 ,28,14980,142952,6,3 ,15,6453,667240,1,1 ,28,14980,142960,6,3 ,15,6454,667248,1,1 ,28,14980,142968,6,3 ,15,6455,667256,1,1 ,28,14980,142976,6,3 ,15,6456,667264,1,1 ,20,21277,15871618,24,0 ,20,16173,2764418,416,0 ,17,923,142979,40,0 ,17,923,7483012,56,0 ,28,14980,142984,6,3 ,15,6457,667272,1,1 ,28,14980,142992,6,3 ,15,6458,667280,1,1 ,28,14980,143000,6,3 ,15,6459,667288,1,1 ,28,14980,143008,6,3 ,15,6460,667296,1,1 ,28,14980,143016,6,3 ,15,6461,667304,1,1 ,28,14980,143024,6,3 ,15,6462,667312,1,1 ,28,14980,143032,6,3 ,15,6463,667320,1,1 ,28,14980,143040,6,3 ,15,6464,667328,1,1 ,17,923,8007364,32,0 ,17,923,6434500,40,0 ,44,15152,143044,24,0 ,44,15152,1191620,40,0 ,28,14980,143048,6,3 ,15,6465,667336,1,1 ,28,14980,143056,6,3 ,15,6466,667344,1,1 ,28,14980,143064,6,3 ,15,6467,667352,1,1 ,28,14980,143072,6,3 ,15,6468,667360,1,1 ,28,14980,143080,6,3 ,15,6469,667368,1,1 ,28,14980,143088,6,3 ,15,6470,667376,1,1 ,28,14980,143096,6,3 ,15,6471,667384,1,1 ,28,14980,143104,6,3 ,15,6472,667392,1,1 ,17,923,10104580,32,0 ,44,15152,2764548,32,0 ,45,15153,4337412,344,0 ,45,15153,5385988,32,0 ,17,923,8531716,24,0 ,28,14980,143112,6,3 ,15,6473,667400,1,1 ,28,14980,143120,6,3 ,15,6474,667408,1,1 ,28,14980,143128,6,3 ,15,6475,667416,1,1 ,28,14980,143136,6,3 ,15,6476,667424,1,1 ,28,14980,143144,6,3 ,15,6477,667432,1,1 ,28,14980,143152,6,3 ,15,6478,667440,1,1 ,28,14980,143160,6,3 ,15,6479,667448,1,1 ,28,14980,143168,6,3 ,15,6480,667456,1,1 ,20,21278,15871810,24,0 ,20,24934,24784706,440,0 ,44,15152,667460,104,0 ,28,14980,143176,6,3 ,15,6481,667464,1,1 ,28,14980,143184,6,3 ,15,6482,667472,1,1 ,28,14980,143192,6,3 ,15,6483,667480,1,1 ,28,14980,143200,6,3 ,15,6484,667488,1,1 ,20,22052,17968994,64,0 ,28,14980,143208,6,3 ,15,6485,667496,1,1 ,28,14980,143216,6,3 ,15,6486,667504,1,1 ,28,14980,143224,6,3 ,15,6487,667512,1,1 ,28,14980,143232,6,3 ,15,6488,667520,1,1 ,44,15152,143236,24,0 ,28,14980,143240,6,3 ,15,6489,667528,1,1 ,28,14980,143248,6,3 ,15,6490,667536,1,1 ,28,14980,143256,6,3 ,15,6491,667544,1,1 ,28,14980,143264,6,3 ,15,6492,667552,1,1 ,20,22294,18493346,84,0 ,28,14980,143272,6,3 ,15,6493,667560,1,1 ,28,14980,143280,6,3 ,15,6494,667568,1,1 ,28,14980,143288,6,3 ,15,6495,667576,1,1 ,28,14980,143296,6,3 ,15,6496,667584,1,1 ,17,923,143299,16,0 ,17,923,8531908,112,0 ,44,15152,2240452,48,0 ,45,15153,4861892,48,0 ,17,923,8007620,24,0 ,28,14980,143304,6,3 ,15,6497,667592,1,1 ,28,14980,143312,6,3 ,15,6498,667600,1,1 ,28,14980,143320,6,3 ,15,6499,667608,1,1 ,28,14980,143328,6,3 ,15,6500,667616,1,1 ,20,20256,12726242,332,0 ,28,14980,143336,6,3 ,15,6501,667624,1,1 ,28,14980,143344,6,3 ,15,6502,667632,1,1 ,28,14980,143352,6,3 ,15,6503,667640,1,1 ,28,14980,143360,6,3 ,15,6504,667648,1,1 ,20,23012,20066306,172,0 ,20,16978,4337666,144,0 ,20,21279,15872002,24,0 ,17,923,10104836,24,0 ,17,923,6434820,40,0 ,44,15152,2764804,16,0 ,44,15152,1716228,24,0 ,44,15152,1191940,120,0 ,45,15153,5386244,24,0 ,28,14980,143368,6,3 ,15,6505,667656,1,1 ,28,14980,143376,6,3 ,15,6506,667664,1,1 ,28,14980,143384,6,3 ,15,6507,667672,1,1 ,28,14980,143392,6,3 ,15,6508,667680,1,1 ,20,15224,143394,136,0 ,28,14980,143400,6,3 ,15,6509,667688,1,1 ,28,14980,143408,6,3 ,15,6510,667696,1,1 ,28,14980,143416,6,3 ,15,6511,667704,1,1 ,28,14980,143424,6,3 ,15,6512,667712,1,1 ,20,20961,15347778,80,0 ,17,923,143427,24,0 ,44,15152,143428,16,0 ,17,923,7483460,40,0 ,17,923,6959172,104,0 ,28,14980,143432,6,3 ,15,6513,667720,1,1 ,28,14980,143440,6,3 ,15,6514,667728,1,1 ,28,14980,143448,6,3 ,15,6515,667736,1,1 ,28,14980,143456,6,3 ,15,6516,667744,1,1 ,28,14980,143464,6,3 ,15,6517,667752,1,1 ,28,14980,143472,6,3 ,15,6518,667760,1,1 ,28,14980,143480,6,3 ,15,6519,667768,1,1 ,28,14980,143488,6,3 ,15,6520,667776,1,1 ,17,923,8007812,56,0 ,44,15152,2764932,32,0 ,28,14980,143496,6,3 ,15,6521,667784,1,1 ,28,14980,143504,6,3 ,15,6522,667792,1,1 ,28,14980,143512,6,3 ,15,6523,667800,1,1 ,28,14980,143520,6,3 ,15,6524,667808,1,1 ,20,21555,16396450,308,0 ,28,14980,143528,6,3 ,15,6525,667816,1,1 ,28,14980,143536,6,3 ,15,6526,667824,1,1 ,28,14980,143544,6,3 ,15,6527,667832,1,1 ,28,14980,143552,6,3 ,15,6528,667840,1,1 ,20,21280,15872194,24,0 ,17,923,10105028,56,0 ,44,15152,1716420,56,0 ,44,15152,143556,32,0 ,45,15153,5386436,32,0 ,28,14980,143560,6,3 ,15,6529,667848,1,1 ,28,14980,143568,6,3 ,15,6530,667856,1,1 ,28,14980,143576,6,3 ,15,6531,667864,1,1 ,28,14980,143584,6,3 ,15,6532,667872,1,1 ,20,15817,1716450,3380,0 ,28,14980,143592,6,3 ,15,6533,667880,1,1 ,28,14980,143600,6,3 ,15,6534,667888,1,1 ,28,14980,143608,6,3 ,15,6535,667896,1,1 ,28,14980,143616,6,3 ,15,6536,667904,1,1 ,17,923,143619,40,0 ,28,14980,143624,6,3 ,15,6537,667912,1,1 ,28,14980,143632,6,3 ,15,6538,667920,1,1 ,28,14980,143640,6,3 ,15,6539,667928,1,1 ,28,14980,143648,6,3 ,15,6540,667936,1,1 ,28,14980,143656,6,3 ,15,6541,667944,1,1 ,28,14980,143664,6,3 ,15,6542,667952,1,1 ,28,14980,143672,6,3 ,15,6543,667960,1,1 ,28,14980,143680,6,3 ,15,6544,667968,1,1 ,20,23722,21639490,72,0 ,20,26128,27930946,1176,0 ,17,923,9056580,40,0 ,17,923,6435140,24,0 ,44,15152,2240836,32,0 ,45,15153,4862276,32,0 ,28,14980,143688,6,3 ,15,6545,667976,1,1 ,28,14980,143696,6,3 ,15,6546,667984,1,1 ,28,14980,143704,6,3 ,15,6547,667992,1,1 ,28,14980,143712,6,3 ,15,6548,668000,1,1 ,20,22053,17969506,64,0 ,28,14980,143720,6,3 ,15,6549,668008,1,1 ,28,14980,143728,6,3 ,15,6550,668016,1,1 ,28,14980,143736,6,3 ,15,6551,668024,1,1 ,28,14980,143744,6,3 ,15,6552,668032,1,1 ,20,21281,15872386,24,0 ,20,17534,5910914,84,0 ,44,15152,2765188,32,0 ,17,923,7483780,48,0 ,28,14980,143752,6,3 ,15,6553,668040,1,1 ,28,14980,143760,6,3 ,15,6554,668048,1,1 ,28,14980,143768,6,3 ,15,6555,668056,1,1 ,28,14980,143776,6,3 ,15,6556,668064,1,1 ,20,18032,6959522,348,0 ,28,14980,143784,6,3 ,15,6557,668072,1,1 ,28,14980,143792,6,3 ,15,6558,668080,1,1 ,28,14980,143800,6,3 ,15,6559,668088,1,1 ,28,14980,143808,6,3 ,15,6560,668096,1,1 ,20,15628,1192386,76,0 ,17,923,9580996,32,0 ,44,15152,143812,24,0 ,45,15153,5386692,96,0 ,28,14980,143816,6,3 ,15,6561,668104,1,1 ,28,14980,143824,6,3 ,15,6562,668112,1,1 ,28,14980,143832,6,3 ,15,6563,668120,1,1 ,28,14980,143840,6,3 ,15,6564,668128,1,1 ,20,19989,11153890,168,0 ,28,14980,143848,6,3 ,15,6565,668136,1,1 ,28,14980,143856,6,3 ,15,6566,668144,1,1 ,28,14980,143864,6,3 ,15,6567,668152,1,1 ,28,14980,143872,6,3 ,15,6568,668160,1,1 ,20,19397,10105346,540,0 ,17,923,6435332,88,0 ,28,14980,143880,6,3 ,15,6569,668168,1,1 ,28,14980,143888,6,3 ,15,6570,668176,1,1 ,28,14980,143896,6,3 ,15,6571,668184,1,1 ,28,14980,143904,6,3 ,15,6572,668192,1,1 ,28,14980,143912,6,3 ,15,6573,668200,1,1 ,28,14980,143920,6,3 ,15,6574,668208,1,1 ,28,14980,143928,6,3 ,15,6575,668216,1,1 ,28,14980,143936,6,3 ,15,6576,668224,1,1 ,20,22295,18494018,196,0 ,20,21282,15872578,24,0 ,17,923,143939,32,0 ,17,923,8008260,32,0 ,44,15152,2241092,40,0 ,45,15153,4862532,24,0 ,28,14980,143944,6,3 ,15,6577,668232,1,1 ,28,14980,143952,6,3 ,15,6578,668240,1,1 ,28,14980,143960,6,3 ,15,6579,668248,1,1 ,28,14980,143968,6,3 ,15,6580,668256,1,1 ,20,18223,7484002,12,0 ,28,14980,143976,6,3 ,15,6581,668264,1,1 ,28,14980,143984,6,3 ,15,6582,668272,1,1 ,28,14980,143992,6,3 ,15,6583,668280,1,1 ,28,14980,144000,6,3 ,15,6584,668288,1,1 ,17,923,10105476,16,0 ,44,15152,2765444,64,0 ,44,15152,1716868,24,0 ,44,15152,144004,32,0 ,44,15152,668292,40,0 ,17,923,9056900,88,0 ,28,14980,144008,6,3 ,15,6585,668296,1,1 ,28,14980,144016,6,3 ,15,6586,668304,1,1 ,28,14980,144024,6,3 ,15,6587,668312,1,1 ,28,14980,144032,6,3 ,15,6588,668320,1,1 ,28,14980,144040,6,3 ,15,6589,668328,1,1 ,28,14980,144048,6,3 ,15,6590,668336,1,1 ,28,14980,144056,6,3 ,15,6591,668344,1,1 ,28,14980,144064,6,3 ,15,6592,668352,1,1 ,20,20962,15348418,676,0 ,20,18224,7484098,12,0 ,17,923,9581252,24,0 ,28,14980,144072,6,3 ,15,6593,668360,1,1 ,28,14980,144080,6,3 ,15,6594,668368,1,1 ,28,14980,144088,6,3 ,15,6595,668376,1,1 ,28,14980,144096,6,3 ,15,6596,668384,1,1 ,20,19120,9581282,140,0 ,28,14980,144104,6,3 ,15,6597,668392,1,1 ,28,14980,144112,6,3 ,15,6598,668400,1,1 ,28,14980,144120,6,3 ,15,6599,668408,1,1 ,28,14980,144128,6,3 ,15,6600,668416,1,1 ,20,21283,15872770,24,0 ,17,923,10105604,24,0 ,17,923,7484164,40,0 ,45,15153,4862724,24,0 ,28,14980,144136,6,3 ,15,6601,668424,1,1 ,28,14980,144144,6,3 ,15,6602,668432,1,1 ,28,14980,144152,6,3 ,15,6603,668440,1,1 ,28,14980,144160,6,3 ,15,6604,668448,1,1 ,20,18225,7484194,100,0 ,28,14980,144168,6,3 ,15,6605,668456,1,1 ,28,14980,144176,6,3 ,15,6606,668464,1,1 ,28,14980,144184,6,3 ,15,6607,668472,1,1 ,28,14980,144192,6,3 ,15,6608,668480,1,1 ,17,923,144195,16,0 ,17,923,8532804,104,0 ,44,15152,1717060,24,0 ,17,923,8008516,24,0 ,28,14980,144200,6,3 ,15,6609,668488,1,1 ,28,14980,144208,6,3 ,15,6610,668496,1,1 ,28,14980,144216,6,3 ,15,6611,668504,1,1 ,28,14980,144224,6,3 ,15,6612,668512,1,1 ,20,22054,17970018,60,0 ,28,14980,144232,6,3 ,15,6613,668520,1,1 ,28,14980,144240,6,3 ,15,6614,668528,1,1 ,28,14980,144248,6,3 ,15,6615,668536,1,1 ,28,14980,144256,6,3 ,15,6616,668544,1,1 ,20,23723,21640066,84,0 ,17,923,9581444,32,0 ,17,923,6960004,80,0 ,44,15152,2241412,16,0 ,44,15152,144260,24,0 ,28,14980,144264,6,3 ,15,6617,668552,1,1 ,28,14980,144272,6,3 ,15,6618,668560,1,1 ,28,14980,144280,6,3 ,15,6619,668568,1,1 ,28,14980,144288,6,3 ,15,6620,668576,1,1 ,28,14980,144296,6,3 ,15,6621,668584,1,1 ,28,14980,144304,6,3 ,15,6622,668592,1,1 ,28,14980,144312,6,3 ,15,6623,668600,1,1 ,28,14980,144320,6,3 ,15,6624,668608,1,1 ,20,21284,15872962,24,0 ,17,923,144323,24,0 ,17,923,10105796,40,0 ,44,15152,668612,16,0 ,44,15152,1192900,72,0 ,45,15153,4862916,16,0 ,28,14980,144328,6,3 ,15,6625,668616,1,1 ,28,14980,144336,6,3 ,15,6626,668624,1,1 ,28,14980,144344,6,3 ,15,6627,668632,1,1 ,28,14980,144352,6,3 ,15,6628,668640,1,1 ,28,14980,144360,6,3 ,15,6629,668648,1,1 ,28,14980,144368,6,3 ,15,6630,668656,1,1 ,28,14980,144376,6,3 ,15,6631,668664,1,1 ,28,14980,144384,6,3 ,15,6632,668672,1,1 ,17,923,8008708,56,0 ,44,15152,2241540,200,0 ,44,15152,1717252,40,0 ,28,14980,144392,6,3 ,15,6633,668680,1,1 ,28,14980,144400,6,3 ,15,6634,668688,1,1 ,28,14980,144408,6,3 ,15,6635,668696,1,1 ,28,14980,144416,6,3 ,15,6636,668704,1,1 ,20,17535,5911586,76,0 ,20,15629,1192994,64,0 ,28,14980,144424,6,3 ,15,6637,668712,1,1 ,28,14980,144432,6,3 ,15,6638,668720,1,1 ,28,14980,144440,6,3 ,15,6639,668728,1,1 ,28,14980,144448,6,3 ,15,6640,668736,1,1 ,45,15153,4863044,48,0 ,17,923,7484484,40,0 ,44,15152,144452,88,0 ,44,15152,668740,88,0 ,28,14980,144456,6,3 ,15,6641,668744,1,1 ,28,14980,144464,6,3 ,15,6642,668752,1,1 ,28,14980,144472,6,3 ,15,6643,668760,1,1 ,28,14980,144480,6,3 ,15,6644,668768,1,1 ,20,15225,144482,516,0 ,28,14980,144488,6,3 ,15,6645,668776,1,1 ,28,14980,144496,6,3 ,15,6646,668784,1,1 ,28,14980,144504,6,3 ,15,6647,668792,1,1 ,28,14980,144512,6,3 ,15,6648,668800,1,1 ,20,21285,15873154,24,0 ,20,25932,27407490,756,0 ,20,16979,4338818,12,0 ,17,923,144515,16,0 ,17,923,9581700,24,0 ,44,15152,2765956,16,0 ,28,14980,144520,6,3 ,15,6649,668808,1,1 ,28,14980,144528,6,3 ,15,6650,668816,1,1 ,28,14980,144536,6,3 ,15,6651,668824,1,1 ,28,14980,144544,6,3 ,15,6652,668832,1,1 ,28,14980,144552,6,3 ,15,6653,668840,1,1 ,28,14980,144560,6,3 ,15,6654,668848,1,1 ,28,14980,144568,6,3 ,15,6655,668856,1,1 ,28,14980,144576,6,3 ,15,6656,668864,1,1 ,45,15153,5387460,16,0 ,17,923,6436036,48,0 ,28,14980,144584,6,3 ,15,6657,668872,1,1 ,28,14980,144592,6,3 ,15,6658,668880,1,1 ,28,14980,144600,6,3 ,15,6659,668888,1,1 ,28,14980,144608,6,3 ,15,6660,668896,1,1 ,20,16980,4338914,48,0 ,28,14980,144616,6,3 ,15,6661,668904,1,1 ,28,14980,144624,6,3 ,15,6662,668912,1,1 ,28,14980,144632,6,3 ,15,6663,668920,1,1 ,28,14980,144640,6,3 ,15,6664,668928,1,1 ,17,923,144643,32,0 ,17,923,10106116,56,0 ,44,15152,2766084,48,0 ,28,14980,144648,6,3 ,15,6665,668936,1,1 ,28,14980,144656,6,3 ,15,6666,668944,1,1 ,28,14980,144664,6,3 ,15,6667,668952,1,1 ,28,14980,144672,6,3 ,15,6668,668960,1,1 ,20,16372,3290402,76,0 ,28,14980,144680,6,3 ,15,6669,668968,1,1 ,28,14980,144688,6,3 ,15,6670,668976,1,1 ,28,14980,144696,6,3 ,15,6671,668984,1,1 ,28,14980,144704,6,3 ,15,6672,668992,1,1 ,20,22055,17970498,60,0 ,20,21286,15873346,24,0 ,17,923,9581892,32,0 ,44,15152,1717572,48,0 ,45,15153,5387588,24,0 ,17,923,9057604,40,0 ,28,14980,144712,6,3 ,15,6673,669000,1,1 ,28,14980,144720,6,3 ,15,6674,669008,1,1 ,28,14980,144728,6,3 ,15,6675,669016,1,1 ,28,14980,144736,6,3 ,15,6676,669024,1,1 ,20,23013,20067682,332,0 ,28,14980,144744,6,3 ,15,6677,669032,1,1 ,28,14980,144752,6,3 ,15,6678,669040,1,1 ,28,14980,144760,6,3 ,15,6679,669048,1,1 ,28,14980,144768,6,3 ,15,6680,669056,1,1 ,17,923,7484804,16,0 ,28,14980,144776,6,3 ,15,6681,669064,1,1 ,28,14980,144784,6,3 ,15,6682,669072,1,1 ,28,14980,144792,6,3 ,15,6683,669080,1,1 ,28,14980,144800,6,3 ,15,6684,669088,1,1 ,20,18953,9057698,48,0 ,28,14980,144808,6,3 ,15,6685,669096,1,1 ,28,14980,144816,6,3 ,15,6686,669104,1,1 ,28,14980,144824,6,3 ,15,6687,669112,1,1 ,28,14980,144832,6,3 ,15,6688,669120,1,1 ,20,22713,19543490,12,0 ,17,923,8009156,24,0 ,45,15153,4863428,48,0 ,28,14980,144840,6,3 ,15,6689,669128,1,1 ,28,14980,144848,6,3 ,15,6690,669136,1,1 ,28,14980,144856,6,3 ,15,6691,669144,1,1 ,28,14980,144864,6,3 ,15,6692,669152,1,1 ,28,14980,144872,6,3 ,15,6693,669160,1,1 ,28,14980,144880,6,3 ,15,6694,669168,1,1 ,28,14980,144888,6,3 ,15,6695,669176,1,1 ,28,14980,144896,6,3 ,15,6696,669184,1,1 ,20,21287,15873538,24,0 ,20,25511,26359298,140,0 ,17,923,144899,24,0 ,45,15153,5387780,16,0 ,17,923,7484932,24,0 ,17,923,6960644,32,0 ,44,15152,1193476,32,0 ,28,14980,144904,6,3 ,15,6697,669192,1,1 ,28,14980,144912,6,3 ,15,6698,669200,1,1 ,28,14980,144920,6,3 ,15,6699,669208,1,1 ,28,14980,144928,6,3 ,15,6700,669216,1,1 ,20,23724,21640738,128,0 ,20,15630,1193506,332,0 ,20,22714,19543586,12,0 ,28,14980,144936,6,3 ,15,6701,669224,1,1 ,28,14980,144944,6,3 ,15,6702,669232,1,1 ,28,14980,144952,6,3 ,15,6703,669240,1,1 ,28,14980,144960,6,3 ,15,6704,669248,1,1 ,20,18226,7484994,12,0 ,17,923,9582148,32,0 ,17,923,6436420,48,0 ,28,14980,144968,6,3 ,15,6705,669256,1,1 ,28,14980,144976,6,3 ,15,6706,669264,1,1 ,28,14980,144984,6,3 ,15,6707,669272,1,1 ,28,14980,144992,6,3 ,15,6708,669280,1,1 ,20,16981,4339298,124,0 ,28,14980,145000,6,3 ,15,6709,669288,1,1 ,28,14980,145008,6,3 ,15,6710,669296,1,1 ,28,14980,145016,6,3 ,15,6711,669304,1,1 ,28,14980,145024,6,3 ,15,6712,669312,1,1 ,20,22715,19543682,376,0 ,20,17536,5912194,768,0 ,17,923,9057924,88,0 ,44,15152,2766468,24,0 ,45,15153,5387908,24,0 ,17,923,8009348,32,0 ,17,923,8533636,24,0 ,28,14980,145032,6,3 ,15,6713,669320,1,1 ,28,14980,145040,6,3 ,15,6714,669328,1,1 ,28,14980,145048,6,3 ,15,6715,669336,1,1 ,28,14980,145056,6,3 ,15,6716,669344,1,1 ,20,18227,7485090,40,0 ,28,14980,145064,6,3 ,15,6717,669352,1,1 ,28,14980,145072,6,3 ,15,6718,669360,1,1 ,28,14980,145080,6,3 ,15,6719,669368,1,1 ,28,14980,145088,6,3 ,15,6720,669376,1,1 ,20,21288,15873730,24,0 ,20,16705,3815106,1084,0 ,17,923,145091,24,0 ,17,923,10106564,24,0 ,17,923,7485124,72,0 ,44,15152,1717956,16,0 ,28,14980,145096,6,3 ,15,6721,669384,1,1 ,28,14980,145104,6,3 ,15,6722,669392,1,1 ,28,14980,145112,6,3 ,15,6723,669400,1,1 ,28,14980,145120,6,3 ,15,6724,669408,1,1 ,28,14980,145128,6,3 ,15,6725,669416,1,1 ,28,14980,145136,6,3 ,15,6726,669424,1,1 ,28,14980,145144,6,3 ,15,6727,669432,1,1 ,28,14980,145152,6,3 ,15,6728,669440,1,1 ,20,23361,20592386,140,0 ,20,26298,28456706,608,0 ,44,15152,1193732,24,0 ,17,923,6960900,40,0 ,44,15152,145156,128,0 ,44,15152,669444,48,0 ,28,14980,145160,6,3 ,15,6729,669448,1,1 ,28,14980,145168,6,3 ,15,6730,669456,1,1 ,28,14980,145176,6,3 ,15,6731,669464,1,1 ,28,14980,145184,6,3 ,15,6732,669472,1,1 ,20,22056,17970978,112,0 ,20,18954,9058082,112,0 ,20,19990,11155234,12,0 ,28,14980,145192,6,3 ,15,6733,669480,1,1 ,28,14980,145200,6,3 ,15,6734,669488,1,1 ,28,14980,145208,6,3 ,15,6735,669496,1,1 ,28,14980,145216,6,3 ,15,6736,669504,1,1 ,20,19121,9582402,196,0 ,17,923,9582404,24,0 ,44,15152,2766660,24,0 ,44,15152,1718084,56,0 ,45,15153,4863812,24,0 ,45,15153,5388100,32,0 ,17,923,8533828,24,0 ,28,14980,145224,6,3 ,15,6737,669512,1,1 ,28,14980,145232,6,3 ,15,6738,669520,1,1 ,28,14980,145240,6,3 ,15,6739,669528,1,1 ,28,14980,145248,6,3 ,15,6740,669536,1,1 ,20,15374,669538,612,0 ,28,14980,145256,6,3 ,15,6741,669544,1,1 ,28,14980,145264,6,3 ,15,6742,669552,1,1 ,28,14980,145272,6,3 ,15,6743,669560,1,1 ,28,14980,145280,6,3 ,15,6744,669568,1,1 ,20,21289,15873922,24,0 ,20,16373,3291010,32,0 ,20,19991,11155330,52,0 ,17,923,145283,24,0 ,17,923,10106756,64,0 ,17,923,8009604,32,0 ,28,14980,145288,6,3 ,15,6745,669576,1,1 ,28,14980,145296,6,3 ,15,6746,669584,1,1 ,28,14980,145304,6,3 ,15,6747,669592,1,1 ,28,14980,145312,6,3 ,15,6748,669600,1,1 ,20,24365,23213986,116,0 ,28,14980,145320,6,3 ,15,6749,669608,1,1 ,28,14980,145328,6,3 ,15,6750,669616,1,1 ,28,14980,145336,6,3 ,15,6751,669624,1,1 ,28,14980,145344,6,3 ,15,6752,669632,1,1 ,44,15152,1193924,24,0 ,17,923,6436804,40,0 ,28,14980,145352,6,3 ,15,6753,669640,1,1 ,28,14980,145360,6,3 ,15,6754,669648,1,1 ,28,14980,145368,6,3 ,15,6755,669656,1,1 ,28,14980,145376,6,3 ,15,6756,669664,1,1 ,20,18228,7485410,292,0 ,28,14980,145384,6,3 ,15,6757,669672,1,1 ,28,14980,145392,6,3 ,15,6758,669680,1,1 ,28,14980,145400,6,3 ,15,6759,669688,1,1 ,28,14980,145408,6,3 ,15,6760,669696,1,1 ,17,923,9582596,40,0 ,44,15152,2766852,24,0 ,45,15153,4864004,40,0 ,17,923,8534020,56,0 ,28,14980,145416,6,3 ,15,6761,669704,1,1 ,28,14980,145424,6,3 ,15,6762,669712,1,1 ,28,14980,145432,6,3 ,15,6763,669720,1,1 ,28,14980,145440,6,3 ,15,6764,669728,1,1 ,28,14980,145448,6,3 ,15,6765,669736,1,1 ,28,14980,145456,6,3 ,15,6766,669744,1,1 ,28,14980,145464,6,3 ,15,6767,669752,1,1 ,28,14980,145472,6,3 ,15,6768,669760,1,1 ,20,21290,15874114,24,0 ,17,923,145475,40,0 ,45,15153,5388356,32,0 ,17,923,6961220,40,0 ,28,14980,145480,6,3 ,15,6769,669768,1,1 ,28,14980,145488,6,3 ,15,6770,669776,1,1 ,28,14980,145496,6,3 ,15,6771,669784,1,1 ,28,14980,145504,6,3 ,15,6772,669792,1,1 ,20,22296,18495586,44,0 ,28,14980,145512,6,3 ,15,6773,669800,1,1 ,28,14980,145520,6,3 ,15,6774,669808,1,1 ,28,14980,145528,6,3 ,15,6775,669816,1,1 ,28,14980,145536,6,3 ,15,6776,669824,1,1 ,20,16374,3291266,168,0 ,17,923,8009860,40,0 ,44,15152,669828,40,0 ,44,15152,1194116,24,0 ,44,15152,3291268,24,0 ,28,14980,145544,6,3 ,15,6777,669832,1,1 ,28,14980,145552,6,3 ,15,6778,669840,1,1 ,28,14980,145560,6,3 ,15,6779,669848,1,1 ,28,14980,145568,6,3 ,15,6780,669856,1,1 ,28,14980,145576,6,3 ,15,6781,669864,1,1 ,28,14980,145584,6,3 ,15,6782,669872,1,1 ,28,14980,145592,6,3 ,15,6783,669880,1,1 ,28,14980,145600,6,3 ,15,6784,669888,1,1 ,44,15152,2767044,24,0 ,28,14980,145608,6,3 ,15,6785,669896,1,1 ,28,14980,145616,6,3 ,15,6786,669904,1,1 ,28,14980,145624,6,3 ,15,6787,669912,1,1 ,28,14980,145632,6,3 ,15,6788,669920,1,1 ,28,14980,145640,6,3 ,15,6789,669928,1,1 ,28,14980,145648,6,3 ,15,6790,669936,1,1 ,28,14980,145656,6,3 ,15,6791,669944,1,1 ,28,14980,145664,6,3 ,15,6792,669952,1,1 ,20,21291,15874306,24,0 ,44,15152,1718532,24,0 ,17,923,7485700,40,0 ,17,923,6437124,32,0 ,28,14980,145672,6,3 ,15,6793,669960,1,1 ,28,14980,145680,6,3 ,15,6794,669968,1,1 ,28,14980,145688,6,3 ,15,6795,669976,1,1 ,28,14980,145696,6,3 ,15,6796,669984,1,1 ,20,19992,11155746,464,0 ,28,14980,145704,6,3 ,15,6797,669992,1,1 ,28,14980,145712,6,3 ,15,6798,670000,1,1 ,28,14980,145720,6,3 ,15,6799,670008,1,1 ,28,14980,145728,6,3 ,15,6800,670016,1,1 ,17,923,9582916,40,0 ,44,15152,1194308,32,0 ,44,15152,3291460,56,0 ,44,15152,3815748,32,0 ,45,15153,4864324,72,0 ,45,15153,5388612,40,0 ,17,923,9058628,40,0 ,28,14980,145736,6,3 ,15,6801,670024,1,1 ,28,14980,145744,6,3 ,15,6802,670032,1,1 ,28,14980,145752,6,3 ,15,6803,670040,1,1 ,28,14980,145760,6,3 ,15,6804,670048,1,1 ,28,14980,145768,6,3 ,15,6805,670056,1,1 ,28,14980,145776,6,3 ,15,6806,670064,1,1 ,28,14980,145784,6,3 ,15,6807,670072,1,1 ,28,14980,145792,6,3 ,15,6808,670080,1,1 ,20,24719,24263042,1496,0 ,17,923,145795,24,0 ,17,923,10107268,64,0 ,17,923,6961540,24,0 ,44,15152,2767236,32,0 ,28,14980,145800,6,3 ,15,6809,670088,1,1 ,28,14980,145808,8,3 ,15,6810,670096,1,1 ,28,14980,145816,6,3 ,15,6811,670104,1,1 ,28,14980,145824,6,3 ,15,6812,670112,1,1 ,28,14980,145832,6,3 ,15,6813,670120,1,1 ,28,14980,145840,6,3 ,15,6814,670128,1,1 ,28,14980,145848,6,3 ,15,6815,670136,1,1 ,28,14980,145856,6,3 ,15,6816,670144,1,1 ,20,22297,18495938,76,0 ,20,21292,15874498,24,0 ,17,923,8534468,32,0 ,44,15152,1718724,56,0 ,44,15152,670148,48,0 ,45,15153,4340164,24,0 ,17,923,8010180,32,0 ,28,14980,145864,6,3 ,15,6817,670152,1,1 ,28,14980,145872,6,3 ,15,6818,670160,1,1 ,28,14980,145880,6,3 ,15,6819,670168,1,1 ,28,14980,145888,6,3 ,15,6820,670176,1,1 ,20,24186,22690274,920,0 ,28,14980,145896,6,3 ,15,6821,670184,1,1 ,28,14980,145904,6,3 ,15,6822,670192,1,1 ,28,14980,145912,6,3 ,15,6823,670200,1,1 ,28,14980,145920,6,3 ,15,6824,670208,1,1 ,17,923,6437380,40,0 ,28,14980,145928,6,3 ,15,6825,670216,1,1 ,28,14980,145936,6,3 ,15,6826,670224,1,1 ,28,14980,145944,6,3 ,15,6827,670232,1,1 ,28,14980,145952,6,3 ,15,6828,670240,1,1 ,20,23725,21641762,84,0 ,20,17762,6437410,140,0 ,28,14980,145960,6,3 ,15,6829,670248,1,1 ,28,14980,145968,6,3 ,15,6830,670256,1,1 ,28,14980,145976,6,3 ,15,6831,670264,1,1 ,28,14980,145984,6,3 ,15,6832,670272,1,1 ,20,21556,16398914,108,0 ,20,16982,4340290,180,0 ,20,20257,12728898,176,0 ,17,923,145987,32,0 ,44,15152,3816004,24,0 ,17,923,7486020,56,0 ,17,923,6961732,32,0 ,44,15152,2243140,24,0 ,44,15152,1194564,24,0 ,28,14980,145992,6,3 ,15,6833,670280,1,1 ,28,14980,146000,6,3 ,15,6834,670288,1,1 ,28,14980,146008,6,3 ,15,6835,670296,1,1 ,28,14980,146016,6,3 ,15,6836,670304,1,1 ,20,25512,26360418,28,0 ,28,14980,146024,6,3 ,15,6837,670312,1,1 ,28,14980,146032,6,3 ,15,6838,670320,1,1 ,28,14980,146040,6,3 ,15,6839,670328,1,1 ,28,14980,146048,6,3 ,15,6840,670336,1,1 ,20,21293,15874690,132,0 ,17,923,9583236,40,0 ,44,15152,2767492,32,0 ,45,15153,4340356,48,0 ,45,15153,5388932,40,0 ,17,923,9058948,80,0 ,28,14980,146056,6,3 ,15,6841,670344,1,1 ,28,14980,146064,6,3 ,15,6842,670352,1,1 ,28,14980,146072,6,3 ,15,6843,670360,1,1 ,28,14980,146080,6,3 ,15,6844,670368,1,1 ,20,22057,17971874,116,0 ,20,18955,9058978,40,0 ,28,14980,146088,6,3 ,15,6845,670376,1,1 ,28,14980,146096,6,3 ,15,6846,670384,1,1 ,28,14980,146104,6,3 ,15,6847,670392,1,1 ,28,14980,146112,6,3 ,15,6848,670400,1,1 ,17,923,8534724,32,0 ,17,923,8010436,48,0 ,28,14980,146120,6,3 ,15,6849,670408,1,1 ,28,14980,146128,6,3 ,15,6850,670416,1,1 ,28,14980,146136,6,3 ,15,6851,670424,1,1 ,28,14980,146144,6,3 ,15,6852,670432,1,1 ,28,14980,146152,6,3 ,15,6853,670440,1,1 ,28,14980,146160,6,3 ,15,6854,670448,1,1 ,28,14980,146168,6,3 ,15,6855,670456,1,1 ,28,14980,146176,6,3 ,15,6856,670464,1,1 ,44,15152,3816196,112,0 ,44,15152,2243332,24,0 ,44,15152,146180,24,0 ,44,15152,1194756,16,0 ,44,15152,3291908,128,0 ,28,14980,146184,6,3 ,15,6857,670472,1,1 ,28,14980,146192,6,3 ,15,6858,670480,1,1 ,28,14980,146200,6,3 ,15,6859,670488,1,1 ,28,14980,146208,6,3 ,15,6860,670496,1,1 ,28,14980,146216,6,3 ,15,6861,670504,1,1 ,28,14980,146224,6,3 ,15,6862,670512,1,1 ,28,14980,146232,6,3 ,15,6863,670520,1,1 ,28,14980,146240,6,3 ,15,6864,670528,1,1 ,20,24366,23214914,24,0 ,20,25513,26360642,72,0 ,17,923,146243,24,0 ,44,15152,670532,32,0 ,17,923,6961988,32,0 ,17,923,6437700,24,0 ,28,14980,146248,6,3 ,15,6865,670536,1,1 ,28,14980,146256,6,3 ,15,6866,670544,1,1 ,28,14980,146264,6,3 ,15,6867,670552,1,1 ,28,14980,146272,6,3 ,15,6868,670560,1,1 ,20,23362,20593506,140,0 ,28,14980,146280,6,3 ,15,6869,670568,1,1 ,28,14980,146288,6,3 ,15,6870,670576,1,1 ,28,14980,146296,6,3 ,15,6871,670584,1,1 ,28,14980,146304,6,3 ,15,6872,670592,1,1 ,20,16174,2767746,948,0 ,20,25367,25836418,144,0 ,17,923,10107780,40,0 ,44,15152,2767748,24,0 ,44,15152,1719172,56,0 ,44,15152,1194884,88,0 ,45,15153,4864900,80,0 ,28,14980,146312,6,3 ,15,6873,670600,1,1 ,28,14980,146320,6,3 ,15,6874,670608,1,1 ,28,14980,146328,6,3 ,15,6875,670616,1,1 ,28,14980,146336,6,3 ,15,6876,670624,1,1 ,28,14980,146344,6,3 ,15,6877,670632,1,1 ,28,14980,146352,6,3 ,15,6878,670640,1,1 ,28,14980,146360,6,3 ,15,6879,670648,1,1 ,28,14980,146368,6,3 ,15,6880,670656,1,1 ,20,17363,5389250,1456,0 ,17,923,9583556,48,0 ,44,15152,2243524,40,0 ,44,15152,146372,48,0 ,45,15153,5389252,16,0 ,17,923,8534980,24,0 ,28,14980,146376,8,3 ,15,6881,670664,1,1 ,28,14980,146384,8,3 ,15,6882,670672,1,1 ,28,14980,146392,6,3 ,15,6883,670680,1,1 ,28,14980,146400,6,3 ,15,6884,670688,1,1 ,20,18956,9059298,224,0 ,20,25157,25312226,1472,0 ,28,14980,146408,6,3 ,15,6885,670696,1,1 ,28,14980,146416,6,3 ,15,6886,670704,1,1 ,28,14980,146424,6,3 ,15,6887,670712,1,1 ,28,14980,146432,6,3 ,15,6888,670720,1,1 ,20,24367,23215106,104,0 ,17,923,146435,16,0 ,45,15153,4340740,32,0 ,17,923,7486468,96,0 ,17,923,6437892,48,0 ,28,14980,146440,6,3 ,15,6889,670728,1,1 ,28,14980,146448,6,3 ,15,6890,670736,1,1 ,28,14980,146456,6,3 ,15,6891,670744,1,1 ,28,14980,146464,6,3 ,15,6892,670752,1,1 ,20,22298,18496546,312,0 ,28,14980,146472,6,3 ,15,6893,670760,1,1 ,28,14980,146480,6,3 ,15,6894,670768,1,1 ,28,14980,146488,6,3 ,15,6895,670776,1,1 ,28,14980,146496,6,3 ,15,6896,670784,1,1 ,17,923,8010820,48,0 ,17,923,6962244,24,0 ,44,15152,2767940,24,0 ,44,15152,670788,24,0 ,45,15153,5389380,72,0 ,28,14980,146504,6,3 ,15,6897,670792,1,1 ,28,14980,146512,6,3 ,15,6898,670800,1,1 ,28,14980,146520,6,3 ,15,6899,670808,1,1 ,28,14980,146528,6,3 ,15,6900,670816,1,1 ,28,14980,146536,6,3 ,15,6901,670824,1,1 ,28,14980,146544,6,3 ,15,6902,670832,1,1 ,28,14980,146552,6,3 ,15,6903,670840,1,1 ,28,14980,146560,6,3 ,15,6904,670848,1,1 ,20,18033,6962306,48,0 ,17,923,146563,16,0 ,17,923,8535172,72,0 ,28,14980,146568,6,3 ,15,6905,670856,1,1 ,28,14980,146576,6,3 ,15,6906,670864,1,1 ,28,14980,146584,6,3 ,15,6907,670872,1,1 ,28,14980,146592,6,3 ,15,6908,670880,1,1 ,28,14980,146600,6,3 ,15,6909,670888,1,1 ,28,14980,146608,6,3 ,15,6910,670896,1,1 ,28,14980,146616,6,3 ,15,6911,670904,1,1 ,28,14980,146624,6,3 ,15,6912,670912,1,1 ,20,23726,21642434,64,0 ,17,923,10108100,32,0 ,28,14980,146632,6,3 ,15,6913,670920,1,1 ,28,14980,146640,6,3 ,15,6914,670928,1,1 ,28,14980,146648,6,3 ,15,6915,670936,1,1 ,28,14980,146656,6,3 ,15,6916,670944,1,1 ,28,14980,146664,6,3 ,15,6917,670952,1,1 ,28,14980,146672,6,3 ,15,6918,670960,1,1 ,28,14980,146680,6,3 ,15,6919,670968,1,1 ,28,14980,146688,6,3 ,15,6920,670976,1,1 ,20,24935,24788226,272,0 ,17,923,146691,24,0 ,17,923,9059588,80,0 ,17,923,6962436,96,0 ,44,15152,2768132,40,0 ,44,15152,2243844,48,0 ,44,15152,670980,120,0 ,45,15153,4340996,16,0 ,28,14980,146696,6,3 ,15,6921,670984,1,1 ,28,14980,146704,6,3 ,15,6922,670992,1,1 ,28,14980,146712,6,3 ,15,6923,671000,1,1 ,28,14980,146720,6,3 ,15,6924,671008,1,1 ,28,14980,146728,6,3 ,15,6925,671016,1,1 ,28,14980,146736,6,3 ,15,6926,671024,1,1 ,28,14980,146744,6,3 ,15,6927,671032,1,1 ,28,14980,146752,6,3 ,15,6928,671040,1,1 ,17,923,9583940,48,0 ,44,15152,1719620,24,0 ,44,15152,146756,24,0 ,28,14980,146760,6,3 ,15,6929,671048,1,1 ,28,14980,146768,6,3 ,15,6930,671056,1,1 ,28,14980,146776,6,3 ,15,6931,671064,1,1 ,28,14980,146784,6,3 ,15,6932,671072,1,1 ,20,19122,9583970,84,0 ,28,14980,146792,6,3 ,15,6933,671080,1,1 ,28,14980,146800,6,3 ,15,6934,671088,1,1 ,28,14980,146808,6,3 ,15,6935,671096,1,1 ,28,14980,146816,6,3 ,15,6936,671104,1,1 ,20,22545,19021186,4200,0 ,20,25514,26361218,20,0 ,45,15153,4341124,24,0 ,17,923,6438276,48,0 ,28,14980,146824,6,3 ,15,6937,671112,1,1 ,28,14980,146832,6,3 ,15,6938,671120,1,1 ,28,14980,146840,6,3 ,15,6939,671128,1,1 ,28,14980,146848,7,3 ,15,6940,671136,1,1 ,20,21557,16399778,76,0 ,28,14980,146856,6,3 ,15,6941,671144,1,1 ,28,14980,146864,7,3 ,15,6942,671152,1,1 ,28,14980,146872,6,3 ,15,6943,671160,1,1 ,28,14980,146880,6,3 ,15,6944,671168,1,1 ,20,16375,3292610,100,0 ,17,923,146883,24,0 ,17,923,10108356,32,0 ,17,923,8011204,32,0 ,28,14980,146888,6,3 ,15,6945,671176,1,1 ,28,14980,146896,6,3 ,15,6946,671184,1,1 ,28,14980,146904,6,3 ,15,6947,671192,1,1 ,28,14980,146912,6,3 ,15,6948,671200,1,1 ,28,14980,146920,6,3 ,15,6949,671208,1,1 ,28,14980,146928,6,3 ,15,6950,671216,1,1 ,28,14980,146936,6,3 ,15,6951,671224,1,1 ,28,14980,146944,6,3 ,15,6952,671232,1,1 ,20,18034,6962690,144,0 ,45,15153,4865540,24,0 ,44,15152,1719812,24,0 ,44,15152,146948,24,0 ,28,14980,146952,6,3 ,15,6953,671240,1,1 ,28,14980,146960,6,3 ,15,6954,671248,1,1 ,28,14980,146968,7,3 ,15,6955,671256,1,1 ,28,14980,146976,7,3 ,15,6956,671264,1,1 ,20,25515,26361378,20,0 ,28,14980,146984,7,3 ,15,6957,671272,1,1 ,28,14980,146992,7,3 ,15,6958,671280,1,1 ,28,14980,147000,6,3 ,15,6959,671288,1,1 ,28,14980,147008,6,3 ,15,6960,671296,1,1 ,20,22058,17972802,112,0 ,45,15153,4341316,16,0 ,44,15152,2768452,40,0 ,44,15152,1195588,216,0 ,28,14980,147016,6,3 ,15,6961,671304,1,1 ,28,14980,147024,6,3 ,15,6962,671312,1,1 ,28,14980,147032,6,3 ,15,6963,671320,1,1 ,28,14980,147040,7,3 ,15,6964,671328,1,1 ,28,14980,147048,7,3 ,15,6965,671336,1,1 ,28,14980,147056,6,3 ,15,6966,671344,1,1 ,28,14980,147064,6,3 ,15,6967,671352,1,1 ,28,14980,147072,6,3 ,15,6968,671360,1,1 ,20,17763,6438530,624,0 ,17,923,147075,16,0 ,45,15153,5389956,24,0 ,44,15152,2244228,32,0 ,44,15152,3817092,120,0 ,28,14980,147080,6,3 ,15,6969,671368,1,1 ,28,14980,147088,6,3 ,15,6970,671376,1,1 ,28,14980,147096,7,3 ,15,6971,671384,1,1 ,28,14980,147104,7,3 ,15,6972,671392,1,1 ,20,21294,15875746,24,0 ,28,14980,147112,6,3 ,15,6973,671400,1,1 ,28,14980,147120,6,3 ,15,6974,671408,1,1 ,28,14980,147128,6,3 ,15,6975,671416,1,1 ,28,14980,147136,6,3 ,15,6976,671424,1,1 ,20,23727,21642946,96,0 ,20,25516,26361538,20,0 ,17,923,10108612,24,0 ,44,15152,1720004,48,0 ,44,15152,147140,32,0 ,45,15153,4341444,32,0 ,45,15153,4865732,16,0 ,17,923,8011460,40,0 ,17,923,8535748,40,0 ,17,923,9584324,32,0 ,28,14980,147144,6,3 ,15,6977,671432,1,1 ,28,14980,147152,6,3 ,15,6978,671440,1,1 ,28,14980,147160,6,3 ,15,6979,671448,1,1 ,28,14980,147168,6,3 ,15,6980,671456,1,1 ,20,19707,10632930,1092,0 ,28,14980,147176,6,3 ,15,6981,671464,1,1 ,28,14980,147184,6,3 ,15,6982,671472,1,1 ,28,14980,147192,6,3 ,15,6983,671480,1,1 ,28,14980,147200,6,3 ,15,6984,671488,1,1 ,20,21825,16924418,288,0 ,17,923,147203,16,0 ,44,15152,3292932,96,0 ,17,923,7487236,88,0 ,17,923,6438660,24,0 ,28,14980,147208,6,3 ,15,6985,671496,1,1 ,28,14980,147216,6,3 ,15,6986,671504,1,1 ,28,14980,147224,6,3 ,15,6987,671512,1,1 ,28,14980,147232,6,3 ,15,6988,671520,1,1 ,20,20547,13254434,80,0 ,28,14980,147240,6,3 ,15,6989,671528,1,1 ,28,14980,147248,6,3 ,15,6990,671536,1,1 ,28,14980,147256,6,3 ,15,6991,671544,1,1 ,28,14980,147264,6,3 ,15,6992,671552,1,1 ,20,24368,23215938,308,0 ,45,15153,5390148,24,0 ,45,15153,4865860,40,0 ,28,14980,147272,6,3 ,15,6993,671560,1,1 ,28,14980,147280,6,3 ,15,6994,671568,1,1 ,28,14980,147288,6,3 ,15,6995,671576,1,1 ,28,14980,147296,6,3 ,15,6996,671584,1,1 ,20,21295,15875938,24,0 ,20,25517,26361698,140,0 ,28,14980,147304,6,3 ,15,6997,671592,1,1 ,28,14980,147312,6,3 ,15,6998,671600,1,1 ,28,14980,147320,6,3 ,15,6999,671608,1,1 ,28,14980,147328,7,3 ,15,7000,671616,1,1 ,17,923,147331,16,0 ,17,923,10108804,32,0 ,44,15152,2768772,24,0 ,44,15152,2244484,184,0 ,17,923,9060228,88,0 ,28,14980,147336,6,3 ,15,7001,671624,1,1 ,28,14980,147344,6,3 ,15,7002,671632,1,1 ,28,14980,147352,6,3 ,15,7003,671640,1,1 ,28,14980,147360,6,3 ,15,7004,671648,1,1 ,28,14980,147368,6,3 ,15,7005,671656,1,1 ,28,14980,147376,6,3 ,15,7006,671664,1,1 ,28,14980,147384,6,3 ,15,7007,671672,1,1 ,28,14980,147392,6,3 ,15,7008,671680,1,1 ,20,23363,20594626,140,0 ,20,20258,12730306,80,0 ,20,23014,20070338,228,0 ,17,923,9584580,40,0 ,17,923,6438852,24,0 ,44,15152,147396,64,0 ,45,15153,4341700,40,0 ,28,14980,147400,6,3 ,15,7009,671688,1,1 ,28,14980,147408,6,3 ,15,7010,671696,1,1 ,28,14980,147416,6,3 ,15,7011,671704,1,1 ,28,14980,147424,6,3 ,15,7012,671712,1,1 ,20,16983,4341730,12,0 ,28,14980,147432,6,3 ,15,7013,671720,1,1 ,28,14980,147440,6,3 ,15,7014,671728,1,1 ,28,14980,147448,6,3 ,15,7015,671736,1,1 ,28,14980,147456,6,3 ,15,7016,671744,1,1 ,20,21558,16400386,308,0 ,20,25368,25837570,76,0 ,20,19123,9584642,80,0 ,17,923,147459,24,0 ,17,923,8536068,40,0 ,17,923,6963204,40,0 ,45,15153,5390340,112,0 ,17,923,8011780,32,0 ,28,14980,147464,6,3 ,15,7017,671752,1,1 ,28,14980,147472,6,3 ,15,7018,671760,1,1 ,28,14980,147480,6,3 ,15,7019,671768,1,1 ,28,14980,147488,6,3 ,15,7020,671776,1,1 ,20,21296,15876130,24,0 ,28,14980,147496,6,3 ,15,7021,671784,1,1 ,28,14980,147504,6,3 ,15,7022,671792,1,1 ,28,14980,147512,6,3 ,15,7023,671800,1,1 ,28,14980,147520,6,3 ,15,7024,671808,1,1 ,20,16984,4341826,164,0 ,44,15152,1720388,56,0 ,44,15152,2768964,24,0 ,28,14980,147528,6,3 ,15,7025,671816,1,1 ,28,14980,147536,6,3 ,15,7026,671824,1,1 ,28,14980,147544,7,3 ,15,7027,671832,1,1 ,28,14980,147552,6,3 ,15,7028,671840,1,1 ,28,14980,147560,7,3 ,15,7029,671848,1,1 ,28,14980,147568,7,3 ,15,7030,671856,1,1 ,28,14980,147576,6,3 ,15,7031,671864,1,1 ,28,14980,147584,7,3 ,15,7032,671872,1,1 ,20,23598,21119106,184,0 ,20,15631,1196162,148,0 ,17,923,10109060,32,0 ,17,923,6439044,24,0 ,45,15153,4866180,248,0 ,28,14980,147592,7,3 ,15,7033,671880,1,1 ,28,14980,147600,6,3 ,15,7034,671888,1,1 ,28,14980,147608,7,3 ,15,7035,671896,1,1 ,28,14980,147616,6,3 ,15,7036,671904,1,1 ,28,14980,147624,6,3 ,15,7037,671912,1,1 ,28,14980,147632,7,3 ,15,7038,671920,1,1 ,28,14980,147640,6,3 ,15,7039,671928,1,1 ,28,14980,147648,6,3 ,15,7040,671936,1,1 ,17,923,147651,24,0 ,44,15152,671940,24,0 ,28,14980,147656,6,3 ,15,7041,671944,1,1 ,28,14980,147664,7,3 ,15,7042,671952,1,1 ,28,14980,147672,6,3 ,15,7043,671960,1,1 ,28,14980,147680,6,3 ,15,7044,671968,1,1 ,20,21297,15876322,24,0 ,20,16376,3293410,76,0 ,28,14980,147688,6,3 ,15,7045,671976,1,1 ,28,14980,147696,6,3 ,15,7046,671984,1,1 ,28,14980,147704,6,3 ,15,7047,671992,1,1 ,28,14980,147712,7,3 ,15,7048,672000,1,1 ,20,18229,7487746,96,0 ,17,923,9584900,56,0 ,44,15152,2769156,48,0 ,45,15153,4342020,24,0 ,17,923,8012036,24,0 ,28,14980,147720,7,3 ,15,7049,672008,1,1 ,28,14980,147728,7,3 ,15,7050,672016,1,1 ,28,14980,147736,6,3 ,15,7051,672024,1,1 ,28,14980,147744,6,3 ,15,7052,672032,1,1 ,28,14980,147752,7,3 ,15,7053,672040,1,1 ,28,14980,147760,7,3 ,15,7054,672048,1,1 ,28,14980,147768,7,3 ,15,7055,672056,1,1 ,28,14980,147776,6,3 ,15,7056,672064,1,1 ,17,923,8536388,32,0 ,17,923,6963524,24,0 ,17,923,6439236,24,0 ,28,14980,147784,7,3 ,15,7057,672072,1,1 ,28,14980,147792,7,3 ,15,7058,672080,1,1 ,28,14980,147800,6,3 ,15,7059,672088,1,1 ,28,14980,147808,7,3 ,15,7060,672096,1,1 ,28,14980,147816,7,3 ,15,7061,672104,1,1 ,28,14980,147824,7,3 ,15,7062,672112,1,1 ,28,14980,147832,6,3 ,15,7063,672120,1,1 ,28,14980,147840,6,3 ,15,7064,672128,1,1 ,17,923,147843,24,0 ,17,923,10109316,88,0 ,44,15152,672132,48,0 ,28,14980,147848,6,3 ,15,7065,672136,1,1 ,28,14980,147856,6,3 ,15,7066,672144,1,1 ,28,14980,147864,6,3 ,15,7067,672152,1,1 ,28,14980,147872,6,3 ,15,7068,672160,1,1 ,20,21298,15876514,24,0 ,20,20548,13255074,12,0 ,28,14980,147880,6,3 ,15,7069,672168,1,1 ,28,14980,147888,6,3 ,15,7070,672176,1,1 ,28,14980,147896,7,3 ,15,7071,672184,1,1 ,28,14980,147904,6,3 ,15,7072,672192,1,1 ,20,23728,21643714,212,0 ,20,22059,17973698,72,0 ,17,923,8012228,56,0 ,17,923,7487940,24,0 ,44,15152,147908,72,0 ,45,15153,4342212,16,0 ,28,14980,147912,6,3 ,15,7073,672200,1,1 ,28,14980,147920,6,3 ,15,7074,672208,1,1 ,28,14980,147928,6,3 ,15,7075,672216,1,1 ,28,14980,147936,6,3 ,15,7076,672224,1,1 ,28,14980,147944,6,3 ,15,7077,672232,1,1 ,28,14980,147952,7,3 ,15,7078,672240,1,1 ,28,14980,147960,7,3 ,15,7079,672248,1,1 ,28,14980,147968,6,3 ,15,7080,672256,1,1 ,20,20549,13255170,588,0 ,44,15152,3293700,40,0 ,17,923,6963716,80,0 ,17,923,6439428,24,0 ,44,15152,1720836,48,0 ,28,14980,147976,6,3 ,15,7081,672264,1,1 ,28,14980,147984,6,3 ,15,7082,672272,1,1 ,28,14980,147992,7,3 ,15,7083,672280,1,1 ,28,14980,148000,6,3 ,15,7084,672288,1,1 ,28,14980,148008,6,3 ,15,7085,672296,1,1 ,28,14980,148016,7,3 ,15,7086,672304,1,1 ,28,14980,148024,7,3 ,15,7087,672312,1,1 ,28,14980,148032,6,3 ,15,7088,672320,1,1 ,20,22716,19546690,12,0 ,20,20259,12730946,12,0 ,17,923,148035,16,0 ,17,923,9060932,40,0 ,44,15152,3818052,104,0 ,45,15153,4342340,40,0 ,17,923,8536644,24,0 ,28,14980,148040,6,3 ,15,7089,672328,1,1 ,28,14980,148048,6,3 ,15,7090,672336,1,1 ,28,14980,148056,6,3 ,15,7091,672344,1,1 ,28,14980,148064,6,3 ,15,7092,672352,1,1 ,20,21299,15876706,24,0 ,20,25369,25838178,368,0 ,28,14980,148072,6,3 ,15,7093,672360,1,1 ,28,14980,148080,6,3 ,15,7094,672368,1,1 ,28,14980,148088,6,3 ,15,7095,672376,1,1 ,28,14980,148096,6,3 ,15,7096,672384,1,1 ,20,19124,9585282,380,0 ,20,18035,6963842,244,0 ,44,15152,2769540,24,0 ,17,923,7488132,64,0 ,28,14980,148104,6,3 ,15,7097,672392,1,1 ,28,14980,148112,6,3 ,15,7098,672400,1,1 ,28,14980,148120,6,3 ,15,7099,672408,1,1 ,28,14980,148128,6,3 ,15,7100,672416,1,1 ,20,22717,19546786,240,0 ,20,20260,12731042,80,0 ,28,14980,148136,6,3 ,15,7101,672424,1,1 ,28,14980,148144,6,3 ,15,7102,672432,1,1 ,28,14980,148152,6,3 ,15,7103,672440,1,1 ,28,14980,148160,6,3 ,15,7104,672448,1,1 ,17,923,148163,32,0 ,17,923,9585348,48,0 ,17,923,6439620,24,0 ,28,14980,148168,6,3 ,15,7105,672456,1,1 ,28,14980,148176,6,3 ,15,7106,672464,1,1 ,28,14980,148184,7,3 ,15,7107,672472,1,1 ,28,14980,148192,6,3 ,15,7108,672480,1,1 ,20,19398,10109666,1368,0 ,20,18957,9061090,264,0 ,28,14980,148200,6,3 ,15,7109,672488,1,1 ,28,14980,148208,6,3 ,15,7110,672496,1,1 ,28,14980,148216,6,3 ,15,7111,672504,1,1 ,28,14980,148224,6,3 ,15,7112,672512,1,1 ,17,923,8536836,24,0 ,44,15152,672516,24,0 ,28,14980,148232,6,3 ,15,7113,672520,1,1 ,28,14980,148240,7,3 ,15,7114,672528,1,1 ,28,14980,148248,6,3 ,15,7115,672536,1,1 ,28,14980,148256,6,3 ,15,7116,672544,1,1 ,20,21300,15876898,56,0 ,28,14980,148264,6,3 ,15,7117,672552,1,1 ,28,14980,148272,7,3 ,15,7118,672560,1,1 ,28,14980,148280,6,3 ,15,7119,672568,1,1 ,28,14980,148288,6,3 ,15,7120,672576,1,1 ,20,16377,3294018,76,0 ,44,15152,3294020,32,0 ,44,15152,2769732,24,0 ,28,14980,148296,7,3 ,15,7121,672584,1,1 ,28,14980,148304,6,3 ,15,7122,672592,1,1 ,28,14980,148312,6,3 ,15,7123,672600,1,1 ,28,14980,148320,6,3 ,15,7124,672608,1,1 ,28,14980,148328,6,3 ,15,7125,672616,1,1 ,28,14980,148336,6,3 ,15,7126,672624,1,1 ,28,14980,148344,6,3 ,15,7127,672632,1,1 ,28,14980,148352,6,3 ,15,7128,672640,1,1 ,17,923,9061252,80,0 ,17,923,6439812,24,0 ,44,15152,1721220,56,0 ,45,15153,4342660,24,0 ,45,15153,5391236,88,0 ,17,923,8012676,48,0 ,28,14980,148360,7,3 ,15,7129,672648,1,1 ,28,14980,148368,7,3 ,15,7130,672656,1,1 ,28,14980,148376,6,3 ,15,7131,672664,1,1 ,28,14980,148384,6,3 ,15,7132,672672,1,1 ,28,14980,148392,6,3 ,15,7133,672680,1,1 ,28,14980,148400,6,3 ,15,7134,672688,1,1 ,28,14980,148408,6,3 ,15,7135,672696,1,1 ,28,14980,148416,6,3 ,15,7136,672704,1,1 ,20,25518,26362818,16,0 ,17,923,148419,16,0 ,17,923,8537028,56,0 ,44,15152,672708,24,0 ,28,14980,148424,6,3 ,15,7137,672712,1,1 ,28,14980,148432,6,3 ,15,7138,672720,1,1 ,28,14980,148440,7,3 ,15,7139,672728,1,1 ,28,14980,148448,7,3 ,15,7140,672736,1,1 ,28,14980,148456,7,3 ,15,7141,672744,1,1 ,28,14980,148464,7,3 ,15,7142,672752,1,1 ,28,14980,148472,6,3 ,15,7143,672760,1,1 ,28,14980,148480,6,3 ,15,7144,672768,1,1 ,20,22060,17974274,72,0 ,20,18230,7488514,204,0 ,44,15152,148484,32,0 ,44,15152,2769924,16,0 ,28,14980,148488,6,3 ,15,7145,672776,1,1 ,28,14980,148496,6,3 ,15,7146,672784,1,1 ,28,14980,148504,6,3 ,15,7147,672792,1,1 ,28,14980,148512,7,3 ,15,7148,672800,1,1 ,20,23364,20595746,140,0 ,28,14980,148520,6,3 ,15,7149,672808,1,1 ,28,14980,148528,6,3 ,15,7150,672816,1,1 ,28,14980,148536,6,3 ,15,7151,672824,1,1 ,28,14980,148544,6,3 ,15,7152,672832,1,1 ,20,25519,26362946,140,0 ,17,923,148547,16,0 ,17,923,10110020,24,0 ,17,923,6440004,24,0 ,44,15152,3294276,24,0 ,45,15153,4342852,56,0 ,17,923,9585732,48,0 ,28,14980,148552,7,3 ,15,7153,672840,1,1 ,28,14980,148560,9,3 ,15,7154,672848,1,1 ,28,14980,148568,6,3 ,15,7155,672856,1,1 ,28,14980,148576,6,3 ,15,7156,672864,1,1 ,28,14980,148584,6,3 ,15,7157,672872,1,1 ,28,14980,148592,6,3 ,15,7158,672880,1,1 ,28,14980,148600,6,3 ,15,7159,672888,1,1 ,28,14980,148608,6,3 ,15,7160,672896,1,1 ,20,15226,148610,168,0 ,44,15152,672900,24,0 ,17,923,7488644,128,0 ,17,923,6964356,40,0 ,44,15152,2770052,16,0 ,28,14980,148616,6,3 ,15,7161,672904,1,1 ,28,14980,148624,6,3 ,15,7162,672912,1,1 ,28,14980,148632,7,3 ,15,7163,672920,1,1 ,28,14980,148640,6,3 ,15,7164,672928,1,1 ,28,14980,148648,6,3 ,15,7165,672936,1,1 ,28,14980,148656,6,3 ,15,7166,672944,1,1 ,28,14980,148664,6,3 ,15,7167,672952,1,1 ,28,14980,148672,7,3 ,15,7168,672960,1,1 ,17,923,148675,24,0 ,28,14980,148680,6,3 ,15,7169,672968,1,1 ,28,14980,148688,6,3 ,15,7170,672976,1,1 ,28,14980,148696,6,3 ,15,7171,672984,1,1 ,28,14980,148704,6,3 ,15,7172,672992,1,1 ,20,21301,15877346,76,0 ,28,14980,148712,6,3 ,15,7173,673000,1,1 ,28,14980,148720,6,3 ,15,7174,673008,1,1 ,28,14980,148728,6,3 ,15,7175,673016,1,1 ,28,14980,148736,6,3 ,15,7176,673024,1,1 ,17,923,10110212,24,0 ,17,923,6440196,24,0 ,44,15152,2770180,16,0 ,44,15152,148740,64,0 ,44,15152,1197316,24,0 ,44,15152,3294468,24,0 ,17,923,8013060,24,0 ,28,14980,148744,6,3 ,15,7177,673032,1,1 ,28,14980,148752,6,3 ,15,7178,673040,1,1 ,28,14980,148760,7,3 ,15,7179,673048,1,1 ,28,14980,148768,7,3 ,15,7180,673056,1,1 ,20,20261,12731682,12,0 ,20,15632,1197346,440,0 ,28,14980,148776,6,3 ,15,7181,673064,1,1 ,29,14984,148784,4,2 ,15,7182,673072,1,1 ,29,14984,148792,4,2 ,15,7183,673080,1,1 ,29,14984,148800,5,2 ,15,7184,673088,1,1 ,44,15152,673092,56,0 ,44,15152,2245956,32,0 ,44,15152,1721668,24,0 ,29,14984,148808,4,2 ,15,7185,673096,1,1 ,29,14984,148816,5,2 ,15,7186,673104,1,1 ,29,14984,148824,5,2 ,15,7187,673112,1,1 ,29,14984,148832,5,2 ,15,7188,673120,1,1 ,20,16985,4343138,772,0 ,29,14984,148840,5,2 ,15,7189,673128,1,1 ,29,14984,148848,5,2 ,15,7190,673136,1,1 ,29,14984,148856,5,2 ,15,7191,673144,1,1 ,29,14984,148864,5,2 ,15,7192,673152,1,1 ,20,20262,12731778,176,0 ,20,24936,24790402,20,0 ,17,923,148867,24,0 ,17,923,8537476,48,0 ,44,15152,2770308,16,0 ,44,15152,3818884,16,0 ,29,14984,148872,5,2 ,15,7193,673160,1,1 ,29,14984,148880,5,2 ,15,7194,673168,1,1 ,29,14984,148888,5,2 ,15,7195,673176,1,1 ,29,14984,148896,5,2 ,15,7196,673184,1,1 ,20,16378,3294626,88,0 ,29,14984,148904,5,2 ,15,7197,673192,1,1 ,29,14984,148912,5,2 ,15,7198,673200,1,1 ,29,14984,148920,5,2 ,15,7199,673208,1,1 ,29,14984,148928,5,2 ,15,7200,673216,1,1 ,17,923,10110404,24,0 ,17,923,6964676,48,0 ,17,923,6440388,24,0 ,44,15152,1197508,32,0 ,44,15152,3294660,48,0 ,17,923,8013252,56,0 ,17,923,9586116,48,0 ,29,14984,148936,5,2 ,15,7201,673224,1,1 ,29,14984,148944,5,2 ,15,7202,673232,1,1 ,29,14984,148952,5,2 ,15,7203,673240,1,1 ,29,14984,148960,5,2 ,15,7204,673248,1,1 ,20,22299,18499042,80,0 ,29,14984,148968,5,2 ,15,7205,673256,1,1 ,29,14984,148976,5,2 ,15,7206,673264,1,1 ,29,14984,148984,5,2 ,15,7207,673272,1,1 ,29,14984,148992,5,2 ,15,7208,673280,1,1 ,17,923,9061892,80,0 ,44,15152,2770436,24,0 ,44,15152,1721860,48,0 ,44,15152,3819012,32,0 ,45,15153,4343300,24,0 ,29,14984,149000,5,2 ,15,7209,673288,1,1 ,29,14984,149008,5,2 ,15,7210,673296,1,1 ,29,14984,149016,5,2 ,15,7211,673304,1,1 ,29,14984,149024,5,2 ,15,7212,673312,1,1 ,20,24937,24790562,628,0 ,29,14984,149032,4,2 ,15,7213,673320,1,1 ,29,14984,149040,5,2 ,15,7214,673328,1,1 ,29,14984,149048,5,2 ,15,7215,673336,1,1 ,29,14984,149056,5,2 ,15,7216,673344,1,1 ,20,23599,21120578,1408,0 ,20,22061,17974850,340,0 ,17,923,149059,32,0 ,45,15153,5391940,16,0 ,44,15152,2246212,72,0 ,29,14984,149064,5,2 ,15,7217,673352,1,1 ,29,14984,149072,5,2 ,15,7218,673360,1,1 ,29,14984,149080,5,2 ,15,7219,673368,1,1 ,29,14984,149088,5,2 ,15,7220,673376,1,1 ,29,14984,149096,5,2 ,15,7221,673384,1,1 ,29,14984,149104,5,2 ,15,7222,673392,1,1 ,29,14984,149112,5,2 ,15,7223,673400,1,1 ,29,14984,149120,5,2 ,15,7224,673408,1,1 ,17,923,10110596,16,0 ,17,923,6440580,24,0 ,29,14984,149128,5,2 ,15,7225,673416,1,1 ,29,14984,149136,5,2 ,15,7226,673424,1,1 ,29,14984,149144,5,2 ,15,7227,673432,1,1 ,29,14984,149152,5,2 ,15,7228,673440,1,1 ,29,14984,149160,5,2 ,15,7229,673448,1,1 ,29,14984,149168,5,2 ,15,7230,673456,1,1 ,29,14984,149176,5,2 ,15,7231,673464,1,1 ,29,14984,149184,5,2 ,15,7232,673472,1,1 ,45,15153,5392068,56,0 ,44,15152,2770628,24,0 ,44,15152,1197764,24,0 ,45,15153,4343492,24,0 ,29,14984,149192,5,2 ,15,7233,673480,1,1 ,29,14984,149200,4,2 ,15,7234,673488,1,1 ,29,14984,149208,4,2 ,15,7235,673496,1,1 ,29,14984,149216,4,2 ,15,7236,673504,1,1 ,20,23015,20072162,76,0 ,20,26414,28985058,520,0 ,29,14984,149224,5,2 ,15,7237,673512,1,1 ,29,14984,149232,5,2 ,15,7238,673520,1,1 ,29,14984,149240,4,2 ,15,7239,673528,1,1 ,29,14984,149248,5,2 ,15,7240,673536,1,1 ,17,923,10110724,32,0 ,44,15152,149252,88,0 ,44,15152,673540,32,0 ,44,15152,3819268,48,0 ,17,923,8537860,32,0 ,29,14984,149256,4,2 ,15,7241,673544,1,1 ,29,14984,149264,5,2 ,15,7242,673552,1,1 ,29,14984,149272,5,2 ,15,7243,673560,1,1 ,29,14984,149280,5,2 ,15,7244,673568,1,1 ,29,14984,149288,4,2 ,15,7245,673576,1,1 ,29,14984,149296,4,2 ,15,7246,673584,1,1 ,29,14984,149304,5,2 ,15,7247,673592,1,1 ,29,14984,149312,5,2 ,15,7248,673600,1,1 ,20,21302,15877954,24,0 ,17,923,149315,32,0 ,17,923,9586500,48,0 ,17,923,6965060,24,0 ,17,923,6440772,24,0 ,44,15152,3295044,56,0 ,29,14984,149320,5,2 ,15,7249,673608,1,1 ,29,14984,149328,5,2 ,15,7250,673616,1,1 ,29,14984,149336,5,2 ,15,7251,673624,1,1 ,29,14984,149344,4,2 ,15,7252,673632,1,1 ,29,14984,149352,4,2 ,15,7253,673640,1,1 ,29,14984,149360,4,2 ,15,7254,673648,1,1 ,29,14984,149368,4,2 ,15,7255,673656,1,1 ,29,14984,149376,5,2 ,15,7256,673664,1,1 ,17,923,8013700,48,0 ,44,15152,2770820,24,0 ,44,15152,1722244,16,0 ,44,15152,1197956,24,0 ,45,15153,4343684,24,0 ,29,14984,149384,5,2 ,15,7257,673672,1,1 ,29,14984,149392,4,2 ,15,7258,673680,1,1 ,29,14984,149400,4,2 ,15,7259,673688,1,1 ,29,14984,149408,4,2 ,15,7260,673696,1,1 ,20,19993,11159458,12,0 ,29,14984,149416,4,2 ,15,7261,673704,1,1 ,29,14984,149424,4,2 ,15,7262,673712,1,1 ,29,14984,149432,4,2 ,15,7263,673720,1,1 ,29,14984,149440,4,2 ,15,7264,673728,1,1 ,29,14984,149448,4,2 ,15,7265,673736,1,1 ,29,14984,149456,4,2 ,15,7266,673744,1,1 ,29,14984,149464,5,2 ,15,7267,673752,1,1 ,29,14984,149472,5,2 ,15,7268,673760,1,1 ,20,20963,15353826,72,0 ,29,14984,149480,4,2 ,15,7269,673768,1,1 ,29,14984,149488,5,2 ,15,7270,673776,1,1 ,29,14984,149496,5,2 ,15,7271,673784,1,1 ,29,14984,149504,5,2 ,15,7272,673792,1,1 ,20,21826,16926722,144,0 ,20,19994,11159554,56,0 ,20,21303,15878146,24,0 ,17,923,10110980,24,0 ,17,923,6965252,48,0 ,17,923,6440964,32,0 ,44,15152,1722372,56,0 ,44,15152,673796,24,0 ,17,923,8538116,24,0 ,29,14984,149512,4,2 ,15,7273,673800,1,1 ,29,14984,149520,5,2 ,15,7274,673808,1,1 ,29,14984,149528,5,2 ,15,7275,673816,1,1 ,29,14984,149536,5,2 ,15,7276,673824,1,1 ,29,14984,149544,5,2 ,15,7277,673832,1,1 ,29,14984,149552,4,2 ,15,7278,673840,1,1 ,29,14984,149560,5,2 ,15,7279,673848,1,1 ,29,14984,149568,5,2 ,15,7280,673856,1,1 ,17,923,149571,24,0 ,45,15153,4868164,16,0 ,44,15152,2771012,24,0 ,44,15152,1198148,72,0 ,45,15153,4343876,24,0 ,29,14984,149576,5,2 ,15,7281,673864,1,1 ,29,14984,149584,5,2 ,15,7282,673872,1,1 ,29,14984,149592,5,2 ,15,7283,673880,1,1 ,29,14984,149600,5,2 ,15,7284,673888,1,1 ,20,23729,21645410,152,0 ,20,16379,3295330,36,0 ,20,22300,18499682,56,0 ,29,14984,149608,5,2 ,15,7285,673896,1,1 ,29,14984,149616,5,2 ,15,7286,673904,1,1 ,29,14984,149624,5,2 ,15,7287,673912,1,1 ,29,14984,149632,5,2 ,15,7288,673920,1,1 ,20,23365,20596866,140,0 ,17,923,9062532,80,0 ,17,923,7489668,120,0 ,44,15152,2246788,32,0 ,44,15152,3819652,24,0 ,45,15153,5392516,56,0 ,29,14984,149640,5,2 ,15,7289,673928,1,1 ,29,14984,149648,5,2 ,15,7290,673936,1,1 ,29,14984,149656,5,2 ,15,7291,673944,1,1 ,29,14984,149664,5,2 ,15,7292,673952,1,1 ,20,25520,26364066,820,0 ,29,14984,149672,5,2 ,15,7293,673960,1,1 ,29,14984,149680,5,2 ,15,7294,673968,1,1 ,29,14984,149688,5,2 ,15,7295,673976,1,1 ,29,14984,149696,5,2 ,15,7296,673984,1,1 ,20,21304,15878338,24,0 ,17,923,10111172,24,0 ,44,15152,673988,24,0 ,45,15153,4868292,16,0 ,17,923,8538308,40,0 ,17,923,9586884,32,0 ,29,14984,149704,5,2 ,15,7297,673992,1,1 ,29,14984,149712,5,2 ,15,7298,674000,1,1 ,29,14984,149720,5,2 ,15,7299,674008,1,1 ,29,14984,149728,5,2 ,15,7300,674016,1,1 ,20,24369,23218402,468,0 ,29,14984,149736,5,2 ,15,7301,674024,1,1 ,29,14984,149744,5,2 ,15,7302,674032,1,1 ,29,14984,149752,5,2 ,15,7303,674040,1,1 ,29,14984,149760,5,2 ,15,7304,674048,1,1 ,17,923,149763,16,0 ,17,923,8014084,40,0 ,17,923,6441220,40,0 ,44,15152,2771204,24,0 ,44,15152,3295492,136,0 ,45,15153,4344068,48,0 ,29,14984,149768,5,2 ,15,7305,674056,1,1 ,29,14984,149776,5,2 ,15,7306,674064,1,1 ,29,14984,149784,5,2 ,15,7307,674072,1,1 ,29,14984,149792,5,2 ,15,7308,674080,1,1 ,29,14984,149800,5,2 ,15,7309,674088,1,1 ,29,14984,149808,5,2 ,15,7310,674096,1,1 ,29,14984,149816,4,2 ,15,7311,674104,1,1 ,29,14984,149824,5,2 ,15,7312,674112,1,1 ,20,23016,20072770,48,0 ,45,15153,4868420,16,0 ,44,15152,3819844,72,0 ,29,14984,149832,5,2 ,15,7313,674120,1,1 ,29,14984,149840,5,2 ,15,7314,674128,1,1 ,29,14984,149848,5,2 ,15,7315,674136,1,1 ,29,14984,149856,5,2 ,15,7316,674144,1,1 ,29,14984,149864,5,2 ,15,7317,674152,1,1 ,29,14984,149872,5,2 ,15,7318,674160,1,1 ,29,14984,149880,5,2 ,15,7319,674168,1,1 ,29,14984,149888,5,2 ,15,7320,674176,1,1 ,20,21305,15878530,24,0 ,20,16380,3295618,768,0 ,17,923,149891,16,0 ,17,923,10111364,16,0 ,17,923,6965636,40,0 ,44,15152,2247044,112,0 ,44,15152,674180,32,0 ,29,14984,149896,4,2 ,15,7321,674184,1,1 ,29,14984,149904,6,2 ,15,7322,674192,1,1 ,29,14984,149912,5,2 ,15,7323,674200,1,1 ,29,14984,149920,5,2 ,15,7324,674208,1,1 ,20,21559,16402850,164,0 ,29,14984,149928,5,2 ,15,7325,674216,1,1 ,29,14984,149936,5,2 ,15,7326,674224,1,1 ,29,14984,149944,6,2 ,15,7327,674232,1,1 ,29,14984,149952,5,2 ,15,7328,674240,1,1 ,20,19995,11160002,700,0 ,20,15227,149954,28,0 ,17,923,9587140,56,0 ,44,15152,2771396,24,0 ,44,15152,1722820,24,0 ,44,15152,149956,72,0 ,45,15153,4868548,16,0 ,29,14984,149960,6,2 ,15,7329,674248,1,1 ,29,14984,149968,5,2 ,15,7330,674256,1,1 ,29,14984,149976,6,2 ,15,7331,674264,1,1 ,29,14984,149984,5,2 ,15,7332,674272,1,1 ,29,14984,149992,6,2 ,15,7333,674280,1,1 ,29,14984,150000,5,2 ,15,7334,674288,1,1 ,29,14984,150008,4,2 ,15,7335,674296,1,1 ,29,14984,150016,6,2 ,15,7336,674304,1,1 ,20,26299,28461570,216,0 ,17,923,10111492,16,0 ,17,923,8538628,32,0 ,29,14984,150024,5,2 ,15,7337,674312,1,1 ,29,14984,150032,6,2 ,15,7338,674320,1,1 ,29,14984,150040,5,2 ,15,7339,674328,1,1 ,29,14984,150048,5,2 ,15,7340,674336,1,1 ,20,22718,19548706,824,0 ,20,18036,6965794,12,0 ,20,20964,15354402,204,0 ,20,22301,18500130,200,0 ,29,14984,150056,4,2 ,15,7341,674344,1,1 ,29,14984,150064,5,2 ,15,7342,674352,1,1 ,29,14984,150072,4,2 ,15,7343,674360,1,1 ,29,14984,150080,4,2 ,15,7344,674368,1,1 ,20,21306,15878722,24,0 ,17,923,8014404,32,0 ,17,923,6441540,32,0 ,45,15153,4868676,32,0 ,45,15153,5392964,48,0 ,29,14984,150088,5,2 ,15,7345,674376,1,1 ,29,14984,150096,4,2 ,15,7346,674384,1,1 ,29,14984,150104,6,2 ,15,7347,674392,1,1 ,29,14984,150112,6,2 ,15,7348,674400,1,1 ,20,18231,7490146,132,0 ,29,14984,150120,5,2 ,15,7349,674408,1,1 ,29,14984,150128,5,2 ,15,7350,674416,1,1 ,29,14984,150136,5,2 ,15,7351,674424,1,1 ,29,14984,150144,5,2 ,15,7352,674432,1,1 ,20,23960,22170242,564,0 ,20,15375,674434,272,0 ,20,18037,6965890,272,0 ,17,923,10111620,40,0 ,44,15152,2771588,24,0 ,44,15152,1723012,24,0 ,44,15152,674436,24,0 ,44,15152,1198724,112,0 ,45,15153,4344452,24,0 ,29,14984,150152,5,2 ,15,7353,674440,1,1 ,29,14984,150160,6,2 ,15,7354,674448,1,1 ,29,14984,150168,6,2 ,15,7355,674456,1,1 ,29,14984,150176,4,2 ,15,7356,674464,1,1 ,20,15228,150178,1020,0 ,29,14984,150184,5,2 ,15,7357,674472,1,1 ,29,14984,150192,5,2 ,15,7358,674480,1,1 ,29,14984,150200,5,2 ,15,7359,674488,1,1 ,29,14984,150208,4,2 ,15,7360,674496,1,1 ,20,23017,20073154,48,0 ,17,923,6965956,24,0 ,29,14984,150216,5,2 ,15,7361,674504,1,1 ,29,14984,150224,5,2 ,15,7362,674512,1,1 ,29,14984,150232,5,2 ,15,7363,674520,1,1 ,29,14984,150240,5,2 ,15,7364,674528,1,1 ,29,14984,150248,5,2 ,15,7365,674536,1,1 ,29,14984,150256,5,2 ,15,7366,674544,1,1 ,29,14984,150264,5,2 ,15,7367,674552,1,1 ,29,14984,150272,5,2 ,15,7368,674560,1,1 ,20,21307,15878914,24,0 ,20,20263,12733186,80,0 ,17,923,9063172,88,0 ,17,923,8538884,40,0 ,29,14984,150280,5,2 ,15,7369,674568,1,1 ,29,14984,150288,4,2 ,15,7370,674576,1,1 ,29,14984,150296,4,2 ,15,7371,674584,1,1 ,29,14984,150304,5,2 ,15,7372,674592,1,1 ,20,18958,9063202,12,0 ,29,14984,150312,5,2 ,15,7373,674600,1,1 ,29,14984,150320,5,2 ,15,7374,674608,1,1 ,29,14984,150328,4,2 ,15,7375,674616,1,1 ,29,14984,150336,5,2 ,15,7376,674624,1,1 ,17,923,8014660,32,0 ,17,923,6441796,40,0 ,44,15152,2771780,24,0 ,44,15152,1723204,48,0 ,44,15152,674628,24,0 ,45,15153,4344644,24,0 ,45,15153,4868932,16,0 ,29,14984,150344,5,2 ,15,7377,674632,1,1 ,29,14984,150352,5,2 ,15,7378,674640,1,1 ,29,14984,150360,5,2 ,15,7379,674648,1,1 ,29,14984,150368,5,2 ,15,7380,674656,1,1 ,29,14984,150376,5,2 ,15,7381,674664,1,1 ,29,14984,150384,6,2 ,15,7382,674672,1,1 ,29,14984,150392,5,2 ,15,7383,674680,1,1 ,29,14984,150400,6,2 ,15,7384,674688,1,1 ,20,18959,9063298,52,0 ,17,923,9587588,40,0 ,17,923,6966148,24,0 ,44,15152,3820420,120,0 ,29,14984,150408,5,2 ,15,7385,674696,1,1 ,29,14984,150416,5,2 ,15,7386,674704,1,1 ,29,14984,150424,5,2 ,15,7387,674712,1,1 ,29,14984,150432,5,2 ,15,7388,674720,1,1 ,29,14984,150440,5,2 ,15,7389,674728,1,1 ,29,14984,150448,5,2 ,15,7390,674736,1,1 ,29,14984,150456,4,2 ,15,7391,674744,1,1 ,29,14984,150464,4,2 ,15,7392,674752,1,1 ,20,21308,15879106,24,0 ,17,923,10111940,40,0 ,45,15153,4869060,16,0 ,45,15153,5393348,24,0 ,29,14984,150472,4,2 ,15,7393,674760,1,1 ,29,14984,150480,5,2 ,15,7394,674768,1,1 ,29,14984,150488,4,2 ,15,7395,674776,1,1 ,29,14984,150496,5,2 ,15,7396,674784,1,1 ,29,14984,150504,5,2 ,15,7397,674792,1,1 ,29,14984,150512,5,2 ,15,7398,674800,1,1 ,29,14984,150520,5,2 ,15,7399,674808,1,1 ,29,14984,150528,5,2 ,15,7400,674816,1,1 ,45,15153,4344836,16,0 ,44,15152,2771972,24,0 ,44,15152,150532,48,0 ,44,15152,674820,24,0 ,29,14984,150536,5,2 ,15,7401,674824,1,1 ,29,14984,150544,6,2 ,15,7402,674832,1,1 ,29,14984,150552,5,2 ,15,7403,674840,1,1 ,29,14984,150560,5,2 ,15,7404,674848,1,1 ,20,25933,27413538,260,0 ,29,14984,150568,5,2 ,15,7405,674856,1,1 ,29,14984,150576,4,2 ,15,7406,674864,1,1 ,29,14984,150584,5,2 ,15,7407,674872,1,1 ,29,14984,150592,5,2 ,15,7408,674880,1,1 ,20,23018,20073538,252,0 ,17,923,8539204,16,0 ,17,923,7490628,32,0 ,17,923,6966340,24,0 ,45,15153,4869188,32,0 ,17,923,8014916,48,0 ,29,14984,150600,5,2 ,15,7409,674888,1,1 ,29,14984,150608,5,2 ,15,7410,674896,1,1 ,29,14984,150616,5,2 ,15,7411,674904,1,1 ,29,14984,150624,5,2 ,15,7412,674912,1,1 ,20,24530,23743586,512,0 ,29,14984,150632,5,2 ,15,7413,674920,1,1 ,29,14984,150640,5,2 ,15,7414,674928,1,1 ,29,14984,150648,5,2 ,15,7415,674936,1,1 ,29,14984,150656,5,2 ,15,7416,674944,1,1 ,20,21827,16927874,236,0 ,20,21309,15879298,24,0 ,45,15153,5393540,64,0 ,17,923,6442116,24,0 ,45,15153,4344964,24,0 ,29,14984,150664,4,2 ,15,7417,674952,1,1 ,29,14984,150672,6,2 ,15,7418,674960,1,1 ,29,14984,150680,5,2 ,15,7419,674968,1,1 ,29,14984,150688,5,2 ,15,7420,674976,1,1 ,29,14984,150696,5,2 ,15,7421,674984,1,1 ,29,14984,150704,5,2 ,15,7422,674992,1,1 ,29,14984,150712,5,2 ,15,7423,675000,1,1 ,29,14984,150720,5,2 ,15,7424,675008,1,1 ,17,923,9587908,56,0 ,44,15152,2772164,24,0 ,44,15152,1723588,56,0 ,44,15152,675012,24,0 ,17,923,8539332,24,0 ,29,14984,150728,5,2 ,15,7425,675016,1,1 ,29,14984,150736,5,2 ,15,7426,675024,1,1 ,29,14984,150744,6,2 ,15,7427,675032,1,1 ,29,14984,150752,5,2 ,15,7428,675040,1,1 ,20,23366,20597986,76,0 ,29,14984,150760,5,2 ,15,7429,675048,1,1 ,29,14984,150768,6,2 ,15,7430,675056,1,1 ,29,14984,150776,5,2 ,15,7431,675064,1,1 ,29,14984,150784,5,2 ,15,7432,675072,1,1 ,17,923,10112260,64,0 ,17,923,6966532,48,0 ,44,15152,2247940,56,0 ,29,14984,150792,4,2 ,15,7433,675080,1,1 ,29,14984,150800,5,2 ,15,7434,675088,1,1 ,29,14984,150808,5,2 ,15,7435,675096,1,1 ,29,14984,150816,5,2 ,15,7436,675104,1,1 ,20,23730,21646626,56,0 ,20,18960,9063714,284,0 ,29,14984,150824,5,2 ,15,7437,675112,1,1 ,29,14984,150832,5,2 ,15,7438,675120,1,1 ,29,14984,150840,5,2 ,15,7439,675128,1,1 ,29,14984,150848,4,2 ,15,7440,675136,1,1 ,20,21310,15879490,24,0 ,45,15153,4869444,16,0 ,17,923,7490884,24,0 ,17,923,6442308,48,0 ,44,15152,3296580,88,0 ,45,15153,4345156,16,0 ,29,14984,150856,5,2 ,15,7441,675144,1,1 ,29,14984,150864,4,2 ,15,7442,675152,1,1 ,29,14984,150872,5,2 ,15,7443,675160,1,1 ,29,14984,150880,5,2 ,15,7444,675168,1,1 ,29,14984,150888,5,2 ,15,7445,675176,1,1 ,29,14984,150896,5,2 ,15,7446,675184,1,1 ,29,14984,150904,4,2 ,15,7447,675192,1,1 ,29,14984,150912,5,2 ,15,7448,675200,1,1 ,20,20264,12733826,12,0 ,17,923,8539524,88,0 ,44,15152,2772356,16,0 ,44,15152,150916,64,0 ,44,15152,675204,16,0 ,29,14984,150920,5,2 ,15,7449,675208,1,1 ,29,14984,150928,4,2 ,15,7450,675216,1,1 ,29,14984,150936,5,2 ,15,7451,675224,1,1 ,29,14984,150944,5,2 ,15,7452,675232,1,1 ,29,14984,150952,5,2 ,15,7453,675240,1,1 ,29,14984,150960,6,2 ,15,7454,675248,1,1 ,29,14984,150968,5,2 ,15,7455,675256,1,1 ,29,14984,150976,4,2 ,15,7456,675264,1,1 ,17,923,9063876,40,0 ,45,15153,4345284,24,0 ,45,15153,4869572,32,0 ,17,923,8015300,40,0 ,29,14984,150984,5,2 ,15,7457,675272,1,1 ,29,14984,150992,5,2 ,15,7458,675280,1,1 ,29,14984,151000,5,2 ,15,7459,675288,1,1 ,29,14984,151008,5,2 ,15,7460,675296,1,1 ,20,20265,12733922,92,0 ,20,25370,25841122,68,0 ,29,14984,151016,5,2 ,15,7461,675304,1,1 ,29,14984,151024,5,2 ,15,7462,675312,1,1 ,29,14984,151032,5,2 ,15,7463,675320,1,1 ,29,14984,151040,4,2 ,15,7464,675328,1,1 ,20,21311,15879682,24,0 ,44,15152,1199620,128,0 ,17,923,7491076,48,0 ,44,15152,2772484,40,0 ,44,15152,675332,32,0 ,29,14984,151048,5,2 ,15,7465,675336,1,1 ,29,14984,151056,5,2 ,15,7466,675344,1,1 ,29,14984,151064,5,2 ,15,7467,675352,1,1 ,29,14984,151072,5,2 ,15,7468,675360,1,1 ,29,14984,151080,5,2 ,15,7469,675368,1,1 ,29,14984,151088,5,2 ,15,7470,675376,1,1 ,29,14984,151096,5,2 ,15,7471,675384,1,1 ,29,14984,151104,5,2 ,15,7472,675392,1,1 ,29,14984,151112,4,2 ,15,7473,675400,1,1 ,29,14984,151120,5,2 ,15,7474,675408,1,1 ,29,14984,151128,5,2 ,15,7475,675416,1,1 ,29,14984,151136,5,2 ,15,7476,675424,1,1 ,20,19125,9588322,348,0 ,29,14984,151144,5,2 ,15,7477,675432,1,1 ,29,14984,151152,5,2 ,15,7478,675440,1,1 ,29,14984,151160,4,2 ,15,7479,675448,1,1 ,29,14984,151168,5,2 ,15,7480,675456,1,1 ,20,18232,7491202,316,0 ,20,17537,5918338,864,0 ,17,923,9588356,32,0 ,17,923,6966916,24,0 ,44,15152,1724036,24,0 ,45,15153,4345476,24,0 ,45,15153,5394052,48,0 ,29,14984,151176,5,2 ,15,7481,675464,1,1 ,29,14984,151184,4,2 ,15,7482,675472,1,1 ,29,14984,151192,4,2 ,15,7483,675480,1,1 ,29,14984,151200,5,2 ,15,7484,675488,1,1 ,29,14984,151208,5,2 ,15,7485,675496,1,1 ,29,14984,151216,4,2 ,15,7486,675504,1,1 ,29,14984,151224,5,2 ,15,7487,675512,1,1 ,29,14984,151232,5,2 ,15,7488,675520,1,1 ,20,21560,16404162,1808,0 ,20,21312,15879874,24,0 ,45,15153,4869828,32,0 ,17,923,6442692,32,0 ,44,15152,2248388,64,0 ,29,14984,151240,5,2 ,15,7489,675528,1,1 ,29,14984,151248,5,2 ,15,7490,675536,1,1 ,29,14984,151256,5,2 ,15,7491,675544,1,1 ,29,14984,151264,4,2 ,15,7492,675552,1,1 ,20,23731,21647074,32,0 ,29,14984,151272,5,2 ,15,7493,675560,1,1 ,29,14984,151280,5,2 ,15,7494,675568,1,1 ,29,14984,151288,5,2 ,15,7495,675576,1,1 ,29,14984,151296,5,2 ,15,7496,675584,1,1 ,17,923,10112772,24,0 ,44,15152,675588,24,0 ,17,923,8015620,24,0 ,17,923,9064196,32,0 ,29,14984,151304,5,2 ,15,7497,675592,1,1 ,29,14984,151312,5,2 ,15,7498,675600,1,1 ,29,14984,151320,5,2 ,15,7499,675608,1,1 ,29,14984,151328,5,2 ,15,7500,675616,1,1 ,29,14984,151336,5,2 ,15,7501,675624,1,1 ,29,14984,151344,5,2 ,15,7502,675632,1,1 ,29,14984,151352,5,2 ,15,7503,675640,1,1 ,29,14984,151360,4,2 ,15,7504,675648,1,1 ,20,23367,20598594,500,0 ,45,15153,4345668,24,0 ,17,923,6967108,24,0 ,44,15152,2772804,24,0 ,44,15152,1724228,24,0 ,44,15152,3821380,24,0 ,29,14984,151368,5,2 ,15,7505,675656,1,1 ,29,14984,151376,5,2 ,15,7506,675664,1,1 ,29,14984,151384,5,2 ,15,7507,675672,1,1 ,29,14984,151392,4,2 ,15,7508,675680,1,1 ,29,14984,151400,5,2 ,15,7509,675688,1,1 ,29,14984,151408,5,2 ,15,7510,675696,1,1 ,29,14984,151416,5,2 ,15,7511,675704,1,1 ,29,14984,151424,5,2 ,15,7512,675712,1,1 ,20,21313,15880066,24,0 ,17,923,9588612,32,0 ,17,923,7491460,32,0 ,44,15152,151428,32,0 ,29,14984,151432,5,2 ,15,7513,675720,1,1 ,29,14984,151440,5,2 ,15,7514,675728,1,1 ,29,14984,151448,5,2 ,15,7515,675736,1,1 ,29,14984,151456,5,2 ,15,7516,675744,1,1 ,29,14984,151464,5,2 ,15,7517,675752,1,1 ,29,14984,151472,5,2 ,15,7518,675760,1,1 ,29,14984,151480,5,2 ,15,7519,675768,1,1 ,29,14984,151488,5,2 ,15,7520,675776,1,1 ,17,923,10112964,56,0 ,17,923,6442948,24,0 ,44,15152,675780,32,0 ,45,15153,4870084,16,0 ,17,923,8015812,24,0 ,29,14984,151496,4,2 ,15,7521,675784,1,1 ,29,14984,151504,5,2 ,15,7522,675792,1,1 ,29,14984,151512,5,2 ,15,7523,675800,1,1 ,29,14984,151520,5,2 ,15,7524,675808,1,1 ,20,23732,21647330,32,0 ,29,14984,151528,4,2 ,15,7525,675816,1,1 ,29,14984,151536,4,2 ,15,7526,675824,1,1 ,29,14984,151544,5,2 ,15,7527,675832,1,1 ,29,14984,151552,5,2 ,15,7528,675840,1,1 ,20,20900,14831618,4620,0 ,20,25371,25841666,844,0 ,17,923,9064452,40,0 ,17,923,6967300,24,0 ,44,15152,2772996,24,0 ,44,15152,1724420,48,0 ,44,15152,3297284,248,0 ,44,15152,3821572,152,0 ,45,15153,4345860,16,0 ,45,15153,5394436,24,0 ,29,14984,151560,5,2 ,15,7529,675848,1,1 ,29,14984,151568,5,2 ,15,7530,675856,1,1 ,29,14984,151576,5,2 ,15,7531,675864,1,1 ,29,14984,151584,5,2 ,15,7532,675872,1,1 ,29,14984,151592,5,2 ,15,7533,675880,1,1 ,29,14984,151600,5,2 ,15,7534,675888,1,1 ,29,14984,151608,5,2 ,15,7535,675896,1,1 ,29,14984,151616,5,2 ,15,7536,675904,1,1 ,20,21314,15880258,24,0 ,17,923,8540228,40,0 ,45,15153,4870212,160,0 ,29,14984,151624,5,2 ,15,7537,675912,1,1 ,29,14984,151632,5,2 ,15,7538,675920,1,1 ,29,14984,151640,5,2 ,15,7539,675928,1,1 ,29,14984,151648,5,2 ,15,7540,675936,1,1 ,20,22302,18501730,268,0 ,29,14984,151656,5,2 ,15,7541,675944,1,1 ,29,14984,151664,5,2 ,15,7542,675952,1,1 ,29,14984,151672,5,2 ,15,7543,675960,1,1 ,29,14984,151680,5,2 ,15,7544,675968,1,1 ,20,20965,15356034,244,0 ,17,923,9588868,40,0 ,17,923,7491716,32,0 ,17,923,6443140,40,0 ,44,15152,151684,32,0 ,45,15153,4345988,24,0 ,17,923,8016004,48,0 ,29,14984,151688,5,2 ,15,7545,675976,1,1 ,29,14984,151696,4,2 ,15,7546,675984,1,1 ,29,14984,151704,5,2 ,15,7547,675992,1,1 ,29,14984,151712,5,2 ,15,7548,676000,1,1 ,29,14984,151720,5,2 ,15,7549,676008,1,1 ,29,14984,151728,4,2 ,15,7550,676016,1,1 ,29,14984,151736,5,2 ,15,7551,676024,1,1 ,29,14984,151744,5,2 ,15,7552,676032,1,1 ,20,20266,12734658,12,0 ,20,26300,28463298,252,0 ,45,15153,5394628,16,0 ,17,923,6967492,48,0 ,44,15152,2773188,24,0 ,44,15152,2248900,48,0 ,44,15152,676036,32,0 ,29,14984,151752,5,2 ,15,7553,676040,1,1 ,29,14984,151760,5,2 ,15,7554,676048,1,1 ,29,14984,151768,5,2 ,15,7555,676056,1,1 ,29,14984,151776,5,2 ,15,7556,676064,1,1 ,20,23733,21647586,64,0 ,20,22062,17977570,2056,0 ,29,14984,151784,5,2 ,15,7557,676072,1,1 ,29,14984,151792,5,2 ,15,7558,676080,1,1 ,29,14984,151800,4,2 ,15,7559,676088,1,1 ,29,14984,151808,5,2 ,15,7560,676096,1,1 ,20,21315,15880450,24,0 ,29,14984,151816,5,2 ,15,7561,676104,1,1 ,29,14984,151824,5,2 ,15,7562,676112,1,1 ,29,14984,151832,5,2 ,15,7563,676120,1,1 ,29,14984,151840,4,2 ,15,7564,676128,1,1 ,20,20267,12734754,2984,0 ,29,14984,151848,5,2 ,15,7565,676136,1,1 ,29,14984,151856,5,2 ,15,7566,676144,1,1 ,29,14984,151864,5,2 ,15,7567,676152,1,1 ,29,14984,151872,4,2 ,15,7568,676160,1,1 ,17,923,9064772,80,0 ,45,15153,4346180,32,0 ,45,15153,5394756,24,0 ,29,14984,151880,5,2 ,15,7569,676168,1,1 ,29,14984,151888,5,2 ,15,7570,676176,1,1 ,29,14984,151896,5,2 ,15,7571,676184,1,1 ,29,14984,151904,5,2 ,15,7572,676192,1,1 ,29,14984,151912,5,2 ,15,7573,676200,1,1 ,29,14984,151920,5,2 ,15,7574,676208,1,1 ,29,14984,151928,5,2 ,15,7575,676216,1,1 ,29,14984,151936,5,2 ,15,7576,676224,1,1 ,17,923,10113412,24,0 ,17,923,7491972,40,0 ,44,15152,2773380,24,0 ,44,15152,1724804,56,0 ,44,15152,151940,16,0 ,17,923,8540548,24,0 ,29,14984,151944,5,2 ,15,7577,676232,1,1 ,29,14984,151952,4,2 ,15,7578,676240,1,1 ,29,14984,151960,5,2 ,15,7579,676248,1,1 ,29,14984,151968,5,2 ,15,7580,676256,1,1 ,29,14984,151976,5,2 ,15,7581,676264,1,1 ,29,14984,151984,5,2 ,15,7582,676272,1,1 ,29,14984,151992,5,2 ,15,7583,676280,1,1 ,29,14984,152000,5,2 ,15,7584,676288,1,1 ,20,21316,15880642,24,0 ,17,923,9589188,32,0 ,17,923,6443460,64,0 ,44,15152,676292,104,0 ,29,14984,152008,5,2 ,15,7585,676296,1,1 ,29,14984,152016,5,2 ,15,7586,676304,1,1 ,29,14984,152024,5,2 ,15,7587,676312,1,1 ,29,14984,152032,5,2 ,15,7588,676320,1,1 ,29,14984,152040,5,2 ,15,7589,676328,1,1 ,29,14984,152048,4,2 ,15,7590,676336,1,1 ,29,14984,152056,5,2 ,15,7591,676344,1,1 ,29,14984,152064,5,2 ,15,7592,676352,1,1 ,20,17764,6443522,140,0 ,17,923,8016388,32,0 ,44,15152,152068,16,0 ,44,15152,1200644,56,0 ,45,15153,5394948,40,0 ,29,14984,152072,5,2 ,15,7593,676360,1,1 ,29,14984,152080,5,2 ,15,7594,676368,1,1 ,29,14984,152088,5,2 ,15,7595,676376,1,1 ,29,14984,152096,5,2 ,15,7596,676384,1,1 ,29,14984,152104,5,2 ,15,7597,676392,1,1 ,29,14984,152112,6,2 ,15,7598,676400,1,1 ,29,14984,152120,6,2 ,15,7599,676408,1,1 ,29,14984,152128,5,2 ,15,7600,676416,1,1 ,17,923,10113604,24,0 ,17,923,6967876,40,0 ,44,15152,2773572,24,0 ,44,15152,2249284,16,0 ,45,15153,4346436,24,0 ,17,923,8540740,24,0 ,29,14984,152136,5,2 ,15,7601,676424,1,1 ,29,14984,152144,5,2 ,15,7602,676432,1,1 ,29,14984,152152,5,2 ,15,7603,676440,1,1 ,29,14984,152160,4,2 ,15,7604,676448,1,1 ,29,14984,152168,5,2 ,15,7605,676456,1,1 ,29,14984,152176,5,2 ,15,7606,676464,1,1 ,29,14984,152184,4,2 ,15,7607,676472,1,1 ,29,14984,152192,4,2 ,15,7608,676480,1,1 ,20,21317,15880834,24,0 ,44,15152,152196,40,0 ,29,14984,152200,4,2 ,15,7609,676488,1,1 ,29,14984,152208,5,2 ,15,7610,676496,1,1 ,29,14984,152216,5,2 ,15,7611,676504,1,1 ,29,14984,152224,4,2 ,15,7612,676512,1,1 ,29,14984,152232,4,2 ,15,7613,676520,1,1 ,29,14984,152240,5,2 ,15,7614,676528,1,1 ,29,14984,152248,5,2 ,15,7615,676536,1,1 ,29,14984,152256,4,2 ,15,7616,676544,1,1 ,17,923,9589444,32,0 ,17,923,7492292,32,0 ,44,15152,2249412,72,0 ,29,14984,152264,5,2 ,15,7617,676552,1,1 ,29,14984,152272,5,2 ,15,7618,676560,1,1 ,29,14984,152280,5,2 ,15,7619,676568,1,1 ,29,14984,152288,5,2 ,15,7620,676576,1,1 ,20,23734,21648098,32,0 ,20,15633,1200866,240,0 ,20,18488,8016610,824,0 ,29,14984,152296,5,2 ,15,7621,676584,1,1 ,29,14984,152304,5,2 ,15,7622,676592,1,1 ,29,14984,152312,4,2 ,15,7623,676600,1,1 ,29,14984,152320,5,2 ,15,7624,676608,1,1 ,20,18038,6968066,12,0 ,20,15376,676610,292,0 ,17,923,10113796,24,0 ,44,15152,2773764,24,0 ,45,15153,4346628,16,0 ,17,923,8016644,40,0 ,17,923,8540932,32,0 ,29,14984,152328,5,2 ,15,7625,676616,1,1 ,29,14984,152336,5,2 ,15,7626,676624,1,1 ,29,14984,152344,5,2 ,15,7627,676632,1,1 ,29,14984,152352,5,2 ,15,7628,676640,1,1 ,29,14984,152360,4,2 ,15,7629,676648,1,1 ,29,14984,152368,4,2 ,15,7630,676656,1,1 ,30,1337,152376,16,5 ,15,7631,676664,1,1 ,30,1069,152384,13,5 ,15,7632,676672,1,1 ,20,21318,15881026,24,0 ,45,15153,5395268,16,0 ,44,15152,1725252,24,0 ,30,1072,152392,16,5 ,15,7633,676680,1,1 ,30,1077,152400,14,5 ,15,7634,676688,1,1 ,30,1117,152408,11,5 ,15,7635,676696,1,1 ,30,290,152416,12,5 ,15,7636,676704,1,1 ,20,18039,6968162,52,0 ,30,1127,152424,13,5 ,15,7637,676712,1,1 ,30,1117,152432,11,5 ,15,7638,676720,1,1 ,30,1117,152440,13,5 ,15,7639,676728,1,1 ,30,1151,152448,16,5 ,15,7640,676736,1,1 ,45,15153,4346756,96,0 ,17,923,6968196,112,0 ,30,1162,152456,16,5 ,15,7641,676744,1,1 ,30,1228,152464,15,5 ,15,7642,676752,1,1 ,30,1256,152472,16,5 ,15,7643,676760,1,1 ,30,109,152480,12,5 ,15,7644,676768,1,1 ,30,1117,152488,13,5 ,15,7645,676776,1,1 ,30,1349,152496,15,5 ,15,7646,676784,1,1 ,30,1117,152504,13,5 ,15,7647,676792,1,1 ,30,1117,152512,13,5 ,15,7648,676800,1,1 ,17,923,10113988,24,0 ,17,923,7492548,40,0 ,17,923,6443972,88,0 ,44,15152,2773956,24,0 ,44,15152,152516,24,0 ,44,15152,1201092,120,0 ,45,15153,5395396,24,0 ,17,923,9065412,88,0 ,17,923,9589700,32,0 ,30,1117,152520,13,5 ,15,7649,676808,1,1 ,30,1117,152528,13,5 ,15,7650,676816,1,1 ,30,687,152536,12,5 ,15,7651,676824,1,1 ,30,1599,152544,16,5 ,15,7652,676832,1,1 ,20,23735,21648354,76,0 ,20,21828,16929762,248,0 ,30,1620,152552,16,5 ,15,7653,676840,1,1 ,30,1958,152560,16,5 ,15,7654,676848,1,1 ,30,1684,152568,15,5 ,15,7655,676856,1,1 ,30,687,152576,12,5 ,15,7656,676864,1,1 ,20,21319,15881218,24,0 ,17,923,8541188,32,0 ,44,15152,1725444,24,0 ,30,1706,152584,13,5 ,15,7657,676872,1,1 ,30,1728,152592,16,5 ,15,7658,676880,1,1 ,30,1733,152600,13,5 ,15,7659,676888,1,1 ,30,1729,152608,13,5 ,15,7660,676896,1,1 ,20,23019,20075554,672,0 ,30,1734,152616,13,5 ,15,7661,676904,1,1 ,30,1735,152624,13,5 ,15,7662,676912,1,1 ,30,1738,152632,16,5 ,15,7663,676920,1,1 ,30,1744,152640,13,5 ,15,7664,676928,1,1 ,20,25934,27415618,372,0 ,17,923,8016964,40,0 ,30,1762,152648,16,5 ,15,7665,676936,1,1 ,30,1729,152656,14,5 ,15,7666,676944,1,1 ,30,687,152664,13,5 ,15,7667,676952,1,1 ,30,1385,152672,15,5 ,15,7668,676960,1,1 ,20,20550,13259874,80,0 ,30,1706,152680,13,5 ,15,7669,676968,1,1 ,30,1805,152688,13,5 ,15,7670,676976,1,1 ,30,1829,152696,13,5 ,15,7671,676984,1,1 ,30,1830,152704,13,5 ,15,7672,676992,1,1 ,17,923,10114180,56,0 ,44,15152,2774148,24,0 ,44,15152,152708,24,0 ,45,15153,5395588,16,0 ,30,1865,152712,12,5 ,15,7673,677000,1,1 ,30,206,152720,13,5 ,15,7674,677008,1,1 ,30,354,152728,13,5 ,15,7675,677016,1,1 ,30,1942,152736,15,5 ,15,7676,677024,1,1 ,30,687,152744,14,5 ,15,7677,677032,1,1 ,30,1127,152752,13,5 ,15,7678,677040,1,1 ,30,109,152760,12,5 ,15,7679,677048,1,1 ,30,2315,152768,14,5 ,15,7680,677056,1,1 ,20,21320,15881410,24,0 ,17,923,9589956,40,0 ,44,15152,1725636,48,0 ,44,15152,3822788,24,0 ,30,2316,152776,14,5 ,15,7681,677064,1,1 ,30,2214,152784,14,5 ,15,7682,677072,1,1 ,30,2317,152792,14,5 ,15,7683,677080,1,1 ,30,2336,152800,13,5 ,15,7684,677088,1,1 ,30,2356,152808,16,5 ,15,7685,677096,1,1 ,30,2358,152816,16,5 ,15,7686,677104,1,1 ,30,2631,152824,13,5 ,15,7687,677112,1,1 ,30,2632,152832,13,5 ,15,7688,677120,1,1 ,20,18040,6968578,268,0 ,17,923,8541444,24,0 ,17,923,7492868,24,0 ,44,15152,2249988,24,0 ,44,15152,677124,32,0 ,45,15153,5395716,40,0 ,30,126,152840,12,5 ,15,7689,677128,1,1 ,30,2684,152848,18,5 ,15,7690,677136,1,1 ,30,2686,152856,16,5 ,15,7691,677144,1,1 ,30,1296,152864,16,5 ,15,7692,677152,1,1 ,30,2691,152872,16,5 ,15,7693,677160,1,1 ,30,2693,152880,13,5 ,15,7694,677168,1,1 ,30,2700,152888,16,5 ,15,7695,677176,1,1 ,30,2712,152896,16,5 ,15,7696,677184,1,1 ,45,15153,4871492,72,0 ,44,15152,2774340,24,0 ,44,15152,152900,24,0 ,30,2720,152904,16,5 ,15,7697,677192,1,1 ,30,2915,152912,16,5 ,15,7698,677200,1,1 ,30,1385,152920,16,5 ,15,7699,677208,1,1 ,30,2737,152928,16,5 ,15,7700,677216,1,1 ,30,2741,152936,16,5 ,15,7701,677224,1,1 ,30,2745,152944,16,5 ,15,7702,677232,1,1 ,30,2754,152952,14,5 ,15,7703,677240,1,1 ,30,2759,152960,14,5 ,15,7704,677248,1,1 ,20,21321,15881602,24,0 ,17,923,8017284,40,0 ,44,15152,3822980,24,0 ,30,2763,152968,14,5 ,15,7705,677256,1,1 ,30,2776,152976,16,5 ,15,7706,677264,1,1 ,30,2779,152984,16,5 ,15,7707,677272,1,1 ,30,1706,152992,13,5 ,15,7708,677280,1,1 ,30,2752,153000,13,5 ,15,7709,677288,1,1 ,30,2241,153008,13,5 ,15,7710,677296,1,1 ,30,2894,153016,16,5 ,15,7711,677304,1,1 ,30,2896,153024,16,5 ,15,7712,677312,1,1 ,17,923,8541636,24,0 ,17,923,7493060,64,0 ,44,15152,2250180,24,0 ,30,2928,153032,16,5 ,15,7713,677320,1,1 ,30,2930,153040,18,5 ,15,7714,677328,1,1 ,30,2932,153048,16,5 ,15,7715,677336,1,1 ,30,2940,153056,16,5 ,15,7716,677344,1,1 ,30,1117,153064,13,5 ,15,7717,677352,1,1 ,30,1117,153072,13,5 ,15,7718,677360,1,1 ,30,2990,153080,16,5 ,15,7719,677368,1,1 ,30,2995,153088,16,5 ,15,7720,677376,1,1 ,20,18961,9065986,12,0 ,20,26129,27940354,388,0 ,17,923,9590276,32,0 ,44,15152,2774532,24,0 ,44,15152,153092,24,0 ,44,15152,677380,40,0 ,30,2241,153096,13,5 ,15,7721,677384,1,1 ,30,1117,153104,13,5 ,15,7722,677392,1,1 ,30,3023,153112,13,5 ,15,7723,677400,1,1 ,30,3045,153120,16,5 ,15,7724,677408,1,1 ,30,3050,153128,16,5 ,15,7725,677416,1,1 ,30,3059,153136,14,5 ,15,7726,677424,1,1 ,30,3061,153144,16,5 ,15,7727,677432,1,1 ,30,3063,153152,16,5 ,15,7728,677440,1,1 ,20,23736,21648962,152,0 ,20,21322,15881794,24,0 ,17,923,10114628,40,0 ,44,15152,1726020,48,0 ,44,15152,3823172,64,0 ,45,15153,5396036,32,0 ,30,3068,153160,14,5 ,15,7729,677448,1,1 ,30,3093,153168,16,5 ,15,7730,677456,1,1 ,30,3095,153176,16,5 ,15,7731,677464,1,1 ,30,3097,153184,16,5 ,15,7732,677472,1,1 ,20,18962,9066082,12,0 ,20,17765,6444642,108,0 ,30,3099,153192,16,5 ,15,7733,677480,1,1 ,30,1127,153200,14,5 ,15,7734,677488,1,1 ,30,109,153208,13,5 ,15,7735,677496,1,1 ,30,3122,153216,14,5 ,15,7736,677504,1,1 ,17,923,9066116,40,0 ,17,923,6444676,48,0 ,44,15152,2250372,192,0 ,45,15153,4347524,24,0 ,17,923,8541828,32,0 ,30,1117,153224,13,5 ,15,7737,677512,1,1 ,30,3134,153232,13,5 ,15,7738,677520,1,1 ,30,3146,153240,16,5 ,15,7739,677528,1,1 ,30,3174,153248,15,5 ,15,7740,677536,1,1 ,20,24187,22697634,148,0 ,30,3175,153256,15,5 ,15,7741,677544,1,1 ,30,3188,153264,18,5 ,15,7742,677552,1,1 ,30,3190,153272,16,5 ,15,7743,677560,1,1 ,30,3191,153280,14,5 ,15,7744,677568,1,1 ,20,18963,9066178,148,0 ,17,923,8017604,40,0 ,44,15152,2774724,24,0 ,44,15152,153284,48,0 ,30,3228,153288,13,5 ,15,7745,677576,1,1 ,30,3196,153296,16,5 ,15,7746,677584,1,1 ,30,3200,153304,13,5 ,15,7747,677592,1,1 ,30,3230,153312,16,5 ,15,7748,677600,1,1 ,20,20551,13260514,12,0 ,30,3244,153320,16,5 ,15,7749,677608,1,1 ,30,3246,153328,16,5 ,15,7750,677616,1,1 ,30,3248,153336,16,5 ,15,7751,677624,1,1 ,30,3250,153344,16,5 ,15,7752,677632,1,1 ,20,21323,15881986,24,0 ,17,923,9590532,40,0 ,17,923,6969092,144,0 ,30,3252,153352,16,5 ,15,7753,677640,1,1 ,30,3254,153360,16,5 ,15,7754,677648,1,1 ,30,3071,153368,16,5 ,15,7755,677656,1,1 ,30,3280,153376,15,5 ,15,7756,677664,1,1 ,20,26415,28989218,148,0 ,30,3378,153384,16,5 ,15,7757,677672,1,1 ,30,3383,153392,16,5 ,15,7758,677680,1,1 ,30,1127,153400,14,5 ,15,7759,677688,1,1 ,30,3379,153408,14,5 ,15,7760,677696,1,1 ,20,20552,13260610,496,0 ,45,15153,5396292,24,0 ,44,15152,677700,40,0 ,45,15153,4347716,16,0 ,30,1127,153416,13,5 ,15,7761,677704,1,1 ,30,1729,153424,13,5 ,15,7762,677712,1,1 ,30,3414,153432,13,5 ,15,7763,677720,1,1 ,30,687,153440,12,5 ,15,7764,677728,1,1 ,30,3465,153448,16,5 ,15,7765,677736,1,1 ,30,3473,153456,13,5 ,15,7766,677744,1,1 ,30,3507,153464,16,5 ,15,7767,677752,1,1 ,30,3520,153472,18,5 ,15,7768,677760,1,1 ,20,24370,23222146,144,0 ,17,923,10114948,32,0 ,44,15152,2774916,24,0 ,44,15152,1202052,24,0 ,45,15153,4872068,32,0 ,17,923,8542084,32,0 ,30,3537,153480,13,5 ,15,7769,677768,1,1 ,30,3547,153488,16,5 ,15,7770,677776,1,1 ,30,3549,153496,16,5 ,15,7771,677784,1,1 ,30,3557,153504,13,5 ,15,7772,677792,1,1 ,30,3560,153512,13,5 ,15,7773,677800,1,1 ,30,3589,153520,14,5 ,15,7774,677808,1,1 ,30,3590,153528,14,5 ,15,7775,677816,1,1 ,30,1729,153536,13,5 ,15,7776,677824,1,1 ,20,21324,15882178,24,0 ,17,923,9066436,32,0 ,17,923,7493572,40,0 ,44,15152,1726404,56,0 ,44,15152,3299268,112,0 ,45,15153,4347844,32,0 ,30,3639,153544,14,5 ,15,7777,677832,1,1 ,30,3641,153552,13,5 ,15,7778,677840,1,1 ,30,3649,153560,13,5 ,15,7779,677848,1,1 ,30,3660,153568,15,5 ,15,7780,677856,1,1 ,30,3661,153576,14,5 ,15,7781,677864,1,1 ,30,3641,153584,13,5 ,15,7782,677872,1,1 ,30,3673,153592,16,5 ,15,7783,677880,1,1 ,30,3676,153600,13,5 ,15,7784,677888,1,1 ,17,923,8017924,40,0 ,17,923,6445060,48,0 ,45,15153,5396484,16,0 ,30,3649,153608,13,5 ,15,7785,677896,1,1 ,30,265,153616,13,5 ,15,7786,677904,1,1 ,30,3719,153624,16,5 ,15,7787,677912,1,1 ,30,3720,153632,13,5 ,15,7788,677920,1,1 ,20,20966,15357986,208,0 ,30,1117,153640,13,5 ,15,7789,677928,1,1 ,30,1117,153648,13,5 ,15,7790,677936,1,1 ,30,3817,153656,15,5 ,15,7791,677944,1,1 ,30,3845,153664,16,5 ,15,7792,677952,1,1 ,17,923,9590852,24,0 ,44,15152,2775108,24,0 ,44,15152,153668,40,0 ,44,15152,1202244,24,0 ,44,15152,3823684,32,0 ,30,3836,153672,16,5 ,15,7793,677960,1,1 ,30,3874,153680,13,5 ,15,7794,677968,1,1 ,30,3880,153688,13,5 ,15,7795,677976,1,1 ,30,3977,153696,13,5 ,15,7796,677984,1,1 ,20,18233,7493730,204,0 ,30,3989,153704,13,5 ,15,7797,677992,1,1 ,30,4117,153712,13,5 ,15,7798,678000,1,1 ,30,1729,153720,14,5 ,15,7799,678008,1,1 ,30,1385,153728,15,5 ,15,7800,678016,1,1 ,20,21325,15882370,24,0 ,17,923,10115204,48,0 ,44,15152,678020,104,0 ,45,15153,4872324,32,0 ,45,15153,5396612,24,0 ,17,923,8542340,48,0 ,30,1706,153736,13,5 ,15,7801,678024,1,1 ,30,687,153744,12,5 ,15,7802,678032,1,1 ,30,687,153752,12,5 ,15,7803,678040,1,1 ,30,4232,153760,16,5 ,15,7804,678048,1,1 ,20,16706,3823778,12,0 ,20,26301,28465314,1044,0 ,30,4234,153768,16,5 ,15,7805,678056,1,1 ,30,4236,153776,18,5 ,15,7806,678064,1,1 ,30,4244,153784,16,5 ,15,7807,678072,1,1 ,30,4248,153792,16,5 ,15,7808,678080,1,1 ,20,22303,18503874,12,0 ,17,923,9066692,48,0 ,45,15153,4348100,24,0 ,30,4251,153800,16,5 ,15,7809,678088,1,1 ,30,4324,153808,16,5 ,15,7810,678096,1,1 ,30,687,153816,12,5 ,15,7811,678104,1,1 ,30,4349,153824,16,5 ,15,7812,678112,1,1 ,30,4351,153832,18,5 ,15,7813,678120,1,1 ,30,1706,153840,13,5 ,15,7814,678128,1,1 ,30,687,153848,12,5 ,15,7815,678136,1,1 ,30,1127,153856,13,5 ,15,7816,678144,1,1 ,20,16707,3823874,132,0 ,17,923,9591044,32,0 ,17,923,7493892,48,0 ,44,15152,2775300,24,0 ,44,15152,1202436,24,0 ,30,109,153864,12,5 ,15,7817,678152,1,1 ,30,4396,153872,13,5 ,15,7818,678160,1,1 ,30,4438,153880,14,5 ,15,7819,678168,1,1 ,30,4440,153888,14,5 ,15,7820,678176,1,1 ,20,22304,18503970,12,0 ,20,16175,2775330,1760,0 ,30,4500,153896,13,5 ,15,7821,678184,1,1 ,30,4501,153904,13,5 ,15,7822,678192,1,1 ,30,687,153912,12,5 ,15,7823,678200,1,1 ,30,4594,153920,16,5 ,15,7824,678208,1,1 ,20,21326,15882562,24,0 ,20,19126,9591106,364,0 ,17,923,8018244,40,0 ,44,15152,3823940,40,0 ,45,15153,5396804,32,0 ,30,4605,153928,16,5 ,15,7825,678216,1,1 ,30,1117,153936,13,5 ,15,7826,678224,1,1 ,30,4645,153944,18,5 ,15,7827,678232,1,1 ,30,4680,153952,14,5 ,15,7828,678240,1,1 ,30,4202,153960,13,5 ,15,7829,678248,1,1 ,30,4826,153968,13,5 ,15,7830,678256,1,1 ,30,109,153976,12,5 ,15,7831,678264,1,1 ,30,4836,153984,13,5 ,15,7832,678272,1,1 ,20,22305,18504066,368,0 ,45,15153,4872580,32,0 ,17,923,6445444,40,0 ,44,15152,1726852,24,0 ,44,15152,153988,56,0 ,45,15153,4348292,32,0 ,30,4202,153992,13,5 ,15,7833,678280,1,1 ,30,5216,154000,16,5 ,15,7834,678288,1,1 ,30,4202,154008,13,5 ,15,7835,678296,1,1 ,30,5261,154016,13,5 ,15,7836,678304,1,1 ,30,3439,154024,13,5 ,15,7837,678312,1,1 ,30,4285,154032,13,5 ,15,7838,678320,1,1 ,30,5283,154040,13,5 ,15,7839,678328,1,1 ,30,5283,154048,13,5 ,15,7840,678336,1,1 ,20,17766,6445506,764,0 ,20,24938,24795586,72,0 ,44,15152,1202628,24,0 ,44,15152,2775492,24,0 ,30,5261,154056,13,5 ,15,7841,678344,1,1 ,30,5261,154064,13,5 ,15,7842,678352,1,1 ,30,3439,154072,13,5 ,15,7843,678360,1,1 ,30,5261,154080,13,5 ,15,7844,678368,1,1 ,30,4438,154088,14,5 ,15,7845,678376,1,1 ,30,4440,154096,14,5 ,15,7846,678384,1,1 ,30,4438,154104,14,5 ,15,7847,678392,1,1 ,30,4440,154112,14,5 ,15,7848,678400,1,1 ,20,21327,15882754,24,0 ,17,923,10115588,32,0 ,17,923,8542724,40,0 ,17,923,9591300,32,0 ,30,5369,154120,14,5 ,15,7849,678408,1,1 ,30,5371,154128,14,5 ,15,7850,678416,1,1 ,30,5432,154136,16,5 ,15,7851,678424,1,1 ,30,3439,154144,13,5 ,15,7852,678432,1,1 ,30,5434,154152,16,5 ,15,7853,678440,1,1 ,30,5478,154160,13,5 ,15,7854,678448,1,1 ,30,4202,154168,13,5 ,15,7855,678456,1,1 ,30,3439,154176,13,5 ,15,7856,678464,1,1 ,17,923,9067076,96,0 ,44,15152,1727044,24,0 ,45,15153,5397060,32,0 ,30,5542,154184,13,5 ,15,7857,678472,1,1 ,30,4202,154192,13,5 ,15,7858,678480,1,1 ,30,4202,154200,13,5 ,15,7859,678488,1,1 ,30,4836,154208,13,5 ,15,7860,678496,1,1 ,20,15634,1202786,152,0 ,30,4202,154216,13,5 ,15,7861,678504,1,1 ,30,4202,154224,13,5 ,15,7862,678512,1,1 ,30,4202,154232,13,5 ,15,7863,678520,1,1 ,30,4202,154240,13,5 ,15,7864,678528,1,1 ,17,923,8018564,96,0 ,17,923,7494276,40,0 ,44,15152,2775684,24,0 ,44,15152,1202820,32,0 ,44,15152,3824260,16,0 ,45,15153,4348548,24,0 ,45,15153,4872836,56,0 ,30,4836,154248,13,5 ,15,7865,678536,1,1 ,30,5478,154256,13,5 ,15,7866,678544,1,1 ,30,5635,154264,13,5 ,15,7867,678552,1,1 ,30,5638,154272,13,5 ,15,7868,678560,1,1 ,30,5542,154280,13,5 ,15,7869,678568,1,1 ,30,4202,154288,13,5 ,15,7870,678576,1,1 ,30,5705,154296,13,5 ,15,7871,678584,1,1 ,30,3649,154304,13,5 ,15,7872,678592,1,1 ,20,21328,15882946,24,0 ,17,923,6445764,24,0 ,30,5804,154312,16,5 ,15,7873,678600,1,1 ,30,5869,154320,16,5 ,15,7874,678608,1,1 ,30,5854,154328,13,5 ,15,7875,678616,1,1 ,30,3134,154336,13,5 ,15,7876,678624,1,1 ,30,4202,154344,13,5 ,15,7877,678632,1,1 ,30,4202,154352,13,5 ,15,7878,678640,1,1 ,30,4386,154360,14,5 ,15,7879,678648,1,1 ,30,4388,154368,14,5 ,15,7880,678656,1,1 ,20,23737,21650178,352,0 ,17,923,10115844,56,0 ,44,15152,1727236,48,0 ,44,15152,3824388,24,0 ,17,923,9591556,40,0 ,30,1706,154376,13,5 ,15,7881,678664,1,1 ,30,5955,154384,14,5 ,15,7882,678672,1,1 ,30,1127,154392,13,5 ,15,7883,678680,1,1 ,30,5966,154400,16,5 ,15,7884,678688,1,1 ,30,5968,154408,16,5 ,15,7885,678696,1,1 ,30,5970,154416,16,5 ,15,7886,678704,1,1 ,30,4202,154424,13,5 ,15,7887,678712,1,1 ,30,5992,154432,16,5 ,15,7888,678720,1,1 ,20,24188,22698818,1476,0 ,17,923,8543044,40,0 ,44,15152,2775876,24,0 ,44,15152,154436,56,0 ,44,15152,3300164,80,0 ,45,15153,4348740,24,0 ,45,15153,5397316,24,0 ,30,6003,154440,16,5 ,15,7889,678728,1,1 ,30,6009,154448,16,5 ,15,7890,678736,1,1 ,30,6032,154456,16,5 ,15,7891,678744,1,1 ,30,4202,154464,13,5 ,15,7892,678752,1,1 ,20,18964,9067362,128,0 ,30,6078,154472,13,5 ,15,7893,678760,1,1 ,30,4765,154480,13,5 ,15,7894,678768,1,1 ,30,4202,154488,13,5 ,15,7895,678776,1,1 ,30,4202,154496,13,5 ,15,7896,678784,1,1 ,20,21329,15883138,24,0 ,44,15152,1203076,24,0 ,17,923,6970244,40,0 ,17,923,6445956,32,0 ,30,4202,154504,13,5 ,15,7897,678792,1,1 ,30,687,154512,12,5 ,15,7898,678800,1,1 ,30,4202,154520,13,5 ,15,7899,678808,1,1 ,30,6264,154528,16,5 ,15,7900,678816,1,1 ,20,21829,16931746,428,0 ,30,6322,154536,16,5 ,15,7901,678824,1,1 ,30,3134,154544,13,5 ,15,7902,678832,1,1 ,30,4202,154552,13,5 ,15,7903,678840,1,1 ,30,4202,154560,13,5 ,15,7904,678848,1,1 ,20,26416,28990402,128,0 ,44,15152,3824580,16,0 ,17,923,7494596,24,0 ,44,15152,678852,16,0 ,30,4202,154568,13,5 ,15,7905,678856,1,1 ,30,4202,154576,13,5 ,15,7906,678864,1,1 ,30,4202,154584,13,5 ,15,7907,678872,1,1 ,30,4285,154592,13,5 ,15,7908,678880,1,1 ,30,4202,154600,13,5 ,15,7909,678888,1,1 ,30,4202,154608,13,5 ,15,7910,678896,1,1 ,30,6405,154616,13,5 ,15,7911,678904,1,1 ,30,5542,154624,13,5 ,15,7912,678912,1,1 ,20,24371,23223298,116,0 ,20,24939,24796162,72,0 ,45,15153,5397508,32,0 ,44,15152,2776068,64,0 ,45,15153,4348932,24,0 ,30,4202,154632,13,5 ,15,7913,678920,1,1 ,30,5542,154640,13,5 ,15,7914,678928,1,1 ,30,4202,154648,13,5 ,15,7915,678936,1,1 ,30,4202,154656,13,5 ,15,7916,678944,1,1 ,20,23961,22174754,64,0 ,20,15377,678946,56,0 ,30,4202,154664,13,5 ,15,7917,678952,1,1 ,30,4318,154672,13,5 ,15,7918,678960,1,1 ,30,4836,154680,13,5 ,15,7919,678968,1,1 ,30,4202,154688,13,5 ,15,7920,678976,1,1 ,20,21330,15883330,276,0 ,17,923,9591876,56,0 ,44,15152,678980,136,0 ,44,15152,1203268,24,0 ,44,15152,3824708,104,0 ,45,15153,4873284,40,0 ,30,6658,154696,16,5 ,15,7921,678984,1,1 ,30,3134,154704,13,5 ,15,7922,678992,1,1 ,30,4836,154712,13,5 ,15,7923,679000,1,1 ,30,5478,154720,13,5 ,15,7924,679008,1,1 ,20,24531,23747682,788,0 ,30,4318,154728,13,5 ,15,7925,679016,1,1 ,30,4202,154736,13,5 ,15,7926,679024,1,1 ,30,6962,154744,16,5 ,15,7927,679032,1,1 ,30,4202,154752,13,5 ,15,7928,679040,1,1 ,17,923,8543364,48,0 ,17,923,7494788,64,0 ,17,923,6446212,32,0 ,44,15152,2251908,176,0 ,44,15152,1727620,56,0 ,30,4202,154760,13,5 ,15,7929,679048,1,1 ,30,4438,154768,14,5 ,15,7930,679056,1,1 ,30,4440,154776,14,5 ,15,7931,679064,1,1 ,30,687,154784,13,5 ,15,7932,679072,1,1 ,30,5955,154792,14,5 ,15,7933,679080,1,1 ,30,3473,154800,13,5 ,15,7934,679088,1,1 ,30,7103,154808,13,5 ,15,7935,679096,1,1 ,30,7103,154816,13,5 ,15,7936,679104,1,1 ,17,923,10116292,24,0 ,17,923,6970564,32,0 ,45,15153,4349124,32,0 ,30,3134,154824,13,5 ,15,7937,679112,1,1 ,30,7103,154832,13,5 ,15,7938,679120,1,1 ,30,5478,154840,13,5 ,15,7939,679128,1,1 ,30,8012,154848,16,5 ,15,7940,679136,1,1 ,30,7275,154856,16,5 ,15,7941,679144,1,1 ,30,7367,154864,18,5 ,15,7942,679152,1,1 ,30,7372,154872,16,5 ,15,7943,679160,1,1 ,30,7464,154880,16,5 ,15,7944,679168,1,1 ,45,15153,5397764,24,0 ,44,15152,154884,40,0 ,44,15152,1203460,168,0 ,30,7457,154888,16,5 ,15,7945,679176,1,1 ,30,7466,154896,16,5 ,15,7946,679184,1,1 ,30,7468,154904,16,5 ,15,7947,679192,1,1 ,30,7472,154912,16,5 ,15,7948,679200,1,1 ,20,16708,3824930,204,0 ,30,7474,154920,16,5 ,15,7949,679208,1,1 ,30,7476,154928,16,5 ,15,7950,679216,1,1 ,30,1706,154936,13,5 ,15,7951,679224,1,1 ,30,7598,154944,16,5 ,15,7952,679232,1,1 ,17,923,9067844,48,0 ,30,7600,154952,16,5 ,15,7953,679240,1,1 ,30,7602,154960,16,5 ,15,7954,679248,1,1 ,30,7607,154968,16,5 ,15,7955,679256,1,1 ,30,687,154976,12,5 ,15,7956,679264,1,1 ,20,18041,6970722,2364,0 ,30,4202,154984,13,5 ,15,7957,679272,1,1 ,30,4202,154992,13,5 ,15,7958,679280,1,1 ,30,7822,155000,13,5 ,15,7959,679288,1,1 ,30,4202,155008,13,5 ,15,7960,679296,1,1 ,20,16986,4349314,280,0 ,17,923,10116484,24,0 ,17,923,6446468,32,0 ,45,15153,4873604,136,0 ,17,923,8019332,40,0 ,30,5478,155016,13,5 ,15,7961,679304,1,1 ,30,7903,155024,13,5 ,15,7962,679312,1,1 ,30,7730,155032,13,5 ,15,7963,679320,1,1 ,30,7910,155040,13,5 ,15,7964,679328,1,1 ,30,7901,155048,13,5 ,15,7965,679336,1,1 ,30,7907,155056,13,5 ,15,7966,679344,1,1 ,30,7745,155064,13,5 ,15,7967,679352,1,1 ,30,7739,155072,13,5 ,15,7968,679360,1,1 ,45,15153,5397956,40,0 ,17,923,6970820,32,0 ,44,15152,3300804,64,0 ,45,15153,4349380,32,0 ,30,7732,155080,13,5 ,15,7969,679368,1,1 ,30,7743,155088,13,5 ,15,7970,679376,1,1 ,30,5635,155096,13,5 ,15,7971,679384,1,1 ,30,5638,155104,13,5 ,15,7972,679392,1,1 ,20,15378,679394,456,0 ,30,5542,155112,13,5 ,15,7973,679400,1,1 ,30,7924,155120,13,5 ,15,7974,679408,1,1 ,30,4765,155128,13,5 ,15,7975,679416,1,1 ,30,4202,155136,13,5 ,15,7976,679424,1,1 ,17,923,9592324,40,0 ,44,15152,2776580,24,0 ,17,923,8543748,32,0 ,30,7924,155144,13,5 ,15,7977,679432,1,1 ,30,4202,155152,13,5 ,15,7978,679440,1,1 ,30,4202,155160,13,5 ,15,7979,679448,1,1 ,30,1117,155168,13,5 ,15,7980,679456,1,1 ,20,23962,22175266,128,0 ,30,3874,155176,13,5 ,15,7981,679464,1,1 ,30,1117,155184,13,5 ,15,7982,679472,1,1 ,30,3874,155192,13,5 ,15,7983,679480,1,1 ,30,5478,155200,13,5 ,15,7984,679488,1,1 ,20,24940,24796738,72,0 ,17,923,10116676,24,0 ,44,15152,1728068,56,0 ,44,15152,155204,24,0 ,30,8170,155208,15,5 ,15,7985,679496,1,1 ,30,4318,155216,13,5 ,15,7986,679504,1,1 ,30,8267,155224,16,5 ,15,7987,679512,1,1 ,30,5478,155232,13,5 ,15,7988,679520,1,1 ,30,5478,155240,13,5 ,15,7989,679528,1,1 ,30,6405,155248,13,5 ,15,7990,679536,1,1 ,30,4202,155256,13,5 ,15,7991,679544,1,1 ,30,4202,155264,13,5 ,15,7992,679552,1,1 ,17,923,6446724,24,0 ,17,923,7495300,24,0 ,30,4836,155272,13,5 ,15,7993,679560,1,1 ,30,4836,155280,13,5 ,15,7994,679568,1,1 ,30,8305,155288,13,5 ,15,7995,679576,1,1 ,30,4202,155296,13,5 ,15,7996,679584,1,1 ,20,20967,15359650,264,0 ,30,1127,155304,13,5 ,15,7997,679592,1,1 ,30,109,155312,12,5 ,15,7998,679600,1,1 ,30,4836,155320,13,5 ,15,7999,679608,1,1 ,30,3473,155328,13,5 ,15,8000,679616,1,1 ,20,18234,7495362,160,0 ,17,923,9068228,88,0 ,17,923,6971076,24,0 ,44,15152,2776772,24,0 ,45,15153,4349636,24,0 ,17,923,8019652,40,0 ,30,4202,155336,13,5 ,15,8001,679624,1,1 ,30,4202,155344,13,5 ,15,8002,679632,1,1 ,30,3280,155352,15,5 ,15,8003,679640,1,1 ,30,687,155360,12,5 ,15,8004,679648,1,1 ,20,23368,20602594,500,0 ,30,4202,155368,13,5 ,15,8005,679656,1,1 ,30,1706,155376,13,5 ,15,8006,679664,1,1 ,30,4202,155384,13,5 ,15,8007,679672,1,1 ,30,8600,155392,13,5 ,15,8008,679680,1,1 ,17,923,10116868,40,0 ,44,15152,155396,40,0 ,45,15153,5398276,16,0 ,17,923,8544004,40,0 ,30,4202,155400,13,5 ,15,8009,679688,1,1 ,30,4285,155408,13,5 ,15,8010,679696,1,1 ,30,1117,155416,13,5 ,15,8011,679704,1,1 ,30,8704,155424,16,5 ,15,8012,679712,1,1 ,20,15635,1204002,44,0 ,30,8716,155432,16,5 ,15,8013,679720,1,1 ,30,4836,155440,13,5 ,15,8014,679728,1,1 ,30,4318,155448,13,5 ,15,8015,679736,1,1 ,30,4836,155456,13,5 ,15,8016,679744,1,1 ,17,923,9592644,48,0 ,17,923,7495492,40,0 ,17,923,6446916,24,0 ,30,8760,155464,16,5 ,15,8017,679752,1,1 ,30,5028,155472,13,5 ,15,8018,679760,1,1 ,30,9230,155480,16,5 ,15,8019,679768,1,1 ,30,9232,155488,16,5 ,15,8020,679776,1,1 ,20,18965,9068386,88,0 ,30,9234,155496,16,5 ,15,8021,679784,1,1 ,30,4202,155504,13,5 ,15,8022,679792,1,1 ,30,9247,155512,16,5 ,15,8023,679800,1,1 ,30,9249,155520,16,5 ,15,8024,679808,1,1 ,45,15153,5398404,32,0 ,17,923,6971268,24,0 ,44,15152,2776964,64,0 ,44,15152,3825540,32,0 ,45,15153,4349828,16,0 ,30,4202,155528,13,5 ,15,8025,679816,1,1 ,30,9304,155536,16,5 ,15,8026,679824,1,1 ,30,9306,155544,16,5 ,15,8027,679832,1,1 ,30,9308,155552,16,5 ,15,8028,679840,1,1 ,20,24372,23224226,24,0 ,20,19996,11165602,320,0 ,30,4202,155560,13,5 ,15,8029,679848,1,1 ,30,9353,155568,16,5 ,15,8030,679856,1,1 ,30,9357,155576,16,5 ,15,8031,679864,1,1 ,30,3134,155584,13,5 ,15,8032,679872,1,1 ,20,26417,28991426,2652,0 ,44,15152,3301316,168,0 ,30,9375,155592,16,5 ,15,8033,679880,1,1 ,30,9375,155600,16,5 ,15,8034,679888,1,1 ,30,9399,155608,16,5 ,15,8035,679896,1,1 ,30,9401,155616,16,5 ,15,8036,679904,1,1 ,20,25935,27418594,104,0 ,30,9404,155624,16,5 ,15,8037,679912,1,1 ,30,9423,155632,13,5 ,15,8038,679920,1,1 ,30,9375,155640,16,5 ,15,8039,679928,1,1 ,30,9375,155648,16,5 ,15,8040,679936,1,1 ,17,923,8019972,56,0 ,17,923,6447108,40,0 ,44,15152,1728516,24,0 ,45,15153,4349956,160,0 ,30,9463,155656,16,5 ,15,8041,679944,1,1 ,30,9375,155664,16,5 ,15,8042,679952,1,1 ,30,9375,155672,16,5 ,15,8043,679960,1,1 ,30,9479,155680,16,5 ,15,8044,679968,1,1 ,30,9482,155688,16,5 ,15,8045,679976,1,1 ,30,9485,155696,16,5 ,15,8046,679984,1,1 ,30,9496,155704,16,5 ,15,8047,679992,1,1 ,30,9505,155712,14,5 ,15,8048,680000,1,1 ,17,923,10117188,32,0 ,17,923,6971460,32,0 ,44,15152,155716,24,0 ,17,923,8544324,24,0 ,30,9507,155720,14,5 ,15,8049,680008,1,1 ,30,9509,155728,14,5 ,15,8050,680016,1,1 ,30,9514,155736,16,5 ,15,8051,680024,1,1 ,30,9515,155744,14,5 ,15,8052,680032,1,1 ,20,24373,23224418,24,0 ,30,9516,155752,13,5 ,15,8053,680040,1,1 ,30,9517,155760,13,5 ,15,8054,680048,1,1 ,30,9518,155768,13,5 ,15,8055,680056,1,1 ,30,9519,155776,13,5 ,15,8056,680064,1,1 ,20,15636,1204354,88,0 ,20,24941,24797314,620,0 ,45,15153,5398660,16,0 ,17,923,7495812,32,0 ,44,15152,680068,40,0 ,44,15152,3825796,72,0 ,30,9521,155784,16,5 ,15,8057,680072,1,1 ,30,9523,155792,16,5 ,15,8058,680080,1,1 ,30,9534,155800,15,5 ,15,8059,680088,1,1 ,30,9534,155808,15,5 ,15,8060,680096,1,1 ,30,9375,155816,16,5 ,15,8061,680104,1,1 ,30,9375,155824,16,5 ,15,8062,680112,1,1 ,30,9601,155832,16,5 ,15,8063,680120,1,1 ,30,9603,155840,16,5 ,15,8064,680128,1,1 ,17,923,9593028,16,0 ,44,15152,1728708,56,0 ,30,9605,155848,16,5 ,15,8065,680136,1,1 ,30,9607,155856,16,5 ,15,8066,680144,1,1 ,30,9609,155864,16,5 ,15,8067,680152,1,1 ,30,9611,155872,16,5 ,15,8068,680160,1,1 ,30,9613,155880,16,5 ,15,8069,680168,1,1 ,30,9615,155888,16,5 ,15,8070,680176,1,1 ,30,9617,155896,16,5 ,15,8071,680184,1,1 ,30,9619,155904,16,5 ,15,8072,680192,1,1 ,20,19708,10641666,592,0 ,17,923,8544516,40,0 ,44,15152,155908,24,0 ,45,15153,5398788,16,0 ,30,9621,155912,16,5 ,15,8073,680200,1,1 ,30,9375,155920,16,5 ,15,8074,680208,1,1 ,30,9375,155928,16,5 ,15,8075,680216,1,1 ,30,9375,155936,16,5 ,15,8076,680224,1,1 ,20,24374,23224610,24,0 ,30,9375,155944,16,5 ,15,8077,680232,1,1 ,30,9375,155952,16,5 ,15,8078,680240,1,1 ,30,9375,155960,16,5 ,15,8079,680248,1,1 ,30,9375,155968,16,5 ,15,8080,680256,1,1 ,17,923,10117444,32,0 ,17,923,6971716,24,0 ,17,923,6447428,32,0 ,17,923,9593156,40,0 ,30,9375,155976,16,5 ,15,8081,680264,1,1 ,30,9697,155984,16,5 ,15,8082,680272,1,1 ,30,9375,155992,16,5 ,15,8083,680280,1,1 ,30,9375,156000,16,5 ,15,8084,680288,1,1 ,30,9375,156008,16,5 ,15,8085,680296,1,1 ,30,9375,156016,16,5 ,15,8086,680304,1,1 ,30,9375,156024,16,5 ,15,8087,680312,1,1 ,30,9733,156032,16,5 ,15,8088,680320,1,1 ,20,16381,3301762,52,0 ,17,923,9068932,80,0 ,17,923,7496068,24,0 ,44,15152,2777476,80,0 ,45,15153,5398916,24,0 ,30,9375,156040,16,5 ,15,8089,680328,1,1 ,30,9375,156048,16,5 ,15,8090,680336,1,1 ,30,9375,156056,16,5 ,15,8091,680344,1,1 ,30,9375,156064,16,5 ,15,8092,680352,1,1 ,30,9375,156072,16,5 ,15,8093,680360,1,1 ,30,9375,156080,16,5 ,15,8094,680368,1,1 ,30,9375,156088,16,5 ,15,8095,680376,1,1 ,30,9375,156096,16,5 ,15,8096,680384,1,1 ,17,923,8020420,24,0 ,44,15152,156100,32,0 ,44,15152,680388,32,0 ,45,15153,4874692,96,0 ,30,9375,156104,16,5 ,15,8097,680392,1,1 ,30,9375,156112,16,5 ,15,8098,680400,1,1 ,30,9375,156120,16,5 ,15,8099,680408,1,1 ,30,9375,156128,16,5 ,15,8100,680416,1,1 ,20,24375,23224802,84,0 ,30,9375,156136,16,5 ,15,8101,680424,1,1 ,30,9375,156144,16,5 ,15,8102,680432,1,1 ,30,9375,156152,16,5 ,15,8103,680440,1,1 ,30,9375,156160,16,5 ,15,8104,680448,1,1 ,44,15152,2253316,24,0 ,17,923,6971908,24,0 ,30,9375,156168,16,5 ,15,8105,680456,1,1 ,30,9375,156176,16,5 ,15,8106,680464,1,1 ,30,9375,156184,16,5 ,15,8107,680472,1,1 ,30,9375,156192,16,5 ,15,8108,680480,1,1 ,20,23963,22176290,108,0 ,20,26130,27943458,164,0 ,20,18966,9069090,152,0 ,30,9375,156200,16,5 ,15,8109,680488,1,1 ,30,9375,156208,16,5 ,15,8110,680496,1,1 ,30,9375,156216,16,5 ,15,8111,680504,1,1 ,30,9375,156224,16,5 ,15,8112,680512,1,1 ,20,25521,26370626,160,0 ,17,923,10117700,48,0 ,17,923,7496260,24,0 ,17,923,6447684,32,0 ,44,15152,1204804,24,0 ,45,15153,5399108,16,0 ,17,923,8544836,24,0 ,30,9375,156232,16,5 ,15,8113,680520,1,1 ,30,9375,156240,16,5 ,15,8114,680528,1,1 ,30,9375,156248,16,5 ,15,8115,680536,1,1 ,30,9375,156256,16,5 ,15,8116,680544,1,1 ,30,9375,156264,16,5 ,15,8117,680552,1,1 ,30,9375,156272,16,5 ,15,8118,680560,1,1 ,30,9375,156280,16,5 ,15,8119,680568,1,1 ,30,9375,156288,16,5 ,15,8120,680576,1,1 ,17,923,9593476,40,0 ,44,15152,1729156,48,0 ,17,923,8020612,32,0 ,30,9375,156296,16,5 ,15,8121,680584,1,1 ,30,9375,156304,16,5 ,15,8122,680592,1,1 ,30,9375,156312,16,5 ,15,8123,680600,1,1 ,30,9375,156320,16,5 ,15,8124,680608,1,1 ,30,9375,156328,16,5 ,15,8125,680616,1,1 ,30,9375,156336,16,5 ,15,8126,680624,1,1 ,30,9375,156344,16,5 ,15,8127,680632,1,1 ,30,9375,156352,16,5 ,15,8128,680640,1,1 ,45,15153,5399236,48,0 ,17,923,6972100,40,0 ,44,15152,2253508,32,0 ,44,15152,156356,24,0 ,44,15152,680644,64,0 ,44,15152,3826372,224,0 ,30,9375,156360,16,5 ,15,8129,680648,1,1 ,30,10069,156368,15,5 ,15,8130,680656,1,1 ,30,9375,156376,16,5 ,15,8131,680664,1,1 ,30,10069,156384,15,5 ,15,8132,680672,1,1 ,30,9375,156392,16,5 ,15,8133,680680,1,1 ,30,10079,156400,16,5 ,15,8134,680688,1,1 ,30,10085,156408,16,5 ,15,8135,680696,1,1 ,30,10087,156416,16,5 ,15,8136,680704,1,1 ,17,923,8545028,24,0 ,17,923,7496452,40,0 ,44,15152,1204996,128,0 ,30,10096,156424,15,5 ,15,8137,680712,1,1 ,30,10108,156432,16,5 ,15,8138,680720,1,1 ,30,10069,156440,15,5 ,15,8139,680728,1,1 ,30,9375,156448,16,5 ,15,8140,680736,1,1 ,20,16382,3302178,80,0 ,20,25936,27419426,188,0 ,30,10069,156456,15,5 ,15,8141,680744,1,1 ,30,9375,156464,16,5 ,15,8142,680752,1,1 ,30,10069,156472,15,5 ,15,8143,680760,1,1 ,30,9375,156480,16,5 ,15,8144,680768,1,1 ,20,15637,1205058,136,0 ,17,923,6447940,24,0 ,30,5055,156488,11,5 ,15,8145,680776,1,1 ,30,10069,156496,15,5 ,15,8146,680784,1,1 ,30,9375,156504,16,5 ,15,8147,680792,1,1 ,30,10069,156512,15,5 ,15,8148,680800,1,1 ,30,9375,156520,16,5 ,15,8149,680808,1,1 ,30,10147,156528,16,5 ,15,8150,680816,1,1 ,30,9375,156536,16,5 ,15,8151,680824,1,1 ,30,10069,156544,15,5 ,15,8152,680832,1,1 ,20,16709,3826562,104,0 ,17,923,8020868,24,0 ,44,15152,156548,32,0 ,30,9375,156552,16,5 ,15,8153,680840,1,1 ,30,10069,156560,15,5 ,15,8154,680848,1,1 ,30,9375,156568,16,5 ,15,8155,680856,1,1 ,30,10069,156576,15,5 ,15,8156,680864,1,1 ,30,9375,156584,16,5 ,15,8157,680872,1,1 ,30,10069,156592,15,5 ,15,8158,680880,1,1 ,30,9375,156600,16,5 ,15,8159,680888,1,1 ,30,10069,156608,15,5 ,15,8160,680896,1,1 ,20,18235,7496642,48,0 ,17,923,10118084,32,0 ,44,15152,2253764,40,0 ,17,923,8545220,48,0 ,17,923,9593796,32,0 ,30,9375,156616,16,5 ,15,8161,680904,1,1 ,30,10069,156624,15,5 ,15,8162,680912,1,1 ,30,9375,156632,16,5 ,15,8163,680920,1,1 ,30,10069,156640,15,5 ,15,8164,680928,1,1 ,20,22719,19555298,488,0 ,30,9375,156648,16,5 ,15,8165,680936,1,1 ,30,9375,156656,16,5 ,15,8166,680944,1,1 ,30,10200,156664,16,5 ,15,8167,680952,1,1 ,30,9375,156672,16,5 ,15,8168,680960,1,1 ,17,923,9069572,80,0 ,17,923,6972420,32,0 ,17,923,6448132,24,0 ,44,15152,2778116,64,0 ,44,15152,1729540,16,0 ,30,10212,156680,13,5 ,15,8169,680968,1,1 ,30,9375,156688,16,5 ,15,8170,680976,1,1 ,30,10212,156696,15,5 ,15,8171,680984,1,1 ,30,9375,156704,16,5 ,15,8172,680992,1,1 ,30,9375,156712,16,5 ,15,8173,681000,1,1 ,30,9375,156720,16,5 ,15,8174,681008,1,1 ,30,9375,156728,16,5 ,15,8175,681016,1,1 ,30,10212,156736,15,5 ,15,8176,681024,1,1 ,17,923,8021060,32,0 ,17,923,7496772,40,0 ,45,15153,5399620,24,0 ,30,9375,156744,16,5 ,15,8177,681032,1,1 ,30,9375,156752,16,5 ,15,8178,681040,1,1 ,30,9375,156760,16,5 ,15,8179,681048,1,1 ,30,1117,156768,13,5 ,15,8180,681056,1,1 ,30,1706,156776,13,5 ,15,8181,681064,1,1 ,30,1706,156784,13,5 ,15,8182,681072,1,1 ,30,4836,156792,13,5 ,15,8183,681080,1,1 ,30,4285,156800,13,5 ,15,8184,681088,1,1 ,20,24376,23225474,704,0 ,44,15152,156804,32,0 ,44,15152,1729668,56,0 ,30,1117,156808,13,5 ,15,8185,681096,1,1 ,30,1117,156816,13,5 ,15,8186,681104,1,1 ,30,5047,156824,16,5 ,15,8187,681112,1,1 ,30,10358,156832,18,5 ,15,8188,681120,1,1 ,20,19127,9594018,2220,0 ,30,5126,156840,16,5 ,15,8189,681128,1,1 ,30,10372,156848,16,5 ,15,8190,681136,1,1 ,30,10368,156856,16,5 ,15,8191,681144,1,1 ,30,10377,156864,16,5 ,15,8192,681152,1,1 ,17,923,10118340,88,0 ,17,923,6448324,24,0 ,44,15152,681156,24,0 ,45,15153,4875460,160,0 ,17,923,9594052,32,0 ,30,10383,156872,15,5 ,15,8193,681160,1,1 ,30,10386,156880,13,5 ,15,8194,681168,1,1 ,30,10389,156888,13,5 ,15,8195,681176,1,1 ,30,10392,156896,11,5 ,15,8196,681184,1,1 ,20,21331,15885538,364,0 ,30,10396,156904,16,5 ,15,8197,681192,1,1 ,30,10398,156912,18,5 ,15,8198,681200,1,1 ,30,10399,156920,13,5 ,15,8199,681208,1,1 ,30,10400,156928,13,5 ,15,8200,681216,1,1 ,20,22306,18507010,144,0 ,45,15153,5399812,24,0 ,17,923,6972676,24,0 ,44,15152,2254084,88,0 ,44,15152,3302660,32,0 ,45,15153,4351236,16,0 ,30,10402,156936,18,5 ,15,8201,681224,1,1 ,30,10403,156944,13,5 ,15,8202,681232,1,1 ,30,687,156952,12,5 ,15,8203,681240,1,1 ,30,687,156960,10,5 ,15,8204,681248,1,1 ,30,1706,156968,15,5 ,15,8205,681256,1,1 ,30,290,156976,14,5 ,15,8206,681264,1,1 ,30,5055,156984,11,5 ,15,8207,681272,1,1 ,30,1117,156992,13,5 ,15,8208,681280,1,1 ,20,18236,7497026,216,0 ,17,923,8545604,24,0 ,17,923,8021316,32,0 ,30,3134,157000,13,5 ,15,8209,681288,1,1 ,30,1117,157008,13,5 ,15,8210,681296,1,1 ,30,687,157016,10,5 ,15,8211,681304,1,1 ,30,1706,157024,11,5 ,15,8212,681312,1,1 ,30,687,157032,12,5 ,15,8213,681320,1,1 ,30,10567,157040,16,5 ,15,8214,681328,1,1 ,30,10569,157048,16,5 ,15,8215,681336,1,1 ,30,10571,157056,16,5 ,15,8216,681344,1,1 ,20,23964,22177154,48,0 ,20,20755,13788546,120,0 ,45,15153,4351364,24,0 ,17,923,7497092,40,0 ,17,923,6448516,24,0 ,44,15152,157060,24,0 ,44,15152,681348,112,0 ,30,10573,157064,16,5 ,15,8217,681352,1,1 ,30,687,157072,12,5 ,15,8218,681360,1,1 ,30,1117,157080,13,5 ,15,8219,681368,1,1 ,30,1117,157088,13,5 ,15,8220,681376,1,1 ,20,16383,3302818,76,0 ,30,10603,157096,16,5 ,15,8221,681384,1,1 ,30,10622,157104,14,5 ,15,8222,681392,1,1 ,30,10618,157112,16,5 ,15,8223,681400,1,1 ,30,10612,157120,16,5 ,15,8224,681408,1,1 ,17,923,9594308,24,0 ,17,923,6972868,24,0 ,45,15153,5400004,32,0 ,30,10623,157128,13,5 ,15,8225,681416,1,1 ,30,10625,157136,14,5 ,15,8226,681424,1,1 ,30,10627,157144,13,5 ,15,8227,681432,1,1 ,30,10635,157152,16,5 ,15,8228,681440,1,1 ,30,10641,157160,16,5 ,15,8229,681448,1,1 ,30,10674,157168,16,5 ,15,8230,681456,1,1 ,30,10701,157176,18,5 ,15,8231,681464,1,1 ,30,10702,157184,13,5 ,15,8232,681472,1,1 ,20,23738,21652994,220,0 ,17,923,8545796,24,0 ,44,15152,2778628,24,0 ,44,15152,3302916,24,0 ,30,1117,157192,13,5 ,15,8233,681480,1,1 ,30,687,157200,12,5 ,15,8234,681488,1,1 ,30,10743,157208,16,5 ,15,8235,681496,1,1 ,30,4202,157216,13,5 ,15,8236,681504,1,1 ,30,4318,157224,13,5 ,15,8237,681512,1,1 ,30,4202,157232,13,5 ,15,8238,681520,1,1 ,30,3473,157240,13,5 ,15,8239,681528,1,1 ,30,10834,157248,16,5 ,15,8240,681536,1,1 ,20,16987,4351554,124,0 ,17,923,8021572,24,0 ,17,923,6448708,32,0 ,44,15152,1730116,48,0 ,44,15152,157252,40,0 ,45,15153,4351556,64,0 ,30,4202,157256,13,5 ,15,8241,681544,1,1 ,30,4202,157264,13,5 ,15,8242,681552,1,1 ,30,10903,157272,16,5 ,15,8243,681560,1,1 ,30,10905,157280,16,5 ,15,8244,681568,1,1 ,30,10907,157288,16,5 ,15,8245,681576,1,1 ,30,10909,157296,16,5 ,15,8246,681584,1,1 ,30,4202,157304,13,5 ,15,8247,681592,1,1 ,30,484,157312,12,5 ,15,8248,681600,1,1 ,17,923,9594500,24,0 ,17,923,6973060,24,0 ,17,923,9070212,16,0 ,30,4202,157320,13,5 ,15,8249,681608,1,1 ,30,10998,157328,16,5 ,15,8250,681616,1,1 ,30,4202,157336,13,5 ,15,8251,681624,1,1 ,30,3473,157344,13,5 ,15,8252,681632,1,1 ,30,11049,157352,16,5 ,15,8253,681640,1,1 ,30,11052,157360,13,5 ,15,8254,681648,1,1 ,30,11062,157368,16,5 ,15,8255,681656,1,1 ,30,11088,157376,16,5 ,15,8256,681664,1,1 ,20,20553,13264578,140,0 ,20,16710,3827394,64,0 ,17,923,8545988,32,0 ,17,923,7497412,40,0 ,44,15152,2778820,32,0 ,44,15152,3303108,24,0 ,45,15153,5400260,48,0 ,30,11098,157384,16,5 ,15,8257,681672,1,1 ,30,11094,157392,16,5 ,15,8258,681680,1,1 ,30,11100,157400,16,5 ,15,8259,681688,1,1 ,30,11102,157408,16,5 ,15,8260,681696,1,1 ,20,20968,15361762,12,0 ,20,18967,9070306,12,0 ,30,11104,157416,16,5 ,15,8261,681704,1,1 ,30,11110,157424,16,5 ,15,8262,681712,1,1 ,30,11127,157432,16,5 ,15,8263,681720,1,1 ,30,11132,157440,14,5 ,15,8264,681728,1,1 ,20,23965,22177538,92,0 ,17,923,9070340,32,0 ,44,15152,1206020,56,0 ,17,923,8021764,64,0 ,30,11139,157448,16,5 ,15,8265,681736,1,1 ,30,11157,157456,16,5 ,15,8266,681744,1,1 ,30,11160,157464,13,5 ,15,8267,681752,1,1 ,30,7607,157472,16,5 ,15,8268,681760,1,1 ,30,11172,157480,16,5 ,15,8269,681768,1,1 ,30,11167,157488,16,5 ,15,8270,681776,1,1 ,30,7607,157496,16,5 ,15,8271,681784,1,1 ,30,11271,157504,16,5 ,15,8272,681792,1,1 ,20,20969,15361858,52,0 ,20,26131,27944770,80,0 ,20,25522,26371906,244,0 ,20,18968,9070402,560,0 ,17,923,9594692,32,0 ,17,923,6973252,56,0 ,17,923,6448964,24,0 ,30,109,157512,14,5 ,15,8273,681800,1,1 ,30,11398,157520,15,5 ,15,8274,681808,1,1 ,30,6748,157528,16,5 ,15,8275,681816,1,1 ,30,11447,157536,16,5 ,15,8276,681824,1,1 ,30,11431,157544,15,5 ,15,8277,681832,1,1 ,30,11431,157552,15,5 ,15,8278,681840,1,1 ,30,11431,157560,15,5 ,15,8279,681848,1,1 ,30,2797,157568,16,5 ,15,8280,681856,1,1 ,20,15638,1206146,512,0 ,17,923,10119044,32,0 ,44,15152,157572,88,0 ,44,15152,3303300,24,0 ,30,11452,157576,16,5 ,15,8281,681864,1,1 ,30,2797,157584,16,5 ,15,8282,681872,1,1 ,30,11480,157592,13,5 ,15,8283,681880,1,1 ,30,11481,157600,13,5 ,15,8284,681888,1,1 ,30,1987,157608,16,5 ,15,8285,681896,1,1 ,30,3439,157616,13,5 ,15,8286,681904,1,1 ,30,11546,157624,16,5 ,15,8287,681912,1,1 ,30,3134,157632,13,5 ,15,8288,681920,1,1 ,17,923,8546244,40,0 ,44,15152,2779076,64,0 ,44,15152,2254788,192,0 ,44,15152,1730500,48,0 ,30,11605,157640,16,5 ,15,8289,681928,1,1 ,30,4202,157648,13,5 ,15,8290,681936,1,1 ,30,4202,157656,13,5 ,15,8291,681944,1,1 ,30,4202,157664,13,5 ,15,8292,681952,1,1 ,30,11687,157672,15,5 ,15,8293,681960,1,1 ,30,11779,157680,16,5 ,15,8294,681968,1,1 ,30,11781,157688,16,5 ,15,8295,681976,1,1 ,30,11783,157696,16,5 ,15,8296,681984,1,1 ,20,16384,3303426,76,0 ,17,923,9070596,32,0 ,17,923,7497732,40,0 ,17,923,6449156,24,0 ,30,11785,157704,16,5 ,15,8297,681992,1,1 ,30,11787,157712,16,5 ,15,8298,682000,1,1 ,30,11789,157720,16,5 ,15,8299,682008,1,1 ,30,11791,157728,16,5 ,15,8300,682016,1,1 ,30,11793,157736,16,5 ,15,8301,682024,1,1 ,30,11805,157744,16,5 ,15,8302,682032,1,1 ,30,11807,157752,16,5 ,15,8303,682040,1,1 ,30,11810,157760,13,5 ,15,8304,682048,1,1 ,20,24720,24275010,12,0 ,17,923,9594948,32,0 ,44,15152,3303492,24,0 ,45,15153,4352068,24,0 ,45,15153,5400644,48,0 ,30,11812,157768,15,5 ,15,8305,682056,1,1 ,30,5028,157776,13,5 ,15,8306,682064,1,1 ,30,126,157784,14,5 ,15,8307,682072,1,1 ,30,11814,157792,15,5 ,15,8308,682080,1,1 ,30,11816,157800,13,5 ,15,8309,682088,1,1 ,30,11818,157808,13,5 ,15,8310,682096,1,1 ,30,11820,157816,15,5 ,15,8311,682104,1,1 ,30,11818,157824,13,5 ,15,8312,682112,1,1 ,17,923,10119300,72,0 ,30,11820,157832,13,5 ,15,8313,682120,1,1 ,30,11816,157840,13,5 ,15,8314,682128,1,1 ,30,11810,157848,13,5 ,15,8315,682136,1,1 ,30,11840,157856,16,5 ,15,8316,682144,1,1 ,20,24721,24275106,356,0 ,30,11871,157864,16,5 ,15,8317,682152,1,1 ,30,11873,157872,16,5 ,15,8318,682160,1,1 ,30,11875,157880,16,5 ,15,8319,682168,1,1 ,30,11877,157888,16,5 ,15,8320,682176,1,1 ,20,16711,3827906,172,0 ,44,15152,1206468,24,0 ,17,923,6449348,32,0 ,30,11879,157896,16,5 ,15,8321,682184,1,1 ,30,11900,157904,13,5 ,15,8322,682192,1,1 ,30,2779,157912,16,5 ,15,8323,682200,1,1 ,30,1805,157920,13,5 ,15,8324,682208,1,1 ,20,20970,15362274,56,0 ,30,11945,157928,15,5 ,15,8325,682216,1,1 ,30,11953,157936,13,5 ,15,8326,682224,1,1 ,30,7607,157944,16,5 ,15,8327,682232,1,1 ,30,11987,157952,13,5 ,15,8328,682240,1,1 ,20,21830,16935170,192,0 ,20,25937,27420930,352,0 ,17,923,9070852,24,0 ,17,923,6973700,24,0 ,44,15152,682244,24,0 ,44,15152,3303684,40,0 ,45,15153,4352260,80,0 ,17,923,8022276,24,0 ,17,923,8546564,40,0 ,30,14174,157960,11,5 ,15,8329,682248,1,1 ,30,14175,157968,11,5 ,15,8330,682256,1,1 ,30,14176,157976,11,5 ,15,8331,682264,1,1 ,30,14177,157984,11,5 ,15,8332,682272,1,1 ,20,23020,20080930,228,0 ,30,14178,157992,11,5 ,15,8333,682280,1,1 ,30,10350,158000,17,5 ,15,8334,682288,1,1 ,30,436,158008,16,5 ,15,8335,682296,1,1 ,30,14634,158016,17,5 ,15,8336,682304,1,1 ,20,20756,13789506,116,0 ,20,17364,5400898,12,0 ,17,923,9595204,40,0 ,17,923,7498052,48,0 ,44,15152,1730884,56,0 ,30,14635,158024,12,5 ,15,8337,682312,1,1 ,30,14637,158032,17,5 ,15,8338,682320,1,1 ,30,14639,158040,17,5 ,15,8339,682328,1,1 ,30,14640,158048,14,5 ,15,8340,682336,1,1 ,30,14642,158056,17,5 ,15,8341,682344,1,1 ,30,14644,158064,17,5 ,15,8342,682352,1,1 ,30,14646,158072,17,5 ,15,8343,682360,1,1 ,30,14648,158080,18,5 ,15,8344,682368,1,1 ,20,22307,18508162,268,0 ,20,17538,5925250,3272,0 ,44,15152,1206660,24,0 ,30,14650,158088,19,5 ,15,8345,682376,1,1 ,30,14704,158096,13,5 ,15,8346,682384,1,1 ,30,14706,158104,14,5 ,15,8347,682392,1,1 ,30,14754,158112,19,5 ,15,8348,682400,1,1 ,20,19997,11168162,368,0 ,20,17365,5400994,12,0 ,30,14868,158120,12,5 ,15,8349,682408,1,1 ,30,14805,158128,12,5 ,15,8350,682416,1,1 ,30,14841,158136,12,5 ,15,8351,682424,1,1 ,30,14888,158144,12,5 ,15,8352,682432,1,1 ,20,26132,27945410,132,0 ,17,923,9071044,24,0 ,17,923,6973892,32,0 ,17,923,6449604,48,0 ,44,15152,2779588,32,0 ,44,15152,682436,16,0 ,44,15152,3828164,64,0 ,45,15153,4876740,16,0 ,45,15153,5401028,24,0 ,17,923,8022468,40,0 ,30,14821,158152,12,5 ,15,8353,682440,1,1 ,30,14891,158160,12,5 ,15,8354,682448,1,1 ,31,1024,158168,8,1 ,15,8355,682456,1,1 ,31,1031,158176,8,1 ,15,8356,682464,1,1 ,20,23966,22178274,108,0 ,20,25158,25324002,1048,0 ,31,1032,158184,7,1 ,15,8357,682472,1,1 ,31,1036,158192,7,1 ,15,8358,682480,1,1 ,31,1041,158200,8,1 ,15,8359,682488,1,1 ,31,1045,158208,7,1 ,15,8360,682496,1,1 ,20,17366,5401090,836,0 ,31,1061,158216,8,1 ,15,8361,682504,1,1 ,31,1065,158224,7,1 ,15,8362,682512,1,1 ,31,301,158232,6,1 ,15,8363,682520,1,1 ,31,1068,158240,7,1 ,15,8364,682528,1,1 ,20,16988,4352546,2044,0 ,31,1070,158248,7,1 ,15,8365,682536,1,1 ,31,1074,158256,8,1 ,15,8366,682544,1,1 ,31,1076,158264,7,1 ,15,8367,682552,1,1 ,31,1080,158272,8,1 ,15,8368,682560,1,1 ,17,923,8546884,32,0 ,44,15152,158276,72,0 ,44,15152,682564,48,0 ,44,15152,1206852,24,0 ,44,15152,3304004,48,0 ,45,15153,4876868,64,0 ,31,1084,158280,7,1 ,15,8369,682568,1,1 ,31,1086,158288,7,1 ,15,8370,682576,1,1 ,31,1089,158296,7,1 ,15,8371,682584,1,1 ,31,1092,158304,7,1 ,15,8372,682592,1,1 ,20,16385,3304034,76,0 ,20,25372,25848418,648,0 ,31,1097,158312,7,1 ,15,8373,682600,1,1 ,31,1119,158320,8,1 ,15,8374,682608,1,1 ,31,1128,158328,8,1 ,15,8375,682616,1,1 ,31,1130,158336,8,1 ,15,8376,682624,1,1 ,20,15229,158338,420,0 ,17,923,9595524,40,0 ,45,15153,5401220,48,0 ,17,923,9071236,40,0 ,31,1131,158344,8,1 ,15,8377,682632,1,1 ,31,1136,158352,8,1 ,15,8378,682640,1,1 ,31,1144,158360,8,1 ,15,8379,682648,1,1 ,31,1145,158368,8,1 ,15,8380,682656,1,1 ,20,20971,15362722,244,0 ,31,1147,158376,8,1 ,15,8381,682664,1,1 ,31,611,158384,7,1 ,15,8382,682672,1,1 ,31,1160,158392,7,1 ,15,8383,682680,1,1 ,31,1178,158400,8,1 ,15,8384,682688,1,1 ,17,923,10119876,80,0 ,17,923,7498436,32,0 ,17,923,6974148,24,0 ,44,15152,2779844,56,0 ,31,1187,158408,8,1 ,15,8385,682696,1,1 ,31,1198,158416,8,1 ,15,8386,682704,1,1 ,31,1211,158424,8,1 ,15,8387,682712,1,1 ,31,1212,158432,8,1 ,15,8388,682720,1,1 ,31,1213,158440,8,1 ,15,8389,682728,1,1 ,31,1234,158448,8,1 ,15,8390,682736,1,1 ,31,1235,158456,8,1 ,15,8391,682744,1,1 ,31,1245,158464,7,1 ,15,8392,682752,1,1 ,17,923,8022788,32,0 ,44,15152,1731332,24,0 ,44,15152,1207044,24,0 ,31,158,158472,6,1 ,15,8393,682760,1,1 ,31,1246,158480,7,1 ,15,8394,682768,1,1 ,31,1250,158488,7,1 ,15,8395,682776,1,1 ,31,1253,158496,7,1 ,15,8396,682784,1,1 ,20,20554,13265698,56,0 ,31,1362,158504,7,1 ,15,8397,682792,1,1 ,31,1371,158512,7,1 ,15,8398,682800,1,1 ,31,1387,158520,7,1 ,15,8399,682808,1,1 ,31,1408,158528,8,1 ,15,8400,682816,1,1 ,17,923,8547140,24,0 ,17,923,6449988,24,0 ,31,1423,158536,7,1 ,15,8401,682824,1,1 ,31,1537,158544,8,1 ,15,8402,682832,1,1 ,31,1593,158552,8,1 ,15,8403,682840,1,1 ,31,1603,158560,8,1 ,15,8404,682848,1,1 ,31,1604,158568,8,1 ,15,8405,682856,1,1 ,31,1605,158576,8,1 ,15,8406,682864,1,1 ,31,1606,158584,8,1 ,15,8407,682872,1,1 ,31,1607,158592,8,1 ,15,8408,682880,1,1 ,45,15153,4352900,16,0 ,17,923,6974340,48,0 ,31,1608,158600,8,1 ,15,8409,682888,1,1 ,31,1609,158608,8,1 ,15,8410,682896,1,1 ,31,1610,158616,8,1 ,15,8411,682904,1,1 ,31,1611,158624,8,1 ,15,8412,682912,1,1 ,31,1612,158632,8,1 ,15,8413,682920,1,1 ,31,1613,158640,8,1 ,15,8414,682928,1,1 ,31,1614,158648,8,1 ,15,8415,682936,1,1 ,31,2628,158656,8,1 ,15,8416,682944,1,1 ,17,923,9595844,32,0 ,17,923,7498692,40,0 ,44,15152,1731524,48,0 ,44,15152,682948,24,0 ,44,15152,1207236,152,0 ,44,15152,3304388,24,0 ,44,15152,3828676,40,0 ,17,923,9071556,24,0 ,31,1622,158664,7,1 ,15,8417,682952,1,1 ,31,1623,158672,8,1 ,15,8418,682960,1,1 ,31,1629,158680,7,1 ,15,8419,682968,1,1 ,31,1643,158688,8,1 ,15,8420,682976,1,1 ,31,1683,158696,7,1 ,15,8421,682984,1,1 ,31,1717,158704,7,1 ,15,8422,682992,1,1 ,31,1719,158712,7,1 ,15,8423,683000,1,1 ,31,1724,158720,7,1 ,15,8424,683008,1,1 ,20,18237,7498754,96,0 ,17,923,8547332,72,0 ,17,923,6450180,24,0 ,45,15153,4353028,24,0 ,45,15153,5401604,16,0 ,17,923,8023044,40,0 ,31,277,158728,6,1 ,15,8425,683016,1,1 ,31,1726,158736,7,1 ,15,8426,683024,1,1 ,31,1736,158744,7,1 ,15,8427,683032,1,1 ,31,1772,158752,8,1 ,15,8428,683040,1,1 ,20,15379,683042,12,0 ,31,1786,158760,7,1 ,15,8429,683048,1,1 ,31,1787,158768,7,1 ,15,8430,683056,1,1 ,31,1844,158776,7,1 ,15,8431,683064,1,1 ,31,1846,158784,7,1 ,15,8432,683072,1,1 ,45,15153,4877380,24,0 ,31,1848,158792,7,1 ,15,8433,683080,1,1 ,31,1854,158800,7,1 ,15,8434,683088,1,1 ,31,1864,158808,7,1 ,15,8435,683096,1,1 ,31,1888,158816,8,1 ,15,8436,683104,1,1 ,31,1890,158824,7,1 ,15,8437,683112,1,1 ,31,1985,158832,8,1 ,15,8438,683120,1,1 ,31,2029,158840,8,1 ,15,8439,683128,1,1 ,31,2030,158848,8,1 ,15,8440,683136,1,1 ,20,15380,683138,324,0 ,17,923,9071748,40,0 ,44,15152,2780292,96,0 ,44,15152,158852,40,0 ,44,15152,683140,16,0 ,44,15152,3304580,24,0 ,45,15153,5401732,48,0 ,31,487,158856,7,1 ,15,8441,683144,1,1 ,31,2630,158864,8,1 ,15,8442,683152,1,1 ,31,2682,158872,8,1 ,15,8443,683160,1,1 ,31,2689,158880,8,1 ,15,8444,683168,1,1 ,20,18489,8023202,204,0 ,31,2694,158888,8,1 ,15,8445,683176,1,1 ,31,2696,158896,8,1 ,15,8446,683184,1,1 ,31,2715,158904,8,1 ,15,8447,683192,1,1 ,31,261,158912,6,1 ,15,8448,683200,1,1 ,20,16386,3304642,24,0 ,17,923,9596100,24,0 ,17,923,6450372,24,0 ,45,15153,4353220,16,0 ,31,2718,158920,8,1 ,15,8449,683208,1,1 ,31,2721,158928,8,1 ,15,8450,683216,1,1 ,31,2755,158936,7,1 ,15,8451,683224,1,1 ,31,2883,158944,7,1 ,15,8452,683232,1,1 ,20,23739,21654754,256,0 ,20,20555,13266146,12,0 ,20,20757,13790434,280,0 ,31,2890,158952,7,1 ,15,8453,683240,1,1 ,31,2916,158960,8,1 ,15,8454,683248,1,1 ,31,2923,158968,7,1 ,15,8455,683256,1,1 ,31,2942,158976,7,1 ,15,8456,683264,1,1 ,45,15153,4877572,48,0 ,17,923,7499012,40,0 ,17,923,6974724,40,0 ,44,15152,683268,272,0 ,44,15152,3828996,40,0 ,31,2955,158984,7,1 ,15,8457,683272,1,1 ,31,167,158992,7,1 ,15,8458,683280,1,1 ,31,2958,159000,8,1 ,15,8459,683288,1,1 ,31,2959,159008,8,1 ,15,8460,683296,1,1 ,31,2960,159016,8,1 ,15,8461,683304,1,1 ,31,2961,159024,8,1 ,15,8462,683312,1,1 ,31,2962,159032,8,1 ,15,8463,683320,1,1 ,31,2963,159040,8,1 ,15,8464,683328,1,1 ,20,23967,22179138,856,0 ,20,20556,13266242,7508,0 ,17,923,10120516,72,0 ,44,15152,1731908,24,0 ,44,15152,3304772,48,0 ,45,15153,4353348,16,0 ,17,923,8023364,24,0 ,31,2964,159048,8,1 ,15,8465,683336,1,1 ,31,2965,159056,8,1 ,15,8466,683344,1,1 ,31,2966,159064,8,1 ,15,8467,683352,1,1 ,31,2967,159072,8,1 ,15,8468,683360,1,1 ,31,2968,159080,8,1 ,15,8469,683368,1,1 ,31,2969,159088,8,1 ,15,8470,683376,1,1 ,31,2970,159096,8,1 ,15,8471,683384,1,1 ,31,2971,159104,8,1 ,15,8472,683392,1,1 ,20,16387,3304834,72,0 ,17,923,9596292,40,0 ,17,923,6450564,56,0 ,31,2972,159112,8,1 ,15,8473,683400,1,1 ,31,2973,159120,8,1 ,15,8474,683408,1,1 ,31,2974,159128,8,1 ,15,8475,683416,1,1 ,31,2975,159136,8,1 ,15,8476,683424,1,1 ,20,19399,10120610,12,0 ,31,2976,159144,8,1 ,15,8477,683432,1,1 ,31,2977,159152,8,1 ,15,8478,683440,1,1 ,31,2978,159160,8,1 ,15,8479,683448,1,1 ,31,2979,159168,8,1 ,15,8480,683456,1,1 ,17,923,9072068,24,0 ,44,15152,2256324,176,0 ,44,15152,159172,88,0 ,45,15153,4353476,24,0 ,31,2980,159176,8,1 ,15,8481,683464,1,1 ,31,2981,159184,8,1 ,15,8482,683472,1,1 ,31,2982,159192,8,1 ,15,8483,683480,1,1 ,31,2983,159200,8,1 ,15,8484,683488,1,1 ,20,26133,27946466,276,0 ,31,2984,159208,8,1 ,15,8485,683496,1,1 ,31,2985,159216,8,1 ,15,8486,683504,1,1 ,31,2986,159224,8,1 ,15,8487,683512,1,1 ,31,2987,159232,8,1 ,15,8488,683520,1,1 ,20,19400,10120706,12,0 ,17,923,8023556,32,0 ,44,15152,1732100,48,0 ,45,15153,5402116,56,0 ,31,2988,159240,8,1 ,15,8489,683528,1,1 ,31,3267,159248,8,1 ,15,8490,683536,1,1 ,31,3043,159256,7,1 ,15,8491,683544,1,1 ,31,3047,159264,7,1 ,15,8492,683552,1,1 ,20,16712,3829282,292,0 ,31,3082,159272,8,1 ,15,8493,683560,1,1 ,31,3140,159280,8,1 ,15,8494,683568,1,1 ,31,3152,159288,8,1 ,15,8495,683576,1,1 ,31,526,159296,7,1 ,15,8496,683584,1,1 ,17,923,8547908,112,0 ,17,923,7499332,40,0 ,17,923,6975044,48,0 ,44,15152,3829316,192,0 ,31,3154,159304,8,1 ,15,8497,683592,1,1 ,31,3162,159312,8,1 ,15,8498,683600,1,1 ,31,3193,159320,8,1 ,15,8499,683608,1,1 ,31,3201,159328,8,1 ,15,8500,683616,1,1 ,20,19401,10120802,128,0 ,31,3268,159336,8,1 ,15,8501,683624,1,1 ,31,3271,159344,8,1 ,15,8502,683632,1,1 ,31,3284,159352,8,1 ,15,8503,683640,1,1 ,31,3292,159360,8,1 ,15,8504,683648,1,1 ,20,23369,20606594,24,0 ,17,923,9072260,24,0 ,45,15153,4353668,40,0 ,45,15153,4877956,72,0 ,31,3300,159368,8,1 ,15,8505,683656,1,1 ,31,3344,159376,8,1 ,15,8506,683664,1,1 ,31,3399,159384,8,1 ,15,8507,683672,1,1 ,31,3407,159392,8,1 ,15,8508,683680,1,1 ,31,3421,159400,8,1 ,15,8509,683688,1,1 ,31,3431,159408,8,1 ,15,8510,683696,1,1 ,31,3454,159416,8,1 ,15,8511,683704,1,1 ,31,3462,159424,8,1 ,15,8512,683712,1,1 ,17,923,9596612,32,0 ,44,15152,3305156,16,0 ,31,3496,159432,8,1 ,15,8513,683720,1,1 ,31,3499,159440,8,1 ,15,8514,683728,1,1 ,31,3501,159448,8,1 ,15,8515,683736,1,1 ,31,3518,159456,8,1 ,15,8516,683744,1,1 ,20,25523,26373858,104,0 ,31,3543,159464,8,1 ,15,8517,683752,1,1 ,31,3564,159472,8,1 ,15,8518,683760,1,1 ,31,3575,159480,8,1 ,15,8519,683768,1,1 ,31,3655,159488,7,1 ,15,8520,683776,1,1 ,20,21831,16936706,124,0 ,20,18238,7499522,68,0 ,17,923,8023812,24,0 ,31,3711,159496,8,1 ,15,8521,683784,1,1 ,31,3716,159504,8,1 ,15,8522,683792,1,1 ,31,3734,159512,8,1 ,15,8523,683800,1,1 ,31,3763,159520,8,1 ,15,8524,683808,1,1 ,31,3779,159528,8,1 ,15,8525,683816,1,1 ,31,3794,159536,8,1 ,15,8526,683824,1,1 ,31,3811,159544,8,1 ,15,8527,683832,1,1 ,31,3830,159552,8,1 ,15,8528,683840,1,1 ,20,23370,20606786,496,0 ,17,923,9072452,32,0 ,17,923,6451012,40,0 ,44,15152,3305284,48,0 ,31,3831,159560,8,1 ,15,8529,683848,1,1 ,31,3865,159568,8,1 ,15,8530,683856,1,1 ,31,3878,159576,8,1 ,15,8531,683864,1,1 ,31,3883,159584,8,1 ,15,8532,683872,1,1 ,31,3887,159592,8,1 ,15,8533,683880,1,1 ,31,3915,159600,8,1 ,15,8534,683888,1,1 ,31,3916,159608,8,1 ,15,8535,683896,1,1 ,31,3917,159616,8,1 ,15,8536,683904,1,1 ,17,923,10121092,16,0 ,17,923,7499652,40,0 ,44,15152,2781060,40,0 ,44,15152,1732484,56,0 ,31,3918,159624,8,1 ,15,8537,683912,1,1 ,31,3933,159632,8,1 ,15,8538,683920,1,1 ,31,3935,159640,8,1 ,15,8539,683928,1,1 ,31,3967,159648,8,1 ,15,8540,683936,1,1 ,31,3976,159656,8,1 ,15,8541,683944,1,1 ,31,3988,159664,8,1 ,15,8542,683952,1,1 ,31,3995,159672,8,1 ,15,8543,683960,1,1 ,31,4102,159680,8,1 ,15,8544,683968,1,1 ,20,16388,3305410,200,0 ,17,923,9596868,32,0 ,17,923,6975428,24,0 ,45,15153,4353988,152,0 ,45,15153,5402564,32,0 ,17,923,8024004,24,0 ,31,4116,159688,8,1 ,15,8545,683976,1,1 ,31,4133,159696,7,1 ,15,8546,683984,1,1 ,31,4182,159704,8,1 ,15,8547,683992,1,1 ,31,4220,159712,7,1 ,15,8548,684000,1,1 ,31,4334,159720,8,1 ,15,8549,684008,1,1 ,31,4347,159728,8,1 ,15,8550,684016,1,1 ,31,4360,159736,8,1 ,15,8551,684024,1,1 ,31,4363,159744,8,1 ,15,8552,684032,1,1 ,17,923,10121220,48,0 ,31,4399,159752,8,1 ,15,8553,684040,1,1 ,31,4448,159760,8,1 ,15,8554,684048,1,1 ,31,4488,159768,8,1 ,15,8555,684056,1,1 ,31,4499,159776,8,1 ,15,8556,684064,1,1 ,31,4513,159784,8,1 ,15,8557,684072,1,1 ,31,4516,159792,8,1 ,15,8558,684080,1,1 ,31,4519,159800,8,1 ,15,8559,684088,1,1 ,31,4544,159808,8,1 ,15,8560,684096,1,1 ,20,23021,20082754,64,0 ,20,21332,15888450,360,0 ,17,923,9072708,24,0 ,31,4576,159816,8,1 ,15,8561,684104,1,1 ,31,4706,159824,8,1 ,15,8562,684112,1,1 ,31,4730,159832,8,1 ,15,8563,684120,1,1 ,31,4734,159840,8,1 ,15,8564,684128,1,1 ,31,4741,159848,8,1 ,15,8565,684136,1,1 ,31,4790,159856,8,1 ,15,8566,684144,1,1 ,31,4812,159864,8,1 ,15,8567,684152,1,1 ,31,4830,159872,8,1 ,15,8568,684160,1,1 ,17,923,8024196,24,0 ,17,923,6975620,80,0 ,17,923,6451332,32,0 ,44,15152,159876,32,0 ,44,15152,1208452,112,0 ,31,4860,159880,8,1 ,15,8569,684168,1,1 ,31,4868,159888,8,1 ,15,8570,684176,1,1 ,31,5025,159896,8,1 ,15,8571,684184,1,1 ,31,5027,159904,8,1 ,15,8572,684192,1,1 ,31,5060,159912,8,1 ,15,8573,684200,1,1 ,31,5067,159920,8,1 ,15,8574,684208,1,1 ,31,5131,159928,8,1 ,15,8575,684216,1,1 ,31,5154,159936,8,1 ,15,8576,684224,1,1 ,17,923,9597124,32,0 ,17,923,7499972,48,0 ,44,15152,2781380,48,0 ,44,15152,3305668,136,0 ,45,15153,4878532,64,0 ,45,15153,5402820,40,0 ,31,5167,159944,8,1 ,15,8577,684232,1,1 ,31,5179,159952,8,1 ,15,8578,684240,1,1 ,31,5184,159960,8,1 ,15,8579,684248,1,1 ,31,5231,159968,8,1 ,15,8580,684256,1,1 ,31,5239,159976,8,1 ,15,8581,684264,1,1 ,31,5246,159984,8,1 ,15,8582,684272,1,1 ,31,5251,159992,8,1 ,15,8583,684280,1,1 ,31,5266,160000,8,1 ,15,8584,684288,1,1 ,17,923,9072900,24,0 ,31,5274,160008,8,1 ,15,8585,684296,1,1 ,31,5288,160016,8,1 ,15,8586,684304,1,1 ,31,5299,160024,8,1 ,15,8587,684312,1,1 ,31,5349,160032,8,1 ,15,8588,684320,1,1 ,20,18239,7500066,120,0 ,31,5404,160040,8,1 ,15,8589,684328,1,1 ,31,5427,160048,8,1 ,15,8590,684336,1,1 ,31,5429,160056,8,1 ,15,8591,684344,1,1 ,31,5447,160064,8,1 ,15,8592,684352,1,1 ,17,923,8024388,32,0 ,44,15152,1732932,24,0 ,31,5501,160072,8,1 ,15,8593,684360,1,1 ,31,5532,160080,8,1 ,15,8594,684368,1,1 ,31,5548,160088,8,1 ,15,8595,684376,1,1 ,31,5589,160096,8,1 ,15,8596,684384,1,1 ,31,5593,160104,8,1 ,15,8597,684392,1,1 ,31,5618,160112,8,1 ,15,8598,684400,1,1 ,31,5671,160120,8,1 ,15,8599,684408,1,1 ,31,5697,160128,8,1 ,15,8600,684416,1,1 ,17,923,10121604,16,0 ,17,923,6451588,32,0 ,44,15152,160132,48,0 ,31,5719,160136,8,1 ,15,8601,684424,1,1 ,31,5750,160144,8,1 ,15,8602,684432,1,1 ,31,5758,160152,8,1 ,15,8603,684440,1,1 ,31,5789,160160,8,1 ,15,8604,684448,1,1 ,20,17767,6451618,888,0 ,31,5842,160168,8,1 ,15,8605,684456,1,1 ,31,5858,160176,8,1 ,15,8606,684464,1,1 ,31,5892,160184,8,1 ,15,8607,684472,1,1 ,31,5894,160192,8,1 ,15,8608,684480,1,1 ,17,923,9597380,32,0 ,17,923,8548804,24,0 ,17,923,9073092,48,0 ,31,5907,160200,8,1 ,15,8609,684488,1,1 ,31,5924,160208,8,1 ,15,8610,684496,1,1 ,31,5932,160216,8,1 ,15,8611,684504,1,1 ,31,5962,160224,8,1 ,15,8612,684512,1,1 ,20,22308,18510306,56,0 ,31,5986,160232,8,1 ,15,8613,684520,1,1 ,31,6082,160240,8,1 ,15,8614,684528,1,1 ,31,6110,160248,8,1 ,15,8615,684536,1,1 ,31,6114,160256,8,1 ,15,8616,684544,1,1 ,17,923,10121732,16,0 ,44,15152,1733124,24,0 ,45,15153,5403140,56,0 ,31,6123,160264,8,1 ,15,8617,684552,1,1 ,31,6127,160272,8,1 ,15,8618,684560,1,1 ,31,6136,160280,8,1 ,15,8619,684568,1,1 ,31,6148,160288,8,1 ,15,8620,684576,1,1 ,20,25524,26374690,88,0 ,31,6156,160296,8,1 ,15,8621,684584,1,1 ,31,6157,160304,8,1 ,15,8622,684592,1,1 ,31,6207,160312,8,1 ,15,8623,684600,1,1 ,31,6233,160320,8,1 ,15,8624,684608,1,1 ,20,23600,21131842,588,0 ,20,20972,15364674,12,0 ,20,23022,20083266,236,0 ,17,923,8024644,32,0 ,17,923,7500356,32,0 ,44,15152,2781764,32,0 ,31,6242,160328,8,1 ,15,8625,684616,1,1 ,31,6316,160336,8,1 ,15,8626,684624,1,1 ,31,6327,160344,8,1 ,15,8627,684632,1,1 ,31,6366,160352,8,1 ,15,8628,684640,1,1 ,20,19402,10121826,64,0 ,31,6382,160360,8,1 ,15,8629,684648,1,1 ,31,6394,160368,8,1 ,15,8630,684656,1,1 ,31,6418,160376,8,1 ,15,8631,684664,1,1 ,31,6423,160384,8,1 ,15,8632,684672,1,1 ,17,923,10121860,16,0 ,17,923,6451844,40,0 ,17,923,8548996,32,0 ,31,6430,160392,8,1 ,15,8633,684680,1,1 ,31,6467,160400,8,1 ,15,8634,684688,1,1 ,31,6478,160408,8,1 ,15,8635,684696,1,1 ,31,6481,160416,8,1 ,15,8636,684704,1,1 ,20,20973,15364770,416,0 ,31,6489,160424,8,1 ,15,8637,684712,1,1 ,31,6520,160432,8,1 ,15,8638,684720,1,1 ,31,6538,160440,8,1 ,15,8639,684728,1,1 ,31,6587,160448,8,1 ,15,8640,684736,1,1 ,17,923,9597636,32,0 ,44,15152,1733316,48,0 ,45,15153,4879044,32,0 ,31,6602,160456,8,1 ,15,8641,684744,1,1 ,31,6651,160464,8,1 ,15,8642,684752,1,1 ,31,6660,160472,8,1 ,15,8643,684760,1,1 ,31,6662,160480,8,1 ,15,8644,684768,1,1 ,20,21832,16937698,224,0 ,31,6666,160488,8,1 ,15,8645,684776,1,1 ,31,6673,160496,8,1 ,15,8646,684784,1,1 ,31,6721,160504,8,1 ,15,8647,684792,1,1 ,31,6726,160512,8,1 ,15,8648,684800,1,1 ,20,18490,8024834,80,0 ,17,923,10121988,48,0 ,17,923,6976260,40,0 ,44,15152,160516,80,0 ,31,6729,160520,8,1 ,15,8649,684808,1,1 ,31,6732,160528,8,1 ,15,8650,684816,1,1 ,31,6736,160536,8,1 ,15,8651,684824,1,1 ,31,6741,160544,8,1 ,15,8652,684832,1,1 ,20,22720,19559202,464,0 ,31,6752,160552,8,1 ,15,8653,684840,1,1 ,31,6755,160560,8,1 ,15,8654,684848,1,1 ,31,6758,160568,8,1 ,15,8655,684856,1,1 ,31,6761,160576,8,1 ,15,8656,684864,1,1 ,17,923,9073476,32,0 ,17,923,7500612,40,0 ,44,15152,2782020,40,0 ,44,15152,2257732,24,0 ,17,923,8024900,40,0 ,31,6774,160584,8,1 ,15,8657,684872,1,1 ,31,6777,160592,8,1 ,15,8658,684880,1,1 ,31,6780,160600,8,1 ,15,8659,684888,1,1 ,31,6787,160608,8,1 ,15,8660,684896,1,1 ,31,6791,160616,8,1 ,15,8661,684904,1,1 ,31,6794,160624,8,1 ,15,8662,684912,1,1 ,31,6799,160632,8,1 ,15,8663,684920,1,1 ,31,6802,160640,8,1 ,15,8664,684928,1,1 ,20,19709,10646402,376,0 ,17,923,8549252,96,0 ,31,6806,160648,8,1 ,15,8665,684936,1,1 ,31,6810,160656,8,1 ,15,8666,684944,1,1 ,31,6834,160664,8,1 ,15,8667,684952,1,1 ,31,6905,160672,8,1 ,15,8668,684960,1,1 ,20,22309,18510754,216,0 ,31,6929,160680,8,1 ,15,8669,684968,1,1 ,31,6945,160688,8,1 ,15,8670,684976,1,1 ,31,6957,160696,8,1 ,15,8671,684984,1,1 ,31,6960,160704,8,1 ,15,8672,684992,1,1 ,20,24722,24277954,52,0 ,17,923,9597892,32,0 ,17,923,6452164,32,0 ,45,15153,4879300,48,0 ,45,15153,5403588,104,0 ,31,6987,160712,8,1 ,15,8673,685000,1,1 ,31,7015,160720,8,1 ,15,8674,685008,1,1 ,31,7029,160728,8,1 ,15,8675,685016,1,1 ,31,7062,160736,8,1 ,15,8676,685024,1,1 ,20,24942,24802274,756,0 ,31,7085,160744,8,1 ,15,8677,685032,1,1 ,31,7101,160752,8,1 ,15,8678,685040,1,1 ,31,7115,160760,8,1 ,15,8679,685048,1,1 ,31,7145,160768,8,1 ,15,8680,685056,1,1 ,20,25938,27423746,184,0 ,44,15152,1209348,216,0 ,44,15152,2257924,168,0 ,31,7147,160776,8,1 ,15,8681,685064,1,1 ,31,7152,160784,8,1 ,15,8682,685072,1,1 ,31,7177,160792,8,1 ,15,8683,685080,1,1 ,31,7181,160800,7,1 ,15,8684,685088,1,1 ,31,7198,160808,8,1 ,15,8685,685096,1,1 ,31,7211,160816,8,1 ,15,8686,685104,1,1 ,31,7226,160824,8,1 ,15,8687,685112,1,1 ,31,7239,160832,8,1 ,15,8688,685120,1,1 ,17,923,9073732,32,0 ,17,923,6976580,48,0 ,44,15152,1733700,56,0 ,44,15152,3830852,56,0 ,31,7271,160840,8,1 ,15,8689,685128,1,1 ,31,7334,160848,8,1 ,15,8690,685136,1,1 ,31,7401,160856,8,1 ,15,8691,685144,1,1 ,31,7412,160864,8,1 ,15,8692,685152,1,1 ,20,19403,10122338,64,0 ,31,7426,160872,8,1 ,15,8693,685160,1,1 ,31,7434,160880,8,1 ,15,8694,685168,1,1 ,31,7447,160888,8,1 ,15,8695,685176,1,1 ,31,7455,160896,8,1 ,15,8696,685184,1,1 ,17,923,10122372,48,0 ,17,923,7500932,48,0 ,44,15152,2782340,16,0 ,45,15153,4355204,32,0 ,17,923,8025220,48,0 ,31,7548,160904,8,1 ,15,8697,685192,1,1 ,31,7558,160912,8,1 ,15,8698,685200,1,1 ,31,7566,160920,8,1 ,15,8699,685208,1,1 ,31,7579,160928,8,1 ,15,8700,685216,1,1 ,31,7582,160936,8,1 ,15,8701,685224,1,1 ,31,7587,160944,8,1 ,15,8702,685232,1,1 ,31,7591,160952,8,1 ,15,8703,685240,1,1 ,31,7671,160960,8,1 ,15,8704,685248,1,1 ,17,923,9598148,32,0 ,17,923,6452420,40,0 ,31,7715,160968,8,1 ,15,8705,685256,1,1 ,31,7749,160976,8,1 ,15,8706,685264,1,1 ,31,7809,160984,8,1 ,15,8707,685272,1,1 ,31,7854,160992,8,1 ,15,8708,685280,1,1 ,20,23740,21656802,24,0 ,20,25713,26899682,544,0 ,20,25525,26375394,1848,0 ,20,18240,7501026,228,0 ,31,7933,161000,8,1 ,15,8709,685288,1,1 ,31,7936,161008,8,1 ,15,8710,685296,1,1 ,31,8030,161016,8,1 ,15,8711,685304,1,1 ,31,8033,161024,8,1 ,15,8712,685312,1,1 ,20,24532,23753986,788,0 ,44,15152,3306756,40,0 ,44,15152,2782468,16,0 ,31,8045,161032,8,1 ,15,8713,685320,1,1 ,31,8068,161040,8,1 ,15,8714,685328,1,1 ,31,8082,161048,8,1 ,15,8715,685336,1,1 ,31,8247,161056,8,1 ,15,8716,685344,1,1 ,20,19998,11171106,336,0 ,31,8261,161064,8,1 ,15,8717,685352,1,1 ,31,8326,161072,8,1 ,15,8718,685360,1,1 ,31,8336,161080,8,1 ,15,8719,685368,1,1 ,31,8343,161088,8,1 ,15,8720,685376,1,1 ,17,923,9073988,40,0 ,45,15153,4879684,24,0 ,31,8369,161096,8,1 ,15,8721,685384,1,1 ,31,8378,161104,8,1 ,15,8722,685392,1,1 ,31,8385,161112,8,1 ,15,8723,685400,1,1 ,31,8388,161120,8,1 ,15,8724,685408,1,1 ,20,24723,24278370,100,0 ,31,8444,161128,8,1 ,15,8725,685416,1,1 ,31,8466,161136,8,1 ,15,8726,685424,1,1 ,31,8509,161144,8,1 ,15,8727,685432,1,1 ,31,8554,161152,8,1 ,15,8728,685440,1,1 ,20,18491,8025474,432,0 ,45,15153,4355460,40,0 ,44,15152,2782596,32,0 ,44,15152,161156,24,0 ,44,15152,685444,24,0 ,31,8576,161160,8,1 ,15,8729,685448,1,1 ,31,8641,161168,8,1 ,15,8730,685456,1,1 ,31,8678,161176,8,1 ,15,8731,685464,1,1 ,31,8682,161184,8,1 ,15,8732,685472,1,1 ,20,23741,21656994,24,0 ,20,20758,13792674,52,0 ,31,8720,161192,8,1 ,15,8733,685480,1,1 ,31,8711,161200,8,1 ,15,8734,685488,1,1 ,31,8722,161208,8,1 ,15,8735,685496,1,1 ,31,8725,161216,8,1 ,15,8736,685504,1,1 ,17,923,9598404,24,0 ,17,923,6976964,48,0 ,31,8743,161224,8,1 ,15,8737,685512,1,1 ,31,8756,161232,8,1 ,15,8738,685520,1,1 ,31,8758,161240,8,1 ,15,8739,685528,1,1 ,31,8774,161248,8,1 ,15,8740,685536,1,1 ,31,8920,161256,8,1 ,15,8741,685544,1,1 ,31,9244,161264,8,1 ,15,8742,685552,1,1 ,31,9261,161272,8,1 ,15,8743,685560,1,1 ,31,9268,161280,8,1 ,15,8744,685568,1,1 ,20,16389,3307010,24,0 ,17,923,10122756,24,0 ,17,923,7501316,32,0 ,17,923,6452740,32,0 ,44,15152,1734148,24,0 ,44,15152,3831300,72,0 ,45,15153,4879876,48,0 ,17,923,8025604,40,0 ,31,9288,161288,8,1 ,15,8745,685576,1,1 ,31,9302,161296,8,1 ,15,8746,685584,1,1 ,31,9320,161304,8,1 ,15,8747,685592,1,1 ,31,9322,161312,8,1 ,15,8748,685600,1,1 ,31,9325,161320,8,1 ,15,8749,685608,1,1 ,31,9326,161328,8,1 ,15,8750,685616,1,1 ,31,9327,161336,8,1 ,15,8751,685624,1,1 ,31,10308,161344,8,1 ,15,8752,685632,1,1 ,44,15152,3307076,48,0 ,44,15152,161348,56,0 ,44,15152,685636,64,0 ,31,9334,161352,8,1 ,15,8753,685640,1,1 ,31,9336,161360,8,1 ,15,8754,685648,1,1 ,31,9337,161368,8,1 ,15,8755,685656,1,1 ,31,9338,161376,8,1 ,15,8756,685664,1,1 ,20,23742,21657186,100,0 ,20,19404,10122850,80,0 ,31,9339,161384,8,1 ,15,8757,685672,1,1 ,31,9340,161392,8,1 ,15,8758,685680,1,1 ,31,9341,161400,8,1 ,15,8759,685688,1,1 ,31,9342,161408,8,1 ,15,8760,685696,1,1 ,20,26134,27948674,196,0 ,17,923,9598596,24,0 ,44,15152,2782852,48,0 ,17,923,8550020,40,0 ,17,923,9074308,48,0 ,31,9343,161416,8,1 ,15,8761,685704,1,1 ,31,9344,161424,8,1 ,15,8762,685712,1,1 ,31,9345,161432,8,1 ,15,8763,685720,1,1 ,31,9346,161440,8,1 ,15,8764,685728,1,1 ,20,15381,685730,136,0 ,31,9347,161448,8,1 ,15,8765,685736,1,1 ,31,9348,161456,8,1 ,15,8766,685744,1,1 ,31,9349,161464,8,1 ,15,8767,685752,1,1 ,31,9350,161472,8,1 ,15,8768,685760,1,1 ,20,16390,3307202,144,0 ,17,923,10122948,32,0 ,44,15152,1734340,24,0 ,45,15153,4355780,16,0 ,31,10290,161480,8,1 ,15,8769,685768,1,1 ,31,9368,161488,8,1 ,15,8770,685776,1,1 ,31,9373,161496,8,1 ,15,8771,685784,1,1 ,31,9377,161504,8,1 ,15,8772,685792,1,1 ,31,9392,161512,8,1 ,15,8773,685800,1,1 ,31,9402,161520,8,1 ,15,8774,685808,1,1 ,31,9439,161528,8,1 ,15,8775,685816,1,1 ,31,9456,161536,8,1 ,15,8776,685824,1,1 ,45,15153,5404420,104,0 ,17,923,7501572,32,0 ,17,923,6452996,40,0 ,31,9459,161544,8,1 ,15,8777,685832,1,1 ,31,9468,161552,8,1 ,15,8778,685840,1,1 ,31,9472,161560,8,1 ,15,8779,685848,1,1 ,31,9475,161568,8,1 ,15,8780,685856,1,1 ,31,9493,161576,8,1 ,15,8781,685864,1,1 ,31,9575,161584,8,1 ,15,8782,685872,1,1 ,31,9583,161592,8,1 ,15,8783,685880,1,1 ,31,9590,161600,8,1 ,15,8784,685888,1,1 ,20,20759,13793090,380,0 ,20,16713,3831618,384,0 ,17,923,9598788,32,0 ,17,923,6977348,56,0 ,45,15153,4355908,24,0 ,17,923,8025924,48,0 ,31,9597,161608,8,1 ,15,8785,685896,1,1 ,31,9638,161616,8,1 ,15,8786,685904,1,1 ,31,9649,161624,8,1 ,15,8787,685912,1,1 ,31,9651,161632,8,1 ,15,8788,685920,1,1 ,31,9659,161640,8,1 ,15,8789,685928,1,1 ,31,9663,161648,8,1 ,15,8790,685936,1,1 ,31,9668,161656,8,1 ,15,8791,685944,1,1 ,31,9670,161664,8,1 ,15,8792,685952,1,1 ,20,15639,1210242,236,0 ,45,15153,4880260,40,0 ,44,15152,1734532,48,0 ,31,9677,161672,8,1 ,15,8793,685960,1,1 ,31,9686,161680,8,1 ,15,8794,685968,1,1 ,31,9693,161688,8,1 ,15,8795,685976,1,1 ,31,9701,161696,8,1 ,15,8796,685984,1,1 ,20,15230,161698,176,0 ,31,9705,161704,8,1 ,15,8797,685992,1,1 ,31,9709,161712,8,1 ,15,8798,686000,1,1 ,31,9711,161720,8,1 ,15,8799,686008,1,1 ,31,9717,161728,8,1 ,15,8800,686016,1,1 ,17,923,10123204,24,0 ,44,15152,3307460,48,0 ,17,923,8550340,48,0 ,31,9722,161736,8,1 ,15,8801,686024,1,1 ,31,9727,161744,8,1 ,15,8802,686032,1,1 ,31,9736,161752,8,1 ,15,8803,686040,1,1 ,31,9757,161760,8,1 ,15,8804,686048,1,1 ,31,9767,161768,8,1 ,15,8805,686056,1,1 ,31,9775,161776,8,1 ,15,8806,686064,1,1 ,31,9781,161784,8,1 ,15,8807,686072,1,1 ,31,9788,161792,8,1 ,15,8808,686080,1,1 ,17,923,9074692,40,0 ,17,923,7501828,40,0 ,44,15152,2783236,48,0 ,44,15152,161796,24,0 ,45,15153,4356100,32,0 ,31,9795,161800,8,1 ,15,8809,686088,1,1 ,31,9802,161808,8,1 ,15,8810,686096,1,1 ,31,9809,161816,8,1 ,15,8811,686104,1,1 ,31,9816,161824,8,1 ,15,8812,686112,1,1 ,31,9823,161832,8,1 ,15,8813,686120,1,1 ,31,9830,161840,8,1 ,15,8814,686128,1,1 ,31,9837,161848,8,1 ,15,8815,686136,1,1 ,31,9844,161856,8,1 ,15,8816,686144,1,1 ,17,923,9599044,32,0 ,17,923,6453316,32,0 ,44,15152,686148,40,0 ,44,15152,3831876,56,0 ,31,9851,161864,8,1 ,15,8817,686152,1,1 ,31,9858,161872,8,1 ,15,8818,686160,1,1 ,31,9865,161880,8,1 ,15,8819,686168,1,1 ,31,9872,161888,8,1 ,15,8820,686176,1,1 ,31,9879,161896,8,1 ,15,8821,686184,1,1 ,31,9886,161904,8,1 ,15,8822,686192,1,1 ,31,9893,161912,8,1 ,15,8823,686200,1,1 ,31,9900,161920,8,1 ,15,8824,686208,1,1 ,20,24724,24279170,140,0 ,17,923,10123396,16,0 ,31,9907,161928,8,1 ,15,8825,686216,1,1 ,31,9914,161936,8,1 ,15,8826,686224,1,1 ,31,9921,161944,8,1 ,15,8827,686232,1,1 ,31,9928,161952,8,1 ,15,8828,686240,1,1 ,31,9935,161960,8,1 ,15,8829,686248,1,1 ,31,9942,161968,8,1 ,15,8830,686256,1,1 ,31,9949,161976,8,1 ,15,8831,686264,1,1 ,31,9956,161984,8,1 ,15,8832,686272,1,1 ,20,18969,9074882,12,0 ,17,923,8026308,48,0 ,44,15152,161988,40,0 ,45,15153,4880580,16,0 ,31,9963,161992,8,1 ,15,8833,686280,1,1 ,31,9970,162000,8,1 ,15,8834,686288,1,1 ,31,9977,162008,8,1 ,15,8835,686296,1,1 ,31,9984,162016,8,1 ,15,8836,686304,1,1 ,20,19405,10123490,12,0 ,31,9991,162024,8,1 ,15,8837,686312,1,1 ,31,9998,162032,8,1 ,15,8838,686320,1,1 ,31,10005,162040,8,1 ,15,8839,686328,1,1 ,31,10012,162048,8,1 ,15,8840,686336,1,1 ,17,923,10123524,72,0 ,17,923,6977796,56,0 ,44,15152,1734916,56,0 ,45,15153,4356356,16,0 ,31,10019,162056,8,1 ,15,8841,686344,1,1 ,31,10026,162064,8,1 ,15,8842,686352,1,1 ,31,10033,162072,8,1 ,15,8843,686360,1,1 ,31,10040,162080,8,1 ,15,8844,686368,1,1 ,20,18970,9074978,316,0 ,31,10047,162088,8,1 ,15,8845,686376,1,1 ,31,10054,162096,8,1 ,15,8846,686384,1,1 ,31,10061,162104,8,1 ,15,8847,686392,1,1 ,31,10063,162112,8,1 ,15,8848,686400,1,1 ,20,19406,10123586,12,0 ,20,26302,28473666,216,0 ,17,923,9599300,24,0 ,17,923,7502148,48,0 ,17,923,6453572,32,0 ,44,15152,2259268,216,0 ,44,15152,3307844,56,0 ,45,15153,4880708,16,0 ,17,923,8550724,32,0 ,17,923,9075012,40,0 ,31,10072,162120,8,1 ,15,8849,686408,1,1 ,31,10077,162128,8,1 ,15,8850,686416,1,1 ,31,10082,162136,8,1 ,15,8851,686424,1,1 ,31,10113,162144,8,1 ,15,8852,686432,1,1 ,31,10118,162152,8,1 ,15,8853,686440,1,1 ,31,10123,162160,8,1 ,15,8854,686448,1,1 ,31,10125,162168,8,1 ,15,8855,686456,1,1 ,31,10140,162176,8,1 ,15,8856,686464,1,1 ,20,23743,21657986,448,0 ,45,15153,4356484,104,0 ,44,15152,2783620,56,0 ,44,15152,686468,56,0 ,31,10145,162184,8,1 ,15,8857,686472,1,1 ,31,10155,162192,8,1 ,15,8858,686480,1,1 ,31,10163,162200,8,1 ,15,8859,686488,1,1 ,31,10168,162208,8,1 ,15,8860,686496,1,1 ,20,23023,20085154,124,0 ,20,19407,10123682,1096,0 ,31,10173,162216,8,1 ,15,8861,686504,1,1 ,31,10178,162224,8,1 ,15,8862,686512,1,1 ,31,10183,162232,8,1 ,15,8863,686520,1,1 ,31,10188,162240,8,1 ,15,8864,686528,1,1 ,20,25939,27425218,372,0 ,45,15153,4880836,16,0 ,31,10193,162248,8,1 ,15,8865,686536,1,1 ,31,10198,162256,8,1 ,15,8866,686544,1,1 ,31,10208,162264,8,1 ,15,8867,686552,1,1 ,31,10210,162272,8,1 ,15,8868,686560,1,1 ,20,21833,16939490,108,0 ,31,10217,162280,8,1 ,15,8869,686568,1,1 ,31,10222,162288,8,1 ,15,8870,686576,1,1 ,31,10229,162296,8,1 ,15,8871,686584,1,1 ,31,10233,162304,8,1 ,15,8872,686592,1,1 ,17,923,9599492,32,0 ,44,15152,162308,96,0 ,44,15152,3832324,624,0 ,31,10237,162312,8,1 ,15,8873,686600,1,1 ,31,10244,162320,8,1 ,15,8874,686608,1,1 ,31,10246,162328,8,1 ,15,8875,686616,1,1 ,31,10252,162336,8,1 ,15,8876,686624,1,1 ,31,10256,162344,8,1 ,15,8877,686632,1,1 ,31,10292,162352,8,1 ,15,8878,686640,1,1 ,31,10310,162360,8,1 ,15,8879,686648,1,1 ,31,10324,162368,8,1 ,15,8880,686656,1,1 ,17,923,8550980,32,0 ,17,923,6453828,40,0 ,45,15153,4880964,16,0 ,45,15153,5405252,64,0 ,17,923,8026692,48,0 ,31,10328,162376,8,1 ,15,8881,686664,1,1 ,31,10335,162384,8,1 ,15,8882,686672,1,1 ,31,10352,162392,8,1 ,15,8883,686680,1,1 ,31,10355,162400,8,1 ,15,8884,686688,1,1 ,20,22310,18512482,100,0 ,31,10433,162408,7,1 ,15,8885,686696,1,1 ,31,10436,162416,7,1 ,15,8886,686704,1,1 ,31,10516,162424,8,1 ,15,8887,686712,1,1 ,31,10562,162432,8,1 ,15,8888,686720,1,1 ,20,24377,23231106,60,0 ,17,923,9075332,40,0 ,31,10587,162440,8,1 ,15,8889,686728,1,1 ,31,10593,162448,8,1 ,15,8890,686736,1,1 ,31,10596,162456,8,1 ,15,8891,686744,1,1 ,31,10597,162464,8,1 ,15,8892,686752,1,1 ,31,10598,162472,8,1 ,15,8893,686760,1,1 ,31,10614,162480,8,1 ,15,8894,686768,1,1 ,31,10620,162488,8,1 ,15,8895,686776,1,1 ,31,10697,162496,8,1 ,15,8896,686784,1,1 ,45,15153,4881092,16,0 ,17,923,7502532,40,0 ,17,923,6978244,32,0 ,44,15152,1735364,24,0 ,44,15152,1211076,24,0 ,31,10712,162504,8,1 ,15,8897,686792,1,1 ,31,10718,162512,8,1 ,15,8898,686800,1,1 ,31,10723,162520,8,1 ,15,8899,686808,1,1 ,31,10741,162528,8,1 ,15,8900,686816,1,1 ,20,15382,686818,148,0 ,31,10747,162536,8,1 ,15,8901,686824,1,1 ,31,10769,162544,8,1 ,15,8902,686832,1,1 ,31,10777,162552,8,1 ,15,8903,686840,1,1 ,31,10790,162560,8,1 ,15,8904,686848,1,1 ,17,923,9599748,32,0 ,44,15152,3308292,32,0 ,31,10872,162568,8,1 ,15,8905,686856,1,1 ,31,10880,162576,8,1 ,15,8906,686864,1,1 ,31,10891,162584,8,1 ,15,8907,686872,1,1 ,31,10942,162592,8,1 ,15,8908,686880,1,1 ,31,10970,162600,8,1 ,15,8909,686888,1,1 ,31,10983,162608,8,1 ,15,8910,686896,1,1 ,31,10996,162616,8,1 ,15,8911,686904,1,1 ,31,11009,162624,8,1 ,15,8912,686912,1,1 ,20,16391,3308354,100,0 ,17,923,10124100,24,0 ,44,15152,2784068,24,0 ,44,15152,686916,32,0 ,45,15153,4881220,16,0 ,17,923,8551236,24,0 ,31,11015,162632,8,1 ,15,8913,686920,1,1 ,31,11026,162640,8,1 ,15,8914,686928,1,1 ,31,11039,162648,8,1 ,15,8915,686936,1,1 ,31,11047,162656,8,1 ,15,8916,686944,1,1 ,31,11054,162664,8,1 ,15,8917,686952,1,1 ,31,11060,162672,8,1 ,15,8918,686960,1,1 ,31,11067,162680,8,1 ,15,8919,686968,1,1 ,31,11074,162688,8,1 ,15,8920,686976,1,1 ,20,21333,15891330,292,0 ,44,15152,1211268,32,0 ,17,923,6454148,40,0 ,44,15152,1735556,56,0 ,31,11075,162696,8,1 ,15,8921,686984,1,1 ,31,11076,162704,8,1 ,15,8922,686992,1,1 ,31,11077,162712,8,1 ,15,8923,687000,1,1 ,31,11078,162720,8,1 ,15,8924,687008,1,1 ,31,11079,162728,8,1 ,15,8925,687016,1,1 ,31,11194,162736,8,1 ,15,8926,687024,1,1 ,31,11084,162744,8,1 ,15,8927,687032,1,1 ,31,11086,162752,8,1 ,15,8928,687040,1,1 ,17,923,9075652,48,0 ,17,923,6978500,24,0 ,45,15153,4881348,24,0 ,17,923,8027076,40,0 ,31,11092,162760,8,1 ,15,8929,687048,1,1 ,31,11106,162768,8,1 ,15,8930,687056,1,1 ,31,11108,162776,8,1 ,15,8931,687064,1,1 ,31,11119,162784,8,1 ,15,8932,687072,1,1 ,31,11121,162792,8,1 ,15,8933,687080,1,1 ,31,11137,162800,8,1 ,15,8934,687088,1,1 ,31,11147,162808,8,1 ,15,8935,687096,1,1 ,31,11155,162816,8,1 ,15,8936,687104,1,1 ,20,18241,7502850,36,0 ,17,923,10124292,56,0 ,17,923,7502852,40,0 ,44,15152,2784260,24,0 ,44,15152,3308548,8,0 ,17,923,8551428,40,0 ,17,923,9600004,32,0 ,31,11165,162824,8,1 ,15,8937,687112,1,1 ,31,11170,162832,8,1 ,15,8938,687120,1,1 ,31,11196,162840,8,1 ,15,8939,687128,1,1 ,31,11200,162848,8,1 ,15,8940,687136,1,1 ,31,11201,162856,8,1 ,15,8941,687144,1,1 ,31,11202,162864,8,1 ,15,8942,687152,1,1 ,31,11203,162872,8,1 ,15,8943,687160,1,1 ,31,11204,162880,8,1 ,15,8944,687168,1,1 ,45,15153,5405764,24,0 ,44,15152,687172,24,0 ,44,15152,3308612,40,0 ,31,11214,162888,8,1 ,15,8945,687176,1,1 ,31,11216,162896,8,1 ,15,8946,687184,1,1 ,31,11220,162904,8,1 ,15,8947,687192,1,1 ,31,11231,162912,8,1 ,15,8948,687200,1,1 ,20,24378,23231586,588,0 ,31,11234,162920,8,1 ,15,8949,687208,1,1 ,31,11245,162928,8,1 ,15,8950,687216,1,1 ,31,11250,162936,8,1 ,15,8951,687224,1,1 ,31,11252,162944,8,1 ,15,8952,687232,1,1 ,45,15153,4881540,16,0 ,17,923,6978692,32,0 ,44,15152,1211524,24,0 ,31,11257,162952,8,1 ,15,8953,687240,1,1 ,31,11269,162960,8,1 ,15,8954,687248,1,1 ,31,11284,162968,8,1 ,15,8955,687256,1,1 ,31,11288,162976,8,1 ,15,8956,687264,1,1 ,20,26135,27950242,220,0 ,31,11302,162984,8,1 ,15,8957,687272,1,1 ,31,11312,162992,8,1 ,15,8958,687280,1,1 ,31,11327,163000,8,1 ,15,8959,687288,1,1 ,31,11334,163008,8,1 ,15,8960,687296,1,1 ,45,15153,4357316,24,0 ,17,923,6454468,40,0 ,44,15152,2784452,72,0 ,31,11337,163016,8,1 ,15,8961,687304,1,1 ,31,11340,163024,8,1 ,15,8962,687312,1,1 ,31,11343,163032,8,1 ,15,8963,687320,1,1 ,31,11350,163040,8,1 ,15,8964,687328,1,1 ,20,24725,24280290,496,0 ,31,11358,163048,8,1 ,15,8965,687336,1,1 ,31,11411,163056,8,1 ,15,8966,687344,1,1 ,31,11418,163064,8,1 ,15,8967,687352,1,1 ,31,11422,163072,8,1 ,15,8968,687360,1,1 ,17,923,9600260,32,0 ,44,15152,163076,24,0 ,44,15152,687364,24,0 ,45,15153,4881668,16,0 ,45,15153,5405956,24,0 ,17,923,8027396,40,0 ,31,11436,163080,8,1 ,15,8969,687368,1,1 ,31,11442,163088,8,1 ,15,8970,687376,1,1 ,31,11445,163096,8,1 ,15,8971,687384,1,1 ,31,11462,163104,8,1 ,15,8972,687392,1,1 ,20,18242,7503138,60,0 ,20,15231,163106,176,0 ,31,11464,163112,8,1 ,15,8973,687400,1,1 ,31,11484,163120,8,1 ,15,8974,687408,1,1 ,31,11506,163128,8,1 ,15,8975,687416,1,1 ,31,11512,163136,8,1 ,15,8976,687424,1,1 ,20,21834,16940354,396,0 ,17,923,9076036,40,0 ,17,923,7503172,96,0 ,44,15152,1736004,24,0 ,44,15152,1211716,88,0 ,17,923,8551748,40,0 ,31,11516,163144,8,1 ,15,8977,687432,1,1 ,31,11523,163152,8,1 ,15,8978,687440,1,1 ,31,11527,163160,8,1 ,15,8979,687448,1,1 ,31,11536,163168,8,1 ,15,8980,687456,1,1 ,31,11544,163176,8,1 ,15,8981,687464,1,1 ,31,11553,163184,8,1 ,15,8982,687472,1,1 ,31,11560,163192,8,1 ,15,8983,687480,1,1 ,31,11590,163200,8,1 ,15,8984,687488,1,1 ,20,23024,20086146,700,0 ,20,22311,18513282,268,0 ,45,15153,4881796,16,0 ,17,923,6978948,48,0 ,44,15152,3308932,88,0 ,45,15153,4357508,16,0 ,31,11591,163208,8,1 ,15,8985,687496,1,1 ,31,460,163216,7,1 ,15,8986,687504,1,1 ,31,11617,163224,8,1 ,15,8987,687512,1,1 ,31,11619,163232,8,1 ,15,8988,687520,1,1 ,31,11622,163240,8,1 ,15,8989,687528,1,1 ,31,11627,163248,8,1 ,15,8990,687536,1,1 ,31,11631,163256,8,1 ,15,8991,687544,1,1 ,31,11636,163264,8,1 ,15,8992,687552,1,1 ,17,923,10124740,56,0 ,44,15152,163268,32,0 ,44,15152,687556,48,0 ,45,15153,5406148,32,0 ,31,11639,163272,8,1 ,15,8993,687560,1,1 ,31,11642,163280,8,1 ,15,8994,687568,1,1 ,31,11645,163288,8,1 ,15,8995,687576,1,1 ,31,11648,163296,8,1 ,15,8996,687584,1,1 ,31,11651,163304,8,1 ,15,8997,687592,1,1 ,31,11661,163312,8,1 ,15,8998,687600,1,1 ,31,11664,163320,8,1 ,15,8999,687608,1,1 ,31,11672,163328,8,1 ,15,9000,687616,1,1 ,17,923,9600516,24,0 ,17,923,6454788,32,0 ,44,15152,1736196,48,0 ,45,15153,4357636,16,0 ,45,15153,4881924,72,0 ,31,11676,163336,8,1 ,15,9001,687624,1,1 ,31,11684,163344,8,1 ,15,9002,687632,1,1 ,31,11692,163352,7,1 ,15,9003,687640,1,1 ,31,11694,163360,7,1 ,15,9004,687648,1,1 ,31,11698,163368,8,1 ,15,9005,687656,1,1 ,31,11701,163376,8,1 ,15,9006,687664,1,1 ,31,11703,163384,8,1 ,15,9007,687672,1,1 ,31,11707,163392,8,1 ,15,9008,687680,1,1 ,17,923,8027716,32,0 ,31,11713,163400,8,1 ,15,9009,687688,1,1 ,31,11716,163408,8,1 ,15,9010,687696,1,1 ,31,11717,163416,8,1 ,15,9011,687704,1,1 ,31,11728,163424,8,1 ,15,9012,687712,1,1 ,20,16392,3309154,104,0 ,31,11742,163432,8,1 ,15,9013,687720,1,1 ,31,11743,163440,8,1 ,15,9014,687728,1,1 ,31,11803,163448,8,1 ,15,9015,687736,1,1 ,31,11809,163456,8,1 ,15,9016,687744,1,1 ,17,923,9076356,48,0 ,45,15153,4357764,48,0 ,17,923,8552068,40,0 ,31,11833,163464,8,1 ,15,9017,687752,1,1 ,31,11845,163472,8,1 ,15,9018,687760,1,1 ,31,11849,163480,8,1 ,15,9019,687768,1,1 ,31,11852,163488,8,1 ,15,9020,687776,1,1 ,20,25373,25853602,96,0 ,31,11859,163496,8,1 ,15,9021,687784,1,1 ,31,11866,163504,8,1 ,15,9022,687792,1,1 ,31,11869,163512,8,1 ,15,9023,687800,1,1 ,31,11886,163520,8,1 ,15,9024,687808,1,1 ,20,23371,20610754,924,0 ,17,923,9600708,24,0 ,44,15152,163524,48,0 ,45,15153,5406404,40,0 ,31,11894,163528,8,1 ,15,9025,687816,1,1 ,31,11913,163536,7,1 ,15,9026,687824,1,1 ,31,11970,163544,8,1 ,15,9027,687832,1,1 ,31,11972,163552,8,1 ,15,9028,687840,1,1 ,20,15640,1212130,248,0 ,31,11982,163560,8,1 ,15,9029,687848,1,1 ,31,11986,163568,8,1 ,15,9030,687856,1,1 ,31,11995,163576,8,1 ,15,9031,687864,1,1 ,31,12005,163584,8,1 ,15,9032,687872,1,1 ,20,18243,7503618,76,0 ,44,15152,2785028,64,0 ,17,923,6979332,40,0 ,17,923,6455044,32,0 ,31,13185,163592,8,1 ,15,9033,687880,1,1 ,31,13266,163600,8,1 ,15,9034,687888,1,1 ,31,13355,163608,8,1 ,15,9035,687896,1,1 ,31,13403,163616,8,1 ,15,9036,687904,1,1 ,31,13407,163624,8,1 ,15,9037,687912,1,1 ,31,13411,163632,8,1 ,15,9038,687920,1,1 ,31,13422,163640,8,1 ,15,9039,687928,1,1 ,31,13426,163648,8,1 ,15,9040,687936,1,1 ,20,19710,10649410,12,0 ,17,923,8027972,48,0 ,44,15152,687940,24,0 ,31,13489,163656,8,1 ,15,9041,687944,1,1 ,31,14159,163664,8,1 ,15,9042,687952,1,1 ,31,14315,163672,8,1 ,15,9043,687960,1,1 ,31,14392,163680,8,1 ,15,9044,687968,1,1 ,31,14398,163688,8,1 ,15,9045,687976,1,1 ,31,319,163696,7,1 ,15,9046,687984,1,1 ,31,14609,163704,8,1 ,15,9047,687992,1,1 ,31,14612,163712,8,1 ,15,9048,688000,1,1 ,20,15383,688002,12,0 ,17,923,10125188,24,0 ,44,15152,1736580,48,0 ,17,923,9600900,32,0 ,31,14619,163720,8,1 ,15,9049,688008,1,1 ,31,14629,163728,8,1 ,15,9050,688016,1,1 ,31,14632,163736,8,1 ,15,9051,688024,1,1 ,31,418,163744,7,1 ,15,9052,688032,1,1 ,20,20974,15368098,288,0 ,20,19711,10649506,620,0 ,20,19999,11173794,176,0 ,31,517,163752,6,1 ,15,9053,688040,1,1 ,31,439,163760,7,1 ,15,9054,688048,1,1 ,31,14668,163768,7,1 ,15,9055,688056,1,1 ,31,14669,163776,7,1 ,15,9056,688064,1,1 ,17,923,8552388,32,0 ,31,14673,163784,8,1 ,15,9057,688072,1,1 ,31,14678,163792,8,1 ,15,9058,688080,1,1 ,31,14679,163800,8,1 ,15,9059,688088,1,1 ,31,14684,163808,7,1 ,15,9060,688096,1,1 ,20,15384,688098,596,0 ,31,14689,163816,8,1 ,15,9061,688104,1,1 ,31,14690,163824,8,1 ,15,9062,688112,1,1 ,31,14691,163832,8,1 ,15,9063,688120,1,1 ,31,14692,163840,8,1 ,15,9064,688128,1,1 ,20,26303,28475394,288,0 ,17,923,9076740,40,0 ,17,923,6455300,56,0 ,44,15152,2260996,624,0 ,44,15152,688132,72,0 ,44,15152,1212420,32,0 ,45,15153,4358148,16,0 ,45,15153,5406724,24,0 ,31,14693,163848,8,1 ,15,9065,688136,1,1 ,31,14694,163856,8,1 ,15,9066,688144,1,1 ,31,14695,163864,8,1 ,15,9067,688152,1,1 ,31,14696,163872,8,1 ,15,9068,688160,1,1 ,31,14697,163880,7,1 ,15,9069,688168,1,1 ,32,1537,163888,27,9 ,15,9070,688176,1,1 ,32,1593,163896,26,9 ,15,9071,688184,1,1 ,32,2682,163904,26,9 ,15,9072,688192,1,1 ,17,923,10125380,16,0 ,17,923,7503940,40,0 ,17,923,6979652,144,0 ,44,15152,163908,24,0 ,44,15152,3309636,24,0 ,45,15153,4882500,32,0 ,32,2628,163912,26,9 ,15,9073,688200,1,1 ,32,1985,163920,26,9 ,15,9074,688208,1,1 ,32,2689,163928,26,9 ,15,9075,688216,1,1 ,32,3267,163936,25,9 ,15,9076,688224,1,1 ,32,3047,163944,26,9 ,15,9077,688232,1,1 ,32,3292,163952,26,9 ,15,9078,688240,1,1 ,32,3284,163960,26,9 ,15,9079,688248,1,1 ,32,3300,163968,26,9 ,15,9080,688256,1,1 ,17,923,9601156,32,0 ,45,15153,4358276,16,0 ,32,3421,163976,26,9 ,15,9081,688264,1,1 ,32,3271,163984,26,9 ,15,9082,688272,1,1 ,32,3344,163992,26,9 ,15,9083,688280,1,1 ,32,3407,164000,26,9 ,15,9084,688288,1,1 ,32,3399,164008,26,9 ,15,9085,688296,1,1 ,32,3431,164016,26,9 ,15,9086,688304,1,1 ,32,8678,164024,26,9 ,15,9087,688312,1,1 ,32,3462,164032,26,9 ,15,9088,688320,1,1 ,17,923,10125508,24,0 ,45,15153,5406916,32,0 ,17,923,8028356,48,0 ,17,923,8552644,32,0 ,32,3454,164040,26,9 ,15,9089,688328,1,1 ,32,3496,164048,26,9 ,15,9090,688336,1,1 ,32,3501,164056,26,9 ,15,9091,688344,1,1 ,32,3499,164064,26,9 ,15,9092,688352,1,1 ,32,3518,164072,26,9 ,15,9093,688360,1,1 ,32,3543,164080,26,9 ,15,9094,688368,1,1 ,32,3564,164088,26,9 ,15,9095,688376,1,1 ,32,3711,164096,26,9 ,15,9096,688384,1,1 ,45,15153,4358404,24,0 ,44,15152,2785540,64,0 ,44,15152,1736964,56,0 ,44,15152,164100,24,0 ,44,15152,1212676,40,0 ,44,15152,3309828,32,0 ,32,3716,164104,26,9 ,15,9097,688392,1,1 ,32,3734,164112,26,9 ,15,9098,688400,1,1 ,32,3763,164120,26,9 ,15,9099,688408,1,1 ,32,3794,164128,26,9 ,15,9100,688416,1,1 ,32,3779,164136,26,9 ,15,9101,688424,1,1 ,32,3811,164144,26,9 ,15,9102,688432,1,1 ,32,3865,164152,26,9 ,15,9103,688440,1,1 ,32,3883,164160,26,9 ,15,9104,688448,1,1 ,17,923,9077060,40,0 ,45,15153,4882756,32,0 ,32,3878,164168,26,9 ,15,9105,688456,1,1 ,32,3887,164176,26,9 ,15,9106,688464,1,1 ,32,3915,164184,26,9 ,15,9107,688472,1,1 ,32,3933,164192,27,9 ,15,9108,688480,1,1 ,20,18244,7504226,80,0 ,32,3967,164200,26,9 ,15,9109,688488,1,1 ,32,3976,164208,26,9 ,15,9110,688496,1,1 ,32,3988,164216,26,9 ,15,9111,688504,1,1 ,32,3995,164224,26,9 ,15,9112,688512,1,1 ,17,923,10125700,16,0 ,17,923,7504260,48,0 ,17,923,9601412,40,0 ,32,4334,164232,26,9 ,15,9113,688520,1,1 ,32,4102,164240,26,9 ,15,9114,688528,1,1 ,32,4182,164248,26,9 ,15,9115,688536,1,1 ,32,4116,164256,26,9 ,15,9116,688544,1,1 ,20,22721,19562914,576,0 ,20,25374,25854370,140,0 ,20,16393,3309986,136,0 ,32,4347,164264,26,9 ,15,9117,688552,1,1 ,32,4363,164272,26,9 ,15,9118,688560,1,1 ,32,4448,164280,26,9 ,15,9119,688568,1,1 ,32,4399,164288,26,9 ,15,9120,688576,1,1 ,17,923,8552900,32,0 ,17,923,6455748,40,0 ,44,15152,164292,32,0 ,45,15153,4358596,24,0 ,45,15153,5407172,16,0 ,32,4488,164296,26,9 ,15,9121,688584,1,1 ,32,4499,164304,26,9 ,15,9122,688592,1,1 ,32,4513,164312,26,9 ,15,9123,688600,1,1 ,32,4516,164320,26,9 ,15,9124,688608,1,1 ,32,4576,164328,26,9 ,15,9125,688616,1,1 ,32,4519,164336,26,9 ,15,9126,688624,1,1 ,32,4544,164344,26,9 ,15,9127,688632,1,1 ,32,8554,164352,25,9 ,15,9128,688640,1,1 ,17,923,10125828,16,0 ,44,15152,3310084,56,0 ,32,8509,164360,26,9 ,15,9129,688648,1,1 ,32,4706,164368,26,9 ,15,9130,688656,1,1 ,32,8378,164376,26,9 ,15,9131,688664,1,1 ,32,4730,164384,26,9 ,15,9132,688672,1,1 ,32,4790,164392,26,9 ,15,9133,688680,1,1 ,32,4741,164400,26,9 ,15,9134,688688,1,1 ,32,4734,164408,25,9 ,15,9135,688696,1,1 ,32,4812,164416,26,9 ,15,9136,688704,1,1 ,17,923,8028740,32,0 ,44,15152,688708,32,0 ,44,15152,1212996,32,0 ,45,15153,4883012,16,0 ,45,15153,5407300,16,0 ,32,4830,164424,26,9 ,15,9137,688712,1,1 ,32,4860,164432,26,9 ,15,9138,688720,1,1 ,32,4868,164440,26,9 ,15,9139,688728,1,1 ,32,5025,164448,26,9 ,15,9140,688736,1,1 ,32,5027,164456,26,9 ,15,9141,688744,1,1 ,32,5060,164464,26,9 ,15,9142,688752,1,1 ,32,5067,164472,26,9 ,15,9143,688760,1,1 ,32,8082,164480,26,9 ,15,9144,688768,1,1 ,17,923,10125956,40,0 ,45,15153,4358788,40,0 ,17,923,9077380,48,0 ,32,7271,164488,26,9 ,15,9145,688776,1,1 ,32,5131,164496,26,9 ,15,9146,688784,1,1 ,32,5154,164504,26,9 ,15,9147,688792,1,1 ,32,5231,164512,26,9 ,15,9148,688800,1,1 ,20,15232,164514,88,0 ,32,5184,164520,26,9 ,15,9149,688808,1,1 ,32,5167,164528,26,9 ,15,9150,688816,1,1 ,32,5179,164536,26,9 ,15,9151,688824,1,1 ,32,5239,164544,26,9 ,15,9152,688832,1,1 ,17,923,9601732,24,0 ,44,15152,1737412,24,0 ,44,15152,164548,24,0 ,45,15153,4883140,24,0 ,45,15153,5407428,24,0 ,17,923,8553156,40,0 ,32,5246,164552,26,9 ,15,9153,688840,1,1 ,32,5251,164560,26,9 ,15,9154,688848,1,1 ,32,5299,164568,26,9 ,15,9155,688856,1,1 ,32,5266,164576,26,9 ,15,9156,688864,1,1 ,32,5288,164584,26,9 ,15,9157,688872,1,1 ,32,5274,164592,26,9 ,15,9158,688880,1,1 ,32,5404,164600,26,9 ,15,9159,688888,1,1 ,32,5349,164608,26,9 ,15,9160,688896,1,1 ,20,18971,9077506,320,0 ,20,18492,8028930,12,0 ,44,15152,2786052,24,0 ,17,923,7504644,48,0 ,17,923,6456068,32,0 ,32,5427,164616,26,9 ,15,9161,688904,1,1 ,32,5429,164624,26,9 ,15,9162,688912,1,1 ,32,5447,164632,26,9 ,15,9163,688920,1,1 ,32,5758,164640,26,9 ,15,9164,688928,1,1 ,20,20760,13796130,688,0 ,32,5719,164648,26,9 ,15,9165,688936,1,1 ,32,5501,164656,26,9 ,15,9166,688944,1,1 ,32,5618,164664,26,9 ,15,9167,688952,1,1 ,32,5532,164672,26,9 ,15,9168,688960,1,1 ,20,16714,3834690,160,0 ,17,923,8028996,56,0 ,44,15152,688964,32,0 ,44,15152,1213252,264,0 ,32,5548,164680,26,9 ,15,9169,688968,1,1 ,32,5593,164688,26,9 ,15,9170,688976,1,1 ,32,5589,164696,26,9 ,15,9171,688984,1,1 ,32,5671,164704,26,9 ,15,9172,688992,1,1 ,20,18493,8029026,352,0 ,32,5697,164712,26,9 ,15,9173,689000,1,1 ,32,5750,164720,26,9 ,15,9174,689008,1,1 ,32,5789,164728,26,9 ,15,9175,689016,1,1 ,32,7115,164736,26,9 ,15,9176,689024,1,1 ,20,26136,27952002,556,0 ,17,923,9601924,24,0 ,44,15152,1737604,56,0 ,44,15152,164740,24,0 ,45,15153,4883332,16,0 ,45,15153,5407620,24,0 ,32,7101,164744,26,9 ,15,9177,689032,1,1 ,32,7062,164752,26,9 ,15,9178,689040,1,1 ,32,5842,164760,26,9 ,15,9179,689048,1,1 ,32,7029,164768,26,9 ,15,9180,689056,1,1 ,32,6423,164776,26,9 ,15,9181,689064,1,1 ,32,5858,164784,26,9 ,15,9182,689072,1,1 ,32,6382,164792,26,9 ,15,9183,689080,1,1 ,32,5892,164800,26,9 ,15,9184,689088,1,1 ,17,923,10126276,32,0 ,44,15152,2786244,96,0 ,44,15152,3310532,40,0 ,45,15153,4359108,64,0 ,32,5894,164808,26,9 ,15,9185,689096,1,1 ,32,5907,164816,26,9 ,15,9186,689104,1,1 ,32,5924,164824,26,9 ,15,9187,689112,1,1 ,32,5932,164832,26,9 ,15,9188,689120,1,1 ,20,18245,7504866,312,0 ,32,5962,164840,26,9 ,15,9189,689128,1,1 ,32,6366,164848,26,9 ,15,9190,689136,1,1 ,32,6327,164856,26,9 ,15,9191,689144,1,1 ,32,6316,164864,26,9 ,15,9192,689152,1,1 ,17,923,9077764,56,0 ,17,923,6456324,24,0 ,45,15153,4883460,104,0 ,17,923,8553476,48,0 ,32,5986,164872,26,9 ,15,9193,689160,1,1 ,32,6242,164880,25,9 ,15,9194,689168,1,1 ,32,6082,164888,26,9 ,15,9195,689176,1,1 ,32,6110,164896,26,9 ,15,9196,689184,1,1 ,20,17367,5407778,1780,0 ,32,6114,164904,26,9 ,15,9197,689192,1,1 ,32,6233,164912,26,9 ,15,9198,689200,1,1 ,32,6123,164920,26,9 ,15,9199,689208,1,1 ,32,6127,164928,26,9 ,15,9200,689216,1,1 ,20,17146,4883522,44,0 ,17,923,9602116,32,0 ,44,15152,164932,40,0 ,44,15152,689220,72,0 ,45,15153,5407812,160,0 ,32,6148,164936,26,9 ,15,9201,689224,1,1 ,32,6136,164944,26,9 ,15,9202,689232,1,1 ,32,6207,164952,26,9 ,15,9203,689240,1,1 ,32,6394,164960,26,9 ,15,9204,689248,1,1 ,32,6418,164968,26,9 ,15,9205,689256,1,1 ,32,6587,164976,26,9 ,15,9206,689264,1,1 ,32,6430,164984,26,9 ,15,9207,689272,1,1 ,32,6467,164992,26,9 ,15,9208,689280,1,1 ,17,923,7505028,48,0 ,32,6478,165000,26,9 ,15,9209,689288,1,1 ,32,6481,165008,26,9 ,15,9210,689296,1,1 ,32,6489,165016,26,9 ,15,9211,689304,1,1 ,32,6520,165024,26,9 ,15,9212,689312,1,1 ,20,23601,21136546,1284,0 ,20,21334,15893666,332,0 ,32,6538,165032,26,9 ,15,9213,689320,1,1 ,32,6602,165040,26,9 ,15,9214,689328,1,1 ,32,6651,165048,26,9 ,15,9215,689336,1,1 ,32,6957,165056,26,9 ,15,9216,689344,1,1 ,17,923,10126532,64,0 ,17,923,6980804,112,0 ,17,923,6456516,48,0 ,32,6660,165064,26,9 ,15,9217,689352,1,1 ,32,6662,165072,26,9 ,15,9218,689360,1,1 ,32,6666,165080,26,9 ,15,9219,689368,1,1 ,32,6721,165088,26,9 ,15,9220,689376,1,1 ,32,6673,165096,26,9 ,15,9221,689384,1,1 ,32,6726,165104,26,9 ,15,9222,689392,1,1 ,32,6729,165112,26,9 ,15,9223,689400,1,1 ,32,6732,165120,26,9 ,15,9224,689408,1,1 ,17,923,8029444,40,0 ,44,15152,3310852,16,0 ,32,6736,165128,26,9 ,15,9225,689416,1,1 ,32,6741,165136,26,9 ,15,9226,689424,1,1 ,32,6752,165144,26,9 ,15,9227,689432,1,1 ,32,6755,165152,26,9 ,15,9228,689440,1,1 ,20,20000,11175202,532,0 ,32,6758,165160,26,9 ,15,9229,689448,1,1 ,32,6761,165168,26,9 ,15,9230,689456,1,1 ,32,6774,165176,26,9 ,15,9231,689464,1,1 ,32,6777,165184,26,9 ,15,9232,689472,1,1 ,17,923,9602372,40,0 ,44,15152,1738052,48,0 ,32,6780,165192,26,9 ,15,9233,689480,1,1 ,32,6787,165200,26,9 ,15,9234,689488,1,1 ,32,6791,165208,26,9 ,15,9235,689496,1,1 ,32,6794,165216,26,9 ,15,9236,689504,1,1 ,20,15233,165218,136,0 ,20,25940,27428194,112,0 ,32,6799,165224,26,9 ,15,9237,689512,1,1 ,32,6802,165232,26,9 ,15,9238,689520,1,1 ,32,6806,165240,26,9 ,15,9239,689528,1,1 ,32,6810,165248,26,9 ,15,9240,689536,1,1 ,17,923,8553860,40,0 ,44,15152,165252,40,0 ,44,15152,3310980,24,0 ,32,6834,165256,26,9 ,15,9241,689544,1,1 ,32,6905,165264,26,9 ,15,9242,689552,1,1 ,32,6929,165272,26,9 ,15,9243,689560,1,1 ,32,6945,165280,26,9 ,15,9244,689568,1,1 ,20,17147,4883874,12,0 ,32,6960,165288,26,9 ,15,9245,689576,1,1 ,32,6987,165296,26,9 ,15,9246,689584,1,1 ,32,7015,165304,26,9 ,15,9247,689592,1,1 ,32,7085,165312,26,9 ,15,9248,689600,1,1 ,17,923,9078212,40,0 ,45,15153,4359620,64,0 ,32,7145,165320,26,9 ,15,9249,689608,1,1 ,32,7147,165328,26,9 ,15,9250,689616,1,1 ,32,7152,165336,26,9 ,15,9251,689624,1,1 ,32,7177,165344,26,9 ,15,9252,689632,1,1 ,20,22312,18515426,216,0 ,20,25714,26904034,432,0 ,20,16394,3311074,56,0 ,32,7211,165352,26,9 ,15,9253,689640,1,1 ,32,7198,165360,26,9 ,15,9254,689648,1,1 ,32,7226,165368,26,9 ,15,9255,689656,1,1 ,32,7239,165376,26,9 ,15,9256,689664,1,1 ,20,17148,4883970,260,0 ,20,25375,25855490,296,0 ,17,923,7505412,40,0 ,32,8045,165384,26,9 ,15,9257,689672,1,1 ,32,7671,165392,26,9 ,15,9258,689680,1,1 ,32,7334,165400,26,9 ,15,9259,689688,1,1 ,32,7412,165408,26,9 ,15,9260,689696,1,1 ,32,7401,165416,26,9 ,15,9261,689704,1,1 ,32,7426,165424,26,9 ,15,9262,689712,1,1 ,32,7434,165432,26,9 ,15,9263,689720,1,1 ,32,7447,165440,26,9 ,15,9264,689728,1,1 ,17,923,8029764,40,0 ,17,923,6456900,40,0 ,44,15152,3311172,136,0 ,32,7455,165448,26,9 ,15,9265,689736,1,1 ,32,7548,165456,26,9 ,15,9266,689744,1,1 ,32,7558,165464,26,9 ,15,9267,689752,1,1 ,32,7566,165472,26,9 ,15,9268,689760,1,1 ,32,7579,165480,26,9 ,15,9269,689768,1,1 ,32,7582,165488,26,9 ,15,9270,689776,1,1 ,32,7587,165496,26,9 ,15,9271,689784,1,1 ,32,7591,165504,26,9 ,15,9272,689792,1,1 ,17,923,9602692,32,0 ,44,15152,689796,40,0 ,32,7933,165512,26,9 ,15,9273,689800,1,1 ,32,7715,165520,26,9 ,15,9274,689808,1,1 ,32,7749,165528,26,9 ,15,9275,689816,1,1 ,32,7854,165536,26,9 ,15,9276,689824,1,1 ,20,15641,1214114,40,0 ,32,7809,165544,26,9 ,15,9277,689832,1,1 ,32,7936,165552,26,9 ,15,9278,689840,1,1 ,32,8030,165560,26,9 ,15,9279,689848,1,1 ,32,8033,165568,26,9 ,15,9280,689856,1,1 ,17,923,10127044,16,0 ,44,15152,2787012,64,0 ,44,15152,1738436,56,0 ,44,15152,165572,32,0 ,17,923,8554180,40,0 ,32,8068,165576,26,9 ,15,9281,689864,1,1 ,32,8247,165584,26,9 ,15,9282,689872,1,1 ,32,8261,165592,26,9 ,15,9283,689880,1,1 ,32,8326,165600,26,9 ,15,9284,689888,1,1 ,32,8336,165608,26,9 ,15,9285,689896,1,1 ,32,8343,165616,26,9 ,15,9286,689904,1,1 ,32,8369,165624,26,9 ,15,9287,689912,1,1 ,32,8385,165632,26,9 ,15,9288,689920,1,1 ,17,923,9078532,40,0 ,32,8388,165640,26,9 ,15,9289,689928,1,1 ,32,8444,165648,26,9 ,15,9290,689936,1,1 ,32,8466,165656,26,9 ,15,9291,689944,1,1 ,32,8576,165664,26,9 ,15,9292,689952,1,1 ,32,8641,165672,26,9 ,15,9293,689960,1,1 ,32,8720,165680,27,9 ,15,9294,689968,1,1 ,32,8711,165688,26,9 ,15,9295,689976,1,1 ,32,8725,165696,26,9 ,15,9296,689984,1,1 ,20,21561,16418626,756,0 ,17,923,10127172,48,0 ,17,923,7505732,40,0 ,45,15153,4884292,24,0 ,32,8774,165704,26,9 ,15,9297,689992,1,1 ,32,8743,165712,26,9 ,15,9298,690000,1,1 ,32,8756,165720,26,9 ,15,9299,690008,1,1 ,32,8758,165728,26,9 ,15,9300,690016,1,1 ,32,8920,165736,25,9 ,15,9301,690024,1,1 ,32,9244,165744,26,9 ,15,9302,690032,1,1 ,32,9288,165752,26,9 ,15,9303,690040,1,1 ,32,9261,165760,26,9 ,15,9304,690048,1,1 ,20,23744,21661570,544,0 ,17,923,9602948,32,0 ,17,923,6457220,32,0 ,17,923,8030084,24,0 ,32,9268,165768,26,9 ,15,9305,690056,1,1 ,32,9320,165776,25,9 ,15,9306,690064,1,1 ,32,9302,165784,25,9 ,15,9307,690072,1,1 ,32,10308,165792,26,9 ,15,9308,690080,1,1 ,20,16395,3311522,988,0 ,32,10290,165800,27,9 ,15,9309,690088,1,1 ,32,9368,165808,27,9 ,15,9310,690096,1,1 ,32,9377,165816,27,9 ,15,9311,690104,1,1 ,32,9373,165824,27,9 ,15,9312,690112,1,1 ,45,15153,4360132,112,0 ,44,15152,165828,72,0 ,44,15152,690116,48,0 ,32,9392,165832,27,9 ,15,9313,690120,1,1 ,32,9402,165840,27,9 ,15,9314,690128,1,1 ,32,9439,165848,27,9 ,15,9315,690136,1,1 ,32,9456,165856,27,9 ,15,9316,690144,1,1 ,20,15642,1214434,12,0 ,32,9459,165864,27,9 ,15,9317,690152,1,1 ,32,9468,165872,27,9 ,15,9318,690160,1,1 ,32,9472,165880,27,9 ,15,9319,690168,1,1 ,32,9575,165888,27,9 ,15,9320,690176,1,1 ,20,23968,22185986,932,0 ,17,923,8554500,24,0 ,45,15153,4884484,16,0 ,32,9583,165896,27,9 ,15,9321,690184,1,1 ,32,9590,165904,27,9 ,15,9322,690192,1,1 ,32,9597,165912,27,9 ,15,9323,690200,1,1 ,32,9638,165920,27,9 ,15,9324,690208,1,1 ,32,9651,165928,27,9 ,15,9325,690216,1,1 ,32,9649,165936,27,9 ,15,9326,690224,1,1 ,32,9659,165944,27,9 ,15,9327,690232,1,1 ,32,9663,165952,27,9 ,15,9328,690240,1,1 ,20,16715,3835970,12,0 ,20,15643,1214530,12,0 ,17,923,9078852,40,0 ,17,923,6981700,24,0 ,17,923,8030276,64,0 ,32,9670,165960,27,9 ,15,9329,690248,1,1 ,32,9668,165968,27,9 ,15,9330,690256,1,1 ,32,9677,165976,27,9 ,15,9331,690264,1,1 ,32,9686,165984,27,9 ,15,9332,690272,1,1 ,32,9693,165992,27,9 ,15,9333,690280,1,1 ,32,9701,166000,27,9 ,15,9334,690288,1,1 ,32,9705,166008,27,9 ,15,9335,690296,1,1 ,32,9711,166016,27,9 ,15,9336,690304,1,1 ,17,923,9603204,40,0 ,17,923,7506052,40,0 ,17,923,6457476,32,0 ,44,15152,1738884,48,0 ,45,15153,4884612,128,0 ,32,9709,166024,27,9 ,15,9337,690312,1,1 ,32,9717,166032,27,9 ,15,9338,690320,1,1 ,32,9767,166040,27,9 ,15,9339,690328,1,1 ,32,9727,166048,27,9 ,15,9340,690336,1,1 ,20,20975,15370402,208,0 ,20,15644,1214626,552,0 ,20,16716,3836066,136,0 ,32,9736,166056,27,9 ,15,9341,690344,1,1 ,32,9757,166064,27,9 ,15,9342,690352,1,1 ,32,9722,166072,27,9 ,15,9343,690360,1,1 ,32,9775,166080,27,9 ,15,9344,690368,1,1 ,17,923,10127556,16,0 ,44,15152,2787524,64,0 ,17,923,8554692,24,0 ,32,9781,166088,27,9 ,15,9345,690376,1,1 ,32,9788,166096,27,9 ,15,9346,690384,1,1 ,32,9795,166104,27,9 ,15,9347,690392,1,1 ,32,9802,166112,27,9 ,15,9348,690400,1,1 ,20,25941,27429090,44,0 ,32,9809,166120,27,9 ,15,9349,690408,1,1 ,32,9816,166128,27,9 ,15,9350,690416,1,1 ,32,9823,166136,27,9 ,15,9351,690424,1,1 ,32,9830,166144,27,9 ,15,9352,690432,1,1 ,20,26304,28477698,228,0 ,17,923,6981892,64,0 ,32,9837,166152,27,9 ,15,9353,690440,1,1 ,32,9844,166160,27,9 ,15,9354,690448,1,1 ,32,9851,166168,27,9 ,15,9355,690456,1,1 ,32,9858,166176,27,9 ,15,9356,690464,1,1 ,32,9865,166184,27,9 ,15,9357,690472,1,1 ,32,9872,166192,27,9 ,15,9358,690480,1,1 ,32,9879,166200,27,9 ,15,9359,690488,1,1 ,32,9886,166208,27,9 ,15,9360,690496,1,1 ,17,923,10127684,24,0 ,44,15152,690500,48,0 ,45,15153,5409092,32,0 ,32,9893,166216,27,9 ,15,9361,690504,1,1 ,32,9900,166224,27,9 ,15,9362,690512,1,1 ,32,9907,166232,27,9 ,15,9363,690520,1,1 ,32,9914,166240,27,9 ,15,9364,690528,1,1 ,20,24189,22710626,584,0 ,32,9921,166248,27,9 ,15,9365,690536,1,1 ,32,9928,166256,27,9 ,15,9366,690544,1,1 ,32,9935,166264,27,9 ,15,9367,690552,1,1 ,32,9942,166272,27,9 ,15,9368,690560,1,1 ,17,923,9079172,48,0 ,17,923,6457732,24,0 ,17,923,8554884,48,0 ,32,9949,166280,27,9 ,15,9369,690568,1,1 ,32,9956,166288,27,9 ,15,9370,690576,1,1 ,32,9963,166296,27,9 ,15,9371,690584,1,1 ,32,9970,166304,27,9 ,15,9372,690592,1,1 ,20,21835,16943522,700,0 ,20,15234,166306,360,0 ,32,9977,166312,27,9 ,15,9373,690600,1,1 ,32,9984,166320,27,9 ,15,9374,690608,1,1 ,32,9991,166328,27,9 ,15,9375,690616,1,1 ,32,9998,166336,27,9 ,15,9376,690624,1,1 ,17,923,9603524,32,0 ,17,923,7506372,40,0 ,32,10005,166344,27,9 ,15,9377,690632,1,1 ,32,10012,166352,27,9 ,15,9378,690640,1,1 ,32,10019,166360,27,9 ,15,9379,690648,1,1 ,32,10026,166368,27,9 ,15,9380,690656,1,1 ,32,10033,166376,27,9 ,15,9381,690664,1,1 ,32,10040,166384,27,9 ,15,9382,690672,1,1 ,32,10047,166392,27,9 ,15,9383,690680,1,1 ,32,10054,166400,27,9 ,15,9384,690688,1,1 ,17,923,10127876,40,0 ,44,15152,1739268,56,0 ,44,15152,166404,40,0 ,32,10063,166408,27,9 ,15,9385,690696,1,1 ,32,10061,166416,27,9 ,15,9386,690704,1,1 ,32,10072,166424,27,9 ,15,9387,690712,1,1 ,32,10082,166432,27,9 ,15,9388,690720,1,1 ,32,10077,166440,27,9 ,15,9389,690728,1,1 ,32,10113,166448,27,9 ,15,9390,690736,1,1 ,32,10118,166456,27,9 ,15,9391,690744,1,1 ,32,10125,166464,27,9 ,15,9392,690752,1,1 ,20,25942,27429442,140,0 ,17,923,8030788,24,0 ,17,923,6457924,24,0 ,45,15153,5409348,16,0 ,32,10123,166472,27,9 ,15,9393,690760,1,1 ,32,10140,166480,27,9 ,15,9394,690768,1,1 ,32,10145,166488,27,9 ,15,9395,690776,1,1 ,32,10155,166496,27,9 ,15,9396,690784,1,1 ,32,10163,166504,27,9 ,15,9397,690792,1,1 ,32,10168,166512,27,9 ,15,9398,690800,1,1 ,32,10173,166520,27,9 ,15,9399,690808,1,1 ,32,10178,166528,27,9 ,15,9400,690816,1,1 ,44,15152,3312260,32,0 ,32,10183,166536,27,9 ,15,9401,690824,1,1 ,32,10188,166544,27,9 ,15,9402,690832,1,1 ,32,10193,166552,27,9 ,15,9403,690840,1,1 ,32,10198,166560,27,9 ,15,9404,690848,1,1 ,20,25159,25332386,612,0 ,32,10210,166568,27,9 ,15,9405,690856,1,1 ,32,10208,166576,27,9 ,15,9406,690864,1,1 ,32,10217,166584,27,9 ,15,9407,690872,1,1 ,32,10222,166592,27,9 ,15,9408,690880,1,1 ,17,923,9603780,32,0 ,44,15152,2788036,88,0 ,44,15152,690884,48,0 ,45,15153,5409476,112,0 ,32,10229,166600,27,9 ,15,9409,690888,1,1 ,32,10233,166608,27,9 ,15,9410,690896,1,1 ,32,10237,166616,27,9 ,15,9411,690904,1,1 ,32,10246,166624,27,9 ,15,9412,690912,1,1 ,20,18666,8555234,12,0 ,32,10244,166632,27,9 ,15,9413,690920,1,1 ,32,10252,166640,27,9 ,15,9414,690928,1,1 ,32,10256,166648,27,9 ,15,9415,690936,1,1 ,32,10328,166656,26,9 ,15,9416,690944,1,1 ,17,923,9079556,48,0 ,17,923,7506692,48,0 ,17,923,6982404,40,0 ,17,923,6458116,32,0 ,17,923,8030980,32,0 ,17,923,8555268,32,0 ,32,10335,166664,26,9 ,15,9417,690952,1,1 ,32,10352,166672,26,9 ,15,9418,690960,1,1 ,32,10355,166680,26,9 ,15,9419,690968,1,1 ,32,10516,166688,26,9 ,15,9420,690976,1,1 ,32,10562,166696,26,9 ,15,9421,690984,1,1 ,32,10587,166704,26,9 ,15,9422,690992,1,1 ,32,10593,166712,27,9 ,15,9423,691000,1,1 ,32,10697,166720,26,9 ,15,9424,691008,1,1 ,20,18667,8555330,272,0 ,17,923,10128196,32,0 ,44,15152,166724,40,0 ,45,15153,4361028,24,0 ,32,10614,166728,27,9 ,15,9425,691016,1,1 ,32,10620,166736,27,9 ,15,9426,691024,1,1 ,32,10712,166744,26,9 ,15,9427,691032,1,1 ,32,10718,166752,26,9 ,15,9428,691040,1,1 ,32,10723,166760,26,9 ,15,9429,691048,1,1 ,32,10741,166768,26,9 ,15,9430,691056,1,1 ,32,10747,166776,26,9 ,15,9431,691064,1,1 ,32,10769,166784,26,9 ,15,9432,691072,1,1 ,20,24943,24808322,100,0 ,44,15152,3312516,24,0 ,44,15152,1215364,32,0 ,32,10777,166792,26,9 ,15,9433,691080,1,1 ,32,10790,166800,26,9 ,15,9434,691088,1,1 ,32,10872,166808,26,9 ,15,9435,691096,1,1 ,32,10880,166816,25,9 ,15,9436,691104,1,1 ,32,10891,166824,26,9 ,15,9437,691112,1,1 ,32,10942,166832,26,9 ,15,9438,691120,1,1 ,32,10970,166840,26,9 ,15,9439,691128,1,1 ,32,10996,166848,26,9 ,15,9440,691136,1,1 ,17,923,9604036,40,0 ,44,15152,1739716,56,0 ,32,10983,166856,26,9 ,15,9441,691144,1,1 ,32,11009,166864,25,9 ,15,9442,691152,1,1 ,32,11015,166872,26,9 ,15,9443,691160,1,1 ,32,11026,166880,26,9 ,15,9444,691168,1,1 ,32,11039,166888,26,9 ,15,9445,691176,1,1 ,32,11047,166896,25,9 ,15,9446,691184,1,1 ,32,11054,166904,25,9 ,15,9447,691192,1,1 ,32,11060,166912,25,9 ,15,9448,691200,1,1 ,17,923,8555524,32,0 ,17,923,6458372,24,0 ,45,15153,4361220,24,0 ,17,923,8031236,24,0 ,32,11067,166920,25,9 ,15,9449,691208,1,1 ,32,11194,166928,26,9 ,15,9450,691216,1,1 ,32,11084,166936,26,9 ,15,9451,691224,1,1 ,32,11086,166944,25,9 ,15,9452,691232,1,1 ,32,11092,166952,25,9 ,15,9453,691240,1,1 ,32,11106,166960,25,9 ,15,9454,691248,1,1 ,32,11108,166968,25,9 ,15,9455,691256,1,1 ,32,11119,166976,25,9 ,15,9456,691264,1,1 ,17,923,10128452,16,0 ,17,923,6982724,80,0 ,44,15152,691268,32,0 ,44,15152,3312708,56,0 ,32,11137,166984,25,9 ,15,9457,691272,1,1 ,32,11147,166992,25,9 ,15,9458,691280,1,1 ,32,11155,167000,26,9 ,15,9459,691288,1,1 ,32,11165,167008,26,9 ,15,9460,691296,1,1 ,20,24726,24284258,48,0 ,32,11170,167016,26,9 ,15,9461,691304,1,1 ,32,11214,167024,26,9 ,15,9462,691312,1,1 ,32,11220,167032,25,9 ,15,9463,691320,1,1 ,32,11231,167040,26,9 ,15,9464,691328,1,1 ,17,923,9079940,56,0 ,17,923,7507076,64,0 ,44,15152,167044,40,0 ,44,15152,1215620,24,0 ,45,15153,4885636,16,0 ,32,11234,167048,26,9 ,15,9465,691336,1,1 ,32,11250,167056,25,9 ,15,9466,691344,1,1 ,32,11245,167064,26,9 ,15,9467,691352,1,1 ,32,11252,167072,26,9 ,15,9468,691360,1,1 ,20,22313,18517154,216,0 ,32,11257,167080,26,9 ,15,9469,691368,1,1 ,32,11269,167088,26,9 ,15,9470,691376,1,1 ,32,11284,167096,25,9 ,15,9471,691384,1,1 ,32,11288,167104,25,9 ,15,9472,691392,1,1 ,17,923,10128580,32,0 ,17,923,6458564,32,0 ,45,15153,4361412,40,0 ,17,923,8031428,48,0 ,32,11302,167112,25,9 ,15,9473,691400,1,1 ,32,11312,167120,25,9 ,15,9474,691408,1,1 ,32,11327,167128,26,9 ,15,9475,691416,1,1 ,32,11334,167136,26,9 ,15,9476,691424,1,1 ,20,16717,3837154,512,0 ,32,11337,167144,26,9 ,15,9477,691432,1,1 ,32,11340,167152,26,9 ,15,9478,691440,1,1 ,32,11343,167160,26,9 ,15,9479,691448,1,1 ,32,11350,167168,26,9 ,15,9480,691456,1,1 ,20,18972,9080066,312,0 ,17,923,9604356,24,0 ,45,15153,4885764,48,0 ,17,923,8555780,40,0 ,32,11358,167176,26,9 ,15,9481,691464,1,1 ,32,11411,167184,25,9 ,15,9482,691472,1,1 ,32,11462,167192,26,9 ,15,9483,691480,1,1 ,32,11418,167200,26,9 ,15,9484,691488,1,1 ,32,11422,167208,26,9 ,15,9485,691496,1,1 ,32,11436,167216,26,9 ,15,9486,691504,1,1 ,32,11442,167224,26,9 ,15,9487,691512,1,1 ,32,11445,167232,26,9 ,15,9488,691520,1,1 ,44,15152,691524,24,0 ,44,15152,1215812,120,0 ,32,11464,167240,26,9 ,15,9489,691528,1,1 ,32,11484,167248,26,9 ,15,9490,691536,1,1 ,32,11506,167256,26,9 ,15,9491,691544,1,1 ,32,11512,167264,26,9 ,15,9492,691552,1,1 ,20,17768,6458722,380,0 ,32,11516,167272,26,9 ,15,9493,691560,1,1 ,32,11523,167280,26,9 ,15,9494,691568,1,1 ,32,11527,167288,26,9 ,15,9495,691576,1,1 ,32,11544,167296,26,9 ,15,9496,691584,1,1 ,44,15152,3837316,40,0 ,44,15152,2788740,64,0 ,44,15152,1740164,56,0 ,32,11536,167304,26,9 ,15,9497,691592,1,1 ,32,11553,167312,25,9 ,15,9498,691600,1,1 ,32,11560,167320,26,9 ,15,9499,691608,1,1 ,32,11617,167328,26,9 ,15,9500,691616,1,1 ,20,24533,23760290,176,0 ,20,18246,7507362,1588,0 ,32,11622,167336,26,9 ,15,9501,691624,1,1 ,32,11627,167344,26,9 ,15,9502,691632,1,1 ,32,11631,167352,26,9 ,15,9503,691640,1,1 ,32,11636,167360,26,9 ,15,9504,691648,1,1 ,17,923,10128836,48,0 ,17,923,6458820,64,0 ,44,15152,167364,24,0 ,17,923,9604548,24,0 ,32,11639,167368,26,9 ,15,9505,691656,1,1 ,32,11642,167376,26,9 ,15,9506,691664,1,1 ,32,11645,167384,26,9 ,15,9507,691672,1,1 ,32,11648,167392,26,9 ,15,9508,691680,1,1 ,20,24727,24284642,3672,0 ,32,11651,167400,25,9 ,15,9509,691688,1,1 ,32,11661,167408,26,9 ,15,9510,691696,1,1 ,32,11664,167416,26,9 ,15,9511,691704,1,1 ,32,11672,167424,26,9 ,15,9512,691712,1,1 ,45,15153,4361732,16,0 ,44,15152,691716,40,0 ,44,15152,3313156,24,0 ,32,11676,167432,26,9 ,15,9513,691720,1,1 ,32,11698,167440,25,9 ,15,9514,691728,1,1 ,32,11701,167448,25,9 ,15,9515,691736,1,1 ,32,11707,167456,27,9 ,15,9516,691744,1,1 ,20,17149,4886050,12,0 ,32,11713,167464,26,9 ,15,9517,691752,1,1 ,32,11803,167472,26,9 ,15,9518,691760,1,1 ,32,11809,167480,26,9 ,15,9519,691768,1,1 ,32,11833,167488,25,9 ,15,9520,691776,1,1 ,17,923,9080388,40,0 ,45,15153,5410372,144,0 ,17,923,8031812,48,0 ,17,923,8556100,32,0 ,32,11845,167496,25,9 ,15,9521,691784,1,1 ,32,11849,167504,25,9 ,15,9522,691792,1,1 ,32,11852,167512,26,9 ,15,9523,691800,1,1 ,32,11859,167520,26,9 ,15,9524,691808,1,1 ,20,18494,8031842,264,0 ,32,11866,167528,26,9 ,15,9525,691816,1,1 ,32,11869,167536,26,9 ,15,9526,691824,1,1 ,32,11886,167544,26,9 ,15,9527,691832,1,1 ,32,11894,167552,26,9 ,15,9528,691840,1,1 ,20,17150,4886146,12,0 ,17,923,9604740,48,0 ,17,923,7507588,64,0 ,44,15152,167556,40,0 ,45,15153,4361860,24,0 ,45,15153,4886148,16,0 ,32,11970,167560,26,9 ,15,9529,691848,1,1 ,32,11982,167568,25,9 ,15,9530,691856,1,1 ,32,11986,167576,25,9 ,15,9531,691864,1,1 ,32,12005,167584,26,9 ,15,9532,691872,1,1 ,20,24944,24809122,96,0 ,20,25943,27430562,840,0 ,32,13185,167592,26,9 ,15,9533,691880,1,1 ,32,13266,167600,26,9 ,15,9534,691888,1,1 ,32,13355,167608,26,9 ,15,9535,691896,1,1 ,32,13403,167616,25,9 ,15,9536,691904,1,1 ,20,24379,23236290,240,0 ,44,15152,3837636,24,0 ,17,923,6983364,24,0 ,44,15152,3313348,80,0 ,32,13407,167624,25,9 ,15,9537,691912,1,1 ,32,13411,167632,26,9 ,15,9538,691920,1,1 ,32,13422,167640,26,9 ,15,9539,691928,1,1 ,32,13426,167648,25,9 ,15,9540,691936,1,1 ,20,17151,4886242,56,0 ,32,13489,167656,26,9 ,15,9541,691944,1,1 ,32,14159,167664,26,9 ,15,9542,691952,1,1 ,32,14315,167672,26,9 ,15,9543,691960,1,1 ,32,14609,167680,26,9 ,15,9544,691968,1,1 ,20,21335,15896322,364,0 ,45,15153,4886276,16,0 ,32,14612,167688,26,9 ,15,9545,691976,1,1 ,32,14619,167696,26,9 ,15,9546,691984,1,1 ,32,14629,167704,26,9 ,15,9547,691992,1,1 ,32,14632,167712,26,9 ,15,9548,692000,1,1 ,20,20976,15372066,224,0 ,32,418,167720,25,9 ,15,9549,692008,1,1 ,32,319,167728,25,9 ,15,9550,692016,1,1 ,32,517,167736,25,9 ,15,9551,692024,1,1 ,32,611,167744,25,9 ,15,9552,692032,1,1 ,20,25376,25857858,48,0 ,17,923,10129220,24,0 ,44,15152,1740612,56,0 ,44,15152,692036,24,0 ,45,15153,4362052,64,0 ,17,923,8556356,32,0 ,32,11619,167752,25,9 ,15,9553,692040,1,1 ,32,487,167760,24,9 ,15,9554,692048,1,1 ,32,439,167768,25,9 ,15,9555,692056,1,1 ,32,2030,167776,26,9 ,15,9556,692064,1,1 ,32,167,167784,25,9 ,15,9557,692072,1,1 ,32,301,167792,25,9 ,15,9558,692080,1,1 ,32,460,167800,25,9 ,15,9559,692088,1,1 ,32,526,167808,25,9 ,15,9560,692096,1,1 ,17,923,9080708,32,0 ,17,923,6983556,24,0 ,44,15152,2789252,24,0 ,44,15152,3837828,24,0 ,45,15153,4886404,16,0 ,32,10436,167816,26,9 ,15,9561,692104,1,1 ,32,158,167824,25,9 ,15,9562,692112,1,1 ,32,261,167832,25,9 ,15,9563,692120,1,1 ,32,277,167840,25,9 ,15,9564,692128,1,1 ,16,820,167848,17,8 ,15,9565,692136,1,1 ,16,820,167856,18,11 ,15,9566,692144,1,1 ,16,820,167864,12,8 ,15,9567,692152,1,1 ,16,820,167872,18,9 ,15,9568,692160,1,1 ,17,923,8032196,40,0 ,17,923,6459332,64,0 ,44,15152,167876,24,0 ,16,820,167880,12,8 ,15,9569,692168,1,1 ,16,820,167888,19,8 ,15,9570,692176,1,1 ,16,820,167896,18,10 ,15,9571,692184,1,1 ,16,820,167904,19,8 ,15,9572,692192,1,1 ,16,820,167912,18,13 ,15,9573,692200,1,1 ,16,820,167920,18,9 ,15,9574,692208,1,1 ,16,820,167928,19,12 ,15,9575,692216,1,1 ,16,820,167936,13,8 ,15,9576,692224,1,1 ,17,923,10129412,56,0 ,44,15152,692228,24,0 ,45,15153,4886532,48,0 ,17,923,9605124,32,0 ,16,820,167944,19,8 ,15,9577,692232,1,1 ,16,820,167952,19,8 ,15,9578,692240,1,1 ,16,820,167960,18,10 ,15,9579,692248,1,1 ,16,820,167968,12,8 ,15,9580,692256,1,1 ,20,16176,2789410,100,0 ,20,26305,28479522,340,0 ,16,820,167976,19,8 ,15,9581,692264,1,1 ,16,820,167984,20,10 ,15,9582,692272,1,1 ,16,820,167992,20,8 ,15,9583,692280,1,1 ,16,820,168000,20,8 ,15,9584,692288,1,1 ,17,923,8556612,40,0 ,17,923,6983748,32,0 ,44,15152,2789444,24,0 ,44,15152,3838020,24,0 ,16,820,168008,18,8 ,15,9585,692296,1,1 ,16,820,168016,18,12 ,15,9586,692304,1,1 ,16,820,168024,16,9 ,15,9587,692312,1,1 ,16,820,168032,20,8 ,15,9588,692320,1,1 ,16,820,168040,18,8 ,15,9589,692328,1,1 ,16,820,168048,18,8 ,15,9590,692336,1,1 ,16,820,168056,16,9 ,15,9591,692344,1,1 ,16,820,168064,12,8 ,15,9592,692352,1,1 ,17,923,9080964,96,0 ,17,923,7508100,48,0 ,44,15152,168068,24,0 ,16,820,168072,18,8 ,15,9593,692360,1,1 ,16,820,168080,18,11 ,15,9594,692368,1,1 ,16,820,168088,18,8 ,15,9595,692376,1,1 ,16,820,168096,18,10 ,15,9596,692384,1,1 ,20,17152,4886690,1240,0 ,16,820,168104,18,11 ,15,9597,692392,1,1 ,16,820,168112,18,9 ,15,9598,692400,1,1 ,16,820,168120,12,8 ,15,9599,692408,1,1 ,16,820,168128,18,10 ,15,9600,692416,1,1 ,20,25377,25858242,376,0 ,44,15152,692420,56,0 ,16,820,168136,18,8 ,15,9601,692424,1,1 ,16,820,168144,16,8 ,15,9602,692432,1,1 ,16,820,168152,16,8 ,15,9603,692440,1,1 ,16,820,168160,16,8 ,15,9604,692448,1,1 ,16,820,168168,16,8 ,15,9605,692456,1,1 ,16,820,168176,18,8 ,15,9606,692464,1,1 ,16,820,168184,18,10 ,15,9607,692472,1,1 ,16,820,168192,18,11 ,15,9608,692480,1,1 ,17,923,9605380,24,0 ,44,15152,2789636,128,0 ,44,15152,1741060,56,0 ,44,15152,1216772,264,0 ,44,15152,3838212,56,0 ,17,923,8032516,48,0 ,16,820,168200,12,8 ,15,9609,692488,1,1 ,16,820,168208,18,8 ,15,9610,692496,1,1 ,16,820,168216,16,8 ,15,9611,692504,1,1 ,16,820,168224,18,9 ,15,9612,692512,1,1 ,20,22063,17994018,180,0 ,16,820,168232,18,8 ,15,9613,692520,1,1 ,16,820,168240,18,8 ,15,9614,692528,1,1 ,16,820,168248,18,12 ,15,9615,692536,1,1 ,16,820,168256,19,9 ,15,9616,692544,1,1 ,45,15153,4362564,24,0 ,17,923,6984004,24,0 ,44,15152,168260,24,0 ,44,15152,3313988,24,0 ,16,820,168264,13,8 ,15,9617,692552,1,1 ,16,820,168272,19,8 ,15,9618,692560,1,1 ,16,820,168280,13,8 ,15,9619,692568,1,1 ,16,820,168288,17,8 ,15,9620,692576,1,1 ,16,820,168296,21,11 ,15,9621,692584,1,1 ,16,820,168304,13,8 ,15,9622,692592,1,1 ,16,820,168312,21,8 ,15,9623,692600,1,1 ,16,820,168320,19,8 ,15,9624,692608,1,1 ,17,923,8556932,40,0 ,45,15153,4886916,24,0 ,16,820,168328,19,12 ,15,9625,692616,1,1 ,16,820,168336,19,12 ,15,9626,692624,1,1 ,16,820,168344,19,8 ,15,9627,692632,1,1 ,16,820,168352,21,11 ,15,9628,692640,1,1 ,20,24945,24809890,100,0 ,16,820,168360,19,11 ,15,9629,692648,1,1 ,16,820,168368,19,12 ,15,9630,692656,1,1 ,16,820,168376,19,10 ,15,9631,692664,1,1 ,16,820,168384,21,9 ,15,9632,692672,1,1 ,17,923,10129860,40,0 ,17,923,6459844,32,0 ,17,923,9605572,32,0 ,16,820,168392,19,11 ,15,9633,692680,1,1 ,16,820,168400,19,9 ,15,9634,692688,1,1 ,16,820,168408,21,10 ,15,9635,692696,1,1 ,16,820,168416,19,8 ,15,9636,692704,1,1 ,16,820,168424,21,8 ,15,9637,692712,1,1 ,16,820,168432,22,10 ,15,9638,692720,1,1 ,16,820,168440,19,8 ,15,9639,692728,1,1 ,16,820,168448,19,12 ,15,9640,692736,1,1 ,45,15153,4362756,24,0 ,17,923,7508484,40,0 ,17,923,6984196,24,0 ,44,15152,168452,32,0 ,44,15152,3314180,24,0 ,16,820,168456,14,8 ,15,9641,692744,1,1 ,16,820,168464,19,8 ,15,9642,692752,1,1 ,16,820,168472,21,8 ,15,9643,692760,1,1 ,16,820,168480,19,10 ,15,9644,692768,1,1 ,16,820,168488,19,10 ,15,9645,692776,1,1 ,16,820,168496,21,17 ,15,9646,692784,1,1 ,16,820,168504,21,8 ,15,9647,692792,1,1 ,16,820,168512,21,9 ,15,9648,692800,1,1 ,45,15153,4887108,24,0 ,16,820,168520,13,8 ,15,9649,692808,1,1 ,16,820,168528,19,12 ,15,9650,692816,1,1 ,16,820,168536,19,9 ,15,9651,692824,1,1 ,16,820,168544,19,11 ,15,9652,692832,1,1 ,16,820,168552,21,8 ,15,9653,692840,1,1 ,16,820,168560,19,11 ,15,9654,692848,1,1 ,16,820,168568,19,11 ,15,9655,692856,1,1 ,16,820,168576,19,8 ,15,9656,692864,1,1 ,20,15385,692866,12,0 ,17,923,8032900,48,0 ,44,15152,692868,40,0 ,16,820,168584,21,22 ,15,9657,692872,1,1 ,16,820,168592,19,13 ,15,9658,692880,1,1 ,16,820,168600,19,8 ,15,9659,692888,1,1 ,16,820,168608,19,8 ,15,9660,692896,1,1 ,16,820,168616,19,12 ,15,9661,692904,1,1 ,16,820,168624,19,8 ,15,9662,692912,1,1 ,16,820,168632,19,8 ,15,9663,692920,1,1 ,16,820,168640,19,8 ,15,9664,692928,1,1 ,17,923,9605828,16,0 ,17,923,6984388,24,0 ,17,923,6460100,32,0 ,44,15152,1741508,48,0 ,44,15152,3314372,24,0 ,44,15152,3838660,48,0 ,45,15153,4362948,24,0 ,45,15153,5411524,32,0 ,17,923,8557252,40,0 ,16,820,168648,20,11 ,15,9665,692936,1,1 ,16,820,168656,14,8 ,15,9666,692944,1,1 ,16,820,168664,19,8 ,15,9667,692952,1,1 ,16,820,168672,13,8 ,15,9668,692960,1,1 ,20,15386,692962,496,0 ,16,820,168680,13,8 ,15,9669,692968,1,1 ,16,820,168688,21,12 ,15,9670,692976,1,1 ,16,820,168696,19,8 ,15,9671,692984,1,1 ,16,820,168704,19,8 ,15,9672,692992,1,1 ,20,19712,10654466,112,0 ,17,923,10130180,16,0 ,44,15152,168708,16,0 ,45,15153,4887300,16,0 ,16,820,168712,21,8 ,15,9673,693000,1,1 ,16,820,168720,21,8 ,15,9674,693008,1,1 ,16,820,168728,19,8 ,15,9675,693016,1,1 ,16,820,168736,19,12 ,15,9676,693024,1,1 ,20,24534,23761698,76,0 ,16,820,168744,19,11 ,15,9677,693032,1,1 ,16,820,168752,21,9 ,15,9678,693040,1,1 ,16,820,168760,19,8 ,15,9679,693048,1,1 ,16,820,168768,19,8 ,15,9680,693056,1,1 ,20,16177,2790210,176,0 ,17,923,9605956,40,0 ,17,923,7508804,32,0 ,16,820,168776,19,8 ,15,9681,693064,1,1 ,16,820,168784,19,8 ,15,9682,693072,1,1 ,16,820,168792,13,8 ,15,9683,693080,1,1 ,16,820,168800,19,10 ,15,9684,693088,1,1 ,20,23025,20091746,112,0 ,20,25715,26907490,256,0 ,20,22314,18518882,128,0 ,16,820,168808,21,8 ,15,9685,693096,1,1 ,16,820,168816,19,8 ,15,9686,693104,1,1 ,16,820,168824,14,8 ,15,9687,693112,1,1 ,16,820,168832,14,8 ,15,9688,693120,1,1 ,17,923,10130308,40,0 ,17,923,6984580,24,0 ,44,15152,2265988,24,0 ,44,15152,168836,56,0 ,44,15152,3314564,32,0 ,45,15153,4363140,24,0 ,45,15153,4887428,40,0 ,17,923,9081732,24,0 ,16,820,168840,21,9 ,15,9689,693128,1,1 ,16,820,168848,21,8 ,15,9690,693136,1,1 ,16,820,168856,19,8 ,15,9691,693144,1,1 ,16,820,168864,19,8 ,15,9692,693152,1,1 ,20,22722,19567522,192,0 ,16,820,168872,13,8 ,15,9693,693160,1,1 ,16,820,168880,19,8 ,15,9694,693168,1,1 ,16,820,168888,13,8 ,15,9695,693176,1,1 ,16,820,168896,13,8 ,15,9696,693184,1,1 ,20,18668,8557506,44,0 ,45,15153,5411780,24,0 ,17,923,6460356,40,0 ,44,15152,693188,24,0 ,16,820,168904,25,10 ,15,9697,693192,1,1 ,16,820,168912,21,9 ,15,9698,693200,1,1 ,16,820,168920,19,8 ,15,9699,693208,1,1 ,16,820,168928,19,12 ,15,9700,693216,1,1 ,16,820,168936,20,8 ,15,9701,693224,1,1 ,16,820,168944,21,8 ,15,9702,693232,1,1 ,16,820,168952,13,8 ,15,9703,693240,1,1 ,16,820,168960,19,8 ,15,9704,693248,1,1 ,17,923,8557572,32,0 ,17,923,8033284,56,0 ,16,820,168968,19,8 ,15,9705,693256,1,1 ,16,820,168976,20,8 ,15,9706,693264,1,1 ,16,820,168984,19,8 ,15,9707,693272,1,1 ,16,820,168992,20,8 ,15,9708,693280,1,1 ,16,820,169000,19,10 ,15,9709,693288,1,1 ,16,820,169008,25,9 ,15,9710,693296,1,1 ,16,820,169016,19,8 ,15,9711,693304,1,1 ,16,820,169024,19,8 ,15,9712,693312,1,1 ,17,923,9081924,64,0 ,17,923,7509060,48,0 ,17,923,6984772,56,0 ,44,15152,2266180,56,0 ,44,15152,1741892,24,0 ,44,15152,3839044,152,0 ,45,15153,4363332,32,0 ,16,820,169032,21,12 ,15,9713,693320,1,1 ,16,820,169040,21,10 ,15,9714,693328,1,1 ,16,820,169048,19,8 ,15,9715,693336,1,1 ,16,820,169056,20,10 ,15,9716,693344,1,1 ,16,820,169064,19,8 ,15,9717,693352,1,1 ,16,820,169072,21,16 ,15,9718,693360,1,1 ,16,820,169080,21,10 ,15,9719,693368,1,1 ,16,820,169088,21,9 ,15,9720,693376,1,1 ,17,923,9606276,32,0 ,44,15152,693380,32,0 ,44,15152,3314820,24,0 ,45,15153,5411972,32,0 ,16,820,169096,19,10 ,15,9721,693384,1,1 ,16,820,169104,19,12 ,15,9722,693392,1,1 ,16,820,169112,19,8 ,15,9723,693400,1,1 ,16,820,169120,19,13 ,15,9724,693408,1,1 ,16,820,169128,19,8 ,15,9725,693416,1,1 ,16,820,169136,19,15 ,15,9726,693424,1,1 ,16,820,169144,19,8 ,15,9727,693432,1,1 ,16,820,169152,19,12 ,15,9728,693440,1,1 ,20,24946,24810690,92,0 ,17,923,10130628,24,0 ,45,15153,4887748,24,0 ,16,820,169160,19,9 ,15,9729,693448,1,1 ,16,820,169168,19,8 ,15,9730,693456,1,1 ,16,820,169176,19,8 ,15,9731,693464,1,1 ,16,820,169184,23,9 ,15,9732,693472,1,1 ,20,15235,169186,112,0 ,20,26137,27956450,704,0 ,16,820,169192,19,8 ,15,9733,693480,1,1 ,16,820,169200,19,8 ,15,9734,693488,1,1 ,16,820,169208,13,8 ,15,9735,693496,1,1 ,16,820,169216,19,9 ,15,9736,693504,1,1 ,17,923,8557828,24,0 ,17,923,6460676,40,0 ,44,15152,2790660,40,0 ,44,15152,1742084,56,0 ,16,820,169224,19,9 ,15,9737,693512,1,1 ,16,820,169232,17,8 ,15,9738,693520,1,1 ,16,820,169240,19,11 ,15,9739,693528,1,1 ,16,820,169248,19,9 ,15,9740,693536,1,1 ,20,18669,8557858,128,0 ,16,820,169256,19,9 ,15,9741,693544,1,1 ,16,820,169264,19,9 ,15,9742,693552,1,1 ,16,820,169272,19,12 ,15,9743,693560,1,1 ,16,820,169280,19,8 ,15,9744,693568,1,1 ,45,15153,4363588,24,0 ,44,15152,169284,64,0 ,44,15152,3315012,56,0 ,16,820,169288,17,8 ,15,9745,693576,1,1 ,16,820,169296,19,9 ,15,9746,693584,1,1 ,16,820,169304,13,8 ,15,9747,693592,1,1 ,16,820,169312,17,8 ,15,9748,693600,1,1 ,16,820,169320,20,10 ,15,9749,693608,1,1 ,16,820,169328,19,12 ,15,9750,693616,1,1 ,16,820,169336,13,8 ,15,9751,693624,1,1 ,16,820,169344,19,8 ,15,9752,693632,1,1 ,20,24535,23762306,68,0 ,17,923,10130820,24,0 ,44,15152,693636,32,0 ,45,15153,4887940,16,0 ,45,15153,5412228,24,0 ,17,923,9606532,32,0 ,16,820,169352,21,8 ,15,9753,693640,1,1 ,16,820,169360,13,8 ,15,9754,693648,1,1 ,16,820,169368,21,8 ,15,9755,693656,1,1 ,16,820,169376,19,8 ,15,9756,693664,1,1 ,16,820,169384,21,8 ,15,9757,693672,1,1 ,16,820,169392,13,8 ,15,9758,693680,1,1 ,16,820,169400,22,15 ,15,9759,693688,1,1 ,16,820,169408,20,8 ,15,9760,693696,1,1 ,20,20001,11179458,244,0 ,17,923,8558020,80,0 ,17,923,7509444,64,0 ,17,923,8033732,48,0 ,16,820,169416,13,8 ,15,9761,693704,1,1 ,16,820,169424,21,12 ,15,9762,693712,1,1 ,16,820,169432,21,8 ,15,9763,693720,1,1 ,16,820,169440,21,8 ,15,9764,693728,1,1 ,16,820,169448,19,11 ,15,9765,693736,1,1 ,16,820,169456,19,8 ,15,9766,693744,1,1 ,16,820,169464,19,8 ,15,9767,693752,1,1 ,16,820,169472,19,8 ,15,9768,693760,1,1 ,45,15153,4888068,16,0 ,17,923,6985220,48,0 ,44,15152,2266628,120,0 ,45,15153,4363780,32,0 ,16,820,169480,21,8 ,15,9769,693768,1,1 ,16,820,169488,20,8 ,15,9770,693776,1,1 ,16,820,169496,19,9 ,15,9771,693784,1,1 ,16,820,169504,13,8 ,15,9772,693792,1,1 ,20,20977,15373858,12,0 ,16,820,169512,19,10 ,15,9773,693800,1,1 ,16,820,169520,19,10 ,15,9774,693808,1,1 ,16,820,169528,19,11 ,15,9775,693816,1,1 ,16,820,169536,20,8 ,15,9776,693824,1,1 ,20,24380,23238210,244,0 ,17,923,10131012,40,0 ,17,923,6460996,32,0 ,44,15152,2790980,24,0 ,45,15153,5412420,160,0 ,17,923,9082436,56,0 ,16,820,169544,19,10 ,15,9777,693832,1,1 ,16,820,169552,19,8 ,15,9778,693840,1,1 ,16,820,169560,13,8 ,15,9779,693848,1,1 ,16,820,169568,19,8 ,15,9780,693856,1,1 ,16,820,169576,21,10 ,15,9781,693864,1,1 ,16,820,169584,21,8 ,15,9782,693872,1,1 ,16,820,169592,21,8 ,15,9783,693880,1,1 ,16,820,169600,21,8 ,15,9784,693888,1,1 ,20,20978,15373954,24,0 ,20,19713,10655362,12,0 ,17,923,9606788,32,0 ,44,15152,693892,32,0 ,45,15153,4888196,32,0 ,16,820,169608,19,12 ,15,9785,693896,1,1 ,16,820,169616,19,8 ,15,9786,693904,1,1 ,16,820,169624,21,8 ,15,9787,693912,1,1 ,16,820,169632,13,8 ,15,9788,693920,1,1 ,20,18495,8033954,68,0 ,16,820,169640,21,10 ,15,9789,693928,1,1 ,16,820,169648,20,8 ,15,9790,693936,1,1 ,16,820,169656,19,11 ,15,9791,693944,1,1 ,16,820,169664,13,8 ,15,9792,693952,1,1 ,20,22064,17995458,88,0 ,20,18973,9082562,84,0 ,44,15152,1742532,24,0 ,16,820,169672,21,8 ,15,9793,693960,1,1 ,16,820,169680,13,8 ,15,9794,693968,1,1 ,16,820,169688,21,10 ,15,9795,693976,1,1 ,16,820,169696,20,8 ,15,9796,693984,1,1 ,20,23026,20092642,52,0 ,20,19714,10655458,396,0 ,16,820,169704,20,8 ,15,9797,693992,1,1 ,16,820,169712,21,11 ,15,9798,694000,1,1 ,16,820,169720,19,11 ,15,9799,694008,1,1 ,16,820,169728,19,12 ,15,9800,694016,1,1 ,45,15153,4364036,16,0 ,44,15152,2791172,56,0 ,44,15152,3315460,32,0 ,16,820,169736,21,8 ,15,9801,694024,1,1 ,16,820,169744,13,8 ,15,9802,694032,1,1 ,16,820,169752,21,10 ,15,9803,694040,1,1 ,16,820,169760,21,8 ,15,9804,694048,1,1 ,16,820,169768,13,8 ,15,9805,694056,1,1 ,16,820,169776,21,10 ,15,9806,694064,1,1 ,16,820,169784,19,12 ,15,9807,694072,1,1 ,16,820,169792,21,8 ,15,9808,694080,1,1 ,20,20979,15374146,208,0 ,17,923,8034116,56,0 ,17,923,6461252,32,0 ,44,15152,169796,56,0 ,16,820,169800,13,8 ,15,9809,694088,1,1 ,16,820,169808,21,10 ,15,9810,694096,1,1 ,16,820,169816,19,9 ,15,9811,694104,1,1 ,16,820,169824,19,12 ,15,9812,694112,1,1 ,20,22315,18519906,212,0 ,16,820,169832,21,8 ,15,9813,694120,1,1 ,16,820,169840,13,8 ,15,9814,694128,1,1 ,16,820,169848,19,8 ,15,9815,694136,1,1 ,16,820,169856,21,8 ,15,9816,694144,1,1 ,17,923,10131332,40,0 ,17,923,6985604,24,0 ,44,15152,1742724,272,0 ,44,15152,694148,592,0 ,45,15153,4364164,40,0 ,45,15153,4888452,32,0 ,17,923,9607044,40,0 ,16,820,169864,21,8 ,15,9817,694152,1,1 ,16,820,169872,19,11 ,15,9818,694160,1,1 ,16,820,169880,20,8 ,15,9819,694168,1,1 ,16,820,169888,21,9 ,15,9820,694176,1,1 ,20,24536,23762850,296,0 ,20,24947,24811426,84,0 ,16,820,169896,19,8 ,15,9821,694184,1,1 ,16,820,169904,14,8 ,15,9822,694192,1,1 ,16,820,169912,13,8 ,15,9823,694200,1,1 ,16,820,169920,20,8 ,15,9824,694208,1,1 ,17,923,7509956,48,0 ,16,820,169928,19,8 ,15,9825,694216,1,1 ,16,820,169936,13,8 ,15,9826,694224,1,1 ,16,820,169944,19,10 ,15,9827,694232,1,1 ,16,820,169952,19,9 ,15,9828,694240,1,1 ,16,820,169960,13,8 ,15,9829,694248,1,1 ,16,820,169968,19,9 ,15,9830,694256,1,1 ,16,820,169976,19,9 ,15,9831,694264,1,1 ,16,820,169984,19,8 ,15,9832,694272,1,1 ,17,923,9082884,32,0 ,44,15152,3315716,16,0 ,16,820,169992,19,8 ,15,9833,694280,1,1 ,16,820,170000,19,8 ,15,9834,694288,1,1 ,16,820,170008,19,11 ,15,9835,694296,1,1 ,16,820,170016,19,8 ,15,9836,694304,1,1 ,20,20881,14325794,4544,0 ,16,820,170024,21,11 ,15,9837,694312,1,1 ,16,820,170032,19,8 ,15,9838,694320,1,1 ,16,820,170040,19,8 ,15,9839,694328,1,1 ,16,820,170048,17,8 ,15,9840,694336,1,1 ,17,923,8558660,40,0 ,17,923,6985796,24,0 ,17,923,6461508,24,0 ,16,820,170056,13,8 ,15,9841,694344,1,1 ,16,820,170064,19,9 ,15,9842,694352,1,1 ,16,820,170072,19,15 ,15,9843,694360,1,1 ,16,820,170080,19,9 ,15,9844,694368,1,1 ,20,15236,170082,224,0 ,16,820,170088,19,8 ,15,9845,694376,1,1 ,16,820,170096,17,8 ,15,9846,694384,1,1 ,16,820,170104,17,8 ,15,9847,694392,1,1 ,16,820,170112,17,8 ,15,9848,694400,1,1 ,20,23745,21665922,200,0 ,20,23027,20093058,140,0 ,45,15153,4888708,32,0 ,44,15152,3315844,24,0 ,16,820,170120,13,8 ,15,9849,694408,1,1 ,16,820,170128,19,8 ,15,9850,694416,1,1 ,16,820,170136,13,8 ,15,9851,694424,1,1 ,16,820,170144,19,8 ,15,9852,694432,1,1 ,20,20761,13801634,144,0 ,16,820,170152,19,8 ,15,9853,694440,1,1 ,16,820,170160,19,11 ,15,9854,694448,1,1 ,16,820,170168,19,8 ,15,9855,694456,1,1 ,16,820,170176,21,9 ,15,9856,694464,1,1 ,20,18496,8034498,704,0 ,20,16178,2791618,160,0 ,17,923,10131652,48,0 ,44,15152,2791620,112,0 ,45,15153,4364484,88,0 ,17,923,9607364,24,0 ,16,820,170184,21,8 ,15,9857,694472,1,1 ,16,820,170192,19,8 ,15,9858,694480,1,1 ,16,820,170200,14,8 ,15,9859,694488,1,1 ,16,820,170208,17,8 ,15,9860,694496,1,1 ,16,820,170216,13,8 ,15,9861,694504,1,1 ,16,820,170224,19,8 ,15,9862,694512,1,1 ,16,820,170232,19,10 ,15,9863,694520,1,1 ,16,820,170240,13,8 ,15,9864,694528,1,1 ,17,923,9083140,32,0 ,17,923,6985988,32,0 ,17,923,6461700,24,0 ,44,15152,170244,24,0 ,44,15152,3840260,80,0 ,17,923,8034564,40,0 ,16,820,170248,13,8 ,15,9865,694536,1,1 ,16,820,170256,13,8 ,15,9866,694544,1,1 ,16,820,170264,19,9 ,15,9867,694552,1,1 ,16,820,170272,21,9 ,15,9868,694560,1,1 ,20,18670,8558882,136,0 ,16,820,170280,19,20 ,15,9869,694568,1,1 ,16,820,170288,20,8 ,15,9870,694576,1,1 ,16,820,170296,21,9 ,15,9871,694584,1,1 ,16,820,170304,19,8 ,15,9872,694592,1,1 ,20,17769,6461762,116,0 ,44,15152,3316036,24,0 ,17,923,7510340,48,0 ,44,15152,1218884,40,0 ,16,820,170312,13,8 ,15,9873,694600,1,1 ,16,820,170320,19,8 ,15,9874,694608,1,1 ,16,820,170328,21,15 ,15,9875,694616,1,1 ,16,820,170336,20,11 ,15,9876,694624,1,1 ,20,18974,9083234,44,0 ,16,820,170344,19,9 ,15,9877,694632,1,1 ,16,820,170352,13,8 ,15,9878,694640,1,1 ,16,820,170360,21,9 ,15,9879,694648,1,1 ,16,820,170368,19,14 ,15,9880,694656,1,1 ,20,22065,17996162,100,0 ,17,923,9607556,24,0 ,45,15153,4888964,40,0 ,17,923,8558980,24,0 ,16,820,170376,19,8 ,15,9881,694664,1,1 ,16,820,170384,19,8 ,15,9882,694672,1,1 ,16,820,170392,13,8 ,15,9883,694680,1,1 ,16,820,170400,19,9 ,15,9884,694688,1,1 ,20,22723,19569058,240,0 ,16,820,170408,13,8 ,15,9885,694696,1,1 ,16,820,170416,19,9 ,15,9886,694704,1,1 ,16,820,170424,25,10 ,15,9887,694712,1,1 ,16,820,170432,19,8 ,15,9888,694720,1,1 ,44,15152,170436,64,0 ,17,923,6461892,24,0 ,44,15152,2267588,32,0 ,16,820,170440,21,10 ,15,9889,694728,1,1 ,16,820,170448,13,8 ,15,9890,694736,1,1 ,16,820,170456,21,8 ,15,9891,694744,1,1 ,16,820,170464,21,8 ,15,9892,694752,1,1 ,20,15645,1219042,12,0 ,16,820,170472,21,8 ,15,9893,694760,1,1 ,16,820,170480,13,8 ,15,9894,694768,1,1 ,16,820,170488,19,12 ,15,9895,694776,1,1 ,16,820,170496,21,8 ,15,9896,694784,1,1 ,17,923,9083396,32,0 ,17,923,6986244,24,0 ,44,15152,3316228,16,0 ,16,820,170504,19,8 ,15,9897,694792,1,1 ,16,820,170512,21,12 ,15,9898,694800,1,1 ,16,820,170520,21,9 ,15,9899,694808,1,1 ,16,820,170528,21,9 ,15,9900,694816,1,1 ,16,820,170536,13,8 ,15,9901,694824,1,1 ,16,820,170544,20,11 ,15,9902,694832,1,1 ,16,820,170552,19,9 ,15,9903,694840,1,1 ,16,820,170560,13,8 ,15,9904,694848,1,1 ,20,15646,1219138,36,0 ,20,24948,24812098,36,0 ,17,923,10132036,32,0 ,17,923,8034884,24,0 ,17,923,8559172,32,0 ,17,923,9607748,32,0 ,16,820,170568,14,8 ,15,9905,694856,1,1 ,16,820,170576,19,16 ,15,9906,694864,1,1 ,16,820,170584,21,10 ,15,9907,694872,1,1 ,16,820,170592,19,9 ,15,9908,694880,1,1 ,20,21336,15899234,416,0 ,16,820,170600,19,9 ,15,9909,694888,1,1 ,16,820,170608,19,8 ,15,9910,694896,1,1 ,16,820,170616,19,8 ,15,9911,694904,1,1 ,16,820,170624,19,8 ,15,9912,694912,1,1 ,20,15818,1743490,12,0 ,44,15152,3316356,48,0 ,17,923,6462084,40,0 ,44,15152,1219204,32,0 ,16,820,170632,13,8 ,15,9913,694920,1,1 ,16,820,170640,19,9 ,15,9914,694928,1,1 ,16,820,170648,13,8 ,15,9915,694936,1,1 ,16,820,170656,20,8 ,15,9916,694944,1,1 ,16,820,170664,20,8 ,15,9917,694952,1,1 ,16,820,170672,20,8 ,15,9918,694960,1,1 ,16,820,170680,19,11 ,15,9919,694968,1,1 ,16,820,170688,21,11 ,15,9920,694976,1,1 ,20,18975,9083586,164,0 ,20,26306,28482242,288,0 ,45,15153,4889284,16,0 ,17,923,7510724,24,0 ,17,923,6986436,80,0 ,44,15152,2267844,40,0 ,16,820,170696,21,8 ,15,9921,694984,1,1 ,16,820,170704,19,8 ,15,9922,694992,1,1 ,16,820,170712,19,10 ,15,9923,695000,1,1 ,16,820,170720,21,8 ,15,9924,695008,1,1 ,20,15819,1743586,1116,0 ,16,820,170728,21,8 ,15,9925,695016,1,1 ,16,820,170736,19,8 ,15,9926,695024,1,1 ,16,820,170744,19,8 ,15,9927,695032,1,1 ,16,820,170752,13,8 ,15,9928,695040,1,1 ,17,923,9083652,24,0 ,17,923,8035076,80,0 ,16,820,170760,19,8 ,15,9929,695048,1,1 ,16,820,170768,19,11 ,15,9930,695056,1,1 ,16,820,170776,17,8 ,15,9931,695064,1,1 ,16,820,170784,19,9 ,15,9932,695072,1,1 ,16,820,170792,21,10 ,15,9933,695080,1,1 ,16,820,170800,21,8 ,15,9934,695088,1,1 ,16,820,170808,19,12 ,15,9935,695096,1,1 ,16,820,170816,19,10 ,15,9936,695104,1,1 ,17,923,10132292,40,0 ,45,15153,4889412,16,0 ,45,15153,5413700,16,0 ,17,923,8559428,40,0 ,17,923,9608004,24,0 ,16,820,170824,13,8 ,15,9937,695112,1,1 ,16,820,170832,19,8 ,15,9938,695120,1,1 ,16,820,170840,19,8 ,15,9939,695128,1,1 ,16,820,170848,21,12 ,15,9940,695136,1,1 ,20,15647,1219426,12,0 ,20,25716,26909538,256,0 ,20,24949,24812386,100,0 ,16,820,170856,21,8 ,15,9941,695144,1,1 ,16,820,170864,20,8 ,15,9942,695152,1,1 ,16,820,170872,21,10 ,15,9943,695160,1,1 ,16,820,170880,19,14 ,15,9944,695168,1,1 ,45,15153,4365188,144,0 ,17,923,7510916,56,0 ,44,15152,1219460,40,0 ,44,15152,3840900,24,0 ,16,820,170888,19,9 ,15,9945,695176,1,1 ,16,820,170896,19,8 ,15,9946,695184,1,1 ,16,820,170904,20,11 ,15,9947,695192,1,1 ,16,820,170912,17,8 ,15,9948,695200,1,1 ,20,24190,22715298,132,0 ,20,23372,20618146,492,0 ,16,820,170920,17,8 ,15,9949,695208,1,1 ,16,820,170928,13,8 ,15,9950,695216,1,1 ,16,820,170936,21,8 ,15,9951,695224,1,1 ,16,820,170944,17,9 ,15,9952,695232,1,1 ,20,15648,1219522,176,0 ,17,923,9083844,48,0 ,17,923,6462404,32,0 ,44,15152,170948,24,0 ,45,15153,4889540,32,0 ,45,15153,5413828,32,0 ,16,820,170952,19,8 ,15,9953,695240,1,1 ,16,820,170960,13,8 ,15,9954,695248,1,1 ,16,820,170968,20,18 ,15,9955,695256,1,1 ,16,820,170976,19,9 ,15,9956,695264,1,1 ,20,19408,10132450,232,0 ,16,820,170984,19,8 ,15,9957,695272,1,1 ,16,820,170992,19,8 ,15,9958,695280,1,1 ,16,820,171000,19,9 ,15,9959,695288,1,1 ,16,820,171008,19,8 ,15,9960,695296,1,1 ,17,923,9608196,32,0 ,44,15152,2268164,32,0 ,44,15152,3316740,48,0 ,16,820,171016,21,15 ,15,9961,695304,1,1 ,16,820,171024,21,9 ,15,9962,695312,1,1 ,16,820,171032,19,9 ,15,9963,695320,1,1 ,16,820,171040,21,12 ,15,9964,695328,1,1 ,16,820,171048,14,8 ,15,9965,695336,1,1 ,16,820,171056,13,8 ,15,9966,695344,1,1 ,16,820,171064,19,10 ,15,9967,695352,1,1 ,16,820,171072,21,13 ,15,9968,695360,1,1 ,44,15152,3841092,32,0 ,44,15152,2792516,72,0 ,16,820,171080,19,8 ,15,9969,695368,1,1 ,16,820,171088,13,8 ,15,9970,695376,1,1 ,16,820,171096,13,8 ,15,9971,695384,1,1 ,16,820,171104,19,9 ,15,9972,695392,1,1 ,16,820,171112,13,8 ,15,9973,695400,1,1 ,16,820,171120,13,8 ,15,9974,695408,1,1 ,16,820,171128,19,10 ,15,9975,695416,1,1 ,16,820,171136,19,10 ,15,9976,695424,1,1 ,20,25378,25861250,388,0 ,17,923,10132612,32,0 ,44,15152,171140,24,0 ,17,923,8559748,32,0 ,16,820,171144,21,10 ,15,9977,695432,1,1 ,16,820,171152,19,8 ,15,9978,695440,1,1 ,16,820,171160,21,12 ,15,9979,695448,1,1 ,16,820,171168,21,16 ,15,9980,695456,1,1 ,20,22066,17996962,880,0 ,16,820,171176,19,8 ,15,9981,695464,1,1 ,16,820,171184,21,9 ,15,9982,695472,1,1 ,16,820,171192,21,10 ,15,9983,695480,1,1 ,16,820,171200,13,8 ,15,9984,695488,1,1 ,45,15153,5414084,56,0 ,17,923,6462660,32,0 ,44,15152,1219780,24,0 ,45,15153,4889796,32,0 ,16,820,171208,19,9 ,15,9985,695496,1,1 ,16,820,171216,19,10 ,15,9986,695504,1,1 ,16,820,171224,19,9 ,15,9987,695512,1,1 ,16,820,171232,13,8 ,15,9988,695520,1,1 ,20,23028,20094178,64,0 ,20,16718,3841250,12,0 ,20,17770,6462690,1200,0 ,16,820,171240,20,16 ,15,9989,695528,1,1 ,16,820,171248,19,8 ,15,9990,695536,1,1 ,16,820,171256,20,20 ,15,9991,695544,1,1 ,16,820,171264,21,12 ,15,9992,695552,1,1 ,17,923,9608452,24,0 ,44,15152,2268420,24,0 ,16,820,171272,19,22 ,15,9993,695560,1,1 ,16,820,171280,13,8 ,15,9994,695568,1,1 ,16,820,171288,14,8 ,15,9995,695576,1,1 ,16,820,171296,20,18 ,15,9996,695584,1,1 ,20,20762,13802786,820,0 ,16,820,171304,19,8 ,15,9997,695592,1,1 ,16,820,171312,20,19 ,15,9998,695600,1,1 ,16,820,171320,19,10 ,15,9999,695608,1,1 ,16,820,171328,20,16 ,15,10000,695616,1,1 ,20,16719,3841346,204,0 ,17,923,9084228,24,0 ,17,923,7511364,56,0 ,17,923,6987076,24,0 ,44,15152,171332,16,0 ,44,15152,3841348,32,0 ,16,820,171336,19,9 ,15,10001,695624,1,1 ,16,820,171344,20,17 ,15,10002,695632,1,1 ,16,820,171352,21,8 ,15,10003,695640,1,1 ,16,820,171360,19,9 ,15,10004,695648,1,1 ,20,20002,11181410,404,0 ,20,18671,8559970,172,0 ,16,820,171368,19,8 ,15,10005,695656,1,1 ,16,820,171376,25,8 ,15,10006,695664,1,1 ,16,820,171384,20,17 ,15,10007,695672,1,1 ,16,820,171392,21,9 ,15,10008,695680,1,1 ,17,923,10132868,40,0 ,44,15152,1219972,64,0 ,44,15152,3317124,16,0 ,17,923,8035716,48,0 ,17,923,8560004,40,0 ,16,820,171400,20,10 ,15,10009,695688,1,1 ,16,820,171408,21,11 ,15,10010,695696,1,1 ,16,820,171416,20,17 ,15,10011,695704,1,1 ,16,820,171424,25,8 ,15,10012,695712,1,1 ,16,820,171432,19,9 ,15,10013,695720,1,1 ,16,820,171440,19,8 ,15,10014,695728,1,1 ,16,820,171448,19,9 ,15,10015,695736,1,1 ,16,820,171456,19,8 ,15,10016,695744,1,1 ,20,20980,15375810,76,0 ,20,25160,25337282,104,0 ,20,16179,2792898,160,0 ,17,923,9608644,40,0 ,17,923,6462916,40,0 ,44,15152,2268612,24,0 ,44,15152,171460,24,0 ,45,15153,4890052,72,0 ,16,820,171464,21,8 ,15,10017,695752,1,1 ,16,820,171472,20,10 ,15,10018,695760,1,1 ,16,820,171480,25,8 ,15,10019,695768,1,1 ,16,820,171488,20,20 ,15,10020,695776,1,1 ,20,24381,23240162,244,0 ,16,820,171496,21,12 ,15,10021,695784,1,1 ,16,820,171504,21,9 ,15,10022,695792,1,1 ,16,820,171512,21,13 ,15,10023,695800,1,1 ,16,820,171520,17,8 ,15,10024,695808,1,1 ,20,22316,18521602,208,0 ,17,923,9084420,40,0 ,17,923,6987268,24,0 ,44,15152,3317252,16,0 ,16,820,171528,21,8 ,15,10025,695816,1,1 ,16,820,171536,19,9 ,15,10026,695824,1,1 ,16,820,171544,17,8 ,15,10027,695832,1,1 ,16,820,171552,21,14 ,15,10028,695840,1,1 ,16,820,171560,21,14 ,15,10029,695848,1,1 ,16,820,171568,19,8 ,15,10030,695856,1,1 ,16,820,171576,17,8 ,15,10031,695864,1,1 ,16,820,171584,21,29 ,15,10032,695872,1,1 ,44,15152,3841604,40,0 ,16,820,171592,23,14 ,15,10033,695880,1,1 ,16,820,171600,21,11 ,15,10034,695888,1,1 ,16,820,171608,19,10 ,15,10035,695896,1,1 ,16,820,171616,19,10 ,15,10036,695904,1,1 ,16,820,171624,17,8 ,15,10037,695912,1,1 ,16,820,171632,17,8 ,15,10038,695920,1,1 ,16,820,171640,19,17 ,15,10039,695928,1,1 ,16,820,171648,19,10 ,15,10040,695936,1,1 ,20,24950,24813186,136,0 ,45,15153,5414532,56,0 ,44,15152,2793092,104,0 ,44,15152,2268804,24,0 ,44,15152,171652,40,0 ,44,15152,3317380,24,0 ,16,820,171656,19,14 ,15,10041,695944,1,1 ,16,820,171664,20,10 ,15,10042,695952,1,1 ,16,820,171672,19,10 ,15,10043,695960,1,1 ,16,820,171680,17,8 ,15,10044,695968,1,1 ,16,820,171688,19,8 ,15,10045,695976,1,1 ,16,820,171696,21,11 ,15,10046,695984,1,1 ,16,820,171704,19,23 ,15,10047,695992,1,1 ,16,820,171712,21,12 ,15,10048,696000,1,1 ,20,23746,21667522,24,0 ,17,923,10133188,24,0 ,17,923,6987460,24,0 ,17,923,8560324,32,0 ,16,820,171720,21,15 ,15,10049,696008,1,1 ,16,820,171728,17,8 ,15,10050,696016,1,1 ,16,820,171736,17,8 ,15,10051,696024,1,1 ,16,820,171744,17,8 ,15,10052,696032,1,1 ,20,23029,20094690,196,0 ,20,21562,16424674,328,0 ,16,820,171752,19,18 ,15,10053,696040,1,1 ,16,820,171760,13,8 ,15,10054,696048,1,1 ,16,820,171768,19,8 ,15,10055,696056,1,1 ,16,820,171776,13,8 ,15,10056,696064,1,1 ,17,923,9608964,32,0 ,17,923,7511812,56,0 ,17,923,6463236,48,0 ,17,923,8036100,32,0 ,16,820,171784,20,10 ,15,10057,696072,1,1 ,16,820,171792,19,10 ,15,10058,696080,1,1 ,16,820,171800,13,8 ,15,10059,696088,1,1 ,16,820,171808,25,10 ,15,10060,696096,1,1 ,16,820,171816,20,23 ,15,10061,696104,1,1 ,16,820,171824,19,19 ,15,10062,696112,1,1 ,16,820,171832,20,17 ,15,10063,696120,1,1 ,16,820,171840,25,19 ,15,10064,696128,1,1 ,17,923,9084740,64,0 ,44,15152,2268996,80,0 ,44,15152,3317572,24,0 ,16,820,171848,20,17 ,15,10065,696136,1,1 ,16,820,171856,19,9 ,15,10066,696144,1,1 ,16,820,171864,19,9 ,15,10067,696152,1,1 ,16,820,171872,23,8 ,15,10068,696160,1,1 ,20,15237,171874,2200,0 ,16,820,171880,20,8 ,15,10069,696168,1,1 ,16,820,171888,19,9 ,15,10070,696176,1,1 ,16,820,171896,21,8 ,15,10071,696184,1,1 ,16,820,171904,21,8 ,15,10072,696192,1,1 ,20,23747,21667714,140,0 ,20,21836,16949122,200,0 ,17,923,10133380,32,0 ,17,923,6987652,40,0 ,44,15152,1220484,32,0 ,44,15152,3841924,40,0 ,16,820,171912,21,9 ,15,10073,696200,1,1 ,16,820,171920,13,8 ,15,10074,696208,1,1 ,16,820,171928,20,10 ,15,10075,696216,1,1 ,16,820,171936,19,8 ,15,10076,696224,1,1 ,16,820,171944,19,8 ,15,10077,696232,1,1 ,16,820,171952,17,8 ,15,10078,696240,1,1 ,16,820,171960,17,8 ,15,10079,696248,1,1 ,16,820,171968,17,8 ,15,10080,696256,1,1 ,20,24191,22716354,88,0 ,17,923,8560580,24,0 ,44,15152,171972,16,0 ,16,820,171976,21,9 ,15,10081,696264,1,1 ,16,820,171984,21,8 ,15,10082,696272,1,1 ,16,820,171992,21,8 ,15,10083,696280,1,1 ,16,820,172000,13,8 ,15,10084,696288,1,1 ,20,18976,9084898,164,0 ,16,820,172008,14,8 ,15,10085,696296,1,1 ,16,820,172016,21,8 ,15,10086,696304,1,1 ,16,820,172024,21,8 ,15,10087,696312,1,1 ,16,820,172032,19,13 ,15,10088,696320,1,1 ,17,923,9609220,24,0 ,44,15152,1744900,64,0 ,44,15152,3317764,24,0 ,45,15153,4366340,16,0 ,45,15153,4890628,48,0 ,17,923,8036356,96,0 ,16,820,172040,19,8 ,15,10089,696328,1,1 ,16,820,172048,14,8 ,15,10090,696336,1,1 ,16,820,172056,21,9 ,15,10091,696344,1,1 ,16,820,172064,13,8 ,15,10092,696352,1,1 ,20,20981,15376418,1436,0 ,16,820,172072,13,8 ,15,10093,696360,1,1 ,16,820,172080,21,8 ,15,10094,696368,1,1 ,16,820,172088,21,8 ,15,10095,696376,1,1 ,16,820,172096,21,8 ,15,10096,696384,1,1 ,45,15153,5414980,16,0 ,44,15152,172100,64,0 ,16,820,172104,21,8 ,15,10097,696392,1,1 ,16,820,172112,14,8 ,15,10098,696400,1,1 ,16,820,172120,19,8 ,15,10099,696408,1,1 ,16,820,172128,21,8 ,15,10100,696416,1,1 ,16,820,172136,21,8 ,15,10101,696424,1,1 ,16,820,172144,21,8 ,15,10102,696432,1,1 ,16,820,172152,19,11 ,15,10103,696440,1,1 ,16,820,172160,19,11 ,15,10104,696448,1,1 ,17,923,10133636,24,0 ,17,923,6463620,56,0 ,44,15152,1220740,24,0 ,45,15153,4366468,24,0 ,17,923,8560772,96,0 ,16,820,172168,21,8 ,15,10105,696456,1,1 ,16,820,172176,21,8 ,15,10106,696464,1,1 ,16,820,172184,21,8 ,15,10107,696472,1,1 ,16,820,172192,21,8 ,15,10108,696480,1,1 ,16,820,172200,21,9 ,15,10109,696488,1,1 ,16,820,172208,21,8 ,15,10110,696496,1,1 ,16,820,172216,21,8 ,15,10111,696504,1,1 ,16,820,172224,19,9 ,15,10112,696512,1,1 ,17,923,9609412,40,0 ,17,923,7512260,24,0 ,17,923,6987972,40,0 ,44,15152,3317956,24,0 ,44,15152,3842244,40,0 ,45,15153,5415108,24,0 ,16,820,172232,19,9 ,15,10113,696520,1,1 ,16,820,172240,20,8 ,15,10114,696528,1,1 ,16,820,172248,17,8 ,15,10115,696536,1,1 ,16,820,172256,19,9 ,15,10116,696544,1,1 ,20,24537,23765218,284,0 ,16,820,172264,21,11 ,15,10117,696552,1,1 ,16,820,172272,21,9 ,15,10118,696560,1,1 ,16,820,172280,21,12 ,15,10119,696568,1,1 ,16,820,172288,21,10 ,15,10120,696576,1,1 ,20,25161,25338114,804,0 ,16,820,172296,20,15 ,15,10121,696584,1,1 ,16,820,172304,14,8 ,15,10122,696592,1,1 ,16,820,172312,19,11 ,15,10123,696600,1,1 ,16,820,172320,20,16 ,15,10124,696608,1,1 ,20,22724,19570978,76,0 ,16,820,172328,21,9 ,15,10125,696616,1,1 ,16,820,172336,21,9 ,15,10126,696624,1,1 ,16,820,172344,21,13 ,15,10127,696632,1,1 ,16,820,172352,20,10 ,15,10128,696640,1,1 ,20,15649,1220930,144,0 ,17,923,10133828,24,0 ,44,15152,1220932,120,0 ,45,15153,4366660,192,0 ,17,923,9085252,56,0 ,16,820,172360,21,9 ,15,10129,696648,1,1 ,16,820,172368,20,10 ,15,10130,696656,1,1 ,16,820,172376,17,8 ,15,10131,696664,1,1 ,16,820,172384,19,9 ,15,10132,696672,1,1 ,16,820,172392,21,8 ,15,10133,696680,1,1 ,16,820,172400,19,8 ,15,10134,696688,1,1 ,16,820,172408,21,10 ,15,10135,696696,1,1 ,16,820,172416,19,8 ,15,10136,696704,1,1 ,45,15153,5415300,56,0 ,17,923,7512452,32,0 ,44,15152,3318148,24,0 ,45,15153,4891012,32,0 ,16,820,172424,17,8 ,15,10137,696712,1,1 ,16,820,172432,19,9 ,15,10138,696720,1,1 ,16,820,172440,19,8 ,15,10139,696728,1,1 ,16,820,172448,19,8 ,15,10140,696736,1,1 ,16,820,172456,21,8 ,15,10141,696744,1,1 ,16,820,172464,19,12 ,15,10142,696752,1,1 ,16,820,172472,19,8 ,15,10143,696760,1,1 ,16,820,172480,13,8 ,15,10144,696768,1,1 ,44,15152,2269636,24,0 ,44,15152,2793924,112,0 ,16,820,172488,19,8 ,15,10145,696776,1,1 ,16,820,172496,14,8 ,15,10146,696784,1,1 ,16,820,172504,19,10 ,15,10147,696792,1,1 ,16,820,172512,19,10 ,15,10148,696800,1,1 ,16,820,172520,19,8 ,15,10149,696808,1,1 ,16,820,172528,13,8 ,15,10150,696816,1,1 ,16,820,172536,19,8 ,15,10151,696824,1,1 ,16,820,172544,19,8 ,15,10152,696832,1,1 ,17,923,10134020,32,0 ,17,923,6988292,40,0 ,44,15152,1745412,80,0 ,44,15152,3842564,72,0 ,17,923,9609732,16,0 ,16,820,172552,19,8 ,15,10153,696840,1,1 ,16,820,172560,19,8 ,15,10154,696848,1,1 ,16,820,172568,20,8 ,15,10155,696856,1,1 ,16,820,172576,19,8 ,15,10156,696864,1,1 ,16,820,172584,19,8 ,15,10157,696872,1,1 ,16,820,172592,21,8 ,15,10158,696880,1,1 ,16,820,172600,21,12 ,15,10159,696888,1,1 ,16,820,172608,19,8 ,15,10160,696896,1,1 ,44,15152,3318340,24,0 ,17,923,6464068,40,0 ,44,15152,172612,40,0 ,16,820,172616,19,11 ,15,10161,696904,1,1 ,16,820,172624,19,8 ,15,10162,696912,1,1 ,16,820,172632,19,11 ,15,10163,696920,1,1 ,16,820,172640,19,8 ,15,10164,696928,1,1 ,20,20217,12231266,4932,0 ,20,15387,696930,136,0 ,16,820,172648,19,11 ,15,10165,696936,1,1 ,16,820,172656,19,11 ,15,10166,696944,1,1 ,16,820,172664,19,11 ,15,10167,696952,1,1 ,16,820,172672,21,19 ,15,10168,696960,1,1 ,20,24192,22717058,272,0 ,17,923,9609860,32,0 ,17,923,7512708,32,0 ,44,15152,2269828,48,0 ,45,15153,4891268,16,0 ,16,820,172680,21,8 ,15,10169,696968,1,1 ,16,820,172688,21,12 ,15,10170,696976,1,1 ,16,820,172696,19,8 ,15,10171,696984,1,1 ,16,820,172704,19,8 ,15,10172,696992,1,1 ,16,820,172712,21,12 ,15,10173,697000,1,1 ,16,820,172720,17,8 ,15,10174,697008,1,1 ,16,820,172728,21,8 ,15,10175,697016,1,1 ,16,820,172736,13,8 ,15,10176,697024,1,1 ,20,18672,8561346,320,0 ,20,24951,24814274,96,0 ,20,16180,2794178,344,0 ,16,820,172744,19,8 ,15,10177,697032,1,1 ,16,820,172752,19,10 ,15,10178,697040,1,1 ,16,820,172760,19,11 ,15,10179,697048,1,1 ,16,820,172768,19,8 ,15,10180,697056,1,1 ,16,820,172776,20,8 ,15,10181,697064,1,1 ,16,820,172784,19,8 ,15,10182,697072,1,1 ,16,820,172792,19,8 ,15,10183,697080,1,1 ,16,820,172800,21,8 ,15,10184,697088,1,1 ,17,923,10134276,40,0 ,44,15152,3318532,24,0 ,45,15153,4891396,16,0 ,17,923,8037124,144,0 ,17,923,9085700,56,0 ,16,820,172808,19,8 ,15,10185,697096,1,1 ,16,820,172816,19,8 ,15,10186,697104,1,1 ,16,820,172824,14,8 ,15,10187,697112,1,1 ,16,820,172832,21,8 ,15,10188,697120,1,1 ,20,19409,10134306,628,0 ,16,820,172840,21,8 ,15,10189,697128,1,1 ,16,820,172848,14,8 ,15,10190,697136,1,1 ,16,820,172856,19,8 ,15,10191,697144,1,1 ,16,820,172864,19,8 ,15,10192,697152,1,1 ,20,19715,10658626,1668,0 ,45,15153,5415748,32,0 ,17,923,6988612,40,0 ,16,820,172872,19,8 ,15,10193,697160,1,1 ,16,820,172880,21,8 ,15,10194,697168,1,1 ,16,820,172888,21,15 ,15,10195,697176,1,1 ,16,820,172896,13,8 ,15,10196,697184,1,1 ,20,25717,26911586,584,0 ,16,820,172904,13,8 ,15,10197,697192,1,1 ,16,820,172912,21,14 ,15,10198,697200,1,1 ,16,820,172920,13,8 ,15,10199,697208,1,1 ,16,820,172928,21,10 ,15,10200,697216,1,1 ,20,22725,19571586,2208,0 ,17,923,9610116,96,0 ,17,923,7512964,32,0 ,17,923,6464388,40,0 ,44,15152,172932,32,0 ,45,15153,4891524,16,0 ,17,923,8561540,48,0 ,16,820,172936,21,10 ,15,10201,697224,1,1 ,16,820,172944,21,8 ,15,10202,697232,1,1 ,16,820,172952,21,9 ,15,10203,697240,1,1 ,16,820,172960,21,9 ,15,10204,697248,1,1 ,20,16720,3842978,56,0 ,16,820,172968,20,11 ,15,10205,697256,1,1 ,16,820,172976,21,8 ,15,10206,697264,1,1 ,16,820,172984,14,8 ,15,10207,697272,1,1 ,16,820,172992,19,9 ,15,10208,697280,1,1 ,20,26307,28484546,248,0 ,44,15152,3318724,16,0 ,16,820,173000,19,9 ,15,10209,697288,1,1 ,16,820,173008,19,9 ,15,10210,697296,1,1 ,16,820,173016,19,9 ,15,10211,697304,1,1 ,16,820,173024,21,9 ,15,10212,697312,1,1 ,20,23748,21668834,304,0 ,16,820,173032,19,9 ,15,10213,697320,1,1 ,16,820,173040,19,9 ,15,10214,697328,1,1 ,16,820,173048,19,9 ,15,10215,697336,1,1 ,16,820,173056,19,9 ,15,10216,697344,1,1 ,45,15153,4891652,24,0 ,44,15152,2270212,40,0 ,16,820,173064,19,9 ,15,10217,697352,1,1 ,16,820,173072,19,11 ,15,10218,697360,1,1 ,16,820,173080,19,9 ,15,10219,697368,1,1 ,16,820,173088,19,9 ,15,10220,697376,1,1 ,16,820,173096,19,9 ,15,10221,697384,1,1 ,16,820,173104,19,9 ,15,10222,697392,1,1 ,16,820,173112,21,13 ,15,10223,697400,1,1 ,16,820,173120,13,8 ,15,10224,697408,1,1 ,17,923,10134596,24,0 ,44,15152,3318852,40,0 ,44,15152,3843140,16,0 ,45,15153,5416004,112,0 ,16,820,173128,20,10 ,15,10225,697416,1,1 ,16,820,173136,21,11 ,15,10226,697424,1,1 ,16,820,173144,13,8 ,15,10227,697432,1,1 ,16,820,173152,20,41 ,15,10228,697440,1,1 ,16,820,173160,21,10 ,15,10229,697448,1,1 ,16,820,173168,20,10 ,15,10230,697456,1,1 ,16,820,173176,19,23 ,15,10231,697464,1,1 ,16,820,173184,21,12 ,15,10232,697472,1,1 ,20,22317,18523266,216,0 ,44,15152,173188,40,0 ,17,923,7513220,24,0 ,17,923,6988932,40,0 ,44,15152,1746052,32,0 ,16,820,173192,20,10 ,15,10233,697480,1,1 ,16,820,173200,19,9 ,15,10234,697488,1,1 ,16,820,173208,20,11 ,15,10235,697496,1,1 ,16,820,173216,19,11 ,15,10236,697504,1,1 ,16,820,173224,19,12 ,15,10237,697512,1,1 ,16,820,173232,19,11 ,15,10238,697520,1,1 ,16,820,173240,19,11 ,15,10239,697528,1,1 ,16,820,173248,19,11 ,15,10240,697536,1,1 ,17,923,9086148,40,0 ,17,923,6464708,32,0 ,44,15152,3843268,40,0 ,45,15153,4891844,16,0 ,16,820,173256,21,10 ,15,10241,697544,1,1 ,16,820,173264,19,11 ,15,10242,697552,1,1 ,16,820,173272,19,11 ,15,10243,697560,1,1 ,16,820,173280,14,8 ,15,10244,697568,1,1 ,16,820,173288,19,9 ,15,10245,697576,1,1 ,16,820,173296,20,11 ,15,10246,697584,1,1 ,16,820,173304,25,19 ,15,10247,697592,1,1 ,16,820,173312,19,9 ,15,10248,697600,1,1 ,20,23030,20096258,96,0 ,20,18977,9086210,404,0 ,17,923,10134788,16,0 ,44,15152,1221892,24,0 ,17,923,8561924,72,0 ,16,820,173320,20,15 ,15,10249,697608,1,1 ,16,820,173328,21,11 ,15,10250,697616,1,1 ,16,820,173336,20,8 ,15,10251,697624,1,1 ,16,820,173344,19,9 ,15,10252,697632,1,1 ,20,23969,22193442,52,0 ,16,820,173352,21,9 ,15,10253,697640,1,1 ,16,820,173360,20,10 ,15,10254,697648,1,1 ,16,820,173368,19,10 ,15,10255,697656,1,1 ,16,820,173376,19,9 ,15,10256,697664,1,1 ,45,15153,4891972,40,0 ,17,923,7513412,64,0 ,44,15152,2794820,24,0 ,44,15152,2270532,56,0 ,16,820,173384,21,11 ,15,10257,697672,1,1 ,16,820,173392,20,11 ,15,10258,697680,1,1 ,16,820,173400,19,11 ,15,10259,697688,1,1 ,16,820,173408,21,9 ,15,10260,697696,1,1 ,20,16721,3843426,200,0 ,16,820,173416,20,10 ,15,10261,697704,1,1 ,16,820,173424,13,8 ,15,10262,697712,1,1 ,16,820,173432,19,9 ,15,10263,697720,1,1 ,16,820,173440,19,11 ,15,10264,697728,1,1 ,20,24382,23242114,772,0 ,17,923,10134916,24,0 ,44,15152,1746308,16,0 ,44,15152,3319172,56,0 ,16,820,173448,19,8 ,15,10265,697736,1,1 ,16,820,173456,19,9 ,15,10266,697744,1,1 ,16,820,173464,19,8 ,15,10267,697752,1,1 ,16,820,173472,19,9 ,15,10268,697760,1,1 ,16,820,173480,21,9 ,15,10269,697768,1,1 ,16,820,173488,19,9 ,15,10270,697776,1,1 ,16,820,173496,21,11 ,15,10271,697784,1,1 ,16,820,173504,13,8 ,15,10272,697792,1,1 ,20,21837,16950722,436,0 ,20,24952,24815042,60,0 ,20,15650,1222082,12,0 ,44,15152,173508,32,0 ,17,923,6989252,40,0 ,17,923,6464964,40,0 ,44,15152,1222084,24,0 ,16,820,173512,19,8 ,15,10273,697800,1,1 ,16,820,173520,19,8 ,15,10274,697808,1,1 ,16,820,173528,19,8 ,15,10275,697816,1,1 ,16,820,173536,13,8 ,15,10276,697824,1,1 ,16,820,173544,19,13 ,15,10277,697832,1,1 ,16,820,173552,13,8 ,15,10278,697840,1,1 ,16,820,173560,14,8 ,15,10279,697848,1,1 ,16,820,173568,21,8 ,15,10280,697856,1,1 ,17,923,9086468,32,0 ,44,15152,2795012,24,0 ,44,15152,1746436,1064,0 ,44,15152,3843588,40,0 ,16,820,173576,13,8 ,15,10281,697864,1,1 ,16,820,173584,13,8 ,15,10282,697872,1,1 ,16,820,173592,19,8 ,15,10283,697880,1,1 ,16,820,173600,19,9 ,15,10284,697888,1,1 ,20,15651,1222178,396,0 ,16,820,173608,19,8 ,15,10285,697896,1,1 ,16,820,173616,19,9 ,15,10286,697904,1,1 ,16,820,173624,19,8 ,15,10287,697912,1,1 ,16,820,173632,19,10 ,15,10288,697920,1,1 ,17,923,10135108,16,0 ,16,820,173640,19,9 ,15,10289,697928,1,1 ,16,820,173648,19,8 ,15,10290,697936,1,1 ,16,820,173656,19,9 ,15,10291,697944,1,1 ,16,820,173664,19,8 ,15,10292,697952,1,1 ,16,820,173672,19,9 ,15,10293,697960,1,1 ,16,820,173680,19,8 ,15,10294,697968,1,1 ,16,820,173688,19,9 ,15,10295,697976,1,1 ,16,820,173696,19,9 ,15,10296,697984,1,1 ,20,16396,3319426,88,0 ,17,923,9610884,96,0 ,44,15152,1222276,32,0 ,45,15153,4892292,16,0 ,16,820,173704,19,8 ,15,10297,697992,1,1 ,16,820,173712,19,9 ,15,10298,698000,1,1 ,16,820,173720,19,8 ,15,10299,698008,1,1 ,16,820,173728,19,9 ,15,10300,698016,1,1 ,20,15388,698018,136,0 ,16,820,173736,19,11 ,15,10301,698024,1,1 ,16,820,173744,19,9 ,15,10302,698032,1,1 ,16,820,173752,19,11 ,15,10303,698040,1,1 ,16,820,173760,19,8 ,15,10304,698048,1,1 ,20,23970,22193858,1100,0 ,17,923,10135236,16,0 ,44,15152,2795204,136,0 ,44,15152,173764,40,0 ,16,820,173768,19,9 ,15,10305,698056,1,1 ,16,820,173776,19,9 ,15,10306,698064,1,1 ,16,820,173784,19,9 ,15,10307,698072,1,1 ,16,820,173792,19,9 ,15,10308,698080,1,1 ,16,820,173800,19,9 ,15,10309,698088,1,1 ,16,820,173808,19,8 ,15,10310,698096,1,1 ,16,820,173816,19,9 ,15,10311,698104,1,1 ,16,820,173824,19,8 ,15,10312,698112,1,1 ,17,923,9086724,32,0 ,17,923,6989572,40,0 ,17,923,6465284,40,0 ,44,15152,2270980,24,0 ,45,15153,4892420,16,0 ,16,820,173832,19,9 ,15,10313,698120,1,1 ,16,820,173840,19,10 ,15,10314,698128,1,1 ,16,820,173848,19,9 ,15,10315,698136,1,1 ,16,820,173856,19,9 ,15,10316,698144,1,1 ,16,820,173864,19,9 ,15,10317,698152,1,1 ,16,820,173872,19,9 ,15,10318,698160,1,1 ,16,820,173880,19,8 ,15,10319,698168,1,1 ,16,820,173888,13,8 ,15,10320,698176,1,1 ,20,18042,6989634,12,0 ,17,923,10135364,40,0 ,17,923,7513924,32,0 ,44,15152,3319620,24,0 ,44,15152,3843908,32,0 ,45,15153,4368196,64,0 ,17,923,8562500,32,0 ,16,820,173896,17,8 ,15,10321,698184,1,1 ,16,820,173904,13,8 ,15,10322,698192,1,1 ,16,820,173912,13,8 ,15,10323,698200,1,1 ,16,820,173920,13,8 ,15,10324,698208,1,1 ,20,21337,15902562,204,0 ,16,820,173928,19,9 ,15,10325,698216,1,1 ,16,820,173936,19,9 ,15,10326,698224,1,1 ,16,820,173944,19,9 ,15,10327,698232,1,1 ,16,820,173952,13,8 ,15,10328,698240,1,1 ,17,923,8038276,40,0 ,44,15152,1222532,104,0 ,45,15153,4892548,16,0 ,16,820,173960,19,11 ,15,10329,698248,1,1 ,16,820,173968,21,11 ,15,10330,698256,1,1 ,16,820,173976,13,8 ,15,10331,698264,1,1 ,16,820,173984,19,8 ,15,10332,698272,1,1 ,20,18043,6989730,12,0 ,20,24953,24815522,80,0 ,16,820,173992,13,8 ,15,10333,698280,1,1 ,16,820,174000,13,8 ,15,10334,698288,1,1 ,16,820,174008,17,8 ,15,10335,698296,1,1 ,16,820,174016,19,8 ,15,10336,698304,1,1 ,45,15153,5416900,48,0 ,44,15152,2271172,152,0 ,16,820,174024,21,8 ,15,10337,698312,1,1 ,16,820,174032,21,8 ,15,10338,698320,1,1 ,16,820,174040,21,8 ,15,10339,698328,1,1 ,16,820,174048,21,9 ,15,10340,698336,1,1 ,16,820,174056,19,10 ,15,10341,698344,1,1 ,16,820,174064,21,10 ,15,10342,698352,1,1 ,16,820,174072,21,8 ,15,10343,698360,1,1 ,16,820,174080,21,8 ,15,10344,698368,1,1 ,20,23031,20097026,148,0 ,20,18044,6989826,152,0 ,17,923,9086980,48,0 ,44,15152,174084,40,0 ,44,15152,3319812,96,0 ,45,15153,4892676,16,0 ,16,820,174088,21,9 ,15,10345,698376,1,1 ,16,820,174096,13,8 ,15,10346,698384,1,1 ,16,820,174104,19,8 ,15,10347,698392,1,1 ,16,820,174112,21,9 ,15,10348,698400,1,1 ,16,820,174120,19,11 ,15,10349,698408,1,1 ,16,820,174128,14,8 ,15,10350,698416,1,1 ,16,820,174136,19,8 ,15,10351,698424,1,1 ,16,820,174144,19,11 ,15,10352,698432,1,1 ,17,923,8562756,24,0 ,17,923,7514180,40,0 ,17,923,6989892,24,0 ,17,923,6465604,32,0 ,44,15152,3844164,296,0 ,16,820,174152,19,8 ,15,10353,698440,1,1 ,16,820,174160,19,11 ,15,10354,698448,1,1 ,16,820,174168,19,9 ,15,10355,698456,1,1 ,16,820,174176,19,12 ,15,10356,698464,1,1 ,16,820,174184,19,11 ,15,10357,698472,1,1 ,16,820,174192,19,11 ,15,10358,698480,1,1 ,16,820,174200,19,9 ,15,10359,698488,1,1 ,16,820,174208,13,8 ,15,10360,698496,1,1 ,17,923,10135684,40,0 ,45,15153,4892804,24,0 ,16,820,174216,19,11 ,15,10361,698504,1,1 ,16,820,174224,19,11 ,15,10362,698512,1,1 ,16,820,174232,19,11 ,15,10363,698520,1,1 ,16,820,174240,19,8 ,15,10364,698528,1,1 ,20,25379,25864354,388,0 ,16,820,174248,19,11 ,15,10365,698536,1,1 ,16,820,174256,19,11 ,15,10366,698544,1,1 ,16,820,174264,19,8 ,15,10367,698552,1,1 ,16,820,174272,19,11 ,15,10368,698560,1,1 ,17,923,8038596,32,0 ,16,820,174280,13,8 ,15,10369,698568,1,1 ,16,820,174288,13,8 ,15,10370,698576,1,1 ,16,820,174296,13,8 ,15,10371,698584,1,1 ,16,820,174304,19,12 ,15,10372,698592,1,1 ,20,25944,27437282,956,0 ,16,820,174312,19,9 ,15,10373,698600,1,1 ,16,820,174320,19,9 ,15,10374,698608,1,1 ,16,820,174328,19,8 ,15,10375,698616,1,1 ,16,820,174336,13,8 ,15,10376,698624,1,1 ,17,923,8562948,64,0 ,17,923,6990084,48,0 ,16,820,174344,19,26 ,15,10377,698632,1,1 ,16,820,174352,19,9 ,15,10378,698640,1,1 ,16,820,174360,19,9 ,15,10379,698648,1,1 ,16,820,174368,19,11 ,15,10380,698656,1,1 ,20,21563,16427298,292,0 ,16,820,174376,13,8 ,15,10381,698664,1,1 ,16,820,174384,19,10 ,15,10382,698672,1,1 ,16,820,174392,19,9 ,15,10383,698680,1,1 ,16,820,174400,21,8 ,15,10384,698688,1,1 ,20,16397,3320130,308,0 ,45,15153,5417284,192,0 ,17,923,6465860,32,0 ,44,15152,174404,40,0 ,45,15153,4368708,72,0 ,45,15153,4892996,24,0 ,16,820,174408,19,9 ,15,10385,698696,1,1 ,16,820,174416,19,10 ,15,10386,698704,1,1 ,16,820,174424,19,9 ,15,10387,698712,1,1 ,16,820,174432,19,9 ,15,10388,698720,1,1 ,16,820,174440,19,9 ,15,10389,698728,1,1 ,16,820,174448,19,9 ,15,10390,698736,1,1 ,16,820,174456,19,9 ,15,10391,698744,1,1 ,16,820,174464,19,9 ,15,10392,698752,1,1 ,17,923,9611652,16,0 ,17,923,7514500,32,0 ,17,923,9087364,40,0 ,16,820,174472,19,8 ,15,10393,698760,1,1 ,16,820,174480,19,9 ,15,10394,698768,1,1 ,16,820,174488,13,8 ,15,10395,698776,1,1 ,16,820,174496,19,9 ,15,10396,698784,1,1 ,16,820,174504,19,9 ,15,10397,698792,1,1 ,16,820,174512,13,8 ,15,10398,698800,1,1 ,16,820,174520,19,9 ,15,10399,698808,1,1 ,16,820,174528,19,9 ,15,10400,698816,1,1 ,20,24538,23767490,268,0 ,17,923,10136004,32,0 ,17,923,8038852,32,0 ,16,820,174536,21,9 ,15,10401,698824,1,1 ,16,820,174544,19,12 ,15,10402,698832,1,1 ,16,820,174552,19,8 ,15,10403,698840,1,1 ,16,820,174560,19,9 ,15,10404,698848,1,1 ,16,820,174568,14,8 ,15,10405,698856,1,1 ,16,820,174576,19,8 ,15,10406,698864,1,1 ,16,820,174584,19,8 ,15,10407,698872,1,1 ,16,820,174592,19,9 ,15,10408,698880,1,1 ,20,20003,11184642,32,0 ,20,16989,4368898,1004,0 ,20,19128,9611778,432,0 ,17,923,9611780,24,0 ,44,15152,698884,40,0 ,45,15153,4893188,24,0 ,16,820,174600,19,9 ,15,10409,698888,1,1 ,16,820,174608,19,8 ,15,10410,698896,1,1 ,16,820,174616,13,8 ,15,10411,698904,1,1 ,16,820,174624,13,8 ,15,10412,698912,1,1 ,20,24954,24816162,368,0 ,16,820,174632,19,8 ,15,10413,698920,1,1 ,16,820,174640,19,10 ,15,10414,698928,1,1 ,16,820,174648,19,11 ,15,10415,698936,1,1 ,16,820,174656,21,8 ,15,10416,698944,1,1 ,17,923,6466116,32,0 ,16,820,174664,13,8 ,15,10417,698952,1,1 ,16,820,174672,13,8 ,15,10418,698960,1,1 ,16,820,174680,19,9 ,15,10419,698968,1,1 ,16,820,174688,19,9 ,15,10420,698976,1,1 ,16,820,174696,19,9 ,15,10421,698984,1,1 ,16,820,174704,19,34 ,15,10422,698992,1,1 ,16,820,174712,19,9 ,15,10423,699000,1,1 ,16,820,174720,19,8 ,15,10424,699008,1,1 ,44,15152,174724,32,0 ,17,923,7514756,40,0 ,17,923,6990468,48,0 ,16,820,174728,13,8 ,15,10425,699016,1,1 ,16,820,174736,19,8 ,15,10426,699024,1,1 ,16,820,174744,19,9 ,15,10427,699032,1,1 ,16,820,174752,14,8 ,15,10428,699040,1,1 ,16,820,174760,19,11 ,15,10429,699048,1,1 ,16,820,174768,19,9 ,15,10430,699056,1,1 ,16,820,174776,20,8 ,15,10431,699064,1,1 ,16,820,174784,19,8 ,15,10432,699072,1,1 ,17,923,10136260,32,0 ,44,15152,1223364,88,0 ,45,15153,4893380,24,0 ,17,923,8039108,48,0 ,17,923,9087684,40,0 ,17,923,9611972,72,0 ,16,820,174792,19,9 ,15,10433,699080,1,1 ,16,820,174800,19,8 ,15,10434,699088,1,1 ,16,820,174808,19,8 ,15,10435,699096,1,1 ,16,820,174816,19,9 ,15,10436,699104,1,1 ,20,15389,699106,372,0 ,20,26138,27962082,324,0 ,16,820,174824,19,8 ,15,10437,699112,1,1 ,16,820,174832,19,9 ,15,10438,699120,1,1 ,16,820,174840,21,9 ,15,10439,699128,1,1 ,16,820,174848,19,11 ,15,10440,699136,1,1 ,20,24193,22719234,88,0 ,20,20004,11184898,96,0 ,20,23373,20622082,132,0 ,17,923,8563460,24,0 ,44,15152,2796292,24,0 ,44,15152,3320580,64,0 ,16,820,174856,19,9 ,15,10441,699144,1,1 ,16,820,174864,19,9 ,15,10442,699152,1,1 ,16,820,174872,19,9 ,15,10443,699160,1,1 ,16,820,174880,21,9 ,15,10444,699168,1,1 ,16,820,174888,13,8 ,15,10445,699176,1,1 ,16,820,174896,19,8 ,15,10446,699184,1,1 ,16,820,174904,19,8 ,15,10447,699192,1,1 ,16,820,174912,19,8 ,15,10448,699200,1,1 ,20,22318,18524994,248,0 ,44,15152,699204,40,0 ,17,923,6466372,40,0 ,16,820,174920,20,8 ,15,10449,699208,1,1 ,16,820,174928,19,8 ,15,10450,699216,1,1 ,16,820,174936,19,8 ,15,10451,699224,1,1 ,16,820,174944,19,8 ,15,10452,699232,1,1 ,16,820,174952,19,8 ,15,10453,699240,1,1 ,16,820,174960,19,8 ,15,10454,699248,1,1 ,16,820,174968,17,8 ,15,10455,699256,1,1 ,16,820,174976,21,8 ,15,10456,699264,1,1 ,20,26308,28486530,216,0 ,45,15153,4893572,24,0 ,44,15152,174980,24,0 ,45,15153,4369284,16,0 ,16,820,174984,19,8 ,15,10457,699272,1,1 ,16,820,174992,19,8 ,15,10458,699280,1,1 ,16,820,175000,13,8 ,15,10459,699288,1,1 ,16,820,175008,19,9 ,15,10460,699296,1,1 ,20,16722,3845026,196,0 ,16,820,175016,19,8 ,15,10461,699304,1,1 ,16,820,175024,19,9 ,15,10462,699312,1,1 ,16,820,175032,19,8 ,15,10463,699320,1,1 ,16,820,175040,19,8 ,15,10464,699328,1,1 ,17,923,10136516,24,0 ,17,923,7515076,32,0 ,44,15152,2796484,56,0 ,17,923,8563652,40,0 ,16,820,175048,19,9 ,15,10465,699336,1,1 ,16,820,175056,19,9 ,15,10466,699344,1,1 ,16,820,175064,14,8 ,15,10467,699352,1,1 ,16,820,175072,19,8 ,15,10468,699360,1,1 ,16,820,175080,19,11 ,15,10469,699368,1,1 ,16,820,175088,21,8 ,15,10470,699376,1,1 ,16,820,175096,21,8 ,15,10471,699384,1,1 ,16,820,175104,19,9 ,15,10472,699392,1,1 ,17,923,9088004,48,0 ,17,923,6990852,40,0 ,45,15153,4369412,16,0 ,16,820,175112,21,8 ,15,10473,699400,1,1 ,16,820,175120,21,8 ,15,10474,699408,1,1 ,16,820,175128,21,8 ,15,10475,699416,1,1 ,16,820,175136,19,11 ,15,10476,699424,1,1 ,16,820,175144,21,8 ,15,10477,699432,1,1 ,16,820,175152,21,8 ,15,10478,699440,1,1 ,16,820,175160,19,9 ,15,10479,699448,1,1 ,16,820,175168,19,9 ,15,10480,699456,1,1 ,17,923,8039492,32,0 ,44,15152,175172,24,0 ,45,15153,4893764,24,0 ,16,820,175176,21,8 ,15,10481,699464,1,1 ,16,820,175184,21,9 ,15,10482,699472,1,1 ,16,820,175192,21,8 ,15,10483,699480,1,1 ,16,820,175200,21,8 ,15,10484,699488,1,1 ,16,820,175208,21,8 ,15,10485,699496,1,1 ,16,820,175216,17,8 ,15,10486,699504,1,1 ,16,820,175224,21,8 ,15,10487,699512,1,1 ,16,820,175232,21,8 ,15,10488,699520,1,1 ,17,923,10136708,32,0 ,17,923,6466692,24,0 ,44,15152,2272388,24,0 ,44,15152,699524,16,0 ,45,15153,4369540,16,0 ,16,820,175240,13,8 ,15,10489,699528,1,1 ,16,820,175248,21,8 ,15,10490,699536,1,1 ,16,820,175256,19,10 ,15,10491,699544,1,1 ,16,820,175264,13,8 ,15,10492,699552,1,1 ,20,23032,20098210,132,0 ,16,820,175272,13,8 ,15,10493,699560,1,1 ,16,820,175280,13,8 ,15,10494,699568,1,1 ,16,820,175288,17,8 ,15,10495,699576,1,1 ,16,820,175296,17,9 ,15,10496,699584,1,1 ,20,23602,21146818,64,0 ,20,18045,6991042,1068,0 ,20,18673,8563906,88,0 ,17,923,7515332,24,0 ,16,820,175304,19,9 ,15,10497,699592,1,1 ,16,820,175312,21,9 ,15,10498,699600,1,1 ,16,820,175320,21,13 ,15,10499,699608,1,1 ,16,820,175328,17,9 ,15,10500,699616,1,1 ,16,820,175336,13,8 ,15,10501,699624,1,1 ,16,820,175344,19,8 ,15,10502,699632,1,1 ,16,820,175352,19,8 ,15,10503,699640,1,1 ,16,820,175360,19,11 ,15,10504,699648,1,1 ,17,923,9612548,88,0 ,44,15152,175364,16,0 ,44,15152,699652,24,0 ,44,15152,3321092,24,0 ,45,15153,4369668,16,0 ,45,15153,4893956,24,0 ,17,923,8563972,32,0 ,16,820,175368,19,11 ,15,10505,699656,1,1 ,16,820,175376,21,9 ,15,10506,699664,1,1 ,16,820,175384,19,8 ,15,10507,699672,1,1 ,16,820,175392,19,8 ,15,10508,699680,1,1 ,16,820,175400,19,8 ,15,10509,699688,1,1 ,16,820,175408,19,8 ,15,10510,699696,1,1 ,16,820,175416,21,10 ,15,10511,699704,1,1 ,16,820,175424,21,14 ,15,10512,699712,1,1 ,17,923,8039748,40,0 ,17,923,6991172,40,0 ,17,923,6466884,64,0 ,44,15152,2272580,160,0 ,16,820,175432,13,8 ,15,10513,699720,1,1 ,16,820,175440,20,10 ,15,10514,699728,1,1 ,16,820,175448,19,8 ,15,10515,699736,1,1 ,16,820,175456,19,8 ,15,10516,699744,1,1 ,20,23749,21671266,1004,0 ,16,820,175464,19,8 ,15,10517,699752,1,1 ,16,820,175472,21,18 ,15,10518,699760,1,1 ,16,820,175480,17,9 ,15,10519,699768,1,1 ,16,820,175488,21,20 ,15,10520,699776,1,1 ,20,16181,2796930,1200,0 ,17,923,10136964,40,0 ,17,923,7515524,64,0 ,44,15152,2796932,32,0 ,44,15152,1224068,208,0 ,44,15152,175492,64,0 ,45,15153,4369796,32,0 ,17,923,9088388,48,0 ,16,820,175496,21,15 ,15,10521,699784,1,1 ,16,820,175504,19,9 ,15,10522,699792,1,1 ,16,820,175512,19,9 ,15,10523,699800,1,1 ,16,820,175520,19,9 ,15,10524,699808,1,1 ,16,820,175528,21,9 ,15,10525,699816,1,1 ,16,820,175536,13,8 ,15,10526,699824,1,1 ,16,820,175544,19,8 ,15,10527,699832,1,1 ,16,820,175552,19,8 ,15,10528,699840,1,1 ,20,24194,22719938,84,0 ,20,21338,15904194,332,0 ,45,15153,4894148,24,0 ,44,15152,699844,32,0 ,44,15152,3321284,24,0 ,16,820,175560,19,8 ,15,10529,699848,1,1 ,16,820,175568,21,8 ,15,10530,699856,1,1 ,16,820,175576,19,8 ,15,10531,699864,1,1 ,16,820,175584,19,11 ,15,10532,699872,1,1 ,16,820,175592,19,8 ,15,10533,699880,1,1 ,16,820,175600,19,8 ,15,10534,699888,1,1 ,16,820,175608,19,8 ,15,10535,699896,1,1 ,16,820,175616,19,8 ,15,10536,699904,1,1 ,20,20005,11185666,12,0 ,17,923,8564228,32,0 ,16,820,175624,19,11 ,15,10537,699912,1,1 ,16,820,175632,19,18 ,15,10538,699920,1,1 ,16,820,175640,21,9 ,15,10539,699928,1,1 ,16,820,175648,19,10 ,15,10540,699936,1,1 ,16,820,175656,21,9 ,15,10541,699944,1,1 ,16,820,175664,19,10 ,15,10542,699952,1,1 ,16,820,175672,19,13 ,15,10543,699960,1,1 ,16,820,175680,19,8 ,15,10544,699968,1,1 ,20,21964,17477186,7580,0 ,16,820,175688,19,9 ,15,10545,699976,1,1 ,16,820,175696,21,13 ,15,10546,699984,1,1 ,16,820,175704,21,8 ,15,10547,699992,1,1 ,16,820,175712,21,8 ,15,10548,700000,1,1 ,20,20268,12758626,80,0 ,20,20006,11185762,36,0 ,16,820,175720,21,10 ,15,10549,700008,1,1 ,16,820,175728,19,15 ,15,10550,700016,1,1 ,16,820,175736,21,9 ,15,10551,700024,1,1 ,16,820,175744,21,9 ,15,10552,700032,1,1 ,17,923,8040068,112,0 ,17,923,6991492,24,0 ,44,15152,2797188,24,0 ,44,15152,3321476,32,0 ,45,15153,4370052,144,0 ,45,15153,4894340,24,0 ,16,820,175752,19,8 ,15,10553,700040,1,1 ,16,820,175760,21,10 ,15,10554,700048,1,1 ,16,820,175768,19,11 ,15,10555,700056,1,1 ,16,820,175776,21,8 ,15,10556,700064,1,1 ,20,25526,26390178,192,0 ,16,820,175784,19,13 ,15,10557,700072,1,1 ,16,820,175792,19,15 ,15,10558,700080,1,1 ,16,820,175800,21,15 ,15,10559,700088,1,1 ,16,820,175808,21,18 ,15,10560,700096,1,1 ,20,23603,21147330,48,0 ,20,18497,8040130,204,0 ,17,923,10137284,48,0 ,44,15152,700100,48,0 ,16,820,175816,19,9 ,15,10561,700104,1,1 ,16,820,175824,21,24 ,15,10562,700112,1,1 ,16,820,175832,13,8 ,15,10563,700120,1,1 ,16,820,175840,20,8 ,15,10564,700128,1,1 ,16,820,175848,21,15 ,15,10565,700136,1,1 ,16,820,175856,14,8 ,15,10566,700144,1,1 ,16,820,175864,19,11 ,15,10567,700152,1,1 ,16,820,175872,19,12 ,15,10568,700160,1,1 ,17,923,9088772,48,0 ,17,923,8564484,40,0 ,16,820,175880,19,9 ,15,10569,700168,1,1 ,16,820,175888,14,8 ,15,10570,700176,1,1 ,16,820,175896,19,9 ,15,10571,700184,1,1 ,16,820,175904,14,8 ,15,10572,700192,1,1 ,20,23374,20623138,216,0 ,16,820,175912,19,12 ,15,10573,700200,1,1 ,16,820,175920,19,11 ,15,10574,700208,1,1 ,16,820,175928,19,11 ,15,10575,700216,1,1 ,16,820,175936,19,11 ,15,10576,700224,1,1 ,45,15153,5418820,96,0 ,17,923,6991684,56,0 ,17,923,6467396,40,0 ,44,15152,2797380,24,0 ,45,15153,4894532,24,0 ,16,820,175944,19,8 ,15,10577,700232,1,1 ,16,820,175952,19,9 ,15,10578,700240,1,1 ,16,820,175960,13,8 ,15,10579,700248,1,1 ,16,820,175968,13,8 ,15,10580,700256,1,1 ,16,820,175976,13,8 ,15,10581,700264,1,1 ,16,820,175984,19,9 ,15,10582,700272,1,1 ,16,820,175992,19,9 ,15,10583,700280,1,1 ,16,820,176000,21,9 ,15,10584,700288,1,1 ,20,20007,11186050,36,0 ,20,18674,8564610,112,0 ,44,15152,3321732,24,0 ,17,923,7516036,40,0 ,44,15152,176004,32,0 ,16,820,176008,19,8 ,15,10585,700296,1,1 ,16,820,176016,19,8 ,15,10586,700304,1,1 ,16,820,176024,19,9 ,15,10587,700312,1,1 ,16,820,176032,19,9 ,15,10588,700320,1,1 ,16,820,176040,19,9 ,15,10589,700328,1,1 ,16,820,176048,19,10 ,15,10590,700336,1,1 ,16,820,176056,19,8 ,15,10591,700344,1,1 ,16,820,176064,21,10 ,15,10592,700352,1,1 ,17,923,9613252,24,0 ,16,820,176072,19,9 ,15,10593,700360,1,1 ,16,820,176080,21,9 ,15,10594,700368,1,1 ,16,820,176088,19,8 ,15,10595,700376,1,1 ,16,820,176096,19,8 ,15,10596,700384,1,1 ,16,820,176104,21,12 ,15,10597,700392,1,1 ,16,820,176112,19,8 ,15,10598,700400,1,1 ,16,820,176120,20,10 ,15,10599,700408,1,1 ,16,820,176128,21,16 ,15,10600,700416,1,1 ,45,15153,4894724,24,0 ,44,15152,2797572,24,0 ,16,820,176136,13,8 ,15,10601,700424,1,1 ,16,820,176144,19,8 ,15,10602,700432,1,1 ,16,820,176152,19,8 ,15,10603,700440,1,1 ,16,820,176160,19,8 ,15,10604,700448,1,1 ,16,820,176168,19,10 ,15,10605,700456,1,1 ,16,820,176176,19,8 ,15,10606,700464,1,1 ,16,820,176184,19,8 ,15,10607,700472,1,1 ,16,820,176192,19,8 ,15,10608,700480,1,1 ,20,23604,21147714,40,0 ,17,923,10137668,24,0 ,44,15152,700484,32,0 ,44,15152,3321924,24,0 ,17,923,8564804,32,0 ,16,820,176200,19,8 ,15,10609,700488,1,1 ,16,820,176208,21,15 ,15,10610,700496,1,1 ,16,820,176216,21,8 ,15,10611,700504,1,1 ,16,820,176224,21,8 ,15,10612,700512,1,1 ,20,24195,22720610,116,0 ,16,820,176232,19,8 ,15,10613,700520,1,1 ,16,820,176240,21,9 ,15,10614,700528,1,1 ,16,820,176248,21,16 ,15,10615,700536,1,1 ,16,820,176256,13,8 ,15,10616,700544,1,1 ,17,923,9613444,24,0 ,17,923,6467716,72,0 ,44,15152,176260,40,0 ,17,923,9089156,40,0 ,16,820,176264,19,9 ,15,10617,700552,1,1 ,16,820,176272,19,9 ,15,10618,700560,1,1 ,16,820,176280,17,9 ,15,10619,700568,1,1 ,16,820,176288,13,8 ,15,10620,700576,1,1 ,20,20008,11186338,52,0 ,16,820,176296,19,8 ,15,10621,700584,1,1 ,16,820,176304,21,9 ,15,10622,700592,1,1 ,16,820,176312,19,9 ,15,10623,700600,1,1 ,16,820,176320,21,14 ,15,10624,700608,1,1 ,20,23033,20099266,80,0 ,45,15153,4894916,24,0 ,17,923,7516356,32,0 ,44,15152,2797764,32,0 ,16,820,176328,19,12 ,15,10625,700616,1,1 ,16,820,176336,19,9 ,15,10626,700624,1,1 ,16,820,176344,19,8 ,15,10627,700632,1,1 ,16,820,176352,13,8 ,15,10628,700640,1,1 ,20,20269,12759266,12,0 ,16,820,176360,19,8 ,15,10629,700648,1,1 ,16,820,176368,19,9 ,15,10630,700656,1,1 ,16,820,176376,19,8 ,15,10631,700664,1,1 ,16,820,176384,21,9 ,15,10632,700672,1,1 ,17,923,10137860,40,0 ,17,923,6992132,24,0 ,44,15152,3322116,40,0 ,16,820,176392,21,9 ,15,10633,700680,1,1 ,16,820,176400,19,8 ,15,10634,700688,1,1 ,16,820,176408,19,10 ,15,10635,700696,1,1 ,16,820,176416,19,8 ,15,10636,700704,1,1 ,16,820,176424,21,11 ,15,10637,700712,1,1 ,16,820,176432,21,9 ,15,10638,700720,1,1 ,16,820,176440,19,8 ,15,10639,700728,1,1 ,16,820,176448,19,8 ,15,10640,700736,1,1 ,20,20270,12759362,144,0 ,17,923,9613636,64,0 ,44,15152,700740,56,0 ,17,923,8565060,32,0 ,16,820,176456,20,8 ,15,10641,700744,1,1 ,16,820,176464,19,11 ,15,10642,700752,1,1 ,16,820,176472,20,8 ,15,10643,700760,1,1 ,16,820,176480,19,9 ,15,10644,700768,1,1 ,16,820,176488,20,8 ,15,10645,700776,1,1 ,16,820,176496,19,9 ,15,10646,700784,1,1 ,16,820,176504,19,11 ,15,10647,700792,1,1 ,16,820,176512,19,8 ,15,10648,700800,1,1 ,20,23605,21148034,820,0 ,45,15153,4895108,32,0 ,44,15152,3846532,64,0 ,16,820,176520,17,8 ,15,10649,700808,1,1 ,16,820,176528,19,14 ,15,10650,700816,1,1 ,16,820,176536,19,8 ,15,10651,700824,1,1 ,16,820,176544,19,9 ,15,10652,700832,1,1 ,20,18978,9089442,212,0 ,16,820,176552,14,8 ,15,10653,700840,1,1 ,16,820,176560,20,8 ,15,10654,700848,1,1 ,16,820,176568,21,8 ,15,10655,700856,1,1 ,16,820,176576,19,10 ,15,10656,700864,1,1 ,20,16723,3846594,376,0 ,17,923,9089476,40,0 ,17,923,7516612,32,0 ,17,923,6992324,24,0 ,44,15152,2798020,64,0 ,44,15152,176580,32,0 ,16,820,176584,13,8 ,15,10657,700872,1,1 ,16,820,176592,19,14 ,15,10658,700880,1,1 ,16,820,176600,21,14 ,15,10659,700888,1,1 ,16,820,176608,21,12 ,15,10660,700896,1,1 ,16,820,176616,17,8 ,15,10661,700904,1,1 ,16,820,176624,19,8 ,15,10662,700912,1,1 ,16,820,176632,13,8 ,15,10663,700920,1,1 ,16,820,176640,19,8 ,15,10664,700928,1,1 ,17,923,8040964,112,0 ,16,820,176648,19,9 ,15,10665,700936,1,1 ,16,820,176656,13,8 ,15,10666,700944,1,1 ,16,820,176664,13,8 ,15,10667,700952,1,1 ,16,820,176672,19,8 ,15,10668,700960,1,1 ,20,24539,23769634,2000,0 ,16,820,176680,13,8 ,15,10669,700968,1,1 ,16,820,176688,19,9 ,15,10670,700976,1,1 ,16,820,176696,14,8 ,15,10671,700984,1,1 ,16,820,176704,19,8 ,15,10672,700992,1,1 ,20,21564,16429634,416,0 ,20,26309,28488258,996,0 ,20,20009,11186754,500,0 ,17,923,10138180,32,0 ,44,15152,2273860,200,0 ,44,15152,3322436,24,0 ,45,15153,5419588,80,0 ,17,923,8565316,40,0 ,16,820,176712,19,11 ,15,10673,701000,1,1 ,16,820,176720,13,8 ,15,10674,701008,1,1 ,16,820,176728,17,8 ,15,10675,701016,1,1 ,16,820,176736,19,9 ,15,10676,701024,1,1 ,16,820,176744,13,8 ,15,10677,701032,1,1 ,16,820,176752,21,9 ,15,10678,701040,1,1 ,16,820,176760,19,8 ,15,10679,701048,1,1 ,16,820,176768,19,9 ,15,10680,701056,1,1 ,20,15652,1225346,712,0 ,45,15153,4895364,40,0 ,17,923,6992516,32,0 ,16,820,176776,19,8 ,15,10681,701064,1,1 ,16,820,176784,19,8 ,15,10682,701072,1,1 ,16,820,176792,19,8 ,15,10683,701080,1,1 ,16,820,176800,21,8 ,15,10684,701088,1,1 ,20,26418,29012642,52,0 ,16,820,176808,21,12 ,15,10685,701096,1,1 ,16,820,176816,19,8 ,15,10686,701104,1,1 ,16,820,176824,19,8 ,15,10687,701112,1,1 ,16,820,176832,19,12 ,15,10688,701120,1,1 ,44,15152,176836,48,0 ,17,923,7516868,24,0 ,17,923,6468292,24,0 ,16,820,176840,19,8 ,15,10689,701128,1,1 ,16,820,176848,19,8 ,15,10690,701136,1,1 ,16,820,176856,19,8 ,15,10691,701144,1,1 ,16,820,176864,19,8 ,15,10692,701152,1,1 ,20,16398,3322594,36,0 ,16,820,176872,19,11 ,15,10693,701160,1,1 ,16,820,176880,19,11 ,15,10694,701168,1,1 ,16,820,176888,13,8 ,15,10695,701176,1,1 ,16,820,176896,20,8 ,15,10696,701184,1,1 ,20,22319,18526978,92,0 ,20,18675,8565506,112,0 ,17,923,9089796,32,0 ,44,15152,701188,56,0 ,44,15152,3322628,24,0 ,45,15153,4371204,24,0 ,16,820,176904,17,9 ,15,10697,701192,1,1 ,16,820,176912,19,13 ,15,10698,701200,1,1 ,16,820,176920,17,9 ,15,10699,701208,1,1 ,16,820,176928,19,8 ,15,10700,701216,1,1 ,16,820,176936,19,12 ,15,10701,701224,1,1 ,16,820,176944,13,8 ,15,10702,701232,1,1 ,16,820,176952,19,10 ,15,10703,701240,1,1 ,16,820,176960,17,10 ,15,10704,701248,1,1 ,20,23034,20099906,280,0 ,17,923,10138436,32,0 ,17,923,9614148,32,0 ,16,820,176968,19,10 ,15,10705,701256,1,1 ,16,820,176976,21,15 ,15,10706,701264,1,1 ,16,820,176984,17,8 ,15,10707,701272,1,1 ,16,820,176992,17,8 ,15,10708,701280,1,1 ,20,21838,16954210,140,0 ,16,820,177000,21,26 ,15,10709,701288,1,1 ,16,820,177008,17,9 ,15,10710,701296,1,1 ,16,820,177016,17,8 ,15,10711,701304,1,1 ,16,820,177024,17,8 ,15,10712,701312,1,1 ,17,923,8565636,32,0 ,17,923,7517060,72,0 ,17,923,6992772,32,0 ,17,923,6468484,24,0 ,44,15152,3847044,232,0 ,16,820,177032,19,9 ,15,10713,701320,1,1 ,16,820,177040,19,9 ,15,10714,701328,1,1 ,16,820,177048,19,8 ,15,10715,701336,1,1 ,16,820,177056,19,11 ,15,10716,701344,1,1 ,16,820,177064,19,9 ,15,10717,701352,1,1 ,16,820,177072,19,8 ,15,10718,701360,1,1 ,16,820,177080,19,9 ,15,10719,701368,1,1 ,16,820,177088,13,8 ,15,10720,701376,1,1 ,45,15153,4895684,24,0 ,44,15152,2798532,24,0 ,44,15152,3322820,40,0 ,45,15153,4371396,24,0 ,16,820,177096,19,8 ,15,10721,701384,1,1 ,16,820,177104,19,8 ,15,10722,701392,1,1 ,16,820,177112,19,8 ,15,10723,701400,1,1 ,16,820,177120,13,8 ,15,10724,701408,1,1 ,16,820,177128,13,8 ,15,10725,701416,1,1 ,16,820,177136,19,11 ,15,10726,701424,1,1 ,16,820,177144,14,8 ,15,10727,701432,1,1 ,16,820,177152,21,8 ,15,10728,701440,1,1 ,20,24196,22721538,84,0 ,20,16399,3322882,128,0 ,17,923,9090052,32,0 ,44,15152,1225732,32,0 ,16,820,177160,21,8 ,15,10729,701448,1,1 ,16,820,177168,19,10 ,15,10730,701456,1,1 ,16,820,177176,14,8 ,15,10731,701464,1,1 ,16,820,177184,21,8 ,15,10732,701472,1,1 ,16,820,177192,13,8 ,15,10733,701480,1,1 ,16,820,177200,21,8 ,15,10734,701488,1,1 ,16,820,177208,19,9 ,15,10735,701496,1,1 ,16,820,177216,13,8 ,15,10736,701504,1,1 ,20,26419,29013058,276,0 ,17,923,10138692,32,0 ,17,923,6468676,40,0 ,44,15152,177220,24,0 ,17,923,9614404,32,0 ,16,820,177224,19,9 ,15,10737,701512,1,1 ,16,820,177232,13,8 ,15,10738,701520,1,1 ,16,820,177240,17,8 ,15,10739,701528,1,1 ,16,820,177248,17,8 ,15,10740,701536,1,1 ,16,820,177256,14,8 ,15,10741,701544,1,1 ,16,820,177264,19,9 ,15,10742,701552,1,1 ,16,820,177272,20,13 ,15,10743,701560,1,1 ,16,820,177280,19,11 ,15,10744,701568,1,1 ,17,923,8565892,48,0 ,17,923,6993028,48,0 ,44,15152,2798724,24,0 ,45,15153,4371588,16,0 ,45,15153,4895876,24,0 ,16,820,177288,20,8 ,15,10745,701576,1,1 ,16,820,177296,17,9 ,15,10746,701584,1,1 ,16,820,177304,21,11 ,15,10747,701592,1,1 ,16,820,177312,20,11 ,15,10748,701600,1,1 ,20,25527,26391714,124,0 ,16,820,177320,19,13 ,15,10749,701608,1,1 ,16,820,177328,25,14 ,15,10750,701616,1,1 ,16,820,177336,19,10 ,15,10751,701624,1,1 ,16,820,177344,14,8 ,15,10752,701632,1,1 ,20,25380,25867458,264,0 ,45,15153,5420228,40,0 ,44,15152,701636,16,0 ,16,820,177352,21,8 ,15,10753,701640,1,1 ,16,820,177360,13,8 ,15,10754,701648,1,1 ,16,820,177368,21,10 ,15,10755,701656,1,1 ,16,820,177376,19,9 ,15,10756,701664,1,1 ,16,820,177384,14,8 ,15,10757,701672,1,1 ,16,820,177392,19,8 ,15,10758,701680,1,1 ,16,820,177400,21,13 ,15,10759,701688,1,1 ,16,820,177408,20,13 ,15,10760,701696,1,1 ,20,26139,27964674,48,0 ,17,923,9090308,32,0 ,44,15152,1225988,16,0 ,44,15152,177412,48,0 ,44,15152,3323140,40,0 ,45,15153,4371716,40,0 ,16,820,177416,19,16 ,15,10761,701704,1,1 ,16,820,177424,19,12 ,15,10762,701712,1,1 ,16,820,177432,19,9 ,15,10763,701720,1,1 ,16,820,177440,19,9 ,15,10764,701728,1,1 ,20,18498,8041762,52,0 ,16,820,177448,19,9 ,15,10765,701736,1,1 ,16,820,177456,19,11 ,15,10766,701744,1,1 ,16,820,177464,17,8 ,15,10767,701752,1,1 ,16,820,177472,19,8 ,15,10768,701760,1,1 ,17,923,10138948,40,0 ,44,15152,2798916,104,0 ,44,15152,701764,32,0 ,45,15153,4896068,24,0 ,17,923,9614660,40,0 ,16,820,177480,19,9 ,15,10769,701768,1,1 ,16,820,177488,19,8 ,15,10770,701776,1,1 ,16,820,177496,19,12 ,15,10771,701784,1,1 ,16,820,177504,20,8 ,15,10772,701792,1,1 ,16,820,177512,17,8 ,15,10773,701800,1,1 ,16,820,177520,17,10 ,15,10774,701808,1,1 ,16,820,177528,20,8 ,15,10775,701816,1,1 ,16,820,177536,19,9 ,15,10776,701824,1,1 ,17,923,8041860,40,0 ,17,923,6468996,40,0 ,44,15152,1226116,112,0 ,16,820,177544,17,9 ,15,10777,701832,1,1 ,16,820,177552,19,9 ,15,10778,701840,1,1 ,16,820,177560,14,8 ,15,10779,701848,1,1 ,16,820,177568,21,10 ,15,10780,701856,1,1 ,20,24955,24819106,232,0 ,20,25718,26916258,492,0 ,16,820,177576,19,9 ,15,10781,701864,1,1 ,16,820,177584,19,8 ,15,10782,701872,1,1 ,16,820,177592,19,8 ,15,10783,701880,1,1 ,16,820,177600,14,8 ,15,10784,701888,1,1 ,20,20271,12760514,500,0 ,17,923,7517636,32,0 ,16,820,177608,19,9 ,15,10785,701896,1,1 ,16,820,177616,19,10 ,15,10786,701904,1,1 ,16,820,177624,19,8 ,15,10787,701912,1,1 ,16,820,177632,17,9 ,15,10788,701920,1,1 ,20,23375,20624866,500,0 ,20,22320,18527714,100,0 ,16,820,177640,21,15 ,15,10789,701928,1,1 ,16,820,177648,19,8 ,15,10790,701936,1,1 ,16,820,177656,19,9 ,15,10791,701944,1,1 ,16,820,177664,19,9 ,15,10792,701952,1,1 ,17,923,9090564,24,0 ,17,923,6993412,48,0 ,45,15153,4896260,136,0 ,45,15153,5420548,88,0 ,17,923,8566276,24,0 ,16,820,177672,19,9 ,15,10793,701960,1,1 ,16,820,177680,19,9 ,15,10794,701968,1,1 ,16,820,177688,17,9 ,15,10795,701976,1,1 ,16,820,177696,19,8 ,15,10796,701984,1,1 ,16,820,177704,20,14 ,15,10797,701992,1,1 ,16,820,177712,17,9 ,15,10798,702000,1,1 ,16,820,177720,20,10 ,15,10799,702008,1,1 ,16,820,177728,21,8 ,15,10800,702016,1,1 ,45,15153,4372036,40,0 ,44,15152,702020,40,0 ,44,15152,3323460,40,0 ,16,820,177736,19,10 ,15,10801,702024,1,1 ,16,820,177744,19,12 ,15,10802,702032,1,1 ,16,820,177752,19,8 ,15,10803,702040,1,1 ,16,820,177760,25,14 ,15,10804,702048,1,1 ,16,820,177768,19,8 ,15,10805,702056,1,1 ,16,820,177776,21,11 ,15,10806,702064,1,1 ,16,820,177784,17,10 ,15,10807,702072,1,1 ,16,820,177792,20,8 ,15,10808,702080,1,1 ,20,18676,8566402,84,0 ,20,26140,27965058,144,0 ,20,15390,702082,288,0 ,17,923,10139268,32,0 ,44,15152,177796,16,0 ,17,923,9614980,32,0 ,16,820,177800,19,9 ,15,10809,702088,1,1 ,16,820,177808,19,8 ,15,10810,702096,1,1 ,16,820,177816,19,8 ,15,10811,702104,1,1 ,16,820,177824,21,9 ,15,10812,702112,1,1 ,20,24197,22722210,156,0 ,16,820,177832,21,9 ,15,10813,702120,1,1 ,16,820,177840,21,9 ,15,10814,702128,1,1 ,16,820,177848,21,8 ,15,10815,702136,1,1 ,16,820,177856,21,9 ,15,10816,702144,1,1 ,20,20763,13809346,120,0 ,20,18499,8042178,160,0 ,20,19410,10139330,80,0 ,17,923,9090756,48,0 ,17,923,7517892,32,0 ,17,923,6469316,32,0 ,17,923,8042180,144,0 ,17,923,8566468,32,0 ,16,820,177864,21,9 ,15,10817,702152,1,1 ,16,820,177872,19,8 ,15,10818,702160,1,1 ,16,820,177880,21,9 ,15,10819,702168,1,1 ,16,820,177888,17,8 ,15,10820,702176,1,1 ,16,820,177896,19,8 ,15,10821,702184,1,1 ,16,820,177904,20,10 ,15,10822,702192,1,1 ,16,820,177912,13,8 ,15,10823,702200,1,1 ,16,820,177920,20,8 ,15,10824,702208,1,1 ,44,15152,177924,16,0 ,16,820,177928,25,10 ,15,10825,702216,1,1 ,16,820,177936,20,10 ,15,10826,702224,1,1 ,16,820,177944,19,8 ,15,10827,702232,1,1 ,16,820,177952,13,8 ,15,10828,702240,1,1 ,16,820,177960,20,8 ,15,10829,702248,1,1 ,16,820,177968,13,8 ,15,10830,702256,1,1 ,16,820,177976,20,8 ,15,10831,702264,1,1 ,16,820,177984,20,8 ,15,10832,702272,1,1 ,16,820,177992,20,8 ,15,10833,702280,1,1 ,16,820,178000,13,8 ,15,10834,702288,1,1 ,16,820,178008,20,10 ,15,10835,702296,1,1 ,16,820,178016,14,8 ,15,10836,702304,1,1 ,20,17153,4896610,1752,0 ,16,820,178024,19,12 ,15,10837,702312,1,1 ,16,820,178032,19,9 ,15,10838,702320,1,1 ,16,820,178040,13,8 ,15,10839,702328,1,1 ,16,820,178048,13,8 ,15,10840,702336,1,1 ,20,19129,9615234,1592,0 ,17,923,10139524,40,0 ,17,923,6993796,24,0 ,44,15152,178052,24,0 ,44,15152,702340,24,0 ,44,15152,3323780,112,0 ,45,15153,4372356,16,0 ,17,923,9615236,40,0 ,16,820,178056,25,8 ,15,10841,702344,1,1 ,16,820,178064,21,8 ,15,10842,702352,1,1 ,16,820,178072,20,8 ,15,10843,702360,1,1 ,16,820,178080,21,10 ,15,10844,702368,1,1 ,16,820,178088,25,8 ,15,10845,702376,1,1 ,16,820,178096,19,8 ,15,10846,702384,1,1 ,16,820,178104,20,10 ,15,10847,702392,1,1 ,16,820,178112,19,9 ,15,10848,702400,1,1 ,20,21839,16955330,272,0 ,17,923,8566724,32,0 ,17,923,7518148,24,0 ,17,923,6469572,16,0 ,16,820,178120,13,8 ,15,10849,702408,1,1 ,16,820,178128,19,9 ,15,10850,702416,1,1 ,16,820,178136,25,10 ,15,10851,702424,1,1 ,16,820,178144,20,11 ,15,10852,702432,1,1 ,16,820,178152,25,9 ,15,10853,702440,1,1 ,16,820,178160,20,8 ,15,10854,702448,1,1 ,16,820,178168,21,10 ,15,10855,702456,1,1 ,16,820,178176,13,8 ,15,10856,702464,1,1 ,20,16400,3323906,200,0 ,45,15153,4372484,32,0 ,16,820,178184,25,8 ,15,10857,702472,1,1 ,16,820,178192,13,8 ,15,10858,702480,1,1 ,16,820,178200,20,10 ,15,10859,702488,1,1 ,16,820,178208,19,8 ,15,10860,702496,1,1 ,20,22067,18004002,88,0 ,20,21339,15906850,364,0 ,16,820,178216,20,10 ,15,10861,702504,1,1 ,16,820,178224,21,8 ,15,10862,702512,1,1 ,16,820,178232,20,10 ,15,10863,702520,1,1 ,16,820,178240,13,8 ,15,10864,702528,1,1 ,20,18979,9091138,188,0 ,17,923,9091140,24,0 ,17,923,6993988,64,0 ,17,923,6469700,16,0 ,44,15152,178244,24,0 ,44,15152,702532,56,0 ,16,820,178248,20,10 ,15,10865,702536,1,1 ,16,820,178256,20,10 ,15,10866,702544,1,1 ,16,820,178264,17,9 ,15,10867,702552,1,1 ,16,820,178272,19,8 ,15,10868,702560,1,1 ,16,820,178280,19,9 ,15,10869,702568,1,1 ,16,820,178288,21,8 ,15,10870,702576,1,1 ,16,820,178296,21,9 ,15,10871,702584,1,1 ,16,820,178304,20,10 ,15,10872,702592,1,1 ,20,25528,26392706,192,0 ,44,15152,2275460,24,0 ,17,923,7518340,24,0 ,44,15152,2799748,24,0 ,16,820,178312,19,8 ,15,10873,702600,1,1 ,16,820,178320,19,8 ,15,10874,702608,1,1 ,16,820,178328,20,8 ,15,10875,702616,1,1 ,16,820,178336,21,16 ,15,10876,702624,1,1 ,16,820,178344,25,8 ,15,10877,702632,1,1 ,16,820,178352,13,8 ,15,10878,702640,1,1 ,16,820,178360,19,8 ,15,10879,702648,1,1 ,16,820,178368,21,8 ,15,10880,702656,1,1 ,17,923,10139844,40,0 ,17,923,6469828,32,0 ,45,15153,5421252,24,0 ,17,923,8566980,24,0 ,17,923,9615556,32,0 ,16,820,178376,21,8 ,15,10881,702664,1,1 ,16,820,178384,19,9 ,15,10882,702672,1,1 ,16,820,178392,13,8 ,15,10883,702680,1,1 ,16,820,178400,19,8 ,15,10884,702688,1,1 ,16,820,178408,13,8 ,15,10885,702696,1,1 ,16,820,178416,19,8 ,15,10886,702704,1,1 ,16,820,178424,19,8 ,15,10887,702712,1,1 ,16,820,178432,13,8 ,15,10888,702720,1,1 ,20,22321,18528514,288,0 ,17,923,9091332,24,0 ,44,15152,1227012,48,0 ,44,15152,178436,40,0 ,45,15153,4372740,16,0 ,16,820,178440,21,11 ,15,10889,702728,1,1 ,16,820,178448,21,8 ,15,10890,702736,1,1 ,16,820,178456,21,9 ,15,10891,702744,1,1 ,16,820,178464,13,8 ,15,10892,702752,1,1 ,20,18677,8567074,12,0 ,16,820,178472,19,8 ,15,10893,702760,1,1 ,16,820,178480,13,8 ,15,10894,702768,1,1 ,16,820,178488,20,10 ,15,10895,702776,1,1 ,16,820,178496,19,8 ,15,10896,702784,1,1 ,20,19411,10139970,80,0 ,44,15152,2275652,24,0 ,17,923,7518532,40,0 ,44,15152,2799940,40,0 ,16,820,178504,25,8 ,15,10897,702792,1,1 ,16,820,178512,20,10 ,15,10898,702800,1,1 ,16,820,178520,13,8 ,15,10899,702808,1,1 ,16,820,178528,20,10 ,15,10900,702816,1,1 ,16,820,178536,20,10 ,15,10901,702824,1,1 ,16,820,178544,20,10 ,15,10902,702832,1,1 ,16,820,178552,13,8 ,15,10903,702840,1,1 ,16,820,178560,13,8 ,15,10904,702848,1,1 ,20,18678,8567170,12,0 ,17,923,8567172,48,0 ,45,15153,4372868,48,0 ,45,15153,5421444,24,0 ,16,820,178568,13,8 ,15,10905,702856,1,1 ,16,820,178576,19,8 ,15,10906,702864,1,1 ,16,820,178584,13,8 ,15,10907,702872,1,1 ,16,820,178592,13,8 ,15,10908,702880,1,1 ,16,820,178600,19,8 ,15,10909,702888,1,1 ,16,820,178608,14,8 ,15,10910,702896,1,1 ,16,820,178616,19,8 ,15,10911,702904,1,1 ,16,820,178624,13,8 ,15,10912,702912,1,1 ,17,923,9615812,32,0 ,17,923,6470084,32,0 ,17,923,9091524,32,0 ,16,820,178632,13,8 ,15,10913,702920,1,1 ,16,820,178640,13,8 ,15,10914,702928,1,1 ,16,820,178648,19,8 ,15,10915,702936,1,1 ,16,820,178656,19,9 ,15,10916,702944,1,1 ,20,18679,8567266,12,0 ,16,820,178664,19,8 ,15,10917,702952,1,1 ,16,820,178672,13,8 ,15,10918,702960,1,1 ,16,820,178680,19,8 ,15,10919,702968,1,1 ,16,820,178688,13,8 ,15,10920,702976,1,1 ,17,923,10140164,32,0 ,44,15152,2275844,24,0 ,44,15152,702980,24,0 ,16,820,178696,13,8 ,15,10921,702984,1,1 ,16,820,178704,19,8 ,15,10922,702992,1,1 ,16,820,178712,13,8 ,15,10923,703000,1,1 ,16,820,178720,21,9 ,15,10924,703008,1,1 ,20,25162,25344546,92,0 ,16,820,178728,13,8 ,15,10925,703016,1,1 ,16,820,178736,21,9 ,15,10926,703024,1,1 ,16,820,178744,13,8 ,15,10927,703032,1,1 ,16,820,178752,19,10 ,15,10928,703040,1,1 ,20,18680,8567362,140,0 ,45,15153,5421636,16,0 ,17,923,6994500,32,0 ,44,15152,178756,32,0 ,45,15153,4897348,32,0 ,16,820,178760,21,8 ,15,10929,703048,1,1 ,16,820,178768,21,9 ,15,10930,703056,1,1 ,16,820,178776,19,8 ,15,10931,703064,1,1 ,16,820,178784,13,8 ,15,10932,703072,1,1 ,16,820,178792,13,8 ,15,10933,703080,1,1 ,16,820,178800,21,9 ,15,10934,703088,1,1 ,16,820,178808,19,9 ,15,10935,703096,1,1 ,16,820,178816,19,8 ,15,10936,703104,1,1 ,20,20764,13810306,72,0 ,44,15152,1227396,56,0 ,17,923,7518852,24,0 ,44,15152,2800260,16,0 ,16,820,178824,13,8 ,15,10937,703112,1,1 ,16,820,178832,20,10 ,15,10938,703120,1,1 ,16,820,178840,21,9 ,15,10939,703128,1,1 ,16,820,178848,19,8 ,15,10940,703136,1,1 ,16,820,178856,21,8 ,15,10941,703144,1,1 ,16,820,178864,19,9 ,15,10942,703152,1,1 ,16,820,178872,19,9 ,15,10943,703160,1,1 ,16,820,178880,19,8 ,15,10944,703168,1,1 ,17,923,9616068,32,0 ,17,923,6470340,40,0 ,44,15152,2276036,56,0 ,44,15152,703172,40,0 ,44,15152,3848900,32,0 ,45,15153,5421764,32,0 ,17,923,9091780,24,0 ,16,820,178888,19,11 ,15,10945,703176,1,1 ,16,820,178896,21,11 ,15,10946,703184,1,1 ,16,820,178904,19,9 ,15,10947,703192,1,1 ,16,820,178912,19,11 ,15,10948,703200,1,1 ,20,22068,18004706,24,0 ,16,820,178920,17,8 ,15,10949,703208,1,1 ,16,820,178928,13,8 ,15,10950,703216,1,1 ,16,820,178936,19,9 ,15,10951,703224,1,1 ,16,820,178944,14,8 ,15,10952,703232,1,1 ,20,26141,27966210,128,0 ,17,923,10140420,32,0 ,44,15152,2800388,32,0 ,44,15152,3324676,80,0 ,45,15153,4373252,16,0 ,17,923,8567556,48,0 ,16,820,178952,23,9 ,15,10953,703240,1,1 ,16,820,178960,21,10 ,15,10954,703248,1,1 ,16,820,178968,21,8 ,15,10955,703256,1,1 ,16,820,178976,19,11 ,15,10956,703264,1,1 ,16,820,178984,19,8 ,15,10957,703272,1,1 ,16,820,178992,19,8 ,15,10958,703280,1,1 ,16,820,179000,19,8 ,15,10959,703288,1,1 ,16,820,179008,17,8 ,15,10960,703296,1,1 ,17,923,8043332,32,0 ,17,923,7519044,96,0 ,17,923,6994756,56,0 ,44,15152,179012,64,0 ,45,15153,4897604,32,0 ,16,820,179016,19,9 ,15,10961,703304,1,1 ,16,820,179024,17,8 ,15,10962,703312,1,1 ,16,820,179032,19,16 ,15,10963,703320,1,1 ,16,820,179040,13,8 ,15,10964,703328,1,1 ,16,820,179048,21,9 ,15,10965,703336,1,1 ,16,820,179056,13,8 ,15,10966,703344,1,1 ,16,820,179064,19,8 ,15,10967,703352,1,1 ,16,820,179072,20,13 ,15,10968,703360,1,1 ,20,24198,22723458,132,0 ,17,923,9091972,32,0 ,45,15153,4373380,96,0 ,16,820,179080,14,8 ,15,10969,703368,1,1 ,16,820,179088,19,9 ,15,10970,703376,1,1 ,16,820,179096,19,9 ,15,10971,703384,1,1 ,16,820,179104,20,14 ,15,10972,703392,1,1 ,20,22069,18004898,312,0 ,16,820,179112,19,9 ,15,10973,703400,1,1 ,16,820,179120,21,11 ,15,10974,703408,1,1 ,16,820,179128,21,9 ,15,10975,703416,1,1 ,16,820,179136,21,11 ,15,10976,703424,1,1 ,20,19412,10140610,104,0 ,20,17368,5422018,672,0 ,20,18500,8043458,12,0 ,17,923,9616324,24,0 ,44,15152,3849156,24,0 ,45,15153,5422020,24,0 ,16,820,179144,21,9 ,15,10977,703432,1,1 ,16,820,179152,13,8 ,15,10978,703440,1,1 ,16,820,179160,14,8 ,15,10979,703448,1,1 ,16,820,179168,21,11 ,15,10980,703456,1,1 ,16,820,179176,20,10 ,15,10981,703464,1,1 ,16,820,179184,20,10 ,15,10982,703472,1,1 ,16,820,179192,19,9 ,15,10983,703480,1,1 ,16,820,179200,20,8 ,15,10984,703488,1,1 ,20,23035,20102146,80,0 ,17,923,10140676,16,0 ,17,923,6470660,32,0 ,44,15152,2800644,48,0 ,44,15152,703492,24,0 ,16,820,179208,19,10 ,15,10985,703496,1,1 ,16,820,179216,21,14 ,15,10986,703504,1,1 ,16,820,179224,19,13 ,15,10987,703512,1,1 ,16,820,179232,13,8 ,15,10988,703520,1,1 ,20,18501,8043554,52,0 ,16,820,179240,20,8 ,15,10989,703528,1,1 ,16,820,179248,19,8 ,15,10990,703536,1,1 ,16,820,179256,13,8 ,15,10991,703544,1,1 ,16,820,179264,20,8 ,15,10992,703552,1,1 ,17,923,8043588,96,0 ,44,15152,1227844,56,0 ,45,15153,4897860,24,0 ,16,820,179272,20,8 ,15,10993,703560,1,1 ,16,820,179280,20,8 ,15,10994,703568,1,1 ,16,820,179288,21,12 ,15,10995,703576,1,1 ,16,820,179296,14,8 ,15,10996,703584,1,1 ,16,820,179304,13,8 ,15,10997,703592,1,1 ,16,820,179312,13,8 ,15,10998,703600,1,1 ,16,820,179320,13,8 ,15,10999,703608,1,1 ,16,820,179328,20,8 ,15,11000,703616,1,1 ,17,923,10140804,16,0 ,44,15152,2276484,24,0 ,44,15152,3849348,80,0 ,45,15153,5422212,80,0 ,17,923,8567940,24,0 ,17,923,9092228,56,0 ,17,923,9616516,40,0 ,16,820,179336,20,8 ,15,11001,703624,1,1 ,16,820,179344,19,8 ,15,11002,703632,1,1 ,16,820,179352,19,8 ,15,11003,703640,1,1 ,16,820,179360,21,8 ,15,11004,703648,1,1 ,16,820,179368,19,12 ,15,11005,703656,1,1 ,16,820,179376,17,8 ,15,11006,703664,1,1 ,16,820,179384,17,8 ,15,11007,703672,1,1 ,16,820,179392,20,8 ,15,11008,703680,1,1 ,20,20765,13810882,128,0 ,44,15152,703684,88,0 ,16,820,179400,20,8 ,15,11009,703688,1,1 ,16,820,179408,13,8 ,15,11010,703696,1,1 ,16,820,179416,19,8 ,15,11011,703704,1,1 ,16,820,179424,19,10 ,15,11012,703712,1,1 ,20,24956,24820962,228,0 ,20,26420,29015266,216,0 ,16,820,179432,19,11 ,15,11013,703720,1,1 ,16,820,179440,20,10 ,15,11014,703728,1,1 ,16,820,179448,20,10 ,15,11015,703736,1,1 ,16,820,179456,19,11 ,15,11016,703744,1,1 ,20,25163,25345282,1180,0 ,20,25381,25869570,24,0 ,17,923,10140932,48,0 ,17,923,6995204,48,0 ,17,923,6470916,32,0 ,45,15153,4898052,48,0 ,16,820,179464,23,14 ,15,11017,703752,1,1 ,16,820,179472,13,8 ,15,11018,703760,1,1 ,16,820,179480,20,8 ,15,11019,703768,1,1 ,16,820,179488,20,8 ,15,11020,703776,1,1 ,16,820,179496,20,8 ,15,11021,703784,1,1 ,16,820,179504,19,8 ,15,11022,703792,1,1 ,16,820,179512,20,8 ,15,11023,703800,1,1 ,16,820,179520,21,12 ,15,11024,703808,1,1 ,17,923,8568132,64,0 ,44,15152,2276676,24,0 ,44,15152,179524,32,0 ,16,820,179528,21,8 ,15,11025,703816,1,1 ,16,820,179536,19,8 ,15,11026,703824,1,1 ,16,820,179544,19,9 ,15,11027,703832,1,1 ,16,820,179552,19,18 ,15,11028,703840,1,1 ,16,820,179560,19,10 ,15,11029,703848,1,1 ,16,820,179568,20,8 ,15,11030,703856,1,1 ,16,820,179576,19,11 ,15,11031,703864,1,1 ,16,820,179584,17,8 ,15,11032,703872,1,1 ,20,16724,3849602,12,0 ,44,15152,3325316,48,0 ,44,15152,2801028,24,0 ,16,820,179592,20,10 ,15,11033,703880,1,1 ,16,820,179600,19,11 ,15,11034,703888,1,1 ,16,820,179608,13,8 ,15,11035,703896,1,1 ,16,820,179616,19,10 ,15,11036,703904,1,1 ,20,24383,23248290,304,0 ,16,820,179624,20,11 ,15,11037,703912,1,1 ,16,820,179632,21,8 ,15,11038,703920,1,1 ,16,820,179640,17,8 ,15,11039,703928,1,1 ,16,820,179648,21,8 ,15,11040,703936,1,1 ,20,18502,8043970,332,0 ,20,25382,25869762,92,0 ,20,15820,1752514,168,0 ,17,923,9616836,40,0 ,16,820,179656,20,10 ,15,11041,703944,1,1 ,16,820,179664,19,8 ,15,11042,703952,1,1 ,16,820,179672,21,8 ,15,11043,703960,1,1 ,16,820,179680,19,8 ,15,11044,703968,1,1 ,20,16725,3849698,188,0 ,16,820,179688,21,15 ,15,11045,703976,1,1 ,16,820,179696,20,8 ,15,11046,703984,1,1 ,16,820,179704,21,17 ,15,11047,703992,1,1 ,16,820,179712,14,8 ,15,11048,704000,1,1 ,44,15152,1228292,24,0 ,17,923,6471172,40,0 ,44,15152,2276868,24,0 ,16,820,179720,20,8 ,15,11049,704008,1,1 ,16,820,179728,21,11 ,15,11050,704016,1,1 ,16,820,179736,21,14 ,15,11051,704024,1,1 ,16,820,179744,20,10 ,15,11052,704032,1,1 ,20,18980,9092642,48,0 ,16,820,179752,21,10 ,15,11053,704040,1,1 ,16,820,179760,21,8 ,15,11054,704048,1,1 ,16,820,179768,21,8 ,15,11055,704056,1,1 ,16,820,179776,21,15 ,15,11056,704064,1,1 ,20,16401,3325506,140,0 ,17,923,9092676,48,0 ,17,923,7519812,32,0 ,44,15152,2801220,40,0 ,44,15152,179780,40,0 ,16,820,179784,14,8 ,15,11057,704072,1,1 ,16,820,179792,14,8 ,15,11058,704080,1,1 ,16,820,179800,13,8 ,15,11059,704088,1,1 ,16,820,179808,20,8 ,15,11060,704096,1,1 ,16,820,179816,21,9 ,15,11061,704104,1,1 ,16,820,179824,21,10 ,15,11062,704112,1,1 ,16,820,179832,20,8 ,15,11063,704120,1,1 ,16,820,179840,19,10 ,15,11064,704128,1,1 ,20,23036,20102786,24,0 ,20,25529,26394242,192,0 ,17,923,10141316,48,0 ,17,923,6995588,56,0 ,45,15153,4374148,24,0 ,45,15153,4898436,32,0 ,16,820,179848,20,8 ,15,11065,704136,1,1 ,16,820,179856,19,8 ,15,11066,704144,1,1 ,16,820,179864,20,8 ,15,11067,704152,1,1 ,16,820,179872,19,11 ,15,11068,704160,1,1 ,20,18681,8568482,12,0 ,16,820,179880,19,8 ,15,11069,704168,1,1 ,16,820,179888,20,8 ,15,11070,704176,1,1 ,16,820,179896,13,8 ,15,11071,704184,1,1 ,16,820,179904,21,9 ,15,11072,704192,1,1 ,44,15152,1228484,24,0 ,44,15152,2277060,32,0 ,16,820,179912,21,11 ,15,11073,704200,1,1 ,16,820,179920,19,8 ,15,11074,704208,1,1 ,16,820,179928,19,8 ,15,11075,704216,1,1 ,16,820,179936,19,9 ,15,11076,704224,1,1 ,16,820,179944,21,10 ,15,11077,704232,1,1 ,16,820,179952,20,8 ,15,11078,704240,1,1 ,16,820,179960,19,8 ,15,11079,704248,1,1 ,16,820,179968,25,13 ,15,11080,704256,1,1 ,20,19413,10141442,12,0 ,20,26142,27967234,44,0 ,20,18682,8568578,92,0 ,17,923,9617156,24,0 ,44,15152,3325700,56,0 ,44,15152,3849988,112,0 ,45,15153,5422852,24,0 ,16,820,179976,25,12 ,15,11081,704264,1,1 ,16,820,179984,20,10 ,15,11082,704272,1,1 ,16,820,179992,19,8 ,15,11083,704280,1,1 ,16,820,180000,23,16 ,15,11084,704288,1,1 ,16,820,180008,21,9 ,15,11085,704296,1,1 ,16,820,180016,17,8 ,15,11086,704304,1,1 ,16,820,180024,13,8 ,15,11087,704312,1,1 ,16,820,180032,20,10 ,15,11088,704320,1,1 ,20,23037,20102978,24,0 ,20,18247,7520066,388,0 ,20,21565,16432962,644,0 ,17,923,8568644,24,0 ,17,923,7520068,48,0 ,17,923,6471492,40,0 ,45,15153,4374340,64,0 ,17,923,8044356,48,0 ,16,820,180040,19,8 ,15,11089,704328,1,1 ,16,820,180048,17,9 ,15,11090,704336,1,1 ,16,820,180056,19,9 ,15,11091,704344,1,1 ,16,820,180064,19,9 ,15,11092,704352,1,1 ,20,19414,10141538,12,0 ,16,820,180072,20,8 ,15,11093,704360,1,1 ,16,820,180080,19,9 ,15,11094,704368,1,1 ,16,820,180088,19,18 ,15,11095,704376,1,1 ,16,820,180096,19,8 ,15,11096,704384,1,1 ,20,15391,704386,304,0 ,45,15153,4898692,16,0 ,44,15152,2801540,24,0 ,44,15152,1228676,24,0 ,44,15152,180100,32,0 ,44,15152,704388,24,0 ,16,820,180104,19,8 ,15,11097,704392,1,1 ,16,820,180112,19,8 ,15,11098,704400,1,1 ,16,820,180120,19,11 ,15,11099,704408,1,1 ,16,820,180128,13,8 ,15,11100,704416,1,1 ,20,24199,22724514,132,0 ,20,18981,9093026,460,0 ,16,820,180136,13,8 ,15,11101,704424,1,1 ,16,820,180144,13,8 ,15,11102,704432,1,1 ,16,820,180152,14,8 ,15,11103,704440,1,1 ,16,820,180160,21,9 ,15,11104,704448,1,1 ,20,19415,10141634,52,0 ,17,923,9617348,32,0 ,44,15152,2277316,80,0 ,45,15153,5423044,32,0 ,17,923,9093060,40,0 ,16,820,180168,13,8 ,15,11105,704456,1,1 ,16,820,180176,13,8 ,15,11106,704464,1,1 ,16,820,180184,20,10 ,15,11107,704472,1,1 ,16,820,180192,14,8 ,15,11108,704480,1,1 ,16,820,180200,20,10 ,15,11109,704488,1,1 ,16,820,180208,21,12 ,15,11110,704496,1,1 ,16,820,180216,19,9 ,15,11111,704504,1,1 ,16,820,180224,19,8 ,15,11112,704512,1,1 ,20,23038,20103170,24,0 ,17,923,10141700,32,0 ,45,15153,4898820,16,0 ,17,923,8568836,32,0 ,16,820,180232,25,11 ,15,11113,704520,1,1 ,16,820,180240,25,13 ,15,11114,704528,1,1 ,16,820,180248,13,8 ,15,11115,704536,1,1 ,16,820,180256,21,8 ,15,11116,704544,1,1 ,16,820,180264,20,11 ,15,11117,704552,1,1 ,16,820,180272,19,8 ,15,11118,704560,1,1 ,16,820,180280,17,8 ,15,11119,704568,1,1 ,16,820,180288,21,9 ,15,11120,704576,1,1 ,20,21840,16957506,336,0 ,44,15152,704580,56,0 ,17,923,6996036,48,0 ,44,15152,2801732,88,0 ,44,15152,1228868,24,0 ,16,820,180296,21,9 ,15,11121,704584,1,1 ,16,820,180304,19,10 ,15,11122,704592,1,1 ,16,820,180312,19,9 ,15,11123,704600,1,1 ,16,820,180320,13,8 ,15,11124,704608,1,1 ,20,26143,27967586,52,0 ,16,820,180328,20,8 ,15,11125,704616,1,1 ,16,820,180336,21,8 ,15,11126,704624,1,1 ,16,820,180344,13,8 ,15,11127,704632,1,1 ,16,820,180352,20,10 ,15,11128,704640,1,1 ,45,15153,4898948,24,0 ,17,923,6471812,40,0 ,44,15152,180356,16,0 ,16,820,180360,19,8 ,15,11129,704648,1,1 ,16,820,180368,19,9 ,15,11130,704656,1,1 ,16,820,180376,19,8 ,15,11131,704664,1,1 ,16,820,180384,19,9 ,15,11132,704672,1,1 ,20,25383,25870498,132,0 ,16,820,180392,13,8 ,15,11133,704680,1,1 ,16,820,180400,21,9 ,15,11134,704688,1,1 ,16,820,180408,21,15 ,15,11135,704696,1,1 ,16,820,180416,21,12 ,15,11136,704704,1,1 ,20,23039,20103362,380,0 ,20,20766,13811906,12,0 ,20,22546,19054786,88,0 ,17,923,9617604,32,0 ,17,923,7520452,24,0 ,44,15152,3326148,24,0 ,45,15153,5423300,24,0 ,17,923,8044740,128,0 ,16,820,180424,13,8 ,15,11137,704712,1,1 ,16,820,180432,13,8 ,15,11138,704720,1,1 ,16,820,180440,13,8 ,15,11139,704728,1,1 ,16,820,180448,13,8 ,15,11140,704736,1,1 ,16,820,180456,19,8 ,15,11141,704744,1,1 ,16,820,180464,21,10 ,15,11142,704752,1,1 ,16,820,180472,13,8 ,15,11143,704760,1,1 ,16,820,180480,13,8 ,15,11144,704768,1,1 ,17,923,10141956,48,0 ,44,15152,1229060,24,0 ,44,15152,180484,80,0 ,17,923,8569092,48,0 ,17,923,9093380,32,0 ,16,820,180488,19,8 ,15,11145,704776,1,1 ,16,820,180496,21,8 ,15,11146,704784,1,1 ,16,820,180504,19,8 ,15,11147,704792,1,1 ,16,820,180512,19,8 ,15,11148,704800,1,1 ,20,20767,13812002,84,0 ,16,820,180520,19,8 ,15,11149,704808,1,1 ,16,820,180528,19,8 ,15,11150,704816,1,1 ,16,820,180536,21,9 ,15,11151,704824,1,1 ,16,820,180544,21,9 ,15,11152,704832,1,1 ,45,15153,4899140,16,0 ,45,15153,4374852,32,0 ,16,820,180552,21,9 ,15,11153,704840,1,1 ,16,820,180560,21,9 ,15,11154,704848,1,1 ,16,820,180568,21,9 ,15,11155,704856,1,1 ,16,820,180576,19,8 ,15,11156,704864,1,1 ,20,19416,10142050,12,0 ,16,820,180584,21,8 ,15,11157,704872,1,1 ,16,820,180592,21,8 ,15,11158,704880,1,1 ,16,820,180600,21,8 ,15,11159,704888,1,1 ,16,820,180608,21,8 ,15,11160,704896,1,1 ,45,15153,5423492,32,0 ,17,923,7520644,32,0 ,44,15152,3326340,24,0 ,16,820,180616,21,8 ,15,11161,704904,1,1 ,16,820,180624,21,8 ,15,11162,704912,1,1 ,16,820,180632,21,9 ,15,11163,704920,1,1 ,16,820,180640,21,9 ,15,11164,704928,1,1 ,16,820,180648,21,9 ,15,11165,704936,1,1 ,16,820,180656,19,8 ,15,11166,704944,1,1 ,16,820,180664,21,9 ,15,11167,704952,1,1 ,16,820,180672,21,9 ,15,11168,704960,1,1 ,20,19417,10142146,128,0 ,17,923,9617860,32,0 ,17,923,6996420,48,0 ,17,923,6472132,40,0 ,44,15152,1229252,16,0 ,45,15153,4899268,24,0 ,16,820,180680,19,8 ,15,11169,704968,1,1 ,16,820,180688,21,8 ,15,11170,704976,1,1 ,16,820,180696,21,8 ,15,11171,704984,1,1 ,16,820,180704,13,8 ,15,11172,704992,1,1 ,20,20010,11190754,128,0 ,20,18683,8569314,48,0 ,16,820,180712,21,8 ,15,11173,705000,1,1 ,16,820,180720,19,12 ,15,11174,705008,1,1 ,16,820,180728,19,8 ,15,11175,705016,1,1 ,16,820,180736,19,8 ,15,11176,705024,1,1 ,20,22322,18530818,176,0 ,20,26144,27968002,380,0 ,17,923,9093636,40,0 ,44,15152,705028,24,0 ,16,820,180744,19,8 ,15,11177,705032,1,1 ,16,820,180752,19,9 ,15,11178,705040,1,1 ,16,820,180760,21,14 ,15,11179,705048,1,1 ,16,820,180768,13,8 ,15,11180,705056,1,1 ,16,820,180776,19,9 ,15,11181,705064,1,1 ,16,820,180784,21,11 ,15,11182,705072,1,1 ,16,820,180792,19,10 ,15,11183,705080,1,1 ,16,820,180800,19,9 ,15,11184,705088,1,1 ,45,15153,4375108,24,0 ,44,15152,2277956,48,0 ,44,15152,1229380,16,0 ,44,15152,3326532,24,0 ,16,820,180808,19,11 ,15,11185,705096,1,1 ,16,820,180816,19,8 ,15,11186,705104,1,1 ,16,820,180824,19,10 ,15,11187,705112,1,1 ,16,820,180832,19,13 ,15,11188,705120,1,1 ,20,17771,6472290,12,0 ,16,820,180840,21,9 ,15,11189,705128,1,1 ,16,820,180848,19,8 ,15,11190,705136,1,1 ,16,820,180856,21,10 ,15,11191,705144,1,1 ,16,820,180864,20,11 ,15,11192,705152,1,1 ,17,923,10142340,24,0 ,17,923,7520900,32,0 ,44,15152,3850884,32,0 ,45,15153,4899460,24,0 ,45,15153,5423748,16,0 ,17,923,8569476,64,0 ,16,820,180872,21,8 ,15,11193,705160,1,1 ,16,820,180880,19,8 ,15,11194,705168,1,1 ,16,820,180888,21,9 ,15,11195,705176,1,1 ,16,820,180896,25,17 ,15,11196,705184,1,1 ,20,16402,3326626,32,0 ,16,820,180904,13,8 ,15,11197,705192,1,1 ,16,820,180912,19,10 ,15,11198,705200,1,1 ,16,820,180920,20,11 ,15,11199,705208,1,1 ,16,820,180928,14,8 ,15,11200,705216,1,1 ,20,17772,6472386,276,0 ,17,923,9618116,24,0 ,44,15152,1229508,24,0 ,44,15152,705220,40,0 ,16,820,180936,19,8 ,15,11201,705224,1,1 ,16,820,180944,19,8 ,15,11202,705232,1,1 ,16,820,180952,13,8 ,15,11203,705240,1,1 ,16,820,180960,21,9 ,15,11204,705248,1,1 ,16,820,180968,19,9 ,15,11205,705256,1,1 ,16,820,180976,13,8 ,15,11206,705264,1,1 ,16,820,180984,13,8 ,15,11207,705272,1,1 ,16,820,180992,25,9 ,15,11208,705280,1,1 ,20,15821,1753858,168,0 ,45,15153,5423876,40,0 ,17,923,6472452,40,0 ,44,15152,2802436,24,0 ,44,15152,3326724,16,0 ,45,15153,4375300,32,0 ,16,820,181000,19,8 ,15,11209,705288,1,1 ,16,820,181008,19,8 ,15,11210,705296,1,1 ,16,820,181016,21,8 ,15,11211,705304,1,1 ,16,820,181024,19,9 ,15,11212,705312,1,1 ,16,820,181032,19,9 ,15,11213,705320,1,1 ,16,820,181040,19,10 ,15,11214,705328,1,1 ,16,820,181048,13,8 ,15,11215,705336,1,1 ,16,820,181056,20,8 ,15,11216,705344,1,1 ,17,923,10142532,40,0 ,17,923,6996804,40,0 ,45,15153,4899652,24,0 ,17,923,9093956,32,0 ,16,820,181064,19,9 ,15,11217,705352,1,1 ,16,820,181072,13,8 ,15,11218,705360,1,1 ,16,820,181080,13,8 ,15,11219,705368,1,1 ,16,820,181088,13,8 ,15,11220,705376,1,1 ,20,18684,8569698,56,0 ,16,820,181096,13,8 ,15,11221,705384,1,1 ,16,820,181104,13,8 ,15,11222,705392,1,1 ,16,820,181112,13,8 ,15,11223,705400,1,1 ,16,820,181120,13,8 ,15,11224,705408,1,1 ,20,22547,19055490,300,0 ,20,21340,15909762,416,0 ,17,923,9618308,24,0 ,17,923,7521156,32,0 ,44,15152,1229700,24,0 ,44,15152,181124,80,0 ,44,15152,3326852,32,0 ,44,15152,3851140,32,0 ,16,820,181128,13,8 ,15,11225,705416,1,1 ,16,820,181136,13,8 ,15,11226,705424,1,1 ,16,820,181144,13,8 ,15,11227,705432,1,1 ,16,820,181152,19,9 ,15,11228,705440,1,1 ,20,16403,3326882,100,0 ,20,26421,29016994,724,0 ,16,820,181160,19,8 ,15,11229,705448,1,1 ,16,820,181168,13,8 ,15,11230,705456,1,1 ,16,820,181176,19,10 ,15,11231,705464,1,1 ,16,820,181184,19,10 ,15,11232,705472,1,1 ,20,24200,22725570,24,0 ,20,16726,3851202,372,0 ,20,20768,13812674,364,0 ,44,15152,2278340,24,0 ,44,15152,2802628,40,0 ,16,820,181192,20,10 ,15,11233,705480,1,1 ,16,820,181200,19,10 ,15,11234,705488,1,1 ,16,820,181208,19,10 ,15,11235,705496,1,1 ,16,820,181216,13,8 ,15,11236,705504,1,1 ,16,820,181224,19,8 ,15,11237,705512,1,1 ,16,820,181232,19,10 ,15,11238,705520,1,1 ,16,820,181240,21,10 ,15,11239,705528,1,1 ,16,820,181248,22,12 ,15,11240,705536,1,1 ,20,24957,24822786,176,0 ,45,15153,4899844,24,0 ,44,15152,705540,40,0 ,45,15153,4375556,32,0 ,16,820,181256,19,10 ,15,11241,705544,1,1 ,16,820,181264,19,10 ,15,11242,705552,1,1 ,16,820,181272,21,8 ,15,11243,705560,1,1 ,16,820,181280,19,8 ,15,11244,705568,1,1 ,16,820,181288,21,8 ,15,11245,705576,1,1 ,16,820,181296,19,8 ,15,11246,705584,1,1 ,16,820,181304,21,8 ,15,11247,705592,1,1 ,16,820,181312,13,8 ,15,11248,705600,1,1 ,17,923,9618500,40,0 ,17,923,6472772,32,0 ,44,15152,1229892,24,0 ,45,15153,5424196,40,0 ,17,923,9094212,32,0 ,16,820,181320,19,8 ,15,11249,705608,1,1 ,16,820,181328,19,10 ,15,11250,705616,1,1 ,16,820,181336,19,10 ,15,11251,705624,1,1 ,16,820,181344,20,11 ,15,11252,705632,1,1 ,16,820,181352,19,10 ,15,11253,705640,1,1 ,16,820,181360,19,10 ,15,11254,705648,1,1 ,16,820,181368,19,8 ,15,11255,705656,1,1 ,16,820,181376,19,8 ,15,11256,705664,1,1 ,20,24201,22725762,12,0 ,20,25530,26395778,188,0 ,17,923,10142852,32,0 ,17,923,7521412,24,0 ,17,923,6997124,40,0 ,44,15152,2278532,80,0 ,44,15152,3327108,56,0 ,44,15152,3851396,24,0 ,17,923,8569988,40,0 ,16,820,181384,21,8 ,15,11257,705672,1,1 ,16,820,181392,19,8 ,15,11258,705680,1,1 ,16,820,181400,19,8 ,15,11259,705688,1,1 ,16,820,181408,19,8 ,15,11260,705696,1,1 ,16,820,181416,19,8 ,15,11261,705704,1,1 ,16,820,181424,21,8 ,15,11262,705712,1,1 ,16,820,181432,19,9 ,15,11263,705720,1,1 ,16,820,181440,19,8 ,15,11264,705728,1,1 ,20,25384,25871554,356,0 ,17,923,8045764,32,0 ,45,15153,4900036,24,0 ,16,820,181448,19,8 ,15,11265,705736,1,1 ,16,820,181456,19,8 ,15,11266,705744,1,1 ,16,820,181464,19,8 ,15,11267,705752,1,1 ,16,820,181472,21,8 ,15,11268,705760,1,1 ,20,24202,22725858,12,0 ,16,820,181480,21,8 ,15,11269,705768,1,1 ,16,820,181488,19,8 ,15,11270,705776,1,1 ,16,820,181496,21,8 ,15,11271,705784,1,1 ,16,820,181504,19,8 ,15,11272,705792,1,1 ,20,25719,26920194,148,0 ,45,15153,4375812,16,0 ,44,15152,2802948,32,0 ,44,15152,1230084,48,0 ,16,820,181512,21,8 ,15,11273,705800,1,1 ,16,820,181520,19,8 ,15,11274,705808,1,1 ,16,820,181528,21,8 ,15,11275,705816,1,1 ,16,820,181536,19,8 ,15,11276,705824,1,1 ,20,18685,8570146,112,0 ,16,820,181544,19,8 ,15,11277,705832,1,1 ,16,820,181552,19,8 ,15,11278,705840,1,1 ,16,820,181560,19,8 ,15,11279,705848,1,1 ,16,820,181568,21,8 ,15,11280,705856,1,1 ,20,24203,22725954,180,0 ,17,923,9094468,32,0 ,17,923,7521604,64,0 ,17,923,6473028,40,0 ,44,15152,705860,32,0 ,44,15152,3851588,40,0 ,16,820,181576,19,8 ,15,11281,705864,1,1 ,16,820,181584,21,8 ,15,11282,705872,1,1 ,16,820,181592,14,8 ,15,11283,705880,1,1 ,16,820,181600,19,9 ,15,11284,705888,1,1 ,20,22070,18007394,196,0 ,20,20272,12764514,640,0 ,16,820,181608,19,8 ,15,11285,705896,1,1 ,16,820,181616,14,8 ,15,11286,705904,1,1 ,16,820,181624,19,8 ,15,11287,705912,1,1 ,16,820,181632,17,8 ,15,11288,705920,1,1 ,20,23376,20628866,524,0 ,17,923,10143108,24,0 ,45,15153,4375940,24,0 ,45,15153,4900228,32,0 ,45,15153,5424516,16,0 ,17,923,9618820,40,0 ,16,820,181640,21,8 ,15,11289,705928,1,1 ,16,820,181648,21,9 ,15,11290,705936,1,1 ,16,820,181656,21,8 ,15,11291,705944,1,1 ,16,820,181664,20,8 ,15,11292,705952,1,1 ,16,820,181672,14,8 ,15,11293,705960,1,1 ,16,820,181680,20,15 ,15,11294,705968,1,1 ,16,820,181688,19,10 ,15,11295,705976,1,1 ,16,820,181696,21,10 ,15,11296,705984,1,1 ,20,19418,10143170,232,0 ,17,923,8570308,48,0 ,17,923,6997444,48,0 ,17,923,8046020,48,0 ,16,820,181704,21,10 ,15,11297,705992,1,1 ,16,820,181712,19,9 ,15,11298,706000,1,1 ,16,820,181720,13,8 ,15,11299,706008,1,1 ,16,820,181728,20,11 ,15,11300,706016,1,1 ,20,20011,11191778,12,0 ,16,820,181736,19,9 ,15,11301,706024,1,1 ,16,820,181744,19,8 ,15,11302,706032,1,1 ,16,820,181752,19,9 ,15,11303,706040,1,1 ,16,820,181760,13,8 ,15,11304,706048,1,1 ,45,15153,5424644,16,0 ,44,15152,2803204,40,0 ,44,15152,181764,48,0 ,16,820,181768,14,8 ,15,11305,706056,1,1 ,16,820,181776,13,8 ,15,11306,706064,1,1 ,16,820,181784,19,10 ,15,11307,706072,1,1 ,16,820,181792,19,9 ,15,11308,706080,1,1 ,16,820,181800,19,8 ,15,11309,706088,1,1 ,16,820,181808,19,8 ,15,11310,706096,1,1 ,16,820,181816,19,9 ,15,11311,706104,1,1 ,16,820,181824,17,8 ,15,11312,706112,1,1 ,20,20012,11191874,112,0 ,17,923,10143300,24,0 ,44,15152,706116,32,0 ,44,15152,3327556,24,0 ,45,15153,4376132,40,0 ,17,923,9094724,24,0 ,16,820,181832,19,9 ,15,11313,706120,1,1 ,16,820,181840,19,8 ,15,11314,706128,1,1 ,16,820,181848,19,10 ,15,11315,706136,1,1 ,16,820,181856,19,9 ,15,11316,706144,1,1 ,16,820,181864,19,10 ,15,11317,706152,1,1 ,16,820,181872,19,9 ,15,11318,706160,1,1 ,16,820,181880,19,9 ,15,11319,706168,1,1 ,16,820,181888,17,8 ,15,11320,706176,1,1 ,45,15153,5424772,32,0 ,17,923,6473348,40,0 ,44,15152,1230468,32,0 ,44,15152,3851908,40,0 ,45,15153,4900484,16,0 ,16,820,181896,19,10 ,15,11321,706184,1,1 ,16,820,181904,19,9 ,15,11322,706192,1,1 ,16,820,181912,17,8 ,15,11323,706200,1,1 ,16,820,181920,17,8 ,15,11324,706208,1,1 ,16,820,181928,19,9 ,15,11325,706216,1,1 ,16,820,181936,19,10 ,15,11326,706224,1,1 ,16,820,181944,19,8 ,15,11327,706232,1,1 ,16,820,181952,21,8 ,15,11328,706240,1,1 ,20,16404,3327682,100,0 ,20,25945,27444930,88,0 ,17,923,9619140,40,0 ,16,820,181960,17,8 ,15,11329,706248,1,1 ,16,820,181968,19,9 ,15,11330,706256,1,1 ,16,820,181976,19,9 ,15,11331,706264,1,1 ,16,820,181984,17,8 ,15,11332,706272,1,1 ,16,820,181992,19,9 ,15,11333,706280,1,1 ,16,820,182000,17,8 ,15,11334,706288,1,1 ,16,820,182008,17,8 ,15,11335,706296,1,1 ,16,820,182016,19,9 ,15,11336,706304,1,1 ,17,923,10143492,32,0 ,44,15152,2279172,48,0 ,44,15152,3327748,64,0 ,45,15153,4900612,80,0 ,17,923,9094916,32,0 ,16,820,182024,19,9 ,15,11337,706312,1,1 ,16,820,182032,17,8 ,15,11338,706320,1,1 ,16,820,182040,19,10 ,15,11339,706328,1,1 ,16,820,182048,19,10 ,15,11340,706336,1,1 ,20,24384,23250722,76,0 ,16,820,182056,19,9 ,15,11341,706344,1,1 ,16,820,182064,19,10 ,15,11342,706352,1,1 ,16,820,182072,19,9 ,15,11343,706360,1,1 ,16,820,182080,19,10 ,15,11344,706368,1,1 ,17,923,8570692,48,0 ,17,923,7522116,16,0 ,17,923,6997828,48,0 ,44,15152,2803524,88,0 ,44,15152,1754948,24,0 ,44,15152,706372,48,0 ,17,923,8046404,32,0 ,16,820,182088,19,9 ,15,11345,706376,1,1 ,16,820,182096,17,8 ,15,11346,706384,1,1 ,16,820,182104,19,9 ,15,11347,706392,1,1 ,16,820,182112,19,9 ,15,11348,706400,1,1 ,16,820,182120,19,10 ,15,11349,706408,1,1 ,16,820,182128,19,10 ,15,11350,706416,1,1 ,16,820,182136,19,9 ,15,11351,706424,1,1 ,16,820,182144,19,9 ,15,11352,706432,1,1 ,20,22323,18532226,56,0 ,45,15153,5425028,24,0 ,44,15152,1230724,24,0 ,44,15152,182148,16,0 ,45,15153,4376452,40,0 ,16,820,182152,19,9 ,15,11353,706440,1,1 ,16,820,182160,19,11 ,15,11354,706448,1,1 ,16,820,182168,21,17 ,15,11355,706456,1,1 ,16,820,182176,13,8 ,15,11356,706464,1,1 ,16,820,182184,21,21 ,15,11357,706472,1,1 ,16,820,182192,21,15 ,15,11358,706480,1,1 ,16,820,182200,13,8 ,15,11359,706488,1,1 ,16,820,182208,14,8 ,15,11360,706496,1,1 ,44,15152,3852228,32,0 ,17,923,7522244,32,0 ,17,923,6473668,56,0 ,16,820,182216,19,10 ,15,11361,706504,1,1 ,16,820,182224,14,8 ,15,11362,706512,1,1 ,16,820,182232,17,8 ,15,11363,706520,1,1 ,16,820,182240,19,9 ,15,11364,706528,1,1 ,16,820,182248,21,8 ,15,11365,706536,1,1 ,16,820,182256,13,8 ,15,11366,706544,1,1 ,16,820,182264,13,8 ,15,11367,706552,1,1 ,16,820,182272,19,8 ,15,11368,706560,1,1 ,17,923,10143748,24,0 ,44,15152,1755140,80,0 ,44,15152,182276,248,0 ,17,923,9095172,48,0 ,17,923,9619460,24,0 ,16,820,182280,21,8 ,15,11369,706568,1,1 ,16,820,182288,19,8 ,15,11370,706576,1,1 ,16,820,182296,14,8 ,15,11371,706584,1,1 ,16,820,182304,13,8 ,15,11372,706592,1,1 ,20,18503,8046626,504,0 ,16,820,182312,13,8 ,15,11373,706600,1,1 ,16,820,182320,13,8 ,15,11374,706608,1,1 ,16,820,182328,13,8 ,15,11375,706616,1,1 ,16,820,182336,13,8 ,15,11376,706624,1,1 ,20,15822,1755202,536,0 ,17,923,8046660,32,0 ,44,15152,1230916,24,0 ,45,15153,5425220,16,0 ,16,820,182344,19,8 ,15,11377,706632,1,1 ,16,820,182352,13,8 ,15,11378,706640,1,1 ,16,820,182360,19,9 ,15,11379,706648,1,1 ,16,820,182368,21,13 ,15,11380,706656,1,1 ,16,820,182376,21,8 ,15,11381,706664,1,1 ,16,820,182384,19,9 ,15,11382,706672,1,1 ,16,820,182392,19,8 ,15,11383,706680,1,1 ,16,820,182400,17,8 ,15,11384,706688,1,1 ,44,15152,2279556,56,0 ,16,820,182408,13,8 ,15,11385,706696,1,1 ,16,820,182416,22,13 ,15,11386,706704,1,1 ,16,820,182424,19,10 ,15,11387,706712,1,1 ,16,820,182432,13,8 ,15,11388,706720,1,1 ,20,18686,8571042,12,0 ,16,820,182440,14,8 ,15,11389,706728,1,1 ,16,820,182448,19,8 ,15,11390,706736,1,1 ,16,820,182456,19,10 ,15,11391,706744,1,1 ,16,820,182464,13,8 ,15,11392,706752,1,1 ,20,15653,1231042,556,0 ,17,923,10143940,40,0 ,17,923,7522500,32,0 ,17,923,6998212,24,0 ,44,15152,706756,32,0 ,44,15152,3852484,40,0 ,45,15153,4376772,24,0 ,45,15153,5425348,72,0 ,17,923,8571076,40,0 ,17,923,9619652,24,0 ,16,820,182472,19,8 ,15,11393,706760,1,1 ,16,820,182480,19,8 ,15,11394,706768,1,1 ,16,820,182488,21,8 ,15,11395,706776,1,1 ,16,820,182496,19,8 ,15,11396,706784,1,1 ,16,820,182504,19,8 ,15,11397,706792,1,1 ,16,820,182512,19,8 ,15,11398,706800,1,1 ,16,820,182520,19,8 ,15,11399,706808,1,1 ,16,820,182528,19,9 ,15,11400,706816,1,1 ,20,18687,8571138,12,0 ,20,15392,706818,596,0 ,44,15152,3328260,128,0 ,44,15152,1231108,504,0 ,16,820,182536,19,8 ,15,11401,706824,1,1 ,16,820,182544,19,8 ,15,11402,706832,1,1 ,16,820,182552,19,8 ,15,11403,706840,1,1 ,16,820,182560,13,8 ,15,11404,706848,1,1 ,20,23971,22202658,24,0 ,16,820,182568,21,19 ,15,11405,706856,1,1 ,16,820,182576,21,9 ,15,11406,706864,1,1 ,16,820,182584,13,8 ,15,11407,706872,1,1 ,16,820,182592,20,8 ,15,11408,706880,1,1 ,20,22324,18532674,104,0 ,17,923,8046916,24,0 ,16,820,182600,21,11 ,15,11409,706888,1,1 ,16,820,182608,21,8 ,15,11410,706896,1,1 ,16,820,182616,21,17 ,15,11411,706904,1,1 ,16,820,182624,14,8 ,15,11412,706912,1,1 ,20,18688,8571234,12,0 ,20,16990,4376930,820,0 ,16,820,182632,13,8 ,15,11413,706920,1,1 ,16,820,182640,13,8 ,15,11414,706928,1,1 ,16,820,182648,19,8 ,15,11415,706936,1,1 ,16,820,182656,21,8 ,15,11416,706944,1,1 ,20,24385,23251330,76,0 ,20,25946,27445634,540,0 ,20,24958,24824194,296,0 ,17,923,9619844,24,0 ,17,923,6998404,24,0 ,17,923,6474116,56,0 ,45,15153,4376964,40,0 ,45,15153,4901252,40,0 ,17,923,9095556,32,0 ,16,820,182664,13,8 ,15,11417,706952,1,1 ,16,820,182672,19,8 ,15,11418,706960,1,1 ,16,820,182680,21,8 ,15,11419,706968,1,1 ,16,820,182688,20,8 ,15,11420,706976,1,1 ,20,25720,26921378,936,0 ,16,820,182696,21,8 ,15,11421,706984,1,1 ,16,820,182704,19,8 ,15,11422,706992,1,1 ,16,820,182712,21,8 ,15,11423,707000,1,1 ,16,820,182720,20,8 ,15,11424,707008,1,1 ,20,20013,11192770,100,0 ,20,18689,8571330,12,0 ,44,15152,707012,24,0 ,17,923,7522756,32,0 ,16,820,182728,21,13 ,15,11425,707016,1,1 ,16,820,182736,19,10 ,15,11426,707024,1,1 ,16,820,182744,19,10 ,15,11427,707032,1,1 ,16,820,182752,19,8 ,15,11428,707040,1,1 ,20,23972,22202850,1132,0 ,20,16405,3328482,100,0 ,16,820,182760,19,8 ,15,11429,707048,1,1 ,16,820,182768,17,8 ,15,11430,707056,1,1 ,16,820,182776,13,8 ,15,11431,707064,1,1 ,16,820,182784,19,8 ,15,11432,707072,1,1 ,17,923,10144260,24,0 ,44,15152,2804228,104,0 ,44,15152,3852804,24,0 ,17,923,8047108,48,0 ,17,923,8571396,48,0 ,16,820,182792,13,8 ,15,11433,707080,1,1 ,16,820,182800,14,8 ,15,11434,707088,1,1 ,16,820,182808,17,8 ,15,11435,707096,1,1 ,16,820,182816,13,8 ,15,11436,707104,1,1 ,20,18690,8571426,224,0 ,16,820,182824,19,8 ,15,11437,707112,1,1 ,16,820,182832,19,8 ,15,11438,707120,1,1 ,16,820,182840,19,8 ,15,11439,707128,1,1 ,16,820,182848,19,8 ,15,11440,707136,1,1 ,17,923,9620036,24,0 ,17,923,6998596,48,0 ,44,15152,2280004,32,0 ,16,820,182856,13,8 ,15,11441,707144,1,1 ,16,820,182864,21,8 ,15,11442,707152,1,1 ,16,820,182872,21,8 ,15,11443,707160,1,1 ,16,820,182880,19,8 ,15,11444,707168,1,1 ,20,25531,26397282,176,0 ,16,820,182888,19,8 ,15,11445,707176,1,1 ,16,820,182896,19,8 ,15,11446,707184,1,1 ,16,820,182904,13,8 ,15,11447,707192,1,1 ,16,820,182912,17,9 ,15,11448,707200,1,1 ,17,923,9095812,32,0 ,44,15152,1755780,80,0 ,44,15152,707204,48,0 ,16,820,182920,13,8 ,15,11449,707208,1,1 ,16,820,182928,13,8 ,15,11450,707216,1,1 ,16,820,182936,19,8 ,15,11451,707224,1,1 ,16,820,182944,13,8 ,15,11452,707232,1,1 ,16,820,182952,19,8 ,15,11453,707240,1,1 ,16,820,182960,19,8 ,15,11454,707248,1,1 ,16,820,182968,19,8 ,15,11455,707256,1,1 ,16,820,182976,19,8 ,15,11456,707264,1,1 ,20,21841,16960194,292,0 ,17,923,10144452,32,0 ,17,923,7523012,32,0 ,44,15152,3852996,24,0 ,45,15153,4377284,16,0 ,45,15153,4901572,32,0 ,16,820,182984,13,8 ,15,11457,707272,1,1 ,16,820,182992,21,9 ,15,11458,707280,1,1 ,16,820,183000,21,12 ,15,11459,707288,1,1 ,16,820,183008,21,12 ,15,11460,707296,1,1 ,20,24204,22727394,232,0 ,16,820,183016,13,8 ,15,11461,707304,1,1 ,16,820,183024,19,8 ,15,11462,707312,1,1 ,16,820,183032,19,9 ,15,11463,707320,1,1 ,16,820,183040,19,9 ,15,11464,707328,1,1 ,17,923,9620228,32,0 ,45,15153,5425924,24,0 ,16,820,183048,19,13 ,15,11465,707336,1,1 ,16,820,183056,19,10 ,15,11466,707344,1,1 ,16,820,183064,23,9 ,15,11467,707352,1,1 ,16,820,183072,21,12 ,15,11468,707360,1,1 ,20,23606,21154594,552,0 ,16,820,183080,19,8 ,15,11469,707368,1,1 ,16,820,183088,19,9 ,15,11470,707376,1,1 ,16,820,183096,19,12 ,15,11471,707384,1,1 ,16,820,183104,19,9 ,15,11472,707392,1,1 ,45,15153,4377412,72,0 ,17,923,6474564,32,0 ,44,15152,2280260,24,0 ,16,820,183112,19,9 ,15,11473,707400,1,1 ,16,820,183120,19,10 ,15,11474,707408,1,1 ,16,820,183128,19,8 ,15,11475,707416,1,1 ,16,820,183136,19,8 ,15,11476,707424,1,1 ,20,18248,7523170,204,0 ,20,17773,6474594,356,0 ,16,820,183144,19,8 ,15,11477,707432,1,1 ,16,820,183152,21,8 ,15,11478,707440,1,1 ,16,820,183160,19,12 ,15,11479,707448,1,1 ,16,820,183168,13,8 ,15,11480,707456,1,1 ,20,22071,18008962,316,0 ,17,923,9096068,24,0 ,44,15152,3853188,40,0 ,17,923,8047492,32,0 ,17,923,8571780,32,0 ,16,820,183176,21,14 ,15,11481,707464,1,1 ,16,820,183184,21,24 ,15,11482,707472,1,1 ,16,820,183192,21,13 ,15,11483,707480,1,1 ,16,820,183200,21,16 ,15,11484,707488,1,1 ,16,820,183208,13,8 ,15,11485,707496,1,1 ,16,820,183216,14,8 ,15,11486,707504,1,1 ,16,820,183224,19,9 ,15,11487,707512,1,1 ,16,820,183232,19,9 ,15,11488,707520,1,1 ,17,923,10144708,32,0 ,17,923,7523268,32,0 ,17,923,6998980,24,0 ,45,15153,4901828,32,0 ,45,15153,5426116,32,0 ,16,820,183240,19,22 ,15,11489,707528,1,1 ,16,820,183248,19,8 ,15,11490,707536,1,1 ,16,820,183256,19,11 ,15,11491,707544,1,1 ,16,820,183264,19,8 ,15,11492,707552,1,1 ,20,24386,23251938,76,0 ,16,820,183272,21,11 ,15,11493,707560,1,1 ,16,820,183280,13,8 ,15,11494,707568,1,1 ,16,820,183288,19,10 ,15,11495,707576,1,1 ,16,820,183296,19,9 ,15,11496,707584,1,1 ,17,923,9620484,24,0 ,44,15152,2280452,40,0 ,44,15152,707588,32,0 ,16,820,183304,14,8 ,15,11497,707592,1,1 ,16,820,183312,19,9 ,15,11498,707600,1,1 ,16,820,183320,19,8 ,15,11499,707608,1,1 ,16,820,183328,19,8 ,15,11500,707616,1,1 ,16,820,183336,19,8 ,15,11501,707624,1,1 ,16,820,183344,19,8 ,15,11502,707632,1,1 ,16,820,183352,19,11 ,15,11503,707640,1,1 ,16,820,183360,13,8 ,15,11504,707648,1,1 ,17,923,9096260,56,0 ,17,923,6474820,24,0 ,16,820,183368,21,8 ,15,11505,707656,1,1 ,16,820,183376,21,10 ,15,11506,707664,1,1 ,16,820,183384,13,8 ,15,11507,707672,1,1 ,16,820,183392,21,10 ,15,11508,707680,1,1 ,16,820,183400,21,15 ,15,11509,707688,1,1 ,16,820,183408,21,13 ,15,11510,707696,1,1 ,16,820,183416,19,8 ,15,11511,707704,1,1 ,16,820,183424,19,9 ,15,11512,707712,1,1 ,20,22325,18533506,140,0 ,17,923,8572036,40,0 ,17,923,6999172,24,0 ,17,923,8047748,32,0 ,16,820,183432,19,9 ,15,11513,707720,1,1 ,16,820,183440,21,15 ,15,11514,707728,1,1 ,16,820,183448,19,8 ,15,11515,707736,1,1 ,16,820,183456,21,14 ,15,11516,707744,1,1 ,20,23040,20106402,24,0 ,16,820,183464,19,9 ,15,11517,707752,1,1 ,16,820,183472,21,18 ,15,11518,707760,1,1 ,16,820,183480,19,8 ,15,11519,707768,1,1 ,16,820,183488,20,8 ,15,11520,707776,1,1 ,20,23750,21679298,364,0 ,17,923,10144964,40,0 ,17,923,7523524,24,0 ,44,15152,3853508,24,0 ,45,15153,4902084,40,0 ,45,15153,5426372,48,0 ,17,923,9620676,24,0 ,16,820,183496,19,8 ,15,11521,707784,1,1 ,16,820,183504,21,14 ,15,11522,707792,1,1 ,16,820,183512,23,9 ,15,11523,707800,1,1 ,16,820,183520,21,20 ,15,11524,707808,1,1 ,20,22548,19057890,88,0 ,20,20014,11193570,276,0 ,16,820,183528,20,8 ,15,11525,707816,1,1 ,16,820,183536,19,8 ,15,11526,707824,1,1 ,16,820,183544,19,8 ,15,11527,707832,1,1 ,16,820,183552,19,8 ,15,11528,707840,1,1 ,20,20982,15387906,20,0 ,20,16406,3329282,96,0 ,20,19419,10145026,768,0 ,44,15152,3329284,24,0 ,17,923,6475012,24,0 ,44,15152,1756420,104,0 ,44,15152,707844,48,0 ,16,820,183560,21,12 ,15,11529,707848,1,1 ,16,820,183568,19,23 ,15,11530,707856,1,1 ,16,820,183576,19,10 ,15,11531,707864,1,1 ,16,820,183584,19,8 ,15,11532,707872,1,1 ,16,820,183592,19,9 ,15,11533,707880,1,1 ,16,820,183600,20,10 ,15,11534,707888,1,1 ,16,820,183608,21,12 ,15,11535,707896,1,1 ,16,820,183616,20,12 ,15,11536,707904,1,1 ,44,15152,2280772,24,0 ,17,923,6999364,32,0 ,44,15152,2805060,48,0 ,16,820,183624,20,10 ,15,11537,707912,1,1 ,16,820,183632,25,13 ,15,11538,707920,1,1 ,16,820,183640,21,11 ,15,11539,707928,1,1 ,16,820,183648,21,12 ,15,11540,707936,1,1 ,20,23041,20106594,24,0 ,16,820,183656,19,9 ,15,11541,707944,1,1 ,16,820,183664,21,12 ,15,11542,707952,1,1 ,16,820,183672,19,8 ,15,11543,707960,1,1 ,16,820,183680,19,9 ,15,11544,707968,1,1 ,17,923,9620868,32,0 ,17,923,7523716,56,0 ,44,15152,3853700,104,0 ,45,15153,4377988,32,0 ,17,923,8048004,32,0 ,16,820,183688,19,9 ,15,11545,707976,1,1 ,16,820,183696,21,11 ,15,11546,707984,1,1 ,16,820,183704,19,8 ,15,11547,707992,1,1 ,16,820,183712,19,11 ,15,11548,708000,1,1 ,20,20983,15388066,364,0 ,16,820,183720,23,14 ,15,11549,708008,1,1 ,16,820,183728,13,8 ,15,11550,708016,1,1 ,16,820,183736,21,8 ,15,11551,708024,1,1 ,16,820,183744,21,8 ,15,11552,708032,1,1 ,17,923,8572356,24,0 ,17,923,6475204,48,0 ,44,15152,3329476,40,0 ,16,820,183752,19,15 ,15,11553,708040,1,1 ,16,820,183760,21,13 ,15,11554,708048,1,1 ,16,820,183768,19,8 ,15,11555,708056,1,1 ,16,820,183776,13,8 ,15,11556,708064,1,1 ,20,26145,27971042,132,0 ,16,820,183784,19,8 ,15,11557,708072,1,1 ,16,820,183792,13,8 ,15,11558,708080,1,1 ,16,820,183800,13,8 ,15,11559,708088,1,1 ,16,820,183808,19,8 ,15,11560,708096,1,1 ,20,18982,9096706,476,0 ,17,923,10145284,32,0 ,44,15152,2280964,48,0 ,45,15153,4902404,32,0 ,17,923,9096708,48,0 ,16,820,183816,21,12 ,15,11561,708104,1,1 ,16,820,183824,21,17 ,15,11562,708112,1,1 ,16,820,183832,19,12 ,15,11563,708120,1,1 ,16,820,183840,21,11 ,15,11564,708128,1,1 ,20,23042,20106786,280,0 ,20,18046,6999586,396,0 ,16,820,183848,21,8 ,15,11565,708136,1,1 ,16,820,183856,19,8 ,15,11566,708144,1,1 ,16,820,183864,13,8 ,15,11567,708152,1,1 ,16,820,183872,14,8 ,15,11568,708160,1,1 ,20,24387,23252546,128,0 ,45,15153,5426756,16,0 ,17,923,6999620,32,0 ,16,820,183880,14,8 ,15,11569,708168,1,1 ,16,820,183888,21,8 ,15,11570,708176,1,1 ,16,820,183896,19,8 ,15,11571,708184,1,1 ,16,820,183904,19,8 ,15,11572,708192,1,1 ,16,820,183912,19,8 ,15,11573,708200,1,1 ,16,820,183920,19,8 ,15,11574,708208,1,1 ,16,820,183928,14,8 ,15,11575,708216,1,1 ,16,820,183936,19,9 ,15,11576,708224,1,1 ,17,923,9621124,24,0 ,44,15152,708228,24,0 ,45,15153,4378244,64,0 ,17,923,8048260,40,0 ,17,923,8572548,72,0 ,16,820,183944,13,8 ,15,11577,708232,1,1 ,16,820,183952,13,8 ,15,11578,708240,1,1 ,16,820,183960,19,8 ,15,11579,708248,1,1 ,16,820,183968,19,8 ,15,11580,708256,1,1 ,16,820,183976,19,8 ,15,11581,708264,1,1 ,16,820,183984,19,9 ,15,11582,708272,1,1 ,16,820,183992,19,8 ,15,11583,708280,1,1 ,16,820,184000,19,10 ,15,11584,708288,1,1 ,45,15153,5426884,24,0 ,44,15152,2805444,80,0 ,16,820,184008,20,10 ,15,11585,708296,1,1 ,16,820,184016,14,8 ,15,11586,708304,1,1 ,16,820,184024,13,8 ,15,11587,708312,1,1 ,16,820,184032,19,8 ,15,11588,708320,1,1 ,16,820,184040,19,10 ,15,11589,708328,1,1 ,16,820,184048,19,11 ,15,11590,708336,1,1 ,16,820,184056,19,10 ,15,11591,708344,1,1 ,16,820,184064,20,11 ,15,11592,708352,1,1 ,17,923,10145540,24,0 ,44,15152,3329796,24,0 ,45,15153,4902660,32,0 ,16,820,184072,21,8 ,15,11593,708360,1,1 ,16,820,184080,19,8 ,15,11594,708368,1,1 ,16,820,184088,19,8 ,15,11595,708376,1,1 ,16,820,184096,13,8 ,15,11596,708384,1,1 ,20,20769,13815586,108,0 ,16,820,184104,19,8 ,15,11597,708392,1,1 ,16,820,184112,19,11 ,15,11598,708400,1,1 ,16,820,184120,19,10 ,15,11599,708408,1,1 ,16,820,184128,19,10 ,15,11600,708416,1,1 ,17,923,9621316,24,0 ,17,923,7524164,32,0 ,17,923,6999876,40,0 ,17,923,6475588,48,0 ,44,15152,708420,32,0 ,16,820,184136,20,10 ,15,11601,708424,1,1 ,16,820,184144,21,8 ,15,11602,708432,1,1 ,16,820,184152,13,8 ,15,11603,708440,1,1 ,16,820,184160,21,8 ,15,11604,708448,1,1 ,20,16727,3854178,292,0 ,16,820,184168,21,8 ,15,11605,708456,1,1 ,16,820,184176,19,8 ,15,11606,708464,1,1 ,16,820,184184,19,8 ,15,11607,708472,1,1 ,16,820,184192,19,10 ,15,11608,708480,1,1 ,17,923,9097092,56,0 ,44,15152,2281348,64,0 ,45,15153,5427076,16,0 ,16,820,184200,19,8 ,15,11609,708488,1,1 ,16,820,184208,19,8 ,15,11610,708496,1,1 ,16,820,184216,19,8 ,15,11611,708504,1,1 ,16,820,184224,19,8 ,15,11612,708512,1,1 ,20,22549,19058594,2364,0 ,16,820,184232,19,8 ,15,11613,708520,1,1 ,16,820,184240,19,8 ,15,11614,708528,1,1 ,16,820,184248,19,9 ,15,11615,708536,1,1 ,16,820,184256,19,8 ,15,11616,708544,1,1 ,20,17539,5951426,140,0 ,17,923,10145732,32,0 ,44,15152,184260,24,0 ,44,15152,3329988,56,0 ,17,923,8048580,40,0 ,16,820,184264,13,8 ,15,11617,708552,1,1 ,16,820,184272,19,8 ,15,11618,708560,1,1 ,16,820,184280,19,9 ,15,11619,708568,1,1 ,16,820,184288,19,8 ,15,11620,708576,1,1 ,20,25385,25874402,816,0 ,20,25532,26398690,292,0 ,16,820,184296,13,8 ,15,11621,708584,1,1 ,16,820,184304,13,8 ,15,11622,708592,1,1 ,16,820,184312,13,8 ,15,11623,708600,1,1 ,16,820,184320,17,8 ,15,11624,708608,1,1 ,20,16407,3330050,100,0 ,17,923,9621508,24,0 ,45,15153,4902916,40,0 ,45,15153,5427204,32,0 ,16,820,184328,19,9 ,15,11625,708616,1,1 ,16,820,184336,19,8 ,15,11626,708624,1,1 ,16,820,184344,19,12 ,15,11627,708632,1,1 ,16,820,184352,19,8 ,15,11628,708640,1,1 ,16,820,184360,19,10 ,15,11629,708648,1,1 ,16,820,184368,20,8 ,15,11630,708656,1,1 ,16,820,184376,20,10 ,15,11631,708664,1,1 ,16,820,184384,19,9 ,15,11632,708672,1,1 ,44,15152,708676,112,0 ,17,923,7524420,32,0 ,44,15152,1757252,80,0 ,16,820,184392,21,10 ,15,11633,708680,1,1 ,16,820,184400,20,10 ,15,11634,708688,1,1 ,16,820,184408,19,9 ,15,11635,708696,1,1 ,16,820,184416,20,10 ,15,11636,708704,1,1 ,16,820,184424,20,10 ,15,11637,708712,1,1 ,16,820,184432,19,9 ,15,11638,708720,1,1 ,16,820,184440,20,10 ,15,11639,708728,1,1 ,16,820,184448,19,9 ,15,11640,708736,1,1 ,20,21341,15913090,292,0 ,45,15153,4378756,32,0 ,17,923,7000196,40,0 ,44,15152,184452,72,0 ,16,820,184456,14,8 ,15,11641,708744,1,1 ,16,820,184464,13,8 ,15,11642,708752,1,1 ,16,820,184472,19,8 ,15,11643,708760,1,1 ,16,820,184480,19,8 ,15,11644,708768,1,1 ,16,820,184488,19,13 ,15,11645,708776,1,1 ,16,820,184496,21,9 ,15,11646,708784,1,1 ,16,820,184504,21,11 ,15,11647,708792,1,1 ,16,820,184512,19,9 ,15,11648,708800,1,1 ,20,17369,5427394,200,0 ,17,923,10145988,24,0 ,17,923,6475972,32,0 ,44,15152,3854532,24,0 ,17,923,8573124,24,0 ,17,923,9621700,32,0 ,16,820,184520,21,10 ,15,11649,708808,1,1 ,16,820,184528,13,8 ,15,11650,708816,1,1 ,16,820,184536,19,14 ,15,11651,708824,1,1 ,16,820,184544,14,8 ,15,11652,708832,1,1 ,20,22326,18534626,48,0 ,16,820,184552,19,9 ,15,11653,708840,1,1 ,16,820,184560,19,9 ,15,11654,708848,1,1 ,16,820,184568,13,8 ,15,11655,708856,1,1 ,16,820,184576,21,17 ,15,11656,708864,1,1 ,17,923,8048900,48,0 ,45,15153,5427460,24,0 ,16,820,184584,19,8 ,15,11657,708872,1,1 ,16,820,184592,20,11 ,15,11658,708880,1,1 ,16,820,184600,19,9 ,15,11659,708888,1,1 ,16,820,184608,13,8 ,15,11660,708896,1,1 ,20,18691,8573218,40,0 ,16,820,184616,14,8 ,15,11661,708904,1,1 ,16,820,184624,21,9 ,15,11662,708912,1,1 ,16,820,184632,13,8 ,15,11663,708920,1,1 ,16,820,184640,21,10 ,15,11664,708928,1,1 ,17,923,9097540,48,0 ,17,923,7524676,24,0 ,44,15152,2806084,104,0 ,45,15153,4903236,24,0 ,16,820,184648,19,10 ,15,11665,708936,1,1 ,16,820,184656,19,11 ,15,11666,708944,1,1 ,16,820,184664,19,8 ,15,11667,708952,1,1 ,16,820,184672,19,9 ,15,11668,708960,1,1 ,20,26310,28496226,216,0 ,16,820,184680,21,9 ,15,11669,708968,1,1 ,16,820,184688,13,8 ,15,11670,708976,1,1 ,16,820,184696,19,8 ,15,11671,708984,1,1 ,16,820,184704,17,8 ,15,11672,708992,1,1 ,17,923,10146180,24,0 ,44,15152,2281860,56,0 ,44,15152,3330436,24,0 ,44,15152,3854724,64,0 ,45,15153,4379012,24,0 ,17,923,8573316,64,0 ,16,820,184712,17,8 ,15,11673,709000,1,1 ,16,820,184720,19,8 ,15,11674,709008,1,1 ,16,820,184728,21,22 ,15,11675,709016,1,1 ,16,820,184736,20,10 ,15,11676,709024,1,1 ,16,820,184744,21,9 ,15,11677,709032,1,1 ,16,820,184752,21,8 ,15,11678,709040,1,1 ,16,820,184760,19,8 ,15,11679,709048,1,1 ,16,820,184768,19,9 ,15,11680,709056,1,1 ,20,18249,7524802,264,0 ,17,923,9621956,32,0 ,17,923,7000516,24,0 ,17,923,6476228,16,0 ,45,15153,5427652,16,0 ,16,820,184776,19,8 ,15,11681,709064,1,1 ,16,820,184784,19,8 ,15,11682,709072,1,1 ,16,820,184792,21,12 ,15,11683,709080,1,1 ,16,820,184800,13,8 ,15,11684,709088,1,1 ,16,820,184808,13,8 ,15,11685,709096,1,1 ,16,820,184816,14,8 ,15,11686,709104,1,1 ,16,820,184824,19,8 ,15,11687,709112,1,1 ,16,820,184832,19,8 ,15,11688,709120,1,1 ,20,26146,27972098,52,0 ,45,15153,4903428,32,0 ,17,923,7524868,16,0 ,16,820,184840,23,11 ,15,11689,709128,1,1 ,16,820,184848,21,9 ,15,11690,709136,1,1 ,16,820,184856,21,8 ,15,11691,709144,1,1 ,16,820,184864,21,9 ,15,11692,709152,1,1 ,20,24205,22729250,100,0 ,20,20157,11719202,108,0 ,16,820,184872,20,10 ,15,11693,709160,1,1 ,16,820,184880,19,9 ,15,11694,709168,1,1 ,16,820,184888,19,12 ,15,11695,709176,1,1 ,16,820,184896,21,9 ,15,11696,709184,1,1 ,20,24388,23253570,148,0 ,17,923,10146372,24,0 ,17,923,6476356,16,0 ,44,15152,3330628,32,0 ,45,15153,4379204,24,0 ,45,15153,5427780,32,0 ,16,820,184904,25,11 ,15,11697,709192,1,1 ,16,820,184912,19,9 ,15,11698,709200,1,1 ,16,820,184920,13,8 ,15,11699,709208,1,1 ,16,820,184928,19,9 ,15,11700,709216,1,1 ,20,22327,18535010,64,0 ,20,18692,8573538,304,0 ,16,820,184936,14,8 ,15,11701,709224,1,1 ,16,820,184944,19,11 ,15,11702,709232,1,1 ,16,820,184952,21,9 ,15,11703,709240,1,1 ,16,820,184960,19,8 ,15,11704,709248,1,1 ,20,20770,13816450,68,0 ,17,923,8049284,104,0 ,17,923,7524996,32,0 ,17,923,7000708,32,0 ,16,820,184968,21,8 ,15,11705,709256,1,1 ,16,820,184976,21,8 ,15,11706,709264,1,1 ,16,820,184984,19,9 ,15,11707,709272,1,1 ,16,820,184992,13,8 ,15,11708,709280,1,1 ,16,820,185000,13,8 ,15,11709,709288,1,1 ,16,820,185008,17,9 ,15,11710,709296,1,1 ,16,820,185016,14,8 ,15,11711,709304,1,1 ,16,820,185024,21,9 ,15,11712,709312,1,1 ,20,24959,24826562,40,0 ,17,923,9622212,24,0 ,17,923,6476484,16,0 ,44,15152,1757892,80,0 ,44,15152,185028,40,0 ,17,923,9097924,32,0 ,16,820,185032,13,8 ,15,11713,709320,1,1 ,16,820,185040,20,11 ,15,11714,709328,1,1 ,16,820,185048,19,9 ,15,11715,709336,1,1 ,16,820,185056,21,12 ,15,11716,709344,1,1 ,16,820,185064,13,8 ,15,11717,709352,1,1 ,16,820,185072,19,9 ,15,11718,709360,1,1 ,16,820,185080,19,8 ,15,11719,709368,1,1 ,16,820,185088,14,8 ,15,11720,709376,1,1 ,20,16182,2806530,160,0 ,17,923,10146564,48,0 ,45,15153,4379396,16,0 ,45,15153,4903684,32,0 ,16,820,185096,13,8 ,15,11721,709384,1,1 ,16,820,185104,14,8 ,15,11722,709392,1,1 ,16,820,185112,19,11 ,15,11723,709400,1,1 ,16,820,185120,17,8 ,15,11724,709408,1,1 ,20,16408,3330850,100,0 ,16,820,185128,17,8 ,15,11725,709416,1,1 ,16,820,185136,19,9 ,15,11726,709424,1,1 ,16,820,185144,19,12 ,15,11727,709432,1,1 ,16,820,185152,19,8 ,15,11728,709440,1,1 ,45,15153,5428036,24,0 ,17,923,6476612,16,0 ,44,15152,2282308,24,0 ,44,15152,3330884,24,0 ,16,820,185160,19,10 ,15,11729,709448,1,1 ,16,820,185168,19,9 ,15,11730,709456,1,1 ,16,820,185176,19,9 ,15,11731,709464,1,1 ,16,820,185184,19,8 ,15,11732,709472,1,1 ,20,21566,16438114,840,0 ,16,820,185192,19,13 ,15,11733,709480,1,1 ,16,820,185200,19,14 ,15,11734,709488,1,1 ,16,820,185208,19,8 ,15,11735,709496,1,1 ,16,820,185216,19,11 ,15,11736,709504,1,1 ,17,923,9622404,24,0 ,17,923,7525252,24,0 ,17,923,7000964,32,0 ,44,15152,3855236,48,0 ,45,15153,4379524,152,0 ,17,923,8573828,48,0 ,16,820,185224,19,9 ,15,11737,709512,1,1 ,16,820,185232,19,9 ,15,11738,709520,1,1 ,16,820,185240,21,8 ,15,11739,709528,1,1 ,16,820,185248,21,12 ,15,11740,709536,1,1 ,20,26147,27972514,404,0 ,16,820,185256,19,8 ,15,11741,709544,1,1 ,16,820,185264,19,11 ,15,11742,709552,1,1 ,16,820,185272,19,8 ,15,11743,709560,1,1 ,16,820,185280,19,9 ,15,11744,709568,1,1 ,17,923,9098180,32,0 ,17,923,6476740,24,0 ,44,15152,709572,40,0 ,16,820,185288,20,12 ,15,11745,709576,1,1 ,16,820,185296,19,8 ,15,11746,709584,1,1 ,16,820,185304,19,13 ,15,11747,709592,1,1 ,16,820,185312,21,9 ,15,11748,709600,1,1 ,20,21842,16962530,336,0 ,16,820,185320,20,11 ,15,11749,709608,1,1 ,16,820,185328,19,8 ,15,11750,709616,1,1 ,16,820,185336,19,13 ,15,11751,709624,1,1 ,16,820,185344,13,8 ,15,11752,709632,1,1 ,20,24960,24826882,148,0 ,45,15153,5428228,16,0 ,44,15152,2282500,24,0 ,44,15152,185348,56,0 ,44,15152,3331076,88,0 ,45,15153,4903940,16,0 ,16,820,185352,19,9 ,15,11753,709640,1,1 ,16,820,185360,13,8 ,15,11754,709648,1,1 ,16,820,185368,21,12 ,15,11755,709656,1,1 ,16,820,185376,13,8 ,15,11756,709664,1,1 ,20,17540,5952546,292,0 ,16,820,185384,21,10 ,15,11757,709672,1,1 ,16,820,185392,21,21 ,15,11758,709680,1,1 ,16,820,185400,21,8 ,15,11759,709688,1,1 ,16,820,185408,21,8 ,15,11760,709696,1,1 ,17,923,9622596,32,0 ,17,923,7525444,32,0 ,16,820,185416,19,16 ,15,11761,709704,1,1 ,16,820,185424,21,8 ,15,11762,709712,1,1 ,16,820,185432,25,10 ,15,11763,709720,1,1 ,16,820,185440,19,16 ,15,11764,709728,1,1 ,20,22328,18535522,12,0 ,16,820,185448,19,8 ,15,11765,709736,1,1 ,16,820,185456,20,11 ,15,11766,709744,1,1 ,16,820,185464,19,8 ,15,11767,709752,1,1 ,16,820,185472,21,8 ,15,11768,709760,1,1 ,17,923,10146948,24,0 ,17,923,7001220,32,0 ,17,923,6476932,40,0 ,44,15152,2806916,40,0 ,45,15153,4904068,168,0 ,45,15153,5428356,16,0 ,16,820,185480,21,9 ,15,11769,709768,1,1 ,16,820,185488,21,10 ,15,11770,709776,1,1 ,16,820,185496,25,9 ,15,11771,709784,1,1 ,16,820,185504,21,16 ,15,11772,709792,1,1 ,20,20771,13816994,232,0 ,16,820,185512,13,8 ,15,11773,709800,1,1 ,16,820,185520,13,8 ,15,11774,709808,1,1 ,16,820,185528,21,11 ,15,11775,709816,1,1 ,16,820,185536,21,18 ,15,11776,709824,1,1 ,20,22329,18535618,12,0 ,17,923,9098436,48,0 ,44,15152,2282692,24,0 ,16,820,185544,21,11 ,15,11777,709832,1,1 ,16,820,185552,19,15 ,15,11778,709840,1,1 ,16,820,185560,19,8 ,15,11779,709848,1,1 ,16,820,185568,19,8 ,15,11780,709856,1,1 ,16,820,185576,19,8 ,15,11781,709864,1,1 ,16,820,185584,19,8 ,15,11782,709872,1,1 ,16,820,185592,19,8 ,15,11783,709880,1,1 ,16,820,185600,13,8 ,15,11784,709888,1,1 ,17,923,8574212,48,0 ,44,15152,709892,32,0 ,44,15152,3855620,40,0 ,45,15153,5428484,24,0 ,16,820,185608,19,8 ,15,11785,709896,1,1 ,16,820,185616,21,12 ,15,11786,709904,1,1 ,16,820,185624,21,11 ,15,11787,709912,1,1 ,16,820,185632,21,13 ,15,11788,709920,1,1 ,20,22330,18535714,64,0 ,16,820,185640,21,39 ,15,11789,709928,1,1 ,16,820,185648,13,8 ,15,11790,709936,1,1 ,16,820,185656,21,11 ,15,11791,709944,1,1 ,16,820,185664,21,21 ,15,11792,709952,1,1 ,20,24206,22730050,44,0 ,17,923,10147140,40,0 ,17,923,7525700,32,0 ,44,15152,1758532,80,0 ,17,923,9622852,24,0 ,16,820,185672,14,8 ,15,11793,709960,1,1 ,16,820,185680,13,8 ,15,11794,709968,1,1 ,16,820,185688,20,8 ,15,11795,709976,1,1 ,16,820,185696,19,8 ,15,11796,709984,1,1 ,20,22072,18011490,116,0 ,16,820,185704,21,9 ,15,11797,709992,1,1 ,16,820,185712,19,9 ,15,11798,710000,1,1 ,16,820,185720,13,8 ,15,11799,710008,1,1 ,16,820,185728,17,8 ,15,11800,710016,1,1 ,20,20158,11720066,9384,0 ,20,20015,11195778,12,0 ,44,15152,2282884,24,0 ,17,923,7001476,32,0 ,16,820,185736,13,8 ,15,11801,710024,1,1 ,16,820,185744,13,8 ,15,11802,710032,1,1 ,16,820,185752,20,8 ,15,11803,710040,1,1 ,16,820,185760,13,8 ,15,11804,710048,1,1 ,16,820,185768,14,8 ,15,11805,710056,1,1 ,16,820,185776,19,9 ,15,11806,710064,1,1 ,16,820,185784,19,9 ,15,11807,710072,1,1 ,16,820,185792,19,9 ,15,11808,710080,1,1 ,17,923,8050116,24,0 ,17,923,6477252,48,0 ,44,15152,2807236,104,0 ,44,15152,185796,40,0 ,45,15153,5428676,24,0 ,16,820,185800,19,15 ,15,11809,710088,1,1 ,16,820,185808,19,10 ,15,11810,710096,1,1 ,16,820,185816,19,8 ,15,11811,710104,1,1 ,16,820,185824,21,8 ,15,11812,710112,1,1 ,20,23377,20633058,268,0 ,20,20016,11195874,1552,0 ,16,820,185832,13,8 ,15,11813,710120,1,1 ,16,820,185840,13,8 ,15,11814,710128,1,1 ,16,820,185848,19,9 ,15,11815,710136,1,1 ,16,820,185856,13,8 ,15,11816,710144,1,1 ,17,923,9623044,32,0 ,44,15152,710148,24,0 ,16,820,185864,13,8 ,15,11817,710152,1,1 ,16,820,185872,14,8 ,15,11818,710160,1,1 ,16,820,185880,19,9 ,15,11819,710168,1,1 ,16,820,185888,13,8 ,15,11820,710176,1,1 ,16,820,185896,19,8 ,15,11821,710184,1,1 ,16,820,185904,19,8 ,15,11822,710192,1,1 ,16,820,185912,13,8 ,15,11823,710200,1,1 ,16,820,185920,19,10 ,15,11824,710208,1,1 ,20,16409,3331650,32,0 ,17,923,9098820,40,0 ,17,923,7525956,32,0 ,44,15152,2283076,72,0 ,44,15152,3855940,136,0 ,16,820,185928,13,8 ,15,11825,710216,1,1 ,16,820,185936,13,8 ,15,11826,710224,1,1 ,16,820,185944,21,10 ,15,11827,710232,1,1 ,16,820,185952,19,10 ,15,11828,710240,1,1 ,16,820,185960,20,12 ,15,11829,710248,1,1 ,16,820,185968,19,8 ,15,11830,710256,1,1 ,16,820,185976,19,9 ,15,11831,710264,1,1 ,16,820,185984,21,12 ,15,11832,710272,1,1 ,20,17774,6477442,140,0 ,17,923,10147460,24,0 ,17,923,7001732,32,0 ,45,15153,5428868,40,0 ,17,923,8050308,72,0 ,17,923,8574596,40,0 ,16,820,185992,20,10 ,15,11833,710280,1,1 ,16,820,186000,19,8 ,15,11834,710288,1,1 ,16,820,186008,20,10 ,15,11835,710296,1,1 ,16,820,186016,19,9 ,15,11836,710304,1,1 ,20,24207,22730402,60,0 ,16,820,186024,19,8 ,15,11837,710312,1,1 ,16,820,186032,19,8 ,15,11838,710320,1,1 ,16,820,186040,19,9 ,15,11839,710328,1,1 ,16,820,186048,20,10 ,15,11840,710336,1,1 ,44,15152,3331780,24,0 ,44,15152,710340,32,0 ,16,820,186056,20,10 ,15,11841,710344,1,1 ,16,820,186064,19,9 ,15,11842,710352,1,1 ,16,820,186072,17,8 ,15,11843,710360,1,1 ,16,820,186080,21,8 ,15,11844,710368,1,1 ,20,24389,23254754,140,0 ,20,23043,20109026,24,0 ,16,820,186088,13,8 ,15,11845,710376,1,1 ,16,820,186096,13,8 ,15,11846,710384,1,1 ,16,820,186104,13,8 ,15,11847,710392,1,1 ,16,820,186112,19,17 ,15,11848,710400,1,1 ,20,17370,5428994,212,0 ,17,923,9623300,32,0 ,44,15152,186116,32,0 ,16,820,186120,21,29 ,15,11849,710408,1,1 ,16,820,186128,21,11 ,15,11850,710416,1,1 ,16,820,186136,21,13 ,15,11851,710424,1,1 ,16,820,186144,21,10 ,15,11852,710432,1,1 ,20,22331,18536226,12,0 ,16,820,186152,13,8 ,15,11853,710440,1,1 ,16,820,186160,19,8 ,15,11854,710448,1,1 ,16,820,186168,19,8 ,15,11855,710456,1,1 ,16,820,186176,19,8 ,15,11856,710464,1,1 ,20,16410,3331906,64,0 ,17,923,10147652,40,0 ,17,923,7526212,32,0 ,17,923,6477636,24,0 ,16,820,186184,20,13 ,15,11857,710472,1,1 ,16,820,186192,19,8 ,15,11858,710480,1,1 ,16,820,186200,19,9 ,15,11859,710488,1,1 ,16,820,186208,20,10 ,15,11860,710496,1,1 ,20,19716,10671970,52,0 ,16,820,186216,20,10 ,15,11861,710504,1,1 ,16,820,186224,19,9 ,15,11862,710512,1,1 ,16,820,186232,19,10 ,15,11863,710520,1,1 ,16,820,186240,20,11 ,15,11864,710528,1,1 ,20,22332,18536322,12,0 ,17,923,9099140,48,0 ,17,923,7001988,24,0 ,44,15152,3331972,56,0 ,16,820,186248,13,8 ,15,11865,710536,1,1 ,16,820,186256,19,8 ,15,11866,710544,1,1 ,16,820,186264,19,10 ,15,11867,710552,1,1 ,16,820,186272,19,11 ,15,11868,710560,1,1 ,20,23044,20109218,24,0 ,16,820,186280,19,10 ,15,11869,710568,1,1 ,16,820,186288,20,10 ,15,11870,710576,1,1 ,16,820,186296,19,17 ,15,11871,710584,1,1 ,16,820,186304,19,10 ,15,11872,710592,1,1 ,17,923,8574916,40,0 ,44,15152,1759172,1344,0 ,44,15152,710596,32,0 ,45,15153,5429188,32,0 ,16,820,186312,19,11 ,15,11873,710600,1,1 ,16,820,186320,21,8 ,15,11874,710608,1,1 ,16,820,186328,21,8 ,15,11875,710616,1,1 ,16,820,186336,19,8 ,15,11876,710624,1,1 ,20,22333,18536418,124,0 ,20,18504,8050658,100,0 ,16,820,186344,19,8 ,15,11877,710632,1,1 ,16,820,186352,13,8 ,15,11878,710640,1,1 ,16,820,186360,13,8 ,15,11879,710648,1,1 ,16,820,186368,19,8 ,15,11880,710656,1,1 ,20,16183,2807810,2156,0 ,17,923,9623556,32,0 ,17,923,6477828,24,0 ,44,15152,186372,32,0 ,16,820,186376,19,10 ,15,11881,710664,1,1 ,16,820,186384,19,11 ,15,11882,710672,1,1 ,16,820,186392,19,10 ,15,11883,710680,1,1 ,16,820,186400,20,10 ,15,11884,710688,1,1 ,20,23751,21682210,864,0 ,20,26311,28497954,256,0 ,16,820,186408,19,18 ,15,11885,710696,1,1 ,16,820,186416,21,8 ,15,11886,710704,1,1 ,16,820,186424,21,8 ,15,11887,710712,1,1 ,16,820,186432,21,8 ,15,11888,710720,1,1 ,45,15153,4380740,40,0 ,17,923,7526468,32,0 ,17,923,7002180,24,0 ,16,820,186440,21,8 ,15,11889,710728,1,1 ,16,820,186448,19,8 ,15,11890,710736,1,1 ,16,820,186456,19,15 ,15,11891,710744,1,1 ,16,820,186464,19,8 ,15,11892,710752,1,1 ,20,23045,20109410,280,0 ,16,820,186472,19,9 ,15,11893,710760,1,1 ,16,820,186480,20,10 ,15,11894,710768,1,1 ,16,820,186488,20,10 ,15,11895,710776,1,1 ,16,820,186496,19,9 ,15,11896,710784,1,1 ,20,24208,22730882,168,0 ,20,16728,3856514,12,0 ,17,923,10147972,32,0 ,44,15152,2283652,48,0 ,16,820,186504,19,8 ,15,11897,710792,1,1 ,16,820,186512,13,8 ,15,11898,710800,1,1 ,16,820,186520,13,8 ,15,11899,710808,1,1 ,16,820,186528,20,8 ,15,11900,710816,1,1 ,20,24961,24828066,48,0 ,16,820,186536,13,8 ,15,11901,710824,1,1 ,16,820,186544,21,28 ,15,11902,710832,1,1 ,16,820,186552,19,10 ,15,11903,710840,1,1 ,16,820,186560,17,8 ,15,11904,710848,1,1 ,17,923,8050884,40,0 ,17,923,6478020,24,0 ,44,15152,1235140,88,0 ,44,15152,710852,32,0 ,45,15153,5429444,16,0 ,16,820,186568,19,14 ,15,11905,710856,1,1 ,16,820,186576,19,10 ,15,11906,710864,1,1 ,16,820,186584,19,8 ,15,11907,710872,1,1 ,16,820,186592,21,8 ,15,11908,710880,1,1 ,20,16729,3856610,12,0 ,16,820,186600,19,11 ,15,11909,710888,1,1 ,16,820,186608,19,8 ,15,11910,710896,1,1 ,16,820,186616,21,10 ,15,11911,710904,1,1 ,16,820,186624,21,9 ,15,11912,710912,1,1 ,20,22073,18012418,72,0 ,20,25533,26401026,48,0 ,20,15823,1759490,240,0 ,20,19717,10672386,52,0 ,20,20984,15390978,152,0 ,17,923,9623812,48,0 ,17,923,7002372,40,0 ,44,15152,2808068,120,0 ,44,15152,186628,32,0 ,17,923,8575236,40,0 ,17,923,9099524,32,0 ,16,820,186632,13,8 ,15,11913,710920,1,1 ,16,820,186640,13,8 ,15,11914,710928,1,1 ,16,820,186648,19,9 ,15,11915,710936,1,1 ,16,820,186656,19,9 ,15,11916,710944,1,1 ,16,820,186664,21,9 ,15,11917,710952,1,1 ,16,820,186672,13,8 ,15,11918,710960,1,1 ,16,820,186680,21,9 ,15,11919,710968,1,1 ,16,820,186688,13,8 ,15,11920,710976,1,1 ,20,16730,3856706,12,0 ,20,16411,3332418,208,0 ,45,15153,5429572,16,0 ,17,923,7526724,40,0 ,44,15152,3332420,24,0 ,16,820,186696,21,8 ,15,11921,710984,1,1 ,16,820,186704,21,8 ,15,11922,710992,1,1 ,16,820,186712,14,8 ,15,11923,711000,1,1 ,16,820,186720,21,9 ,15,11924,711008,1,1 ,20,20273,12769634,48,0 ,16,820,186728,21,19 ,15,11925,711016,1,1 ,16,820,186736,21,12 ,15,11926,711024,1,1 ,16,820,186744,19,11 ,15,11927,711032,1,1 ,16,820,186752,21,11 ,15,11928,711040,1,1 ,17,923,10148228,16,0 ,17,923,6478212,24,0 ,45,15153,4381060,16,0 ,16,820,186760,13,8 ,15,11929,711048,1,1 ,16,820,186768,13,8 ,15,11930,711056,1,1 ,16,820,186776,13,8 ,15,11931,711064,1,1 ,16,820,186784,17,8 ,15,11932,711072,1,1 ,20,21342,15915426,412,0 ,20,16731,3856802,12,0 ,16,820,186792,19,8 ,15,11933,711080,1,1 ,16,820,186800,19,8 ,15,11934,711088,1,1 ,16,820,186808,19,8 ,15,11935,711096,1,1 ,16,820,186816,21,11 ,15,11936,711104,1,1 ,45,15153,5429700,16,0 ,44,15152,711108,32,0 ,45,15153,4905412,24,0 ,16,820,186824,14,8 ,15,11937,711112,1,1 ,16,820,186832,19,9 ,15,11938,711120,1,1 ,16,820,186840,19,8 ,15,11939,711128,1,1 ,16,820,186848,19,11 ,15,11940,711136,1,1 ,16,820,186856,19,9 ,15,11941,711144,1,1 ,16,820,186864,19,8 ,15,11942,711152,1,1 ,16,820,186872,21,8 ,15,11943,711160,1,1 ,16,820,186880,19,8 ,15,11944,711168,1,1 ,20,18250,7526914,536,0 ,20,16732,3856898,204,0 ,17,923,10148356,48,0 ,44,15152,2284036,24,0 ,44,15152,186884,32,0 ,44,15152,3332612,24,0 ,45,15153,4381188,16,0 ,17,923,8051204,24,0 ,17,923,9099780,32,0 ,16,820,186888,19,8 ,15,11945,711176,1,1 ,16,820,186896,21,13 ,15,11946,711184,1,1 ,16,820,186904,21,8 ,15,11947,711192,1,1 ,16,820,186912,19,8 ,15,11948,711200,1,1 ,20,15654,1235490,496,0 ,20,24962,24828450,148,0 ,16,820,186920,19,8 ,15,11949,711208,1,1 ,16,820,186928,19,14 ,15,11950,711216,1,1 ,16,820,186936,21,8 ,15,11951,711224,1,1 ,16,820,186944,19,9 ,15,11952,711232,1,1 ,20,26422,29022786,688,0 ,17,923,8575556,40,0 ,17,923,7002692,24,0 ,17,923,6478404,24,0 ,45,15153,5429828,16,0 ,16,820,186952,19,8 ,15,11953,711240,1,1 ,16,820,186960,19,9 ,15,11954,711248,1,1 ,16,820,186968,19,8 ,15,11955,711256,1,1 ,16,820,186976,21,8 ,15,11956,711264,1,1 ,20,25947,27449954,400,0 ,16,820,186984,19,9 ,15,11957,711272,1,1 ,16,820,186992,19,9 ,15,11958,711280,1,1 ,16,820,187000,19,8 ,15,11959,711288,1,1 ,16,820,187008,19,8 ,15,11960,711296,1,1 ,20,18047,7002754,60,0 ,20,25534,26401410,92,0 ,17,923,9624196,24,0 ,17,923,7527044,24,0 ,44,15152,3857028,32,0 ,45,15153,4381316,72,0 ,45,15153,4905604,24,0 ,16,820,187016,19,8 ,15,11961,711304,1,1 ,16,820,187024,19,8 ,15,11962,711312,1,1 ,16,820,187032,19,8 ,15,11963,711320,1,1 ,16,820,187040,21,9 ,15,11964,711328,1,1 ,20,19718,10672802,12,0 ,16,820,187048,19,10 ,15,11965,711336,1,1 ,16,820,187056,21,8 ,15,11966,711344,1,1 ,16,820,187064,21,15 ,15,11967,711352,1,1 ,16,820,187072,21,8 ,15,11968,711360,1,1 ,17,923,8051396,32,0 ,44,15152,2284228,40,0 ,44,15152,711364,32,0 ,44,15152,3332804,24,0 ,45,15153,5429956,32,0 ,16,820,187080,19,10 ,15,11969,711368,1,1 ,16,820,187088,21,8 ,15,11970,711376,1,1 ,16,820,187096,19,8 ,15,11971,711384,1,1 ,16,820,187104,20,10 ,15,11972,711392,1,1 ,20,20274,12770018,1024,0 ,20,17775,6478562,140,0 ,16,820,187112,17,8 ,15,11973,711400,1,1 ,16,820,187120,20,10 ,15,11974,711408,1,1 ,16,820,187128,19,9 ,15,11975,711416,1,1 ,16,820,187136,20,10 ,15,11976,711424,1,1 ,20,19719,10672898,472,0 ,20,18505,8051458,412,0 ,17,923,9100036,40,0 ,17,923,7002884,32,0 ,17,923,6478596,16,0 ,44,15152,187140,72,0 ,16,820,187144,19,9 ,15,11977,711432,1,1 ,16,820,187152,21,11 ,15,11978,711440,1,1 ,16,820,187160,17,8 ,15,11979,711448,1,1 ,16,820,187168,21,8 ,15,11980,711456,1,1 ,16,820,187176,19,8 ,15,11981,711464,1,1 ,16,820,187184,19,8 ,15,11982,711472,1,1 ,16,820,187192,19,8 ,15,11983,711480,1,1 ,16,820,187200,19,8 ,15,11984,711488,1,1 ,20,24390,23255874,144,0 ,20,22074,18012994,24,0 ,17,923,9624388,32,0 ,17,923,7527236,64,0 ,45,15153,4905796,32,0 ,16,820,187208,17,8 ,15,11985,711496,1,1 ,16,820,187216,19,8 ,15,11986,711504,1,1 ,16,820,187224,20,10 ,15,11987,711512,1,1 ,16,820,187232,19,8 ,15,11988,711520,1,1 ,16,820,187240,19,8 ,15,11989,711528,1,1 ,16,820,187248,20,8 ,15,11990,711536,1,1 ,16,820,187256,19,10 ,15,11991,711544,1,1 ,16,820,187264,19,8 ,15,11992,711552,1,1 ,17,923,10148740,24,0 ,17,923,6478724,16,0 ,44,15152,1235844,24,0 ,44,15152,3332996,48,0 ,44,15152,3857284,72,0 ,17,923,8575876,48,0 ,16,820,187272,19,8 ,15,11993,711560,1,1 ,16,820,187280,19,8 ,15,11994,711568,1,1 ,16,820,187288,20,10 ,15,11995,711576,1,1 ,16,820,187296,21,8 ,15,11996,711584,1,1 ,20,15393,711586,12,0 ,16,820,187304,21,12 ,15,11997,711592,1,1 ,16,820,187312,19,10 ,15,11998,711600,1,1 ,16,820,187320,19,9 ,15,11999,711608,1,1 ,16,820,187328,19,12 ,15,12000,711616,1,1 ,20,22334,18537410,12,0 ,17,923,8051652,32,0 ,44,15152,711620,112,0 ,45,15153,5430212,16,0 ,16,820,187336,13,8 ,15,12001,711624,1,1 ,16,820,187344,13,8 ,15,12002,711632,1,1 ,16,820,187352,19,12 ,15,12003,711640,1,1 ,16,820,187360,19,8 ,15,12004,711648,1,1 ,20,20772,13818850,12,0 ,20,18693,8575970,244,0 ,16,820,187368,19,8 ,15,12005,711656,1,1 ,16,820,187376,19,8 ,15,12006,711664,1,1 ,16,820,187384,19,8 ,15,12007,711672,1,1 ,16,820,187392,13,8 ,15,12008,711680,1,1 ,20,22075,18013186,24,0 ,20,15394,711682,444,0 ,44,15152,2284548,24,0 ,17,923,7003140,24,0 ,17,923,6478852,32,0 ,16,820,187400,20,10 ,15,12009,711688,1,1 ,16,820,187408,19,8 ,15,12010,711696,1,1 ,16,820,187416,19,8 ,15,12011,711704,1,1 ,16,820,187424,20,10 ,15,12012,711712,1,1 ,20,22335,18537506,12,0 ,16,820,187432,19,8 ,15,12013,711720,1,1 ,16,820,187440,20,10 ,15,12014,711728,1,1 ,16,820,187448,19,8 ,15,12015,711736,1,1 ,16,820,187456,20,10 ,15,12016,711744,1,1 ,20,20773,13818946,152,0 ,17,923,10148932,32,0 ,44,15152,1236036,136,0 ,45,15153,4906052,24,0 ,45,15153,5430340,32,0 ,17,923,9100356,40,0 ,17,923,9624644,32,0 ,16,820,187464,19,8 ,15,12017,711752,1,1 ,16,820,187472,19,8 ,15,12018,711760,1,1 ,16,820,187480,19,8 ,15,12019,711768,1,1 ,16,820,187488,13,8 ,15,12020,711776,1,1 ,20,23607,21159010,2612,0 ,20,18048,7003234,52,0 ,16,820,187496,20,10 ,15,12021,711784,1,1 ,16,820,187504,21,8 ,15,12022,711792,1,1 ,16,820,187512,19,8 ,15,12023,711800,1,1 ,16,820,187520,20,10 ,15,12024,711808,1,1 ,20,22336,18537602,136,0 ,16,820,187528,20,10 ,15,12025,711816,1,1 ,16,820,187536,21,8 ,15,12026,711824,1,1 ,16,820,187544,20,10 ,15,12027,711832,1,1 ,16,820,187552,21,17 ,15,12028,711840,1,1 ,16,820,187560,13,8 ,15,12029,711848,1,1 ,16,820,187568,14,8 ,15,12030,711856,1,1 ,16,820,187576,19,9 ,15,12031,711864,1,1 ,16,820,187584,17,18 ,15,12032,711872,1,1 ,20,22076,18013378,80,0 ,17,923,8051908,56,0 ,17,923,7003332,24,0 ,44,15152,2809028,48,0 ,44,15152,2284740,96,0 ,45,15153,4381892,16,0 ,16,820,187592,13,8 ,15,12033,711880,1,1 ,16,820,187600,20,8 ,15,12034,711888,1,1 ,16,820,187608,19,9 ,15,12035,711896,1,1 ,16,820,187616,19,8 ,15,12036,711904,1,1 ,20,18983,9100514,1544,0 ,16,820,187624,19,11 ,15,12037,711912,1,1 ,16,820,187632,21,11 ,15,12038,711920,1,1 ,16,820,187640,19,8 ,15,12039,711928,1,1 ,16,820,187648,19,8 ,15,12040,711936,1,1 ,17,923,8576260,24,0 ,17,923,6479108,24,0 ,44,15152,3333380,24,0 ,45,15153,4906244,32,0 ,16,820,187656,19,10 ,15,12041,711944,1,1 ,16,820,187664,13,8 ,15,12042,711952,1,1 ,16,820,187672,13,8 ,15,12043,711960,1,1 ,16,820,187680,14,8 ,15,12044,711968,1,1 ,16,820,187688,21,9 ,15,12045,711976,1,1 ,16,820,187696,13,8 ,15,12046,711984,1,1 ,16,820,187704,13,8 ,15,12047,711992,1,1 ,16,820,187712,14,8 ,15,12048,712000,1,1 ,20,17541,5954882,232,0 ,17,923,10149188,128,0 ,17,923,7527748,32,0 ,44,15152,187716,48,0 ,45,15153,4382020,16,0 ,45,15153,5430596,24,0 ,17,923,9624900,24,0 ,16,820,187720,13,8 ,15,12049,712008,1,1 ,16,820,187728,13,8 ,15,12050,712016,1,1 ,16,820,187736,20,8 ,15,12051,712024,1,1 ,16,820,187744,19,10 ,15,12052,712032,1,1 ,20,25535,26402146,56,0 ,16,820,187752,19,10 ,15,12053,712040,1,1 ,16,820,187760,19,14 ,15,12054,712048,1,1 ,16,820,187768,21,28 ,15,12055,712056,1,1 ,16,820,187776,21,10 ,15,12056,712064,1,1 ,17,923,9100676,32,0 ,17,923,7003524,24,0 ,16,820,187784,19,11 ,15,12057,712072,1,1 ,16,820,187792,21,8 ,15,12058,712080,1,1 ,16,820,187800,19,8 ,15,12059,712088,1,1 ,16,820,187808,20,10 ,15,12060,712096,1,1 ,20,17371,5430690,124,0 ,16,820,187816,20,10 ,15,12061,712104,1,1 ,16,820,187824,21,8 ,15,12062,712112,1,1 ,16,820,187832,20,10 ,15,12063,712120,1,1 ,16,820,187840,20,10 ,15,12064,712128,1,1 ,20,24209,22732226,60,0 ,20,20985,15392194,780,0 ,17,923,8576452,24,0 ,17,923,6479300,48,0 ,44,15152,3333572,40,0 ,44,15152,3857860,136,0 ,45,15153,4382148,16,0 ,16,820,187848,21,11 ,15,12065,712136,1,1 ,16,820,187856,13,8 ,15,12066,712144,1,1 ,16,820,187864,13,8 ,15,12067,712152,1,1 ,16,820,187872,13,8 ,15,12068,712160,1,1 ,16,820,187880,23,11 ,15,12069,712168,1,1 ,16,820,187888,21,10 ,15,12070,712176,1,1 ,16,820,187896,21,8 ,15,12071,712184,1,1 ,16,820,187904,21,8 ,15,12072,712192,1,1 ,20,18049,7003650,120,0 ,17,923,9625092,24,0 ,45,15153,4906500,24,0 ,45,15153,5430788,24,0 ,16,820,187912,17,8 ,15,12073,712200,1,1 ,16,820,187920,13,8 ,15,12074,712208,1,1 ,16,820,187928,19,9 ,15,12075,712216,1,1 ,16,820,187936,13,8 ,15,12076,712224,1,1 ,16,820,187944,13,8 ,15,12077,712232,1,1 ,16,820,187952,13,8 ,15,12078,712240,1,1 ,16,820,187960,13,8 ,15,12079,712248,1,1 ,16,820,187968,19,8 ,15,12080,712256,1,1 ,20,23378,20635202,376,0 ,45,15153,4382276,16,0 ,17,923,7528004,24,0 ,17,923,7003716,56,0 ,44,15152,2809412,32,0 ,16,820,187976,20,8 ,15,12081,712264,1,1 ,16,820,187984,21,8 ,15,12082,712272,1,1 ,16,820,187992,19,10 ,15,12083,712280,1,1 ,16,820,188000,19,9 ,15,12084,712288,1,1 ,20,21843,16965218,720,0 ,16,820,188008,20,10 ,15,12085,712296,1,1 ,16,820,188016,19,9 ,15,12086,712304,1,1 ,16,820,188024,21,17 ,15,12087,712312,1,1 ,16,820,188032,13,8 ,15,12088,712320,1,1 ,17,923,9100932,32,0 ,17,923,8052356,32,0 ,17,923,8576644,24,0 ,16,820,188040,21,8 ,15,12089,712328,1,1 ,16,820,188048,19,8 ,15,12090,712336,1,1 ,16,820,188056,19,9 ,15,12091,712344,1,1 ,16,820,188064,19,8 ,15,12092,712352,1,1 ,16,820,188072,19,8 ,15,12093,712360,1,1 ,16,820,188080,21,11 ,15,12094,712368,1,1 ,16,820,188088,21,11 ,15,12095,712376,1,1 ,16,820,188096,21,9 ,15,12096,712384,1,1 ,20,24963,24829634,48,0 ,17,923,9625284,40,0 ,44,15152,188100,40,0 ,45,15153,4382404,16,0 ,45,15153,4906692,16,0 ,45,15153,5430980,64,0 ,16,820,188104,19,8 ,15,12097,712392,1,1 ,16,820,188112,21,10 ,15,12098,712400,1,1 ,16,820,188120,19,10 ,15,12099,712408,1,1 ,16,820,188128,19,8 ,15,12100,712416,1,1 ,16,820,188136,21,8 ,15,12101,712424,1,1 ,16,820,188144,19,8 ,15,12102,712432,1,1 ,16,820,188152,13,8 ,15,12103,712440,1,1 ,16,820,188160,19,11 ,15,12104,712448,1,1 ,44,15152,3333892,32,0 ,17,923,7528196,24,0 ,16,820,188168,20,10 ,15,12105,712456,1,1 ,16,820,188176,21,13 ,15,12106,712464,1,1 ,16,820,188184,13,8 ,15,12107,712472,1,1 ,16,820,188192,20,10 ,15,12108,712480,1,1 ,20,25536,26402594,140,0 ,16,820,188200,19,8 ,15,12109,712488,1,1 ,16,820,188208,21,11 ,15,12110,712496,1,1 ,16,820,188216,21,8 ,15,12111,712504,1,1 ,16,820,188224,19,8 ,15,12112,712512,1,1 ,20,22077,18014018,1504,0 ,20,17776,6479682,3824,0 ,17,923,8576836,40,0 ,17,923,6479684,72,0 ,44,15152,2809668,16,0 ,44,15152,712516,176,0 ,45,15153,4382532,24,0 ,45,15153,4906820,24,0 ,16,820,188232,20,11 ,15,12113,712520,1,1 ,16,820,188240,13,8 ,15,12114,712528,1,1 ,16,820,188248,13,8 ,15,12115,712536,1,1 ,16,820,188256,13,8 ,15,12116,712544,1,1 ,16,820,188264,13,8 ,15,12117,712552,1,1 ,16,820,188272,13,8 ,15,12118,712560,1,1 ,16,820,188280,13,8 ,15,12119,712568,1,1 ,16,820,188288,19,11 ,15,12120,712576,1,1 ,17,923,9101188,24,0 ,17,923,8052612,40,0 ,16,820,188296,19,10 ,15,12121,712584,1,1 ,16,820,188304,13,8 ,15,12122,712592,1,1 ,16,820,188312,21,8 ,15,12123,712600,1,1 ,16,820,188320,13,8 ,15,12124,712608,1,1 ,20,24210,22732706,1048,0 ,16,820,188328,21,8 ,15,12125,712616,1,1 ,16,820,188336,19,8 ,15,12126,712624,1,1 ,16,820,188344,21,10 ,15,12127,712632,1,1 ,16,820,188352,19,8 ,15,12128,712640,1,1 ,20,24391,23257026,256,0 ,20,16412,3334082,56,0 ,44,15152,2285508,40,0 ,17,923,7528388,32,0 ,44,15152,2809796,568,0 ,16,820,188360,13,8 ,15,12129,712648,1,1 ,16,820,188368,19,8 ,15,12130,712656,1,1 ,16,820,188376,19,8 ,15,12131,712664,1,1 ,16,820,188384,19,8 ,15,12132,712672,1,1 ,16,820,188392,13,8 ,15,12133,712680,1,1 ,16,820,188400,13,8 ,15,12134,712688,1,1 ,16,820,188408,13,8 ,15,12135,712696,1,1 ,16,820,188416,19,8 ,15,12136,712704,1,1 ,17,923,9625604,24,0 ,17,923,7004164,32,0 ,44,15152,188420,64,0 ,44,15152,3334148,56,0 ,45,15153,4382724,72,0 ,45,15153,4907012,16,0 ,16,820,188424,13,8 ,15,12137,712712,1,1 ,16,820,188432,19,8 ,15,12138,712720,1,1 ,16,820,188440,13,8 ,15,12139,712728,1,1 ,16,820,188448,13,8 ,15,12140,712736,1,1 ,20,26312,28500002,1076,0 ,16,820,188456,13,8 ,15,12141,712744,1,1 ,16,820,188464,21,8 ,15,12142,712752,1,1 ,16,820,188472,13,8 ,15,12143,712760,1,1 ,16,820,188480,13,8 ,15,12144,712768,1,1 ,20,24964,24830018,96,0 ,20,26148,27975746,144,0 ,17,923,9101380,24,0 ,16,820,188488,21,13 ,15,12145,712776,1,1 ,16,820,188496,25,15 ,15,12146,712784,1,1 ,16,820,188504,21,8 ,15,12147,712792,1,1 ,16,820,188512,19,11 ,15,12148,712800,1,1 ,20,20901,14868578,4568,0 ,20,16733,3858530,572,0 ,16,820,188520,19,10 ,15,12149,712808,1,1 ,16,820,188528,17,10 ,15,12150,712816,1,1 ,16,820,188536,17,8 ,15,12151,712824,1,1 ,16,820,188544,13,8 ,15,12152,712832,1,1 ,20,15824,1761410,172,0 ,17,923,8577156,40,0 ,44,15152,1237124,48,0 ,45,15153,4907140,40,0 ,16,820,188552,13,8 ,15,12153,712840,1,1 ,16,820,188560,19,11 ,15,12154,712848,1,1 ,16,820,188568,13,8 ,15,12155,712856,1,1 ,16,820,188576,13,8 ,15,12156,712864,1,1 ,16,820,188584,13,8 ,15,12157,712872,1,1 ,16,820,188592,13,8 ,15,12158,712880,1,1 ,16,820,188600,13,8 ,15,12159,712888,1,1 ,16,820,188608,19,10 ,15,12160,712896,1,1 ,20,22337,18538690,124,0 ,17,923,9625796,24,0 ,17,923,7528644,32,0 ,45,15153,5431492,48,0 ,17,923,8052932,56,0 ,16,820,188616,17,8 ,15,12161,712904,1,1 ,16,820,188624,22,13 ,15,12162,712912,1,1 ,16,820,188632,19,15 ,15,12163,712920,1,1 ,16,820,188640,19,8 ,15,12164,712928,1,1 ,16,820,188648,19,10 ,15,12165,712936,1,1 ,16,820,188656,17,8 ,15,12166,712944,1,1 ,16,820,188664,14,8 ,15,12167,712952,1,1 ,16,820,188672,19,8 ,15,12168,712960,1,1 ,20,20774,13820162,212,0 ,17,923,9101572,32,0 ,17,923,7004420,32,0 ,44,15152,2285828,168,0 ,16,820,188680,19,8 ,15,12169,712968,1,1 ,16,820,188688,21,10 ,15,12170,712976,1,1 ,16,820,188696,20,10 ,15,12171,712984,1,1 ,16,820,188704,19,9 ,15,12172,712992,1,1 ,20,23046,20111650,24,0 ,16,820,188712,20,10 ,15,12173,713000,1,1 ,16,820,188720,19,8 ,15,12174,713008,1,1 ,16,820,188728,19,16 ,15,12175,713016,1,1 ,16,820,188736,19,11 ,15,12176,713024,1,1 ,17,923,10150212,56,0 ,16,820,188744,19,8 ,15,12177,713032,1,1 ,16,820,188752,17,8 ,15,12178,713040,1,1 ,16,820,188760,21,18 ,15,12179,713048,1,1 ,16,820,188768,13,8 ,15,12180,713056,1,1 ,16,820,188776,20,12 ,15,12181,713064,1,1 ,16,820,188784,21,9 ,15,12182,713072,1,1 ,16,820,188792,20,10 ,15,12183,713080,1,1 ,16,820,188800,20,10 ,15,12184,713088,1,1 ,20,17372,5431682,96,0 ,20,16413,3334530,172,0 ,17,923,9625988,24,0 ,17,923,6480260,32,0 ,16,820,188808,21,20 ,15,12185,713096,1,1 ,16,820,188816,19,8 ,15,12186,713104,1,1 ,16,820,188824,13,8 ,15,12187,713112,1,1 ,16,820,188832,14,8 ,15,12188,713120,1,1 ,16,820,188840,21,8 ,15,12189,713128,1,1 ,16,820,188848,20,8 ,15,12190,713136,1,1 ,16,820,188856,19,12 ,15,12191,713144,1,1 ,16,820,188864,13,8 ,15,12192,713152,1,1 ,20,18050,7004610,120,0 ,17,923,8577476,48,0 ,17,923,7528900,40,0 ,44,15152,3334596,216,0 ,45,15153,4907460,48,0 ,16,820,188872,14,8 ,15,12193,713160,1,1 ,16,820,188880,21,14 ,15,12194,713168,1,1 ,16,820,188888,19,12 ,15,12195,713176,1,1 ,16,820,188896,20,8 ,15,12196,713184,1,1 ,20,23047,20111842,104,0 ,20,25164,25354722,2324,0 ,16,820,188904,19,9 ,15,12197,713192,1,1 ,16,820,188912,19,8 ,15,12198,713200,1,1 ,16,820,188920,19,8 ,15,12199,713208,1,1 ,16,820,188928,20,8 ,15,12200,713216,1,1 ,17,923,9101828,24,0 ,17,923,7004676,56,0 ,44,15152,1237508,40,0 ,44,15152,188932,72,0 ,44,15152,3858948,40,0 ,16,820,188936,19,18 ,15,12201,713224,1,1 ,16,820,188944,19,10 ,15,12202,713232,1,1 ,16,820,188952,19,14 ,15,12203,713240,1,1 ,16,820,188960,19,10 ,15,12204,713248,1,1 ,16,820,188968,13,8 ,15,12205,713256,1,1 ,16,820,188976,19,8 ,15,12206,713264,1,1 ,16,820,188984,21,26 ,15,12207,713272,1,1 ,16,820,188992,21,9 ,15,12208,713280,1,1 ,17,923,9626180,32,0 ,45,15153,4383300,24,0 ,45,15153,5431876,32,0 ,16,820,189000,21,9 ,15,12209,713288,1,1 ,16,820,189008,13,8 ,15,12210,713296,1,1 ,16,820,189016,13,8 ,15,12211,713304,1,1 ,16,820,189024,13,8 ,15,12212,713312,1,1 ,16,820,189032,13,8 ,15,12213,713320,1,1 ,16,820,189040,21,8 ,15,12214,713328,1,1 ,16,820,189048,13,8 ,15,12215,713336,1,1 ,16,820,189056,19,8 ,15,12216,713344,1,1 ,17,923,8053380,32,0 ,17,923,6480516,48,0 ,16,820,189064,21,9 ,15,12217,713352,1,1 ,16,820,189072,19,8 ,15,12218,713360,1,1 ,16,820,189080,19,8 ,15,12219,713368,1,1 ,16,820,189088,19,8 ,15,12220,713376,1,1 ,16,820,189096,19,9 ,15,12221,713384,1,1 ,16,820,189104,21,8 ,15,12222,713392,1,1 ,16,820,189112,13,8 ,15,12223,713400,1,1 ,16,820,189120,13,8 ,15,12224,713408,1,1 ,17,923,9102020,32,0 ,16,820,189128,13,8 ,15,12225,713416,1,1 ,16,820,189136,20,8 ,15,12226,713424,1,1 ,16,820,189144,19,8 ,15,12227,713432,1,1 ,16,820,189152,19,9 ,15,12228,713440,1,1 ,16,820,189160,19,8 ,15,12229,713448,1,1 ,16,820,189168,21,10 ,15,12230,713456,1,1 ,16,820,189176,19,8 ,15,12231,713464,1,1 ,16,820,189184,19,8 ,15,12232,713472,1,1 ,20,16991,4383490,776,0 ,17,923,10150660,80,0 ,17,923,7529220,40,0 ,45,15153,4383492,24,0 ,16,820,189192,19,9 ,15,12233,713480,1,1 ,16,820,189200,20,8 ,15,12234,713488,1,1 ,16,820,189208,19,9 ,15,12235,713496,1,1 ,16,820,189216,19,9 ,15,12236,713504,1,1 ,16,820,189224,19,8 ,15,12237,713512,1,1 ,16,820,189232,19,8 ,15,12238,713520,1,1 ,16,820,189240,21,9 ,15,12239,713528,1,1 ,16,820,189248,21,9 ,15,12240,713536,1,1 ,20,24965,24830786,68,0 ,17,923,9626436,40,0 ,44,15152,1237828,24,0 ,44,15152,3859268,48,0 ,45,15153,4907844,24,0 ,45,15153,5432132,32,0 ,17,923,8577860,40,0 ,16,820,189256,19,8 ,15,12241,713544,1,1 ,16,820,189264,21,17 ,15,12242,713552,1,1 ,16,820,189272,19,9 ,15,12243,713560,1,1 ,16,820,189280,19,13 ,15,12244,713568,1,1 ,16,820,189288,19,8 ,15,12245,713576,1,1 ,16,820,189296,13,8 ,15,12246,713584,1,1 ,16,820,189304,20,8 ,15,12247,713592,1,1 ,16,820,189312,19,8 ,15,12248,713600,1,1 ,20,18694,8577922,72,0 ,20,25537,26403714,236,0 ,17,923,8053636,32,0 ,16,820,189320,19,8 ,15,12249,713608,1,1 ,16,820,189328,19,8 ,15,12250,713616,1,1 ,16,820,189336,19,8 ,15,12251,713624,1,1 ,16,820,189344,19,8 ,15,12252,713632,1,1 ,16,820,189352,20,8 ,15,12253,713640,1,1 ,16,820,189360,20,8 ,15,12254,713648,1,1 ,16,820,189368,19,8 ,15,12255,713656,1,1 ,16,820,189376,19,8 ,15,12256,713664,1,1 ,17,923,9102276,32,0 ,17,923,7005124,24,0 ,45,15153,4383684,24,0 ,16,820,189384,20,8 ,15,12257,713672,1,1 ,16,820,189392,19,8 ,15,12258,713680,1,1 ,16,820,189400,19,8 ,15,12259,713688,1,1 ,16,820,189408,13,8 ,15,12260,713696,1,1 ,16,820,189416,13,8 ,15,12261,713704,1,1 ,16,820,189424,14,8 ,15,12262,713712,1,1 ,16,820,189432,13,8 ,15,12263,713720,1,1 ,16,820,189440,13,8 ,15,12264,713728,1,1 ,45,15153,4908036,32,0 ,17,923,6480900,32,0 ,44,15152,1238020,24,0 ,16,820,189448,13,8 ,15,12265,713736,1,1 ,16,820,189456,21,10 ,15,12266,713744,1,1 ,16,820,189464,22,10 ,15,12267,713752,1,1 ,16,820,189472,13,8 ,15,12268,713760,1,1 ,20,15238,189474,632,0 ,16,820,189480,19,10 ,15,12269,713768,1,1 ,16,820,189488,20,11 ,15,12270,713776,1,1 ,16,820,189496,14,8 ,15,12271,713784,1,1 ,16,820,189504,21,10 ,15,12272,713792,1,1 ,45,15153,5432388,16,0 ,17,923,7529540,40,0 ,44,15152,189508,48,0 ,16,820,189512,19,8 ,15,12273,713800,1,1 ,16,820,189520,19,9 ,15,12274,713808,1,1 ,16,820,189528,21,9 ,15,12275,713816,1,1 ,16,820,189536,21,8 ,15,12276,713824,1,1 ,16,820,189544,21,10 ,15,12277,713832,1,1 ,16,820,189552,21,8 ,15,12278,713840,1,1 ,16,820,189560,14,8 ,15,12279,713848,1,1 ,16,820,189568,20,10 ,15,12280,713856,1,1 ,20,17542,5956738,84,0 ,20,17373,5432450,84,0 ,17,923,9626756,40,0 ,17,923,7005316,56,0 ,45,15153,4383876,16,0 ,17,923,8053892,24,0 ,17,923,8578180,24,0 ,16,820,189576,19,9 ,15,12281,713864,1,1 ,16,820,189584,19,8 ,15,12282,713872,1,1 ,16,820,189592,19,10 ,15,12283,713880,1,1 ,16,820,189600,21,8 ,15,12284,713888,1,1 ,20,22338,18539682,12,0 ,16,820,189608,19,9 ,15,12285,713896,1,1 ,16,820,189616,25,11 ,15,12286,713904,1,1 ,16,820,189624,13,8 ,15,12287,713912,1,1 ,16,820,189632,13,8 ,15,12288,713920,1,1 ,20,26149,27976898,44,0 ,17,923,9102532,32,0 ,44,15152,1238212,184,0 ,44,15152,713924,112,0 ,44,15152,3859652,80,0 ,45,15153,5432516,16,0 ,16,820,189640,13,8 ,15,12289,713928,1,1 ,16,820,189648,17,8 ,15,12290,713936,1,1 ,16,820,189656,19,9 ,15,12291,713944,1,1 ,16,820,189664,13,8 ,15,12292,713952,1,1 ,16,820,189672,19,9 ,15,12293,713960,1,1 ,16,820,189680,19,9 ,15,12294,713968,1,1 ,16,820,189688,13,8 ,15,12295,713976,1,1 ,16,820,189696,13,8 ,15,12296,713984,1,1 ,20,22339,18539778,12,0 ,20,19420,10151170,12,0 ,45,15153,4908292,24,0 ,17,923,6481156,16,0 ,45,15153,4384004,16,0 ,16,820,189704,13,8 ,15,12297,713992,1,1 ,16,820,189712,17,8 ,15,12298,714000,1,1 ,16,820,189720,19,9 ,15,12299,714008,1,1 ,16,820,189728,21,9 ,15,12300,714016,1,1 ,20,23048,20112674,24,0 ,16,820,189736,13,8 ,15,12301,714024,1,1 ,16,820,189744,13,8 ,15,12302,714032,1,1 ,16,820,189752,13,8 ,15,12303,714040,1,1 ,16,820,189760,13,8 ,15,12304,714048,1,1 ,17,923,8578372,56,0 ,45,15153,5432644,16,0 ,17,923,8054084,24,0 ,16,820,189768,13,8 ,15,12305,714056,1,1 ,16,820,189776,13,8 ,15,12306,714064,1,1 ,16,820,189784,13,8 ,15,12307,714072,1,1 ,16,820,189792,13,8 ,15,12308,714080,1,1 ,20,22340,18539874,136,0 ,20,24966,24831330,76,0 ,20,19421,10151266,284,0 ,16,820,189800,20,10 ,15,12309,714088,1,1 ,16,820,189808,19,8 ,15,12310,714096,1,1 ,16,820,189816,20,10 ,15,12311,714104,1,1 ,16,820,189824,19,8 ,15,12312,714112,1,1 ,20,18051,7005570,120,0 ,17,923,10151300,48,0 ,17,923,7529860,40,0 ,17,923,6481284,40,0 ,45,15153,4384132,16,0 ,16,820,189832,20,10 ,15,12313,714120,1,1 ,16,820,189840,19,8 ,15,12314,714128,1,1 ,16,820,189848,20,10 ,15,12315,714136,1,1 ,16,820,189856,19,8 ,15,12316,714144,1,1 ,16,820,189864,19,8 ,15,12317,714152,1,1 ,16,820,189872,20,12 ,15,12318,714160,1,1 ,16,820,189880,20,8 ,15,12319,714168,1,1 ,16,820,189888,19,10 ,15,12320,714176,1,1 ,20,18695,8578498,216,0 ,17,923,9627076,40,0 ,44,15152,189892,24,0 ,45,15153,4908484,32,0 ,45,15153,5432772,24,0 ,17,923,9102788,32,0 ,16,820,189896,19,8 ,15,12321,714184,1,1 ,16,820,189904,21,9 ,15,12322,714192,1,1 ,16,820,189912,21,8 ,15,12323,714200,1,1 ,16,820,189920,13,8 ,15,12324,714208,1,1 ,20,23049,20112866,128,0 ,20,15825,1762786,120,0 ,16,820,189928,13,8 ,15,12325,714216,1,1 ,16,820,189936,13,8 ,15,12326,714224,1,1 ,16,820,189944,13,8 ,15,12327,714232,1,1 ,16,820,189952,20,8 ,15,12328,714240,1,1 ,17,923,8054276,24,0 ,45,15153,4384260,56,0 ,16,820,189960,19,9 ,15,12329,714248,1,1 ,16,820,189968,13,8 ,15,12330,714256,1,1 ,16,820,189976,14,8 ,15,12331,714264,1,1 ,16,820,189984,13,8 ,15,12332,714272,1,1 ,20,26150,27977250,372,0 ,16,820,189992,14,8 ,15,12333,714280,1,1 ,16,820,190000,14,8 ,15,12334,714288,1,1 ,16,820,190008,19,12 ,15,12335,714296,1,1 ,16,820,190016,21,10 ,15,12336,714304,1,1 ,44,15152,2287172,168,0 ,17,923,7005764,24,0 ,16,820,190024,13,8 ,15,12337,714312,1,1 ,16,820,190032,19,10 ,15,12338,714320,1,1 ,16,820,190040,19,11 ,15,12339,714328,1,1 ,16,820,190048,19,8 ,15,12340,714336,1,1 ,16,820,190056,19,8 ,15,12341,714344,1,1 ,16,820,190064,19,8 ,15,12342,714352,1,1 ,16,820,190072,19,8 ,15,12343,714360,1,1 ,16,820,190080,21,8 ,15,12344,714368,1,1 ,20,21343,15918722,440,0 ,45,15153,5432964,40,0 ,44,15152,190084,32,0 ,16,820,190088,21,8 ,15,12345,714376,1,1 ,16,820,190096,14,8 ,15,12346,714384,1,1 ,16,820,190104,19,8 ,15,12347,714392,1,1 ,16,820,190112,14,8 ,15,12348,714400,1,1 ,16,820,190120,13,8 ,15,12349,714408,1,1 ,16,820,190128,13,8 ,15,12350,714416,1,1 ,16,820,190136,17,52 ,15,12351,714424,1,1 ,16,820,190144,13,8 ,15,12352,714432,1,1 ,17,923,9103044,32,0 ,17,923,7530180,24,0 ,17,923,6481604,40,0 ,45,15153,4908740,32,0 ,17,923,8054468,32,0 ,16,820,190152,13,8 ,15,12353,714440,1,1 ,16,820,190160,20,10 ,15,12354,714448,1,1 ,16,820,190168,19,8 ,15,12355,714456,1,1 ,16,820,190176,20,14 ,15,12356,714464,1,1 ,20,16414,3335906,12,0 ,20,25948,27453154,312,0 ,20,25721,26928866,148,0 ,16,820,190184,19,13 ,15,12357,714472,1,1 ,16,820,190192,13,8 ,15,12358,714480,1,1 ,16,820,190200,19,15 ,15,12359,714488,1,1 ,16,820,190208,13,8 ,15,12360,714496,1,1 ,17,923,10151684,32,0 ,17,923,7005956,24,0 ,17,923,8578820,16,0 ,17,923,9627396,40,0 ,16,820,190216,13,8 ,15,12361,714504,1,1 ,16,820,190224,13,8 ,15,12362,714512,1,1 ,16,820,190232,19,10 ,15,12363,714520,1,1 ,16,820,190240,20,10 ,15,12364,714528,1,1 ,20,17543,5957410,188,0 ,20,17374,5433122,72,0 ,16,820,190248,19,10 ,15,12365,714536,1,1 ,16,820,190256,19,10 ,15,12366,714544,1,1 ,16,820,190264,19,8 ,15,12367,714552,1,1 ,16,820,190272,19,9 ,15,12368,714560,1,1 ,20,16415,3336002,128,0 ,44,15152,3860292,24,0 ,16,820,190280,19,15 ,15,12369,714568,1,1 ,16,820,190288,21,15 ,15,12370,714576,1,1 ,16,820,190296,19,15 ,15,12371,714584,1,1 ,16,820,190304,19,11 ,15,12372,714592,1,1 ,16,820,190312,19,11 ,15,12373,714600,1,1 ,16,820,190320,20,10 ,15,12374,714608,1,1 ,16,820,190328,19,9 ,15,12375,714616,1,1 ,16,820,190336,20,10 ,15,12376,714624,1,1 ,17,923,8578948,16,0 ,17,923,7530372,64,0 ,44,15152,190340,16,0 ,16,820,190344,21,9 ,15,12377,714632,1,1 ,16,820,190352,19,10 ,15,12378,714640,1,1 ,16,820,190360,19,11 ,15,12379,714648,1,1 ,16,820,190368,19,10 ,15,12380,714656,1,1 ,20,20775,13821858,24,0 ,16,820,190376,20,8 ,15,12381,714664,1,1 ,16,820,190384,19,8 ,15,12382,714672,1,1 ,16,820,190392,20,8 ,15,12383,714680,1,1 ,16,820,190400,19,8 ,15,12384,714688,1,1 ,20,24392,23259074,556,0 ,20,24967,24831938,40,0 ,17,923,9103300,40,0 ,17,923,7006148,32,0 ,45,15153,4384708,32,0 ,45,15153,4908996,24,0 ,45,15153,5433284,32,0 ,17,923,8054724,48,0 ,16,820,190408,13,8 ,15,12385,714696,1,1 ,16,820,190416,13,8 ,15,12386,714704,1,1 ,16,820,190424,13,8 ,15,12387,714712,1,1 ,16,820,190432,19,9 ,15,12388,714720,1,1 ,20,18506,8054754,12,0 ,16,820,190440,21,8 ,15,12389,714728,1,1 ,16,820,190448,21,8 ,15,12390,714736,1,1 ,16,820,190456,21,8 ,15,12391,714744,1,1 ,16,820,190464,19,8 ,15,12392,714752,1,1 ,17,923,10151940,40,0 ,17,923,6481924,40,0 ,44,15152,190468,64,0 ,44,15152,3860484,40,0 ,17,923,8579076,16,0 ,16,820,190472,20,8 ,15,12393,714760,1,1 ,16,820,190480,21,10 ,15,12394,714768,1,1 ,16,820,190488,19,9 ,15,12395,714776,1,1 ,16,820,190496,19,9 ,15,12396,714784,1,1 ,16,820,190504,17,8 ,15,12397,714792,1,1 ,16,820,190512,21,8 ,15,12398,714800,1,1 ,16,820,190520,19,9 ,15,12399,714808,1,1 ,16,820,190528,19,9 ,15,12400,714816,1,1 ,20,18507,8054850,12,0 ,17,923,9627716,24,0 ,44,15152,714820,112,0 ,16,820,190536,21,10 ,15,12401,714824,1,1 ,16,820,190544,19,8 ,15,12402,714832,1,1 ,16,820,190552,13,8 ,15,12403,714840,1,1 ,16,820,190560,19,12 ,15,12404,714848,1,1 ,20,20776,13822050,472,0 ,16,820,190568,17,8 ,15,12405,714856,1,1 ,16,820,190576,19,8 ,15,12406,714864,1,1 ,16,820,190584,21,8 ,15,12407,714872,1,1 ,16,820,190592,17,8 ,15,12408,714880,1,1 ,20,22726,19589250,612,0 ,17,923,8579204,16,0 ,44,15152,3336324,192,0 ,45,15153,4909188,32,0 ,16,820,190600,21,8 ,15,12409,714888,1,1 ,16,820,190608,13,8 ,15,12410,714896,1,1 ,16,820,190616,21,10 ,15,12411,714904,1,1 ,16,820,190624,21,11 ,15,12412,714912,1,1 ,20,18508,8054946,12,0 ,16,820,190632,19,8 ,15,12413,714920,1,1 ,16,820,190640,19,8 ,15,12414,714928,1,1 ,16,820,190648,19,8 ,15,12415,714936,1,1 ,16,820,190656,19,8 ,15,12416,714944,1,1 ,45,15153,5433540,16,0 ,17,923,7006404,32,0 ,45,15153,4384964,24,0 ,16,820,190664,21,9 ,15,12417,714952,1,1 ,16,820,190672,21,11 ,15,12418,714960,1,1 ,16,820,190680,13,8 ,15,12419,714968,1,1 ,16,820,190688,19,9 ,15,12420,714976,1,1 ,16,820,190696,19,8 ,15,12421,714984,1,1 ,16,820,190704,19,8 ,15,12422,714992,1,1 ,16,820,190712,13,8 ,15,12423,715000,1,1 ,16,820,190720,14,8 ,15,12424,715008,1,1 ,20,18509,8055042,96,0 ,20,24968,24832258,196,0 ,17,923,9627908,24,0 ,17,923,8579332,16,0 ,17,923,9103620,32,0 ,16,820,190728,21,12 ,15,12425,715016,1,1 ,16,820,190736,13,8 ,15,12426,715024,1,1 ,16,820,190744,21,9 ,15,12427,715032,1,1 ,16,820,190752,20,12 ,15,12428,715040,1,1 ,16,820,190760,13,8 ,15,12429,715048,1,1 ,16,820,190768,21,8 ,15,12430,715056,1,1 ,16,820,190776,19,11 ,15,12431,715064,1,1 ,16,820,190784,13,8 ,15,12432,715072,1,1 ,20,19130,9627970,128,0 ,20,18052,7006530,204,0 ,17,923,10152260,32,0 ,17,923,6482244,24,0 ,44,15152,3860804,40,0 ,45,15153,5433668,72,0 ,17,923,8055108,32,0 ,16,820,190792,21,15 ,15,12433,715080,1,1 ,16,820,190800,21,12 ,15,12434,715088,1,1 ,16,820,190808,19,8 ,15,12435,715096,1,1 ,16,820,190816,13,8 ,15,12436,715104,1,1 ,20,17375,5433698,12,0 ,20,25386,25880930,48,0 ,16,820,190824,13,8 ,15,12437,715112,1,1 ,16,820,190832,21,8 ,15,12438,715120,1,1 ,16,820,190840,13,8 ,15,12439,715128,1,1 ,16,820,190848,21,8 ,15,12440,715136,1,1 ,17,923,8579460,16,0 ,17,923,7530884,40,0 ,45,15153,4385156,80,0 ,45,15153,4909444,56,0 ,16,820,190856,19,8 ,15,12441,715144,1,1 ,16,820,190864,19,8 ,15,12442,715152,1,1 ,16,820,190872,19,11 ,15,12443,715160,1,1 ,16,820,190880,19,8 ,15,12444,715168,1,1 ,20,22341,18540962,84,0 ,20,15655,1239458,548,0 ,20,15826,1763746,176,0 ,16,820,190888,13,8 ,15,12445,715176,1,1 ,16,820,190896,21,14 ,15,12446,715184,1,1 ,16,820,190904,13,8 ,15,12447,715192,1,1 ,16,820,190912,14,8 ,15,12448,715200,1,1 ,20,19720,10676674,100,0 ,20,17376,5433794,260,0 ,17,923,9628100,24,0 ,17,923,7006660,32,0 ,16,820,190920,20,12 ,15,12449,715208,1,1 ,16,820,190928,21,30 ,15,12450,715216,1,1 ,16,820,190936,13,8 ,15,12451,715224,1,1 ,16,820,190944,13,8 ,15,12452,715232,1,1 ,20,23050,20113890,24,0 ,20,15395,715234,596,0 ,16,820,190952,20,10 ,15,12453,715240,1,1 ,16,820,190960,19,10 ,15,12454,715248,1,1 ,16,820,190968,21,9 ,15,12455,715256,1,1 ,16,820,190976,19,8 ,15,12456,715264,1,1 ,20,23379,20638210,684,0 ,17,923,9103876,32,0 ,17,923,6482436,80,0 ,44,15152,190980,64,0 ,17,923,8579588,16,0 ,16,820,190984,14,8 ,15,12457,715272,1,1 ,16,820,190992,19,10 ,15,12458,715280,1,1 ,16,820,191000,19,11 ,15,12459,715288,1,1 ,16,820,191008,19,10 ,15,12460,715296,1,1 ,16,820,191016,20,11 ,15,12461,715304,1,1 ,16,820,191024,19,10 ,15,12462,715312,1,1 ,16,820,191032,20,10 ,15,12463,715320,1,1 ,16,820,191040,21,8 ,15,12464,715328,1,1 ,17,923,10152516,24,0 ,17,923,8055364,32,0 ,16,820,191048,13,8 ,15,12465,715336,1,1 ,16,820,191056,19,8 ,15,12466,715344,1,1 ,16,820,191064,19,8 ,15,12467,715352,1,1 ,16,820,191072,14,8 ,15,12468,715360,1,1 ,16,820,191080,13,8 ,15,12469,715368,1,1 ,16,820,191088,19,8 ,15,12470,715376,1,1 ,16,820,191096,19,8 ,15,12471,715384,1,1 ,16,820,191104,21,9 ,15,12472,715392,1,1 ,17,923,9628292,32,0 ,44,15152,1239684,80,0 ,44,15152,3861124,96,0 ,17,923,8579716,16,0 ,16,820,191112,13,8 ,15,12473,715400,1,1 ,16,820,191120,14,8 ,15,12474,715408,1,1 ,16,820,191128,19,10 ,15,12475,715416,1,1 ,16,820,191136,13,8 ,15,12476,715424,1,1 ,20,23051,20114082,96,0 ,16,820,191144,13,8 ,15,12477,715432,1,1 ,16,820,191152,14,8 ,15,12478,715440,1,1 ,16,820,191160,13,8 ,15,12479,715448,1,1 ,16,820,191168,13,8 ,15,12480,715456,1,1 ,20,18251,7531202,356,0 ,17,923,7006916,32,0 ,17,923,7531204,24,0 ,16,820,191176,14,8 ,15,12481,715464,1,1 ,16,820,191184,19,9 ,15,12482,715472,1,1 ,16,820,191192,19,8 ,15,12483,715480,1,1 ,16,820,191200,19,8 ,15,12484,715488,1,1 ,20,25387,25881314,164,0 ,20,25538,26405602,240,0 ,16,820,191208,19,8 ,15,12485,715496,1,1 ,16,820,191216,13,8 ,15,12486,715504,1,1 ,16,820,191224,19,15 ,15,12487,715512,1,1 ,16,820,191232,21,9 ,15,12488,715520,1,1 ,17,923,10152708,56,0 ,17,923,8579844,16,0 ,17,923,9104132,32,0 ,16,820,191240,19,8 ,15,12489,715528,1,1 ,16,820,191248,21,9 ,15,12490,715536,1,1 ,16,820,191256,13,8 ,15,12491,715544,1,1 ,16,820,191264,14,8 ,15,12492,715552,1,1 ,16,820,191272,14,8 ,15,12493,715560,1,1 ,16,820,191280,21,8 ,15,12494,715568,1,1 ,16,820,191288,21,14 ,15,12495,715576,1,1 ,16,820,191296,21,8 ,15,12496,715584,1,1 ,20,16416,3337026,700,0 ,17,923,8055620,24,0 ,45,15153,4909892,24,0 ,16,820,191304,19,10 ,15,12497,715592,1,1 ,16,820,191312,19,12 ,15,12498,715600,1,1 ,16,820,191320,19,14 ,15,12499,715608,1,1 ,16,820,191328,21,9 ,15,12500,715616,1,1 ,16,820,191336,13,8 ,15,12501,715624,1,1 ,16,820,191344,21,8 ,15,12502,715632,1,1 ,16,820,191352,19,8 ,15,12503,715640,1,1 ,16,820,191360,21,8 ,15,12504,715648,1,1 ,20,25722,26930050,148,0 ,17,923,9628548,40,0 ,17,923,7531396,24,0 ,44,15152,2288516,168,0 ,45,15153,5434244,24,0 ,17,923,8579972,16,0 ,16,820,191368,19,8 ,15,12505,715656,1,1 ,16,820,191376,19,8 ,15,12506,715664,1,1 ,16,820,191384,14,8 ,15,12507,715672,1,1 ,16,820,191392,19,8 ,15,12508,715680,1,1 ,16,820,191400,19,9 ,15,12509,715688,1,1 ,16,820,191408,21,10 ,15,12510,715696,1,1 ,16,820,191416,13,8 ,15,12511,715704,1,1 ,16,820,191424,19,12 ,15,12512,715712,1,1 ,44,15152,715716,40,0 ,17,923,7007172,24,0 ,16,820,191432,19,13 ,15,12513,715720,1,1 ,16,820,191440,19,8 ,15,12514,715728,1,1 ,16,820,191448,19,8 ,15,12515,715736,1,1 ,16,820,191456,19,8 ,15,12516,715744,1,1 ,16,820,191464,13,8 ,15,12517,715752,1,1 ,16,820,191472,19,8 ,15,12518,715760,1,1 ,16,820,191480,19,8 ,15,12519,715768,1,1 ,16,820,191488,19,8 ,15,12520,715776,1,1 ,20,18510,8055810,48,0 ,17,923,9104388,40,0 ,44,15152,191492,32,0 ,45,15153,4385796,24,0 ,45,15153,4910084,32,0 ,17,923,8055812,24,0 ,17,923,8580100,16,0 ,16,820,191496,21,11 ,15,12521,715784,1,1 ,16,820,191504,19,14 ,15,12522,715792,1,1 ,16,820,191512,21,8 ,15,12523,715800,1,1 ,16,820,191520,21,8 ,15,12524,715808,1,1 ,16,820,191528,19,8 ,15,12525,715816,1,1 ,16,820,191536,13,8 ,15,12526,715824,1,1 ,16,820,191544,13,8 ,15,12527,715832,1,1 ,16,820,191552,19,10 ,15,12528,715840,1,1 ,20,22342,18541634,12,0 ,45,15153,5434436,32,0 ,17,923,7531588,24,0 ,16,820,191560,13,8 ,15,12529,715848,1,1 ,16,820,191568,21,12 ,15,12530,715856,1,1 ,16,820,191576,13,8 ,15,12531,715864,1,1 ,16,820,191584,20,8 ,15,12532,715872,1,1 ,16,820,191592,19,8 ,15,12533,715880,1,1 ,16,820,191600,21,10 ,15,12534,715888,1,1 ,16,820,191608,19,8 ,15,12535,715896,1,1 ,16,820,191616,21,10 ,15,12536,715904,1,1 ,20,18696,8580226,428,0 ,17,923,8580228,16,0 ,17,923,7007364,16,0 ,17,923,6483076,80,0 ,16,820,191624,21,12 ,15,12537,715912,1,1 ,16,820,191632,19,8 ,15,12538,715920,1,1 ,16,820,191640,21,25 ,15,12539,715928,1,1 ,16,820,191648,20,8 ,15,12540,715936,1,1 ,20,22343,18541730,688,0 ,16,820,191656,19,8 ,15,12541,715944,1,1 ,16,820,191664,13,8 ,15,12542,715952,1,1 ,16,820,191672,19,9 ,15,12543,715960,1,1 ,16,820,191680,19,10 ,15,12544,715968,1,1 ,17,923,10153156,24,0 ,45,15153,4385988,80,0 ,17,923,8056004,32,0 ,17,923,9628868,48,0 ,16,820,191688,19,9 ,15,12545,715976,1,1 ,16,820,191696,19,8 ,15,12546,715984,1,1 ,16,820,191704,13,8 ,15,12547,715992,1,1 ,16,820,191712,21,12 ,15,12548,716000,1,1 ,20,19721,10677474,60,0 ,16,820,191720,19,8 ,15,12549,716008,1,1 ,16,820,191728,19,10 ,15,12550,716016,1,1 ,16,820,191736,19,14 ,15,12551,716024,1,1 ,16,820,191744,19,9 ,15,12552,716032,1,1 ,20,17544,5958914,256,0 ,17,923,8580356,16,0 ,17,923,7531780,24,0 ,17,923,7007492,24,0 ,44,15152,1240324,32,0 ,44,15152,191748,64,0 ,44,15152,716036,32,0 ,45,15153,4910340,32,0 ,16,820,191752,19,8 ,15,12553,716040,1,1 ,16,820,191760,13,8 ,15,12554,716048,1,1 ,16,820,191768,13,8 ,15,12555,716056,1,1 ,16,820,191776,14,8 ,15,12556,716064,1,1 ,16,820,191784,19,12 ,15,12557,716072,1,1 ,16,820,191792,14,8 ,15,12558,716080,1,1 ,16,820,191800,19,11 ,15,12559,716088,1,1 ,16,820,191808,13,8 ,15,12560,716096,1,1 ,20,23973,22211906,200,0 ,20,19131,9628994,320,0 ,17,923,9104708,24,0 ,45,15153,5434692,16,0 ,16,820,191816,13,8 ,15,12561,716104,1,1 ,16,820,191824,14,8 ,15,12562,716112,1,1 ,16,820,191832,20,10 ,15,12563,716120,1,1 ,16,820,191840,19,9 ,15,12564,716128,1,1 ,16,820,191848,13,8 ,15,12565,716136,1,1 ,16,820,191856,20,11 ,15,12566,716144,1,1 ,16,820,191864,19,9 ,15,12567,716152,1,1 ,16,820,191872,13,8 ,15,12568,716160,1,1 ,20,18511,8056194,12,0 ,17,923,10153348,24,0 ,44,15152,3861892,88,0 ,17,923,8580484,16,0 ,16,820,191880,13,8 ,15,12569,716168,1,1 ,16,820,191888,14,8 ,15,12570,716176,1,1 ,16,820,191896,21,38 ,15,12571,716184,1,1 ,16,820,191904,19,9 ,15,12572,716192,1,1 ,20,23052,20114850,108,0 ,20,21567,16444834,108,0 ,16,820,191912,19,8 ,15,12573,716200,1,1 ,16,820,191920,17,8 ,15,12574,716208,1,1 ,16,820,191928,21,12 ,15,12575,716216,1,1 ,16,820,191936,19,8 ,15,12576,716224,1,1 ,17,923,8056260,40,0 ,17,923,7531972,16,0 ,17,923,7007684,24,0 ,45,15153,5434820,24,0 ,16,820,191944,19,9 ,15,12577,716232,1,1 ,16,820,191952,14,8 ,15,12578,716240,1,1 ,16,820,191960,21,9 ,15,12579,716248,1,1 ,16,820,191968,19,14 ,15,12580,716256,1,1 ,20,18512,8056290,176,0 ,16,820,191976,13,8 ,15,12581,716264,1,1 ,16,820,191984,13,8 ,15,12582,716272,1,1 ,16,820,191992,19,8 ,15,12583,716280,1,1 ,16,820,192000,19,9 ,15,12584,716288,1,1 ,17,923,9104900,32,0 ,44,15152,1240580,40,0 ,44,15152,716292,224,0 ,45,15153,4910596,32,0 ,17,923,8580612,16,0 ,16,820,192008,19,9 ,15,12585,716296,1,1 ,16,820,192016,14,8 ,15,12586,716304,1,1 ,16,820,192024,19,9 ,15,12587,716312,1,1 ,16,820,192032,19,16 ,15,12588,716320,1,1 ,20,17154,4910626,944,0 ,16,820,192040,19,8 ,15,12589,716328,1,1 ,16,820,192048,19,12 ,15,12590,716336,1,1 ,16,820,192056,20,10 ,15,12591,716344,1,1 ,16,820,192064,19,8 ,15,12592,716352,1,1 ,20,19422,10153538,204,0 ,17,923,10153540,24,0 ,17,923,7532100,40,0 ,17,923,9629252,40,0 ,16,820,192072,19,8 ,15,12593,716360,1,1 ,16,820,192080,17,8 ,15,12594,716368,1,1 ,16,820,192088,20,10 ,15,12595,716376,1,1 ,16,820,192096,19,8 ,15,12596,716384,1,1 ,16,820,192104,19,8 ,15,12597,716392,1,1 ,16,820,192112,19,9 ,15,12598,716400,1,1 ,16,820,192120,21,11 ,15,12599,716408,1,1 ,16,820,192128,21,10 ,15,12600,716416,1,1 ,17,923,8580740,16,0 ,17,923,7007876,24,0 ,44,15152,3337860,24,0 ,45,15153,5435012,48,0 ,16,820,192136,21,9 ,15,12601,716424,1,1 ,16,820,192144,21,8 ,15,12602,716432,1,1 ,16,820,192152,21,11 ,15,12603,716440,1,1 ,16,820,192160,13,8 ,15,12604,716448,1,1 ,16,820,192168,14,8 ,15,12605,716456,1,1 ,16,820,192176,13,8 ,15,12606,716464,1,1 ,16,820,192184,19,9 ,15,12607,716472,1,1 ,16,820,192192,21,14 ,15,12608,716480,1,1 ,20,19722,10677954,508,0 ,16,820,192200,21,9 ,15,12609,716488,1,1 ,16,820,192208,21,12 ,15,12610,716496,1,1 ,16,820,192216,19,11 ,15,12611,716504,1,1 ,16,820,192224,19,9 ,15,12612,716512,1,1 ,16,820,192232,19,9 ,15,12613,716520,1,1 ,16,820,192240,19,8 ,15,12614,716528,1,1 ,16,820,192248,19,9 ,15,12615,716536,1,1 ,16,820,192256,14,8 ,15,12616,716544,1,1 ,17,923,10153732,72,0 ,17,923,6483716,40,0 ,44,15152,192260,24,0 ,45,15153,4910852,48,0 ,17,923,8056580,24,0 ,17,923,8580868,16,0 ,17,923,9105156,32,0 ,16,820,192264,19,9 ,15,12617,716552,1,1 ,16,820,192272,13,8 ,15,12618,716560,1,1 ,16,820,192280,13,8 ,15,12619,716568,1,1 ,16,820,192288,14,8 ,15,12620,716576,1,1 ,20,15827,1765154,144,0 ,20,24969,24833826,72,0 ,16,820,192296,19,9 ,15,12621,716584,1,1 ,16,820,192304,14,8 ,15,12622,716592,1,1 ,16,820,192312,19,9 ,15,12623,716600,1,1 ,16,820,192320,20,10 ,15,12624,716608,1,1 ,45,15153,4386628,24,0 ,17,923,7008068,24,0 ,44,15152,1240900,512,0 ,44,15152,3338052,24,0 ,16,820,192328,19,9 ,15,12625,716616,1,1 ,16,820,192336,13,8 ,15,12626,716624,1,1 ,16,820,192344,17,8 ,15,12627,716632,1,1 ,16,820,192352,19,8 ,15,12628,716640,1,1 ,16,820,192360,21,9 ,15,12629,716648,1,1 ,16,820,192368,21,11 ,15,12630,716656,1,1 ,16,820,192376,21,12 ,15,12631,716664,1,1 ,16,820,192384,13,8 ,15,12632,716672,1,1 ,17,923,9629572,72,0 ,17,923,7532420,40,0 ,17,923,8580996,16,0 ,16,820,192392,13,8 ,15,12633,716680,1,1 ,16,820,192400,19,10 ,15,12634,716688,1,1 ,16,820,192408,13,8 ,15,12635,716696,1,1 ,16,820,192416,14,8 ,15,12636,716704,1,1 ,20,18053,7008162,120,0 ,16,820,192424,21,8 ,15,12637,716712,1,1 ,16,820,192432,19,8 ,15,12638,716720,1,1 ,16,820,192440,19,10 ,15,12639,716728,1,1 ,16,820,192448,19,8 ,15,12640,716736,1,1 ,20,26423,29028290,236,0 ,17,923,8056772,64,0 ,44,15152,192452,64,0 ,16,820,192456,19,10 ,15,12641,716744,1,1 ,16,820,192464,20,10 ,15,12642,716752,1,1 ,16,820,192472,19,9 ,15,12643,716760,1,1 ,16,820,192480,21,8 ,15,12644,716768,1,1 ,16,820,192488,19,12 ,15,12645,716776,1,1 ,16,820,192496,14,8 ,15,12646,716784,1,1 ,16,820,192504,19,8 ,15,12647,716792,1,1 ,16,820,192512,19,8 ,15,12648,716800,1,1 ,20,25388,25882626,60,0 ,17,923,9105412,24,0 ,17,923,7008260,32,0 ,44,15152,3338244,24,0 ,45,15153,4386820,16,0 ,45,15153,5435396,32,0 ,17,923,8581124,16,0 ,16,820,192520,21,11 ,15,12649,716808,1,1 ,16,820,192528,17,8 ,15,12650,716816,1,1 ,16,820,192536,19,8 ,15,12651,716824,1,1 ,16,820,192544,19,8 ,15,12652,716832,1,1 ,20,25723,26931234,276,0 ,16,820,192552,19,9 ,15,12653,716840,1,1 ,16,820,192560,19,8 ,15,12654,716848,1,1 ,16,820,192568,21,12 ,15,12655,716856,1,1 ,16,820,192576,19,9 ,15,12656,716864,1,1 ,44,15152,3862596,152,0 ,17,923,6484036,32,0 ,16,820,192584,20,10 ,15,12657,716872,1,1 ,16,820,192592,19,9 ,15,12658,716880,1,1 ,16,820,192600,21,12 ,15,12659,716888,1,1 ,16,820,192608,21,11 ,15,12660,716896,1,1 ,16,820,192616,19,13 ,15,12661,716904,1,1 ,16,820,192624,13,8 ,15,12662,716912,1,1 ,16,820,192632,13,8 ,15,12663,716920,1,1 ,16,820,192640,19,13 ,15,12664,716928,1,1 ,17,923,8581252,16,0 ,45,15153,4386948,24,0 ,45,15153,4911236,40,0 ,16,820,192648,21,9 ,15,12665,716936,1,1 ,16,820,192656,19,10 ,15,12666,716944,1,1 ,16,820,192664,13,8 ,15,12667,716952,1,1 ,16,820,192672,19,8 ,15,12668,716960,1,1 ,20,24540,23785634,144,0 ,20,25949,27455650,700,0 ,16,820,192680,13,8 ,15,12669,716968,1,1 ,16,820,192688,21,10 ,15,12670,716976,1,1 ,16,820,192696,14,8 ,15,12671,716984,1,1 ,16,820,192704,19,13 ,15,12672,716992,1,1 ,17,923,9105604,32,0 ,17,923,7532740,32,0 ,44,15152,2289860,152,0 ,44,15152,3338436,56,0 ,16,820,192712,19,10 ,15,12673,717000,1,1 ,16,820,192720,19,10 ,15,12674,717008,1,1 ,16,820,192728,19,11 ,15,12675,717016,1,1 ,16,820,192736,13,8 ,15,12676,717024,1,1 ,16,820,192744,13,8 ,15,12677,717032,1,1 ,16,820,192752,19,8 ,15,12678,717040,1,1 ,16,820,192760,14,8 ,15,12679,717048,1,1 ,16,820,192768,21,18 ,15,12680,717056,1,1 ,20,23053,20115714,148,0 ,20,21568,16445698,12,0 ,17,923,8581380,16,0 ,17,923,7008516,24,0 ,45,15153,5435652,16,0 ,16,820,192776,13,8 ,15,12681,717064,1,1 ,16,820,192784,13,8 ,15,12682,717072,1,1 ,16,820,192792,13,8 ,15,12683,717080,1,1 ,16,820,192800,14,8 ,15,12684,717088,1,1 ,16,820,192808,19,10 ,15,12685,717096,1,1 ,16,820,192816,19,10 ,15,12686,717104,1,1 ,16,820,192824,19,11 ,15,12687,717112,1,1 ,16,820,192832,14,8 ,15,12688,717120,1,1 ,17,923,10154308,40,0 ,17,923,6484292,24,0 ,45,15153,4387140,32,0 ,16,820,192840,19,9 ,15,12689,717128,1,1 ,16,820,192848,21,8 ,15,12690,717136,1,1 ,16,820,192856,21,10 ,15,12691,717144,1,1 ,16,820,192864,21,10 ,15,12692,717152,1,1 ,20,21569,16445794,12,0 ,20,24970,24834402,220,0 ,16,820,192872,19,10 ,15,12693,717160,1,1 ,16,820,192880,13,8 ,15,12694,717168,1,1 ,16,820,192888,19,10 ,15,12695,717176,1,1 ,16,820,192896,20,10 ,15,12696,717184,1,1 ,17,923,8581508,16,0 ,44,15152,2814340,72,0 ,45,15153,5435780,16,0 ,16,820,192904,19,11 ,15,12697,717192,1,1 ,16,820,192912,19,10 ,15,12698,717200,1,1 ,16,820,192920,19,8 ,15,12699,717208,1,1 ,16,820,192928,19,8 ,15,12700,717216,1,1 ,16,820,192936,19,8 ,15,12701,717224,1,1 ,16,820,192944,21,8 ,15,12702,717232,1,1 ,16,820,192952,21,8 ,15,12703,717240,1,1 ,16,820,192960,21,8 ,15,12704,717248,1,1 ,20,21570,16445890,52,0 ,20,26151,27980226,144,0 ,17,923,9630148,40,0 ,17,923,7532996,56,0 ,17,923,7008708,24,0 ,44,15152,192964,16,0 ,45,15153,4911556,24,0 ,17,923,8057284,32,0 ,17,923,9105860,32,0 ,16,820,192968,21,8 ,15,12705,717256,1,1 ,16,820,192976,21,8 ,15,12706,717264,1,1 ,16,820,192984,19,8 ,15,12707,717272,1,1 ,16,820,192992,21,12 ,15,12708,717280,1,1 ,20,17377,5435874,1408,0 ,20,25389,25883106,64,0 ,16,820,193000,21,8 ,15,12709,717288,1,1 ,16,820,193008,19,11 ,15,12710,717296,1,1 ,16,820,193016,19,8 ,15,12711,717304,1,1 ,16,820,193024,19,10 ,15,12712,717312,1,1 ,17,923,8581636,16,0 ,17,923,6484484,40,0 ,45,15153,5435908,24,0 ,16,820,193032,19,8 ,15,12713,717320,1,1 ,16,820,193040,19,8 ,15,12714,717328,1,1 ,16,820,193048,21,10 ,15,12715,717336,1,1 ,16,820,193056,19,11 ,15,12716,717344,1,1 ,16,820,193064,19,8 ,15,12717,717352,1,1 ,16,820,193072,19,10 ,15,12718,717360,1,1 ,16,820,193080,19,8 ,15,12719,717368,1,1 ,16,820,193088,19,10 ,15,12720,717376,1,1 ,20,16734,3863106,12,0 ,45,15153,4387396,32,0 ,44,15152,193092,16,0 ,16,820,193096,21,12 ,15,12721,717384,1,1 ,16,820,193104,19,9 ,15,12722,717392,1,1 ,16,820,193112,19,10 ,15,12723,717400,1,1 ,16,820,193120,19,10 ,15,12724,717408,1,1 ,20,25539,26407522,4,0 ,16,820,193128,19,10 ,15,12725,717416,1,1 ,16,820,193136,19,8 ,15,12726,717424,1,1 ,16,820,193144,21,17 ,15,12727,717432,1,1 ,16,820,193152,13,8 ,15,12728,717440,1,1 ,20,25540,26407554,4,0 ,17,923,10154628,32,0 ,17,923,7008900,40,0 ,44,15152,3338884,80,0 ,45,15153,4911748,16,0 ,17,923,8581764,16,0 ,16,820,193160,13,8 ,15,12729,717448,1,1 ,16,820,193168,20,8 ,15,12730,717456,1,1 ,16,820,193176,19,17 ,15,12731,717464,1,1 ,16,820,193184,13,8 ,15,12732,717472,1,1 ,20,16735,3863202,12,0 ,20,25541,26407586,24,0 ,16,820,193192,13,8 ,15,12733,717480,1,1 ,16,820,193200,13,8 ,15,12734,717488,1,1 ,16,820,193208,13,8 ,15,12735,717496,1,1 ,16,820,193216,13,8 ,15,12736,717504,1,1 ,17,923,9106116,32,0 ,44,15152,193220,16,0 ,45,15153,5436100,16,0 ,17,923,8057540,32,0 ,16,820,193224,13,8 ,15,12737,717512,1,1 ,16,820,193232,20,8 ,15,12738,717520,1,1 ,16,820,193240,19,9 ,15,12739,717528,1,1 ,16,820,193248,19,10 ,15,12740,717536,1,1 ,16,820,193256,19,8 ,15,12741,717544,1,1 ,16,820,193264,19,8 ,15,12742,717552,1,1 ,16,820,193272,19,9 ,15,12743,717560,1,1 ,16,820,193280,21,12 ,15,12744,717568,1,1 ,20,16736,3863298,140,0 ,17,923,9630468,40,0 ,45,15153,4911876,24,0 ,17,923,8581892,16,0 ,16,820,193288,13,8 ,15,12745,717576,1,1 ,16,820,193296,19,9 ,15,12746,717584,1,1 ,16,820,193304,19,10 ,15,12747,717592,1,1 ,16,820,193312,21,9 ,15,12748,717600,1,1 ,20,23752,21689122,960,0 ,16,820,193320,21,18 ,15,12749,717608,1,1 ,16,820,193328,21,12 ,15,12750,717616,1,1 ,16,820,193336,19,9 ,15,12751,717624,1,1 ,16,820,193344,19,13 ,15,12752,717632,1,1 ,45,15153,5436228,24,0 ,17,923,6484804,48,0 ,44,15152,193348,32,0 ,45,15153,4387652,56,0 ,16,820,193352,19,10 ,15,12753,717640,1,1 ,16,820,193360,20,10 ,15,12754,717648,1,1 ,16,820,193368,19,11 ,15,12755,717656,1,1 ,16,820,193376,13,8 ,15,12756,717664,1,1 ,20,21571,16446306,200,0 ,20,25542,26407778,8,0 ,20,18054,7009122,204,0 ,20,18513,8057698,100,0 ,16,820,193384,21,8 ,15,12757,717672,1,1 ,16,820,193392,13,8 ,15,12758,717680,1,1 ,16,820,193400,20,10 ,15,12759,717688,1,1 ,16,820,193408,20,11 ,15,12760,717696,1,1 ,20,23974,22213506,56,0 ,17,923,10154884,24,0 ,17,923,7533444,48,0 ,17,923,8582020,16,0 ,16,820,193416,19,10 ,15,12761,717704,1,1 ,16,820,193424,19,8 ,15,12762,717712,1,1 ,16,820,193432,14,8 ,15,12763,717720,1,1 ,16,820,193440,19,9 ,15,12764,717728,1,1 ,20,15828,1766306,144,0 ,20,25543,26407842,176,0 ,16,820,193448,13,8 ,15,12765,717736,1,1 ,16,820,193456,19,9 ,15,12766,717744,1,1 ,16,820,193464,20,10 ,15,12767,717752,1,1 ,16,820,193472,19,10 ,15,12768,717760,1,1 ,17,923,9106372,48,0 ,17,923,7009220,56,0 ,44,15152,2814916,272,0 ,45,15153,4912068,88,0 ,17,923,8057796,24,0 ,16,820,193480,14,8 ,15,12769,717768,1,1 ,16,820,193488,20,10 ,15,12770,717776,1,1 ,16,820,193496,19,9 ,15,12771,717784,1,1 ,16,820,193504,19,11 ,15,12772,717792,1,1 ,20,25390,25883618,56,0 ,16,820,193512,19,8 ,15,12773,717800,1,1 ,16,820,193520,19,9 ,15,12774,717808,1,1 ,16,820,193528,19,8 ,15,12775,717816,1,1 ,16,820,193536,19,8 ,15,12776,717824,1,1 ,17,923,8582148,16,0 ,45,15153,5436420,16,0 ,16,820,193544,21,8 ,15,12777,717832,1,1 ,16,820,193552,13,8 ,15,12778,717840,1,1 ,16,820,193560,21,21 ,15,12779,717848,1,1 ,16,820,193568,20,13 ,15,12780,717856,1,1 ,16,820,193576,19,10 ,15,12781,717864,1,1 ,16,820,193584,14,8 ,15,12782,717872,1,1 ,16,820,193592,19,8 ,15,12783,717880,1,1 ,16,820,193600,19,8 ,15,12784,717888,1,1 ,20,21344,15922242,496,0 ,17,923,10155076,32,0 ,44,15152,193604,24,0 ,17,923,9630788,72,0 ,16,820,193608,19,8 ,15,12785,717896,1,1 ,16,820,193616,21,11 ,15,12786,717904,1,1 ,16,820,193624,19,8 ,15,12787,717912,1,1 ,16,820,193632,19,11 ,15,12788,717920,1,1 ,16,820,193640,19,8 ,15,12789,717928,1,1 ,16,820,193648,19,8 ,15,12790,717936,1,1 ,16,820,193656,19,11 ,15,12791,717944,1,1 ,16,820,193664,21,14 ,15,12792,717952,1,1 ,17,923,8582276,16,0 ,45,15153,5436548,40,0 ,17,923,8057988,24,0 ,16,820,193672,13,8 ,15,12793,717960,1,1 ,16,820,193680,13,8 ,15,12794,717968,1,1 ,16,820,193688,19,8 ,15,12795,717976,1,1 ,16,820,193696,21,10 ,15,12796,717984,1,1 ,20,19423,10155170,80,0 ,16,820,193704,19,8 ,15,12797,717992,1,1 ,16,820,193712,13,8 ,15,12798,718000,1,1 ,16,820,193720,13,8 ,15,12799,718008,1,1 ,16,820,193728,20,10 ,15,12800,718016,1,1 ,17,923,6485188,32,0 ,16,820,193736,19,9 ,15,12801,718024,1,1 ,16,820,193744,20,8 ,15,12802,718032,1,1 ,16,820,193752,19,8 ,15,12803,718040,1,1 ,16,820,193760,20,10 ,15,12804,718048,1,1 ,20,21844,16970978,156,0 ,16,820,193768,19,9 ,15,12805,718056,1,1 ,16,820,193776,19,8 ,15,12806,718064,1,1 ,16,820,193784,19,9 ,15,12807,718072,1,1 ,16,820,193792,20,10 ,15,12808,718080,1,1 ,20,17545,5960962,76,0 ,17,923,8582404,16,0 ,17,923,7533828,32,0 ,44,15152,193796,16,0 ,44,15152,718084,24,0 ,44,15152,3339524,88,0 ,44,15152,3863812,16,0 ,45,15153,4388100,32,0 ,16,820,193800,19,9 ,15,12809,718088,1,1 ,16,820,193808,20,10 ,15,12810,718096,1,1 ,16,820,193816,19,9 ,15,12811,718104,1,1 ,16,820,193824,19,9 ,15,12812,718112,1,1 ,20,24541,23786786,116,0 ,16,820,193832,14,8 ,15,12813,718120,1,1 ,16,820,193840,13,8 ,15,12814,718128,1,1 ,16,820,193848,14,8 ,15,12815,718136,1,1 ,16,820,193856,13,8 ,15,12816,718144,1,1 ,20,23975,22213954,56,0 ,17,923,10155332,32,0 ,17,923,8058180,32,0 ,17,923,9106756,24,0 ,16,820,193864,13,8 ,15,12817,718152,1,1 ,16,820,193872,14,8 ,15,12818,718160,1,1 ,16,820,193880,20,8 ,15,12819,718168,1,1 ,16,820,193888,19,9 ,15,12820,718176,1,1 ,16,820,193896,13,8 ,15,12821,718184,1,1 ,16,820,193904,13,8 ,15,12822,718192,1,1 ,16,820,193912,13,8 ,15,12823,718200,1,1 ,16,820,193920,13,8 ,15,12824,718208,1,1 ,17,923,8582532,16,0 ,17,923,7009668,40,0 ,44,15152,2291076,96,0 ,44,15152,193924,32,0 ,44,15152,3863940,32,0 ,16,820,193928,13,8 ,15,12825,718216,1,1 ,16,820,193936,14,8 ,15,12826,718224,1,1 ,16,820,193944,13,8 ,15,12827,718232,1,1 ,16,820,193952,13,8 ,15,12828,718240,1,1 ,20,23054,20116898,580,0 ,20,25391,25884066,160,0 ,16,820,193960,13,8 ,15,12829,718248,1,1 ,16,820,193968,13,8 ,15,12830,718256,1,1 ,16,820,193976,13,8 ,15,12831,718264,1,1 ,16,820,193984,21,10 ,15,12832,718272,1,1 ,45,15153,5436868,128,0 ,17,923,6485444,24,0 ,44,15152,718276,32,0 ,16,820,193992,13,8 ,15,12833,718280,1,1 ,16,820,194000,13,8 ,15,12834,718288,1,1 ,16,820,194008,21,8 ,15,12835,718296,1,1 ,16,820,194016,21,8 ,15,12836,718304,1,1 ,20,18252,7534050,992,0 ,16,820,194024,19,8 ,15,12837,718312,1,1 ,16,820,194032,19,11 ,15,12838,718320,1,1 ,16,820,194040,13,8 ,15,12839,718328,1,1 ,16,820,194048,13,8 ,15,12840,718336,1,1 ,17,923,9106948,48,0 ,17,923,7534084,32,0 ,45,15153,4388356,24,0 ,17,923,8582660,16,0 ,16,820,194056,19,8 ,15,12841,718344,1,1 ,16,820,194064,21,8 ,15,12842,718352,1,1 ,16,820,194072,21,10 ,15,12843,718360,1,1 ,16,820,194080,21,9 ,15,12844,718368,1,1 ,20,20986,15398434,168,0 ,16,820,194088,19,8 ,15,12845,718376,1,1 ,16,820,194096,19,8 ,15,12846,718384,1,1 ,16,820,194104,19,8 ,15,12847,718392,1,1 ,16,820,194112,19,8 ,15,12848,718400,1,1 ,20,26152,27981378,52,0 ,17,923,10155588,32,0 ,17,923,8058436,24,0 ,16,820,194120,20,10 ,15,12849,718408,1,1 ,16,820,194128,21,10 ,15,12850,718416,1,1 ,16,820,194136,19,9 ,15,12851,718424,1,1 ,16,820,194144,14,8 ,15,12852,718432,1,1 ,16,820,194152,19,8 ,15,12853,718440,1,1 ,16,820,194160,13,8 ,15,12854,718448,1,1 ,16,820,194168,14,8 ,15,12855,718456,1,1 ,16,820,194176,13,8 ,15,12856,718464,1,1 ,20,18514,8058498,576,0 ,17,923,9631364,24,0 ,17,923,6485636,96,0 ,44,15152,194180,64,0 ,44,15152,3864196,48,0 ,45,15153,4912772,24,0 ,17,923,8582788,16,0 ,16,820,194184,19,8 ,15,12857,718472,1,1 ,16,820,194192,13,8 ,15,12858,718480,1,1 ,16,820,194200,14,8 ,15,12859,718488,1,1 ,16,820,194208,13,8 ,15,12860,718496,1,1 ,16,820,194216,13,8 ,15,12861,718504,1,1 ,16,820,194224,20,11 ,15,12862,718512,1,1 ,16,820,194232,21,14 ,15,12863,718520,1,1 ,16,820,194240,19,9 ,15,12864,718528,1,1 ,45,15153,4388548,112,0 ,17,923,7009988,40,0 ,44,15152,718532,24,0 ,16,820,194248,19,10 ,15,12865,718536,1,1 ,16,820,194256,19,9 ,15,12866,718544,1,1 ,16,820,194264,19,12 ,15,12867,718552,1,1 ,16,820,194272,14,8 ,15,12868,718560,1,1 ,16,820,194280,21,10 ,15,12869,718568,1,1 ,16,820,194288,19,8 ,15,12870,718576,1,1 ,16,820,194296,19,8 ,15,12871,718584,1,1 ,16,820,194304,19,8 ,15,12872,718592,1,1 ,20,23976,22214402,144,0 ,17,923,8582916,16,0 ,17,923,7534340,32,0 ,17,923,8058628,40,0 ,16,820,194312,21,9 ,15,12873,718600,1,1 ,16,820,194320,19,8 ,15,12874,718608,1,1 ,16,820,194328,19,9 ,15,12875,718616,1,1 ,16,820,194336,19,8 ,15,12876,718624,1,1 ,20,20777,13825826,260,0 ,20,26424,29030178,48,0 ,20,19424,10155810,472,0 ,16,820,194344,19,8 ,15,12877,718632,1,1 ,16,820,194352,13,8 ,15,12878,718640,1,1 ,16,820,194360,14,8 ,15,12879,718648,1,1 ,16,820,194368,19,16 ,15,12880,718656,1,1 ,20,19132,9631554,1516,0 ,17,923,10155844,32,0 ,45,15153,4912964,24,0 ,17,923,9631556,32,0 ,16,820,194376,19,14 ,15,12881,718664,1,1 ,16,820,194384,21,10 ,15,12882,718672,1,1 ,16,820,194392,19,8 ,15,12883,718680,1,1 ,16,820,194400,21,8 ,15,12884,718688,1,1 ,20,17546,5961570,120,0 ,20,16737,3864418,364,0 ,16,820,194408,20,10 ,15,12885,718696,1,1 ,16,820,194416,19,8 ,15,12886,718704,1,1 ,16,820,194424,21,8 ,15,12887,718712,1,1 ,16,820,194432,13,8 ,15,12888,718720,1,1 ,17,923,9107332,40,0 ,44,15152,718724,24,0 ,17,923,8583044,16,0 ,16,820,194440,14,8 ,15,12889,718728,1,1 ,16,820,194448,19,9 ,15,12890,718736,1,1 ,16,820,194456,19,8 ,15,12891,718744,1,1 ,16,820,194464,19,9 ,15,12892,718752,1,1 ,16,820,194472,19,8 ,15,12893,718760,1,1 ,16,820,194480,19,9 ,15,12894,718768,1,1 ,16,820,194488,19,9 ,15,12895,718776,1,1 ,16,820,194496,21,16 ,15,12896,718784,1,1 ,44,15152,3340228,8,0 ,16,820,194504,21,11 ,15,12897,718792,1,1 ,16,820,194512,20,10 ,15,12898,718800,1,1 ,16,820,194520,19,8 ,15,12899,718808,1,1 ,16,820,194528,19,8 ,15,12900,718816,1,1 ,20,15239,194530,608,0 ,20,26153,27981794,320,0 ,16,820,194536,13,8 ,15,12901,718824,1,1 ,16,820,194544,19,11 ,15,12902,718832,1,1 ,16,820,194552,19,8 ,15,12903,718840,1,1 ,16,820,194560,17,8 ,15,12904,718848,1,1 ,17,923,8583172,16,0 ,17,923,7534596,32,0 ,17,923,7010308,40,0 ,44,15152,3340292,24,0 ,44,15152,3864580,96,0 ,45,15153,4913156,88,0 ,16,820,194568,21,13 ,15,12905,718856,1,1 ,16,820,194576,20,10 ,15,12906,718864,1,1 ,16,820,194584,14,8 ,15,12907,718872,1,1 ,16,820,194592,21,9 ,15,12908,718880,1,1 ,20,15829,1767458,140,0 ,16,820,194600,13,8 ,15,12909,718888,1,1 ,16,820,194608,14,8 ,15,12910,718896,1,1 ,16,820,194616,19,10 ,15,12911,718904,1,1 ,16,820,194624,21,16 ,15,12912,718912,1,1 ,20,24971,24836162,180,0 ,17,923,10156100,24,0 ,44,15152,718916,40,0 ,17,923,8058948,40,0 ,17,923,9631812,32,0 ,16,820,194632,19,9 ,15,12913,718920,1,1 ,16,820,194640,21,10 ,15,12914,718928,1,1 ,16,820,194648,13,8 ,15,12915,718936,1,1 ,16,820,194656,13,8 ,15,12916,718944,1,1 ,16,820,194664,13,8 ,15,12917,718952,1,1 ,16,820,194672,14,8 ,15,12918,718960,1,1 ,16,820,194680,19,8 ,15,12919,718968,1,1 ,16,820,194688,13,8 ,15,12920,718976,1,1 ,17,923,8583300,16,0 ,44,15152,2291844,208,0 ,44,15152,194692,32,0 ,16,820,194696,20,10 ,15,12921,718984,1,1 ,16,820,194704,19,9 ,15,12922,718992,1,1 ,16,820,194712,21,10 ,15,12923,719000,1,1 ,16,820,194720,14,8 ,15,12924,719008,1,1 ,20,26425,29030562,236,0 ,16,820,194728,20,10 ,15,12925,719016,1,1 ,16,820,194736,19,8 ,15,12926,719024,1,1 ,16,820,194744,21,8 ,15,12927,719032,1,1 ,16,820,194752,19,8 ,15,12928,719040,1,1 ,20,24542,23787714,44,0 ,20,25724,26933442,296,0 ,17,923,9107652,32,0 ,44,15152,3340484,32,0 ,16,820,194760,20,10 ,15,12929,719048,1,1 ,16,820,194768,20,8 ,15,12930,719056,1,1 ,16,820,194776,19,11 ,15,12931,719064,1,1 ,16,820,194784,21,8 ,15,12932,719072,1,1 ,16,820,194792,20,10 ,15,12933,719080,1,1 ,16,820,194800,19,9 ,15,12934,719088,1,1 ,16,820,194808,21,8 ,15,12935,719096,1,1 ,16,820,194816,21,8 ,15,12936,719104,1,1 ,17,923,10156292,40,0 ,17,923,7534852,32,0 ,17,923,8583428,16,0 ,16,820,194824,21,17 ,15,12937,719112,1,1 ,16,820,194832,13,8 ,15,12938,719120,1,1 ,16,820,194840,19,13 ,15,12939,719128,1,1 ,16,820,194848,19,8 ,15,12940,719136,1,1 ,20,24393,23263522,128,0 ,20,25544,26409250,156,0 ,16,820,194856,21,8 ,15,12941,719144,1,1 ,16,820,194864,13,8 ,15,12942,719152,1,1 ,16,820,194872,19,8 ,15,12943,719160,1,1 ,16,820,194880,19,8 ,15,12944,719168,1,1 ,17,923,9632068,56,0 ,17,923,7010628,24,0 ,16,820,194888,19,9 ,15,12945,719176,1,1 ,16,820,194896,19,8 ,15,12946,719184,1,1 ,16,820,194904,21,10 ,15,12947,719192,1,1 ,16,820,194912,20,11 ,15,12948,719200,1,1 ,16,820,194920,19,9 ,15,12949,719208,1,1 ,16,820,194928,20,11 ,15,12950,719216,1,1 ,16,820,194936,19,9 ,15,12951,719224,1,1 ,16,820,194944,21,8 ,15,12952,719232,1,1 ,17,923,8583556,16,0 ,17,923,6486404,32,0 ,44,15152,194948,24,0 ,44,15152,719236,88,0 ,17,923,8059268,40,0 ,16,820,194952,13,8 ,15,12953,719240,1,1 ,16,820,194960,19,9 ,15,12954,719248,1,1 ,16,820,194968,13,8 ,15,12955,719256,1,1 ,16,820,194976,19,16 ,15,12956,719264,1,1 ,20,21572,16447906,1948,0 ,16,820,194984,20,10 ,15,12957,719272,1,1 ,16,820,194992,19,8 ,15,12958,719280,1,1 ,16,820,195000,13,8 ,15,12959,719288,1,1 ,16,820,195008,13,8 ,15,12960,719296,1,1 ,20,21845,16972226,236,0 ,20,18055,7010754,404,0 ,17,923,9107908,40,0 ,44,15152,3340740,24,0 ,45,15153,5437892,128,0 ,16,820,195016,19,8 ,15,12961,719304,1,1 ,16,820,195024,19,8 ,15,12962,719312,1,1 ,16,820,195032,19,8 ,15,12963,719320,1,1 ,16,820,195040,21,8 ,15,12964,719328,1,1 ,20,18697,8583650,76,0 ,16,820,195048,13,8 ,15,12965,719336,1,1 ,16,820,195056,19,48 ,15,12966,719344,1,1 ,16,820,195064,13,8 ,15,12967,719352,1,1 ,16,820,195072,13,8 ,15,12968,719360,1,1 ,17,923,8583684,16,0 ,17,923,7535108,24,0 ,17,923,7010820,24,0 ,16,820,195080,13,8 ,15,12969,719368,1,1 ,16,820,195088,19,10 ,15,12970,719376,1,1 ,16,820,195096,13,8 ,15,12971,719384,1,1 ,16,820,195104,19,8 ,15,12972,719392,1,1 ,20,24543,23788066,144,0 ,16,820,195112,13,8 ,15,12973,719400,1,1 ,16,820,195120,13,8 ,15,12974,719408,1,1 ,16,820,195128,19,8 ,15,12975,719416,1,1 ,16,820,195136,21,12 ,15,12976,719424,1,1 ,17,923,10156612,32,0 ,44,15152,195140,24,0 ,45,15153,4389444,24,0 ,16,820,195144,21,13 ,15,12977,719432,1,1 ,16,820,195152,21,10 ,15,12978,719440,1,1 ,16,820,195160,13,8 ,15,12979,719448,1,1 ,16,820,195168,13,8 ,15,12980,719456,1,1 ,16,820,195176,19,9 ,15,12981,719464,1,1 ,16,820,195184,19,9 ,15,12982,719472,1,1 ,16,820,195192,13,8 ,15,12983,719480,1,1 ,16,820,195200,14,8 ,15,12984,719488,1,1 ,17,923,8583812,16,0 ,17,923,6486660,96,0 ,44,15152,3340932,144,0 ,16,820,195208,14,8 ,15,12985,719496,1,1 ,16,820,195216,19,8 ,15,12986,719504,1,1 ,16,820,195224,19,8 ,15,12987,719512,1,1 ,16,820,195232,13,8 ,15,12988,719520,1,1 ,20,25392,25885346,60,0 ,16,820,195240,19,13 ,15,12989,719528,1,1 ,16,820,195248,13,8 ,15,12990,719536,1,1 ,16,820,195256,17,8 ,15,12991,719544,1,1 ,16,820,195264,21,9 ,15,12992,719552,1,1 ,20,15656,1243842,496,0 ,17,923,8059588,40,0 ,17,923,7535300,32,0 ,17,923,7011012,40,0 ,45,15153,4913860,16,0 ,16,820,195272,13,8 ,15,12993,719560,1,1 ,16,820,195280,13,8 ,15,12994,719568,1,1 ,16,820,195288,19,9 ,15,12995,719576,1,1 ,16,820,195296,21,30 ,15,12996,719584,1,1 ,20,20275,12778210,208,0 ,16,820,195304,20,10 ,15,12997,719592,1,1 ,16,820,195312,20,10 ,15,12998,719600,1,1 ,16,820,195320,19,9 ,15,12999,719608,1,1 ,16,820,195328,19,8 ,15,13000,719616,1,1 ,17,923,9632516,24,0 ,44,15152,195332,32,0 ,44,15152,3865348,32,0 ,45,15153,4389636,48,0 ,17,923,8583940,16,0 ,17,923,9108228,24,0 ,16,820,195336,19,8 ,15,13001,719624,1,1 ,16,820,195344,19,8 ,15,13002,719632,1,1 ,16,820,195352,19,8 ,15,13003,719640,1,1 ,16,820,195360,19,9 ,15,13004,719648,1,1 ,20,17547,5962530,240,0 ,16,820,195368,19,9 ,15,13005,719656,1,1 ,16,820,195376,20,10 ,15,13006,719664,1,1 ,16,820,195384,19,8 ,15,13007,719672,1,1 ,16,820,195392,20,10 ,15,13008,719680,1,1 ,20,16992,4389698,1308,0 ,17,923,10156868,40,0 ,45,15153,4913988,40,0 ,16,820,195400,19,10 ,15,13009,719688,1,1 ,16,820,195408,20,12 ,15,13010,719696,1,1 ,16,820,195416,21,10 ,15,13011,719704,1,1 ,16,820,195424,19,11 ,15,13012,719712,1,1 ,20,20987,15399778,80,0 ,16,820,195432,21,10 ,15,13013,719720,1,1 ,16,820,195440,19,10 ,15,13014,719728,1,1 ,16,820,195448,20,8 ,15,13015,719736,1,1 ,16,820,195456,19,14 ,15,13016,719744,1,1 ,20,23977,22215554,280,0 ,17,923,8584068,16,0 ,16,820,195464,21,28 ,15,13017,719752,1,1 ,16,820,195472,19,8 ,15,13018,719760,1,1 ,16,820,195480,13,8 ,15,13019,719768,1,1 ,16,820,195488,19,10 ,15,13020,719776,1,1 ,20,22727,19594146,116,0 ,16,820,195496,19,8 ,15,13021,719784,1,1 ,16,820,195504,13,8 ,15,13022,719792,1,1 ,16,820,195512,19,8 ,15,13023,719800,1,1 ,16,820,195520,13,8 ,15,13024,719808,1,1 ,17,923,9632708,64,0 ,17,923,7535556,40,0 ,17,923,9108420,48,0 ,16,820,195528,19,8 ,15,13025,719816,1,1 ,16,820,195536,13,8 ,15,13026,719824,1,1 ,16,820,195544,19,8 ,15,13027,719832,1,1 ,16,820,195552,13,8 ,15,13028,719840,1,1 ,16,820,195560,19,16 ,15,13029,719848,1,1 ,16,820,195568,19,16 ,15,13030,719856,1,1 ,16,820,195576,19,8 ,15,13031,719864,1,1 ,16,820,195584,13,8 ,15,13032,719872,1,1 ,17,923,8584196,16,0 ,17,923,7011332,32,0 ,44,15152,195588,56,0 ,44,15152,3865604,48,0 ,17,923,8059908,40,0 ,16,820,195592,19,8 ,15,13033,719880,1,1 ,16,820,195600,14,8 ,15,13034,719888,1,1 ,16,820,195608,20,8 ,15,13035,719896,1,1 ,16,820,195616,14,8 ,15,13036,719904,1,1 ,16,820,195624,20,9 ,15,13037,719912,1,1 ,16,820,195632,20,8 ,15,13038,719920,1,1 ,16,820,195640,14,8 ,15,13039,719928,1,1 ,16,820,195648,20,8 ,15,13040,719936,1,1 ,20,18698,8584258,44,0 ,44,15152,719940,24,0 ,44,15152,2817092,16,0 ,16,820,195656,20,9 ,15,13041,719944,1,1 ,16,820,195664,20,8 ,15,13042,719952,1,1 ,16,820,195672,20,8 ,15,13043,719960,1,1 ,16,820,195680,14,8 ,15,13044,719968,1,1 ,16,820,195688,20,8 ,15,13045,719976,1,1 ,16,820,195696,14,8 ,15,13046,719984,1,1 ,16,820,195704,20,8 ,15,13047,719992,1,1 ,16,820,195712,20,8 ,15,13048,720000,1,1 ,20,15830,1768578,140,0 ,20,25393,25885826,148,0 ,20,15396,720002,12,0 ,17,923,10157188,40,0 ,45,15153,4390020,16,0 ,45,15153,4914308,16,0 ,17,923,8584324,16,0 ,16,820,195720,14,8 ,15,13049,720008,1,1 ,16,820,195728,20,14 ,15,13050,720016,1,1 ,16,820,195736,20,8 ,15,13051,720024,1,1 ,16,820,195744,14,8 ,15,13052,720032,1,1 ,16,820,195752,20,9 ,15,13053,720040,1,1 ,16,820,195760,14,8 ,15,13054,720048,1,1 ,16,820,195768,20,10 ,15,13055,720056,1,1 ,16,820,195776,20,8 ,15,13056,720064,1,1 ,44,15152,2817220,56,0 ,16,820,195784,14,8 ,15,13057,720072,1,1 ,16,820,195792,20,8 ,15,13058,720080,1,1 ,16,820,195800,14,8 ,15,13059,720088,1,1 ,16,820,195808,20,8 ,15,13060,720096,1,1 ,20,15397,720098,464,0 ,16,820,195816,20,8 ,15,13061,720104,1,1 ,16,820,195824,20,8 ,15,13062,720112,1,1 ,16,820,195832,22,8 ,15,13063,720120,1,1 ,16,820,195840,14,8 ,15,13064,720128,1,1 ,17,923,8584452,16,0 ,17,923,7535876,32,0 ,17,923,7011588,48,0 ,44,15152,720132,24,0 ,45,15153,4390148,32,0 ,45,15153,4914436,48,0 ,16,820,195848,14,8 ,15,13065,720136,1,1 ,16,820,195856,20,8 ,15,13066,720144,1,1 ,16,820,195864,14,8 ,15,13067,720152,1,1 ,16,820,195872,20,9 ,15,13068,720160,1,1 ,20,24394,23264546,76,0 ,16,820,195880,20,8 ,15,13069,720168,1,1 ,16,820,195888,14,8 ,15,13070,720176,1,1 ,16,820,195896,22,8 ,15,13071,720184,1,1 ,16,820,195904,14,8 ,15,13072,720192,1,1 ,17,923,9108804,24,0 ,17,923,8060228,24,0 ,16,820,195912,22,8 ,15,13073,720200,1,1 ,16,820,195920,22,43 ,15,13074,720208,1,1 ,16,820,195928,14,8 ,15,13075,720216,1,1 ,16,820,195936,20,11 ,15,13076,720224,1,1 ,16,820,195944,20,8 ,15,13077,720232,1,1 ,16,820,195952,18,8 ,15,13078,720240,1,1 ,16,820,195960,18,8 ,15,13079,720248,1,1 ,16,820,195968,20,9 ,15,13080,720256,1,1 ,17,923,8584580,16,0 ,17,923,6487428,112,0 ,44,15152,3865988,24,0 ,16,820,195976,22,11 ,15,13081,720264,1,1 ,16,820,195984,20,9 ,15,13082,720272,1,1 ,16,820,195992,20,8 ,15,13083,720280,1,1 ,16,820,196000,20,8 ,15,13084,720288,1,1 ,20,18699,8584610,12,0 ,16,820,196008,20,8 ,15,13085,720296,1,1 ,16,820,196016,14,8 ,15,13086,720304,1,1 ,16,820,196024,14,8 ,15,13087,720312,1,1 ,16,820,196032,14,8 ,15,13088,720320,1,1 ,17,923,10157508,40,0 ,44,15152,196036,48,0 ,44,15152,720324,64,0 ,45,15153,5438916,32,0 ,17,923,9633220,64,0 ,16,820,196040,20,8 ,15,13089,720328,1,1 ,16,820,196048,14,8 ,15,13090,720336,1,1 ,16,820,196056,20,8 ,15,13091,720344,1,1 ,16,820,196064,20,9 ,15,13092,720352,1,1 ,20,20988,15400418,172,0 ,20,24972,24837602,180,0 ,16,820,196072,20,10 ,15,13093,720360,1,1 ,16,820,196080,20,8 ,15,13094,720368,1,1 ,16,820,196088,14,8 ,15,13095,720376,1,1 ,16,820,196096,14,8 ,15,13096,720384,1,1 ,20,18700,8584706,12,0 ,20,25545,26410498,108,0 ,17,923,9108996,48,0 ,17,923,7536132,48,0 ,45,15153,4390404,16,0 ,17,923,8060420,24,0 ,17,923,8584708,16,0 ,16,820,196104,14,8 ,15,13097,720392,1,1 ,16,820,196112,14,8 ,15,13098,720400,1,1 ,16,820,196120,20,9 ,15,13099,720408,1,1 ,16,820,196128,20,9 ,15,13100,720416,1,1 ,16,820,196136,22,8 ,15,13101,720424,1,1 ,16,820,196144,18,9 ,15,13102,720432,1,1 ,16,820,196152,20,8 ,15,13103,720440,1,1 ,16,820,196160,22,11 ,15,13104,720448,1,1 ,44,15152,3866180,96,0 ,16,820,196168,20,9 ,15,13105,720456,1,1 ,16,820,196176,20,9 ,15,13106,720464,1,1 ,16,820,196184,20,8 ,15,13107,720472,1,1 ,16,820,196192,14,8 ,15,13108,720480,1,1 ,20,18701,8584802,52,0 ,16,820,196200,14,8 ,15,13109,720488,1,1 ,16,820,196208,15,8 ,15,13110,720496,1,1 ,16,820,196216,14,8 ,15,13111,720504,1,1 ,16,820,196224,14,8 ,15,13112,720512,1,1 ,17,923,8584836,16,0 ,17,923,7011972,48,0 ,44,15152,2817668,88,0 ,45,15153,4390532,40,0 ,45,15153,4914820,24,0 ,16,820,196232,14,8 ,15,13113,720520,1,1 ,16,820,196240,14,8 ,15,13114,720528,1,1 ,16,820,196248,14,8 ,15,13115,720536,1,1 ,16,820,196256,15,8 ,15,13116,720544,1,1 ,20,24544,23789218,200,0 ,20,19723,10682018,52,0 ,16,820,196264,14,8 ,15,13117,720552,1,1 ,16,820,196272,22,9 ,15,13118,720560,1,1 ,16,820,196280,14,8 ,15,13119,720568,1,1 ,16,820,196288,14,8 ,15,13120,720576,1,1 ,17,923,8060612,24,0 ,45,15153,5439172,40,0 ,16,820,196296,15,8 ,15,13121,720584,1,1 ,16,820,196304,22,13 ,15,13122,720592,1,1 ,16,820,196312,22,10 ,15,13123,720600,1,1 ,16,820,196320,22,16 ,15,13124,720608,1,1 ,16,820,196328,22,9 ,15,13125,720616,1,1 ,16,820,196336,22,12 ,15,13126,720624,1,1 ,16,820,196344,22,10 ,15,13127,720632,1,1 ,16,820,196352,14,8 ,15,13128,720640,1,1 ,17,923,10157828,32,0 ,44,15152,2293508,128,0 ,44,15152,3342084,72,0 ,17,923,8584964,16,0 ,16,820,196360,21,10 ,15,13129,720648,1,1 ,16,820,196368,20,9 ,15,13130,720656,1,1 ,16,820,196376,20,8 ,15,13131,720664,1,1 ,16,820,196384,21,10 ,15,13132,720672,1,1 ,16,820,196392,20,13 ,15,13133,720680,1,1 ,16,820,196400,21,10 ,15,13134,720688,1,1 ,16,820,196408,20,9 ,15,13135,720696,1,1 ,16,820,196416,22,13 ,15,13136,720704,1,1 ,20,22728,19595074,116,0 ,20,20778,13827906,280,0 ,45,15153,4915012,32,0 ,44,15152,1244996,32,0 ,44,15152,196420,32,0 ,16,820,196424,14,8 ,15,13137,720712,1,1 ,16,820,196432,20,9 ,15,13138,720720,1,1 ,16,820,196440,14,8 ,15,13139,720728,1,1 ,16,820,196448,14,8 ,15,13140,720736,1,1 ,20,23380,20643682,468,0 ,16,820,196456,14,8 ,15,13141,720744,1,1 ,16,820,196464,15,8 ,15,13142,720752,1,1 ,16,820,196472,21,12 ,15,13143,720760,1,1 ,16,820,196480,20,10 ,15,13144,720768,1,1 ,20,24395,23265154,472,0 ,17,923,9109380,40,0 ,17,923,7536516,104,0 ,17,923,8060804,24,0 ,17,923,8585092,16,0 ,16,820,196488,21,8 ,15,13145,720776,1,1 ,16,820,196496,20,9 ,15,13146,720784,1,1 ,16,820,196504,20,9 ,15,13147,720792,1,1 ,16,820,196512,20,9 ,15,13148,720800,1,1 ,16,820,196520,22,12 ,15,13149,720808,1,1 ,16,820,196528,21,8 ,15,13150,720816,1,1 ,16,820,196536,20,10 ,15,13151,720824,1,1 ,16,820,196544,22,12 ,15,13152,720832,1,1 ,17,923,9633732,64,0 ,44,15152,720836,32,0 ,45,15153,4390852,24,0 ,16,820,196552,21,10 ,15,13153,720840,1,1 ,16,820,196560,22,24 ,15,13154,720848,1,1 ,16,820,196568,20,8 ,15,13155,720856,1,1 ,16,820,196576,22,9 ,15,13156,720864,1,1 ,16,820,196584,22,13 ,15,13157,720872,1,1 ,16,820,196592,21,8 ,15,13158,720880,1,1 ,16,820,196600,20,10 ,15,13159,720888,1,1 ,16,820,196608,20,10 ,15,13160,720896,1,1 ,20,18702,8585218,12,0 ,20,26426,29032450,212,0 ,17,923,10158084,24,0 ,17,923,7012356,48,0 ,45,15153,5439492,48,0 ,17,923,8585220,16,0 ,16,820,196616,22,10 ,15,13161,720904,1,1 ,16,820,196624,20,10 ,15,13162,720912,1,1 ,16,820,196632,20,10 ,15,13163,720920,1,1 ,16,820,196640,20,10 ,15,13164,720928,1,1 ,16,820,196648,20,16 ,15,13165,720936,1,1 ,16,820,196656,20,14 ,15,13166,720944,1,1 ,16,820,196664,20,8 ,15,13167,720952,1,1 ,16,820,196672,20,8 ,15,13168,720960,1,1 ,20,19724,10682434,92,0 ,17,923,8060996,56,0 ,44,15152,1245252,224,0 ,44,15152,196676,40,0 ,45,15153,4915268,24,0 ,16,820,196680,20,11 ,15,13169,720968,1,1 ,16,820,196688,20,10 ,15,13170,720976,1,1 ,16,820,196696,14,8 ,15,13171,720984,1,1 ,16,820,196704,20,9 ,15,13172,720992,1,1 ,20,24211,22741090,1448,0 ,20,18703,8585314,12,0 ,16,820,196712,20,10 ,15,13173,721000,1,1 ,16,820,196720,20,10 ,15,13174,721008,1,1 ,16,820,196728,18,8 ,15,13175,721016,1,1 ,16,820,196736,20,10 ,15,13176,721024,1,1 ,17,923,8585348,16,0 ,45,15153,4391044,72,0 ,16,820,196744,22,13 ,15,13177,721032,1,1 ,16,820,196752,21,10 ,15,13178,721040,1,1 ,16,820,196760,22,17 ,15,13179,721048,1,1 ,16,820,196768,22,10 ,15,13180,721056,1,1 ,20,24728,24314018,124,0 ,16,820,196776,22,14 ,15,13181,721064,1,1 ,16,820,196784,20,9 ,15,13182,721072,1,1 ,16,820,196792,22,12 ,15,13183,721080,1,1 ,16,820,196800,20,9 ,15,13184,721088,1,1 ,20,18704,8585410,12,0 ,17,923,10158276,32,0 ,44,15152,721092,24,0 ,17,923,9109700,40,0 ,16,820,196808,22,10 ,15,13185,721096,1,1 ,16,820,196816,22,13 ,15,13186,721104,1,1 ,16,820,196824,14,8 ,15,13187,721112,1,1 ,16,820,196832,20,8 ,15,13188,721120,1,1 ,20,15831,1769698,140,0 ,16,820,196840,20,8 ,15,13189,721128,1,1 ,16,820,196848,20,8 ,15,13190,721136,1,1 ,16,820,196856,20,8 ,15,13191,721144,1,1 ,16,820,196864,14,8 ,15,13192,721152,1,1 ,17,923,8585476,16,0 ,17,923,6488324,104,0 ,45,15153,4915460,16,0 ,16,820,196872,22,12 ,15,13193,721160,1,1 ,16,820,196880,14,8 ,15,13194,721168,1,1 ,16,820,196888,14,8 ,15,13195,721176,1,1 ,16,820,196896,14,8 ,15,13196,721184,1,1 ,20,21846,16974114,372,0 ,20,25394,25887010,360,0 ,20,16417,3342626,172,0 ,20,18705,8585506,12,0 ,16,820,196904,14,8 ,15,13197,721192,1,1 ,16,820,196912,14,8 ,15,13198,721200,1,1 ,16,820,196920,14,8 ,15,13199,721208,1,1 ,16,820,196928,20,9 ,15,13200,721216,1,1 ,44,15152,3866948,40,0 ,44,15152,2818372,32,0 ,44,15152,3342660,24,0 ,16,820,196936,14,8 ,15,13201,721224,1,1 ,16,820,196944,20,8 ,15,13202,721232,1,1 ,16,820,196952,14,8 ,15,13203,721240,1,1 ,16,820,196960,20,8 ,15,13204,721248,1,1 ,20,20276,12779874,320,0 ,20,25546,26411362,60,0 ,16,820,196968,20,8 ,15,13205,721256,1,1 ,16,820,196976,22,9 ,15,13206,721264,1,1 ,16,820,196984,18,8 ,15,13207,721272,1,1 ,16,820,196992,15,8 ,15,13208,721280,1,1 ,20,18706,8585602,12,0 ,17,923,8585604,16,0 ,17,923,7012740,48,0 ,44,15152,196996,32,0 ,44,15152,721284,32,0 ,45,15153,4915588,48,0 ,45,15153,5439876,16,0 ,16,820,197000,14,8 ,15,13209,721288,1,1 ,16,820,197008,20,10 ,15,13210,721296,1,1 ,16,820,197016,20,8 ,15,13211,721304,1,1 ,16,820,197024,22,9 ,15,13212,721312,1,1 ,16,820,197032,22,8 ,15,13213,721320,1,1 ,16,820,197040,14,8 ,15,13214,721328,1,1 ,16,820,197048,14,8 ,15,13215,721336,1,1 ,16,820,197056,15,8 ,15,13216,721344,1,1 ,20,26313,28508610,216,0 ,17,923,10158532,32,0 ,44,15152,1769924,48,0 ,17,923,9634244,40,0 ,16,820,197064,22,9 ,15,13217,721352,1,1 ,16,820,197072,20,12 ,15,13218,721360,1,1 ,16,820,197080,14,8 ,15,13219,721368,1,1 ,16,820,197088,20,11 ,15,13220,721376,1,1 ,20,18707,8585698,52,0 ,20,26154,27984354,160,0 ,16,820,197096,22,12 ,15,13221,721384,1,1 ,16,820,197104,21,10 ,15,13222,721392,1,1 ,16,820,197112,18,8 ,15,13223,721400,1,1 ,16,820,197120,21,8 ,15,13224,721408,1,1 ,20,25725,26935810,328,0 ,17,923,9110020,24,0 ,44,15152,3342852,56,0 ,45,15153,5440004,16,0 ,17,923,8061444,40,0 ,17,923,8585732,16,0 ,16,820,197128,21,11 ,15,13225,721416,1,1 ,16,820,197136,22,10 ,15,13226,721424,1,1 ,16,820,197144,18,8 ,15,13227,721432,1,1 ,16,820,197152,14,8 ,15,13228,721440,1,1 ,20,22344,18547234,124,0 ,16,820,197160,21,8 ,15,13229,721448,1,1 ,16,820,197168,20,8 ,15,13230,721456,1,1 ,16,820,197176,20,8 ,15,13231,721464,1,1 ,16,820,197184,21,10 ,15,13232,721472,1,1 ,44,15152,2818628,16,0 ,16,820,197192,20,8 ,15,13233,721480,1,1 ,16,820,197200,21,8 ,15,13234,721488,1,1 ,16,820,197208,18,8 ,15,13235,721496,1,1 ,16,820,197216,20,8 ,15,13236,721504,1,1 ,16,820,197224,21,11 ,15,13237,721512,1,1 ,16,820,197232,22,10 ,15,13238,721520,1,1 ,16,820,197240,21,11 ,15,13239,721528,1,1 ,16,820,197248,22,10 ,15,13240,721536,1,1 ,17,923,8585860,16,0 ,44,15152,197252,32,0 ,44,15152,721540,24,0 ,44,15152,3867268,32,0 ,45,15153,5440132,88,0 ,16,820,197256,21,11 ,15,13241,721544,1,1 ,16,820,197264,20,13 ,15,13242,721552,1,1 ,16,820,197272,22,12 ,15,13243,721560,1,1 ,16,820,197280,22,10 ,15,13244,721568,1,1 ,20,17548,5964450,64,0 ,16,820,197288,14,8 ,15,13245,721576,1,1 ,16,820,197296,14,8 ,15,13246,721584,1,1 ,16,820,197304,14,8 ,15,13247,721592,1,1 ,16,820,197312,15,8 ,15,13248,721600,1,1 ,20,16738,3867330,288,0 ,17,923,10158788,24,0 ,17,923,7537348,40,0 ,44,15152,2818756,24,0 ,45,15153,4391620,16,0 ,17,923,9110212,32,0 ,16,820,197320,14,8 ,15,13249,721608,1,1 ,16,820,197328,21,12 ,15,13250,721616,1,1 ,16,820,197336,20,9 ,15,13251,721624,1,1 ,16,820,197344,14,8 ,15,13252,721632,1,1 ,20,22729,19596002,116,0 ,16,820,197352,22,8 ,15,13253,721640,1,1 ,16,820,197360,14,8 ,15,13254,721648,1,1 ,16,820,197368,20,8 ,15,13255,721656,1,1 ,16,820,197376,14,8 ,15,13256,721664,1,1 ,17,923,9634564,24,0 ,17,923,7013124,32,0 ,44,15152,2294532,224,0 ,45,15153,4915972,16,0 ,17,923,8585988,16,0 ,16,820,197384,20,8 ,15,13257,721672,1,1 ,16,820,197392,22,9 ,15,13258,721680,1,1 ,16,820,197400,20,9 ,15,13259,721688,1,1 ,16,820,197408,20,8 ,15,13260,721696,1,1 ,20,19725,10683170,56,0 ,16,820,197416,20,8 ,15,13261,721704,1,1 ,16,820,197424,20,8 ,15,13262,721712,1,1 ,16,820,197432,20,8 ,15,13263,721720,1,1 ,16,820,197440,20,13 ,15,13264,721728,1,1 ,20,20989,15401794,52,0 ,20,25547,26411842,56,0 ,17,923,8061764,40,0 ,44,15152,1770308,64,0 ,44,15152,721732,24,0 ,45,15153,4391748,16,0 ,16,820,197448,22,15 ,15,13265,721736,1,1 ,16,820,197456,20,8 ,15,13266,721744,1,1 ,16,820,197464,20,9 ,15,13267,721752,1,1 ,16,820,197472,20,10 ,15,13268,721760,1,1 ,16,820,197480,15,8 ,15,13269,721768,1,1 ,16,820,197488,20,10 ,15,13270,721776,1,1 ,16,820,197496,22,10 ,15,13271,721784,1,1 ,16,820,197504,14,8 ,15,13272,721792,1,1 ,20,18708,8586114,12,0 ,20,24973,24839042,388,0 ,17,923,10158980,24,0 ,44,15152,2818948,72,0 ,44,15152,197508,16,0 ,44,15152,3867524,24,0 ,45,15153,4916100,16,0 ,17,923,8586116,16,0 ,16,820,197512,14,8 ,15,13273,721800,1,1 ,16,820,197520,20,9 ,15,13274,721808,1,1 ,16,820,197528,22,9 ,15,13275,721816,1,1 ,16,820,197536,22,9 ,15,13276,721824,1,1 ,16,820,197544,22,12 ,15,13277,721832,1,1 ,16,820,197552,14,8 ,15,13278,721840,1,1 ,16,820,197560,20,8 ,15,13279,721848,1,1 ,16,820,197568,18,8 ,15,13280,721856,1,1 ,20,21345,15926210,292,0 ,17,923,9634756,24,0 ,44,15152,3343300,96,0 ,45,15153,4391876,48,0 ,17,923,9110468,24,0 ,16,820,197576,22,9 ,15,13281,721864,1,1 ,16,820,197584,20,8 ,15,13282,721872,1,1 ,16,820,197592,20,8 ,15,13283,721880,1,1 ,16,820,197600,20,8 ,15,13284,721888,1,1 ,20,18709,8586210,676,0 ,16,820,197608,20,10 ,15,13285,721896,1,1 ,16,820,197616,22,10 ,15,13286,721904,1,1 ,16,820,197624,20,9 ,15,13287,721912,1,1 ,16,820,197632,20,8 ,15,13288,721920,1,1 ,17,923,8586244,16,0 ,17,923,7537668,112,0 ,17,923,7013380,32,0 ,44,15152,197636,56,0 ,44,15152,721924,72,0 ,45,15153,4916228,72,0 ,16,820,197640,15,8 ,15,13289,721928,1,1 ,16,820,197648,20,8 ,15,13290,721936,1,1 ,16,820,197656,22,11 ,15,13291,721944,1,1 ,16,820,197664,20,9 ,15,13292,721952,1,1 ,16,820,197672,20,8 ,15,13293,721960,1,1 ,16,820,197680,18,8 ,15,13294,721968,1,1 ,16,820,197688,14,8 ,15,13295,721976,1,1 ,16,820,197696,20,9 ,15,13296,721984,1,1 ,20,23978,22217794,508,0 ,17,923,10159172,24,0 ,17,923,6489156,136,0 ,44,15152,3867716,24,0 ,16,820,197704,20,8 ,15,13297,721992,1,1 ,16,820,197712,22,19 ,15,13298,722000,1,1 ,16,820,197720,14,8 ,15,13299,722008,1,1 ,16,820,197728,20,9 ,15,13300,722016,1,1 ,16,820,197736,21,8 ,15,13301,722024,1,1 ,16,820,197744,22,28 ,15,13302,722032,1,1 ,16,820,197752,21,8 ,15,13303,722040,1,1 ,16,820,197760,20,9 ,15,13304,722048,1,1 ,20,24729,24315010,56,0 ,17,923,9634948,32,0 ,17,923,8062084,24,0 ,17,923,8586372,16,0 ,17,923,9110660,40,0 ,16,820,197768,14,8 ,15,13305,722056,1,1 ,16,820,197776,20,8 ,15,13306,722064,1,1 ,16,820,197784,14,8 ,15,13307,722072,1,1 ,16,820,197792,22,8 ,15,13308,722080,1,1 ,20,17549,5964962,64,0 ,16,820,197800,14,8 ,15,13309,722088,1,1 ,16,820,197808,14,8 ,15,13310,722096,1,1 ,16,820,197816,20,8 ,15,13311,722104,1,1 ,16,820,197824,20,9 ,15,13312,722112,1,1 ,16,820,197832,15,8 ,15,13313,722120,1,1 ,16,820,197840,22,8 ,15,13314,722128,1,1 ,16,820,197848,20,8 ,15,13315,722136,1,1 ,16,820,197856,22,8 ,15,13316,722144,1,1 ,20,24545,23790818,168,0 ,20,19726,10683618,12,0 ,20,20990,15402210,52,0 ,16,820,197864,20,8 ,15,13317,722152,1,1 ,16,820,197872,15,8 ,15,13318,722160,1,1 ,16,820,197880,22,8 ,15,13319,722168,1,1 ,16,820,197888,14,8 ,15,13320,722176,1,1 ,20,25548,26412290,72,0 ,17,923,10159364,24,0 ,17,923,7013636,40,0 ,44,15152,3867908,24,0 ,17,923,8586500,16,0 ,16,820,197896,14,8 ,15,13321,722184,1,1 ,16,820,197904,14,8 ,15,13322,722192,1,1 ,16,820,197912,20,8 ,15,13323,722200,1,1 ,16,820,197920,20,14 ,15,13324,722208,1,1 ,16,820,197928,14,8 ,15,13325,722216,1,1 ,16,820,197936,22,12 ,15,13326,722224,1,1 ,16,820,197944,22,30 ,15,13327,722232,1,1 ,16,820,197952,14,8 ,15,13328,722240,1,1 ,20,19727,10683714,60,0 ,20,15832,1770818,104,0 ,17,923,8062276,32,0 ,44,15152,1770820,40,0 ,45,15153,4392260,96,0 ,45,15153,5440836,48,0 ,16,820,197960,22,9 ,15,13329,722248,1,1 ,16,820,197968,20,8 ,15,13330,722256,1,1 ,16,820,197976,22,10 ,15,13331,722264,1,1 ,16,820,197984,21,10 ,15,13332,722272,1,1 ,16,820,197992,20,9 ,15,13333,722280,1,1 ,16,820,198000,15,8 ,15,13334,722288,1,1 ,16,820,198008,14,8 ,15,13335,722296,1,1 ,16,820,198016,22,12 ,15,13336,722304,1,1 ,17,923,9635204,40,0 ,17,923,8586628,16,0 ,16,820,198024,20,9 ,15,13337,722312,1,1 ,16,820,198032,22,9 ,15,13338,722320,1,1 ,16,820,198040,20,9 ,15,13339,722328,1,1 ,16,820,198048,22,10 ,15,13340,722336,1,1 ,16,820,198056,20,10 ,15,13341,722344,1,1 ,16,820,198064,20,14 ,15,13342,722352,1,1 ,16,820,198072,22,9 ,15,13343,722360,1,1 ,16,820,198080,20,9 ,15,13344,722368,1,1 ,17,923,10159556,56,0 ,44,15152,2819524,128,0 ,44,15152,198084,32,0 ,44,15152,3868100,40,0 ,17,923,9110980,40,0 ,16,820,198088,22,9 ,15,13345,722376,1,1 ,16,820,198096,20,9 ,15,13346,722384,1,1 ,16,820,198104,22,9 ,15,13347,722392,1,1 ,16,820,198112,14,8 ,15,13348,722400,1,1 ,20,19425,10159586,156,0 ,16,820,198120,22,22 ,15,13349,722408,1,1 ,16,820,198128,22,10 ,15,13350,722416,1,1 ,16,820,198136,20,9 ,15,13351,722424,1,1 ,16,820,198144,20,9 ,15,13352,722432,1,1 ,20,22345,18548226,588,0 ,17,923,8586756,16,0 ,16,820,198152,20,10 ,15,13353,722440,1,1 ,16,820,198160,22,9 ,15,13354,722448,1,1 ,16,820,198168,22,24 ,15,13355,722456,1,1 ,16,820,198176,15,8 ,15,13356,722464,1,1 ,16,820,198184,22,8 ,15,13357,722472,1,1 ,16,820,198192,20,9 ,15,13358,722480,1,1 ,16,820,198200,20,9 ,15,13359,722488,1,1 ,16,820,198208,20,8 ,15,13360,722496,1,1 ,20,24730,24315458,112,0 ,17,923,8062532,32,0 ,17,923,7013956,32,0 ,44,15152,722500,48,0 ,45,15153,4916804,72,0 ,16,820,198216,22,12 ,15,13361,722504,1,1 ,16,820,198224,15,8 ,15,13362,722512,1,1 ,16,820,198232,20,11 ,15,13363,722520,1,1 ,16,820,198240,20,8 ,15,13364,722528,1,1 ,20,20017,11208290,12,0 ,20,18056,7013986,12,0 ,16,820,198248,22,8 ,15,13365,722536,1,1 ,16,820,198256,22,9 ,15,13366,722544,1,1 ,16,820,198264,14,8 ,15,13367,722552,1,1 ,16,820,198272,15,8 ,15,13368,722560,1,1 ,20,22730,19596930,116,0 ,20,25950,27461250,136,0 ,20,16418,3344002,80,0 ,20,20991,15402626,172,0 ,17,923,8586884,16,0 ,44,15152,1771140,152,0 ,16,820,198280,20,11 ,15,13369,722568,1,1 ,16,820,198288,14,8 ,15,13370,722576,1,1 ,16,820,198296,14,8 ,15,13371,722584,1,1 ,16,820,198304,22,9 ,15,13372,722592,1,1 ,20,17550,5965474,140,0 ,20,26427,29034146,360,0 ,16,820,198312,21,8 ,15,13373,722600,1,1 ,16,820,198320,20,8 ,15,13374,722608,1,1 ,16,820,198328,22,8 ,15,13375,722616,1,1 ,16,820,198336,14,8 ,15,13376,722624,1,1 ,20,20018,11208386,136,0 ,20,18057,7014082,456,0 ,17,923,9635524,16,0 ,44,15152,198340,48,0 ,44,15152,3344068,112,0 ,45,15153,5441220,16,0 ,16,820,198344,22,8 ,15,13377,722632,1,1 ,16,820,198352,14,8 ,15,13378,722640,1,1 ,16,820,198360,20,10 ,15,13379,722648,1,1 ,16,820,198368,22,8 ,15,13380,722656,1,1 ,20,26155,27985634,52,0 ,16,820,198376,20,8 ,15,13381,722664,1,1 ,16,820,198384,20,9 ,15,13382,722672,1,1 ,16,820,198392,15,8 ,15,13383,722680,1,1 ,16,820,198400,22,8 ,15,13384,722688,1,1 ,17,923,9111300,24,0 ,44,15152,3868420,40,0 ,17,923,8587012,16,0 ,16,820,198408,22,8 ,15,13385,722696,1,1 ,16,820,198416,22,8 ,15,13386,722704,1,1 ,16,820,198424,22,8 ,15,13387,722712,1,1 ,16,820,198432,22,8 ,15,13388,722720,1,1 ,20,19728,10684194,60,0 ,16,820,198440,20,8 ,15,13389,722728,1,1 ,16,820,198448,22,8 ,15,13390,722736,1,1 ,16,820,198456,20,13 ,15,13391,722744,1,1 ,16,820,198464,22,10 ,15,13392,722752,1,1 ,20,25549,26412866,40,0 ,17,923,9635652,24,0 ,17,923,7014212,48,0 ,44,15152,1247044,32,0 ,45,15153,5441348,40,0 ,17,923,8062788,24,0 ,16,820,198472,21,10 ,15,13393,722760,1,1 ,16,820,198480,20,8 ,15,13394,722768,1,1 ,16,820,198488,20,8 ,15,13395,722776,1,1 ,16,820,198496,21,10 ,15,13396,722784,1,1 ,16,820,198504,20,8 ,15,13397,722792,1,1 ,16,820,198512,20,8 ,15,13398,722800,1,1 ,16,820,198520,22,8 ,15,13399,722808,1,1 ,16,820,198528,20,8 ,15,13400,722816,1,1 ,17,923,10160004,48,0 ,17,923,7538564,32,0 ,17,923,8587140,16,0 ,16,820,198536,22,10 ,15,13401,722824,1,1 ,16,820,198544,20,8 ,15,13402,722832,1,1 ,16,820,198552,21,10 ,15,13403,722840,1,1 ,16,820,198560,20,8 ,15,13404,722848,1,1 ,16,820,198568,22,10 ,15,13405,722856,1,1 ,16,820,198576,20,8 ,15,13406,722864,1,1 ,16,820,198584,20,8 ,15,13407,722872,1,1 ,16,820,198592,22,10 ,15,13408,722880,1,1 ,20,23055,20121538,32,0 ,17,923,9111492,24,0 ,44,15152,722884,88,0 ,16,820,198600,21,8 ,15,13409,722888,1,1 ,16,820,198608,20,8 ,15,13410,722896,1,1 ,16,820,198616,20,8 ,15,13411,722904,1,1 ,16,820,198624,20,8 ,15,13412,722912,1,1 ,16,820,198632,22,10 ,15,13413,722920,1,1 ,16,820,198640,22,8 ,15,13414,722928,1,1 ,16,820,198648,22,8 ,15,13415,722936,1,1 ,16,820,198656,20,8 ,15,13416,722944,1,1 ,20,20779,13830146,452,0 ,17,923,9635844,24,0 ,17,923,8062980,24,0 ,17,923,8587268,16,0 ,16,820,198664,20,8 ,15,13417,722952,1,1 ,16,820,198672,20,8 ,15,13418,722960,1,1 ,16,820,198680,22,15 ,15,13419,722968,1,1 ,16,820,198688,22,8 ,15,13420,722976,1,1 ,16,820,198696,22,8 ,15,13421,722984,1,1 ,16,820,198704,20,8 ,15,13422,722992,1,1 ,16,820,198712,21,8 ,15,13423,723000,1,1 ,16,820,198720,20,8 ,15,13424,723008,1,1 ,45,15153,4393028,104,0 ,44,15152,1247300,40,0 ,44,15152,198724,24,0 ,44,15152,3868740,40,0 ,16,820,198728,20,8 ,15,13425,723016,1,1 ,16,820,198736,22,10 ,15,13426,723024,1,1 ,16,820,198744,22,8 ,15,13427,723032,1,1 ,16,820,198752,22,8 ,15,13428,723040,1,1 ,16,820,198760,21,10 ,15,13429,723048,1,1 ,16,820,198768,20,8 ,15,13430,723056,1,1 ,16,820,198776,20,8 ,15,13431,723064,1,1 ,16,820,198784,20,8 ,15,13432,723072,1,1 ,20,18515,8063106,52,0 ,20,26314,28510338,140,0 ,20,26156,27986050,288,0 ,20,25550,26413186,44,0 ,20,15833,1771650,140,0 ,17,923,9111684,24,0 ,17,923,7538820,32,0 ,17,923,6490244,136,0 ,45,15153,4917380,16,0 ,45,15153,5441668,48,0 ,17,923,8587396,16,0 ,16,820,198792,22,12 ,15,13433,723080,1,1 ,16,820,198800,22,9 ,15,13434,723088,1,1 ,16,820,198808,20,8 ,15,13435,723096,1,1 ,16,820,198816,22,8 ,15,13436,723104,1,1 ,16,820,198824,20,8 ,15,13437,723112,1,1 ,16,820,198832,20,8 ,15,13438,723120,1,1 ,16,820,198840,22,13 ,15,13439,723128,1,1 ,16,820,198848,15,8 ,15,13440,723136,1,1 ,20,23056,20121794,24,0 ,17,923,9636036,24,0 ,17,923,7014596,48,0 ,17,923,8063172,32,0 ,16,820,198856,22,8 ,15,13441,723144,1,1 ,16,820,198864,22,8 ,15,13442,723152,1,1 ,16,820,198872,20,9 ,15,13443,723160,1,1 ,16,820,198880,20,8 ,15,13444,723168,1,1 ,16,820,198888,21,10 ,15,13445,723176,1,1 ,16,820,198896,22,8 ,15,13446,723184,1,1 ,16,820,198904,20,8 ,15,13447,723192,1,1 ,16,820,198912,22,10 ,15,13448,723200,1,1 ,20,19729,10684674,12,0 ,20,16419,3344642,12,0 ,17,923,10160388,32,0 ,44,15152,198916,24,0 ,45,15153,4917508,24,0 ,17,923,8587524,16,0 ,16,820,198920,20,8 ,15,13449,723208,1,1 ,16,820,198928,21,10 ,15,13450,723216,1,1 ,16,820,198936,20,8 ,15,13451,723224,1,1 ,16,820,198944,21,12 ,15,13452,723232,1,1 ,16,820,198952,22,14 ,15,13453,723240,1,1 ,16,820,198960,22,8 ,15,13454,723248,1,1 ,16,820,198968,20,8 ,15,13455,723256,1,1 ,16,820,198976,20,8 ,15,13456,723264,1,1 ,17,923,9111876,24,0 ,16,820,198984,22,11 ,15,13457,723272,1,1 ,16,820,198992,23,13 ,15,13458,723280,1,1 ,16,820,199000,14,8 ,15,13459,723288,1,1 ,16,820,199008,14,8 ,15,13460,723296,1,1 ,20,19730,10684770,48,0 ,20,16420,3344738,136,0 ,16,820,199016,22,10 ,15,13461,723304,1,1 ,16,820,199024,15,8 ,15,13462,723312,1,1 ,16,820,199032,15,8 ,15,13463,723320,1,1 ,16,820,199040,14,8 ,15,13464,723328,1,1 ,20,23057,20121986,24,0 ,17,923,9636228,24,0 ,17,923,7539076,48,0 ,44,15152,1247620,48,0 ,44,15152,3869060,80,0 ,17,923,8587652,16,0 ,16,820,199048,15,8 ,15,13465,723336,1,1 ,16,820,199056,20,8 ,15,13466,723344,1,1 ,16,820,199064,22,8 ,15,13467,723352,1,1 ,16,820,199072,20,8 ,15,13468,723360,1,1 ,16,820,199080,20,8 ,15,13469,723368,1,1 ,16,820,199088,20,8 ,15,13470,723376,1,1 ,16,820,199096,20,8 ,15,13471,723384,1,1 ,16,820,199104,20,101 ,15,13472,723392,1,1 ,20,24731,24316354,532,0 ,17,923,8063428,24,0 ,44,15152,2820548,160,0 ,44,15152,199108,24,0 ,45,15153,4917700,32,0 ,16,820,199112,14,8 ,15,13473,723400,1,1 ,16,820,199120,20,8 ,15,13474,723408,1,1 ,16,820,199128,20,8 ,15,13475,723416,1,1 ,16,820,199136,14,8 ,15,13476,723424,1,1 ,20,25551,26413538,40,0 ,16,820,199144,14,8 ,15,13477,723432,1,1 ,16,820,199152,14,8 ,15,13478,723440,1,1 ,16,820,199160,20,9 ,15,13479,723448,1,1 ,16,820,199168,20,9 ,15,13480,723456,1,1 ,17,923,10160644,24,0 ,44,15152,2296324,184,0 ,45,15153,5442052,16,0 ,17,923,8587780,16,0 ,17,923,9112068,32,0 ,16,820,199176,20,8 ,15,13481,723464,1,1 ,16,820,199184,20,10 ,15,13482,723472,1,1 ,16,820,199192,14,8 ,15,13483,723480,1,1 ,16,820,199200,20,8 ,15,13484,723488,1,1 ,20,24546,23792162,136,0 ,20,18516,8063522,204,0 ,20,22731,19597858,116,0 ,16,820,199208,18,8 ,15,13485,723496,1,1 ,16,820,199216,14,8 ,15,13486,723504,1,1 ,16,820,199224,20,8 ,15,13487,723512,1,1 ,16,820,199232,14,8 ,15,13488,723520,1,1 ,20,23058,20122178,60,0 ,20,15657,1247810,52,0 ,17,923,9636420,56,0 ,17,923,7014980,24,0 ,44,15152,3344964,24,0 ,16,820,199240,18,8 ,15,13489,723528,1,1 ,16,820,199248,20,8 ,15,13490,723536,1,1 ,16,820,199256,14,8 ,15,13491,723544,1,1 ,16,820,199264,22,9 ,15,13492,723552,1,1 ,16,820,199272,20,30 ,15,13493,723560,1,1 ,16,820,199280,20,30 ,15,13494,723568,1,1 ,16,820,199288,15,8 ,15,13495,723576,1,1 ,16,820,199296,20,8 ,15,13496,723584,1,1 ,17,923,8587908,16,0 ,44,15152,199300,224,0 ,44,15152,723588,96,0 ,45,15153,5442180,24,0 ,17,923,8063620,40,0 ,16,820,199304,22,12 ,15,13497,723592,1,1 ,16,820,199312,21,8 ,15,13498,723600,1,1 ,16,820,199320,20,9 ,15,13499,723608,1,1 ,16,820,199328,22,13 ,15,13500,723616,1,1 ,16,820,199336,21,10 ,15,13501,723624,1,1 ,16,820,199344,22,8 ,15,13502,723632,1,1 ,16,820,199352,18,8 ,15,13503,723640,1,1 ,16,820,199360,20,8 ,15,13504,723648,1,1 ,20,19426,10160834,216,0 ,20,25951,27462338,100,0 ,17,923,10160836,32,0 ,45,15153,4917956,72,0 ,16,820,199368,22,16 ,15,13505,723656,1,1 ,16,820,199376,22,18 ,15,13506,723664,1,1 ,16,820,199384,22,8 ,15,13507,723672,1,1 ,16,820,199392,21,10 ,15,13508,723680,1,1 ,20,19731,10685154,12,0 ,20,15240,199394,12,0 ,16,820,199400,20,8 ,15,13509,723688,1,1 ,16,820,199408,21,10 ,15,13510,723696,1,1 ,16,820,199416,22,8 ,15,13511,723704,1,1 ,16,820,199424,21,10 ,15,13512,723712,1,1 ,20,20019,11209474,136,0 ,20,17551,5966594,108,0 ,17,923,9112324,24,0 ,17,923,7539460,32,0 ,17,923,7015172,32,0 ,44,15152,1248004,32,0 ,44,15152,3345156,32,0 ,17,923,8588036,16,0 ,16,820,199432,22,8 ,15,13513,723720,1,1 ,16,820,199440,22,8 ,15,13514,723728,1,1 ,16,820,199448,21,10 ,15,13515,723736,1,1 ,16,820,199456,22,8 ,15,13516,723744,1,1 ,20,25552,26413858,464,0 ,16,820,199464,18,8 ,15,13517,723752,1,1 ,16,820,199472,20,8 ,15,13518,723760,1,1 ,16,820,199480,21,10 ,15,13519,723768,1,1 ,16,820,199488,22,8 ,15,13520,723776,1,1 ,20,19732,10685250,52,0 ,20,15241,199490,148,0 ,45,15153,5442372,24,0 ,44,15152,1772356,48,0 ,16,820,199496,22,10 ,15,13521,723784,1,1 ,16,820,199504,22,10 ,15,13522,723792,1,1 ,16,820,199512,20,8 ,15,13523,723800,1,1 ,16,820,199520,20,8 ,15,13524,723808,1,1 ,20,20277,12782434,44,0 ,20,15398,723810,304,0 ,16,820,199528,20,9 ,15,13525,723816,1,1 ,16,820,199536,22,8 ,15,13526,723824,1,1 ,16,820,199544,20,8 ,15,13527,723832,1,1 ,16,820,199552,22,8 ,15,13528,723840,1,1 ,17,923,8588164,16,0 ,45,15153,4393860,40,0 ,16,820,199560,20,8 ,15,13529,723848,1,1 ,16,820,199568,20,8 ,15,13530,723856,1,1 ,16,820,199576,20,8 ,15,13531,723864,1,1 ,16,820,199584,20,8 ,15,13532,723872,1,1 ,20,17155,4918178,760,0 ,16,820,199592,20,9 ,15,13533,723880,1,1 ,16,820,199600,20,12 ,15,13534,723888,1,1 ,16,820,199608,22,13 ,15,13535,723896,1,1 ,16,820,199616,22,14 ,15,13536,723904,1,1 ,20,16739,3869634,288,0 ,17,923,10161092,16,0 ,17,923,8063940,40,0 ,17,923,9112516,24,0 ,16,820,199624,22,11 ,15,13537,723912,1,1 ,16,820,199632,22,29 ,15,13538,723920,1,1 ,16,820,199640,22,10 ,15,13539,723928,1,1 ,16,820,199648,22,11 ,15,13540,723936,1,1 ,20,20992,15404002,100,0 ,20,15658,1248226,76,0 ,16,820,199656,22,22 ,15,13541,723944,1,1 ,16,820,199664,22,13 ,15,13542,723952,1,1 ,16,820,199672,22,11 ,15,13543,723960,1,1 ,16,820,199680,14,8 ,15,13544,723968,1,1 ,17,923,9636868,32,0 ,17,923,7539716,24,0 ,17,923,7015428,40,0 ,44,15152,1248260,48,0 ,44,15152,3345412,40,0 ,44,15152,3869700,32,0 ,45,15153,5442564,16,0 ,17,923,8588292,16,0 ,16,820,199688,15,8 ,15,13545,723976,1,1 ,16,820,199696,22,8 ,15,14,723984,1,1 ,16,820,199704,14,8 ,15,13546,723992,1,1 ,16,820,199712,15,8 ,15,13547,724000,1,1 ,20,23059,20122658,24,0 ,16,820,199720,21,8 ,15,13548,724008,1,1 ,16,820,199728,20,9 ,15,13549,724016,1,1 ,16,820,199736,22,10 ,15,13550,724024,1,1 ,16,820,199744,21,10 ,15,13551,724032,1,1 ,20,25726,26938434,148,0 ,17,923,10161220,16,0 ,16,820,199752,20,8 ,15,13552,724040,1,1 ,16,820,199760,21,10 ,15,13553,724048,1,1 ,16,820,199768,21,10 ,15,13554,724056,1,1 ,16,820,199776,20,8 ,15,13555,724064,1,1 ,20,25395,25889890,236,0 ,16,820,199784,20,8 ,15,13556,724072,1,1 ,16,820,199792,21,10 ,15,13557,724080,1,1 ,16,820,199800,22,9 ,15,13558,724088,1,1 ,16,820,199808,21,10 ,15,13559,724096,1,1 ,17,923,9112708,48,0 ,45,15153,5442692,24,0 ,17,923,8588420,16,0 ,16,820,199816,21,10 ,15,13560,724104,1,1 ,16,820,199824,20,9 ,15,13561,724112,1,1 ,16,820,199832,20,8 ,15,13562,724120,1,1 ,16,820,199840,21,10 ,15,13563,724128,1,1 ,16,820,199848,21,10 ,15,13564,724136,1,1 ,16,820,199856,20,9 ,15,13565,724144,1,1 ,16,820,199864,18,8 ,15,13566,724152,1,1 ,16,820,199872,20,8 ,15,13567,724160,1,1 ,20,21847,16977090,244,0 ,20,20278,12782786,1964,0 ,17,923,10161348,16,0 ,17,923,7539908,24,0 ,17,923,6491332,56,0 ,44,15152,1772740,64,0 ,45,15153,4394180,16,0 ,16,820,199880,20,9 ,15,13568,724168,1,1 ,16,820,199888,21,10 ,15,13569,724176,1,1 ,16,820,199896,21,10 ,15,13570,724184,1,1 ,16,820,199904,20,9 ,15,13571,724192,1,1 ,20,23060,20122850,36,0 ,20,26315,28511458,2160,0 ,20,15834,1772770,140,0 ,20,19733,10685666,12,0 ,20,21346,15928546,380,0 ,16,820,199912,21,8 ,15,13572,724200,1,1 ,16,820,199920,20,9 ,15,13573,724208,1,1 ,16,820,199928,21,8 ,15,13574,724216,1,1 ,16,820,199936,22,8 ,15,13575,724224,1,1 ,17,923,9637124,32,0 ,44,15152,3869956,48,0 ,45,15153,4918532,88,0 ,17,923,8064260,56,0 ,17,923,8588548,16,0 ,16,820,199944,20,9 ,15,13576,724232,1,1 ,16,820,199952,22,8 ,15,13577,724240,1,1 ,16,820,199960,20,8 ,15,13578,724248,1,1 ,16,820,199968,20,9 ,15,13579,724256,1,1 ,20,18984,9112866,192,0 ,16,820,199976,20,10 ,15,13580,724264,1,1 ,16,820,199984,15,8 ,15,13581,724272,1,1 ,16,820,199992,14,8 ,15,13582,724280,1,1 ,16,820,200000,22,8 ,15,13583,724288,1,1 ,20,19734,10685762,12,0 ,17,923,10161476,24,0 ,17,923,7015748,32,0 ,44,15152,3345732,32,0 ,45,15153,4394308,24,0 ,45,15153,5442884,16,0 ,16,820,200008,22,10 ,15,13584,724296,1,1 ,16,820,200016,20,8 ,15,13585,724304,1,1 ,16,820,200024,20,8 ,15,13586,724312,1,1 ,16,820,200032,22,10 ,15,13587,724320,1,1 ,16,820,200040,20,8 ,15,13588,724328,1,1 ,16,820,200048,22,10 ,15,13589,724336,1,1 ,16,820,200056,20,8 ,15,13590,724344,1,1 ,16,820,200064,22,11 ,15,13591,724352,1,1 ,17,923,8588676,16,0 ,17,923,7540100,32,0 ,44,15152,1248644,32,0 ,44,15152,724356,24,0 ,16,820,200072,20,8 ,15,13592,724360,1,1 ,16,820,200080,21,12 ,15,13593,724368,1,1 ,16,820,200088,20,11 ,15,13594,724376,1,1 ,16,820,200096,21,10 ,15,13595,724384,1,1 ,20,19735,10685858,52,0 ,20,16421,3345826,12,0 ,16,820,200104,22,12 ,15,13596,724392,1,1 ,16,820,200112,20,8 ,15,13597,724400,1,1 ,16,820,200120,22,10 ,15,13598,724408,1,1 ,16,820,200128,21,10 ,15,13599,724416,1,1 ,20,22732,19598786,116,0 ,45,15153,5443012,32,0 ,16,820,200136,22,10 ,15,13600,724424,1,1 ,16,820,200144,14,8 ,15,13601,724432,1,1 ,16,820,200152,20,8 ,15,13602,724440,1,1 ,16,820,200160,14,8 ,15,13603,724448,1,1 ,20,25952,27463138,136,0 ,16,820,200168,14,8 ,15,13604,724456,1,1 ,16,820,200176,15,8 ,15,13605,724464,1,1 ,16,820,200184,14,8 ,15,13606,724472,1,1 ,16,820,200192,21,11 ,15,13607,724480,1,1 ,20,23381,20647426,376,0 ,20,16422,3345922,136,0 ,20,23061,20123138,116,0 ,17,923,10161668,24,0 ,45,15153,4394500,24,0 ,17,923,8588804,16,0 ,17,923,9113092,48,0 ,17,923,9637380,24,0 ,16,820,200200,22,8 ,15,13608,724488,1,1 ,16,820,200208,21,11 ,15,13609,724496,1,1 ,16,820,200216,22,11 ,15,13610,724504,1,1 ,16,820,200224,20,8 ,15,13611,724512,1,1 ,16,820,200232,20,8 ,15,13612,724520,1,1 ,16,820,200240,21,11 ,15,13613,724528,1,1 ,16,820,200248,22,8 ,15,13614,724536,1,1 ,16,820,200256,21,11 ,15,13615,724544,1,1 ,20,24396,23268930,360,0 ,20,15659,1248834,200,0 ,20,22078,18026050,744,0 ,44,15152,3345988,32,0 ,17,923,7016004,72,0 ,44,15152,724548,24,0 ,16,820,200264,21,10 ,15,13616,724552,1,1 ,16,820,200272,22,8 ,15,13617,724560,1,1 ,16,820,200280,22,9 ,15,13618,724568,1,1 ,16,820,200288,22,9 ,15,13619,724576,1,1 ,20,24547,23793250,216,0 ,20,17552,5967458,140,0 ,16,820,200296,20,8 ,15,13620,724584,1,1 ,16,820,200304,22,11 ,15,13621,724592,1,1 ,16,820,200312,20,9 ,15,13622,724600,1,1 ,16,820,200320,21,8 ,15,13623,724608,1,1 ,17,923,8588932,16,0 ,17,923,7540356,24,0 ,17,923,6491780,56,0 ,44,15152,1248900,88,0 ,44,15152,3870340,32,0 ,16,820,200328,21,13 ,15,13624,724616,1,1 ,16,820,200336,22,10 ,15,13625,724624,1,1 ,16,820,200344,22,10 ,15,13626,724632,1,1 ,16,820,200352,22,8 ,15,13627,724640,1,1 ,16,820,200360,20,9 ,15,13628,724648,1,1 ,16,820,200368,20,8 ,15,13629,724656,1,1 ,16,820,200376,20,9 ,15,13630,724664,1,1 ,16,820,200384,22,11 ,15,13631,724672,1,1 ,17,923,10161860,16,0 ,44,15152,2821828,88,0 ,44,15152,1773252,24,0 ,45,15153,4394692,24,0 ,45,15153,5443268,16,0 ,17,923,8064708,24,0 ,17,923,9637572,40,0 ,16,820,200392,20,9 ,15,13632,724680,1,1 ,16,820,200400,14,8 ,15,13633,724688,1,1 ,16,820,200408,14,8 ,15,13634,724696,1,1 ,16,820,200416,14,8 ,15,13635,724704,1,1 ,16,820,200424,20,8 ,15,13636,724712,1,1 ,16,820,200432,20,8 ,15,13637,724720,1,1 ,16,820,200440,20,8 ,15,13638,724728,1,1 ,16,820,200448,20,8 ,15,13639,724736,1,1 ,20,20993,15404802,164,0 ,17,923,8589060,16,0 ,44,15152,724740,24,0 ,16,820,200456,21,10 ,15,13640,724744,1,1 ,16,820,200464,20,8 ,15,13641,724752,1,1 ,16,820,200472,18,8 ,15,13642,724760,1,1 ,16,820,200480,22,10 ,15,13643,724768,1,1 ,16,820,200488,20,8 ,15,13644,724776,1,1 ,16,820,200496,21,10 ,15,13645,724784,1,1 ,16,820,200504,20,8 ,15,13646,724792,1,1 ,16,820,200512,18,8 ,15,819,724800,1,1 ,20,20020,11210562,32,0 ,20,19736,10686274,12,0 ,17,923,10161988,24,0 ,17,923,7540548,24,0 ,44,15152,3346244,24,0 ,45,15153,5443396,16,0 ,16,820,200520,21,12 ,15,819,724808,1,1 ,16,820,200528,20,8 ,15,13647,724816,1,1 ,16,820,200536,20,8 ,15,13648,724824,1,1 ,16,820,200544,20,8 ,15,13649,724832,1,1 ,16,820,200552,20,8 ,15,13650,724840,1,1 ,16,820,200560,20,8 ,15,13651,724848,1,1 ,16,820,200568,20,8 ,15,13652,724856,1,1 ,16,820,200576,20,8 ,15,13653,724864,1,1 ,17,923,9113476,24,0 ,44,15152,1773444,280,0 ,44,15152,3870596,48,0 ,45,15153,4394884,24,0 ,17,923,8064900,56,0 ,17,923,8589188,16,0 ,16,820,200584,20,8 ,15,13654,724872,1,1 ,16,820,200592,20,8 ,15,13655,724880,1,1 ,16,820,200600,21,10 ,15,13656,724888,1,1 ,16,820,200608,22,8 ,15,13657,724896,1,1 ,20,19737,10686370,40,0 ,20,24974,24842146,264,0 ,16,820,200616,20,8 ,15,13658,724904,1,1 ,16,820,200624,20,9 ,15,13659,724912,1,1 ,16,820,200632,20,8 ,15,13660,724920,1,1 ,16,820,200640,20,8 ,15,13661,724928,1,1 ,45,15153,5443524,16,0 ,44,15152,2297796,72,0 ,44,15152,724932,24,0 ,45,15153,4919236,96,0 ,16,820,200648,22,10 ,15,13662,724936,1,1 ,16,820,200656,20,8 ,15,13663,724944,1,1 ,16,820,200664,22,11 ,15,13664,724952,1,1 ,16,820,200672,14,8 ,15,13665,724960,1,1 ,20,15242,200674,92,0 ,16,820,200680,20,8 ,15,13666,724968,1,1 ,16,820,200688,20,8 ,15,13667,724976,1,1 ,16,820,200696,20,8 ,15,13668,724984,1,1 ,16,820,200704,21,10 ,15,13669,724992,1,1 ,17,923,10162180,32,0 ,17,923,7540740,32,0 ,44,15152,3346436,24,0 ,17,923,8589316,16,0 ,17,923,9637892,48,0 ,16,820,200712,22,8 ,15,13670,725000,1,1 ,16,820,200720,14,8 ,15,13671,725008,1,1 ,16,820,200728,14,8 ,15,13672,725016,1,1 ,16,820,200736,15,8 ,15,13673,725024,1,1 ,16,820,200744,14,8 ,15,13674,725032,1,1 ,16,820,200752,15,8 ,15,13675,725040,1,1 ,16,820,200760,20,9 ,15,13676,725048,1,1 ,16,820,200768,20,8 ,15,13677,725056,1,1 ,20,20021,11210818,128,0 ,17,923,9113668,40,0 ,17,923,6492228,40,0 ,45,15153,4395076,16,0 ,45,15153,5443652,16,0 ,16,820,200776,20,10 ,15,13678,725064,1,1 ,16,820,200784,20,9 ,15,13679,725072,1,1 ,16,820,200792,22,8 ,15,13680,725080,1,1 ,16,820,200800,20,9 ,15,13681,725088,1,1 ,16,820,200808,20,9 ,15,13682,725096,1,1 ,16,820,200816,20,9 ,15,13683,725104,1,1 ,16,820,200824,20,9 ,15,13684,725112,1,1 ,16,820,200832,21,8 ,15,13685,725120,1,1 ,20,18517,8065154,52,0 ,17,923,8589444,16,0 ,17,923,7016580,40,0 ,44,15152,725124,40,0 ,16,820,200840,22,9 ,15,13686,725128,1,1 ,16,820,200848,20,8 ,15,13687,725136,1,1 ,16,820,200856,22,10 ,15,13688,725144,1,1 ,16,820,200864,14,8 ,15,13689,725152,1,1 ,16,820,200872,15,8 ,15,13690,725160,1,1 ,16,820,200880,22,8 ,15,13691,725168,1,1 ,16,820,200888,20,9 ,15,13692,725176,1,1 ,16,820,200896,20,8 ,15,13693,725184,1,1 ,45,15153,5443780,24,0 ,44,15152,3346628,48,0 ,45,15153,4395204,16,0 ,16,820,200904,20,9 ,15,13694,725192,1,1 ,16,820,200912,14,8 ,15,13695,725200,1,1 ,16,820,200920,15,8 ,15,13696,725208,1,1 ,16,820,200928,21,8 ,15,13697,725216,1,1 ,20,19738,10686690,12,0 ,20,25727,26939618,148,0 ,16,820,200936,20,9 ,15,13698,725224,1,1 ,16,820,200944,14,8 ,15,13699,725232,1,1 ,16,820,200952,14,8 ,15,13700,725240,1,1 ,16,820,200960,14,8 ,15,13701,725248,1,1 ,17,923,10162436,24,0 ,17,923,7540996,40,0 ,44,15152,3870980,40,0 ,17,923,8589572,16,0 ,16,820,200968,20,8 ,15,13702,725256,1,1 ,16,820,200976,20,8 ,15,13703,725264,1,1 ,16,820,200984,22,8 ,15,13704,725272,1,1 ,16,820,200992,14,8 ,15,13705,725280,1,1 ,20,23753,21696802,108,0 ,16,820,201000,14,8 ,15,13706,725288,1,1 ,16,820,201008,14,8 ,15,13707,725296,1,1 ,16,820,201016,22,50 ,15,13708,725304,1,1 ,16,820,201024,22,8 ,15,13709,725312,1,1 ,20,19739,10686786,52,0 ,20,15835,1773890,52,0 ,17,923,8065348,24,0 ,44,15152,1249604,32,0 ,45,15153,4395332,16,0 ,16,820,201032,22,8 ,15,13710,725320,1,1 ,16,820,201040,22,10 ,15,13711,725328,1,1 ,16,820,201048,14,8 ,15,13712,725336,1,1 ,16,820,201056,20,8 ,15,13713,725344,1,1 ,20,22733,19599714,116,0 ,16,820,201064,18,8 ,15,13714,725352,1,1 ,16,820,201072,21,10 ,15,13715,725360,1,1 ,16,820,201080,20,9 ,15,13716,725368,1,1 ,16,820,201088,21,10 ,15,13717,725376,1,1 ,20,19427,10162562,128,0 ,20,26157,27988354,132,0 ,17,923,9638276,56,0 ,17,923,6492548,32,0 ,44,15152,2822532,88,0 ,44,15152,201092,16,0 ,45,15153,5443972,16,0 ,17,923,8589700,16,0 ,17,923,9113988,16,0 ,16,820,201096,21,11 ,15,13718,725384,1,1 ,16,820,201104,22,8 ,15,13719,725392,1,1 ,16,820,201112,18,10 ,15,13720,725400,1,1 ,16,820,201120,21,8 ,15,13721,725408,1,1 ,20,23062,20124066,24,0 ,16,820,201128,20,8 ,15,13722,725416,1,1 ,16,820,201136,14,8 ,15,13723,725424,1,1 ,16,820,201144,21,10 ,15,13724,725432,1,1 ,16,820,201152,20,9 ,15,13725,725440,1,1 ,17,923,10162628,32,0 ,17,923,7016900,24,0 ,44,15152,725444,40,0 ,45,15153,4395460,16,0 ,16,820,201160,14,8 ,15,13726,725448,1,1 ,16,820,201168,15,8 ,15,13727,725456,1,1 ,16,820,201176,21,8 ,15,13728,725464,1,1 ,16,820,201184,20,9 ,15,13729,725472,1,1 ,20,26428,29037026,360,0 ,16,820,201192,21,10 ,15,13730,725480,1,1 ,16,820,201200,22,12 ,15,13731,725488,1,1 ,16,820,201208,21,10 ,15,13732,725496,1,1 ,16,820,201216,22,8 ,15,13733,725504,1,1 ,17,923,9114116,24,0 ,44,15152,2298372,80,0 ,44,15152,201220,72,0 ,45,15153,5444100,16,0 ,17,923,8065540,40,0 ,17,923,8589828,16,0 ,16,820,201224,21,8 ,15,13734,725512,1,1 ,16,820,201232,20,8 ,15,13735,725520,1,1 ,16,820,201240,20,10 ,15,13736,725528,1,1 ,16,820,201248,20,10 ,15,13737,725536,1,1 ,20,18518,8065570,124,0 ,20,25953,27464226,108,0 ,16,820,201256,20,8 ,15,13738,725544,1,1 ,16,820,201264,14,8 ,15,13739,725552,1,1 ,16,820,201272,15,8 ,15,13740,725560,1,1 ,16,820,201280,14,8 ,15,13741,725568,1,1 ,20,16423,3347010,136,0 ,45,15153,4395588,16,0 ,17,923,7541316,32,0 ,44,15152,1249860,72,0 ,44,15152,3347012,24,0 ,44,15152,3871300,40,0 ,16,820,201288,14,8 ,15,13742,725576,1,1 ,16,820,201296,21,10 ,15,13743,725584,1,1 ,16,820,201304,22,12 ,15,13744,725592,1,1 ,16,820,201312,14,8 ,15,13745,725600,1,1 ,20,23063,20124258,136,0 ,16,820,201320,20,8 ,15,13746,725608,1,1 ,16,820,201328,20,8 ,15,13747,725616,1,1 ,16,820,201336,20,10 ,15,13748,725624,1,1 ,16,820,201344,20,12 ,15,13749,725632,1,1 ,17,923,8589956,16,0 ,17,923,7017092,64,0 ,17,923,6492804,32,0 ,45,15153,5444228,16,0 ,16,820,201352,20,8 ,15,13750,725640,1,1 ,16,820,201360,22,10 ,15,13751,725648,1,1 ,16,820,201368,20,10 ,15,13752,725656,1,1 ,16,820,201376,14,8 ,15,13753,725664,1,1 ,16,820,201384,20,8 ,15,13754,725672,1,1 ,16,820,201392,20,8 ,15,13755,725680,1,1 ,16,820,201400,20,13 ,15,13756,725688,1,1 ,16,820,201408,22,16 ,15,13757,725696,1,1 ,20,17553,5968578,116,0 ,20,15243,201410,160,0 ,17,923,10162884,24,0 ,45,15153,4395716,24,0 ,45,15153,4920004,120,0 ,17,923,9114308,32,0 ,16,820,201416,20,8 ,15,13758,725704,1,1 ,16,820,201424,22,10 ,15,13759,725712,1,1 ,16,820,201432,20,11 ,15,13760,725720,1,1 ,16,820,201440,21,11 ,15,13761,725728,1,1 ,20,19740,10687202,12,0 ,20,15836,1774306,64,0 ,16,820,201448,21,14 ,15,13762,725736,1,1 ,16,820,201456,21,8 ,15,13763,725744,1,1 ,16,820,201464,22,10 ,15,13764,725752,1,1 ,16,820,201472,20,8 ,15,13765,725760,1,1 ,17,923,8590084,16,0 ,44,15152,725764,128,0 ,44,15152,3347204,24,0 ,45,15153,5444356,24,0 ,16,820,201480,22,11 ,15,13766,725768,1,1 ,16,820,201488,22,9 ,15,13767,725776,1,1 ,16,820,201496,22,12 ,15,13768,725784,1,1 ,16,820,201504,20,9 ,15,13769,725792,1,1 ,20,18985,9114402,104,0 ,16,820,201512,22,8 ,15,13770,725800,1,1 ,16,820,201520,20,8 ,15,13771,725808,1,1 ,16,820,201528,18,8 ,15,13772,725816,1,1 ,16,820,201536,21,10 ,15,13773,725824,1,1 ,20,19741,10687298,12,0 ,17,923,9638724,40,0 ,17,923,7541572,32,0 ,17,923,8065860,40,0 ,16,820,201544,22,8 ,15,13774,725832,1,1 ,16,820,201552,21,8 ,15,13775,725840,1,1 ,16,820,201560,22,9 ,15,13776,725848,1,1 ,16,820,201568,22,10 ,15,13777,725856,1,1 ,16,820,201576,21,8 ,15,13778,725864,1,1 ,16,820,201584,20,9 ,15,13779,725872,1,1 ,16,820,201592,20,11 ,15,13780,725880,1,1 ,16,820,201600,20,9 ,15,13781,725888,1,1 ,17,923,10163076,40,0 ,17,923,6493060,40,0 ,44,15152,3871620,24,0 ,45,15153,4395908,16,0 ,17,923,8590212,16,0 ,16,820,201608,21,10 ,15,13782,725896,1,1 ,16,820,201616,20,8 ,15,13783,725904,1,1 ,16,820,201624,20,8 ,15,13784,725912,1,1 ,16,820,201632,22,12 ,15,13785,725920,1,1 ,20,19742,10687394,2780,0 ,16,820,201640,21,8 ,15,13786,725928,1,1 ,16,820,201648,21,8 ,15,13787,725936,1,1 ,16,820,201656,20,9 ,15,13788,725944,1,1 ,16,820,201664,20,10 ,15,13789,725952,1,1 ,20,25396,25891778,180,0 ,17,923,9114564,24,0 ,44,15152,3347396,24,0 ,45,15153,5444548,16,0 ,16,820,201672,22,9 ,15,13790,725960,1,1 ,16,820,201680,22,12 ,15,13791,725968,1,1 ,16,820,201688,22,9 ,15,13792,725976,1,1 ,16,820,201696,22,9 ,15,13793,725984,1,1 ,16,820,201704,20,9 ,15,13794,725992,1,1 ,16,820,201712,14,8 ,15,13795,726000,1,1 ,16,820,201720,15,8 ,15,13796,726008,1,1 ,16,820,201728,14,8 ,15,13797,726016,1,1 ,17,923,8590340,16,0 ,45,15153,4396036,16,0 ,16,820,201736,14,8 ,15,13798,726024,1,1 ,16,820,201744,14,8 ,15,13799,726032,1,1 ,16,820,201752,14,8 ,15,13800,726040,1,1 ,16,820,201760,20,8 ,15,13801,726048,1,1 ,20,23979,22221858,336,0 ,20,20994,15406114,324,0 ,16,820,201768,21,8 ,15,13802,726056,1,1 ,16,820,201776,20,14 ,15,13803,726064,1,1 ,16,820,201784,22,28 ,15,13804,726072,1,1 ,16,820,201792,14,8 ,15,13805,726080,1,1 ,20,20022,11211842,12,0 ,45,15153,5444676,24,0 ,17,923,7541828,24,0 ,44,15152,2823236,40,0 ,44,15152,201796,56,0 ,44,15152,3871812,24,0 ,16,820,201800,14,8 ,15,13806,726088,1,1 ,16,820,201808,21,8 ,15,13807,726096,1,1 ,16,820,201816,20,9 ,15,13808,726104,1,1 ,16,820,201824,20,8 ,15,13809,726112,1,1 ,20,21848,16979042,192,0 ,16,820,201832,20,8 ,15,13810,726120,1,1 ,16,820,201840,14,8 ,15,13811,726128,1,1 ,16,820,201848,14,8 ,15,13812,726136,1,1 ,16,820,201856,20,12 ,15,13813,726144,1,1 ,20,23754,21697666,204,0 ,20,15660,1250434,104,0 ,17,923,9639044,24,0 ,17,923,7017604,32,0 ,44,15152,2299012,96,0 ,44,15152,1250436,32,0 ,44,15152,3347588,24,0 ,45,15153,4396164,16,0 ,17,923,8066180,32,0 ,17,923,8590468,16,0 ,17,923,9114756,40,0 ,16,820,201864,20,8 ,15,13814,726152,1,1 ,16,820,201872,22,14 ,15,13815,726160,1,1 ,16,820,201880,20,8 ,15,13816,726168,1,1 ,16,820,201888,20,8 ,15,13817,726176,1,1 ,20,20023,11211938,12,0 ,16,820,201896,22,8 ,15,13818,726184,1,1 ,16,820,201904,14,8 ,15,13819,726192,1,1 ,16,820,201912,14,8 ,15,13820,726200,1,1 ,16,820,201920,15,8 ,15,13821,726208,1,1 ,20,16740,3871938,288,0 ,17,923,10163396,40,0 ,17,923,6493380,40,0 ,16,820,201928,14,8 ,15,13822,726216,1,1 ,16,820,201936,21,8 ,15,13823,726224,1,1 ,16,820,201944,20,8 ,15,13824,726232,1,1 ,16,820,201952,22,13 ,15,13825,726240,1,1 ,20,18253,7541986,12,0 ,20,15399,726242,276,0 ,20,15837,1774818,148,0 ,16,820,201960,14,8 ,15,13826,726248,1,1 ,16,820,201968,20,8 ,15,13827,726256,1,1 ,16,820,201976,21,10 ,15,13828,726264,1,1 ,16,820,201984,20,8 ,15,13829,726272,1,1 ,20,22734,19600642,116,0 ,20,18058,7017730,116,0 ,20,20024,11212034,52,0 ,17,923,8590596,16,0 ,17,923,7542020,40,0 ,44,15152,3872004,80,0 ,45,15153,4396292,16,0 ,45,15153,5444868,16,0 ,16,820,201992,20,10 ,15,13830,726280,1,1 ,16,820,202000,20,8 ,15,13831,726288,1,1 ,16,820,202008,22,9 ,15,13832,726296,1,1 ,16,820,202016,21,8 ,15,13833,726304,1,1 ,20,24548,23794978,216,0 ,16,820,202024,20,9 ,15,13834,726312,1,1 ,16,820,202032,21,10 ,15,13835,726320,1,1 ,16,820,202040,21,8 ,15,13836,726328,1,1 ,16,820,202048,20,8 ,15,13837,726336,1,1 ,20,18254,7542082,12,0 ,17,923,9639236,24,0 ,44,15152,3347780,16,0 ,16,820,202056,14,8 ,15,13838,726344,1,1 ,16,820,202064,20,8 ,15,13839,726352,1,1 ,16,820,202072,20,8 ,15,13840,726360,1,1 ,16,820,202080,21,10 ,15,13841,726368,1,1 ,16,820,202088,20,8 ,15,13842,726376,1,1 ,16,820,202096,21,10 ,15,13843,726384,1,1 ,16,820,202104,21,10 ,15,13844,726392,1,1 ,16,820,202112,21,10 ,15,13845,726400,1,1 ,20,19428,10163586,152,0 ,20,25954,27465090,364,0 ,20,25728,26940802,104,0 ,17,923,8590724,16,0 ,17,923,7017860,32,0 ,44,15152,2823556,112,0 ,44,15152,1250692,56,0 ,45,15153,4396420,16,0 ,45,15153,5444996,32,0 ,17,923,8066436,32,0 ,16,820,202120,21,12 ,15,13846,726408,1,1 ,16,820,202128,21,10 ,15,13847,726416,1,1 ,16,820,202136,21,10 ,15,13848,726424,1,1 ,16,820,202144,21,10 ,15,13849,726432,1,1 ,20,18255,7542178,828,0 ,20,26158,27989410,412,0 ,16,820,202152,21,10 ,15,13850,726440,1,1 ,16,820,202160,21,12 ,15,13851,726448,1,1 ,16,820,202168,20,12 ,15,13852,726456,1,1 ,16,820,202176,14,8 ,15,13853,726464,1,1 ,17,923,9115076,40,0 ,44,15152,3347908,16,0 ,16,820,202184,20,8 ,15,13854,726472,1,1 ,16,820,202192,22,8 ,15,13855,726480,1,1 ,16,820,202200,14,8 ,15,13856,726488,1,1 ,16,820,202208,20,10 ,15,13857,726496,1,1 ,16,820,202216,20,8 ,15,13858,726504,1,1 ,16,820,202224,20,8 ,15,13859,726512,1,1 ,16,820,202232,22,8 ,15,13860,726520,1,1 ,16,820,202240,20,8 ,15,13861,726528,1,1 ,20,18519,8066562,52,0 ,17,923,10163716,32,0 ,17,923,6493700,32,0 ,44,15152,202244,24,0 ,45,15153,4396548,16,0 ,17,923,8590852,16,0 ,17,923,9639428,24,0 ,16,820,202248,20,8 ,15,13862,726536,1,1 ,16,820,202256,21,8 ,15,13863,726544,1,1 ,16,820,202264,21,8 ,15,13864,726552,1,1 ,16,820,202272,20,8 ,15,13865,726560,1,1 ,20,20780,13833762,12,0 ,16,820,202280,20,8 ,15,13866,726568,1,1 ,16,820,202288,20,8 ,15,13867,726576,1,1 ,16,820,202296,21,8 ,15,13868,726584,1,1 ,16,820,202304,20,8 ,15,13869,726592,1,1 ,44,15152,3348036,32,0 ,17,923,7542340,24,0 ,16,820,202312,20,8 ,15,13870,726600,1,1 ,16,820,202320,21,8 ,15,13871,726608,1,1 ,16,820,202328,20,8 ,15,13872,726616,1,1 ,16,820,202336,20,8 ,15,13873,726624,1,1 ,20,18986,9115234,64,0 ,20,17554,5969506,80,0 ,16,820,202344,20,8 ,15,13874,726632,1,1 ,16,820,202352,20,8 ,15,13875,726640,1,1 ,16,820,202360,21,8 ,15,13876,726648,1,1 ,16,820,202368,20,8 ,15,13877,726656,1,1 ,20,20781,13833858,128,0 ,20,16424,3348098,136,0 ,17,923,8590980,16,0 ,17,923,7018116,40,0 ,45,15153,4396676,32,0 ,45,15153,4920964,392,0 ,45,15153,5445252,24,0 ,17,923,8066692,24,0 ,16,820,202376,20,8 ,15,13878,726664,1,1 ,16,820,202384,20,8 ,15,13879,726672,1,1 ,16,820,202392,20,8 ,15,13880,726680,1,1 ,16,820,202400,20,8 ,15,13881,726688,1,1 ,20,23064,20125346,144,0 ,20,20025,11212450,12,0 ,16,820,202408,20,8 ,15,13882,726696,1,1 ,16,820,202416,20,8 ,15,13883,726704,1,1 ,16,820,202424,20,8 ,15,13884,726712,1,1 ,16,820,202432,20,8 ,15,13885,726720,1,1 ,17,923,9639620,16,0 ,44,15152,202436,24,0 ,16,820,202440,20,8 ,15,13886,726728,1,1 ,16,820,202448,20,10 ,15,13887,726736,1,1 ,16,820,202456,18,8 ,15,13888,726744,1,1 ,16,820,202464,20,8 ,15,13889,726752,1,1 ,16,820,202472,20,8 ,15,13890,726760,1,1 ,16,820,202480,14,8 ,15,13891,726768,1,1 ,16,820,202488,21,10 ,15,13892,726776,1,1 ,16,820,202496,22,8 ,15,13893,726784,1,1 ,20,20026,11212546,276,0 ,17,923,10163972,40,0 ,17,923,7542532,32,0 ,17,923,6493956,40,0 ,44,15152,726788,32,0 ,17,923,8591108,16,0 ,17,923,9115396,16,0 ,16,820,202504,20,8 ,15,13894,726792,1,1 ,16,820,202512,22,8 ,15,13895,726800,1,1 ,16,820,202520,18,8 ,15,13896,726808,1,1 ,16,820,202528,21,10 ,15,13897,726816,1,1 ,16,820,202536,22,8 ,15,13898,726824,1,1 ,16,820,202544,21,10 ,15,13899,726832,1,1 ,16,820,202552,21,10 ,15,13900,726840,1,1 ,16,820,202560,20,8 ,15,13901,726848,1,1 ,17,923,9639748,32,0 ,44,15152,1251140,32,0 ,44,15152,3348292,24,0 ,45,15153,5445444,56,0 ,17,923,8066884,32,0 ,16,820,202568,20,8 ,15,13902,726856,1,1 ,16,820,202576,14,8 ,15,13903,726864,1,1 ,16,820,202584,14,8 ,15,13904,726872,1,1 ,16,820,202592,14,8 ,15,13905,726880,1,1 ,16,820,202600,20,12 ,15,13906,726888,1,1 ,16,820,202608,14,8 ,15,13907,726896,1,1 ,16,820,202616,22,8 ,15,13908,726904,1,1 ,16,820,202624,20,8 ,15,13909,726912,1,1 ,17,923,9115524,32,0 ,44,15152,2299780,48,0 ,44,15152,202628,48,0 ,44,15152,3872644,40,0 ,45,15153,4396932,16,0 ,17,923,8591236,16,0 ,16,820,202632,20,8 ,15,13910,726920,1,1 ,16,820,202640,22,8 ,15,13911,726928,1,1 ,16,820,202648,14,8 ,15,13912,726936,1,1 ,16,820,202656,20,8 ,15,13913,726944,1,1 ,20,18520,8066978,204,0 ,16,820,202664,21,10 ,15,13914,726952,1,1 ,16,820,202672,21,10 ,15,13915,726960,1,1 ,16,820,202680,20,8 ,15,13916,726968,1,1 ,16,820,202688,20,12 ,15,13917,726976,1,1 ,20,15661,1251266,72,0 ,20,15244,202690,1080,0 ,17,923,7018436,40,0 ,16,820,202696,20,8 ,15,13918,726984,1,1 ,16,820,202704,20,8 ,15,13919,726992,1,1 ,16,820,202712,21,10 ,15,13920,727000,1,1 ,16,820,202720,21,10 ,15,13921,727008,1,1 ,20,24975,24844258,680,0 ,16,820,202728,20,8 ,15,13922,727016,1,1 ,16,820,202736,14,8 ,15,13923,727024,1,1 ,16,820,202744,22,8 ,15,13924,727032,1,1 ,16,820,202752,14,8 ,15,13925,727040,1,1 ,17,923,8591364,16,0 ,17,923,7542788,32,0 ,44,15152,727044,24,0 ,44,15152,3348484,24,0 ,45,15153,4397060,16,0 ,16,820,202760,20,12 ,15,13926,727048,1,1 ,16,820,202768,22,8 ,15,13927,727056,1,1 ,16,820,202776,20,8 ,15,13928,727064,1,1 ,16,820,202784,20,8 ,15,13929,727072,1,1 ,16,820,202792,20,8 ,15,13930,727080,1,1 ,16,820,202800,22,8 ,15,13931,727088,1,1 ,16,820,202808,22,10 ,15,13932,727096,1,1 ,16,820,202816,20,8 ,15,13933,727104,1,1 ,17,923,10164292,48,0 ,17,923,6494276,32,0 ,44,15152,1775684,144,0 ,44,15152,1251396,104,0 ,17,923,8067140,40,0 ,17,923,9640004,32,0 ,16,820,202824,20,8 ,15,13934,727112,1,1 ,16,820,202832,22,17 ,15,13935,727120,1,1 ,16,820,202840,14,8 ,15,13936,727128,1,1 ,16,820,202848,20,12 ,15,13937,727136,1,1 ,20,22346,18552930,476,0 ,20,18987,9115746,204,0 ,16,820,202856,20,10 ,15,13938,727144,1,1 ,16,820,202864,20,9 ,15,13939,727152,1,1 ,16,820,202872,22,9 ,15,13940,727160,1,1 ,16,820,202880,14,8 ,15,13941,727168,1,1 ,17,923,9115780,32,0 ,45,15153,4397188,48,0 ,17,923,8591492,16,0 ,16,820,202888,20,12 ,15,13942,727176,1,1 ,16,820,202896,20,8 ,15,13943,727184,1,1 ,16,820,202904,20,10 ,15,13944,727192,1,1 ,16,820,202912,20,8 ,15,13945,727200,1,1 ,20,22735,19601570,116,0 ,20,18059,7018658,48,0 ,16,820,202920,14,8 ,15,13946,727208,1,1 ,16,820,202928,21,10 ,15,13947,727216,1,1 ,16,820,202936,22,8 ,15,13948,727224,1,1 ,16,820,202944,14,8 ,15,13949,727232,1,1 ,20,21347,15931586,408,0 ,20,25729,26941634,132,0 ,44,15152,3872964,24,0 ,44,15152,727236,80,0 ,44,15152,3348676,24,0 ,16,820,202952,21,10 ,15,13950,727240,1,1 ,16,820,202960,22,10 ,15,13951,727248,1,1 ,16,820,202968,21,10 ,15,13952,727256,1,1 ,16,820,202976,22,8 ,15,13953,727264,1,1 ,20,17555,5970146,84,0 ,16,820,202984,21,10 ,15,13954,727272,1,1 ,16,820,202992,22,10 ,15,13955,727280,1,1 ,16,820,203000,21,10 ,15,13956,727288,1,1 ,16,820,203008,22,8 ,15,13957,727296,1,1 ,20,18710,8591618,12,0 ,17,923,8591620,16,0 ,17,923,7543044,32,0 ,17,923,7018756,40,0 ,44,15152,2824452,120,0 ,44,15152,2300164,24,0 ,44,15152,203012,48,0 ,45,15153,5445892,16,0 ,16,820,203016,20,8 ,15,13958,727304,1,1 ,16,820,203024,14,8 ,15,13959,727312,1,1 ,16,820,203032,20,8 ,15,13960,727320,1,1 ,16,820,203040,22,8 ,15,13961,727328,1,1 ,16,820,203048,20,8 ,15,13962,727336,1,1 ,16,820,203056,20,8 ,15,13963,727344,1,1 ,16,820,203064,20,8 ,15,13964,727352,1,1 ,16,820,203072,14,8 ,15,13965,727360,1,1 ,17,923,9640260,16,0 ,17,923,6494532,40,0 ,16,820,203080,20,12 ,15,13966,727368,1,1 ,16,820,203088,22,8 ,15,13967,727376,1,1 ,16,820,203096,20,11 ,15,13968,727384,1,1 ,16,820,203104,20,8 ,15,13969,727392,1,1 ,20,18711,8591714,12,0 ,20,25397,25893218,284,0 ,16,820,203112,20,8 ,15,13970,727400,1,1 ,16,820,203120,20,8 ,15,13971,727408,1,1 ,16,820,203128,22,8 ,15,13972,727416,1,1 ,16,820,203136,14,8 ,15,13973,727424,1,1 ,20,24397,23271810,216,0 ,20,15838,1776002,776,0 ,20,22550,19077506,112,0 ,17,923,9116036,32,0 ,44,15152,3348868,24,0 ,44,15152,3873156,64,0 ,45,15153,5446020,16,0 ,17,923,8067460,40,0 ,17,923,8591748,16,0 ,16,820,203144,20,8 ,15,13974,727432,1,1 ,16,820,203152,14,8 ,15,13975,727440,1,1 ,16,820,203160,21,8 ,15,13976,727448,1,1 ,16,820,203168,20,8 ,15,13977,727456,1,1 ,20,25553,26417570,192,0 ,16,820,203176,22,9 ,15,13978,727464,1,1 ,16,820,203184,20,8 ,15,13979,727472,1,1 ,16,820,203192,20,8 ,15,13980,727480,1,1 ,16,820,203200,20,8 ,15,13981,727488,1,1 ,20,23382,20650434,216,0 ,20,18712,8591810,52,0 ,17,923,10164676,32,0 ,44,15152,2300356,40,0 ,17,923,9640388,64,0 ,16,820,203208,20,8 ,15,13982,727496,1,1 ,16,820,203216,20,9 ,15,13983,727504,1,1 ,16,820,203224,22,8 ,15,13984,727512,1,1 ,16,820,203232,14,8 ,15,13985,727520,1,1 ,16,820,203240,20,12 ,15,13986,727528,1,1 ,16,820,203248,14,8 ,15,13987,727536,1,1 ,16,820,203256,20,8 ,15,13988,727544,1,1 ,16,820,203264,14,8 ,15,13989,727552,1,1 ,20,15662,1251842,60,0 ,17,923,8591876,16,0 ,17,923,7543300,32,0 ,45,15153,4397572,16,0 ,45,15153,5446148,56,0 ,16,820,203272,14,8 ,15,13990,727560,1,1 ,16,820,203280,20,12 ,15,13991,727568,1,1 ,16,820,203288,20,8 ,15,13992,727576,1,1 ,16,820,203296,14,8 ,15,13993,727584,1,1 ,20,18060,7019042,12,0 ,16,820,203304,22,9 ,15,13994,727592,1,1 ,16,820,203312,20,8 ,15,13995,727600,1,1 ,16,820,203320,22,8 ,15,13996,727608,1,1 ,16,820,203328,20,10 ,15,13997,727616,1,1 ,20,19429,10164802,204,0 ,44,15152,3349060,32,0 ,17,923,7019076,32,0 ,16,820,203336,22,8 ,15,13998,727624,1,1 ,16,820,203344,21,10 ,15,13999,727632,1,1 ,16,820,203352,20,9 ,15,14000,727640,1,1 ,16,820,203360,22,13 ,15,14001,727648,1,1 ,20,21849,16980578,468,0 ,20,24732,24320610,1216,0 ,16,820,203368,20,9 ,15,14002,727656,1,1 ,16,820,203376,14,8 ,15,14003,727664,1,1 ,16,820,203384,14,8 ,15,14004,727672,1,1 ,16,820,203392,14,8 ,15,14005,727680,1,1 ,20,20782,13834882,128,0 ,20,18061,7019138,100,0 ,17,923,9116292,40,0 ,17,923,6494852,40,0 ,44,15152,203396,64,0 ,45,15153,4397700,224,0 ,17,923,8592004,16,0 ,16,820,203400,14,8 ,15,14006,727688,1,1 ,16,820,203408,14,8 ,15,14007,727696,1,1 ,16,820,203416,14,8 ,15,14008,727704,1,1 ,16,820,203424,18,17 ,15,14009,727712,1,1 ,16,820,203432,14,8 ,15,14010,727720,1,1 ,16,820,203440,14,8 ,15,14011,727728,1,1 ,16,820,203448,14,8 ,15,14012,727736,1,1 ,16,820,203456,15,8 ,15,14013,727744,1,1 ,20,16425,3349186,12,0 ,17,923,10164932,32,0 ,17,923,8067780,48,0 ,16,820,203464,14,8 ,15,14014,727752,1,1 ,16,820,203472,14,8 ,15,14015,727760,1,1 ,16,820,203480,14,8 ,15,14016,727768,1,1 ,16,820,203488,14,8 ,15,14017,727776,1,1 ,20,23755,21699298,24,0 ,16,820,203496,20,10 ,15,14018,727784,1,1 ,16,820,203504,14,8 ,15,14019,727792,1,1 ,16,820,203512,14,8 ,15,14020,727800,1,1 ,16,820,203520,20,8 ,15,14021,727808,1,1 ,17,923,8592132,16,0 ,17,923,7543556,40,0 ,44,15152,2300676,48,0 ,16,820,203528,14,8 ,15,14022,727816,1,1 ,16,820,203536,20,8 ,15,14023,727824,1,1 ,16,820,203544,14,8 ,15,14024,727832,1,1 ,16,820,203552,14,8 ,15,14025,727840,1,1 ,20,23065,20126498,100,0 ,20,16426,3349282,172,0 ,16,820,203560,14,8 ,15,14026,727848,1,1 ,16,820,203568,14,8 ,15,14027,727856,1,1 ,16,820,203576,14,8 ,15,14028,727864,1,1 ,16,820,203584,20,8 ,15,14029,727872,1,1 ,44,15152,3349316,24,0 ,17,923,7019332,40,0 ,44,15152,727876,32,0 ,16,820,203592,14,8 ,15,14030,727880,1,1 ,16,820,203600,14,8 ,15,14031,727888,1,1 ,16,820,203608,20,8 ,15,14032,727896,1,1 ,16,820,203616,20,8 ,15,14033,727904,1,1 ,20,18713,8592226,620,0 ,20,16184,2825058,212,0 ,16,820,203624,14,8 ,15,14034,727912,1,1 ,16,820,203632,14,8 ,15,14035,727920,1,1 ,16,820,203640,14,8 ,15,14036,727928,1,1 ,16,820,203648,14,8 ,15,14037,727936,1,1 ,20,17556,5970818,488,0 ,17,923,8592260,16,0 ,44,15152,1252228,80,0 ,44,15152,3873668,24,0 ,16,820,203656,14,8 ,15,14038,727944,1,1 ,16,820,203664,14,8 ,15,14039,727952,1,1 ,16,820,203672,14,8 ,15,14040,727960,1,1 ,16,820,203680,14,8 ,15,14041,727968,1,1 ,20,23756,21699490,760,0 ,16,820,203688,14,8 ,15,14042,727976,1,1 ,16,820,203696,21,10 ,15,14043,727984,1,1 ,16,820,203704,20,8 ,15,14044,727992,1,1 ,16,820,203712,22,9 ,15,14045,728000,1,1 ,17,923,10165188,32,0 ,17,923,6495172,32,0 ,45,15153,5446596,56,0 ,17,923,9116612,40,0 ,17,923,9640900,24,0 ,16,820,203720,14,8 ,15,14046,728008,1,1 ,16,820,203728,14,8 ,15,14047,728016,1,1 ,16,820,203736,14,8 ,15,14048,728024,1,1 ,16,820,203744,14,8 ,15,14049,728032,1,1 ,20,24549,23796706,40,0 ,20,15663,1252322,152,0 ,16,820,203752,22,11 ,15,14050,728040,1,1 ,16,820,203760,22,10 ,15,14051,728048,1,1 ,16,820,203768,22,16 ,15,14052,728056,1,1 ,16,820,203776,22,11 ,15,14053,728064,1,1 ,17,923,8592388,16,0 ,44,15152,3349508,16,0 ,16,820,203784,22,11 ,15,14054,728072,1,1 ,16,820,203792,22,10 ,15,14055,728080,1,1 ,16,820,203800,20,8 ,15,14056,728088,1,1 ,16,820,203808,20,8 ,15,14057,728096,1,1 ,16,820,203816,20,8 ,15,14058,728104,1,1 ,16,820,203824,18,8 ,15,14059,728112,1,1 ,16,820,203832,14,8 ,15,14060,728120,1,1 ,16,820,203840,14,8 ,15,14061,728128,1,1 ,20,22736,19602498,116,0 ,17,923,8068164,24,0 ,17,923,7543876,40,0 ,44,15152,728132,32,0 ,44,15152,3873860,24,0 ,16,820,203848,20,8 ,15,14062,728136,1,1 ,16,820,203856,20,8 ,15,14063,728144,1,1 ,16,820,203864,22,8 ,15,14064,728152,1,1 ,16,820,203872,22,8 ,15,14065,728160,1,1 ,16,820,203880,21,10 ,15,14066,728168,1,1 ,16,820,203888,21,10 ,15,14067,728176,1,1 ,16,820,203896,22,8 ,15,14068,728184,1,1 ,16,820,203904,18,8 ,15,14069,728192,1,1 ,17,923,9641092,24,0 ,17,923,7019652,40,0 ,44,15152,2301060,96,0 ,44,15152,203908,208,0 ,44,15152,3349636,40,0 ,17,923,8592516,16,0 ,16,820,203912,20,8 ,15,14070,728200,1,1 ,16,820,203920,20,8 ,15,14071,728208,1,1 ,16,820,203928,20,8 ,15,14072,728216,1,1 ,16,820,203936,20,8 ,15,14073,728224,1,1 ,16,820,203944,18,8 ,15,14074,728232,1,1 ,16,820,203952,22,8 ,15,14075,728240,1,1 ,16,820,203960,21,10 ,15,14076,728248,1,1 ,16,820,203968,21,10 ,15,14077,728256,1,1 ,17,923,10165444,32,0 ,17,923,6495428,40,0 ,44,15152,2825412,16,0 ,44,15152,1776836,16,0 ,16,820,203976,22,8 ,15,14078,728264,1,1 ,16,820,203984,20,8 ,15,14079,728272,1,1 ,16,820,203992,20,8 ,15,14080,728280,1,1 ,16,820,204000,22,8 ,15,14081,728288,1,1 ,20,25730,26942690,148,0 ,16,820,204008,14,8 ,15,14082,728296,1,1 ,16,820,204016,20,10 ,15,14083,728304,1,1 ,16,820,204024,14,8 ,15,14084,728312,1,1 ,16,820,204032,14,8 ,15,14085,728320,1,1 ,20,22551,19078402,112,0 ,17,923,9116932,40,0 ,44,15152,3874052,24,0 ,17,923,8068356,72,0 ,17,923,8592644,16,0 ,16,820,204040,14,8 ,15,14086,728328,1,1 ,16,820,204048,21,8 ,15,14087,728336,1,1 ,16,820,204056,14,8 ,15,14088,728344,1,1 ,16,820,204064,20,14 ,15,14089,728352,1,1 ,20,24550,23797026,804,0 ,20,26429,29039906,296,0 ,16,820,204072,22,28 ,15,14090,728360,1,1 ,16,820,204080,22,10 ,15,14091,728368,1,1 ,16,820,204088,20,12 ,15,14092,728376,1,1 ,16,820,204096,20,10 ,15,14093,728384,1,1 ,17,923,9641284,32,0 ,44,15152,2825540,56,0 ,44,15152,1776964,16,0 ,44,15152,728388,24,0 ,16,820,204104,20,10 ,15,14094,728392,1,1 ,16,820,204112,22,12 ,15,14095,728400,1,1 ,16,820,204120,20,10 ,15,14096,728408,1,1 ,16,820,204128,18,8 ,15,14097,728416,1,1 ,16,820,204136,21,10 ,15,14098,728424,1,1 ,16,820,204144,21,10 ,15,14099,728432,1,1 ,16,820,204152,20,10 ,15,14100,728440,1,1 ,16,820,204160,20,10 ,15,14101,728448,1,1 ,20,15400,728450,12,0 ,17,923,8592772,16,0 ,17,923,7544196,32,0 ,45,15153,5447044,16,0 ,16,820,204168,21,10 ,15,14102,728456,1,1 ,16,820,204176,21,10 ,15,14103,728464,1,1 ,16,820,204184,20,10 ,15,14104,728472,1,1 ,16,820,204192,20,8 ,15,14105,728480,1,1 ,20,18062,7019938,84,0 ,16,820,204200,20,8 ,15,14106,728488,1,1 ,16,820,204208,15,8 ,15,14107,728496,1,1 ,16,820,204216,20,8 ,15,14108,728504,1,1 ,16,820,204224,22,12 ,15,14109,728512,1,1 ,20,16741,3874242,72,0 ,17,923,10165700,24,0 ,17,923,7019972,48,0 ,44,15152,1777092,16,0 ,44,15152,3349956,40,0 ,44,15152,3874244,24,0 ,16,820,204232,20,8 ,15,14110,728520,1,1 ,16,820,204240,20,8 ,15,14111,728528,1,1 ,16,820,204248,20,9 ,15,14112,728536,1,1 ,16,820,204256,22,9 ,15,14113,728544,1,1 ,20,17378,5447138,408,0 ,20,15401,728546,328,0 ,16,820,204264,20,12 ,15,14114,728552,1,1 ,16,820,204272,22,8 ,15,14115,728560,1,1 ,16,820,204280,14,8 ,15,14116,728568,1,1 ,16,820,204288,22,10 ,15,14117,728576,1,1 ,20,18521,8068610,128,0 ,17,923,8592900,16,0 ,17,923,6495748,24,0 ,44,15152,1252868,24,0 ,44,15152,728580,32,0 ,45,15153,5447172,16,0 ,16,820,204296,20,10 ,15,14118,728584,1,1 ,16,820,204304,14,8 ,15,14119,728592,1,1 ,16,820,204312,20,10 ,15,14120,728600,1,1 ,16,820,204320,22,12 ,15,14121,728608,1,1 ,16,820,204328,15,8 ,15,14122,728616,1,1 ,16,820,204336,15,8 ,15,14123,728624,1,1 ,16,820,204344,14,8 ,15,14124,728632,1,1 ,16,820,204352,22,20 ,15,14125,728640,1,1 ,20,23066,20127298,24,0 ,20,20995,15408706,716,0 ,17,923,9641540,40,0 ,44,15152,1777220,128,0 ,17,923,9117252,24,0 ,16,820,204360,20,9 ,15,14126,728648,1,1 ,16,820,204368,20,9 ,15,14127,728656,1,1 ,16,820,204376,20,9 ,15,14128,728664,1,1 ,16,820,204384,20,8 ,15,14129,728672,1,1 ,16,820,204392,20,8 ,15,14130,728680,1,1 ,16,820,204400,20,8 ,15,14131,728688,1,1 ,16,820,204408,14,8 ,15,14132,728696,1,1 ,16,820,204416,20,8 ,15,14133,728704,1,1 ,20,20783,13835906,56,0 ,17,923,10165892,32,0 ,17,923,7544452,40,0 ,44,15152,3874436,24,0 ,45,15153,5447300,16,0 ,17,923,8593028,16,0 ,16,820,204424,20,9 ,15,14134,728712,1,1 ,16,820,204432,14,8 ,15,14135,728720,1,1 ,16,820,204440,15,8 ,15,14136,728728,1,1 ,16,820,204448,14,8 ,15,14137,728736,1,1 ,20,23980,22224546,376,0 ,16,820,204456,15,8 ,15,14138,728744,1,1 ,16,820,204464,14,8 ,15,14139,728752,1,1 ,16,820,204472,14,8 ,15,14140,728760,1,1 ,16,820,204480,15,8 ,15,14141,728768,1,1 ,20,18988,9117378,52,0 ,44,15152,1253060,32,0 ,17,923,6495940,24,0 ,16,820,204488,14,8 ,15,14142,728776,1,1 ,16,820,204496,15,8 ,15,14143,728784,1,1 ,16,820,204504,14,8 ,15,14144,728792,1,1 ,16,820,204512,15,8 ,15,14145,728800,1,1 ,16,820,204520,14,8 ,15,14146,728808,1,1 ,16,820,204528,14,8 ,15,14147,728816,1,1 ,16,820,204536,22,19 ,15,14148,728824,1,1 ,16,820,204544,22,9 ,15,14149,728832,1,1 ,20,23067,20127490,684,0 ,17,923,9117444,48,0 ,44,15152,2825988,56,0 ,44,15152,728836,32,0 ,44,15152,3350276,24,0 ,45,15153,5447428,16,0 ,17,923,8593156,16,0 ,16,820,204552,22,12 ,15,14150,728840,1,1 ,16,820,204560,20,11 ,15,14151,728848,1,1 ,16,820,204568,22,10 ,15,14152,728856,1,1 ,16,820,204576,20,9 ,15,14153,728864,1,1 ,16,820,204584,20,12 ,15,14154,728872,1,1 ,16,820,204592,20,9 ,15,14155,728880,1,1 ,16,820,204600,22,11 ,15,14156,728888,1,1 ,16,820,204608,22,12 ,15,14157,728896,1,1 ,17,923,8068932,40,0 ,17,923,7020356,40,0 ,44,15152,3874628,104,0 ,16,820,204616,20,8 ,15,14158,728904,1,1 ,16,820,204624,14,8 ,15,14159,728912,1,1 ,16,820,204632,14,8 ,15,14160,728920,1,1 ,16,820,204640,15,8 ,15,14161,728928,1,1 ,16,820,204648,21,8 ,15,14162,728936,1,1 ,16,820,204656,22,13 ,15,14163,728944,1,1 ,16,820,204664,22,8 ,15,14164,728952,1,1 ,16,820,204672,20,9 ,15,14165,728960,1,1 ,17,923,10166148,24,0 ,17,923,6496132,24,0 ,44,15152,2301828,384,0 ,45,15153,5447556,16,0 ,17,923,8593284,16,0 ,17,923,9641860,32,0 ,16,820,204680,22,10 ,15,14166,728968,1,1 ,16,820,204688,20,8 ,15,14167,728976,1,1 ,16,820,204696,20,8 ,15,14168,728984,1,1 ,16,820,204704,20,9 ,15,14169,728992,1,1 ,20,20027,11214754,192,0 ,20,25554,26419106,212,0 ,16,820,204712,14,8 ,15,14170,729000,1,1 ,16,820,204720,14,8 ,15,14171,729008,1,1 ,16,820,204728,14,8 ,15,14172,729016,1,1 ,16,820,204736,20,8 ,15,14173,729024,1,1 ,44,15152,3350468,32,0 ,17,923,7544772,24,0 ,44,15152,1253316,160,0 ,16,820,204744,20,8 ,15,14174,729032,1,1 ,16,820,204752,20,8 ,15,14175,729040,1,1 ,16,820,204760,20,8 ,15,14176,729048,1,1 ,16,820,204768,20,9 ,15,14177,729056,1,1 ,20,22737,19603426,40,0 ,16,820,204776,20,9 ,15,14178,729064,1,1 ,16,820,204784,20,8 ,15,14179,729072,1,1 ,16,820,204792,22,8 ,15,14180,729080,1,1 ,16,820,204800,21,8 ,15,14181,729088,1,1 ,20,16742,3874818,484,0 ,17,923,8593412,16,0 ,44,15152,729092,24,0 ,45,15153,5447684,32,0 ,16,820,204808,21,11 ,15,14182,729096,1,1 ,16,820,204816,22,14 ,15,14183,729104,1,1 ,16,820,204824,20,8 ,15,14184,729112,1,1 ,16,820,204832,20,8 ,15,14185,729120,1,1 ,16,820,204840,15,8 ,15,14186,729128,1,1 ,16,820,204848,21,10 ,15,14187,729136,1,1 ,16,820,204856,20,13 ,15,14188,729144,1,1 ,16,820,204864,14,8 ,15,14189,729152,1,1 ,20,24398,23273538,272,0 ,20,18063,7020610,380,0 ,20,20784,13836354,120,0 ,17,923,10166340,32,0 ,17,923,6496324,40,0 ,16,820,204872,14,8 ,15,14190,729160,1,1 ,16,820,204880,14,8 ,15,14191,729168,1,1 ,16,820,204888,14,8 ,15,14192,729176,1,1 ,16,820,204896,15,8 ,15,14193,729184,1,1 ,20,18989,9117794,120,0 ,16,820,204904,20,10 ,15,14194,729192,1,1 ,16,820,204912,21,10 ,15,14195,729200,1,1 ,16,820,204920,21,10 ,15,14196,729208,1,1 ,16,820,204928,20,10 ,15,14197,729216,1,1 ,20,23383,20652162,376,0 ,20,16427,3350658,80,0 ,20,22552,19079298,112,0 ,17,923,9642116,32,0 ,17,923,7544964,56,0 ,17,923,7020676,40,0 ,17,923,8069252,40,0 ,17,923,8593540,16,0 ,17,923,9117828,32,0 ,16,820,204936,20,10 ,15,14198,729224,1,1 ,16,820,204944,21,10 ,15,14199,729232,1,1 ,16,820,204952,26,10 ,15,14200,729240,1,1 ,16,820,204960,20,8 ,15,14201,729248,1,1 ,20,19430,10166434,128,0 ,20,15664,1253538,428,0 ,16,820,204968,18,8 ,15,14202,729256,1,1 ,16,820,204976,14,8 ,15,14203,729264,1,1 ,16,820,204984,14,8 ,15,14204,729272,1,1 ,16,820,204992,20,8 ,15,14205,729280,1,1 ,44,15152,3350724,16,0 ,44,15152,2826436,40,0 ,44,15152,729284,24,0 ,16,820,205000,20,8 ,15,14206,729288,1,1 ,16,820,205008,14,8 ,15,14207,729296,1,1 ,16,820,205016,14,8 ,15,14208,729304,1,1 ,16,820,205024,22,13 ,15,14209,729312,1,1 ,20,25955,27468002,428,0 ,16,820,205032,26,20 ,15,14210,729320,1,1 ,16,820,205040,22,11 ,15,14211,729328,1,1 ,16,820,205048,21,10 ,15,14212,729336,1,1 ,16,820,205056,26,10 ,15,14213,729344,1,1 ,17,923,8593668,16,0 ,45,15153,5447940,24,0 ,16,820,205064,15,8 ,15,14214,729352,1,1 ,16,820,205072,21,8 ,15,14215,729360,1,1 ,16,820,205080,22,9 ,15,14216,729368,1,1 ,16,820,205088,22,9 ,15,14217,729376,1,1 ,20,22738,19603746,76,0 ,16,820,205096,18,8 ,15,14218,729384,1,1 ,16,820,205104,22,9 ,15,14219,729392,1,1 ,16,820,205112,21,8 ,15,14220,729400,1,1 ,16,820,205120,20,8 ,15,14221,729408,1,1 ,17,923,10166596,40,0 ,44,15152,3350852,32,0 ,16,820,205128,20,13 ,15,14222,729416,1,1 ,16,820,205136,20,9 ,15,14223,729424,1,1 ,16,820,205144,22,9 ,15,14224,729432,1,1 ,16,820,205152,22,14 ,15,14225,729440,1,1 ,16,820,205160,22,10 ,15,14226,729448,1,1 ,16,820,205168,14,8 ,15,14227,729456,1,1 ,16,820,205176,21,8 ,15,14228,729464,1,1 ,16,820,205184,22,9 ,15,14229,729472,1,1 ,20,25731,26943874,396,0 ,17,923,9642372,24,0 ,17,923,6496644,32,0 ,44,15152,729476,32,0 ,45,15153,4399492,16,0 ,17,923,8593796,16,0 ,17,923,9118084,24,0 ,16,820,205192,20,16 ,15,14230,729480,1,1 ,16,820,205200,20,12 ,15,14231,729488,1,1 ,16,820,205208,20,8 ,15,14232,729496,1,1 ,16,820,205216,20,8 ,15,14233,729504,1,1 ,16,820,205224,20,8 ,15,14234,729512,1,1 ,16,820,205232,21,8 ,15,14235,729520,1,1 ,16,820,205240,22,9 ,15,14236,729528,1,1 ,16,820,205248,20,9 ,15,14237,729536,1,1 ,17,923,8069572,24,0 ,17,923,7020996,48,0 ,45,15153,5448132,24,0 ,16,820,205256,22,20 ,15,14238,729544,1,1 ,16,820,205264,22,9 ,15,14239,729552,1,1 ,16,820,205272,21,8 ,15,14240,729560,1,1 ,16,820,205280,22,11 ,15,14241,729568,1,1 ,16,820,205288,21,8 ,15,14242,729576,1,1 ,16,820,205296,22,11 ,15,14243,729584,1,1 ,16,820,205304,21,8 ,15,14244,729592,1,1 ,16,820,205312,22,11 ,15,14245,729600,1,1 ,20,18522,8069634,136,0 ,20,16185,2826754,56,0 ,17,923,8593924,16,0 ,44,15152,2826756,16,0 ,45,15153,4399620,16,0 ,16,820,205320,21,8 ,15,14246,729608,1,1 ,16,820,205328,20,8 ,15,14247,729616,1,1 ,16,820,205336,20,13 ,15,14248,729624,1,1 ,16,820,205344,20,9 ,15,14249,729632,1,1 ,16,820,205352,20,9 ,15,14250,729640,1,1 ,16,820,205360,21,11 ,15,14251,729648,1,1 ,16,820,205368,22,9 ,15,14252,729656,1,1 ,16,820,205376,22,11 ,15,14253,729664,1,1 ,20,25398,25895490,144,0 ,17,923,9642564,24,0 ,17,923,7545412,40,0 ,44,15152,1778244,32,0 ,44,15152,3351108,64,0 ,17,923,9118276,40,0 ,16,820,205384,21,8 ,15,14254,729672,1,1 ,16,820,205392,22,9 ,15,14255,729680,1,1 ,16,820,205400,22,11 ,15,14256,729688,1,1 ,16,820,205408,22,11 ,15,14257,729696,1,1 ,16,820,205416,20,13 ,15,14258,729704,1,1 ,16,820,205424,14,8 ,15,14259,729712,1,1 ,16,820,205432,26,13 ,15,14260,729720,1,1 ,16,820,205440,15,8 ,15,14261,729728,1,1 ,20,26159,27992706,156,0 ,17,923,10166916,48,0 ,17,923,6496900,32,0 ,44,15152,2826884,80,0 ,44,15152,729732,32,0 ,44,15152,3875460,32,0 ,45,15153,4399748,32,0 ,45,15153,5448324,24,0 ,17,923,8069764,40,0 ,17,923,8594052,16,0 ,16,820,205448,14,8 ,15,14262,729736,1,1 ,16,820,205456,22,11 ,15,14263,729744,1,1 ,16,820,205464,21,8 ,15,14264,729752,1,1 ,16,820,205472,20,9 ,15,14265,729760,1,1 ,16,820,205480,20,8 ,15,14266,729768,1,1 ,16,820,205488,21,8 ,15,14267,729776,1,1 ,16,820,205496,20,9 ,15,14268,729784,1,1 ,16,820,205504,22,19 ,15,14269,729792,1,1 ,45,15153,4924100,32,0 ,16,820,205512,21,12 ,15,14270,729800,1,1 ,16,820,205520,18,10 ,15,14271,729808,1,1 ,16,820,205528,21,8 ,15,14272,729816,1,1 ,16,820,205536,20,8 ,15,14273,729824,1,1 ,16,820,205544,21,10 ,15,14274,729832,1,1 ,16,820,205552,22,9 ,15,14275,729840,1,1 ,16,820,205560,20,8 ,15,14276,729848,1,1 ,16,820,205568,20,9 ,15,14277,729856,1,1 ,20,16428,3351298,96,0 ,17,923,9642756,32,0 ,44,15152,205572,120,0 ,17,923,8594180,16,0 ,16,820,205576,22,8 ,15,14278,729864,1,1 ,16,820,205584,14,8 ,15,14279,729872,1,1 ,16,820,205592,22,9 ,15,14280,729880,1,1 ,16,820,205600,22,12 ,15,14281,729888,1,1 ,16,820,205608,20,8 ,15,14282,729896,1,1 ,16,820,205616,26,11 ,15,14283,729904,1,1 ,16,820,205624,20,8 ,15,14284,729912,1,1 ,16,820,205632,21,8 ,15,14285,729920,1,1 ,45,15153,5448516,32,0 ,17,923,7021380,24,0 ,44,15152,1778500,80,0 ,16,820,205640,20,9 ,15,14286,729928,1,1 ,16,820,205648,20,8 ,15,14287,729936,1,1 ,16,820,205656,20,9 ,15,14288,729944,1,1 ,16,820,205664,18,8 ,15,14289,729952,1,1 ,20,17156,4924258,152,0 ,16,820,205672,22,9 ,15,14290,729960,1,1 ,16,820,205680,21,10 ,15,14291,729968,1,1 ,16,820,205688,21,11 ,15,14292,729976,1,1 ,16,820,205696,20,8 ,15,14293,729984,1,1 ,20,22739,19604354,136,0 ,17,923,9118596,32,0 ,17,923,7545732,16,0 ,17,923,6497156,24,0 ,44,15152,729988,32,0 ,44,15152,3875716,104,0 ,45,15153,4400004,72,0 ,17,923,8594308,16,0 ,16,820,205704,20,10 ,15,14294,729992,1,1 ,16,820,205712,20,11 ,15,14295,730000,1,1 ,16,820,205720,20,8 ,15,14296,730008,1,1 ,16,820,205728,20,8 ,15,14297,730016,1,1 ,16,820,205736,20,8 ,15,14298,730024,1,1 ,16,820,205744,20,8 ,15,14299,730032,1,1 ,16,820,205752,20,8 ,15,14300,730040,1,1 ,16,820,205760,20,8 ,15,14301,730048,1,1 ,20,16186,2827202,52,0 ,17,923,8070084,40,0 ,45,15153,4924356,80,0 ,16,820,205768,22,10 ,15,14302,730056,1,1 ,16,820,205776,20,8 ,15,14303,730064,1,1 ,16,820,205784,18,10 ,15,14304,730072,1,1 ,16,820,205792,18,10 ,15,14305,730080,1,1 ,16,820,205800,18,10 ,15,14306,730088,1,1 ,16,820,205808,18,10 ,15,14307,730096,1,1 ,16,820,205816,18,10 ,15,14308,730104,1,1 ,16,820,205824,18,10 ,15,14309,730112,1,1 ,20,22553,19080194,112,0 ,20,20785,13837314,304,0 ,17,923,10167300,48,0 ,17,923,7545860,16,0 ,17,923,7021572,32,0 ,17,923,8594436,16,0 ,17,923,9643012,32,0 ,16,820,205832,18,10 ,15,14310,730120,1,1 ,16,820,205840,20,9 ,15,14311,730128,1,1 ,16,820,205848,14,8 ,15,14312,730136,1,1 ,16,820,205856,18,10 ,15,14313,730144,1,1 ,20,18990,9118754,1140,0 ,20,16993,4400162,892,0 ,16,820,205864,18,10 ,15,14314,730152,1,1 ,16,820,205872,18,10 ,15,14315,730160,1,1 ,16,820,205880,18,10 ,15,14316,730168,1,1 ,16,820,205888,18,10 ,15,14317,730176,1,1 ,45,15153,5448772,24,0 ,17,923,6497348,32,0 ,44,15152,3351620,40,0 ,16,820,205896,18,10 ,15,14318,730184,1,1 ,16,820,205904,14,8 ,15,14319,730192,1,1 ,16,820,205912,20,22 ,15,14320,730200,1,1 ,16,820,205920,14,8 ,15,14321,730208,1,1 ,16,820,205928,20,14 ,15,14322,730216,1,1 ,16,820,205936,14,8 ,15,14323,730224,1,1 ,16,820,205944,20,41 ,15,14324,730232,1,1 ,16,820,205952,14,8 ,15,14325,730240,1,1 ,17,923,9118852,24,0 ,17,923,7545988,32,0 ,44,15152,730244,32,0 ,17,923,8594564,16,0 ,16,820,205960,14,8 ,15,14326,730248,1,1 ,16,820,205968,15,8 ,15,14327,730256,1,1 ,16,820,205976,20,20 ,15,14328,730264,1,1 ,16,820,205984,21,10 ,15,14329,730272,1,1 ,20,19431,10167458,96,0 ,16,820,205992,15,8 ,15,14330,730280,1,1 ,16,820,206000,15,8 ,15,14331,730288,1,1 ,16,820,206008,14,8 ,15,14332,730296,1,1 ,16,820,206016,14,8 ,15,14333,730304,1,1 ,44,15152,1254596,312,0 ,16,820,206024,14,8 ,15,14334,730312,1,1 ,16,820,206032,21,10 ,15,14335,730320,1,1 ,16,820,206040,20,9 ,15,14336,730328,1,1 ,16,820,206048,21,10 ,15,14337,730336,1,1 ,16,820,206056,20,8 ,15,14338,730344,1,1 ,16,820,206064,22,16 ,15,14339,730352,1,1 ,16,820,206072,20,10 ,15,14340,730360,1,1 ,16,820,206080,20,10 ,15,14341,730368,1,1 ,17,923,9643268,56,0 ,17,923,7021828,48,0 ,44,15152,2827524,24,0 ,45,15153,5448964,24,0 ,17,923,8070404,32,0 ,17,923,8594692,16,0 ,16,820,206088,22,12 ,15,14342,730376,1,1 ,16,820,206096,20,12 ,15,14343,730384,1,1 ,16,820,206104,20,8 ,15,14344,730392,1,1 ,16,820,206112,22,9 ,15,14345,730400,1,1 ,16,820,206120,20,10 ,15,14346,730408,1,1 ,16,820,206128,20,12 ,15,14347,730416,1,1 ,16,820,206136,20,8 ,15,14348,730424,1,1 ,16,820,206144,20,8 ,15,14349,730432,1,1 ,17,923,9119044,64,0 ,17,923,6497604,24,0 ,16,820,206152,20,8 ,15,14350,730440,1,1 ,16,820,206160,20,8 ,15,14351,730448,1,1 ,16,820,206168,20,8 ,15,14352,730456,1,1 ,16,820,206176,20,8 ,15,14353,730464,1,1 ,20,16187,2827618,1000,0 ,16,820,206184,20,8 ,15,14354,730472,1,1 ,16,820,206192,22,10 ,15,14355,730480,1,1 ,16,820,206200,20,8 ,15,14356,730488,1,1 ,16,820,206208,20,8 ,15,14357,730496,1,1 ,20,22079,18032002,2060,0 ,20,21348,15934850,468,0 ,17,923,10167684,16,0 ,17,923,7546244,32,0 ,44,15152,730500,32,0 ,44,15152,3351940,88,0 ,17,923,8594820,16,0 ,16,820,206216,22,8 ,15,14358,730504,1,1 ,16,820,206224,20,11 ,15,14359,730512,1,1 ,16,820,206232,14,8 ,15,14360,730520,1,1 ,16,820,206240,22,13 ,15,14361,730528,1,1 ,20,20028,11216290,40,0 ,16,820,206248,26,10 ,15,14362,730536,1,1 ,16,820,206256,20,8 ,15,14363,730544,1,1 ,16,820,206264,22,8 ,15,14364,730552,1,1 ,16,820,206272,20,10 ,15,14365,730560,1,1 ,45,15153,5449156,16,0 ,44,15152,2827716,32,0 ,44,15152,1779140,48,0 ,45,15153,4400580,16,0 ,16,820,206280,20,8 ,15,14366,730568,1,1 ,16,820,206288,20,8 ,15,14367,730576,1,1 ,16,820,206296,14,8 ,15,14368,730584,1,1 ,16,820,206304,20,10 ,15,14369,730592,1,1 ,16,820,206312,20,8 ,15,14370,730600,1,1 ,16,820,206320,20,8 ,15,14371,730608,1,1 ,16,820,206328,14,8 ,15,14372,730616,1,1 ,16,820,206336,20,8 ,15,14373,730624,1,1 ,20,16429,3352066,88,0 ,17,923,10167812,32,0 ,17,923,6497796,40,0 ,17,923,8070660,48,0 ,17,923,8594948,16,0 ,16,820,206344,22,10 ,15,14374,730632,1,1 ,16,820,206352,18,8 ,15,14375,730640,1,1 ,16,820,206360,14,8 ,15,14376,730648,1,1 ,16,820,206368,22,8 ,15,14377,730656,1,1 ,20,20882,14362146,12,0 ,16,820,206376,14,8 ,15,14378,730664,1,1 ,16,820,206384,15,8 ,15,14379,730672,1,1 ,16,820,206392,20,10 ,15,14380,730680,1,1 ,16,820,206400,20,14 ,15,14381,730688,1,1 ,20,18523,8070722,64,0 ,20,25555,26420802,100,0 ,45,15153,5449284,24,0 ,45,15153,4400708,40,0 ,45,15153,4924996,24,0 ,16,820,206408,22,12 ,15,14382,730696,1,1 ,16,820,206416,20,8 ,15,14383,730704,1,1 ,16,820,206424,14,8 ,15,14384,730712,1,1 ,16,820,206432,14,8 ,15,14385,730720,1,1 ,20,26430,29042274,368,0 ,16,820,206440,20,11 ,15,14386,730728,1,1 ,16,820,206448,15,8 ,15,14387,730736,1,1 ,16,820,206456,14,8 ,15,14388,730744,1,1 ,16,820,206464,21,12 ,15,14389,730752,1,1 ,20,20883,14362242,112,0 ,17,923,8595076,16,0 ,17,923,7546500,24,0 ,17,923,7022212,24,0 ,44,15152,730756,64,0 ,16,820,206472,20,9 ,15,14390,730760,1,1 ,16,820,206480,20,8 ,15,14391,730768,1,1 ,16,820,206488,20,9 ,15,14392,730776,1,1 ,16,820,206496,20,8 ,15,14393,730784,1,1 ,20,19133,9643682,624,0 ,16,820,206504,20,11 ,15,14394,730792,1,1 ,16,820,206512,20,9 ,15,14395,730800,1,1 ,16,820,206520,14,8 ,15,14396,730808,1,1 ,16,820,206528,20,8 ,15,14397,730816,1,1 ,20,25399,25896642,172,0 ,17,923,9643716,56,0 ,44,15152,2827972,40,0 ,44,15152,206532,64,0 ,44,15152,3876548,24,0 ,16,820,206536,22,14 ,15,14398,730824,1,1 ,16,820,206544,14,8 ,15,14399,730832,1,1 ,16,820,206552,20,9 ,15,14400,730840,1,1 ,16,820,206560,22,9 ,15,14401,730848,1,1 ,20,20029,11216610,52,0 ,16,820,206568,20,8 ,15,14402,730856,1,1 ,16,820,206576,20,9 ,15,14403,730864,1,1 ,16,820,206584,20,13 ,15,14404,730872,1,1 ,16,820,206592,21,10 ,15,14405,730880,1,1 ,17,923,10168068,32,0 ,45,15153,4925188,32,0 ,45,15153,5449476,16,0 ,17,923,8595204,16,0 ,16,820,206600,20,11 ,15,14406,730888,1,1 ,16,820,206608,22,9 ,15,14407,730896,1,1 ,16,820,206616,22,8 ,15,14408,730904,1,1 ,16,820,206624,20,9 ,15,14409,730912,1,1 ,16,820,206632,15,8 ,15,14410,730920,1,1 ,16,820,206640,14,8 ,15,14411,730928,1,1 ,16,820,206648,20,8 ,15,14412,730936,1,1 ,16,820,206656,20,8 ,15,14413,730944,1,1 ,20,22347,18556738,12,0 ,17,923,9119556,32,0 ,17,923,7546692,32,0 ,17,923,7022404,40,0 ,17,923,6498116,32,0 ,44,15152,1779524,24,0 ,16,820,206664,20,9 ,15,14414,730952,1,1 ,16,820,206672,22,11 ,15,14415,730960,1,1 ,16,820,206680,20,11 ,15,14416,730968,1,1 ,16,820,206688,14,8 ,15,14417,730976,1,1 ,20,26160,27993954,620,0 ,16,820,206696,20,8 ,15,14418,730984,1,1 ,16,820,206704,20,8 ,15,14419,730992,1,1 ,16,820,206712,22,9 ,15,14420,731000,1,1 ,16,820,206720,14,8 ,15,14421,731008,1,1 ,20,22554,19081090,112,0 ,17,923,8595332,16,0 ,44,15152,3876740,32,0 ,45,15153,4401028,32,0 ,45,15153,5449604,24,0 ,17,923,8071044,48,0 ,16,820,206728,22,14 ,15,14422,731016,1,1 ,16,820,206736,14,8 ,15,14423,731024,1,1 ,16,820,206744,21,8 ,15,14424,731032,1,1 ,16,820,206752,21,8 ,15,14425,731040,1,1 ,20,22348,18556834,12,0 ,20,19432,10168226,12,0 ,16,820,206760,20,9 ,15,14426,731048,1,1 ,16,820,206768,20,8 ,15,14427,731056,1,1 ,16,820,206776,14,8 ,15,14428,731064,1,1 ,16,820,206784,14,8 ,15,14429,731072,1,1 ,20,22740,19605442,136,0 ,16,820,206792,15,8 ,15,14430,731080,1,1 ,16,820,206800,14,8 ,15,14431,731088,1,1 ,16,820,206808,21,12 ,15,14432,731096,1,1 ,16,820,206816,22,11 ,15,14433,731104,1,1 ,16,820,206824,20,8 ,15,14434,731112,1,1 ,16,820,206832,15,8 ,15,14435,731120,1,1 ,16,820,206840,14,8 ,15,14436,731128,1,1 ,16,820,206848,22,17 ,15,14437,731136,1,1 ,20,22349,18556930,108,0 ,20,19433,10168322,140,0 ,17,923,10168324,40,0 ,44,15152,2828292,64,0 ,44,15152,1779716,40,0 ,45,15153,4925444,24,0 ,17,923,8595460,16,0 ,16,820,206856,22,9 ,15,14438,731144,1,1 ,16,820,206864,21,16 ,15,14439,731152,1,1 ,16,820,206872,20,8 ,15,14440,731160,1,1 ,16,820,206880,14,8 ,15,14441,731168,1,1 ,20,17157,4925474,80,0 ,20,15402,731170,116,0 ,16,820,206888,20,10 ,15,14442,731176,1,1 ,16,820,206896,20,9 ,15,14443,731184,1,1 ,16,820,206904,15,8 ,15,14444,731192,1,1 ,16,820,206912,14,8 ,15,14445,731200,1,1 ,20,18524,8071234,192,0 ,17,923,9119812,32,0 ,17,923,7546948,24,0 ,17,923,6498372,24,0 ,44,15152,3352644,24,0 ,45,15153,5449796,16,0 ,16,820,206920,14,8 ,15,14446,731208,1,1 ,16,820,206928,20,8 ,15,14447,731216,1,1 ,16,820,206936,14,8 ,15,14448,731224,1,1 ,16,820,206944,20,10 ,15,14449,731232,1,1 ,16,820,206952,14,8 ,15,14450,731240,1,1 ,16,820,206960,22,9 ,15,14451,731248,1,1 ,16,820,206968,20,11 ,15,14452,731256,1,1 ,16,820,206976,20,8 ,15,14453,731264,1,1 ,20,20030,11217026,12,0 ,17,923,9644164,24,0 ,17,923,7022724,24,0 ,44,15152,731268,152,0 ,44,15152,3876996,32,0 ,45,15153,4401284,32,0 ,17,923,8595588,16,0 ,16,820,206984,22,9 ,15,14454,731272,1,1 ,16,820,206992,20,11 ,15,14455,731280,1,1 ,16,820,207000,14,8 ,15,14456,731288,1,1 ,16,820,207008,20,8 ,15,14457,731296,1,1 ,16,820,207016,20,8 ,15,14458,731304,1,1 ,16,820,207024,20,8 ,15,14459,731312,1,1 ,16,820,207032,22,11 ,15,14460,731320,1,1 ,16,820,207040,20,9 ,15,14461,731328,1,1 ,20,24399,23275714,136,0 ,20,16430,3352770,12,0 ,45,15153,5449924,24,0 ,44,15152,207044,64,0 ,45,15153,4925636,48,0 ,16,820,207048,20,9 ,15,14462,731336,1,1 ,16,820,207056,14,8 ,15,14463,731344,1,1 ,16,820,207064,20,9 ,15,14464,731352,1,1 ,16,820,207072,20,8 ,15,14465,731360,1,1 ,20,20031,11217122,512,0 ,16,820,207080,22,10 ,15,14466,731368,1,1 ,16,820,207088,22,12 ,15,14467,731376,1,1 ,16,820,207096,14,8 ,15,14468,731384,1,1 ,16,820,207104,22,9 ,15,14469,731392,1,1 ,20,21850,16984322,48,0 ,17,923,8595716,16,0 ,17,923,7547140,32,0 ,17,923,6498564,40,0 ,44,15152,3352836,24,0 ,17,923,8071428,40,0 ,16,820,207112,14,8 ,15,14470,731400,1,1 ,16,820,207120,20,9 ,15,14471,731408,1,1 ,16,820,207128,20,11 ,15,14472,731416,1,1 ,16,820,207136,14,8 ,15,14473,731424,1,1 ,20,16431,3352866,12,0 ,16,820,207144,20,8 ,15,14474,731432,1,1 ,16,820,207152,20,9 ,15,14475,731440,1,1 ,16,820,207160,20,8 ,15,14476,731448,1,1 ,16,820,207168,20,9 ,15,14477,731456,1,1 ,17,923,10168644,32,0 ,17,923,7022916,32,0 ,44,15152,1780036,56,0 ,17,923,9120068,32,0 ,17,923,9644356,32,0 ,16,820,207176,20,10 ,15,14478,731464,1,1 ,16,820,207184,14,8 ,15,14479,731472,1,1 ,16,820,207192,22,9 ,15,14480,731480,1,1 ,16,820,207200,14,8 ,15,14481,731488,1,1 ,20,25556,26421602,80,0 ,16,820,207208,22,10 ,15,14482,731496,1,1 ,16,820,207216,21,8 ,15,14483,731504,1,1 ,16,820,207224,22,9 ,15,14484,731512,1,1 ,16,820,207232,22,8 ,15,14485,731520,1,1 ,20,16432,3352962,588,0 ,17,923,8595844,16,0 ,44,15152,3877252,32,0 ,45,15153,4401540,32,0 ,45,15153,5450116,40,0 ,16,820,207240,20,8 ,15,14486,731528,1,1 ,16,820,207248,22,9 ,15,14487,731536,1,1 ,16,820,207256,20,8 ,15,14488,731544,1,1 ,16,820,207264,20,8 ,15,14489,731552,1,1 ,16,820,207272,14,8 ,15,14490,731560,1,1 ,16,820,207280,22,10 ,15,14491,731568,1,1 ,16,820,207288,15,8 ,15,14492,731576,1,1 ,16,820,207296,20,10 ,15,14493,731584,1,1 ,44,15152,3353028,24,0 ,16,820,207304,20,9 ,15,14494,731592,1,1 ,16,820,207312,22,15 ,15,14495,731600,1,1 ,16,820,207320,22,14 ,15,14496,731608,1,1 ,16,820,207328,14,8 ,15,14497,731616,1,1 ,16,820,207336,22,9 ,15,14498,731624,1,1 ,16,820,207344,20,10 ,15,14499,731632,1,1 ,16,820,207352,20,8 ,15,14500,731640,1,1 ,16,820,207360,20,8 ,15,14501,731648,1,1 ,20,20884,14363138,4636,0 ,17,923,8595972,16,0 ,17,923,7547396,40,0 ,44,15152,2828804,72,0 ,16,820,207368,20,8 ,15,14502,731656,1,1 ,16,820,207376,20,8 ,15,14503,731664,1,1 ,16,820,207384,20,9 ,15,14504,731672,1,1 ,16,820,207392,20,9 ,15,14505,731680,1,1 ,16,820,207400,20,16 ,15,14506,731688,1,1 ,16,820,207408,20,12 ,15,14507,731696,1,1 ,16,820,207416,22,13 ,15,14508,731704,1,1 ,16,820,207424,22,10 ,15,14509,731712,1,1 ,17,923,10168900,32,0 ,17,923,7023172,24,0 ,17,923,6498884,40,0 ,45,15153,4926020,16,0 ,17,923,8071748,40,0 ,17,923,9120324,24,0 ,17,923,9644612,32,0 ,16,820,207432,20,8 ,15,14510,731720,1,1 ,16,820,207440,20,10 ,15,14511,731728,1,1 ,16,820,207448,14,8 ,15,14512,731736,1,1 ,16,820,207456,22,10 ,15,14513,731744,1,1 ,20,23981,22227554,384,0 ,16,820,207464,20,11 ,15,14514,731752,1,1 ,16,820,207472,14,8 ,15,14515,731760,1,1 ,16,820,207480,20,30 ,15,14516,731768,1,1 ,16,820,207488,20,8 ,15,14517,731776,1,1 ,20,21851,16984706,456,0 ,20,25165,25373314,124,0 ,17,923,8596100,16,0 ,44,15152,3353220,96,0 ,44,15152,3877508,24,0 ,45,15153,4401796,16,0 ,16,820,207496,22,10 ,15,14518,731784,1,1 ,16,820,207504,14,8 ,15,14519,731792,1,1 ,16,820,207512,22,11 ,15,14520,731800,1,1 ,16,820,207520,20,11 ,15,14521,731808,1,1 ,20,17379,5450402,1440,0 ,20,17158,4926114,12,0 ,16,820,207528,14,8 ,15,14522,731816,1,1 ,16,820,207536,20,8 ,15,14523,731824,1,1 ,16,820,207544,22,9 ,15,14524,731832,1,1 ,16,820,207552,22,9 ,15,14525,731840,1,1 ,20,17557,5974722,348,0 ,45,15153,5450436,16,0 ,44,15152,207556,64,0 ,45,15153,4926148,24,0 ,16,820,207560,20,8 ,15,14526,731848,1,1 ,16,820,207568,20,10 ,15,14527,731856,1,1 ,16,820,207576,20,10 ,15,14528,731864,1,1 ,16,820,207584,20,10 ,15,14529,731872,1,1 ,16,820,207592,20,8 ,15,14530,731880,1,1 ,16,820,207600,22,14 ,15,14531,731888,1,1 ,16,820,207608,18,8 ,15,14532,731896,1,1 ,16,820,207616,22,10 ,15,14533,731904,1,1 ,20,22555,19081986,112,0 ,20,17159,4926210,48,0 ,17,923,9120516,56,0 ,17,923,7023364,56,0 ,44,15152,1780484,56,0 ,45,15153,4401924,16,0 ,17,923,8596228,16,0 ,16,820,207624,20,8 ,15,14534,731912,1,1 ,16,820,207632,22,8 ,15,14535,731920,1,1 ,16,820,207640,20,8 ,15,14536,731928,1,1 ,16,820,207648,20,8 ,15,14537,731936,1,1 ,16,820,207656,20,10 ,15,14538,731944,1,1 ,16,820,207664,20,8 ,15,14539,731952,1,1 ,16,820,207672,20,9 ,15,14540,731960,1,1 ,16,820,207680,22,11 ,15,14541,731968,1,1 ,17,923,10169156,56,0 ,17,923,7547716,32,0 ,44,15152,3877700,88,0 ,45,15153,5450564,24,0 ,17,923,9644868,24,0 ,16,820,207688,22,8 ,15,14542,731976,1,1 ,16,820,207696,22,12 ,15,14543,731984,1,1 ,16,820,207704,18,8 ,15,14544,731992,1,1 ,16,820,207712,22,10 ,15,14545,732000,1,1 ,20,22350,18557794,12,0 ,16,820,207720,20,9 ,15,14546,732008,1,1 ,16,820,207728,20,12 ,15,14547,732016,1,1 ,16,820,207736,18,8 ,15,14548,732024,1,1 ,16,820,207744,20,8 ,15,14549,732032,1,1 ,17,923,8596356,16,0 ,17,923,6499204,24,0 ,44,15152,2304900,32,0 ,45,15153,4402052,32,0 ,45,15153,4926340,24,0 ,17,923,8072068,24,0 ,16,820,207752,20,8 ,15,14550,732040,1,1 ,16,820,207760,20,10 ,15,14551,732048,1,1 ,16,820,207768,18,8 ,15,14552,732056,1,1 ,16,820,207776,20,9 ,15,14553,732064,1,1 ,16,820,207784,20,10 ,15,448,732072,1,1 ,16,820,207792,20,10 ,15,14554,732080,1,1 ,16,820,207800,20,8 ,15,14555,732088,1,1 ,16,820,207808,20,8 ,15,14556,732096,1,1 ,20,22351,18557890,24,0 ,20,15403,732098,292,0 ,16,820,207816,20,10 ,15,14557,732104,1,1 ,16,820,207824,20,8 ,15,14558,732112,1,1 ,16,820,207832,20,8 ,15,14559,732120,1,1 ,16,820,207840,22,11 ,15,14560,732128,1,1 ,20,25557,26422242,208,0 ,16,820,207848,22,11 ,15,14561,732136,1,1 ,16,820,207856,18,8 ,15,14562,732144,1,1 ,16,820,207864,22,52 ,15,14563,732152,1,1 ,16,820,207872,20,8 ,15,14564,732160,1,1 ,20,22741,19606530,48,0 ,17,923,9645060,32,0 ,45,15153,5450756,24,0 ,17,923,8596484,16,0 ,16,820,207880,18,8 ,15,14565,732168,1,1 ,16,820,207888,20,12 ,15,14566,732176,1,1 ,16,820,207896,18,8 ,15,14567,732184,1,1 ,16,820,207904,14,8 ,15,14568,732192,1,1 ,20,18064,7023650,12,0 ,20,25400,25898018,136,0 ,16,820,207912,22,8 ,15,14569,732200,1,1 ,16,820,207920,20,8 ,15,14570,732208,1,1 ,16,820,207928,20,9 ,15,14571,732216,1,1 ,16,820,207936,22,8 ,15,14572,732224,1,1 ,20,23384,20655170,100,0 ,17,923,8072260,48,0 ,17,923,7547972,80,0 ,17,923,6499396,32,0 ,44,15152,2829380,56,0 ,45,15153,4926532,32,0 ,16,820,207944,22,10 ,15,14573,732232,1,1 ,16,820,207952,14,8 ,15,14574,732240,1,1 ,16,820,207960,20,8 ,15,14575,732248,1,1 ,16,820,207968,22,8 ,15,14576,732256,1,1 ,20,19434,10169442,140,0 ,16,820,207976,22,8 ,15,14577,732264,1,1 ,16,820,207984,22,8 ,15,14578,732272,1,1 ,16,820,207992,20,8 ,15,14579,732280,1,1 ,16,820,208000,20,8 ,15,14580,732288,1,1 ,20,22352,18558082,64,0 ,20,17160,4926594,52,0 ,20,18065,7023746,52,0 ,17,923,8596612,16,0 ,44,15152,2305156,768,0 ,45,15153,4402308,48,0 ,16,820,208008,20,10 ,15,14581,732296,1,1 ,16,820,208016,20,8 ,15,14582,732304,1,1 ,16,820,208024,20,8 ,15,14583,732312,1,1 ,16,820,208032,22,8 ,15,14584,732320,1,1 ,16,820,208040,22,9 ,15,14585,732328,1,1 ,16,820,208048,22,8 ,15,14586,732336,1,1 ,16,820,208056,22,9 ,15,14587,732344,1,1 ,16,820,208064,22,8 ,15,14588,732352,1,1 ,17,923,9120964,24,0 ,17,923,7023812,40,0 ,44,15152,1780932,64,0 ,44,15152,208068,24,0 ,45,15153,5450948,24,0 ,16,820,208072,20,9 ,15,14589,732360,1,1 ,16,820,208080,22,10 ,15,14590,732368,1,1 ,16,820,208088,22,10 ,15,14591,732376,1,1 ,16,820,208096,22,8 ,15,14592,732384,1,1 ,16,820,208104,22,9 ,15,14593,732392,1,1 ,16,820,208112,14,8 ,15,14594,732400,1,1 ,16,820,208120,20,8 ,15,14595,732408,1,1 ,16,820,208128,22,8 ,15,14596,732416,1,1 ,20,24400,23276802,272,0 ,17,923,10169604,48,0 ,17,923,8596740,16,0 ,17,923,9645316,80,0 ,16,820,208136,22,8 ,15,14597,732424,1,1 ,16,820,208144,15,8 ,15,14598,732432,1,1 ,16,820,208152,22,8 ,15,14599,732440,1,1 ,16,820,208160,20,8 ,15,14600,732448,1,1 ,20,24976,24849698,1164,0 ,16,820,208168,20,9 ,15,14601,732456,1,1 ,16,820,208176,22,10 ,15,14602,732464,1,1 ,16,820,208184,20,8 ,15,14603,732472,1,1 ,16,820,208192,22,10 ,15,14604,732480,1,1 ,45,15153,4926788,64,0 ,17,923,6499652,24,0 ,44,15152,732484,128,0 ,16,820,208200,20,12 ,15,14605,732488,1,1 ,16,820,208208,20,8 ,15,14606,732496,1,1 ,16,820,208216,21,8 ,15,14607,732504,1,1 ,16,820,208224,21,8 ,15,14608,732512,1,1 ,16,820,208232,14,8 ,15,14609,732520,1,1 ,16,820,208240,14,8 ,15,14610,732528,1,1 ,16,820,208248,22,10 ,15,14611,732536,1,1 ,16,820,208256,20,10 ,15,14612,732544,1,1 ,20,22742,19606914,84,0 ,20,20786,13839746,7144,0 ,17,923,9121156,40,0 ,44,15152,208260,24,0 ,44,15152,3353988,80,0 ,45,15153,5451140,16,0 ,17,923,8596868,16,0 ,16,820,208264,20,11 ,15,14613,732552,1,1 ,16,820,208272,20,12 ,15,14614,732560,1,1 ,16,820,208280,14,8 ,15,14615,732568,1,1 ,16,820,208288,20,200 ,15,14616,732576,1,1 ,20,24212,22752674,252,0 ,16,820,208296,20,200 ,15,14617,732584,1,1 ,16,820,208304,20,200 ,15,14618,732592,1,1 ,16,820,208312,20,200 ,15,14619,732600,1,1 ,16,820,208320,20,200 ,15,14620,732608,1,1 ,17,923,8072644,32,0 ,16,820,208328,20,200 ,15,14621,732616,1,1 ,16,820,208336,20,200 ,15,14622,732624,1,1 ,16,820,208344,20,200 ,15,14623,732632,1,1 ,16,820,208352,20,8 ,15,14624,732640,1,1 ,20,25732,26947042,128,0 ,16,820,208360,20,8 ,15,14625,732648,1,1 ,16,820,208368,20,8 ,15,14626,732656,1,1 ,16,820,208376,22,8 ,15,14627,732664,1,1 ,16,820,208384,18,10 ,15,14628,732672,1,1 ,20,23608,21179906,1800,0 ,20,15665,1256962,12,0 ,17,923,8596996,16,0 ,17,923,7024132,40,0 ,17,923,6499844,24,0 ,44,15152,2829828,32,0 ,44,15152,3878404,64,0 ,45,15153,4402692,56,0 ,45,15153,5451268,32,0 ,16,820,208392,20,8 ,15,14629,732680,1,1 ,16,820,208400,20,10 ,15,14630,732688,1,1 ,16,820,208408,22,8 ,15,14631,732696,1,1 ,16,820,208416,22,8 ,15,14632,732704,1,1 ,20,18066,7024162,68,0 ,20,17161,4927010,680,0 ,16,820,208424,22,13 ,15,14633,732712,1,1 ,16,820,208432,22,13 ,15,14634,732720,1,1 ,16,820,208440,22,10 ,15,14635,732728,1,1 ,16,820,208448,20,11 ,15,14636,732736,1,1 ,20,18525,8072770,132,0 ,20,25956,27471426,168,0 ,44,15152,208452,24,0 ,16,820,208456,14,8 ,15,14637,732744,1,1 ,16,820,208464,20,9 ,15,14638,732752,1,1 ,16,820,208472,14,8 ,15,14639,732760,1,1 ,16,820,208480,22,9 ,15,14640,732768,1,1 ,20,15666,1257058,240,0 ,20,25166,25374306,664,0 ,16,820,208488,22,11 ,15,14641,732776,1,1 ,16,820,208496,14,8 ,15,14642,732784,1,1 ,16,820,208504,22,10 ,15,14643,732792,1,1 ,16,820,208512,22,11 ,15,14644,732800,1,1 ,20,22556,19082882,112,0 ,20,22353,18558594,12,0 ,17,923,10169988,40,0 ,44,15152,1257092,24,0 ,17,923,8597124,40,0 ,16,820,208520,22,11 ,15,14645,732808,1,1 ,16,820,208528,14,8 ,15,14646,732816,1,1 ,16,820,208536,20,9 ,15,14647,732824,1,1 ,16,820,208544,20,10 ,15,14648,732832,1,1 ,16,820,208552,22,8 ,15,14649,732840,1,1 ,16,820,208560,22,8 ,15,14650,732848,1,1 ,16,820,208568,14,8 ,15,14651,732856,1,1 ,16,820,208576,20,8 ,15,14652,732864,1,1 ,20,18714,8597186,184,0 ,17,923,9121476,48,0 ,17,923,7548612,32,0 ,17,923,6500036,16,0 ,44,15152,1781444,24,0 ,17,923,8072900,24,0 ,16,820,208584,20,10 ,15,14653,732872,1,1 ,16,820,208592,14,8 ,15,14654,732880,1,1 ,16,820,208600,20,9 ,15,14655,732888,1,1 ,16,820,208608,22,9 ,15,14656,732896,1,1 ,20,22354,18558690,12,0 ,16,820,208616,20,8 ,15,14657,732904,1,1 ,16,820,208624,20,9 ,15,14658,732912,1,1 ,16,820,208632,14,8 ,15,14659,732920,1,1 ,16,820,208640,20,12 ,15,14660,732928,1,1 ,45,15153,5451524,48,0 ,44,15152,2830084,24,0 ,44,15152,208644,16,0 ,16,820,208648,20,9 ,15,14661,732936,1,1 ,16,820,208656,22,10 ,15,14662,732944,1,1 ,16,820,208664,20,11 ,15,14663,732952,1,1 ,16,820,208672,14,8 ,15,14664,732960,1,1 ,20,16743,3878690,436,0 ,16,820,208680,20,10 ,15,14665,732968,1,1 ,16,820,208688,14,8 ,15,14666,732976,1,1 ,16,820,208696,22,10 ,15,14667,732984,1,1 ,16,820,208704,20,11 ,15,14668,732992,1,1 ,20,22355,18558786,88,0 ,45,15153,4927300,16,0 ,17,923,7024452,32,0 ,17,923,6500164,16,0 ,44,15152,1257284,56,0 ,16,820,208712,14,8 ,15,14669,733000,1,1 ,16,820,208720,20,10 ,15,14670,733008,1,1 ,16,820,208728,14,8 ,15,14671,733016,1,1 ,16,820,208736,22,49 ,15,14672,733024,1,1 ,20,23385,20655970,60,0 ,16,820,208744,20,11 ,15,14673,733032,1,1 ,16,820,208752,14,8 ,15,14674,733040,1,1 ,16,820,208760,20,8 ,15,14675,733048,1,1 ,16,820,208768,22,8 ,15,14676,733056,1,1 ,20,18256,7548802,396,0 ,17,923,9645956,56,0 ,44,15152,1781636,24,0 ,44,15152,208772,48,0 ,17,923,8073092,32,0 ,16,820,208776,22,10 ,15,14677,733064,1,1 ,16,820,208784,22,8 ,15,14678,733072,1,1 ,16,820,208792,20,12 ,15,14679,733080,1,1 ,16,820,208800,20,8 ,15,14680,733088,1,1 ,16,820,208808,20,10 ,15,14681,733096,1,1 ,16,820,208816,15,8 ,15,14682,733104,1,1 ,16,820,208824,22,9 ,15,14683,733112,1,1 ,16,820,208832,22,19 ,15,14684,733120,1,1 ,17,923,10170308,56,0 ,17,923,7548868,24,0 ,17,923,6500292,32,0 ,44,15152,2830276,24,0 ,45,15153,4403140,32,0 ,45,15153,4927428,80,0 ,17,923,8597444,24,0 ,16,820,208840,20,8 ,15,14685,733128,1,1 ,16,820,208848,20,8 ,15,14686,733136,1,1 ,16,820,208856,20,9 ,15,14687,733144,1,1 ,16,820,208864,22,9 ,15,14688,733152,1,1 ,16,820,208872,22,8 ,15,14689,733160,1,1 ,16,820,208880,22,10 ,15,14690,733168,1,1 ,16,820,208888,22,9 ,15,14691,733176,1,1 ,16,820,208896,20,9 ,15,14692,733184,1,1 ,44,15152,3878916,48,0 ,44,15152,3354628,16,0 ,16,820,208904,22,8 ,15,14693,733192,1,1 ,16,820,208912,14,8 ,15,14694,733200,1,1 ,16,820,208920,22,11 ,15,14695,733208,1,1 ,16,820,208928,14,8 ,15,14696,733216,1,1 ,20,22743,19607586,48,0 ,16,820,208936,21,16 ,15,14697,733224,1,1 ,16,820,208944,14,8 ,15,14698,733232,1,1 ,16,820,208952,20,8 ,15,14699,733240,1,1 ,16,820,208960,20,8 ,15,14700,733248,1,1 ,20,18067,7024706,12,0 ,17,923,9121860,40,0 ,17,923,7024708,48,0 ,44,15152,1781828,80,0 ,16,820,208968,20,8 ,15,14701,733256,1,1 ,16,820,208976,14,8 ,15,14702,733264,1,1 ,16,820,208984,20,9 ,15,14703,733272,1,1 ,16,820,208992,20,8 ,15,14704,733280,1,1 ,20,25401,25899106,132,0 ,16,820,209000,20,10 ,15,14705,733288,1,1 ,16,820,209008,20,8 ,15,14706,733296,1,1 ,16,820,209016,22,24 ,15,14707,733304,1,1 ,16,820,209024,21,8 ,15,14708,733312,1,1 ,17,923,8597636,88,0 ,17,923,7549060,32,0 ,44,15152,2830468,16,0 ,44,15152,3354756,16,0 ,45,15153,5451908,32,0 ,17,923,8073348,40,0 ,16,820,209032,20,19 ,15,14709,733320,1,1 ,16,820,209040,20,13 ,15,14710,733328,1,1 ,16,820,209048,20,10 ,15,14711,733336,1,1 ,16,820,209056,14,8 ,15,14712,733344,1,1 ,20,18068,7024802,12,0 ,16,820,209064,20,8 ,15,14713,733352,1,1 ,16,820,209072,22,20 ,15,14714,733360,1,1 ,16,820,209080,21,8 ,15,14715,733368,1,1 ,16,820,209088,20,18 ,15,14716,733376,1,1 ,20,19435,10170562,192,0 ,45,15153,4403396,32,0 ,17,923,6500548,40,0 ,16,820,209096,20,10 ,15,14717,733384,1,1 ,16,820,209104,14,8 ,15,14718,733392,1,1 ,16,820,209112,20,8 ,15,14719,733400,1,1 ,16,820,209120,22,20 ,15,14720,733408,1,1 ,16,820,209128,21,8 ,15,14721,733416,1,1 ,16,820,209136,20,18 ,15,14722,733424,1,1 ,16,820,209144,20,10 ,15,14723,733432,1,1 ,16,820,209152,14,8 ,15,14724,733440,1,1 ,20,18069,7024898,52,0 ,44,15152,3354884,16,0 ,44,15152,2830596,16,0 ,44,15152,1257732,32,0 ,44,15152,209156,32,0 ,16,820,209160,20,8 ,15,14725,733448,1,1 ,16,820,209168,22,20 ,15,14726,733456,1,1 ,16,820,209176,21,8 ,15,14727,733464,1,1 ,16,820,209184,20,16 ,15,14728,733472,1,1 ,16,820,209192,20,10 ,15,14729,733480,1,1 ,16,820,209200,14,8 ,15,14730,733488,1,1 ,16,820,209208,20,8 ,15,14731,733496,1,1 ,16,820,209216,22,20 ,15,14732,733504,1,1 ,20,23386,20656450,80,0 ,17,923,9646404,64,0 ,44,15152,733508,96,0 ,16,820,209224,21,8 ,15,14733,733512,1,1 ,16,820,209232,20,18 ,15,14734,733520,1,1 ,16,820,209240,20,10 ,15,14735,733528,1,1 ,16,820,209248,14,8 ,15,14736,733536,1,1 ,16,820,209256,20,8 ,15,14737,733544,1,1 ,16,820,209264,22,20 ,15,14738,733552,1,1 ,16,820,209272,21,8 ,15,14739,733560,1,1 ,16,820,209280,20,16 ,15,14740,733568,1,1 ,17,923,10170756,88,0 ,17,923,7549316,40,0 ,44,15152,2830724,48,0 ,44,15152,3355012,16,0 ,44,15152,3879300,24,0 ,45,15153,5452164,16,0 ,17,923,9122180,40,0 ,16,820,209288,20,10 ,15,14741,733576,1,1 ,16,820,209296,14,8 ,15,14742,733584,1,1 ,16,820,209304,20,8 ,15,14743,733592,1,1 ,16,820,209312,22,20 ,15,14744,733600,1,1 ,20,22744,19607970,244,0 ,16,820,209320,21,8 ,15,14745,733608,1,1 ,16,820,209328,20,18 ,15,14746,733616,1,1 ,16,820,209336,20,10 ,15,14747,733624,1,1 ,16,820,209344,14,8 ,15,14748,733632,1,1 ,20,15839,1782210,76,0 ,17,923,8073668,24,0 ,17,923,7025092,56,0 ,45,15153,4403652,64,0 ,16,820,209352,20,8 ,15,14749,733640,1,1 ,16,820,209360,22,20 ,15,14750,733648,1,1 ,16,820,209368,21,8 ,15,14751,733656,1,1 ,16,820,209376,20,16 ,15,14752,733664,1,1 ,20,25733,26948066,112,0 ,20,26431,29045218,264,0 ,16,820,209384,20,10 ,15,14753,733672,1,1 ,16,820,209392,14,8 ,15,14754,733680,1,1 ,16,820,209400,20,8 ,15,14755,733688,1,1 ,16,820,209408,22,20 ,15,14756,733696,1,1 ,20,22557,19083778,112,0 ,20,22356,18559490,148,0 ,45,15153,5452292,24,0 ,17,923,6500868,32,0 ,44,15152,1257988,40,0 ,44,15152,209412,56,0 ,44,15152,3355140,16,0 ,16,820,209416,21,8 ,15,14757,733704,1,1 ,16,820,209424,20,18 ,15,14758,733712,1,1 ,16,820,209432,20,10 ,15,14759,733720,1,1 ,16,820,209440,14,8 ,15,14760,733728,1,1 ,16,820,209448,20,8 ,15,14761,733736,1,1 ,16,820,209456,22,20 ,15,14762,733744,1,1 ,16,820,209464,21,8 ,15,14763,733752,1,1 ,16,820,209472,20,18 ,15,14764,733760,1,1 ,45,15153,4928068,88,0 ,44,15152,3879492,40,0 ,16,820,209480,20,10 ,15,14765,733768,1,1 ,16,820,209488,14,8 ,15,14766,733776,1,1 ,16,820,209496,20,8 ,15,14767,733784,1,1 ,16,820,209504,22,20 ,15,14768,733792,1,1 ,20,18526,8073826,164,0 ,20,25558,26423906,272,0 ,16,820,209512,21,8 ,15,14769,733800,1,1 ,16,820,209520,20,14 ,15,14770,733808,1,1 ,16,820,209528,20,10 ,15,14771,733816,1,1 ,16,820,209536,14,8 ,15,14772,733824,1,1 ,17,923,8073860,56,0 ,44,15152,3355268,16,0 ,16,820,209544,20,8 ,15,14773,733832,1,1 ,16,820,209552,22,20 ,15,14774,733840,1,1 ,16,820,209560,21,8 ,15,14775,733848,1,1 ,16,820,209568,20,19 ,15,14776,733856,1,1 ,20,18070,7025314,12,0 ,16,820,209576,20,10 ,15,14777,733864,1,1 ,16,820,209584,14,8 ,15,14778,733872,1,1 ,16,820,209592,20,8 ,15,14779,733880,1,1 ,16,820,209600,22,20 ,15,14780,733888,1,1 ,17,923,9122500,48,0 ,17,923,7549636,32,0 ,44,15152,1782468,72,0 ,45,15153,5452484,24,0 ,16,820,209608,21,8 ,15,14781,733896,1,1 ,16,820,209616,20,17 ,15,14782,733904,1,1 ,16,820,209624,20,10 ,15,14783,733912,1,1 ,16,820,209632,14,8 ,15,14784,733920,1,1 ,16,820,209640,20,8 ,15,14785,733928,1,1 ,16,820,209648,22,20 ,15,14786,733936,1,1 ,16,820,209656,21,8 ,15,14787,733944,1,1 ,16,820,209664,20,18 ,15,14788,733952,1,1 ,20,18071,7025410,12,0 ,44,15152,3355396,24,0 ,17,923,6501124,40,0 ,44,15152,2831108,64,0 ,16,820,209672,20,10 ,15,14789,733960,1,1 ,16,820,209680,14,8 ,15,14790,733968,1,1 ,16,820,209688,20,8 ,15,14791,733976,1,1 ,16,820,209696,22,20 ,15,14792,733984,1,1 ,16,820,209704,21,8 ,15,14793,733992,1,1 ,16,820,209712,20,17 ,15,14794,734000,1,1 ,16,820,209720,20,10 ,15,14795,734008,1,1 ,16,820,209728,14,8 ,15,14796,734016,1,1 ,17,923,9646916,96,0 ,44,15152,1258308,24,0 ,17,923,8598340,32,0 ,16,820,209736,20,8 ,15,14797,734024,1,1 ,16,820,209744,22,20 ,15,14798,734032,1,1 ,16,820,209752,21,8 ,15,14799,734040,1,1 ,16,820,209760,20,13 ,15,14800,734048,1,1 ,20,23757,21705570,148,0 ,20,18072,7025506,44,0 ,16,820,209768,20,10 ,15,14801,734056,1,1 ,16,820,209776,14,8 ,15,14802,734064,1,1 ,16,820,209784,20,8 ,15,14803,734072,1,1 ,16,820,209792,22,20 ,15,14804,734080,1,1 ,20,25957,27472770,360,0 ,45,15153,5452676,24,0 ,17,923,7025540,40,0 ,44,15152,3879812,40,0 ,16,820,209800,21,8 ,15,14805,734088,1,1 ,16,820,209808,20,18 ,15,14806,734096,1,1 ,16,820,209816,20,10 ,15,14807,734104,1,1 ,16,820,209824,14,8 ,15,14808,734112,1,1 ,16,820,209832,20,8 ,15,14809,734120,1,1 ,16,820,209840,22,20 ,15,14810,734128,1,1 ,16,820,209848,21,8 ,15,14811,734136,1,1 ,16,820,209856,20,16 ,15,14812,734144,1,1 ,20,23387,20657090,216,0 ,45,15153,4404164,24,0 ,17,923,7549892,32,0 ,44,15152,209860,48,0 ,44,15152,3355588,16,0 ,16,820,209864,20,10 ,15,14813,734152,1,1 ,16,820,209872,14,8 ,15,14814,734160,1,1 ,16,820,209880,20,8 ,15,14815,734168,1,1 ,16,820,209888,22,20 ,15,14816,734176,1,1 ,16,820,209896,21,8 ,15,14817,734184,1,1 ,16,820,209904,20,16 ,15,14818,734192,1,1 ,16,820,209912,20,10 ,15,14819,734200,1,1 ,16,820,209920,14,8 ,15,14820,734208,1,1 ,44,15152,1258500,24,0 ,16,820,209928,20,8 ,15,14821,734216,1,1 ,16,820,209936,22,20 ,15,14822,734224,1,1 ,16,820,209944,21,8 ,15,14823,734232,1,1 ,16,820,209952,20,16 ,15,14824,734240,1,1 ,20,21349,15938594,300,0 ,20,15840,1782818,288,0 ,16,820,209960,20,10 ,15,14825,734248,1,1 ,16,820,209968,14,8 ,15,14826,734256,1,1 ,16,820,209976,20,8 ,15,14827,734264,1,1 ,16,820,209984,22,20 ,15,14828,734272,1,1 ,17,923,10171460,32,0 ,17,923,6501444,24,0 ,44,15152,734276,88,0 ,44,15152,3355716,16,0 ,45,15153,5452868,16,0 ,17,923,8074308,24,0 ,17,923,8598596,16,0 ,17,923,9122884,40,0 ,16,820,209992,21,8 ,15,14829,734280,1,1 ,16,820,210000,20,16 ,15,14830,734288,1,1 ,16,820,210008,20,10 ,15,14831,734296,1,1 ,16,820,210016,14,8 ,15,14832,734304,1,1 ,20,23068,20132962,24,0 ,16,820,210024,20,8 ,15,14833,734312,1,1 ,16,820,210032,22,20 ,15,14834,734320,1,1 ,16,820,210040,21,8 ,15,14835,734328,1,1 ,16,820,210048,20,13 ,15,14836,734336,1,1 ,20,18715,8598658,496,0 ,20,25402,25900162,72,0 ,45,15153,4404356,40,0 ,16,820,210056,20,10 ,15,14837,734344,1,1 ,16,820,210064,14,8 ,15,14838,734352,1,1 ,16,820,210072,20,8 ,15,14839,734360,1,1 ,16,820,210080,22,20 ,15,14840,734368,1,1 ,20,20996,15414434,60,0 ,16,820,210088,21,8 ,15,14841,734376,1,1 ,16,820,210096,20,17 ,15,14842,734384,1,1 ,16,820,210104,20,10 ,15,14843,734392,1,1 ,16,820,210112,14,8 ,15,14844,734400,1,1 ,20,18073,7025858,132,0 ,17,923,8598724,16,0 ,17,923,7550148,32,0 ,17,923,7025860,32,0 ,44,15152,1258692,24,0 ,44,15152,3355844,24,0 ,44,15152,3880132,24,0 ,45,15153,5452996,48,0 ,16,820,210120,20,8 ,15,14845,734408,1,1 ,16,820,210128,22,20 ,15,14846,734416,1,1 ,16,820,210136,21,8 ,15,14847,734424,1,1 ,16,820,210144,20,17 ,15,14848,734432,1,1 ,20,15404,734434,428,0 ,16,820,210152,20,10 ,15,14849,734440,1,1 ,16,820,210160,14,8 ,15,14850,734448,1,1 ,16,820,210168,20,8 ,15,14851,734456,1,1 ,16,820,210176,22,20 ,15,14852,734464,1,1 ,17,923,8074500,64,0 ,17,923,6501636,24,0 ,44,15152,2831620,64,0 ,44,15152,1783044,32,0 ,45,15153,4928772,16,0 ,16,820,210184,21,8 ,15,14853,734472,1,1 ,16,820,210192,20,12 ,15,14854,734480,1,1 ,16,820,210200,20,10 ,15,14855,734488,1,1 ,16,820,210208,14,8 ,15,14856,734496,1,1 ,20,23069,20133154,112,0 ,16,820,210216,20,8 ,15,14857,734504,1,1 ,16,820,210224,22,20 ,15,14858,734512,1,1 ,16,820,210232,21,8 ,15,14859,734520,1,1 ,16,820,210240,20,17 ,15,14860,734528,1,1 ,17,923,10171716,16,0 ,44,15152,210244,32,0 ,17,923,8598852,16,0 ,16,820,210248,20,10 ,15,14861,734536,1,1 ,16,820,210256,14,8 ,15,14862,734544,1,1 ,16,820,210264,20,8 ,15,14863,734552,1,1 ,16,820,210272,22,20 ,15,14864,734560,1,1 ,20,25734,26948962,112,0 ,16,820,210280,21,8 ,15,14865,734568,1,1 ,16,820,210288,20,12 ,15,14866,734576,1,1 ,16,820,210296,20,10 ,15,14867,734584,1,1 ,16,820,210304,14,8 ,15,14868,734592,1,1 ,20,24401,23278978,128,0 ,20,22558,19084674,108,0 ,20,24213,22754690,24,0 ,17,923,9123204,40,0 ,44,15152,1258884,40,0 ,44,15152,3356036,72,0 ,44,15152,3880324,64,0 ,45,15153,4928900,48,0 ,16,820,210312,20,8 ,15,14869,734600,1,1 ,16,820,210320,22,20 ,15,14870,734608,1,1 ,16,820,210328,21,8 ,15,14871,734616,1,1 ,16,820,210336,20,17 ,15,14872,734624,1,1 ,20,17558,5977506,604,0 ,16,820,210344,20,10 ,15,14873,734632,1,1 ,16,820,210352,14,8 ,15,14874,734640,1,1 ,16,820,210360,20,8 ,15,14875,734648,1,1 ,16,820,210368,22,20 ,15,14876,734656,1,1 ,17,923,10171844,24,0 ,17,923,7550404,40,0 ,17,923,7026116,32,0 ,17,923,6501828,16,0 ,45,15153,4404676,48,0 ,17,923,8598980,16,0 ,16,820,210376,21,8 ,15,14877,734664,1,1 ,16,820,210384,20,15 ,15,14878,734672,1,1 ,16,820,210392,20,10 ,15,14879,734680,1,1 ,16,820,210400,14,8 ,15,14880,734688,1,1 ,20,15667,1258978,164,0 ,16,820,210408,20,8 ,15,14881,734696,1,1 ,16,820,210416,22,20 ,15,14882,734704,1,1 ,16,820,210424,21,8 ,15,14883,734712,1,1 ,16,820,210432,20,17 ,15,14884,734720,1,1 ,44,15152,1783300,24,0 ,16,820,210440,20,10 ,15,14885,734728,1,1 ,16,820,210448,14,8 ,15,14886,734736,1,1 ,16,820,210456,20,8 ,15,14887,734744,1,1 ,16,820,210464,22,20 ,15,14888,734752,1,1 ,16,820,210472,21,8 ,15,14889,734760,1,1 ,16,820,210480,20,15 ,15,14890,734768,1,1 ,16,820,210488,20,10 ,15,14891,734776,1,1 ,16,820,210496,14,8 ,15,14892,734784,1,1 ,20,24551,23803458,128,0 ,20,24214,22754882,24,0 ,17,923,9647684,56,0 ,17,923,6501956,24,0 ,44,15152,210500,24,0 ,45,15153,5453380,24,0 ,17,923,8599108,16,0 ,16,820,210504,20,8 ,15,14893,734792,1,1 ,16,820,210512,22,20 ,15,14894,734800,1,1 ,16,820,210520,21,8 ,15,14895,734808,1,1 ,16,820,210528,20,17 ,15,14896,734816,1,1 ,20,23982,22230626,408,0 ,16,820,210536,20,10 ,15,14897,734824,1,1 ,16,820,210544,14,8 ,15,14898,734832,1,1 ,16,820,210552,20,8 ,15,14899,734840,1,1 ,16,820,210560,22,20 ,15,14900,734848,1,1 ,20,21573,16463490,80,0 ,20,20997,15414914,244,0 ,17,923,10172036,40,0 ,16,820,210568,21,8 ,15,14901,734856,1,1 ,16,820,210576,20,15 ,15,14902,734864,1,1 ,16,820,210584,20,10 ,15,14903,734872,1,1 ,16,820,210592,14,8 ,15,14904,734880,1,1 ,20,22357,18560674,212,0 ,16,820,210600,20,8 ,15,14905,734888,1,1 ,16,820,210608,22,20 ,15,14906,734896,1,1 ,16,820,210616,21,8 ,15,14907,734904,1,1 ,16,820,210624,20,17 ,15,14908,734912,1,1 ,20,19436,10172098,76,0 ,20,25403,25900738,92,0 ,17,923,9123524,48,0 ,17,923,7026372,48,0 ,44,15152,1783492,16,0 ,44,15152,1259204,24,0 ,17,923,8599236,16,0 ,16,820,210632,20,10 ,15,14909,734920,1,1 ,16,820,210640,14,8 ,15,14910,734928,1,1 ,16,820,210648,20,8 ,15,14911,734936,1,1 ,16,820,210656,22,20 ,15,14912,734944,1,1 ,16,820,210664,21,8 ,15,14913,734952,1,1 ,16,820,210672,20,15 ,15,14914,734960,1,1 ,16,820,210680,20,10 ,15,14915,734968,1,1 ,16,820,210688,14,8 ,15,14916,734976,1,1 ,20,24215,22755074,120,0 ,17,923,8075012,32,0 ,17,923,7550724,48,0 ,17,923,6502148,24,0 ,44,15152,2832132,24,0 ,44,15152,210692,32,0 ,44,15152,734980,72,0 ,45,15153,4929284,16,0 ,45,15153,5453572,16,0 ,16,820,210696,20,8 ,15,14917,734984,1,1 ,16,820,210704,22,20 ,15,14918,734992,1,1 ,16,820,210712,21,8 ,15,14919,735000,1,1 ,16,820,210720,20,17 ,15,14920,735008,1,1 ,16,820,210728,20,10 ,15,14921,735016,1,1 ,16,820,210736,14,8 ,15,14922,735024,1,1 ,16,820,210744,20,8 ,15,14923,735032,1,1 ,16,820,210752,22,20 ,15,14924,735040,1,1 ,17,923,8599364,16,0 ,44,15152,1783620,16,0 ,45,15153,4405060,72,0 ,16,820,210760,21,8 ,15,14925,735048,1,1 ,16,820,210768,20,15 ,15,14926,735056,1,1 ,16,820,210776,20,10 ,15,14927,735064,1,1 ,16,820,210784,14,8 ,15,14928,735072,1,1 ,16,820,210792,20,8 ,15,14929,735080,1,1 ,16,820,210800,22,20 ,15,14930,735088,1,1 ,16,820,210808,21,8 ,15,14931,735096,1,1 ,16,820,210816,20,17 ,15,14932,735104,1,1 ,20,18527,8075138,260,0 ,45,15153,5453700,24,0 ,44,15152,1259396,528,0 ,44,15152,3880836,40,0 ,45,15153,4929412,64,0 ,16,820,210824,20,10 ,15,14933,735112,1,1 ,16,820,210832,14,8 ,15,14934,735120,1,1 ,16,820,210840,20,8 ,15,14935,735128,1,1 ,16,820,210848,22,20 ,24,14936,735136,3,1 ,16,820,210856,21,8 ,24,14937,735144,1,1 ,16,820,210864,20,15 ,24,14938,735152,1,1 ,16,820,210872,20,10 ,24,14939,735160,1,1 ,16,820,210880,14,8 ,24,14940,735168,1,1 ,17,923,10172356,32,0 ,17,923,6502340,24,0 ,44,15152,2832324,24,0 ,44,15152,1783748,24,0 ,44,15152,3356612,40,0 ,17,923,8599492,16,0 ,16,820,210888,20,8 ,24,14941,735176,1,1 ,16,820,210896,22,20 ,24,14942,735184,1,1 ,16,820,210904,21,8 ,24,14943,735192,1,1 ,16,820,210912,20,17 ,24,14944,735200,1,1 ,16,820,210920,20,10 ,24,14945,735208,1,1 ,16,820,210928,14,8 ,24,14946,735216,1,1 ,16,820,210936,20,8 ,24,14947,735224,1,1 ,16,820,210944,22,20 ,24,14948,735232,1,1 ,20,23758,21706754,596,0 ,17,923,9648132,56,0 ,44,15152,210948,48,0 ,17,923,8075268,48,0 ,16,820,210952,21,8 ,24,14949,735240,1,1 ,16,820,210960,20,15 ,24,14950,735248,1,1 ,16,820,210968,22,25 ,24,14951,735256,1,1 ,16,820,210976,20,10 ,24,14952,735264,1,1 ,16,820,210984,14,8 ,24,14953,735272,1,1 ,16,820,210992,20,8 ,24,14954,735280,1,1 ,16,820,211000,20,9 ,25,14955,735288,8,0 ,16,820,211008,14,8 ,25,14955,735296,8,0 ,17,923,9123908,40,0 ,17,923,7026756,32,0 ,45,15153,5453892,24,0 ,17,923,8599620,16,0 ,16,820,211016,22,8 ,25,14955,735304,8,0 ,16,820,211024,22,10 ,25,14955,735312,3,0 ,16,820,211032,20,9 ,25,14955,735320,38,0 ,16,820,211040,14,8 ,25,14955,735328,19,0 ,16,820,211048,22,127 ,25,14955,735336,8,0 ,16,820,211056,22,8 ,25,14955,735344,19,0 ,16,820,211064,22,8 ,25,14955,735352,10,0 ,16,820,211072,22,8 ,25,14955,735360,19,0 ,44,15152,1783940,112,0 ,17,923,7551108,32,0 ,17,923,6502532,64,0 ,44,15152,2832516,24,0 ,16,820,211080,22,11 ,25,14955,735368,11,0 ,16,820,211088,22,10 ,25,14955,735376,7,0 ,16,820,211096,22,9 ,25,14955,735384,37,0 ,16,820,211104,22,8 ,25,14955,735392,102,0 ,20,23070,20134050,64,0 ,16,820,211112,22,8 ,25,14955,735400,34,0 ,16,820,211120,22,8 ,25,14955,735408,35,0 ,16,820,211128,22,8 ,25,14955,735416,25,0 ,16,820,211136,22,8 ,25,14955,735424,23,0 ,20,21852,16988354,276,0 ,17,923,10172612,48,0 ,44,15152,3881156,48,0 ,17,923,8599748,16,0 ,16,820,211144,22,8 ,25,14955,735432,13,0 ,16,820,211152,22,8 ,25,14955,735440,13,0 ,16,820,211160,22,8 ,25,14955,735448,13,0 ,16,820,211168,22,9 ,25,14955,735456,67,0 ,20,22559,19085538,108,0 ,20,25735,26949858,112,0 ,20,18074,7026914,160,0 ,20,20032,11221218,188,0 ,16,820,211176,22,21 ,25,14955,735464,23,0 ,16,820,211184,22,10 ,25,14955,735472,20,0 ,16,820,211192,20,9 ,25,14955,735480,25,0 ,16,820,211200,14,8 ,25,14955,735488,18,0 ,20,21574,16464130,688,0 ,45,15153,5454084,16,0 ,44,15152,3356932,40,0 ,16,820,211208,20,9 ,25,14955,735496,30,0 ,16,820,211216,14,8 ,25,14955,735504,8,0 ,16,820,211224,20,9 ,25,14955,735512,12,0 ,16,820,211232,14,8 ,25,14955,735520,18,0 ,20,19437,10172706,192,0 ,16,820,211240,22,9 ,25,14955,735528,22,0 ,16,820,211248,20,16 ,25,14955,735536,38,0 ,16,820,211256,22,8 ,25,14955,735544,28,0 ,16,820,211264,22,8 ,25,14955,735552,32,0 ,20,22745,19609922,148,0 ,17,923,8599876,16,0 ,17,923,7027012,32,0 ,44,15152,2832708,24,0 ,44,15152,735556,48,0 ,16,820,211272,20,8 ,25,14955,735560,43,0 ,16,820,211280,20,10 ,25,14955,735568,55,0 ,16,820,211288,20,8 ,25,14955,735576,13,0 ,16,820,211296,22,8 ,25,14955,735584,13,0 ,16,820,211304,22,8 ,25,14955,735592,18,0 ,16,820,211312,20,8 ,25,14955,735600,94,0 ,16,820,211320,20,9 ,25,14955,735608,25,0 ,16,820,211328,14,8 ,25,14955,735616,16,0 ,20,24402,23280002,368,0 ,20,15245,211330,132,0 ,17,923,9124228,40,0 ,17,923,7551364,32,0 ,44,15152,211332,40,0 ,45,15153,4405636,32,0 ,45,15153,4929924,24,0 ,45,15153,5454212,24,0 ,17,923,8075652,40,0 ,16,820,211336,20,9 ,25,14955,735624,13,0 ,16,820,211344,22,10 ,25,14955,735632,27,0 ,16,820,211352,20,9 ,25,14955,735640,104,0 ,16,820,211360,14,8 ,25,14955,735648,17,0 ,20,25404,25901474,24,0 ,16,820,211368,20,10 ,25,14955,735656,159,0 ,16,820,211376,20,10 ,25,14955,735664,8,0 ,16,820,211384,20,8 ,25,14955,735672,20,0 ,16,820,211392,20,9 ,25,14955,735680,252,0 ,17,923,9648580,32,0 ,17,923,8600004,16,0 ,16,820,211400,14,8 ,25,14955,735688,59,0 ,16,820,211408,20,8 ,25,14955,735696,17,0 ,16,820,211416,20,10 ,25,14955,735704,13,0 ,16,820,211424,14,8 ,25,14955,735712,25,0 ,16,820,211432,20,8 ,25,14955,735720,8,0 ,16,820,211440,20,9 ,25,14955,735728,11,0 ,16,820,211448,14,8 ,25,14955,735736,99,0 ,16,820,211456,20,8 ,25,14955,735744,40,0 ,44,15152,2832900,24,0 ,16,820,211464,20,9 ,25,14955,735752,12,0 ,16,820,211472,14,8 ,25,14955,735760,15,0 ,16,820,211480,20,8 ,25,14955,735768,13,0 ,16,820,211488,20,9 ,25,14955,735776,28,0 ,20,19134,9648674,480,0 ,20,26432,29047330,108,0 ,16,820,211496,14,8 ,25,14955,735784,31,0 ,16,820,211504,20,8 ,25,14955,735792,7,0 ,16,820,211512,20,9 ,25,14955,735800,22,0 ,16,820,211520,14,8 ,25,14955,735808,28,0 ,20,24552,23804482,272,0 ,17,923,10172996,40,0 ,17,923,7027268,16,0 ,44,15152,3357252,32,0 ,44,15152,3881540,32,0 ,45,15153,4930116,48,0 ,45,15153,5454404,24,0 ,17,923,8600132,16,0 ,16,820,211528,20,8 ,25,14955,735816,207,0 ,16,820,211536,20,9 ,25,14955,735824,30,0 ,16,820,211544,14,8 ,25,14955,735832,212,0 ,16,820,211552,20,9 ,25,14955,735840,35,0 ,20,25405,25901666,24,0 ,16,820,211560,14,8 ,25,14955,735848,35,0 ,16,820,211568,20,8 ,25,14955,735856,110,0 ,16,820,211576,20,10 ,25,14955,735864,30,0 ,16,820,211584,14,8 ,25,14955,735872,25,0 ,20,23388,20658818,216,0 ,45,15153,4405892,16,0 ,17,923,7551620,40,0 ,17,923,6503044,24,0 ,16,820,211592,20,9 ,25,14955,735880,54,0 ,16,820,211600,22,11 ,25,14955,735888,319,0 ,16,820,211608,22,16 ,25,14955,735896,15,0 ,16,820,211616,20,10 ,25,14955,735904,20,0 ,20,23071,20134562,68,0 ,16,820,211624,14,8 ,25,14955,735912,70,0 ,16,820,211632,22,10 ,25,14955,735920,110,0 ,16,820,211640,14,8 ,25,14955,735928,70,0 ,16,820,211648,20,8 ,25,14955,735936,95,0 ,20,24216,22756034,3308,0 ,20,26161,27998914,676,0 ,17,923,9648836,56,0 ,17,923,7027396,24,0 ,44,15152,2833092,24,0 ,44,15152,211652,152,0 ,44,15152,735940,24,0 ,17,923,8075972,24,0 ,17,923,8600260,16,0 ,17,923,9124548,48,0 ,16,820,211656,20,10 ,25,14955,735944,25,0 ,16,820,211664,14,8 ,25,14955,735952,47,0 ,16,820,211672,20,8 ,25,14955,735960,30,0 ,16,820,211680,20,8 ,25,14955,735968,75,0 ,20,25559,26426082,56,0 ,16,820,211688,22,9 ,25,14955,735976,21,0 ,16,820,211696,20,10 ,25,14955,735984,16,0 ,16,820,211704,14,8 ,25,14955,735992,35,0 ,16,820,211712,20,9 ,25,14955,736000,29,0 ,20,15668,1260290,288,0 ,45,15153,5454596,24,0 ,45,15153,4406020,56,0 ,16,820,211720,14,8 ,25,14955,736008,16,0 ,16,820,211728,22,10 ,25,14955,736016,60,0 ,16,820,211736,14,8 ,25,14955,736024,92,0 ,16,820,211744,22,8 ,25,14955,736032,74,0 ,20,25406,25901858,212,0 ,16,820,211752,22,8 ,25,14955,736040,55,0 ,16,820,211760,22,11 ,25,14955,736048,30,0 ,16,820,211768,20,10 ,25,14955,736056,21,0 ,16,820,211776,14,8 ,25,14955,736064,30,0 ,17,923,8600388,16,0 ,17,923,6503236,88,0 ,44,15152,3357508,48,0 ,44,15152,3881796,16,0 ,16,820,211784,20,10 ,25,14955,736072,29,0 ,16,820,211792,14,8 ,25,14955,736080,17,0 ,16,820,211800,20,10 ,25,14955,736088,10,0 ,16,820,211808,14,8 ,25,14955,736096,108,0 ,16,820,211816,20,8 ,25,14955,736104,40,0 ,16,820,211824,20,10 ,25,14955,736112,40,0 ,16,820,211832,22,9 ,25,14955,736120,45,0 ,16,820,211840,22,9 ,25,14955,736128,24,0 ,17,923,10173316,32,0 ,17,923,7027588,24,0 ,44,15152,2833284,16,0 ,44,15152,736132,32,0 ,17,923,8076164,72,0 ,16,820,211848,22,9 ,25,14955,736136,105,0 ,16,820,211856,22,11 ,25,14955,736144,45,0 ,16,820,211864,22,9 ,25,14955,736152,26,0 ,16,820,211872,14,8 ,25,14955,736160,50,0 ,16,820,211880,14,8 ,25,14955,736168,306,0 ,16,820,211888,15,8 ,25,14955,736176,45,0 ,16,820,211896,20,8 ,25,14955,736184,45,0 ,16,820,211904,20,8 ,25,14955,736192,100,0 ,17,923,8600516,24,0 ,17,923,7551940,40,0 ,44,15152,3881924,8,0 ,45,15153,4930500,32,0 ,45,15153,5454788,16,0 ,16,820,211912,20,8 ,25,14955,736200,279,0 ,16,820,211920,22,17 ,25,14955,736208,110,0 ,16,820,211928,14,8 ,25,14955,736216,25,0 ,16,820,211936,20,8 ,25,14955,736224,80,0 ,20,18257,7551970,108,0 ,20,16433,3357666,284,0 ,16,820,211944,20,8 ,25,14955,736232,35,0 ,16,820,211952,20,9 ,25,14955,736240,87,0 ,16,820,211960,20,8 ,25,14955,736248,72,0 ,16,820,211968,14,8 ,25,14955,736256,167,0 ,44,15152,3881988,24,0 ,44,15152,2833412,16,0 ,44,15152,1784836,72,0 ,16,820,211976,20,8 ,25,14955,736264,70,0 ,16,820,211984,20,8 ,25,14955,736272,187,0 ,16,820,211992,14,8 ,25,14955,736280,52,0 ,16,820,212000,14,8 ,25,14955,736288,75,0 ,16,820,212008,22,10 ,25,14955,736296,80,0 ,16,820,212016,20,8 ,25,14955,736304,75,0 ,16,820,212024,22,10 ,25,14955,736312,115,0 ,16,820,212032,22,14 ,25,14955,736320,40,0 ,20,22560,19086402,156,0 ,17,923,9124932,40,0 ,17,923,7027780,40,0 ,45,15153,5454916,16,0 ,16,820,212040,22,10 ,25,14955,736328,65,0 ,16,820,212048,20,8 ,25,14955,736336,182,0 ,16,820,212056,20,9 ,25,14955,736344,40,0 ,16,820,212064,20,8 ,25,14955,736352,87,0 ,20,25736,26950754,204,0 ,16,820,212072,20,9 ,25,14955,736360,36,0 ,16,820,212080,20,8 ,25,14955,736368,50,0 ,16,820,212088,22,10 ,25,14955,736376,36,0 ,16,820,212096,20,8 ,25,14955,736384,443,0 ,20,20218,12270722,4932,0 ,17,923,10173572,32,0 ,44,15152,2833540,16,0 ,44,15152,736388,24,0 ,17,923,8600708,16,0 ,17,923,9649284,96,0 ,16,820,212104,18,10 ,25,14955,736392,95,0 ,16,820,212112,18,10 ,25,14955,736400,40,0 ,16,820,212120,18,10 ,25,14955,736408,99,0 ,16,820,212128,20,11 ,25,14955,736416,45,0 ,20,25560,26426530,192,0 ,16,820,212136,20,11 ,25,14955,736424,82,0 ,16,820,212144,18,8 ,25,14955,736432,25,0 ,16,820,212152,18,10 ,25,14955,736440,57,0 ,16,820,212160,18,10 ,25,14955,736448,55,0 ,20,23072,20135106,516,0 ,20,16744,3882178,356,0 ,45,15153,5455044,24,0 ,44,15152,3357892,32,0 ,44,15152,3882180,24,0 ,45,15153,4406468,32,0 ,45,15153,4930756,32,0 ,16,820,212168,18,8 ,25,14955,736456,50,0 ,16,820,212176,14,8 ,25,14955,736464,8,0 ,16,820,212184,20,9 ,25,14955,736472,70,0 ,16,820,212192,20,12 ,25,14955,736480,21,0 ,16,820,212200,20,10 ,25,14955,736488,30,0 ,16,820,212208,20,17 ,25,14955,736496,30,0 ,16,820,212216,20,8 ,25,14955,736504,60,0 ,16,820,212224,20,9 ,25,14955,736512,37,0 ,17,923,8600836,24,0 ,17,923,7552260,40,0 ,44,15152,2833668,16,0 ,16,820,212232,20,8 ,25,14955,736520,10,0 ,16,820,212240,22,10 ,25,14955,736528,10,0 ,16,820,212248,18,8 ,25,14955,736536,16,0 ,16,820,212256,22,14 ,25,14955,736544,51,0 ,20,15841,1785122,112,0 ,16,820,212264,20,12 ,25,14955,736552,23,0 ,16,820,212272,22,19 ,25,14955,736560,39,0 ,16,820,212280,20,15 ,25,14955,736568,23,0 ,36,15004,736576,6,1 ,16,820,212288,20,9 ,20,22358,18562370,12,0 ,44,15152,736580,24,0 ,16,820,212296,20,8 ,36,15004,736584,6,1 ,16,820,212304,20,10 ,36,15004,736592,6,1 ,36,15004,736600,6,1 ,16,820,212312,20,9 ,16,820,212320,20,10 ,36,15004,736608,6,1 ,36,15004,736616,6,1 ,16,820,212328,22,10 ,16,820,212336,20,8 ,36,15004,736624,6,1 ,16,820,212344,20,8 ,36,15004,736632,6,1 ,16,820,212352,18,8 ,36,15004,736640,6,1 ,20,21350,15940994,420,0 ,20,26433,29048194,292,0 ,17,923,10173828,48,0 ,17,923,7028100,24,0 ,44,15152,2833796,48,0 ,44,15152,3882372,24,0 ,45,15153,5455236,16,0 ,17,923,9125252,40,0 ,36,15004,736648,6,1 ,16,820,212360,14,8 ,36,15004,736656,6,1 ,16,820,212368,18,9 ,36,15004,736664,6,1 ,16,820,212376,18,9 ,36,15004,736672,6,1 ,16,820,212384,18,9 ,20,22359,18562466,68,0 ,20,15246,212386,132,0 ,36,15004,736680,6,1 ,16,820,212392,21,10 ,36,15004,736688,6,1 ,16,820,212400,21,11 ,36,15004,736696,2,1 ,16,820,212408,24,8 ,36,15004,736704,4,1 ,16,820,212416,22,12 ,17,923,8601028,16,0 ,44,15152,3358148,24,0 ,45,15153,4406724,88,0 ,45,15153,4931012,16,0 ,17,923,8076740,40,0 ,36,15004,736712,2,1 ,16,820,212424,22,11 ,36,15004,736720,4,1 ,16,820,212432,20,14 ,36,15004,736728,2,1 ,16,820,212440,14,8 ,16,820,212448,20,10 ,36,15004,736736,2,1 ,20,22746,19611106,92,0 ,20,18075,7028194,148,0 ,36,15004,736744,2,1 ,16,820,212456,21,11 ,36,15004,736752,6,1 ,16,820,212464,14,8 ,36,15004,736760,6,1 ,16,820,212472,22,15 ,36,15004,736768,6,1 ,16,820,212480,22,11 ,45,15153,5455364,24,0 ,17,923,6503940,96,0 ,44,15152,736772,32,0 ,36,15004,736776,6,1 ,16,820,212488,20,10 ,36,15004,736784,6,1 ,16,820,212496,20,9 ,36,15004,736792,6,1 ,16,820,212504,20,8 ,36,15004,736800,6,1 ,16,820,212512,20,10 ,20,20998,15416866,164,0 ,36,15004,736808,6,1 ,16,820,212520,20,8 ,36,15004,736816,6,1 ,16,820,212528,22,8 ,36,15004,736824,6,1 ,16,820,212536,20,8 ,36,15004,736832,6,1 ,16,820,212544,20,8 ,17,923,8601156,24,0 ,17,923,7552580,40,0 ,17,923,7028292,24,0 ,44,15152,1785412,136,0 ,44,15152,3882564,24,0 ,45,15153,4931140,32,0 ,36,15004,736840,6,1 ,16,820,212552,22,8 ,36,15004,736848,6,1 ,16,820,212560,18,8 ,36,15004,736856,6,1 ,16,820,212568,20,12 ,36,15004,736864,6,1 ,16,820,212576,22,8 ,36,15004,736872,6,1 ,16,820,212584,20,8 ,36,15004,736880,6,1 ,16,820,212592,22,11 ,16,820,212600,15,8 ,36,15004,736888,6,1 ,36,15004,736896,2,1 ,16,820,212608,22,14 ,44,15152,3358340,32,0 ,36,15004,736904,3,2 ,16,820,212616,20,8 ,16,820,212624,20,10 ,36,15004,736912,6,1 ,16,820,212632,26,28 ,36,15004,736920,6,1 ,16,820,212640,21,8 ,36,15004,736928,6,1 ,36,15004,736936,6,1 ,16,820,212648,20,8 ,36,15004,736944,6,1 ,16,820,212656,21,15 ,36,15004,736952,6,1 ,16,820,212664,15,8 ,36,15004,736960,6,1 ,16,820,212672,22,9 ,20,20033,11222722,364,0 ,20,25958,27475650,44,0 ,17,923,9125572,48,0 ,45,15153,5455556,16,0 ,36,15004,736968,6,1 ,16,820,212680,22,12 ,36,15004,736976,1,0 ,16,820,212688,20,8 ,16,820,212696,22,9 ,36,15004,736984,10,3 ,36,15004,736992,10,3 ,16,820,212704,20,8 ,36,15004,737000,10,3 ,16,820,212712,20,8 ,36,15004,737008,10,3 ,16,820,212720,21,8 ,16,820,212728,14,8 ,36,15004,737016,10,3 ,36,15004,737024,10,3 ,16,820,212736,22,8 ,17,923,10174212,40,0 ,17,923,7028484,32,0 ,44,15152,2834180,24,0 ,44,15152,737028,24,0 ,44,15152,3882756,24,0 ,17,923,8077060,24,0 ,17,923,8601348,16,0 ,36,15004,737032,10,3 ,16,820,212744,22,10 ,16,820,212752,22,10 ,36,15004,737040,10,3 ,16,820,212760,20,8 ,36,15004,737048,10,3 ,36,15004,737056,10,3 ,16,820,212768,22,8 ,20,19438,10174242,192,0 ,36,15004,737064,10,3 ,16,820,212776,14,8 ,36,15004,737072,6,1 ,16,820,212784,20,15 ,36,15004,737080,6,1 ,16,820,212792,20,12 ,36,15004,737088,6,1 ,16,820,212800,18,8 ,20,18258,7552834,12,0 ,45,15153,5455684,16,0 ,45,15153,4931396,16,0 ,36,15004,737096,6,1 ,16,820,212808,22,14 ,36,15004,737104,6,1 ,16,820,212816,22,10 ,36,15004,737112,6,1 ,16,820,212824,20,8 ,36,15004,737120,6,1 ,16,820,212832,20,9 ,36,15004,737128,6,1 ,16,820,212840,14,8 ,36,15004,737136,6,1 ,16,820,212848,20,8 ,36,15004,737144,6,1 ,16,820,212856,20,12 ,36,15004,737152,6,1 ,16,820,212864,20,10 ,17,923,9650052,56,0 ,17,923,7552900,32,0 ,44,15152,212868,32,0 ,44,15152,3358596,24,0 ,17,923,8601476,24,0 ,36,15004,737160,5,4 ,16,820,212872,21,8 ,36,15004,737168,6,1 ,16,820,212880,22,9 ,36,15004,737176,6,1 ,16,820,212888,22,17 ,36,15004,737184,6,1 ,16,820,212896,22,10 ,20,18528,8077218,712,0 ,20,18259,7552930,592,0 ,36,15004,737192,6,1 ,16,820,212904,18,8 ,36,15004,737200,9,3 ,16,820,212912,18,8 ,36,15004,737208,6,1 ,16,820,212920,18,8 ,36,15004,737216,6,1 ,16,820,212928,18,8 ,20,22360,18563010,12,0 ,17,923,8077252,48,0 ,44,15152,2834372,16,0 ,44,15152,737220,32,0 ,44,15152,3882948,24,0 ,45,15153,4931524,24,0 ,45,15153,5455812,16,0 ,36,15004,737224,6,1 ,16,820,212936,20,8 ,36,15004,737232,6,1 ,16,820,212944,22,13 ,36,15004,737240,6,1 ,16,820,212952,20,9 ,36,15004,737248,6,1 ,16,820,212960,22,8 ,36,15004,737256,6,1 ,16,820,212968,20,9 ,36,15004,737264,6,1 ,16,820,212976,20,9 ,36,15004,737272,6,1 ,16,820,212984,22,9 ,36,15004,737280,6,1 ,16,820,212992,18,8 ,20,16994,4407298,144,0 ,17,923,7028740,40,0 ,36,15004,737288,6,1 ,16,820,213000,20,9 ,36,15004,737296,6,1 ,16,820,213008,22,12 ,36,15004,737304,6,1 ,16,820,213016,22,10 ,36,15004,737312,6,1 ,16,820,213024,20,11 ,20,22361,18563106,140,0 ,20,25959,27476002,732,0 ,36,15004,737320,6,1 ,16,820,213032,18,8 ,36,15004,737328,6,1 ,16,820,213040,20,10 ,36,15004,737336,6,1 ,16,820,213048,20,10 ,36,15004,737344,5,2 ,16,820,213056,20,8 ,17,923,10174532,48,0 ,44,15152,2834500,16,0 ,44,15152,3358788,16,0 ,45,15153,5455940,24,0 ,17,923,8601668,16,0 ,17,923,9125956,40,0 ,36,15004,737352,6,1 ,16,820,213064,20,8 ,36,15004,737360,6,1 ,16,820,213072,22,9 ,16,820,213080,22,10 ,36,15004,737368,6,1 ,36,15004,737376,15,6 ,16,820,213088,20,8 ,20,24733,24330338,12,0 ,36,15004,737384,15,6 ,16,820,213096,20,8 ,16,820,213104,20,8 ,36,15004,737392,6,1 ,36,15004,737400,7,2 ,16,820,213112,20,8 ,36,15004,737408,7,2 ,16,820,213120,20,8 ,45,15153,4931716,32,0 ,17,923,7553156,24,0 ,44,15152,213124,40,0 ,44,15152,3883140,24,0 ,45,15153,4407428,32,0 ,36,15004,737416,7,2 ,16,820,213128,20,8 ,36,15004,737424,7,2 ,16,820,213136,22,9 ,36,15004,737432,7,2 ,16,820,213144,20,8 ,36,15004,737440,7,2 ,16,820,213152,14,8 ,20,15842,1786018,104,0 ,36,15004,737448,7,2 ,16,820,213160,22,8 ,36,15004,737456,7,2 ,16,820,213168,14,8 ,36,15004,737464,7,2 ,16,820,213176,20,11 ,36,15004,737472,7,2 ,16,820,213184,22,16 ,20,22747,19611842,72,0 ,20,24734,24330434,48,0 ,17,923,8601796,24,0 ,44,15152,2834628,32,0 ,44,15152,737476,24,0 ,44,15152,3358916,24,0 ,36,15004,737480,7,2 ,16,820,213192,18,8 ,36,15004,737488,7,2 ,16,820,213200,20,10 ,36,15004,737496,7,2 ,16,820,213208,18,8 ,36,15004,737504,7,2 ,16,820,213216,20,13 ,36,15004,737512,7,2 ,16,820,213224,22,10 ,36,15004,737520,7,2 ,16,820,213232,22,8 ,36,15004,737528,7,2 ,16,820,213240,21,8 ,36,15004,737536,7,2 ,16,820,213248,21,8 ,45,15153,5456132,32,0 ,17,923,6504708,128,0 ,36,15004,737544,7,2 ,16,820,213256,20,12 ,36,15004,737552,7,2 ,16,820,213264,21,8 ,36,15004,737560,6,1 ,16,820,213272,21,8 ,36,15004,737568,6,1 ,16,820,213280,22,8 ,20,22561,19087650,844,0 ,36,15004,737576,6,1 ,16,820,213288,21,8 ,36,15004,737584,6,1 ,16,820,213296,21,8 ,36,15004,737592,6,1 ,16,820,213304,20,12 ,36,15004,737600,6,1 ,16,820,213312,21,8 ,20,23389,20660546,24,0 ,17,923,9650500,56,0 ,17,923,7553348,32,0 ,17,923,7029060,24,0 ,44,15152,3883332,24,0 ,17,923,8077636,48,0 ,36,15004,737608,6,1 ,16,820,213320,21,8 ,36,15004,737616,6,1 ,16,820,213328,22,8 ,36,15004,737624,6,1 ,16,820,213336,21,8 ,36,15004,737632,6,1 ,16,820,213344,21,8 ,20,21853,16990562,108,0 ,36,15004,737640,6,1 ,16,820,213352,20,12 ,36,15004,737648,6,1 ,16,820,213360,22,8 ,36,15004,737656,6,1 ,16,820,213368,21,8 ,16,820,213376,21,8 ,36,15004,737664,8,3 ,17,923,9126276,24,0 ,44,15152,737668,32,0 ,44,15152,3359108,24,0 ,45,15153,4407684,32,0 ,45,15153,4931972,32,0 ,17,923,8601988,16,0 ,16,820,213384,22,8 ,36,15004,737672,8,3 ,36,15004,737680,8,3 ,16,820,213392,21,8 ,36,15004,737688,8,3 ,16,820,213400,21,8 ,36,15004,737696,8,3 ,16,820,213408,22,8 ,36,15004,737704,8,3 ,16,820,213416,22,8 ,16,820,213424,22,13 ,36,15004,737712,8,3 ,36,15004,737720,8,3 ,16,820,213432,20,8 ,16,820,213440,22,19 ,36,15004,737728,9,4 ,20,15247,213442,324,0 ,20,25407,25903554,72,0 ,17,923,10174916,24,0 ,44,15152,2834884,16,0 ,44,15152,213444,32,0 ,36,15004,737736,9,4 ,16,820,213448,22,18 ,36,15004,737744,9,4 ,16,820,213456,22,16 ,36,15004,737752,11,4 ,16,820,213464,20,16 ,16,820,213472,20,10 ,36,15004,737760,4,1 ,16,820,213480,20,8 ,36,15004,737768,1,0 ,16,820,213488,20,14 ,36,15004,737776,1,0 ,36,15004,737784,1,0 ,16,820,213496,22,16 ,36,15004,737792,1,0 ,16,820,213504,18,10 ,20,23390,20660738,300,0 ,17,923,8602116,24,0 ,17,923,7029252,32,0 ,44,15152,3883524,24,0 ,45,15153,5456388,24,0 ,16,820,213512,20,13 ,36,15004,737800,4,1 ,36,15004,737808,4,1 ,16,820,213520,14,8 ,36,15004,737816,4,1 ,16,820,213528,14,8 ,36,15004,737824,4,1 ,16,820,213536,20,8 ,36,15004,737832,2,1 ,16,820,213544,20,8 ,16,820,213552,18,10 ,36,15004,737840,5,0 ,36,15004,737848,6,1 ,16,820,213560,20,9 ,36,15004,737856,6,1 ,16,820,213568,20,8 ,20,15405,737858,12,0 ,20,24735,24330818,672,0 ,17,923,9126468,104,0 ,17,923,7553604,24,0 ,44,15152,2835012,32,0 ,44,15152,3359300,32,0 ,36,15004,737864,6,1 ,16,820,213576,20,9 ,36,15004,737872,6,1 ,16,820,213584,20,10 ,36,15004,737880,6,1 ,16,820,213592,22,17 ,36,15004,737888,6,1 ,16,820,213600,14,8 ,36,15004,737896,6,1 ,16,820,213608,20,10 ,36,15004,737904,6,1 ,16,820,213616,22,19 ,36,15004,737912,6,1 ,16,820,213624,22,17 ,36,15004,737920,6,1 ,16,820,213632,20,10 ,20,18076,7029378,148,0 ,17,923,10175108,32,0 ,44,15152,1786500,24,0 ,44,15152,737924,24,0 ,45,15153,4407940,56,0 ,45,15153,4932228,16,0 ,36,15004,737928,6,1 ,16,820,213640,22,19 ,36,15004,737936,6,1 ,16,820,213648,22,17 ,36,15004,737944,6,1 ,16,820,213656,14,8 ,36,15004,737952,6,1 ,16,820,213664,20,10 ,20,15406,737954,56,0 ,20,25561,26428066,112,0 ,36,15004,737960,6,1 ,16,820,213672,22,19 ,36,15004,737968,6,1 ,16,820,213680,22,17 ,36,15004,737976,6,1 ,16,820,213688,22,17 ,36,15004,737984,6,1 ,16,820,213696,22,17 ,20,24553,23806658,516,0 ,20,25737,26952386,204,0 ,17,923,8602308,16,0 ,44,15152,213700,16,0 ,44,15152,3883716,16,0 ,45,15153,5456580,16,0 ,17,923,8078020,40,0 ,36,15004,737992,6,1 ,16,820,213704,22,10 ,36,15004,738000,6,1 ,16,820,213712,22,19 ,36,15004,738008,6,1 ,16,820,213720,22,17 ,36,15004,738016,6,1 ,16,820,213728,20,12 ,36,15004,738024,6,1 ,16,820,213736,22,10 ,36,15004,738032,6,1 ,16,820,213744,22,17 ,36,15004,738040,6,1 ,16,820,213752,22,17 ,36,15004,738048,6,1 ,16,820,213760,22,17 ,20,22748,19612418,160,0 ,17,923,9650948,56,0 ,17,923,7553796,32,0 ,17,923,7029508,40,0 ,45,15153,4932356,40,0 ,36,15004,738056,6,1 ,16,820,213768,22,17 ,36,15004,738064,6,1 ,16,820,213776,22,10 ,36,15004,738072,6,1 ,16,820,213784,22,17 ,36,15004,738080,6,1 ,16,820,213792,22,17 ,20,23983,22233890,420,0 ,20,25167,25379618,120,0 ,36,15004,738088,6,1 ,16,820,213800,22,17 ,36,15004,738096,6,1 ,16,820,213808,22,17 ,36,15004,738104,6,1 ,16,820,213816,22,10 ,36,15004,738112,6,1 ,16,820,213824,22,15 ,20,20999,15418178,968,0 ,17,923,8602436,16,0 ,44,15152,2835268,32,0 ,44,15152,1786692,32,0 ,44,15152,213828,64,0 ,44,15152,738116,24,0 ,44,15152,3359556,48,0 ,44,15152,3883844,24,0 ,45,15153,5456708,32,0 ,36,15004,738120,6,1 ,16,820,213832,22,10 ,36,15004,738128,6,1 ,16,820,213840,22,10 ,36,15004,738136,6,1 ,16,820,213848,20,10 ,36,15004,738144,6,1 ,16,820,213856,22,17 ,20,17162,4932450,96,0 ,36,15004,738152,6,1 ,16,820,213864,20,12 ,36,15004,738160,6,1 ,16,820,213872,22,10 ,36,15004,738168,6,1 ,16,820,213880,22,15 ,36,15004,738176,6,1 ,16,820,213888,22,10 ,17,923,10175364,40,0 ,36,15004,738184,6,1 ,16,820,213896,22,10 ,36,15004,738192,6,1 ,16,820,213904,20,10 ,36,15004,738200,6,1 ,16,820,213912,22,17 ,36,15004,738208,6,1 ,16,820,213920,20,12 ,36,15004,738216,6,1 ,16,820,213928,22,10 ,36,15004,738224,6,1 ,16,820,213936,22,17 ,36,15004,738232,6,1 ,16,820,213944,22,17 ,36,15004,738240,13,4 ,16,820,213952,22,21 ,17,923,8602564,24,0 ,36,15004,738248,13,4 ,16,820,213960,22,17 ,36,15004,738256,13,4 ,16,820,213968,22,17 ,36,15004,738264,13,4 ,16,820,213976,14,8 ,36,15004,738272,13,4 ,16,820,213984,14,8 ,20,15843,1786850,68,0 ,36,15004,738280,13,4 ,16,820,213992,21,8 ,36,15004,738288,13,4 ,16,820,214000,20,14 ,36,15004,738296,13,4 ,16,820,214008,21,8 ,16,820,214016,21,8 ,36,15004,738304,13,4 ,20,18716,8602626,440,0 ,20,25408,25904130,212,0 ,20,15669,1262594,32,0 ,17,923,8078340,48,0 ,17,923,7554052,32,0 ,44,15152,738308,24,0 ,44,15152,3884036,24,0 ,36,15004,738312,6,1 ,16,820,214024,14,8 ,36,15004,738320,6,1 ,16,820,214032,14,8 ,36,15004,738328,6,1 ,16,820,214040,14,8 ,36,15004,738336,6,1 ,16,820,214048,20,10 ,36,15004,738344,27,0 ,16,820,214056,22,19 ,36,15004,738352,31,0 ,16,820,214064,18,8 ,36,15004,738360,6,1 ,16,820,214072,20,8 ,36,15004,738368,6,1 ,16,820,214080,18,8 ,45,15153,5456964,40,0 ,17,923,7029828,32,0 ,44,15152,2835524,16,0 ,44,15152,1786948,48,0 ,45,15153,4408388,64,0 ,45,15153,4932676,24,0 ,36,15004,738376,6,1 ,16,820,214088,18,8 ,36,15004,738384,6,1 ,16,820,214096,20,8 ,36,15004,738392,6,1 ,16,820,214104,20,8 ,16,820,214112,22,14 ,36,15004,738400,17,6 ,20,15407,738402,172,0 ,36,15004,738408,19,6 ,16,820,214120,20,8 ,36,15004,738416,13,4 ,16,820,214128,22,14 ,16,820,214136,20,8 ,36,15004,738424,13,4 ,36,15004,738432,13,4 ,16,820,214144,20,8 ,20,22362,18564226,276,0 ,20,16995,4408450,12,0 ,17,923,8602756,16,0 ,44,15152,2311300,872,0 ,36,15004,738440,13,4 ,16,820,214152,14,8 ,36,15004,738448,13,4 ,16,820,214160,14,8 ,36,15004,738456,13,4 ,16,820,214168,15,8 ,36,15004,738464,13,4 ,16,820,214176,20,9 ,20,16188,2835618,376,0 ,36,15004,738472,13,4 ,16,820,214184,20,9 ,36,15004,738480,13,4 ,16,820,214192,20,9 ,16,820,214200,20,9 ,36,15004,738488,13,4 ,36,15004,738496,13,4 ,16,820,214208,20,9 ,20,21854,16991426,160,0 ,20,16434,3359938,128,0 ,17,923,10175684,24,0 ,44,15152,2835652,16,0 ,44,15152,738500,32,0 ,44,15152,3359940,24,0 ,44,15152,3884228,24,0 ,17,923,9651396,32,0 ,36,15004,738504,13,4 ,16,820,214216,20,12 ,36,15004,738512,13,4 ,16,820,214224,20,9 ,36,15004,738520,13,4 ,16,820,214232,20,8 ,36,15004,738528,13,4 ,16,820,214240,14,8 ,20,16996,4408546,1544,0 ,36,15004,738536,13,4 ,16,820,214248,20,8 ,36,15004,738544,13,4 ,16,820,214256,14,8 ,36,15004,738552,13,4 ,16,820,214264,20,10 ,36,15004,738560,13,4 ,16,820,214272,14,8 ,20,24403,23282946,108,0 ,20,15670,1262850,12,0 ,17,923,8602884,24,0 ,17,923,7554308,32,0 ,17,923,6505732,32,0 ,45,15153,4932868,16,0 ,36,15004,738568,13,4 ,16,820,214280,20,10 ,36,15004,738576,13,4 ,16,820,214288,20,9 ,36,15004,738584,13,4 ,16,820,214296,20,10 ,36,15004,738592,13,4 ,16,820,214304,20,8 ,20,19439,10175778,192,0 ,36,15004,738600,13,4 ,16,820,214312,22,11 ,36,15004,738608,13,4 ,16,820,214320,22,9 ,36,15004,738616,13,4 ,16,820,214328,22,12 ,36,15004,738624,13,4 ,16,820,214336,20,8 ,44,15152,214340,32,0 ,17,923,7030084,24,0 ,44,15152,2835780,16,0 ,36,15004,738632,13,4 ,16,820,214344,14,8 ,36,15004,738640,13,4 ,16,820,214352,15,8 ,36,15004,738648,6,1 ,16,820,214360,20,8 ,36,15004,738656,7,2 ,16,820,214368,22,10 ,20,15671,1262946,12,0 ,36,15004,738664,6,1 ,16,820,214376,14,8 ,36,15004,738672,6,1 ,16,820,214384,22,12 ,36,15004,738680,6,1 ,16,820,214392,22,11 ,36,15004,738688,6,1 ,16,820,214400,22,10 ,17,923,10175876,64,0 ,44,15152,3360132,24,0 ,44,15152,3884420,24,0 ,45,15153,4932996,48,0 ,45,15153,5457284,24,0 ,17,923,8078724,40,0 ,17,923,9127300,40,0 ,36,15004,738696,6,1 ,16,820,214408,20,19 ,36,15004,738704,6,1 ,16,820,214416,14,8 ,36,15004,738712,6,1 ,16,820,214424,18,9 ,36,15004,738720,6,1 ,16,820,214432,22,10 ,36,15004,738728,6,1 ,16,820,214440,22,9 ,16,820,214448,20,24 ,36,15004,738736,13,2 ,36,15004,738744,9,2 ,16,820,214456,20,8 ,36,15004,738752,6,1 ,16,820,214464,22,10 ,20,15672,1263042,224,0 ,17,923,9651652,112,0 ,44,15152,2835908,16,0 ,44,15152,1787332,24,0 ,44,15152,738756,24,0 ,17,923,8603076,16,0 ,36,15004,738760,6,1 ,16,820,214472,20,9 ,16,820,214480,22,9 ,36,15004,738768,13,4 ,36,15004,738776,13,4 ,16,820,214488,20,9 ,36,15004,738784,13,4 ,16,820,214496,20,8 ,36,15004,738792,13,4 ,16,820,214504,22,9 ,36,15004,738800,13,4 ,16,820,214512,20,8 ,36,15004,738808,13,4 ,16,820,214520,20,8 ,36,15004,738816,6,1 ,16,820,214528,22,8 ,20,15844,1787394,372,0 ,17,923,6505988,24,0 ,17,923,7554564,40,0 ,17,923,7030276,32,0 ,36,15004,738824,6,1 ,16,820,214536,20,8 ,36,15004,738832,6,1 ,16,820,214544,22,11 ,36,15004,738840,6,1 ,16,820,214552,22,11 ,36,15004,738848,6,1 ,16,820,214560,22,14 ,20,25562,26428962,248,0 ,36,15004,738856,6,1 ,16,820,214568,20,8 ,36,15004,738864,6,1 ,16,820,214576,20,11 ,36,15004,738872,6,1 ,16,820,214584,22,11 ,36,15004,738880,6,1 ,16,820,214592,22,19 ,17,923,8603204,16,0 ,44,15152,2836036,16,0 ,44,15152,214596,56,0 ,44,15152,3360324,48,0 ,44,15152,3884612,16,0 ,45,15153,4408900,72,0 ,45,15153,5457476,24,0 ,36,15004,738888,6,1 ,16,820,214600,22,19 ,36,15004,738896,6,1 ,16,820,214608,22,13 ,36,15004,738904,7,0 ,16,820,214616,22,10 ,36,15004,738912,7,2 ,16,820,214624,22,10 ,20,17163,4933218,168,0 ,16,820,214632,22,12 ,36,15004,738920,7,2 ,16,820,214640,22,11 ,36,15004,738928,7,2 ,16,820,214648,22,12 ,36,15004,738936,7,2 ,36,15004,738944,7,2 ,16,820,214656,22,11 ,44,15152,738948,40,0 ,44,15152,1787524,24,0 ,36,15004,738952,7,2 ,16,820,214664,22,19 ,36,15004,738960,7,2 ,16,820,214672,22,11 ,36,15004,738968,7,2 ,16,820,214680,14,8 ,36,15004,738976,7,2 ,16,820,214688,20,12 ,20,26434,29050530,220,0 ,36,15004,738984,7,2 ,16,820,214696,22,10 ,36,15004,738992,6,1 ,16,820,214704,21,8 ,36,15004,739000,6,1 ,16,820,214712,20,12 ,36,15004,739008,6,1 ,16,820,214720,20,9 ,17,923,9127620,32,0 ,17,923,6506180,40,0 ,44,15152,2836164,16,0 ,44,15152,3884740,24,0 ,17,923,8079044,48,0 ,17,923,8603332,24,0 ,36,15004,739016,3,2 ,16,820,214728,22,13 ,36,15004,739024,6,1 ,16,820,214736,22,10 ,36,15004,739032,6,1 ,16,820,214744,20,8 ,36,15004,739040,6,1 ,16,820,214752,20,9 ,20,25168,25380578,1572,0 ,36,15004,739048,6,1 ,16,820,214760,22,9 ,36,15004,739056,6,1 ,16,820,214768,20,8 ,36,15004,739064,6,1 ,16,820,214776,20,8 ,36,15004,739072,6,1 ,16,820,214784,20,8 ,45,15153,5457668,24,0 ,17,923,7030532,32,0 ,45,15153,4933380,16,0 ,36,15004,739080,6,1 ,16,820,214792,20,9 ,36,15004,739088,6,1 ,16,820,214800,20,10 ,36,15004,739096,6,1 ,16,820,214808,22,14 ,36,15004,739104,6,1 ,16,820,214816,20,8 ,20,18077,7030562,12,0 ,36,15004,739112,6,1 ,16,820,214824,14,8 ,16,820,214832,18,8 ,36,15004,739120,6,1 ,36,15004,739128,1,0 ,16,820,214840,20,9 ,36,15004,739136,1,0 ,16,820,214848,21,10 ,44,15152,1787716,24,0 ,17,923,7554884,40,0 ,44,15152,2836292,40,0 ,16,820,214856,14,8 ,36,15004,739144,1,0 ,36,15004,739152,1,0 ,16,820,214864,22,8 ,36,15004,739160,6,1 ,16,820,214872,20,8 ,16,820,214880,22,8 ,36,15004,739168,6,1 ,16,820,214888,20,8 ,36,15004,739176,6,1 ,16,820,214896,22,8 ,36,15004,739184,6,1 ,36,15004,739192,1,0 ,16,820,214904,20,8 ,36,15004,739200,6,1 ,16,820,214912,22,8 ,20,18078,7030658,388,0 ,17,923,10176388,32,0 ,44,15152,3884932,24,0 ,45,15153,4933508,96,0 ,17,923,8603524,24,0 ,36,15004,739208,6,1 ,16,820,214920,20,8 ,36,15004,739216,6,1 ,16,820,214928,22,8 ,36,15004,739224,6,1 ,16,820,214936,20,8 ,36,15004,739232,6,1 ,16,820,214944,22,8 ,36,15004,739240,6,1 ,16,820,214952,20,8 ,36,15004,739248,6,1 ,16,820,214960,22,8 ,36,15004,739256,6,1 ,16,820,214968,20,8 ,36,15004,739264,6,1 ,16,820,214976,22,8 ,20,18991,9127874,132,0 ,17,923,9127876,40,0 ,44,15152,739268,152,0 ,44,15152,3360708,24,0 ,45,15153,5457860,40,0 ,36,15004,739272,6,1 ,16,820,214984,20,8 ,36,15004,739280,6,1 ,16,820,214992,22,8 ,36,15004,739288,6,1 ,16,820,215000,20,8 ,36,15004,739296,6,1 ,16,820,215008,22,8 ,20,16745,3885026,388,0 ,36,15004,739304,6,1 ,16,820,215016,20,8 ,36,15004,739312,6,1 ,16,820,215024,22,8 ,36,15004,739320,6,1 ,16,820,215032,20,8 ,36,15004,739328,6,1 ,16,820,215040,22,8 ,20,22749,19613698,56,0 ,44,15152,215044,32,0 ,17,923,7030788,32,0 ,17,923,6506500,24,0 ,44,15152,1787908,64,0 ,44,15152,1263620,120,0 ,36,15004,739336,4,1 ,16,820,215048,20,8 ,36,15004,739344,7,2 ,16,820,215056,22,8 ,36,15004,739352,7,2 ,16,820,215064,20,8 ,36,15004,739360,7,2 ,16,820,215072,22,8 ,36,15004,739368,4,1 ,16,820,215080,20,8 ,36,15004,739376,7,2 ,16,820,215088,22,8 ,36,15004,739384,4,1 ,16,820,215096,22,8 ,36,15004,739392,6,1 ,16,820,215104,20,12 ,17,923,8603716,24,0 ,44,15152,3885124,24,0 ,17,923,8079428,40,0 ,36,15004,739400,6,1 ,16,820,215112,22,8 ,36,15004,739408,6,1 ,16,820,215120,20,8 ,36,15004,739416,1,0 ,16,820,215128,20,8 ,36,15004,739424,1,0 ,16,820,215136,22,8 ,20,24404,23283810,168,0 ,36,15004,739432,1,0 ,16,820,215144,14,8 ,16,820,215152,22,8 ,36,15004,739440,1,0 ,36,15004,739448,6,1 ,16,820,215160,20,8 ,36,15004,739456,6,1 ,16,820,215168,14,8 ,20,17559,5982338,512,0 ,17,923,10176644,24,0 ,17,923,7555204,48,0 ,44,15152,2836612,16,0 ,44,15152,3360900,48,0 ,45,15153,4409476,32,0 ,36,15004,739464,6,1 ,16,820,215176,20,14 ,36,15004,739472,6,1 ,16,820,215184,20,8 ,16,820,215192,20,8 ,36,15004,739480,7,2 ,16,820,215200,20,8 ,36,15004,739488,7,2 ,16,820,215208,20,8 ,36,15004,739496,7,2 ,16,820,215216,20,8 ,36,15004,739504,7,2 ,36,15004,739512,6,1 ,16,820,215224,18,8 ,36,15004,739520,6,1 ,16,820,215232,20,8 ,20,16435,3360962,1040,0 ,17,923,6506692,40,0 ,36,15004,739528,6,1 ,16,820,215240,20,10 ,36,15004,739536,6,1 ,16,820,215248,20,8 ,36,15004,739544,2,1 ,16,820,215256,20,8 ,36,15004,739552,1,0 ,16,820,215264,20,8 ,36,15004,739560,6,1 ,16,820,215272,20,10 ,36,15004,739568,4,1 ,16,820,215280,20,8 ,36,15004,739576,7,2 ,16,820,215288,20,10 ,36,15004,739584,6,1 ,16,820,215296,20,10 ,17,923,9128196,48,0 ,17,923,7031044,32,0 ,44,15152,2836740,16,0 ,44,15152,215300,16,0 ,44,15152,3885316,24,0 ,45,15153,5458180,16,0 ,17,923,8603908,16,0 ,16,820,215304,20,10 ,36,15004,739592,6,1 ,16,820,215312,20,10 ,36,15004,739600,6,1 ,36,15004,739608,6,1 ,16,820,215320,20,9 ,36,15004,739616,6,1 ,16,820,215328,20,10 ,20,19135,9652514,12,0 ,20,25738,26954018,196,0 ,36,15004,739624,6,1 ,16,820,215336,20,10 ,36,15004,739632,6,1 ,16,820,215344,20,12 ,36,15004,739640,6,1 ,16,820,215352,20,9 ,16,820,215360,22,10 ,36,15004,739648,10,3 ,17,923,10176836,40,0 ,17,923,9652548,64,0 ,16,820,215368,18,8 ,36,15004,739656,7,2 ,36,15004,739664,6,1 ,16,820,215376,20,8 ,36,15004,739672,6,1 ,16,820,215384,20,8 ,36,15004,739680,6,1 ,16,820,215392,18,8 ,36,15004,739688,6,1 ,16,820,215400,18,8 ,36,15004,739696,6,1 ,16,820,215408,20,10 ,36,15004,739704,6,1 ,16,820,215416,20,9 ,36,15004,739712,6,1 ,16,820,215424,20,9 ,20,19136,9652610,48,0 ,17,923,8604036,32,0 ,44,15152,2836868,16,0 ,44,15152,215428,64,0 ,45,15153,4409732,248,0 ,45,15153,5458308,24,0 ,17,923,8079748,40,0 ,16,820,215432,20,9 ,36,15004,739720,6,1 ,16,820,215440,20,9 ,36,15004,739728,6,1 ,16,820,215448,20,9 ,36,15004,739736,6,1 ,36,15004,739744,6,1 ,16,820,215456,20,9 ,36,15004,739752,6,1 ,16,820,215464,20,9 ,36,15004,739760,6,1 ,16,820,215472,20,9 ,36,15004,739768,6,1 ,16,820,215480,20,9 ,36,15004,739776,6,1 ,16,820,215488,20,9 ,20,22750,19614146,100,0 ,20,15408,739778,152,0 ,20,21855,16992706,48,0 ,44,15152,3885508,24,0 ,36,15004,739784,6,1 ,16,820,215496,18,8 ,16,820,215504,18,8 ,36,15004,739792,1,0 ,36,15004,739800,6,1 ,16,820,215512,22,8 ,16,820,215520,20,9 ,36,15004,739808,6,1 ,36,15004,739816,6,1 ,16,820,215528,20,8 ,36,15004,739824,6,1 ,16,820,215536,20,8 ,16,820,215544,20,8 ,36,15004,739832,6,1 ,36,15004,739840,6,1 ,16,820,215552,20,8 ,44,15152,3361284,152,0 ,17,923,7555588,32,0 ,17,923,7031300,24,0 ,17,923,6507012,24,0 ,44,15152,2836996,24,0 ,44,15152,1788420,24,0 ,36,15004,739848,6,1 ,16,820,215560,21,8 ,36,15004,739856,6,1 ,16,820,215568,20,12 ,16,820,215576,22,12 ,36,15004,739864,7,2 ,36,15004,739872,17,6 ,16,820,215584,20,10 ,20,20279,12798498,2212,0 ,20,20034,11225634,36,0 ,36,15004,739880,7,2 ,16,820,215592,20,10 ,36,15004,739888,1,0 ,16,820,215600,20,10 ,36,15004,739896,7,2 ,16,820,215608,20,11 ,36,15004,739904,7,2 ,16,820,215616,20,10 ,45,15153,5458500,24,0 ,36,15004,739912,7,2 ,16,820,215624,20,10 ,36,15004,739920,7,2 ,16,820,215632,20,10 ,36,15004,739928,7,2 ,16,820,215640,20,10 ,36,15004,739936,7,2 ,16,820,215648,20,10 ,36,15004,739944,5,2 ,16,820,215656,20,10 ,36,15004,739952,5,2 ,16,820,215664,20,12 ,36,15004,739960,5,2 ,16,820,215672,20,12 ,36,15004,739968,5,2 ,16,820,215680,20,12 ,17,923,10177156,16,0 ,44,15152,3885700,24,0 ,45,15153,4934276,80,0 ,17,923,8604292,24,0 ,17,923,9128580,24,0 ,36,15004,739976,1,0 ,16,820,215688,20,12 ,36,15004,739984,1,0 ,16,820,215696,20,10 ,36,15004,739992,1,0 ,16,820,215704,20,10 ,16,820,215712,20,8 ,36,15004,740000,6,1 ,20,23759,21711522,480,0 ,20,25409,25905826,148,0 ,20,21351,15944354,112,0 ,16,820,215720,20,13 ,36,15004,740008,6,1 ,16,820,215728,20,8 ,36,15004,740016,6,1 ,16,820,215736,20,12 ,36,15004,740024,6,1 ,16,820,215744,20,12 ,36,15004,740032,6,1 ,17,923,8080068,40,0 ,17,923,7031492,32,0 ,17,923,6507204,24,0 ,44,15152,2837188,24,0 ,44,15152,1788612,32,0 ,16,820,215752,20,16 ,36,15004,740040,6,1 ,36,15004,740048,6,1 ,16,820,215760,20,11 ,16,820,215768,22,12 ,36,15004,740056,6,1 ,16,820,215776,14,8 ,36,15004,740064,6,1 ,16,820,215784,20,10 ,36,15004,740072,6,1 ,16,820,215792,20,10 ,36,15004,740080,6,1 ,16,820,215800,18,8 ,36,15004,740088,6,1 ,16,820,215808,20,8 ,36,15004,740096,6,1 ,20,19137,9652994,176,0 ,17,923,10177284,32,0 ,17,923,7555844,40,0 ,45,15153,5458692,16,0 ,16,820,215816,22,8 ,36,15004,740104,6,1 ,16,820,215824,20,8 ,36,15004,740112,6,1 ,36,15004,740120,6,1 ,16,820,215832,22,8 ,16,820,215840,20,8 ,36,15004,740128,6,1 ,20,19440,10177314,276,0 ,16,820,215848,20,10 ,36,15004,740136,6,1 ,36,15004,740144,6,1 ,16,820,215856,20,8 ,16,820,215864,20,8 ,36,15004,740152,6,1 ,16,820,215872,22,8 ,36,15004,740160,6,1 ,20,21856,16993090,860,0 ,20,20035,11225922,12,0 ,17,923,9653060,64,0 ,44,15152,3885892,16,0 ,17,923,8604484,24,0 ,17,923,9128772,96,0 ,16,820,215880,20,10 ,36,15004,740168,6,1 ,16,820,215888,20,8 ,36,15004,740176,6,1 ,16,820,215896,22,8 ,36,15004,740184,6,1 ,16,820,215904,20,10 ,36,15004,740192,6,1 ,20,23391,20663138,300,0 ,16,820,215912,22,8 ,36,15004,740200,6,1 ,16,820,215920,22,8 ,36,15004,740208,6,1 ,16,820,215928,20,10 ,36,15004,740216,6,1 ,16,820,215936,20,10 ,36,15004,740224,6,1 ,45,15153,5458820,24,0 ,17,923,6507396,32,0 ,44,15152,2837380,16,0 ,44,15152,215940,24,0 ,16,820,215944,20,8 ,36,15004,740232,6,1 ,16,820,215952,20,8 ,36,15004,740240,6,1 ,16,820,215960,20,10 ,36,15004,740248,6,1 ,16,820,215968,14,8 ,36,15004,740256,6,1 ,20,20036,11226018,100,0 ,20,17164,4934562,128,0 ,16,820,215976,20,8 ,36,15004,740264,6,1 ,16,820,215984,22,9 ,36,15004,740272,6,1 ,16,820,215992,20,9 ,36,15004,740280,6,1 ,16,820,216000,20,10 ,36,15004,740288,6,1 ,44,15152,3886020,16,0 ,17,923,7031748,40,0 ,44,15152,1788868,144,0 ,44,15152,1264580,80,0 ,16,820,216008,20,8 ,36,15004,740296,6,1 ,16,820,216016,18,8 ,36,15004,740304,6,1 ,16,820,216024,22,10 ,36,15004,740312,6,1 ,16,820,216032,18,10 ,36,15004,740320,6,1 ,20,18992,9128930,1520,0 ,20,15248,216034,2184,0 ,36,15004,740328,6,1 ,16,820,216040,20,8 ,16,820,216048,18,10 ,36,15004,740336,6,1 ,16,820,216056,21,10 ,36,15004,740344,6,1 ,16,820,216064,22,8 ,36,15004,740352,6,1 ,17,923,10177540,32,0 ,44,15152,2837508,16,0 ,17,923,8080388,40,0 ,17,923,8604676,24,0 ,16,820,216072,14,8 ,36,15004,740360,6,1 ,16,820,216080,14,8 ,36,15004,740368,6,1 ,16,820,216088,15,8 ,36,15004,740376,6,1 ,16,820,216096,14,8 ,36,15004,740384,6,1 ,16,820,216104,20,8 ,36,15004,740392,6,1 ,16,820,216112,20,8 ,36,15004,740400,6,1 ,16,820,216120,20,8 ,36,15004,740408,6,1 ,16,820,216128,20,9 ,36,15004,740416,6,1 ,45,15153,5459012,24,0 ,17,923,7556164,32,0 ,44,15152,216132,16,0 ,44,15152,3886148,16,0 ,16,820,216136,21,10 ,36,15004,740424,6,1 ,36,15004,740432,6,1 ,16,820,216144,21,10 ,16,820,216152,20,9 ,36,15004,740440,6,1 ,16,820,216160,20,8 ,36,15004,740448,6,1 ,16,820,216168,20,9 ,36,15004,740456,6,1 ,36,15004,740464,6,1 ,16,820,216176,20,8 ,16,820,216184,21,10 ,36,15004,740472,6,1 ,16,820,216192,22,12 ,36,15004,740480,6,1 ,44,15152,740484,96,0 ,17,923,6507652,32,0 ,44,15152,2837636,24,0 ,16,820,216200,14,8 ,36,15004,740488,6,1 ,16,820,216208,20,12 ,36,15004,740496,6,1 ,16,820,216216,21,10 ,36,15004,740504,6,1 ,16,820,216224,22,8 ,36,15004,740512,6,1 ,16,820,216232,21,10 ,36,15004,740520,6,1 ,16,820,216240,22,8 ,36,15004,740528,6,1 ,16,820,216248,21,10 ,36,15004,740536,6,1 ,16,820,216256,22,8 ,36,15004,740544,6,1 ,20,15673,1264834,164,0 ,17,923,8604868,24,0 ,44,15152,216260,24,0 ,44,15152,3886276,16,0 ,16,820,216264,18,10 ,36,15004,740552,6,1 ,16,820,216272,18,10 ,36,15004,740560,6,1 ,36,15004,740568,6,1 ,16,820,216280,18,10 ,16,820,216288,18,10 ,36,15004,740576,6,1 ,20,23073,20139234,48,0 ,20,22751,19614946,140,0 ,16,820,216296,18,10 ,36,15004,740584,6,1 ,16,820,216304,18,10 ,36,15004,740592,6,1 ,16,820,216312,18,10 ,36,15004,740600,6,1 ,16,820,216320,18,10 ,36,15004,740608,6,1 ,17,923,10177796,32,0 ,17,923,7032068,32,0 ,45,15153,4934916,88,0 ,45,15153,5459204,40,0 ,16,820,216328,18,10 ,36,15004,740616,6,1 ,16,820,216336,21,10 ,36,15004,740624,6,1 ,16,820,216344,14,8 ,36,15004,740632,6,1 ,16,820,216352,14,8 ,36,15004,740640,6,1 ,20,22363,18566434,12,0 ,16,820,216360,14,8 ,36,15004,740648,6,1 ,16,820,216368,20,8 ,36,15004,740656,4,1 ,16,820,216376,18,8 ,36,15004,740664,6,1 ,16,820,216384,22,8 ,36,15004,740672,6,1 ,17,923,9653572,32,0 ,17,923,7556420,32,0 ,44,15152,2837828,32,0 ,44,15152,3886404,16,0 ,17,923,8080708,40,0 ,16,820,216392,22,8 ,36,15004,740680,6,1 ,16,820,216400,21,10 ,36,15004,740688,6,1 ,16,820,216408,20,16 ,36,15004,740696,6,1 ,16,820,216416,21,10 ,36,15004,740704,6,1 ,16,820,216424,20,8 ,36,15004,740712,6,1 ,16,820,216432,20,8 ,36,15004,740720,6,1 ,16,820,216440,21,8 ,36,15004,740728,6,1 ,16,820,216448,20,8 ,36,15004,740736,6,1 ,20,22364,18566530,176,0 ,20,26435,29052290,44,0 ,17,923,8605060,24,0 ,17,923,6507908,64,0 ,44,15152,216452,40,0 ,16,820,216456,20,8 ,36,15004,740744,6,1 ,16,820,216464,20,8 ,36,15004,740752,6,1 ,16,820,216472,20,10 ,36,15004,740760,6,1 ,16,820,216480,22,9 ,36,15004,740768,6,1 ,20,24405,23285154,764,0 ,16,820,216488,21,10 ,36,15004,740776,6,1 ,16,820,216496,18,10 ,36,15004,740784,6,1 ,16,820,216504,18,10 ,36,15004,740792,6,1 ,16,820,216512,18,10 ,36,15004,740800,6,1 ,44,15152,3886532,16,0 ,16,820,216520,18,10 ,36,15004,740808,6,1 ,16,820,216528,18,10 ,36,15004,740816,6,1 ,16,820,216536,18,10 ,36,15004,740824,6,1 ,16,820,216544,18,10 ,36,15004,740832,6,1 ,20,25563,26430946,48,0 ,16,820,216552,18,10 ,36,15004,740840,6,1 ,16,820,216560,18,10 ,36,15004,740848,6,1 ,16,820,216568,21,10 ,36,15004,740856,6,1 ,16,820,216576,14,8 ,36,15004,740864,6,1 ,17,923,10178052,24,0 ,17,923,7032324,32,0 ,16,820,216584,21,10 ,36,15004,740872,6,1 ,16,820,216592,20,8 ,36,15004,740880,4,1 ,16,820,216600,20,8 ,36,15004,740888,6,1 ,16,820,216608,21,10 ,36,15004,740896,6,1 ,20,21352,15945250,448,0 ,16,820,216616,20,8 ,36,15004,740904,6,1 ,16,820,216624,21,10 ,36,15004,740912,6,1 ,16,820,216632,20,8 ,36,15004,740920,6,1 ,16,820,216640,22,8 ,36,15004,740928,6,1 ,17,923,9653828,64,0 ,17,923,7556676,40,0 ,44,15152,2838084,24,0 ,44,15152,1265220,40,0 ,44,15152,3886660,24,0 ,45,15153,5459524,16,0 ,17,923,8605252,32,0 ,17,923,9129540,24,0 ,16,820,216648,18,10 ,36,15004,740936,4,1 ,16,820,216656,18,10 ,36,15004,740944,6,1 ,16,820,216664,18,10 ,36,15004,740952,6,1 ,16,820,216672,18,10 ,36,15004,740960,6,1 ,20,23074,20139618,172,0 ,16,820,216680,18,10 ,36,15004,740968,4,1 ,16,820,216688,18,10 ,36,15004,740976,6,1 ,16,820,216696,18,10 ,36,15004,740984,6,1 ,16,820,216704,18,10 ,36,15004,740992,6,1 ,20,21575,16469634,2428,0 ,20,15409,740994,76,0 ,17,923,8081028,40,0 ,16,820,216712,18,10 ,36,15004,741000,6,1 ,16,820,216720,18,10 ,36,15004,741008,6,1 ,36,15004,741016,4,1 ,16,820,216728,18,10 ,16,820,216736,18,10 ,36,15004,741024,6,1 ,16,820,216744,18,10 ,36,15004,741032,6,1 ,16,820,216752,18,10 ,36,15004,741040,6,1 ,16,820,216760,18,10 ,36,15004,741048,6,1 ,16,820,216768,18,10 ,36,15004,741056,6,1 ,20,20037,11226818,36,0 ,17,923,10178244,32,0 ,44,15152,216772,80,0 ,44,15152,3362500,16,0 ,45,15153,5459652,88,0 ,16,820,216776,18,10 ,36,15004,741064,6,1 ,16,820,216784,18,10 ,36,15004,741072,6,1 ,16,820,216792,18,10 ,36,15004,741080,6,1 ,16,820,216800,18,10 ,36,15004,741088,6,1 ,20,26436,29052642,556,0 ,16,820,216808,18,10 ,36,15004,741096,6,1 ,16,820,216816,18,10 ,36,15004,741104,6,1 ,16,820,216824,18,10 ,36,15004,741112,6,1 ,16,820,216832,18,10 ,36,15004,741120,6,1 ,17,923,9129732,24,0 ,17,923,7032580,32,0 ,44,15152,2838276,16,0 ,44,15152,3886852,24,0 ,16,820,216840,18,10 ,36,15004,741128,6,1 ,16,820,216848,18,10 ,36,15004,741136,6,1 ,16,820,216856,18,10 ,36,15004,741144,6,1 ,16,820,216864,18,10 ,36,15004,741152,6,1 ,16,820,216872,18,10 ,36,15004,741160,6,1 ,16,820,216880,18,10 ,36,15004,741168,6,1 ,16,820,216888,18,10 ,36,15004,741176,6,1 ,36,15004,741184,6,1 ,16,820,216896,18,10 ,20,25410,25907010,92,0 ,20,25739,26955586,348,0 ,17,923,8605508,24,0 ,44,15152,3362628,32,0 ,16,820,216904,18,10 ,36,15004,741192,6,1 ,16,820,216912,18,10 ,36,15004,741200,6,1 ,16,820,216920,18,10 ,36,15004,741208,6,1 ,16,820,216928,18,10 ,36,15004,741216,6,1 ,20,25564,26431330,120,0 ,16,820,216936,18,10 ,36,15004,741224,6,1 ,16,820,216944,22,8 ,36,15004,741232,6,1 ,16,820,216952,18,10 ,36,15004,741240,6,1 ,16,820,216960,18,10 ,36,15004,741248,6,1 ,44,15152,741252,80,0 ,17,923,7556996,48,0 ,17,923,6508420,48,0 ,44,15152,2838404,64,0 ,44,15152,1265540,80,0 ,16,820,216968,18,10 ,36,15004,741256,6,1 ,16,820,216976,18,10 ,36,15004,741264,6,1 ,16,820,216984,18,10 ,36,15004,741272,6,1 ,16,820,216992,18,10 ,36,15004,741280,6,1 ,20,17165,4935586,68,0 ,16,820,217000,20,8 ,36,15004,741288,6,1 ,16,820,217008,20,9 ,36,15004,741296,6,1 ,16,820,217016,18,10 ,36,15004,741304,6,1 ,16,820,217024,18,10 ,36,15004,741312,6,1 ,17,923,10178500,24,0 ,45,15153,3887044,16,0 ,45,15153,4935620,72,0 ,17,923,8081348,64,0 ,17,923,9129924,48,0 ,16,820,217032,18,10 ,36,15004,741320,6,1 ,16,820,217040,18,10 ,36,15004,741328,6,1 ,16,820,217048,18,10 ,36,15004,741336,6,1 ,36,15004,741344,6,1 ,16,820,217056,18,10 ,20,20038,11227106,52,0 ,20,26162,28004322,512,0 ,16,820,217064,18,10 ,36,15004,741352,6,1 ,16,820,217072,18,10 ,36,15004,741360,6,1 ,16,820,217080,18,10 ,36,15004,741368,6,1 ,16,820,217088,18,10 ,36,15004,741376,6,1 ,17,923,8605700,24,0 ,17,923,7032836,40,0 ,16,820,217096,18,10 ,36,15004,741384,6,1 ,16,820,217104,18,10 ,36,15004,741392,6,1 ,36,15004,741400,6,1 ,16,820,217112,18,10 ,16,820,217120,18,10 ,36,15004,741408,6,1 ,16,820,217128,18,10 ,36,15004,741416,6,1 ,16,820,217136,18,10 ,36,15004,741424,6,1 ,16,820,217144,18,10 ,36,15004,741432,6,1 ,16,820,217152,18,10 ,36,15004,741440,6,1 ,20,23984,22237250,520,0 ,17,923,9654340,112,0 ,44,15152,1790020,152,0 ,44,15152,3362884,48,0 ,45,15153,3887172,16,0 ,16,820,217160,18,10 ,36,15004,741448,6,1 ,16,820,217168,18,10 ,36,15004,741456,6,1 ,16,820,217176,18,10 ,36,15004,741464,4,1 ,16,820,217184,18,10 ,36,15004,741472,6,1 ,20,16189,2838626,80,0 ,20,26316,28528738,460,0 ,16,820,217192,18,10 ,36,15004,741480,6,1 ,16,820,217200,18,10 ,36,15004,741488,6,1 ,16,820,217208,18,10 ,36,15004,741496,6,1 ,16,820,217216,18,10 ,36,15004,741504,6,1 ,20,19138,9654402,12,0 ,17,923,10178692,24,0 ,16,820,217224,18,10 ,36,15004,741512,6,1 ,16,820,217232,18,10 ,36,15004,741520,6,1 ,16,820,217240,20,10 ,36,15004,741528,6,1 ,16,820,217248,20,10 ,36,15004,741536,6,1 ,16,820,217256,20,11 ,36,15004,741544,6,1 ,16,820,217264,20,10 ,36,15004,741552,6,1 ,16,820,217272,22,10 ,36,15004,741560,6,1 ,16,820,217280,20,10 ,36,15004,741568,6,1 ,17,923,8605892,24,0 ,45,15153,3887300,16,0 ,16,820,217288,22,10 ,36,15004,741576,6,1 ,16,820,217296,20,10 ,36,15004,741584,6,1 ,16,820,217304,22,11 ,36,15004,741592,6,1 ,16,820,217312,20,10 ,36,15004,741600,6,1 ,20,19139,9654498,52,0 ,20,15410,741602,136,0 ,16,820,217320,22,10 ,36,15004,741608,6,1 ,16,820,217328,20,10 ,36,15004,741616,6,1 ,16,820,217336,22,10 ,36,15004,741624,6,1 ,36,15004,741632,6,1 ,16,820,217344,20,10 ,17,923,6508804,48,0 ,17,923,7557380,40,0 ,16,820,217352,22,11 ,36,15004,741640,6,1 ,16,820,217360,20,10 ,36,15004,741648,6,1 ,16,820,217368,22,10 ,36,15004,741656,6,1 ,16,820,217376,20,11 ,36,15004,741664,6,1 ,16,820,217384,22,10 ,36,15004,741672,6,1 ,16,820,217392,20,10 ,36,15004,741680,6,1 ,16,820,217400,22,10 ,36,15004,741688,6,1 ,16,820,217408,20,10 ,36,15004,741696,6,1 ,20,22752,19616066,96,0 ,17,923,10178884,24,0 ,17,923,7033156,24,0 ,44,15152,217412,24,0 ,45,15153,3887428,16,0 ,45,15153,4411716,24,0 ,17,923,9130308,40,0 ,16,820,217416,20,10 ,36,15004,741704,6,1 ,16,820,217424,22,11 ,36,15004,741712,6,1 ,16,820,217432,20,10 ,36,15004,741720,6,1 ,16,820,217440,22,10 ,36,15004,741728,6,1 ,16,820,217448,20,10 ,36,15004,741736,6,1 ,16,820,217456,20,10 ,36,15004,741744,6,1 ,16,820,217464,22,12 ,36,15004,741752,6,1 ,16,820,217472,20,10 ,36,15004,741760,6,1 ,20,20039,11227522,12,0 ,20,24977,24859010,88,0 ,17,923,8606084,24,0 ,44,15152,2838916,16,0 ,45,15153,5460356,16,0 ,16,820,217480,22,10 ,36,15004,741768,6,1 ,16,820,217488,20,10 ,36,15004,741776,6,1 ,16,820,217496,22,10 ,36,15004,741784,6,1 ,16,820,217504,22,10 ,36,15004,741792,4,1 ,20,15845,1790370,148,0 ,16,820,217512,20,10 ,36,15004,741800,6,1 ,16,820,217520,22,10 ,36,15004,741808,6,1 ,16,820,217528,20,10 ,36,15004,741816,6,1 ,16,820,217536,22,10 ,36,15004,741824,6,1 ,20,18717,8606146,304,0 ,20,17166,4936130,52,0 ,17,923,8081860,48,0 ,44,15152,3363268,48,0 ,45,15153,3887556,24,0 ,16,820,217544,22,12 ,36,15004,741832,4,1 ,16,820,217552,20,10 ,36,15004,741840,6,1 ,16,820,217560,22,10 ,36,15004,741848,6,1 ,16,820,217568,20,10 ,36,15004,741856,6,1 ,20,20040,11227618,12,0 ,20,15674,1266146,160,0 ,16,820,217576,22,10 ,36,15004,741864,6,1 ,16,820,217584,22,10 ,36,15004,741872,6,1 ,16,820,217592,22,10 ,36,15004,741880,6,1 ,16,820,217600,20,10 ,36,15004,741888,6,1 ,17,923,10179076,24,0 ,17,923,7033348,32,0 ,44,15152,2839044,16,0 ,44,15152,1266180,88,0 ,44,15152,217604,24,0 ,44,15152,741892,64,0 ,45,15153,4411908,16,0 ,45,15153,4936196,40,0 ,45,15153,5460484,24,0 ,16,820,217608,22,10 ,36,15004,741896,6,1 ,16,820,217616,22,10 ,36,15004,741904,6,1 ,16,820,217624,22,10 ,36,15004,741912,6,1 ,16,820,217632,20,10 ,36,15004,741920,6,1 ,20,18260,7557666,12,0 ,20,25411,25907746,24,0 ,16,820,217640,22,10 ,36,15004,741928,6,1 ,16,820,217648,22,10 ,36,15004,741936,6,1 ,16,820,217656,20,10 ,36,15004,741944,6,1 ,16,820,217664,22,10 ,36,15004,741952,6,1 ,20,20041,11227714,52,0 ,17,923,8606276,16,0 ,17,923,7557700,24,0 ,16,820,217672,20,10 ,36,15004,741960,6,1 ,16,820,217680,22,10 ,36,15004,741968,6,1 ,16,820,217688,22,10 ,36,15004,741976,6,1 ,16,820,217696,20,10 ,36,15004,741984,6,1 ,16,820,217704,20,11 ,36,15004,741992,6,1 ,16,820,217712,20,10 ,36,15004,742000,6,1 ,16,820,217720,22,10 ,36,15004,742008,6,1 ,16,820,217728,22,10 ,36,15004,742016,6,1 ,20,19140,9654914,128,0 ,20,18261,7557762,280,0 ,17,923,9130628,32,0 ,17,923,6509188,48,0 ,44,15152,2839172,24,0 ,45,15153,3887748,16,0 ,45,15153,4412036,24,0 ,16,820,217736,20,10 ,36,15004,742024,6,1 ,16,820,217744,20,10 ,36,15004,742032,6,1 ,16,820,217752,20,10 ,36,15004,742040,6,1 ,16,820,217760,22,15 ,36,15004,742048,6,1 ,16,820,217768,20,10 ,36,15004,742056,6,1 ,16,820,217776,20,10 ,36,15004,742064,6,1 ,16,820,217784,20,10 ,36,15004,742072,6,1 ,16,820,217792,20,10 ,36,15004,742080,6,1 ,17,923,10179268,24,0 ,44,15152,217796,24,0 ,45,15153,5460676,24,0 ,17,923,8606404,24,0 ,16,820,217800,20,10 ,36,15004,742088,4,1 ,16,820,217808,20,10 ,36,15004,742096,6,1 ,16,820,217816,20,10 ,36,15004,742104,6,1 ,16,820,217824,20,10 ,36,15004,742112,6,1 ,20,24554,23810786,84,0 ,20,25412,25907938,144,0 ,20,16190,2839266,176,0 ,16,820,217832,20,10 ,36,15004,742120,6,1 ,16,820,217840,20,10 ,36,15004,742128,6,1 ,16,820,217848,20,10 ,36,15004,742136,7,2 ,16,820,217856,20,8 ,36,15004,742144,7,2 ,20,22365,18567938,12,0 ,45,15153,3887876,16,0 ,17,923,7557892,32,0 ,17,923,7033604,40,0 ,16,820,217864,20,10 ,36,15004,742152,7,2 ,16,820,217872,20,10 ,36,15004,742160,7,2 ,16,820,217880,20,12 ,36,15004,742168,7,2 ,16,820,217888,20,11 ,36,15004,742176,8,2 ,20,25565,26432290,40,0 ,16,820,217896,20,8 ,36,15004,742184,8,2 ,16,820,217904,20,8 ,36,15004,742192,7,2 ,16,820,217912,22,14 ,36,15004,742200,7,2 ,16,820,217920,20,10 ,36,15004,742208,7,2 ,17,923,8082244,24,0 ,44,15152,2839364,24,0 ,44,15152,3363652,24,0 ,45,15153,4412228,16,0 ,45,15153,4936516,128,0 ,16,820,217928,20,9 ,36,15004,742216,7,2 ,16,820,217936,20,9 ,36,15004,742224,7,2 ,16,820,217944,20,9 ,36,15004,742232,7,2 ,16,820,217952,22,11 ,36,15004,742240,7,2 ,20,22366,18568034,276,0 ,20,17167,4936546,40,0 ,16,820,217960,20,10 ,36,15004,742248,7,2 ,16,820,217968,14,8 ,36,15004,742256,7,2 ,16,820,217976,20,8 ,36,15004,742264,7,2 ,16,820,217984,14,8 ,36,15004,742272,7,2 ,17,923,10179460,32,0 ,44,15152,217988,40,0 ,45,15153,3888004,16,0 ,45,15153,5460868,24,0 ,17,923,8606596,16,0 ,17,923,9130884,40,0 ,16,820,217992,14,8 ,36,15004,742280,7,2 ,16,820,218000,22,13 ,36,15004,742288,7,2 ,16,820,218008,20,8 ,36,15004,742296,7,2 ,16,820,218016,20,8 ,36,15004,742304,7,2 ,20,18079,7033762,1432,0 ,16,820,218024,20,8 ,36,15004,742312,7,2 ,16,820,218032,14,8 ,36,15004,742320,7,2 ,16,820,218040,14,8 ,36,15004,742328,7,2 ,16,820,218048,14,8 ,36,15004,742336,5,2 ,20,23075,20140994,160,0 ,20,19441,10179522,192,0 ,17,923,9655236,64,0 ,45,15153,4412356,16,0 ,16,820,218056,15,8 ,36,15004,742344,7,2 ,16,820,218064,14,8 ,36,15004,742352,6,2 ,16,820,218072,22,8 ,36,15004,742360,7,2 ,16,820,218080,22,17 ,36,15004,742368,6,2 ,20,20042,11228130,12,0 ,36,15004,742376,7,2 ,16,820,218088,20,8 ,16,820,218096,20,8 ,36,15004,742384,7,2 ,16,820,218104,20,8 ,36,15004,742392,7,2 ,16,820,218112,20,8 ,36,15004,742400,7,2 ,20,16746,3888130,372,0 ,17,923,8606724,24,0 ,17,923,7558148,24,0 ,17,923,6509572,40,0 ,44,15152,2839556,16,0 ,44,15152,742404,56,0 ,44,15152,3363844,64,0 ,45,15153,3888132,16,0 ,17,923,8082436,40,0 ,16,820,218120,22,10 ,36,15004,742408,6,2 ,16,820,218128,14,8 ,36,15004,742416,7,2 ,16,820,218136,14,8 ,36,15004,742424,7,2 ,16,820,218144,14,8 ,36,15004,742432,7,2 ,16,820,218152,15,8 ,36,15004,742440,7,2 ,16,820,218160,21,8 ,36,15004,742448,7,2 ,16,820,218168,20,9 ,36,15004,742456,7,2 ,36,15004,742464,7,2 ,16,820,218176,14,8 ,20,22753,19616834,212,0 ,20,24978,24859714,352,0 ,20,20043,11228226,100,0 ,45,15153,5461060,24,0 ,17,923,7033924,32,0 ,45,15153,4412484,16,0 ,16,820,218184,21,10 ,36,15004,742472,8,2 ,16,820,218192,22,9 ,36,15004,742480,7,2 ,16,820,218200,21,8 ,36,15004,742488,8,2 ,36,15004,742496,8,2 ,16,820,218208,22,8 ,20,25566,26432610,112,0 ,16,820,218216,21,8 ,36,15004,742504,7,2 ,16,820,218224,22,9 ,36,15004,742512,7,2 ,16,820,218232,14,8 ,36,15004,742520,5,2 ,16,820,218240,20,10 ,36,15004,742528,7,2 ,17,923,10179716,24,0 ,44,15152,2839684,16,0 ,45,15153,3888260,16,0 ,16,820,218248,20,8 ,36,15004,742536,7,2 ,16,820,218256,22,10 ,36,15004,742544,7,2 ,16,820,218264,20,11 ,36,15004,742552,7,2 ,16,820,218272,20,8 ,36,15004,742560,7,2 ,20,17168,4936866,12,0 ,16,820,218280,22,11 ,36,15004,742568,7,2 ,16,820,218288,20,8 ,36,15004,742576,7,2 ,16,820,218296,22,13 ,36,15004,742584,7,2 ,16,820,218304,18,8 ,36,15004,742592,7,2 ,20,23392,20665538,420,0 ,17,923,9131204,40,0 ,17,923,7558340,32,0 ,44,15152,1266884,32,0 ,44,15152,218308,48,0 ,45,15153,4412612,112,0 ,17,923,8606916,16,0 ,16,820,218312,20,8 ,36,15004,742600,7,2 ,16,820,218320,20,11 ,36,15004,742608,7,2 ,16,820,218328,22,11 ,36,15004,742616,7,2 ,16,820,218336,22,11 ,36,15004,742624,6,2 ,16,820,218344,20,16 ,36,15004,742632,7,2 ,16,820,218352,22,10 ,36,15004,742640,7,2 ,16,820,218360,22,10 ,36,15004,742648,5,2 ,16,820,218368,22,10 ,36,15004,742656,7,2 ,20,17169,4936962,12,0 ,45,15153,5461252,40,0 ,44,15152,2839812,24,0 ,44,15152,1791236,48,0 ,45,15153,3888388,16,0 ,16,820,218376,22,10 ,36,15004,742664,7,2 ,16,820,218384,20,10 ,36,15004,742672,7,2 ,16,820,218392,22,10 ,36,15004,742680,8,2 ,36,15004,742688,8,2 ,16,820,218400,22,10 ,20,15411,742690,340,0 ,16,820,218408,22,11 ,36,15004,742696,7,2 ,16,820,218416,20,9 ,36,15004,742704,7,2 ,16,820,218424,18,8 ,36,15004,742712,7,2 ,16,820,218432,18,8 ,36,15004,742720,6,2 ,17,923,10179908,40,0 ,17,923,7034180,32,0 ,17,923,6509892,16,0 ,17,923,8082756,48,0 ,17,923,8607044,16,0 ,16,820,218440,20,9 ,36,15004,742728,7,2 ,16,820,218448,18,8 ,36,15004,742736,7,2 ,16,820,218456,22,13 ,36,15004,742744,7,2 ,36,15004,742752,7,2 ,16,820,218464,20,9 ,20,17170,4937058,704,0 ,16,820,218472,20,8 ,36,15004,742760,7,2 ,16,820,218480,14,8 ,36,15004,742768,7,2 ,16,820,218488,14,8 ,36,15004,742776,7,2 ,16,820,218496,15,8 ,36,15004,742784,6,2 ,20,24555,23811458,236,0 ,45,15153,3888516,16,0 ,16,820,218504,21,10 ,36,15004,742792,7,2 ,16,820,218512,20,8 ,36,15004,742800,7,2 ,16,820,218520,18,9 ,36,15004,742808,7,2 ,16,820,218528,22,13 ,36,15004,742816,8,2 ,16,820,218536,22,11 ,36,15004,742824,7,2 ,16,820,218544,14,8 ,36,15004,742832,7,2 ,16,820,218552,14,8 ,36,15004,742840,7,2 ,16,820,218560,15,8 ,36,15004,742848,7,2 ,17,923,9655748,64,0 ,17,923,7558596,24,0 ,17,923,6510020,24,0 ,44,15152,2840004,16,0 ,44,15152,1267140,32,0 ,44,15152,742852,24,0 ,17,923,8607172,16,0 ,16,820,218568,21,8 ,36,15004,742856,7,2 ,16,820,218576,20,8 ,36,15004,742864,7,2 ,16,820,218584,20,10 ,36,15004,742872,7,2 ,16,820,218592,21,10 ,36,15004,742880,7,2 ,20,18529,8082914,12,0 ,16,820,218600,20,8 ,36,15004,742888,7,2 ,16,820,218608,21,10 ,36,15004,742896,6,2 ,16,820,218616,20,8 ,36,15004,742904,7,2 ,16,820,218624,22,13 ,36,15004,742912,8,2 ,17,923,9131524,40,0 ,44,15152,3364356,80,0 ,45,15153,3888644,16,0 ,16,820,218632,22,13 ,36,15004,742920,5,2 ,16,820,218640,22,13 ,36,15004,742928,7,2 ,16,820,218648,22,14 ,36,15004,742936,7,2 ,16,820,218656,22,13 ,36,15004,742944,7,2 ,16,820,218664,22,14 ,36,15004,742952,7,2 ,16,820,218672,22,13 ,36,15004,742960,7,2 ,16,820,218680,22,13 ,36,15004,742968,7,2 ,36,15004,742976,7,2 ,16,820,218688,22,17 ,20,18530,8083010,2240,0 ,20,15846,1791554,720,0 ,17,923,8607300,16,0 ,17,923,7034436,32,0 ,44,15152,2840132,16,0 ,44,15152,218692,24,0 ,45,15153,5461572,32,0 ,16,820,218696,22,13 ,36,15004,742984,7,2 ,16,820,218704,22,14 ,36,15004,742992,7,2 ,16,820,218712,22,13 ,36,15004,743000,6,2 ,16,820,218720,22,14 ,36,15004,743008,7,2 ,16,820,218728,22,13 ,36,15004,743016,7,2 ,16,820,218736,22,13 ,36,15004,743024,7,2 ,16,820,218744,22,13 ,36,15004,743032,7,2 ,36,15004,743040,7,2 ,16,820,218752,22,13 ,20,19141,9655938,136,0 ,17,923,10180228,40,0 ,17,923,7558788,24,0 ,17,923,6510212,24,0 ,44,15152,1791620,64,0 ,44,15152,743044,24,0 ,45,15153,3888772,16,0 ,16,820,218760,14,8 ,36,15004,743048,7,2 ,16,820,218768,14,8 ,36,15004,743056,7,2 ,16,820,218776,22,21 ,36,15004,743064,7,2 ,16,820,218784,22,29 ,36,15004,743072,7,2 ,16,820,218792,22,10 ,36,15004,743080,7,2 ,36,15004,743088,7,2 ,16,820,218800,22,11 ,16,820,218808,18,9 ,36,15004,743096,7,2 ,16,820,218816,15,8 ,36,15004,743104,8,2 ,20,17777,6510274,144,0 ,17,923,8607428,16,0 ,44,15152,2840260,16,0 ,44,15152,1267396,24,0 ,17,923,8083140,32,0 ,16,820,218824,15,8 ,36,15004,743112,7,2 ,16,820,218832,14,8 ,36,15004,743120,7,2 ,16,820,218840,14,8 ,36,15004,743128,7,2 ,16,820,218848,21,10 ,36,15004,743136,7,2 ,20,15675,1267426,12,0 ,16,820,218856,20,8 ,36,15004,743144,5,2 ,16,820,218864,21,10 ,36,15004,743152,8,2 ,16,820,218872,20,12 ,36,15004,743160,7,2 ,16,820,218880,20,9 ,36,15004,743168,7,2 ,20,25960,27481858,212,0 ,45,15153,3888900,16,0 ,44,15152,218884,16,0 ,16,820,218888,22,10 ,36,15004,743176,5,2 ,16,820,218896,20,9 ,36,15004,743184,5,2 ,16,820,218904,20,8 ,36,15004,743192,6,2 ,16,820,218912,22,14 ,36,15004,743200,7,2 ,16,820,218920,20,12 ,36,15004,743208,7,2 ,16,820,218928,20,11 ,36,15004,743216,7,2 ,16,820,218936,20,9 ,36,15004,743224,8,2 ,16,820,218944,14,8 ,36,15004,743232,7,2 ,20,15676,1267522,72,0 ,20,24736,24336194,360,0 ,17,923,9131844,48,0 ,17,923,7558980,32,0 ,17,923,7034692,32,0 ,17,923,6510404,40,0 ,44,15152,2840388,16,0 ,44,15152,743236,24,0 ,45,15153,4937540,96,0 ,45,15153,5461828,40,0 ,17,923,8607556,24,0 ,16,820,218952,14,8 ,36,15004,743240,7,2 ,16,820,218960,15,8 ,36,15004,743248,7,2 ,16,820,218968,14,8 ,36,15004,743256,7,2 ,16,820,218976,14,8 ,36,15004,743264,7,2 ,20,20044,11229026,12,0 ,20,25413,25909090,172,0 ,16,820,218984,15,8 ,36,15004,743272,7,2 ,16,820,218992,20,12 ,36,15004,743280,7,2 ,16,820,219000,20,11 ,36,15004,743288,7,2 ,16,820,219008,20,13 ,36,15004,743296,7,2 ,45,15153,3889028,24,0 ,44,15152,1267588,56,0 ,44,15152,219012,16,0 ,16,820,219016,20,8 ,36,15004,743304,7,2 ,16,820,219024,14,8 ,36,15004,743312,7,2 ,16,820,219032,15,8 ,36,15004,743320,7,2 ,16,820,219040,20,10 ,36,15004,743328,6,2 ,20,17380,5461922,3748,0 ,16,820,219048,20,11 ,36,15004,743336,7,2 ,16,820,219056,20,8 ,36,15004,743344,8,2 ,16,820,219064,22,13 ,36,15004,743352,7,2 ,16,820,219072,22,13 ,36,15004,743360,7,2 ,20,20045,11229122,120,0 ,17,923,10180548,48,0 ,44,15152,2840516,32,0 ,17,923,8083396,48,0 ,17,923,9656260,64,0 ,16,820,219080,22,17 ,36,15004,743368,7,2 ,16,820,219088,22,18 ,36,15004,743376,7,2 ,16,820,219096,22,14 ,36,15004,743384,7,2 ,16,820,219104,22,15 ,36,15004,743392,7,2 ,20,20557,13326306,76,0 ,20,25567,26433506,40,0 ,16,820,219112,22,14 ,36,15004,743400,7,2 ,16,820,219120,22,17 ,36,15004,743408,7,2 ,16,820,219128,22,14 ,36,15004,743416,7,2 ,16,820,219136,20,8 ,36,15004,743424,8,2 ,17,923,8607748,24,0 ,44,15152,219140,24,0 ,44,15152,743428,24,0 ,16,820,219144,14,8 ,36,15004,743432,7,2 ,16,820,219152,14,8 ,36,15004,743440,7,2 ,16,820,219160,15,8 ,36,15004,743448,7,2 ,36,15004,743456,6,2 ,16,820,219168,21,10 ,16,820,219176,22,20 ,36,15004,743464,7,2 ,16,820,219184,20,10 ,36,15004,743472,7,2 ,16,820,219192,22,18 ,36,15004,743480,7,2 ,16,820,219200,22,19 ,36,15004,743488,7,2 ,45,15153,4413508,24,0 ,17,923,7559236,80,0 ,17,923,7034948,40,0 ,45,15153,3889220,40,0 ,16,820,219208,22,21 ,36,15004,743496,8,2 ,16,820,219216,14,8 ,36,15004,743504,6,2 ,16,820,219224,20,9 ,36,15004,743512,7,2 ,16,820,219232,21,10 ,36,15004,743520,7,2 ,20,16191,2840674,6212,0 ,16,820,219240,14,8 ,36,15004,743528,7,2 ,16,820,219248,14,8 ,36,15004,743536,7,2 ,16,820,219256,20,9 ,36,15004,743544,7,2 ,36,15004,743552,7,2 ,16,820,219264,22,8 ,20,17560,5986434,164,0 ,45,15153,5462148,24,0 ,17,923,6510724,48,0 ,44,15152,1792132,24,0 ,44,15152,3364996,88,0 ,16,820,219272,21,10 ,36,15004,743560,7,2 ,36,15004,743568,8,2 ,16,820,219280,22,9 ,16,820,219288,21,10 ,36,15004,743576,7,2 ,16,820,219296,20,8 ,36,15004,743584,6,2 ,16,820,219304,22,10 ,36,15004,743592,7,2 ,16,820,219312,18,8 ,36,15004,743600,7,2 ,16,820,219320,20,8 ,36,15004,743608,7,2 ,16,820,219328,22,13 ,36,15004,743616,7,2 ,20,23076,20142274,200,0 ,17,923,9132228,56,0 ,44,15152,2840772,16,0 ,44,15152,219332,64,0 ,44,15152,743620,32,0 ,17,923,8607940,24,0 ,16,820,219336,22,17 ,36,15004,743624,7,2 ,16,820,219344,22,13 ,36,15004,743632,7,2 ,16,820,219352,22,13 ,36,15004,743640,7,2 ,16,820,219360,20,10 ,36,15004,743648,7,2 ,16,820,219368,22,13 ,36,15004,743656,6,2 ,16,820,219376,18,8 ,36,15004,743664,7,2 ,16,820,219384,20,8 ,36,15004,743672,8,2 ,16,820,219392,18,8 ,36,15004,743680,7,2 ,45,15153,4413700,16,0 ,16,820,219400,20,8 ,36,15004,743688,6,2 ,16,820,219408,20,8 ,36,15004,743696,8,2 ,16,820,219416,20,8 ,36,15004,743704,7,2 ,16,820,219424,20,8 ,36,15004,743712,8,2 ,20,25568,26433826,112,0 ,16,820,219432,20,8 ,36,15004,743720,7,2 ,16,820,219440,20,8 ,36,15004,743728,7,2 ,16,820,219448,20,8 ,36,15004,743736,7,2 ,16,820,219456,20,8 ,36,15004,743744,7,2 ,17,923,10180932,48,0 ,44,15152,2840900,40,0 ,44,15152,1792324,40,0 ,44,15152,1268036,32,0 ,45,15153,5462340,24,0 ,17,923,8083780,48,0 ,16,820,219464,20,8 ,36,15004,743752,7,2 ,16,820,219472,20,8 ,36,15004,743760,7,2 ,16,820,219480,20,8 ,36,15004,743768,7,2 ,36,15004,743776,7,2 ,16,820,219488,20,8 ,16,820,219496,20,8 ,36,15004,743784,7,2 ,16,820,219504,20,8 ,36,15004,743792,7,2 ,16,820,219512,20,8 ,36,15004,743800,7,2 ,16,820,219520,20,8 ,36,15004,743808,7,2 ,20,15677,1268098,124,0 ,17,923,8608132,24,0 ,17,923,7035268,32,0 ,45,15153,3889540,16,0 ,45,15153,4413828,16,0 ,16,820,219528,20,8 ,36,15004,743816,7,2 ,36,15004,743824,7,2 ,16,820,219536,20,8 ,16,820,219544,20,8 ,36,15004,743832,5,2 ,16,820,219552,20,8 ,36,15004,743840,8,2 ,20,23760,21715362,488,0 ,36,15004,743848,7,2 ,16,820,219560,20,8 ,16,820,219568,20,8 ,36,15004,743856,7,2 ,16,820,219576,20,9 ,36,15004,743864,7,2 ,16,820,219584,20,9 ,36,15004,743872,7,2 ,20,19442,10181058,192,0 ,17,923,9656772,32,0 ,44,15152,743876,152,0 ,16,820,219592,20,8 ,36,15004,743880,7,2 ,16,820,219600,20,10 ,36,15004,743888,7,2 ,16,820,219608,22,9 ,36,15004,743896,7,2 ,36,15004,743904,8,2 ,16,820,219616,20,8 ,16,820,219624,18,8 ,36,15004,743912,7,2 ,16,820,219632,20,8 ,36,15004,743920,7,2 ,36,15004,743928,7,2 ,16,820,219640,22,8 ,16,820,219648,22,8 ,36,15004,743936,7,2 ,45,15153,5462532,32,0 ,17,923,6511108,40,0 ,45,15153,3889668,32,0 ,45,15153,4413956,24,0 ,16,820,219656,20,8 ,36,15004,743944,7,2 ,16,820,219664,20,8 ,36,15004,743952,7,2 ,16,820,219672,20,8 ,36,15004,743960,7,2 ,16,820,219680,22,21 ,36,15004,743968,8,2 ,20,25740,26958370,936,0 ,16,820,219688,22,8 ,36,15004,743976,7,2 ,16,820,219696,14,8 ,36,15004,743984,7,2 ,16,820,219704,14,8 ,36,15004,743992,7,2 ,16,820,219712,15,8 ,36,15004,744000,7,2 ,20,20558,13326914,292,0 ,17,923,8608324,16,0 ,44,15152,1268292,32,0 ,45,15153,4938308,96,0 ,16,820,219720,21,8 ,36,15004,744008,7,2 ,16,820,219728,20,9 ,36,15004,744016,7,2 ,16,820,219736,20,9 ,36,15004,744024,5,2 ,36,15004,744032,7,2 ,16,820,219744,22,23 ,16,820,219752,14,8 ,36,15004,744040,7,2 ,16,820,219760,14,8 ,36,15004,744048,7,2 ,16,820,219768,20,11 ,36,15004,744056,7,2 ,16,820,219776,20,20 ,36,15004,744064,7,2 ,17,923,9132676,48,0 ,17,923,7035524,40,0 ,44,15152,2841220,24,0 ,44,15152,1792644,80,0 ,16,820,219784,20,9 ,36,15004,744072,7,2 ,16,820,219792,14,8 ,36,15004,744080,8,2 ,16,820,219800,14,8 ,36,15004,744088,7,2 ,16,820,219808,22,22 ,36,15004,744096,7,2 ,16,820,219816,20,8 ,36,15004,744104,6,2 ,16,820,219824,14,8 ,36,15004,744112,7,2 ,16,820,219832,20,8 ,36,15004,744120,7,2 ,36,15004,744128,7,2 ,16,820,219840,22,10 ,20,19142,9657026,292,0 ,17,923,10181316,32,0 ,17,923,7559876,32,0 ,44,15152,219844,24,0 ,45,15153,4414148,24,0 ,17,923,8084164,32,0 ,17,923,8608452,24,0 ,17,923,9657028,128,0 ,16,820,219848,14,8 ,36,15004,744136,7,2 ,16,820,219856,20,9 ,36,15004,744144,6,2 ,36,15004,744152,7,2 ,16,820,219864,14,8 ,16,820,219872,20,10 ,36,15004,744160,7,2 ,20,22754,19618530,212,0 ,16,820,219880,22,9 ,36,15004,744168,7,2 ,16,820,219888,20,12 ,36,15004,744176,7,2 ,16,820,219896,22,11 ,36,15004,744184,7,2 ,16,820,219904,14,8 ,36,15004,744192,7,2 ,45,15153,5462788,24,0 ,45,15153,3889924,24,0 ,36,15004,744200,7,2 ,16,820,219912,14,8 ,16,820,219920,22,8 ,36,15004,744208,7,2 ,16,820,219928,14,8 ,36,15004,744216,7,2 ,16,820,219936,20,10 ,36,15004,744224,7,2 ,16,820,219944,15,8 ,36,15004,744232,7,2 ,16,820,219952,15,8 ,36,15004,744240,7,2 ,16,820,219960,22,11 ,36,15004,744248,7,2 ,36,15004,744256,7,2 ,16,820,219968,14,8 ,20,18718,8608578,328,0 ,20,17778,6511426,12,0 ,20,18262,7560002,52,0 ,44,15152,3365700,24,0 ,17,923,6511428,40,0 ,44,15152,2841412,16,0 ,44,15152,1268548,32,0 ,36,15004,744264,7,2 ,16,820,219976,14,8 ,16,820,219984,20,10 ,36,15004,744272,7,2 ,16,820,219992,21,10 ,36,15004,744280,7,2 ,16,820,220000,15,8 ,36,15004,744288,7,2 ,16,820,220008,14,8 ,36,15004,744296,6,2 ,36,15004,744304,22,5 ,16,820,220016,20,8 ,16,820,220024,20,8 ,36,15004,744312,34,23 ,16,820,220032,22,12 ,36,15004,744320,32,23 ,20,22562,19094402,24,0 ,20,20046,11230082,252,0 ,17,923,8608644,24,0 ,44,15152,220036,40,0 ,45,15153,4414340,16,0 ,16,820,220040,20,9 ,36,15004,744328,32,23 ,16,820,220048,14,8 ,36,15004,744336,34,23 ,16,820,220056,20,9 ,36,15004,744344,32,23 ,16,820,220064,20,8 ,36,15004,744352,32,23 ,20,17779,6511522,48,0 ,16,820,220072,20,9 ,36,15004,744360,32,23 ,16,820,220080,20,9 ,36,15004,744368,32,23 ,16,820,220088,22,8 ,36,15004,744376,34,23 ,16,820,220096,14,8 ,36,15004,744384,32,23 ,17,923,10181572,24,0 ,17,923,7560132,24,0 ,17,923,7035844,40,0 ,44,15152,2841540,32,0 ,45,15153,3890116,16,0 ,45,15153,5462980,24,0 ,17,923,8084420,24,0 ,16,820,220104,22,9 ,36,15004,744392,32,23 ,16,820,220112,22,9 ,36,15004,744400,32,23 ,16,820,220120,20,10 ,36,15004,744408,32,23 ,16,820,220128,22,9 ,36,15004,744416,32,23 ,16,820,220136,22,14 ,36,15004,744424,32,23 ,16,820,220144,15,8 ,36,15004,744432,24,23 ,16,820,220152,22,8 ,36,15004,744440,34,23 ,16,820,220160,14,8 ,36,15004,744448,32,23 ,20,22367,18570242,12,0 ,17,923,9133060,48,0 ,44,15152,3365892,32,0 ,45,15153,4414468,40,0 ,16,820,220168,20,10 ,36,15004,744456,34,23 ,16,820,220176,21,10 ,36,15004,744464,34,23 ,16,820,220184,22,8 ,36,15004,744472,32,23 ,16,820,220192,22,10 ,36,15004,744480,32,23 ,20,21353,15948834,424,0 ,16,820,220200,22,12 ,36,15004,744488,32,23 ,16,820,220208,18,8 ,36,15004,744496,32,23 ,16,820,220216,14,8 ,36,15004,744504,32,23 ,16,820,220224,20,8 ,36,15004,744512,32,23 ,20,22563,19094594,144,0 ,17,923,8608836,24,0 ,44,15152,1268804,32,0 ,45,15153,3890244,16,0 ,16,820,220232,20,11 ,36,15004,744520,32,23 ,16,820,220240,22,11 ,36,15004,744528,32,23 ,16,820,220248,20,8 ,36,15004,744536,32,23 ,16,820,220256,20,11 ,36,15004,744544,34,23 ,20,22368,18570338,176,0 ,16,820,220264,20,8 ,36,15004,744552,34,23 ,16,820,220272,20,9 ,36,15004,744560,32,23 ,16,820,220280,20,9 ,36,15004,744568,32,23 ,16,820,220288,22,8 ,36,15004,744576,32,23 ,17,923,10181764,24,0 ,17,923,7560324,56,0 ,17,923,6511748,32,0 ,45,15153,5463172,32,0 ,17,923,8084612,72,0 ,16,820,220296,14,8 ,36,15004,744584,32,23 ,16,820,220304,22,9 ,36,15004,744592,34,23 ,16,820,220312,22,10 ,36,15004,744600,32,23 ,16,820,220320,14,8 ,36,15004,744608,32,23 ,20,25569,26434722,28,0 ,16,820,220328,14,8 ,36,15004,744616,32,23 ,36,15004,744624,26,23 ,16,820,220336,20,8 ,16,820,220344,20,11 ,36,15004,744632,32,23 ,16,820,220352,15,8 ,36,15004,744640,34,23 ,20,25414,25910466,1424,0 ,45,15153,3890372,24,0 ,44,15152,2841796,24,0 ,44,15152,220356,136,0 ,16,820,220360,20,8 ,36,15004,744648,32,23 ,16,820,220368,20,9 ,36,15004,744656,32,23 ,16,820,220376,20,9 ,36,15004,744664,32,23 ,16,820,220384,22,14 ,36,15004,744672,32,23 ,20,24556,23813346,24,0 ,20,18263,7560418,436,0 ,16,820,220392,20,9 ,36,15004,744680,32,23 ,16,820,220400,20,9 ,36,15004,744688,32,23 ,16,820,220408,20,14 ,36,15004,744696,34,23 ,16,820,220416,20,9 ,36,15004,744704,32,23 ,17,923,8609028,16,0 ,17,923,7036164,40,0 ,44,15152,1793284,24,0 ,44,15152,3366148,32,0 ,16,820,220424,15,8 ,36,15004,744712,32,23 ,16,820,220432,14,8 ,36,15004,744720,34,23 ,16,820,220440,20,10 ,36,15004,744728,32,23 ,16,820,220448,20,8 ,36,15004,744736,32,23 ,20,17780,6511906,1056,0 ,16,820,220456,20,8 ,36,15004,744744,32,23 ,16,820,220464,20,10 ,36,15004,744752,32,23 ,16,820,220472,22,8 ,36,15004,744760,32,23 ,16,820,220480,22,8 ,36,15004,744768,32,23 ,17,923,10181956,32,0 ,44,15152,1269060,32,0 ,45,15153,4414788,24,0 ,45,15153,4939076,88,0 ,16,820,220488,20,9 ,36,15004,744776,32,23 ,16,820,220496,14,8 ,36,15004,744784,32,23 ,16,820,220504,20,9 ,36,15004,744792,32,23 ,16,820,220512,14,8 ,36,15004,744800,32,23 ,20,15678,1269090,124,0 ,16,820,220520,20,10 ,36,15004,744808,32,23 ,16,820,220528,14,8 ,36,15004,744816,32,23 ,16,820,220536,20,8 ,36,15004,744824,32,23 ,16,820,220544,14,8 ,36,15004,744832,32,23 ,20,25570,26434946,300,0 ,17,923,9133444,48,0 ,17,923,6512004,40,0 ,44,15152,2841988,16,0 ,45,15153,3890564,40,0 ,45,15153,5463428,24,0 ,17,923,8609156,16,0 ,16,820,220552,22,8 ,36,15004,744840,32,23 ,16,820,220560,21,8 ,36,15004,744848,32,23 ,16,820,220568,22,8 ,36,15004,744856,32,23 ,16,820,220576,20,9 ,36,15004,744864,32,23 ,20,24557,23813538,84,0 ,20,25961,27483554,148,0 ,20,17561,5987746,332,0 ,16,820,220584,15,8 ,36,15004,744872,32,23 ,16,820,220592,20,10 ,36,15004,744880,32,23 ,16,820,220600,15,8 ,36,15004,744888,32,23 ,16,820,220608,14,8 ,36,15004,744896,32,23 ,44,15152,1793476,24,0 ,16,820,220616,22,8 ,36,15004,744904,32,23 ,16,820,220624,20,9 ,36,15004,744912,34,23 ,16,820,220632,20,9 ,36,15004,744920,34,23 ,16,820,220640,20,9 ,36,15004,744928,32,23 ,16,820,220648,22,28 ,36,15004,744936,32,23 ,16,820,220656,14,8 ,36,15004,744944,34,23 ,16,820,220664,22,9 ,36,15004,744952,32,23 ,16,820,220672,20,12 ,36,15004,744960,32,23 ,17,923,8609284,24,0 ,44,15152,2842116,24,0 ,44,15152,3366404,32,0 ,45,15153,4414980,32,0 ,16,820,220680,20,12 ,36,15004,744968,34,23 ,16,820,220688,15,8 ,36,15004,744976,34,23 ,16,820,220696,20,9 ,36,15004,744984,32,23 ,16,820,220704,22,8 ,36,15004,744992,32,23 ,16,820,220712,22,9 ,36,15004,745000,34,23 ,16,820,220720,14,8 ,36,15004,745008,32,23 ,36,15004,745016,40,23 ,16,820,220728,14,8 ,16,820,220736,14,8 ,36,15004,745024,32,23 ,17,923,10182212,24,0 ,17,923,7560772,40,0 ,17,923,7036484,56,0 ,44,15152,1269316,32,0 ,45,15153,5463620,48,0 ,16,820,220744,20,10 ,36,15004,745032,32,23 ,16,820,220752,15,8 ,36,15004,745040,32,23 ,16,820,220760,21,8 ,36,15004,745048,32,23 ,16,820,220768,22,9 ,36,15004,745056,32,23 ,16,820,220776,20,11 ,36,15004,745064,32,23 ,16,820,220784,20,8 ,36,15004,745072,32,23 ,16,820,220792,14,8 ,36,15004,745080,32,23 ,16,820,220800,21,8 ,36,15004,745088,32,23 ,44,15152,745092,48,0 ,44,15152,1793668,136,0 ,16,820,220808,20,8 ,36,15004,745096,34,23 ,16,820,220816,21,8 ,36,15004,745104,34,23 ,16,820,220824,20,10 ,36,15004,745112,32,23 ,16,820,220832,14,8 ,36,15004,745120,32,23 ,16,820,220840,14,8 ,36,15004,745128,32,23 ,16,820,220848,20,12 ,36,15004,745136,32,23 ,16,820,220856,22,9 ,36,15004,745144,32,23 ,36,15004,745152,26,23 ,16,820,220864,15,8 ,20,26317,28532418,448,0 ,17,923,9658052,72,0 ,17,923,6512324,32,0 ,44,15152,2842308,24,0 ,45,15153,3890884,16,0 ,17,923,8085188,32,0 ,17,923,8609476,16,0 ,16,820,220872,21,8 ,36,15004,745160,32,23 ,16,820,220880,22,13 ,36,15004,745168,32,23 ,16,820,220888,22,10 ,36,15004,745176,32,23 ,16,820,220896,22,12 ,36,15004,745184,34,23 ,16,820,220904,20,8 ,36,15004,745192,32,23 ,16,820,220912,20,9 ,36,15004,745200,32,23 ,16,820,220920,21,8 ,36,15004,745208,32,23 ,16,820,220928,20,9 ,36,15004,745216,32,23 ,20,23077,20143874,12,0 ,17,923,10182404,32,0 ,44,15152,3366660,32,0 ,45,15153,4415236,216,0 ,17,923,9133828,48,0 ,16,820,220936,21,8 ,36,15004,745224,32,23 ,16,820,220944,20,10 ,36,15004,745232,32,23 ,16,820,220952,20,9 ,36,15004,745240,32,23 ,16,820,220960,14,8 ,36,15004,745248,32,23 ,16,820,220968,14,8 ,36,15004,745256,32,23 ,16,820,220976,20,9 ,36,15004,745264,32,23 ,16,820,220984,20,9 ,36,15004,745272,32,23 ,16,820,220992,20,9 ,36,15004,745280,34,23 ,20,24979,24862530,420,0 ,17,923,8609604,16,0 ,44,15152,1269572,32,0 ,45,15153,3891012,16,0 ,16,820,221000,22,8 ,36,15004,745288,32,23 ,16,820,221008,20,9 ,36,15004,745296,34,23 ,16,820,221016,14,8 ,36,15004,745304,32,23 ,16,820,221024,14,8 ,36,15004,745312,32,23 ,20,23078,20143970,12,0 ,16,820,221032,15,8 ,36,15004,745320,32,23 ,16,820,221040,20,9 ,36,15004,745328,32,23 ,16,820,221048,20,10 ,36,15004,745336,34,23 ,16,820,221056,22,20 ,36,15004,745344,32,23 ,44,15152,2842500,16,0 ,17,923,7561092,32,0 ,16,820,221064,20,14 ,36,15004,745352,34,23 ,16,820,221072,20,13 ,36,15004,745360,32,23 ,16,820,221080,22,9 ,36,15004,745368,32,23 ,16,820,221088,14,8 ,36,15004,745376,32,23 ,20,16747,3891106,68,0 ,16,820,221096,14,8 ,36,15004,745384,32,23 ,16,820,221104,15,8 ,36,15004,745392,32,23 ,16,820,221112,20,11 ,36,15004,745400,34,23 ,16,820,221120,20,10 ,36,15004,745408,34,23 ,20,23079,20144066,128,0 ,20,15412,745410,172,0 ,20,19443,10182594,192,0 ,17,923,8609732,16,0 ,17,923,6512580,32,0 ,44,15152,2318276,144,0 ,45,15153,3891140,16,0 ,45,15153,5464004,40,0 ,17,923,8085444,32,0 ,16,820,221128,20,10 ,36,15004,745416,32,23 ,16,820,221136,22,9 ,36,15004,745424,32,23 ,16,820,221144,15,8 ,36,15004,745432,32,23 ,16,820,221152,20,20 ,36,15004,745440,32,23 ,20,26163,28008418,128,0 ,16,820,221160,20,8 ,36,15004,745448,32,23 ,16,820,221168,20,12 ,36,15004,745456,32,23 ,16,820,221176,20,8 ,36,15004,745464,32,23 ,36,15004,745472,34,23 ,16,820,221184,20,9 ,17,923,10182660,24,0 ,17,923,7036932,56,0 ,44,15152,2842628,16,0 ,44,15152,745476,192,0 ,44,15152,3366916,160,0 ,45,15153,4939780,32,0 ,16,820,221192,22,30 ,36,15004,745480,34,23 ,16,820,221200,20,9 ,36,15004,745488,32,23 ,16,820,221208,20,9 ,36,15004,745496,32,23 ,16,820,221216,22,8 ,36,15004,745504,32,23 ,36,15004,745512,11,10 ,16,820,221224,20,8 ,36,15004,745520,16,15 ,16,820,221232,22,12 ,36,15004,745528,7,2 ,16,820,221240,22,8 ,36,15004,745536,40,13 ,16,820,221248,20,9 ,20,24558,23814210,64,0 ,20,26437,29057090,264,0 ,17,923,8609860,16,0 ,44,15152,1269828,32,0 ,45,15153,3891268,64,0 ,36,15004,745544,40,13 ,16,820,221256,22,10 ,36,15004,745552,40,13 ,16,820,221264,20,8 ,36,15004,745560,40,13 ,16,820,221272,22,11 ,36,15004,745568,40,13 ,16,820,221280,20,9 ,36,15004,745576,40,13 ,16,820,221288,22,9 ,36,15004,745584,40,13 ,16,820,221296,22,10 ,36,15004,745592,40,13 ,16,820,221304,22,9 ,36,15004,745600,40,13 ,16,820,221312,20,10 ,20,23985,22241410,768,0 ,17,923,9134212,40,0 ,17,923,7561348,24,0 ,44,15152,2842756,16,0 ,36,15004,745608,40,13 ,16,820,221320,22,14 ,36,15004,745616,40,13 ,16,820,221328,20,9 ,36,15004,745624,8,7 ,16,820,221336,22,9 ,36,15004,745632,8,7 ,16,820,221344,22,13 ,36,15004,745640,28,27 ,16,820,221352,20,9 ,36,15004,745648,5,4 ,16,820,221360,22,9 ,36,15004,745656,2,1 ,16,820,221368,20,14 ,36,15004,745664,9,8 ,16,820,221376,22,8 ,20,22564,19095746,188,0 ,17,923,10182852,48,0 ,17,923,6512836,32,0 ,17,923,8085700,24,0 ,17,923,8609988,16,0 ,36,15004,745672,4,1 ,16,820,221384,22,8 ,36,15004,745680,4,1 ,16,820,221392,22,10 ,36,15004,745688,4,1 ,16,820,221400,20,8 ,36,15004,745696,1,0 ,16,820,221408,22,8 ,36,15004,745704,1,0 ,16,820,221416,22,8 ,36,15004,745712,28,25 ,16,820,221424,20,9 ,36,15004,745720,12,11 ,16,820,221432,20,9 ,36,15004,745728,6,5 ,16,820,221440,20,8 ,17,923,9658628,72,0 ,44,15152,2842884,24,0 ,44,15152,221444,24,0 ,45,15153,4940036,32,0 ,45,15153,5464324,24,0 ,36,15004,745736,6,5 ,16,820,221448,22,11 ,36,15004,745744,7,6 ,16,820,221456,20,8 ,36,15004,745752,10,9 ,16,820,221464,20,10 ,36,15004,745760,7,6 ,16,820,221472,20,8 ,36,15004,745768,12,11 ,16,820,221480,22,10 ,36,15004,745776,4,3 ,16,820,221488,14,8 ,36,15004,745784,5,4 ,16,820,221496,20,8 ,36,15004,745792,8,7 ,16,820,221504,22,21 ,20,15679,1270082,332,0 ,17,923,8610116,16,0 ,17,923,7561540,32,0 ,44,15152,1270084,32,0 ,36,15004,745800,10,7 ,16,820,221512,20,9 ,36,15004,745808,13,8 ,16,820,221520,20,8 ,36,15004,745816,4,1 ,16,820,221528,20,9 ,36,15004,745824,2,1 ,16,820,221536,22,9 ,36,15004,745832,10,3 ,16,820,221544,22,9 ,36,15004,745840,6,3 ,16,820,221552,22,8 ,36,15004,745848,6,3 ,16,820,221560,22,8 ,36,15004,745856,6,3 ,16,820,221568,20,8 ,20,22755,19620226,312,0 ,20,21000,15425922,968,0 ,17,923,8085892,40,0 ,36,15004,745864,9,4 ,16,820,221576,18,8 ,36,15004,745872,7,4 ,16,820,221584,22,10 ,16,820,221592,18,10 ,36,15004,745880,5,4 ,36,15004,745888,16,9 ,16,820,221600,20,8 ,36,15004,745896,20,15 ,16,820,221608,20,9 ,36,15004,745904,20,15 ,16,820,221616,22,17 ,36,15004,745912,20,15 ,16,820,221624,22,13 ,36,15004,745920,4,1 ,16,820,221632,20,9 ,20,16748,3891650,276,0 ,17,923,9134532,40,0 ,17,923,7037380,40,0 ,17,923,6513092,40,0 ,44,15152,2843076,32,0 ,44,15152,221636,32,0 ,45,15153,5464516,40,0 ,17,923,8610244,16,0 ,36,15004,745928,9,6 ,16,820,221640,20,9 ,36,15004,745936,9,6 ,16,820,221648,22,8 ,36,15004,745944,9,6 ,16,820,221656,20,9 ,16,820,221664,22,13 ,36,15004,745952,9,6 ,20,23393,20668898,104,0 ,20,22369,18571746,232,0 ,36,15004,745960,7,6 ,16,820,221672,22,15 ,36,15004,745968,4,3 ,16,820,221680,20,10 ,36,15004,745976,2,1 ,16,820,221688,18,10 ,36,15004,745984,6,1 ,16,820,221696,18,10 ,45,15153,4940292,40,0 ,36,15004,745992,6,1 ,16,820,221704,18,10 ,36,15004,746000,6,1 ,16,820,221712,22,9 ,36,15004,746008,1,0 ,16,820,221720,22,11 ,16,820,221728,22,22 ,36,15004,746016,4,1 ,16,820,221736,20,11 ,36,15004,746024,4,1 ,16,820,221744,22,8 ,36,15004,746032,4,1 ,36,15004,746040,4,1 ,16,820,221752,20,14 ,36,15004,746048,24,1 ,16,820,221760,20,10 ,20,24559,23814722,80,0 ,20,25962,27484738,364,0 ,17,923,10183236,16,0 ,17,923,7561796,40,0 ,44,15152,1270340,40,0 ,45,15153,3891780,16,0 ,17,923,8610372,16,0 ,36,15004,746056,32,1 ,16,820,221768,20,9 ,36,15004,746064,24,1 ,16,820,221776,20,10 ,36,15004,746072,32,1 ,16,820,221784,20,8 ,36,15004,746080,44,1 ,16,820,221792,20,8 ,36,15004,746088,28,1 ,16,820,221800,20,8 ,36,15004,746096,36,1 ,16,820,221808,22,13 ,36,15004,746104,32,1 ,16,820,221816,20,9 ,36,15004,746112,44,1 ,16,820,221824,20,11 ,20,24737,24339074,1020,0 ,36,15004,746120,10,1 ,16,820,221832,20,11 ,36,15004,746128,16,3 ,16,820,221840,20,11 ,36,15004,746136,16,3 ,16,820,221848,20,8 ,36,15004,746144,20,3 ,16,820,221856,22,14 ,36,15004,746152,20,3 ,16,820,221864,20,9 ,36,15004,746160,16,3 ,16,820,221872,22,8 ,36,15004,746168,16,3 ,16,820,221880,22,10 ,36,15004,746176,20,3 ,16,820,221888,20,8 ,17,923,10183364,48,0 ,44,15152,2843332,8,0 ,44,15152,1794756,64,0 ,44,15152,221892,24,0 ,45,15153,3891908,16,0 ,17,923,8086212,48,0 ,17,923,8610500,24,0 ,36,15004,746184,20,3 ,16,820,221896,20,8 ,36,15004,746192,7,1 ,16,820,221904,20,11 ,36,15004,746200,7,1 ,16,820,221912,20,8 ,16,820,221920,20,8 ,36,15004,746208,4,1 ,36,15004,746216,6,1 ,16,820,221928,14,8 ,36,15004,746224,6,1 ,16,820,221936,20,10 ,36,15004,746232,6,1 ,16,820,221944,20,10 ,36,15004,746240,6,1 ,16,820,221952,22,18 ,17,923,9134852,48,0 ,17,923,7037700,56,0 ,17,923,6513412,24,0 ,44,15152,2843396,24,0 ,45,15153,5464836,16,0 ,36,15004,746248,6,1 ,16,820,221960,20,8 ,36,15004,746256,6,1 ,16,820,221968,18,8 ,36,15004,746264,4,1 ,16,820,221976,20,8 ,36,15004,746272,4,1 ,16,820,221984,20,14 ,36,15004,746280,6,1 ,16,820,221992,20,9 ,36,15004,746288,6,1 ,16,820,222000,20,8 ,36,15004,746296,6,1 ,16,820,222008,20,11 ,36,15004,746304,6,1 ,16,820,222016,20,8 ,17,923,9659204,32,0 ,45,15153,3892036,16,0 ,45,15153,4940612,24,0 ,36,15004,746312,6,1 ,16,820,222024,20,8 ,16,820,222032,20,8 ,36,15004,746320,6,1 ,16,820,222040,20,11 ,36,15004,746328,6,1 ,16,820,222048,20,8 ,36,15004,746336,6,1 ,20,20559,13329250,292,0 ,20,20047,11232098,468,0 ,16,820,222056,20,10 ,36,15004,746344,6,1 ,16,820,222064,20,8 ,36,15004,746352,6,1 ,16,820,222072,20,8 ,36,15004,746360,6,1 ,16,820,222080,20,8 ,36,15004,746368,5,2 ,17,923,8610692,24,0 ,17,923,7562116,40,0 ,44,15152,1270660,32,0 ,44,15152,222084,32,0 ,45,15153,5464964,32,0 ,16,820,222088,20,8 ,36,15004,746376,5,2 ,16,820,222096,22,10 ,36,15004,746384,2,1 ,16,820,222104,22,10 ,36,15004,746392,4,1 ,36,15004,746400,6,1 ,16,820,222112,20,8 ,16,820,222120,22,11 ,36,15004,746408,6,1 ,16,820,222128,20,8 ,36,15004,746416,6,1 ,16,820,222136,22,10 ,36,15004,746424,6,1 ,36,15004,746432,1,0 ,16,820,222144,22,10 ,20,23080,20145090,32,0 ,45,15153,3892164,24,0 ,17,923,6513604,48,0 ,44,15152,2843588,32,0 ,16,820,222152,22,12 ,36,15004,746440,6,1 ,16,820,222160,22,15 ,36,15004,746448,4,1 ,36,15004,746456,14,5 ,16,820,222168,22,13 ,36,15004,746464,6,1 ,16,820,222176,22,14 ,20,19143,9659362,200,0 ,20,26164,28009442,128,0 ,16,820,222184,22,14 ,36,15004,746472,6,1 ,36,15004,746480,6,1 ,16,820,222192,22,12 ,36,15004,746488,6,1 ,16,820,222200,22,20 ,36,15004,746496,6,1 ,16,820,222208,22,8 ,45,15153,4940804,16,0 ,36,15004,746504,4,1 ,16,820,222216,22,14 ,16,820,222224,22,11 ,36,15004,746512,8,3 ,36,15004,746520,13,4 ,16,820,222232,22,12 ,16,820,222240,22,11 ,36,15004,746528,6,1 ,16,820,222248,22,10 ,36,15004,746536,6,1 ,16,820,222256,20,8 ,36,15004,746544,6,1 ,16,820,222264,22,10 ,36,15004,746552,6,1 ,36,15004,746560,6,1 ,16,820,222272,22,10 ,17,923,10183748,40,0 ,44,15152,2319428,32,0 ,17,923,8086596,48,0 ,17,923,8610884,24,0 ,17,923,9659460,72,0 ,36,15004,746568,6,1 ,16,820,222280,22,10 ,36,15004,746576,6,1 ,16,820,222288,22,25 ,36,15004,746584,6,1 ,16,820,222296,20,8 ,36,15004,746592,6,1 ,16,820,222304,22,31 ,36,15004,746600,6,1 ,16,820,222312,22,16 ,36,15004,746608,6,1 ,16,820,222320,22,10 ,36,15004,746616,6,1 ,16,820,222328,22,10 ,36,15004,746624,6,1 ,16,820,222336,22,22 ,17,923,9135236,48,0 ,44,15152,1270916,32,0 ,44,15152,222340,24,0 ,45,15153,3892356,40,0 ,45,15153,4940932,16,0 ,45,15153,5465220,24,0 ,36,15004,746632,6,1 ,16,820,222344,22,12 ,36,15004,746640,6,1 ,16,820,222352,22,22 ,36,15004,746648,6,1 ,16,820,222360,22,14 ,36,15004,746656,4,1 ,16,820,222368,22,11 ,16,820,222376,22,13 ,36,15004,746664,4,1 ,36,15004,746672,7,2 ,16,820,222384,20,11 ,36,15004,746680,17,6 ,16,820,222392,22,31 ,36,15004,746688,6,1 ,16,820,222400,20,8 ,20,24560,23815362,780,0 ,20,23081,20145346,120,0 ,44,15152,1795268,40,0 ,17,923,7562436,24,0 ,17,923,7038148,32,0 ,44,15152,2843844,40,0 ,36,15004,746696,6,1 ,16,820,222408,22,10 ,36,15004,746704,6,1 ,16,820,222416,22,10 ,36,15004,746712,6,1 ,16,820,222424,22,8 ,16,820,222432,22,8 ,36,15004,746720,6,1 ,16,820,222440,14,8 ,36,15004,746728,6,1 ,16,820,222448,20,8 ,36,15004,746736,6,1 ,16,820,222456,22,34 ,36,15004,746744,6,1 ,16,820,222464,22,25 ,36,15004,746752,6,1 ,17,923,8611076,32,0 ,44,15152,3368196,32,0 ,45,15153,4941060,24,0 ,16,820,222472,20,8 ,36,15004,746760,4,1 ,16,820,222480,20,8 ,36,15004,746768,4,1 ,36,15004,746776,6,1 ,16,820,222488,22,12 ,36,15004,746784,6,1 ,16,820,222496,14,8 ,20,23394,20669730,104,0 ,20,15413,746786,48,0 ,36,15004,746792,6,1 ,16,820,222504,14,8 ,36,15004,746800,6,1 ,16,820,222512,14,8 ,36,15004,746808,6,1 ,16,820,222520,14,8 ,36,15004,746816,6,1 ,16,820,222528,20,8 ,45,15153,5465412,48,0 ,17,923,6513988,40,0 ,44,15152,2319684,432,0 ,44,15152,222532,40,0 ,36,15004,746824,6,1 ,16,820,222536,20,8 ,36,15004,746832,6,1 ,16,820,222544,20,8 ,16,820,222552,22,8 ,36,15004,746840,3,0 ,16,820,222560,20,8 ,36,15004,746848,3,0 ,36,15004,746856,3,0 ,16,820,222568,22,8 ,16,820,222576,20,11 ,36,15004,746864,3,0 ,16,820,222584,22,17 ,36,15004,746872,3,0 ,16,820,222592,22,8 ,36,15004,746880,3,0 ,20,24406,23291266,152,0 ,20,18719,8611202,12,0 ,17,923,10184068,24,0 ,17,923,7562628,40,0 ,44,15152,1271172,32,0 ,16,820,222600,22,12 ,36,15004,746888,3,0 ,16,820,222608,22,10 ,36,15004,746896,3,0 ,16,820,222616,22,12 ,36,15004,746904,3,0 ,16,820,222624,22,8 ,36,15004,746912,6,1 ,16,820,222632,20,11 ,36,15004,746920,6,1 ,36,15004,746928,4,0 ,16,820,222640,20,10 ,36,15004,746936,4,0 ,16,820,222648,20,10 ,36,15004,746944,5,0 ,16,820,222656,20,10 ,20,19444,10184130,192,0 ,17,923,8086980,32,0 ,17,923,7038404,40,0 ,45,15153,3892676,24,0 ,45,15153,4416964,24,0 ,45,15153,4941252,40,0 ,36,15004,746952,3,0 ,16,820,222664,22,10 ,36,15004,746960,3,0 ,16,820,222672,22,10 ,36,15004,746968,4,0 ,16,820,222680,20,12 ,36,15004,746976,3,0 ,16,820,222688,20,11 ,20,22080,18048482,444,0 ,20,18720,8611298,204,0 ,36,15004,746984,5,0 ,16,820,222696,20,10 ,36,15004,746992,4,0 ,16,820,222704,20,10 ,36,15004,747000,5,0 ,16,820,222712,20,10 ,36,15004,747008,6,0 ,16,820,222720,20,11 ,17,923,9135620,48,0 ,44,15152,2844164,24,0 ,44,15152,1795588,32,0 ,44,15152,747012,48,0 ,44,15152,3368452,56,0 ,17,923,8611332,32,0 ,36,15004,747016,5,0 ,16,820,222728,18,8 ,36,15004,747024,5,0 ,16,820,222736,20,8 ,36,15004,747032,6,0 ,16,820,222744,20,9 ,36,15004,747040,3,0 ,16,820,222752,22,10 ,20,21857,16999970,48,0 ,36,15004,747048,4,0 ,16,820,222760,22,8 ,36,15004,747056,4,0 ,16,820,222768,14,8 ,36,15004,747064,4,0 ,16,820,222776,20,8 ,36,15004,747072,5,0 ,16,820,222784,20,8 ,20,23609,21194306,1792,0 ,17,923,10184260,24,0 ,16,820,222792,22,8 ,36,15004,747080,4,0 ,36,15004,747088,3,0 ,16,820,222800,22,8 ,16,820,222808,20,8 ,36,15004,747096,5,0 ,16,820,222816,18,8 ,36,15004,747104,5,0 ,36,15004,747112,3,0 ,16,820,222824,20,8 ,36,15004,747120,3,0 ,16,820,222832,20,8 ,16,820,222840,22,12 ,36,15004,747128,4,0 ,36,15004,747136,6,0 ,16,820,222848,18,8 ,17,923,9660036,128,0 ,17,923,6514308,24,0 ,44,15152,1271428,40,0 ,44,15152,222852,24,0 ,45,15153,3892868,48,0 ,45,15153,4417156,56,0 ,36,15004,747144,3,0 ,16,820,222856,20,8 ,36,15004,747152,4,0 ,16,820,222864,18,8 ,36,15004,747160,5,0 ,16,820,222872,20,8 ,36,15004,747168,5,0 ,16,820,222880,20,8 ,20,22565,19097250,84,0 ,20,15414,747170,12,0 ,16,820,222888,14,8 ,36,15004,747176,5,0 ,36,15004,747184,5,0 ,16,820,222896,20,8 ,36,15004,747192,4,0 ,16,820,222904,20,8 ,36,15004,747200,3,0 ,16,820,222912,20,12 ,17,923,8087236,32,0 ,17,923,7562948,24,0 ,44,15152,2844356,64,0 ,45,15153,5465796,24,0 ,36,15004,747208,3,0 ,16,820,222920,20,12 ,36,15004,747216,4,0 ,16,820,222928,18,10 ,36,15004,747224,4,0 ,16,820,222936,22,10 ,16,820,222944,20,8 ,36,15004,747232,6,1 ,20,25571,26437346,2828,0 ,16,820,222952,20,8 ,36,15004,747240,6,1 ,16,820,222960,20,8 ,36,15004,747248,6,1 ,36,15004,747256,6,1 ,16,820,222968,20,10 ,36,15004,747264,6,1 ,16,820,222976,20,10 ,20,15415,747266,136,0 ,17,923,10184452,32,0 ,17,923,7038724,40,0 ,44,15152,1795844,24,0 ,45,15153,4941572,208,0 ,17,923,8611588,32,0 ,36,15004,747272,6,1 ,16,820,222984,20,10 ,36,15004,747280,6,1 ,16,820,222992,20,10 ,36,15004,747288,6,1 ,16,820,223000,20,10 ,16,820,223008,20,10 ,36,15004,747296,6,1 ,16,820,223016,20,10 ,36,15004,747304,6,1 ,16,820,223024,20,10 ,36,15004,747312,6,1 ,16,820,223032,20,10 ,36,15004,747320,6,1 ,16,820,223040,20,10 ,36,15004,747328,6,1 ,44,15152,223044,24,0 ,17,923,6514500,24,0 ,16,820,223048,22,8 ,36,15004,747336,6,1 ,16,820,223056,20,8 ,36,15004,747344,6,1 ,36,15004,747352,6,1 ,16,820,223064,22,8 ,36,15004,747360,6,1 ,16,820,223072,20,12 ,36,15004,747368,6,1 ,16,820,223080,20,12 ,16,820,223088,22,14 ,36,15004,747376,6,1 ,36,15004,747384,6,1 ,16,820,223096,20,19 ,36,15004,747392,6,1 ,16,820,223104,20,8 ,17,923,9136004,40,0 ,17,923,7563140,24,0 ,44,15152,747396,32,0 ,45,15153,5465988,40,0 ,16,820,223112,20,11 ,36,15004,747400,6,1 ,16,820,223120,18,8 ,36,15004,747408,6,1 ,36,15004,747416,6,1 ,16,820,223128,22,12 ,36,15004,747424,6,1 ,16,820,223136,20,10 ,20,21858,17000354,120,0 ,16,820,223144,18,8 ,36,15004,747432,7,0 ,16,820,223152,20,8 ,36,15004,747440,6,0 ,16,820,223160,20,10 ,36,15004,747448,6,0 ,16,820,223168,22,14 ,36,15004,747456,6,0 ,17,923,8087492,40,0 ,44,15152,1796036,32,0 ,44,15152,1271748,72,0 ,44,15152,3368900,24,0 ,16,820,223176,20,10 ,36,15004,747464,6,0 ,16,820,223184,20,11 ,36,15004,747472,6,0 ,36,15004,747480,6,0 ,16,820,223192,18,10 ,36,15004,747488,7,0 ,16,820,223200,18,10 ,20,26165,28010466,1920,0 ,36,15004,747496,7,0 ,16,820,223208,20,10 ,16,820,223216,22,16 ,36,15004,747504,6,0 ,16,820,223224,22,11 ,36,15004,747512,6,0 ,16,820,223232,22,14 ,36,15004,747520,6,0 ,20,17562,5990402,120,0 ,17,923,10184708,16,0 ,17,923,6514692,24,0 ,44,15152,223236,64,0 ,45,15153,3893252,16,0 ,17,923,8611844,32,0 ,36,15004,747528,6,0 ,16,820,223240,20,10 ,16,820,223248,20,8 ,36,15004,747536,6,0 ,36,15004,747544,6,0 ,16,820,223256,20,8 ,16,820,223264,20,8 ,36,15004,747552,6,0 ,16,820,223272,20,8 ,36,15004,747560,6,0 ,16,820,223280,20,8 ,36,15004,747568,6,0 ,16,820,223288,20,8 ,36,15004,747576,7,0 ,36,15004,747584,7,0 ,16,820,223296,20,8 ,45,15153,4417604,32,0 ,17,923,7563332,24,0 ,17,923,7039044,40,0 ,16,820,223304,20,8 ,36,15004,747592,4,0 ,36,15004,747600,7,0 ,16,820,223312,20,9 ,36,15004,747608,3,0 ,16,820,223320,18,10 ,16,820,223328,20,8 ,36,15004,747616,6,0 ,20,23395,20670562,884,0 ,36,15004,747624,6,0 ,16,820,223336,22,11 ,36,15004,747632,5,0 ,16,820,223344,22,10 ,16,820,223352,20,8 ,36,15004,747640,6,0 ,16,820,223360,18,10 ,36,15004,747648,4,0 ,20,23082,20146306,28,0 ,20,26438,29059202,652,0 ,17,923,10184836,24,0 ,44,15152,747652,24,0 ,44,15152,3369092,48,0 ,45,15153,3893380,16,0 ,16,820,223368,18,10 ,36,15004,747656,6,0 ,16,820,223376,18,10 ,36,15004,747664,6,0 ,16,820,223384,18,10 ,36,15004,747672,6,0 ,16,820,223392,18,10 ,36,15004,747680,6,0 ,16,820,223400,18,10 ,36,15004,747688,7,0 ,36,15004,747696,6,0 ,16,820,223408,18,10 ,16,820,223416,18,10 ,36,15004,747704,6,0 ,16,820,223424,18,10 ,36,15004,747712,6,0 ,17,923,9136324,24,0 ,17,923,6514884,32,0 ,44,15152,2844868,96,0 ,44,15152,1796292,32,0 ,45,15153,5466308,120,0 ,36,15004,747720,7,0 ,16,820,223432,18,10 ,36,15004,747728,6,0 ,16,820,223440,18,10 ,36,15004,747736,7,0 ,16,820,223448,18,10 ,16,820,223456,18,10 ,36,15004,747744,5,0 ,20,23761,21719266,168,0 ,16,820,223464,18,10 ,36,15004,747752,6,0 ,16,820,223472,20,8 ,36,15004,747760,7,0 ,16,820,223480,20,8 ,36,15004,747768,5,0 ,36,15004,747776,6,0 ,16,820,223488,20,8 ,17,923,8612100,32,0 ,17,923,7563524,48,0 ,45,15153,3893508,24,0 ,17,923,8087812,32,0 ,36,15004,747784,5,0 ,16,820,223496,20,8 ,36,15004,747792,3,0 ,16,820,223504,22,8 ,36,15004,747800,7,0 ,16,820,223512,20,8 ,36,15004,747808,7,0 ,16,820,223520,22,8 ,20,22370,18573602,12,0 ,16,820,223528,22,8 ,36,15004,747816,6,0 ,36,15004,747824,6,0 ,16,820,223536,20,8 ,16,820,223544,22,8 ,36,15004,747832,6,0 ,16,820,223552,22,8 ,36,15004,747840,6,0 ,20,22566,19097922,1508,0 ,20,16436,3369282,556,0 ,17,923,10185028,32,0 ,44,15152,747844,288,0 ,45,15153,4417860,48,0 ,16,820,223560,20,8 ,36,15004,747848,6,0 ,16,820,223568,22,8 ,36,15004,747856,6,0 ,16,820,223576,22,8 ,36,15004,747864,7,0 ,16,820,223584,20,8 ,36,15004,747872,5,0 ,20,23083,20146530,136,0 ,20,21354,15952226,160,0 ,16,820,223592,22,8 ,36,15004,747880,7,0 ,16,820,223600,22,8 ,36,15004,747888,6,0 ,16,820,223608,20,8 ,36,15004,747896,6,0 ,36,15004,747904,7,0 ,16,820,223616,22,8 ,20,22371,18573698,184,0 ,17,923,9136516,56,0 ,17,923,7039364,32,0 ,16,820,223624,22,8 ,36,15004,747912,6,0 ,16,820,223632,20,8 ,36,15004,747920,6,0 ,16,820,223640,22,8 ,36,15004,747928,6,0 ,16,820,223648,20,8 ,36,15004,747936,6,0 ,36,15004,747944,7,0 ,16,820,223656,22,8 ,36,15004,747952,7,0 ,16,820,223664,22,8 ,16,820,223672,20,8 ,36,15004,747960,5,0 ,16,820,223680,22,8 ,36,15004,747968,6,0 ,45,15153,3893700,24,0 ,17,923,6515140,40,0 ,44,15152,1796548,32,0 ,16,820,223688,22,8 ,36,15004,747976,6,0 ,16,820,223696,20,8 ,36,15004,747984,6,0 ,16,820,223704,20,8 ,36,15004,747992,7,0 ,36,15004,748000,7,0 ,16,820,223712,22,8 ,16,820,223720,20,8 ,36,15004,748008,6,0 ,36,15004,748016,6,0 ,16,820,223728,20,8 ,16,820,223736,20,8 ,36,15004,748024,6,0 ,16,820,223744,20,8 ,36,15004,748032,7,0 ,17,923,8612356,32,0 ,44,15152,1272324,32,0 ,44,15152,223748,64,0 ,44,15152,3369476,32,0 ,17,923,8088068,32,0 ,16,820,223752,20,8 ,36,15004,748040,7,0 ,16,820,223760,20,8 ,36,15004,748048,7,0 ,36,15004,748056,11,2 ,16,820,223768,20,8 ,36,15004,748064,12,2 ,16,820,223776,20,8 ,20,19144,9660962,104,0 ,36,15004,748072,12,2 ,16,820,223784,20,11 ,16,820,223792,20,12 ,36,15004,748080,34,11 ,36,15004,748088,34,11 ,16,820,223800,20,11 ,36,15004,748096,34,11 ,16,820,223808,20,8 ,20,24407,23292482,508,0 ,17,923,10185284,24,0 ,16,820,223816,20,11 ,36,15004,748104,32,11 ,16,820,223824,22,10 ,36,15004,748112,34,11 ,16,820,223832,20,8 ,36,15004,748120,34,11 ,36,15004,748128,1,0 ,16,820,223840,20,8 ,20,16749,3893858,240,0 ,16,820,223848,20,8 ,36,15004,748136,61,4 ,36,15004,748144,5,0 ,16,820,223856,20,9 ,36,15004,748152,13,0 ,16,820,223864,22,10 ,16,820,223872,22,10 ,36,15004,748160,13,0 ,20,19743,10709634,488,0 ,20,18264,7563906,64,0 ,17,923,9661060,72,0 ,17,923,7563908,48,0 ,17,923,7039620,40,0 ,45,15153,3893892,72,0 ,36,15004,748168,13,0 ,16,820,223880,22,8 ,36,15004,748176,13,0 ,16,820,223888,22,10 ,16,820,223896,22,10 ,36,15004,748184,13,0 ,16,820,223904,22,10 ,36,15004,748192,13,0 ,36,15004,748200,13,0 ,16,820,223912,22,10 ,36,15004,748208,13,4 ,16,820,223920,22,8 ,36,15004,748216,13,4 ,16,820,223928,20,8 ,36,15004,748224,13,4 ,16,820,223936,20,8 ,45,15153,4418244,32,0 ,44,15152,1796804,32,0 ,16,820,223944,22,9 ,36,15004,748232,7,2 ,16,820,223952,22,12 ,36,15004,748240,7,2 ,36,15004,748248,7,2 ,16,820,223960,22,12 ,36,15004,748256,7,2 ,16,820,223968,22,14 ,36,15004,748264,7,2 ,16,820,223976,22,14 ,16,820,223984,22,12 ,36,15004,748272,7,2 ,36,15004,748280,7,2 ,16,820,223992,22,14 ,36,15004,748288,7,2 ,16,820,224000,22,12 ,17,923,10185476,40,0 ,17,923,6515460,32,0 ,44,15152,1272580,32,0 ,44,15152,3369732,16,0 ,17,923,8088324,32,0 ,17,923,8612612,32,0 ,16,820,224008,20,11 ,36,15004,748296,7,2 ,16,820,224016,20,11 ,36,15004,748304,7,2 ,16,820,224024,22,12 ,36,15004,748312,7,2 ,36,15004,748320,7,2 ,16,820,224032,20,10 ,36,15004,748328,7,2 ,16,820,224040,18,8 ,36,15004,748336,7,2 ,16,820,224048,20,11 ,36,15004,748344,7,2 ,16,820,224056,22,14 ,36,15004,748352,7,2 ,16,820,224064,22,12 ,20,22756,19622722,424,0 ,20,15416,748354,76,0 ,17,923,9136964,24,0 ,36,15004,748360,7,2 ,16,820,224072,20,9 ,36,15004,748368,7,2 ,16,820,224080,20,10 ,36,15004,748376,3,0 ,16,820,224088,22,8 ,36,15004,748384,3,0 ,16,820,224096,18,8 ,20,21859,17001314,148,0 ,20,17171,4942690,420,0 ,36,15004,748392,3,0 ,16,820,224104,20,10 ,36,15004,748400,2,1 ,16,820,224112,20,10 ,36,15004,748408,2,1 ,16,820,224120,22,10 ,36,15004,748416,4,1 ,16,820,224128,22,10 ,44,15152,3369860,24,0 ,36,15004,748424,4,1 ,16,820,224136,22,10 ,36,15004,748432,6,3 ,16,820,224144,22,10 ,36,15004,748440,7,2 ,16,820,224152,20,10 ,36,15004,748448,5,2 ,16,820,224160,22,10 ,20,15680,1272738,48,0 ,36,15004,748456,5,2 ,16,820,224168,20,11 ,36,15004,748464,1,0 ,16,820,224176,20,12 ,36,15004,748472,14,13 ,16,820,224184,20,12 ,36,15004,748480,7,2 ,16,820,224192,22,10 ,20,19445,10185666,276,0 ,20,17563,5991362,192,0 ,45,15153,4418500,40,0 ,17,923,7039940,40,0 ,44,15152,2845636,112,0 ,44,15152,1797060,32,0 ,36,15004,748488,7,2 ,16,820,224200,22,13 ,36,15004,748496,7,2 ,16,820,224208,20,12 ,36,15004,748504,7,2 ,16,820,224216,22,10 ,36,15004,748512,7,2 ,16,820,224224,20,10 ,36,15004,748520,7,2 ,16,820,224232,20,12 ,36,15004,748528,10,3 ,16,820,224240,22,10 ,36,15004,748536,10,3 ,16,820,224248,20,10 ,36,15004,748544,10,3 ,16,820,224256,20,10 ,17,923,9137156,48,0 ,17,923,7564292,48,0 ,17,923,6515716,32,0 ,44,15152,1272836,32,0 ,44,15152,224260,96,0 ,17,923,8088580,24,0 ,17,923,8612868,32,0 ,36,15004,748552,10,3 ,16,820,224264,20,8 ,36,15004,748560,10,3 ,16,820,224272,20,8 ,36,15004,748568,10,3 ,16,820,224280,20,8 ,36,15004,748576,10,3 ,16,820,224288,20,12 ,36,15004,748584,1,0 ,16,820,224296,20,8 ,36,15004,748592,5,2 ,16,820,224304,20,8 ,36,15004,748600,5,2 ,16,820,224312,22,10 ,36,15004,748608,4,1 ,16,820,224320,20,8 ,20,18721,8612930,120,0 ,17,923,10185796,24,0 ,44,15152,3370052,32,0 ,36,15004,748616,5,2 ,16,820,224328,20,8 ,36,15004,748624,6,3 ,16,820,224336,22,8 ,36,15004,748632,4,1 ,16,820,224344,22,8 ,16,820,224352,22,8 ,36,15004,748640,5,2 ,20,24980,24865890,392,0 ,36,15004,748648,7,1 ,16,820,224360,22,8 ,36,15004,748656,3,1 ,16,820,224368,22,8 ,36,15004,748664,1,0 ,16,820,224376,22,8 ,16,820,224384,22,8 ,36,15004,748672,6,3 ,20,20560,13331586,528,0 ,20,18265,7564418,244,0 ,45,15153,5467268,24,0 ,16,820,224392,20,8 ,36,15004,748680,6,3 ,16,820,224400,22,8 ,36,15004,748688,6,3 ,36,15004,748696,6,3 ,16,820,224408,22,8 ,16,820,224416,22,8 ,36,15004,748704,1,0 ,16,820,224424,20,8 ,36,15004,748712,1,0 ,36,15004,748720,6,0 ,16,820,224432,14,8 ,36,15004,748728,5,0 ,16,820,224440,20,8 ,36,15004,748736,5,0 ,16,820,224448,22,12 ,20,15847,1797314,5528,0 ,20,26318,28536002,252,0 ,17,923,9661636,72,0 ,44,15152,1797316,24,0 ,45,15153,3894468,40,0 ,17,923,8088772,24,0 ,36,15004,748744,5,0 ,16,820,224456,20,8 ,36,15004,748752,5,0 ,16,820,224464,20,10 ,36,15004,748760,5,0 ,16,820,224472,20,8 ,16,820,224480,20,8 ,36,15004,748768,5,0 ,36,15004,748776,5,0 ,16,820,224488,20,9 ,16,820,224496,20,10 ,36,15004,748784,6,0 ,36,15004,748792,5,0 ,16,820,224504,20,8 ,36,15004,748800,7,0 ,16,820,224512,20,8 ,17,923,10185988,24,0 ,17,923,7040260,24,0 ,17,923,6515972,32,0 ,44,15152,1273092,32,0 ,45,15153,4418820,32,0 ,17,923,8613124,32,0 ,36,15004,748808,5,0 ,16,820,224520,20,8 ,36,15004,748816,5,0 ,16,820,224528,22,8 ,16,820,224536,20,8 ,36,15004,748824,5,0 ,36,15004,748832,5,0 ,16,820,224544,22,8 ,20,15681,1273122,96,0 ,36,15004,748840,3,0 ,16,820,224552,20,8 ,36,15004,748848,5,0 ,16,820,224560,22,8 ,36,15004,748856,5,0 ,16,820,224568,22,8 ,16,820,224576,22,8 ,36,15004,748864,5,0 ,45,15153,5467460,48,0 ,44,15152,3370308,32,0 ,36,15004,748872,5,0 ,16,820,224584,20,8 ,36,15004,748880,7,2 ,16,820,224592,20,8 ,36,15004,748888,7,2 ,16,820,224600,22,8 ,16,820,224608,22,15 ,36,15004,748896,7,2 ,20,19145,9661794,200,0 ,36,15004,748904,7,2 ,16,820,224616,22,8 ,36,15004,748912,7,2 ,16,820,224624,20,8 ,36,15004,748920,7,2 ,16,820,224632,20,8 ,36,15004,748928,7,2 ,16,820,224640,20,8 ,17,923,9137540,48,0 ,17,923,7564676,32,0 ,44,15152,1797508,24,0 ,45,15153,4943236,16,0 ,17,923,8088964,32,0 ,16,820,224648,22,8 ,36,15004,748936,7,2 ,36,15004,748944,7,2 ,16,820,224656,20,8 ,16,820,224664,22,8 ,36,15004,748952,7,2 ,36,15004,748960,7,2 ,16,820,224672,20,8 ,20,23084,20147618,104,0 ,20,25963,27487650,236,0 ,20,15417,748962,12,0 ,36,15004,748968,7,2 ,16,820,224680,20,8 ,36,15004,748976,7,2 ,16,820,224688,20,8 ,36,15004,748984,7,2 ,16,820,224696,20,9 ,36,15004,748992,7,2 ,16,820,224704,22,8 ,17,923,10186180,24,0 ,17,923,7040452,40,0 ,16,820,224712,14,8 ,36,15004,749000,7,2 ,36,15004,749008,7,2 ,16,820,224720,20,8 ,16,820,224728,20,8 ,36,15004,749016,7,2 ,16,820,224736,20,8 ,36,15004,749024,7,2 ,36,15004,749032,7,2 ,16,820,224744,20,8 ,36,15004,749040,7,2 ,16,820,224752,20,8 ,36,15004,749048,7,2 ,16,820,224760,20,8 ,36,15004,749056,7,2 ,16,820,224768,20,8 ,20,15418,749058,712,0 ,17,923,8613380,24,0 ,17,923,6516228,32,0 ,44,15152,1273348,32,0 ,45,15153,3894788,16,0 ,45,15153,4419076,32,0 ,45,15153,4943364,440,0 ,36,15004,749064,7,2 ,16,820,224776,20,8 ,36,15004,749072,7,2 ,16,820,224784,20,8 ,36,15004,749080,7,2 ,16,820,224792,20,8 ,36,15004,749088,7,2 ,16,820,224800,20,8 ,20,23762,21720610,448,0 ,36,15004,749096,7,2 ,16,820,224808,20,8 ,36,15004,749104,7,2 ,16,820,224816,20,8 ,16,820,224824,20,8 ,36,15004,749112,7,2 ,16,820,224832,22,8 ,36,15004,749120,7,2 ,44,15152,3370564,32,0 ,44,15152,1797700,48,0 ,36,15004,749128,7,2 ,16,820,224840,22,8 ,36,15004,749136,7,2 ,16,820,224848,20,8 ,36,15004,749144,7,2 ,16,820,224856,20,8 ,36,15004,749152,7,2 ,16,820,224864,20,8 ,20,21355,15953506,420,0 ,16,820,224872,20,8 ,42,15150,749160,25798,18384 ,16,820,224880,22,8 ,16,820,224888,14,8 ,16,820,224896,20,8 ,17,923,10186372,24,0 ,17,923,7564932,32,0 ,45,15153,3894916,40,0 ,17,923,8089220,24,0 ,16,820,224904,22,10 ,16,820,224912,20,8 ,16,820,224920,18,8 ,16,820,224928,20,8 ,16,820,224936,20,12 ,16,820,224944,20,11 ,16,820,224952,20,9 ,16,820,224960,20,10 ,17,923,8613572,24,0 ,45,15153,5467844,24,0 ,16,820,224968,20,8 ,16,820,224976,20,8 ,16,820,224984,20,9 ,16,820,224992,20,8 ,16,820,225000,20,8 ,16,820,225008,20,8 ,16,820,225016,22,8 ,16,820,225024,14,8 ,17,923,9662212,72,0 ,17,923,7040772,32,0 ,17,923,6516484,32,0 ,44,15152,1273604,32,0 ,44,15152,225028,80,0 ,45,15153,4419332,16,0 ,17,923,9137924,48,0 ,16,820,225032,14,8 ,16,820,225040,20,11 ,16,820,225048,20,8 ,16,820,225056,22,8 ,20,20902,14905122,500,0 ,16,820,225064,20,8 ,16,820,225072,20,10 ,16,820,225080,20,8 ,16,820,225088,20,8 ,20,22372,18575170,12,0 ,17,923,10186564,24,0 ,44,15152,2846532,56,0 ,44,15152,3370820,24,0 ,17,923,8089412,40,0 ,16,820,225096,20,10 ,16,820,225104,20,11 ,16,820,225112,22,8 ,16,820,225120,20,10 ,16,820,225128,20,11 ,16,820,225136,20,12 ,16,820,225144,20,11 ,16,820,225152,20,8 ,17,923,8613764,24,0 ,17,923,7565188,40,0 ,45,15153,4419460,24,0 ,45,15153,5468036,24,0 ,16,820,225160,20,8 ,16,820,225168,20,8 ,16,820,225176,20,8 ,16,820,225184,20,8 ,20,22373,18575266,184,0 ,16,820,225192,20,8 ,16,820,225200,20,8 ,16,820,225208,20,8 ,16,820,225216,20,8 ,45,15153,3895236,48,0 ,44,15152,1798084,64,0 ,16,820,225224,14,8 ,16,820,225232,14,8 ,16,820,225240,20,8 ,16,820,225248,14,8 ,16,820,225256,14,8 ,16,820,225264,20,9 ,16,820,225272,14,8 ,16,820,225280,14,8 ,20,21860,17002498,336,0 ,20,18722,8613890,176,0 ,17,923,10186756,24,0 ,17,923,7041028,40,0 ,17,923,6516740,32,0 ,44,15152,1273860,24,0 ,44,15152,3371012,24,0 ,16,820,225288,21,8 ,16,820,225296,20,9 ,16,820,225304,14,8 ,16,820,225312,14,8 ,20,15682,1273890,868,0 ,16,820,225320,21,8 ,16,820,225328,20,8 ,16,820,225336,14,8 ,16,820,225344,22,8 ,17,923,8613956,24,0 ,45,15153,4419652,40,0 ,45,15153,5468228,24,0 ,16,820,225352,22,9 ,16,820,225360,22,11 ,16,820,225368,22,10 ,16,820,225376,14,8 ,16,820,225384,14,8 ,16,820,225392,22,9 ,16,820,225400,14,8 ,16,820,225408,18,8 ,17,923,9138308,40,0 ,17,923,8089732,40,0 ,16,820,225416,20,8 ,16,820,225424,14,8 ,16,820,225432,14,8 ,16,820,225440,20,8 ,16,820,225448,20,8 ,16,820,225456,20,8 ,16,820,225464,14,8 ,16,820,225472,20,8 ,17,923,10186948,24,0 ,17,923,7565508,32,0 ,44,15152,1274052,24,0 ,44,15152,3371204,32,0 ,16,820,225480,14,8 ,16,820,225488,22,8 ,16,820,225496,20,9 ,16,820,225504,14,8 ,20,23085,20148450,264,0 ,16,820,225512,20,8 ,16,820,225520,14,8 ,16,820,225528,20,11 ,16,820,225536,14,8 ,17,923,8614148,24,0 ,17,923,6516996,40,0 ,44,15152,2846980,64,0 ,45,15153,5468420,24,0 ,16,820,225544,20,8 ,16,820,225552,20,10 ,16,820,225560,14,8 ,16,820,225568,20,8 ,16,820,225576,14,8 ,16,820,225584,20,8 ,16,820,225592,14,8 ,16,820,225600,22,8 ,17,923,9662788,32,0 ,17,923,7041348,32,0 ,45,15153,3895620,16,0 ,16,820,225608,22,8 ,16,820,225616,20,8 ,16,820,225624,20,8 ,16,820,225632,20,8 ,16,820,225640,20,8 ,16,820,225648,20,8 ,16,820,225656,20,8 ,16,820,225664,20,8 ,17,923,10187140,24,0 ,44,15152,1274244,144,0 ,44,15152,225668,64,0 ,45,15153,4419972,48,0 ,16,820,225672,22,14 ,16,820,225680,18,8 ,16,820,225688,20,8 ,16,820,225696,22,8 ,16,820,225704,20,8 ,16,820,225712,20,8 ,16,820,225720,20,14 ,16,820,225728,14,8 ,20,17564,5992898,28,0 ,17,923,9138628,40,0 ,17,923,7565764,40,0 ,44,15152,1798596,64,0 ,44,15152,3371460,24,0 ,45,15153,3895748,16,0 ,45,15153,5468612,48,0 ,17,923,8090052,32,0 ,17,923,8614340,24,0 ,16,820,225736,20,10 ,16,820,225744,20,12 ,16,820,225752,20,9 ,16,820,225760,22,8 ,20,16750,3895778,320,0 ,16,820,225768,22,9 ,16,820,225776,20,9 ,16,820,225784,20,8 ,16,820,225792,20,9 ,20,20048,11235842,772,0 ,16,820,225800,20,9 ,16,820,225808,20,9 ,16,820,225816,22,8 ,16,820,225824,22,8 ,16,820,225832,20,8 ,16,820,225840,20,9 ,16,820,225848,22,8 ,16,820,225856,20,9 ,17,923,10187332,32,0 ,17,923,7041604,32,0 ,17,923,6517316,40,0 ,44,15152,750148,24,0 ,45,15153,3895876,16,0 ,17,923,9663044,144,0 ,16,820,225864,18,8 ,16,820,225872,20,9 ,16,820,225880,20,9 ,16,820,225888,20,8 ,16,820,225896,22,12 ,16,820,225904,20,9 ,16,820,225912,20,8 ,16,820,225920,20,8 ,17,923,8614532,24,0 ,44,15152,3371652,40,0 ,16,820,225928,22,12 ,16,820,225936,14,8 ,16,820,225944,20,12 ,16,820,225952,20,10 ,20,17565,5993122,192,0 ,16,820,225960,22,8 ,16,820,225968,20,8 ,16,820,225976,22,14 ,16,820,225984,20,8 ,17,923,8090308,24,0 ,44,15152,2323140,248,0 ,45,15153,3896004,16,0 ,16,820,225992,20,10 ,16,820,226000,22,8 ,16,820,226008,14,8 ,16,820,226016,20,12 ,16,820,226024,14,8 ,16,820,226032,20,12 ,16,820,226040,14,8 ,16,820,226048,20,8 ,17,923,9138948,24,0 ,17,923,7566084,40,0 ,44,15152,2847492,152,0 ,44,15152,750340,24,0 ,45,15153,4420356,32,0 ,16,820,226056,20,8 ,16,820,226064,20,8 ,16,820,226072,22,9 ,16,820,226080,14,8 ,16,820,226088,22,12 ,16,820,226096,20,8 ,16,820,226104,20,8 ,16,820,226112,22,11 ,17,923,10187588,24,0 ,17,923,7041860,32,0 ,45,15153,3896132,24,0 ,45,15153,5468996,56,0 ,17,923,8614724,24,0 ,16,820,226120,22,8 ,16,820,226128,22,16 ,16,820,226136,22,9 ,16,820,226144,20,9 ,16,820,226152,20,8 ,16,820,226160,20,8 ,16,820,226168,22,9 ,16,820,226176,20,9 ,17,923,8090500,56,0 ,17,923,6517636,40,0 ,44,15152,226180,136,0 ,16,820,226184,20,10 ,16,820,226192,26,15 ,16,820,226200,22,10 ,16,820,226208,22,9 ,20,19146,9663394,200,0 ,16,820,226216,22,8 ,16,820,226224,22,10 ,16,820,226232,20,8 ,16,820,226240,22,9 ,20,22081,18052034,428,0 ,17,923,9139140,72,0 ,44,15152,1799108,24,0 ,44,15152,750532,32,0 ,44,15152,3371972,32,0 ,16,820,226248,22,8 ,16,820,226256,20,10 ,16,820,226264,20,10 ,16,820,226272,18,10 ,16,820,226280,20,8 ,16,820,226288,20,8 ,16,820,226296,20,8 ,16,820,226304,20,8 ,17,923,10187780,24,0 ,45,15153,3896324,64,0 ,45,15153,4420612,24,0 ,17,923,8614916,24,0 ,16,820,226312,22,8 ,16,820,226320,20,8 ,16,820,226328,20,8 ,16,820,226336,20,8 ,20,18266,7566370,180,0 ,16,820,226344,20,9 ,16,820,226352,18,10 ,16,820,226360,18,10 ,16,820,226368,18,10 ,17,923,7042116,56,0 ,17,923,7566404,48,0 ,16,820,226376,18,10 ,16,820,226384,18,10 ,16,820,226392,18,10 ,16,820,226400,18,10 ,20,19446,10187874,388,0 ,16,820,226408,20,8 ,16,820,226416,18,10 ,16,820,226424,18,10 ,16,820,226432,18,10 ,44,15152,1799300,24,0 ,16,820,226440,20,11 ,16,820,226448,20,11 ,16,820,226456,20,11 ,16,820,226464,20,8 ,20,26319,28538018,292,0 ,16,820,226472,20,9 ,16,820,226480,18,10 ,16,820,226488,22,9 ,16,820,226496,18,10 ,17,923,10187972,24,0 ,17,923,6517956,40,0 ,44,15152,750788,24,0 ,44,15152,3372228,16,0 ,45,15153,4420804,40,0 ,17,923,8615108,24,0 ,16,820,226504,20,9 ,16,820,226512,18,10 ,16,820,226520,22,12 ,16,820,226528,18,10 ,16,820,226536,20,11 ,16,820,226544,18,10 ,16,820,226552,18,10 ,16,820,226560,18,10 ,20,25964,27489538,188,0 ,45,15153,5469444,16,0 ,16,820,226568,18,10 ,16,820,226576,18,10 ,16,820,226584,18,10 ,16,820,226592,21,8 ,20,16997,4420898,480,0 ,16,820,226600,18,10 ,16,820,226608,18,10 ,16,820,226616,18,10 ,16,820,226624,18,10 ,17,923,8090948,24,0 ,44,15152,1799492,32,0 ,44,15152,3372356,40,0 ,16,820,226632,20,8 ,16,820,226640,22,8 ,16,820,226648,20,8 ,16,820,226656,22,8 ,20,22374,18576738,12,0 ,16,820,226664,20,8 ,16,820,226672,22,8 ,16,820,226680,22,8 ,16,820,226688,22,8 ,20,18723,8615298,204,0 ,17,923,10188164,24,0 ,44,15152,750980,32,0 ,45,15153,5469572,16,0 ,17,923,8615300,24,0 ,16,820,226696,20,8 ,16,820,226704,20,8 ,16,820,226712,20,8 ,16,820,226720,20,8 ,16,820,226728,20,8 ,16,820,226736,20,8 ,16,820,226744,20,8 ,16,820,226752,20,8 ,20,22375,18576834,112,0 ,17,923,7566788,24,0 ,16,820,226760,20,8 ,16,820,226768,20,8 ,16,820,226776,20,8 ,16,820,226784,20,8 ,16,820,226792,20,8 ,16,820,226800,20,8 ,16,820,226808,22,12 ,16,820,226816,22,12 ,17,923,9139716,48,0 ,17,923,7042564,32,0 ,17,923,6518276,24,0 ,44,15152,1275396,40,0 ,45,15153,3896836,144,0 ,45,15153,4421124,24,0 ,45,15153,5469700,24,0 ,17,923,8091140,24,0 ,16,820,226824,22,8 ,16,820,226832,22,8 ,16,820,226840,20,8 ,16,820,226848,20,8 ,16,820,226856,20,9 ,16,820,226864,20,8 ,16,820,226872,20,10 ,16,820,226880,20,8 ,17,923,10188356,16,0 ,44,15152,1799748,24,0 ,17,923,8615492,24,0 ,16,820,226888,18,10 ,16,820,226896,18,10 ,16,820,226904,18,10 ,16,820,226912,22,8 ,16,820,226920,20,10 ,16,820,226928,20,10 ,16,820,226936,20,10 ,16,820,226944,20,17 ,44,15152,3372676,16,0 ,17,923,7566980,64,0 ,44,15152,751236,24,0 ,16,820,226952,20,29 ,16,820,226960,20,79 ,16,820,226968,20,8 ,16,820,226976,22,8 ,16,820,226984,20,8 ,16,820,226992,22,10 ,16,820,227000,20,10 ,16,820,227008,20,10 ,17,923,10188484,24,0 ,17,923,6518468,40,0 ,45,15153,4421316,24,0 ,45,15153,5469892,24,0 ,17,923,8091332,32,0 ,17,923,9664196,80,0 ,16,820,227016,20,10 ,16,820,227024,20,10 ,16,820,227032,20,10 ,16,820,227040,20,10 ,16,820,227048,20,10 ,16,820,227056,20,10 ,16,820,227064,20,10 ,16,820,227072,20,10 ,17,923,8615684,24,0 ,17,923,7042820,48,0 ,44,15152,1799940,24,0 ,44,15152,3372804,16,0 ,16,820,227080,20,8 ,16,820,227088,22,15 ,16,820,227096,18,10 ,16,820,227104,20,11 ,16,820,227112,20,12 ,16,820,227120,20,8 ,16,820,227128,22,17 ,16,820,227136,20,11 ,44,15152,751428,24,0 ,44,15152,1275716,24,0 ,16,820,227144,20,11 ,16,820,227152,20,11 ,16,820,227160,22,16 ,16,820,227168,20,8 ,20,25741,26965858,124,0 ,16,820,227176,20,9 ,16,820,227184,22,8 ,16,820,227192,20,10 ,16,820,227200,22,8 ,17,923,10188676,24,0 ,44,15152,3372932,32,0 ,45,15153,4421508,72,0 ,45,15153,5470084,88,0 ,17,923,9140100,48,0 ,16,820,227208,18,8 ,16,820,227216,20,8 ,16,820,227224,22,11 ,16,820,227232,22,9 ,16,820,227240,20,8 ,16,820,227248,22,8 ,16,820,227256,22,8 ,16,820,227264,20,8 ,17,923,8615876,24,0 ,44,15152,2848708,128,0 ,44,15152,1800132,64,0 ,44,15152,227268,8,0 ,17,923,8091588,40,0 ,16,820,227272,20,12 ,16,820,227280,20,10 ,16,820,227288,20,8 ,16,820,227296,20,8 ,16,820,227304,22,11 ,16,820,227312,18,8 ,16,820,227320,18,8 ,16,820,227328,22,8 ,20,25169,25393154,24,0 ,44,15152,751620,152,0 ,17,923,6518788,32,0 ,44,15152,1275908,40,0 ,44,15152,227332,24,0 ,16,820,227336,20,8 ,16,820,227344,18,8 ,16,820,227352,20,8 ,16,820,227360,20,8 ,16,820,227368,20,8 ,16,820,227376,20,8 ,16,820,227384,18,8 ,16,820,227392,20,8 ,17,923,10188868,24,0 ,16,820,227400,18,8 ,16,820,227408,20,8 ,16,820,227416,18,8 ,16,820,227424,20,8 ,16,820,227432,20,8 ,16,820,227440,20,8 ,16,820,227448,18,8 ,16,820,227456,20,8 ,20,23986,22247554,124,0 ,20,17172,4946050,60,0 ,20,22757,19626114,208,0 ,17,923,8616068,24,0 ,17,923,7567492,24,0 ,17,923,7043204,48,0 ,44,15152,3373188,32,0 ,16,820,227464,18,8 ,16,820,227472,20,48 ,16,820,227480,18,8 ,16,820,227488,14,8 ,20,17566,5994658,304,0 ,20,24981,24869026,184,0 ,16,820,227496,18,8 ,16,820,227504,20,10 ,16,820,227512,18,8 ,16,820,227520,20,8 ,20,25170,25393346,300,0 ,44,15152,227524,24,0 ,16,820,227528,18,8 ,16,820,227536,18,8 ,16,820,227544,20,12 ,16,820,227552,20,8 ,16,820,227560,18,8 ,16,820,227568,20,9 ,16,820,227576,18,8 ,16,820,227584,20,12 ,17,923,10189060,88,0 ,17,923,6519044,24,0 ,17,923,8091908,32,0 ,17,923,9140484,56,0 ,16,820,227592,20,13 ,16,820,227600,20,8 ,16,820,227608,20,8 ,16,820,227616,20,8 ,20,23086,20150562,48,0 ,16,820,227624,20,8 ,16,820,227632,20,8 ,16,820,227640,20,8 ,16,820,227648,20,8 ,20,22376,18577730,80,0 ,17,923,9664836,80,0 ,17,923,7567684,56,0 ,44,15152,1276228,40,0 ,17,923,8616260,24,0 ,16,820,227656,20,10 ,16,820,227664,18,8 ,16,820,227672,20,8 ,16,820,227680,20,8 ,16,820,227688,18,8 ,16,820,227696,20,10 ,16,820,227704,20,15 ,16,820,227712,20,12 ,44,15152,3373444,24,0 ,44,15152,227716,24,0 ,16,820,227720,22,12 ,16,820,227728,20,8 ,16,820,227736,20,8 ,16,820,227744,20,8 ,16,820,227752,20,8 ,16,820,227760,20,8 ,16,820,227768,20,8 ,16,820,227776,20,8 ,20,19744,10713538,416,0 ,20,18267,7567810,12,0 ,45,15153,4422084,24,0 ,17,923,6519236,40,0 ,44,15152,1800644,24,0 ,16,820,227784,20,8 ,16,820,227792,22,10 ,16,820,227800,18,8 ,16,820,227808,20,8 ,20,19147,9664994,160,0 ,16,820,227816,20,12 ,16,820,227824,20,9 ,16,820,227832,20,10 ,16,820,227840,22,11 ,17,923,8616452,24,0 ,17,923,7043588,48,0 ,17,923,8092164,40,0 ,16,820,227848,20,10 ,16,820,227856,22,8 ,16,820,227864,22,8 ,16,820,227872,20,13 ,20,24408,23296546,276,0 ,20,18268,7567906,12,0 ,16,820,227880,20,11 ,16,820,227888,20,12 ,16,820,227896,22,10 ,16,820,227904,22,11 ,45,15153,5470788,24,0 ,44,15152,227908,32,0 ,44,15152,3373636,56,0 ,16,820,227912,22,11 ,16,820,227920,20,12 ,16,820,227928,20,8 ,16,820,227936,20,9 ,20,17173,4946530,1120,0 ,16,820,227944,20,8 ,16,820,227952,20,11 ,16,820,227960,22,13 ,16,820,227968,20,9 ,20,21861,17005186,12,0 ,20,18269,7568002,104,0 ,45,15153,4422276,16,0 ,44,15152,2325124,256,0 ,44,15152,1800836,64,0 ,44,15152,1276548,152,0 ,45,15153,3897988,152,0 ,16,820,227976,22,9 ,16,820,227984,20,12 ,16,820,227992,20,9 ,16,820,228000,20,9 ,20,23087,20150946,12,0 ,20,16437,3373730,100,0 ,16,820,228008,22,9 ,16,820,228016,22,32 ,16,820,228024,22,11 ,16,820,228032,26,16 ,17,923,9140932,48,0 ,17,923,8616644,24,0 ,16,820,228040,22,8 ,16,820,228048,22,10 ,16,820,228056,22,18 ,16,820,228064,14,8 ,20,21862,17005282,72,0 ,20,25965,27491042,856,0 ,16,820,228072,20,8 ,16,820,228080,22,16 ,16,820,228088,22,8 ,16,820,228096,22,9 ,20,23088,20151042,208,0 ,45,15153,5470980,32,0 ,17,923,7568132,24,0 ,17,923,6519556,40,0 ,45,15153,4422404,88,0 ,16,820,228104,22,9 ,16,820,228112,22,9 ,16,820,228120,22,25 ,16,820,228128,20,10 ,16,820,228136,20,8 ,16,820,228144,20,9 ,16,820,228152,20,8 ,16,820,228160,14,8 ,20,25742,26966850,928,0 ,17,923,8092484,48,0 ,44,15152,228164,24,0 ,16,820,228168,20,8 ,16,820,228176,20,8 ,16,820,228184,20,8 ,16,820,228192,20,8 ,20,18993,9141090,108,0 ,16,820,228200,20,8 ,16,820,228208,20,8 ,16,820,228216,18,8 ,16,820,228224,20,8 ,20,21356,15956866,112,0 ,17,923,8616836,24,0 ,17,923,7043972,48,0 ,16,820,228232,20,8 ,16,820,228240,18,11 ,16,820,228248,22,8 ,16,820,228256,20,8 ,16,820,228264,20,8 ,16,820,228272,14,8 ,16,820,228280,20,9 ,16,820,228288,20,8 ,20,22377,18578370,76,0 ,17,923,10189764,56,0 ,17,923,7568324,48,0 ,44,15152,2849732,40,0 ,45,15153,4946884,536,0 ,17,923,9665476,32,0 ,16,820,228296,20,10 ,16,820,228304,14,8 ,16,820,228312,14,8 ,16,820,228320,20,8 ,20,18724,8616930,412,0 ,20,16751,3898338,320,0 ,16,820,228328,14,8 ,16,820,228336,22,8 ,16,820,228344,22,8 ,16,820,228352,20,8 ,45,15153,5471236,48,0 ,44,15152,228356,32,0 ,44,15152,3374084,32,0 ,16,820,228360,20,8 ,16,820,228368,20,9 ,16,820,228376,20,8 ,16,820,228384,20,8 ,20,23763,21724194,124,0 ,16,820,228392,20,8 ,16,820,228400,22,8 ,16,820,228408,22,8 ,16,820,228416,20,9 ,17,923,9141316,40,0 ,17,923,6519876,24,0 ,17,923,8617028,32,0 ,16,820,228424,20,9 ,16,820,228432,20,9 ,16,820,228440,20,9 ,16,820,228448,20,9 ,20,23987,22248546,352,0 ,16,820,228456,20,9 ,16,820,228464,20,9 ,16,820,228472,20,9 ,16,820,228480,20,9 ,44,15152,1801348,64,0 ,16,820,228488,20,9 ,16,820,228496,20,8 ,16,820,228504,20,9 ,16,820,228512,22,8 ,16,820,228520,20,9 ,16,820,228528,20,8 ,16,820,228536,20,8 ,16,820,228544,20,8 ,17,923,9665732,80,0 ,44,15152,752836,48,0 ,17,923,8092868,56,0 ,16,820,228552,22,8 ,16,820,228560,22,8 ,16,820,228568,22,8 ,16,820,228576,20,8 ,20,26439,29064418,568,0 ,16,820,228584,22,9 ,16,820,228592,20,8 ,16,820,228600,20,8 ,16,820,228608,22,8 ,20,20561,13335810,252,0 ,44,15152,3374340,24,0 ,17,923,7044356,48,0 ,17,923,6520068,32,0 ,44,15152,2850052,240,0 ,44,15152,228612,40,0 ,16,820,228616,20,9 ,16,820,228624,20,10 ,16,820,228632,20,10 ,16,820,228640,22,8 ,20,24561,23821602,84,0 ,20,21863,17005858,1116,0 ,16,820,228648,22,8 ,16,820,228656,20,10 ,16,820,228664,22,10 ,16,820,228672,20,10 ,17,923,8617284,32,0 ,17,923,7568708,40,0 ,16,820,228680,22,8 ,16,820,228688,20,8 ,16,820,228696,20,8 ,16,820,228704,20,8 ,16,820,228712,20,8 ,16,820,228720,18,8 ,16,820,228728,20,9 ,16,820,228736,20,8 ,17,923,10190212,32,0 ,45,15153,5471620,16,0 ,17,923,9141636,40,0 ,16,820,228744,22,15 ,16,820,228752,22,9 ,16,820,228760,22,8 ,16,820,228768,22,8 ,16,820,228776,22,8 ,16,820,228784,22,8 ,16,820,228792,20,8 ,16,820,228800,20,9 ,20,18270,7568834,52,0 ,20,26320,28540354,184,0 ,20,16438,3374530,204,0 ,45,15153,4423108,120,0 ,44,15152,3374532,48,0 ,16,820,228808,20,8 ,16,820,228816,20,8 ,16,820,228824,22,8 ,16,820,228832,20,9 ,16,820,228840,20,8 ,16,820,228848,20,8 ,16,820,228856,20,8 ,16,820,228864,20,8 ,45,15153,5471748,16,0 ,17,923,6520324,16,0 ,16,820,228872,22,8 ,16,820,228880,22,8 ,16,820,228888,22,8 ,16,820,228896,22,8 ,20,22378,18578978,340,0 ,20,17781,6520354,136,0 ,16,820,228904,22,8 ,16,820,228912,22,8 ,16,820,228920,20,8 ,16,820,228928,22,8 ,17,923,8617540,24,0 ,44,15152,228932,88,0 ,44,15152,753220,64,0 ,16,820,228936,22,8 ,16,820,228944,22,8 ,16,820,228952,20,8 ,16,820,228960,20,8 ,20,24982,24870498,644,0 ,16,820,228968,22,8 ,16,820,228976,22,8 ,16,820,228984,22,8 ,16,820,228992,20,9 ,17,923,10190468,32,0 ,17,923,7569028,48,0 ,17,923,7044740,48,0 ,17,923,6520452,32,0 ,44,15152,1801860,112,0 ,45,15153,5471876,32,0 ,17,923,8093316,40,0 ,16,820,229000,22,8 ,16,820,229008,22,8 ,16,820,229016,22,8 ,16,820,229024,22,8 ,16,820,229032,22,9 ,16,820,229040,22,8 ,16,820,229048,22,8 ,16,820,229056,20,8 ,20,20903,14909122,4732,0 ,20,18994,9141954,192,0 ,17,923,9141956,48,0 ,16,820,229064,20,8 ,16,820,229072,22,8 ,16,820,229080,20,8 ,16,820,229088,20,8 ,20,19148,9666274,128,0 ,16,820,229096,20,8 ,16,820,229104,20,9 ,16,820,229112,20,8 ,16,820,229120,22,8 ,20,22758,19627778,148,0 ,20,21357,15957762,448,0 ,17,923,8617732,24,0 ,16,820,229128,22,8 ,16,820,229136,20,8 ,16,820,229144,20,8 ,16,820,229152,20,8 ,16,820,229160,20,9 ,16,820,229168,22,9 ,16,820,229176,20,8 ,16,820,229184,20,8 ,17,923,9666372,144,0 ,44,15152,1277764,160,0 ,44,15152,3374916,24,0 ,45,15153,3899204,24,0 ,16,820,229192,20,9 ,16,820,229200,20,8 ,16,820,229208,20,8 ,16,820,229216,14,8 ,20,18271,7569250,2296,0 ,16,820,229224,18,8 ,16,820,229232,20,12 ,16,820,229240,22,10 ,16,820,229248,20,11 ,17,923,10190724,48,0 ,17,923,6520708,24,0 ,45,15153,5472132,24,0 ,16,820,229256,22,10 ,16,820,229264,20,9 ,16,820,229272,20,9 ,16,820,229280,22,10 ,16,820,229288,22,14 ,16,820,229296,20,8 ,16,820,229304,22,12 ,16,820,229312,20,8 ,20,24562,23822274,84,0 ,20,21001,15433666,228,0 ,17,923,8617924,24,0 ,17,923,8093636,32,0 ,16,820,229320,18,10 ,16,820,229328,18,10 ,16,820,229336,18,10 ,16,820,229344,18,10 ,16,820,229352,18,10 ,16,820,229360,18,10 ,16,820,229368,18,10 ,16,820,229376,18,10 ,20,23764,21725186,160,0 ,45,15153,3899396,56,0 ,17,923,7569412,40,0 ,17,923,7045124,32,0 ,44,15152,3375108,64,0 ,16,820,229384,18,10 ,16,820,229392,18,10 ,16,820,229400,18,10 ,16,820,229408,18,10 ,16,820,229416,20,12 ,16,820,229424,18,10 ,16,820,229432,22,8 ,16,820,229440,20,8 ,17,923,9142340,40,0 ,17,923,6520900,24,0 ,44,15152,753732,48,0 ,45,15153,5472324,16,0 ,16,820,229448,22,8 ,16,820,229456,20,8 ,16,820,229464,20,8 ,16,820,229472,20,8 ,20,18080,7045218,588,0 ,16,820,229480,20,9 ,16,820,229488,20,10 ,16,820,229496,20,8 ,16,820,229504,22,9 ,20,19447,10190978,12,0 ,17,923,8618116,24,0 ,16,820,229512,14,8 ,16,820,229520,22,8 ,16,820,229528,20,12 ,16,820,229536,20,12 ,16,820,229544,20,10 ,16,820,229552,20,12 ,16,820,229560,20,12 ,16,820,229568,22,11 ,17,923,8093892,24,0 ,45,15153,5472452,16,0 ,16,820,229576,20,11 ,16,820,229584,20,12 ,16,820,229592,20,10 ,16,820,229600,20,10 ,20,19448,10191074,392,0 ,16,820,229608,22,12 ,16,820,229616,22,11 ,16,820,229624,20,12 ,16,820,229632,20,11 ,17,923,10191108,24,0 ,17,923,7045380,32,0 ,17,923,6521092,40,0 ,44,15152,229636,40,0 ,16,820,229640,20,12 ,16,820,229648,20,12 ,16,820,229656,20,12 ,16,820,229664,20,11 ,20,22082,18055458,280,0 ,16,820,229672,20,11 ,16,820,229680,20,12 ,16,820,229688,20,10 ,16,820,229696,20,12 ,17,923,8618308,32,0 ,17,923,7569732,48,0 ,45,15153,5472580,16,0 ,16,820,229704,20,12 ,16,820,229712,20,12 ,16,820,229720,20,11 ,16,820,229728,20,12 ,16,820,229736,20,12 ,16,820,229744,20,12 ,16,820,229752,22,12 ,16,820,229760,20,12 ,20,23089,20152706,84,0 ,17,923,9142660,48,0 ,45,15153,4424068,16,0 ,17,923,8094084,24,0 ,16,820,229768,20,12 ,16,820,229776,20,12 ,16,820,229784,20,12 ,16,820,229792,20,12 ,16,820,229800,20,12 ,16,820,229808,20,10 ,16,820,229816,20,12 ,16,820,229824,20,11 ,17,923,10191300,32,0 ,44,15152,754116,24,0 ,45,15153,3899844,32,0 ,45,15153,5472708,24,0 ,16,820,229832,20,11 ,16,820,229840,20,11 ,16,820,229848,20,12 ,16,820,229856,20,12 ,16,820,229864,20,12 ,16,820,229872,20,12 ,16,820,229880,20,11 ,16,820,229888,20,12 ,45,15153,4424196,24,0 ,17,923,7045636,40,0 ,44,15152,1802756,32,0 ,44,15152,3375620,40,0 ,16,820,229896,20,12 ,16,820,229904,20,11 ,16,820,229912,20,11 ,16,820,229920,22,11 ,20,17567,5997090,216,0 ,20,25171,25395746,24,0 ,16,820,229928,20,9 ,16,820,229936,20,11 ,16,820,229944,20,12 ,16,820,229952,20,10 ,17,923,8618564,32,0 ,17,923,6521412,32,0 ,44,15152,229956,32,0 ,17,923,8094276,56,0 ,16,820,229960,20,12 ,16,820,229968,20,10 ,16,820,229976,20,12 ,16,820,229984,20,11 ,20,24563,23822946,196,0 ,20,24738,24347234,2808,0 ,20,17782,6521442,208,0 ,16,820,229992,20,9 ,16,820,230000,20,9 ,16,820,230008,20,9 ,16,820,230016,20,9 ,45,15153,5472900,16,0 ,44,15152,2327172,160,0 ,44,15152,754308,24,0 ,16,820,230024,20,9 ,16,820,230032,20,9 ,16,820,230040,20,8 ,16,820,230048,20,8 ,16,820,230056,20,9 ,16,820,230064,20,9 ,16,820,230072,20,10 ,16,820,230080,20,9 ,20,24409,23298754,524,0 ,17,923,10191556,32,0 ,17,923,7570116,24,0 ,45,15153,3900100,40,0 ,45,15153,4424388,24,0 ,16,820,230088,20,8 ,16,820,230096,22,8 ,16,820,230104,22,8 ,16,820,230112,22,8 ,20,19149,9667298,200,0 ,20,25172,25395938,24,0 ,16,820,230120,22,8 ,16,820,230128,22,8 ,16,820,230136,22,8 ,16,820,230144,22,8 ,17,923,9143044,48,0 ,44,15152,1803012,24,0 ,45,15153,5473028,48,0 ,16,820,230152,20,8 ,16,820,230160,22,14 ,16,820,230168,20,9 ,16,820,230176,20,10 ,16,820,230184,20,9 ,16,820,230192,20,10 ,16,820,230200,22,8 ,16,820,230208,20,8 ,17,923,8618820,24,0 ,17,923,7045956,24,0 ,17,923,6521668,32,0 ,44,15152,230212,64,0 ,44,15152,754500,40,0 ,44,15152,3375940,40,0 ,16,820,230216,20,9 ,16,820,230224,20,9 ,16,820,230232,20,8 ,16,820,230240,20,8 ,16,820,230248,20,10 ,16,820,230256,20,8 ,16,820,230264,20,8 ,16,820,230272,20,9 ,20,26321,28541826,180,0 ,45,15153,4424580,56,0 ,17,923,7570308,32,0 ,16,820,230280,22,10 ,16,820,230288,22,8 ,16,820,230296,22,9 ,16,820,230304,20,8 ,20,22759,19628962,212,0 ,20,25173,25396130,1132,0 ,16,820,230312,22,10 ,16,820,230320,22,8 ,16,820,230328,20,8 ,16,820,230336,20,8 ,17,923,10191812,80,0 ,44,15152,1803204,32,0 ,17,923,9667524,80,0 ,16,820,230344,20,8 ,16,820,230352,20,8 ,16,820,230360,22,9 ,16,820,230368,18,8 ,16,820,230376,22,8 ,16,820,230384,20,8 ,16,820,230392,18,8 ,16,820,230400,20,8 ,20,23396,20677634,252,0 ,17,923,8619012,32,0 ,17,923,7046148,24,0 ,45,15153,3900420,40,0 ,17,923,8094724,48,0 ,16,820,230408,14,8 ,16,820,230416,14,8 ,16,820,230424,20,9 ,16,820,230432,22,9 ,20,23090,20153378,100,0 ,20,16439,3376162,948,0 ,20,16998,4424738,12,0 ,16,820,230440,22,8 ,16,820,230448,22,10 ,16,820,230456,22,8 ,16,820,230464,22,10 ,20,15419,754754,28,0 ,44,15152,1279044,72,0 ,17,923,6521924,32,0 ,16,820,230472,14,8 ,16,820,230480,22,10 ,16,820,230488,22,9 ,16,820,230496,20,9 ,16,820,230504,20,8 ,16,820,230512,18,8 ,16,820,230520,20,8 ,16,820,230528,22,12 ,20,16999,4424834,136,0 ,17,923,9143428,40,0 ,17,923,7570564,24,0 ,44,15152,2851972,104,0 ,44,15152,754820,24,0 ,44,15152,3376260,56,0 ,45,15153,5473412,24,0 ,16,820,230536,18,8 ,16,820,230544,18,8 ,16,820,230552,20,10 ,16,820,230560,20,10 ,16,820,230568,22,9 ,16,820,230576,20,8 ,16,820,230584,20,8 ,16,820,230592,22,9 ,20,18995,9143490,108,0 ,44,15152,1803460,24,0 ,17,923,7046340,40,0 ,16,820,230600,20,8 ,16,820,230608,22,9 ,16,820,230616,20,8 ,16,820,230624,20,8 ,20,20562,13337826,6004,0 ,16,820,230632,20,8 ,16,820,230640,20,8 ,16,820,230648,20,8 ,16,820,230656,20,8 ,20,23765,21726466,256,0 ,17,923,8619268,24,0 ,16,820,230664,20,8 ,16,820,230672,20,8 ,16,820,230680,22,11 ,16,820,230688,20,8 ,20,15420,754978,12,0 ,16,820,230696,22,11 ,16,820,230704,22,10 ,16,820,230712,22,10 ,16,820,230720,20,8 ,45,15153,5473604,16,0 ,17,923,7570756,32,0 ,17,923,6522180,32,0 ,44,15152,230724,80,0 ,44,15152,755012,64,0 ,45,15153,3900740,48,0 ,45,15153,4425028,32,0 ,16,820,230728,20,8 ,16,820,230736,20,8 ,16,820,230744,22,8 ,16,820,230752,22,13 ,16,820,230760,22,8 ,16,820,230768,20,8 ,16,820,230776,20,8 ,16,820,230784,20,9 ,20,15421,755074,28,0 ,17,923,8095108,24,0 ,44,15152,1803652,24,0 ,16,820,230792,22,10 ,16,820,230800,20,8 ,16,820,230808,20,8 ,16,820,230816,20,8 ,16,820,230824,20,8 ,16,820,230832,22,10 ,16,820,230840,20,8 ,16,820,230848,22,10 ,17,923,9143748,24,0 ,45,15153,5473732,24,0 ,17,923,8619460,24,0 ,16,820,230856,20,8 ,16,820,230864,20,8 ,16,820,230872,22,8 ,16,820,230880,20,8 ,20,16752,3900898,320,0 ,16,820,230888,18,10 ,16,820,230896,18,10 ,16,820,230904,18,10 ,16,820,230912,20,8 ,17,923,7046660,24,0 ,16,820,230920,18,10 ,16,820,230928,18,10 ,16,820,230936,22,8 ,16,820,230944,18,10 ,16,820,230952,18,10 ,16,820,230960,22,8 ,16,820,230968,18,10 ,16,820,230976,20,8 ,17,923,10192452,48,0 ,17,923,7571012,48,0 ,17,923,6522436,24,0 ,44,15152,1803844,40,0 ,44,15152,3376708,96,0 ,45,15153,4425284,32,0 ,17,923,8095300,32,0 ,17,923,9668164,80,0 ,16,820,230984,18,10 ,16,820,230992,22,9 ,16,820,231000,18,10 ,16,820,231008,20,8 ,20,15422,755298,32,0 ,16,820,231016,20,8 ,16,820,231024,20,8 ,16,820,231032,22,11 ,16,820,231040,18,8 ,17,923,9143940,72,0 ,44,15152,1279620,24,0 ,45,15153,5473924,40,0 ,17,923,8619652,32,0 ,16,820,231048,18,10 ,16,820,231056,18,10 ,16,820,231064,18,8 ,16,820,231072,18,10 ,16,820,231080,20,8 ,16,820,231088,20,8 ,16,820,231096,18,10 ,16,820,231104,21,8 ,20,19745,10716866,356,0 ,45,15153,3901124,16,0 ,17,923,7046852,40,0 ,16,820,231112,20,8 ,16,820,231120,20,8 ,16,820,231128,18,10 ,16,820,231136,22,8 ,20,21002,15435490,192,0 ,16,820,231144,18,10 ,16,820,231152,20,11 ,16,820,231160,20,8 ,16,820,231168,20,8 ,17,923,6522628,24,0 ,16,820,231176,22,8 ,16,820,231184,20,8 ,16,820,231192,20,9 ,16,820,231200,22,9 ,16,820,231208,21,11 ,16,820,231216,14,8 ,16,820,231224,14,8 ,16,820,231232,21,8 ,20,23091,20154178,308,0 ,17,923,8095556,40,0 ,44,15152,1279812,24,0 ,44,15152,755524,56,0 ,45,15153,3901252,24,0 ,45,15153,4425540,16,0 ,16,820,231240,18,8 ,16,820,231248,22,9 ,16,820,231256,18,8 ,16,820,231264,20,8 ,20,23988,22251362,820,0 ,20,15423,755554,52,0 ,16,820,231272,20,8 ,16,820,231280,20,8 ,16,820,231288,15,8 ,16,820,231296,14,8 ,17,923,8619908,32,0 ,44,15152,2328452,176,0 ,44,15152,1804164,80,0 ,16,820,231304,20,10 ,16,820,231312,20,8 ,16,820,231320,22,9 ,16,820,231328,22,9 ,16,820,231336,20,8 ,16,820,231344,22,9 ,16,820,231352,21,10 ,16,820,231360,22,9 ,17,923,10192836,24,0 ,17,923,7571396,32,0 ,17,923,6522820,24,0 ,44,15152,2852804,24,0 ,44,15152,231364,208,0 ,45,15153,4425668,16,0 ,45,15153,5474244,16,0 ,16,820,231368,22,9 ,16,820,231376,21,8 ,16,820,231384,20,8 ,16,820,231392,20,8 ,16,820,231400,20,10 ,16,820,231408,18,10 ,16,820,231416,20,10 ,16,820,231424,20,12 ,45,15153,3901444,16,0 ,17,923,7047172,32,0 ,44,15152,1280004,24,0 ,16,820,231432,20,14 ,16,820,231440,20,14 ,16,820,231448,20,8 ,16,820,231456,22,12 ,20,18996,9144354,680,0 ,16,820,231464,20,10 ,16,820,231472,20,8 ,16,820,231480,20,8 ,16,820,231488,20,8 ,45,15153,5474372,64,0 ,45,15153,4425796,24,0 ,16,820,231496,20,8 ,16,820,231504,20,8 ,16,820,231512,20,11 ,16,820,231520,20,8 ,16,820,231528,20,8 ,16,820,231536,20,8 ,16,820,231544,20,8 ,16,820,231552,20,8 ,20,24564,23824514,104,0 ,17,923,10193028,40,0 ,17,923,6523012,24,0 ,44,15152,2852996,16,0 ,45,15153,3901572,24,0 ,17,923,8095876,32,0 ,17,923,8620164,32,0 ,16,820,231560,20,12 ,16,820,231568,22,14 ,16,820,231576,20,8 ,16,820,231584,20,8 ,16,820,231592,20,8 ,16,820,231600,18,8 ,16,820,231608,20,8 ,16,820,231616,20,9 ,20,22379,18581698,340,0 ,20,17000,4425922,328,0 ,20,18725,8620226,204,0 ,17,923,9668804,80,0 ,17,923,7571652,40,0 ,44,15152,1280196,64,0 ,17,923,9144516,48,0 ,16,820,231624,18,8 ,16,820,231632,22,8 ,16,820,231640,20,8 ,16,820,231648,20,8 ,20,17783,6523106,12,0 ,20,17568,5998818,112,0 ,16,820,231656,20,8 ,16,820,231664,20,9 ,16,820,231672,20,9 ,16,820,231680,22,11 ,20,15424,755970,404,0 ,45,15153,4425988,16,0 ,17,923,7047428,24,0 ,44,15152,2853124,224,0 ,44,15152,755972,24,0 ,16,820,231688,20,8 ,16,820,231696,20,8 ,16,820,231704,20,8 ,16,820,231712,20,8 ,20,19150,9668898,192,0 ,20,26322,28543266,48,0 ,16,820,231720,22,19 ,16,820,231728,22,20 ,16,820,231736,20,8 ,16,820,231744,20,9 ,20,17784,6523202,52,0 ,20,25415,25921858,584,0 ,45,15153,3901764,16,0 ,17,923,6523204,24,0 ,44,15152,3377476,24,0 ,16,820,231752,20,13 ,16,820,231760,18,8 ,16,820,231768,20,8 ,16,820,231776,18,8 ,16,820,231784,20,8 ,16,820,231792,20,11 ,16,820,231800,20,15 ,16,820,231808,20,12 ,17,923,8620420,24,0 ,45,15153,4426116,24,0 ,17,923,8096132,32,0 ,16,820,231816,20,11 ,16,820,231824,20,8 ,16,820,231832,18,10 ,16,820,231840,20,10 ,16,820,231848,18,10 ,16,820,231856,20,8 ,16,820,231864,20,9 ,16,820,231872,20,11 ,17,923,10193348,32,0 ,17,923,7047620,40,0 ,44,15152,756164,240,0 ,45,15153,3901892,80,0 ,16,820,231880,22,9 ,16,820,231888,20,8 ,16,820,231896,20,10 ,16,820,231904,18,10 ,20,22083,18057698,280,0 ,16,820,231912,18,10 ,16,820,231920,20,8 ,16,820,231928,26,9 ,16,820,231936,18,8 ,44,15152,3377668,48,0 ,17,923,7571972,32,0 ,17,923,6523396,24,0 ,44,15152,1804804,16,0 ,16,820,231944,20,8 ,16,820,231952,20,8 ,16,820,231960,20,8 ,16,820,231968,18,8 ,20,20049,11242018,232,0 ,16,820,231976,20,8 ,16,820,231984,20,8 ,16,820,231992,20,8 ,16,820,232000,20,8 ,20,22760,19630658,140,0 ,17,923,9144900,32,0 ,45,15153,4426308,32,0 ,45,15153,5474884,112,0 ,17,923,8620612,32,0 ,16,820,232008,20,8 ,16,820,232016,22,8 ,16,820,232024,20,21 ,16,820,232032,20,8 ,16,820,232040,20,8 ,16,820,232048,22,13 ,16,820,232056,22,8 ,16,820,232064,20,8 ,17,923,8096388,40,0 ,44,15152,1804932,24,0 ,16,820,232072,18,8 ,16,820,232080,20,8 ,16,820,232088,20,8 ,16,820,232096,20,8 ,20,26323,28543650,116,0 ,16,820,232104,20,8 ,16,820,232112,20,8 ,16,820,232120,20,8 ,16,820,232128,20,8 ,17,923,10193604,24,0 ,17,923,6523588,16,0 ,44,15152,1280708,24,0 ,16,820,232136,22,8 ,16,820,232144,20,8 ,16,820,232152,20,8 ,16,820,232160,18,8 ,20,17785,6523618,2956,0 ,16,820,232168,20,8 ,16,820,232176,20,8 ,16,820,232184,20,8 ,16,820,232192,20,8 ,17,923,7047940,24,0 ,17,923,7572228,40,0 ,16,820,232200,20,8 ,16,820,232208,20,10 ,16,820,232216,20,8 ,16,820,232224,20,8 ,16,820,232232,20,8 ,16,820,232240,22,8 ,16,820,232248,22,9 ,16,820,232256,14,8 ,20,15683,1280834,12,0 ,17,923,9669444,32,0 ,17,923,6523716,24,0 ,44,15152,1805124,48,0 ,45,15153,4426564,24,0 ,17,923,8620868,24,0 ,17,923,9145156,40,0 ,16,820,232264,22,11 ,16,820,232272,22,8 ,16,820,232280,14,8 ,16,820,232288,21,8 ,16,820,232296,22,9 ,16,820,232304,20,8 ,16,820,232312,20,8 ,16,820,232320,20,8 ,17,923,10193796,64,0 ,44,15152,1280900,64,0 ,44,15152,3378052,32,0 ,16,820,232328,20,8 ,16,820,232336,20,8 ,16,820,232344,20,10 ,16,820,232352,20,8 ,20,15684,1280930,12,0 ,16,820,232360,20,10 ,16,820,232368,20,8 ,16,820,232376,20,11 ,16,820,232384,20,8 ,20,24565,23825346,128,0 ,17,923,8096708,40,0 ,17,923,7048132,24,0 ,16,820,232392,20,11 ,16,820,232400,20,11 ,16,820,232408,22,8 ,16,820,232416,22,8 ,20,23397,20679650,560,0 ,16,820,232424,22,8 ,16,820,232432,20,8 ,16,820,232440,20,8 ,16,820,232448,20,8 ,20,15685,1281026,2488,0 ,17,923,8621060,24,0 ,17,923,6523908,24,0 ,45,15153,4426756,32,0 ,16,820,232456,20,8 ,16,820,232464,18,8 ,16,820,232472,20,8 ,16,820,232480,20,8 ,16,820,232488,20,8 ,16,820,232496,20,8 ,16,820,232504,20,8 ,16,820,232512,18,8 ,17,923,9669700,176,0 ,17,923,7572548,32,0 ,45,15153,3902532,16,0 ,16,820,232520,20,8 ,16,820,232528,20,8 ,16,820,232536,20,8 ,16,820,232544,20,8 ,20,17569,5999714,632,0 ,16,820,232552,20,8 ,16,820,232560,20,11 ,16,820,232568,22,10 ,16,820,232576,20,9 ,17,923,9145476,40,0 ,17,923,7048324,24,0 ,44,15152,3378308,24,0 ,45,15153,4951172,80,0 ,16,820,232584,22,10 ,16,820,232592,20,8 ,16,820,232600,22,8 ,16,820,232608,22,8 ,16,820,232616,22,8 ,16,820,232624,22,8 ,16,820,232632,22,8 ,16,820,232640,22,8 ,17,923,8621252,24,0 ,17,923,6524100,40,0 ,44,15152,1805508,40,0 ,45,15153,3902660,16,0 ,16,820,232648,22,8 ,16,820,232656,20,8 ,16,820,232664,22,16 ,16,820,232672,20,8 ,20,21003,15437026,164,0 ,16,820,232680,22,8 ,16,820,232688,20,8 ,16,820,232696,20,8 ,16,820,232704,20,8 ,20,23766,21728514,24,0 ,20,21358,15961346,420,0 ,17,923,8097028,40,0 ,44,15152,2329860,272,0 ,45,15153,4427012,32,0 ,16,820,232712,20,8 ,16,820,232720,20,8 ,16,820,232728,18,8 ,16,820,232736,20,8 ,20,19449,10194210,236,0 ,16,820,232744,20,8 ,16,820,232752,20,8 ,16,820,232760,18,8 ,16,820,232768,20,8 ,45,15153,3902788,72,0 ,17,923,7572804,24,0 ,17,923,7048516,40,0 ,44,15152,3378500,32,0 ,16,820,232776,18,8 ,16,820,232784,20,9 ,16,820,232792,20,8 ,16,820,232800,20,8 ,16,820,232808,20,8 ,16,820,232816,20,8 ,16,820,232824,20,8 ,16,820,232832,20,8 ,17,923,10194308,32,0 ,44,15152,1281412,24,0 ,17,923,8621444,24,0 ,16,820,232840,20,8 ,16,820,232848,20,8 ,16,820,232856,20,8 ,16,820,232864,20,9 ,16,820,232872,20,8 ,16,820,232880,20,8 ,16,820,232888,20,9 ,16,820,232896,20,9 ,20,23767,21728706,24,0 ,17,923,9145796,40,0 ,45,15153,5475780,16,0 ,16,820,232904,20,8 ,16,820,232912,22,8 ,16,820,232920,18,10 ,16,820,232928,20,9 ,16,820,232936,20,9 ,16,820,232944,20,9 ,16,820,232952,20,9 ,16,820,232960,20,9 ,45,15153,4427268,56,0 ,17,923,7572996,80,0 ,17,923,6524420,48,0 ,44,15152,1805828,24,0 ,16,820,232968,20,9 ,16,820,232976,20,9 ,16,820,232984,20,9 ,16,820,232992,20,9 ,16,820,233000,20,9 ,16,820,233008,18,8 ,16,820,233016,20,8 ,16,820,233024,18,10 ,20,26324,28544578,564,0 ,17,923,8621636,32,0 ,44,15152,1281604,56,0 ,44,15152,233028,40,0 ,44,15152,3378756,32,0 ,45,15153,5475908,24,0 ,17,923,8097348,32,0 ,16,820,233032,18,10 ,16,820,233040,18,8 ,16,820,233048,18,8 ,16,820,233056,18,8 ,16,820,233064,22,8 ,16,820,233072,14,8 ,16,820,233080,20,12 ,16,820,233088,18,10 ,20,23768,21728898,64,0 ,17,923,10194564,24,0 ,17,923,7048836,40,0 ,16,820,233096,18,10 ,16,820,233104,18,10 ,16,820,233112,20,9 ,16,820,233120,18,10 ,20,22761,19631778,108,0 ,20,26440,29068962,396,0 ,16,820,233128,18,9 ,16,820,233136,18,9 ,16,820,233144,18,9 ,16,820,233152,18,10 ,44,15152,1806020,40,0 ,16,820,233160,20,9 ,16,820,233168,18,8 ,16,820,233176,18,8 ,16,820,233184,18,8 ,16,820,233192,20,8 ,16,820,233200,20,8 ,16,820,233208,22,8 ,16,820,233216,20,9 ,17,923,9146116,32,0 ,45,15153,4951812,16,0 ,45,15153,5476100,24,0 ,16,820,233224,20,8 ,16,820,233232,18,10 ,16,820,233240,18,10 ,16,820,233248,20,8 ,20,19151,9670434,196,0 ,20,18726,8621858,108,0 ,16,820,233256,20,8 ,16,820,233264,18,10 ,16,820,233272,20,8 ,16,820,233280,20,8 ,20,20280,12816194,140,0 ,17,923,10194756,24,0 ,44,15152,3379012,72,0 ,17,923,8097604,24,0 ,17,923,8621892,24,0 ,16,820,233288,20,8 ,16,820,233296,20,8 ,16,820,233304,20,8 ,16,820,233312,20,8 ,16,820,233320,20,8 ,16,820,233328,20,8 ,16,820,233336,20,8 ,16,820,233344,20,8 ,45,15153,4951940,256,0 ,17,923,6524804,40,0 ,44,15152,233348,32,0 ,45,15153,3903364,40,0 ,16,820,233352,18,10 ,16,820,233360,18,10 ,16,820,233368,20,9 ,16,820,233376,20,10 ,16,820,233384,20,9 ,16,820,233392,18,8 ,16,820,233400,18,10 ,16,820,233408,18,10 ,20,24566,23826370,128,0 ,45,15153,5476292,24,0 ,17,923,7049156,48,0 ,45,15153,4427716,32,0 ,16,820,233416,18,10 ,16,820,233424,18,10 ,16,820,233432,18,10 ,16,820,233440,18,10 ,20,16753,3903458,236,0 ,16,820,233448,18,10 ,16,820,233456,18,10 ,16,820,233464,20,10 ,16,820,233472,20,10 ,17,923,10194948,24,0 ,44,15152,2854916,128,0 ,44,15152,1806340,24,0 ,44,15152,1282052,48,0 ,17,923,8097796,32,0 ,17,923,8622084,24,0 ,17,923,9146372,40,0 ,16,820,233480,20,14 ,16,820,233488,20,10 ,16,820,233496,20,10 ,16,820,233504,20,11 ,20,15249,233506,356,0 ,16,820,233512,20,10 ,16,820,233520,20,10 ,16,820,233528,20,9 ,16,820,233536,20,14 ,16,820,233544,20,14 ,16,820,233552,18,10 ,16,820,233560,20,14 ,16,820,233568,20,8 ,16,820,233576,20,14 ,16,820,233584,20,8 ,16,820,233592,20,8 ,16,820,233600,20,14 ,20,23769,21729410,64,0 ,45,15153,5476484,24,0 ,17,923,7573636,32,0 ,44,15152,233604,32,0 ,16,820,233608,20,14 ,16,820,233616,22,8 ,16,820,233624,22,9 ,16,820,233632,22,14 ,16,820,233640,22,8 ,16,820,233648,22,9 ,16,820,233656,20,10 ,16,820,233664,20,8 ,17,923,10195140,24,0 ,17,923,6525124,32,0 ,44,15152,1806532,24,0 ,45,15153,3903684,32,0 ,45,15153,4427972,64,0 ,17,923,8622276,32,0 ,16,820,233672,18,8 ,16,820,233680,20,8 ,16,820,233688,20,9 ,16,820,233696,20,10 ,20,23092,20156642,216,0 ,16,820,233704,20,11 ,16,820,233712,18,10 ,16,820,233720,20,8 ,16,820,233728,20,8 ,17,923,8098052,24,0 ,16,820,233736,20,8 ,16,820,233744,20,8 ,16,820,233752,20,8 ,16,820,233760,20,9 ,16,820,233768,20,8 ,16,820,233776,20,8 ,16,820,233784,20,8 ,16,820,233792,20,9 ,17,923,9146692,32,0 ,17,923,7049540,56,0 ,44,15152,758084,32,0 ,45,15153,5476676,24,0 ,16,820,233800,20,8 ,16,820,233808,20,8 ,16,820,233816,20,8 ,16,820,233824,22,11 ,20,20050,11243874,12,0 ,16,820,233832,20,8 ,16,820,233840,20,8 ,16,820,233848,20,9 ,16,820,233856,20,8 ,17,923,10195332,24,0 ,17,923,7573892,40,0 ,44,15152,1806724,16,0 ,44,15152,1282436,32,0 ,44,15152,233860,88,0 ,44,15152,3379588,24,0 ,16,820,233864,20,8 ,16,820,233872,20,8 ,16,820,233880,22,8 ,16,820,233888,20,10 ,16,820,233896,22,8 ,16,820,233904,22,8 ,16,820,233912,20,8 ,16,820,233920,20,8 ,20,20051,11243970,60,0 ,17,923,9671108,96,0 ,17,923,6525380,16,0 ,45,15153,3903940,24,0 ,17,923,8098244,24,0 ,17,923,8622532,32,0 ,16,820,233928,26,11 ,16,820,233936,20,8 ,16,820,233944,20,8 ,16,820,233952,18,8 ,20,19746,10719714,1080,0 ,16,820,233960,18,10 ,16,820,233968,21,10 ,16,820,233976,14,8 ,16,820,233984,20,10 ,20,22762,19632642,168,0 ,20,21004,15438338,384,0 ,45,15153,5476868,16,0 ,44,15152,1806852,32,0 ,16,820,233992,20,8 ,16,820,234000,20,8 ,16,820,234008,22,15 ,16,820,234016,18,8 ,16,820,234024,14,8 ,16,820,234032,20,8 ,16,820,234040,22,12 ,16,820,234048,20,9 ,17,923,10195524,200,0 ,17,923,6525508,32,0 ,44,15152,758340,56,0 ,44,15152,3379780,144,0 ,17,923,9146948,40,0 ,16,820,234056,14,8 ,16,820,234064,22,9 ,16,820,234072,20,10 ,16,820,234080,20,12 ,16,820,234088,20,9 ,16,820,234096,21,11 ,16,820,234104,20,24 ,16,820,234112,14,8 ,20,23770,21729922,116,0 ,20,24983,24875650,884,0 ,20,18727,8622722,524,0 ,17,923,8098436,56,0 ,44,15152,1282692,16,0 ,45,15153,3904132,32,0 ,45,15153,5476996,24,0 ,16,820,234120,20,10 ,16,820,234128,20,8 ,16,820,234136,22,9 ,16,820,234144,14,8 ,20,22084,18059938,308,0 ,16,820,234152,20,9 ,16,820,234160,22,9 ,16,820,234168,20,9 ,16,820,234176,20,8 ,20,18081,7049922,2664,0 ,17,923,8622788,24,0 ,17,923,7574212,32,0 ,45,15153,4428484,32,0 ,16,820,234184,18,9 ,16,820,234192,20,12 ,16,820,234200,20,12 ,16,820,234208,22,10 ,16,820,234216,20,10 ,16,820,234224,20,9 ,16,820,234232,20,9 ,16,820,234240,22,12 ,20,17001,4428546,276,0 ,44,15152,1282820,72,0 ,17,923,7049988,56,0 ,44,15152,1807108,56,0 ,16,820,234248,22,21 ,16,820,234256,14,8 ,16,820,234264,22,11 ,16,820,234272,22,9 ,20,24410,23302946,216,0 ,16,820,234280,20,8 ,16,820,234288,20,8 ,16,820,234296,22,52 ,16,820,234304,20,9 ,45,15153,5477188,16,0 ,17,923,6525764,24,0 ,16,820,234312,22,14 ,16,820,234320,20,8 ,16,820,234328,22,10 ,16,820,234336,20,9 ,20,22380,18584418,296,0 ,16,820,234344,20,8 ,16,820,234352,20,8 ,16,820,234360,18,8 ,16,820,234368,20,8 ,17,923,9147268,32,0 ,45,15153,3904388,16,0 ,17,923,8622980,32,0 ,16,820,234376,20,10 ,16,820,234384,20,33 ,16,820,234392,22,11 ,16,820,234400,22,11 ,20,20281,12817314,128,0 ,20,20052,11244450,60,0 ,16,820,234408,22,10 ,16,820,234416,20,10 ,16,820,234424,22,11 ,16,820,234432,18,8 ,20,24567,23827394,664,0 ,45,15153,5477316,40,0 ,17,923,7574468,32,0 ,45,15153,4428740,24,0 ,16,820,234440,22,8 ,16,820,234448,14,8 ,16,820,234456,20,9 ,16,820,234464,14,8 ,16,820,234472,20,9 ,16,820,234480,20,9 ,16,820,234488,20,8 ,16,820,234496,20,8 ,45,15153,3904516,40,0 ,17,923,6525956,24,0 ,44,15152,2855940,80,0 ,44,15152,758788,64,0 ,16,820,234504,20,11 ,16,820,234512,20,8 ,16,820,234520,20,8 ,16,820,234528,14,8 ,16,820,234536,18,8 ,16,820,234544,22,11 ,16,820,234552,22,11 ,16,820,234560,22,10 ,17,923,8098884,24,0 ,44,15152,234564,1136,0 ,16,820,234568,22,10 ,16,820,234576,22,8 ,16,820,234584,20,8 ,16,820,234592,20,9 ,16,820,234600,20,11 ,16,820,234608,20,9 ,16,820,234616,20,9 ,16,820,234624,22,8 ,20,19450,10196098,12,0 ,17,923,9147524,32,0 ,45,15153,4428932,16,0 ,17,923,8623236,24,0 ,16,820,234632,14,8 ,16,820,234640,15,8 ,16,820,234648,20,10 ,16,820,234656,20,10 ,16,820,234664,20,8 ,16,820,234672,20,8 ,16,820,234680,14,8 ,16,820,234688,20,9 ,17,923,9671876,96,0 ,17,923,7574724,32,0 ,17,923,7050436,16,0 ,17,923,6526148,40,0 ,44,15152,1807556,112,0 ,16,820,234696,22,9 ,16,820,234704,20,9 ,16,820,234712,20,9 ,16,820,234720,20,9 ,20,19451,10196194,112,0 ,16,820,234728,20,9 ,16,820,234736,20,9 ,16,820,234744,22,9 ,16,820,234752,20,9 ,17,923,8099076,24,0 ,45,15153,4429060,16,0 ,45,15153,5477636,184,0 ,16,820,234760,20,9 ,16,820,234768,20,9 ,16,820,234776,20,11 ,16,820,234784,20,9 ,16,820,234792,22,9 ,16,820,234800,22,10 ,16,820,234808,20,9 ,16,820,234816,20,9 ,20,19152,9672002,204,0 ,17,923,8623428,24,0 ,17,923,7050564,40,0 ,44,15152,1283396,16,0 ,45,15153,3904836,16,0 ,16,820,234824,20,9 ,16,820,234832,20,9 ,16,820,234840,20,9 ,16,820,234848,20,9 ,16,820,234856,22,9 ,16,820,234864,20,9 ,16,820,234872,20,9 ,16,820,234880,20,9 ,20,20053,11244930,224,0 ,17,923,9147780,40,0 ,44,15152,2332036,24,0 ,45,15153,4429188,32,0 ,16,820,234888,20,9 ,16,820,234896,20,9 ,16,820,234904,20,9 ,16,820,234912,20,9 ,20,15425,759202,152,0 ,20,25966,27497890,124,0 ,16,820,234920,20,9 ,16,820,234928,22,10 ,16,820,234936,22,9 ,16,820,234944,20,9 ,17,923,8099268,32,0 ,17,923,7574980,24,0 ,44,15152,1283524,296,0 ,45,15153,3904964,16,0 ,16,820,234952,22,10 ,16,820,234960,20,9 ,16,820,234968,20,9 ,16,820,234976,20,9 ,16,820,234984,20,9 ,16,820,234992,20,9 ,16,820,235000,20,9 ,16,820,235008,20,9 ,17,923,8623620,24,0 ,17,923,6526468,32,0 ,44,15152,759300,88,0 ,16,820,235016,20,9 ,16,820,235024,20,8 ,16,820,235032,20,9 ,16,820,235040,20,10 ,20,23771,21730850,124,0 ,16,820,235048,22,9 ,16,820,235056,20,9 ,16,820,235064,22,10 ,16,820,235072,20,9 ,45,15153,3905092,40,0 ,44,15152,2332228,24,0 ,16,820,235080,20,9 ,16,820,235088,22,9 ,16,820,235096,20,9 ,16,820,235104,20,9 ,16,820,235112,20,9 ,16,820,235120,20,9 ,16,820,235128,20,9 ,16,820,235136,20,9 ,45,15153,4429444,16,0 ,17,923,7575172,24,0 ,17,923,7050884,48,0 ,44,15152,2856580,360,0 ,16,820,235144,20,9 ,16,820,235152,20,8 ,16,820,235160,20,9 ,16,820,235168,18,10 ,16,820,235176,18,10 ,16,820,235184,18,10 ,16,820,235192,20,8 ,16,820,235200,18,10 ,17,923,9148100,40,0 ,44,15152,3380932,24,0 ,17,923,8099524,32,0 ,17,923,8623812,32,0 ,16,820,235208,18,10 ,16,820,235216,18,10 ,16,820,235224,18,10 ,16,820,235232,18,10 ,16,820,235240,18,10 ,16,820,235248,18,10 ,16,820,235256,18,10 ,16,820,235264,18,10 ,45,15153,4429572,16,0 ,17,923,6526724,16,0 ,44,15152,2332420,48,0 ,16,820,235272,18,10 ,16,820,235280,18,10 ,16,820,235288,18,10 ,16,820,235296,20,9 ,16,820,235304,22,11 ,16,820,235312,20,8 ,16,820,235320,22,14 ,16,820,235328,22,22 ,20,22763,19633986,100,0 ,20,16754,3905346,608,0 ,17,923,7575364,32,0 ,16,820,235336,22,14 ,16,820,235344,18,10 ,16,820,235352,20,9 ,16,820,235360,20,21 ,16,820,235368,22,16 ,16,820,235376,20,14 ,16,820,235384,20,8 ,16,820,235392,22,16 ,45,15153,4953988,144,0 ,17,923,6526852,16,0 ,44,15152,3381124,24,0 ,45,15153,3905412,24,0 ,45,15153,4429700,24,0 ,16,820,235400,22,9 ,16,820,235408,20,16 ,16,820,235416,20,9 ,16,820,235424,15,8 ,20,23093,20158370,160,0 ,20,20282,12818338,176,0 ,16,820,235432,20,10 ,16,820,235440,22,14 ,16,820,235448,20,15 ,16,820,235456,22,30 ,17,923,9672644,32,0 ,17,923,8099780,24,0 ,17,923,8624068,24,0 ,16,820,235464,22,24 ,16,820,235472,22,18 ,16,820,235480,20,10 ,16,820,235488,20,8 ,16,820,235496,22,41 ,16,820,235504,20,13 ,16,820,235512,20,9 ,16,820,235520,20,9 ,17,923,9148420,40,0 ,17,923,7051268,32,0 ,17,923,6526980,40,0 ,16,820,235528,20,9 ,16,820,235536,20,8 ,16,820,235544,20,9 ,16,820,235552,20,9 ,16,820,235560,20,8 ,16,820,235568,20,11 ,16,820,235576,22,21 ,16,820,235584,22,19 ,20,25743,26974274,124,0 ,45,15153,4429892,24,0 ,17,923,7575620,32,0 ,44,15152,1808452,32,0 ,44,15152,3381316,32,0 ,45,15153,3905604,16,0 ,16,820,235592,22,11 ,16,820,235600,22,10 ,16,820,235608,22,11 ,16,820,235616,20,8 ,20,22567,19109986,260,0 ,20,19452,10197090,80,0 ,16,820,235624,22,9 ,16,820,235632,22,34 ,16,820,235640,22,28 ,16,820,235648,22,27 ,17,923,10197124,80,0 ,44,15152,2332804,48,0 ,17,923,8099972,32,0 ,17,923,8624260,24,0 ,16,820,235656,22,21 ,16,820,235664,20,8 ,16,820,235672,22,23 ,16,820,235680,22,8 ,16,820,235688,20,8 ,16,820,235696,20,11 ,16,820,235704,20,9 ,16,820,235712,22,8 ,17,923,9672900,96,0 ,44,15152,760004,24,0 ,45,15153,3905732,16,0 ,16,820,235720,20,9 ,16,820,235728,20,9 ,16,820,235736,22,9 ,16,820,235744,20,9 ,16,820,235752,22,10 ,16,820,235760,20,9 ,16,820,235768,20,11 ,16,820,235776,22,13 ,45,15153,4430084,24,0 ,17,923,7051524,32,0 ,16,820,235784,22,10 ,16,820,235792,20,9 ,16,820,235800,22,10 ,16,820,235808,22,10 ,16,820,235816,20,12 ,16,820,235824,20,10 ,16,820,235832,22,12 ,16,820,235840,22,11 ,17,923,9148740,32,0 ,17,923,7575876,32,0 ,17,923,6527300,32,0 ,44,15152,1808708,152,0 ,44,15152,3381572,48,0 ,45,15153,3905860,16,0 ,17,923,8624452,24,0 ,16,820,235848,22,16 ,16,820,235856,20,23 ,16,820,235864,20,8 ,16,820,235872,20,8 ,16,820,235880,20,8 ,16,820,235888,20,12 ,16,820,235896,20,8 ,16,820,235904,18,8 ,20,25967,27498882,436,0 ,17,923,8100228,72,0 ,44,15152,760196,32,0 ,16,820,235912,22,19 ,16,820,235920,20,8 ,16,820,235928,20,8 ,16,820,235936,22,8 ,16,820,235944,20,8 ,16,820,235952,20,8 ,16,820,235960,20,9 ,16,820,235968,20,8 ,45,15153,4430276,24,0 ,45,15153,3905988,16,0 ,16,820,235976,20,10 ,16,820,235984,20,10 ,16,820,235992,20,10 ,16,820,236000,20,11 ,20,24411,23304674,176,0 ,16,820,236008,20,10 ,16,820,236016,20,10 ,16,820,236024,20,10 ,16,820,236032,20,10 ,20,23772,21731842,116,0 ,17,923,8624644,24,0 ,17,923,7051780,40,0 ,44,15152,2333188,56,0 ,16,820,236040,20,10 ,16,820,236048,20,10 ,16,820,236056,20,8 ,16,820,236064,22,8 ,20,21359,15964706,160,0 ,16,820,236072,22,8 ,16,820,236080,20,11 ,16,820,236088,20,11 ,16,820,236096,20,11 ,17,923,9148996,40,0 ,17,923,7576132,40,0 ,17,923,6527556,48,0 ,45,15153,3906116,16,0 ,16,820,236104,20,11 ,16,820,236112,20,8 ,16,820,236120,20,9 ,16,820,236128,20,10 ,20,22764,19634786,100,0 ,20,15426,760418,928,0 ,20,21576,16489058,1888,0 ,16,820,236136,22,13 ,16,820,236144,20,8 ,16,820,236152,20,8 ,16,820,236160,20,8 ,45,15153,4430468,24,0 ,44,15152,760452,104,0 ,16,820,236168,20,8 ,16,820,236176,22,11 ,16,820,236184,22,8 ,16,820,236192,18,10 ,16,820,236200,18,8 ,16,820,236208,20,8 ,16,820,236216,20,8 ,16,820,236224,20,10 ,17,923,8624836,24,0 ,44,15152,3381956,32,0 ,45,15153,3906244,224,0 ,45,15153,5479108,96,0 ,16,820,236232,20,9 ,16,820,236240,26,36 ,16,820,236248,20,9 ,16,820,236256,26,11 ,20,19453,10197730,80,0 ,16,820,236264,20,9 ,16,820,236272,20,8 ,16,820,236280,22,14 ,16,820,236288,20,11 ,20,26441,29072130,1100,0 ,17,923,10197764,80,0 ,16,820,236296,20,8 ,16,820,236304,20,8 ,16,820,236312,20,8 ,16,820,236320,20,8 ,20,21965,17537826,1124,0 ,16,820,236328,20,9 ,16,820,236336,20,8 ,16,820,236344,20,8 ,16,820,236352,20,8 ,20,15250,236354,1200,0 ,45,15153,4430660,24,0 ,17,923,7052100,40,0 ,16,820,236360,20,9 ,16,820,236368,22,11 ,16,820,236376,20,9 ,16,820,236384,20,8 ,16,820,236392,20,8 ,16,820,236400,20,8 ,16,820,236408,20,8 ,16,820,236416,20,8 ,20,25416,25926530,700,0 ,17,923,9149316,40,0 ,17,923,7576452,24,0 ,17,923,8625028,24,0 ,16,820,236424,22,8 ,16,820,236432,22,8 ,16,820,236440,20,8 ,16,820,236448,18,8 ,20,19153,9673634,192,0 ,20,17002,4430754,1084,0 ,16,820,236456,18,8 ,16,820,236464,20,8 ,16,820,236472,18,8 ,16,820,236480,20,8 ,17,923,9673668,176,0 ,17,923,6527940,40,0 ,44,15152,2333636,72,0 ,44,15152,3382212,40,0 ,17,923,8100804,64,0 ,16,820,236488,20,8 ,16,820,236496,22,10 ,16,820,236504,20,8 ,16,820,236512,20,8 ,16,820,236520,18,8 ,16,820,236528,18,8 ,16,820,236536,18,8 ,16,820,236544,20,13 ,45,15153,4955140,152,0 ,45,15153,4430852,16,0 ,16,820,236552,20,8 ,16,820,236560,20,8 ,16,820,236568,18,8 ,16,820,236576,20,8 ,20,25744,26975266,324,0 ,16,820,236584,20,8 ,16,820,236592,22,8 ,16,820,236600,20,10 ,16,820,236608,22,8 ,20,22085,18062402,176,0 ,20,18531,8100930,2380,0 ,17,923,8625220,24,0 ,17,923,7576644,32,0 ,16,820,236616,22,8 ,16,820,236624,20,8 ,16,820,236632,20,8 ,16,820,236640,18,8 ,16,820,236648,22,13 ,16,820,236656,20,9 ,16,820,236664,24,9 ,16,820,236672,20,8 ,20,20054,11246722,248,0 ,45,15153,4430980,32,0 ,17,923,7052420,32,0 ,16,820,236680,22,18 ,16,820,236688,20,13 ,16,820,236696,22,16 ,16,820,236704,20,10 ,20,23094,20159650,204,0 ,20,22381,18586786,52,0 ,16,820,236712,20,12 ,16,820,236720,22,14 ,16,820,236728,18,8 ,16,820,236736,18,8 ,17,923,9149636,40,0 ,16,820,236744,22,8 ,16,820,236752,20,8 ,16,820,236760,20,9 ,16,820,236768,22,9 ,16,820,236776,22,9 ,16,820,236784,22,8 ,16,820,236792,22,8 ,16,820,236800,20,8 ,17,923,8625412,24,0 ,17,923,6528260,32,0 ,44,15152,3382532,64,0 ,16,820,236808,22,8 ,16,820,236816,22,8 ,16,820,236824,22,8 ,16,820,236832,22,8 ,20,20283,12819746,2480,0 ,16,820,236840,20,8 ,16,820,236848,22,8 ,16,820,236856,22,9 ,16,820,236864,20,8 ,17,923,7576900,40,0 ,16,820,236872,22,13 ,16,820,236880,22,12 ,16,820,236888,20,10 ,16,820,236896,22,28 ,20,23398,20684130,104,0 ,20,17174,4955490,144,0 ,20,18997,9149794,400,0 ,20,19454,10198370,844,0 ,16,820,236904,22,52 ,16,820,236912,20,8 ,16,820,236920,22,40 ,16,820,236928,22,18 ,20,22765,19635586,32,0 ,17,923,10198404,72,0 ,17,923,7052676,40,0 ,45,15153,4431236,32,0 ,16,820,236936,20,8 ,16,820,236944,20,9 ,16,820,236952,22,8 ,16,820,236960,20,8 ,20,23773,21732770,64,0 ,16,820,236968,20,9 ,16,820,236976,18,8 ,16,820,236984,20,13 ,16,820,236992,18,8 ,17,923,8625604,24,0 ,44,15152,761284,24,0 ,45,15153,5479876,48,0 ,17,923,8101316,64,0 ,16,820,237000,20,9 ,16,820,237008,20,8 ,16,820,237016,18,9 ,16,820,237024,18,9 ,16,820,237032,18,9 ,16,820,237040,20,9 ,16,820,237048,20,10 ,16,820,237056,20,8 ,20,21005,15441410,304,0 ,17,923,9149956,32,0 ,17,923,6528516,32,0 ,44,15152,2334212,600,0 ,44,15152,1809924,88,0 ,16,820,237064,18,9 ,16,820,237072,18,9 ,16,820,237080,18,9 ,16,820,237088,18,9 ,16,820,237096,20,8 ,16,820,237104,20,8 ,16,820,237112,22,12 ,16,820,237120,22,12 ,20,23610,21208642,448,0 ,20,22382,18587202,660,0 ,16,820,237128,20,10 ,16,820,237136,22,29 ,16,820,237144,22,51 ,16,820,237152,20,10 ,16,820,237160,22,31 ,16,820,237168,22,22 ,16,820,237176,20,10 ,16,820,237184,20,10 ,20,22766,19635842,80,0 ,17,923,8625796,32,0 ,17,923,7577220,24,0 ,44,15152,761476,32,0 ,45,15153,4431492,16,0 ,16,820,237192,22,14 ,16,820,237200,20,11 ,16,820,237208,26,17 ,16,820,237216,22,16 ,16,820,237224,22,45 ,16,820,237232,20,10 ,16,820,237240,20,10 ,16,820,237248,22,13 ,17,923,7052996,40,0 ,16,820,237256,20,9 ,16,820,237264,20,17 ,16,820,237272,20,8 ,16,820,237280,20,9 ,16,820,237288,22,9 ,16,820,237296,22,12 ,16,820,237304,20,8 ,16,820,237312,20,8 ,17,923,9150212,40,0 ,17,923,6528772,24,0 ,44,15152,1285892,32,0 ,44,15152,3383044,56,0 ,45,15153,4431620,32,0 ,16,820,237320,20,11 ,16,820,237328,20,12 ,16,820,237336,20,11 ,16,820,237344,20,12 ,20,21360,15965986,384,0 ,16,820,237352,20,12 ,16,820,237360,20,12 ,16,820,237368,20,11 ,16,820,237376,20,10 ,45,15153,5480260,32,0 ,17,923,7577412,24,0 ,16,820,237384,20,12 ,16,820,237392,20,12 ,16,820,237400,20,11 ,16,820,237408,20,11 ,20,24412,23306082,200,0 ,16,820,237416,20,12 ,16,820,237424,20,12 ,16,820,237432,20,12 ,16,820,237440,20,10 ,17,923,8626052,24,0 ,44,15152,761732,40,0 ,16,820,237448,20,11 ,16,820,237456,20,9 ,16,820,237464,20,10 ,16,820,237472,20,8 ,20,23774,21733282,64,0 ,16,820,237480,20,9 ,16,820,237488,20,9 ,16,820,237496,20,8 ,16,820,237504,20,8 ,17,923,10198980,24,0 ,17,923,6528964,24,0 ,17,923,8101828,56,0 ,16,820,237512,20,8 ,16,820,237520,20,8 ,16,820,237528,20,8 ,16,820,237536,20,8 ,20,26325,28549090,88,0 ,16,820,237544,22,11 ,16,820,237552,22,8 ,16,820,237560,22,9 ,16,820,237568,22,10 ,20,21864,17014786,76,0 ,45,15153,4431876,24,0 ,17,923,7577604,48,0 ,17,923,7053316,56,0 ,44,15152,1286148,24,0 ,16,820,237576,22,9 ,16,820,237584,26,10 ,16,820,237592,20,13 ,16,820,237600,20,9 ,20,17570,6004770,28,0 ,16,820,237608,22,11 ,16,820,237616,20,8 ,16,820,237624,20,8 ,16,820,237632,20,10 ,17,923,9150532,40,0 ,45,15153,5480516,16,0 ,17,923,8626244,32,0 ,16,820,237640,22,8 ,16,820,237648,22,20 ,16,820,237656,20,8 ,16,820,237664,20,9 ,16,820,237672,14,8 ,16,820,237680,21,8 ,16,820,237688,24,20 ,16,820,237696,22,10 ,20,22568,19112066,156,0 ,17,923,10199172,48,0 ,17,923,6529156,24,0 ,16,820,237704,20,8 ,16,820,237712,20,8 ,16,820,237720,18,8 ,16,820,237728,20,11 ,20,23399,20684962,1224,0 ,16,820,237736,18,8 ,16,820,237744,20,11 ,16,820,237752,18,8 ,16,820,237760,20,8 ,45,15153,5480644,56,0 ,44,15152,1810628,56,0 ,44,15152,1286340,24,0 ,44,15152,762052,40,0 ,44,15152,3383492,72,0 ,45,15153,4432068,24,0 ,45,15153,4956356,88,0 ,16,820,237768,22,13 ,16,820,237776,18,10 ,16,820,237784,20,11 ,16,820,237792,20,11 ,16,820,237800,20,11 ,16,820,237808,20,10 ,16,820,237816,20,11 ,16,820,237824,20,11 ,20,23989,22257922,364,0 ,20,17571,6004994,348,0 ,20,22767,19636482,136,0 ,16,820,237832,20,11 ,16,820,237840,20,11 ,16,820,237848,20,11 ,16,820,237856,20,11 ,16,820,237864,20,9 ,16,820,237872,20,8 ,16,820,237880,20,8 ,16,820,237888,20,8 ,17,923,9675076,96,0 ,17,923,6529348,40,0 ,17,923,8626500,32,0 ,16,820,237896,20,9 ,16,820,237904,20,8 ,16,820,237912,22,8 ,16,820,237920,22,8 ,16,820,237928,20,11 ,16,820,237936,20,8 ,16,820,237944,20,8 ,16,820,237952,20,8 ,17,923,9150852,40,0 ,17,923,7577988,56,0 ,44,15152,1286532,96,0 ,45,15153,4432260,56,0 ,17,923,8102276,48,0 ,16,820,237960,20,8 ,16,820,237968,20,8 ,16,820,237976,20,8 ,16,820,237984,20,16 ,20,23775,21733794,64,0 ,20,19154,9675170,116,0 ,16,820,237992,20,8 ,16,820,238000,20,8 ,16,820,238008,20,8 ,16,820,238016,20,8 ,20,22086,18063810,176,0 ,20,16440,3383746,12,0 ,45,15153,3908036,16,0 ,17,923,7053764,48,0 ,44,15152,2859460,272,0 ,16,820,238024,20,8 ,16,820,238032,20,8 ,16,820,238040,20,8 ,16,820,238048,20,8 ,20,17175,4956642,116,0 ,16,820,238056,20,8 ,16,820,238064,20,8 ,16,820,238072,20,8 ,16,820,238080,20,8 ,17,923,10199556,40,0 ,44,15152,762372,32,0 ,16,820,238088,20,8 ,16,820,238096,20,8 ,16,820,238104,20,8 ,16,820,238112,20,8 ,20,24217,22782498,24,0 ,20,16441,3383842,704,0 ,16,820,238120,20,8 ,16,820,238128,20,8 ,16,820,238136,20,8 ,16,820,238144,20,8 ,17,923,8626756,32,0 ,45,15153,3908164,16,0 ,16,820,238152,20,8 ,16,820,238160,20,8 ,16,820,238168,22,8 ,16,820,238176,20,9 ,20,21865,17015394,416,0 ,16,820,238184,22,8 ,16,820,238192,20,11 ,16,820,238200,20,9 ,16,820,238208,20,9 ,45,15153,5481092,88,0 ,17,923,6529668,32,0 ,44,15152,1811076,56,0 ,16,820,238216,18,8 ,16,820,238224,22,9 ,16,820,238232,20,12 ,16,820,238240,20,10 ,20,26326,28549794,328,0 ,16,820,238248,20,8 ,16,820,238256,20,8 ,16,820,238264,20,11 ,16,820,238272,22,8 ,17,923,9151172,32,0 ,45,15153,3908292,16,0 ,16,820,238280,20,10 ,16,820,238288,20,8 ,16,820,238296,20,8 ,16,820,238304,20,8 ,20,24218,22782690,64,0 ,20,18728,8626914,12,0 ,16,820,238312,20,9 ,16,820,238320,20,8 ,16,820,238328,22,8 ,16,820,238336,20,8 ,20,23095,20161282,264,0 ,17,923,8102660,24,0 ,44,15152,762628,240,0 ,44,15152,3384068,56,0 ,16,820,238344,20,8 ,16,820,238352,20,8 ,16,820,238360,20,8 ,16,820,238368,18,8 ,16,820,238376,22,21 ,16,820,238384,18,8 ,16,820,238392,20,8 ,16,820,238400,20,8 ,20,18729,8627010,120,0 ,17,923,10199876,16,0 ,17,923,7578436,56,0 ,17,923,7054148,40,0 ,45,15153,3908420,16,0 ,45,15153,4432708,72,0 ,17,923,8627012,32,0 ,16,820,238408,20,9 ,16,820,238416,20,8 ,16,820,238424,20,12 ,16,820,238432,20,12 ,16,820,238440,20,12 ,16,820,238448,20,11 ,16,820,238456,20,12 ,16,820,238464,20,12 ,45,15153,4957060,96,0 ,17,923,6529924,40,0 ,16,820,238472,20,10 ,16,820,238480,20,12 ,16,820,238488,20,8 ,16,820,238496,20,11 ,20,23776,21734306,144,0 ,16,820,238504,20,10 ,16,820,238512,20,10 ,16,820,238520,20,11 ,16,820,238528,20,8 ,17,923,10200004,16,0 ,45,15153,3908548,32,0 ,17,923,8102852,64,0 ,17,923,9151428,40,0 ,16,820,238536,14,8 ,16,820,238544,22,10 ,16,820,238552,20,9 ,16,820,238560,20,8 ,20,26166,28025826,48,0 ,16,820,238568,22,14 ,16,820,238576,22,9 ,16,820,238584,22,17 ,16,820,238592,20,11 ,16,820,238600,22,10 ,16,820,238608,20,10 ,16,820,238616,18,8 ,16,820,238624,20,10 ,16,820,238632,20,10 ,16,820,238640,22,9 ,16,820,238648,20,12 ,16,820,238656,20,8 ,20,20055,11248706,200,0 ,17,923,10200132,32,0 ,44,15152,1811524,32,0 ,17,923,8627268,32,0 ,17,923,9675844,96,0 ,16,820,238664,20,8 ,16,820,238672,20,8 ,16,820,238680,20,8 ,16,820,238688,20,8 ,16,820,238696,20,9 ,16,820,238704,22,8 ,16,820,238712,20,8 ,16,820,238720,22,8 ,44,15152,1287300,24,0 ,17,923,7054468,32,0 ,16,820,238728,20,8 ,16,820,238736,20,9 ,16,820,238744,20,8 ,16,820,238752,22,8 ,16,820,238760,20,8 ,16,820,238768,22,8 ,16,820,238776,20,8 ,16,820,238784,22,8 ,45,15153,3908804,32,0 ,17,923,6530244,32,0 ,44,15152,3384516,48,0 ,16,820,238792,22,8 ,16,820,238800,20,8 ,16,820,238808,20,8 ,16,820,238816,20,8 ,20,24219,22783202,308,0 ,16,820,238824,14,8 ,16,820,238832,14,8 ,16,820,238840,20,8 ,16,820,238848,20,8 ,17,923,9151748,40,0 ,17,923,7578884,40,0 ,16,820,238856,20,8 ,16,820,238864,20,8 ,16,820,238872,20,8 ,16,820,238880,20,8 ,16,820,238888,20,8 ,16,820,238896,20,8 ,16,820,238904,20,8 ,16,820,238912,20,8 ,20,22768,19637570,556,0 ,20,19155,9676098,204,0 ,17,923,10200388,56,0 ,44,15152,1811780,24,0 ,44,15152,1287492,24,0 ,45,15153,5481796,104,0 ,17,923,8627524,32,0 ,16,820,238920,20,8 ,16,820,238928,20,16 ,16,820,238936,20,8 ,16,820,238944,20,9 ,20,22569,19113314,256,0 ,20,26167,28026210,288,0 ,16,820,238952,20,8 ,16,820,238960,20,8 ,16,820,238968,20,9 ,16,820,238976,20,8 ,20,17176,4957570,200,0 ,45,15153,4433284,32,0 ,17,923,7054724,40,0 ,16,820,238984,20,8 ,16,820,238992,20,8 ,16,820,239000,20,9 ,16,820,239008,20,8 ,20,24413,23307682,196,0 ,16,820,239016,20,8 ,16,820,239024,20,8 ,16,820,239032,20,9 ,16,820,239040,20,8 ,17,923,8103364,40,0 ,17,923,6530500,24,0 ,45,15153,3909060,80,0 ,16,820,239048,20,8 ,16,820,239056,20,9 ,16,820,239064,20,9 ,16,820,239072,20,8 ,16,820,239080,20,8 ,16,820,239088,22,8 ,16,820,239096,20,9 ,16,820,239104,20,8 ,44,15152,1287684,112,0 ,44,15152,1811972,40,0 ,16,820,239112,18,8 ,16,820,239120,18,8 ,16,820,239128,18,8 ,16,820,239136,18,8 ,16,820,239144,20,10 ,16,820,239152,18,8 ,16,820,239160,18,8 ,16,820,239168,20,8 ,20,25745,26977858,88,0 ,17,923,9152068,40,0 ,17,923,7579204,40,0 ,44,15152,3384900,40,0 ,17,923,8627780,32,0 ,16,820,239176,20,8 ,16,820,239184,20,8 ,16,820,239192,22,9 ,16,820,239200,20,8 ,16,820,239208,20,8 ,16,820,239216,20,9 ,16,820,239224,20,8 ,16,820,239232,20,8 ,45,15153,4957828,128,0 ,17,923,6530692,32,0 ,45,15153,4433540,32,0 ,16,820,239240,20,8 ,16,820,239248,20,8 ,16,820,239256,20,8 ,16,820,239264,20,8 ,16,820,239272,18,8 ,16,820,239280,22,8 ,16,820,239288,20,8 ,16,820,239296,20,8 ,17,923,7055044,40,0 ,16,820,239304,20,8 ,16,820,239312,20,8 ,16,820,239320,20,8 ,16,820,239328,22,9 ,16,820,239336,20,8 ,16,820,239344,20,8 ,16,820,239352,20,8 ,16,820,239360,20,9 ,20,18730,8627970,12,0 ,20,25174,25405186,416,0 ,17,923,10200836,24,0 ,17,923,8103684,24,0 ,16,820,239368,20,8 ,16,820,239376,20,8 ,16,820,239384,20,8 ,16,820,239392,20,8 ,20,25968,27502370,684,0 ,16,820,239400,20,8 ,16,820,239408,20,8 ,16,820,239416,20,8 ,16,820,239424,20,8 ,20,22087,18065218,196,0 ,17,923,9676612,96,0 ,44,15152,1812292,112,0 ,17,923,8628036,32,0 ,16,820,239432,20,8 ,16,820,239440,22,15 ,16,820,239448,20,8 ,16,820,239456,20,8 ,20,18731,8628066,12,0 ,16,820,239464,20,8 ,16,820,239472,20,8 ,16,820,239480,20,8 ,16,820,239488,20,8 ,20,21006,15443842,264,0 ,17,923,9152388,32,0 ,17,923,7579524,48,0 ,17,923,6530948,32,0 ,44,15152,3385220,72,0 ,45,15153,4433796,16,0 ,16,820,239496,20,9 ,16,820,239504,20,8 ,16,820,239512,20,8 ,16,820,239520,22,10 ,16,820,239528,20,8 ,16,820,239536,20,9 ,16,820,239544,20,8 ,16,820,239552,20,8 ,20,18732,8628162,12,0 ,17,923,10201028,24,0 ,17,923,8103876,32,0 ,16,820,239560,20,8 ,16,820,239568,20,8 ,16,820,239576,20,8 ,16,820,239584,20,8 ,16,820,239592,20,8 ,16,820,239600,20,8 ,16,820,239608,20,8 ,16,820,239616,20,8 ,45,15153,4433924,40,0 ,17,923,7055364,32,0 ,16,820,239624,20,9 ,16,820,239632,20,8 ,16,820,239640,20,8 ,16,820,239648,20,9 ,20,23777,21735458,144,0 ,20,18733,8628258,52,0 ,16,820,239656,20,8 ,16,820,239664,20,11 ,16,820,239672,20,8 ,16,820,239680,20,11 ,17,923,8628292,24,0 ,45,15153,3909700,88,0 ,16,820,239688,18,8 ,16,820,239696,20,10 ,16,820,239704,22,10 ,16,820,239712,20,10 ,16,820,239720,20,9 ,16,820,239728,20,9 ,16,820,239736,22,8 ,16,820,239744,20,8 ,20,24568,23832706,544,0 ,17,923,10201220,48,0 ,17,923,6531204,40,0 ,45,15153,5482628,24,0 ,17,923,9152644,40,0 ,16,820,239752,22,8 ,16,820,239760,20,8 ,16,820,239768,20,11 ,16,820,239776,20,10 ,16,820,239784,20,11 ,16,820,239792,20,11 ,16,820,239800,20,11 ,16,820,239808,20,10 ,17,923,8104132,32,0 ,16,820,239816,22,11 ,16,820,239824,22,11 ,16,820,239832,22,11 ,16,820,239840,22,12 ,16,820,239848,20,9 ,16,820,239856,18,9 ,16,820,239864,20,8 ,16,820,239872,22,10 ,20,25746,26978562,116,0 ,17,923,8628484,24,0 ,17,923,7579908,48,0 ,17,923,7055620,40,0 ,16,820,239880,20,11 ,16,820,239888,20,9 ,16,820,239896,18,8 ,16,820,239904,20,9 ,16,820,239912,20,9 ,16,820,239920,18,9 ,16,820,239928,22,16 ,16,820,239936,20,9 ,45,15153,5482820,16,0 ,45,15153,4434244,24,0 ,16,820,239944,18,8 ,16,820,239952,20,11 ,16,820,239960,18,8 ,16,820,239968,22,44 ,16,820,239976,22,15 ,16,820,239984,20,8 ,16,820,239992,14,8 ,16,820,240000,20,8 ,44,15152,1288580,32,0 ,16,820,240008,20,8 ,16,820,240016,20,12 ,16,820,240024,20,12 ,16,820,240032,18,11 ,16,820,240040,20,8 ,16,820,240048,20,8 ,16,820,240056,14,8 ,16,820,240064,20,11 ,20,18734,8628674,268,0 ,17,923,9152964,40,0 ,17,923,6531524,32,0 ,44,15152,3385796,48,0 ,45,15153,5482948,40,0 ,17,923,8104388,24,0 ,17,923,8628676,24,0 ,16,820,240072,20,8 ,16,820,240080,20,8 ,16,820,240088,20,10 ,16,820,240096,20,12 ,20,18998,9152994,72,0 ,16,820,240104,22,20 ,16,820,240112,20,14 ,16,820,240120,20,12 ,16,820,240128,15,8 ,17,923,10201604,56,0 ,45,15153,4434436,24,0 ,16,820,240136,20,8 ,16,820,240144,20,8 ,16,820,240152,20,9 ,16,820,240160,20,10 ,16,820,240168,20,9 ,16,820,240176,20,9 ,16,820,240184,20,11 ,16,820,240192,18,8 ,20,16755,3910210,552,0 ,17,923,9677380,32,0 ,17,923,7055940,32,0 ,44,15152,2861636,336,0 ,16,820,240200,18,9 ,16,820,240208,14,8 ,16,820,240216,14,8 ,16,820,240224,20,10 ,16,820,240232,22,11 ,16,820,240240,20,9 ,16,820,240248,20,8 ,16,820,240256,20,8 ,20,20056,11250306,168,0 ,17,923,8628868,24,0 ,17,923,7580292,56,0 ,44,15152,1288836,104,0 ,44,15152,764548,24,0 ,45,15153,4958852,16,0 ,17,923,8104580,32,0 ,16,820,240264,20,8 ,16,820,240272,20,8 ,16,820,240280,22,19 ,16,820,240288,22,13 ,16,820,240296,20,10 ,16,820,240304,18,9 ,16,820,240312,18,9 ,16,820,240320,20,10 ,45,15153,4434628,64,0 ,17,923,6531780,24,0 ,44,15152,1813188,24,0 ,16,820,240328,20,15 ,16,820,240336,18,9 ,16,820,240344,20,10 ,16,820,240352,20,9 ,16,820,240360,18,8 ,16,820,240368,14,8 ,16,820,240376,20,8 ,16,820,240384,22,9 ,17,923,9153284,40,0 ,45,15153,3910404,104,0 ,45,15153,4958980,32,0 ,45,15153,5483268,16,0 ,16,820,240392,20,8 ,16,820,240400,20,8 ,16,820,240408,20,10 ,16,820,240416,20,8 ,20,21361,15969058,112,0 ,16,820,240424,20,8 ,16,820,240432,20,9 ,16,820,240440,20,9 ,16,820,240448,20,8 ,20,23096,20163394,256,0 ,17,923,9677636,208,0 ,17,923,7056196,24,0 ,44,15152,764740,48,0 ,44,15152,3386180,40,0 ,17,923,8629060,24,0 ,16,820,240456,20,9 ,16,820,240464,22,9 ,16,820,240472,20,8 ,16,820,240480,20,8 ,16,820,240488,18,10 ,16,820,240496,18,8 ,16,820,240504,20,9 ,16,820,240512,20,10 ,17,923,8104836,32,0 ,17,923,6531972,40,0 ,44,15152,1813380,56,0 ,45,15153,5483396,40,0 ,16,820,240520,20,9 ,16,820,240528,20,9 ,16,820,240536,20,9 ,16,820,240544,20,9 ,20,19156,9677730,204,0 ,16,820,240552,20,9 ,16,820,240560,20,9 ,16,820,240568,22,17 ,16,820,240576,18,10 ,20,24414,23309250,176,0 ,20,17177,4959170,48,0 ,17,923,10202052,64,0 ,16,820,240584,20,8 ,16,820,240592,20,11 ,16,820,240600,20,10 ,16,820,240608,20,9 ,20,17572,6007778,80,0 ,16,820,240616,22,12 ,16,820,240624,20,11 ,16,820,240632,22,12 ,16,820,240640,20,8 ,17,923,8629252,24,0 ,17,923,7056388,40,0 ,45,15153,4959236,24,0 ,16,820,240648,20,8 ,16,820,240656,14,8 ,16,820,240664,20,9 ,16,820,240672,20,9 ,20,18999,9153570,1680,0 ,16,820,240680,20,9 ,16,820,240688,20,19 ,16,820,240696,20,9 ,16,820,240704,20,9 ,20,23611,21212226,252,0 ,17,923,9153604,40,0 ,17,923,7580740,40,0 ,16,820,240712,20,9 ,16,820,240720,20,9 ,16,820,240728,20,9 ,16,820,240736,20,9 ,20,23990,22260834,280,0 ,16,820,240744,20,9 ,16,820,240752,24,8 ,16,820,240760,20,9 ,16,820,240768,14,8 ,17,923,8105092,32,0 ,44,15152,3386500,56,0 ,16,820,240776,15,8 ,16,820,240784,20,9 ,16,820,240792,20,9 ,16,820,240800,20,9 ,20,23778,21736610,144,0 ,20,25747,26979490,364,0 ,16,820,240808,22,12 ,16,820,240816,18,10 ,16,820,240824,20,9 ,16,820,240832,20,10 ,17,923,8629444,24,0 ,17,923,6532292,32,0 ,44,15152,765124,40,0 ,45,15153,4435140,16,0 ,45,15153,4959428,24,0 ,45,15153,5483716,24,0 ,16,820,240840,20,8 ,16,820,240848,20,10 ,16,820,240856,22,8 ,16,820,240864,22,8 ,20,26327,28552418,148,0 ,16,820,240872,20,9 ,16,820,240880,22,8 ,16,820,240888,20,8 ,16,820,240896,22,8 ,16,820,240904,20,8 ,16,820,240912,20,8 ,16,820,240920,20,9 ,16,820,240928,20,9 ,16,820,240936,20,11 ,16,820,240944,20,9 ,16,820,240952,20,9 ,16,820,240960,20,9 ,20,17178,4959554,12,0 ,45,15153,4435268,40,0 ,17,923,7056708,40,0 ,44,15152,1813828,24,0 ,16,820,240968,20,10 ,16,820,240976,20,10 ,16,820,240984,20,8 ,16,820,240992,20,9 ,20,22570,19115362,1296,0 ,20,22088,18066786,224,0 ,16,820,241000,20,9 ,16,820,241008,20,9 ,16,820,241016,20,9 ,16,820,241024,20,9 ,17,923,9153924,40,0 ,17,923,7581060,56,0 ,45,15153,4959620,32,0 ,45,15153,5483908,24,0 ,17,923,8105348,32,0 ,17,923,8629636,24,0 ,16,820,241032,20,10 ,16,820,241040,22,16 ,16,820,241048,22,18 ,16,820,241056,20,10 ,20,17179,4959650,60,0 ,16,820,241064,20,8 ,16,820,241072,22,9 ,16,820,241080,20,8 ,16,820,241088,18,9 ,17,923,10202564,40,0 ,17,923,6532548,32,0 ,44,15152,1289668,32,0 ,16,820,241096,18,9 ,16,820,241104,20,9 ,16,820,241112,20,10 ,16,820,241120,18,29 ,16,820,241128,18,31 ,16,820,241136,22,15 ,16,820,241144,22,15 ,16,820,241152,20,24 ,44,15152,765444,176,0 ,44,15152,1814020,24,0 ,16,820,241160,22,28 ,16,820,241168,20,9 ,16,820,241176,20,9 ,16,820,241184,20,13 ,20,24984,24882722,436,0 ,16,820,241192,20,10 ,16,820,241200,20,9 ,16,820,241208,18,9 ,16,820,241216,20,12 ,17,923,8629828,24,0 ,44,15152,3386948,48,0 ,45,15153,3911236,48,0 ,45,15153,5484100,16,0 ,16,820,241224,20,12 ,16,820,241232,20,9 ,16,820,241240,22,15 ,16,820,241248,20,11 ,20,17573,6008418,100,0 ,20,26168,28028514,112,0 ,16,820,241256,14,8 ,16,820,241264,20,13 ,16,820,241272,15,8 ,16,820,241280,18,9 ,20,24220,22785666,24,0 ,17,923,8105604,40,0 ,17,923,7057028,32,0 ,45,15153,4435588,16,0 ,45,15153,4959876,328,0 ,16,820,241288,20,10 ,16,820,241296,20,8 ,16,820,241304,20,8 ,16,820,241312,20,8 ,20,21362,15969954,408,0 ,16,820,241320,20,8 ,16,820,241328,20,8 ,16,820,241336,20,9 ,16,820,241344,20,9 ,17,923,9154244,40,0 ,17,923,6532804,32,0 ,44,15152,1814212,24,0 ,44,15152,1289924,24,0 ,45,15153,5484228,24,0 ,16,820,241352,20,8 ,16,820,241360,22,9 ,16,820,241368,20,9 ,16,820,241376,20,11 ,16,820,241384,18,9 ,16,820,241392,18,9 ,16,820,241400,20,8 ,16,820,241408,22,11 ,17,923,10202884,24,0 ,45,15153,4435716,200,0 ,17,923,8630020,24,0 ,16,820,241416,20,10 ,16,820,241424,20,10 ,16,820,241432,20,9 ,16,820,241440,20,8 ,16,820,241448,20,8 ,16,820,241456,20,9 ,16,820,241464,18,9 ,16,820,241472,20,10 ,20,24221,22785858,12,0 ,17,923,7581508,48,0 ,16,820,241480,20,11 ,16,820,241488,18,9 ,16,820,241496,20,9 ,16,820,241504,20,10 ,20,21866,17018722,72,0 ,16,820,241512,20,9 ,16,820,241520,20,9 ,16,820,241528,18,9 ,16,820,241536,20,8 ,20,17180,4960130,120,0 ,45,15153,5484420,16,0 ,17,923,7057284,40,0 ,44,15152,1814404,64,0 ,44,15152,1290116,56,0 ,16,820,241544,20,12 ,16,820,241552,20,13 ,16,820,241560,20,9 ,16,820,241568,20,10 ,20,24222,22785954,144,0 ,16,820,241576,18,9 ,16,820,241584,18,9 ,16,820,241592,18,9 ,16,820,241600,20,9 ,20,21007,15445954,164,0 ,20,20057,11251650,12,0 ,17,923,10203076,48,0 ,17,923,6533060,32,0 ,44,15152,3387332,104,0 ,45,15153,3911620,96,0 ,17,923,8105924,32,0 ,17,923,8630212,24,0 ,16,820,241608,20,9 ,16,820,241616,20,9 ,16,820,241624,20,18 ,16,820,241632,20,12 ,16,820,241640,20,12 ,16,820,241648,20,12 ,16,820,241656,20,24 ,16,820,241664,20,11 ,17,923,9154564,48,0 ,45,15153,5484548,32,0 ,16,820,241672,20,8 ,16,820,241680,20,8 ,16,820,241688,20,8 ,16,820,241696,20,8 ,20,20058,11251746,56,0 ,16,820,241704,20,8 ,16,820,241712,20,8 ,16,820,241720,20,8 ,16,820,241728,22,8 ,16,820,241736,22,9 ,16,820,241744,20,8 ,16,820,241752,20,10 ,16,820,241760,22,8 ,16,820,241768,20,12 ,16,820,241776,20,8 ,16,820,241784,20,8 ,16,820,241792,20,9 ,17,923,8630404,24,0 ,16,820,241800,20,8 ,16,820,241808,20,8 ,16,820,241816,22,12 ,16,820,241824,20,10 ,16,820,241832,20,9 ,16,820,241840,22,13 ,16,820,241848,20,9 ,16,820,241856,20,10 ,17,923,8106180,40,0 ,17,923,7581892,56,0 ,17,923,7057604,40,0 ,17,923,6533316,24,0 ,44,15152,2339012,16,0 ,16,820,241864,20,10 ,16,820,241872,20,11 ,16,820,241880,20,9 ,16,820,241888,20,12 ,16,820,241896,20,8 ,16,820,241904,20,8 ,16,820,241912,20,8 ,16,820,241920,20,13 ,45,15153,5484804,16,0 ,16,820,241928,22,10 ,16,820,241936,20,8 ,16,820,241944,20,9 ,16,820,241952,20,9 ,20,23779,21737762,144,0 ,16,820,241960,20,9 ,16,820,241968,20,9 ,16,820,241976,22,10 ,16,820,241984,22,12 ,20,24415,23310658,436,0 ,17,923,10203460,24,0 ,44,15152,2339140,584,0 ,44,15152,1290564,56,0 ,17,923,8630596,24,0 ,16,820,241992,22,13 ,16,820,242000,20,10 ,16,820,242008,20,11 ,16,820,242016,20,9 ,20,25417,25932130,332,0 ,16,820,242024,20,12 ,16,820,242032,20,9 ,16,820,242040,18,9 ,16,820,242048,22,8 ,20,17574,6009218,152,0 ,20,26328,28553602,308,0 ,17,923,9154948,40,0 ,17,923,6533508,32,0 ,44,15152,1814916,24,0 ,45,15153,5484932,16,0 ,16,820,242056,20,10 ,16,820,242064,20,8 ,16,820,242072,22,10 ,16,820,242080,18,9 ,20,21867,17019298,760,0 ,16,820,242088,18,9 ,16,820,242096,18,9 ,16,820,242104,22,8 ,16,820,242112,20,9 ,17,923,9679300,112,0 ,16,820,242120,20,9 ,16,820,242128,20,9 ,16,820,242136,20,10 ,16,820,242144,20,9 ,20,20059,11252194,56,0 ,20,26169,28029410,296,0 ,16,820,242152,20,10 ,16,820,242160,20,11 ,16,820,242168,22,15 ,16,820,242176,20,10 ,20,19157,9679362,316,0 ,17,923,10203652,32,0 ,17,923,7057924,56,0 ,45,15153,5485060,24,0 ,17,923,8106500,24,0 ,17,923,8630788,32,0 ,16,820,242184,22,20 ,16,820,242192,18,9 ,16,820,242200,20,8 ,16,820,242208,20,8 ,20,18735,8630818,224,0 ,16,820,242216,20,8 ,16,820,242224,20,11 ,16,820,242232,22,10 ,16,820,242240,20,8 ,44,15152,1815108,32,0 ,16,820,242248,20,8 ,16,820,242256,20,8 ,16,820,242264,20,10 ,16,820,242272,22,8 ,16,820,242280,20,8 ,16,820,242288,22,20 ,16,820,242296,20,9 ,16,820,242304,20,11 ,17,923,6533764,32,0 ,17,923,7582340,48,0 ,16,820,242312,20,15 ,16,820,242320,20,9 ,16,820,242328,20,11 ,16,820,242336,20,11 ,16,820,242344,20,10 ,16,820,242352,20,10 ,16,820,242360,20,9 ,16,820,242368,20,12 ,17,923,9155268,40,0 ,45,15153,3912388,104,0 ,45,15153,5485252,16,0 ,17,923,8106692,40,0 ,16,820,242376,18,10 ,16,820,242384,18,10 ,16,820,242392,20,12 ,16,820,242400,20,11 ,20,22383,18592482,660,0 ,16,820,242408,22,19 ,16,820,242416,22,15 ,16,820,242424,20,9 ,16,820,242432,22,9 ,17,923,10203908,32,0 ,44,15152,1291012,32,0 ,44,15152,3388164,88,0 ,17,923,8631044,32,0 ,16,820,242440,22,10 ,16,820,242448,22,9 ,16,820,242456,22,15 ,16,820,242464,22,9 ,16,820,242472,20,9 ,16,820,242480,20,10 ,16,820,242488,20,9 ,16,820,242496,20,10 ,20,23097,20165442,128,0 ,20,17181,4961090,120,0 ,45,15153,5485380,24,0 ,44,15152,1815364,24,0 ,16,820,242504,20,9 ,16,820,242512,18,9 ,16,820,242520,20,10 ,16,820,242528,20,11 ,16,820,242536,20,10 ,16,820,242544,22,10 ,16,820,242552,20,13 ,16,820,242560,20,9 ,44,15152,766852,296,0 ,17,923,6534020,48,0 ,16,820,242568,18,9 ,16,820,242576,20,10 ,16,820,242584,20,11 ,16,820,242592,20,11 ,20,20060,11252642,236,0 ,20,19747,10728354,276,0 ,16,820,242600,20,9 ,16,820,242608,20,10 ,16,820,242616,20,9 ,16,820,242624,22,10 ,17,923,7058372,48,0 ,16,820,242632,20,8 ,16,820,242640,20,9 ,16,820,242648,20,8 ,16,820,242656,20,8 ,16,820,242664,20,10 ,16,820,242672,20,9 ,16,820,242680,20,9 ,16,820,242688,20,12 ,20,25175,25408514,388,0 ,17,923,10204164,32,0 ,17,923,7582724,32,0 ,44,15152,1815556,24,0 ,44,15152,1291268,40,0 ,45,15153,5485572,16,0 ,17,923,8107012,32,0 ,17,923,8631300,32,0 ,17,923,9155588,32,0 ,16,820,242696,20,11 ,16,820,242704,20,11 ,16,820,242712,20,15 ,16,820,242720,20,15 ,20,24223,22787106,60,0 ,20,23612,21214242,3008,0 ,16,820,242728,18,9 ,16,820,242736,20,8 ,16,820,242744,18,8 ,16,820,242752,20,9 ,16,820,242760,22,14 ,16,820,242768,20,12 ,16,820,242776,20,9 ,16,820,242784,20,9 ,20,22089,18068578,280,0 ,16,820,242792,20,16 ,16,820,242800,20,16 ,16,820,242808,20,16 ,16,820,242816,20,18 ,45,15153,5485700,16,0 ,16,820,242824,20,24 ,16,820,242832,20,32 ,16,820,242840,20,18 ,16,820,242848,20,24 ,16,820,242856,20,24 ,16,820,242864,20,11 ,16,820,242872,20,9 ,16,820,242880,20,10 ,44,15152,1815748,32,0 ,44,15152,2864324,80,0 ,16,820,242888,22,14 ,16,820,242896,22,11 ,16,820,242904,20,9 ,16,820,242912,20,24 ,20,21008,15447266,804,0 ,16,820,242920,20,10 ,16,820,242928,20,10 ,16,820,242936,20,8 ,16,820,242944,20,11 ,17,923,10204420,48,0 ,17,923,7582980,24,0 ,17,923,6534404,24,0 ,45,15153,5485828,24,0 ,17,923,8107268,32,0 ,17,923,8631556,16,0 ,17,923,9155844,40,0 ,16,820,242952,20,10 ,16,820,242960,20,9 ,16,820,242968,20,11 ,16,820,242976,20,8 ,20,23991,22263074,112,0 ,16,820,242984,20,8 ,16,820,242992,18,8 ,16,820,243000,22,11 ,16,820,243008,20,8 ,17,923,9680196,112,0 ,17,923,7058756,24,0 ,44,15152,1291588,24,0 ,45,15153,4437316,16,0 ,16,820,243016,20,8 ,16,820,243024,20,12 ,16,820,243032,20,9 ,16,820,243040,20,9 ,16,820,243048,18,8 ,16,820,243056,20,9 ,16,820,243064,20,8 ,16,820,243072,18,8 ,17,923,8631684,24,0 ,16,820,243080,22,8 ,16,820,243088,20,9 ,16,820,243096,20,9 ,16,820,243104,20,10 ,20,23780,21738914,64,0 ,16,820,243112,20,8 ,16,820,243120,20,8 ,16,820,243128,20,8 ,16,820,243136,22,8 ,45,15153,5486020,40,0 ,17,923,7583172,40,0 ,17,923,6534596,32,0 ,44,15152,1816004,24,0 ,44,15152,3388868,48,0 ,45,15153,4437444,16,0 ,16,820,243144,20,10 ,16,820,243152,14,8 ,16,820,243160,22,9 ,16,820,243168,14,8 ,16,820,243176,20,10 ,16,820,243184,20,12 ,16,820,243192,20,9 ,16,820,243200,20,9 ,20,24224,22787586,144,0 ,17,923,8107524,32,0 ,17,923,7058948,32,0 ,44,15152,1291780,32,0 ,45,15153,3913220,40,0 ,16,820,243208,20,9 ,16,820,243216,22,13 ,16,820,243224,20,13 ,16,820,243232,26,15 ,16,820,243240,22,11 ,16,820,243248,22,11 ,16,820,243256,22,10 ,16,820,243264,22,10 ,20,17575,6010434,128,0 ,17,923,9156164,32,0 ,45,15153,4437572,32,0 ,17,923,8631876,16,0 ,16,820,243272,22,10 ,16,820,243280,20,10 ,16,820,243288,14,8 ,16,820,243296,20,8 ,16,820,243304,20,9 ,16,820,243312,15,8 ,16,820,243320,20,9 ,16,820,243328,20,8 ,17,923,10204804,24,0 ,44,15152,1816196,96,0 ,16,820,243336,20,12 ,16,820,243344,20,12 ,16,820,243352,20,8 ,16,820,243360,20,8 ,20,22769,19642018,136,0 ,16,820,243368,18,8 ,16,820,243376,20,10 ,16,820,243384,20,8 ,16,820,243392,18,8 ,17,923,8632004,16,0 ,17,923,6534852,32,0 ,16,820,243400,22,14 ,16,820,243408,20,11 ,16,820,243416,20,8 ,16,820,243424,22,10 ,16,820,243432,20,8 ,16,820,243440,22,8 ,16,820,243448,20,8 ,16,820,243456,20,11 ,20,17182,4962050,116,0 ,17,923,8107780,32,0 ,17,923,7583492,40,0 ,17,923,7059204,24,0 ,44,15152,1292036,80,0 ,45,15153,5486340,16,0 ,16,820,243464,20,11 ,16,820,243472,18,8 ,16,820,243480,20,12 ,16,820,243488,20,8 ,16,820,243496,20,8 ,16,820,243504,20,10 ,16,820,243512,20,10 ,16,820,243520,20,10 ,20,23098,20166466,220,0 ,17,923,10204996,32,0 ,44,15152,2864964,64,0 ,44,15152,3389252,56,0 ,45,15153,3913540,16,0 ,45,15153,4437828,48,0 ,17,923,8632132,16,0 ,17,923,9156420,144,0 ,16,820,243528,22,10 ,16,820,243536,20,10 ,16,820,243544,20,20 ,16,820,243552,18,8 ,20,15427,767842,236,0 ,16,820,243560,18,8 ,16,820,243568,18,8 ,16,820,243576,20,8 ,16,820,243584,18,8 ,45,15153,5486468,24,0 ,16,820,243592,20,8 ,16,820,243600,18,8 ,16,820,243608,18,8 ,16,820,243616,20,9 ,20,23781,21739426,64,0 ,16,820,243624,20,8 ,16,820,243632,20,8 ,16,820,243640,20,8 ,16,820,243648,20,8 ,20,19455,10205122,80,0 ,17,923,8632260,24,0 ,17,923,7059396,24,0 ,17,923,6535108,40,0 ,44,15152,243652,40,0 ,45,15153,3913668,80,0 ,16,820,243656,20,8 ,16,820,243664,20,8 ,16,820,243672,22,11 ,16,820,243680,20,11 ,16,820,243688,20,11 ,16,820,243696,20,8 ,16,820,243704,20,8 ,16,820,243712,20,8 ,20,25748,26982402,52,0 ,17,923,8108036,32,0 ,16,820,243720,18,8 ,16,820,243728,22,9 ,16,820,243736,18,8 ,16,820,243744,20,8 ,20,16442,3389474,588,0 ,16,820,243752,20,10 ,16,820,243760,20,8 ,16,820,243768,20,8 ,16,820,243776,20,8 ,17,923,10205252,40,0 ,17,923,7583812,40,0 ,45,15153,5486660,16,0 ,16,820,243784,18,8 ,16,820,243792,20,9 ,16,820,243800,22,8 ,16,820,243808,20,17 ,16,820,243816,20,11 ,16,820,243824,20,11 ,16,820,243832,20,12 ,16,820,243840,20,11 ,17,923,8632452,24,0 ,17,923,7059588,32,0 ,16,820,243848,20,8 ,16,820,243856,20,9 ,16,820,243864,14,8 ,16,820,243872,20,8 ,20,23992,22263970,12,0 ,16,820,243880,20,8 ,16,820,243888,22,8 ,16,820,243896,20,8 ,16,820,243904,20,12 ,17,923,9681092,32,0 ,45,15153,4438212,40,0 ,45,15153,4962500,368,0 ,45,15153,5486788,16,0 ,16,820,243912,20,8 ,16,820,243920,20,11 ,16,820,243928,22,11 ,16,820,243936,20,8 ,16,820,243944,14,8 ,16,820,243952,20,8 ,16,820,243960,22,10 ,16,820,243968,20,8 ,20,23993,22264066,936,0 ,17,923,8108292,24,0 ,17,923,6535428,40,0 ,44,15152,243972,40,0 ,44,15152,3389700,80,0 ,16,820,243976,22,9 ,16,820,243984,22,16 ,16,820,243992,22,18 ,16,820,244000,22,15 ,20,18736,8632610,128,0 ,16,820,244008,18,8 ,16,820,244016,22,12 ,16,820,244024,22,8 ,16,820,244032,20,9 ,17,923,8632644,16,0 ,44,15152,2865476,784,0 ,45,15153,5486916,32,0 ,16,820,244040,18,10 ,16,820,244048,22,8 ,16,820,244056,20,9 ,16,820,244064,22,8 ,16,820,244072,20,8 ,16,820,244080,20,9 ,16,820,244088,20,9 ,16,820,244096,20,13 ,20,24569,23837058,12,0 ,17,923,10205572,24,0 ,17,923,7584132,32,0 ,17,923,7059844,32,0 ,44,15152,1816964,32,0 ,44,15152,1292676,24,0 ,16,820,244104,20,15 ,16,820,244112,22,19 ,16,820,244120,18,10 ,16,820,244128,20,16 ,20,23782,21739938,116,0 ,20,25749,26982818,168,0 ,16,820,244136,20,34 ,16,820,244144,18,10 ,16,820,244152,18,10 ,16,820,244160,18,10 ,17,923,9681348,112,0 ,17,923,8108484,40,0 ,17,923,8632772,16,0 ,16,820,244168,20,8 ,16,820,244176,20,9 ,16,820,244184,22,9 ,16,820,244192,20,14 ,20,24570,23837154,256,0 ,16,820,244200,22,10 ,16,820,244208,20,8 ,16,820,244216,20,8 ,16,820,244224,20,17 ,45,15153,4438532,16,0 ,16,820,244232,20,9 ,16,820,244240,20,9 ,16,820,244248,20,8 ,16,820,244256,20,9 ,16,820,244264,20,10 ,16,820,244272,20,8 ,16,820,244280,22,8 ,16,820,244288,14,8 ,20,19456,10205762,76,0 ,20,17576,6011458,28,0 ,17,923,10205764,24,0 ,17,923,6535748,32,0 ,44,15152,1292868,64,0 ,44,15152,244292,40,0 ,45,15153,3914308,24,0 ,45,15153,5487172,24,0 ,17,923,8632900,16,0 ,16,820,244296,22,8 ,16,820,244304,22,8 ,16,820,244312,20,9 ,16,820,244320,20,8 ,16,820,244328,22,8 ,16,820,244336,22,8 ,16,820,244344,22,10 ,16,820,244352,20,8 ,20,24225,22788738,92,0 ,45,15153,4438660,16,0 ,17,923,7584388,24,0 ,17,923,7060100,32,0 ,44,15152,1817220,16,0 ,16,820,244360,14,8 ,16,820,244368,20,8 ,16,820,244376,20,8 ,16,820,244384,20,8 ,20,17183,4962978,200,0 ,16,820,244392,22,9 ,16,820,244400,26,8 ,16,820,244408,20,8 ,16,820,244416,22,8 ,17,923,8633028,16,0 ,16,820,244424,20,8 ,16,820,244432,20,8 ,16,820,244440,20,8 ,16,820,244448,22,9 ,20,22770,19643106,92,0 ,20,20885,14400226,4836,0 ,16,820,244456,22,15 ,16,820,244464,14,8 ,16,820,244472,20,8 ,16,820,244480,22,8 ,20,20061,11254530,152,0 ,17,923,10205956,32,0 ,44,15152,1817348,24,0 ,45,15153,3914500,16,0 ,45,15153,4438788,72,0 ,45,15153,5487364,16,0 ,17,923,8108804,48,0 ,16,820,244488,22,8 ,16,820,244496,22,8 ,16,820,244504,22,8 ,16,820,244512,14,8 ,20,17577,6011682,108,0 ,20,26329,28556066,1012,0 ,20,26170,28031778,280,0 ,16,820,244520,20,10 ,16,820,244528,22,17 ,16,820,244536,22,17 ,16,820,244544,22,8 ,17,923,8633156,16,0 ,17,923,7584580,32,0 ,17,923,6536004,32,0 ,16,820,244552,20,8 ,16,820,244560,20,10 ,16,820,244568,14,8 ,16,820,244576,20,8 ,20,21363,15973218,456,0 ,16,820,244584,20,8 ,16,820,244592,18,10 ,16,820,244600,18,10 ,16,820,244608,18,10 ,20,16756,3914626,572,0 ,45,15153,5487492,32,0 ,17,923,7060356,48,0 ,44,15152,244612,40,0 ,44,15152,3390340,24,0 ,45,15153,3914628,64,0 ,16,820,244616,18,10 ,16,820,244624,20,9 ,16,820,244632,20,10 ,16,820,244640,20,8 ,16,820,244648,18,8 ,16,820,244656,20,8 ,16,820,244664,20,9 ,16,820,244672,18,8 ,20,24985,24886210,340,0 ,20,25418,25934786,140,0 ,17,923,9157572,136,0 ,44,15152,1817540,24,0 ,17,923,8633284,16,0 ,16,820,244680,20,8 ,16,820,244688,18,10 ,16,820,244696,18,10 ,16,820,244704,22,9 ,20,19158,9681890,40,0 ,16,820,244712,22,14 ,16,820,244720,20,8 ,16,820,244728,20,8 ,16,820,244736,20,8 ,17,923,10206212,40,0 ,16,820,244744,20,8 ,16,820,244752,18,10 ,16,820,244760,20,8 ,16,820,244768,18,10 ,16,820,244776,18,10 ,16,820,244784,20,8 ,16,820,244792,22,9 ,16,820,244800,20,8 ,20,19748,10730562,472,0 ,17,923,8633412,16,0 ,17,923,7584836,32,0 ,17,923,6536260,32,0 ,44,15152,1293380,80,0 ,44,15152,3390532,32,0 ,16,820,244808,20,8 ,16,820,244816,20,8 ,16,820,244824,22,11 ,16,820,244832,22,11 ,16,820,244840,20,8 ,16,820,244848,20,8 ,16,820,244856,22,10 ,16,820,244864,20,8 ,20,25969,27507842,536,0 ,17,923,8109188,48,0 ,44,15152,1817732,80,0 ,45,15153,5487748,16,0 ,16,820,244872,20,8 ,16,820,244880,18,8 ,16,820,244888,24,9 ,16,820,244896,20,8 ,20,19457,10206370,128,0 ,16,820,244904,22,12 ,16,820,244912,20,8 ,16,820,244920,20,9 ,16,820,244928,20,8 ,17,923,8633540,16,0 ,44,15152,244932,40,0 ,44,15152,769220,88,0 ,16,820,244936,20,8 ,16,820,244944,18,8 ,16,820,244952,20,8 ,16,820,244960,20,8 ,16,820,244968,20,8 ,16,820,244976,20,8 ,16,820,244984,20,8 ,16,820,244992,20,8 ,45,15153,5487876,24,0 ,17,923,7060740,24,0 ,16,820,245000,20,10 ,16,820,245008,20,8 ,16,820,245016,20,10 ,16,820,245024,22,10 ,20,22090,18070818,24,0 ,20,18737,8633634,184,0 ,20,19159,9682210,168,0 ,16,820,245032,20,8 ,16,820,245040,20,8 ,16,820,245048,22,8 ,16,820,245056,20,8 ,20,23783,21740866,64,0 ,17,923,10206532,48,0 ,17,923,7585092,40,0 ,17,923,6536516,40,0 ,44,15152,3390788,64,0 ,45,15153,4439364,16,0 ,17,923,8633668,16,0 ,17,923,9682244,208,0 ,16,820,245064,18,8 ,16,820,245072,20,8 ,16,820,245080,18,8 ,16,820,245088,18,9 ,20,24226,22789474,160,0 ,20,26442,29080930,248,0 ,16,820,245096,18,8 ,16,820,245104,20,8 ,16,820,245112,20,11 ,16,820,245120,20,11 ,20,17003,4439426,96,0 ,45,15153,3915140,16,0 ,16,820,245128,20,11 ,16,820,245136,20,8 ,16,820,245144,20,8 ,16,820,245152,20,8 ,16,820,245160,20,8 ,16,820,245168,18,8 ,16,820,245176,20,8 ,16,820,245184,20,11 ,20,22771,19643842,100,0 ,17,923,8633796,16,0 ,17,923,7060932,24,0 ,45,15153,4439492,40,0 ,45,15153,5488068,24,0 ,16,820,245192,20,10 ,16,820,245200,22,9 ,16,820,245208,22,8 ,16,820,245216,22,8 ,20,22091,18071010,484,0 ,16,820,245224,18,8 ,16,820,245232,20,8 ,16,820,245240,20,8 ,16,820,245248,18,10 ,17,923,8109572,32,0 ,44,15152,245252,104,0 ,45,15153,3915268,48,0 ,16,820,245256,18,10 ,16,820,245264,18,10 ,16,820,245272,18,10 ,16,820,245280,18,8 ,20,23099,20168226,76,0 ,16,820,245288,22,10 ,16,820,245296,20,8 ,16,820,245304,20,8 ,16,820,245312,20,10 ,20,21966,17546818,152,0 ,17,923,8633924,16,0 ,16,820,245320,20,11 ,16,820,245328,20,8 ,16,820,245336,20,8 ,16,820,245344,20,13 ,16,820,245352,20,8 ,16,820,245360,20,10 ,16,820,245368,22,12 ,16,820,245376,20,14 ,20,17578,6012546,192,0 ,45,15153,5488260,24,0 ,17,923,7585412,40,0 ,17,923,7061124,24,0 ,17,923,6536836,48,0 ,16,820,245384,20,9 ,16,820,245392,20,8 ,16,820,245400,20,11 ,16,820,245408,20,8 ,16,820,245416,20,10 ,16,820,245424,20,11 ,16,820,245432,20,8 ,16,820,245440,20,8 ,20,15428,769730,980,0 ,17,923,10206916,48,0 ,44,15152,1294020,32,0 ,17,923,8634052,16,0 ,16,820,245448,22,8 ,16,820,245456,26,18 ,16,820,245464,20,8 ,16,820,245472,20,10 ,20,24416,23314146,168,0 ,20,25750,26984162,168,0 ,16,820,245480,20,8 ,16,820,245488,22,13 ,16,820,245496,20,8 ,16,820,245504,20,8 ,17,923,8109828,32,0 ,44,15152,1818372,24,0 ,45,15153,4439812,32,0 ,16,820,245512,20,8 ,16,820,245520,20,8 ,16,820,245528,22,10 ,16,820,245536,20,8 ,16,820,245544,22,13 ,16,820,245552,20,11 ,16,820,245560,20,11 ,16,820,245568,20,11 ,20,23784,21741378,256,0 ,20,25572,26459970,460,0 ,17,923,8634180,16,0 ,17,923,7061316,48,0 ,44,15152,3391300,40,0 ,45,15153,5488452,16,0 ,16,820,245576,20,11 ,16,820,245584,20,11 ,16,820,245592,20,11 ,16,820,245600,20,8 ,16,820,245608,20,8 ,16,820,245616,22,9 ,16,820,245624,20,12 ,16,820,245632,20,12 ,45,15153,3915652,16,0 ,44,15152,769924,32,0 ,16,820,245640,20,8 ,16,820,245648,20,8 ,16,820,245656,20,8 ,16,820,245664,20,10 ,16,820,245672,20,8 ,16,820,245680,22,13 ,16,820,245688,20,8 ,16,820,245696,18,8 ,20,20062,11255746,12,0 ,17,923,8634308,16,0 ,17,923,7585732,32,0 ,44,15152,1818564,24,0 ,44,15152,1294276,72,0 ,45,15153,5488580,24,0 ,16,820,245704,20,8 ,16,820,245712,20,8 ,16,820,245720,18,8 ,16,820,245728,22,10 ,16,820,245736,20,9 ,16,820,245744,20,10 ,16,820,245752,18,8 ,16,820,245760,22,11 ,17,923,9158660,56,0 ,17,923,6537220,48,0 ,45,15153,3915780,208,0 ,45,15153,4440068,56,0 ,17,923,8110084,48,0 ,16,820,245768,22,10 ,16,820,245776,20,8 ,16,820,245784,20,8 ,16,820,245792,18,8 ,20,20063,11255842,276,0 ,20,25419,25935906,172,0 ,20,25176,25411618,204,0 ,16,820,245800,20,8 ,16,820,245808,20,8 ,16,820,245816,20,8 ,16,820,245824,20,10 ,17,923,10207300,32,0 ,17,923,8634436,24,0 ,16,820,245832,18,8 ,16,820,245840,20,8 ,16,820,245848,20,8 ,16,820,245856,20,9 ,16,820,245864,20,8 ,16,820,245872,20,11 ,16,820,245880,20,10 ,16,820,245888,20,11 ,20,23100,20168834,120,0 ,20,17004,4440194,12,0 ,45,15153,5488772,16,0 ,44,15152,1818756,64,0 ,44,15152,770180,24,0 ,44,15152,3391620,40,0 ,16,820,245896,20,8 ,16,820,245904,20,8 ,16,820,245912,20,8 ,16,820,245920,20,8 ,20,19458,10207394,128,0 ,16,820,245928,20,8 ,16,820,245936,20,8 ,16,820,245944,18,9 ,16,820,245952,18,9 ,20,15251,245954,2772,0 ,17,923,7061700,40,0 ,17,923,7585988,40,0 ,16,820,245960,20,8 ,16,820,245968,20,8 ,16,820,245976,20,8 ,16,820,245984,20,8 ,20,22772,19644642,92,0 ,20,17005,4440290,12,0 ,20,17184,4964578,932,0 ,16,820,245992,22,8 ,16,820,246000,22,9 ,16,820,246008,20,8 ,16,820,246016,18,10 ,17,923,8634628,24,0 ,45,15153,5488900,16,0 ,16,820,246024,18,10 ,16,820,246032,20,10 ,16,820,246040,20,9 ,16,820,246048,18,10 ,16,820,246056,20,9 ,16,820,246064,20,9 ,16,820,246072,20,13 ,16,820,246080,20,10 ,20,17006,4440386,228,0 ,17,923,10207556,64,0 ,44,15152,246084,32,0 ,44,15152,770372,48,0 ,16,820,246088,18,8 ,16,820,246096,22,8 ,16,820,246104,20,8 ,16,820,246112,20,8 ,16,820,246120,20,8 ,16,820,246128,20,9 ,16,820,246136,20,10 ,16,820,246144,20,10 ,17,923,8110468,48,0 ,17,923,6537604,40,0 ,45,15153,5489028,16,0 ,16,820,246152,20,10 ,16,820,246160,20,10 ,16,820,246168,20,10 ,16,820,246176,20,11 ,16,820,246184,18,8 ,16,820,246192,20,10 ,16,820,246200,20,9 ,16,820,246208,20,8 ,17,923,9159108,48,0 ,44,15152,3391940,112,0 ,45,15153,4440516,40,0 ,17,923,8634820,24,0 ,16,820,246216,20,8 ,16,820,246224,20,8 ,16,820,246232,22,8 ,16,820,246240,22,9 ,20,24571,23839202,12,0 ,16,820,246248,22,9 ,16,820,246256,24,9 ,16,820,246264,26,9 ,16,820,246272,18,8 ,45,15153,5489156,24,0 ,17,923,7586308,40,0 ,17,923,7062020,40,0 ,44,15152,1294852,24,0 ,16,820,246280,20,8 ,16,820,246288,20,8 ,16,820,246296,20,8 ,16,820,246304,20,8 ,16,820,246312,20,8 ,16,820,246320,20,8 ,16,820,246328,20,8 ,16,820,246336,18,8 ,20,24572,23839298,64,0 ,44,15152,246340,96,0 ,16,820,246344,20,8 ,16,820,246352,18,8 ,16,820,246360,20,8 ,16,820,246368,20,8 ,20,24227,22790754,936,0 ,20,19160,9683554,128,0 ,16,820,246376,20,8 ,16,820,246384,20,9 ,16,820,246392,20,9 ,16,820,246400,20,9 ,17,923,8635012,32,0 ,44,15152,1819268,24,0 ,16,820,246408,22,9 ,16,820,246416,20,8 ,16,820,246424,20,11 ,16,820,246432,22,8 ,16,820,246440,20,9 ,16,820,246448,20,10 ,16,820,246456,20,9 ,16,820,246464,22,9 ,45,15153,5489348,112,0 ,17,923,6537924,40,0 ,44,15152,1295044,24,0 ,44,15152,770756,32,0 ,16,820,246472,22,9 ,16,820,246480,20,9 ,16,820,246488,20,11 ,16,820,246496,20,12 ,20,18738,8635106,352,0 ,16,820,246504,20,12 ,16,820,246512,20,9 ,16,820,246520,22,8 ,16,820,246528,20,10 ,20,21967,17548034,3972,0 ,17,923,8110852,48,0 ,45,15153,4440836,24,0 ,16,820,246536,22,8 ,16,820,246544,20,8 ,16,820,246552,18,8 ,16,820,246560,22,8 ,16,820,246568,20,9 ,16,820,246576,20,9 ,16,820,246584,20,9 ,16,820,246592,18,8 ,17,923,10208068,24,0 ,17,923,7586628,40,0 ,17,923,7062340,48,0 ,44,15152,1819460,168,0 ,17,923,9159492,48,0 ,16,820,246600,18,8 ,16,820,246608,20,12 ,16,820,246616,20,8 ,16,820,246624,18,8 ,16,820,246632,20,8 ,16,820,246640,20,9 ,16,820,246648,20,8 ,16,820,246656,20,8 ,17,923,8635268,32,0 ,44,15152,2343812,536,0 ,44,15152,1295236,32,0 ,16,820,246664,20,9 ,16,820,246672,18,8 ,16,820,246680,20,8 ,16,820,246688,20,9 ,16,820,246696,20,9 ,16,820,246704,18,8 ,16,820,246712,18,8 ,16,820,246720,22,8 ,20,22773,19645378,100,0 ,17,923,9683908,112,0 ,44,15152,771012,40,0 ,45,15153,4441028,40,0 ,16,820,246728,20,8 ,16,820,246736,20,8 ,16,820,246744,20,9 ,16,820,246752,20,8 ,20,26171,28034018,152,0 ,16,820,246760,20,8 ,16,820,246768,24,11 ,16,820,246776,20,8 ,16,820,246784,18,10 ,17,923,10208260,40,0 ,17,923,6538244,48,0 ,16,820,246792,20,8 ,16,820,246800,18,8 ,16,820,246808,20,8 ,16,820,246816,18,10 ,20,24417,23315490,92,0 ,20,25751,26985506,1164,0 ,16,820,246824,20,8 ,16,820,246832,20,8 ,16,820,246840,22,9 ,16,820,246848,22,9 ,20,24573,23839810,200,0 ,20,23101,20169794,24,0 ,45,15153,4965444,328,0 ,16,820,246856,22,8 ,16,820,246864,18,8 ,16,820,246872,22,9 ,16,820,246880,20,8 ,16,820,246888,20,10 ,16,820,246896,20,8 ,16,820,246904,22,8 ,16,820,246912,20,8 ,20,17579,6014082,128,0 ,17,923,8635524,24,0 ,17,923,7586948,40,0 ,44,15152,1295492,24,0 ,17,923,8111236,48,0 ,16,820,246920,20,8 ,16,820,246928,20,10 ,16,820,246936,20,8 ,16,820,246944,20,8 ,20,19459,10208418,76,0 ,16,820,246952,22,10 ,16,820,246960,20,8 ,16,820,246968,20,8 ,16,820,246976,20,10 ,17,923,9159876,48,0 ,17,923,7062724,32,0 ,16,820,246984,20,8 ,16,820,246992,20,9 ,16,820,247000,20,9 ,16,820,247008,22,9 ,16,820,247016,22,10 ,16,820,247024,22,12 ,16,820,247032,20,9 ,16,820,247040,20,9 ,20,23102,20169986,136,0 ,45,15153,4441348,16,0 ,44,15152,771332,32,0 ,16,820,247048,20,9 ,16,820,247056,20,9 ,16,820,247064,20,9 ,16,820,247072,20,9 ,20,26443,29082914,96,0 ,16,820,247080,20,9 ,16,820,247088,20,9 ,16,820,247096,20,9 ,16,820,247104,20,9 ,17,923,10208580,24,0 ,44,15152,1295684,48,0 ,44,15152,247108,16,0 ,44,15152,3392836,56,0 ,17,923,8635716,24,0 ,16,820,247112,20,9 ,16,820,247120,20,9 ,16,820,247128,20,9 ,16,820,247136,20,9 ,16,820,247144,20,9 ,16,820,247152,20,9 ,16,820,247160,20,9 ,16,820,247168,20,9 ,20,25420,25937282,392,0 ,45,15153,4441476,48,0 ,17,923,6538628,32,0 ,16,820,247176,20,9 ,16,820,247184,20,9 ,16,820,247192,20,9 ,16,820,247200,20,9 ,16,820,247208,20,9 ,16,820,247216,20,9 ,16,820,247224,20,9 ,16,820,247232,20,9 ,44,15152,247236,16,0 ,17,923,7587268,40,0 ,17,923,7062980,40,0 ,16,820,247240,20,9 ,16,820,247248,22,8 ,16,820,247256,20,9 ,16,820,247264,22,10 ,16,820,247272,20,14 ,16,820,247280,20,8 ,16,820,247288,20,8 ,16,820,247296,24,8 ,17,923,10208772,24,0 ,44,15152,771588,32,0 ,17,923,8111620,40,0 ,17,923,8635908,24,0 ,16,820,247304,26,8 ,16,820,247312,20,8 ,16,820,247320,22,15 ,16,820,247328,24,9 ,16,820,247336,26,9 ,16,820,247344,20,8 ,16,820,247352,20,8 ,16,820,247360,22,8 ,17,923,9160260,32,0 ,44,15152,247364,16,0 ,45,15153,5490244,32,0 ,16,820,247368,18,8 ,16,820,247376,20,8 ,16,820,247384,20,8 ,16,820,247392,22,8 ,20,19161,9684578,196,0 ,20,24986,24888930,272,0 ,16,820,247400,18,10 ,16,820,247408,20,9 ,16,820,247416,22,8 ,16,820,247424,22,11 ,20,25177,25413250,24,0 ,45,15153,3917444,120,0 ,17,923,6538884,32,0 ,16,820,247432,20,10 ,16,820,247440,20,11 ,16,820,247448,20,12 ,16,820,247456,20,10 ,16,820,247464,20,8 ,16,820,247472,18,8 ,16,820,247480,22,14 ,16,820,247488,20,10 ,17,923,10208964,40,0 ,44,15152,1296068,24,0 ,44,15152,247492,16,0 ,17,923,8636100,24,0 ,16,820,247496,22,8 ,16,820,247504,18,8 ,16,820,247512,20,8 ,16,820,247520,22,16 ,20,23400,20694754,572,0 ,20,22774,19646178,136,0 ,16,820,247528,18,8 ,16,820,247536,18,8 ,16,820,247544,18,8 ,16,820,247552,20,8 ,20,24418,23316226,116,0 ,20,19460,10209026,216,0 ,45,15153,4441860,32,0 ,17,923,7587588,32,0 ,17,923,7063300,48,0 ,44,15152,771844,32,0 ,44,15152,3393284,56,0 ,16,820,247560,20,8 ,16,820,247568,20,8 ,16,820,247576,20,8 ,16,820,247584,18,10 ,20,18272,7587618,12,0 ,16,820,247592,18,10 ,16,820,247600,20,9 ,16,820,247608,18,10 ,16,820,247616,20,8 ,20,23785,21743426,256,0 ,20,25178,25413442,272,0 ,17,923,9684804,112,0 ,44,15152,247620,64,0 ,45,15153,5490500,40,0 ,17,923,8111940,24,0 ,17,923,9160516,40,0 ,16,820,247624,22,9 ,16,820,247632,20,8 ,16,820,247640,20,8 ,16,820,247648,20,8 ,16,820,247656,18,10 ,16,820,247664,22,9 ,16,820,247672,22,8 ,16,820,247680,20,8 ,20,22384,18597762,1740,0 ,20,18273,7587714,12,0 ,17,923,8636292,24,0 ,17,923,6539140,16,0 ,44,15152,1296260,24,0 ,16,820,247688,20,8 ,16,820,247696,20,8 ,16,820,247704,20,8 ,16,820,247712,20,9 ,16,820,247720,20,9 ,16,820,247728,18,10 ,16,820,247736,20,9 ,16,820,247744,20,9 ,16,820,247752,20,9 ,16,820,247760,20,9 ,16,820,247768,20,9 ,16,820,247776,20,9 ,20,18274,7587810,12,0 ,16,820,247784,20,9 ,16,820,247792,18,10 ,16,820,247800,21,10 ,16,820,247808,20,9 ,17,923,10209284,32,0 ,17,923,7587844,24,0 ,17,923,6539268,32,0 ,44,15152,772100,24,0 ,45,15153,4442116,24,0 ,17,923,8112132,56,0 ,16,820,247816,14,8 ,16,820,247824,20,8 ,16,820,247832,20,8 ,16,820,247840,20,12 ,20,26444,29083682,648,0 ,16,820,247848,26,12 ,16,820,247856,22,14 ,16,820,247864,20,9 ,16,820,247872,20,9 ,20,18275,7587906,52,0 ,17,923,8636484,24,0 ,44,15152,1296452,24,0 ,16,820,247880,20,8 ,16,820,247888,20,8 ,16,820,247896,18,12 ,16,820,247904,22,14 ,20,17007,4442210,156,0 ,16,820,247912,20,16 ,16,820,247920,18,8 ,16,820,247928,20,8 ,16,820,247936,20,10 ,20,17580,6015106,68,0 ,17,923,9160836,32,0 ,17,923,7063684,40,0 ,44,15152,1820804,248,0 ,45,15153,5490820,24,0 ,16,820,247944,22,8 ,16,820,247952,18,10 ,16,820,247960,20,9 ,16,820,247968,18,10 ,20,26172,28035234,600,0 ,16,820,247976,18,10 ,16,820,247984,20,8 ,16,820,247992,20,9 ,16,820,248000,20,9 ,20,20064,11258050,12,0 ,45,15153,4442308,16,0 ,17,923,7588036,16,0 ,44,15152,772292,88,0 ,44,15152,3393732,96,0 ,16,820,248008,20,9 ,16,820,248016,18,10 ,16,820,248024,20,9 ,16,820,248032,20,9 ,16,820,248040,20,9 ,16,820,248048,20,8 ,16,820,248056,18,10 ,16,820,248064,18,10 ,17,923,10209540,24,0 ,17,923,6539524,40,0 ,44,15152,1296644,104,0 ,17,923,8636676,24,0 ,16,820,248072,18,10 ,16,820,248080,20,8 ,16,820,248088,20,8 ,16,820,248096,20,8 ,20,20065,11258146,176,0 ,16,820,248104,18,10 ,16,820,248112,20,8 ,16,820,248120,18,9 ,16,820,248128,20,8 ,20,23103,20171074,224,0 ,45,15153,5491012,16,0 ,17,923,7588164,24,0 ,44,15152,248132,16,0 ,45,15153,4442436,24,0 ,16,820,248136,18,10 ,16,820,248144,18,10 ,16,820,248152,18,10 ,16,820,248160,18,10 ,20,21868,17025378,168,0 ,16,820,248168,18,10 ,16,820,248176,20,8 ,16,820,248184,20,8 ,16,820,248192,14,8 ,17,923,9161092,24,0 ,16,820,248200,15,8 ,16,820,248208,20,10 ,16,820,248216,22,13 ,16,820,248224,20,9 ,20,21364,15976866,308,0 ,16,820,248232,20,10 ,16,820,248240,20,8 ,16,820,248248,20,10 ,16,820,248256,20,8 ,17,923,10209732,24,0 ,17,923,7064004,32,0 ,44,15152,248260,16,0 ,45,15153,5491140,16,0 ,17,923,8112580,48,0 ,17,923,8636868,24,0 ,16,820,248264,18,10 ,16,820,248272,18,10 ,16,820,248280,18,10 ,16,820,248288,18,10 ,20,18276,7588322,40,0 ,16,820,248296,20,9 ,16,820,248304,20,9 ,16,820,248312,18,8 ,16,820,248320,20,16 ,45,15153,4442628,24,0 ,17,923,7588356,32,0 ,16,820,248328,18,10 ,16,820,248336,20,11 ,16,820,248344,20,8 ,16,820,248352,18,10 ,16,820,248360,18,10 ,16,820,248368,20,8 ,16,820,248376,20,9 ,16,820,248384,20,9 ,17,923,9161284,40,0 ,17,923,6539844,48,0 ,44,15152,248388,16,0 ,45,15153,3918404,32,0 ,45,15153,5491268,16,0 ,16,820,248392,18,10 ,16,820,248400,20,9 ,16,820,248408,20,11 ,16,820,248416,20,8 ,16,820,248424,20,8 ,16,820,248432,20,8 ,16,820,248440,18,10 ,16,820,248448,18,10 ,20,24574,23841410,56,0 ,20,16443,3394178,204,0 ,17,923,10209924,32,0 ,17,923,8637060,24,0 ,16,820,248456,18,10 ,16,820,248464,18,10 ,16,820,248472,20,9 ,16,820,248480,18,10 ,20,24419,23317154,116,0 ,20,17581,6015650,128,0 ,16,820,248488,18,10 ,16,820,248496,20,8 ,16,820,248504,20,8 ,16,820,248512,20,8 ,17,923,9685700,112,0 ,17,923,7064260,40,0 ,44,15152,248516,16,0 ,45,15153,4442820,48,0 ,45,15153,5491396,24,0 ,16,820,248520,18,10 ,16,820,248528,18,10 ,16,820,248536,18,10 ,16,820,248544,20,12 ,16,820,248552,20,8 ,16,820,248560,20,8 ,16,820,248568,20,8 ,16,820,248576,18,8 ,20,19749,10734338,196,0 ,17,923,7588612,32,0 ,16,820,248584,20,10 ,16,820,248592,18,10 ,16,820,248600,20,11 ,16,820,248608,20,8 ,20,22775,19647266,132,0 ,20,18277,7588642,168,0 ,16,820,248616,20,8 ,16,820,248624,20,8 ,16,820,248632,20,11 ,16,820,248640,20,8 ,17,923,8637252,24,0 ,44,15152,248644,16,0 ,45,15153,3918660,40,0 ,17,923,8112964,32,0 ,16,820,248648,20,8 ,16,820,248656,20,10 ,16,820,248664,20,8 ,16,820,248672,20,11 ,16,820,248680,20,8 ,16,820,248688,20,11 ,16,820,248696,20,11 ,16,820,248704,18,8 ,17,923,10210180,40,0 ,44,15152,772996,24,0 ,45,15153,5491588,24,0 ,17,923,9161604,40,0 ,16,820,248712,18,10 ,16,820,248720,20,8 ,16,820,248728,20,8 ,16,820,248736,20,8 ,16,820,248744,22,8 ,16,820,248752,18,10 ,16,820,248760,20,10 ,16,820,248768,20,10 ,44,15152,3394500,296,0 ,17,923,6540228,48,0 ,44,15152,248772,24,0 ,16,820,248776,22,11 ,16,820,248784,20,10 ,16,820,248792,18,10 ,16,820,248800,18,10 ,16,820,248808,22,8 ,16,820,248816,22,8 ,16,820,248824,20,10 ,16,820,248832,22,14 ,17,923,8637444,24,0 ,17,923,7588868,24,0 ,17,923,7064580,48,0 ,16,820,248840,22,10 ,16,820,248848,22,15 ,16,820,248856,22,10 ,16,820,248864,18,10 ,16,820,248872,22,8 ,16,820,248880,18,10 ,16,820,248888,22,12 ,16,820,248896,22,12 ,20,24575,23841858,56,0 ,17,923,8113220,48,0 ,44,15152,1297476,104,0 ,44,15152,773188,24,0 ,45,15153,4443204,16,0 ,45,15153,5491780,24,0 ,16,820,248904,20,9 ,16,820,248912,20,9 ,16,820,248920,22,22 ,16,820,248928,20,10 ,16,820,248936,20,8 ,16,820,248944,20,8 ,16,820,248952,20,10 ,16,820,248960,20,10 ,20,19162,9686146,200,0 ,45,15153,3918980,16,0 ,44,15152,248964,16,0 ,16,820,248968,20,10 ,16,820,248976,22,8 ,16,820,248984,24,13 ,16,820,248992,22,10 ,16,820,249000,20,9 ,16,820,249008,20,9 ,16,820,249016,20,11 ,16,820,249024,18,8 ,20,17381,5491906,12,0 ,17,923,10210500,40,0 ,17,923,7589060,56,0 ,45,15153,4443332,16,0 ,17,923,8637636,24,0 ,17,923,9161924,64,0 ,16,820,249032,20,10 ,16,820,249040,20,8 ,16,820,249048,20,15 ,16,820,249056,22,8 ,16,820,249064,22,8 ,16,820,249072,22,8 ,16,820,249080,22,8 ,16,820,249088,22,8 ,20,22092,18074882,668,0 ,45,15153,5491972,16,0 ,44,15152,249092,16,0 ,44,15152,773380,24,0 ,45,15153,3919108,16,0 ,16,820,249096,22,9 ,16,820,249104,22,8 ,16,820,249112,22,8 ,16,820,249120,20,8 ,20,17382,5492002,1964,0 ,16,820,249128,20,8 ,16,820,249136,20,8 ,16,820,249144,20,8 ,16,820,249152,20,10 ,20,17008,4443458,12,0 ,20,25970,27512130,288,0 ,45,15153,4443460,32,0 ,17,923,6540612,48,0 ,16,820,249160,20,8 ,16,820,249168,20,8 ,16,820,249176,20,9 ,16,820,249184,20,10 ,20,16757,3919202,88,0 ,16,820,249192,20,13 ,16,820,249200,20,10 ,16,820,249208,20,10 ,16,820,249216,20,10 ,17,923,8637828,32,0 ,17,923,7064964,48,0 ,44,15152,249220,16,0 ,45,15153,3919236,32,0 ,45,15153,5492100,16,0 ,16,820,249224,20,8 ,16,820,249232,20,8 ,16,820,249240,20,8 ,16,820,249248,20,8 ,20,17009,4443554,228,0 ,20,25573,26463650,360,0 ,16,820,249256,20,8 ,16,820,249264,20,8 ,16,820,249272,20,8 ,16,820,249280,20,8 ,20,19461,10210754,80,0 ,17,923,8113604,40,0 ,44,15152,773572,24,0 ,16,820,249288,22,8 ,16,820,249296,20,8 ,16,820,249304,20,11 ,16,820,249312,22,8 ,20,18739,8637922,344,0 ,16,820,249320,22,8 ,16,820,249328,20,8 ,16,820,249336,20,8 ,16,820,249344,20,10 ,20,24576,23842306,56,0 ,20,21009,15453698,300,0 ,17,923,10210820,24,0 ,44,15152,249348,16,0 ,45,15153,5492228,16,0 ,16,820,249352,20,10 ,16,820,249360,22,8 ,16,820,249368,22,9 ,16,820,249376,20,11 ,16,820,249384,20,10 ,16,820,249392,20,10 ,16,820,249400,20,10 ,16,820,249408,20,10 ,20,24420,23318082,116,0 ,17,923,9686596,32,0 ,45,15153,4443716,48,0 ,16,820,249416,20,9 ,16,820,249424,20,10 ,16,820,249432,20,10 ,16,820,249440,20,10 ,16,820,249448,20,10 ,16,820,249456,22,9 ,16,820,249464,20,8 ,16,820,249472,20,10 ,17,923,8638084,32,0 ,17,923,7589508,32,0 ,44,15152,249476,72,0 ,44,15152,773764,24,0 ,45,15153,3919492,136,0 ,45,15153,4968068,40,0 ,45,15153,5492356,16,0 ,16,820,249480,18,8 ,16,820,249488,20,8 ,16,820,249496,20,11 ,16,820,249504,20,9 ,20,21869,17026722,244,0 ,20,17582,6016674,164,0 ,20,20066,11259554,92,0 ,16,820,249512,18,10 ,16,820,249520,18,10 ,16,820,249528,22,12 ,16,820,249536,20,8 ,17,923,10211012,16,0 ,17,923,6540996,40,0 ,17,923,9162436,48,0 ,16,820,249544,20,8 ,16,820,249552,20,8 ,16,820,249560,20,8 ,16,820,249568,20,10 ,20,24987,24891106,340,0 ,16,820,249576,20,8 ,16,820,249584,20,9 ,16,820,249592,20,11 ,16,820,249600,20,11 ,17,923,8113924,32,0 ,17,923,7065348,72,0 ,45,15153,5492484,32,0 ,16,820,249608,20,8 ,16,820,249616,20,8 ,16,820,249624,20,9 ,16,820,249632,20,12 ,16,820,249640,20,9 ,16,820,249648,18,10 ,16,820,249656,20,8 ,16,820,249664,20,8 ,20,23786,21745474,120,0 ,20,22776,19648322,84,0 ,17,923,10211140,16,0 ,44,15152,773956,24,0 ,17,923,9686852,272,0 ,16,820,249672,20,8 ,16,820,249680,20,10 ,16,820,249688,18,8 ,16,820,249696,20,11 ,16,820,249704,20,8 ,16,820,249712,20,8 ,16,820,249720,20,8 ,16,820,249728,20,8 ,17,923,8638340,24,0 ,17,923,7589764,88,0 ,44,15152,1298308,32,0 ,16,820,249736,20,8 ,16,820,249744,20,11 ,16,820,249752,20,11 ,16,820,249760,20,8 ,16,820,249768,20,11 ,16,820,249776,20,9 ,16,820,249784,20,8 ,16,820,249792,20,11 ,20,24577,23842754,2560,0 ,20,25179,25415618,204,0 ,17,923,10211268,56,0 ,45,15153,4444100,16,0 ,45,15153,4968388,16,0 ,16,820,249800,20,11 ,16,820,249808,20,11 ,16,820,249816,20,8 ,16,820,249824,22,8 ,16,820,249832,18,9 ,16,820,249840,18,10 ,16,820,249848,20,9 ,16,820,249856,20,8 ,17,923,8114180,24,0 ,17,923,6541316,40,0 ,44,15152,774148,24,0 ,45,15153,5492740,16,0 ,16,820,249864,20,8 ,16,820,249872,20,8 ,16,820,249880,20,8 ,16,820,249888,18,8 ,20,16758,3919906,484,0 ,16,820,249896,20,8 ,16,820,249904,20,11 ,16,820,249912,20,39 ,16,820,249920,20,10 ,20,23104,20172866,220,0 ,20,19462,10211394,128,0 ,17,923,9162820,72,0 ,44,15152,1822788,24,0 ,45,15153,4444228,24,0 ,45,15153,4968516,16,0 ,17,923,8638532,24,0 ,16,820,249928,20,18 ,16,820,249936,22,9 ,16,820,249944,20,8 ,16,820,249952,20,8 ,20,18278,7589986,824,0 ,16,820,249960,20,9 ,16,820,249968,20,10 ,16,820,249976,18,10 ,16,820,249984,18,10 ,45,15153,5492868,32,0 ,44,15152,1298564,24,0 ,16,820,249992,18,10 ,16,820,250000,18,10 ,16,820,250008,18,10 ,16,820,250016,20,8 ,16,820,250024,20,9 ,16,820,250032,18,10 ,16,820,250040,18,8 ,16,820,250048,20,8 ,17,923,8114372,32,0 ,44,15152,250052,32,0 ,44,15152,774340,40,0 ,45,15153,4968644,24,0 ,16,820,250056,18,8 ,16,820,250064,22,11 ,16,820,250072,20,9 ,16,820,250080,20,8 ,20,16444,3395810,556,0 ,16,820,250088,20,9 ,16,820,250096,20,8 ,16,820,250104,20,9 ,16,820,250112,20,10 ,17,923,8638724,24,0 ,44,15152,1822980,232,0 ,45,15153,4444420,64,0 ,16,820,250120,20,9 ,16,820,250128,20,8 ,16,820,250136,20,8 ,16,820,250144,20,8 ,20,19750,10735906,540,0 ,16,820,250152,20,8 ,16,820,250160,20,8 ,16,820,250168,20,8 ,16,820,250176,20,9 ,44,15152,1298756,32,0 ,17,923,7065924,48,0 ,17,923,6541636,32,0 ,16,820,250184,20,8 ,16,820,250192,22,8 ,16,820,250200,22,8 ,16,820,250208,20,8 ,16,820,250216,20,13 ,16,820,250224,20,8 ,16,820,250232,20,11 ,16,820,250240,20,11 ,20,20067,11260290,12,0 ,17,923,10211716,32,0 ,45,15153,4968836,24,0 ,45,15153,5493124,64,0 ,16,820,250248,20,8 ,16,820,250256,20,8 ,16,820,250264,20,9 ,16,820,250272,20,8 ,16,820,250280,18,8 ,16,820,250288,20,8 ,16,820,250296,22,9 ,16,820,250304,20,8 ,20,25421,25940418,504,0 ,17,923,8638916,24,0 ,44,15152,2871748,32,0 ,44,15152,250308,256,0 ,17,923,8114628,32,0 ,16,820,250312,20,8 ,16,820,250320,20,8 ,16,820,250328,22,9 ,16,820,250336,20,10 ,20,24421,23319010,116,0 ,20,20068,11260386,380,0 ,20,22777,19648994,104,0 ,16,820,250344,20,8 ,16,820,250352,22,14 ,16,820,250360,22,11 ,16,820,250368,20,11 ,44,15152,774660,48,0 ,16,820,250376,20,8 ,16,820,250384,20,11 ,16,820,250392,20,11 ,16,820,250400,18,8 ,16,820,250408,18,8 ,16,820,250416,20,8 ,16,820,250424,20,11 ,16,820,250432,20,11 ,45,15153,4969028,360,0 ,17,923,7590468,40,0 ,17,923,6541892,32,0 ,44,15152,1299012,24,0 ,16,820,250440,20,9 ,16,820,250448,20,9 ,16,820,250456,20,9 ,16,820,250464,22,26 ,16,820,250472,22,9 ,16,820,250480,20,8 ,16,820,250488,20,8 ,16,820,250496,22,8 ,17,923,10211972,32,0 ,17,923,8639108,24,0 ,17,923,9163396,64,0 ,16,820,250504,22,11 ,16,820,250512,18,8 ,16,820,250520,20,8 ,16,820,250528,20,8 ,16,820,250536,22,8 ,16,820,250544,22,8 ,16,820,250552,20,11 ,16,820,250560,22,9 ,20,19163,9687746,116,0 ,17,923,8114884,32,0 ,17,923,7066308,48,0 ,44,15152,2872004,120,0 ,45,15153,3920580,32,0 ,16,820,250568,20,9 ,16,820,250576,20,10 ,16,820,250584,20,8 ,16,820,250592,22,8 ,16,820,250600,22,8 ,16,820,250608,20,11 ,16,820,250616,18,8 ,16,820,250624,20,9 ,20,23787,21746434,1300,0 ,45,15153,4444932,16,0 ,44,15152,1299204,24,0 ,16,820,250632,20,10 ,16,820,250640,20,12 ,16,820,250648,20,9 ,16,820,250656,20,8 ,16,820,250664,20,8 ,16,820,250672,20,8 ,16,820,250680,20,8 ,16,820,250688,20,11 ,20,21365,15979330,528,0 ,17,923,8639300,24,0 ,17,923,6542148,32,0 ,16,820,250696,18,8 ,16,820,250704,20,8 ,16,820,250712,18,8 ,16,820,250720,18,8 ,16,820,250728,18,8 ,16,820,250736,20,11 ,16,820,250744,18,8 ,16,820,250752,20,11 ,17,923,10212228,16,0 ,17,923,7590788,40,0 ,44,15152,775044,144,0 ,45,15153,4445060,56,0 ,45,15153,5493636,24,0 ,16,820,250760,22,9 ,16,820,250768,20,8 ,16,820,250776,20,8 ,16,820,250784,20,9 ,16,820,250792,20,9 ,16,820,250800,22,14 ,16,820,250808,20,8 ,16,820,250816,20,11 ,20,17583,6017986,104,0 ,17,923,8115140,32,0 ,44,15152,1299396,32,0 ,45,15153,3920836,32,0 ,16,820,250824,20,11 ,16,820,250832,20,11 ,16,820,250840,20,11 ,16,820,250848,20,11 ,16,820,250856,22,11 ,16,820,250864,20,8 ,16,820,250872,18,8 ,16,820,250880,20,8 ,17,923,10212356,32,0 ,17,923,8639492,24,0 ,16,820,250888,20,11 ,16,820,250896,20,11 ,16,820,250904,13,8 ,16,820,250912,13,8 ,16,820,250920,13,8 ,16,820,250928,13,8 ,16,820,250936,13,8 ,16,820,250944,13,8 ,20,19463,10212418,76,0 ,45,15153,5493828,24,0 ,17,923,7066692,24,0 ,17,923,6542404,48,0 ,44,15152,2348100,24,0 ,16,820,250952,13,8 ,16,820,250960,13,8 ,16,820,250968,13,8 ,16,820,250976,13,8 ,16,820,250984,13,8 ,16,820,250992,13,8 ,16,820,251000,13,8 ,16,820,251008,13,8 ,17,923,9163908,64,0 ,16,820,251016,13,8 ,16,820,251024,13,8 ,16,820,251032,13,8 ,16,820,251040,13,8 ,16,820,251048,13,8 ,16,820,251056,13,8 ,16,820,251064,13,8 ,16,820,251072,13,8 ,20,17010,4445378,156,0 ,17,923,8639684,16,0 ,17,923,7591108,32,0 ,44,15152,1299652,24,0 ,45,15153,3921092,24,0 ,17,923,8115396,32,0 ,16,820,251080,13,8 ,16,820,251088,13,8 ,16,820,251096,13,8 ,16,820,251104,13,8 ,16,820,251112,13,8 ,16,820,251120,13,8 ,16,820,251128,13,8 ,16,820,251136,13,8 ,17,923,10212612,40,0 ,17,923,7066884,56,0 ,44,15152,2348292,88,0 ,44,15152,3396868,40,0 ,45,15153,5494020,48,0 ,16,820,251144,13,8 ,16,820,251152,13,8 ,16,820,251160,13,8 ,16,820,251168,22,26 ,20,22778,19649826,96,0 ,16,820,251176,20,14 ,16,820,251184,20,12 ,16,820,251192,20,12 ,16,820,251200,15,8 ,17,923,8639812,24,0 ,45,15153,4445508,16,0 ,16,820,251208,20,13 ,16,820,251216,20,12 ,16,820,251224,20,14 ,16,820,251232,20,8 ,20,21577,16504162,12,0 ,16,820,251240,18,8 ,16,820,251248,22,11 ,16,820,251256,20,8 ,16,820,251264,20,12 ,20,24422,23319938,264,0 ,45,15153,3921284,16,0 ,44,15152,1299844,24,0 ,16,820,251272,20,12 ,16,820,251280,22,14 ,16,820,251288,20,14 ,16,820,251296,20,12 ,16,820,251304,20,15 ,16,820,251312,20,12 ,16,820,251320,20,12 ,16,820,251328,20,12 ,20,21578,16504258,152,0 ,17,923,8115652,32,0 ,17,923,7591364,40,0 ,17,923,6542788,48,0 ,45,15153,4445636,16,0 ,16,820,251336,20,10 ,16,820,251344,20,10 ,16,820,251352,20,10 ,16,820,251360,20,10 ,20,22571,19125730,292,0 ,16,820,251368,20,10 ,16,820,251376,20,10 ,16,820,251384,20,11 ,16,820,251392,20,11 ,17,923,8640004,24,0 ,45,15153,3921412,24,0 ,16,820,251400,22,14 ,16,820,251408,22,14 ,16,820,251416,15,8 ,16,820,251424,24,34 ,20,25180,25417250,396,0 ,16,820,251432,20,9 ,16,820,251440,20,12 ,16,820,251448,18,8 ,16,820,251456,15,8 ,20,23994,22271554,192,0 ,20,25971,27514434,144,0 ,20,21870,17028674,148,0 ,17,923,10212932,24,0 ,44,15152,1300036,24,0 ,44,15152,3397188,104,0 ,45,15153,4445764,16,0 ,16,820,251464,22,11 ,16,820,251472,20,10 ,16,820,251480,20,10 ,16,820,251488,20,10 ,20,19164,9688674,128,0 ,16,820,251496,20,10 ,16,820,251504,20,12 ,16,820,251512,20,10 ,16,820,251520,20,10 ,17,923,9164420,64,0 ,44,15152,2872964,88,0 ,45,15153,5494404,32,0 ,16,820,251528,20,10 ,16,820,251536,20,10 ,16,820,251544,20,11 ,16,820,251552,20,8 ,20,20219,12310178,424,0 ,20,19464,10213026,76,0 ,16,820,251560,22,16 ,16,820,251568,20,8 ,16,820,251576,20,8 ,16,820,251584,18,8 ,17,923,8640196,16,0 ,17,923,7067332,32,0 ,45,15153,3921604,24,0 ,45,15153,4445892,16,0 ,17,923,8115908,24,0 ,16,820,251592,20,9 ,16,820,251600,20,12 ,16,820,251608,15,8 ,16,820,251616,20,10 ,16,820,251624,20,10 ,16,820,251632,20,12 ,16,820,251640,20,10 ,16,820,251648,20,11 ,20,17584,6018818,152,0 ,17,923,10213124,40,0 ,17,923,7591684,48,0 ,44,15152,1300228,24,0 ,16,820,251656,22,10 ,16,820,251664,22,10 ,16,820,251672,26,17 ,16,820,251680,20,12 ,20,23105,20174626,196,0 ,16,820,251688,20,8 ,16,820,251696,15,8 ,16,820,251704,20,12 ,16,820,251712,15,8 ,17,923,8640324,24,0 ,17,923,6543172,32,0 ,45,15153,4446020,16,0 ,16,820,251720,20,12 ,16,820,251728,20,8 ,16,820,251736,20,11 ,16,820,251744,22,8 ,20,21010,15456098,12,0 ,16,820,251752,20,11 ,16,820,251760,22,8 ,16,820,251768,15,8 ,16,820,251776,20,10 ,17,923,8116100,32,0 ,45,15153,3921796,24,0 ,45,15153,5494660,40,0 ,16,820,251784,22,8 ,16,820,251792,20,12 ,16,820,251800,20,8 ,16,820,251808,20,10 ,16,820,251816,20,9 ,16,820,251824,20,9 ,16,820,251832,20,9 ,16,820,251840,22,18 ,20,21011,15456194,292,0 ,17,923,9689028,144,0 ,17,923,7067588,32,0 ,44,15152,2348996,24,0 ,44,15152,1300420,24,0 ,45,15153,4446148,16,0 ,16,820,251848,20,9 ,16,820,251856,20,13 ,16,820,251864,22,14 ,16,820,251872,20,17 ,16,820,251880,20,11 ,16,820,251888,20,11 ,16,820,251896,20,12 ,16,820,251904,20,10 ,17,923,8640516,24,0 ,44,15152,776196,24,0 ,16,820,251912,20,8 ,16,820,251920,20,8 ,16,820,251928,20,8 ,16,820,251936,20,8 ,20,22779,19650594,144,0 ,16,820,251944,24,9 ,16,820,251952,20,13 ,16,820,251960,24,11 ,16,820,251968,26,9 ,17,923,10213444,40,0 ,17,923,6543428,48,0 ,44,15152,1824836,48,0 ,45,15153,3921988,24,0 ,45,15153,4446276,24,0 ,16,820,251976,20,8 ,16,820,251984,20,8 ,16,820,251992,20,8 ,16,820,252000,20,8 ,16,820,252008,18,8 ,16,820,252016,24,9 ,16,820,252024,20,10 ,16,820,252032,20,10 ,17,923,9164932,64,0 ,17,923,7592068,48,0 ,44,15152,2349188,24,0 ,44,15152,1300612,24,0 ,17,923,8116356,32,0 ,16,820,252040,20,10 ,16,820,252048,20,9 ,16,820,252056,20,8 ,16,820,252064,20,12 ,20,18740,8640674,284,0 ,16,820,252072,20,8 ,16,820,252080,20,8 ,16,820,252088,20,8 ,16,820,252096,20,8 ,20,23401,20699330,572,0 ,17,923,8640708,24,0 ,17,923,7067844,32,0 ,44,15152,776388,96,0 ,45,15153,5494980,24,0 ,16,820,252104,20,8 ,16,820,252112,15,8 ,16,820,252120,24,10 ,16,820,252128,24,11 ,20,25574,26466530,368,0 ,16,820,252136,20,8 ,16,820,252144,20,8 ,16,820,252152,15,8 ,16,820,252160,20,11 ,20,19465,10213634,128,0 ,45,15153,4446468,40,0 ,45,15153,3922180,16,0 ,16,820,252168,20,10 ,16,820,252176,20,10 ,16,820,252184,20,10 ,16,820,252192,20,13 ,16,820,252200,20,10 ,16,820,252208,18,8 ,16,820,252216,18,8 ,16,820,252224,20,10 ,44,15152,1300804,24,0 ,44,15152,2873668,40,0 ,44,15152,2349380,24,0 ,16,820,252232,22,18 ,16,820,252240,18,8 ,16,820,252248,20,8 ,16,820,252256,20,8 ,16,820,252264,20,11 ,16,820,252272,20,11 ,16,820,252280,20,10 ,16,820,252288,20,8 ,20,24988,24893826,356,0 ,17,923,10213764,24,0 ,44,15152,3398020,56,0 ,45,15153,3922308,16,0 ,45,15153,5495172,88,0 ,17,923,8116612,32,0 ,17,923,8640900,24,0 ,16,820,252296,24,39 ,16,820,252304,22,10 ,16,820,252312,20,15 ,16,820,252320,20,10 ,20,17011,4446626,136,0 ,16,820,252328,20,10 ,16,820,252336,20,13 ,16,820,252344,24,12 ,16,820,252352,20,9 ,20,15686,1300930,128,0 ,44,15152,252356,64,0 ,17,923,7068100,24,0 ,17,923,6543812,48,0 ,44,15152,1825220,24,0 ,16,820,252360,24,14 ,16,820,252368,20,9 ,16,820,252376,20,12 ,16,820,252384,20,11 ,16,820,252392,20,10 ,16,820,252400,20,10 ,16,820,252408,20,11 ,16,820,252416,20,10 ,45,15153,3922436,16,0 ,17,923,7592452,40,0 ,44,15152,2349572,24,0 ,44,15152,1300996,24,0 ,16,820,252424,15,8 ,16,820,252432,20,10 ,16,820,252440,20,11 ,16,820,252448,22,12 ,20,24739,24369698,12,0 ,16,820,252456,20,8 ,16,820,252464,18,8 ,16,820,252472,18,8 ,16,820,252480,18,8 ,17,923,10213956,24,0 ,45,15153,4446788,56,0 ,17,923,8641092,16,0 ,16,820,252488,20,8 ,16,820,252496,20,9 ,16,820,252504,20,9 ,16,820,252512,20,12 ,20,19165,9689698,96,0 ,16,820,252520,20,11 ,16,820,252528,22,8 ,16,820,252536,20,10 ,16,820,252544,22,8 ,20,21579,16505474,204,0 ,20,24740,24369794,232,0 ,17,923,9165444,40,0 ,17,923,7068292,64,0 ,44,15152,2873988,48,0 ,44,15152,1825412,32,0 ,45,15153,3922564,16,0 ,17,923,8116868,32,0 ,16,820,252552,20,10 ,16,820,252560,18,8 ,16,820,252568,20,8 ,16,820,252576,20,12 ,16,820,252584,15,8 ,16,820,252592,20,8 ,16,820,252600,20,8 ,16,820,252608,22,25 ,20,25972,27515586,124,0 ,20,26330,28564162,164,0 ,17,923,8641220,16,0 ,44,15152,2349764,40,0 ,44,15152,1301188,128,0 ,16,820,252616,20,10 ,16,820,252624,24,8 ,16,820,252632,20,13 ,16,820,252640,22,12 ,20,21871,17029858,92,0 ,16,820,252648,20,11 ,16,820,252656,24,10 ,16,820,252664,20,13 ,16,820,252672,22,17 ,17,923,10214148,24,0 ,45,15153,3922692,16,0 ,16,820,252680,20,12 ,16,820,252688,20,10 ,16,820,252696,24,12 ,16,820,252704,15,8 ,16,820,252712,24,15 ,16,820,252720,20,9 ,16,820,252728,20,9 ,16,820,252736,20,13 ,17,923,8641348,16,0 ,17,923,7592772,40,0 ,17,923,6544196,56,0 ,44,15152,3398468,56,0 ,16,820,252744,15,8 ,16,820,252752,20,10 ,16,820,252760,20,9 ,16,820,252768,18,8 ,20,26173,28040034,384,0 ,16,820,252776,20,10 ,16,820,252784,20,10 ,16,820,252792,20,11 ,16,820,252800,22,12 ,17,923,8117124,32,0 ,44,15152,1825668,32,0 ,45,15153,3922820,16,0 ,16,820,252808,20,8 ,16,820,252816,20,16 ,16,820,252824,15,8 ,16,820,252832,20,12 ,16,820,252840,22,12 ,16,820,252848,20,10 ,16,820,252856,20,10 ,16,820,252864,20,12 ,20,17585,6020034,100,0 ,17,923,10214340,40,0 ,44,15152,252868,48,0 ,44,15152,777156,96,0 ,17,923,8641476,16,0 ,17,923,9165764,40,0 ,16,820,252872,20,10 ,16,820,252880,20,10 ,16,820,252888,20,12 ,16,820,252896,20,11 ,16,820,252904,20,12 ,16,820,252912,22,10 ,16,820,252920,20,10 ,16,820,252928,20,12 ,45,15153,4447236,16,0 ,44,15152,2874372,40,0 ,44,15152,2350084,24,0 ,45,15153,3922948,16,0 ,16,820,252936,22,10 ,16,820,252944,20,10 ,16,820,252952,20,10 ,16,820,252960,15,8 ,16,820,252968,20,16 ,16,820,252976,22,22 ,16,820,252984,20,10 ,16,820,252992,20,12 ,20,23995,22273090,92,0 ,17,923,9690180,144,0 ,45,15153,5495876,48,0 ,17,923,8641604,16,0 ,16,820,253000,20,10 ,16,820,253008,20,14 ,16,820,253016,22,11 ,16,820,253024,20,12 ,20,26445,29088866,1332,0 ,16,820,253032,15,8 ,16,820,253040,20,10 ,16,820,253048,22,13 ,16,820,253056,15,8 ,17,923,8117380,32,0 ,17,923,7593092,32,0 ,17,923,7068804,24,0 ,44,15152,1825924,56,0 ,45,15153,3923076,16,0 ,45,15153,4447364,16,0 ,16,820,253064,20,10 ,16,820,253072,20,12 ,16,820,253080,20,10 ,16,820,253088,20,9 ,20,22780,19651746,132,0 ,16,820,253096,15,8 ,16,820,253104,20,8 ,16,820,253112,15,8 ,16,820,253120,20,10 ,17,923,8641732,16,0 ,44,15152,2350276,64,0 ,16,820,253128,18,8 ,16,820,253136,20,10 ,16,820,253144,20,12 ,16,820,253152,20,12 ,16,820,253160,26,8 ,16,820,253168,20,16 ,16,820,253176,18,8 ,16,820,253184,20,9 ,20,19466,10214658,140,0 ,17,923,10214660,40,0 ,17,923,6544644,48,0 ,44,15152,3398916,40,0 ,45,15153,3923204,16,0 ,45,15153,4447492,16,0 ,17,923,9166084,40,0 ,16,820,253192,20,8 ,16,820,253200,20,9 ,16,820,253208,26,10 ,16,820,253216,22,8 ,16,820,253224,20,13 ,16,820,253232,20,8 ,16,820,253240,20,13 ,16,820,253248,20,8 ,20,23106,20176194,392,0 ,17,923,8641860,16,0 ,17,923,7068996,24,0 ,44,15152,2874692,72,0 ,44,15152,253252,32,0 ,16,820,253256,20,8 ,16,820,253264,22,8 ,16,820,253272,20,13 ,16,820,253280,22,9 ,20,19166,9690466,128,0 ,20,15429,777570,240,0 ,16,820,253288,20,13 ,16,820,253296,22,8 ,16,820,253304,20,13 ,16,820,253312,22,8 ,17,923,8117636,32,0 ,17,923,7593348,40,0 ,45,15153,3923332,16,0 ,45,15153,4447620,16,0 ,45,15153,4971908,168,0 ,16,820,253320,20,13 ,16,820,253328,22,8 ,16,820,253336,20,13 ,16,820,253344,22,10 ,16,820,253352,20,13 ,16,820,253360,22,8 ,16,820,253368,20,13 ,16,820,253376,22,10 ,20,24423,23322050,512,0 ,20,15687,1301954,196,0 ,20,20069,11263426,132,0 ,20,21872,17030594,24,0 ,17,923,8641988,16,0 ,45,15153,5496260,56,0 ,16,820,253384,20,8 ,16,820,253392,20,8 ,16,820,253400,20,8 ,16,820,253408,20,8 ,20,17012,4447714,320,0 ,16,820,253416,20,8 ,16,820,253424,20,8 ,16,820,253432,20,8 ,16,820,253440,20,8 ,20,17185,4972034,648,0 ,45,15153,4447748,32,0 ,17,923,7069188,24,0 ,45,15153,3923460,24,0 ,16,820,253448,20,8 ,16,820,253456,20,8 ,16,820,253464,20,13 ,16,820,253472,20,8 ,16,820,253480,20,8 ,16,820,253488,22,8 ,16,820,253496,22,8 ,16,820,253504,20,9 ,17,923,10214980,24,0 ,44,15152,1826372,176,0 ,44,15152,253508,56,0 ,44,15152,3399236,48,0 ,17,923,8642116,16,0 ,17,923,9166404,32,0 ,16,820,253512,20,13 ,16,820,253520,20,8 ,16,820,253528,22,10 ,16,820,253536,20,8 ,16,820,253544,20,8 ,16,820,253552,20,8 ,16,820,253560,20,8 ,16,820,253568,20,8 ,20,21873,17030786,556,0 ,17,923,8117892,40,0 ,17,923,6545028,48,0 ,16,820,253576,20,8 ,16,820,253584,20,8 ,16,820,253592,20,8 ,16,820,253600,20,8 ,20,25973,27516578,264,0 ,16,820,253608,20,8 ,16,820,253616,20,8 ,16,820,253624,20,8 ,16,820,253632,20,8 ,17,923,8642244,16,0 ,17,923,7593668,32,0 ,17,923,7069380,32,0 ,44,15152,2350788,40,0 ,44,15152,1302212,32,0 ,44,15152,777924,64,0 ,45,15153,3923652,24,0 ,16,820,253640,20,8 ,16,820,253648,20,8 ,16,820,253656,20,8 ,16,820,253664,20,8 ,20,17586,6020834,192,0 ,16,820,253672,20,8 ,16,820,253680,20,8 ,16,820,253688,20,8 ,16,820,253696,20,8 ,20,22572,19128066,116,0 ,17,923,10215172,24,0 ,45,15153,4448004,32,0 ,16,820,253704,20,8 ,16,820,253712,20,8 ,16,820,253720,20,8 ,16,820,253728,20,8 ,20,23996,22273826,424,0 ,16,820,253736,20,8 ,16,820,253744,20,8 ,16,820,253752,20,8 ,16,820,253760,20,8 ,20,16759,3923778,336,0 ,17,923,9166660,32,0 ,17,923,8642372,16,0 ,16,820,253768,20,8 ,16,820,253776,20,8 ,16,820,253784,20,8 ,16,820,253792,20,8 ,16,820,253800,20,8 ,16,820,253808,20,8 ,16,820,253816,20,8 ,16,820,253824,20,8 ,45,15153,5496708,32,0 ,44,15152,2875268,24,0 ,45,15153,3923844,16,0 ,16,820,253832,20,8 ,16,820,253840,20,8 ,16,820,253848,20,8 ,16,820,253856,20,8 ,20,24228,22798242,672,0 ,16,820,253864,20,8 ,16,820,253872,22,9 ,16,820,253880,20,13 ,16,820,253888,20,8 ,17,923,10215364,32,0 ,17,923,7593924,32,0 ,17,923,7069636,32,0 ,44,15152,1302468,24,0 ,44,15152,3399620,120,0 ,17,923,8118212,32,0 ,17,923,8642500,16,0 ,16,820,253896,20,8 ,16,820,253904,20,8 ,16,820,253912,22,8 ,16,820,253920,22,17 ,20,26331,28565474,308,0 ,16,820,253928,22,8 ,16,820,253936,20,13 ,16,820,253944,22,8 ,16,820,253952,20,13 ,45,15153,4448260,16,0 ,17,923,6545412,40,0 ,44,15152,2351108,560,0 ,44,15152,253956,88,0 ,45,15153,3923972,24,0 ,16,820,253960,22,8 ,16,820,253968,20,13 ,16,820,253976,20,8 ,16,820,253984,20,8 ,16,820,253992,22,8 ,16,820,254000,20,13 ,16,820,254008,22,8 ,16,820,254016,20,13 ,17,923,9166916,48,0 ,44,15152,2875460,72,0 ,17,923,8642628,24,0 ,16,820,254024,20,8 ,16,820,254032,22,9 ,16,820,254040,20,13 ,16,820,254048,22,8 ,16,820,254056,22,16 ,16,820,254064,22,8 ,16,820,254072,20,13 ,16,820,254080,20,8 ,45,15153,5496964,136,0 ,44,15152,1302660,24,0 ,45,15153,4448388,24,0 ,16,820,254088,20,10 ,16,820,254096,20,10 ,16,820,254104,20,8 ,16,820,254112,20,14 ,20,19000,9167010,128,0 ,16,820,254120,22,9 ,16,820,254128,15,8 ,16,820,254136,22,9 ,16,820,254144,26,9 ,20,22781,19652802,140,0 ,17,923,10215620,40,0 ,17,923,7594180,24,0 ,17,923,7069892,32,0 ,44,15152,778436,32,0 ,45,15153,3924164,16,0 ,17,923,8118468,24,0 ,17,923,9691332,32,0 ,16,820,254152,26,8 ,16,820,254160,18,8 ,16,820,254168,22,12 ,16,820,254176,20,12 ,20,21580,16507106,12,0 ,20,21012,15458530,160,0 ,16,820,254184,20,10 ,16,820,254192,22,13 ,16,820,254200,20,8 ,16,820,254208,20,8 ,17,923,8642820,24,0 ,16,820,254216,20,8 ,16,820,254224,20,8 ,16,820,254232,22,15 ,16,820,254240,20,16 ,16,820,254248,20,8 ,16,820,254256,20,12 ,16,820,254264,15,8 ,16,820,254272,22,11 ,20,21581,16507202,12,0 ,45,15153,4448580,16,0 ,17,923,6545732,40,0 ,44,15152,1302852,24,0 ,45,15153,3924292,16,0 ,16,820,254280,20,12 ,16,820,254288,18,8 ,16,820,254296,20,13 ,16,820,254304,20,10 ,20,19467,10215778,140,0 ,20,19167,9691490,484,0 ,16,820,254312,20,9 ,16,820,254320,22,25 ,16,820,254328,20,8 ,16,820,254336,24,9 ,20,18741,8642946,128,0 ,20,25422,25944450,24,0 ,17,923,8118660,40,0 ,17,923,7594372,32,0 ,16,820,254344,26,8 ,16,820,254352,24,10 ,16,820,254360,20,9 ,16,820,254368,20,9 ,20,21582,16507298,780,0 ,16,820,254376,20,8 ,16,820,254384,20,10 ,16,820,254392,20,13 ,16,820,254400,15,8 ,20,24741,24371650,1936,0 ,17,923,9691588,144,0 ,17,923,7070148,32,0 ,44,15152,778692,56,0 ,45,15153,3924420,16,0 ,45,15153,4448708,16,0 ,17,923,8643012,24,0 ,17,923,9167300,72,0 ,16,820,254408,22,17 ,16,820,254416,15,8 ,16,820,254424,20,10 ,16,820,254432,20,9 ,20,22093,18080226,320,0 ,20,20070,11264482,132,0 ,16,820,254440,20,9 ,16,820,254448,20,9 ,16,820,254456,20,9 ,16,820,254464,20,9 ,20,19751,10740226,812,0 ,17,923,10215940,24,0 ,44,15152,1303044,40,0 ,16,820,254472,20,12 ,16,820,254480,20,9 ,16,820,254488,20,11 ,16,820,254496,20,10 ,16,820,254504,20,10 ,16,820,254512,20,10 ,16,820,254520,20,11 ,16,820,254528,20,11 ,20,16445,3400258,128,0 ,20,25423,25944642,24,0 ,45,15153,4448836,16,0 ,45,15153,3924548,16,0 ,16,820,254536,20,10 ,16,820,254544,20,11 ,16,820,254552,22,15 ,16,820,254560,22,16 ,16,820,254568,15,8 ,16,820,254576,24,8 ,16,820,254584,24,8 ,16,820,254592,20,8 ,20,25181,25420418,204,0 ,17,923,8643204,24,0 ,17,923,7594628,40,0 ,17,923,6546052,40,0 ,44,15152,2876036,216,0 ,16,820,254600,20,8 ,16,820,254608,15,8 ,16,820,254616,20,8 ,16,820,254624,20,10 ,20,22573,19128994,76,0 ,16,820,254632,20,9 ,16,820,254640,20,8 ,16,820,254648,20,10 ,16,820,254656,20,9 ,17,923,10216132,40,0 ,17,923,7070404,40,0 ,44,15152,254660,32,0 ,45,15153,3924676,24,0 ,45,15153,4448964,24,0 ,45,15153,4973252,32,0 ,17,923,8118980,32,0 ,16,820,254664,20,10 ,16,820,254672,20,9 ,16,820,254680,20,12 ,16,820,254688,20,12 ,16,820,254696,20,11 ,16,820,254704,20,12 ,16,820,254712,20,12 ,16,820,254720,15,8 ,20,25424,25944834,24,0 ,16,820,254728,20,12 ,16,820,254736,20,8 ,16,820,254744,20,13 ,16,820,254752,24,8 ,16,820,254760,22,14 ,16,820,254768,24,9 ,16,820,254776,22,8 ,16,820,254784,20,8 ,17,923,8643396,24,0 ,44,15152,1303364,24,0 ,16,820,254792,20,16 ,16,820,254800,20,20 ,16,820,254808,20,10 ,16,820,254816,15,8 ,16,820,254824,15,8 ,16,820,254832,24,9 ,16,820,254840,20,10 ,16,820,254848,15,8 ,45,15153,4449156,48,0 ,44,15152,779140,88,0 ,44,15152,3400580,112,0 ,45,15153,3924868,48,0 ,16,820,254856,20,12 ,16,820,254864,22,11 ,16,820,254872,20,8 ,16,820,254880,20,9 ,16,820,254888,20,9 ,16,820,254896,20,12 ,16,820,254904,20,10 ,16,820,254912,24,9 ,20,21366,15983554,112,0 ,20,25425,25945026,24,0 ,17,923,8119236,32,0 ,17,923,7594948,32,0 ,17,923,6546372,40,0 ,44,15152,1827780,120,0 ,44,15152,254916,24,0 ,45,15153,4973508,56,0 ,16,820,254920,21,24 ,16,820,254928,22,13 ,16,820,254936,22,12 ,16,820,254944,22,12 ,20,20220,12313570,3912,0 ,20,15688,1303522,196,0 ,16,820,254952,22,10 ,16,820,254960,20,11 ,16,820,254968,26,8 ,16,820,254976,20,11 ,17,923,10216452,24,0 ,17,923,7070724,24,0 ,44,15152,1303556,848,0 ,17,923,8643588,24,0 ,17,923,9167876,64,0 ,16,820,254984,20,9 ,16,820,254992,22,12 ,16,820,255000,22,11 ,16,820,255008,20,13 ,16,820,255016,26,11 ,16,820,255024,20,12 ,16,820,255032,22,30 ,16,820,255040,15,8 ,16,820,255048,15,8 ,16,820,255056,18,8 ,16,820,255064,20,8 ,16,820,255072,20,8 ,20,25575,26469474,52,0 ,16,820,255080,22,16 ,16,820,255088,20,10 ,16,820,255096,15,8 ,16,820,255104,20,11 ,20,25426,25945218,24,0 ,44,15152,255108,24,0 ,16,820,255112,20,13 ,16,820,255120,15,8 ,16,820,255128,15,8 ,16,820,255136,20,8 ,20,19001,9168034,48,0 ,20,24989,24896674,188,0 ,16,820,255144,26,11 ,16,820,255152,20,11 ,16,820,255160,15,8 ,16,820,255168,20,12 ,17,923,10216644,32,0 ,17,923,7595204,40,0 ,17,923,7070916,24,0 ,45,15153,5498052,88,0 ,17,923,8119492,24,0 ,17,923,8643780,24,0 ,16,820,255176,20,12 ,16,820,255184,20,13 ,16,820,255192,22,12 ,16,820,255200,22,10 ,20,17587,6022370,168,0 ,20,15430,779490,252,0 ,16,820,255208,15,8 ,16,820,255216,20,11 ,16,820,255224,20,12 ,16,820,255232,20,14 ,20,22574,19129602,224,0 ,45,15153,4449540,16,0 ,17,923,6546692,40,0 ,45,15153,3925252,32,0 ,16,820,255240,20,11 ,16,820,255248,26,15 ,16,820,255256,24,8 ,16,820,255264,24,8 ,20,22782,19653922,80,0 ,16,820,255272,24,15 ,16,820,255280,20,9 ,16,820,255288,20,10 ,16,820,255296,20,11 ,20,25427,25945410,52,0 ,44,15152,255300,32,0 ,16,820,255304,15,8 ,16,820,255312,20,10 ,16,820,255320,18,8 ,16,820,255328,18,8 ,16,820,255336,20,8 ,16,820,255344,22,10 ,16,820,255352,20,9 ,16,820,255360,22,8 ,20,18742,8643970,184,0 ,17,923,8643972,24,0 ,17,923,7071108,24,0 ,45,15153,4449668,16,0 ,45,15153,4973956,64,0 ,17,923,8119684,32,0 ,16,820,255368,15,8 ,16,820,255376,20,10 ,16,820,255384,15,8 ,16,820,255392,20,11 ,16,820,255400,24,8 ,16,820,255408,20,10 ,16,820,255416,20,8 ,16,820,255424,20,9 ,20,19468,10216898,216,0 ,17,923,10216900,40,0 ,16,820,255432,20,8 ,16,820,255440,20,10 ,16,820,255448,24,14 ,16,820,255456,20,9 ,20,21013,15459810,120,0 ,16,820,255464,24,8 ,16,820,255472,20,11 ,16,820,255480,20,12 ,16,820,255488,15,8 ,20,20071,11265538,300,0 ,20,25576,26469890,332,0 ,20,18082,7071234,12,0 ,17,923,9168388,40,0 ,17,923,7595524,48,0 ,45,15153,3925508,24,0 ,45,15153,4449796,32,0 ,16,820,255496,15,8 ,16,820,255504,24,8 ,16,820,255512,20,11 ,16,820,255520,20,12 ,20,19002,9168418,64,0 ,16,820,255528,20,11 ,16,820,255536,15,8 ,16,820,255544,20,10 ,16,820,255552,20,11 ,20,16446,3401282,468,0 ,17,923,9692740,272,0 ,17,923,7071300,40,0 ,17,923,6547012,48,0 ,44,15152,255556,24,0 ,44,15152,779844,24,0 ,17,923,8644164,24,0 ,16,820,255560,24,10 ,16,820,255568,24,9 ,16,820,255576,21,18 ,16,820,255584,20,11 ,20,18083,7071330,52,0 ,16,820,255592,22,11 ,16,820,255600,15,8 ,16,820,255608,20,8 ,16,820,255616,20,14 ,17,923,8119940,24,0 ,16,820,255624,26,12 ,16,820,255632,22,11 ,16,820,255640,20,9 ,16,820,255648,18,8 ,20,18532,8119970,836,0 ,16,820,255656,20,8 ,16,820,255664,20,11 ,16,820,255672,20,11 ,16,820,255680,20,12 ,45,15153,3925700,24,0 ,16,820,255688,26,10 ,16,820,255696,20,14 ,16,820,255704,20,12 ,16,820,255712,15,8 ,20,25428,25945826,96,0 ,20,25974,27518690,320,0 ,16,820,255720,20,8 ,16,820,255728,20,8 ,16,820,255736,15,8 ,16,820,255744,15,8 ,17,923,10217220,24,0 ,44,15152,255748,24,0 ,44,15152,780036,32,0 ,44,15152,3401476,24,0 ,45,15153,4450052,32,0 ,17,923,8644356,24,0 ,16,820,255752,20,11 ,16,820,255760,22,8 ,16,820,255768,15,8 ,16,820,255776,20,10 ,16,820,255784,22,9 ,16,820,255792,15,8 ,16,820,255800,20,10 ,16,820,255808,22,8 ,20,21367,15984450,548,0 ,20,17786,6547266,208,0 ,17,923,9168708,56,0 ,17,923,8120132,24,0 ,16,820,255816,15,8 ,16,820,255824,20,11 ,16,820,255832,22,10 ,16,820,255840,15,8 ,20,26174,28043106,152,0 ,16,820,255848,20,11 ,16,820,255856,20,8 ,16,820,255864,20,11 ,16,820,255872,22,9 ,45,15153,5498756,72,0 ,17,923,7595908,32,0 ,17,923,7071620,32,0 ,44,15152,1828740,144,0 ,45,15153,3925892,32,0 ,45,15153,4974468,40,0 ,16,820,255880,21,21 ,16,820,255888,20,13 ,16,820,255896,20,17 ,16,820,255904,20,8 ,20,22783,19654562,96,0 ,16,820,255912,20,8 ,16,820,255920,22,27 ,16,820,255928,15,8 ,16,820,255936,20,11 ,17,923,10217412,24,0 ,17,923,6547396,40,0 ,44,15152,255940,24,0 ,44,15152,3401668,24,0 ,17,923,8644548,24,0 ,16,820,255944,18,8 ,16,820,255952,20,10 ,16,820,255960,20,11 ,16,820,255968,21,10 ,20,17013,4450274,228,0 ,16,820,255976,20,18 ,16,820,255984,20,15 ,16,820,255992,21,10 ,16,820,256000,24,8 ,20,18084,7071746,52,0 ,17,923,8120324,24,0 ,44,15152,780292,24,0 ,45,15153,4450308,72,0 ,16,820,256008,26,8 ,16,820,256016,24,9 ,16,820,256024,18,8 ,16,820,256032,20,10 ,20,19003,9168930,172,0 ,16,820,256040,18,8 ,16,820,256048,26,14 ,16,820,256056,18,8 ,16,820,256064,24,10 ,16,820,256072,18,8 ,16,820,256080,20,8 ,16,820,256088,24,9 ,16,820,256096,20,9 ,16,820,256104,24,12 ,16,820,256112,26,59 ,16,820,256120,15,8 ,16,820,256128,24,10 ,20,25752,26994818,476,0 ,17,923,10217604,32,0 ,17,923,7596164,32,0 ,17,923,7071876,40,0 ,44,15152,256132,8,0 ,44,15152,3401860,24,0 ,45,15153,3926148,40,0 ,17,923,8644740,24,0 ,16,820,256136,20,11 ,16,820,256144,24,8 ,16,820,256152,20,12 ,16,820,256160,24,12 ,16,820,256168,20,11 ,16,820,256176,22,30 ,16,820,256184,20,8 ,16,820,256192,14,8 ,17,923,8120516,24,0 ,44,15152,256196,24,0 ,44,15152,780484,32,0 ,45,15153,4974788,32,0 ,16,820,256200,15,8 ,16,820,256208,20,14 ,16,820,256216,22,30 ,16,820,256224,14,8 ,20,25182,25422050,24,0 ,16,820,256232,20,32 ,16,820,256240,20,14 ,16,820,256248,20,10 ,16,820,256256,26,51 ,17,923,9169156,48,0 ,17,923,6547716,40,0 ,16,820,256264,22,11 ,16,820,256272,14,8 ,16,820,256280,14,8 ,16,820,256288,20,11 ,16,820,256296,26,26 ,16,820,256304,24,9 ,16,820,256312,20,8 ,16,820,256320,20,10 ,17,923,8644932,24,0 ,44,15152,2877764,256,0 ,44,15152,3402052,48,0 ,16,820,256328,20,11 ,16,820,256336,24,10 ,16,820,256344,20,8 ,16,820,256352,20,10 ,16,820,256360,24,10 ,16,820,256368,24,10 ,16,820,256376,26,12 ,16,820,256384,26,14 ,20,23107,20179330,384,0 ,20,26332,28567938,92,0 ,17,923,10217860,16,0 ,17,923,7596420,32,0 ,44,15152,256388,32,0 ,17,923,8120708,32,0 ,16,820,256392,20,11 ,16,820,256400,20,11 ,16,820,256408,20,8 ,16,820,256416,20,8 ,20,21014,15460770,256,0 ,20,25183,25422242,24,0 ,20,18085,7072162,836,0 ,16,820,256424,20,12 ,16,820,256432,15,8 ,16,820,256440,24,15 ,16,820,256448,20,9 ,20,16760,3926466,288,0 ,45,15153,5499332,296,0 ,17,923,7072196,40,0 ,44,15152,780740,64,0 ,45,15153,3926468,16,0 ,45,15153,4975044,24,0 ,16,820,256456,20,8 ,16,820,256464,20,8 ,16,820,256472,20,10 ,16,820,256480,20,8 ,20,25429,25946594,24,0 ,16,820,256488,18,8 ,16,820,256496,20,10 ,16,820,256504,18,9 ,16,820,256512,26,15 ,20,15689,1305090,52,0 ,17,923,10217988,48,0 ,17,923,8645124,16,0 ,16,820,256520,21,9 ,16,820,256528,15,8 ,16,820,256536,25,18 ,16,820,256544,21,9 ,20,18279,7596578,48,0 ,20,17588,6023714,1648,0 ,16,820,256552,21,17 ,16,820,256560,21,16 ,16,820,256568,23,15 ,16,820,256576,23,14 ,45,15153,4450884,24,0 ,17,923,6548036,40,0 ,45,15153,3926596,16,0 ,16,820,256584,21,14 ,16,820,256592,21,14 ,16,820,256600,21,8 ,16,820,256608,21,11 ,20,25184,25422434,24,0 ,16,820,256616,21,8 ,16,820,256624,21,11 ,16,820,256632,21,8 ,16,820,256640,25,12 ,20,24990,24898178,924,0 ,17,923,9169540,56,0 ,17,923,7596676,16,0 ,44,15152,256644,24,0 ,45,15153,4975236,40,0 ,17,923,8120964,32,0 ,17,923,8645252,24,0 ,16,820,256648,21,9 ,16,820,256656,25,12 ,16,820,256664,21,9 ,16,820,256672,21,9 ,20,23402,20703906,864,0 ,20,25430,25946786,68,0 ,20,20284,12839586,1612,0 ,20,22784,19655330,116,0 ,16,820,256680,21,9 ,16,820,256688,21,11 ,16,820,256696,21,14 ,16,820,256704,25,12 ,45,15153,3926724,16,0 ,44,15152,3402436,40,0 ,16,820,256712,21,9 ,16,820,256720,21,9 ,16,820,256728,21,11 ,16,820,256736,21,10 ,16,820,256744,21,10 ,16,820,256752,21,10 ,16,820,256760,21,10 ,16,820,256768,21,11 ,45,15153,4451076,16,0 ,17,923,7596804,40,0 ,17,923,7072516,32,0 ,16,820,256776,21,11 ,16,820,256784,21,10 ,16,820,256792,23,12 ,16,820,256800,21,12 ,20,25185,25422626,200,0 ,16,820,256808,21,10 ,16,820,256816,21,13 ,16,820,256824,21,10 ,16,820,256832,21,9 ,20,18743,8645442,284,0 ,17,923,8645444,24,0 ,44,15152,256836,24,0 ,45,15153,3926852,16,0 ,16,820,256840,21,14 ,16,820,256848,21,8 ,16,820,256856,21,8 ,16,820,256864,21,11 ,16,820,256872,21,8 ,16,820,256880,21,8 ,16,820,256888,21,14 ,16,820,256896,21,8 ,17,923,10218372,24,0 ,17,923,6548356,48,0 ,45,15153,4451204,32,0 ,17,923,8121220,24,0 ,16,820,256904,21,16 ,16,820,256912,21,8 ,16,820,256920,15,8 ,16,820,256928,21,8 ,20,18280,7596962,40,0 ,20,15690,1305506,68,0 ,16,820,256936,23,17 ,16,820,256944,21,12 ,16,820,256952,21,12 ,16,820,256960,21,10 ,45,15153,4975556,24,0 ,44,15152,781252,32,0 ,45,15153,3926980,16,0 ,16,820,256968,23,11 ,16,820,256976,23,17 ,16,820,256984,23,13 ,16,820,256992,21,10 ,20,22094,18082786,100,0 ,16,820,257000,21,10 ,16,820,257008,23,12 ,16,820,257016,21,10 ,16,820,257024,21,11 ,20,22575,19131394,60,0 ,17,923,8645636,24,0 ,17,923,7072772,24,0 ,44,15152,1829892,32,0 ,44,15152,257028,16,0 ,44,15152,3402756,144,0 ,16,820,257032,21,10 ,16,820,257040,23,10 ,16,820,257048,21,10 ,16,820,257056,21,10 ,20,26175,28044322,624,0 ,16,820,257064,21,10 ,16,820,257072,23,12 ,16,820,257080,21,10 ,16,820,257088,21,11 ,17,923,10218564,24,0 ,17,923,7597124,24,0 ,45,15153,3927108,40,0 ,17,923,8121412,24,0 ,17,923,9169988,64,0 ,16,820,257096,23,15 ,16,820,257104,21,10 ,16,820,257112,21,8 ,16,820,257120,25,16 ,20,23997,22277218,140,0 ,20,26333,28568674,2960,0 ,16,820,257128,25,12 ,16,820,257136,21,10 ,16,820,257144,21,11 ,16,820,257152,21,11 ,20,19469,10218626,80,0 ,45,15153,4975748,48,0 ,44,15152,257156,32,0 ,45,15153,4451460,80,0 ,16,820,257160,21,8 ,16,820,257168,23,9 ,16,820,257176,15,8 ,16,820,257184,21,8 ,16,820,257192,23,10 ,16,820,257200,15,8 ,16,820,257208,25,12 ,16,820,257216,21,9 ,20,15431,781506,24,0 ,20,25431,25947330,48,0 ,17,923,8645828,24,0 ,17,923,7072964,64,0 ,44,15152,781508,32,0 ,16,820,257224,21,10 ,16,820,257232,25,17 ,16,820,257240,21,9 ,16,820,257248,21,11 ,20,18281,7597282,1040,0 ,16,820,257256,15,8 ,16,820,257264,25,28 ,16,820,257272,21,9 ,16,820,257280,15,8 ,17,923,10218756,40,0 ,17,923,7597316,40,0 ,17,923,6548740,40,0 ,44,15152,1830148,120,0 ,17,923,8121604,32,0 ,16,820,257288,25,15 ,16,820,257296,21,9 ,16,820,257304,21,10 ,16,820,257312,15,8 ,16,820,257320,25,25 ,16,820,257328,21,9 ,16,820,257336,21,10 ,16,820,257344,23,11 ,16,820,257352,15,8 ,16,820,257360,25,39 ,16,820,257368,21,9 ,16,820,257376,23,8 ,16,820,257384,21,8 ,16,820,257392,27,10 ,16,820,257400,27,12 ,16,820,257408,27,13 ,20,19004,9170306,944,0 ,20,15432,781698,12,0 ,17,923,8646020,24,0 ,44,15152,257412,16,0 ,45,15153,3927428,16,0 ,16,820,257416,21,23 ,16,820,257424,14,8 ,16,820,257432,15,8 ,16,820,257440,21,8 ,16,820,257448,21,9 ,16,820,257456,21,12 ,16,820,257464,21,9 ,16,820,257472,23,9 ,20,24424,23326146,396,0 ,20,15691,1306050,348,0 ,20,17787,6548930,136,0 ,44,15152,781764,144,0 ,16,820,257480,27,16 ,16,820,257488,21,10 ,16,820,257496,21,8 ,16,820,257504,21,8 ,20,22576,19131874,64,0 ,20,15433,781794,176,0 ,16,820,257512,15,8 ,16,820,257520,15,8 ,16,820,257528,25,9 ,16,820,257536,21,9 ,17,923,8121860,40,0 ,44,15152,257540,160,0 ,45,15153,3927556,16,0 ,45,15153,4976132,24,0 ,16,820,257544,21,9 ,16,820,257552,25,13 ,16,820,257560,21,8 ,16,820,257568,14,8 ,16,820,257576,21,8 ,16,820,257584,21,8 ,16,820,257592,21,11 ,16,820,257600,23,14 ,20,22785,19656258,128,0 ,20,25432,25947714,44,0 ,17,923,10219076,40,0 ,17,923,7597636,40,0 ,17,923,6549060,40,0 ,17,923,8646212,24,0 ,17,923,9170500,96,0 ,16,820,257608,27,23 ,16,820,257616,19,9 ,16,820,257624,27,13 ,16,820,257632,21,9 ,16,820,257640,21,9 ,16,820,257648,27,17 ,16,820,257656,25,13 ,16,820,257664,25,13 ,45,15153,3927684,16,0 ,16,820,257672,27,16 ,16,820,257680,15,8 ,16,820,257688,27,35 ,16,820,257696,23,12 ,16,820,257704,21,11 ,16,820,257712,14,8 ,16,820,257720,21,9 ,16,820,257728,21,9 ,17,923,9694916,144,0 ,17,923,7073476,40,0 ,45,15153,4976324,24,0 ,16,820,257736,15,8 ,16,820,257744,27,11 ,16,820,257752,23,10 ,16,820,257760,23,9 ,16,820,257768,14,8 ,16,820,257776,23,9 ,16,820,257784,21,9 ,16,820,257792,15,8 ,20,22095,18083586,24,0 ,20,17014,4452098,156,0 ,20,19470,10219266,128,0 ,17,923,8646404,24,0 ,45,15153,3927812,32,0 ,45,15153,4452100,16,0 ,16,820,257800,21,10 ,16,820,257808,21,11 ,16,820,257816,21,12 ,16,820,257824,21,11 ,16,820,257832,21,12 ,16,820,257840,25,18 ,16,820,257848,21,9 ,16,820,257856,21,9 ,17,923,8122180,24,0 ,16,820,257864,21,12 ,16,820,257872,21,10 ,16,820,257880,15,8 ,16,820,257888,25,13 ,20,20072,11267938,80,0 ,16,820,257896,21,9 ,16,820,257904,23,20 ,16,820,257912,25,15 ,16,820,257920,21,9 ,17,923,10219396,48,0 ,17,923,7597956,32,0 ,17,923,6549380,48,0 ,45,15153,4452228,16,0 ,45,15153,4976516,16,0 ,16,820,257928,21,9 ,16,820,257936,23,12 ,16,820,257944,15,8 ,16,820,257952,23,10 ,20,25433,25948066,992,0 ,16,820,257960,21,10 ,16,820,257968,23,10 ,16,820,257976,23,13 ,16,820,257984,21,11 ,20,22096,18083778,24,0 ,17,923,8646596,24,0 ,16,820,257992,15,8 ,16,820,258000,21,12 ,16,820,258008,21,12 ,16,820,258016,21,12 ,20,22577,19132386,72,0 ,20,21874,17035234,24,0 ,16,820,258024,21,12 ,16,820,258032,21,10 ,16,820,258040,21,13 ,16,820,258048,21,10 ,17,923,8122372,24,0 ,17,923,7073796,40,0 ,45,15153,3928068,24,0 ,45,15153,4452356,16,0 ,45,15153,4976644,24,0 ,16,820,258056,21,8 ,16,820,258064,21,11 ,16,820,258072,21,12 ,16,820,258080,15,8 ,16,820,258088,23,11 ,16,820,258096,21,10 ,16,820,258104,25,10 ,16,820,258112,21,11 ,16,820,258120,23,11 ,16,820,258128,27,12 ,16,820,258136,23,10 ,16,820,258144,15,8 ,20,25577,26472546,320,0 ,16,820,258152,25,9 ,16,820,258160,27,9 ,16,820,258168,25,8 ,16,820,258176,21,14 ,20,22097,18083970,24,0 ,20,19168,9695362,344,0 ,17,923,8646788,24,0 ,17,923,7598212,24,0 ,44,15152,3403908,32,0 ,45,15153,4452484,16,0 ,16,820,258184,25,10 ,16,820,258192,21,10 ,16,820,258200,25,9 ,16,820,258208,21,10 ,20,21875,17035426,64,0 ,16,820,258216,25,10 ,16,820,258224,25,9 ,16,820,258232,15,8 ,16,820,258240,15,8 ,20,23998,22278338,300,0 ,17,923,8122564,40,0 ,44,15152,1831108,40,0 ,45,15153,3928260,40,0 ,45,15153,4976836,16,0 ,16,820,258248,25,18 ,16,820,258256,21,9 ,16,820,258264,15,8 ,16,820,258272,21,10 ,20,25975,27521250,96,0 ,16,820,258280,27,12 ,16,820,258288,25,13 ,16,820,258296,25,9 ,16,820,258304,25,10 ,17,923,10219780,32,0 ,17,923,6549764,40,0 ,45,15153,4452612,24,0 ,16,820,258312,21,8 ,16,820,258320,25,18 ,16,820,258328,21,9 ,16,820,258336,21,9 ,16,820,258344,21,11 ,16,820,258352,21,11 ,16,820,258360,21,9 ,16,820,258368,21,8 ,20,22098,18084162,24,0 ,17,923,9171268,40,0 ,17,923,7598404,56,0 ,17,923,7074116,24,0 ,44,15152,2879812,64,0 ,45,15153,4976964,24,0 ,17,923,8646980,24,0 ,16,820,258376,21,8 ,16,820,258384,21,14 ,16,820,258392,21,14 ,16,820,258400,25,12 ,20,25186,25424226,432,0 ,16,820,258408,21,9 ,16,820,258416,15,8 ,16,820,258424,25,20 ,16,820,258432,21,9 ,44,15152,3404164,48,0 ,44,15152,2355588,280,0 ,16,820,258440,21,10 ,16,820,258448,21,9 ,16,820,258456,21,8 ,16,820,258464,15,8 ,20,21015,15462818,56,0 ,16,820,258472,21,13 ,16,820,258480,21,11 ,16,820,258488,25,8 ,16,820,258496,21,9 ,45,15153,4452804,24,0 ,16,820,258504,21,8 ,16,820,258512,21,8 ,16,820,258520,21,8 ,16,820,258528,15,8 ,20,20073,11268578,12,0 ,16,820,258536,27,12 ,16,820,258544,21,9 ,16,820,258552,22,8 ,16,820,258560,21,22 ,20,22099,18084354,24,0 ,20,17788,6550018,336,0 ,17,923,10220036,16,0 ,17,923,7074308,24,0 ,44,15152,1831428,24,0 ,45,15153,3928580,64,0 ,45,15153,4977156,24,0 ,17,923,8122884,24,0 ,17,923,8647172,24,0 ,16,820,258568,21,8 ,16,820,258576,21,10 ,16,820,258584,21,8 ,16,820,258592,19,8 ,20,22578,19132962,356,0 ,16,820,258600,27,16 ,16,820,258608,25,8 ,16,820,258616,27,19 ,16,820,258624,21,8 ,20,22786,19657282,160,0 ,20,17186,4977218,620,0 ,20,20074,11268674,64,0 ,44,15152,782916,96,0 ,17,923,6550084,40,0 ,16,820,258632,21,9 ,16,820,258640,21,9 ,16,820,258648,22,13 ,16,820,258656,21,12 ,16,820,258664,21,10 ,16,820,258672,21,15 ,16,820,258680,21,15 ,16,820,258688,21,14 ,17,923,10220164,40,0 ,45,15153,4452996,64,0 ,17,923,9171588,48,0 ,16,820,258696,21,11 ,16,820,258704,15,8 ,16,820,258712,23,10 ,16,820,258720,23,10 ,20,21876,17035938,72,0 ,16,820,258728,15,8 ,16,820,258736,21,8 ,16,820,258744,26,24 ,16,820,258752,21,11 ,20,22100,18084546,24,0 ,20,16761,3928770,172,0 ,17,923,8647364,24,0 ,17,923,7074500,32,0 ,44,15152,1831620,24,0 ,45,15153,4977348,32,0 ,17,923,8123076,40,0 ,16,820,258760,21,21 ,16,820,258768,21,12 ,16,820,258776,21,9 ,16,820,258784,19,8 ,16,820,258792,21,10 ,16,820,258800,21,10 ,16,820,258808,21,10 ,16,820,258816,21,10 ,20,19471,10220290,76,0 ,45,15153,5501700,24,0 ,17,923,7598852,40,0 ,44,15152,258820,32,0 ,44,15152,3404548,32,0 ,16,820,258824,21,10 ,16,820,258832,21,10 ,16,820,258840,21,10 ,16,820,258848,21,10 ,16,820,258856,21,8 ,16,820,258864,21,10 ,16,820,258872,21,10 ,16,820,258880,21,10 ,17,923,9696068,144,0 ,44,15152,2880324,160,0 ,16,820,258888,15,8 ,16,820,258896,15,8 ,16,820,258904,15,8 ,16,820,258912,15,8 ,20,21016,15463266,456,0 ,20,15434,783202,372,0 ,16,820,258920,15,8 ,16,820,258928,15,8 ,16,820,258936,15,8 ,16,820,258944,15,8 ,20,22101,18084738,24,0 ,17,923,8647556,24,0 ,17,923,6550404,40,0 ,44,15152,1831812,64,0 ,16,820,258952,21,10 ,16,820,258960,21,10 ,16,820,258968,21,10 ,16,820,258976,21,8 ,16,820,258984,21,8 ,16,820,258992,21,8 ,16,820,259000,21,8 ,16,820,259008,21,11 ,17,923,10220484,32,0 ,17,923,7074756,24,0 ,45,15153,4977604,48,0 ,45,15153,5501892,32,0 ,16,820,259016,21,10 ,16,820,259024,21,10 ,16,820,259032,21,10 ,16,820,259040,15,8 ,20,17015,4453346,136,0 ,20,25976,27522018,592,0 ,16,820,259048,15,8 ,16,820,259056,21,8 ,16,820,259064,21,8 ,16,820,259072,21,8 ,17,923,9171972,48,0 ,44,15152,259076,40,0 ,44,15152,3404804,24,0 ,45,15153,3929092,16,0 ,17,923,8123396,32,0 ,16,820,259080,21,9 ,16,820,259088,21,9 ,16,820,259096,19,8 ,16,820,259104,15,8 ,20,18744,8647714,196,0 ,16,820,259112,21,8 ,16,820,259120,21,11 ,16,820,259128,21,11 ,16,820,259136,15,8 ,20,22102,18084930,24,0 ,20,20075,11269186,12,0 ,17,923,8647748,16,0 ,17,923,7599172,48,0 ,16,820,259144,15,8 ,16,820,259152,15,8 ,16,820,259160,15,8 ,16,820,259168,17,8 ,16,820,259176,15,8 ,16,820,259184,17,8 ,16,820,259192,15,8 ,16,820,259200,15,8 ,45,15153,4453508,16,0 ,17,923,7074948,24,0 ,45,15153,3929220,16,0 ,16,820,259208,15,8 ,16,820,259216,15,8 ,16,820,259224,15,8 ,16,820,259232,15,8 ,20,24229,22803618,228,0 ,20,20076,11269282,132,0 ,16,820,259240,15,8 ,16,820,259248,15,8 ,16,820,259256,15,8 ,16,820,259264,15,8 ,17,923,10220740,40,0 ,17,923,6550724,48,0 ,44,15152,3404996,40,0 ,45,15153,5502148,32,0 ,17,923,8647876,16,0 ,16,820,259272,15,8 ,16,820,259280,15,8 ,16,820,259288,15,8 ,16,820,259296,15,8 ,20,21877,17036514,908,0 ,20,16447,3405026,12,0 ,16,820,259304,15,8 ,16,820,259312,15,8 ,16,820,259320,15,8 ,16,820,259328,15,8 ,20,22103,18085122,24,0 ,17,923,8123652,40,0 ,45,15153,3929348,16,0 ,45,15153,4453636,32,0 ,16,820,259336,15,8 ,16,820,259344,15,8 ,16,820,259352,15,8 ,16,820,259360,15,8 ,16,820,259368,15,8 ,16,820,259376,17,8 ,16,820,259384,15,8 ,16,820,259392,15,8 ,20,16448,3405122,588,0 ,17,923,8648004,16,0 ,17,923,7075140,24,0 ,44,15152,259396,24,0 ,44,15152,783684,24,0 ,45,15153,4977988,40,0 ,16,820,259400,15,8 ,16,820,259408,15,8 ,16,820,259416,15,8 ,16,820,259424,15,8 ,20,19472,10220898,216,0 ,16,820,259432,15,8 ,16,820,259440,17,8 ,16,820,259448,15,8 ,16,820,259456,15,8 ,20,23108,20182402,300,0 ,17,923,9172356,48,0 ,44,15152,1832324,32,0 ,45,15153,3929476,24,0 ,16,820,259464,15,8 ,16,820,259472,15,8 ,16,820,259480,15,8 ,16,820,259488,15,8 ,16,820,259496,17,8 ,16,820,259504,15,8 ,16,820,259512,17,8 ,16,820,259520,15,8 ,20,22104,18085314,24,0 ,17,923,8648132,16,0 ,17,923,7599556,24,0 ,45,15153,5502404,24,0 ,16,820,259528,17,8 ,16,820,259536,17,8 ,16,820,259544,15,8 ,16,820,259552,15,8 ,16,820,259560,15,8 ,16,820,259568,15,8 ,16,820,259576,15,8 ,16,820,259584,19,8 ,17,923,10221060,48,0 ,17,923,7075332,40,0 ,44,15152,259588,16,0 ,44,15152,783876,24,0 ,44,15152,3405316,24,0 ,45,15153,4453892,16,0 ,16,820,259592,17,8 ,16,820,259600,17,8 ,16,820,259608,15,8 ,16,820,259616,15,8 ,16,820,259624,15,8 ,16,820,259632,15,8 ,16,820,259640,15,8 ,16,820,259648,17,8 ,17,923,8648260,16,0 ,17,923,6551108,32,0 ,45,15153,3929668,16,0 ,17,923,8123972,24,0 ,16,820,259656,15,8 ,16,820,259664,15,8 ,16,820,259672,17,8 ,16,820,259680,15,8 ,16,820,259688,15,8 ,16,820,259696,17,8 ,16,820,259704,19,8 ,16,820,259712,19,8 ,20,22105,18085506,24,0 ,45,15153,5502596,16,0 ,17,923,7599748,16,0 ,44,15152,1832580,32,0 ,44,15152,259716,72,0 ,45,15153,4454020,16,0 ,45,15153,4978308,32,0 ,16,820,259720,15,8 ,16,820,259728,19,8 ,16,820,259736,19,8 ,16,820,259744,15,8 ,16,820,259752,15,8 ,16,820,259760,15,8 ,16,820,259768,15,8 ,16,820,259776,15,8 ,17,923,8648388,16,0 ,44,15152,784068,32,0 ,44,15152,3405508,24,0 ,45,15153,3929796,32,0 ,16,820,259784,15,8 ,16,820,259792,15,8 ,16,820,259800,15,8 ,16,820,259808,15,8 ,16,820,259816,15,8 ,16,820,259824,17,8 ,16,820,259832,15,8 ,16,820,259840,15,8 ,17,923,9172740,40,0 ,17,923,7599876,32,0 ,45,15153,4454148,24,0 ,45,15153,5502724,24,0 ,17,923,8124164,32,0 ,16,820,259848,15,8 ,16,820,259856,17,8 ,16,820,259864,19,8 ,16,820,259872,15,8 ,16,820,259880,15,8 ,16,820,259888,15,8 ,16,820,259896,17,8 ,16,820,259904,15,8 ,20,22787,19658562,100,0 ,20,22106,18085698,24,0 ,17,923,8648516,16,0 ,17,923,7075652,48,0 ,17,923,6551364,24,0 ,16,820,259912,15,8 ,16,820,259920,19,8 ,16,820,259928,15,8 ,16,820,259936,15,8 ,20,25753,26998626,268,0 ,16,820,259944,17,9 ,16,820,259952,17,9 ,16,820,259960,15,8 ,16,820,259968,17,8 ,17,923,10221444,32,0 ,44,15152,1832836,24,0 ,44,15152,3405700,88,0 ,45,15153,4978564,56,0 ,16,820,259976,17,8 ,16,820,259984,15,8 ,16,820,259992,15,8 ,16,820,260000,17,8 ,16,820,260008,15,8 ,16,820,260016,15,8 ,16,820,260024,15,8 ,16,820,260032,15,8 ,17,923,9697220,144,0 ,44,15152,784324,24,0 ,45,15153,3930052,16,0 ,45,15153,4454340,24,0 ,45,15153,5502916,48,0 ,17,923,8648644,16,0 ,16,820,260040,15,8 ,16,820,260048,17,8 ,16,820,260056,15,8 ,16,820,260064,15,8 ,16,820,260072,15,8 ,16,820,260080,15,8 ,16,820,260088,15,8 ,16,820,260096,15,8 ,20,22107,18085890,24,0 ,17,923,8124420,24,0 ,17,923,7600132,16,0 ,17,923,6551556,32,0 ,16,820,260104,17,9 ,16,820,260112,17,8 ,16,820,260120,17,9 ,16,820,260128,15,8 ,20,17016,4454434,816,0 ,20,16762,3930146,84,0 ,16,820,260136,15,8 ,16,820,260144,15,8 ,16,820,260152,19,8 ,16,820,260160,15,8 ,17,923,9173060,48,0 ,44,15152,2881604,64,0 ,44,15152,1833028,56,0 ,45,15153,3930180,32,0 ,17,923,8648772,16,0 ,16,820,260168,15,8 ,16,820,260176,17,8 ,16,820,260184,15,8 ,16,820,260192,17,8 ,20,21368,15988834,604,0 ,16,820,260200,19,8 ,16,820,260208,15,8 ,16,820,260216,15,8 ,16,820,260224,17,8 ,17,923,10221700,24,0 ,17,923,7600260,24,0 ,44,15152,784516,24,0 ,45,15153,4454532,48,0 ,16,820,260232,17,8 ,16,820,260240,17,8 ,16,820,260248,18,8 ,16,820,260256,17,8 ,20,15692,1308834,428,0 ,16,820,260264,17,8 ,16,820,260272,17,8 ,16,820,260280,15,8 ,16,820,260288,15,8 ,20,22108,18086082,24,0 ,20,20077,11270338,136,0 ,17,923,8648900,16,0 ,17,923,7076036,40,0 ,44,15152,260292,32,0 ,17,923,8124612,80,0 ,16,820,260296,15,8 ,16,820,260304,15,8 ,16,820,260312,15,8 ,16,820,260320,15,8 ,16,820,260328,15,8 ,16,820,260336,15,8 ,16,820,260344,15,8 ,16,820,260352,15,8 ,17,923,6551812,32,0 ,16,820,260360,15,8 ,16,820,260368,15,8 ,16,820,260376,15,8 ,16,820,260384,15,8 ,16,820,260392,15,8 ,16,820,260400,15,8 ,16,820,260408,15,8 ,16,820,260416,15,8 ,17,923,10221892,24,0 ,17,923,7600452,32,0 ,44,15152,784708,40,0 ,45,15153,3930436,40,0 ,45,15153,4979012,56,0 ,45,15153,5503300,24,0 ,17,923,8649028,16,0 ,16,820,260424,15,8 ,16,820,260432,15,8 ,16,820,260440,15,8 ,16,820,260448,15,8 ,16,820,260456,15,8 ,16,820,260464,15,8 ,16,820,260472,15,8 ,16,820,260480,15,8 ,20,22109,18086274,80,0 ,16,820,260488,15,8 ,16,820,260496,15,8 ,16,820,260504,15,8 ,16,820,260512,15,8 ,16,820,260520,15,8 ,16,820,260528,15,8 ,16,820,260536,18,8 ,16,820,260544,15,8 ,17,923,9173444,64,0 ,44,15152,260548,80,0 ,17,923,8649156,16,0 ,16,820,260552,15,8 ,16,820,260560,15,8 ,16,820,260568,15,8 ,16,820,260576,15,8 ,16,820,260584,15,8 ,16,820,260592,15,8 ,16,820,260600,15,8 ,16,820,260608,15,8 ,20,21583,16513538,224,0 ,17,923,10222084,24,0 ,17,923,7076356,48,0 ,17,923,6552068,32,0 ,44,15152,1833476,8,0 ,45,15153,4454916,32,0 ,45,15153,5503492,24,0 ,16,820,260616,15,8 ,16,820,260624,15,8 ,16,820,260632,15,8 ,16,820,260640,17,8 ,20,24425,23329314,232,0 ,20,23999,22280738,124,0 ,16,820,260648,15,8 ,16,820,260656,15,8 ,16,820,260664,15,8 ,16,820,260672,15,8 ,20,18745,8649282,908,0 ,17,923,8649284,16,0 ,17,923,7600708,40,0 ,44,15152,2882116,32,0 ,44,15152,2357828,80,0 ,44,15152,1833540,32,0 ,44,15152,3406404,32,0 ,16,820,260680,15,8 ,16,820,260688,17,8 ,16,820,260696,15,8 ,16,820,260704,15,8 ,20,22788,19659362,108,0 ,20,25578,26475106,444,0 ,16,820,260712,15,8 ,16,820,260720,15,8 ,16,820,260728,15,8 ,16,820,260736,15,8 ,45,15153,3930756,16,0 ,44,15152,785028,32,0 ,16,820,260744,15,8 ,16,820,260752,15,8 ,16,820,260760,15,8 ,16,820,260768,15,8 ,16,820,260776,15,8 ,16,820,260784,15,8 ,16,820,260792,19,8 ,16,820,260800,17,8 ,20,20159,11795138,760,0 ,20,16763,3930818,12,0 ,17,923,10222276,32,0 ,45,15153,5503684,16,0 ,17,923,8649412,16,0 ,16,820,260808,15,8 ,16,820,260816,20,8 ,16,820,260824,15,8 ,16,820,260832,18,8 ,16,820,260840,18,8 ,16,820,260848,15,8 ,16,820,260856,15,8 ,16,820,260864,15,8 ,45,15153,4979460,32,0 ,17,923,6552324,40,0 ,45,15153,3930884,32,0 ,45,15153,4455172,24,0 ,16,820,260872,15,8 ,16,820,260880,15,8 ,16,820,260888,15,8 ,16,820,260896,15,8 ,20,16764,3930914,48,0 ,16,820,260904,15,8 ,16,820,260912,15,8 ,16,820,260920,15,8 ,16,820,260928,16,8 ,20,19169,9698114,408,0 ,17,923,8649540,16,0 ,44,15152,2882372,88,0 ,44,15152,1833796,32,0 ,44,15152,3406660,40,0 ,45,15153,5503812,32,0 ,17,923,8125252,40,0 ,16,820,260936,16,8 ,16,820,260944,15,8 ,16,820,260952,16,8 ,16,820,260960,15,8 ,20,19752,10746722,124,0 ,16,820,260968,15,8 ,16,820,260976,15,8 ,16,820,260984,20,8 ,16,820,260992,20,8 ,44,15152,785284,24,0 ,17,923,7601028,24,0 ,17,923,7076740,32,0 ,16,820,261000,20,8 ,16,820,261008,15,8 ,16,820,261016,15,8 ,16,820,261024,15,8 ,20,23788,21756834,1908,0 ,16,820,261032,15,8 ,16,820,261040,16,8 ,16,820,261048,15,8 ,16,820,261056,16,8 ,20,24230,22805442,700,0 ,17,923,10222532,24,0 ,45,15153,4455364,24,0 ,17,923,8649668,16,0 ,17,923,9173956,64,0 ,16,820,261064,15,8 ,16,820,261072,15,8 ,16,820,261080,18,8 ,16,820,261088,18,8 ,16,820,261096,15,8 ,16,820,261104,15,8 ,16,820,261112,15,8 ,16,820,261120,18,8 ,20,22110,18086914,224,0 ,45,15153,4979716,72,0 ,45,15153,3931140,32,0 ,16,820,261128,16,8 ,16,820,261136,15,8 ,16,820,261144,18,8 ,16,820,261152,18,8 ,20,19473,10222626,80,0 ,16,820,261160,18,8 ,16,820,261168,18,8 ,16,820,261176,18,8 ,16,820,261184,16,8 ,17,923,9698372,32,0 ,17,923,7601220,32,0 ,17,923,6552644,48,0 ,44,15152,1834052,32,0 ,44,15152,261188,272,0 ,44,15152,785476,24,0 ,45,15153,5504068,32,0 ,17,923,8649796,16,0 ,16,820,261192,18,8 ,16,820,261200,18,8 ,16,820,261208,18,8 ,16,820,261216,18,8 ,16,820,261224,18,8 ,16,820,261232,16,8 ,16,820,261240,17,8 ,16,820,261248,18,9 ,20,17789,6552706,88,0 ,17,923,10222724,24,0 ,17,923,7076996,40,0 ,44,15152,3406980,64,0 ,45,15153,4455556,72,0 ,17,923,8125572,48,0 ,16,820,261256,18,10 ,16,820,261264,18,9 ,16,820,261272,18,8 ,16,820,261280,18,8 ,20,16765,3931298,140,0 ,16,820,261288,15,8 ,16,820,261296,15,8 ,16,820,261304,15,8 ,16,820,261312,15,8 ,17,923,8649924,16,0 ,44,15152,2358468,104,0 ,16,820,261320,18,8 ,16,820,261328,18,8 ,16,820,261336,18,8 ,16,820,261344,18,8 ,16,820,261352,18,8 ,16,820,261360,18,8 ,16,820,261368,18,8 ,16,820,261376,18,8 ,20,20078,11271426,64,0 ,45,15153,3931396,16,0 ,44,15152,785668,24,0 ,16,820,261384,18,8 ,16,820,261392,18,8 ,16,820,261400,18,8 ,16,820,261408,18,8 ,16,820,261416,18,8 ,16,820,261424,18,8 ,16,820,261432,18,8 ,16,820,261440,18,8 ,20,22579,19135810,1212,0 ,17,923,10222916,24,0 ,17,923,7601476,32,0 ,44,15152,1834308,48,0 ,45,15153,5504324,16,0 ,17,923,8650052,16,0 ,17,923,9698628,40,0 ,16,820,261448,18,8 ,16,820,261456,18,8 ,16,820,261464,18,8 ,16,820,261472,18,8 ,16,820,261480,18,9 ,16,820,261488,18,9 ,16,820,261496,18,8 ,16,820,261504,15,8 ,45,15153,3931524,24,0 ,16,820,261512,18,8 ,16,820,261520,18,8 ,16,820,261528,17,8 ,16,820,261536,18,8 ,16,820,261544,17,8 ,16,820,261552,17,8 ,16,820,261560,17,8 ,16,820,261568,18,8 ,20,22789,19660226,100,0 ,17,923,9174468,24,0 ,17,923,7077316,40,0 ,17,923,6553028,32,0 ,44,15152,785860,16,0 ,45,15153,5504452,32,0 ,17,923,8650180,16,0 ,16,820,261576,18,8 ,16,820,261584,18,8 ,16,820,261592,15,8 ,16,820,261600,15,8 ,20,22385,18611682,64,0 ,16,820,261608,15,8 ,16,820,261616,15,8 ,16,820,261624,15,8 ,16,820,261632,15,8 ,20,24000,22281730,128,0 ,17,923,10223108,24,0 ,44,15152,2883076,440,0 ,17,923,8125956,40,0 ,16,820,261640,15,8 ,16,820,261648,15,8 ,16,820,261656,15,8 ,16,820,261664,15,8 ,16,820,261672,15,8 ,16,820,261680,16,8 ,16,820,261688,17,8 ,16,820,261696,19,8 ,17,923,8650308,16,0 ,17,923,7601732,24,0 ,44,15152,785988,32,0 ,45,15153,3931716,24,0 ,45,15153,4980292,40,0 ,16,820,261704,15,8 ,16,820,261712,15,8 ,16,820,261720,15,8 ,16,820,261728,15,8 ,16,820,261736,15,8 ,16,820,261744,15,8 ,16,820,261752,18,8 ,16,820,261760,18,8 ,17,923,9698948,80,0 ,44,15152,1310340,24,0 ,44,15152,3407492,24,0 ,17,923,9174660,64,0 ,16,820,261768,18,8 ,16,820,261776,18,8 ,16,820,261784,18,9 ,16,820,261792,17,8 ,20,19474,10223266,108,0 ,16,820,261800,15,8 ,16,820,261808,15,8 ,16,820,261816,15,8 ,16,820,261824,15,8 ,17,923,10223300,24,0 ,17,923,6553284,40,0 ,44,15152,1834692,24,0 ,45,15153,4456132,32,0 ,45,15153,5504708,24,0 ,17,923,8650436,16,0 ,16,820,261832,15,8 ,16,820,261840,15,8 ,16,820,261848,17,8 ,16,820,261856,15,8 ,20,23109,20184802,184,0 ,20,25187,25427682,468,0 ,16,820,261864,17,8 ,16,820,261872,17,8 ,16,820,261880,15,8 ,16,820,261888,17,8 ,20,20079,11271938,9976,0 ,20,15435,786178,80,0 ,45,15153,3931908,16,0 ,17,923,7601924,32,0 ,17,923,7077636,56,0 ,16,820,261896,15,8 ,16,820,261904,17,8 ,16,820,261912,15,8 ,16,820,261920,15,8 ,16,820,261928,15,8 ,16,820,261936,15,8 ,16,820,261944,18,8 ,16,820,261952,15,8 ,20,19753,10747714,12,0 ,20,17790,6553410,136,0 ,17,923,8650564,16,0 ,44,15152,1310532,24,0 ,44,15152,786244,24,0 ,44,15152,3407684,32,0 ,17,923,8126276,40,0 ,16,820,261960,15,8 ,16,820,261968,15,8 ,16,820,261976,15,8 ,16,820,261984,15,8 ,16,820,261992,15,8 ,16,820,262000,15,8 ,16,820,262008,15,8 ,16,820,262016,15,8 ,17,923,10223492,24,0 ,44,15152,1834884,24,0 ,45,15153,3932036,40,0 ,45,15153,4980612,24,0 ,45,15153,5504900,24,0 ,16,820,262024,15,8 ,16,820,262032,15,8 ,16,820,262040,15,8 ,16,820,262048,15,8 ,20,19754,10747810,12,0 ,20,26176,28049314,660,0 ,16,820,262056,15,8 ,16,820,262064,15,8 ,16,820,262072,15,8 ,16,820,262080,18,8 ,20,25754,27000770,300,0 ,17,923,8650692,16,0 ,45,15153,4456388,16,0 ,16,820,262088,18,8 ,16,820,262096,18,8 ,16,820,262104,18,8 ,16,820,262112,18,8 ,20,22386,18612194,224,0 ,16,820,262120,15,8 ,16,820,262128,15,8 ,16,820,262136,15,8 ,16,820,262144,15,8 ,20,19755,10747906,52,0 ,44,15152,786436,64,0 ,17,923,7602180,24,0 ,17,923,6553604,40,0 ,44,15152,2359300,96,0 ,44,15152,1310724,24,0 ,16,820,262152,15,8 ,16,820,262160,18,8 ,16,820,262168,18,8 ,16,820,262176,18,8 ,16,820,262184,18,8 ,16,820,262192,20,8 ,16,820,262200,18,8 ,16,820,262208,18,8 ,17,923,10223684,32,0 ,44,15152,1835076,24,0 ,44,15152,3407940,32,0 ,45,15153,4456516,16,0 ,45,15153,4980804,16,0 ,45,15153,5505092,40,0 ,17,923,8650820,16,0 ,16,820,262216,18,8 ,16,820,262224,15,8 ,16,820,262232,15,8 ,16,820,262240,18,8 ,16,820,262248,18,8 ,16,820,262256,15,8 ,16,820,262264,15,8 ,16,820,262272,18,8 ,17,923,9175172,24,0 ,17,923,8126596,32,0 ,16,820,262280,18,8 ,16,820,262288,18,8 ,16,820,262296,18,8 ,16,820,262304,15,8 ,16,820,262312,18,8 ,16,820,262320,18,8 ,16,820,262328,18,8 ,16,820,262336,18,8 ,20,18533,8126658,12,0 ,17,923,8650948,16,0 ,17,923,7602372,56,0 ,17,923,7078084,48,0 ,44,15152,1310916,128,0 ,45,15153,3932356,24,0 ,45,15153,4456644,16,0 ,45,15153,4980932,24,0 ,16,820,262344,15,8 ,16,820,262352,18,8 ,16,820,262360,18,8 ,16,820,262368,18,8 ,20,22790,19661026,72,0 ,16,820,262376,18,8 ,16,820,262384,18,8 ,16,820,262392,18,8 ,16,820,262400,18,8 ,20,21584,16515330,204,0 ,20,16766,3932418,48,0 ,17,923,9699588,144,0 ,44,15152,1835268,32,0 ,16,820,262408,15,8 ,16,820,262416,16,8 ,16,820,262424,16,8 ,16,820,262432,15,8 ,20,18534,8126754,104,0 ,16,820,262440,18,8 ,16,820,262448,18,8 ,16,820,262456,18,8 ,16,820,262464,16,8 ,17,923,10223940,24,0 ,17,923,6553924,40,0 ,44,15152,3408196,32,0 ,45,15153,4456772,64,0 ,17,923,8651076,32,0 ,17,923,9175364,32,0 ,16,820,262472,18,8 ,16,820,262480,18,8 ,16,820,262488,18,8 ,16,820,262496,18,8 ,20,24426,23331170,144,0 ,16,820,262504,16,8 ,16,820,262512,18,8 ,16,820,262520,18,8 ,16,820,262528,16,8 ,20,15436,786818,56,0 ,17,923,8126852,40,0 ,45,15153,3932548,24,0 ,45,15153,4981124,16,0 ,45,15153,5505412,32,0 ,16,820,262536,18,8 ,16,820,262544,17,8 ,16,820,262552,15,8 ,16,820,262560,18,8 ,20,21017,15466914,160,0 ,20,19756,10748322,128,0 ,16,820,262568,18,8 ,16,820,262576,18,8 ,16,820,262584,15,8 ,16,820,262592,15,8 ,16,820,262600,15,8 ,16,820,262608,15,8 ,16,820,262616,15,8 ,16,820,262624,15,8 ,16,820,262632,15,8 ,16,820,262640,15,8 ,16,820,262648,15,8 ,16,820,262656,18,8 ,20,24001,22282754,148,0 ,20,19475,10224130,80,0 ,17,923,10224132,40,0 ,44,15152,1835524,320,0 ,44,15152,786948,32,0 ,45,15153,4981252,48,0 ,16,820,262664,15,8 ,16,820,262672,15,8 ,16,820,262680,15,8 ,16,820,262688,15,8 ,16,820,262696,15,8 ,16,820,262704,18,8 ,16,820,262712,15,8 ,16,820,262720,15,8 ,17,923,9175620,72,0 ,17,923,7078468,40,0 ,44,15152,3408452,16,0 ,45,15153,3932740,16,0 ,17,923,8651332,24,0 ,16,820,262728,15,8 ,16,820,262736,20,8 ,16,820,262744,20,8 ,16,820,262752,20,8 ,16,820,262760,18,8 ,16,820,262768,18,8 ,16,820,262776,18,8 ,16,820,262784,20,8 ,20,16767,3932802,136,0 ,45,15153,5505668,32,0 ,17,923,7602820,32,0 ,17,923,6554244,32,0 ,16,820,262792,20,10 ,16,820,262800,20,8 ,16,820,262808,18,8 ,16,820,262816,20,8 ,16,820,262824,20,8 ,16,820,262832,20,8 ,16,820,262840,18,8 ,16,820,262848,15,8 ,17,923,8127172,40,0 ,44,15152,3408580,48,0 ,45,15153,3932868,32,0 ,16,820,262856,16,8 ,16,820,262864,15,8 ,16,820,262872,15,8 ,16,820,262880,15,8 ,16,820,262888,15,8 ,16,820,262896,15,8 ,16,820,262904,15,8 ,16,820,262912,18,9 ,20,22111,18088706,308,0 ,17,923,8651524,24,0 ,44,15152,2360068,64,0 ,44,15152,787204,176,0 ,16,820,262920,15,8 ,16,820,262928,16,8 ,16,820,262936,16,8 ,16,820,262944,16,8 ,20,22791,19661602,100,0 ,16,820,262952,16,8 ,16,820,262960,16,8 ,16,820,262968,16,8 ,16,820,262976,16,8 ,20,15437,787266,208,0 ,17,923,10224452,48,0 ,45,15153,4457284,104,0 ,16,820,262984,15,8 ,16,820,262992,15,8 ,16,820,263000,15,8 ,16,820,263008,15,8 ,16,820,263016,16,8 ,16,820,263024,15,8 ,16,820,263032,16,8 ,16,820,263040,18,8 ,20,17791,6554498,136,0 ,45,15153,5505924,32,0 ,17,923,7603076,40,0 ,17,923,7078788,24,0 ,17,923,6554500,40,0 ,45,15153,4981636,16,0 ,16,820,263048,18,8 ,16,820,263056,18,8 ,16,820,263064,16,8 ,16,820,263072,16,8 ,16,820,263080,16,8 ,16,820,263088,15,8 ,16,820,263096,15,8 ,16,820,263104,18,8 ,20,18086,7078850,1104,0 ,17,923,8651716,32,0 ,45,15153,3933124,40,0 ,16,820,263112,15,8 ,16,820,263120,16,8 ,16,820,263128,18,8 ,16,820,263136,15,8 ,16,820,263144,18,8 ,16,820,263152,18,8 ,16,820,263160,15,8 ,16,820,263168,15,8 ,17,923,8127492,24,0 ,45,15153,4981764,16,0 ,16,820,263176,18,8 ,16,820,263184,16,8 ,16,820,263192,15,8 ,16,820,263200,15,8 ,16,820,263208,15,8 ,16,820,263216,15,8 ,16,820,263224,18,8 ,16,820,263232,18,8 ,44,15152,3408964,24,0 ,17,923,7078980,24,0 ,16,820,263240,15,8 ,16,820,263248,15,8 ,16,820,263256,18,8 ,16,820,263264,15,8 ,20,18535,8127586,212,0 ,16,820,263272,15,8 ,16,820,263280,18,8 ,16,820,263288,18,8 ,16,820,263296,15,8 ,20,19476,10224770,80,0 ,17,923,9176196,72,0 ,45,15153,4981892,24,0 ,45,15153,5506180,32,0 ,16,820,263304,15,8 ,16,820,263312,15,8 ,16,820,263320,15,8 ,16,820,263328,15,8 ,20,23110,20186274,176,0 ,16,820,263336,15,8 ,16,820,263344,15,8 ,16,820,263352,15,8 ,16,820,263360,15,8 ,17,923,10224836,48,0 ,17,923,7603396,24,0 ,17,923,6554820,24,0 ,44,15152,1311940,32,0 ,44,15152,263364,56,0 ,17,923,8127684,24,0 ,17,923,8651972,24,0 ,16,820,263368,15,8 ,16,820,263376,15,8 ,16,820,263384,16,8 ,16,820,263392,15,8 ,16,820,263400,15,8 ,16,820,263408,15,8 ,16,820,263416,15,8 ,16,820,263424,15,8 ,45,15153,3933444,24,0 ,17,923,7079172,48,0 ,44,15152,2360580,56,0 ,44,15152,3409156,88,0 ,16,820,263432,15,8 ,16,820,263440,15,8 ,16,820,263448,15,8 ,16,820,263456,16,8 ,16,820,263464,15,8 ,16,820,263472,15,8 ,16,820,263480,16,8 ,16,820,263488,15,8 ,45,15153,4982084,16,0 ,16,820,263496,15,8 ,16,820,263504,15,8 ,16,820,263512,16,8 ,16,820,263520,16,8 ,16,820,263528,15,8 ,16,820,263536,15,8 ,16,820,263544,15,8 ,16,820,263552,15,8 ,17,923,9700740,80,0 ,17,923,7603588,24,0 ,17,923,6555012,32,0 ,45,15153,5506436,32,0 ,17,923,8127876,104,0 ,17,923,8652164,24,0 ,16,820,263560,15,8 ,16,820,263568,16,8 ,16,820,263576,15,8 ,16,820,263584,15,8 ,20,23403,20710818,376,0 ,20,17187,4982178,12,0 ,20,19757,10749346,620,0 ,16,820,263592,15,8 ,16,820,263600,15,8 ,16,820,263608,15,8 ,16,820,263616,15,8 ,45,15153,4982212,16,0 ,44,15152,1312196,48,0 ,45,15153,3933636,40,0 ,16,820,263624,15,8 ,16,820,263632,16,8 ,16,820,263640,16,8 ,16,820,263648,15,8 ,20,24427,23332322,284,0 ,16,820,263656,15,8 ,16,820,263664,15,8 ,16,820,263672,15,8 ,16,820,263680,15,8 ,20,17188,4982274,60,0 ,20,26446,29099522,440,0 ,20,15693,1312258,216,0 ,16,820,263688,15,8 ,16,820,263696,16,8 ,16,820,263704,15,8 ,16,820,263712,16,8 ,16,820,263720,15,8 ,16,820,263728,15,8 ,16,820,263736,15,8 ,16,820,263744,15,8 ,20,22792,19662402,108,0 ,17,923,10225220,48,0 ,17,923,7603780,56,0 ,45,15153,4982340,32,0 ,17,923,8652356,24,0 ,16,820,263752,15,8 ,16,820,263760,16,8 ,16,820,263768,15,8 ,16,820,263776,15,8 ,20,25977,27526754,136,0 ,16,820,263784,16,8 ,16,820,263792,15,8 ,16,820,263800,15,8 ,16,820,263808,15,8 ,45,15153,5506692,24,0 ,17,923,7079556,48,0 ,17,923,6555268,24,0 ,44,15152,263812,32,0 ,45,15153,4458116,32,0 ,16,820,263816,15,8 ,16,820,263824,16,8 ,16,820,263832,16,8 ,16,820,263840,15,8 ,20,24002,22283938,36,0 ,20,21018,15468194,244,0 ,16,820,263848,16,8 ,16,820,263856,15,8 ,16,820,263864,15,8 ,16,820,263872,15,8 ,20,16768,3933890,136,0 ,17,923,9176772,24,0 ,44,15152,2361028,32,0 ,16,820,263880,16,8 ,16,820,263888,15,8 ,16,820,263896,15,8 ,16,820,263904,15,8 ,20,22387,18613986,1096,0 ,16,820,263912,15,8 ,16,820,263920,15,8 ,16,820,263928,16,8 ,16,820,263936,15,8 ,20,19477,10225410,216,0 ,17,923,8652548,24,0 ,45,15153,3933956,64,0 ,16,820,263944,15,8 ,16,820,263952,15,8 ,16,820,263960,15,8 ,16,820,263968,15,8 ,16,820,263976,15,8 ,16,820,263984,19,8 ,16,820,263992,19,8 ,16,820,264000,18,8 ,45,15153,5506884,24,0 ,17,923,6555460,32,0 ,44,15152,1312580,40,0 ,45,15153,4982596,120,0 ,16,820,264008,19,8 ,16,820,264016,15,8 ,16,820,264024,18,8 ,16,820,264032,18,8 ,20,21585,16516962,916,0 ,20,24991,24905570,236,0 ,16,820,264040,18,8 ,16,820,264048,19,8 ,16,820,264056,19,8 ,16,820,264064,18,8 ,17,923,9176964,40,0 ,44,15152,264068,24,0 ,45,15153,4458372,56,0 ,16,820,264072,18,8 ,16,820,264080,18,8 ,16,820,264088,18,8 ,16,820,264096,19,8 ,20,16449,3409826,12,0 ,16,820,264104,19,8 ,16,820,264112,16,8 ,16,820,264120,15,8 ,16,820,264128,15,8 ,20,24003,22284226,88,0 ,20,17792,6555586,1196,0 ,17,923,10225604,40,0 ,44,15152,2361284,80,0 ,44,15152,3409860,24,0 ,17,923,8652740,24,0 ,16,820,264136,15,8 ,16,820,264144,15,8 ,16,820,264152,16,8 ,16,820,264160,16,8 ,20,17189,4982754,116,0 ,16,820,264168,15,8 ,16,820,264176,16,8 ,16,820,264184,16,8 ,16,820,264192,16,8 ,20,19170,9701378,64,0 ,20,16450,3409922,204,0 ,17,923,9701380,80,0 ,17,923,7604228,56,0 ,17,923,7079940,24,0 ,45,15153,5507076,24,0 ,16,820,264200,18,8 ,16,820,264208,16,8 ,16,820,264216,15,8 ,16,820,264224,15,8 ,16,820,264232,15,8 ,16,820,264240,15,8 ,16,820,264248,17,8 ,16,820,264256,17,8 ,20,25579,26478658,136,0 ,44,15152,264260,32,0 ,17,923,6555716,48,0 ,16,820,264264,15,8 ,16,820,264272,15,8 ,16,820,264280,17,8 ,16,820,264288,15,8 ,16,820,264296,15,8 ,16,820,264304,18,8 ,16,820,264312,15,8 ,16,820,264320,15,8 ,17,923,8652932,24,0 ,44,15152,1312900,48,0 ,44,15152,788612,80,0 ,44,15152,3410052,72,0 ,16,820,264328,15,8 ,16,820,264336,15,8 ,16,820,264344,17,8 ,16,820,264352,16,8 ,16,820,264360,17,8 ,16,820,264368,15,8 ,16,820,264376,20,8 ,16,820,264384,15,8 ,17,923,9177284,24,0 ,17,923,7080132,24,0 ,45,15153,5507268,24,0 ,17,923,8128708,128,0 ,16,820,264392,15,8 ,16,820,264400,15,8 ,16,820,264408,15,8 ,16,820,264416,15,8 ,16,820,264424,15,8 ,16,820,264432,15,8 ,16,820,264440,15,8 ,16,820,264448,15,8 ,17,923,10225924,56,0 ,45,15153,3934468,16,0 ,16,820,264456,15,8 ,16,820,264464,15,8 ,16,820,264472,16,8 ,16,820,264480,18,8 ,20,25755,27003170,976,0 ,16,820,264488,15,8 ,16,820,264496,15,8 ,16,820,264504,15,8 ,16,820,264512,15,8 ,17,923,8653124,16,0 ,44,15152,264516,32,0 ,45,15153,4458820,72,0 ,16,820,264520,15,8 ,16,820,264528,18,8 ,16,820,264536,18,8 ,16,820,264544,18,8 ,16,820,264552,18,8 ,16,820,264560,18,8 ,16,820,264568,18,8 ,16,820,264576,18,8 ,17,923,9177476,64,0 ,17,923,7080324,32,0 ,45,15153,3934596,16,0 ,45,15153,5507460,16,0 ,16,820,264584,18,8 ,16,820,264592,18,8 ,16,820,264600,18,8 ,16,820,264608,18,8 ,20,22793,19663266,128,0 ,16,820,264616,18,8 ,16,820,264624,18,8 ,16,820,264632,18,8 ,16,820,264640,18,8 ,20,15438,788930,24,0 ,17,923,8653252,40,0 ,17,923,7604676,32,0 ,17,923,6556100,40,0 ,16,820,264648,18,8 ,16,820,264656,18,8 ,16,820,264664,18,8 ,16,820,264672,18,8 ,16,820,264680,18,8 ,16,820,264688,18,8 ,16,820,264696,15,8 ,16,820,264704,15,8 ,20,19171,9701890,344,0 ,45,15153,5507588,16,0 ,44,15152,1313284,64,0 ,45,15153,3934724,64,0 ,16,820,264712,15,8 ,16,820,264720,15,8 ,16,820,264728,15,8 ,16,820,264736,15,8 ,20,23111,20187682,432,0 ,16,820,264744,15,8 ,16,820,264752,15,8 ,16,820,264760,15,8 ,16,820,264768,15,8 ,44,15152,264772,16,0 ,44,15152,2361924,32,0 ,16,820,264776,15,8 ,16,820,264784,16,8 ,16,820,264792,15,8 ,16,820,264800,16,8 ,16,820,264808,16,8 ,16,820,264816,15,8 ,16,820,264824,15,8 ,16,820,264832,18,8 ,20,24004,22284930,88,0 ,20,15439,789122,24,0 ,20,17383,5507714,496,0 ,17,923,9702020,80,0 ,17,923,7080580,24,0 ,45,15153,5507716,16,0 ,16,820,264840,18,8 ,16,820,264848,18,8 ,16,820,264856,17,8 ,16,820,264864,18,8 ,20,25978,27527842,244,0 ,16,820,264872,18,8 ,16,820,264880,18,8 ,16,820,264888,17,8 ,16,820,264896,20,8 ,17,923,10226372,56,0 ,17,923,7604932,56,0 ,44,15152,264900,24,0 ,44,15152,3410628,24,0 ,16,820,264904,17,8 ,16,820,264912,18,8 ,16,820,264920,16,8 ,16,820,264928,18,8 ,16,820,264936,15,8 ,16,820,264944,15,8 ,16,820,264952,15,8 ,16,820,264960,16,8 ,20,19005,9177858,404,0 ,20,16769,3934978,240,0 ,20,18536,8129282,224,0 ,17,923,8653572,48,0 ,17,923,6556420,32,0 ,44,15152,789252,32,0 ,45,15153,4983556,24,0 ,45,15153,5507844,24,0 ,16,820,264968,15,8 ,16,820,264976,15,8 ,16,820,264984,18,8 ,16,820,264992,18,8 ,16,820,265000,18,8 ,16,820,265008,18,8 ,16,820,265016,18,8 ,16,820,265024,15,8 ,20,21369,15993666,308,0 ,20,15440,789314,12,0 ,44,15152,2362180,56,0 ,17,923,7080772,32,0 ,16,820,265032,18,8 ,16,820,265040,18,8 ,16,820,265048,18,8 ,16,820,265056,18,8 ,16,820,265064,18,8 ,16,820,265072,15,8 ,16,820,265080,18,8 ,16,820,265088,18,8 ,20,17190,4983682,116,0 ,17,923,9177988,40,0 ,44,15152,265092,32,0 ,44,15152,3410820,24,0 ,45,15153,4459396,32,0 ,16,820,265096,18,8 ,16,820,265104,18,8 ,16,820,265112,16,8 ,16,820,265120,17,8 ,20,15441,789410,60,0 ,16,820,265128,16,8 ,16,820,265136,16,8 ,16,820,265144,16,8 ,16,820,265152,18,8 ,45,15153,5508036,24,0 ,44,15152,2886596,264,0 ,45,15153,4983748,64,0 ,16,820,265160,15,8 ,16,820,265168,16,8 ,16,820,265176,16,8 ,16,820,265184,16,8 ,16,820,265192,16,8 ,16,820,265200,15,8 ,16,820,265208,15,8 ,16,820,265216,17,8 ,45,15153,3935236,32,0 ,17,923,6556676,40,0 ,44,15152,1838084,56,0 ,44,15152,1313796,24,0 ,44,15152,789508,24,0 ,16,820,265224,15,8 ,16,820,265232,15,8 ,16,820,265240,15,8 ,16,820,265248,16,8 ,16,820,265256,16,8 ,16,820,265264,18,8 ,16,820,265272,18,8 ,16,820,265280,16,8 ,44,15152,3411012,24,0 ,17,923,7081028,24,0 ,16,820,265288,18,8 ,16,820,265296,18,8 ,16,820,265304,18,8 ,16,820,265312,15,8 ,16,820,265320,16,8 ,16,820,265328,15,8 ,16,820,265336,15,8 ,16,820,265344,15,8 ,20,25580,26479746,128,0 ,17,923,10226820,24,0 ,17,923,7605380,24,0 ,44,15152,265348,16,0 ,45,15153,4459652,72,0 ,45,15153,5508228,16,0 ,17,923,8653956,40,0 ,16,820,265352,15,8 ,16,820,265360,15,8 ,16,820,265368,15,8 ,16,820,265376,15,8 ,20,22112,18091170,320,0 ,16,820,265384,15,8 ,16,820,265392,15,8 ,16,820,265400,15,8 ,16,820,265408,15,8 ,20,20787,13896898,5756,0 ,20,15694,1313986,184,0 ,17,923,9178308,48,0 ,44,15152,1313988,64,0 ,44,15152,789700,24,0 ,17,923,8129732,32,0 ,16,820,265416,15,8 ,16,820,265424,15,8 ,16,820,265432,15,8 ,16,820,265440,15,8 ,16,820,265448,15,8 ,16,820,265456,15,8 ,16,820,265464,15,8 ,16,820,265472,15,8 ,17,923,9702660,40,0 ,17,923,7081220,64,0 ,44,15152,2362628,96,0 ,44,15152,265476,24,0 ,44,15152,3411204,40,0 ,45,15153,3935492,16,0 ,45,15153,5508356,24,0 ,16,820,265480,15,8 ,16,820,265488,15,8 ,16,820,265496,15,8 ,16,820,265504,17,8 ,16,820,265512,15,8 ,16,820,265520,15,8 ,16,820,265528,15,8 ,16,820,265536,15,8 ,20,24005,22285634,300,0 ,17,923,10227012,64,0 ,17,923,7605572,80,0 ,17,923,6556996,24,0 ,16,820,265544,15,8 ,16,820,265552,15,8 ,16,820,265560,15,8 ,16,820,265568,18,8 ,20,18282,7605602,344,0 ,16,820,265576,18,8 ,16,820,265584,18,8 ,16,820,265592,18,8 ,16,820,265600,18,8 ,20,15442,789890,12,0 ,20,25188,25431426,24,0 ,45,15153,3935620,24,0 ,44,15152,789892,72,0 ,16,820,265608,18,8 ,16,820,265616,18,8 ,16,820,265624,18,8 ,16,820,265632,18,8 ,20,22794,19664290,136,0 ,16,820,265640,17,8 ,16,820,265648,15,8 ,16,820,265656,15,8 ,16,820,265664,18,9 ,20,19478,10227138,80,0 ,17,923,8654276,40,0 ,44,15152,1838532,72,0 ,44,15152,265668,16,0 ,45,15153,4984260,24,0 ,45,15153,5508548,32,0 ,17,923,8129988,24,0 ,16,820,265672,15,8 ,16,820,265680,15,8 ,16,820,265688,15,8 ,16,820,265696,15,8 ,20,15443,789986,184,0 ,16,820,265704,15,8 ,16,820,265712,15,8 ,16,820,265720,15,8 ,16,820,265728,15,8 ,17,923,6557188,40,0 ,16,820,265736,15,8 ,16,820,265744,15,8 ,16,820,265752,15,8 ,16,820,265760,17,8 ,16,820,265768,15,8 ,16,820,265776,15,8 ,16,820,265784,15,8 ,16,820,265792,15,8 ,20,21019,15470146,300,0 ,20,25189,25431618,244,0 ,17,923,9702980,40,0 ,44,15152,265796,72,0 ,44,15152,3411524,24,0 ,45,15153,3935812,64,0 ,17,923,9178692,32,0 ,16,820,265800,15,8 ,16,820,265808,15,8 ,16,820,265816,15,8 ,16,820,265824,15,8 ,20,16451,3411554,168,0 ,16,820,265832,15,8 ,16,820,265840,15,8 ,16,820,265848,15,8 ,16,820,265856,15,8 ,17,923,8130180,64,0 ,45,15153,4984452,24,0 ,16,820,265864,15,8 ,16,820,265872,15,8 ,16,820,265880,15,8 ,16,820,265888,15,8 ,20,25434,25956002,372,0 ,16,820,265896,15,8 ,16,820,265904,15,8 ,16,820,265912,15,8 ,16,820,265920,15,8 ,20,24428,23334594,588,0 ,20,24992,24907458,268,0 ,45,15153,5508804,16,0 ,44,15152,1314500,56,0 ,45,15153,4460228,16,0 ,16,820,265928,15,8 ,16,820,265936,15,8 ,16,820,265944,15,8 ,16,820,265952,15,8 ,16,820,265960,15,8 ,16,820,265968,15,8 ,16,820,265976,15,8 ,16,820,265984,15,8 ,17,923,8654596,48,0 ,17,923,7081732,48,0 ,44,15152,3411716,24,0 ,16,820,265992,15,8 ,16,820,266000,15,8 ,16,820,266008,15,8 ,16,820,266016,15,8 ,20,17191,4984610,116,0 ,16,820,266024,15,8 ,16,820,266032,15,8 ,16,820,266040,15,8 ,16,820,266048,15,8 ,17,923,10227524,56,0 ,17,923,6557508,40,0 ,45,15153,4460356,16,0 ,45,15153,4984644,32,0 ,45,15153,5508932,16,0 ,17,923,9178948,56,0 ,16,820,266056,15,8 ,16,820,266064,15,8 ,16,820,266072,15,8 ,16,820,266080,15,8 ,16,820,266088,15,8 ,16,820,266096,15,8 ,16,820,266104,15,8 ,16,820,266112,15,8 ,17,923,9703300,80,0 ,16,820,266120,15,8 ,16,820,266128,15,8 ,16,820,266136,15,8 ,16,820,266144,15,8 ,16,820,266152,15,8 ,16,820,266160,15,8 ,16,820,266168,15,8 ,16,820,266176,15,8 ,45,15153,5509060,16,0 ,17,923,7606212,32,0 ,44,15152,790468,24,0 ,44,15152,3411908,64,0 ,45,15153,4460484,16,0 ,16,820,266184,15,8 ,16,820,266192,15,8 ,16,820,266200,17,8 ,16,820,266208,18,8 ,16,820,266216,15,8 ,16,820,266224,17,8 ,16,820,266232,15,8 ,16,820,266240,15,8 ,44,15152,1839108,48,0 ,44,15152,2363396,56,0 ,16,820,266248,15,8 ,16,820,266256,15,8 ,16,820,266264,15,8 ,16,820,266272,15,8 ,16,820,266280,16,8 ,16,820,266288,16,8 ,16,820,266296,18,8 ,16,820,266304,16,8 ,20,19479,10227778,80,0 ,45,15153,5509188,24,0 ,45,15153,3936324,24,0 ,45,15153,4460612,104,0 ,45,15153,4984900,24,0 ,16,820,266312,16,8 ,16,820,266320,16,8 ,16,820,266328,17,8 ,16,820,266336,18,8 ,16,820,266344,16,8 ,16,820,266352,16,8 ,16,820,266360,16,8 ,16,820,266368,16,8 ,20,25581,26480770,332,0 ,17,923,8654980,48,0 ,17,923,7082116,48,0 ,17,923,6557828,32,0 ,44,15152,1314948,40,0 ,44,15152,266372,16,0 ,44,15152,790660,24,0 ,17,923,8130692,32,0 ,16,820,266376,16,8 ,16,820,266384,16,8 ,16,820,266392,16,8 ,16,820,266400,16,8 ,16,820,266408,16,8 ,16,820,266416,16,8 ,16,820,266424,15,8 ,16,820,266432,15,8 ,17,923,7606468,80,0 ,16,820,266440,15,8 ,16,820,266448,15,8 ,16,820,266456,18,8 ,16,820,266464,16,8 ,16,820,266472,15,8 ,16,820,266480,15,8 ,16,820,266488,15,8 ,16,820,266496,18,8 ,17,923,10227972,16,0 ,44,15152,266500,64,0 ,45,15153,3936516,48,0 ,45,15153,4985092,120,0 ,45,15153,5509380,136,0 ,17,923,9179396,56,0 ,16,820,266504,20,8 ,16,820,266512,15,8 ,16,820,266520,15,8 ,16,820,266528,15,8 ,16,820,266536,16,8 ,16,820,266544,15,8 ,16,820,266552,15,8 ,16,820,266560,15,8 ,20,21878,17043778,1224,0 ,44,15152,790852,24,0 ,16,820,266568,15,8 ,16,820,266576,15,8 ,16,820,266584,15,8 ,16,820,266592,17,8 ,20,23404,20713826,104,0 ,16,820,266600,16,8 ,16,820,266608,18,8 ,16,820,266616,18,8 ,16,820,266624,15,8 ,17,923,10228100,80,0 ,17,923,6558084,40,0 ,44,15152,1839492,56,0 ,17,923,8130948,24,0 ,16,820,266632,16,8 ,16,820,266640,16,8 ,16,820,266648,15,8 ,16,820,266656,15,8 ,20,24231,22811042,820,0 ,20,17017,4460962,552,0 ,16,820,266664,15,8 ,16,820,266672,15,8 ,16,820,266680,16,8 ,16,820,266688,16,8 ,44,15152,3412420,24,0 ,44,15152,2363844,40,0 ,44,15152,1315268,24,0 ,16,820,266696,16,8 ,16,820,266704,16,8 ,16,820,266712,15,8 ,16,820,266720,15,8 ,20,22795,19665378,160,0 ,16,820,266728,15,8 ,16,820,266736,15,8 ,16,820,266744,16,8 ,16,820,266752,15,8 ,20,18537,8131074,248,0 ,17,923,9703940,144,0 ,17,923,7082500,32,0 ,44,15152,791044,24,0 ,17,923,8655364,48,0 ,16,820,266760,15,8 ,16,820,266768,15,8 ,16,820,266776,18,8 ,16,820,266784,18,8 ,20,23613,21238306,880,0 ,16,820,266792,18,8 ,16,820,266800,16,8 ,16,820,266808,16,8 ,16,820,266816,18,8 ,20,25979,27529794,180,0 ,17,923,8131140,24,0 ,16,820,266824,15,8 ,16,820,266832,15,8 ,16,820,266840,15,8 ,16,820,266848,18,8 ,16,820,266856,15,8 ,16,820,266864,15,8 ,16,820,266872,16,8 ,16,820,266880,16,8 ,20,20160,11801218,164,0 ,20,15695,1315458,244,0 ,20,16770,3936898,1180,0 ,45,15153,3936900,40,0 ,44,15152,1315460,24,0 ,44,15152,3412612,16,0 ,16,820,266888,15,8 ,16,820,266896,15,8 ,16,820,266904,15,8 ,16,820,266912,16,8 ,20,20904,14946978,372,0 ,16,820,266920,15,8 ,16,820,266928,15,8 ,16,820,266936,15,8 ,16,820,266944,15,8 ,20,19480,10228418,216,0 ,20,17192,4985538,200,0 ,17,923,9179844,48,0 ,17,923,6558404,40,0 ,44,15152,791236,88,0 ,16,820,266952,15,8 ,16,820,266960,15,8 ,16,820,266968,15,8 ,16,820,266976,15,8 ,16,820,266984,15,8 ,16,820,266992,15,8 ,16,820,267000,16,8 ,16,820,267008,16,8 ,17,923,8131332,24,0 ,17,923,7082756,40,0 ,44,15152,2364164,48,0 ,44,15152,267012,24,0 ,44,15152,3412740,16,0 ,16,820,267016,16,8 ,16,820,267024,16,8 ,16,820,267032,16,8 ,16,820,267040,16,8 ,16,820,267048,16,8 ,16,820,267056,15,8 ,16,820,267064,16,8 ,16,820,267072,16,8 ,44,15152,1315652,120,0 ,17,923,7607108,80,0 ,44,15152,1839940,48,0 ,16,820,267080,16,8 ,16,820,267088,16,8 ,16,820,267096,15,8 ,16,820,267104,16,8 ,16,820,267112,18,8 ,16,820,267120,18,8 ,16,820,267128,16,8 ,16,820,267136,15,8 ,17,923,8655748,40,0 ,44,15152,3412868,152,0 ,45,15153,4461444,16,0 ,16,820,267144,16,8 ,16,820,267152,15,8 ,16,820,267160,16,8 ,16,820,267168,16,8 ,20,16452,3412898,172,0 ,20,15444,791458,148,0 ,16,820,267176,16,8 ,16,820,267184,16,8 ,16,820,267192,15,8 ,16,820,267200,18,8 ,20,26447,29103042,620,0 ,17,923,8131524,24,0 ,44,15152,267204,24,0 ,45,15153,3937220,24,0 ,16,820,267208,16,8 ,16,820,267216,16,8 ,16,820,267224,16,8 ,16,820,267232,18,8 ,16,820,267240,15,8 ,16,820,267248,18,8 ,16,820,267256,15,8 ,16,820,267264,15,8 ,17,923,10228740,48,0 ,17,923,6558724,40,0 ,44,15152,2888708,384,0 ,45,15153,4461572,80,0 ,16,820,267272,18,8 ,16,820,267280,15,8 ,16,820,267288,15,8 ,16,820,267296,15,8 ,16,820,267304,15,8 ,16,820,267312,15,8 ,16,820,267320,15,8 ,16,820,267328,15,8 ,20,26177,28054594,276,0 ,17,923,9180228,40,0 ,17,923,7083076,32,0 ,16,820,267336,16,8 ,16,820,267344,20,8 ,16,820,267352,17,8 ,16,820,267360,15,8 ,16,820,267368,15,8 ,16,820,267376,15,8 ,16,820,267384,15,8 ,16,820,267392,15,8 ,17,923,8131716,40,0 ,44,15152,2364548,24,0 ,44,15152,267396,24,0 ,45,15153,3937412,16,0 ,16,820,267400,16,8 ,16,820,267408,16,8 ,16,820,267416,15,8 ,16,820,267424,16,8 ,20,23405,20714658,104,0 ,16,820,267432,16,8 ,16,820,267440,15,8 ,16,820,267448,16,8 ,16,820,267456,15,8 ,20,19172,9704642,348,0 ,17,923,8656068,32,0 ,44,15152,1840324,32,0 ,45,15153,4986052,48,0 ,16,820,267464,18,8 ,16,820,267472,18,8 ,16,820,267480,18,8 ,16,820,267488,15,8 ,20,21370,15996130,384,0 ,16,820,267496,15,8 ,16,820,267504,18,8 ,16,820,267512,16,8 ,16,820,267520,16,8 ,45,15153,3937540,24,0 ,16,820,267528,16,8 ,16,820,267536,15,8 ,16,820,267544,16,8 ,16,820,267552,15,8 ,16,820,267560,15,8 ,16,820,267568,18,8 ,16,820,267576,15,8 ,16,820,267584,15,8 ,45,15153,5510468,40,0 ,17,923,7083332,24,0 ,17,923,6559044,48,0 ,44,15152,2364740,40,0 ,44,15152,267588,24,0 ,16,820,267592,15,8 ,16,820,267600,15,8 ,16,820,267608,15,8 ,16,820,267616,15,8 ,16,820,267624,15,8 ,16,820,267632,15,8 ,16,820,267640,16,8 ,16,820,267648,15,8 ,17,923,10229124,32,0 ,44,15152,791940,32,0 ,17,923,9180548,32,0 ,16,820,267656,15,8 ,16,820,267664,15,8 ,16,820,267672,15,8 ,16,820,267680,15,8 ,16,820,267688,15,8 ,16,820,267696,15,8 ,16,820,267704,15,8 ,16,820,267712,15,8 ,17,923,8656324,56,0 ,17,923,7607748,40,0 ,44,15152,1840580,40,0 ,45,15153,3937732,16,0 ,17,923,8132036,32,0 ,16,820,267720,15,8 ,16,820,267728,18,8 ,16,820,267736,16,8 ,16,820,267744,15,8 ,20,25190,25433570,24,0 ,16,820,267752,16,8 ,16,820,267760,18,8 ,16,820,267768,18,8 ,16,820,267776,18,8 ,44,15152,267780,32,0 ,17,923,7083524,24,0 ,16,820,267784,15,8 ,16,820,267792,15,8 ,16,820,267800,15,8 ,16,820,267808,16,8 ,16,820,267816,16,8 ,16,820,267824,15,8 ,16,820,267832,15,8 ,16,820,267840,16,8 ,45,15153,4986436,112,0 ,45,15153,3937860,16,0 ,16,820,267848,16,8 ,16,820,267856,16,8 ,16,820,267864,16,8 ,16,820,267872,16,8 ,16,820,267880,16,8 ,16,820,267888,16,8 ,16,820,267896,16,8 ,16,820,267904,16,8 ,17,923,10229380,80,0 ,44,15152,2365060,32,0 ,44,15152,792196,88,0 ,45,15153,4462212,104,0 ,45,15153,5510788,24,0 ,17,923,9180804,88,0 ,17,923,9705092,16,0 ,16,820,267912,16,8 ,16,820,267920,16,8 ,16,820,267928,16,8 ,16,820,267936,16,8 ,20,24006,22288034,268,0 ,20,25191,25433762,144,0 ,20,18746,8656546,84,0 ,20,22113,18093730,344,0 ,16,820,267944,16,8 ,16,820,267952,16,8 ,16,820,267960,16,8 ,16,820,267968,16,8 ,17,923,8132292,32,0 ,17,923,7083716,24,0 ,17,923,6559428,32,0 ,45,15153,3937988,24,0 ,16,820,267976,16,8 ,16,820,267984,16,8 ,16,820,267992,16,8 ,16,820,268000,16,8 ,20,22796,19666658,76,0 ,16,820,268008,16,8 ,16,820,268016,16,8 ,16,820,268024,16,8 ,16,820,268032,16,8 ,17,923,9705220,80,0 ,17,923,7608068,40,0 ,44,15152,1840900,104,0 ,44,15152,1316612,24,0 ,44,15152,268036,16,0 ,16,820,268040,16,8 ,16,820,268048,16,8 ,16,820,268056,16,8 ,16,820,268064,16,8 ,20,24993,24909602,124,0 ,16,820,268072,16,8 ,16,820,268080,16,8 ,16,820,268088,15,8 ,16,820,268096,15,8 ,45,15153,5510980,56,0 ,16,820,268104,15,8 ,16,820,268112,15,8 ,16,820,268120,15,8 ,16,820,268128,15,8 ,20,15252,268130,380,0 ,16,820,268136,15,8 ,16,820,268144,15,8 ,16,820,268152,15,8 ,16,820,268160,16,8 ,17,923,8656772,40,0 ,17,923,7083908,24,0 ,44,15152,2365316,32,0 ,44,15152,268164,24,0 ,45,15153,3938180,72,0 ,16,820,268168,15,8 ,16,820,268176,16,8 ,16,820,268184,16,8 ,16,820,268192,18,8 ,20,23112,20191138,560,0 ,20,19006,9181090,120,0 ,20,20161,11802530,1692,0 ,20,21020,15472546,628,0 ,16,820,268200,16,8 ,16,820,268208,16,8 ,16,820,268216,16,8 ,16,820,268224,16,8 ,17,923,8132548,40,0 ,17,923,6559684,32,0 ,44,15152,1316804,160,0 ,16,820,268232,16,8 ,16,820,268240,16,8 ,16,820,268248,16,8 ,16,820,268256,16,8 ,20,23406,20715490,1652,0 ,20,25980,27531234,180,0 ,16,820,268264,16,8 ,16,820,268272,16,8 ,16,820,268280,18,8 ,16,820,268288,16,8 ,16,820,268296,16,8 ,16,820,268304,18,8 ,16,820,268312,16,8 ,16,820,268320,16,8 ,20,18283,7608354,140,0 ,16,820,268328,16,8 ,16,820,268336,16,8 ,16,820,268344,16,8 ,16,820,268352,16,8 ,20,15445,792642,204,0 ,44,15152,3414084,272,0 ,17,923,7608388,40,0 ,17,923,7084100,32,0 ,44,15152,268356,16,0 ,16,820,268360,16,8 ,16,820,268368,18,8 ,16,820,268376,18,8 ,16,820,268384,16,8 ,16,820,268392,16,8 ,16,820,268400,16,8 ,16,820,268408,16,8 ,16,820,268416,16,8 ,44,15152,2365572,40,0 ,16,820,268424,16,8 ,16,820,268432,17,8 ,16,820,268440,19,8 ,16,820,268448,17,8 ,16,820,268456,19,8 ,16,820,268464,19,8 ,16,820,268472,16,8 ,16,820,268480,16,8 ,17,923,8657092,48,0 ,17,923,6559940,32,0 ,44,15152,268484,48,0 ,16,820,268488,16,8 ,16,820,268496,16,8 ,16,820,268504,16,8 ,16,820,268512,16,8 ,16,820,268520,16,8 ,16,820,268528,16,8 ,16,820,268536,17,9 ,16,820,268544,16,8 ,20,19758,10754306,172,0 ,20,16453,3414274,220,0 ,20,17193,4987138,932,0 ,17,923,10230020,32,0 ,45,15153,5511428,72,0 ,17,923,8132868,40,0 ,16,820,268552,16,8 ,16,820,268560,16,8 ,16,820,268568,16,8 ,16,820,268576,17,8 ,16,820,268584,16,8 ,16,820,268592,16,8 ,16,820,268600,16,8 ,16,820,268608,16,8 ,20,22797,19667266,116,0 ,20,18747,8657218,164,0 ,17,923,9181508,24,0 ,17,923,7084356,40,0 ,44,15152,792900,32,0 ,16,820,268616,16,8 ,16,820,268624,16,8 ,16,820,268632,17,8 ,16,820,268640,16,8 ,16,820,268648,16,8 ,16,820,268656,16,8 ,16,820,268664,16,8 ,16,820,268672,16,8 ,20,19481,10230146,192,0 ,20,15848,1841538,212,0 ,17,923,9705860,80,0 ,17,923,7608708,40,0 ,16,820,268680,16,8 ,21,1018,268688,68855,20295 ,8,1019,268696,1,1 ,8,1019,268704,1,1 ,8,1019,268712,1,1 ,8,1019,268720,1,1 ,8,1019,268728,1,1 ,8,1019,268736,1,1 ,20,18538,8133058,244,0 ,45,15153,4987332,40,0 ,17,923,6560196,32,0 ,44,15152,2365892,72,0 ,45,15153,3938756,16,0 ,45,15153,4463044,64,0 ,8,1019,268744,1,1 ,8,1019,268752,1,1 ,8,1019,268760,1,1 ,8,1019,268768,1,1 ,8,1019,268776,1,1 ,8,1019,268784,1,1 ,8,1019,268792,1,1 ,8,1019,268800,1,1 ,20,17384,5511682,96,0 ,17,923,10230276,32,0 ,17,923,9181700,56,0 ,8,1019,268808,1,1 ,8,1019,268816,1,1 ,8,1019,268824,1,1 ,8,1019,268832,1,1 ,20,15696,1317410,184,0 ,8,1019,268840,1,1 ,8,1019,268848,1,1 ,8,1019,268856,1,1 ,8,1019,268864,1,1 ,20,25435,25958978,212,0 ,17,923,8657476,40,0 ,44,15152,1841732,24,0 ,44,15152,268868,32,0 ,44,15152,793156,88,0 ,45,15153,3938884,64,0 ,17,923,8133188,40,0 ,8,1019,268872,1,1 ,8,1019,268880,1,1 ,8,1019,268888,1,1 ,8,1019,268896,1,1 ,8,1019,268904,1,1 ,8,1019,268912,1,1 ,8,1019,268920,1,1 ,8,1019,268928,1,1 ,20,16192,2890370,12,0 ,17,923,7084676,24,0 ,8,1019,268936,1,1 ,8,1019,268944,1,1 ,8,1019,268952,1,1 ,8,1019,268960,1,1 ,8,1019,268968,1,1 ,8,1019,268976,1,1 ,8,1019,268984,1,1 ,8,1019,268992,1,1 ,17,923,6560452,32,0 ,17,923,7609028,24,0 ,8,1019,269000,1,1 ,8,1019,269008,1,1 ,8,1019,269016,1,1 ,8,1019,269024,1,1 ,20,16193,2890466,60,0 ,20,25582,26483426,144,0 ,8,1019,269032,1,1 ,8,1019,269040,1,1 ,8,1019,269048,1,1 ,8,1019,269056,1,1 ,20,24994,24910594,28,0 ,17,923,10230532,16,0 ,44,15152,1841924,152,0 ,45,15153,4987652,32,0 ,8,1019,269064,1,1 ,8,1019,269072,1,1 ,8,1019,269080,1,1 ,8,1019,269088,1,1 ,20,25192,25434914,24,0 ,8,1019,269096,1,1 ,8,1019,269104,1,1 ,8,1019,269112,1,1 ,8,1019,269120,1,1 ,45,15153,5512004,64,0 ,17,923,7084868,24,0 ,44,15152,269124,16,0 ,8,1019,269128,1,1 ,8,1019,269136,1,1 ,8,1019,269144,1,1 ,8,1019,269152,1,1 ,20,19007,9182050,96,0 ,8,1019,269160,1,1 ,8,1019,269168,1,1 ,8,1019,269176,1,1 ,8,1019,269184,1,1 ,17,923,10230660,96,0 ,17,923,7609220,112,0 ,17,923,8133508,48,0 ,17,923,8657796,48,0 ,8,1019,269192,1,1 ,8,1019,269200,1,1 ,8,1019,269208,1,1 ,8,1019,269216,1,1 ,8,1019,269224,1,1 ,8,1019,269232,1,1 ,8,1019,269240,1,1 ,8,1019,269248,1,1 ,17,923,9182148,40,0 ,17,923,6560708,40,0 ,44,15152,269252,32,0 ,45,15153,4463556,136,0 ,8,1019,269256,1,1 ,8,1019,269264,1,1 ,8,1019,269272,1,1 ,8,1019,269280,1,1 ,20,24995,24910818,264,0 ,20,25193,25435106,24,0 ,8,1019,269288,1,1 ,8,1019,269296,1,1 ,8,1019,269304,1,1 ,8,1019,269312,1,1 ,17,923,9706500,48,0 ,17,923,7085060,32,0 ,44,15152,2366468,96,0 ,45,15153,4987908,24,0 ,8,1019,269320,1,1 ,8,1019,269328,1,1 ,8,1019,269336,1,1 ,8,1019,269344,1,1 ,8,1019,269352,1,1 ,8,1019,269360,1,1 ,8,1019,269368,1,1 ,8,1019,269376,1,1 ,45,15153,3939396,16,0 ,8,1019,269384,1,1 ,8,1019,269392,1,1 ,8,1019,269400,1,1 ,8,1019,269408,1,1 ,8,1019,269416,1,1 ,8,1019,269424,1,1 ,8,1019,269432,1,1 ,8,1019,269440,1,1 ,20,18284,7609474,84,0 ,8,1019,269448,1,1 ,8,1019,269456,1,1 ,8,1019,269464,1,1 ,8,1019,269472,1,1 ,20,25194,25435298,24,0 ,8,1019,269480,1,1 ,8,1019,269488,1,1 ,8,1019,269496,1,1 ,8,1019,269504,1,1 ,20,16194,2890946,108,0 ,45,15153,4988100,24,0 ,44,15152,1318084,96,0 ,44,15152,269508,16,0 ,45,15153,3939524,24,0 ,8,1019,269512,1,1 ,8,1019,269520,1,1 ,8,1019,269528,1,1 ,8,1019,269536,1,1 ,20,22798,19668194,84,0 ,20,26178,28056802,96,0 ,8,1019,269544,1,1 ,8,1019,269552,1,1 ,8,1019,269560,1,1 ,8,1019,269568,1,1 ,20,20285,12852482,1696,0 ,20,17385,5512450,12,0 ,17,923,9182468,48,0 ,17,923,7085316,24,0 ,17,923,6561028,48,0 ,44,15152,793860,32,0 ,17,923,8133892,48,0 ,17,923,8658180,32,0 ,8,1019,269576,1,1 ,8,1019,269584,1,1 ,8,1019,269592,1,1 ,8,1019,269600,1,1 ,8,1019,269608,1,1 ,8,1019,269616,1,1 ,8,1019,269624,1,1 ,8,1019,269632,1,1 ,45,15153,5512516,24,0 ,44,15152,269636,32,0 ,8,1019,269640,1,1 ,8,1019,269648,1,1 ,8,1019,269656,1,1 ,8,1019,269664,1,1 ,20,17386,5512546,128,0 ,20,25195,25435490,24,0 ,8,1019,269672,1,1 ,8,1019,269680,1,1 ,8,1019,269688,1,1 ,8,1019,269696,1,1 ,20,25981,27532674,168,0 ,17,923,9706884,80,0 ,45,15153,3939716,16,0 ,45,15153,4988292,24,0 ,8,1019,269704,1,1 ,8,1019,269712,1,1 ,8,1019,269720,1,1 ,8,1019,269728,1,1 ,20,17589,6036898,724,0 ,8,1019,269736,1,1 ,8,1019,269744,1,1 ,8,1019,269752,1,1 ,8,1019,269760,1,1 ,17,923,7085508,64,0 ,8,1019,269768,1,1 ,8,1019,269776,1,1 ,8,1019,269784,1,1 ,8,1019,269792,1,1 ,8,1019,269800,1,1 ,8,1019,269808,1,1 ,8,1019,269816,1,1 ,8,1019,269824,1,1 ,17,923,8658436,32,0 ,44,15152,794116,88,0 ,45,15153,3939844,16,0 ,45,15153,5512708,40,0 ,8,1019,269832,1,1 ,8,1019,269840,1,1 ,8,1019,269848,1,1 ,8,1019,269856,1,1 ,20,25196,25435682,24,0 ,8,1019,269864,1,1 ,8,1019,269872,1,1 ,8,1019,269880,1,1 ,8,1019,269888,1,1 ,20,20905,14949954,484,0 ,20,24742,24387138,3400,0 ,45,15153,4988484,16,0 ,44,15152,269892,16,0 ,8,1019,269896,1,1 ,8,1019,269904,1,1 ,8,1019,269912,1,1 ,8,1019,269920,1,1 ,20,19759,10755682,200,0 ,20,18748,8658530,1848,0 ,20,19008,9182818,120,0 ,8,1019,269928,1,1 ,8,1019,269936,1,1 ,8,1019,269944,1,1 ,8,1019,269952,1,1 ,17,923,10231428,24,0 ,17,923,6561412,48,0 ,45,15153,3939972,112,0 ,17,923,8134276,40,0 ,17,923,9182852,40,0 ,8,1019,269960,1,1 ,8,1019,269968,1,1 ,8,1019,269976,1,1 ,8,1019,269984,1,1 ,20,15446,794274,48,0 ,8,1019,269992,1,1 ,8,1019,270000,1,1 ,8,1019,270008,1,1 ,8,1019,270016,1,1 ,45,15153,4988612,16,0 ,44,15152,270020,40,0 ,8,1019,270024,1,1 ,8,1019,270032,1,1 ,8,1019,270040,1,1 ,8,1019,270048,1,1 ,20,25197,25435874,312,0 ,8,1019,270056,1,1 ,8,1019,270064,1,1 ,8,1019,270072,1,1 ,8,1019,270080,1,1 ,20,24007,22290178,64,0 ,17,923,8658692,24,0 ,17,923,7610116,112,0 ,44,15152,2367236,40,0 ,8,1019,270088,1,1 ,8,1019,270096,1,1 ,8,1019,270104,1,1 ,8,1019,270112,1,1 ,20,18285,7610146,12,0 ,8,1019,270120,1,1 ,8,1019,270128,1,1 ,8,1019,270136,1,1 ,22,1020,270144,2,1 ,17,923,10231620,32,0 ,45,15153,4988740,24,0 ,45,15153,5513028,32,0 ,22,1020,270152,1,1 ,22,1020,270160,1,1 ,22,1020,270168,1,1 ,22,1020,270176,1,1 ,20,25583,26484578,360,0 ,22,1020,270184,1,1 ,22,1020,270192,1,1 ,22,1020,270200,1,1 ,22,1020,270208,1,1 ,20,22799,19668866,548,0 ,20,18286,7610242,120,0 ,20,19482,10231682,56,0 ,22,1020,270216,1,1 ,22,1020,270224,1,1 ,22,1020,270232,1,1 ,22,1020,270240,1,1 ,20,19173,9707426,44,0 ,22,1020,270248,1,1 ,22,1020,270256,1,1 ,22,1020,270264,1,1 ,22,1020,270272,1,1 ,20,24578,23863234,544,0 ,17,923,9183172,40,0 ,17,923,7086020,24,0 ,44,15152,1843140,48,0 ,44,15152,1318852,32,0 ,17,923,8134596,48,0 ,17,923,8658884,72,0 ,22,1020,270280,1,1 ,22,1020,270288,1,1 ,22,1020,270296,1,1 ,22,1020,270304,1,1 ,20,16454,3416034,120,0 ,20,26179,28057570,244,0 ,20,15697,1318882,1996,0 ,22,1020,270312,1,1 ,22,1020,270320,1,1 ,22,1020,270328,1,1 ,22,1020,270336,1,1 ,17,923,9707524,144,0 ,17,923,6561796,32,0 ,44,15152,2891780,184,0 ,44,15152,270340,16,0 ,45,15153,4464644,16,0 ,45,15153,4988932,24,0 ,22,1020,270344,1,1 ,22,1020,270352,1,1 ,22,1020,270360,1,1 ,22,1020,270368,1,1 ,20,16195,2891810,112,0 ,20,15447,794658,1076,0 ,20,15849,1843234,172,0 ,22,1020,270376,1,1 ,22,1020,270384,1,1 ,22,1020,270392,1,1 ,22,1020,270400,1,1 ,17,923,10231876,16,0 ,44,15152,2367556,48,0 ,45,15153,5513284,24,0 ,22,1020,270408,1,1 ,22,1020,270416,1,1 ,22,1020,270424,1,1 ,22,1020,270432,1,1 ,22,1020,270440,1,1 ,22,1020,270448,1,1 ,22,1020,270456,1,1 ,22,1020,270464,1,1 ,45,15153,4464772,16,0 ,17,923,7086212,16,0 ,44,15152,270468,32,0 ,22,1020,270472,1,1 ,22,1020,270480,1,1 ,22,1020,270488,1,1 ,22,1020,270496,1,1 ,22,1020,270504,1,1 ,22,1020,270512,1,1 ,22,1020,270520,1,1 ,22,1020,270528,1,1 ,17,923,10232004,16,0 ,44,15152,1319108,24,0 ,44,15152,794820,32,0 ,44,15152,3416260,16,0 ,45,15153,4989124,40,0 ,22,1020,270536,1,1 ,22,1020,270544,1,1 ,22,1020,270552,1,1 ,22,1020,270560,1,1 ,20,21371,15999202,112,0 ,20,25436,25960674,36,0 ,22,1020,270568,1,1 ,22,1020,270576,1,1 ,22,1020,270584,1,1 ,22,1020,270592,1,1 ,20,24008,22290690,212,0 ,20,19174,9707778,12,0 ,17,923,9183492,40,0 ,17,923,7086340,32,0 ,17,923,6562052,40,0 ,45,15153,4464900,32,0 ,45,15153,5513476,16,0 ,22,1020,270600,1,1 ,22,1020,270608,1,1 ,22,1020,270616,1,1 ,22,1020,270624,1,1 ,20,24429,23339298,128,0 ,22,1020,270632,1,1 ,22,1020,270640,1,1 ,22,1020,270648,1,1 ,22,1020,270656,1,1 ,20,19483,10232130,80,0 ,17,923,10232132,24,0 ,44,15152,1843524,24,0 ,44,15152,3416388,32,0 ,17,923,8134980,48,0 ,22,1020,270664,1,1 ,22,1020,270672,1,1 ,22,1020,270680,1,1 ,22,1020,270688,1,1 ,20,22114,18096482,376,0 ,20,17387,5513570,56,0 ,20,18539,8135010,200,0 ,20,19175,9707874,480,0 ,22,1020,270696,1,1 ,22,1020,270704,1,1 ,22,1020,270712,1,1 ,22,1020,270720,1,1 ,45,15153,5513604,16,0 ,44,15152,1319300,56,0 ,44,15152,270724,16,0 ,22,1020,270728,1,1 ,22,1020,270736,1,1 ,22,1020,270744,1,1 ,22,1020,270752,1,1 ,22,1020,270760,1,1 ,22,1020,270768,1,1 ,22,1020,270776,1,1 ,22,1020,270784,1,1 ,44,15152,795076,24,0 ,44,15152,2367940,72,0 ,22,1020,270792,1,1 ,22,1020,270800,1,1 ,22,1020,270808,1,1 ,22,1020,270816,1,1 ,22,1020,270824,1,1 ,22,1020,270832,1,1 ,22,1020,270840,1,1 ,22,1020,270848,1,1 ,20,25437,25960962,44,0 ,17,923,10232324,24,0 ,17,923,7086596,40,0 ,44,15152,1843716,112,0 ,44,15152,270852,16,0 ,45,15153,3940868,16,0 ,45,15153,4465156,16,0 ,45,15153,4989444,48,0 ,45,15153,5513732,16,0 ,17,923,8659460,48,0 ,22,1020,270856,1,1 ,22,1020,270864,1,1 ,22,1020,270872,1,1 ,22,1020,270880,1,1 ,20,19009,9183778,156,0 ,22,1020,270888,1,1 ,22,1020,270896,1,1 ,22,1020,270904,1,1 ,22,1020,270912,1,1 ,17,923,9183812,40,0 ,17,923,6562372,48,0 ,44,15152,3416644,16,0 ,22,1020,270920,1,1 ,22,1020,270928,1,1 ,22,1020,270936,1,1 ,22,1020,270944,1,1 ,22,1020,270952,1,1 ,22,1020,270960,1,1 ,22,1020,270968,1,1 ,22,1020,270976,1,1 ,45,15153,5513860,192,0 ,17,923,7611012,80,0 ,44,15152,270980,40,0 ,44,15152,795268,24,0 ,45,15153,3940996,16,0 ,45,15153,4465284,16,0 ,22,1020,270984,1,1 ,22,1020,270992,1,1 ,22,1020,271000,1,1 ,22,1020,271008,1,1 ,22,1020,271016,1,1 ,22,1020,271024,1,1 ,22,1020,271032,1,1 ,22,1020,271040,1,1 ,20,25982,27534018,144,0 ,17,923,10232516,16,0 ,44,15152,3416772,32,0 ,17,923,8135364,48,0 ,22,1020,271048,1,1 ,22,1020,271056,1,1 ,22,1020,271064,1,1 ,22,1020,271072,1,1 ,20,17018,4465378,84,0 ,22,1020,271080,1,1 ,22,1020,271088,1,1 ,22,1020,271096,1,1 ,22,1020,271104,1,1 ,45,15153,4465412,120,0 ,45,15153,3941124,16,0 ,22,1020,271112,1,1 ,22,1020,271120,1,1 ,22,1020,271128,1,1 ,22,1020,271136,1,1 ,20,22580,19145506,140,0 ,20,17388,5514018,244,0 ,22,1020,271144,1,1 ,22,1020,271152,1,1 ,22,1020,271160,1,1 ,22,1020,271168,1,1 ,20,18287,7611202,204,0 ,20,15253,271170,488,0 ,17,923,10232644,24,0 ,17,923,7086916,32,0 ,44,15152,1319748,24,0 ,44,15152,795460,24,0 ,22,1020,271176,1,1 ,22,1020,271184,1,1 ,22,1020,271192,1,1 ,22,1020,271200,1,1 ,20,25438,25961314,272,0 ,22,1020,271208,1,1 ,22,1020,271216,1,1 ,22,1020,271224,1,1 ,22,1020,271232,1,1 ,17,923,9184132,32,0 ,45,15153,3941252,16,0 ,45,15153,4989828,32,0 ,17,923,8659844,48,0 ,22,1020,271240,1,1 ,22,1020,271248,1,1 ,22,1020,271256,1,1 ,22,1020,271264,1,1 ,20,16455,3416994,12,0 ,20,16196,2892706,304,0 ,22,1020,271272,1,1 ,22,1020,271280,1,1 ,22,1020,271288,1,1 ,22,1020,271296,1,1 ,20,19484,10232770,80,0 ,44,15152,3417028,32,0 ,17,923,6562756,48,0 ,44,15152,271300,16,0 ,22,1020,271304,1,1 ,22,1020,271312,1,1 ,22,1020,271320,1,1 ,22,1020,271328,1,1 ,22,1020,271336,1,1 ,22,1020,271344,1,1 ,22,1020,271352,1,1 ,22,1020,271360,1,1 ,20,21586,16524290,204,0 ,20,16456,3417090,172,0 ,17,923,10232836,24,0 ,44,15152,2368516,48,0 ,44,15152,1319940,24,0 ,44,15152,795652,32,0 ,45,15153,3941380,16,0 ,22,1020,271368,1,1 ,22,1020,271376,1,1 ,22,1020,271384,1,1 ,22,1020,271392,1,1 ,20,24996,24912930,208,0 ,22,1020,271400,1,1 ,22,1020,271408,1,1 ,22,1020,271416,1,1 ,22,1020,271424,1,1 ,17,923,8135748,32,0 ,17,923,7087172,32,0 ,44,15152,271428,32,0 ,22,1020,271432,1,1 ,22,1020,271440,1,1 ,22,1020,271448,1,1 ,22,1020,271456,1,1 ,20,21372,16000098,424,0 ,22,1020,271464,1,1 ,22,1020,271472,1,1 ,22,1020,271480,1,1 ,22,1020,271488,1,1 ,17,923,9708676,16,0 ,45,15153,3941508,24,0 ,45,15153,4990084,16,0 ,17,923,9184388,48,0 ,22,1020,271496,1,1 ,22,1020,271504,1,1 ,22,1020,271512,1,1 ,22,1020,271520,1,1 ,20,19760,10757282,976,0 ,22,1020,271528,1,1 ,22,1020,271536,1,1 ,22,1020,271544,1,1 ,22,1020,271552,1,1 ,17,923,10233028,24,0 ,44,15152,1320132,16,0 ,44,15152,3417284,32,0 ,22,1020,271560,1,1 ,22,1020,271568,1,1 ,22,1020,271576,1,1 ,22,1020,271584,1,1 ,22,1020,271592,1,1 ,22,1020,271600,1,1 ,22,1020,271608,1,1 ,22,1020,271616,1,1 ,17,923,9708804,80,0 ,17,923,7611652,96,0 ,44,15152,795908,56,0 ,45,15153,4990212,16,0 ,17,923,8660228,40,0 ,22,1020,271624,1,1 ,22,1020,271632,1,1 ,22,1020,271640,1,1 ,22,1020,271648,1,1 ,20,24430,23340322,24,0 ,22,1020,271656,1,1 ,22,1020,271664,1,1 ,22,1020,271672,1,1 ,22,1020,271680,1,1 ,17,923,8136004,40,0 ,17,923,7087428,32,0 ,17,923,6563140,32,0 ,44,15152,1320260,24,0 ,44,15152,271684,16,0 ,45,15153,3941700,16,0 ,22,1020,271688,1,1 ,22,1020,271696,1,1 ,22,1020,271704,1,1 ,22,1020,271712,1,1 ,22,1020,271720,1,1 ,22,1020,271728,1,1 ,22,1020,271736,1,1 ,22,1020,271744,1,1 ,20,17019,4466050,384,0 ,20,15850,1844610,152,0 ,17,923,10233220,24,0 ,44,15152,2368900,72,0 ,44,15152,1844612,88,0 ,45,15153,4990340,24,0 ,22,1020,271752,1,1 ,22,1020,271760,1,1 ,22,1020,271768,1,1 ,22,1020,271776,1,1 ,22,1020,271784,1,1 ,22,1020,271792,1,1 ,22,1020,271800,1,1 ,22,1020,271808,1,1 ,45,15153,3941828,48,0 ,44,15152,2893252,24,0 ,44,15152,271812,24,0 ,44,15152,3417540,32,0 ,22,1020,271816,1,1 ,22,1020,271824,1,1 ,22,1020,271832,1,1 ,22,1020,271840,1,1 ,20,24431,23340514,652,0 ,22,1020,271848,1,1 ,22,1020,271856,1,1 ,22,1020,271864,1,1 ,22,1020,271872,1,1 ,17,923,9184772,48,0 ,44,15152,1320452,32,0 ,22,1020,271880,1,1 ,22,1020,271888,1,1 ,22,1020,271896,1,1 ,22,1020,271904,1,1 ,22,1020,271912,1,1 ,22,1020,271920,1,1 ,22,1020,271928,1,1 ,22,1020,271936,1,1 ,20,19485,10233410,12,0 ,20,18087,7087682,132,0 ,17,923,10233412,24,0 ,17,923,7087684,32,0 ,17,923,6563396,16,0 ,45,15153,4990532,32,0 ,17,923,8660548,48,0 ,22,1020,271944,1,1 ,22,1020,271952,1,1 ,22,1020,271960,1,1 ,22,1020,271968,1,1 ,22,1020,271976,1,1 ,22,1020,271984,1,1 ,22,1020,271992,1,1 ,22,1020,272000,1,1 ,17,923,8136324,32,0 ,44,15152,2893444,304,0 ,44,15152,272004,48,0 ,22,1020,272008,1,1 ,22,1020,272016,1,1 ,22,1020,272024,1,1 ,22,1020,272032,1,1 ,20,19486,10233506,192,0 ,22,1020,272040,1,1 ,22,1020,272048,1,1 ,22,1020,272056,1,1 ,22,1020,272064,1,1 ,45,15153,4466372,16,0 ,17,923,6563524,32,0 ,44,15152,796356,32,0 ,44,15152,3417796,40,0 ,22,1020,272072,1,1 ,22,1020,272080,1,1 ,22,1020,272088,1,1 ,22,1020,272096,1,1 ,22,1020,272104,1,1 ,22,1020,272112,1,1 ,22,1020,272120,1,1 ,22,1020,272128,1,1 ,20,19010,9185026,2060,0 ,17,923,10233604,40,0 ,44,15152,1320708,272,0 ,22,1020,272136,1,1 ,22,1020,272144,1,1 ,22,1020,272152,1,1 ,22,1020,272160,1,1 ,20,26448,29108002,1172,0 ,22,1020,272168,1,1 ,22,1020,272176,1,1 ,22,1020,272184,1,1 ,22,1020,272192,1,1 ,20,25983,27535170,180,0 ,45,15153,4990788,24,0 ,17,923,7087940,32,0 ,45,15153,3942212,80,0 ,45,15153,4466500,64,0 ,22,1020,272200,1,1 ,22,1020,272208,1,1 ,22,1020,272216,1,1 ,22,1020,272224,1,1 ,22,1020,272232,1,1 ,22,1020,272240,1,1 ,22,1020,272248,1,1 ,22,1020,272256,1,1 ,20,22581,19146626,1012,0 ,20,26180,28059522,96,0 ,17,923,9709444,80,0 ,17,923,8136580,40,0 ,17,923,9185156,32,0 ,22,1020,272264,1,1 ,22,1020,272272,1,1 ,22,1020,272280,1,1 ,22,1020,272288,1,1 ,20,24009,22292386,96,0 ,20,25756,27010978,252,0 ,20,18540,8136610,132,0 ,22,1020,272296,1,1 ,22,1020,272304,1,1 ,22,1020,272312,1,1 ,22,1020,272320,1,1 ,17,923,8660932,40,0 ,17,923,6563780,48,0 ,44,15152,2369476,48,0 ,44,15152,796612,56,0 ,22,1020,272328,1,1 ,22,1020,272336,1,1 ,22,1020,272344,1,1 ,22,1020,272352,1,1 ,22,1020,272360,1,1 ,22,1020,272368,1,1 ,22,1020,272376,1,1 ,22,1020,272384,1,1 ,45,15153,4990980,32,0 ,17,923,7612420,32,0 ,44,15152,272388,16,0 ,44,15152,3418116,40,0 ,22,1020,272392,1,1 ,22,1020,272400,1,1 ,22,1020,272408,1,1 ,22,1020,272416,1,1 ,22,1020,272424,1,1 ,22,1020,272432,1,1 ,22,1020,272440,1,1 ,22,1020,272448,1,1 ,17,923,10233924,32,0 ,17,923,7088196,32,0 ,44,15152,1845316,32,0 ,22,1020,272456,1,1 ,22,1020,272464,1,1 ,22,1020,272472,1,1 ,22,1020,272480,1,1 ,22,1020,272488,1,1 ,22,1020,272496,1,1 ,22,1020,272504,1,1 ,22,1020,272512,1,1 ,17,923,9185412,32,0 ,44,15152,272516,24,0 ,45,15153,5515396,16,0 ,22,1020,272520,1,1 ,22,1020,272528,1,1 ,22,1020,272536,1,1 ,22,1020,272544,1,1 ,20,25198,25438370,68,0 ,22,1020,272552,1,1 ,22,1020,272560,1,1 ,22,1020,272568,1,1 ,22,1020,272576,1,1 ,17,923,8136900,32,0 ,22,1020,272584,1,1 ,22,1020,272592,1,1 ,22,1020,272600,1,1 ,22,1020,272608,1,1 ,22,1020,272616,1,1 ,22,1020,272624,1,1 ,22,1020,272632,1,1 ,22,1020,272640,1,1 ,17,923,8661252,32,0 ,17,923,7612676,24,0 ,45,15153,4991236,32,0 ,45,15153,5515524,32,0 ,22,1020,272648,1,1 ,22,1020,272656,1,1 ,22,1020,272664,1,1 ,22,1020,272672,1,1 ,20,23113,20195618,48,0 ,20,22388,18622754,76,0 ,22,1020,272680,1,1 ,22,1020,272688,1,1 ,22,1020,272696,1,1 ,22,1020,272704,1,1 ,17,923,10234180,56,0 ,17,923,7088452,32,0 ,17,923,6564164,48,0 ,44,15152,2369860,48,0 ,44,15152,1845572,24,0 ,44,15152,272708,16,0 ,44,15152,3418436,32,0 ,45,15153,4467012,136,0 ,22,1020,272712,1,1 ,22,1020,272720,1,1 ,22,1020,272728,1,1 ,22,1020,272736,1,1 ,20,16457,3418466,204,0 ,22,1020,272744,1,1 ,22,1020,272752,1,1 ,22,1020,272760,1,1 ,22,1020,272768,1,1 ,17,923,9185668,32,0 ,44,15152,797060,32,0 ,22,1020,272776,1,1 ,22,1020,272784,1,1 ,22,1020,272792,1,1 ,22,1020,272800,1,1 ,20,18288,7612834,136,0 ,22,1020,272808,1,1 ,22,1020,272816,1,1 ,22,1020,272824,1,1 ,22,1020,272832,1,1 ,17,923,8137156,32,0 ,17,923,7612868,40,0 ,44,15152,272836,16,0 ,45,15153,3942852,24,0 ,22,1020,272840,1,1 ,22,1020,272848,1,1 ,22,1020,272856,1,1 ,22,1020,272864,1,1 ,22,1020,272872,1,1 ,22,1020,272880,1,1 ,22,1020,272888,1,1 ,22,1020,272896,1,1 ,17,923,9710084,48,0 ,44,15152,1845764,24,0 ,45,15153,4991492,32,0 ,45,15153,5515780,32,0 ,17,923,8661508,24,0 ,22,1020,272904,1,1 ,22,1020,272912,1,1 ,22,1020,272920,1,1 ,22,1020,272928,1,1 ,22,1020,272936,1,1 ,22,1020,272944,1,1 ,22,1020,272952,1,1 ,22,1020,272960,1,1 ,20,15851,1845826,136,0 ,44,15152,3418692,40,0 ,17,923,7088708,24,0 ,44,15152,272964,16,0 ,22,1020,272968,1,1 ,22,1020,272976,1,1 ,22,1020,272984,1,1 ,22,1020,272992,1,1 ,20,21587,16525922,192,0 ,20,18088,7088738,120,0 ,22,1020,273000,1,1 ,22,1020,273008,1,1 ,22,1020,273016,1,1 ,22,1020,273024,1,1 ,20,26181,28060290,1240,0 ,17,923,9185924,56,0 ,44,15152,797316,56,0 ,45,15153,3943044,16,0 ,22,1020,273032,1,1 ,22,1020,273040,1,1 ,22,1020,273048,1,1 ,22,1020,273056,1,1 ,20,24010,22293154,112,0 ,20,25584,26487458,924,0 ,20,24997,24914594,144,0 ,20,23114,20196002,264,0 ,22,1020,273064,1,1 ,22,1020,273072,1,1 ,22,1020,273080,1,1 ,22,1020,273088,1,1 ,20,17389,5515970,172,0 ,20,25199,25438914,12,0 ,17,923,8661700,48,0 ,17,923,6564548,32,0 ,44,15152,2370244,48,0 ,44,15152,1845956,24,0 ,44,15152,273092,16,0 ,17,923,8137412,32,0 ,22,1020,273096,1,1 ,22,1020,273104,1,1 ,22,1020,273112,1,1 ,22,1020,273120,1,1 ,22,1020,273128,1,1 ,22,1020,273136,1,1 ,22,1020,273144,1,1 ,22,1020,273152,1,1 ,17,923,10234628,24,0 ,17,923,7613188,40,0 ,17,923,7088900,32,0 ,45,15153,3943172,16,0 ,45,15153,4991748,32,0 ,45,15153,5516036,56,0 ,22,1020,273160,1,1 ,22,1020,273168,1,1 ,22,1020,273176,1,1 ,22,1020,273184,1,1 ,20,25200,25439010,44,0 ,22,1020,273192,1,1 ,22,1020,273200,1,1 ,22,1020,273208,1,1 ,22,1020,273216,1,1 ,20,24232,22817602,832,0 ,20,21021,15477570,116,0 ,44,15152,273220,16,0 ,22,1020,273224,1,1 ,22,1020,273232,1,1 ,22,1020,273240,1,1 ,22,1020,273248,1,1 ,22,1020,273256,1,1 ,22,1020,273264,1,1 ,22,1020,273272,1,1 ,22,1020,273280,1,1 ,20,22389,18623362,152,0 ,17,923,9710468,64,0 ,44,15152,1846148,40,0 ,44,15152,3419012,40,0 ,45,15153,3943300,16,0 ,22,1020,273288,1,1 ,22,1020,273296,1,1 ,22,1020,273304,1,1 ,22,1020,273312,1,1 ,22,1020,273320,1,1 ,22,1020,273328,1,1 ,22,1020,273336,1,1 ,22,1020,273344,1,1 ,20,18541,8137666,204,0 ,17,923,10234820,40,0 ,17,923,6564804,32,0 ,44,15152,273348,32,0 ,17,923,8137668,40,0 ,22,1020,273352,1,1 ,22,1020,273360,1,1 ,22,1020,273368,1,1 ,22,1020,273376,1,1 ,20,25439,25963490,292,0 ,22,1020,273384,1,1 ,22,1020,273392,1,1 ,22,1020,273400,1,1 ,22,1020,273408,1,1 ,45,15153,4992004,32,0 ,17,923,7089156,24,0 ,45,15153,3943428,56,0 ,22,1020,273416,1,1 ,22,1020,273424,1,1 ,22,1020,273432,1,1 ,22,1020,273440,1,1 ,22,1020,273448,1,1 ,22,1020,273456,1,1 ,22,1020,273464,1,1 ,22,1020,273472,1,1 ,17,923,9186372,48,0 ,17,923,7613508,40,0 ,44,15152,2370628,48,0 ,44,15152,797764,32,0 ,17,923,8662084,48,0 ,22,1020,273480,1,1 ,22,1020,273488,1,1 ,22,1020,273496,1,1 ,22,1020,273504,1,1 ,22,1020,273512,1,1 ,22,1020,273520,1,1 ,22,1020,273528,1,1 ,22,1020,273536,1,1 ,20,25201,25439362,336,0 ,22,1020,273544,1,1 ,22,1020,273552,1,1 ,22,1020,273560,1,1 ,22,1020,273568,1,1 ,20,19487,10235042,212,0 ,22,1020,273576,1,1 ,22,1020,273584,1,1 ,22,1020,273592,1,1 ,22,1020,273600,1,1 ,45,15153,5516484,24,0 ,17,923,7089348,64,0 ,17,923,6565060,48,0 ,44,15152,1846468,32,0 ,44,15152,273604,16,0 ,44,15152,3419332,48,0 ,22,1020,273608,1,1 ,22,1020,273616,1,1 ,22,1020,273624,1,1 ,22,1020,273632,1,1 ,20,25984,27536610,336,0 ,22,1020,273640,1,1 ,22,1020,273648,1,1 ,22,1020,273656,1,1 ,22,1020,273664,1,1 ,17,923,10235140,40,0 ,45,15153,4992260,32,0 ,17,923,8137988,40,0 ,22,1020,273672,1,1 ,22,1020,273680,1,1 ,22,1020,273688,1,1 ,22,1020,273696,1,1 ,20,22115,18099490,440,0 ,20,16197,2895138,112,0 ,20,17793,6565154,256,0 ,22,1020,273704,1,1 ,22,1020,273712,1,1 ,22,1020,273720,1,1 ,22,1020,273728,1,1 ,44,15152,798020,56,0 ,44,15152,273732,24,0 ,22,1020,273736,1,1 ,22,1020,273744,1,1 ,22,1020,273752,1,1 ,22,1020,273760,1,1 ,20,20906,14953826,172,0 ,22,1020,273768,1,1 ,22,1020,273776,1,1 ,22,1020,273784,1,1 ,22,1020,273792,1,1 ,17,923,9710980,24,0 ,17,923,7613828,32,0 ,45,15153,4468100,16,0 ,45,15153,5516676,16,0 ,22,1020,273800,1,1 ,22,1020,273808,1,1 ,22,1020,273816,1,1 ,22,1020,273824,1,1 ,20,23614,21245346,108,0 ,22,1020,273832,1,1 ,22,1020,273840,1,1 ,22,1020,273848,1,1 ,22,1020,273856,1,1 ,17,923,9186756,48,0 ,44,15152,2371012,24,0 ,44,15152,1846724,176,0 ,45,15153,3943876,56,0 ,17,923,8662468,24,0 ,22,1020,273864,1,1 ,22,1020,273872,1,1 ,22,1020,273880,1,1 ,22,1020,273888,1,1 ,20,18289,7613922,84,0 ,22,1020,273896,1,1 ,22,1020,273904,1,1 ,22,1020,273912,1,1 ,22,1020,273920,1,1 ,45,15153,5516804,24,0 ,44,15152,273924,16,0 ,45,15153,4468228,16,0 ,45,15153,4992516,32,0 ,22,1020,273928,1,1 ,22,1020,273936,1,1 ,22,1020,273944,1,1 ,22,1020,273952,1,1 ,20,24011,22294050,268,0 ,20,18089,7089698,248,0 ,22,1020,273960,1,1 ,22,1020,273968,1,1 ,22,1020,273976,1,1 ,22,1020,273984,1,1 ,17,923,10235460,24,0 ,17,923,6565444,40,0 ,44,15152,3419716,40,0 ,17,923,8138308,40,0 ,17,923,9711172,56,0 ,22,1020,273992,1,1 ,22,1020,274000,1,1 ,22,1020,274008,1,1 ,22,1020,274016,1,1 ,22,1020,274024,1,1 ,22,1020,274032,1,1 ,22,1020,274040,1,1 ,22,1020,274048,1,1 ,20,15852,1846914,172,0 ,17,923,8662660,72,0 ,17,923,7614084,24,0 ,44,15152,2371204,24,0 ,44,15152,274052,32,0 ,45,15153,4468356,24,0 ,22,1020,274056,1,1 ,22,1020,274064,1,1 ,22,1020,274072,1,1 ,22,1020,274080,1,1 ,22,1020,274088,1,1 ,22,1020,274096,1,1 ,22,1020,274104,1,1 ,22,1020,274112,1,1 ,45,15153,5516996,16,0 ,17,923,7089860,24,0 ,22,1020,274120,1,1 ,22,1020,274128,1,1 ,22,1020,274136,1,1 ,22,1020,274144,1,1 ,20,21022,15478498,152,0 ,22,1020,274152,1,1 ,22,1020,274160,1,1 ,22,1020,274168,1,1 ,22,1020,274176,1,1 ,17,923,10235652,64,0 ,44,15152,798468,32,0 ,45,15153,4992772,32,0 ,22,1020,274184,2,1 ,22,1020,274192,1,1 ,22,1020,274200,1,1 ,22,1020,274208,1,1 ,20,24998,24915746,124,0 ,22,1020,274216,1,1 ,22,1020,274224,1,1 ,22,1020,274232,1,1 ,22,1020,274240,1,1 ,17,923,9187140,40,0 ,17,923,7614276,32,0 ,44,15152,2371396,136,0 ,45,15153,4468548,56,0 ,45,15153,5517124,16,0 ,22,1020,274248,1,1 ,22,1020,274256,1,1 ,22,1020,274264,1,1 ,22,1020,274272,1,1 ,22,1020,274280,1,1 ,22,1020,274288,1,1 ,22,1020,274296,1,1 ,22,1020,274304,1,1 ,20,25757,27012994,608,0 ,17,923,8138628,32,0 ,17,923,7090052,16,0 ,17,923,6565764,40,0 ,44,15152,1322884,56,0 ,44,15152,274308,16,0 ,44,15152,3420036,32,0 ,45,15153,3944324,24,0 ,22,1020,274312,1,1 ,22,1020,274320,1,1 ,22,1020,274328,1,1 ,22,1020,274336,1,1 ,22,1020,274344,1,1 ,22,1020,274352,1,1 ,22,1020,274360,1,1 ,22,1020,274368,1,1 ,20,16458,3420098,176,0 ,45,15153,5517252,16,0 ,22,1020,274376,1,1 ,22,1020,274384,1,1 ,22,1020,274392,1,1 ,22,1020,274400,1,1 ,22,1020,274408,1,1 ,22,1020,274416,1,1 ,22,1020,274424,1,1 ,22,1020,274432,1,1 ,17,923,9711620,64,0 ,17,923,7090180,32,0 ,44,15152,2895876,64,0 ,44,15152,274436,16,0 ,44,15152,798724,72,0 ,45,15153,4993028,32,0 ,22,1020,274440,1,1 ,22,1020,274448,1,1 ,22,1020,274456,1,1 ,22,1020,274464,1,1 ,20,17390,5517346,12,0 ,22,1020,274472,1,1 ,22,1020,274480,1,1 ,22,1020,274488,1,1 ,22,1020,274496,1,1 ,20,22390,18624578,268,0 ,45,15153,5517380,24,0 ,17,923,7614532,32,0 ,45,15153,3944516,40,0 ,22,1020,274504,1,1 ,22,1020,274512,1,1 ,22,1020,274520,1,1 ,22,1020,274528,1,1 ,20,21588,16527458,892,0 ,20,19176,9711714,208,0 ,22,1020,274536,1,1 ,22,1020,274544,1,1 ,22,1020,274552,1,1 ,22,1020,274560,1,1 ,20,18290,7614594,260,0 ,20,17391,5517442,24,0 ,17,923,9187460,48,0 ,44,15152,274564,16,0 ,44,15152,3420292,24,0 ,17,923,8138884,32,0 ,22,1020,274568,1,1 ,22,1020,274576,1,1 ,22,1020,274584,1,1 ,22,1020,274592,1,1 ,20,22800,19673250,76,0 ,20,16198,2896034,348,0 ,22,1020,274600,1,1 ,22,1020,274608,1,1 ,22,1020,274616,1,1 ,22,1020,274624,1,1 ,20,24579,23867586,1172,0 ,17,923,8663236,64,0 ,17,923,6566084,32,0 ,22,1020,274632,1,1 ,22,1020,274640,1,1 ,22,1020,274648,1,1 ,22,1020,274656,1,1 ,22,1020,274664,1,1 ,22,1020,274672,1,1 ,22,1020,274680,1,1 ,22,1020,274688,1,1 ,20,23615,21246210,400,0 ,17,923,10236164,64,0 ,17,923,7090436,32,0 ,44,15152,274692,32,0 ,45,15153,4468996,72,0 ,45,15153,4993284,32,0 ,45,15153,5517572,32,0 ,22,1020,274696,1,1 ,22,1020,274704,1,1 ,22,1020,274712,1,1 ,22,1020,274720,1,1 ,22,1020,274728,1,1 ,22,1020,274736,1,1 ,22,1020,274744,1,1 ,22,1020,274752,1,1 ,20,17392,5517634,12,0 ,44,15152,3420484,24,0 ,17,923,7614788,40,0 ,44,15152,1323332,56,0 ,22,1020,274760,1,1 ,22,1020,274768,1,1 ,22,1020,274776,1,1 ,22,1020,274784,1,1 ,22,1020,274792,1,1 ,22,1020,274800,1,1 ,22,1020,274808,1,1 ,22,1020,274816,1,1 ,20,17020,4469122,576,0 ,17,923,8139140,40,0 ,45,15153,3944836,64,0 ,22,1020,274824,1,1 ,22,1020,274832,1,1 ,22,1020,274840,1,1 ,22,1020,274848,1,1 ,20,21373,16003490,460,0 ,20,17393,5517730,12,0 ,22,1020,274856,1,1 ,22,1020,274864,1,1 ,22,1020,274872,1,1 ,22,1020,274880,1,1 ,17,923,6566340,32,0 ,22,1020,274888,1,1 ,22,1020,274896,1,1 ,22,1020,274904,1,1 ,22,1020,274912,1,1 ,22,1020,274920,1,1 ,22,1020,274928,1,1 ,22,1020,274936,1,1 ,22,1020,274944,1,1 ,20,17394,5517826,136,0 ,17,923,9712132,64,0 ,17,923,7090692,24,0 ,44,15152,2896388,24,0 ,44,15152,274948,8,0 ,44,15152,3420676,48,0 ,45,15153,4993540,24,0 ,45,15153,5517828,64,0 ,17,923,9187844,48,0 ,22,1020,274952,1,1 ,22,1020,274960,1,1 ,22,1020,274968,1,1 ,22,1020,274976,1,1 ,20,18542,8139298,136,0 ,22,1020,274984,1,1 ,22,1020,274992,1,1 ,22,1020,275000,1,1 ,22,1020,275008,1,1 ,44,15152,799300,24,0 ,44,15152,275012,16,0 ,22,1020,275016,1,1 ,22,1020,275024,1,1 ,22,1020,275032,1,1 ,22,1020,275040,1,1 ,22,1020,275048,1,1 ,22,1020,275056,1,1 ,22,1020,275064,1,1 ,22,1020,275072,1,1 ,20,15254,275074,1012,0 ,17,923,7615108,40,0 ,22,1020,275080,1,1 ,22,1020,275088,1,1 ,22,1020,275096,1,1 ,22,1020,275104,1,1 ,22,1020,275112,1,1 ,22,1020,275120,1,1 ,22,1020,275128,1,1 ,22,1020,275136,1,1 ,20,20907,14955202,4576,0 ,17,923,8663748,64,0 ,17,923,7090884,24,0 ,17,923,6566596,48,0 ,44,15152,2896580,40,0 ,44,15152,275140,16,0 ,45,15153,4993732,24,0 ,17,923,8139460,40,0 ,22,1020,275144,1,1 ,22,1020,275152,1,1 ,22,1020,275160,1,1 ,22,1020,275168,1,1 ,20,23115,20198114,480,0 ,22,1020,275176,1,1 ,22,1020,275184,1,1 ,22,1020,275192,1,1 ,22,1020,275200,1,1 ,20,22801,19673858,84,0 ,20,24999,24916738,164,0 ,17,923,10236676,16,0 ,44,15152,1323780,40,0 ,44,15152,799492,24,0 ,22,1020,275208,1,1 ,22,1020,275216,1,1 ,22,1020,275224,1,1 ,22,1020,275232,1,1 ,22,1020,275240,1,1 ,22,1020,275248,1,1 ,22,1020,275256,1,1 ,22,1020,275264,1,1 ,20,19488,10236738,104,0 ,45,15153,4469572,56,0 ,44,15152,1848132,104,0 ,44,15152,275268,16,0 ,22,1020,275272,1,1 ,22,1020,275280,1,1 ,22,1020,275288,1,1 ,22,1020,275296,1,1 ,22,1020,275304,1,1 ,22,1020,275312,1,1 ,22,1020,275320,1,1 ,22,1020,275328,1,1 ,17,923,10236804,16,0 ,17,923,7091076,24,0 ,44,15152,2372484,56,0 ,44,15152,3421060,312,0 ,45,15153,3945348,56,0 ,45,15153,4993924,24,0 ,17,923,9188228,32,0 ,22,1020,275336,1,1 ,22,1020,275344,1,1 ,22,1020,275352,1,1 ,22,1020,275360,1,1 ,20,21023,15479714,64,0 ,22,1020,275368,1,1 ,22,1020,275376,1,1 ,22,1020,275384,1,1 ,22,1020,275392,1,1 ,44,15152,799684,56,0 ,17,923,7615428,40,0 ,44,15152,275396,24,0 ,22,1020,275400,1,1 ,22,1020,275408,1,1 ,22,1020,275416,1,1 ,22,1020,275424,1,1 ,20,15853,1848290,12,0 ,22,1020,275432,1,1 ,22,1020,275440,1,1 ,22,1020,275448,1,1 ,22,1020,275456,1,1 ,17,923,10236932,24,0 ,44,15152,2896900,16,0 ,45,15153,5518340,24,0 ,17,923,8139780,40,0 ,17,923,9712644,64,0 ,22,1020,275464,1,1 ,22,1020,275472,1,1 ,22,1020,275480,1,1 ,22,1020,275488,1,1 ,22,1020,275496,1,1 ,22,1020,275504,1,1 ,22,1020,275512,1,1 ,22,1020,275520,1,1 ,20,17590,6042690,96,0 ,20,15854,1848386,80,0 ,45,15153,4994116,24,0 ,17,923,7091268,24,0 ,17,923,6566980,48,0 ,44,15152,1324100,32,0 ,22,1020,275528,1,1 ,22,1020,275536,1,1 ,22,1020,275544,1,1 ,22,1020,275552,1,1 ,22,1020,275560,1,1 ,22,1020,275568,1,1 ,22,1020,275576,1,1 ,22,1020,275584,1,1 ,17,923,9188484,40,0 ,44,15152,2897028,24,0 ,44,15152,275588,48,0 ,22,1020,275592,1,1 ,22,1020,275600,1,1 ,22,1020,275608,1,1 ,22,1020,275616,1,1 ,22,1020,275624,1,1 ,22,1020,275632,1,1 ,22,1020,275640,1,1 ,22,1020,275648,1,1 ,17,923,10237124,16,0 ,45,15153,5518532,16,0 ,17,923,8664260,48,0 ,22,1020,275656,1,1 ,22,1020,275664,1,1 ,22,1020,275672,1,1 ,22,1020,275680,1,1 ,22,1020,275688,1,1 ,22,1020,275696,1,1 ,22,1020,275704,1,1 ,22,1020,275712,1,1 ,20,25440,25965826,136,0 ,45,15153,4994308,24,0 ,17,923,7615748,40,0 ,17,923,7091460,24,0 ,45,15153,4470020,80,0 ,22,1020,275720,1,1 ,22,1020,275728,1,1 ,22,1020,275736,1,1 ,22,1020,275744,1,1 ,20,17794,6567202,884,0 ,22,1020,275752,1,1 ,22,1020,275760,1,1 ,22,1020,275768,1,1 ,22,1020,275776,1,1 ,20,16459,3421506,136,0 ,17,923,10237252,40,0 ,44,15152,2897220,56,0 ,44,15152,2372932,24,0 ,44,15152,1324356,96,0 ,45,15153,3945796,16,0 ,45,15153,5518660,16,0 ,17,923,8140100,32,0 ,22,1020,275784,1,1 ,22,1020,275792,1,1 ,22,1020,275800,1,1 ,22,1020,275808,1,1 ,22,1020,275816,1,1 ,22,1020,275824,1,1 ,22,1020,275832,1,1 ,22,1020,275840,1,1 ,44,15152,800132,24,0 ,22,1020,275848,1,1 ,22,1020,275856,1,1 ,22,1020,275864,1,1 ,22,1020,275872,1,1 ,20,22802,19674530,100,0 ,20,21024,15480226,56,0 ,22,1020,275880,1,1 ,22,1020,275888,1,1 ,22,1020,275896,1,1 ,22,1020,275904,1,1 ,17,923,9188804,32,0 ,17,923,7091652,24,0 ,17,923,6567364,48,0 ,45,15153,3945924,48,0 ,45,15153,4994500,32,0 ,45,15153,5518788,16,0 ,22,1020,275912,1,1 ,22,1020,275920,1,1 ,22,1020,275928,1,1 ,22,1020,275936,1,1 ,20,18090,7091682,304,0 ,22,1020,275944,1,1 ,22,1020,275952,1,1 ,22,1020,275960,1,1 ,22,1020,275968,1,1 ,17,923,9713156,24,0 ,44,15152,2373124,16,0 ,44,15152,275972,24,0 ,22,1020,275976,1,1 ,22,1020,275984,1,1 ,22,1020,275992,1,1 ,22,1020,276000,1,1 ,20,17194,4994594,12,0 ,22,1020,276008,1,1 ,22,1020,276016,1,1 ,22,1020,276024,1,1 ,22,1020,276032,1,1 ,20,17395,5518914,12,0 ,17,923,8664644,32,0 ,17,923,7616068,24,0 ,44,15152,800324,72,0 ,45,15153,5518916,16,0 ,17,923,8140356,48,0 ,22,1020,276040,1,1 ,22,1020,276048,1,1 ,22,1020,276056,1,1 ,22,1020,276064,1,1 ,20,18543,8140386,228,0 ,22,1020,276072,1,1 ,22,1020,276080,1,1 ,22,1020,276088,1,1 ,22,1020,276096,1,1 ,20,24012,22296194,1124,0 ,20,17195,4994690,4148,0 ,20,19489,10237570,220,0 ,17,923,10237572,64,0 ,17,923,7091844,24,0 ,44,15152,2373252,56,0 ,44,15152,1848964,48,0 ,22,1020,276104,1,1 ,22,1020,276112,1,1 ,22,1020,276120,1,1 ,22,1020,276128,1,1 ,20,17396,5519010,52,0 ,22,1020,276136,1,1 ,22,1020,276144,1,1 ,22,1020,276152,1,1 ,22,1020,276160,1,1 ,20,15855,1849026,144,0 ,17,923,9713348,56,0 ,44,15152,276164,24,0 ,45,15153,4994756,32,0 ,45,15153,5519044,16,0 ,17,923,9189060,40,0 ,22,1020,276168,1,1 ,22,1020,276176,1,1 ,22,1020,276184,1,1 ,22,1020,276192,1,1 ,20,19177,9713378,44,0 ,22,1020,276200,1,1 ,22,1020,276208,1,1 ,22,1020,276216,1,1 ,22,1020,276224,1,1 ,20,25202,25442050,540,0 ,44,15152,2897668,56,0 ,17,923,7616260,32,0 ,22,1020,276232,1,1 ,22,1020,276240,1,1 ,22,1020,276248,1,1 ,22,1020,276256,1,1 ,22,1020,276264,1,1 ,22,1020,276272,1,1 ,22,1020,276280,1,1 ,22,1020,276288,1,1 ,20,23789,21772098,72,0 ,20,17591,6043458,900,0 ,17,923,8664900,24,0 ,17,923,7092036,24,0 ,17,923,6567748,32,0 ,45,15153,3946308,16,0 ,45,15153,5519172,16,0 ,22,1020,276296,1,1 ,22,1020,276304,1,1 ,22,1020,276312,1,1 ,22,1020,276320,1,1 ,20,21025,15480674,236,0 ,20,25985,27539298,320,0 ,20,16771,3946338,12,0 ,22,1020,276328,1,1 ,22,1020,276336,1,1 ,22,1020,276344,2,1 ,22,1020,276352,1,1 ,20,21879,17053570,44,0 ,45,15153,4470660,32,0 ,44,15152,276356,40,0 ,22,1020,276360,1,1 ,22,1020,276368,1,1 ,22,1020,276376,1,1 ,22,1020,276384,1,1 ,22,1020,276392,1,1 ,22,1020,276400,1,1 ,22,1020,276408,1,1 ,22,1020,276416,1,1 ,20,16772,3946434,380,0 ,17,923,8140740,56,0 ,45,15153,3946436,16,0 ,45,15153,4995012,32,0 ,45,15153,5519300,16,0 ,22,1020,276424,1,1 ,22,1020,276432,1,1 ,22,1020,276440,1,1 ,22,1020,276448,1,1 ,22,1020,276456,1,1 ,22,1020,276464,1,1 ,22,1020,276472,1,1 ,22,1020,276480,1,1 ,17,923,9189380,40,0 ,17,923,7616516,24,0 ,17,923,7092228,24,0 ,44,15152,1849348,632,0 ,17,923,8665092,48,0 ,22,1020,276488,1,1 ,22,1020,276496,1,1 ,22,1020,276504,1,1 ,22,1020,276512,1,1 ,20,25000,24918050,24,0 ,22,1020,276520,1,1 ,22,1020,276528,1,1 ,22,1020,276536,1,1 ,22,1020,276544,1,1 ,20,19178,9713730,44,0 ,20,17397,5519426,64,0 ,45,15153,5519428,16,0 ,17,923,6568004,32,0 ,44,15152,2373700,32,0 ,44,15152,1325124,24,0 ,45,15153,3946564,16,0 ,22,1020,276552,1,1 ,22,1020,276560,1,1 ,22,1020,276568,1,1 ,22,1020,276576,1,1 ,22,1020,276584,1,1 ,22,1020,276592,1,1 ,22,1020,276600,1,1 ,22,1020,276608,1,1 ,17,923,10238084,48,0 ,44,15152,800900,40,0 ,45,15153,4470916,40,0 ,17,923,9713796,64,0 ,22,1020,276616,1,1 ,22,1020,276624,1,1 ,22,1020,276632,1,1 ,22,1020,276640,1,1 ,20,22391,18626722,12,0 ,20,18291,7616674,224,0 ,22,1020,276648,1,1 ,22,1020,276656,1,1 ,22,1020,276664,1,1 ,22,1020,276672,1,1 ,20,22803,19675330,116,0 ,45,15153,5519556,16,0 ,17,923,7616708,32,0 ,17,923,7092420,24,0 ,44,15152,2898116,64,0 ,44,15152,276676,32,0 ,45,15153,3946692,24,0 ,45,15153,4995268,32,0 ,22,1020,276680,1,1 ,22,1020,276688,1,1 ,22,1020,276696,1,1 ,22,1020,276704,1,1 ,20,21880,17053922,88,0 ,20,25001,24918242,276,0 ,22,1020,276712,1,1 ,22,1020,276720,1,1 ,22,1020,276728,1,1 ,22,1020,276736,1,1 ,20,22392,18626818,276,0 ,44,15152,1325316,56,0 ,22,1020,276744,1,1 ,22,1020,276752,1,1 ,22,1020,276760,1,1 ,22,1020,276768,1,1 ,22,1020,276776,1,1 ,22,1020,276784,1,1 ,22,1020,276792,1,1 ,22,1020,276800,1,1 ,20,25441,25966914,64,0 ,17,923,9189700,24,0 ,17,923,6568260,32,0 ,44,15152,2373956,40,0 ,45,15153,5519684,16,0 ,22,1020,276808,1,1 ,22,1020,276816,1,1 ,22,1020,276824,1,1 ,22,1020,276832,1,1 ,22,1020,276840,1,1 ,22,1020,276848,1,1 ,22,1020,276856,1,1 ,22,1020,276864,1,1 ,20,23790,21772674,1784,0 ,20,16460,3422594,388,0 ,17,923,8665476,40,0 ,17,923,7092612,24,0 ,45,15153,3946884,40,0 ,17,923,8141188,40,0 ,22,1020,276872,1,1 ,22,1020,276880,1,1 ,22,1020,276888,1,1 ,22,1020,276896,1,1 ,20,19179,9714082,220,0 ,22,1020,276904,1,1 ,22,1020,276912,1,1 ,22,1020,276920,1,1 ,22,1020,276928,1,1 ,45,15153,5519812,32,0 ,17,923,7616964,24,0 ,44,15152,276932,40,0 ,44,15152,801220,48,0 ,45,15153,4471236,16,0 ,45,15153,4995524,32,0 ,22,1020,276936,1,1 ,22,1020,276944,1,1 ,22,1020,276952,1,1 ,22,1020,276960,1,1 ,22,1020,276968,1,1 ,22,1020,276976,1,1 ,22,1020,276984,1,1 ,22,1020,276992,1,1 ,17,923,10238468,72,0 ,17,923,9189892,32,0 ,22,1020,277000,1,1 ,22,1020,277008,1,1 ,22,1020,277016,1,1 ,22,1020,277024,1,1 ,22,1020,277032,1,1 ,22,1020,277040,1,1 ,22,1020,277048,1,1 ,22,1020,277056,1,1 ,20,24432,23345730,264,0 ,20,17398,5519938,108,0 ,45,15153,4471364,24,0 ,17,923,7092804,24,0 ,17,923,6568516,32,0 ,22,1020,277064,1,1 ,22,1020,277072,1,1 ,22,1020,277080,1,1 ,22,1020,277088,1,1 ,22,1020,277096,1,1 ,22,1020,277104,1,1 ,22,1020,277112,1,1 ,22,1020,277120,1,1 ,17,923,9714308,64,0 ,17,923,7617156,56,0 ,44,15152,2374276,32,0 ,22,1020,277128,1,1 ,22,1020,277136,1,1 ,22,1020,277144,1,1 ,22,1020,277152,1,1 ,22,1020,277160,1,1 ,22,1020,277168,1,1 ,22,1020,277176,1,1 ,22,1020,277184,1,1 ,17,923,8665796,32,0 ,44,15152,2898628,32,0 ,44,15152,1325764,32,0 ,45,15153,3947204,32,0 ,45,15153,4995780,24,0 ,45,15153,5520068,24,0 ,17,923,8141508,40,0 ,22,1020,277192,1,1 ,22,1020,277200,1,1 ,22,1020,277208,1,1 ,22,1020,277216,1,1 ,20,22116,18103010,344,0 ,22,1020,277224,1,1 ,22,1020,277232,1,1 ,22,1020,277240,1,1 ,22,1020,277248,1,1 ,17,923,9190148,32,0 ,17,923,7092996,64,0 ,44,15152,277252,48,0 ,45,15153,4471556,16,0 ,22,1020,277256,1,1 ,22,1020,277264,1,1 ,22,1020,277272,1,1 ,22,1020,277280,1,1 ,22,1020,277288,1,1 ,22,1020,277296,1,1 ,22,1020,277304,1,1 ,22,1020,277312,1,1 ,20,15856,1850178,112,0 ,20,25442,25967426,928,0 ,44,15152,801604,64,0 ,17,923,6568772,24,0 ,22,1020,277320,1,1 ,22,1020,277328,1,1 ,22,1020,277336,1,1 ,22,1020,277344,1,1 ,22,1020,277352,1,1 ,22,1020,277360,1,1 ,22,1020,277368,1,1 ,22,1020,277376,1,1 ,20,16199,2898818,112,0 ,45,15153,5520260,24,0 ,44,15152,2374532,104,0 ,45,15153,4471684,16,0 ,45,15153,4995972,24,0 ,22,1020,277384,1,1 ,22,1020,277392,1,1 ,22,1020,277400,1,1 ,22,1020,277408,1,1 ,20,21881,17054626,108,0 ,22,1020,277416,1,1 ,22,1020,277424,1,1 ,22,1020,277432,1,1 ,22,1020,277440,1,1 ,17,923,8666052,32,0 ,44,15152,2898884,72,0 ,44,15152,1326020,24,0 ,45,15153,3947460,48,0 ,22,1020,277448,1,1 ,22,1020,277456,1,1 ,22,1020,277464,1,1 ,22,1020,277472,1,1 ,22,1020,277480,1,1 ,22,1020,277488,1,1 ,22,1020,277496,1,1 ,22,1020,277504,1,1 ,17,923,9190404,32,0 ,17,923,6568964,40,0 ,45,15153,4471812,16,0 ,17,923,8141828,32,0 ,22,1020,277512,1,1 ,22,1020,277520,1,1 ,22,1020,277528,1,1 ,22,1020,277536,1,1 ,22,1020,277544,1,1 ,22,1020,277552,1,1 ,22,1020,277560,1,1 ,22,1020,277568,1,1 ,17,923,10239044,56,0 ,17,923,7617604,32,0 ,45,15153,4996164,24,0 ,45,15153,5520452,16,0 ,22,1020,277576,1,1 ,22,1020,277584,1,1 ,22,1020,277592,1,1 ,22,1020,277600,1,1 ,20,22804,19676258,112,0 ,22,1020,277608,1,1 ,22,1020,277616,1,1 ,22,1020,277624,1,1 ,22,1020,277632,1,1 ,17,923,9714820,64,0 ,44,15152,1326212,40,0 ,44,15152,277636,72,0 ,45,15153,4471940,24,0 ,22,1020,277640,1,1 ,22,1020,277648,1,1 ,22,1020,277656,1,1 ,22,1020,277664,1,1 ,22,1020,277672,1,1 ,22,1020,277680,1,1 ,22,1020,277688,1,1 ,22,1020,277696,1,1 ,17,923,8666308,32,0 ,45,15153,5520580,16,0 ,22,1020,277704,1,1 ,22,1020,277712,1,1 ,22,1020,277720,1,1 ,22,1020,277728,1,1 ,22,1020,277736,1,1 ,22,1020,277744,1,1 ,22,1020,277752,1,1 ,22,1020,277760,1,1 ,17,923,9190660,32,0 ,17,923,7093508,32,0 ,45,15153,4996356,24,0 ,17,923,8142084,40,0 ,22,1020,277768,1,1 ,22,1020,277776,1,1 ,22,1020,277784,1,1 ,22,1020,277792,1,1 ,22,1020,277800,1,1 ,22,1020,277808,1,1 ,22,1020,277816,1,1 ,22,1020,277824,1,1 ,45,15153,5520708,88,0 ,17,923,7617860,32,0 ,17,923,6569284,40,0 ,44,15152,802116,48,0 ,44,15152,3423556,136,0 ,45,15153,3947844,32,0 ,45,15153,4472132,16,0 ,22,1020,277832,1,1 ,22,1020,277840,1,1 ,22,1020,277848,1,1 ,22,1020,277856,1,1 ,20,19490,10239330,60,0 ,22,1020,277864,1,1 ,22,1020,277872,1,1 ,22,1020,277880,1,1 ,22,1020,277888,1,1 ,20,23616,21249410,128,0 ,20,18544,8142210,12,0 ,22,1020,277896,1,1 ,22,1020,277904,1,1 ,22,1020,277912,1,1 ,22,1020,277920,1,1 ,20,17399,5520802,128,0 ,22,1020,277928,1,1 ,22,1020,277936,1,1 ,22,1020,277944,1,1 ,22,1020,277952,1,1 ,17,923,8666564,80,0 ,44,15152,1326532,32,0 ,45,15153,4472260,16,0 ,45,15153,4996548,24,0 ,22,1020,277960,1,1 ,22,1020,277968,1,1 ,22,1020,277976,1,1 ,22,1020,277984,1,1 ,20,18545,8142306,88,0 ,22,1020,277992,1,1 ,22,1020,278000,1,1 ,22,1020,278008,1,1 ,22,1020,278016,1,1 ,17,923,10239492,80,0 ,17,923,7093764,24,0 ,44,15152,2899460,64,0 ,17,923,9190916,40,0 ,22,1020,278024,1,1 ,22,1020,278032,1,1 ,22,1020,278040,1,1 ,22,1020,278048,1,1 ,22,1020,278056,1,1 ,22,1020,278064,1,1 ,22,1020,278072,1,1 ,22,1020,278080,1,1 ,17,923,8142404,40,0 ,17,923,7618116,24,0 ,45,15153,3948100,32,0 ,45,15153,4472388,280,0 ,22,1020,278088,1,1 ,22,1020,278096,1,1 ,22,1020,278104,1,1 ,22,1020,278112,1,1 ,22,1020,278120,1,1 ,22,1020,278128,1,1 ,22,1020,278136,1,1 ,22,1020,278144,1,1 ,17,923,9715332,24,0 ,17,923,6569604,24,0 ,45,15153,4996740,24,0 ,22,1020,278152,1,1 ,22,1020,278160,1,1 ,22,1020,278168,1,1 ,22,1020,278176,1,1 ,22,1020,278184,1,1 ,22,1020,278192,1,1 ,22,1020,278200,1,1 ,22,1020,278208,1,1 ,20,21026,15482562,1120,0 ,20,15857,1851074,76,0 ,44,15152,802500,48,0 ,17,923,7093956,24,0 ,44,15152,2375364,24,0 ,44,15152,1326788,40,0 ,44,15152,278212,56,0 ,22,1020,278216,1,1 ,22,1020,278224,1,1 ,22,1020,278232,1,1 ,22,1020,278240,1,1 ,22,1020,278248,1,1 ,22,1020,278256,1,1 ,22,1020,278264,1,1 ,22,1020,278272,1,1 ,20,21882,17055490,252,0 ,20,16200,2899714,112,0 ,17,923,7618308,64,0 ,22,1020,278280,1,1 ,22,1020,278288,1,1 ,22,1020,278296,1,1 ,22,1020,278304,1,1 ,20,21968,17579810,1788,0 ,22,1020,278312,1,1 ,22,1020,278320,1,1 ,22,1020,278328,1,1 ,22,1020,278336,1,1 ,20,19491,10239810,192,0 ,17,923,9715524,56,0 ,17,923,6569796,32,0 ,45,15153,3948356,16,0 ,45,15153,4996932,24,0 ,17,923,9191236,32,0 ,22,1020,278344,1,1 ,22,1020,278352,1,1 ,22,1020,278360,1,1 ,22,1020,278368,1,1 ,20,18091,7094114,5280,0 ,22,1020,278376,1,1 ,22,1020,278384,1,1 ,22,1020,278392,1,1 ,22,1020,278400,1,1 ,17,923,8142724,32,0 ,17,923,7094148,24,0 ,44,15152,2375556,24,0 ,22,1020,278408,1,1 ,22,1020,278416,1,1 ,22,1020,278424,1,1 ,22,1020,278432,1,1 ,20,18292,7618466,92,0 ,22,1020,278440,1,1 ,22,1020,278448,1,1 ,22,1020,278456,1,1 ,22,1020,278464,1,1 ,45,15153,3948484,24,0 ,22,1020,278472,1,1 ,22,1020,278480,1,1 ,22,1020,278488,1,1 ,22,1020,278496,1,1 ,20,22805,19677154,148,0 ,22,1020,278504,1,1 ,22,1020,278512,1,1 ,22,1020,278520,1,1 ,22,1020,278528,1,1 ,20,21374,16007170,480,0 ,45,15153,5521412,40,0 ,44,15152,2899972,64,0 ,44,15152,1327108,32,0 ,45,15153,4997124,24,0 ,22,1020,278536,1,1 ,22,1020,278544,1,1 ,22,1020,278552,1,1 ,22,1020,278560,1,1 ,22,1020,278568,1,1 ,22,1020,278576,1,1 ,22,1020,278584,1,1 ,22,1020,278592,1,1 ,17,923,9191492,24,0 ,17,923,7094340,32,0 ,17,923,6570052,24,0 ,44,15152,2375748,24,0 ,44,15152,802884,64,0 ,17,923,8667204,24,0 ,22,1020,278600,1,1 ,22,1020,278608,1,1 ,22,1020,278616,1,1 ,22,1020,278624,1,1 ,22,1020,278632,1,1 ,22,1020,278640,1,1 ,22,1020,278648,1,1 ,22,1020,278656,1,1 ,20,20563,13385858,244,0 ,20,19180,9715842,44,0 ,17,923,10240132,56,0 ,44,15152,278660,40,0 ,45,15153,3948676,16,0 ,17,923,8142980,24,0 ,22,1020,278664,1,1 ,22,1020,278672,1,1 ,22,1020,278680,1,1 ,22,1020,278688,1,1 ,20,18546,8143010,12,0 ,22,1020,278696,1,1 ,22,1020,278704,1,1 ,22,1020,278712,1,1 ,22,1020,278720,1,1 ,45,15153,4997316,16,0 ,22,1020,278728,1,1 ,22,1020,278736,1,1 ,22,1020,278744,1,1 ,22,1020,278752,1,1 ,22,1020,278760,1,1 ,22,1020,278768,1,1 ,22,1020,278776,1,1 ,22,1020,278784,1,1 ,20,18547,8143106,1448,0 ,17,923,9715972,72,0 ,17,923,7618820,48,0 ,17,923,6570244,48,0 ,44,15152,2375940,24,0 ,44,15152,1327364,24,0 ,45,15153,3948804,24,0 ,17,923,8667396,64,0 ,17,923,9191684,40,0 ,22,1020,278792,1,1 ,22,1020,278800,1,1 ,22,1020,278808,1,1 ,22,1020,278816,1,1 ,20,15858,1851682,96,0 ,22,1020,278824,1,1 ,22,1020,278832,1,1 ,22,1020,278840,1,1 ,22,1020,278848,1,1 ,17,923,8143172,56,0 ,17,923,7094596,32,0 ,45,15153,4997444,16,0 ,45,15153,5521732,40,0 ,22,1020,278856,1,1 ,22,1020,278864,1,1 ,22,1020,278872,1,1 ,22,1020,278880,1,1 ,20,25986,27541858,292,0 ,22,1020,278888,1,1 ,22,1020,278896,1,1 ,22,1020,278904,1,1 ,22,1020,278912,1,1 ,20,23617,21250434,180,0 ,20,25002,24920450,240,0 ,44,15152,3424644,104,0 ,22,1020,278920,1,1 ,22,1020,278928,1,1 ,22,1020,278936,1,1 ,22,1020,278944,1,1 ,20,22393,18629026,480,0 ,20,17400,5521826,916,0 ,22,1020,278952,1,1 ,22,1020,278960,1,1 ,22,1020,278968,1,1 ,22,1020,278976,1,1 ,20,15448,803266,1220,0 ,45,15153,4997572,16,0 ,44,15152,2376132,24,0 ,44,15152,1327556,96,0 ,44,15152,278980,48,0 ,45,15153,3948996,16,0 ,22,1020,278984,1,1 ,22,1020,278992,1,1 ,22,1020,279000,1,1 ,22,1020,279008,1,1 ,20,23116,20201954,100,0 ,20,19181,9716194,220,0 ,22,1020,279016,1,1 ,22,1020,279024,1,1 ,22,1020,279032,1,1 ,22,1020,279040,1,1 ,44,15152,2900484,80,0 ,22,1020,279048,1,1 ,22,1020,279056,1,1 ,22,1020,279064,1,1 ,22,1020,279072,1,1 ,22,1020,279080,1,1 ,22,1020,279088,1,1 ,22,1020,279096,1,1 ,22,1020,279104,1,1 ,17,923,10240580,56,0 ,17,923,7094852,40,0 ,44,15152,803396,120,0 ,45,15153,3949124,24,0 ,45,15153,4997700,16,0 ,17,923,9192004,40,0 ,22,1020,279112,1,1 ,22,1020,279120,1,1 ,22,1020,279128,1,1 ,22,1020,279136,1,1 ,22,1020,279144,1,1 ,22,1020,279152,1,1 ,22,1020,279160,1,1 ,22,1020,279168,1,1 ,20,24433,23347842,216,0 ,20,25758,27017858,568,0 ,20,16201,2900610,6252,0 ,20,18293,7619202,612,0 ,45,15153,5522052,32,0 ,17,923,7619204,48,0 ,17,923,6570628,24,0 ,44,15152,2376324,24,0 ,22,1020,279176,1,1 ,22,1020,279184,1,1 ,22,1020,279192,1,1 ,22,1020,279200,1,1 ,22,1020,279208,1,1 ,22,1020,279216,1,1 ,22,1020,279224,1,1 ,22,1020,279232,1,1 ,45,15153,4997828,24,0 ,22,1020,279240,1,1 ,22,1020,279248,1,1 ,22,1020,279256,1,1 ,22,1020,279264,1,1 ,22,1020,279272,1,1 ,22,1020,279280,1,1 ,22,1020,279288,1,1 ,22,1020,279296,1,1 ,17,923,8667908,32,0 ,45,15153,3949316,24,0 ,17,923,8143620,40,0 ,22,1020,279304,1,1 ,22,1020,279312,1,1 ,22,1020,279320,1,1 ,22,1020,279328,1,1 ,20,19761,10765090,200,0 ,22,1020,279336,1,1 ,22,1020,279344,1,1 ,22,1020,279352,1,1 ,22,1020,279360,1,1 ,17,923,9716548,80,0 ,17,923,6570820,24,0 ,44,15152,2376516,24,0 ,44,15152,279364,64,0 ,22,1020,279368,1,1 ,22,1020,279376,1,1 ,22,1020,279384,1,1 ,22,1020,279392,1,1 ,22,1020,279400,1,1 ,22,1020,279408,1,1 ,22,1020,279416,1,1 ,22,1020,279424,1,1 ,20,17021,4473730,56,0 ,17,923,9192324,40,0 ,17,923,7095172,24,0 ,45,15153,4998020,24,0 ,45,15153,5522308,16,0 ,22,1020,279432,1,1 ,22,1020,279440,1,1 ,22,1020,279448,1,1 ,22,1020,279456,1,1 ,20,16773,3949474,304,0 ,22,1020,279464,1,1 ,22,1020,279472,1,1 ,22,1020,279480,1,1 ,22,1020,279488,1,1 ,45,15153,3949508,16,0 ,22,1020,279496,1,1 ,22,1020,279504,1,1 ,22,1020,279512,1,1 ,22,1020,279520,1,1 ,22,1020,279528,1,1 ,22,1020,279536,1,1 ,22,1020,279544,1,1 ,22,1020,279552,1,1 ,17,923,10241028,32,0 ,17,923,7619588,32,0 ,17,923,6571012,32,0 ,44,15152,2376708,24,0 ,45,15153,5522436,24,0 ,17,923,8668164,40,0 ,22,1020,279560,1,1 ,22,1020,279568,1,1 ,22,1020,279576,1,1 ,22,1020,279584,1,1 ,20,15859,1852450,136,0 ,22,1020,279592,1,1 ,22,1020,279600,1,1 ,22,1020,279608,1,1 ,22,1020,279616,1,1 ,17,923,8143940,24,0 ,17,923,7095364,24,0 ,45,15153,3949636,24,0 ,45,15153,4998212,24,0 ,22,1020,279624,1,1 ,22,1020,279632,1,1 ,22,1020,279640,1,1 ,22,1020,279648,1,1 ,22,1020,279656,1,1 ,22,1020,279664,1,1 ,22,1020,279672,1,1 ,22,1020,279680,1,1 ,20,22806,19678338,156,0 ,44,15152,2901124,112,0 ,22,1020,279688,1,1 ,22,1020,279696,1,1 ,22,1020,279704,1,1 ,22,1020,279712,1,1 ,22,1020,279720,1,1 ,22,1020,279728,1,1 ,22,1020,279736,1,1 ,22,1020,279744,1,1 ,17,923,9192644,40,0 ,44,15152,2376900,24,0 ,44,15152,1328324,40,0 ,44,15152,3425476,64,0 ,45,15153,5522628,24,0 ,22,1020,279752,1,1 ,22,1020,279760,1,1 ,22,1020,279768,1,1 ,22,1020,279776,1,1 ,22,1020,279784,1,1 ,22,1020,279792,1,1 ,22,1020,279800,1,1 ,22,1020,279808,1,1 ,20,23117,20202754,184,0 ,17,923,10241284,40,0 ,17,923,7619844,32,0 ,17,923,7095556,24,0 ,17,923,6571268,40,0 ,45,15153,3949828,56,0 ,45,15153,4998404,24,0 ,17,923,8144132,40,0 ,22,1020,279816,1,1 ,22,1020,279824,1,1 ,22,1020,279832,1,1 ,22,1020,279840,1,1 ,22,1020,279848,1,1 ,22,1020,279856,1,1 ,22,1020,279864,1,1 ,22,1020,279872,1,1 ,20,24233,22824258,1064,0 ,20,17022,4474178,12,0 ,20,19492,10241346,212,0 ,17,923,8668484,24,0 ,44,15152,279876,104,0 ,22,1020,279880,1,1 ,22,1020,279888,1,1 ,22,1020,279896,1,1 ,22,1020,279904,1,1 ,22,1020,279912,1,1 ,22,1020,279920,1,1 ,22,1020,279928,1,1 ,22,1020,279936,1,1 ,45,15153,5522820,40,0 ,44,15152,2377092,24,0 ,22,1020,279944,1,1 ,22,1020,279952,1,1 ,22,1020,279960,1,1 ,22,1020,279968,1,1 ,20,22117,18105762,376,0 ,20,16461,3425698,408,0 ,20,17023,4474274,136,0 ,22,1020,279976,1,1 ,22,1020,279984,1,1 ,22,1020,279992,1,1 ,22,1020,280000,1,1 ,17,923,9717188,72,0 ,17,923,7095748,32,0 ,45,15153,4998596,24,0 ,22,1020,280008,1,1 ,22,1020,280016,1,1 ,22,1020,280024,1,1 ,22,1020,280032,1,1 ,22,1020,280040,1,1 ,22,1020,280048,1,1 ,22,1020,280056,1,1 ,22,1020,280064,1,1 ,17,923,9192964,24,0 ,17,923,7620100,32,0 ,44,15152,1328644,32,0 ,44,15152,804356,64,0 ,17,923,8668676,24,0 ,22,1020,280072,1,1 ,22,1020,280080,1,1 ,22,1020,280088,1,1 ,22,1020,280096,1,1 ,22,1020,280104,1,1 ,22,1020,280112,1,1 ,22,1020,280120,1,1 ,22,1020,280128,1,1 ,17,923,10241604,40,0 ,17,923,6571588,24,0 ,44,15152,2377284,24,0 ,17,923,8144452,32,0 ,22,1020,280136,1,1 ,22,1020,280144,1,1 ,22,1020,280152,1,1 ,22,1020,280160,1,1 ,22,1020,280168,1,1 ,22,1020,280176,1,1 ,22,1020,280184,1,1 ,22,1020,280192,1,1 ,45,15153,4998788,24,0 ,22,1020,280200,1,1 ,22,1020,280208,1,1 ,22,1020,280216,1,1 ,22,1020,280224,1,1 ,22,1020,280232,1,1 ,22,1020,280240,1,1 ,22,1020,280248,1,1 ,22,1020,280256,1,1 ,17,923,9193156,16,0 ,17,923,7096004,24,0 ,44,15152,3425988,24,0 ,45,15153,3950276,24,0 ,45,15153,5523140,16,0 ,17,923,8668868,32,0 ,22,1020,280264,1,1 ,22,1020,280272,1,1 ,22,1020,280280,1,1 ,22,1020,280288,1,1 ,20,21883,17057506,916,0 ,22,1020,280296,1,1 ,22,1020,280304,1,1 ,22,1020,280312,1,1 ,22,1020,280320,1,1 ,45,15153,4474628,48,0 ,17,923,7620356,40,0 ,17,923,6571780,32,0 ,44,15152,2377476,24,0 ,44,15152,1328900,32,0 ,22,1020,280328,1,1 ,22,1020,280336,1,1 ,22,1020,280344,1,1 ,22,1020,280352,1,1 ,20,23618,21251874,160,0 ,20,22582,19154722,484,0 ,22,1020,280360,1,1 ,22,1020,280368,1,1 ,22,1020,280376,1,1 ,22,1020,280384,1,1 ,17,923,9193284,40,0 ,45,15153,4998980,24,0 ,45,15153,5523268,80,0 ,17,923,8144708,40,0 ,22,1020,280392,1,1 ,22,1020,280400,1,1 ,22,1020,280408,1,1 ,22,1020,280416,1,1 ,22,1020,280424,1,1 ,22,1020,280432,1,1 ,22,1020,280440,1,1 ,22,1020,280448,1,1 ,20,25585,26494850,1860,0 ,17,923,10241924,16,0 ,17,923,7096196,24,0 ,44,15152,3426180,24,0 ,45,15153,3950468,56,0 ,22,1020,280456,1,1 ,22,1020,280464,1,1 ,22,1020,280472,1,1 ,22,1020,280480,1,1 ,22,1020,280488,1,1 ,22,1020,280496,1,1 ,22,1020,280504,1,1 ,22,1020,280512,1,1 ,17,923,8669124,32,0 ,44,15152,2377668,24,0 ,22,1020,280520,1,1 ,22,1020,280528,1,1 ,22,1020,280536,1,1 ,22,1020,280544,1,1 ,20,25203,25446370,60,0 ,22,1020,280552,1,1 ,22,1020,280560,1,1 ,22,1020,280568,1,1 ,22,1020,280576,1,1 ,17,923,10242052,64,0 ,17,923,6572036,32,0 ,44,15152,2902020,40,0 ,44,15152,1329156,24,0 ,44,15152,804868,32,0 ,45,15153,4999172,24,0 ,17,923,9717764,24,0 ,22,1020,280584,1,1 ,22,1020,280592,1,1 ,22,1020,280600,1,1 ,22,1020,280608,1,1 ,20,20564,13387810,292,0 ,22,1020,280616,1,1 ,22,1020,280624,1,1 ,22,1020,280632,1,1 ,22,1020,280640,1,1 ,44,15152,3426372,96,0 ,17,923,7620676,40,0 ,17,923,7096388,32,0 ,22,1020,280648,1,1 ,22,1020,280656,1,1 ,22,1020,280664,1,1 ,22,1020,280672,1,1 ,20,15860,1853538,612,0 ,22,1020,280680,1,1 ,22,1020,280688,1,1 ,22,1020,280696,1,1 ,22,1020,280704,1,1 ,17,923,9193604,48,0 ,44,15152,2377860,56,0 ,44,15152,280708,24,0 ,45,15153,4475012,16,0 ,17,923,8145028,32,0 ,22,1020,280712,1,1 ,22,1020,280720,1,1 ,22,1020,280728,1,1 ,22,1020,280736,1,1 ,22,1020,280744,1,1 ,22,1020,280752,1,1 ,22,1020,280760,1,1 ,22,1020,280768,1,1 ,20,19182,9717954,72,0 ,17,923,9717956,56,0 ,44,15152,1329348,176,0 ,45,15153,4999364,16,0 ,17,923,8669380,24,0 ,22,1020,280776,1,1 ,22,1020,280784,1,1 ,22,1020,280792,1,1 ,22,1020,280800,1,1 ,20,26334,28592354,172,0 ,22,1020,280808,1,1 ,22,1020,280816,1,1 ,22,1020,280824,1,1 ,22,1020,280832,1,1 ,20,25003,24922370,48,0 ,45,15153,4475140,104,0 ,17,923,6572292,32,0 ,44,15152,805124,56,0 ,22,1020,280840,1,1 ,22,1020,280848,1,1 ,22,1020,280856,1,1 ,22,1020,280864,1,1 ,22,1020,280872,1,1 ,22,1020,280880,1,1 ,22,1020,280888,1,1 ,22,1020,280896,1,1 ,20,24434,23349570,628,0 ,45,15153,4999492,16,0 ,17,923,7096644,40,0 ,44,15152,2902340,120,0 ,44,15152,280900,24,0 ,45,15153,3950916,24,0 ,22,1020,280904,1,1 ,22,1020,280912,1,1 ,22,1020,280920,1,1 ,22,1020,280928,1,1 ,20,22807,19679586,104,0 ,20,19762,10766690,100,0 ,22,1020,280936,1,1 ,22,1020,280944,1,1 ,22,1020,280952,1,1 ,22,1020,280960,1,1 ,17,923,8669572,24,0 ,17,923,7620996,32,0 ,17,923,8145284,32,0 ,22,1020,280968,1,1 ,22,1020,280976,1,1 ,22,1020,280984,1,1 ,22,1020,280992,1,1 ,22,1020,281000,1,1 ,22,1020,281008,1,1 ,22,1020,281016,1,1 ,22,1020,281024,1,1 ,20,25204,25446850,136,0 ,45,15153,5523908,24,0 ,45,15153,4999620,16,0 ,22,1020,281032,1,1 ,22,1020,281040,1,1 ,22,1020,281048,1,1 ,22,1020,281056,1,1 ,20,17024,4475362,12,0 ,22,1020,281064,1,1 ,22,1020,281072,1,1 ,22,1020,281080,1,1 ,22,1020,281088,1,1 ,17,923,10242564,72,0 ,17,923,6572548,32,0 ,44,15152,281092,24,0 ,45,15153,3951108,40,0 ,17,923,9193988,40,0 ,22,1020,281096,1,1 ,22,1020,281104,1,1 ,22,1020,281112,1,1 ,22,1020,281120,1,1 ,22,1020,281128,1,1 ,22,1020,281136,1,1 ,22,1020,281144,1,1 ,22,1020,281152,1,1 ,20,17025,4475458,48,0 ,17,923,8669764,32,0 ,44,15152,2378308,32,0 ,45,15153,4999748,16,0 ,22,1020,281160,1,1 ,22,1020,281168,1,1 ,22,1020,281176,1,1 ,22,1020,281184,1,1 ,22,1020,281192,1,1 ,22,1020,281200,1,1 ,22,1020,281208,1,1 ,22,1020,281216,1,1 ,20,25004,24922754,160,0 ,20,25987,27544194,352,0 ,17,923,9718404,72,0 ,17,923,7621252,40,0 ,17,923,7096964,32,0 ,45,15153,5524100,24,0 ,17,923,8145540,16,0 ,22,1020,281224,1,1 ,22,1020,281232,1,1 ,22,1020,281240,1,1 ,22,1020,281248,1,1 ,22,1020,281256,1,1 ,22,1020,281264,1,1 ,22,1020,281272,1,1 ,22,1020,281280,1,1 ,20,23118,20204226,124,0 ,45,15153,4999876,16,0 ,44,15152,281284,40,0 ,44,15152,805572,32,0 ,22,1020,281288,1,1 ,22,1020,281296,1,1 ,22,1020,281304,1,1 ,22,1020,281312,1,1 ,22,1020,281320,1,1 ,22,1020,281328,1,1 ,22,1020,281336,1,1 ,22,1020,281344,1,1 ,20,19183,9718530,152,0 ,17,923,8145668,24,0 ,17,923,6572804,40,0 ,22,1020,281352,1,1 ,22,1020,281360,1,1 ,22,1020,281368,1,1 ,22,1020,281376,1,1 ,22,1020,281384,1,1 ,22,1020,281392,1,1 ,22,1020,281400,1,1 ,22,1020,281408,1,1 ,17,923,9194308,24,0 ,44,15152,2378564,48,0 ,44,15152,3427140,176,0 ,45,15153,3951428,64,0 ,45,15153,5000004,16,0 ,45,15153,5524292,24,0 ,17,923,8670020,32,0 ,22,1020,281416,1,1 ,22,1020,281424,1,1 ,22,1020,281432,1,1 ,22,1020,281440,1,1 ,22,1020,281448,1,1 ,22,1020,281456,1,1 ,22,1020,281464,1,1 ,22,1020,281472,1,1 ,20,23407,20728706,196,0 ,17,923,7097220,32,0 ,22,1020,281480,1,1 ,22,1020,281488,1,1 ,22,1020,281496,1,1 ,22,1020,281504,1,1 ,22,1020,281512,1,1 ,22,1020,281520,1,1 ,22,1020,281528,1,1 ,22,1020,281536,1,1 ,20,17026,4475842,140,0 ,20,26449,29117378,256,0 ,17,923,8145860,48,0 ,17,923,7621572,32,0 ,44,15152,1854404,24,0 ,44,15152,805828,56,0 ,45,15153,5000132,16,0 ,22,1020,281544,1,1 ,22,1020,281552,1,1 ,22,1020,281560,1,1 ,22,1020,281568,1,1 ,20,19493,10243042,192,0 ,22,1020,281576,1,1 ,22,1020,281584,1,1 ,22,1020,281592,1,1 ,22,1020,281600,1,1 ,17,923,9194500,32,0 ,44,15152,281604,24,0 ,45,15153,5524484,24,0 ,22,1020,281608,1,1 ,22,1020,281616,1,1 ,22,1020,281624,1,1 ,22,1020,281632,1,1 ,20,23619,21253154,288,0 ,22,1020,281640,1,1 ,22,1020,281648,1,1 ,22,1020,281656,1,1 ,22,1020,281664,1,1 ,20,21589,16534594,116,0 ,17,923,10243140,72,0 ,17,923,6573124,32,0 ,45,15153,4475972,24,0 ,45,15153,5000260,16,0 ,17,923,8670276,40,0 ,22,1020,281672,1,1 ,22,1020,281680,1,1 ,22,1020,281688,1,1 ,22,1020,281696,1,1 ,22,1020,281704,1,1 ,22,1020,281712,1,1 ,22,1020,281720,1,1 ,22,1020,281728,1,1 ,20,20162,11816066,36,0 ,20,19763,10767490,68,0 ,44,15152,1854596,56,0 ,17,923,7097476,32,0 ,22,1020,281736,1,1 ,22,1020,281744,1,1 ,22,1020,281752,1,1 ,22,1020,281760,1,1 ,20,22808,19680418,92,0 ,22,1020,281768,1,1 ,22,1020,281776,1,1 ,22,1020,281784,1,1 ,22,1020,281792,1,1 ,17,923,9718980,80,0 ,17,923,7621828,48,0 ,44,15152,2378948,24,0 ,44,15152,281796,40,0 ,45,15153,5000388,24,0 ,45,15153,5524676,24,0 ,22,1020,281800,1,1 ,22,1020,281808,1,1 ,22,1020,281816,1,1 ,22,1020,281824,1,1 ,22,1020,281832,1,1 ,22,1020,281840,1,1 ,22,1020,281848,1,1 ,22,1020,281856,1,1 ,17,923,9194756,48,0 ,44,15152,2903300,56,0 ,45,15153,4476164,96,0 ,22,1020,281864,1,1 ,22,1020,281872,1,1 ,22,1020,281880,1,1 ,22,1020,281888,1,1 ,20,16774,3951906,540,0 ,22,1020,281896,1,1 ,22,1020,281904,1,1 ,22,1020,281912,1,1 ,22,1020,281920,1,1 ,17,923,8146244,32,0 ,17,923,6573380,32,0 ,45,15153,3951940,72,0 ,22,1020,281928,1,1 ,22,1020,281936,1,1 ,22,1020,281944,1,1 ,22,1020,281952,1,1 ,22,1020,281960,1,1 ,22,1020,281968,1,1 ,22,1020,281976,1,1 ,22,1020,281984,1,1 ,17,923,8670596,24,0 ,17,923,7097732,48,0 ,44,15152,2379140,24,0 ,44,15152,806276,32,0 ,45,15153,5000580,32,0 ,45,15153,5524868,40,0 ,22,1020,281992,1,1 ,22,1020,282000,1,1 ,22,1020,282008,1,1 ,22,1020,282016,1,1 ,20,20163,11816354,12,0 ,22,1020,282024,1,1 ,22,1020,282032,1,1 ,22,1020,282040,1,1 ,22,1020,282048,1,1 ,22,1020,282056,1,1 ,22,1020,282064,1,1 ,22,1020,282072,1,1 ,22,1020,282080,1,1 ,22,1020,282088,1,1 ,22,1020,282096,1,1 ,22,1020,282104,1,1 ,22,1020,282112,1,1 ,20,20164,11816450,548,0 ,20,25205,25447938,72,0 ,44,15152,282116,16,0 ,22,1020,282120,1,1 ,22,1020,282128,1,1 ,22,1020,282136,1,1 ,22,1020,282144,1,1 ,22,1020,282152,1,1 ,22,1020,282160,1,1 ,22,1020,282168,1,1 ,22,1020,282176,1,1 ,20,26335,28593730,96,0 ,17,923,8670788,72,0 ,17,923,7622212,40,0 ,17,923,6573636,32,0 ,44,15152,2379332,64,0 ,44,15152,1855044,24,0 ,44,15152,1330756,32,0 ,17,923,8146500,40,0 ,22,1020,282184,1,1 ,22,1020,282192,1,1 ,22,1020,282200,1,1 ,22,1020,282208,1,1 ,22,1020,282216,1,1 ,22,1020,282224,1,1 ,22,1020,282232,1,1 ,22,1020,282240,1,1 ,17,923,10243716,72,0 ,44,15152,282244,24,0 ,44,15152,806532,56,0 ,45,15153,5000836,16,0 ,17,923,9195140,48,0 ,22,1020,282248,1,1 ,22,1020,282256,1,1 ,22,1020,282264,1,1 ,22,1020,282272,1,1 ,20,23119,20205218,480,0 ,20,19764,10768034,12,0 ,22,1020,282280,1,1 ,22,1020,282288,1,1 ,22,1020,282296,1,1 ,22,1020,282304,1,1 ,45,15153,5525188,16,0 ,44,15152,2903748,80,0 ,22,1020,282312,1,1 ,22,1020,282320,1,1 ,22,1020,282328,1,1 ,22,1020,282336,1,1 ,22,1020,282344,1,1 ,22,1020,282352,1,1 ,22,1020,282360,1,1 ,22,1020,282368,1,1 ,20,21375,16011010,112,0 ,20,19765,10768130,12,0 ,45,15153,5000964,32,0 ,17,923,7098116,40,0 ,44,15152,1855236,32,0 ,22,1020,282376,1,1 ,22,1020,282384,1,1 ,22,1020,282392,1,1 ,22,1020,282400,1,1 ,22,1020,282408,1,1 ,22,1020,282416,1,1 ,22,1020,282424,1,1 ,22,1020,282432,1,1 ,17,923,9719620,72,0 ,17,923,6573892,32,0 ,44,15152,1331012,88,0 ,44,15152,282436,24,0 ,45,15153,5525316,16,0 ,22,1020,282440,1,1 ,22,1020,282448,1,1 ,22,1020,282456,1,1 ,22,1020,282464,1,1 ,20,19766,10768226,12,0 ,22,1020,282472,1,1 ,22,1020,282480,1,1 ,22,1020,282488,1,1 ,22,1020,282496,1,1 ,20,22809,19681154,84,0 ,20,25005,24924034,188,0 ,17,923,8146820,32,0 ,17,923,7622532,24,0 ,45,15153,3952516,32,0 ,22,1020,282504,1,1 ,22,1020,282512,1,1 ,22,1020,282520,1,1 ,22,1020,282528,1,1 ,22,1020,282536,1,1 ,22,1020,282544,1,1 ,22,1020,282552,1,1 ,22,1020,282560,1,1 ,20,19767,10768322,136,0 ,20,19184,9719746,52,0 ,45,15153,5525444,24,0 ,22,1020,282568,1,1 ,22,1020,282576,1,1 ,22,1020,282584,1,1 ,22,1020,282592,1,1 ,20,21590,16535522,140,0 ,22,1020,282600,1,1 ,22,1020,282608,1,1 ,22,1020,282616,1,1 ,22,1020,282624,1,1 ,17,923,9195524,24,0 ,44,15152,1855492,32,0 ,44,15152,282628,24,0 ,45,15153,4476932,48,0 ,45,15153,5001220,24,0 ,22,1020,282632,1,1 ,22,1020,282640,1,1 ,22,1020,282648,1,1 ,22,1020,282656,1,1 ,20,17027,4476962,12,0 ,22,1020,282664,1,1 ,22,1020,282672,1,1 ,22,1020,282680,1,1 ,22,1020,282688,1,1 ,20,25206,25448514,344,0 ,44,15152,806980,32,0 ,17,923,7622724,48,0 ,17,923,7098436,32,0 ,17,923,6574148,24,0 ,44,15152,2379844,176,0 ,22,1020,282696,1,1 ,22,1020,282704,1,1 ,22,1020,282712,1,1 ,22,1020,282720,1,1 ,22,1020,282728,1,1 ,22,1020,282736,1,1 ,22,1020,282744,1,1 ,22,1020,282752,1,1 ,20,17028,4477058,96,0 ,17,923,8671364,72,0 ,45,15153,3952772,16,0 ,45,15153,5525636,16,0 ,17,923,8147076,32,0 ,22,1020,282760,1,1 ,22,1020,282768,1,1 ,22,1020,282776,1,1 ,22,1020,282784,1,1 ,20,22394,18632866,132,0 ,22,1020,282792,1,1 ,22,1020,282800,1,1 ,22,1020,282808,1,1 ,22,1020,282816,1,1 ,20,17795,6574274,244,0 ,17,923,10244292,48,0 ,44,15152,282820,24,0 ,44,15152,3428548,232,0 ,45,15153,5001412,24,0 ,17,923,9195716,72,0 ,22,1020,282824,1,1 ,22,1020,282832,1,1 ,22,1020,282840,1,1 ,22,1020,282848,1,1 ,22,1020,282856,1,1 ,22,1020,282864,1,1 ,22,1020,282872,1,1 ,22,1020,282880,1,1 ,45,15153,5525764,16,0 ,17,923,6574340,24,0 ,44,15152,1855748,64,0 ,45,15153,3952900,24,0 ,22,1020,282888,1,1 ,22,1020,282896,1,1 ,22,1020,282904,1,1 ,22,1020,282912,1,1 ,22,1020,282920,1,1 ,22,1020,282928,1,1 ,22,1020,282936,1,1 ,22,1020,282944,1,1 ,20,20565,13390146,292,0 ,20,26336,28594498,900,0 ,20,26182,28070210,88,0 ,44,15152,807236,56,0 ,17,923,7098692,24,0 ,44,15152,2904388,104,0 ,22,1020,282952,1,1 ,22,1020,282960,1,1 ,22,1020,282968,1,1 ,22,1020,282976,1,1 ,20,22118,18108770,440,0 ,20,19185,9720162,264,0 ,22,1020,282984,1,1 ,22,1020,282992,1,1 ,22,1020,283000,1,1 ,22,1020,283008,1,1 ,17,923,9720196,24,0 ,44,15152,283012,48,0 ,45,15153,4477316,40,0 ,45,15153,5001604,32,0 ,45,15153,5525892,16,0 ,17,923,8147332,40,0 ,22,1020,283016,1,1 ,22,1020,283024,1,1 ,22,1020,283032,1,1 ,22,1020,283040,1,1 ,20,23408,20730274,144,0 ,22,1020,283048,1,1 ,22,1020,283056,1,1 ,22,1020,283064,1,1 ,22,1020,283072,1,1 ,45,15153,3953092,48,0 ,17,923,7623108,48,0 ,17,923,6574532,24,0 ,22,1020,283080,1,1 ,22,1020,283088,1,1 ,22,1020,283096,1,1 ,22,1020,283104,1,1 ,20,19494,10244578,192,0 ,22,1020,283112,1,1 ,22,1020,283120,1,1 ,22,1020,283128,1,1 ,22,1020,283136,1,1 ,20,20886,14438914,4708,0 ,20,20286,12866050,164,0 ,45,15153,5526020,24,0 ,17,923,7098884,40,0 ,44,15152,1331716,32,0 ,22,1020,283144,1,1 ,22,1020,283152,1,1 ,22,1020,283160,1,1 ,22,1020,283168,1,1 ,20,22810,19681826,92,0 ,20,15255,283170,84,0 ,22,1020,283176,1,1 ,22,1020,283184,1,1 ,22,1020,283192,1,1 ,22,1020,283200,1,1 ,17,923,10244676,32,0 ,17,923,9720388,56,0 ,22,1020,283208,1,1 ,22,1020,283216,1,1 ,22,1020,283224,1,1 ,22,1020,283232,1,1 ,20,16462,3428962,436,0 ,22,1020,283240,1,1 ,22,1020,283248,1,1 ,22,1020,283256,1,1 ,22,1020,283264,1,1 ,20,21376,16011906,520,0 ,45,15153,5001860,24,0 ,17,923,6574724,24,0 ,22,1020,283272,1,1 ,22,1020,283280,1,1 ,22,1020,283288,1,1 ,22,1020,283296,1,1 ,22,1020,283304,1,1 ,22,1020,283312,1,1 ,22,1020,283320,1,1 ,22,1020,283328,1,1 ,17,923,8671940,40,0 ,45,15153,4477636,24,0 ,45,15153,5526212,16,0 ,17,923,8147652,32,0 ,22,1020,283336,1,1 ,22,1020,283344,1,1 ,22,1020,283352,1,1 ,22,1020,283360,1,1 ,22,1020,283368,1,1 ,22,1020,283376,1,1 ,22,1020,283384,1,1 ,22,1020,283392,1,1 ,17,923,9196292,80,0 ,44,15152,1856260,56,0 ,44,15152,1331972,32,0 ,44,15152,283396,24,0 ,44,15152,807684,32,0 ,22,1020,283400,1,1 ,22,1020,283408,1,1 ,22,1020,283416,1,1 ,22,1020,283424,1,1 ,22,1020,283432,1,1 ,22,1020,283440,1,1 ,22,1020,283448,1,1 ,22,1020,283456,1,1 ,17,923,10244932,48,0 ,17,923,7623492,40,0 ,17,923,7099204,40,0 ,17,923,6574916,24,0 ,45,15153,3953476,16,0 ,45,15153,5002052,24,0 ,45,15153,5526340,64,0 ,22,1020,283464,1,1 ,22,1020,283472,1,1 ,22,1020,283480,1,1 ,22,1020,283488,1,1 ,20,17592,6050658,12,0 ,22,1020,283496,1,1 ,22,1020,283504,1,1 ,22,1020,283512,1,1 ,22,1020,283520,1,1 ,20,17029,4477826,112,0 ,45,15153,4477828,288,0 ,22,1020,283528,1,1 ,22,1020,283536,1,1 ,22,1020,283544,1,1 ,22,1020,283552,1,1 ,22,1020,283560,1,1 ,22,1020,283568,1,1 ,22,1020,283576,1,1 ,22,1020,283584,1,1 ,20,17593,6050754,12,0 ,20,26450,29119426,440,0 ,17,923,8147908,40,0 ,44,15152,283588,24,0 ,45,15153,3953604,16,0 ,22,1020,283592,1,1 ,22,1020,283600,1,1 ,22,1020,283608,1,1 ,22,1020,283616,1,1 ,22,1020,283624,1,1 ,22,1020,283632,1,1 ,22,1020,283640,1,1 ,22,1020,283648,1,1 ,20,19768,10769410,112,0 ,20,26183,28070914,804,0 ,17,923,9720836,72,0 ,17,923,6575108,24,0 ,44,15152,1332228,56,0 ,44,15152,807940,40,0 ,45,15153,5002244,24,0 ,17,923,8672260,40,0 ,22,1020,283656,1,1 ,22,1020,283664,1,1 ,22,1020,283672,1,1 ,22,1020,283680,1,1 ,20,17594,6050850,324,0 ,22,1020,283688,1,1 ,22,1020,283696,1,1 ,22,1020,283704,1,1 ,22,1020,283712,1,1 ,20,21591,16536642,240,0 ,20,25759,27022402,1276,0 ,45,15153,3953732,16,0 ,22,1020,283720,1,1 ,22,1020,283728,1,1 ,22,1020,283736,1,1 ,22,1020,283744,1,1 ,22,1020,283752,1,1 ,22,1020,283760,1,1 ,22,1020,283768,1,1 ,22,1020,283776,1,1 ,44,15152,283780,24,0 ,17,923,7623812,24,0 ,17,923,7099524,40,0 ,44,15152,2905220,120,0 ,22,1020,283784,1,1 ,22,1020,283792,1,1 ,22,1020,283800,1,1 ,22,1020,283808,1,1 ,22,1020,283816,1,1 ,22,1020,283824,1,1 ,22,1020,283832,1,1 ,22,1020,283840,1,1 ,20,22395,18633922,160,0 ,20,15256,283842,188,0 ,17,923,10245316,32,0 ,17,923,6575300,24,0 ,44,15152,1856708,144,0 ,45,15153,3953860,16,0 ,45,15153,5002436,24,0 ,22,1020,283848,1,1 ,22,1020,283856,1,1 ,22,1020,283864,1,1 ,22,1020,283872,1,1 ,22,1020,283880,1,1 ,22,1020,283888,1,1 ,22,1020,283896,1,1 ,22,1020,283904,1,1 ,20,22811,19682562,176,0 ,17,923,8148228,32,0 ,22,1020,283912,1,1 ,22,1020,283920,1,1 ,22,1020,283928,1,1 ,22,1020,283936,1,1 ,20,23620,21255458,92,0 ,22,1020,283944,1,1 ,22,1020,283952,1,1 ,22,1020,283960,1,1 ,22,1020,283968,1,1 ,17,923,8672580,24,0 ,17,923,7624004,48,0 ,44,15152,283972,24,0 ,44,15152,808260,64,0 ,45,15153,3953988,16,0 ,45,15153,5526852,48,0 ,22,1020,283976,1,1 ,22,1020,283984,1,1 ,22,1020,283992,1,1 ,22,1020,284000,1,1 ,20,24580,23876962,380,0 ,20,25006,24925538,148,0 ,22,1020,284008,1,1 ,22,1020,284016,1,1 ,22,1020,284024,1,1 ,22,1020,284032,1,1 ,20,25988,27547010,564,0 ,17,923,9196932,48,0 ,17,923,6575492,24,0 ,45,15153,5002628,24,0 ,22,1020,284040,1,1 ,22,1020,284048,1,1 ,22,1020,284056,1,1 ,22,1020,284064,1,1 ,20,18294,7624098,268,0 ,22,1020,284072,1,1 ,22,1020,284080,1,1 ,22,1020,284088,1,1 ,22,1020,284096,1,1 ,17,923,10245572,32,0 ,17,923,7099844,24,0 ,44,15152,2381252,40,0 ,44,15152,1332676,24,0 ,45,15153,3954116,16,0 ,22,1020,284104,1,1 ,22,1020,284112,1,1 ,22,1020,284120,1,1 ,22,1020,284128,1,1 ,22,1020,284136,1,1 ,22,1020,284144,1,1 ,22,1020,284152,1,1 ,22,1020,284160,1,1 ,17,923,8672772,40,0 ,44,15152,284164,24,0 ,17,923,8148484,32,0 ,22,1020,284168,1,1 ,22,1020,284176,1,1 ,22,1020,284184,1,1 ,22,1020,284192,1,1 ,20,23409,20731426,416,0 ,22,1020,284200,1,1 ,22,1020,284208,1,1 ,22,1020,284216,1,1 ,22,1020,284224,1,1 ,20,22583,19158594,136,0 ,17,923,9721412,80,0 ,17,923,6575684,24,0 ,45,15153,3954244,16,0 ,45,15153,5002820,40,0 ,22,1020,284232,1,1 ,22,1020,284240,1,1 ,22,1020,284248,1,1 ,22,1020,284256,1,1 ,22,1020,284264,1,1 ,22,1020,284272,1,1 ,22,1020,284280,1,1 ,22,1020,284288,1,1 ,44,15152,1332868,32,0 ,17,923,7100036,32,0 ,22,1020,284296,1,1 ,22,1020,284304,1,1 ,22,1020,284312,1,1 ,22,1020,284320,1,1 ,22,1020,284328,1,1 ,22,1020,284336,1,1 ,22,1020,284344,1,1 ,22,1020,284352,1,1 ,17,923,10245828,24,0 ,17,923,7624388,32,0 ,44,15152,284356,24,0 ,45,15153,3954372,24,0 ,45,15153,5527236,16,0 ,22,1020,284360,1,1 ,22,1020,284368,1,1 ,22,1020,284376,1,1 ,22,1020,284384,1,1 ,22,1020,284392,1,1 ,22,1020,284400,1,1 ,22,1020,284408,1,1 ,22,1020,284416,1,1 ,20,17030,4478722,72,0 ,17,923,9197316,56,0 ,17,923,6575876,32,0 ,44,15152,2381572,16,0 ,17,923,8148740,32,0 ,22,1020,284424,1,1 ,22,1020,284432,1,1 ,22,1020,284440,1,1 ,22,1020,284448,1,1 ,20,20287,12867362,132,0 ,22,1020,284456,1,1 ,22,1020,284464,1,1 ,22,1020,284472,1,1 ,22,1020,284480,1,1 ,17,923,8673092,24,0 ,44,15152,808772,56,0 ,45,15153,5527364,80,0 ,22,1020,284488,1,1 ,22,1020,284496,1,1 ,22,1020,284504,1,1 ,22,1020,284512,1,1 ,22,1020,284520,1,1 ,22,1020,284528,1,1 ,22,1020,284536,1,1 ,22,1020,284544,1,1 ,20,19769,10770306,144,0 ,17,923,10246020,16,0 ,17,923,7100292,32,0 ,44,15152,2381700,104,0 ,44,15152,1333124,16,0 ,44,15152,284548,24,0 ,45,15153,3954564,24,0 ,45,15153,5003140,56,0 ,22,1020,284552,1,1 ,22,1020,284560,1,1 ,22,1020,284568,1,1 ,22,1020,284576,1,1 ,22,1020,284584,1,1 ,22,1020,284592,1,1 ,22,1020,284600,1,1 ,22,1020,284608,1,1 ,17,923,7624644,40,0 ,22,1020,284616,1,1 ,22,1020,284624,1,1 ,22,1020,284632,1,1 ,22,1020,284640,1,1 ,20,19495,10246114,48,0 ,22,1020,284648,1,1 ,22,1020,284656,1,1 ,22,1020,284664,1,1 ,22,1020,284672,1,1 ,20,23621,21256194,476,0 ,17,923,10246148,48,0 ,17,923,6576132,24,0 ,44,15152,1333252,32,0 ,44,15152,3430404,32,0 ,17,923,8148996,32,0 ,17,923,8673284,56,0 ,22,1020,284680,1,1 ,22,1020,284688,1,1 ,22,1020,284696,1,1 ,22,1020,284704,1,1 ,20,18749,8673314,136,0 ,22,1020,284712,1,1 ,22,1020,284720,1,1 ,22,1020,284728,1,1 ,22,1020,284736,1,1 ,20,25443,25974850,68,0 ,45,15153,3954756,24,0 ,44,15152,2906180,56,0 ,44,15152,284740,64,0 ,22,1020,284744,1,1 ,22,1020,284752,1,1 ,22,1020,284760,1,1 ,22,1020,284768,1,1 ,20,17796,6576226,12,0 ,22,1020,284776,1,1 ,22,1020,284784,1,1 ,22,1020,284792,1,1 ,22,1020,284800,1,1 ,17,923,7100548,32,0 ,22,1020,284808,1,1 ,22,1020,284816,1,1 ,22,1020,284824,1,1 ,22,1020,284832,1,1 ,22,1020,284840,1,1 ,22,1020,284848,1,1 ,22,1020,284856,1,1 ,22,1020,284864,1,1 ,20,17797,6576322,100,0 ,17,923,9722052,72,0 ,17,923,6576324,32,0 ,17,923,9197764,24,0 ,22,1020,284872,1,1 ,22,1020,284880,1,1 ,22,1020,284888,1,1 ,22,1020,284896,1,1 ,22,1020,284904,1,1 ,22,1020,284912,1,1 ,22,1020,284920,1,1 ,22,1020,284928,1,1 ,17,923,8149252,32,0 ,17,923,7624964,32,0 ,44,15152,1333508,80,0 ,44,15152,809220,40,0 ,44,15152,3430660,24,0 ,45,15153,3954948,48,0 ,22,1020,284936,1,1 ,22,1020,284944,1,1 ,22,1020,284952,1,1 ,22,1020,284960,1,1 ,22,1020,284968,1,1 ,22,1020,284976,1,1 ,22,1020,284984,1,1 ,22,1020,284992,1,1 ,20,17031,4479298,84,0 ,45,15153,5003588,24,0 ,44,15152,1857860,32,0 ,22,1020,285000,1,1 ,22,1020,285008,1,1 ,22,1020,285016,1,1 ,22,1020,285024,1,1 ,20,19496,10246498,136,0 ,22,1020,285032,1,1 ,22,1020,285040,1,1 ,22,1020,285048,1,1 ,22,1020,285056,1,1 ,17,923,10246532,24,0 ,17,923,7100804,24,0 ,17,923,9197956,48,0 ,22,1020,285064,1,1 ,22,1020,285072,1,1 ,22,1020,285080,1,1 ,22,1020,285088,1,1 ,20,24013,22305186,224,0 ,20,19186,9722274,140,0 ,22,1020,285096,1,1 ,22,1020,285104,1,1 ,22,1020,285112,1,1 ,22,1020,285120,1,1 ,20,22396,18635202,100,0 ,17,923,8673732,32,0 ,17,923,6576580,24,0 ,44,15152,3430852,96,0 ,45,15153,5528004,24,0 ,22,1020,285128,1,1 ,22,1020,285136,1,1 ,22,1020,285144,1,1 ,22,1020,285152,1,1 ,22,1020,285160,1,1 ,22,1020,285168,1,1 ,22,1020,285176,1,1 ,22,1020,285184,1,1 ,20,25007,24926722,300,0 ,17,923,8149508,24,0 ,17,923,7625220,40,0 ,44,15152,2906628,392,0 ,45,15153,5003780,24,0 ,22,1020,285192,1,1 ,22,1020,285200,1,1 ,22,1020,285208,1,1 ,22,1020,285216,1,1 ,22,1020,285224,1,1 ,22,1020,285232,1,1 ,22,1020,285240,1,1 ,22,1020,285248,1,1 ,17,923,10246724,32,0 ,17,923,7100996,40,0 ,44,15152,1858116,32,0 ,44,15152,285252,16,0 ,44,15152,809540,32,0 ,22,1020,285256,1,1 ,22,1020,285264,1,1 ,22,1020,285272,1,1 ,22,1020,285280,1,1 ,20,20566,13392482,264,0 ,20,25444,25975394,144,0 ,22,1020,285288,1,1 ,22,1020,285296,1,1 ,22,1020,285304,1,1 ,22,1020,285312,1,1 ,20,22812,19683970,160,0 ,20,22584,19159682,312,0 ,45,15153,5528196,24,0 ,17,923,6576772,24,0 ,45,15153,3955332,32,0 ,22,1020,285320,1,1 ,22,1020,285328,1,1 ,22,1020,285336,1,1 ,22,1020,285344,1,1 ,20,15257,285346,56,0 ,22,1020,285352,1,1 ,22,1020,285360,1,1 ,22,1020,285368,1,1 ,22,1020,285376,1,1 ,17,923,8673988,32,0 ,44,15152,2382532,16,0 ,44,15152,285380,16,0 ,45,15153,5003972,32,0 ,17,923,8149700,56,0 ,22,1020,285384,1,1 ,22,1020,285392,1,1 ,22,1020,285400,1,1 ,22,1020,285408,1,1 ,22,1020,285416,1,1 ,22,1020,285424,1,1 ,22,1020,285432,1,1 ,22,1020,285440,1,1 ,20,25207,25451266,32,0 ,17,923,9722628,72,0 ,17,923,9198340,40,0 ,22,1020,285448,1,1 ,22,1020,285456,1,1 ,22,1020,285464,1,1 ,22,1020,285472,1,1 ,22,1020,285480,1,1 ,22,1020,285488,1,1 ,22,1020,285496,1,1 ,22,1020,285504,1,1 ,20,20288,12868418,216,0 ,17,923,10246980,16,0 ,17,923,7625540,40,0 ,17,923,6576964,16,0 ,44,15152,2382660,40,0 ,44,15152,1858372,40,0 ,44,15152,285508,48,0 ,44,15152,809796,56,0 ,45,15153,5528388,16,0 ,22,1020,285512,1,1 ,22,1020,285520,1,1 ,22,1020,285528,1,1 ,22,1020,285536,1,1 ,22,1020,285544,1,1 ,22,1020,285552,1,1 ,22,1020,285560,1,1 ,22,1020,285568,1,1 ,20,15861,1858434,100,0 ,45,15153,3955588,24,0 ,17,923,7101316,24,0 ,44,15152,1334148,56,0 ,22,1020,285576,1,1 ,22,1020,285584,1,1 ,22,1020,285592,1,1 ,22,1020,285600,1,1 ,22,1020,285608,1,1 ,22,1020,285616,1,1 ,22,1020,285624,1,1 ,22,1020,285632,1,1 ,20,21592,16538562,568,0 ,17,923,10247108,32,0 ,17,923,6577092,32,0 ,45,15153,5004228,24,0 ,45,15153,5528516,152,0 ,17,923,8674244,32,0 ,22,1020,285640,1,1 ,22,1020,285648,1,1 ,22,1020,285656,1,1 ,22,1020,285664,1,1 ,20,17798,6577122,528,0 ,20,17032,4479970,12,0 ,22,1020,285672,1,1 ,22,1020,285680,1,1 ,22,1020,285688,1,1 ,22,1020,285696,1,1 ,20,19770,10771458,84,0 ,20,25208,25451522,24,0 ,22,1020,285704,1,1 ,22,1020,285712,1,1 ,22,1020,285720,1,1 ,22,1020,285728,1,1 ,22,1020,285736,1,1 ,22,1020,285744,1,1 ,22,1020,285752,1,1 ,22,1020,285760,1,1 ,20,17033,4480066,396,0 ,17,923,9198660,48,0 ,17,923,7101508,56,0 ,45,15153,3955780,32,0 ,22,1020,285768,1,1 ,22,1020,285776,1,1 ,22,1020,285784,1,1 ,22,1020,285792,1,1 ,20,18750,8674402,116,0 ,20,15258,285794,32,0 ,22,1020,285800,1,1 ,22,1020,285808,1,1 ,22,1020,285816,1,1 ,22,1020,285824,1,1 ,17,923,8150148,40,0 ,17,923,7625860,24,0 ,44,15152,2382980,48,0 ,44,15152,1858692,40,0 ,45,15153,4480132,80,0 ,45,15153,5004420,32,0 ,22,1020,285832,1,1 ,22,1020,285840,1,1 ,22,1020,285848,1,1 ,22,1020,285856,1,1 ,22,1020,285864,1,1 ,22,1020,285872,1,1 ,22,1020,285880,1,1 ,22,1020,285888,1,1 ,20,25209,25451714,24,0 ,17,923,10247364,48,0 ,17,923,6577348,32,0 ,44,15152,285892,24,0 ,44,15152,3431620,8,0 ,17,923,8674500,32,0 ,22,1020,285896,1,1 ,22,1020,285904,1,1 ,22,1020,285912,1,1 ,22,1020,285920,1,1 ,20,24435,23354594,24,0 ,20,22397,18636002,136,0 ,22,1020,285928,1,1 ,22,1020,285936,1,1 ,22,1020,285944,1,1 ,22,1020,285952,1,1 ,44,15152,3431684,32,0 ,44,15152,810244,40,0 ,22,1020,285960,1,1 ,22,1020,285968,1,1 ,22,1020,285976,1,1 ,22,1020,285984,1,1 ,22,1020,285992,1,1 ,22,1020,286000,1,1 ,22,1020,286008,1,1 ,22,1020,286016,1,1 ,17,923,9723204,72,0 ,17,923,7626052,56,0 ,44,15152,1334596,24,0 ,45,15153,3956036,16,0 ,22,1020,286024,1,1 ,22,1020,286032,1,1 ,22,1020,286040,1,1 ,22,1020,286048,1,1 ,20,15259,286050,12,0 ,22,1020,286056,1,1 ,22,1020,286064,1,1 ,22,1020,286072,1,1 ,22,1020,286080,1,1 ,20,25210,25451906,24,0 ,45,15153,5004676,16,0 ,44,15152,286084,16,0 ,22,1020,286088,1,1 ,22,1020,286096,1,1 ,22,1020,286104,1,1 ,22,1020,286112,1,1 ,20,24436,23354786,24,0 ,20,19497,10247586,12,0 ,20,23120,20209058,352,0 ,22,1020,286120,1,1 ,22,1020,286128,1,1 ,22,1020,286136,1,1 ,22,1020,286144,1,1 ,20,15260,286146,12,0 ,17,923,9199044,40,0 ,17,923,6577604,24,0 ,44,15152,1859012,24,0 ,45,15153,3956164,32,0 ,17,923,8150468,24,0 ,17,923,8674756,32,0 ,22,1020,286152,1,1 ,22,1020,286160,1,1 ,22,1020,286168,1,1 ,22,1020,286176,1,1 ,22,1020,286184,1,1 ,22,1020,286192,1,1 ,22,1020,286200,1,1 ,22,1020,286208,1,1 ,20,19498,10247682,12,0 ,20,16775,3956226,244,0 ,20,18295,7626242,140,0 ,20,19187,9723394,204,0 ,45,15153,5004804,16,0 ,17,923,7101956,48,0 ,44,15152,2383364,64,0 ,44,15152,1334788,24,0 ,44,15152,286212,16,0 ,44,15152,3431940,56,0 ,22,1020,286216,1,1 ,22,1020,286224,1,1 ,22,1020,286232,1,1 ,22,1020,286240,1,1 ,20,20221,12344866,3912,0 ,20,15261,286242,1212,0 ,22,1020,286248,1,1 ,22,1020,286256,1,1 ,22,1020,286264,1,1 ,22,1020,286272,1,1 ,20,17595,6053442,144,0 ,20,25211,25452098,24,0 ,20,15698,1334850,384,0 ,20,17401,5529154,740,0 ,17,923,10247748,16,0 ,44,15152,810564,32,0 ,22,1020,286280,1,1 ,22,1020,286288,1,1 ,22,1020,286296,1,1 ,22,1020,286304,1,1 ,20,24437,23354978,24,0 ,20,19499,10247778,12,0 ,22,1020,286312,1,1 ,22,1020,286320,1,1 ,22,1020,286328,1,1 ,22,1020,286336,1,1 ,17,923,8150660,40,0 ,17,923,6577796,24,0 ,44,15152,1859204,24,0 ,44,15152,286340,64,0 ,45,15153,5004932,24,0 ,22,1020,286344,1,1 ,22,1020,286352,1,1 ,22,1020,286360,1,1 ,22,1020,286368,1,1 ,20,19771,10772130,84,0 ,20,15862,1859234,620,0 ,22,1020,286376,1,1 ,22,1020,286384,1,1 ,22,1020,286392,1,1 ,22,1020,286400,1,1 ,20,19500,10247874,388,0 ,17,923,10247876,16,0 ,44,15152,1334980,56,0 ,45,15153,3956420,16,0 ,17,923,8675012,32,0 ,22,1020,286408,1,1 ,22,1020,286416,1,1 ,22,1020,286424,1,1 ,22,1020,286432,1,1 ,20,25445,25976546,96,0 ,22,1020,286440,1,1 ,22,1020,286448,1,1 ,22,1020,286456,1,1 ,22,1020,286464,1,1 ,20,25212,25452290,196,0 ,17,923,9199364,48,0 ,17,923,7626500,32,0 ,45,15153,4480772,24,0 ,22,1020,286472,1,1 ,22,1020,286480,1,1 ,22,1020,286488,1,1 ,22,1020,286496,1,1 ,20,24438,23355170,136,0 ,20,20165,11820834,612,0 ,20,22119,18112290,408,0 ,22,1020,286504,1,1 ,22,1020,286512,1,1 ,22,1020,286520,1,1 ,22,1020,286528,1,1 ,17,923,10248004,16,0 ,17,923,6577988,32,0 ,44,15152,1859396,24,0 ,44,15152,810820,40,0 ,45,15153,3956548,16,0 ,45,15153,5005124,40,0 ,22,1020,286536,1,1 ,22,1020,286544,1,1 ,22,1020,286552,1,1 ,22,1020,286560,1,1 ,22,1020,286568,1,1 ,22,1020,286576,1,1 ,22,1020,286584,1,1 ,22,1020,286592,1,1 ,20,22813,19685250,76,0 ,17,923,9723780,24,0 ,17,923,7102340,48,0 ,22,1020,286600,1,1 ,22,1020,286608,1,1 ,22,1020,286616,1,1 ,22,1020,286624,1,1 ,22,1020,286632,1,1 ,22,1020,286640,1,1 ,22,1020,286648,1,1 ,22,1020,286656,1,1 ,17,923,10248132,16,0 ,44,15152,3432388,48,0 ,45,15153,3956676,16,0 ,45,15153,4480964,24,0 ,17,923,8150980,32,0 ,17,923,8675268,32,0 ,22,1020,286664,1,1 ,22,1020,286672,1,1 ,22,1020,286680,1,1 ,22,1020,286688,1,1 ,22,1020,286696,1,1 ,22,1020,286704,1,1 ,22,1020,286712,1,1 ,22,1020,286720,1,1 ,20,18751,8675330,216,0 ,20,16463,3432450,172,0 ,44,15152,1859588,24,0 ,17,923,7626756,24,0 ,44,15152,2383876,40,0 ,22,1020,286728,1,1 ,22,1020,286736,1,1 ,22,1020,286744,1,1 ,22,1020,286752,1,1 ,22,1020,286760,1,1 ,22,1020,286768,1,1 ,22,1020,286776,1,1 ,22,1020,286784,1,1 ,17,923,10248260,16,0 ,17,923,6578244,24,0 ,45,15153,3956804,16,0 ,17,923,9723972,80,0 ,22,1020,286792,1,1 ,22,1020,286800,1,1 ,22,1020,286808,1,1 ,22,1020,286816,1,1 ,22,1020,286824,1,1 ,22,1020,286832,1,1 ,22,1020,286840,1,1 ,22,1020,286848,1,1 ,17,923,9199748,56,0 ,44,15152,1335428,40,0 ,44,15152,286852,16,0 ,44,15152,811140,64,0 ,45,15153,4481156,48,0 ,45,15153,5005444,24,0 ,45,15153,5529732,88,0 ,22,1020,286856,1,1 ,22,1020,286864,1,1 ,22,1020,286872,1,1 ,22,1020,286880,1,1 ,20,24014,22306978,148,0 ,22,1020,286888,1,1 ,22,1020,286896,1,1 ,22,1020,286904,1,1 ,22,1020,286912,1,1 ,17,923,10248388,56,0 ,17,923,7626948,32,0 ,44,15152,1859780,40,0 ,45,15153,3956932,32,0 ,17,923,8151236,40,0 ,17,923,8675524,32,0 ,22,1020,286920,1,1 ,22,1020,286928,1,1 ,22,1020,286936,1,1 ,22,1020,286944,1,1 ,22,1020,286952,1,1 ,22,1020,286960,1,1 ,22,1020,286968,1,1 ,22,1020,286976,1,1 ,44,15152,286980,32,0 ,17,923,7102724,56,0 ,17,923,6578436,24,0 ,22,1020,286984,1,1 ,22,1020,286992,1,1 ,22,1020,287000,1,1 ,22,1020,287008,1,1 ,20,22398,18637090,60,0 ,22,1020,287016,1,1 ,22,1020,287024,1,1 ,22,1020,287032,1,1 ,22,1020,287040,1,1 ,20,24581,23880002,848,0 ,20,19772,10772802,88,0 ,45,15153,5005636,16,0 ,44,15152,2384196,16,0 ,44,15152,3432772,40,0 ,22,1020,287048,1,1 ,22,1020,287056,1,1 ,22,1020,287064,1,1 ,22,1020,287072,1,1 ,22,1020,287080,1,1 ,22,1020,287088,1,1 ,22,1020,287096,1,1 ,22,1020,287104,1,1 ,20,26451,29122946,400,0 ,22,1020,287112,1,1 ,22,1020,287120,1,1 ,22,1020,287128,1,1 ,22,1020,287136,1,1 ,22,1020,287144,1,1 ,22,1020,287152,1,1 ,22,1020,287160,1,1 ,22,1020,287168,1,1 ,20,21027,15491522,144,0 ,17,923,8675780,32,0 ,17,923,7627204,48,0 ,17,923,6578628,32,0 ,44,15152,2384324,16,0 ,44,15152,1335748,72,0 ,45,15153,3957188,32,0 ,45,15153,5005764,24,0 ,22,1020,287176,1,1 ,22,1020,287184,1,1 ,22,1020,287192,1,1 ,22,1020,287200,1,1 ,20,22814,19685858,88,0 ,20,25446,25977314,152,0 ,22,1020,287208,1,1 ,22,1020,287216,1,1 ,22,1020,287224,1,1 ,22,1020,287232,1,1 ,20,20289,12870146,12,0 ,17,923,8151556,40,0 ,44,15152,1860100,24,0 ,44,15152,287236,16,0 ,45,15153,4481540,32,0 ,22,1020,287240,1,1 ,22,1020,287248,1,1 ,22,1020,287256,1,1 ,22,1020,287264,1,1 ,22,1020,287272,1,1 ,22,1020,287280,1,1 ,22,1020,287288,1,1 ,22,1020,287296,1,1 ,17,923,9200196,40,0 ,44,15152,2384452,256,0 ,22,1020,287304,1,1 ,22,1020,287312,1,1 ,22,1020,287320,1,1 ,22,1020,287328,1,1 ,20,20290,12870242,608,0 ,20,18296,7627362,216,0 ,22,1020,287336,1,1 ,22,1020,287344,1,1 ,22,1020,287352,1,1 ,22,1020,287360,1,1 ,17,923,10248836,72,0 ,44,15152,287364,40,0 ,44,15152,811652,24,0 ,44,15152,3433092,32,0 ,45,15153,5005956,24,0 ,22,1020,287368,1,1 ,22,1020,287376,1,1 ,22,1020,287384,1,1 ,22,1020,287392,1,1 ,20,20567,13394594,276,0 ,22,1020,287400,1,1 ,22,1020,287408,1,1 ,22,1020,287416,1,1 ,22,1020,287424,1,1 ,20,21377,16016066,556,0 ,20,17596,6054594,108,0 ,17,923,9724612,24,0 ,17,923,7103172,48,0 ,17,923,6578884,24,0 ,44,15152,1860292,24,0 ,45,15153,3957444,24,0 ,17,923,8676036,32,0 ,22,1020,287432,1,1 ,22,1020,287440,1,1 ,22,1020,287448,1,1 ,22,1020,287456,1,1 ,22,1020,287464,1,1 ,22,1020,287472,1,1 ,22,1020,287480,1,1 ,22,1020,287488,1,1 ,20,22399,18637570,136,0 ,45,15153,4481796,16,0 ,22,1020,287496,1,1 ,22,1020,287504,1,1 ,22,1020,287512,1,1 ,22,1020,287520,1,1 ,20,23410,20734754,992,0 ,22,1020,287528,1,1 ,22,1020,287536,1,1 ,22,1020,287544,1,1 ,22,1020,287552,1,1 ,17,923,8151876,40,0 ,17,923,7627588,40,0 ,44,15152,811844,24,0 ,45,15153,5006148,24,0 ,45,15153,5530436,288,0 ,22,1020,287560,1,1 ,22,1020,287568,1,1 ,22,1020,287576,1,1 ,22,1020,287584,1,1 ,20,24439,23356258,92,0 ,20,25008,24929122,204,0 ,22,1020,287592,1,1 ,22,1020,287600,1,1 ,22,1020,287608,1,1 ,22,1020,287616,1,1 ,20,21884,17064834,980,0 ,17,923,9724804,56,0 ,17,923,6579076,72,0 ,44,15152,1860484,24,0 ,44,15152,3433348,40,0 ,45,15153,3957636,16,0 ,45,15153,4481924,24,0 ,17,923,9200516,40,0 ,22,1020,287624,1,1 ,22,1020,287632,1,1 ,22,1020,287640,1,1 ,22,1020,287648,1,1 ,22,1020,287656,1,1 ,22,1020,287664,1,1 ,22,1020,287672,1,1 ,22,1020,287680,1,1 ,17,923,8676292,32,0 ,44,15152,287684,16,0 ,22,1020,287688,1,1 ,22,1020,287696,1,1 ,22,1020,287704,1,1 ,22,1020,287712,1,1 ,22,1020,287720,1,1 ,22,1020,287728,1,1 ,22,1020,287736,1,1 ,22,1020,287744,1,1 ,20,19773,10773506,88,0 ,45,15153,5006340,48,0 ,44,15152,1336324,32,0 ,44,15152,812036,32,0 ,45,15153,3957764,24,0 ,22,1020,287752,1,1 ,22,1020,287760,1,1 ,22,1020,287768,1,1 ,22,1020,287776,1,1 ,22,1020,287784,1,1 ,22,1020,287792,1,1 ,22,1020,287800,1,1 ,22,1020,287808,1,1 ,20,22585,19162178,224,0 ,45,15153,4482116,64,0 ,17,923,7103556,56,0 ,44,15152,1860676,24,0 ,44,15152,287812,32,0 ,22,1020,287816,1,1 ,22,1020,287824,1,1 ,22,1020,287832,1,1 ,22,1020,287840,1,1 ,20,19188,9725026,180,0 ,22,1020,287848,1,1 ,22,1020,287856,1,1 ,22,1020,287864,1,1 ,22,1020,287872,1,1 ,17,923,8152196,32,0 ,17,923,7627908,40,0 ,22,1020,287880,1,1 ,22,1020,287888,1,1 ,22,1020,287896,1,1 ,22,1020,287904,1,1 ,20,22815,19686562,104,0 ,22,1020,287912,1,1 ,22,1020,287920,1,1 ,22,1020,287928,1,1 ,22,1020,287936,1,1 ,17,923,10249412,40,0 ,44,15152,3433668,32,0 ,45,15153,3957956,16,0 ,17,923,8676548,40,0 ,17,923,9200836,40,0 ,22,1020,287944,1,1 ,22,1020,287952,1,1 ,22,1020,287960,1,1 ,22,1020,287968,1,1 ,22,1020,287976,1,1 ,22,1020,287984,1,1 ,22,1020,287992,1,1 ,22,1020,288000,1,1 ,44,15152,812292,232,0 ,44,15152,1860868,40,0 ,44,15152,1336580,56,0 ,22,1020,288008,1,1 ,22,1020,288016,1,1 ,22,1020,288024,1,1 ,22,1020,288032,1,1 ,20,25213,25453858,276,0 ,22,1020,288040,1,1 ,22,1020,288048,1,1 ,22,1020,288056,1,1 ,22,1020,288064,1,1 ,20,24015,22308162,196,0 ,17,923,9725252,40,0 ,44,15152,288068,16,0 ,45,15153,3958084,16,0 ,22,1020,288072,1,1 ,22,1020,288080,1,1 ,22,1020,288088,1,1 ,22,1020,288096,1,1 ,20,16464,3433826,108,0 ,22,1020,288104,1,1 ,22,1020,288112,1,1 ,22,1020,288120,1,1 ,22,1020,288128,1,1 ,17,923,8152452,24,0 ,45,15153,5006724,48,0 ,22,1020,288136,1,1 ,22,1020,288144,1,1 ,22,1020,288152,1,1 ,22,1020,288160,1,1 ,20,16776,3958178,668,0 ,22,1020,288168,1,1 ,22,1020,288176,1,1 ,22,1020,288184,1,1 ,22,1020,288192,1,1 ,45,15153,3958212,16,0 ,17,923,7628228,32,0 ,17,923,6579652,24,0 ,44,15152,288196,32,0 ,44,15152,3433924,48,0 ,22,1020,288200,1,1 ,22,1020,288208,1,1 ,22,1020,288216,1,1 ,22,1020,288224,1,1 ,22,1020,288232,1,1 ,22,1020,288240,1,1 ,22,1020,288248,1,1 ,22,1020,288256,1,1 ,17,923,10249732,24,0 ,17,923,7104004,48,0 ,17,923,8676868,24,0 ,17,923,9201156,40,0 ,22,1020,288264,1,1 ,22,1020,288272,1,1 ,22,1020,288280,1,1 ,22,1020,288288,1,1 ,20,17597,6055458,56,0 ,22,1020,288296,1,1 ,22,1020,288304,1,1 ,22,1020,288312,1,1 ,22,1020,288320,1,1 ,20,24440,23356994,116,0 ,20,21028,15492674,12,0 ,17,923,8152644,24,0 ,44,15152,2909764,136,0 ,44,15152,1861188,24,0 ,45,15153,3958340,24,0 ,45,15153,4482628,32,0 ,22,1020,288328,1,1 ,22,1020,288336,1,1 ,22,1020,288344,1,1 ,22,1020,288352,1,1 ,22,1020,288360,1,1 ,22,1020,288368,1,1 ,22,1020,288376,1,1 ,22,1020,288384,1,1 ,20,24234,22832770,48,0 ,17,923,9725572,72,0 ,17,923,6579844,56,0 ,22,1020,288392,1,1 ,22,1020,288400,1,1 ,22,1020,288408,1,1 ,22,1020,288416,1,1 ,20,21029,15492770,24,0 ,20,25447,25978530,300,0 ,22,1020,288424,1,1 ,22,1020,288432,1,1 ,22,1020,288440,1,1 ,22,1020,288448,1,1 ,20,19774,10774210,420,0 ,20,18752,8677058,288,0 ,17,923,10249924,32,0 ,17,923,7628484,32,0 ,44,15152,1337028,184,0 ,44,15152,288452,16,0 ,17,923,8677060,64,0 ,22,1020,288456,1,1 ,22,1020,288464,1,1 ,22,1020,288472,1,1 ,22,1020,288480,1,1 ,20,23622,21260002,1656,0 ,22,1020,288488,1,1 ,22,1020,288496,1,1 ,22,1020,288504,1,1 ,22,1020,288512,1,1 ,17,923,8152836,56,0 ,44,15152,1861380,24,0 ,45,15153,3958532,16,0 ,45,15153,5007108,56,0 ,22,1020,288520,1,1 ,22,1020,288528,1,1 ,22,1020,288536,1,1 ,22,1020,288544,1,1 ,20,25989,27551522,572,0 ,22,1020,288552,1,1 ,22,1020,288560,1,1 ,22,1020,288568,1,1 ,22,1020,288576,1,1 ,20,22400,18638658,136,0 ,17,923,9201476,40,0 ,44,15152,288580,16,0 ,44,15152,3434308,24,0 ,45,15153,4482884,16,0 ,22,1020,288584,1,1 ,22,1020,288592,1,1 ,22,1020,288600,1,1 ,22,1020,288608,1,1 ,20,21030,15492962,148,0 ,20,19011,9201506,1164,0 ,22,1020,288616,1,1 ,22,1020,288624,1,1 ,22,1020,288632,1,1 ,22,1020,288640,1,1 ,45,15153,3958660,32,0 ,17,923,7104388,32,0 ,22,1020,288648,1,1 ,22,1020,288656,1,1 ,22,1020,288664,1,1 ,22,1020,288672,1,1 ,22,1020,288680,1,1 ,22,1020,288688,1,1 ,22,1020,288696,1,1 ,22,1020,288704,1,1 ,17,923,10250180,40,0 ,17,923,7628740,24,0 ,44,15152,1861572,24,0 ,44,15152,288708,16,0 ,45,15153,4483012,88,0 ,22,1020,288712,1,1 ,22,1020,288720,1,1 ,22,1020,288728,1,1 ,22,1020,288736,1,1 ,20,22816,19687394,116,0 ,20,15449,813026,68,0 ,20,17598,6055906,140,0 ,22,1020,288744,1,1 ,22,1020,288752,1,1 ,22,1020,288760,1,1 ,22,1020,288768,1,1 ,20,24235,22833154,44,0 ,44,15152,3434500,24,0 ,22,1020,288776,1,1 ,22,1020,288784,1,1 ,22,1020,288792,1,1 ,22,1020,288800,1,1 ,22,1020,288808,1,1 ,22,1020,288816,1,1 ,22,1020,288824,1,1 ,22,1020,288832,1,1 ,44,15152,288836,16,0 ,17,923,6580292,24,0 ,22,1020,288840,1,1 ,22,1020,288848,1,1 ,22,1020,288856,1,1 ,22,1020,288864,1,1 ,22,1020,288872,1,1 ,22,1020,288880,1,1 ,22,1020,288888,1,1 ,22,1020,288896,1,1 ,17,923,9201796,48,0 ,17,923,7628932,32,0 ,17,923,7104644,48,0 ,44,15152,1861764,24,0 ,45,15153,3958916,32,0 ,22,1020,288904,1,1 ,22,1020,288912,1,1 ,22,1020,288920,1,1 ,22,1020,288928,1,1 ,20,23121,20211874,628,0 ,20,17034,4483234,200,0 ,22,1020,288936,1,1 ,22,1020,288944,1,1 ,22,1020,288952,1,1 ,22,1020,288960,1,1 ,20,16465,3434690,132,0 ,17,923,9726148,40,0 ,44,15152,288964,32,0 ,44,15152,3434692,40,0 ,45,15153,5007556,56,0 ,17,923,8153284,24,0 ,17,923,8677572,48,0 ,22,1020,288968,1,1 ,22,1020,288976,1,1 ,22,1020,288984,1,1 ,22,1020,288992,1,1 ,22,1020,289000,1,1 ,22,1020,289008,1,1 ,22,1020,289016,1,1 ,22,1020,289024,1,1 ,17,923,10250500,80,0 ,17,923,6580484,24,0 ,22,1020,289032,1,1 ,22,1020,289040,1,1 ,22,1020,289048,1,1 ,22,1020,289056,1,1 ,20,18297,7629090,696,0 ,22,1020,289064,1,1 ,22,1020,289072,1,1 ,22,1020,289080,1,1 ,22,1020,289088,1,1 ,44,15152,1861956,40,0 ,22,1020,289096,1,1 ,22,1020,289104,1,1 ,22,1020,289112,1,1 ,22,1020,289120,1,1 ,20,24236,22833506,24,0 ,22,1020,289128,1,1 ,22,1020,289136,1,1 ,22,1020,289144,1,1 ,22,1020,289152,1,1 ,17,923,8153476,40,0 ,17,923,7629188,24,0 ,45,15153,3959172,16,0 ,22,1020,289160,1,1 ,22,1020,289168,1,1 ,22,1020,289176,1,1 ,22,1020,289184,1,1 ,22,1020,289192,1,1 ,22,1020,289200,1,1 ,22,1020,289208,1,1 ,22,1020,289216,1,1 ,20,25009,24930754,72,0 ,44,15152,289220,16,0 ,17,923,6580676,24,0 ,22,1020,289224,1,1 ,22,1020,289232,1,1 ,22,1020,289240,1,1 ,22,1020,289248,1,1 ,20,24441,23357922,144,0 ,22,1020,289256,1,1 ,22,1020,289264,1,1 ,22,1020,289272,1,1 ,22,1020,289280,1,1 ,20,19189,9726466,88,0 ,20,15450,813570,48,0 ,17,923,9726468,40,0 ,17,923,7105028,32,0 ,44,15152,3435012,32,0 ,45,15153,3959300,32,0 ,17,923,9202180,32,0 ,22,1020,289288,1,1 ,22,1020,289296,1,1 ,22,1020,289304,1,1 ,22,1020,289312,1,1 ,20,24237,22833698,100,0 ,22,1020,289320,1,1 ,22,1020,289328,1,1 ,22,1020,289336,1,1 ,22,1020,289344,1,1 ,20,15699,1337922,1700,0 ,17,923,8677956,40,0 ,17,923,7629380,24,0 ,44,15152,2386500,104,0 ,44,15152,289348,16,0 ,22,1020,289352,1,1 ,22,1020,289360,1,1 ,22,1020,289368,1,1 ,22,1020,289376,1,1 ,22,1020,289384,1,1 ,22,1020,289392,1,1 ,22,1020,289400,1,1 ,22,1020,289408,1,1 ,45,15153,5008004,64,0 ,17,923,6580868,56,0 ,44,15152,2910852,24,0 ,44,15152,1862276,24,0 ,45,15153,4483716,176,0 ,22,1020,289416,1,1 ,22,1020,289424,1,1 ,22,1020,289432,1,1 ,22,1020,289440,1,1 ,22,1020,289448,1,1 ,22,1020,289456,1,1 ,22,1020,289464,1,1 ,22,1020,289472,1,1 ,17,923,8153796,32,0 ,44,15152,289476,40,0 ,22,1020,289480,1,1 ,22,1020,289488,1,1 ,22,1020,289496,1,1 ,22,1020,289504,1,1 ,20,19501,10250978,12,0 ,22,1020,289512,1,1 ,22,1020,289520,1,1 ,22,1020,289528,1,1 ,22,1020,289536,1,1 ,17,923,9202436,32,0 ,17,923,7629572,24,0 ,17,923,7105284,32,0 ,44,15152,3435268,32,0 ,45,15153,3959556,16,0 ,22,1020,289544,1,1 ,22,1020,289552,1,1 ,22,1020,289560,1,1 ,22,1020,289568,1,1 ,22,1020,289576,1,1 ,22,1020,289584,1,1 ,22,1020,289592,1,1 ,22,1020,289600,1,1 ,20,22586,19163970,76,0 ,20,19502,10251074,584,0 ,20,20568,13396802,968,0 ,17,923,9726788,24,0 ,44,15152,2911044,64,0 ,44,15152,1862468,24,0 ,22,1020,289608,1,1 ,22,1020,289616,1,1 ,22,1020,289624,1,1 ,22,1020,289632,1,1 ,20,24016,22309730,72,0 ,22,1020,289640,1,1 ,22,1020,289648,1,1 ,22,1020,289656,1,1 ,22,1020,289664,1,1 ,20,22817,19688322,132,0 ,20,15451,813954,20,0 ,20,22401,18639746,136,0 ,17,923,10251140,48,0 ,45,15153,3959684,24,0 ,17,923,8678276,48,0 ,22,1020,289672,1,1 ,22,1020,289680,1,1 ,22,1020,289688,1,1 ,22,1020,289696,1,1 ,22,1020,289704,1,1 ,22,1020,289712,1,1 ,22,1020,289720,1,1 ,22,1020,289728,1,1 ,17,923,8154052,40,0 ,17,923,7629764,24,0 ,22,1020,289736,1,1 ,22,1020,289744,1,1 ,22,1020,289752,1,1 ,22,1020,289760,1,1 ,20,22120,18115554,440,0 ,22,1020,289768,1,1 ,22,1020,289776,1,1 ,22,1020,289784,1,1 ,22,1020,289792,1,1 ,20,21031,15494146,176,0 ,20,25010,24931330,232,0 ,17,923,9726980,56,0 ,17,923,7105540,24,0 ,44,15152,1862660,40,0 ,44,15152,289796,16,0 ,44,15152,3435524,24,0 ,17,923,9202692,24,0 ,22,1020,289800,1,1 ,22,1020,289808,1,1 ,22,1020,289816,1,1 ,22,1020,289824,1,1 ,20,15452,814114,12,0 ,22,1020,289832,1,1 ,22,1020,289840,1,1 ,22,1020,289848,1,1 ,22,1020,289856,1,1 ,20,17599,6057026,12,0 ,45,15153,5532740,32,0 ,17,923,6581316,56,0 ,44,15152,814148,32,0 ,45,15153,3959876,24,0 ,22,1020,289864,1,1 ,22,1020,289872,1,1 ,22,1020,289880,1,1 ,22,1020,289888,1,1 ,20,17799,6581346,388,0 ,22,1020,289896,1,1 ,22,1020,289904,1,1 ,22,1020,289912,1,1 ,22,1020,289920,1,1 ,20,15453,814210,88,0 ,45,15153,5008516,72,0 ,17,923,7629956,24,0 ,44,15152,1338500,24,0 ,44,15152,289924,24,0 ,22,1020,289928,1,1 ,22,1020,289936,1,1 ,22,1020,289944,1,1 ,22,1020,289952,1,1 ,20,17600,6057122,192,0 ,22,1020,289960,1,1 ,22,1020,289968,1,1 ,22,1020,289976,1,1 ,22,1020,289984,1,1 ,20,19190,9727170,296,0 ,17,923,9202884,24,0 ,17,923,7105732,24,0 ,44,15152,3435716,24,0 ,22,1020,289992,1,1 ,22,1020,290000,1,1 ,22,1020,290008,1,1 ,22,1020,290016,1,1 ,20,16466,3435746,128,0 ,22,1020,290024,1,1 ,22,1020,290032,1,1 ,22,1020,290040,1,1 ,22,1020,290048,1,1 ,17,923,10251524,32,0 ,45,15153,3960068,24,0 ,17,923,8154372,32,0 ,17,923,8678660,40,0 ,22,1020,290056,1,1 ,22,1020,290064,1,1 ,22,1020,290072,1,1 ,22,1020,290080,1,1 ,20,26184,28077346,68,0 ,22,1020,290088,1,1 ,22,1020,290096,1,1 ,22,1020,290104,1,1 ,22,1020,290112,1,1 ,20,24238,22834498,344,0 ,45,15153,5532996,40,0 ,17,923,7630148,24,0 ,44,15152,2911556,24,0 ,44,15152,1862980,64,0 ,44,15152,1338692,128,0 ,44,15152,290116,64,0 ,44,15152,814404,24,0 ,22,1020,290120,1,1 ,22,1020,290128,1,1 ,22,1020,290136,1,1 ,22,1020,290144,1,1 ,20,26337,28601698,164,0 ,22,1020,290152,1,1 ,22,1020,290160,1,1 ,22,1020,290168,1,1 ,22,1020,290176,1,1 ,20,21593,16543106,216,0 ,17,923,9203076,24,0 ,17,923,7105924,24,0 ,44,15152,2387332,264,0 ,44,15152,3435908,24,0 ,22,1020,290184,1,1 ,22,1020,290192,1,1 ,22,1020,290200,1,1 ,22,1020,290208,1,1 ,20,24017,22310306,416,0 ,20,22587,19164578,484,0 ,22,1020,290216,1,1 ,22,1020,290224,1,1 ,22,1020,290232,1,1 ,22,1020,290240,1,1 ,20,25214,25456066,148,0 ,17,923,9727428,40,0 ,45,15153,3960260,16,0 ,22,1020,290248,1,1 ,22,1020,290256,1,1 ,22,1020,290264,1,1 ,22,1020,290272,1,1 ,22,1020,290280,1,1 ,22,1020,290288,1,1 ,22,1020,290296,1,1 ,22,1020,290304,1,1 ,20,26452,29126146,928,0 ,17,923,10251780,48,0 ,17,923,7630340,32,0 ,17,923,6581764,56,0 ,44,15152,2911748,56,0 ,44,15152,814596,24,0 ,17,923,8154628,32,0 ,22,1020,290312,1,1 ,22,1020,290320,1,1 ,22,1020,290328,1,1 ,22,1020,290336,1,1 ,22,1020,290344,1,1 ,22,1020,290352,1,1 ,22,1020,290360,1,1 ,22,1020,290368,1,1 ,20,18548,8154690,120,0 ,17,923,9203268,24,0 ,17,923,7106116,40,0 ,44,15152,3436100,40,0 ,45,15153,3960388,16,0 ,17,923,8678980,48,0 ,22,1020,290376,1,1 ,22,1020,290384,1,1 ,22,1020,290392,1,1 ,22,1020,290400,1,1 ,20,24442,23359074,344,0 ,22,1020,290408,1,1 ,22,1020,290416,1,1 ,22,1020,290424,1,1 ,22,1020,290432,1,1 ,45,15153,5533316,40,0 ,22,1020,290440,1,1 ,22,1020,290448,1,1 ,22,1020,290456,1,1 ,22,1020,290464,1,1 ,22,1020,290472,1,1 ,22,1020,290480,1,1 ,22,1020,290488,1,1 ,22,1020,290496,1,1 ,45,15153,5009092,24,0 ,44,15152,814788,48,0 ,45,15153,3960516,40,0 ,22,1020,290504,1,1 ,22,1020,290512,1,1 ,22,1020,290520,1,1 ,22,1020,290528,1,1 ,20,17035,4484834,104,0 ,22,1020,290536,1,1 ,22,1020,290544,1,1 ,22,1020,290552,1,1 ,22,1020,290560,1,1 ,17,923,9727748,72,0 ,17,923,7630596,32,0 ,17,923,8154884,32,0 ,17,923,9203460,32,0 ,22,1020,290568,1,1 ,22,1020,290576,1,1 ,22,1020,290584,1,1 ,22,1020,290592,1,1 ,22,1020,290600,1,1 ,22,1020,290608,1,1 ,22,1020,290616,1,1 ,22,1020,290624,1,1 ,20,15454,814914,224,0 ,20,26185,28077890,196,0 ,44,15152,290628,16,0 ,44,15152,1863492,24,0 ,22,1020,290632,1,1 ,22,1020,290640,1,1 ,22,1020,290648,1,1 ,22,1020,290656,1,1 ,22,1020,290664,1,1 ,22,1020,290672,1,1 ,22,1020,290680,1,1 ,22,1020,290688,1,1 ,17,923,10252164,40,0 ,17,923,7106436,32,0 ,44,15152,3436420,112,0 ,45,15153,5009284,48,0 ,22,1020,290696,1,1 ,22,1020,290704,1,1 ,22,1020,290712,1,1 ,22,1020,290720,1,1 ,20,22818,19689378,340,0 ,22,1020,290728,1,1 ,22,1020,290736,1,1 ,22,1020,290744,1,1 ,22,1020,290752,1,1 ,20,22402,18640834,520,0 ,20,18753,8679362,212,0 ,17,923,8679364,40,0 ,17,923,6582212,24,0 ,44,15152,2912196,32,0 ,44,15152,290756,24,0 ,45,15153,5533636,40,0 ,22,1020,290760,1,1 ,22,1020,290768,1,1 ,22,1020,290776,1,1 ,22,1020,290784,1,1 ,22,1020,290792,1,1 ,22,1020,290800,1,1 ,22,1020,290808,1,1 ,22,1020,290816,1,1 ,20,25448,25980930,192,0 ,17,923,9203716,32,0 ,17,923,7630852,32,0 ,44,15152,1863684,80,0 ,45,15153,3960836,32,0 ,45,15153,4485124,24,0 ,17,923,8155140,32,0 ,22,1020,290824,1,1 ,22,1020,290832,1,1 ,22,1020,290840,1,1 ,22,1020,290848,1,1 ,22,1020,290856,1,1 ,22,1020,290864,1,1 ,22,1020,290872,1,1 ,22,1020,290880,1,1 ,44,15152,815172,24,0 ,22,1020,290888,1,1 ,22,1020,290896,1,1 ,22,1020,290904,1,1 ,22,1020,290912,1,1 ,22,1020,290920,1,1 ,22,1020,290928,1,1 ,22,1020,290936,1,1 ,22,1020,290944,1,1 ,44,15152,290948,32,0 ,17,923,7106692,32,0 ,17,923,6582404,24,0 ,22,1020,290952,1,1 ,22,1020,290960,1,1 ,22,1020,290968,1,1 ,22,1020,290976,1,1 ,22,1020,290984,1,1 ,22,1020,290992,1,1 ,22,1020,291000,1,1 ,22,1020,291008,1,1 ,17,923,10252484,40,0 ,44,15152,2912452,96,0 ,45,15153,4485316,16,0 ,22,1020,291016,1,1 ,22,1020,291024,1,1 ,22,1020,291032,1,1 ,22,1020,291040,1,1 ,20,16467,3436770,2016,0 ,22,1020,291048,1,1 ,22,1020,291056,1,1 ,22,1020,291064,1,1 ,22,1020,291072,1,1 ,17,923,9203972,32,0 ,17,923,7631108,32,0 ,44,15152,815364,40,0 ,45,15153,3961092,16,0 ,45,15153,5009668,72,0 ,45,15153,5533956,24,0 ,17,923,8155396,32,0 ,17,923,8679684,48,0 ,22,1020,291080,1,1 ,22,1020,291088,1,1 ,22,1020,291096,1,1 ,22,1020,291104,1,1 ,22,1020,291112,1,1 ,22,1020,291120,1,1 ,22,1020,291128,1,1 ,22,1020,291136,1,1 ,20,23791,21786946,460,0 ,17,923,9728324,40,0 ,17,923,6582596,40,0 ,44,15152,1339716,32,0 ,45,15153,4485444,24,0 ,22,1020,291144,1,1 ,22,1020,291152,1,1 ,22,1020,291160,1,1 ,22,1020,291168,1,1 ,22,1020,291176,1,1 ,22,1020,291184,1,1 ,22,1020,291192,1,1 ,22,1020,291200,1,1 ,20,21032,15495554,12,0 ,45,15153,3961220,24,0 ,17,923,7106948,32,0 ,44,15152,291204,16,0 ,22,1020,291208,1,1 ,22,1020,291216,1,1 ,22,1020,291224,1,1 ,22,1020,291232,1,1 ,22,1020,291240,1,1 ,22,1020,291248,1,1 ,22,1020,291256,1,1 ,22,1020,291264,1,1 ,45,15153,5534148,32,0 ,22,1020,291272,1,1 ,22,1020,291280,1,1 ,22,1020,291288,1,1 ,22,1020,291296,1,1 ,20,21033,15495650,328,0 ,22,1020,291304,1,1 ,22,1020,291312,1,1 ,22,1020,291320,1,1 ,22,1020,291328,1,1 ,20,18549,8155650,52,0 ,20,15863,1864194,12,0 ,17,923,10252804,40,0 ,17,923,7631364,40,0 ,44,15152,291332,32,0 ,45,15153,4485636,16,0 ,17,923,8155652,48,0 ,17,923,9204228,48,0 ,22,1020,291336,1,1 ,22,1020,291344,1,1 ,22,1020,291352,1,1 ,22,1020,291360,1,1 ,20,17036,4485666,236,0 ,22,1020,291368,1,1 ,22,1020,291376,1,1 ,22,1020,291384,1,1 ,22,1020,291392,1,1 ,20,20166,11825730,176,0 ,45,15153,3961412,24,0 ,44,15152,1339972,40,0 ,44,15152,815684,48,0 ,22,1020,291400,1,1 ,22,1020,291408,1,1 ,22,1020,291416,1,1 ,22,1020,291424,1,1 ,20,15864,1864290,80,0 ,20,25215,25457250,620,0 ,22,1020,291432,1,1 ,22,1020,291440,1,1 ,22,1020,291448,1,1 ,22,1020,291456,1,1 ,20,26338,28603010,332,0 ,17,923,9728644,40,0 ,17,923,7107204,32,0 ,17,923,6582916,40,0 ,44,15152,1864324,72,0 ,45,15153,4485764,24,0 ,17,923,8680068,48,0 ,22,1020,291464,1,1 ,22,1020,291472,1,1 ,22,1020,291480,1,1 ,22,1020,291488,1,1 ,20,17601,6058658,624,0 ,22,1020,291496,1,1 ,22,1020,291504,1,1 ,22,1020,291512,1,1 ,22,1020,291520,1,1 ,45,15153,5534404,32,0 ,22,1020,291528,1,1 ,22,1020,291536,1,1 ,22,1020,291544,1,1 ,22,1020,291552,1,1 ,22,1020,291560,1,1 ,22,1020,291568,1,1 ,22,1020,291576,1,1 ,22,1020,291584,1,1 ,45,15153,3961604,24,0 ,44,15152,291588,16,0 ,44,15152,3437316,24,0 ,22,1020,291592,1,1 ,22,1020,291600,1,1 ,22,1020,291608,1,1 ,22,1020,291616,1,1 ,22,1020,291624,1,1 ,22,1020,291632,1,1 ,22,1020,291640,1,1 ,22,1020,291648,1,1 ,20,25011,24933186,148,0 ,17,923,10253124,40,0 ,17,923,7631684,32,0 ,45,15153,4485956,224,0 ,45,15153,5010244,16,0 ,22,1020,291656,1,1 ,22,1020,291664,1,1 ,22,1020,291672,1,1 ,22,1020,291680,1,1 ,22,1020,291688,1,1 ,22,1020,291696,1,1 ,22,1020,291704,1,1 ,22,1020,291712,1,1 ,17,923,9204612,40,0 ,17,923,7107460,40,0 ,44,15152,1340292,136,0 ,44,15152,291716,40,0 ,17,923,8156036,40,0 ,22,1020,291720,1,1 ,22,1020,291728,1,1 ,22,1020,291736,1,1 ,22,1020,291744,1,1 ,20,18550,8156066,12,0 ,22,1020,291752,1,1 ,22,1020,291760,1,1 ,22,1020,291768,1,1 ,22,1020,291776,1,1 ,17,923,9728964,40,0 ,17,923,6583236,32,0 ,44,15152,2913220,40,0 ,44,15152,816068,24,0 ,44,15152,3437508,32,0 ,45,15153,3961796,16,0 ,45,15153,5010372,16,0 ,45,15153,5534660,800,0 ,22,1020,291784,1,1 ,22,1020,291792,1,1 ,22,1020,291800,1,1 ,22,1020,291808,1,1 ,20,19775,10777570,128,0 ,22,1020,291816,1,1 ,22,1020,291824,1,1 ,22,1020,291832,1,1 ,22,1020,291840,1,1 ,20,18551,8156162,12,0 ,17,923,8680452,48,0 ,22,1020,291848,1,1 ,22,1020,291856,1,1 ,22,1020,291864,1,1 ,22,1020,291872,1,1 ,20,21378,16020514,492,0 ,22,1020,291880,1,1 ,22,1020,291888,1,1 ,22,1020,291896,1,1 ,22,1020,291904,1,1 ,20,21594,16544834,388,0 ,45,15153,5010500,64,0 ,17,923,7631940,40,0 ,45,15153,3961924,24,0 ,22,1020,291912,1,1 ,22,1020,291920,1,1 ,22,1020,291928,1,1 ,22,1020,291936,1,1 ,20,18552,8156258,124,0 ,22,1020,291944,1,1 ,22,1020,291952,1,1 ,22,1020,291960,1,1 ,22,1020,291968,1,1 ,17,923,10253444,32,0 ,44,15152,816260,32,0 ,22,1020,291976,1,1 ,22,1020,291984,1,1 ,22,1020,291992,1,1 ,22,1020,292000,1,1 ,22,1020,292008,1,1 ,22,1020,292016,1,1 ,22,1020,292024,1,1 ,22,1020,292032,1,1 ,17,923,9204932,32,0 ,17,923,7107780,24,0 ,17,923,6583492,40,0 ,44,15152,1864900,80,0 ,44,15152,292036,24,0 ,44,15152,3437764,24,0 ,17,923,8156356,40,0 ,22,1020,292040,1,1 ,22,1020,292048,1,1 ,22,1020,292056,1,1 ,22,1020,292064,1,1 ,20,15865,1864930,72,0 ,22,1020,292072,1,1 ,22,1020,292080,1,1 ,22,1020,292088,1,1 ,22,1020,292096,1,1 ,17,923,9729284,24,0 ,44,15152,2913540,24,0 ,45,15153,3962116,16,0 ,22,1020,292104,1,1 ,22,1020,292112,1,1 ,22,1020,292120,1,1 ,22,1020,292128,1,1 ,22,1020,292136,1,1 ,22,1020,292144,1,1 ,22,1020,292152,1,1 ,22,1020,292160,1,1 ,22,1020,292168,1,1 ,22,1020,292176,1,1 ,22,1020,292184,1,1 ,22,1020,292192,1,1 ,20,20291,12875106,12,0 ,20,26186,28079458,420,0 ,20,17402,5535074,472,0 ,22,1020,292200,1,1 ,22,1020,292208,1,1 ,22,1020,292216,1,1 ,22,1020,292224,1,1 ,17,923,10253700,32,0 ,17,923,7632260,32,0 ,17,923,7107972,64,0 ,44,15152,292228,24,0 ,44,15152,816516,32,0 ,44,15152,3437956,40,0 ,45,15153,3962244,16,0 ,17,923,8680836,32,0 ,22,1020,292232,1,1 ,22,1020,292240,1,1 ,22,1020,292248,1,1 ,22,1020,292256,1,1 ,22,1020,292264,1,1 ,22,1020,292272,1,1 ,22,1020,292280,1,1 ,22,1020,292288,1,1 ,20,20292,12875202,304,0 ,17,923,9729476,56,0 ,44,15152,2913732,48,0 ,44,15152,2389444,64,0 ,17,923,9205188,40,0 ,22,1020,292296,1,1 ,22,1020,292304,1,1 ,22,1020,292312,1,1 ,22,1020,292320,1,1 ,22,1020,292328,1,1 ,22,1020,292336,1,1 ,22,1020,292344,1,1 ,22,1020,292352,1,1 ,20,19191,9729538,204,0 ,20,25449,25982466,56,0 ,17,923,8156676,24,0 ,17,923,6583812,32,0 ,45,15153,3962372,48,0 ,22,1020,292360,1,1 ,22,1020,292368,1,1 ,22,1020,292376,1,1 ,22,1020,292384,1,1 ,22,1020,292392,1,1 ,22,1020,292400,1,1 ,22,1020,292408,1,1 ,22,1020,292416,1,1 ,20,15455,816706,12,0 ,45,15153,5011012,16,0 ,44,15152,292420,24,0 ,22,1020,292424,1,1 ,22,1020,292432,1,1 ,22,1020,292440,1,1 ,22,1020,292448,1,1 ,20,18754,8681058,224,0 ,22,1020,292456,1,1 ,22,1020,292464,1,1 ,22,1020,292472,1,1 ,22,1020,292480,1,1 ,17,923,10253956,32,0 ,17,923,7632516,32,0 ,44,15152,816772,32,0 ,17,923,8681092,32,0 ,22,1020,292488,1,1 ,22,1020,292496,1,1 ,22,1020,292504,1,1 ,22,1020,292512,1,1 ,20,15456,816802,12,0 ,22,1020,292520,1,1 ,22,1020,292528,1,1 ,22,1020,292536,1,1 ,22,1020,292544,1,1 ,17,923,8156868,64,0 ,44,15152,3438276,16,0 ,45,15153,5011140,48,0 ,22,1020,292552,1,1 ,22,1020,292560,1,1 ,22,1020,292568,1,1 ,22,1020,292576,1,1 ,22,1020,292584,1,1 ,22,1020,292592,1,1 ,22,1020,292600,1,1 ,22,1020,292608,1,1 ,20,21969,17594114,2424,0 ,20,15457,816898,12,0 ,17,923,9205508,32,0 ,17,923,6584068,32,0 ,44,15152,292612,56,0 ,22,1020,292616,1,1 ,22,1020,292624,1,1 ,22,1020,292632,1,1 ,22,1020,292640,1,1 ,20,15866,1865506,76,0 ,22,1020,292648,1,1 ,22,1020,292656,1,1 ,22,1020,292664,1,1 ,22,1020,292672,1,1 ,44,15152,3438404,24,0 ,44,15152,2914116,88,0 ,44,15152,1865540,40,0 ,22,1020,292680,1,1 ,22,1020,292688,1,1 ,22,1020,292696,1,1 ,22,1020,292704,1,1 ,20,15458,816994,52,0 ,22,1020,292712,1,1 ,22,1020,292720,1,1 ,22,1020,292728,1,1 ,22,1020,292736,1,1 ,17,923,10254212,24,0 ,17,923,7632772,32,0 ,17,923,7108484,32,0 ,44,15152,817028,24,0 ,45,15153,3962756,32,0 ,17,923,8681348,24,0 ,17,923,9729924,48,0 ,22,1020,292744,1,1 ,22,1020,292752,1,1 ,22,1020,292760,1,1 ,22,1020,292768,1,1 ,22,1020,292776,1,1 ,22,1020,292784,1,1 ,22,1020,292792,1,1 ,22,1020,292800,1,1 ,20,20167,11827138,884,0 ,20,25450,25982914,56,0 ,44,15152,1341380,320,0 ,44,15152,2389956,48,0 ,22,1020,292808,1,1 ,22,1020,292816,1,1 ,22,1020,292824,1,1 ,22,1020,292832,1,1 ,20,19776,10778594,204,0 ,20,25012,24934370,76,0 ,22,1020,292840,1,1 ,22,1020,292848,1,1 ,22,1020,292856,1,1 ,22,1020,292864,1,1 ,20,24239,22837250,324,0 ,17,923,9205764,32,0 ,17,923,6584324,56,0 ,44,15152,3438596,32,0 ,22,1020,292872,1,1 ,22,1020,292880,1,1 ,22,1020,292888,1,1 ,22,1020,292896,1,1 ,22,1020,292904,1,1 ,22,1020,292912,1,1 ,22,1020,292920,1,1 ,22,1020,292928,1,1 ,20,18553,8157250,108,0 ,17,923,10254404,32,0 ,44,15152,817220,32,0 ,45,15153,5011524,32,0 ,17,923,8681540,32,0 ,22,1020,292936,1,1 ,22,1020,292944,1,1 ,22,1020,292952,1,1 ,22,1020,292960,1,1 ,22,1020,292968,1,1 ,22,1020,292976,1,1 ,22,1020,292984,1,1 ,22,1020,292992,1,1 ,20,17800,6584450,300,0 ,45,15153,3963012,24,0 ,17,923,7633028,32,0 ,17,923,7108740,32,0 ,44,15152,1865860,48,0 ,22,1020,293000,1,1 ,22,1020,293008,1,1 ,22,1020,293016,1,1 ,22,1020,293024,1,1 ,22,1020,293032,1,1 ,22,1020,293040,1,1 ,22,1020,293048,1,1 ,22,1020,293056,1,1 ,17,923,8157380,32,0 ,44,15152,293060,16,0 ,22,1020,293064,1,1 ,22,1020,293072,1,1 ,22,1020,293080,1,1 ,22,1020,293088,1,1 ,22,1020,293096,1,1 ,22,1020,293104,1,1 ,22,1020,293112,1,1 ,22,1020,293120,1,1 ,20,15459,817410,184,0 ,20,25990,27556098,352,0 ,17,923,9730308,80,0 ,44,15152,3438852,48,0 ,17,923,9206020,24,0 ,22,1020,293128,1,1 ,22,1020,293136,1,1 ,22,1020,293144,1,1 ,22,1020,293152,1,1 ,20,24443,23361826,116,0 ,22,1020,293160,1,1 ,22,1020,293168,1,1 ,22,1020,293176,1,1 ,22,1020,293184,1,1 ,17,923,10254660,32,0 ,44,15152,2390340,40,0 ,44,15152,293188,16,0 ,44,15152,817476,48,0 ,45,15153,3963204,16,0 ,45,15153,5011780,56,0 ,17,923,8681796,48,0 ,22,1020,293192,1,1 ,22,1020,293200,1,1 ,22,1020,293208,1,1 ,22,1020,293216,1,1 ,22,1020,293224,1,1 ,22,1020,293232,1,1 ,22,1020,293240,1,1 ,22,1020,293248,1,1 ,20,17037,4487554,116,0 ,20,25451,25983362,40,0 ,20,15867,1866114,12,0 ,17,923,7108996,32,0 ,17,923,7633284,32,0 ,22,1020,293256,1,1 ,22,1020,293264,1,1 ,22,1020,293272,1,1 ,22,1020,293280,1,1 ,20,22121,18119074,504,0 ,22,1020,293288,1,1 ,22,1020,293296,1,1 ,22,1020,293304,1,1 ,22,1020,293312,1,1 ,17,923,9206212,56,0 ,17,923,6584772,32,0 ,44,15152,293316,16,0 ,45,15153,3963332,16,0 ,17,923,8157636,24,0 ,22,1020,293320,1,1 ,22,1020,293328,1,1 ,22,1020,293336,1,1 ,22,1020,293344,1,1 ,20,15868,1866210,1168,0 ,22,1020,293352,1,1 ,22,1020,293360,1,1 ,22,1020,293368,1,1 ,22,1020,293376,1,1 ,44,15152,1866244,40,0 ,44,15152,2914820,32,0 ,22,1020,293384,1,1 ,22,1020,293392,1,1 ,22,1020,293400,1,1 ,22,1020,293408,1,1 ,22,1020,293416,1,1 ,22,1020,293424,1,1 ,22,1020,293432,1,1 ,22,1020,293440,1,1 ,20,22819,19692098,148,0 ,20,25013,24934978,40,0 ,17,923,10254916,32,0 ,44,15152,293444,32,0 ,45,15153,3963460,40,0 ,45,15153,4487748,48,0 ,22,1020,293448,1,1 ,22,1020,293456,1,1 ,22,1020,293464,1,1 ,22,1020,293472,1,1 ,22,1020,293480,1,1 ,22,1020,293488,1,1 ,22,1020,293496,1,1 ,22,1020,293504,1,1 ,20,16777,3963522,32,0 ,17,923,8157828,24,0 ,17,923,7633540,40,0 ,17,923,7109252,24,0 ,44,15152,2390660,40,0 ,44,15152,3439236,40,0 ,22,1020,293512,1,1 ,22,1020,293520,1,1 ,22,1020,293528,1,1 ,22,1020,293536,1,1 ,20,24018,22313634,188,0 ,22,1020,293544,1,1 ,22,1020,293552,1,1 ,22,1020,293560,1,1 ,22,1020,293568,1,1 ,20,25452,25983682,464,0 ,17,923,8682180,40,0 ,17,923,6585028,48,0 ,44,15152,817860,40,0 ,22,1020,293576,1,1 ,22,1020,293584,1,1 ,22,1020,293592,1,1 ,22,1020,293600,1,1 ,22,1020,293608,1,1 ,22,1020,293616,1,1 ,22,1020,293624,1,1 ,22,1020,293632,1,1 ,45,15153,5012228,16,0 ,44,15152,2915076,40,0 ,22,1020,293640,1,1 ,22,1020,293648,1,1 ,22,1020,293656,1,1 ,22,1020,293664,1,1 ,22,1020,293672,1,1 ,22,1020,293680,1,1 ,22,1020,293688,1,1 ,22,1020,293696,1,1 ,17,923,10255172,32,0 ,17,923,7109444,24,0 ,44,15152,1866564,32,0 ,44,15152,293700,16,0 ,17,923,8158020,32,0 ,22,1020,293704,1,1 ,22,1020,293712,1,1 ,22,1020,293720,1,1 ,22,1020,293728,1,1 ,22,1020,293736,1,1 ,22,1020,293744,1,1 ,22,1020,293752,1,1 ,22,1020,293760,1,1 ,20,16778,3963778,476,0 ,20,25014,24935298,72,0 ,17,923,9730948,48,0 ,45,15153,3963780,32,0 ,45,15153,5012356,32,0 ,17,923,9206660,32,0 ,22,1020,293768,1,1 ,22,1020,293776,1,1 ,22,1020,293784,1,1 ,22,1020,293792,1,1 ,20,18554,8158114,144,0 ,22,1020,293800,1,1 ,22,1020,293808,1,1 ,22,1020,293816,1,1 ,22,1020,293824,1,1 ,20,24582,23886786,300,0 ,45,15153,4488132,40,0 ,17,923,7633860,40,0 ,44,15152,2390980,40,0 ,44,15152,293828,24,0 ,44,15152,3439556,24,0 ,22,1020,293832,1,1 ,22,1020,293840,1,1 ,22,1020,293848,1,1 ,22,1020,293856,1,1 ,22,1020,293864,1,1 ,22,1020,293872,1,1 ,22,1020,293880,1,1 ,22,1020,293888,1,1 ,17,923,8682500,24,0 ,17,923,7109636,32,0 ,44,15152,818180,16,0 ,22,1020,293896,1,1 ,22,1020,293904,1,1 ,22,1020,293912,1,1 ,22,1020,293920,1,1 ,20,21034,15498274,364,0 ,20,25760,27032610,360,0 ,22,1020,293928,1,1 ,22,1020,293936,1,1 ,22,1020,293944,1,1 ,22,1020,293952,1,1 ,20,23122,20216898,64,0 ,17,923,10255428,24,0 ,17,923,6585412,40,0 ,44,15152,2915396,24,0 ,44,15152,1866820,64,0 ,17,923,8158276,64,0 ,22,1020,293960,1,1 ,22,1020,293968,1,1 ,22,1020,293976,1,1 ,22,1020,293984,1,1 ,20,19192,9731170,1328,0 ,22,1020,293992,1,1 ,22,1020,294000,1,1 ,22,1020,294008,1,1 ,22,1020,294016,1,1 ,17,923,9206916,24,0 ,44,15152,294020,16,0 ,44,15152,818308,32,0 ,44,15152,3439748,24,0 ,45,15153,3964036,32,0 ,45,15153,5012612,24,0 ,22,1020,294024,1,1 ,22,1020,294032,1,1 ,22,1020,294040,1,1 ,22,1020,294048,1,1 ,22,1020,294056,1,1 ,22,1020,294064,1,1 ,22,1020,294072,1,1 ,22,1020,294080,1,1 ,20,24444,23362754,332,0 ,20,22588,19168450,344,0 ,17,923,8682692,24,0 ,22,1020,294088,1,1 ,22,1020,294096,1,1 ,22,1020,294104,1,1 ,22,1020,294112,1,1 ,20,26339,28605666,116,0 ,22,1020,294120,1,1 ,22,1020,294128,1,1 ,22,1020,294136,1,1 ,22,1020,294144,1,1 ,17,923,10255620,32,0 ,17,923,7634180,48,0 ,17,923,7109892,32,0 ,44,15152,2915588,24,0 ,44,15152,2391300,24,0 ,44,15152,294148,32,0 ,45,15153,4488452,24,0 ,17,923,9731332,48,0 ,22,1020,294152,1,1 ,22,1020,294160,1,1 ,22,1020,294168,1,1 ,22,1020,294176,1,1 ,20,17038,4488482,12,0 ,22,1020,294184,1,1 ,22,1020,294192,1,1 ,22,1020,294200,1,1 ,22,1020,294208,1,1 ,17,923,9207108,32,0 ,44,15152,3439940,56,0 ,45,15153,5012804,24,0 ,22,1020,294216,1,1 ,22,1020,294224,1,1 ,22,1020,294232,1,1 ,22,1020,294240,1,1 ,20,18755,8682850,364,0 ,22,1020,294248,1,1 ,22,1020,294256,1,1 ,22,1020,294264,1,1 ,22,1020,294272,1,1 ,20,19503,10255746,88,0 ,20,17039,4488578,328,0 ,17,923,8682884,48,0 ,17,923,6585732,32,0 ,44,15152,818564,24,0 ,45,15153,3964292,16,0 ,22,1020,294280,1,1 ,22,1020,294288,1,1 ,22,1020,294296,1,1 ,22,1020,294304,1,1 ,22,1020,294312,1,1 ,22,1020,294320,1,1 ,22,1020,294328,1,1 ,22,1020,294336,1,1 ,20,25015,24935874,224,0 ,45,15153,4488644,40,0 ,44,15152,2915780,24,0 ,44,15152,2391492,24,0 ,22,1020,294344,1,1 ,22,1020,294352,1,1 ,22,1020,294360,1,1 ,22,1020,294368,1,1 ,22,1020,294376,1,1 ,22,1020,294384,1,1 ,22,1020,294392,1,1 ,22,1020,294400,1,1 ,17,923,10255876,40,0 ,17,923,7110148,32,0 ,44,15152,294404,24,0 ,45,15153,3964420,144,0 ,45,15153,5012996,16,0 ,22,1020,294408,1,1 ,22,1020,294416,1,1 ,22,1020,294424,1,1 ,22,1020,294432,1,1 ,22,1020,294440,1,1 ,22,1020,294448,1,1 ,22,1020,294456,1,1 ,22,1020,294464,1,1 ,20,23123,20217410,80,0 ,20,19777,10780226,1612,0 ,17,923,9207364,32,0 ,44,15152,1867332,24,0 ,44,15152,818756,24,0 ,17,923,8158788,56,0 ,22,1020,294472,1,1 ,22,1020,294480,1,1 ,22,1020,294488,1,1 ,22,1020,294496,1,1 ,22,1020,294504,1,1 ,22,1020,294512,1,1 ,22,1020,294520,1,1 ,22,1020,294528,1,1 ,17,923,9731716,24,0 ,17,923,7634564,40,0 ,17,923,6585988,48,0 ,44,15152,2915972,24,0 ,44,15152,2391684,24,0 ,45,15153,5013124,32,0 ,22,1020,294536,1,1 ,22,1020,294544,1,1 ,22,1020,294552,1,1 ,22,1020,294560,1,1 ,22,1020,294568,1,1 ,22,1020,294576,1,1 ,22,1020,294584,1,1 ,22,1020,294592,1,1 ,20,15460,818882,2084,0 ,44,15152,294596,16,0 ,22,1020,294600,1,1 ,22,1020,294608,1,1 ,22,1020,294616,1,1 ,22,1020,294624,1,1 ,20,22820,19693282,164,0 ,20,18298,7634658,504,0 ,22,1020,294632,1,1 ,22,1020,294640,1,1 ,22,1020,294648,1,1 ,22,1020,294656,1,1 ,17,923,8683268,32,0 ,17,923,7110404,24,0 ,44,15152,1867524,24,0 ,44,15152,818948,24,0 ,44,15152,3440388,32,0 ,45,15153,4488964,40,0 ,22,1020,294664,1,1 ,22,1020,294672,1,1 ,22,1020,294680,1,1 ,22,1020,294688,1,1 ,22,1020,294696,1,1 ,22,1020,294704,1,1 ,22,1020,294712,1,1 ,22,1020,294720,1,1 ,20,20293,12877634,12,0 ,17,923,10256196,40,0 ,44,15152,2916164,24,0 ,44,15152,2391876,24,0 ,44,15152,294724,24,0 ,17,923,9207620,24,0 ,17,923,9731908,56,0 ,22,1020,294728,1,1 ,22,1020,294736,1,1 ,22,1020,294744,1,1 ,22,1020,294752,1,1 ,22,1020,294760,1,1 ,22,1020,294768,1,1 ,22,1020,294776,1,1 ,22,1020,294784,1,1 ,45,15153,5013380,32,0 ,22,1020,294792,1,1 ,22,1020,294800,1,1 ,22,1020,294808,1,1 ,22,1020,294816,1,1 ,20,23792,21790626,72,0 ,20,20294,12877730,172,0 ,22,1020,294824,1,1 ,22,1020,294832,1,1 ,22,1020,294840,1,1 ,22,1020,294848,1,1 ,44,15152,819140,32,0 ,17,923,7634884,32,0 ,17,923,7110596,24,0 ,44,15152,1867716,16,0 ,22,1020,294856,1,1 ,22,1020,294864,1,1 ,22,1020,294872,1,1 ,22,1020,294880,1,1 ,22,1020,294888,1,1 ,22,1020,294896,1,1 ,22,1020,294904,1,1 ,22,1020,294912,1,1 ,20,22403,18644994,436,0 ,17,923,9207812,16,0 ,17,923,6586372,40,0 ,44,15152,2916356,24,0 ,44,15152,2392068,32,0 ,44,15152,294916,16,0 ,44,15152,3440644,40,0 ,17,923,8159236,24,0 ,17,923,8683524,40,0 ,22,1020,294920,1,1 ,22,1020,294928,1,1 ,22,1020,294936,1,1 ,22,1020,294944,1,1 ,20,18555,8159266,184,0 ,22,1020,294952,1,1 ,22,1020,294960,1,1 ,22,1020,294968,1,1 ,22,1020,294976,1,1 ,20,19504,10256450,88,0 ,45,15153,4489284,16,0 ,44,15152,1867844,24,0 ,22,1020,294984,1,1 ,22,1020,294992,1,1 ,22,1020,295000,1,1 ,22,1020,295008,1,1 ,20,21595,16547938,76,0 ,22,1020,295016,1,1 ,22,1020,295024,1,1 ,22,1020,295032,1,1 ,22,1020,295040,1,1 ,20,24019,22315138,192,0 ,20,26340,28606594,3628,0 ,17,923,10256516,24,0 ,17,923,7110788,24,0 ,44,15152,295044,24,0 ,45,15153,5013636,32,0 ,17,923,9207940,24,0 ,22,1020,295048,1,1 ,22,1020,295056,1,1 ,22,1020,295064,1,1 ,22,1020,295072,1,1 ,22,1020,295080,1,1 ,22,1020,295088,1,1 ,22,1020,295096,1,1 ,22,1020,295104,1,1 ,20,23124,20218050,120,0 ,17,923,8159428,64,0 ,17,923,7635140,32,0 ,44,15152,2916548,24,0 ,44,15152,819396,16,0 ,45,15153,4489412,24,0 ,22,1020,295112,1,1 ,22,1020,295120,1,1 ,22,1020,295128,1,1 ,22,1020,295136,1,1 ,22,1020,295144,1,1 ,22,1020,295152,1,1 ,22,1020,295160,1,1 ,22,1020,295168,1,1 ,17,923,9732356,48,0 ,44,15152,2392324,40,0 ,44,15152,1868036,24,0 ,22,1020,295176,1,1 ,22,1020,295184,1,1 ,22,1020,295192,1,1 ,22,1020,295200,1,1 ,22,1020,295208,1,1 ,22,1020,295216,1,1 ,22,1020,295224,1,1 ,22,1020,295232,1,1 ,17,923,10256708,48,0 ,17,923,7110980,24,0 ,17,923,6586692,48,0 ,44,15152,295236,24,0 ,44,15152,819524,24,0 ,44,15152,3440964,40,0 ,17,923,8683844,16,0 ,17,923,9208132,48,0 ,22,1020,295240,1,1 ,22,1020,295248,1,1 ,22,1020,295256,1,1 ,22,1020,295264,1,1 ,22,1020,295272,1,1 ,22,1020,295280,1,1 ,22,1020,295288,1,1 ,22,1020,295296,1,1 ,45,15153,5013892,40,0 ,44,15152,2916740,24,0 ,45,15153,4489604,16,0 ,22,1020,295304,1,1 ,22,1020,295312,1,1 ,22,1020,295320,1,1 ,22,1020,295328,1,1 ,20,25586,26509730,468,0 ,22,1020,295336,1,1 ,22,1020,295344,1,1 ,22,1020,295352,1,1 ,22,1020,295360,1,1 ,17,923,8683972,24,0 ,17,923,7635396,32,0 ,44,15152,1868228,72,0 ,44,15152,1343940,400,0 ,22,1020,295368,1,1 ,22,1020,295376,1,1 ,22,1020,295384,1,1 ,22,1020,295392,1,1 ,20,23793,21791202,188,0 ,20,17801,6586850,12,0 ,22,1020,295400,1,1 ,22,1020,295408,1,1 ,22,1020,295416,1,1 ,22,1020,295424,1,1 ,45,15153,4489732,24,0 ,17,923,7111172,56,0 ,44,15152,295428,16,0 ,44,15152,819716,16,0 ,22,1020,295432,1,1 ,22,1020,295440,1,1 ,22,1020,295448,1,1 ,22,1020,295456,1,1 ,20,24240,22839842,352,0 ,20,21885,17072674,72,0 ,20,23411,20742690,604,0 ,22,1020,295464,1,1 ,22,1020,295472,1,1 ,22,1020,295480,1,1 ,22,1020,295488,1,1 ,20,17802,6586946,12,0 ,44,15152,2392644,56,0 ,44,15152,2916932,32,0 ,22,1020,295496,1,1 ,22,1020,295504,1,1 ,22,1020,295512,1,1 ,22,1020,295520,1,1 ,22,1020,295528,1,1 ,22,1020,295536,1,1 ,22,1020,295544,1,1 ,22,1020,295552,1,1 ,20,26187,28082818,152,0 ,17,923,9732740,80,0 ,44,15152,295556,24,0 ,44,15152,819844,32,0 ,44,15152,3441284,40,0 ,45,15153,3965572,16,0 ,17,923,8684164,48,0 ,22,1020,295560,1,1 ,22,1020,295568,1,1 ,22,1020,295576,1,1 ,22,1020,295584,1,1 ,20,17803,6587042,12,0 ,22,1020,295592,1,1 ,22,1020,295600,1,1 ,22,1020,295608,1,1 ,22,1020,295616,1,1 ,20,21596,16548546,436,0 ,17,923,10257092,24,0 ,17,923,7635652,40,0 ,17,923,6587076,56,0 ,45,15153,4489924,16,0 ,45,15153,5014212,48,0 ,17,923,8159940,88,0 ,17,923,9208516,56,0 ,22,1020,295624,1,1 ,22,1020,295632,1,1 ,22,1020,295640,1,1 ,22,1020,295648,1,1 ,22,1020,295656,1,1 ,22,1020,295664,1,1 ,22,1020,295672,1,1 ,22,1020,295680,1,1 ,20,19505,10257154,180,0 ,20,17804,6587138,12,0 ,45,15153,3965700,40,0 ,22,1020,295688,1,1 ,22,1020,295696,1,1 ,22,1020,295704,1,1 ,22,1020,295712,1,1 ,22,1020,295720,1,1 ,22,1020,295728,1,1 ,22,1020,295736,1,1 ,22,1020,295744,1,1 ,45,15153,4490052,24,0 ,44,15152,2917188,56,0 ,44,15152,295748,16,0 ,22,1020,295752,1,1 ,22,1020,295760,1,1 ,22,1020,295768,1,1 ,22,1020,295776,1,1 ,20,17805,6587234,272,0 ,22,1020,295784,1,1 ,22,1020,295792,1,1 ,22,1020,295800,1,1 ,22,1020,295808,1,1 ,20,21379,16024450,172,0 ,17,923,10257284,32,0 ,44,15152,820100,488,0 ,22,1020,295816,1,1 ,22,1020,295824,1,1 ,22,1020,295832,1,1 ,22,1020,295840,1,1 ,22,1020,295848,1,1 ,22,1020,295856,1,1 ,22,1020,295864,1,1 ,22,1020,295872,1,1 ,44,15152,3441604,32,0 ,17,923,7111620,32,0 ,44,15152,295876,24,0 ,22,1020,295880,1,1 ,22,1020,295888,1,1 ,22,1020,295896,1,1 ,22,1020,295904,1,1 ,22,1020,295912,1,1 ,22,1020,295920,1,1 ,22,1020,295928,1,1 ,22,1020,295936,1,1 ,20,22821,19694594,140,0 ,20,25991,27558914,564,0 ,20,15262,295938,160,0 ,17,923,8684548,48,0 ,17,923,7635972,32,0 ,44,15152,2393092,96,0 ,44,15152,1868804,112,0 ,45,15153,4490244,24,0 ,22,1020,295944,1,1 ,22,1020,295952,1,1 ,22,1020,295960,1,1 ,22,1020,295968,1,1 ,20,17403,5538850,700,0 ,22,1020,295976,1,1 ,22,1020,295984,1,1 ,22,1020,295992,1,1 ,22,1020,296000,1,1 ,45,15153,5014596,16,0 ,45,15153,3966020,24,0 ,22,1020,296008,1,1 ,22,1020,296016,1,1 ,22,1020,296024,1,1 ,22,1020,296032,1,1 ,20,21886,17073250,24,0 ,22,1020,296040,1,1 ,22,1020,296048,1,1 ,22,1020,296056,1,1 ,22,1020,296064,1,1 ,20,23125,20219010,68,0 ,17,923,10257540,16,0 ,17,923,6587524,32,0 ,44,15152,296068,24,0 ,17,923,9208964,56,0 ,22,1020,296072,1,1 ,22,1020,296080,1,1 ,22,1020,296088,1,1 ,22,1020,296096,1,1 ,22,1020,296104,1,1 ,22,1020,296112,1,1 ,22,1020,296120,1,1 ,22,1020,296128,1,1 ,20,25016,24937666,100,0 ,45,15153,5014724,16,0 ,17,923,7111876,32,0 ,44,15152,3441860,40,0 ,45,15153,4490436,16,0 ,22,1020,296136,1,1 ,22,1020,296144,1,1 ,22,1020,296152,1,1 ,22,1020,296160,1,1 ,22,1020,296168,1,1 ,22,1020,296176,1,1 ,22,1020,296184,1,1 ,22,1020,296192,1,1 ,20,20295,12879106,132,0 ,17,923,10257668,40,0 ,17,923,7636228,24,0 ,44,15152,2917636,56,0 ,45,15153,3966212,32,0 ,17,923,9733380,48,0 ,22,1020,296200,1,1 ,22,1020,296208,1,1 ,22,1020,296216,1,1 ,22,1020,296224,1,1 ,20,24583,23889186,284,0 ,20,21887,17073442,24,0 ,22,1020,296232,1,1 ,22,1020,296240,1,1 ,22,1020,296248,1,1 ,22,1020,296256,1,1 ,45,15153,5014852,16,0 ,44,15152,296260,48,0 ,45,15153,4490564,24,0 ,22,1020,296264,1,1 ,22,1020,296272,1,1 ,22,1020,296280,1,1 ,22,1020,296288,1,1 ,22,1020,296296,1,1 ,22,1020,296304,1,1 ,22,1020,296312,1,1 ,22,1020,296320,1,1 ,17,923,8684932,48,0 ,17,923,6587780,24,0 ,17,923,8160644,88,0 ,22,1020,296328,1,1 ,22,1020,296336,1,1 ,22,1020,296344,1,1 ,22,1020,296352,1,1 ,22,1020,296360,1,1 ,22,1020,296368,1,1 ,22,1020,296376,1,1 ,22,1020,296384,1,1 ,20,25216,25462210,24,0 ,45,15153,5014980,64,0 ,17,923,7636420,32,0 ,17,923,7112132,32,0 ,22,1020,296392,1,1 ,22,1020,296400,1,1 ,22,1020,296408,1,1 ,22,1020,296416,1,1 ,20,21888,17073634,24,0 ,20,18556,8160738,12,0 ,22,1020,296424,1,1 ,22,1020,296432,1,1 ,22,1020,296440,1,1 ,22,1020,296448,1,1 ,45,15153,4490756,32,0 ,44,15152,3442180,24,0 ,45,15153,3966468,24,0 ,22,1020,296456,1,1 ,22,1020,296464,1,1 ,22,1020,296472,1,1 ,22,1020,296480,1,1 ,20,17602,6063650,144,0 ,22,1020,296488,1,1 ,22,1020,296496,1,1 ,22,1020,296504,1,1 ,22,1020,296512,1,1 ,20,18557,8160834,3284,0 ,17,923,10257988,40,0 ,17,923,6587972,24,0 ,17,923,9209412,56,0 ,22,1020,296520,1,1 ,22,1020,296528,1,1 ,22,1020,296536,1,1 ,22,1020,296544,1,1 ,22,1020,296552,1,1 ,22,1020,296560,1,1 ,22,1020,296568,1,1 ,22,1020,296576,1,1 ,20,24020,22316674,512,0 ,20,25217,25462402,424,0 ,17,923,9733764,48,0 ,22,1020,296584,1,1 ,22,1020,296592,1,1 ,22,1020,296600,1,1 ,22,1020,296608,1,1 ,20,23126,20219554,108,0 ,20,21889,17073826,1840,0 ,22,1020,296616,1,1 ,22,1020,296624,1,1 ,22,1020,296632,1,1 ,22,1020,296640,1,1 ,45,15153,3966660,24,0 ,17,923,7636676,32,0 ,17,923,7112388,24,0 ,44,15152,2918084,24,0 ,44,15152,296644,16,0 ,44,15152,3442372,24,0 ,22,1020,296648,1,1 ,22,1020,296656,1,1 ,22,1020,296664,1,1 ,22,1020,296672,1,1 ,22,1020,296680,1,1 ,22,1020,296688,1,1 ,22,1020,296696,1,1 ,22,1020,296704,1,1 ,17,923,8685316,24,0 ,17,923,6588164,32,0 ,44,15152,2393860,56,0 ,45,15153,4491012,16,0 ,22,1020,296712,1,1 ,22,1020,296720,1,1 ,22,1020,296728,1,1 ,22,1020,296736,1,1 ,20,24445,23365410,360,0 ,22,1020,296744,1,1 ,22,1020,296752,1,1 ,22,1020,296760,1,1 ,22,1020,296768,1,1 ,20,26188,28084034,720,0 ,44,15152,296772,16,0 ,22,1020,296776,1,1 ,22,1020,296784,1,1 ,22,1020,296792,1,1 ,22,1020,296800,1,1 ,20,25761,27035490,304,0 ,22,1020,296808,1,1 ,22,1020,296816,1,1 ,22,1020,296824,1,1 ,22,1020,296832,1,1 ,20,22589,19171202,60,0 ,20,21035,15501186,328,0 ,17,923,10258308,40,0 ,17,923,7112580,56,0 ,44,15152,2918276,24,0 ,44,15152,1869700,400,0 ,44,15152,3442564,32,0 ,45,15153,3966852,24,0 ,45,15153,4491140,16,0 ,22,1020,296840,1,1 ,22,1020,296848,1,1 ,22,1020,296856,1,1 ,22,1020,296864,1,1 ,22,1020,296872,1,1 ,22,1020,296880,1,1 ,22,1020,296888,1,1 ,22,1020,296896,1,1 ,20,23794,21792706,152,0 ,20,17040,4491202,12,0 ,17,923,8685508,32,0 ,17,923,7636932,32,0 ,44,15152,296900,16,0 ,45,15153,5015492,24,0 ,22,1020,296904,1,1 ,22,1020,296912,1,1 ,22,1020,296920,1,1 ,22,1020,296928,1,1 ,20,25017,24938466,96,0 ,22,1020,296936,1,1 ,22,1020,296944,1,1 ,22,1020,296952,1,1 ,22,1020,296960,1,1 ,17,923,9734148,48,0 ,17,923,6588420,24,0 ,45,15153,4491268,56,0 ,17,923,9209860,24,0 ,22,1020,296968,1,1 ,22,1020,296976,1,1 ,22,1020,296984,1,1 ,22,1020,296992,1,1 ,20,17041,4491298,12,0 ,22,1020,297000,1,1 ,22,1020,297008,1,1 ,22,1020,297016,1,1 ,22,1020,297024,1,1 ,17,923,8161348,48,0 ,44,15152,2918468,24,0 ,44,15152,297028,48,0 ,45,15153,3967044,16,0 ,22,1020,297032,1,1 ,22,1020,297040,1,1 ,22,1020,297048,1,1 ,22,1020,297056,1,1 ,20,22822,19695714,124,0 ,22,1020,297064,1,1 ,22,1020,297072,1,1 ,22,1020,297080,1,1 ,22,1020,297088,1,1 ,20,17042,4491394,96,0 ,20,24743,24414338,2632,0 ,45,15153,5015684,16,0 ,44,15152,3442820,32,0 ,22,1020,297096,1,1 ,22,1020,297104,1,1 ,22,1020,297112,1,1 ,22,1020,297120,1,1 ,20,19506,10258594,12,0 ,22,1020,297128,1,1 ,22,1020,297136,1,1 ,22,1020,297144,1,1 ,22,1020,297152,1,1 ,20,18756,8685762,996,0 ,17,923,10258628,40,0 ,17,923,7637188,32,0 ,17,923,6588612,32,0 ,44,15152,2394308,24,0 ,45,15153,3967172,16,0 ,17,923,8685764,24,0 ,17,923,9210052,72,0 ,22,1020,297160,1,1 ,22,1020,297168,1,1 ,22,1020,297176,1,1 ,22,1020,297184,1,1 ,20,21380,16025826,464,0 ,22,1020,297192,1,1 ,22,1020,297200,1,1 ,22,1020,297208,1,1 ,22,1020,297216,1,1 ,20,19507,10258690,76,0 ,20,15263,297218,160,0 ,45,15153,5015812,48,0 ,44,15152,2918660,24,0 ,22,1020,297224,1,1 ,22,1020,297232,1,1 ,22,1020,297240,1,1 ,22,1020,297248,1,1 ,20,20296,12880162,76,0 ,22,1020,297256,1,1 ,22,1020,297264,1,1 ,22,1020,297272,1,1 ,22,1020,297280,1,1 ,20,25453,25987394,76,0 ,45,15153,3967300,32,0 ,17,923,7113028,56,0 ,22,1020,297288,1,1 ,22,1020,297296,1,1 ,22,1020,297304,1,1 ,22,1020,297312,1,1 ,20,22590,19171682,52,0 ,20,22122,18123106,376,0 ,22,1020,297320,1,1 ,22,1020,297328,1,1 ,22,1020,297336,1,1 ,22,1020,297344,1,1 ,20,20569,13404546,296,0 ,17,923,9734532,24,0 ,44,15152,2394500,24,0 ,44,15152,3443076,80,0 ,17,923,8685956,32,0 ,22,1020,297352,1,1 ,22,1020,297360,1,1 ,22,1020,297368,1,1 ,22,1020,297376,1,1 ,22,1020,297384,1,1 ,22,1020,297392,1,1 ,22,1020,297400,1,1 ,22,1020,297408,1,1 ,17,923,8161732,48,0 ,17,923,7637444,24,0 ,17,923,6588868,40,0 ,44,15152,2918852,32,0 ,44,15152,297412,16,0 ,45,15153,4491716,24,0 ,22,1020,297416,1,1 ,22,1020,297424,1,1 ,22,1020,297432,1,1 ,22,1020,297440,1,1 ,22,1020,297448,1,1 ,22,1020,297456,1,1 ,22,1020,297464,1,1 ,22,1020,297472,1,1 ,20,23127,20220418,224,0 ,17,923,10258948,32,0 ,22,1020,297480,1,1 ,22,1020,297488,1,1 ,22,1020,297496,1,1 ,22,1020,297504,1,1 ,22,1020,297512,1,1 ,22,1020,297520,1,1 ,22,1020,297528,1,1 ,22,1020,297536,1,1 ,17,923,9734724,56,0 ,44,15152,2394692,16,0 ,44,15152,297540,64,0 ,45,15153,3967556,24,0 ,22,1020,297544,1,1 ,22,1020,297552,1,1 ,22,1020,297560,1,1 ,22,1020,297568,1,1 ,20,16779,3967586,464,0 ,22,1020,297576,1,1 ,22,1020,297584,1,1 ,22,1020,297592,1,1 ,22,1020,297600,1,1 ,17,923,8686212,32,0 ,17,923,7637636,24,0 ,45,15153,4491908,56,0 ,45,15153,5016196,24,0 ,22,1020,297608,1,1 ,22,1020,297616,1,1 ,22,1020,297624,1,1 ,22,1020,297632,1,1 ,20,17603,6064802,192,0 ,22,1020,297640,1,1 ,22,1020,297648,1,1 ,22,1020,297656,1,1 ,22,1020,297664,1,1 ,44,15152,2394820,16,0 ,44,15152,2919108,24,0 ,22,1020,297672,1,1 ,22,1020,297680,1,1 ,22,1020,297688,1,1 ,22,1020,297696,1,1 ,20,25018,24939234,176,0 ,22,1020,297704,1,1 ,22,1020,297712,1,1 ,22,1020,297720,1,1 ,22,1020,297728,1,1 ,20,22591,19172098,612,0 ,20,26453,29133570,920,0 ,17,923,10259204,24,0 ,17,923,7113476,48,0 ,17,923,6589188,40,0 ,45,15153,3967748,24,0 ,17,923,9210628,96,0 ,22,1020,297736,1,1 ,22,1020,297744,1,1 ,22,1020,297752,1,1 ,22,1020,297760,1,1 ,22,1020,297768,1,1 ,22,1020,297776,1,1 ,22,1020,297784,1,1 ,22,1020,297792,1,1 ,17,923,8162116,40,0 ,17,923,7637828,32,0 ,44,15152,2394948,40,0 ,45,15153,5016388,16,0 ,22,1020,297800,1,1 ,22,1020,297808,1,1 ,22,1020,297816,1,1 ,22,1020,297824,1,1 ,20,19508,10259298,192,0 ,22,1020,297832,1,1 ,22,1020,297840,1,1 ,22,1020,297848,1,1 ,22,1020,297856,1,1 ,20,20297,12880770,12,0 ,20,17043,4492162,12,0 ,17,923,8686468,24,0 ,44,15152,2919300,32,0 ,22,1020,297864,1,1 ,22,1020,297872,1,1 ,22,1020,297880,1,1 ,22,1020,297888,1,1 ,20,25454,25988002,80,0 ,22,1020,297896,1,1 ,22,1020,297904,1,1 ,22,1020,297912,1,1 ,22,1020,297920,1,1 ,20,19012,9210818,404,0 ,17,923,10259396,32,0 ,45,15153,3967940,32,0 ,45,15153,5016516,24,0 ,22,1020,297928,1,1 ,22,1020,297936,1,1 ,22,1020,297944,1,1 ,22,1020,297952,1,1 ,20,20298,12880866,400,0 ,20,17044,4492258,124,0 ,20,17806,6589410,12,0 ,22,1020,297960,1,1 ,22,1020,297968,1,1 ,22,1020,297976,1,1 ,22,1020,297984,1,1 ,17,923,9735172,96,0 ,44,15152,3443716,24,0 ,22,1020,297992,1,1 ,22,1020,298000,1,1 ,22,1020,298008,1,1 ,22,1020,298016,1,1 ,22,1020,298024,1,1 ,22,1020,298032,1,1 ,22,1020,298040,1,1 ,22,1020,298048,1,1 ,20,22823,19696706,272,0 ,20,17807,6589506,108,0 ,17,923,8686660,64,0 ,17,923,7638084,32,0 ,17,923,6589508,48,0 ,44,15152,298052,80,0 ,45,15153,4492356,64,0 ,22,1020,298056,1,1 ,22,1020,298064,1,1 ,22,1020,298072,1,1 ,22,1020,298080,1,1 ,22,1020,298088,1,1 ,22,1020,298096,1,1 ,22,1020,298104,1,1 ,22,1020,298112,1,1 ,20,23795,21793922,156,0 ,17,923,8162436,48,0 ,17,923,7113860,24,0 ,44,15152,2919556,88,0 ,44,15152,2395268,48,0 ,45,15153,5016708,56,0 ,22,1020,298120,1,1 ,22,1020,298128,1,1 ,22,1020,298136,1,1 ,22,1020,298144,1,1 ,22,1020,298152,1,1 ,22,1020,298160,1,1 ,22,1020,298168,1,1 ,22,1020,298176,1,1 ,17,923,10259652,40,0 ,44,15152,3443908,32,0 ,45,15153,3968196,32,0 ,45,15153,5541060,144,0 ,22,1020,298184,1,1 ,22,1020,298192,1,1 ,22,1020,298200,1,1 ,22,1020,298208,1,1 ,22,1020,298216,1,1 ,22,1020,298224,1,1 ,22,1020,298232,1,1 ,22,1020,298240,1,1 ,22,1020,298248,1,1 ,22,1020,298256,1,1 ,22,1020,298264,1,1 ,22,1020,298272,1,1 ,20,24241,22842658,380,0 ,22,1020,298280,1,1 ,22,1020,298288,1,1 ,22,1020,298296,1,1 ,22,1020,298304,1,1 ,17,923,7114052,64,0 ,17,923,7638340,32,0 ,22,1020,298312,1,1 ,22,1020,298320,1,1 ,22,1020,298328,1,1 ,22,1020,298336,1,1 ,22,1020,298344,1,1 ,22,1020,298352,1,1 ,22,1020,298360,1,1 ,22,1020,298368,1,1 ,22,1020,298376,1,1 ,22,1020,298384,1,1 ,22,1020,298392,1,1 ,22,1020,298400,1,1 ,20,22404,18648482,52,0 ,22,1020,298408,1,1 ,22,1020,298416,1,1 ,22,1020,298424,1,1 ,22,1020,298432,1,1 ,45,15153,3968452,24,0 ,17,923,6589892,32,0 ,44,15152,3444164,32,0 ,22,1020,298440,1,1 ,22,1020,298448,1,1 ,22,1020,298456,1,1 ,22,1020,298464,1,1 ,22,1020,298472,1,1 ,22,1020,298480,1,1 ,22,1020,298488,1,1 ,22,1020,298496,1,1 ,20,24584,23891458,304,0 ,20,15264,298498,940,0 ,17,923,10259972,32,0 ,44,15152,2395652,40,0 ,17,923,8162820,48,0 ,17,923,9211396,48,0 ,22,1020,298504,1,1 ,22,1020,298512,1,1 ,22,1020,298520,1,1 ,22,1020,298528,1,1 ,20,25455,25988642,104,0 ,22,1020,298536,1,1 ,22,1020,298544,1,1 ,22,1020,298552,1,1 ,22,1020,298560,1,1 ,17,923,8687172,32,0 ,17,923,7638596,32,0 ,44,15152,1347140,80,0 ,45,15153,4492868,24,0 ,45,15153,5017156,16,0 ,22,1020,298568,1,1 ,22,1020,298576,1,1 ,22,1020,298584,1,1 ,22,1020,298592,1,1 ,22,1020,298600,1,1 ,22,1020,298608,1,1 ,22,1020,298616,1,1 ,22,1020,298624,1,1 ,45,15153,3968644,16,0 ,22,1020,298632,1,1 ,22,1020,298640,1,1 ,22,1020,298648,1,1 ,22,1020,298656,1,1 ,20,18299,7638690,2944,0 ,22,1020,298664,1,1 ,22,1020,298672,1,1 ,22,1020,298680,1,1 ,22,1020,298688,1,1 ,45,15153,5017284,16,0 ,17,923,6590148,40,0 ,44,15152,298692,24,0 ,44,15152,3444420,16,0 ,22,1020,298696,1,1 ,22,1020,298704,1,1 ,22,1020,298712,1,1 ,22,1020,298720,1,1 ,22,1020,298728,1,1 ,22,1020,298736,1,1 ,22,1020,298744,1,1 ,22,1020,298752,1,1 ,17,923,10260228,40,0 ,45,15153,3968772,32,0 ,45,15153,4493060,24,0 ,17,923,9735940,24,0 ,22,1020,298760,1,1 ,22,1020,298768,1,1 ,22,1020,298776,1,1 ,22,1020,298784,1,1 ,22,1020,298792,1,1 ,22,1020,298800,1,1 ,22,1020,298808,1,1 ,22,1020,298816,1,1 ,20,22405,18648898,136,0 ,17,923,8687428,64,0 ,17,923,7638852,32,0 ,17,923,7114564,32,0 ,44,15152,2920260,24,0 ,44,15152,2395972,56,0 ,44,15152,3444548,24,0 ,45,15153,5017412,32,0 ,22,1020,298824,1,1 ,22,1020,298832,1,1 ,22,1020,298840,1,1 ,22,1020,298848,1,1 ,22,1020,298856,1,1 ,22,1020,298864,1,1 ,22,1020,298872,1,1 ,22,1020,298880,1,1 ,17,923,9211780,88,0 ,44,15152,298884,16,0 ,17,923,8163204,40,0 ,22,1020,298888,1,1 ,22,1020,298896,1,1 ,22,1020,298904,1,1 ,22,1020,298912,1,1 ,20,17808,6590370,140,0 ,22,1020,298920,1,1 ,22,1020,298928,1,1 ,22,1020,298936,1,1 ,22,1020,298944,1,1 ,20,17045,4493250,124,0 ,17,923,9736132,56,0 ,45,15153,4493252,24,0 ,22,1020,298952,1,1 ,22,1020,298960,1,1 ,22,1020,298968,1,1 ,22,1020,298976,1,1 ,22,1020,298984,1,1 ,22,1020,298992,1,1 ,22,1020,299000,1,1 ,22,1020,299008,1,1 ,45,15153,3969028,40,0 ,17,923,6590468,32,0 ,44,15152,2920452,24,0 ,44,15152,299012,24,0 ,44,15152,3444740,24,0 ,22,1020,299016,1,1 ,22,1020,299024,1,1 ,22,1020,299032,1,1 ,22,1020,299040,1,1 ,22,1020,299048,1,1 ,22,1020,299056,1,1 ,22,1020,299064,1,1 ,22,1020,299072,1,1 ,20,25587,26513474,360,0 ,17,923,10260548,32,0 ,17,923,7639108,32,0 ,17,923,7114820,32,0 ,45,15153,5017668,32,0 ,22,1020,299080,1,1 ,22,1020,299088,1,1 ,22,1020,299096,1,1 ,22,1020,299104,1,1 ,20,21597,16552034,108,0 ,20,25019,24940642,148,0 ,22,1020,299112,1,1 ,22,1020,299120,1,1 ,22,1020,299128,1,1 ,22,1020,299136,1,1 ,45,15153,4493444,24,0 ,22,1020,299144,1,1 ,22,1020,299152,1,1 ,22,1020,299160,1,1 ,22,1020,299168,1,1 ,20,17604,6066338,624,0 ,22,1020,299176,1,1 ,22,1020,299184,1,1 ,22,1020,299192,1,1 ,22,1020,299200,1,1 ,17,923,8163524,48,0 ,44,15152,2920644,24,0 ,44,15152,1347780,72,0 ,44,15152,299204,16,0 ,44,15152,3444932,24,0 ,22,1020,299208,1,1 ,22,1020,299216,1,1 ,22,1020,299224,1,1 ,22,1020,299232,1,1 ,20,25762,27037922,492,0 ,22,1020,299240,1,1 ,22,1020,299248,1,1 ,22,1020,299256,1,1 ,22,1020,299264,1,1 ,20,23128,20222210,52,0 ,44,15152,2396420,48,0 ,17,923,6590724,24,0 ,22,1020,299272,1,1 ,22,1020,299280,1,1 ,22,1020,299288,1,1 ,22,1020,299296,1,1 ,22,1020,299304,1,1 ,22,1020,299312,1,1 ,22,1020,299320,1,1 ,22,1020,299328,1,1 ,17,923,10260804,48,0 ,17,923,7639364,40,0 ,17,923,7115076,32,0 ,44,15152,299332,48,0 ,45,15153,3969348,40,0 ,45,15153,4493636,24,0 ,45,15153,5017924,48,0 ,45,15153,5542212,64,0 ,17,923,8687940,56,0 ,22,1020,299336,1,1 ,22,1020,299344,1,1 ,22,1020,299352,1,1 ,22,1020,299360,1,1 ,20,23796,21795170,76,0 ,20,25456,25989474,252,0 ,20,19509,10260834,192,0 ,22,1020,299368,1,1 ,22,1020,299376,1,1 ,22,1020,299384,1,1 ,22,1020,299392,1,1 ,17,923,9736580,56,0 ,44,15152,2920836,24,0 ,44,15152,3445124,24,0 ,22,1020,299400,1,1 ,22,1020,299408,1,1 ,22,1020,299416,1,1 ,22,1020,299424,1,1 ,22,1020,299432,1,1 ,22,1020,299440,1,1 ,22,1020,299448,1,1 ,22,1020,299456,1,1 ,20,21036,15503810,364,0 ,17,923,6590916,32,0 ,22,1020,299464,1,1 ,22,1020,299472,1,1 ,22,1020,299480,1,1 ,22,1020,299488,1,1 ,22,1020,299496,1,1 ,22,1020,299504,1,1 ,22,1020,299512,1,1 ,22,1020,299520,1,1 ,45,15153,4493828,24,0 ,22,1020,299528,1,1 ,22,1020,299536,1,1 ,22,1020,299544,1,1 ,22,1020,299552,1,1 ,22,1020,299560,1,1 ,22,1020,299568,1,1 ,22,1020,299576,1,1 ,22,1020,299584,1,1 ,17,923,9212484,40,0 ,17,923,7115332,24,0 ,44,15152,2921028,232,0 ,44,15152,3445316,24,0 ,17,923,8163908,40,0 ,22,1020,299592,1,1 ,22,1020,299600,1,1 ,22,1020,299608,1,1 ,22,1020,299616,1,1 ,20,24446,23368290,1748,0 ,22,1020,299624,1,1 ,22,1020,299632,1,1 ,22,1020,299640,1,1 ,22,1020,299648,1,1 ,45,15153,3969668,32,0 ,17,923,7639684,24,0 ,44,15152,2396804,56,0 ,22,1020,299656,1,1 ,22,1020,299664,1,1 ,22,1020,299672,1,1 ,22,1020,299680,1,1 ,20,23129,20222626,396,0 ,22,1020,299688,1,1 ,22,1020,299696,1,1 ,22,1020,299704,1,1 ,22,1020,299712,1,1 ,20,20570,13406914,316,0 ,17,923,10261188,48,0 ,17,923,6591172,32,0 ,44,15152,299716,16,0 ,44,15152,824004,360,0 ,45,15153,4494020,16,0 ,45,15153,5018308,32,0 ,22,1020,299720,1,1 ,22,1020,299728,1,1 ,22,1020,299736,1,1 ,22,1020,299744,1,1 ,22,1020,299752,1,1 ,22,1020,299760,1,1 ,22,1020,299768,1,1 ,22,1020,299776,1,1 ,17,923,8688388,64,0 ,17,923,7115524,24,0 ,44,15152,1348356,32,0 ,44,15152,3445508,32,0 ,22,1020,299784,1,1 ,22,1020,299792,1,1 ,22,1020,299800,1,1 ,22,1020,299808,1,1 ,22,1020,299816,1,1 ,22,1020,299824,1,1 ,22,1020,299832,1,1 ,22,1020,299840,1,1 ,17,923,9737028,96,0 ,17,923,7639876,64,0 ,44,15152,299844,176,0 ,45,15153,4494148,160,0 ,45,15153,5542724,136,0 ,22,1020,299848,1,1 ,22,1020,299856,1,1 ,22,1020,299864,1,1 ,22,1020,299872,1,1 ,20,20168,11834210,1412,0 ,22,1020,299880,1,1 ,22,1020,299888,1,1 ,22,1020,299896,1,1 ,22,1020,299904,1,1 ,20,22406,18649986,532,0 ,17,923,9212804,32,0 ,45,15153,3969924,24,0 ,17,923,8164228,32,0 ,22,1020,299912,1,1 ,22,1020,299920,1,1 ,22,1020,299928,1,1 ,22,1020,299936,1,1 ,20,17046,4494242,124,0 ,22,1020,299944,1,1 ,22,1020,299952,1,1 ,22,1020,299960,1,1 ,22,1020,299968,1,1 ,20,23797,21795778,60,0 ,20,25218,25465794,84,0 ,20,21598,16552898,80,0 ,45,15153,5018564,16,0 ,17,923,7115716,32,0 ,17,923,6591428,24,0 ,22,1020,299976,1,1 ,22,1020,299984,1,1 ,22,1020,299992,1,1 ,22,1020,300000,1,1 ,22,1020,300008,1,1 ,22,1020,300016,1,1 ,22,1020,300024,1,1 ,22,1020,300032,1,1 ,20,17809,6591490,196,0 ,44,15152,3445764,32,0 ,44,15152,1872900,24,0 ,44,15152,1348612,32,0 ,22,1020,300040,1,1 ,22,1020,300048,1,1 ,22,1020,300056,1,1 ,22,1020,300064,1,1 ,22,1020,300072,1,1 ,22,1020,300080,1,1 ,22,1020,300088,1,1 ,22,1020,300096,1,1 ,17,923,10261572,48,0 ,44,15152,2397252,56,0 ,45,15153,3970116,48,0 ,45,15153,5018692,24,0 ,22,1020,300104,1,1 ,22,1020,300112,1,1 ,22,1020,300120,1,1 ,22,1020,300128,1,1 ,22,1020,300136,2,1 ,22,1020,300144,1,1 ,22,1020,300152,1,1 ,22,1020,300160,1,1 ,17,923,9213060,32,0 ,17,923,6591620,32,0 ,17,923,8164484,24,0 ,22,1020,300168,1,1 ,22,1020,300176,1,1 ,22,1020,300184,1,1 ,22,1020,300192,1,1 ,22,1020,300200,1,1 ,22,1020,300208,1,1 ,22,1020,300216,1,1 ,22,1020,300224,1,1 ,20,22824,19698882,700,0 ,44,15152,1873092,408,0 ,17,923,7115972,32,0 ,22,1020,300232,1,1 ,22,1020,300240,1,1 ,22,1020,300248,1,1 ,22,1020,300256,1,1 ,22,1020,300264,1,1 ,22,1020,300272,1,1 ,22,1020,300280,1,1 ,22,1020,300288,1,1 ,20,23412,20747522,848,0 ,20,25020,24941826,64,0 ,17,923,8688900,72,0 ,44,15152,1348868,24,0 ,44,15152,3446020,24,0 ,45,15153,5018884,56,0 ,22,1020,300296,1,1 ,22,1020,300304,1,1 ,22,1020,300312,1,1 ,22,1020,300320,1,1 ,20,22123,18126114,408,0 ,22,1020,300328,1,1 ,22,1020,300336,1,1 ,22,1020,300344,1,1 ,22,1020,300352,1,1 ,17,923,8164676,56,0 ,17,923,7640388,32,0 ,22,1020,300360,1,1 ,22,1020,300368,1,1 ,22,1020,300376,1,1 ,22,1020,300384,1,1 ,22,1020,300392,1,1 ,22,1020,300400,1,1 ,22,1020,300408,1,1 ,22,1020,300416,1,1 ,17,923,9213316,32,0 ,17,923,6591876,24,0 ,22,1020,300424,1,1 ,22,1020,300432,1,1 ,22,1020,300440,1,1 ,22,1020,300448,1,1 ,20,23798,21796258,488,0 ,20,25992,27563426,572,0 ,22,1020,300456,1,1 ,22,1020,300464,2,1 ,22,1020,300472,1,1 ,22,1020,300480,1,1 ,17,923,10261956,48,0 ,17,923,7116228,48,0 ,44,15152,1349060,56,0 ,44,15152,3446212,24,0 ,45,15153,3970500,24,0 ,22,1020,300488,1,1 ,22,1020,300496,1,1 ,22,1020,300504,1,1 ,22,1020,300512,1,1 ,22,1020,300520,1,1 ,22,1020,300528,1,1 ,22,1020,300536,1,1 ,22,1020,300544,1,1 ,44,15152,2397700,48,0 ,22,1020,300552,1,1 ,22,1020,300560,1,1 ,22,1020,300568,1,1 ,22,1020,300576,1,1 ,22,1020,300584,1,1 ,22,1020,300592,1,1 ,22,1020,300600,1,1 ,22,1020,300608,1,1 ,20,21599,16553538,12,0 ,17,923,9737796,56,0 ,17,923,7640644,40,0 ,17,923,6592068,32,0 ,22,1020,300616,1,1 ,22,1020,300624,1,1 ,22,1020,300632,1,1 ,22,1020,300640,1,1 ,20,25219,25466466,24,0 ,22,1020,300648,1,1 ,22,1020,300656,1,1 ,22,1020,300664,1,1 ,22,1020,300672,1,1 ,20,24021,22320770,304,0 ,17,923,9213572,32,0 ,44,15152,3446404,32,0 ,45,15153,3970692,16,0 ,22,1020,300680,1,1 ,22,1020,300688,1,1 ,22,1020,300696,1,1 ,22,1020,300704,1,1 ,20,21600,16553634,116,0 ,22,1020,300712,1,1 ,22,1020,300720,1,1 ,22,1020,300728,1,1 ,22,1020,300736,1,1 ,45,15153,5019332,24,0 ,22,1020,300744,1,1 ,22,1020,300752,1,1 ,22,1020,300760,1,1 ,22,1020,300768,1,1 ,22,1020,300776,1,1 ,22,1020,300784,1,1 ,22,1020,300792,1,1 ,22,1020,300800,1,1 ,20,25021,24942338,304,0 ,17,923,8165124,48,0 ,45,15153,3970820,16,0 ,22,1020,300808,1,1 ,22,1020,300816,1,1 ,22,1020,300824,1,1 ,22,1020,300832,1,1 ,20,25220,25466658,24,0 ,22,1020,300840,1,1 ,22,1020,300848,1,1 ,22,1020,300856,1,1 ,22,1020,300864,1,1 ,17,923,10262340,16,0 ,17,923,7116612,24,0 ,17,923,6592324,24,0 ,17,923,8689476,64,0 ,22,1020,300872,1,1 ,22,1020,300880,1,1 ,22,1020,300888,1,1 ,22,1020,300896,1,1 ,20,21381,16029538,492,0 ,20,19510,10262370,76,0 ,22,1020,300904,1,1 ,22,1020,300912,1,1 ,22,1020,300920,1,1 ,22,1020,300928,1,1 ,20,24585,23893890,260,0 ,20,17047,4495234,96,0 ,17,923,9213828,32,0 ,17,923,7640964,32,0 ,44,15152,2398084,56,0 ,44,15152,1349508,80,0 ,44,15152,3446660,24,0 ,45,15153,3970948,16,0 ,45,15153,5019524,32,0 ,45,15153,5543812,32,0 ,22,1020,300936,1,1 ,22,1020,300944,1,1 ,22,1020,300952,1,1 ,22,1020,300960,1,1 ,22,1020,300968,1,1 ,22,1020,300976,2,1 ,22,1020,300984,2,1 ,22,1020,300992,1,1 ,17,923,10262468,24,0 ,22,1020,301000,1,1 ,22,1020,301008,1,1 ,22,1020,301016,1,1 ,22,1020,301024,1,1 ,20,25221,25466850,204,0 ,22,1020,301032,1,1 ,22,1020,301040,1,1 ,22,1020,301048,1,1 ,22,1020,301056,1,1 ,17,923,9738244,56,0 ,17,923,7116804,32,0 ,17,923,6592516,48,0 ,45,15153,3971076,32,0 ,22,1020,301064,1,1 ,22,1020,301072,1,1 ,22,1020,301080,1,1 ,22,1020,301088,1,1 ,22,1020,301096,1,1 ,22,1020,301104,1,1 ,22,1020,301112,1,1 ,22,1020,301120,1,1 ,45,15153,4495428,32,0 ,44,15152,3446852,24,0 ,22,1020,301128,1,1 ,22,1020,301136,1,1 ,22,1020,301144,1,1 ,22,1020,301152,1,1 ,20,20299,12884066,48,0 ,20,19013,9214050,48,0 ,22,1020,301160,1,1 ,22,1020,301168,1,1 ,22,1020,301176,1,1 ,22,1020,301184,1,1 ,17,923,10262660,56,0 ,17,923,7641220,24,0 ,45,15153,5019780,24,0 ,45,15153,5544068,24,0 ,17,923,8165508,48,0 ,17,923,9214084,32,0 ,22,1020,301192,1,1 ,22,1020,301200,1,1 ,22,1020,301208,1,1 ,22,1020,301216,1,1 ,22,1020,301224,1,1 ,22,1020,301232,1,1 ,22,1020,301240,1,1 ,22,1020,301248,1,1 ,44,15152,301252,16,0 ,22,1020,301256,1,1 ,22,1020,301264,1,1 ,22,1020,301272,1,1 ,22,1020,301280,1,1 ,20,16780,3971298,96,0 ,22,1020,301288,1,1 ,22,1020,301296,1,1 ,22,1020,301304,1,1 ,22,1020,301312,1,1 ,20,24242,22845698,596,0 ,45,15153,3971332,16,0 ,17,923,7117060,48,0 ,44,15152,3447044,56,0 ,22,1020,301320,1,1 ,22,1020,301328,1,1 ,22,1020,301336,1,1 ,22,1020,301344,1,1 ,22,1020,301352,1,1 ,22,1020,301360,1,1 ,22,1020,301368,1,1 ,22,1020,301376,1,1 ,20,25457,25991490,1380,0 ,17,923,8689988,56,0 ,17,923,7641412,32,0 ,44,15152,2398532,56,0 ,44,15152,301380,16,0 ,45,15153,4495684,16,0 ,45,15153,5019972,24,0 ,45,15153,5544260,40,0 ,22,1020,301384,1,1 ,22,1020,301392,1,1 ,22,1020,301400,1,1 ,22,1020,301408,1,1 ,22,1020,301416,1,1 ,22,1020,301424,1,1 ,22,1020,301432,1,1 ,22,1020,301440,1,1 ,17,923,9214340,56,0 ,17,923,6592900,24,0 ,44,15152,2922884,72,0 ,45,15153,3971460,24,0 ,22,1020,301448,1,1 ,22,1020,301456,1,1 ,22,1020,301464,1,1 ,22,1020,301472,1,1 ,22,1020,301480,1,1 ,22,1020,301488,1,1 ,22,1020,301496,1,1 ,22,1020,301504,1,1 ,20,19511,10262978,388,0 ,17,923,9738692,56,0 ,44,15152,301508,16,0 ,45,15153,4495812,40,0 ,22,1020,301512,1,1 ,22,1020,301520,1,1 ,22,1020,301528,1,1 ,22,1020,301536,1,1 ,20,20300,12884450,104,0 ,20,19014,9214434,128,0 ,22,1020,301544,1,1 ,22,1020,301552,1,1 ,22,1020,301560,1,1 ,22,1020,301568,1,1 ,20,17404,5544450,12,0 ,17,923,8165892,40,0 ,44,15152,1350148,72,0 ,45,15153,5020164,16,0 ,22,1020,301576,1,1 ,22,1020,301584,1,1 ,22,1020,301592,1,1 ,22,1020,301600,1,1 ,20,17810,6593058,116,0 ,22,1020,301608,1,1 ,22,1020,301616,1,1 ,22,1020,301624,1,1 ,22,1020,301632,1,1 ,20,21601,16554562,104,0 ,17,923,10263108,48,0 ,17,923,7641668,40,0 ,17,923,6593092,16,0 ,44,15152,301636,24,0 ,45,15153,3971652,24,0 ,22,1020,301640,1,1 ,22,1020,301648,1,1 ,22,1020,301656,1,1 ,22,1020,301664,1,1 ,20,17405,5544546,12,0 ,22,1020,301672,1,1 ,22,1020,301680,1,1 ,22,1020,301688,1,1 ,22,1020,301696,1,1 ,20,17048,4496002,12,0 ,45,15153,5544580,48,0 ,17,923,7117444,48,0 ,45,15153,5020292,32,0 ,22,1020,301704,1,1 ,22,1020,301712,1,1 ,22,1020,301720,1,1 ,22,1020,301728,1,1 ,20,23623,21273250,1900,0 ,22,1020,301736,1,1 ,22,1020,301744,1,1 ,22,1020,301752,1,1 ,22,1020,301760,1,1 ,20,17406,5544642,116,0 ,44,15152,3447492,24,0 ,17,923,6593220,16,0 ,22,1020,301768,1,1 ,22,1020,301776,1,1 ,22,1020,301784,1,1 ,22,1020,301792,1,1 ,20,17049,4496098,344,0 ,22,1020,301800,1,1 ,22,1020,301808,1,1 ,22,1020,301816,1,1 ,22,1020,301824,1,1 ,17,923,8690436,80,0 ,44,15152,2398980,48,0 ,44,15152,301828,16,0 ,45,15153,3971844,16,0 ,45,15153,4496132,16,0 ,22,1020,301832,1,1 ,22,1020,301840,1,1 ,22,1020,301848,1,1 ,22,1020,301856,1,1 ,22,1020,301864,1,1 ,22,1020,301872,1,1 ,22,1020,301880,1,1 ,22,1020,301888,1,1 ,17,923,9214788,24,0 ,17,923,6593348,16,0 ,17,923,8166212,48,0 ,22,1020,301896,1,1 ,22,1020,301904,1,1 ,22,1020,301912,1,1 ,22,1020,301920,1,1 ,22,1020,301928,1,1 ,22,1020,301936,1,1 ,22,1020,301944,1,1 ,22,1020,301952,1,1 ,20,25588,26516354,444,0 ,17,923,9739140,24,0 ,17,923,7641988,40,0 ,44,15152,301956,24,0 ,44,15152,3447684,48,0 ,45,15153,3971972,24,0 ,45,15153,4496260,48,0 ,45,15153,5020548,16,0 ,22,1020,301960,1,1 ,22,1020,301968,1,1 ,22,1020,301976,1,1 ,22,1020,301984,1,1 ,22,1020,301992,1,1 ,22,1020,302000,1,1 ,22,1020,302008,1,1 ,22,1020,302016,1,1 ,17,923,10263492,48,0 ,17,923,6593476,16,0 ,44,15152,2923460,24,0 ,22,1020,302024,1,1 ,22,1020,302032,1,1 ,22,1020,302040,1,1 ,22,1020,302048,1,1 ,20,16781,3972066,64,0 ,22,1020,302056,1,1 ,22,1020,302064,1,1 ,22,1020,302072,1,1 ,22,1020,302080,1,1 ,17,923,9214980,72,0 ,17,923,7117828,32,0 ,45,15153,5020676,16,0 ,45,15153,5544964,64,0 ,22,1020,302088,1,1 ,22,1020,302096,2,1 ,22,1020,302104,1,1 ,22,1020,302112,1,1 ,22,1020,302120,1,1 ,22,1020,302128,1,1 ,22,1020,302136,1,1 ,22,1020,302144,1,1 ,17,923,9739332,56,0 ,17,923,6593604,16,0 ,44,15152,1350724,136,0 ,44,15152,302148,24,0 ,45,15153,3972164,16,0 ,22,1020,302152,1,1 ,22,1020,302160,2,1 ,22,1020,302168,1,1 ,22,1020,302176,1,1 ,22,1020,302184,1,1 ,22,1020,302192,1,1 ,22,1020,302200,1,1 ,22,1020,302208,1,1 ,45,15153,5020804,24,0 ,44,15152,2923652,40,0 ,44,15152,2399364,56,0 ,22,1020,302216,1,1 ,22,1020,302224,1,1 ,22,1020,302232,1,1 ,22,1020,302240,1,1 ,20,20571,13409442,80,0 ,22,1020,302248,1,1 ,22,1020,302256,1,1 ,22,1020,302264,1,1 ,22,1020,302272,1,1 ,17,923,8166596,24,0 ,17,923,7642308,32,0 ,17,923,6593732,24,0 ,45,15153,3972292,32,0 ,22,1020,302280,1,1 ,22,1020,302288,1,1 ,22,1020,302296,1,1 ,22,1020,302304,1,1 ,22,1020,302312,1,1 ,22,1020,302320,1,1 ,22,1020,302328,1,1 ,22,1020,302336,1,1 ,45,15153,4496644,48,0 ,17,923,7118084,24,0 ,44,15152,302340,24,0 ,44,15152,3448068,160,0 ,22,1020,302344,1,1 ,22,1020,302352,1,1 ,22,1020,302360,1,1 ,22,1020,302368,1,1 ,20,21037,15506722,328,0 ,20,20301,12885282,84,0 ,22,1020,302376,1,1 ,22,1020,302384,1,1 ,22,1020,302392,1,1 ,22,1020,302400,1,1 ,17,923,10263876,48,0 ,45,15153,5020996,24,0 ,22,1020,302408,1,1 ,22,1020,302416,1,1 ,22,1020,302424,1,1 ,22,1020,302432,1,1 ,22,1020,302440,1,1 ,22,1020,302448,1,1 ,22,1020,302456,1,1 ,22,1020,302464,1,1 ,20,21602,16555394,124,0 ,17,923,8691076,72,0 ,17,923,6593924,24,0 ,17,923,8166788,32,0 ,22,1020,302472,1,1 ,22,1020,302480,1,1 ,22,1020,302488,1,1 ,22,1020,302496,1,1 ,22,1020,302504,1,1 ,22,1020,302512,1,1 ,22,1020,302520,1,1 ,22,1020,302528,1,1 ,20,17811,6593986,184,0 ,20,26189,28089794,2440,0 ,45,15153,3972548,16,0 ,17,923,7642564,40,0 ,17,923,7118276,48,0 ,44,15152,2923972,32,0 ,44,15152,302532,72,0 ,22,1020,302536,1,1 ,22,1020,302544,1,1 ,22,1020,302552,1,1 ,22,1020,302560,1,1 ,20,19015,9215458,48,0 ,20,16782,3972578,176,0 ,22,1020,302568,1,1 ,22,1020,302576,1,1 ,22,1020,302584,1,1 ,22,1020,302592,1,1 ,17,923,9739780,56,0 ,44,15152,826884,24,0 ,45,15153,5021188,32,0 ,45,15153,5545476,16,0 ,22,1020,302600,1,1 ,22,1020,302608,1,1 ,22,1020,302616,1,1 ,22,1020,302624,1,1 ,20,22592,19176994,96,0 ,22,1020,302632,1,1 ,22,1020,302640,1,1 ,22,1020,302648,1,1 ,22,1020,302656,1,1 ,20,25222,25468482,208,0 ,17,923,9215556,48,0 ,17,923,6594116,32,0 ,44,15152,2399812,56,0 ,45,15153,3972676,16,0 ,22,1020,302664,1,1 ,22,1020,302672,1,1 ,22,1020,302680,1,1 ,22,1020,302688,1,1 ,20,17407,5545570,12,0 ,20,15869,1875554,12,0 ,22,1020,302696,1,1 ,22,1020,302704,1,1 ,22,1020,302712,1,1 ,22,1020,302720,1,1 ,17,923,8167044,24,0 ,45,15153,4497028,16,0 ,45,15153,5545604,16,0 ,22,1020,302728,1,1 ,22,1020,302736,1,1 ,22,1020,302744,1,1 ,22,1020,302752,1,1 ,22,1020,302760,1,1 ,22,1020,302768,1,1 ,22,1020,302776,1,1 ,22,1020,302784,1,1 ,20,17408,5545666,12,0 ,20,15870,1875650,52,0 ,17,923,10264260,32,0 ,44,15152,2924228,32,0 ,44,15152,827076,56,0 ,45,15153,3972804,16,0 ,22,1020,302792,1,1 ,22,1020,302800,1,1 ,22,1020,302808,1,1 ,22,1020,302816,1,1 ,22,1020,302824,1,1 ,22,1020,302832,1,1 ,22,1020,302840,1,1 ,22,1020,302848,1,1 ,20,23130,20225794,80,0 ,45,15153,5545732,40,0 ,17,923,7642884,32,0 ,45,15153,4497156,16,0 ,45,15153,5021444,24,0 ,22,1020,302856,1,1 ,22,1020,302864,1,1 ,22,1020,302872,1,1 ,22,1020,302880,1,1 ,20,20572,13410082,1836,0 ,20,17409,5545762,52,0 ,22,1020,302888,1,1 ,22,1020,302896,1,1 ,22,1020,302904,1,1 ,22,1020,302912,1,1 ,17,923,8167236,64,0 ,17,923,7118660,32,0 ,17,923,6594372,24,0 ,45,15153,3972932,136,0 ,22,1020,302920,1,1 ,22,1020,302928,1,1 ,22,1020,302936,1,1 ,22,1020,302944,1,1 ,20,19016,9215842,64,0 ,20,15700,1351522,512,0 ,22,1020,302952,1,1 ,22,1020,302960,1,1 ,22,1020,302968,1,1 ,22,1020,302976,1,1 ,45,15153,4497284,24,0 ,22,1020,302984,1,1 ,22,1020,302992,1,1 ,22,1020,303000,1,1 ,22,1020,303008,1,1 ,20,24586,23895970,12,0 ,22,1020,303016,1,1 ,22,1020,303024,1,1 ,22,1020,303032,1,1 ,22,1020,303040,1,1 ,20,20302,12885954,440,0 ,17,923,10264516,160,0 ,44,15152,2924484,448,0 ,45,15153,5021636,24,0 ,17,923,8691652,56,0 ,17,923,9215940,40,0 ,17,923,9740228,96,0 ,22,1020,303048,1,1 ,22,1020,303056,1,1 ,22,1020,303064,1,1 ,22,1020,303072,1,1 ,22,1020,303080,1,1 ,22,1020,303088,1,1 ,22,1020,303096,1,1 ,22,1020,303104,1,1 ,20,24587,23896066,140,0 ,20,24022,22323202,188,0 ,44,15152,303108,24,0 ,17,923,7643140,40,0 ,17,923,6594564,32,0 ,44,15152,2400260,48,0 ,22,1020,303112,1,1 ,22,1020,303120,1,1 ,22,1020,303128,1,1 ,22,1020,303136,1,1 ,22,1020,303144,1,1 ,22,1020,303152,1,1 ,22,1020,303160,1,1 ,22,1020,303168,1,1 ,20,25763,27041858,112,0 ,45,15153,5546052,48,0 ,17,923,7118916,32,0 ,45,15153,4497476,24,0 ,22,1020,303176,1,1 ,22,1020,303184,1,1 ,22,1020,303192,1,1 ,22,1020,303200,1,1 ,20,15871,1876066,148,0 ,22,1020,303208,1,1 ,22,1020,303216,1,1 ,22,1020,303224,1,1 ,22,1020,303232,1,1 ,20,25022,24944770,192,0 ,45,15153,5021828,24,0 ,44,15152,1351812,32,0 ,44,15152,827524,24,0 ,22,1020,303240,1,1 ,22,1020,303248,1,1 ,22,1020,303256,1,1 ,22,1020,303264,1,1 ,22,1020,303272,1,1 ,22,1020,303280,1,1 ,22,1020,303288,1,1 ,22,1020,303296,1,1 ,20,17410,5546178,64,0 ,44,15152,303300,24,0 ,22,1020,303304,1,1 ,22,1020,303312,1,1 ,22,1020,303320,1,1 ,22,1020,303328,1,1 ,22,1020,303336,1,1 ,22,1020,303344,1,1 ,22,1020,303352,1,1 ,22,1020,303360,1,1 ,17,923,9216260,40,0 ,17,923,6594820,24,0 ,45,15153,4497668,16,0 ,22,1020,303368,1,1 ,22,1020,303376,1,1 ,22,1020,303384,1,1 ,22,1020,303392,1,1 ,20,22593,19177762,56,0 ,22,1020,303400,1,1 ,22,1020,303408,1,1 ,22,1020,303416,1,1 ,22,1020,303424,1,1 ,17,923,8167748,40,0 ,17,923,7643460,48,0 ,17,923,7119172,32,0 ,44,15152,827716,56,0 ,45,15153,5022020,24,0 ,22,1020,303432,1,1 ,22,1020,303440,1,1 ,22,1020,303448,1,1 ,22,1020,303456,1,1 ,20,21603,16556386,88,0 ,20,19017,9216354,1224,0 ,22,1020,303464,1,1 ,22,1020,303472,1,1 ,22,1020,303480,1,1 ,22,1020,303488,1,1 ,20,23131,20226434,220,0 ,17,923,8692100,64,0 ,44,15152,2400644,56,0 ,44,15152,1876356,400,0 ,44,15152,1352068,104,0 ,44,15152,303492,32,0 ,45,15153,4497796,16,0 ,22,1020,303496,1,1 ,22,1020,303504,1,1 ,22,1020,303512,1,1 ,22,1020,303520,1,1 ,22,1020,303528,1,1 ,22,1020,303536,1,1 ,22,1020,303544,1,1 ,22,1020,303552,1,1 ,45,15153,5546436,16,0 ,17,923,6595012,32,0 ,22,1020,303560,1,1 ,22,1020,303568,1,1 ,22,1020,303576,1,1 ,22,1020,303584,1,1 ,20,22124,18129378,476,0 ,22,1020,303592,1,1 ,22,1020,303600,1,1 ,22,1020,303608,1,1 ,22,1020,303616,1,1 ,45,15153,5022212,16,0 ,44,15152,3449348,32,0 ,45,15153,4497924,32,0 ,22,1020,303624,1,1 ,22,1020,303632,1,1 ,22,1020,303640,1,1 ,22,1020,303648,1,1 ,22,1020,303656,1,1 ,22,1020,303664,1,1 ,22,1020,303672,1,1 ,22,1020,303680,1,1 ,17,923,9216580,48,0 ,17,923,7119428,32,0 ,45,15153,5546564,32,0 ,22,1020,303688,1,1 ,22,1020,303696,1,1 ,22,1020,303704,1,1 ,22,1020,303712,1,1 ,22,1020,303720,1,1 ,22,1020,303728,1,1 ,22,1020,303736,1,1 ,22,1020,303744,1,1 ,17,923,8168068,32,0 ,44,15152,303748,32,0 ,45,15153,5022340,32,0 ,22,1020,303752,1,1 ,22,1020,303760,1,1 ,22,1020,303768,1,1 ,22,1020,303776,1,1 ,22,1020,303784,1,1 ,22,1020,303792,1,1 ,22,1020,303800,1,1 ,22,1020,303808,1,1 ,20,17411,5546690,12,0 ,17,923,9740996,56,0 ,17,923,7643844,48,0 ,17,923,6595268,24,0 ,22,1020,303816,1,1 ,22,1020,303824,1,1 ,22,1020,303832,1,1 ,22,1020,303840,1,1 ,20,22594,19178210,60,0 ,22,1020,303848,1,1 ,22,1020,303856,1,1 ,22,1020,303864,1,1 ,22,1020,303872,1,1 ,45,15153,4498180,24,0 ,44,15152,828164,136,0 ,44,15152,3449604,40,0 ,22,1020,303880,1,1 ,22,1020,303888,1,1 ,22,1020,303896,1,1 ,22,1020,303904,1,1 ,20,17412,5546786,84,0 ,22,1020,303912,1,1 ,22,1020,303920,1,1 ,22,1020,303928,1,1 ,22,1020,303936,1,1 ,45,15153,5546820,24,0 ,17,923,7119684,48,0 ,44,15152,2401092,48,0 ,22,1020,303944,1,1 ,22,1020,303952,1,1 ,22,1020,303960,1,1 ,22,1020,303968,1,1 ,20,16783,3973986,204,0 ,22,1020,303976,1,1 ,22,1020,303984,1,1 ,22,1020,303992,1,1 ,22,1020,304000,1,1 ,20,17812,6595458,40,0 ,17,923,8692612,64,0 ,17,923,6595460,32,0 ,44,15152,304004,16,0 ,45,15153,3974020,16,0 ,45,15153,5022596,32,0 ,17,923,8168324,32,0 ,22,1020,304008,1,1 ,22,1020,304016,1,1 ,22,1020,304024,1,1 ,22,1020,304032,1,1 ,22,1020,304040,1,1 ,22,1020,304048,1,1 ,22,1020,304056,1,1 ,22,1020,304064,1,1 ,20,25764,27042754,1036,0 ,17,923,9216964,40,0 ,45,15153,4498372,32,0 ,22,1020,304072,1,1 ,22,1020,304080,1,1 ,22,1020,304088,1,1 ,22,1020,304096,1,1 ,22,1020,304104,1,1 ,22,1020,304112,1,1 ,22,1020,304120,1,1 ,22,1020,304128,1,1 ,45,15153,5547012,24,0 ,44,15152,304132,32,0 ,45,15153,3974148,24,0 ,22,1020,304136,1,1 ,22,1020,304144,1,1 ,22,1020,304152,1,1 ,22,1020,304160,1,1 ,20,22407,18654242,136,0 ,20,17605,6071330,192,0 ,20,21604,16557090,124,0 ,22,1020,304168,1,1 ,22,1020,304176,1,1 ,22,1020,304184,1,1 ,22,1020,304192,1,1 ,44,15152,3449924,96,0 ,17,923,7644228,32,0 ,22,1020,304200,1,1 ,22,1020,304208,1,1 ,22,1020,304216,1,1 ,22,1020,304224,1,1 ,20,24588,23897186,196,0 ,22,1020,304232,1,1 ,22,1020,304240,1,1 ,22,1020,304248,1,1 ,22,1020,304256,1,1 ,17,923,9741444,56,0 ,17,923,6595716,24,0 ,45,15153,5022852,24,0 ,17,923,8168580,24,0 ,22,1020,304264,1,1 ,22,1020,304272,1,1 ,22,1020,304280,1,1 ,22,1020,304288,1,1 ,22,1020,304296,1,1 ,22,1020,304304,1,1 ,22,1020,304312,1,1 ,22,1020,304320,1,1 ,20,22595,19178690,164,0 ,20,25223,25470146,616,0 ,20,17813,6595778,44,0 ,17,923,10265796,272,0 ,17,923,7120068,32,0 ,44,15152,2401476,48,0 ,44,15152,1352900,288,0 ,45,15153,3974340,32,0 ,45,15153,4498628,32,0 ,45,15153,5547204,32,0 ,22,1020,304328,1,1 ,22,1020,304336,1,1 ,22,1020,304344,1,1 ,22,1020,304352,1,1 ,20,23799,21800162,24,0 ,22,1020,304360,1,1 ,22,1020,304368,1,1 ,22,1020,304376,1,1 ,22,1020,304384,1,1 ,20,15872,1877250,12,0 ,17,923,9217284,40,0 ,44,15152,304388,32,0 ,22,1020,304392,1,1 ,22,1020,304400,1,1 ,22,1020,304408,1,1 ,22,1020,304416,1,1 ,22,1020,304424,1,1 ,22,1020,304432,1,1 ,22,1020,304440,1,1 ,22,1020,304448,1,1 ,17,923,8168772,32,0 ,17,923,7644484,48,0 ,17,923,6595908,32,0 ,45,15153,5023044,24,0 ,22,1020,304456,1,1 ,22,1020,304464,1,1 ,22,1020,304472,1,1 ,22,1020,304480,1,1 ,20,15873,1877346,12,0 ,22,1020,304488,1,1 ,22,1020,304496,1,1 ,22,1020,304504,1,1 ,22,1020,304512,1,1 ,17,923,8693124,56,0 ,22,1020,304520,1,1 ,22,1020,304528,1,1 ,22,1020,304536,1,1 ,22,1020,304544,1,1 ,20,23800,21800354,128,0 ,20,17050,4498850,432,0 ,22,1020,304552,1,1 ,22,1020,304560,1,1 ,22,1020,304568,1,1 ,22,1020,304576,1,1 ,20,17413,5547458,96,0 ,20,15874,1877442,172,0 ,45,15153,5547460,56,0 ,17,923,7120324,32,0 ,45,15153,3974596,16,0 ,45,15153,4498884,16,0 ,22,1020,304584,1,1 ,22,1020,304592,1,1 ,22,1020,304600,1,1 ,22,1020,304608,1,1 ,20,24023,22324706,312,0 ,20,19193,9741794,12,0 ,20,19512,10266082,80,0 ,22,1020,304616,1,1 ,22,1020,304624,1,1 ,22,1020,304632,1,1 ,22,1020,304640,1,1 ,45,15153,5023236,16,0 ,44,15152,304644,32,0 ,22,1020,304648,1,1 ,22,1020,304656,1,1 ,22,1020,304664,1,1 ,22,1020,304672,1,1 ,20,17814,6596130,12,0 ,22,1020,304680,1,1 ,22,1020,304688,1,1 ,22,1020,304696,1,1 ,22,1020,304704,1,1 ,20,19194,9741890,36,0 ,17,923,9741892,56,0 ,17,923,6596164,16,0 ,44,15152,2401860,48,0 ,45,15153,3974724,16,0 ,45,15153,4499012,16,0 ,17,923,8169028,32,0 ,17,923,9217604,40,0 ,22,1020,304712,1,1 ,22,1020,304720,1,1 ,22,1020,304728,1,1 ,22,1020,304736,1,1 ,22,1020,304744,1,1 ,22,1020,304752,1,1 ,22,1020,304760,1,1 ,22,1020,304768,1,1 ,20,17815,6596226,12,0 ,20,25023,24946306,24,0 ,45,15153,5023364,16,0 ,22,1020,304776,1,1 ,22,1020,304784,1,1 ,22,1020,304792,1,1 ,22,1020,304800,1,1 ,22,1020,304808,1,1 ,22,1020,304816,1,1 ,22,1020,304824,1,1 ,22,1020,304832,1,1 ,20,21382,16033474,172,0 ,45,15153,4499140,24,0 ,17,923,7644868,48,0 ,17,923,7120580,32,0 ,17,923,6596292,16,0 ,45,15153,3974852,24,0 ,22,1020,304840,1,1 ,22,1020,304848,1,1 ,22,1020,304856,1,1 ,22,1020,304864,1,1 ,20,17816,6596322,12,0 ,22,1020,304872,1,1 ,22,1020,304880,1,1 ,22,1020,304888,1,1 ,22,1020,304896,1,1 ,45,15153,5023492,16,0 ,44,15152,304900,24,0 ,22,1020,304904,1,1 ,22,1020,304912,1,1 ,22,1020,304920,1,1 ,22,1020,304928,1,1 ,22,1020,304936,1,1 ,22,1020,304944,1,1 ,22,1020,304952,1,1 ,22,1020,304960,1,1 ,20,17817,6596418,128,0 ,20,25024,24946498,128,0 ,17,923,8693572,64,0 ,17,923,6596420,24,0 ,44,15152,829252,24,0 ,44,15152,3450692,64,0 ,17,923,8169284,40,0 ,22,1020,304968,1,1 ,22,1020,304976,1,1 ,22,1020,304984,1,1 ,22,1020,304992,1,1 ,20,21038,15509346,364,0 ,20,19195,9742178,12,0 ,22,1020,305000,1,1 ,22,1020,305008,1,1 ,22,1020,305016,1,1 ,22,1020,305024,1,1 ,20,25993,27568002,264,0 ,17,923,9217924,48,0 ,45,15153,3975044,24,0 ,45,15153,4499332,16,0 ,45,15153,5023620,16,0 ,45,15153,5547908,32,0 ,22,1020,305032,1,1 ,22,1020,305040,1,1 ,22,1020,305048,1,1 ,22,1020,305056,1,1 ,22,1020,305064,1,1 ,22,1020,305072,1,1 ,22,1020,305080,1,1 ,22,1020,305088,1,1 ,20,19196,9742274,12,0 ,20,26454,29140930,48,0 ,44,15152,305092,40,0 ,17,923,7120836,32,0 ,44,15152,2402244,48,0 ,22,1020,305096,1,1 ,22,1020,305104,1,1 ,22,1020,305112,1,1 ,22,1020,305120,1,1 ,20,18757,8693730,528,0 ,22,1020,305128,1,1 ,22,1020,305136,1,1 ,22,1020,305144,1,1 ,22,1020,305152,1,1 ,20,21605,16558082,116,0 ,17,923,9742340,24,0 ,17,923,6596612,24,0 ,44,15152,829444,96,0 ,45,15153,4499460,24,0 ,45,15153,5023748,40,0 ,22,1020,305160,1,1 ,22,1020,305168,1,1 ,22,1020,305176,1,1 ,22,1020,305184,1,1 ,20,19197,9742370,44,0 ,22,1020,305192,1,1 ,22,1020,305200,1,1 ,22,1020,305208,1,1 ,22,1020,305216,1,1 ,45,15153,3975236,24,0 ,17,923,7645252,40,0 ,22,1020,305224,1,1 ,22,1020,305232,1,1 ,22,1020,305240,1,1 ,22,1020,305248,1,1 ,20,23132,20228194,408,0 ,20,19513,10266722,76,0 ,20,22408,18655330,48,0 ,22,1020,305256,1,1 ,22,1020,305264,1,1 ,22,1020,305272,1,1 ,22,1020,305280,1,1 ,17,923,8169604,32,0 ,45,15153,5548164,32,0 ,22,1020,305288,1,1 ,22,1020,305296,1,1 ,22,1020,305304,1,1 ,22,1020,305312,1,1 ,22,1020,305320,1,1 ,22,1020,305328,1,1 ,22,1020,305336,1,1 ,22,1020,305344,1,1 ,20,17414,5548226,12,0 ,17,923,9742532,64,0 ,17,923,7121092,32,0 ,17,923,6596804,32,0 ,45,15153,4499652,16,0 ,22,1020,305352,1,1 ,22,1020,305360,1,1 ,22,1020,305368,1,1 ,22,1020,305376,1,1 ,22,1020,305384,1,1 ,22,1020,305392,1,1 ,22,1020,305400,1,1 ,22,1020,305408,1,1 ,17,923,9218308,40,0 ,44,15152,305412,32,0 ,45,15153,3975428,112,0 ,22,1020,305416,1,1 ,22,1020,305424,1,1 ,22,1020,305432,1,1 ,22,1020,305440,1,1 ,20,17415,5548322,324,0 ,22,1020,305448,1,1 ,22,1020,305456,1,1 ,22,1020,305464,1,1 ,22,1020,305472,1,1 ,20,26455,29141314,40,0 ,17,923,8694084,72,0 ,44,15152,2402628,48,0 ,44,15152,3451204,24,0 ,45,15153,4499780,56,0 ,45,15153,5024068,40,0 ,22,1020,305480,1,1 ,22,1020,305488,1,1 ,22,1020,305496,1,1 ,22,1020,305504,1,1 ,20,25589,26519906,368,0 ,22,1020,305512,1,1 ,22,1020,305520,1,1 ,22,1020,305528,1,1 ,22,1020,305536,1,1 ,20,19198,9742722,12,0 ,17,923,8169860,40,0 ,17,923,7645572,32,0 ,45,15153,5548420,16,0 ,22,1020,305544,1,1 ,22,1020,305552,1,1 ,22,1020,305560,1,1 ,22,1020,305568,1,1 ,20,23801,21801378,204,0 ,22,1020,305576,1,1 ,22,1020,305584,1,1 ,22,1020,305592,1,1 ,22,1020,305600,1,1 ,20,16784,3975618,224,0 ,17,923,6597060,24,0 ,17,923,7121348,32,0 ,22,1020,305608,1,1 ,22,1020,305616,1,1 ,22,1020,305624,1,1 ,22,1020,305632,1,1 ,20,22596,19180002,64,0 ,20,19199,9742818,204,0 ,20,22409,18655714,136,0 ,22,1020,305640,1,1 ,22,1020,305648,1,1 ,22,1020,305656,1,1 ,22,1020,305664,1,1 ,45,15153,5548548,48,0 ,44,15152,305668,16,0 ,44,15152,3451396,80,0 ,22,1020,305672,1,1 ,22,1020,305680,1,1 ,22,1020,305688,1,1 ,22,1020,305696,1,1 ,20,17606,6072866,624,0 ,22,1020,305704,1,1 ,22,1020,305712,1,1 ,22,1020,305720,1,1 ,22,1020,305728,1,1 ,17,923,9218628,24,0 ,22,1020,305736,1,1 ,22,1020,305744,1,1 ,22,1020,305752,1,1 ,22,1020,305760,1,1 ,22,1020,305768,1,1 ,22,1020,305776,1,1 ,22,1020,305784,1,1 ,22,1020,305792,1,1 ,20,24589,23898754,48,0 ,20,26456,29141634,1448,0 ,45,15153,5024388,32,0 ,17,923,7645828,48,0 ,17,923,6597252,24,0 ,44,15152,305796,16,0 ,22,1020,305800,1,1 ,22,1020,305808,1,1 ,22,1020,305816,1,1 ,22,1020,305824,1,1 ,20,22825,19704482,64,0 ,22,1020,305832,1,1 ,22,1020,305840,1,1 ,22,1020,305848,1,1 ,22,1020,305856,1,1 ,20,19514,10267330,192,0 ,17,923,9743044,112,0 ,17,923,7121604,24,0 ,44,15152,2403012,48,0 ,17,923,8170180,48,0 ,22,1020,305864,1,1 ,22,1020,305872,1,1 ,22,1020,305880,1,1 ,22,1020,305888,1,1 ,22,1020,305896,1,1 ,22,1020,305904,1,1 ,22,1020,305912,1,1 ,22,1020,305920,1,1 ,17,923,9218820,24,0 ,44,15152,305924,32,0 ,44,15152,830212,32,0 ,45,15153,4500228,56,0 ,22,1020,305928,1,1 ,22,1020,305936,1,1 ,22,1020,305944,1,1 ,22,1020,305952,1,1 ,20,15875,1878818,84,0 ,22,1020,305960,1,1 ,22,1020,305968,1,1 ,22,1020,305976,1,1 ,22,1020,305984,1,1 ,20,17818,6597442,72,0 ,20,25025,24947522,48,0 ,17,923,6597444,24,0 ,22,1020,305992,1,1 ,22,1020,306000,1,1 ,22,1020,306008,1,1 ,22,1020,306016,1,1 ,20,15265,306018,1028,0 ,22,1020,306024,1,1 ,22,1020,306032,1,1 ,22,1020,306040,1,1 ,22,1020,306048,1,1 ,17,923,8694660,56,0 ,17,923,7121796,56,0 ,45,15153,5024644,16,0 ,45,15153,5548932,16,0 ,22,1020,306056,1,1 ,22,1020,306064,1,1 ,22,1020,306072,1,1 ,22,1020,306080,1,1 ,20,24243,22850466,380,0 ,20,21606,16559010,116,0 ,22,1020,306088,1,1 ,22,1020,306096,1,1 ,22,1020,306104,1,1 ,22,1020,306112,1,1 ,17,923,9219012,24,0 ,22,1020,306120,1,1 ,22,1020,306128,1,1 ,22,1020,306136,1,1 ,22,1020,306144,1,1 ,20,22597,19180514,128,0 ,22,1020,306152,1,1 ,22,1020,306160,1,1 ,22,1020,306168,1,1 ,22,1020,306176,1,1 ,20,24590,23899138,200,0 ,45,15153,5549060,16,0 ,17,923,7646212,48,0 ,17,923,6597636,24,0 ,44,15152,306180,40,0 ,44,15152,830468,32,0 ,45,15153,5024772,16,0 ,22,1020,306184,1,1 ,22,1020,306192,1,1 ,22,1020,306200,1,1 ,22,1020,306208,1,1 ,20,21383,16034850,384,0 ,22,1020,306216,1,1 ,22,1020,306224,1,1 ,22,1020,306232,1,1 ,22,1020,306240,1,1 ,17,923,8170564,40,0 ,44,15152,2403396,56,0 ,22,1020,306248,1,1 ,22,1020,306256,1,1 ,22,1020,306264,1,1 ,22,1020,306272,1,1 ,22,1020,306280,1,1 ,22,1020,306288,1,1 ,22,1020,306296,1,1 ,22,1020,306304,1,1 ,17,923,9219204,56,0 ,44,15152,3452036,40,0 ,45,15153,3976324,40,0 ,45,15153,5024900,16,0 ,45,15153,5549188,16,0 ,22,1020,306312,1,1 ,22,1020,306320,1,1 ,22,1020,306328,1,1 ,22,1020,306336,1,1 ,20,22826,19704994,132,0 ,22,1020,306344,1,1 ,22,1020,306352,1,1 ,22,1020,306360,1,1 ,22,1020,306368,1,1 ,20,25026,24947906,252,0 ,45,15153,4500676,64,0 ,17,923,6597828,32,0 ,22,1020,306376,1,1 ,22,1020,306384,1,1 ,22,1020,306392,1,1 ,22,1020,306400,1,1 ,22,1020,306408,1,1 ,22,1020,306416,1,1 ,22,1020,306424,1,1 ,22,1020,306432,1,1 ,45,15153,5549316,112,0 ,44,15152,830724,32,0 ,45,15153,5025028,16,0 ,22,1020,306440,1,1 ,22,1020,306448,1,1 ,22,1020,306456,1,1 ,22,1020,306464,1,1 ,22,1020,306472,1,1 ,22,1020,306480,1,1 ,22,1020,306488,1,1 ,22,1020,306496,1,1 ,17,923,10267972,48,0 ,17,923,7122244,64,0 ,44,15152,306500,32,0 ,17,923,8695108,48,0 ,22,1020,306504,1,1 ,22,1020,306512,1,1 ,22,1020,306520,1,1 ,22,1020,306528,1,1 ,22,1020,306536,1,1 ,22,1020,306544,1,1 ,22,1020,306552,1,1 ,22,1020,306560,1,1 ,20,20303,12889474,160,0 ,20,17819,6598018,196,0 ,17,923,8170884,40,0 ,17,923,7646596,32,0 ,45,15153,5025156,24,0 ,22,1020,306568,1,1 ,22,1020,306576,1,1 ,22,1020,306584,1,1 ,22,1020,306592,1,1 ,22,1020,306600,1,1 ,22,1020,306608,1,1 ,22,1020,306616,1,1 ,22,1020,306624,1,1 ,20,15876,1879490,100,0 ,45,15153,3976644,24,0 ,17,923,6598084,32,0 ,44,15152,2928068,32,0 ,44,15152,1355204,24,0 ,44,15152,3452356,32,0 ,22,1020,306632,1,1 ,22,1020,306640,1,1 ,22,1020,306648,1,1 ,22,1020,306656,1,1 ,22,1020,306664,1,1 ,22,1020,306672,1,1 ,22,1020,306680,1,1 ,22,1020,306688,1,1 ,44,15152,830980,56,0 ,44,15152,2403844,48,0 ,44,15152,1879556,24,0 ,22,1020,306696,1,1 ,22,1020,306704,1,1 ,22,1020,306712,1,1 ,22,1020,306720,1,1 ,20,22410,18656802,136,0 ,22,1020,306728,1,1 ,22,1020,306736,1,1 ,22,1020,306744,1,1 ,22,1020,306752,1,1 ,17,923,9743940,64,0 ,44,15152,306756,32,0 ,45,15153,5025348,16,0 ,17,923,9219652,24,0 ,22,1020,306760,1,1 ,22,1020,306768,1,1 ,22,1020,306776,1,1 ,22,1020,306784,1,1 ,22,1020,306792,1,1 ,22,1020,306800,1,1 ,22,1020,306808,1,1 ,22,1020,306816,1,1 ,45,15153,3976836,24,0 ,17,923,7646852,32,0 ,44,15152,1355396,40,0 ,22,1020,306824,1,1 ,22,1020,306832,1,1 ,22,1020,306840,1,1 ,22,1020,306848,1,1 ,22,1020,306856,1,1 ,22,1020,306864,1,1 ,22,1020,306872,1,1 ,22,1020,306880,1,1 ,17,923,10268356,32,0 ,17,923,6598340,32,0 ,44,15152,2928324,152,0 ,44,15152,1879748,400,0 ,44,15152,3452612,184,0 ,45,15153,4501188,24,0 ,45,15153,5025476,16,0 ,17,923,8171204,40,0 ,17,923,8695492,48,0 ,22,1020,306888,1,1 ,22,1020,306896,1,1 ,22,1020,306904,1,1 ,22,1020,306912,1,1 ,22,1020,306920,1,1 ,22,1020,306928,1,1 ,22,1020,306936,1,1 ,22,1020,306944,1,1 ,17,923,9219844,32,0 ,22,1020,306952,1,1 ,22,1020,306960,1,1 ,22,1020,306968,1,1 ,22,1020,306976,1,1 ,22,1020,306984,1,1 ,22,1020,306992,1,1 ,22,1020,307000,1,1 ,22,1020,307008,1,1 ,20,21607,16559938,116,0 ,45,15153,5025604,16,0 ,17,923,7122756,64,0 ,44,15152,307012,40,0 ,45,15153,3977028,16,0 ,22,1020,307016,1,1 ,22,1020,307024,1,1 ,22,1020,307032,1,1 ,22,1020,307040,1,1 ,20,15701,1355618,512,0 ,22,1020,307048,1,1 ,22,1020,307056,1,1 ,22,1020,307064,1,1 ,22,1020,307072,1,1 ,20,23413,20754306,948,0 ,45,15153,4501380,408,0 ,17,923,7647108,32,0 ,44,15152,2404228,56,0 ,22,1020,307080,1,1 ,22,1020,307088,1,1 ,22,1020,307096,1,1 ,22,1020,307104,1,1 ,20,24024,22327202,168,0 ,22,1020,307112,1,1 ,22,1020,307120,1,1 ,22,1020,307128,1,1 ,22,1020,307136,1,1 ,20,25994,27570114,472,0 ,17,923,10268612,32,0 ,17,923,6598596,24,0 ,44,15152,1355716,32,0 ,44,15152,831428,64,0 ,45,15153,3977156,24,0 ,45,15153,5025732,16,0 ,22,1020,307144,1,1 ,22,1020,307152,1,1 ,22,1020,307160,1,1 ,22,1020,307168,1,1 ,20,22598,19181538,64,0 ,20,16468,3452898,556,0 ,22,1020,307176,1,1 ,22,1020,307184,1,1 ,22,1020,307192,1,1 ,22,1020,307200,1,1 ,20,23802,21803010,24,0 ,17,923,9220100,32,0 ,17,923,8171524,40,0 ,22,1020,307208,1,1 ,22,1020,307216,1,1 ,22,1020,307224,1,1 ,22,1020,307232,1,1 ,22,1020,307240,1,1 ,22,1020,307248,1,1 ,22,1020,307256,1,1 ,22,1020,307264,1,1 ,20,19200,9744450,408,0 ,17,923,9744452,24,0 ,45,15153,5025860,16,0 ,17,923,8695876,48,0 ,22,1020,307272,1,1 ,22,1020,307280,1,1 ,22,1020,307288,1,1 ,22,1020,307296,1,1 ,22,1020,307304,1,1 ,22,1020,307312,1,1 ,22,1020,307320,1,1 ,22,1020,307328,1,1 ,45,15153,5550212,16,0 ,17,923,7647364,32,0 ,17,923,6598788,24,0 ,44,15152,307332,32,0 ,45,15153,3977348,16,0 ,22,1020,307336,1,1 ,22,1020,307344,1,1 ,22,1020,307352,1,1 ,22,1020,307360,1,1 ,20,19778,10793122,56,0 ,22,1020,307368,1,1 ,22,1020,307376,1,1 ,22,1020,307384,1,1 ,22,1020,307392,1,1 ,20,23803,21803202,24,0 ,20,16785,3977410,128,0 ,20,19515,10268866,192,0 ,20,22125,18133186,356,0 ,20,22827,19706050,12,0 ,17,923,10268868,32,0 ,44,15152,1355972,24,0 ,45,15153,5025988,16,0 ,22,1020,307400,1,1 ,22,1020,307408,1,1 ,22,1020,307416,1,1 ,22,1020,307424,1,1 ,20,15877,1880290,88,0 ,22,1020,307432,1,1 ,22,1020,307440,1,1 ,22,1020,307448,1,1 ,22,1020,307456,1,1 ,17,923,9744644,56,0 ,45,15153,3977476,16,0 ,45,15153,5550340,24,0 ,17,923,9220356,24,0 ,22,1020,307464,1,1 ,22,1020,307472,1,1 ,22,1020,307480,1,1 ,22,1020,307488,1,1 ,20,22828,19706146,24,0 ,22,1020,307496,1,1 ,22,1020,307504,1,1 ,22,1020,307512,1,1 ,22,1020,307520,1,1 ,17,923,8171844,40,0 ,17,923,7123268,64,0 ,17,923,6598980,24,0 ,44,15152,2404676,56,0 ,45,15153,5026116,32,0 ,22,1020,307528,1,1 ,22,1020,307536,1,1 ,22,1020,307544,1,1 ,22,1020,307552,1,1 ,22,1020,307560,1,1 ,22,1020,307568,1,1 ,22,1020,307576,1,1 ,22,1020,307584,1,1 ,20,23804,21803394,24,0 ,45,15153,3977604,24,0 ,17,923,7647620,24,0 ,44,15152,1356164,64,0 ,44,15152,307588,32,0 ,22,1020,307592,1,1 ,22,1020,307600,1,1 ,22,1020,307608,1,1 ,22,1020,307616,1,1 ,22,1020,307624,1,1 ,22,1020,307632,1,1 ,22,1020,307640,1,1 ,22,1020,307648,1,1 ,17,923,10269124,32,0 ,44,15152,831940,24,0 ,45,15153,5550532,16,0 ,17,923,8696260,40,0 ,17,923,9220548,24,0 ,22,1020,307656,1,1 ,22,1020,307664,1,1 ,22,1020,307672,1,1 ,22,1020,307680,1,1 ,20,22829,19706338,592,0 ,20,22599,19182050,64,0 ,22,1020,307688,1,1 ,22,1020,307696,1,1 ,22,1020,307704,1,1 ,22,1020,307712,1,1 ,17,923,6599172,24,0 ,22,1020,307720,1,1 ,22,1020,307728,1,1 ,22,1020,307736,1,1 ,22,1020,307744,1,1 ,22,1020,307752,1,1 ,22,1020,307760,1,1 ,22,1020,307768,1,1 ,22,1020,307776,1,1 ,20,24591,23900738,80,0 ,20,23805,21803586,84,0 ,45,15153,5550660,16,0 ,17,923,7647812,56,0 ,45,15153,3977796,16,0 ,45,15153,5026372,40,0 ,22,1020,307784,1,1 ,22,1020,307792,1,1 ,22,1020,307800,1,1 ,22,1020,307808,1,1 ,20,22411,18657890,176,0 ,20,19779,10793570,52,0 ,22,1020,307816,1,1 ,22,1020,307824,1,1 ,22,1020,307832,1,1 ,22,1020,307840,1,1 ,20,20304,12890754,328,0 ,17,923,9220740,56,0 ,44,15152,307844,48,0 ,44,15152,832132,24,0 ,17,923,8172164,48,0 ,22,1020,307848,1,1 ,22,1020,307856,1,1 ,22,1020,307864,1,1 ,22,1020,307872,1,1 ,22,1020,307880,1,1 ,22,1020,307888,1,1 ,22,1020,307896,1,1 ,22,1020,307904,1,1 ,20,21039,15512258,328,0 ,17,923,10269380,40,0 ,17,923,6599364,16,0 ,45,15153,3977924,32,0 ,45,15153,5550788,16,0 ,17,923,9745092,64,0 ,22,1020,307912,1,1 ,22,1020,307920,1,1 ,22,1020,307928,1,1 ,22,1020,307936,1,1 ,20,21608,16560866,168,0 ,22,1020,307944,1,1 ,22,1020,307952,1,1 ,22,1020,307960,1,1 ,22,1020,307968,1,1 ,17,923,8696580,32,0 ,44,15152,2405124,48,0 ,22,1020,307976,1,1 ,22,1020,307984,1,1 ,22,1020,307992,1,1 ,22,1020,308000,1,1 ,20,17051,4502306,280,0 ,22,1020,308008,1,1 ,22,1020,308016,1,1 ,22,1020,308024,1,1 ,22,1020,308032,1,1 ,20,17416,5550914,12,0 ,45,15153,5550916,32,0 ,17,923,7123780,24,0 ,17,923,6599492,24,0 ,44,15152,832324,32,0 ,22,1020,308040,1,1 ,22,1020,308048,1,1 ,22,1020,308056,1,1 ,22,1020,308064,1,1 ,22,1020,308072,1,1 ,22,1020,308080,1,1 ,22,1020,308088,1,1 ,22,1020,308096,1,1 ,45,15153,5026692,56,0 ,44,15152,2929540,40,0 ,44,15152,1356676,120,0 ,22,1020,308104,1,1 ,22,1020,308112,1,1 ,22,1020,308120,1,1 ,22,1020,308128,1,1 ,20,17820,6599586,64,0 ,20,15878,1880994,1184,0 ,20,17417,5551010,12,0 ,22,1020,308136,1,1 ,22,1020,308144,1,1 ,22,1020,308152,1,1 ,22,1020,308160,1,1 ,45,15153,3978180,24,0 ,22,1020,308168,1,1 ,22,1020,308176,1,1 ,22,1020,308184,1,1 ,22,1020,308192,1,1 ,20,22600,19182562,56,0 ,22,1020,308200,1,1 ,22,1020,308208,1,1 ,22,1020,308216,1,1 ,22,1020,308224,1,1 ,20,19780,10793986,52,0 ,20,17418,5551106,652,0 ,17,923,10269700,40,0 ,17,923,7648260,32,0 ,17,923,7123972,16,0 ,17,923,6599684,32,0 ,44,15152,308228,24,0 ,17,923,8172548,40,0 ,17,923,8696836,32,0 ,22,1020,308232,1,1 ,22,1020,308240,1,1 ,22,1020,308248,1,1 ,22,1020,308256,1,1 ,22,1020,308264,1,1 ,22,1020,308272,1,1 ,22,1020,308280,1,1 ,22,1020,308288,1,1 ,17,923,9221188,24,0 ,44,15152,832580,24,0 ,45,15153,5551172,16,0 ,22,1020,308296,1,1 ,22,1020,308304,1,1 ,22,1020,308312,1,1 ,22,1020,308320,1,1 ,22,1020,308328,1,1 ,22,1020,308336,1,1 ,22,1020,308344,1,1 ,22,1020,308352,1,1 ,45,15153,3978372,24,0 ,17,923,7124100,24,0 ,44,15152,2405508,56,0 ,44,15152,3454084,88,0 ,22,1020,308360,1,1 ,22,1020,308368,1,1 ,22,1020,308376,1,1 ,22,1020,308384,1,1 ,20,25027,24949922,24,0 ,22,1020,308392,1,1 ,22,1020,308400,1,1 ,22,1020,308408,1,1 ,22,1020,308416,1,1 ,20,24592,23901378,532,0 ,20,16786,3978434,464,0 ,17,923,9745604,112,0 ,44,15152,2929860,40,0 ,44,15152,308420,40,0 ,45,15153,5551300,16,0 ,22,1020,308424,1,1 ,22,1020,308432,1,1 ,22,1020,308440,1,1 ,22,1020,308448,1,1 ,20,24025,22328546,84,0 ,20,25590,26522850,316,0 ,20,23806,21804258,308,0 ,22,1020,308456,1,1 ,22,1020,308464,1,1 ,22,1020,308472,1,1 ,22,1020,308480,1,1 ,17,923,9221380,32,0 ,17,923,7648516,40,0 ,17,923,6599940,32,0 ,44,15152,832772,112,0 ,17,923,8697092,24,0 ,22,1020,308488,1,1 ,22,1020,308496,1,1 ,22,1020,308504,1,1 ,22,1020,308512,1,1 ,20,23133,20231458,80,0 ,22,1020,308520,1,1 ,22,1020,308528,1,1 ,22,1020,308536,1,1 ,22,1020,308544,1,1 ,17,923,10270020,272,0 ,17,923,7124292,24,0 ,45,15153,3978564,16,0 ,45,15153,5027140,144,0 ,45,15153,5551428,224,0 ,17,923,8172868,40,0 ,22,1020,308552,1,1 ,22,1020,308560,1,1 ,22,1020,308568,1,1 ,22,1020,308576,1,1 ,20,25028,24950114,48,0 ,22,1020,308584,1,1 ,22,1020,308592,1,1 ,22,1020,308600,1,1 ,22,1020,308608,1,1 ,22,1020,308616,1,1 ,22,1020,308624,1,1 ,22,1020,308632,1,1 ,22,1020,308640,1,1 ,20,22601,19183010,52,0 ,20,17821,6600098,312,0 ,20,19781,10794402,172,0 ,22,1020,308648,1,1 ,22,1020,308656,1,1 ,22,1020,308664,1,1 ,22,1020,308672,1,1 ,17,923,8697284,40,0 ,45,15153,3978692,24,0 ,22,1020,308680,1,1 ,22,1020,308688,1,1 ,22,1020,308696,1,1 ,22,1020,308704,1,1 ,22,1020,308712,1,1 ,22,1020,308720,1,1 ,22,1020,308728,1,1 ,22,1020,308736,1,1 ,17,923,9221636,40,0 ,17,923,7124484,24,0 ,17,923,6600196,24,0 ,44,15152,2930180,80,0 ,44,15152,308740,24,0 ,22,1020,308744,1,1 ,22,1020,308752,1,1 ,22,1020,308760,1,1 ,22,1020,308768,1,1 ,22,1020,308776,1,1 ,22,1020,308784,1,1 ,22,1020,308792,1,1 ,22,1020,308800,1,1 ,44,15152,2405956,48,0 ,17,923,7648836,40,0 ,22,1020,308808,1,1 ,22,1020,308816,1,1 ,22,1020,308824,1,1 ,22,1020,308832,1,1 ,22,1020,308840,1,1 ,22,1020,308848,1,1 ,22,1020,308856,1,1 ,22,1020,308864,1,1 ,17,923,8173188,40,0 ,45,15153,3978884,16,0 ,22,1020,308872,1,1 ,22,1020,308880,1,1 ,22,1020,308888,1,1 ,22,1020,308896,1,1 ,22,1020,308904,1,1 ,22,1020,308912,1,1 ,22,1020,308920,1,1 ,22,1020,308928,1,1 ,20,19516,10270402,76,0 ,44,15152,308932,16,0 ,17,923,7124676,24,0 ,17,923,6600388,32,0 ,22,1020,308936,1,1 ,22,1020,308944,1,1 ,22,1020,308952,1,1 ,22,1020,308960,1,1 ,20,25029,24950498,452,0 ,22,1020,308968,1,1 ,22,1020,308976,1,1 ,22,1020,308984,1,1 ,22,1020,308992,1,1 ,17,923,8697604,48,0 ,45,15153,3979012,16,0 ,22,1020,309000,1,1 ,22,1020,309008,1,1 ,22,1020,309016,1,1 ,22,1020,309024,1,1 ,22,1020,309032,1,1 ,22,1020,309040,1,1 ,22,1020,309048,1,1 ,22,1020,309056,1,1 ,20,22602,19183426,72,0 ,17,923,9221956,24,0 ,44,15152,1357636,40,0 ,44,15152,309060,32,0 ,44,15152,3454788,136,0 ,22,1020,309064,1,1 ,22,1020,309072,1,1 ,22,1020,309080,1,1 ,22,1020,309088,1,1 ,22,1020,309096,1,1 ,22,1020,309104,1,1 ,22,1020,309112,1,1 ,22,1020,309120,1,1 ,20,24244,22853506,324,0 ,20,24026,22329218,84,0 ,45,15153,3979140,96,0 ,17,923,7649156,40,0 ,17,923,7124868,24,0 ,22,1020,309128,1,1 ,22,1020,309136,1,1 ,22,1020,309144,1,1 ,22,1020,309152,1,1 ,20,23134,20232098,140,0 ,22,1020,309160,1,1 ,22,1020,309168,1,1 ,22,1020,309176,1,1 ,22,1020,309184,1,1 ,17,923,8173508,40,0 ,17,923,6600644,16,0 ,44,15152,2406340,40,0 ,22,1020,309192,1,1 ,22,1020,309200,1,1 ,22,1020,309208,1,1 ,22,1020,309216,1,1 ,20,22412,18659298,568,0 ,22,1020,309224,1,1 ,22,1020,309232,1,1 ,22,1020,309240,1,1 ,22,1020,309248,1,1 ,20,25224,25475074,24,0 ,17,923,9222148,24,0 ,22,1020,309256,1,1 ,22,1020,309264,1,1 ,22,1020,309272,1,1 ,22,1020,309280,1,1 ,20,21609,16562210,116,0 ,20,17196,5027874,228,0 ,20,21384,16037922,172,0 ,22,1020,309288,1,1 ,22,1020,309296,1,1 ,22,1020,309304,1,1 ,22,1020,309312,1,1 ,17,923,9746500,64,0 ,17,923,7125060,24,0 ,17,923,6600772,32,0 ,44,15152,309316,112,0 ,22,1020,309320,1,1 ,22,1020,309328,1,1 ,22,1020,309336,1,1 ,22,1020,309344,1,1 ,20,18758,8697954,72,0 ,22,1020,309352,1,1 ,22,1020,309360,1,1 ,22,1020,309368,1,1 ,22,1020,309376,1,1 ,17,923,8697988,24,0 ,44,15152,2930820,32,0 ,44,15152,1357956,24,0 ,44,15152,833668,24,0 ,22,1020,309384,1,1 ,22,1020,309392,1,1 ,22,1020,309400,1,1 ,22,1020,309408,1,1 ,22,1020,309416,1,1 ,22,1020,309424,1,1 ,22,1020,309432,1,1 ,22,1020,309440,1,1 ,20,25225,25475266,184,0 ,17,923,9222340,40,0 ,17,923,7649476,24,0 ,22,1020,309448,1,1 ,22,1020,309456,1,1 ,22,1020,309464,1,1 ,22,1020,309472,1,1 ,22,1020,309480,1,1 ,22,1020,309488,1,1 ,22,1020,309496,1,1 ,22,1020,309504,1,1 ,17,923,8173828,40,0 ,17,923,7125252,24,0 ,44,15152,2406660,40,0 ,22,1020,309512,1,1 ,22,1020,309520,1,1 ,22,1020,309528,1,1 ,22,1020,309536,1,1 ,20,19517,10271010,12,0 ,22,1020,309544,1,1 ,22,1020,309552,1,1 ,22,1020,309560,1,1 ,22,1020,309568,1,1 ,17,923,8698180,24,0 ,17,923,6601028,24,0 ,44,15152,1358148,56,0 ,44,15152,833860,24,0 ,22,1020,309576,1,1 ,22,1020,309584,1,1 ,22,1020,309592,1,1 ,22,1020,309600,1,1 ,22,1020,309608,1,1 ,22,1020,309616,1,1 ,22,1020,309624,1,1 ,22,1020,309632,1,1 ,20,22603,19184002,240,0 ,20,19518,10271106,224,0 ,44,15152,2931076,24,0 ,17,923,7649668,24,0 ,22,1020,309640,1,1 ,22,1020,309648,1,1 ,22,1020,309656,1,1 ,22,1020,309664,1,1 ,22,1020,309672,1,1 ,22,1020,309680,1,1 ,22,1020,309688,1,1 ,22,1020,309696,1,1 ,45,15153,5028292,24,0 ,17,923,7125444,24,0 ,22,1020,309704,1,1 ,22,1020,309712,1,1 ,22,1020,309720,1,1 ,22,1020,309728,1,1 ,22,1020,309736,1,1 ,22,1020,309744,1,1 ,22,1020,309752,1,1 ,22,1020,309760,1,1 ,17,923,9222660,40,0 ,17,923,6601220,32,0 ,44,15152,834052,32,0 ,17,923,8698372,40,0 ,22,1020,309768,1,1 ,22,1020,309776,1,1 ,22,1020,309784,1,1 ,22,1020,309792,1,1 ,20,24027,22329890,84,0 ,22,1020,309800,1,1 ,22,1020,309808,1,1 ,22,1020,309816,1,1 ,22,1020,309824,1,1 ,17,923,9747012,64,0 ,17,923,7649860,40,0 ,44,15152,2931268,24,0 ,44,15152,2406980,48,0 ,17,923,8174148,56,0 ,22,1020,309832,1,1 ,22,1020,309840,1,1 ,22,1020,309848,1,1 ,22,1020,309856,1,1 ,22,1020,309864,1,1 ,22,1020,309872,1,1 ,22,1020,309880,1,1 ,22,1020,309888,1,1 ,45,15153,5028484,88,0 ,17,923,7125636,24,0 ,45,15153,3979908,24,0 ,22,1020,309896,1,1 ,22,1020,309904,1,1 ,22,1020,309912,1,1 ,22,1020,309920,1,1 ,20,18759,8698530,216,0 ,22,1020,309928,1,1 ,22,1020,309936,1,1 ,22,1020,309944,1,1 ,22,1020,309952,1,1 ,22,1020,309960,1,1 ,22,1020,309968,1,1 ,22,1020,309976,1,1 ,22,1020,309984,1,1 ,22,1020,309992,1,1 ,22,1020,310000,1,1 ,22,1020,310008,1,1 ,22,1020,310016,1,1 ,20,19782,10795778,468,0 ,44,15152,834308,32,0 ,17,923,6601476,24,0 ,44,15152,2931460,24,0 ,44,15152,1358596,48,0 ,22,1020,310024,1,1 ,22,1020,310032,1,1 ,22,1020,310040,1,1 ,22,1020,310048,1,1 ,22,1020,310056,1,1 ,22,1020,310064,1,1 ,22,1020,310072,1,1 ,22,1020,310080,1,1 ,17,923,9222980,40,0 ,17,923,7125828,24,0 ,44,15152,1882948,400,0 ,45,15153,3980100,16,0 ,17,923,8698692,40,0 ,22,1020,310088,1,1 ,22,1020,310096,1,1 ,22,1020,310104,1,1 ,22,1020,310112,1,1 ,22,1020,310120,1,1 ,22,1020,310128,1,1 ,22,1020,310136,1,1 ,22,1020,310144,1,1 ,44,15152,3455876,64,0 ,17,923,7650180,32,0 ,22,1020,310152,1,1 ,22,1020,310160,1,1 ,22,1020,310168,1,1 ,22,1020,310176,1,1 ,22,1020,310184,1,1 ,22,1020,310192,1,1 ,22,1020,310200,1,1 ,22,1020,310208,1,1 ,20,21610,16563138,108,0 ,45,15153,3980228,24,0 ,17,923,6601668,24,0 ,44,15152,2931652,64,0 ,44,15152,2407364,40,0 ,44,15152,310212,16,0 ,22,1020,310216,1,1 ,22,1020,310224,1,1 ,22,1020,310232,1,1 ,22,1020,310240,1,1 ,20,22126,18136034,388,0 ,20,17052,4504546,12,0 ,22,1020,310248,1,1 ,22,1020,310256,1,1 ,22,1020,310264,1,1 ,22,1020,310272,1,1 ,20,23135,20233218,216,0 ,17,923,8174596,32,0 ,17,923,7126020,24,0 ,44,15152,834564,96,0 ,22,1020,310280,1,1 ,22,1020,310288,1,1 ,22,1020,310296,1,1 ,22,1020,310304,1,1 ,22,1020,310312,1,1 ,22,1020,310320,1,1 ,22,1020,310328,1,1 ,22,1020,310336,1,1 ,20,17053,4504642,76,0 ,17,923,9747524,64,0 ,44,15152,310340,16,0 ,45,15153,4504644,24,0 ,45,15153,5553220,32,0 ,22,1020,310344,1,1 ,22,1020,310352,1,1 ,22,1020,310360,1,1 ,22,1020,310368,1,1 ,22,1020,310376,1,1 ,22,1020,310384,1,1 ,22,1020,310392,1,1 ,22,1020,310400,1,1 ,17,923,9223300,40,0 ,17,923,7650436,32,0 ,17,923,6601860,24,0 ,44,15152,1358980,24,0 ,45,15153,3980420,24,0 ,17,923,8699012,32,0 ,22,1020,310408,1,1 ,22,1020,310416,1,1 ,22,1020,310424,1,1 ,22,1020,310432,1,1 ,22,1020,310440,1,1 ,22,1020,310448,1,1 ,22,1020,310456,1,1 ,22,1020,310464,1,1 ,20,24028,22330562,12,0 ,20,20305,12893378,268,0 ,44,15152,310468,16,0 ,17,923,7126212,24,0 ,22,1020,310472,1,1 ,22,1020,310480,1,1 ,22,1020,310488,1,1 ,22,1020,310496,1,1 ,22,1020,310504,1,1 ,22,1020,310512,1,1 ,22,1020,310520,1,1 ,22,1020,310528,1,1 ,20,21040,15514882,364,0 ,20,19201,9747714,200,0 ,17,923,8174852,48,0 ,44,15152,2407684,40,0 ,45,15153,4504836,16,0 ,22,1020,310536,1,1 ,22,1020,310544,1,1 ,22,1020,310552,1,1 ,22,1020,310560,1,1 ,20,24029,22330658,12,0 ,22,1020,310568,1,1 ,22,1020,310576,1,1 ,22,1020,310584,1,1 ,22,1020,310592,1,1 ,45,15153,5553476,24,0 ,17,923,6602052,40,0 ,44,15152,1359172,32,0 ,44,15152,310596,16,0 ,45,15153,3980612,40,0 ,45,15153,5029188,16,0 ,22,1020,310600,1,1 ,22,1020,310608,1,1 ,22,1020,310616,1,1 ,22,1020,310624,1,1 ,22,1020,310632,1,1 ,22,1020,310640,1,1 ,22,1020,310648,1,1 ,22,1020,310656,1,1 ,20,24030,22330754,332,0 ,20,21385,16039298,360,0 ,17,923,8699268,32,0 ,17,923,7650692,24,0 ,17,923,7126404,56,0 ,44,15152,3456388,256,0 ,45,15153,4504964,24,0 ,22,1020,310664,1,1 ,22,1020,310672,1,1 ,22,1020,310680,1,1 ,22,1020,310688,1,1 ,20,17607,6077858,192,0 ,22,1020,310696,1,1 ,22,1020,310704,1,1 ,22,1020,310712,1,1 ,22,1020,310720,1,1 ,17,923,10272196,24,0 ,44,15152,2932164,24,0 ,44,15152,310724,40,0 ,45,15153,5029316,32,0 ,17,923,9223620,24,0 ,22,1020,310728,1,1 ,22,1020,310736,1,1 ,22,1020,310744,1,1 ,22,1020,310752,1,1 ,22,1020,310760,1,1 ,22,1020,310768,1,1 ,22,1020,310776,1,1 ,22,1020,310784,1,1 ,45,15153,5553668,24,0 ,22,1020,310792,1,1 ,22,1020,310800,1,1 ,22,1020,310808,1,1 ,22,1020,310816,1,1 ,22,1020,310824,1,1 ,22,1020,310832,1,1 ,22,1020,310840,1,1 ,22,1020,310848,1,1 ,17,923,9748036,24,0 ,17,923,7650884,24,0 ,44,15152,2408004,40,0 ,44,15152,1359428,32,0 ,45,15153,4505156,24,0 ,22,1020,310856,1,1 ,22,1020,310864,1,1 ,22,1020,310872,1,1 ,22,1020,310880,1,1 ,22,1020,310888,1,1 ,22,1020,310896,1,1 ,22,1020,310904,1,1 ,22,1020,310912,1,1 ,20,23807,21806722,76,0 ,20,25995,27573890,592,0 ,20,25226,25476738,376,0 ,17,923,10272388,32,0 ,17,923,6602372,32,0 ,44,15152,2932356,40,0 ,45,15153,3980932,32,0 ,17,923,8175236,40,0 ,17,923,8699524,32,0 ,17,923,9223812,56,0 ,22,1020,310920,1,1 ,22,1020,310928,1,1 ,22,1020,310936,1,1 ,22,1020,310944,1,1 ,20,17054,4505250,124,0 ,22,1020,310952,1,1 ,22,1020,310960,1,1 ,22,1020,310968,1,1 ,22,1020,310976,1,1 ,20,25591,26525378,316,0 ,45,15153,5553860,24,0 ,45,15153,5029572,24,0 ,22,1020,310984,1,1 ,22,1020,310992,1,1 ,22,1020,311000,1,1 ,22,1020,311008,1,1 ,22,1020,311016,1,1 ,22,1020,311024,1,1 ,22,1020,311032,1,1 ,22,1020,311040,1,1 ,17,923,9748228,72,0 ,17,923,7651076,32,0 ,44,15152,311044,80,0 ,44,15152,835332,216,0 ,45,15153,4505348,32,0 ,22,1020,311048,1,1 ,22,1020,311056,1,1 ,22,1020,311064,1,1 ,22,1020,311072,1,1 ,20,21611,16564002,96,0 ,22,1020,311080,1,1 ,22,1020,311088,1,1 ,22,1020,311096,1,1 ,22,1020,311104,1,1 ,20,17197,5029698,352,0 ,44,15152,1359684,32,0 ,17,923,7126852,32,0 ,22,1020,311112,1,1 ,22,1020,311120,1,1 ,22,1020,311128,1,1 ,22,1020,311136,1,1 ,20,17822,6602594,84,0 ,20,15702,1359714,512,0 ,22,1020,311144,1,1 ,22,1020,311152,1,1 ,22,1020,311160,1,1 ,22,1020,311168,1,1 ,20,20169,11845506,12,0 ,17,923,10272644,32,0 ,17,923,6602628,24,0 ,44,15152,2408324,40,0 ,45,15153,3981188,16,0 ,45,15153,5029764,32,0 ,45,15153,5554052,24,0 ,17,923,8699780,24,0 ,22,1020,311176,1,1 ,22,1020,311184,1,1 ,22,1020,311192,1,1 ,22,1020,311200,1,1 ,22,1020,311208,1,1 ,22,1020,311216,1,1 ,22,1020,311224,1,1 ,22,1020,311232,1,1 ,17,923,8175556,40,0 ,44,15152,2932676,24,0 ,22,1020,311240,1,1 ,22,1020,311248,1,1 ,22,1020,311256,1,1 ,22,1020,311264,1,1 ,20,20170,11845602,188,0 ,20,15461,835554,104,0 ,22,1020,311272,1,1 ,22,1020,311280,1,1 ,22,1020,311288,1,1 ,22,1020,311296,1,1 ,45,15153,4505604,32,0 ,17,923,7651332,40,0 ,45,15153,3981316,40,0 ,22,1020,311304,1,1 ,22,1020,311312,1,1 ,22,1020,311320,1,1 ,22,1020,311328,1,1 ,20,21890,17088546,1672,0 ,22,1020,311336,1,1 ,22,1020,311344,1,1 ,22,1020,311352,1,1 ,22,1020,311360,1,1 ,17,923,9224260,40,0 ,17,923,7127108,64,0 ,17,923,6602820,24,0 ,44,15152,1359940,120,0 ,45,15153,5554244,32,0 ,17,923,8699972,64,0 ,22,1020,311368,1,1 ,22,1020,311376,1,1 ,22,1020,311384,1,1 ,22,1020,311392,1,1 ,22,1020,311400,1,1 ,22,1020,311408,1,1 ,22,1020,311416,1,1 ,22,1020,311424,1,1 ,20,19519,10272898,12,0 ,17,923,10272900,32,0 ,44,15152,2932868,24,0 ,45,15153,5030020,16,0 ,22,1020,311432,1,1 ,22,1020,311440,1,1 ,22,1020,311448,1,1 ,22,1020,311456,1,1 ,20,20788,13942946,64,0 ,22,1020,311464,1,1 ,22,1020,311472,1,1 ,22,1020,311480,1,1 ,22,1020,311488,1,1 ,44,15152,2408644,40,0 ,22,1020,311496,1,1 ,22,1020,311504,1,1 ,22,1020,311512,1,1 ,22,1020,311520,1,1 ,20,23808,21807330,24,0 ,20,19520,10272994,388,0 ,22,1020,311528,1,1 ,22,1020,311536,1,1 ,22,1020,311544,1,1 ,22,1020,311552,1,1 ,20,22604,19185922,284,0 ,17,923,8175876,40,0 ,17,923,6603012,48,0 ,45,15153,4505860,16,0 ,45,15153,5030148,16,0 ,22,1020,311560,1,1 ,22,1020,311568,1,1 ,22,1020,311576,1,1 ,22,1020,311584,1,1 ,22,1020,311592,1,1 ,22,1020,311600,1,1 ,22,1020,311608,1,1 ,22,1020,311616,1,1 ,20,16469,3457346,12,0 ,17,923,9748804,128,0 ,17,923,7651652,32,0 ,44,15152,2933060,48,0 ,45,15153,3981636,16,0 ,45,15153,5554500,16,0 ,22,1020,311624,1,1 ,22,1020,311632,1,1 ,22,1020,311640,1,1 ,22,1020,311648,1,1 ,20,18760,8700258,184,0 ,22,1020,311656,1,1 ,22,1020,311664,1,1 ,22,1020,311672,1,1 ,22,1020,311680,1,1 ,17,923,10273156,56,0 ,44,15152,311684,24,0 ,45,15153,4505988,48,0 ,45,15153,5030276,16,0 ,17,923,9224580,24,0 ,22,1020,311688,1,1 ,22,1020,311696,1,1 ,22,1020,311704,1,1 ,22,1020,311712,1,1 ,20,24245,22856098,620,0 ,20,16470,3457442,140,0 ,20,23809,21807522,24,0 ,22,1020,311720,1,1 ,22,1020,311728,1,1 ,22,1020,311736,1,1 ,22,1020,311744,1,1 ,20,20908,14991810,308,0 ,45,15153,5554628,24,0 ,45,15153,3981764,16,0 ,22,1020,311752,1,1 ,22,1020,311760,1,1 ,22,1020,311768,1,1 ,22,1020,311776,1,1 ,22,1020,311784,1,1 ,22,1020,311792,1,1 ,22,1020,311800,1,1 ,22,1020,311808,1,1 ,20,17823,6603266,552,0 ,45,15153,5030404,16,0 ,44,15152,2408964,40,0 ,22,1020,311816,1,1 ,22,1020,311824,1,1 ,22,1020,311832,1,1 ,22,1020,311840,1,1 ,20,21612,16564770,112,0 ,22,1020,311848,1,1 ,22,1020,311856,1,1 ,22,1020,311864,1,1 ,22,1020,311872,1,1 ,17,923,9224772,32,0 ,17,923,7651908,40,0 ,17,923,7127620,24,0 ,44,15152,311876,24,0 ,45,15153,3981892,24,0 ,17,923,8176196,24,0 ,17,923,8700484,40,0 ,22,1020,311880,1,1 ,22,1020,311888,1,1 ,22,1020,311896,1,1 ,22,1020,311904,1,1 ,20,23810,21807714,24,0 ,22,1020,311912,1,1 ,22,1020,311920,1,1 ,22,1020,311928,1,1 ,22,1020,311936,1,1 ,20,17055,4506242,96,0 ,45,15153,5554820,16,0 ,17,923,6603396,32,0 ,45,15153,5030532,16,0 ,22,1020,311944,1,1 ,22,1020,311952,1,1 ,22,1020,311960,1,1 ,22,1020,311968,1,1 ,20,20789,13943458,76,0 ,22,1020,311976,1,1 ,22,1020,311984,1,1 ,22,1020,311992,1,1 ,22,1020,312000,1,1 ,20,23136,20234946,76,0 ,20,21970,17613506,1272,0 ,44,15152,2933444,32,0 ,22,1020,312008,1,1 ,22,1020,312016,1,1 ,22,1020,312024,1,1 ,22,1020,312032,1,1 ,22,1020,312040,1,1 ,22,1020,312048,1,1 ,22,1020,312056,1,1 ,22,1020,312064,1,1 ,17,923,8176388,40,0 ,17,923,7127812,24,0 ,44,15152,312068,40,0 ,45,15153,3982084,32,0 ,45,15153,4506372,64,0 ,45,15153,5030660,48,0 ,45,15153,5554948,24,0 ,22,1020,312072,1,1 ,22,1020,312080,1,1 ,22,1020,312088,1,1 ,22,1020,312096,1,1 ,20,23811,21807906,24,0 ,20,15462,836386,196,0 ,22,1020,312104,1,1 ,22,1020,312112,1,1 ,22,1020,312120,1,1 ,22,1020,312128,1,1 ,20,19202,9749314,424,0 ,20,16787,3982146,1144,0 ,17,923,10273604,56,0 ,44,15152,2409284,40,0 ,17,923,9225028,24,0 ,22,1020,312136,1,1 ,22,1020,312144,1,1 ,22,1020,312152,1,1 ,22,1020,312160,1,1 ,22,1020,312168,1,1 ,22,1020,312176,1,1 ,22,1020,312184,1,1 ,22,1020,312192,1,1 ,17,923,8700804,48,0 ,17,923,7652228,56,0 ,17,923,6603652,32,0 ,22,1020,312200,1,1 ,22,1020,312208,1,1 ,22,1020,312216,1,1 ,22,1020,312224,1,1 ,20,17608,6079394,624,0 ,22,1020,312232,1,1 ,22,1020,312240,1,1 ,22,1020,312248,1,1 ,22,1020,312256,1,1 ,45,15153,5555140,64,0 ,17,923,7128004,32,0 ,44,15152,2933700,24,0 ,22,1020,312264,1,1 ,22,1020,312272,1,1 ,22,1020,312280,1,1 ,22,1020,312288,1,1 ,20,23812,21808098,44,0 ,22,1020,312296,1,1 ,22,1020,312304,1,1 ,22,1020,312312,1,1 ,22,1020,312320,1,1 ,17,923,9225220,32,0 ,44,15152,1360900,24,0 ,45,15153,3982340,16,0 ,22,1020,312328,1,1 ,22,1020,312336,1,1 ,22,1020,312344,1,1 ,22,1020,312352,1,1 ,20,25765,27051042,148,0 ,22,1020,312360,1,1 ,22,1020,312368,1,1 ,22,1020,312376,1,1 ,22,1020,312384,1,1 ,17,923,8176708,24,0 ,44,15152,312388,32,0 ,22,1020,312392,1,1 ,22,1020,312400,1,1 ,22,1020,312408,1,1 ,22,1020,312416,1,1 ,20,22830,19711074,116,0 ,20,25458,26002530,1316,0 ,22,1020,312424,1,1 ,22,1020,312432,1,1 ,22,1020,312440,1,1 ,22,1020,312448,1,1 ,45,15153,5031044,48,0 ,17,923,6603908,32,0 ,44,15152,2933892,40,0 ,44,15152,2409604,40,0 ,45,15153,3982468,40,0 ,22,1020,312456,1,1 ,22,1020,312464,1,1 ,22,1020,312472,1,1 ,22,1020,312480,1,1 ,22,1020,312488,1,1 ,22,1020,312496,1,1 ,22,1020,312504,1,1 ,22,1020,312512,1,1 ,44,15152,1361092,24,0 ,17,923,7128260,24,0 ,22,1020,312520,1,1 ,22,1020,312528,1,1 ,22,1020,312536,1,1 ,22,1020,312544,1,1 ,22,1020,312552,1,1 ,22,1020,312560,1,1 ,22,1020,312568,1,1 ,22,1020,312576,1,1 ,20,20790,13944066,32,0 ,20,25030,24954114,228,0 ,17,923,10274052,32,0 ,45,15153,4506884,40,0 ,17,923,8176900,32,0 ,17,923,8701188,40,0 ,17,923,9225476,32,0 ,22,1020,312584,1,1 ,22,1020,312592,1,1 ,22,1020,312600,1,1 ,22,1020,312608,1,1 ,20,23137,20235554,204,0 ,20,20306,12895522,80,0 ,22,1020,312616,1,1 ,22,1020,312624,1,1 ,22,1020,312632,1,1 ,22,1020,312640,1,1 ,20,23813,21808450,116,0 ,17,923,9749828,72,0 ,17,923,7652676,56,0 ,44,15152,312644,24,0 ,22,1020,312648,1,1 ,22,1020,312656,1,1 ,22,1020,312664,1,1 ,22,1020,312672,1,1 ,20,24593,23905634,492,0 ,22,1020,312680,1,1 ,22,1020,312688,1,1 ,22,1020,312696,1,1 ,22,1020,312704,1,1 ,20,17056,4507010,480,0 ,44,15152,3458436,200,0 ,17,923,7128452,24,0 ,17,923,6604164,32,0 ,44,15152,1361284,24,0 ,22,1020,312712,1,1 ,22,1020,312720,1,1 ,22,1020,312728,1,1 ,22,1020,312736,1,1 ,20,21613,16565666,172,0 ,22,1020,312744,1,1 ,22,1020,312752,1,1 ,22,1020,312760,1,1 ,22,1020,312768,1,1 ,20,20171,11847106,4676,0 ,45,15153,5555652,120,0 ,44,15152,2934212,24,0 ,44,15152,2409924,40,0 ,44,15152,837060,32,0 ,45,15153,3982788,16,0 ,22,1020,312776,1,1 ,22,1020,312784,1,1 ,22,1020,312792,1,1 ,22,1020,312800,1,1 ,22,1020,312808,1,1 ,22,1020,312816,1,1 ,22,1020,312824,1,1 ,22,1020,312832,1,1 ,20,20791,13944322,32,0 ,20,16471,3458562,1076,0 ,17,923,10274308,24,0 ,44,15152,312836,200,0 ,45,15153,5031428,56,0 ,17,923,8177156,40,0 ,17,923,9225732,24,0 ,22,1020,312840,1,1 ,22,1020,312848,1,1 ,22,1020,312856,1,1 ,22,1020,312864,1,1 ,22,1020,312872,1,1 ,22,1020,312880,1,1 ,22,1020,312888,1,1 ,22,1020,312896,1,1 ,17,923,8701508,48,0 ,17,923,7128644,32,0 ,44,15152,1361476,40,0 ,45,15153,3982916,24,0 ,45,15153,4507204,16,0 ,22,1020,312904,1,1 ,22,1020,312912,1,1 ,22,1020,312920,1,1 ,22,1020,312928,1,1 ,22,1020,312936,1,1 ,22,1020,312944,1,1 ,22,1020,312952,1,1 ,22,1020,312960,1,1 ,44,15152,2934404,24,0 ,17,923,6604420,40,0 ,22,1020,312968,1,1 ,22,1020,312976,1,1 ,22,1020,312984,1,1 ,22,1020,312992,1,1 ,22,1020,313000,1,1 ,22,1020,313008,1,1 ,22,1020,313016,1,1 ,22,1020,313024,1,1 ,17,923,10274500,40,0 ,44,15152,837316,72,0 ,45,15153,4507332,88,0 ,17,923,9225924,24,0 ,22,1020,313032,1,1 ,22,1020,313040,1,1 ,22,1020,313048,1,1 ,22,1020,313056,1,1 ,22,1020,313064,1,1 ,22,1020,313072,1,1 ,22,1020,313080,1,1 ,22,1020,313088,1,1 ,20,20792,13944578,112,0 ,45,15153,3983108,16,0 ,17,923,7653124,48,0 ,44,15152,2410244,40,0 ,22,1020,313096,1,1 ,22,1020,313104,1,1 ,22,1020,313112,1,1 ,22,1020,313120,1,1 ,20,18761,8701730,148,0 ,22,1020,313128,1,1 ,22,1020,313136,1,1 ,22,1020,313144,1,1 ,22,1020,313152,1,1 ,17,923,8177476,40,0 ,17,923,7128900,24,0 ,44,15152,2934596,72,0 ,22,1020,313160,1,1 ,22,1020,313168,1,1 ,22,1020,313176,1,1 ,22,1020,313184,1,1 ,22,1020,313192,1,1 ,22,1020,313200,1,1 ,22,1020,313208,1,1 ,22,1020,313216,1,1 ,17,923,9750404,24,0 ,44,15152,1361796,48,0 ,45,15153,3983236,24,0 ,17,923,9226116,32,0 ,22,1020,313224,1,1 ,22,1020,313232,1,1 ,22,1020,313240,1,1 ,22,1020,313248,1,1 ,20,20307,12896162,12,0 ,20,19018,9226146,1704,0 ,22,1020,313256,1,1 ,22,1020,313264,1,1 ,22,1020,313272,1,1 ,22,1020,313280,1,1 ,17,923,8701892,48,0 ,17,923,6604740,24,0 ,44,15152,1886148,24,0 ,45,15153,5031876,24,0 ,22,1020,313288,1,1 ,22,1020,313296,1,1 ,22,1020,313304,1,1 ,22,1020,313312,1,1 ,20,24031,22333410,36,0 ,22,1020,313320,1,1 ,22,1020,313328,1,1 ,22,1020,313336,1,1 ,22,1020,313344,1,1 ,20,22831,19712002,132,0 ,20,20308,12896258,84,0 ,20,22127,18139138,360,0 ,17,923,10274820,56,0 ,17,923,7129092,32,0 ,22,1020,313352,1,1 ,22,1020,313360,1,1 ,22,1020,313368,1,1 ,22,1020,313376,1,1 ,22,1020,313384,1,1 ,22,1020,313392,1,1 ,22,1020,313400,1,1 ,22,1020,313408,1,1 ,17,923,9750596,56,0 ,44,15152,2410564,40,0 ,45,15153,3983428,56,0 ,22,1020,313416,1,1 ,22,1020,313424,1,1 ,22,1020,313432,1,1 ,22,1020,313440,1,1 ,20,21041,15517794,328,0 ,20,17419,5556322,304,0 ,22,1020,313448,1,1 ,22,1020,313456,1,1 ,22,1020,313464,1,1 ,22,1020,313472,1,1 ,17,923,9226372,56,0 ,17,923,7653508,40,0 ,17,923,6604932,40,0 ,44,15152,1886340,408,0 ,45,15153,5032068,16,0 ,17,923,8177796,48,0 ,22,1020,313480,1,1 ,22,1020,313488,1,1 ,22,1020,313496,1,1 ,22,1020,313504,1,1 ,20,25592,26527906,280,0 ,22,1020,313512,1,1 ,22,1020,313520,1,1 ,22,1020,313528,1,1 ,22,1020,313536,1,1 ,20,21386,16042178,380,0 ,20,25766,27052226,148,0 ,22,1020,313544,1,1 ,22,1020,313552,1,1 ,22,1020,313560,1,1 ,22,1020,313568,1,1 ,20,23814,21809378,256,0 ,22,1020,313576,1,1 ,22,1020,313584,1,1 ,22,1020,313592,1,1 ,22,1020,313600,1,1 ,20,24447,23382274,68,0 ,20,24032,22333698,56,0 ,45,15153,5032196,16,0 ,17,923,7129348,24,0 ,44,15152,1362180,40,0 ,44,15152,837892,24,0 ,22,1020,313608,1,1 ,22,1020,313616,1,1 ,22,1020,313624,1,1 ,22,1020,313632,1,1 ,22,1020,313640,1,1 ,22,1020,313648,1,1 ,22,1020,313656,1,1 ,22,1020,313664,1,1 ,20,15463,837954,104,0 ,17,923,8702276,32,0 ,22,1020,313672,1,1 ,22,1020,313680,1,1 ,22,1020,313688,1,1 ,22,1020,313696,1,1 ,22,1020,313704,1,1 ,22,1020,313712,1,1 ,22,1020,313720,1,1 ,22,1020,313728,1,1 ,45,15153,5556612,40,0 ,44,15152,2935172,24,0 ,44,15152,2410884,24,0 ,45,15153,4508036,24,0 ,45,15153,5032324,96,0 ,22,1020,313736,1,1 ,22,1020,313744,1,1 ,22,1020,313752,1,1 ,22,1020,313760,1,1 ,20,22413,18663842,76,0 ,20,19783,10799522,12,0 ,22,1020,313768,1,1 ,22,1020,313776,1,1 ,22,1020,313784,1,1 ,22,1020,313792,1,1 ,17,923,10275268,48,0 ,17,923,7653828,56,0 ,17,923,7129540,32,0 ,17,923,6605252,32,0 ,44,15152,838084,24,0 ,22,1020,313800,1,1 ,22,1020,313808,1,1 ,22,1020,313816,1,1 ,22,1020,313824,1,1 ,20,22605,19188194,996,0 ,22,1020,313832,1,1 ,22,1020,313840,1,1 ,22,1020,313848,1,1 ,22,1020,313856,1,1 ,20,19784,10799618,12,0 ,17,923,9751044,72,0 ,45,15153,3983876,88,0 ,17,923,8178180,32,0 ,22,1020,313864,1,1 ,22,1020,313872,1,1 ,22,1020,313880,1,1 ,22,1020,313888,1,1 ,22,1020,313896,1,1 ,22,1020,313904,1,1 ,22,1020,313912,1,1 ,22,1020,313920,1,1 ,20,17198,5032514,160,0 ,20,25227,25479746,388,0 ,17,923,9226820,48,0 ,44,15152,2935364,24,0 ,44,15152,2411076,24,0 ,44,15152,1362500,48,0 ,45,15153,4508228,24,0 ,17,923,8702532,32,0 ,22,1020,313928,1,1 ,22,1020,313936,1,1 ,22,1020,313944,1,1 ,22,1020,313952,1,1 ,20,19785,10799714,12,0 ,22,1020,313960,1,1 ,22,1020,313968,1,1 ,22,1020,313976,1,1 ,22,1020,313984,1,1 ,20,20793,13945474,572,0 ,44,15152,838276,184,0 ,22,1020,313992,1,1 ,22,1020,314000,1,1 ,22,1020,314008,1,1 ,22,1020,314016,1,1 ,20,20309,12896930,440,0 ,22,1020,314024,1,1 ,22,1020,314032,1,1 ,22,1020,314040,1,1 ,22,1020,314048,1,1 ,20,24033,22334146,188,0 ,20,19786,10799810,12,0 ,45,15153,5556932,24,0 ,17,923,7129796,24,0 ,17,923,6605508,32,0 ,22,1020,314056,1,1 ,22,1020,314064,1,1 ,22,1020,314072,1,1 ,22,1020,314080,1,1 ,22,1020,314088,1,1 ,22,1020,314096,1,1 ,22,1020,314104,1,1 ,22,1020,314112,1,1 ,20,21614,16567042,168,0 ,17,923,8178436,40,0 ,44,15152,2935556,40,0 ,44,15152,2411268,24,0 ,45,15153,4508420,16,0 ,22,1020,314120,1,1 ,22,1020,314128,1,1 ,22,1020,314136,1,1 ,22,1020,314144,1,1 ,20,24448,23382818,3796,0 ,20,19787,10799906,96,0 ,22,1020,314152,1,1 ,22,1020,314160,1,1 ,22,1020,314168,1,1 ,22,1020,314176,1,1 ,17,923,10275652,24,0 ,17,923,8702788,24,0 ,22,1020,314184,1,1 ,22,1020,314192,1,1 ,22,1020,314200,1,1 ,22,1020,314208,1,1 ,20,20909,14994274,500,0 ,22,1020,314216,1,1 ,22,1020,314224,1,1 ,22,1020,314232,1,1 ,22,1020,314240,1,1 ,20,23138,20237186,64,0 ,20,15266,314242,176,0 ,45,15153,5557124,24,0 ,17,923,7654276,24,0 ,17,923,7129988,24,0 ,45,15153,4508548,16,0 ,22,1020,314248,1,1 ,22,1020,314256,1,1 ,22,1020,314264,1,1 ,22,1020,314272,1,1 ,22,1020,314280,1,1 ,22,1020,314288,1,1 ,22,1020,314296,1,1 ,22,1020,314304,1,1 ,20,18762,8702914,12,0 ,17,923,9227204,24,0 ,17,923,6605764,32,0 ,44,15152,2411460,24,0 ,44,15152,1362884,40,0 ,44,15152,3460036,152,0 ,22,1020,314312,1,1 ,22,1020,314320,1,1 ,22,1020,314328,1,1 ,22,1020,314336,1,1 ,22,1020,314344,1,1 ,22,1020,314352,1,1 ,22,1020,314360,1,1 ,22,1020,314368,1,1 ,20,22414,18664450,152,0 ,17,923,10275844,40,0 ,45,15153,4508676,40,0 ,17,923,8702980,72,0 ,22,1020,314376,1,1 ,22,1020,314384,1,1 ,22,1020,314392,1,1 ,22,1020,314400,1,1 ,20,22832,19713058,128,0 ,20,25031,24955938,220,0 ,20,18763,8703010,192,0 ,22,1020,314408,1,1 ,22,1020,314416,1,1 ,22,1020,314424,1,1 ,22,1020,314432,1,1 ,17,923,9751620,128,0 ,17,923,7654468,64,0 ,17,923,7130180,40,0 ,44,15152,2935876,32,0 ,44,15152,314436,24,0 ,45,15153,5557316,24,0 ,17,923,8178756,32,0 ,22,1020,314440,1,1 ,22,1020,314448,1,1 ,22,1020,314456,1,1 ,22,1020,314464,1,1 ,22,1020,314472,1,1 ,22,1020,314480,1,1 ,22,1020,314488,1,1 ,22,1020,314496,1,1 ,20,15464,838786,12,0 ,17,923,9227396,56,0 ,44,15152,2411652,48,0 ,45,15153,5033092,16,0 ,22,1020,314504,1,1 ,22,1020,314512,1,1 ,22,1020,314520,1,1 ,22,1020,314528,1,1 ,22,1020,314536,1,1 ,22,1020,314544,1,1 ,22,1020,314552,1,1 ,22,1020,314560,1,1 ,45,15153,3984580,32,0 ,17,923,6606020,32,0 ,22,1020,314568,1,1 ,22,1020,314576,1,1 ,22,1020,314584,1,1 ,22,1020,314592,1,1 ,20,15465,838882,56,0 ,22,1020,314600,1,1 ,22,1020,314608,1,1 ,22,1020,314616,1,1 ,22,1020,314624,1,1 ,20,19521,10276098,500,0 ,45,15153,5557508,24,0 ,44,15152,1363204,24,0 ,44,15152,314628,2368,0 ,45,15153,5033220,16,0 ,22,1020,314632,1,1 ,22,1020,314640,1,1 ,22,1020,314648,1,1 ,22,1020,314656,1,1 ,20,23414,20761890,108,0 ,22,1020,314664,1,1 ,22,1020,314672,1,1 ,22,1020,314680,1,1 ,22,1020,314688,1,1 ,17,923,10276164,24,0 ,44,15152,2936132,24,0 ,45,15153,4508996,32,0 ,17,923,8179012,48,0 ,22,1020,314696,1,1 ,22,1020,314704,1,1 ,22,1020,314712,1,1 ,22,1020,314720,1,1 ,20,25767,27053410,516,0 ,22,1020,314728,1,1 ,22,1020,314736,1,1 ,22,1020,314744,1,1 ,22,1020,314752,1,1 ,20,23139,20237698,36,0 ,45,15153,5033348,24,0 ,17,923,7130500,24,0 ,22,1020,314760,1,1 ,22,1020,314768,1,1 ,22,1020,314776,1,1 ,22,1020,314784,1,1 ,22,1020,314792,1,1 ,22,1020,314800,1,1 ,22,1020,314808,1,1 ,22,1020,314816,1,1 ,45,15153,5557700,56,0 ,17,923,6606276,32,0 ,44,15152,1363396,64,0 ,45,15153,3984836,72,0 ,22,1020,314824,1,1 ,22,1020,314832,1,1 ,22,1020,314840,1,1 ,22,1020,314848,1,1 ,22,1020,314856,1,1 ,22,1020,314864,1,1 ,22,1020,314872,1,1 ,22,1020,314880,1,1 ,17,923,10276356,24,0 ,44,15152,2936324,48,0 ,44,15152,2412036,40,0 ,22,1020,314888,1,1 ,22,1020,314896,1,1 ,22,1020,314904,1,1 ,22,1020,314912,1,1 ,20,19788,10800674,120,0 ,22,1020,314920,1,1 ,22,1020,314928,1,1 ,22,1020,314936,1,1 ,22,1020,314944,1,1 ,17,923,9227844,24,0 ,17,923,7654980,56,0 ,17,923,7130692,24,0 ,45,15153,4509252,24,0 ,45,15153,5033540,24,0 ,17,923,8703556,56,0 ,22,1020,314952,1,1 ,22,1020,314960,1,1 ,22,1020,314968,1,1 ,22,1020,314976,1,1 ,22,1020,314984,1,1 ,22,1020,314992,1,1 ,22,1020,315000,1,1 ,22,1020,315008,1,1 ,22,1020,315016,1,1 ,22,1020,315024,1,1 ,22,1020,315032,1,1 ,22,1020,315040,1,1 ,20,23140,20237986,1004,0 ,20,15466,839330,304,0 ,22,1020,315048,1,1 ,22,1020,315056,1,1 ,22,1020,315064,1,1 ,22,1020,315072,1,1 ,17,923,10276548,16,0 ,17,923,6606532,32,0 ,17,923,8179396,48,0 ,22,1020,315080,1,1 ,22,1020,315088,1,1 ,22,1020,315096,1,1 ,22,1020,315104,1,1 ,22,1020,315112,1,1 ,22,1020,315120,1,1 ,22,1020,315128,1,1 ,22,1020,315136,1,1 ,17,923,9228036,32,0 ,17,923,7130884,24,0 ,45,15153,4509444,16,0 ,45,15153,5033732,40,0 ,22,1020,315144,1,1 ,22,1020,315152,1,1 ,22,1020,315160,1,1 ,22,1020,315168,1,1 ,22,1020,315176,1,1 ,22,1020,315184,1,1 ,22,1020,315192,1,1 ,22,1020,315200,1,1 ,20,17199,5033794,160,0 ,17,923,10276676,48,0 ,44,15152,2412356,24,0 ,22,1020,315208,1,1 ,22,1020,315216,1,1 ,22,1020,315224,1,1 ,22,1020,315232,1,1 ,20,15703,1363810,200,0 ,22,1020,315240,1,1 ,22,1020,315248,1,1 ,22,1020,315256,1,1 ,22,1020,315264,1,1 ,45,15153,5558148,48,0 ,44,15152,2936708,40,0 ,45,15153,4509572,64,0 ,22,1020,315272,1,1 ,22,1020,315280,1,1 ,22,1020,315288,1,1 ,22,1020,315296,1,1 ,22,1020,315304,1,1 ,22,1020,315312,1,1 ,22,1020,315320,1,1 ,22,1020,315328,1,1 ,44,15152,1363908,16,0 ,17,923,7131076,24,0 ,17,923,6606788,32,0 ,22,1020,315336,1,1 ,22,1020,315344,1,1 ,22,1020,315352,1,1 ,22,1020,315360,1,1 ,22,1020,315368,1,1 ,22,1020,315376,1,1 ,22,1020,315384,1,1 ,22,1020,315392,1,1 ,17,923,9228292,32,0 ,17,923,7655428,64,0 ,44,15152,2412548,48,0 ,45,15153,3985412,48,0 ,17,923,8704004,24,0 ,22,1020,315400,1,1 ,22,1020,315408,1,1 ,22,1020,315416,1,1 ,22,1020,315424,1,1 ,20,22833,19714082,132,0 ,22,1020,315432,1,1 ,22,1020,315440,1,1 ,22,1020,315448,1,1 ,22,1020,315456,1,1 ,20,21615,16568386,132,0 ,17,923,9752644,72,0 ,44,15152,1364036,24,0 ,44,15152,839748,24,0 ,45,15153,5034052,16,0 ,17,923,8179780,32,0 ,22,1020,315464,1,1 ,22,1020,315472,1,1 ,22,1020,315480,1,1 ,22,1020,315488,1,1 ,22,1020,315496,1,1 ,22,1020,315504,1,1 ,22,1020,315512,1,1 ,22,1020,315520,1,1 ,20,23415,20762754,100,0 ,20,19203,9752706,80,0 ,44,15152,3461252,496,0 ,17,923,7131268,24,0 ,22,1020,315528,1,1 ,22,1020,315536,1,1 ,22,1020,315544,1,1 ,22,1020,315552,1,1 ,20,24034,22335650,128,0 ,22,1020,315560,1,1 ,22,1020,315568,1,1 ,22,1020,315576,1,1 ,22,1020,315584,1,1 ,20,22415,18665666,52,0 ,17,923,10277060,64,0 ,17,923,6607044,32,0 ,44,15152,2937028,24,0 ,45,15153,5034180,48,0 ,17,923,8704196,32,0 ,22,1020,315592,1,1 ,22,1020,315600,1,1 ,22,1020,315608,1,1 ,22,1020,315616,1,1 ,20,23815,21811426,256,0 ,22,1020,315624,1,1 ,22,1020,315632,1,1 ,22,1020,315640,1,1 ,22,1020,315648,1,1 ,20,15267,315650,292,0 ,20,25996,27578626,52,0 ,17,923,9228548,40,0 ,44,15152,1364228,24,0 ,44,15152,839940,80,0 ,45,15153,5558532,88,0 ,22,1020,315656,1,1 ,22,1020,315664,1,1 ,22,1020,315672,1,1 ,22,1020,315680,1,1 ,22,1020,315688,1,1 ,22,1020,315696,1,1 ,22,1020,315704,1,1 ,22,1020,315712,1,1 ,17,923,8180036,32,0 ,17,923,7131460,24,0 ,22,1020,315720,1,1 ,22,1020,315728,1,1 ,22,1020,315736,1,1 ,22,1020,315744,1,1 ,20,25593,26530146,280,0 ,22,1020,315752,1,1 ,22,1020,315760,1,1 ,22,1020,315768,1,1 ,22,1020,315776,1,1 ,45,15153,4510084,24,0 ,44,15152,2937220,24,0 ,44,15152,2412932,24,0 ,45,15153,3985796,40,0 ,22,1020,315784,1,1 ,22,1020,315792,1,1 ,22,1020,315800,1,1 ,22,1020,315808,1,1 ,22,1020,315816,1,1 ,22,1020,315824,1,1 ,22,1020,315832,1,1 ,22,1020,315840,1,1 ,17,923,8704452,24,0 ,17,923,6607300,40,0 ,44,15152,1364420,24,0 ,22,1020,315848,1,1 ,22,1020,315856,1,1 ,22,1020,315864,1,1 ,22,1020,315872,1,1 ,20,19789,10801634,204,0 ,20,17420,5558754,276,0 ,22,1020,315880,1,1 ,22,1020,315888,1,1 ,22,1020,315896,1,1 ,22,1020,315904,1,1 ,17,923,7131652,40,0 ,17,923,7655940,40,0 ,22,1020,315912,1,1 ,22,1020,315920,1,1 ,22,1020,315928,1,1 ,22,1020,315936,1,1 ,20,18764,8704546,296,0 ,22,1020,315944,1,1 ,22,1020,315952,1,1 ,22,1020,315960,1,1 ,22,1020,315968,1,1 ,17,923,9228868,40,0 ,44,15152,2937412,24,0 ,44,15152,2413124,48,0 ,45,15153,4510276,88,0 ,45,15153,5034564,40,0 ,17,923,8180292,40,0 ,22,1020,315976,1,1 ,22,1020,315984,1,1 ,22,1020,315992,1,1 ,22,1020,316000,1,1 ,20,22416,18666082,444,0 ,22,1020,316008,1,1 ,22,1020,316016,1,1 ,22,1020,316024,1,1 ,22,1020,316032,1,1 ,17,923,9753220,72,0 ,44,15152,1364612,16,0 ,17,923,8704644,48,0 ,22,1020,316040,1,1 ,22,1020,316048,1,1 ,22,1020,316056,1,1 ,22,1020,316064,1,1 ,20,21042,15520418,364,0 ,20,25997,27579042,1208,0 ,22,1020,316072,1,1 ,22,1020,316080,1,1 ,22,1020,316088,1,1 ,22,1020,316096,1,1 ,17,923,10277572,80,0 ,45,15153,3986116,88,0 ,22,1020,316104,1,1 ,22,1020,316112,1,1 ,22,1020,316120,1,1 ,22,1020,316128,1,1 ,22,1020,316136,1,1 ,22,1020,316144,1,1 ,22,1020,316152,1,1 ,22,1020,316160,1,1 ,20,19204,9753346,48,0 ,20,25032,24957698,240,0 ,44,15152,1364740,24,0 ,17,923,6607620,32,0 ,44,15152,2937604,24,0 ,22,1020,316168,1,1 ,22,1020,316176,1,1 ,22,1020,316184,1,1 ,22,1020,316192,1,1 ,22,1020,316200,1,1 ,22,1020,316208,1,1 ,22,1020,316216,1,1 ,22,1020,316224,1,1 ,20,22128,18142018,356,0 ,20,17824,6607682,516,0 ,17,923,7131972,24,0 ,17,923,7656260,48,0 ,22,1020,316232,1,1 ,22,1020,316240,1,1 ,22,1020,316248,1,1 ,22,1020,316256,1,1 ,22,1020,316264,1,1 ,22,1020,316272,1,1 ,22,1020,316280,1,1 ,22,1020,316288,1,1 ,17,923,9229188,40,0 ,44,15152,840580,40,0 ,45,15153,5034884,112,0 ,17,923,8180612,32,0 ,22,1020,316296,1,1 ,22,1020,316304,1,1 ,22,1020,316312,1,1 ,22,1020,316320,1,1 ,20,23416,20763554,1124,0 ,22,1020,316328,1,1 ,22,1020,316336,1,1 ,22,1020,316344,1,1 ,22,1020,316352,1,1 ,45,15153,5559236,16,0 ,44,15152,2937796,56,0 ,44,15152,2413508,48,0 ,44,15152,1364932,24,0 ,22,1020,316360,1,1 ,22,1020,316368,1,1 ,22,1020,316376,1,1 ,22,1020,316384,1,1 ,22,1020,316392,1,1 ,22,1020,316400,1,1 ,22,1020,316408,1,1 ,22,1020,316416,1,1 ,17,923,8705028,40,0 ,17,923,7132164,24,0 ,17,923,6607876,40,0 ,22,1020,316424,1,1 ,22,1020,316432,1,1 ,22,1020,316440,1,1 ,22,1020,316448,1,1 ,22,1020,316456,1,1 ,22,1020,316464,1,1 ,22,1020,316472,1,1 ,22,1020,316480,1,1 ,20,22834,19715138,132,0 ,20,17200,5035074,324,0 ,45,15153,5559364,40,0 ,22,1020,316488,1,1 ,22,1020,316496,1,1 ,22,1020,316504,1,1 ,22,1020,316512,1,1 ,20,21616,16569442,172,0 ,22,1020,316520,1,1 ,22,1020,316528,1,1 ,22,1020,316536,1,1 ,22,1020,316544,1,1 ,20,19205,9753730,200,0 ,20,17057,4510850,164,0 ,17,923,8180868,40,0 ,44,15152,1365124,152,0 ,22,1020,316552,1,1 ,22,1020,316560,1,1 ,22,1020,316568,1,1 ,22,1020,316576,1,1 ,20,24035,22336674,132,0 ,20,21387,16045218,172,0 ,22,1020,316584,1,1 ,22,1020,316592,1,1 ,22,1020,316600,1,1 ,22,1020,316608,1,1 ,20,24594,23909570,584,0 ,17,923,9753796,72,0 ,17,923,7656644,48,0 ,17,923,7132356,40,0 ,44,15152,840900,24,0 ,17,923,9229508,24,0 ,22,1020,316616,1,1 ,22,1020,316624,1,1 ,22,1020,316632,1,1 ,22,1020,316640,1,1 ,22,1020,316648,1,1 ,22,1020,316656,1,1 ,22,1020,316664,1,1 ,22,1020,316672,1,1 ,20,24246,22861058,1248,0 ,45,15153,4510980,40,0 ,22,1020,316680,1,1 ,22,1020,316688,1,1 ,22,1020,316696,1,1 ,22,1020,316704,1,1 ,22,1020,316712,1,1 ,22,1020,316720,1,1 ,22,1020,316728,1,1 ,22,1020,316736,1,1 ,17,923,10278212,16,0 ,17,923,6608196,40,0 ,44,15152,2413892,48,0 ,44,15152,1889604,432,0 ,17,923,8705348,40,0 ,22,1020,316744,1,1 ,22,1020,316752,1,1 ,22,1020,316760,1,1 ,22,1020,316768,1,1 ,22,1020,316776,1,1 ,22,1020,316784,1,1 ,22,1020,316792,1,1 ,22,1020,316800,1,1 ,17,923,9229700,104,0 ,44,15152,2938244,24,0 ,44,15152,841092,40,0 ,45,15153,3986820,24,0 ,45,15153,5559684,24,0 ,22,1020,316808,1,1 ,22,1020,316816,1,1 ,22,1020,316824,1,1 ,22,1020,316832,1,1 ,20,15704,1365410,92,0 ,22,1020,316840,1,1 ,22,1020,316848,1,1 ,22,1020,316856,1,1 ,22,1020,316864,1,1 ,17,923,10278340,40,0 ,17,923,8181188,24,0 ,22,1020,316872,1,1 ,22,1020,316880,1,1 ,22,1020,316888,1,1 ,22,1020,316896,1,1 ,22,1020,316904,1,1 ,22,1020,316912,1,1 ,22,1020,316920,1,1 ,22,1020,316928,1,1 ,20,23624,21288450,544,0 ,17,923,7132676,40,0 ,22,1020,316936,1,1 ,22,1020,316944,1,1 ,22,1020,316952,1,1 ,22,1020,316960,1,1 ,22,1020,316968,1,1 ,22,1020,316976,1,1 ,22,1020,316984,1,1 ,22,1020,316992,1,1 ,45,15153,5559876,24,0 ,17,923,7657028,32,0 ,44,15152,2938436,24,0 ,45,15153,3987012,16,0 ,45,15153,4511300,16,0 ,22,1020,317000,1,1 ,22,1020,317008,1,1 ,22,1020,317016,1,1 ,22,1020,317024,1,1 ,20,25228,25482850,392,0 ,22,1020,317032,1,1 ,22,1020,317040,1,1 ,22,1020,317048,1,1 ,22,1020,317056,1,1 ,17,923,8705668,48,0 ,17,923,6608516,32,0 ,17,923,8181380,48,0 ,22,1020,317064,1,1 ,22,1020,317072,1,1 ,22,1020,317080,1,1 ,22,1020,317088,1,1 ,22,1020,317096,1,1 ,22,1020,317104,1,1 ,22,1020,317112,1,1 ,22,1020,317120,1,1 ,45,15153,4511428,32,0 ,44,15152,2414276,48,0 ,44,15152,841412,24,0 ,45,15153,3987140,24,0 ,22,1020,317128,1,1 ,22,1020,317136,1,1 ,22,1020,317144,1,1 ,22,1020,317152,1,1 ,22,1020,317160,1,1 ,22,1020,317168,1,1 ,22,1020,317176,1,1 ,22,1020,317184,1,1 ,17,923,10278660,24,0 ,44,15152,2938628,48,0 ,45,15153,5035780,24,0 ,45,15153,5560068,56,0 ,17,923,9754372,24,0 ,22,1020,317192,1,1 ,22,1020,317200,1,1 ,22,1020,317208,1,1 ,22,1020,317216,1,1 ,20,17609,6084386,108,0 ,22,1020,317224,1,1 ,22,1020,317232,1,1 ,22,1020,317240,1,1 ,22,1020,317248,1,1 ,17,923,7132996,40,0 ,17,923,7657284,40,0 ,22,1020,317256,1,1 ,22,1020,317264,1,1 ,22,1020,317272,1,1 ,22,1020,317280,1,1 ,22,1020,317288,1,1 ,22,1020,317296,1,1 ,22,1020,317304,1,1 ,22,1020,317312,1,1 ,45,15153,3987332,48,0 ,17,923,6608772,32,0 ,44,15152,841604,192,0 ,22,1020,317320,1,1 ,22,1020,317328,1,1 ,22,1020,317336,1,1 ,22,1020,317344,1,1 ,22,1020,317352,1,1 ,22,1020,317360,1,1 ,22,1020,317368,1,1 ,22,1020,317376,1,1 ,20,26457,29153218,156,0 ,17,923,10278852,32,0 ,45,15153,4511684,24,0 ,45,15153,5035972,144,0 ,17,923,9754564,80,0 ,22,1020,317384,1,1 ,22,1020,317392,1,1 ,22,1020,317400,1,1 ,22,1020,317408,1,1 ,22,1020,317416,1,1 ,22,1020,317424,1,1 ,22,1020,317432,1,1 ,22,1020,317440,1,1 ,17,923,8706052,24,0 ,17,923,8181764,40,0 ,22,1020,317448,1,1 ,22,1020,317456,1,1 ,22,1020,317464,1,1 ,22,1020,317472,1,1 ,20,15467,841762,188,0 ,22,1020,317480,1,1 ,22,1020,317488,1,1 ,22,1020,317496,1,1 ,22,1020,317504,1,1 ,20,19790,10803266,204,0 ,44,15152,2414660,48,0 ,22,1020,317512,1,1 ,22,1020,317520,1,1 ,22,1020,317528,1,1 ,22,1020,317536,1,1 ,20,22835,19716194,540,0 ,20,20222,12376162,692,0 ,20,20310,12900450,160,0 ,22,1020,317544,1,1 ,22,1020,317552,1,1 ,22,1020,317560,1,1 ,22,1020,317568,1,1 ,20,20573,13424770,836,0 ,20,15705,1366146,120,0 ,45,15153,4511876,16,0 ,17,923,7657604,40,0 ,17,923,7133316,32,0 ,17,923,6609028,32,0 ,44,15152,2939012,80,0 ,22,1020,317576,1,1 ,22,1020,317584,1,1 ,22,1020,317592,1,1 ,22,1020,317600,1,1 ,20,15879,1890466,280,0 ,22,1020,317608,1,1 ,22,1020,317616,1,1 ,22,1020,317624,1,1 ,22,1020,317632,1,1 ,20,24036,22337730,132,0 ,17,923,10279108,24,0 ,45,15153,5560516,24,0 ,17,923,8706244,24,0 ,17,923,9230532,32,0 ,22,1020,317640,1,1 ,22,1020,317648,1,1 ,22,1020,317656,1,1 ,22,1020,317664,1,1 ,20,23816,21813474,120,0 ,22,1020,317672,1,1 ,22,1020,317680,1,1 ,22,1020,317688,1,1 ,22,1020,317696,1,1 ,45,15153,4512004,40,0 ,45,15153,3987716,24,0 ,22,1020,317704,1,1 ,22,1020,317712,1,1 ,22,1020,317720,1,1 ,22,1020,317728,1,1 ,22,1020,317736,1,1 ,22,1020,317744,1,1 ,22,1020,317752,1,1 ,22,1020,317760,1,1 ,17,923,8182084,32,0 ,44,15152,1366340,112,0 ,22,1020,317768,1,1 ,22,1020,317776,1,1 ,22,1020,317784,1,1 ,22,1020,317792,1,1 ,22,1020,317800,1,1 ,22,1020,317808,1,1 ,22,1020,317816,1,1 ,22,1020,317824,1,1 ,17,923,10279300,40,0 ,17,923,7133572,40,0 ,17,923,6609284,32,0 ,45,15153,5560708,16,0 ,17,923,8706436,16,0 ,22,1020,317832,1,1 ,22,1020,317840,1,1 ,22,1020,317848,1,1 ,22,1020,317856,1,1 ,20,17058,4512162,160,0 ,22,1020,317864,1,1 ,22,1020,317872,1,1 ,22,1020,317880,1,1 ,22,1020,317888,1,1 ,20,21617,16570818,148,0 ,17,923,9230788,32,0 ,17,923,7657924,40,0 ,44,15152,2415044,40,0 ,45,15153,3987908,32,0 ,22,1020,317896,1,1 ,22,1020,317904,1,1 ,22,1020,317912,1,1 ,22,1020,317920,1,1 ,22,1020,317928,1,1 ,22,1020,317936,1,1 ,22,1020,317944,1,1 ,22,1020,317952,1,1 ,20,21388,16046594,296,0 ,17,923,8706564,32,0 ,45,15153,5560836,24,0 ,22,1020,317960,1,1 ,22,1020,317968,1,1 ,22,1020,317976,1,1 ,22,1020,317984,1,1 ,20,15268,317986,132,0 ,20,25594,26532386,280,0 ,22,1020,317992,1,1 ,22,1020,318000,1,1 ,22,1020,318008,1,1 ,22,1020,318016,1,1 ,17,923,9755204,144,0 ,45,15153,4512324,32,0 ,17,923,8182340,32,0 ,22,1020,318024,1,1 ,22,1020,318032,1,1 ,22,1020,318040,1,1 ,22,1020,318048,1,1 ,22,1020,318056,1,1 ,22,1020,318064,1,1 ,22,1020,318072,1,1 ,22,1020,318080,1,1 ,20,17610,6085250,140,0 ,20,25033,24959618,60,0 ,20,17421,5560962,100,0 ,17,923,6609540,32,0 ,22,1020,318088,1,1 ,22,1020,318096,1,1 ,22,1020,318104,1,1 ,22,1020,318112,1,1 ,22,1020,318120,1,1 ,22,1020,318128,1,1 ,22,1020,318136,1,1 ,22,1020,318144,1,1 ,20,19206,9755330,440,0 ,20,24744,24435394,1732,0 ,17,923,10279620,40,0 ,17,923,7133892,32,0 ,45,15153,3988164,40,0 ,45,15153,5561028,72,0 ,17,923,9231044,32,0 ,22,1020,318152,1,1 ,22,1020,318160,1,1 ,22,1020,318168,1,1 ,22,1020,318176,1,1 ,22,1020,318184,1,1 ,22,1020,318192,1,1 ,22,1020,318200,1,1 ,22,1020,318208,1,1 ,20,20910,14998274,4832,0 ,17,923,8706820,32,0 ,17,923,7658244,32,0 ,44,15152,2939652,40,0 ,44,15152,2415364,24,0 ,22,1020,318216,1,1 ,22,1020,318224,1,1 ,22,1020,318232,1,1 ,22,1020,318240,1,1 ,22,1020,318248,1,1 ,22,1020,318256,1,1 ,22,1020,318264,1,1 ,22,1020,318272,1,1 ,17,923,8182596,48,0 ,45,15153,4512580,16,0 ,22,1020,318280,1,1 ,22,1020,318288,1,1 ,22,1020,318296,1,1 ,22,1020,318304,1,1 ,20,18765,8706914,448,0 ,22,1020,318312,1,1 ,22,1020,318320,1,1 ,22,1020,318328,1,1 ,22,1020,318336,1,1 ,17,923,6609796,32,0 ,22,1020,318344,1,1 ,22,1020,318352,1,1 ,22,1020,318360,1,1 ,22,1020,318368,1,1 ,22,1020,318376,1,1 ,22,1020,318384,1,1 ,22,1020,318392,1,1 ,22,1020,318400,1,1 ,17,923,9231300,40,0 ,17,923,7134148,24,0 ,44,15152,2415556,32,0 ,45,15153,4512708,32,0 ,22,1020,318408,1,1 ,22,1020,318416,1,1 ,22,1020,318424,1,1 ,22,1020,318432,1,1 ,22,1020,318440,1,1 ,22,1020,318448,1,1 ,22,1020,318456,1,1 ,22,1020,318464,1,1 ,17,923,10279940,24,0 ,17,923,7658500,48,0 ,45,15153,3988484,112,0 ,17,923,8707076,32,0 ,22,1020,318472,1,1 ,22,1020,318480,1,1 ,22,1020,318488,1,1 ,22,1020,318496,1,1 ,22,1020,318504,1,1 ,22,1020,318512,1,1 ,22,1020,318520,1,1 ,22,1020,318528,1,1 ,20,15706,1367106,20,0 ,45,15153,5037124,168,0 ,44,15152,2939972,24,0 ,22,1020,318536,1,1 ,22,1020,318544,1,1 ,22,1020,318552,1,1 ,22,1020,318560,1,1 ,20,20794,13950050,456,0 ,20,25034,24960098,520,0 ,22,1020,318568,1,1 ,22,1020,318576,1,1 ,22,1020,318584,1,1 ,22,1020,318592,1,1 ,17,923,6610052,32,0 ,17,923,7134340,48,0 ,22,1020,318600,1,1 ,22,1020,318608,1,1 ,22,1020,318616,1,1 ,22,1020,318624,1,1 ,20,23817,21814434,728,0 ,20,26458,29154466,108,0 ,20,19522,10280098,176,0 ,22,1020,318632,1,1 ,22,1020,318640,1,1 ,22,1020,318648,1,1 ,22,1020,318656,1,1 ,17,923,10280132,24,0 ,44,15152,2415812,32,0 ,44,15152,1367236,24,0 ,45,15153,4512964,24,0 ,17,923,8182980,56,0 ,22,1020,318664,1,1 ,22,1020,318672,1,1 ,22,1020,318680,1,1 ,22,1020,318688,1,1 ,20,24037,22338786,100,0 ,20,15707,1367266,88,0 ,22,1020,318696,1,1 ,22,1020,318704,1,1 ,22,1020,318712,1,1 ,22,1020,318720,1,1 ,17,923,9231620,24,0 ,44,15152,2940164,48,0 ,45,15153,5561604,56,0 ,17,923,8707332,56,0 ,22,1020,318728,1,1 ,22,1020,318736,1,1 ,22,1020,318744,1,1 ,22,1020,318752,1,1 ,22,1020,318760,1,1 ,22,1020,318768,1,1 ,22,1020,318776,1,1 ,22,1020,318784,1,1 ,22,1020,318792,1,1 ,22,1020,318800,1,1 ,22,1020,318808,1,1 ,22,1020,318816,1,1 ,20,20311,12901730,328,0 ,22,1020,318824,1,1 ,22,1020,318832,1,1 ,22,1020,318840,1,1 ,22,1020,318848,1,1 ,20,25768,27057538,96,0 ,17,923,10280324,40,0 ,17,923,7658884,24,0 ,17,923,6610308,32,0 ,44,15152,1367428,24,0 ,44,15152,843140,24,0 ,45,15153,4513156,32,0 ,22,1020,318856,1,1 ,22,1020,318864,1,1 ,22,1020,318872,1,1 ,22,1020,318880,1,1 ,20,17422,5561762,116,0 ,22,1020,318888,1,1 ,22,1020,318896,1,1 ,22,1020,318904,1,1 ,22,1020,318912,1,1 ,17,923,9231812,24,0 ,44,15152,2416068,32,0 ,22,1020,318920,1,1 ,22,1020,318928,1,1 ,22,1020,318936,1,1 ,22,1020,318944,1,1 ,22,1020,318952,1,1 ,22,1020,318960,1,1 ,22,1020,318968,1,1 ,22,1020,318976,1,1 ,20,21043,15523330,328,0 ,20,15468,843266,72,0 ,17,923,7134724,24,0 ,22,1020,318984,1,1 ,22,1020,318992,1,1 ,22,1020,319000,1,1 ,22,1020,319008,1,1 ,22,1020,319016,1,1 ,22,1020,319024,1,1 ,22,1020,319032,1,1 ,22,1020,319040,1,1 ,20,15269,319042,496,0 ,44,15152,843332,24,0 ,17,923,7659076,32,0 ,44,15152,1367620,32,0 ,22,1020,319048,1,1 ,22,1020,319056,1,1 ,22,1020,319064,1,1 ,22,1020,319072,1,1 ,20,22129,18144866,388,0 ,20,17201,5037666,60,0 ,20,21618,16572002,80,0 ,22,1020,319080,1,1 ,22,1020,319088,1,1 ,22,1020,319096,1,1 ,22,1020,319104,1,1 ,17,923,9232004,88,0 ,17,923,6610564,40,0 ,44,15152,2940548,120,0 ,45,15153,4513412,24,0 ,17,923,8183428,32,0 ,22,1020,319112,1,1 ,22,1020,319120,1,1 ,22,1020,319128,1,1 ,22,1020,319136,1,1 ,20,19791,10804898,156,0 ,20,17059,4513442,276,0 ,22,1020,319144,1,1 ,22,1020,319152,1,1 ,22,1020,319160,1,1 ,22,1020,319168,1,1 ,17,923,10280644,24,0 ,17,923,7134916,56,0 ,44,15152,2416324,40,0 ,45,15153,5562052,192,0 ,17,923,8707780,24,0 ,17,923,9756356,80,0 ,22,1020,319176,1,1 ,22,1020,319184,1,1 ,22,1020,319192,1,1 ,22,1020,319200,1,1 ,20,17611,6086370,12,0 ,22,1020,319208,1,1 ,22,1020,319216,1,1 ,22,1020,319224,1,1 ,22,1020,319232,1,1 ,44,15152,843524,24,0 ,22,1020,319240,1,1 ,22,1020,319248,1,1 ,22,1020,319256,1,1 ,22,1020,319264,1,1 ,22,1020,319272,1,1 ,22,1020,319280,1,1 ,22,1020,319288,1,1 ,22,1020,319296,1,1 ,20,17612,6086466,192,0 ,45,15153,4513604,32,0 ,17,923,7659332,32,0 ,44,15152,1367876,144,0 ,22,1020,319304,1,1 ,22,1020,319312,1,1 ,22,1020,319320,1,1 ,22,1020,319328,1,1 ,22,1020,319336,1,1 ,22,1020,319344,1,1 ,22,1020,319352,1,1 ,22,1020,319360,1,1 ,17,923,10280836,40,0 ,45,15153,3989380,24,0 ,17,923,8183684,40,0 ,17,923,8707972,56,0 ,22,1020,319368,1,1 ,22,1020,319376,1,1 ,22,1020,319384,1,1 ,22,1020,319392,1,1 ,20,15708,1367970,292,0 ,22,1020,319400,1,1 ,22,1020,319408,1,1 ,22,1020,319416,1,1 ,22,1020,319424,1,1 ,44,15152,843716,160,0 ,17,923,6610884,40,0 ,22,1020,319432,1,1 ,22,1020,319440,1,1 ,22,1020,319448,1,1 ,22,1020,319456,1,1 ,22,1020,319464,1,1 ,22,1020,319472,1,1 ,22,1020,319480,1,1 ,22,1020,319488,1,1 ,20,24038,22339586,168,0 ,20,26459,29155330,284,0 ,44,15152,3465220,40,0 ,44,15152,2416644,40,0 ,22,1020,319496,1,1 ,22,1020,319504,1,1 ,22,1020,319512,1,1 ,22,1020,319520,1,1 ,22,1020,319528,1,1 ,22,1020,319536,1,1 ,22,1020,319544,1,1 ,22,1020,319552,1,1 ,20,22417,18669634,12,0 ,20,15469,843842,12,0 ,20,17202,5038146,856,0 ,45,15153,4513860,80,0 ,17,923,7659588,48,0 ,45,15153,3989572,24,0 ,22,1020,319560,1,1 ,22,1020,319568,1,1 ,22,1020,319576,1,1 ,22,1020,319584,1,1 ,22,1020,319592,1,1 ,22,1020,319600,1,1 ,22,1020,319608,1,1 ,22,1020,319616,1,1 ,20,25769,27058306,264,0 ,17,923,7135364,40,0 ,22,1020,319624,1,1 ,22,1020,319632,1,1 ,22,1020,319640,1,1 ,22,1020,319648,1,1 ,20,22418,18669730,1052,0 ,20,15470,843938,104,0 ,22,1020,319656,1,1 ,22,1020,319664,1,1 ,22,1020,319672,1,1 ,22,1020,319680,1,1 ,17,923,10281156,24,0 ,17,923,8184004,40,0 ,22,1020,319688,1,1 ,22,1020,319696,1,1 ,22,1020,319704,1,1 ,22,1020,319712,1,1 ,20,21619,16572642,112,0 ,22,1020,319720,1,1 ,22,1020,319728,1,1 ,22,1020,319736,1,1 ,22,1020,319744,1,1 ,45,15153,3989764,24,0 ,17,923,6611204,32,0 ,22,1020,319752,1,1 ,22,1020,319760,1,1 ,22,1020,319768,1,1 ,22,1020,319776,1,1 ,22,1020,319784,1,1 ,22,1020,319792,1,1 ,22,1020,319800,1,1 ,22,1020,319808,1,1 ,20,17423,5562690,840,0 ,17,923,9756996,24,0 ,44,15152,2416964,32,0 ,44,15152,3465540,48,0 ,17,923,8708420,40,0 ,17,923,9232708,40,0 ,22,1020,319816,1,1 ,22,1020,319824,1,1 ,22,1020,319832,1,1 ,22,1020,319840,1,1 ,20,15880,1892706,100,0 ,22,1020,319848,1,1 ,22,1020,319856,1,1 ,22,1020,319864,1,1 ,22,1020,319872,1,1 ,17,923,10281348,32,0 ,45,15153,5038468,32,0 ,22,1020,319880,1,1 ,22,1020,319888,1,1 ,22,1020,319896,1,1 ,22,1020,319904,1,1 ,22,1020,319912,1,1 ,22,1020,319920,1,1 ,22,1020,319928,1,1 ,22,1020,319936,1,1 ,45,15153,3989956,24,0 ,17,923,7659972,24,0 ,17,923,7135684,40,0 ,22,1020,319944,1,1 ,22,1020,319952,1,1 ,22,1020,319960,1,1 ,22,1020,319968,1,1 ,22,1020,319976,1,1 ,22,1020,319984,1,1 ,22,1020,319992,1,1 ,22,1020,320000,1,1 ,17,923,9757188,56,0 ,17,923,6611460,32,0 ,17,923,8184324,32,0 ,22,1020,320008,1,1 ,22,1020,320016,1,1 ,22,1020,320024,1,1 ,22,1020,320032,1,1 ,20,19523,10281506,124,0 ,22,1020,320040,1,1 ,22,1020,320048,1,1 ,22,1020,320056,1,1 ,22,1020,320064,1,1 ,44,15152,2417220,40,0 ,44,15152,2941508,56,0 ,22,1020,320072,1,1 ,22,1020,320080,1,1 ,22,1020,320088,1,1 ,22,1020,320096,1,1 ,22,1020,320104,1,1 ,22,1020,320112,1,1 ,22,1020,320120,1,1 ,22,1020,320128,1,1 ,17,923,10281604,32,0 ,17,923,7660164,32,0 ,45,15153,3990148,560,0 ,45,15153,5038724,200,0 ,17,923,8708740,32,0 ,17,923,9233028,32,0 ,22,1020,320136,1,1 ,22,1020,320144,1,1 ,22,1020,320152,1,1 ,22,1020,320160,1,1 ,20,25229,25485986,276,0 ,22,1020,320168,1,1 ,22,1020,320176,1,1 ,22,1020,320184,1,1 ,22,1020,320192,1,1 ,45,15153,4514500,16,0 ,44,15152,1893060,408,0 ,44,15152,3465924,48,0 ,22,1020,320200,1,1 ,22,1020,320208,1,1 ,22,1020,320216,1,1 ,22,1020,320224,1,1 ,20,25595,26534626,280,0 ,22,1020,320232,1,1 ,22,1020,320240,1,1 ,22,1020,320248,1,1 ,22,1020,320256,1,1 ,17,923,8184580,40,0 ,17,923,7136004,48,0 ,17,923,6611716,32,0 ,22,1020,320264,1,1 ,22,1020,320272,1,1 ,22,1020,320280,1,1 ,22,1020,320288,1,1 ,22,1020,320296,1,1 ,22,1020,320304,1,1 ,22,1020,320312,1,1 ,22,1020,320320,1,1 ,20,21389,16048962,112,0 ,45,15153,4514628,64,0 ,22,1020,320328,1,1 ,22,1020,320336,1,1 ,22,1020,320344,1,1 ,22,1020,320352,1,1 ,20,17825,6611810,128,0 ,22,1020,320360,1,1 ,22,1020,320368,1,1 ,22,1020,320376,1,1 ,22,1020,320384,1,1 ,20,19792,10806146,112,0 ,17,923,10281860,24,0 ,17,923,7660420,40,0 ,44,15152,2417540,32,0 ,17,923,8708996,24,0 ,17,923,9233284,32,0 ,22,1020,320392,1,1 ,22,1020,320400,1,1 ,22,1020,320408,1,1 ,22,1020,320416,1,1 ,22,1020,320424,1,1 ,22,1020,320432,1,1 ,22,1020,320440,1,1 ,22,1020,320448,1,1 ,17,923,9757636,80,0 ,44,15152,1369028,48,0 ,22,1020,320456,1,1 ,22,1020,320464,1,1 ,22,1020,320472,1,1 ,22,1020,320480,1,1 ,20,15471,844770,604,0 ,22,1020,320488,1,1 ,22,1020,320496,1,1 ,22,1020,320504,1,1 ,22,1020,320512,1,1 ,44,15152,2941956,112,0 ,17,923,6611972,32,0 ,22,1020,320520,1,1 ,22,1020,320528,1,1 ,22,1020,320536,1,1 ,22,1020,320544,1,1 ,22,1020,320552,1,1 ,22,1020,320560,1,1 ,22,1020,320568,1,1 ,22,1020,320576,1,1 ,17,923,10282052,32,0 ,44,15152,3466308,40,0 ,17,923,8184900,40,0 ,17,923,8709188,32,0 ,22,1020,320584,1,1 ,22,1020,320592,1,1 ,22,1020,320600,1,1 ,22,1020,320608,1,1 ,20,21620,16573538,80,0 ,20,18092,7136354,12,0 ,22,1020,320616,1,1 ,22,1020,320624,1,1 ,22,1020,320632,1,1 ,22,1020,320640,1,1 ,20,15881,1893506,172,0 ,17,923,9233540,40,0 ,17,923,7136388,56,0 ,44,15152,2417796,24,0 ,22,1020,320648,1,1 ,22,1020,320656,1,1 ,22,1020,320664,1,1 ,22,1020,320672,1,1 ,22,1020,320680,1,1 ,22,1020,320688,1,1 ,22,1020,320696,1,1 ,22,1020,320704,1,1 ,20,18093,7136450,628,0 ,45,15153,5563588,16,0 ,17,923,7660740,40,0 ,44,15152,844996,48,0 ,22,1020,320712,1,1 ,22,1020,320720,1,1 ,22,1020,320728,1,1 ,22,1020,320736,1,1 ,22,1020,320744,1,1 ,22,1020,320752,1,1 ,22,1020,320760,1,1 ,22,1020,320768,1,1 ,17,923,6612228,40,0 ,22,1020,320776,1,1 ,22,1020,320784,1,1 ,22,1020,320792,1,1 ,22,1020,320800,1,1 ,20,20887,14476578,4844,0 ,22,1020,320808,1,1 ,22,1020,320816,1,1 ,22,1020,320824,1,1 ,22,1020,320832,1,1 ,20,24039,22340930,120,0 ,20,17613,6088002,540,0 ,17,923,10282308,32,0 ,44,15152,2417988,16,0 ,44,15152,1369412,24,0 ,45,15153,4515140,24,0 ,45,15153,5563716,32,0 ,17,923,8709444,32,0 ,22,1020,320840,1,1 ,22,1020,320848,1,1 ,22,1020,320856,1,1 ,22,1020,320864,1,1 ,22,1020,320872,1,1 ,22,1020,320880,1,1 ,22,1020,320888,1,1 ,22,1020,320896,1,1 ,17,923,8185220,32,0 ,44,15152,3466628,32,0 ,22,1020,320904,1,1 ,22,1020,320912,1,1 ,22,1020,320920,1,1 ,22,1020,320928,1,1 ,22,1020,320936,1,1 ,22,1020,320944,1,1 ,22,1020,320952,1,1 ,22,1020,320960,1,1 ,17,923,9233860,24,0 ,44,15152,2418116,32,0 ,22,1020,320968,1,1 ,22,1020,320976,1,1 ,22,1020,320984,1,1 ,22,1020,320992,1,1 ,22,1020,321000,1,1 ,22,1020,321008,1,1 ,22,1020,321016,1,1 ,22,1020,321024,1,1 ,20,19524,10282498,156,0 ,45,15153,4515332,64,0 ,17,923,7661060,24,0 ,44,15152,1369604,32,0 ,22,1020,321032,1,1 ,22,1020,321040,1,1 ,22,1020,321048,1,1 ,22,1020,321056,1,1 ,22,1020,321064,1,1 ,22,1020,321072,1,1 ,22,1020,321080,1,1 ,22,1020,321088,1,1 ,17,923,10282564,16,0 ,17,923,7136836,32,0 ,17,923,6612548,40,0 ,44,15152,845380,128,0 ,45,15153,5563972,16,0 ,17,923,8709700,40,0 ,17,923,9758276,144,0 ,22,1020,321096,1,1 ,22,1020,321104,1,1 ,22,1020,321112,1,1 ,22,1020,321120,1,1 ,22,1020,321128,1,1 ,22,1020,321136,1,1 ,22,1020,321144,1,1 ,22,1020,321152,1,1 ,17,923,9234052,88,0 ,44,15152,3466884,32,0 ,17,923,8185476,24,0 ,22,1020,321160,1,1 ,22,1020,321168,1,1 ,22,1020,321176,1,1 ,22,1020,321184,1,1 ,22,1020,321192,1,1 ,22,1020,321200,1,1 ,22,1020,321208,1,1 ,22,1020,321216,1,1 ,20,21390,16049858,460,0 ,17,923,10282692,16,0 ,17,923,7661252,40,0 ,44,15152,2418372,16,0 ,45,15153,5564100,24,0 ,22,1020,321224,1,1 ,22,1020,321232,1,1 ,22,1020,321240,1,1 ,22,1020,321248,1,1 ,20,21621,16574178,112,0 ,22,1020,321256,1,1 ,22,1020,321264,1,1 ,22,1020,321272,1,1 ,22,1020,321280,1,1 ,20,24595,23914242,728,0 ,20,16788,3991298,12,0 ,20,19793,10807042,184,0 ,20,23625,21292802,656,0 ,44,15152,1369860,32,0 ,22,1020,321288,1,1 ,22,1020,321296,1,1 ,22,1020,321304,1,1 ,22,1020,321312,1,1 ,22,1020,321320,1,1 ,22,1020,321328,1,1 ,22,1020,321336,1,1 ,22,1020,321344,1,1 ,20,17060,4515650,68,0 ,17,923,10282820,16,0 ,17,923,7137092,128,0 ,44,15152,2418500,24,0 ,17,923,8185668,40,0 ,22,1020,321352,1,1 ,22,1020,321360,1,1 ,22,1020,321368,1,1 ,22,1020,321376,1,1 ,20,17826,6612834,112,0 ,20,16789,3991394,120,0 ,22,1020,321384,1,1 ,22,1020,321392,1,1 ,22,1020,321400,1,1 ,22,1020,321408,1,1 ,17,923,8710020,32,0 ,17,923,6612868,32,0 ,44,15152,2942852,112,0 ,44,15152,3467140,32,0 ,45,15153,5564292,16,0 ,22,1020,321416,1,1 ,22,1020,321424,1,1 ,22,1020,321432,1,1 ,22,1020,321440,1,1 ,20,20312,12904354,80,0 ,20,16472,3467170,296,0 ,22,1020,321448,1,1 ,22,1020,321456,1,1 ,22,1020,321464,1,1 ,22,1020,321472,1,1 ,17,923,10282948,32,0 ,22,1020,321480,1,1 ,22,1020,321488,1,1 ,22,1020,321496,1,1 ,22,1020,321504,1,1 ,22,1020,321512,1,1 ,22,1020,321520,1,1 ,22,1020,321528,1,1 ,22,1020,321536,1,1 ,45,15153,5564420,24,0 ,17,923,7661572,32,0 ,44,15152,2418692,40,0 ,44,15152,1370116,56,0 ,45,15153,4515844,128,0 ,22,1020,321544,1,1 ,22,1020,321552,1,1 ,22,1020,321560,1,1 ,22,1020,321568,1,1 ,22,1020,321576,1,1 ,22,1020,321584,1,1 ,22,1020,321592,1,1 ,22,1020,321600,1,1 ,20,21044,15525954,364,0 ,22,1020,321608,1,1 ,22,1020,321616,1,1 ,22,1020,321624,1,1 ,22,1020,321632,1,1 ,22,1020,321640,1,1 ,22,1020,321648,1,1 ,22,1020,321656,1,1 ,22,1020,321664,1,1 ,20,19207,9758850,148,0 ,17,923,8710276,56,0 ,17,923,6613124,32,0 ,44,15152,3467396,56,0 ,17,923,8185988,32,0 ,22,1020,321672,1,1 ,22,1020,321680,1,1 ,22,1020,321688,1,1 ,22,1020,321696,1,1 ,22,1020,321704,1,1 ,22,1020,321712,1,1 ,22,1020,321720,1,1 ,22,1020,321728,1,1 ,20,15709,1370306,96,0 ,20,25770,27060418,204,0 ,17,923,10283204,40,0 ,45,15153,5040324,88,0 ,45,15153,5564612,16,0 ,22,1020,321736,1,1 ,22,1020,321744,1,1 ,22,1020,321752,1,1 ,22,1020,321760,1,1 ,20,26460,29157602,392,0 ,22,1020,321768,1,1 ,22,1020,321776,1,1 ,22,1020,321784,1,1 ,22,1020,321792,1,1 ,20,24040,22341890,132,0 ,20,22606,19196162,56,0 ,17,923,7661828,48,0 ,22,1020,321800,1,1 ,22,1020,321808,1,1 ,22,1020,321816,1,1 ,22,1020,321824,1,1 ,22,1020,321832,1,1 ,22,1020,321840,1,1 ,22,1020,321848,1,1 ,22,1020,321856,1,1 ,20,22836,19720514,2416,0 ,17,923,9234756,32,0 ,44,15152,2419012,32,0 ,45,15153,5564740,24,0 ,22,1020,321864,1,1 ,22,1020,321872,1,1 ,22,1020,321880,1,1 ,22,1020,321888,1,1 ,20,18766,8710498,32,0 ,20,17061,4516194,140,0 ,22,1020,321896,1,1 ,22,1020,321904,1,1 ,22,1020,321912,1,1 ,22,1020,321920,1,1 ,17,923,8186244,32,0 ,17,923,6613380,32,0 ,22,1020,321928,1,1 ,22,1020,321936,1,1 ,22,1020,321944,1,1 ,22,1020,321952,1,1 ,22,1020,321960,1,1 ,22,1020,321968,1,1 ,22,1020,321976,1,1 ,22,1020,321984,1,1 ,44,15152,1370564,24,0 ,22,1020,321992,1,1 ,22,1020,322000,1,1 ,22,1020,322008,1,1 ,22,1020,322016,1,1 ,20,15882,1894882,124,0 ,22,1020,322024,1,1 ,22,1020,322032,1,1 ,22,1020,322040,1,1 ,22,1020,322048,1,1 ,20,26190,28109314,40,0 ,17,923,10283524,56,0 ,45,15153,5564932,16,0 ,22,1020,322056,1,1 ,22,1020,322064,1,1 ,22,1020,322072,1,1 ,22,1020,322080,1,1 ,20,20313,12904994,12,0 ,22,1020,322088,1,1 ,22,1020,322096,1,1 ,22,1020,322104,1,1 ,22,1020,322112,1,1 ,17,923,9235012,32,0 ,44,15152,2419268,24,0 ,44,15152,846404,48,0 ,44,15152,3467844,56,0 ,17,923,8710724,48,0 ,22,1020,322120,1,1 ,22,1020,322128,1,1 ,22,1020,322136,1,1 ,22,1020,322144,1,1 ,20,21622,16575074,100,0 ,20,18767,8710754,296,0 ,22,1020,322152,1,1 ,22,1020,322160,1,1 ,22,1020,322168,1,1 ,22,1020,322176,1,1 ,20,22130,18147970,376,0 ,20,20314,12905090,84,0 ,20,21971,17623682,1540,0 ,17,923,8186500,32,0 ,17,923,7662212,48,0 ,17,923,6613636,40,0 ,44,15152,1370756,32,0 ,45,15153,5565060,16,0 ,22,1020,322184,1,1 ,22,1020,322192,1,1 ,22,1020,322200,1,1 ,22,1020,322208,1,1 ,20,20795,13953698,664,0 ,20,18300,7662242,580,0 ,22,1020,322216,1,1 ,22,1020,322224,1,1 ,22,1020,322232,1,1 ,22,1020,322240,1,1 ,20,22607,19196610,64,0 ,17,923,9759428,80,0 ,22,1020,322248,1,1 ,22,1020,322256,1,1 ,22,1020,322264,1,1 ,22,1020,322272,1,1 ,20,19525,10283746,268,0 ,20,17827,6613730,96,0 ,22,1020,322280,1,1 ,22,1020,322288,1,1 ,22,1020,322296,1,1 ,22,1020,322304,1,1 ,45,15153,5565188,24,0 ,44,15152,2943748,24,0 ,44,15152,2419460,40,0 ,22,1020,322312,1,1 ,22,1020,322320,1,1 ,22,1020,322328,1,1 ,22,1020,322336,1,1 ,20,16790,3992354,204,0 ,22,1020,322344,1,1 ,22,1020,322352,1,1 ,22,1020,322360,1,1 ,22,1020,322368,1,1 ,20,25230,25488194,24,0 ,20,26191,28109634,708,0 ,17,923,9235268,32,0 ,17,923,7138116,120,0 ,22,1020,322376,1,1 ,22,1020,322384,1,1 ,22,1020,322392,1,1 ,22,1020,322400,1,1 ,22,1020,322408,1,1 ,22,1020,322416,1,1 ,22,1020,322424,1,1 ,22,1020,322432,1,1 ,17,923,8186756,32,0 ,44,15152,1371012,64,0 ,45,15153,5041028,24,0 ,22,1020,322440,1,1 ,22,1020,322448,1,1 ,22,1020,322456,1,1 ,22,1020,322464,1,1 ,20,25596,26536866,280,0 ,22,1020,322472,1,1 ,22,1020,322480,1,1 ,22,1020,322488,1,1 ,22,1020,322496,1,1 ,20,15710,1371074,168,0 ,17,923,10283972,48,0 ,17,923,6613956,40,0 ,44,15152,2943940,32,0 ,44,15152,846788,136,0 ,45,15153,5565380,16,0 ,17,923,8711108,40,0 ,22,1020,322504,1,1 ,22,1020,322512,1,1 ,22,1020,322520,1,1 ,22,1020,322528,1,1 ,22,1020,322536,1,1 ,22,1020,322544,1,1 ,22,1020,322552,1,1 ,22,1020,322560,1,1 ,20,25231,25488386,24,0 ,45,15153,4516868,168,0 ,17,923,7662596,48,0 ,44,15152,3468292,40,0 ,22,1020,322568,1,1 ,22,1020,322576,1,1 ,22,1020,322584,1,1 ,22,1020,322592,1,1 ,22,1020,322600,1,1 ,22,1020,322608,1,1 ,22,1020,322616,1,1 ,22,1020,322624,1,1 ,17,923,9235524,32,0 ,44,15152,2419780,56,0 ,45,15153,5041220,16,0 ,45,15153,5565508,16,0 ,22,1020,322632,1,1 ,22,1020,322640,1,1 ,22,1020,322648,1,1 ,22,1020,322656,1,1 ,22,1020,322664,1,1 ,22,1020,322672,1,1 ,22,1020,322680,1,1 ,22,1020,322688,1,1 ,17,923,8187012,40,0 ,22,1020,322696,1,1 ,22,1020,322704,1,1 ,22,1020,322712,1,1 ,22,1020,322720,1,1 ,20,25035,24964258,152,0 ,22,1020,322728,1,1 ,22,1020,322736,1,1 ,22,1020,322744,1,1 ,22,1020,322752,1,1 ,20,22608,19197122,40,0 ,20,25232,25488578,24,0 ,20,19794,10808514,252,0 ,45,15153,5565636,144,0 ,44,15152,2944196,72,0 ,45,15153,5041348,64,0 ,22,1020,322760,1,1 ,22,1020,322768,1,1 ,22,1020,322776,1,1 ,22,1020,322784,1,1 ,20,18558,8187106,12,0 ,22,1020,322792,1,1 ,22,1020,322800,1,1 ,22,1020,322808,1,1 ,22,1020,322816,1,1 ,17,923,8711428,24,0 ,17,923,6614276,32,0 ,22,1020,322824,1,1 ,22,1020,322832,1,1 ,22,1020,322840,1,1 ,22,1020,322848,1,1 ,20,24041,22342946,588,0 ,20,19208,9760034,200,0 ,20,20315,12905762,440,0 ,22,1020,322856,1,1 ,22,1020,322864,1,1 ,22,1020,322872,1,1 ,22,1020,322880,1,1 ,20,18559,8187202,12,0 ,17,923,10284356,32,0 ,44,15152,3468612,24,0 ,17,923,9235780,32,0 ,17,923,9760068,80,0 ,22,1020,322888,1,1 ,22,1020,322896,1,1 ,22,1020,322904,1,1 ,22,1020,322912,1,1 ,22,1020,322920,1,1 ,22,1020,322928,1,1 ,22,1020,322936,1,1 ,22,1020,322944,1,1 ,20,21623,16575874,100,0 ,20,25459,26013058,60,0 ,20,25233,25488770,24,0 ,44,15152,1371524,24,0 ,17,923,7662980,32,0 ,22,1020,322952,1,1 ,22,1020,322960,1,1 ,22,1020,322968,1,1 ,22,1020,322976,1,1 ,20,18560,8187298,12,0 ,22,1020,322984,1,1 ,22,1020,322992,1,1 ,22,1020,323000,1,1 ,22,1020,323008,1,1 ,20,17062,4517314,208,0 ,20,15270,323010,448,0 ,20,15883,1895874,124,0 ,17,923,8711620,32,0 ,17,923,8187332,48,0 ,22,1020,323016,1,1 ,22,1020,323024,1,1 ,22,1020,323032,1,1 ,22,1020,323040,1,1 ,20,17828,6614498,48,0 ,22,1020,323048,1,1 ,22,1020,323056,1,1 ,22,1020,323064,1,1 ,22,1020,323072,1,1 ,20,23141,20246018,2216,0 ,20,18561,8187394,88,0 ,20,20223,12381698,192,0 ,20,22609,19197442,2648,0 ,44,15152,3468804,56,0 ,17,923,6614532,40,0 ,44,15152,2420228,24,0 ,22,1020,323080,1,1 ,22,1020,323088,1,1 ,22,1020,323096,1,1 ,22,1020,323104,1,1 ,22,1020,323112,1,1 ,22,1020,323120,1,1 ,22,1020,323128,1,1 ,22,1020,323136,1,1 ,20,25234,25488962,232,0 ,17,923,10284612,24,0 ,44,15152,1371716,24,0 ,17,923,9236036,24,0 ,22,1020,323144,1,1 ,22,1020,323152,1,1 ,22,1020,323160,1,1 ,22,1020,323168,1,1 ,22,1020,323176,1,1 ,22,1020,323184,1,1 ,22,1020,323192,1,1 ,22,1020,323200,1,1 ,17,923,7663236,32,0 ,22,1020,323208,1,1 ,22,1020,323216,1,1 ,22,1020,323224,1,1 ,22,1020,323232,1,1 ,22,1020,323240,1,1 ,22,1020,323248,1,1 ,22,1020,323256,1,1 ,22,1020,323264,1,1 ,17,923,8711876,32,0 ,44,15152,2420420,24,0 ,45,15153,5041860,24,0 ,22,1020,323272,1,1 ,22,1020,323280,1,1 ,22,1020,323288,1,1 ,22,1020,323296,1,1 ,22,1020,323304,1,1 ,22,1020,323312,1,1 ,22,1020,323320,1,1 ,22,1020,323328,1,1 ,17,923,10284804,112,0 ,17,923,7139076,24,0 ,44,15152,2944772,24,0 ,44,15152,1371908,32,0 ,17,923,9236228,104,0 ,22,1020,323336,1,1 ,22,1020,323344,1,1 ,22,1020,323352,1,1 ,22,1020,323360,1,1 ,20,25771,27062050,88,0 ,22,1020,323368,1,1 ,22,1020,323376,1,1 ,22,1020,323384,1,1 ,22,1020,323392,1,1 ,17,923,8187716,48,0 ,17,923,6614852,40,0 ,22,1020,323400,1,1 ,22,1020,323408,1,1 ,22,1020,323416,1,1 ,22,1020,323424,1,1 ,20,17829,6614882,500,0 ,20,25460,26013538,28,0 ,22,1020,323432,1,1 ,22,1020,323440,1,1 ,22,1020,323448,1,1 ,22,1020,323456,1,1 ,45,15153,5042052,56,0 ,17,923,7663492,32,0 ,44,15152,2420612,56,0 ,44,15152,1896324,432,0 ,22,1020,323464,1,1 ,22,1020,323472,1,1 ,22,1020,323480,1,1 ,22,1020,323488,1,1 ,22,1020,323496,1,1 ,22,1020,323504,1,1 ,22,1020,323512,1,1 ,22,1020,323520,1,1 ,17,923,9760708,80,0 ,17,923,7139268,56,0 ,44,15152,2944964,72,0 ,44,15152,3469252,56,0 ,17,923,8712132,32,0 ,22,1020,323528,1,1 ,22,1020,323536,1,1 ,22,1020,323544,1,1 ,22,1020,323552,1,1 ,22,1020,323560,1,1 ,22,1020,323568,1,1 ,22,1020,323576,1,1 ,22,1020,323584,1,1 ,44,15152,847876,24,0 ,44,15152,1372164,24,0 ,22,1020,323592,1,1 ,22,1020,323600,1,1 ,22,1020,323608,1,1 ,22,1020,323616,1,1 ,22,1020,323624,1,1 ,22,1020,323632,1,1 ,22,1020,323640,1,1 ,22,1020,323648,1,1 ,20,25461,26013762,108,0 ,22,1020,323656,1,1 ,22,1020,323664,1,1 ,22,1020,323672,1,1 ,22,1020,323680,1,1 ,22,1020,323688,1,1 ,22,1020,323696,1,1 ,22,1020,323704,1,1 ,22,1020,323712,1,1 ,17,923,6615172,56,0 ,17,923,7663748,32,0 ,22,1020,323720,1,1 ,22,1020,323728,1,1 ,22,1020,323736,1,1 ,22,1020,323744,1,1 ,20,21624,16576674,932,0 ,22,1020,323752,1,1 ,22,1020,323760,1,1 ,22,1020,323768,1,1 ,22,1020,323776,1,1 ,20,18562,8188098,12,0 ,17,923,8712388,24,0 ,44,15152,1372356,24,0 ,44,15152,848068,128,0 ,17,923,8188100,40,0 ,22,1020,323784,1,1 ,22,1020,323792,1,1 ,22,1020,323800,1,1 ,22,1020,323808,1,1 ,20,16473,3469538,36,0 ,22,1020,323816,1,1 ,22,1020,323824,1,1 ,22,1020,323832,1,1 ,22,1020,323840,1,1 ,20,15711,1372418,392,0 ,22,1020,323848,1,1 ,22,1020,323856,1,1 ,22,1020,323864,1,1 ,22,1020,323872,1,1 ,20,18563,8188194,220,0 ,22,1020,323880,1,1 ,22,1020,323888,1,1 ,22,1020,323896,1,1 ,22,1020,323904,1,1 ,45,15153,5566788,16,0 ,44,15152,2421060,48,0 ,45,15153,4518212,32,0 ,45,15153,5042500,24,0 ,22,1020,323912,1,1 ,22,1020,323920,1,1 ,22,1020,323928,1,1 ,22,1020,323936,1,1 ,20,25036,24965474,360,0 ,22,1020,323944,1,1 ,22,1020,323952,1,1 ,22,1020,323960,1,1 ,22,1020,323968,1,1 ,20,16791,3993986,52,0 ,17,923,8712580,24,0 ,17,923,7664004,24,0 ,17,923,7139716,32,0 ,44,15152,1372548,24,0 ,44,15152,3469700,24,0 ,22,1020,323976,1,1 ,22,1020,323984,1,1 ,22,1020,323992,1,1 ,22,1020,324000,1,1 ,20,15884,1896866,100,0 ,22,1020,324008,1,1 ,22,1020,324016,1,1 ,22,1020,324024,1,1 ,22,1020,324032,1,1 ,45,15153,5566916,40,0 ,22,1020,324040,1,1 ,22,1020,324048,1,1 ,22,1020,324056,1,1 ,22,1020,324064,1,1 ,20,25772,27062754,312,0 ,20,26341,28635618,172,0 ,22,1020,324072,1,1 ,22,1020,324080,1,1 ,22,1020,324088,1,1 ,22,1020,324096,1,1 ,20,16474,3469826,12,0 ,17,923,8188420,40,0 ,44,15152,2945540,64,0 ,45,15153,5042692,16,0 ,22,1020,324104,1,1 ,22,1020,324112,1,1 ,22,1020,324120,1,1 ,22,1020,324128,1,1 ,22,1020,324136,1,1 ,22,1020,324144,1,1 ,22,1020,324152,1,1 ,22,1020,324160,1,1 ,17,923,9761348,24,0 ,17,923,7664196,56,0 ,17,923,6615620,32,0 ,44,15152,1372740,24,0 ,44,15152,3469892,40,0 ,45,15153,4518468,48,0 ,17,923,8712772,24,0 ,17,923,9237060,32,0 ,22,1020,324168,1,1 ,22,1020,324176,1,1 ,22,1020,324184,1,1 ,22,1020,324192,1,1 ,20,16475,3469922,88,0 ,22,1020,324200,1,1 ,22,1020,324208,1,1 ,22,1020,324216,1,1 ,22,1020,324224,1,1 ,17,923,10285700,40,0 ,17,923,7139972,24,0 ,45,15153,5042820,16,0 ,22,1020,324232,1,1 ,22,1020,324240,1,1 ,22,1020,324248,1,1 ,22,1020,324256,1,1 ,20,20574,13431458,80,0 ,22,1020,324264,1,1 ,22,1020,324272,1,1 ,22,1020,324280,1,1 ,22,1020,324288,1,1 ,44,15152,2421444,32,0 ,22,1020,324296,1,1 ,22,1020,324304,1,1 ,22,1020,324312,1,1 ,22,1020,324320,1,1 ,22,1020,324328,1,1 ,22,1020,324336,1,1 ,22,1020,324344,1,1 ,22,1020,324352,1,1 ,17,923,9761540,56,0 ,44,15152,1372932,16,0 ,45,15153,5042948,16,0 ,45,15153,5567236,40,0 ,17,923,8712964,24,0 ,22,1020,324360,1,1 ,22,1020,324368,1,1 ,22,1020,324376,1,1 ,22,1020,324384,1,1 ,20,16792,3994402,52,0 ,22,1020,324392,1,1 ,22,1020,324400,1,1 ,22,1020,324408,1,1 ,22,1020,324416,1,1 ,20,19526,10285890,596,0 ,17,923,9237316,32,0 ,17,923,7140164,32,0 ,17,923,6615876,48,0 ,17,923,8188740,40,0 ,22,1020,324424,1,1 ,22,1020,324432,1,1 ,22,1020,324440,1,1 ,22,1020,324448,1,1 ,20,23818,21820258,1860,0 ,20,19209,9761634,128,0 ,22,1020,324456,1,1 ,22,1020,324464,1,1 ,22,1020,324472,1,1 ,22,1020,324480,1,1 ,45,15153,5043076,24,0 ,44,15152,1373060,32,0 ,44,15152,3470212,32,0 ,22,1020,324488,1,1 ,22,1020,324496,1,1 ,22,1020,324504,1,1 ,22,1020,324512,1,1 ,20,21045,15528866,328,0 ,20,25462,26014626,844,0 ,20,18768,8713122,316,0 ,22,1020,324520,1,1 ,22,1020,324528,1,1 ,22,1020,324536,1,1 ,22,1020,324544,1,1 ,17,923,10286020,24,0 ,44,15152,2421700,64,0 ,45,15153,4518852,24,0 ,17,923,8713156,32,0 ,22,1020,324552,1,1 ,22,1020,324560,1,1 ,22,1020,324568,1,1 ,22,1020,324576,1,1 ,22,1020,324584,1,1 ,22,1020,324592,1,1 ,22,1020,324600,1,1 ,22,1020,324608,1,1 ,20,20224,12383234,60,0 ,45,15153,3994628,24,0 ,17,923,7664644,16,0 ,44,15152,2946052,64,0 ,22,1020,324616,1,1 ,22,1020,324624,1,1 ,22,1020,324632,1,1 ,22,1020,324640,1,1 ,22,1020,324648,1,1 ,22,1020,324656,1,1 ,22,1020,324664,1,1 ,22,1020,324672,1,1 ,20,17063,4518978,164,0 ,17,923,9237572,24,0 ,17,923,7140420,48,0 ,45,15153,5043268,32,0 ,45,15153,5567556,32,0 ,22,1020,324680,1,1 ,22,1020,324688,1,1 ,22,1020,324696,1,1 ,22,1020,324704,1,1 ,20,21891,17101922,6124,0 ,20,25597,26539106,280,0 ,22,1020,324712,1,1 ,22,1020,324720,1,1 ,22,1020,324728,1,1 ,22,1020,324736,1,1 ,17,923,10286212,64,0 ,17,923,7664772,56,0 ,44,15152,1373316,16,0 ,44,15152,3470468,48,0 ,45,15153,4519044,32,0 ,17,923,8189060,48,0 ,22,1020,324744,1,1 ,22,1020,324752,1,1 ,22,1020,324760,1,1 ,22,1020,324768,1,1 ,20,19795,10810530,56,0 ,22,1020,324776,1,1 ,22,1020,324784,1,1 ,22,1020,324792,1,1 ,22,1020,324800,1,1 ,20,16793,3994818,132,0 ,20,15885,1897666,284,0 ,17,923,9761988,112,0 ,17,923,6616260,48,0 ,44,15152,849092,56,0 ,45,15153,3994820,16,0 ,17,923,8713412,24,0 ,22,1020,324808,1,1 ,22,1020,324816,1,1 ,22,1020,324824,1,1 ,22,1020,324832,1,1 ,22,1020,324840,1,1 ,22,1020,324848,1,1 ,22,1020,324856,1,1 ,22,1020,324864,1,1 ,17,923,9237764,32,0 ,44,15152,1373444,32,0 ,22,1020,324872,1,1 ,22,1020,324880,1,1 ,22,1020,324888,1,1 ,22,1020,324896,1,1 ,20,21391,16053538,472,0 ,20,26461,29160738,964,0 ,20,16476,3470626,12,0 ,20,20575,13432098,12,0 ,22,1020,324904,1,1 ,22,1020,324912,1,1 ,22,1020,324920,1,1 ,22,1020,324928,1,1 ,45,15153,5567812,16,0 ,45,15153,3994948,16,0 ,45,15153,5043524,24,0 ,22,1020,324936,1,1 ,22,1020,324944,1,1 ,22,1020,324952,1,1 ,22,1020,324960,1,1 ,22,1020,324968,1,1 ,22,1020,324976,1,1 ,22,1020,324984,1,1 ,22,1020,324992,1,1 ,20,20576,13432194,80,0 ,20,25235,25490818,24,0 ,20,16477,3470722,108,0 ,17,923,8713604,16,0 ,45,15153,4519300,32,0 ,22,1020,325000,1,1 ,22,1020,325008,1,1 ,22,1020,325016,1,1 ,22,1020,325024,1,1 ,22,1020,325032,1,1 ,22,1020,325040,1,1 ,22,1020,325048,1,1 ,22,1020,325056,1,1 ,45,15153,5567940,16,0 ,17,923,7140804,144,0 ,44,15152,2422212,32,0 ,45,15153,3995076,64,0 ,22,1020,325064,1,1 ,22,1020,325072,1,1 ,22,1020,325080,1,1 ,22,1020,325088,1,1 ,20,20225,12383714,80,0 ,22,1020,325096,1,1 ,22,1020,325104,1,1 ,22,1020,325112,1,1 ,22,1020,325120,1,1 ,17,923,9238020,32,0 ,44,15152,2946564,32,0 ,44,15152,1373700,16,0 ,44,15152,3470852,64,0 ,45,15153,5043716,40,0 ,17,923,8189444,32,0 ,17,923,8713732,24,0 ,22,1020,325128,1,1 ,22,1020,325136,1,1 ,22,1020,325144,1,1 ,22,1020,325152,1,1 ,20,17614,6092322,108,0 ,22,1020,325160,1,1 ,22,1020,325168,1,1 ,22,1020,325176,1,1 ,22,1020,325184,1,1 ,20,22131,18150978,408,0 ,20,25236,25491010,24,0 ,45,15153,5568068,24,0 ,17,923,7665220,40,0 ,17,923,6616644,48,0 ,22,1020,325192,1,1 ,22,1020,325200,1,1 ,22,1020,325208,1,1 ,22,1020,325216,1,1 ,20,19796,10810978,56,0 ,22,1020,325224,1,1 ,22,1020,325232,1,1 ,22,1020,325240,1,1 ,22,1020,325248,1,1 ,17,923,10286724,40,0 ,44,15152,1373828,32,0 ,44,15152,849540,64,0 ,45,15153,4519556,40,0 ,22,1020,325256,1,1 ,22,1020,325264,1,1 ,22,1020,325272,1,1 ,22,1020,325280,1,1 ,22,1020,325288,1,1 ,22,1020,325296,1,1 ,22,1020,325304,1,1 ,22,1020,325312,1,1 ,20,23417,20772546,100,0 ,20,15472,849602,212,0 ,17,923,8713924,24,0 ,44,15152,2422468,48,0 ,22,1020,325320,1,1 ,22,1020,325328,1,1 ,22,1020,325336,1,1 ,22,1020,325344,1,1 ,22,1020,325352,1,1 ,22,1020,325360,1,1 ,22,1020,325368,1,1 ,22,1020,325376,1,1 ,20,25237,25491202,176,0 ,17,923,9238276,24,0 ,44,15152,2946820,64,0 ,45,15153,5568260,24,0 ,17,923,8189700,32,0 ,22,1020,325384,1,1 ,22,1020,325392,1,1 ,22,1020,325400,1,1 ,22,1020,325408,1,1 ,22,1020,325416,1,1 ,22,1020,325424,1,1 ,22,1020,325432,1,1 ,22,1020,325440,1,1 ,20,26342,28636994,256,0 ,45,15153,5044036,16,0 ,22,1020,325448,1,1 ,22,1020,325456,1,1 ,22,1020,325464,1,1 ,22,1020,325472,1,1 ,20,19210,9762658,144,0 ,22,1020,325480,1,1 ,22,1020,325488,1,1 ,22,1020,325496,1,1 ,22,1020,325504,1,1 ,17,923,8714116,16,0 ,17,923,7665540,40,0 ,44,15152,1374084,16,0 ,22,1020,325512,1,1 ,22,1020,325520,1,1 ,22,1020,325528,1,1 ,22,1020,325536,1,1 ,22,1020,325544,1,1 ,22,1020,325552,1,1 ,22,1020,325560,1,1 ,22,1020,325568,1,1 ,17,923,10287044,32,0 ,17,923,6617028,40,0 ,45,15153,3995588,16,0 ,45,15153,4519876,48,0 ,45,15153,5044164,40,0 ,45,15153,5568452,16,0 ,17,923,9238468,64,0 ,22,1020,325576,1,1 ,22,1020,325584,1,1 ,22,1020,325592,1,1 ,22,1020,325600,1,1 ,22,1020,325608,1,1 ,22,1020,325616,1,1 ,22,1020,325624,1,1 ,22,1020,325632,1,1 ,20,20577,13432834,12,0 ,20,18564,8189954,12,0 ,17,923,8714244,16,0 ,44,15152,1374212,32,0 ,44,15152,3471364,56,0 ,17,923,8189956,32,0 ,22,1020,325640,1,1 ,22,1020,325648,1,1 ,22,1020,325656,1,1 ,22,1020,325664,1,1 ,20,19797,10811426,12,0 ,22,1020,325672,1,1 ,22,1020,325680,1,1 ,22,1020,325688,1,1 ,22,1020,325696,1,1 ,17,923,9762884,208,0 ,44,15152,2422852,40,0 ,45,15153,3995716,40,0 ,45,15153,5568580,16,0 ,22,1020,325704,1,1 ,22,1020,325712,1,1 ,22,1020,325720,1,1 ,22,1020,325728,1,1 ,20,20578,13432930,80,0 ,20,25998,27588706,320,0 ,20,18094,7141474,196,0 ,20,18565,8190050,12,0 ,20,20226,12384354,1628,0 ,22,1020,325736,1,1 ,22,1020,325744,1,1 ,22,1020,325752,1,1 ,22,1020,325760,1,1 ,20,19798,10811522,12,0 ,17,923,8714372,16,0 ,44,15152,850052,16,0 ,22,1020,325768,1,1 ,22,1020,325776,1,1 ,22,1020,325784,1,1 ,22,1020,325792,1,1 ,22,1020,325800,1,1 ,22,1020,325808,1,1 ,22,1020,325816,1,1 ,22,1020,325824,1,1 ,20,18566,8190146,120,0 ,17,923,10287300,32,0 ,17,923,7665860,40,0 ,45,15153,5568708,16,0 ,22,1020,325832,1,1 ,22,1020,325840,1,1 ,22,1020,325848,1,1 ,22,1020,325856,1,1 ,20,19799,10811618,56,0 ,20,16478,3471586,136,0 ,20,16794,3995874,12,0 ,22,1020,325864,1,1 ,22,1020,325872,1,1 ,22,1020,325880,1,1 ,22,1020,325888,1,1 ,17,923,8714500,16,0 ,17,923,6617348,32,0 ,44,15152,2947332,32,0 ,44,15152,1374468,32,0 ,44,15152,850180,32,0 ,45,15153,5044484,16,0 ,17,923,8190212,32,0 ,22,1020,325896,1,1 ,22,1020,325904,1,1 ,22,1020,325912,1,1 ,22,1020,325920,1,1 ,22,1020,325928,1,1 ,22,1020,325936,1,1 ,22,1020,325944,1,1 ,22,1020,325952,1,1 ,20,16795,3995970,248,0 ,45,15153,5568836,40,0 ,45,15153,4520260,16,0 ,22,1020,325960,1,1 ,22,1020,325968,1,1 ,22,1020,325976,1,1 ,22,1020,325984,1,1 ,20,17064,4520290,700,0 ,22,1020,325992,1,1 ,22,1020,326000,1,1 ,22,1020,326008,1,1 ,22,1020,326016,1,1 ,20,17615,6093186,192,0 ,17,923,8714628,24,0 ,44,15152,2423172,48,0 ,45,15153,3996036,16,0 ,45,15153,5044612,56,0 ,22,1020,326024,1,1 ,22,1020,326032,1,1 ,22,1020,326040,1,1 ,22,1020,326048,1,1 ,22,1020,326056,1,1 ,22,1020,326064,1,1 ,22,1020,326072,1,1 ,22,1020,326080,1,1 ,17,923,10287556,40,0 ,44,15152,3471812,56,0 ,45,15153,4520388,32,0 ,17,923,9238980,56,0 ,22,1020,326088,1,1 ,22,1020,326096,1,1 ,22,1020,326104,1,1 ,22,1020,326112,1,1 ,20,23418,20773346,540,0 ,22,1020,326120,1,1 ,22,1020,326128,1,1 ,22,1020,326136,1,1 ,22,1020,326144,1,1 ,17,923,8190468,32,0 ,17,923,7666180,32,0 ,17,923,6617604,24,0 ,44,15152,2947588,32,0 ,44,15152,1374724,24,0 ,44,15152,850436,24,0 ,45,15153,3996164,48,0 ,22,1020,326152,1,1 ,22,1020,326160,1,1 ,22,1020,326168,1,1 ,22,1020,326176,1,1 ,22,1020,326184,1,1 ,22,1020,326192,1,1 ,22,1020,326200,1,1 ,22,1020,326208,1,1 ,17,923,8714820,32,0 ,17,923,7141956,144,0 ,22,1020,326216,1,1 ,22,1020,326224,1,1 ,22,1020,326232,1,1 ,22,1020,326240,1,1 ,22,1020,326248,1,1 ,22,1020,326256,1,1 ,22,1020,326264,1,1 ,22,1020,326272,1,1 ,45,15153,5569156,24,0 ,22,1020,326280,1,1 ,22,1020,326288,1,1 ,22,1020,326296,1,1 ,22,1020,326304,1,1 ,20,19800,10812066,80,0 ,22,1020,326312,1,1 ,22,1020,326320,1,1 ,22,1020,326328,1,1 ,22,1020,326336,1,1 ,45,15153,4520644,104,0 ,17,923,6617796,24,0 ,44,15152,1374916,32,0 ,44,15152,850628,24,0 ,22,1020,326344,1,1 ,22,1020,326352,1,1 ,22,1020,326360,1,1 ,22,1020,326368,1,1 ,20,20579,13433570,12,0 ,20,20316,12909282,160,0 ,22,1020,326376,1,1 ,22,1020,326384,1,1 ,22,1020,326392,1,1 ,22,1020,326400,1,1 ,20,17203,5044994,324,0 ,17,923,10287876,32,0 ,17,923,7666436,24,0 ,44,15152,2947844,48,0 ,44,15152,2423556,48,0 ,17,923,8190724,32,0 ,22,1020,326408,1,1 ,22,1020,326416,1,1 ,22,1020,326424,1,1 ,22,1020,326432,1,1 ,22,1020,326440,1,1 ,22,1020,326448,1,1 ,22,1020,326456,1,1 ,22,1020,326464,1,1 ,20,20580,13433666,1376,0 ,17,923,8715076,32,0 ,45,15153,5045060,64,0 ,45,15153,5569348,40,0 ,22,1020,326472,1,1 ,22,1020,326480,1,1 ,22,1020,326488,1,1 ,22,1020,326496,1,1 ,22,1020,326504,1,1 ,22,1020,326512,1,1 ,22,1020,326520,1,1 ,22,1020,326528,1,1 ,20,23626,21298050,252,0 ,20,17424,5569410,192,0 ,17,923,9239428,56,0 ,17,923,6617988,32,0 ,44,15152,850820,24,0 ,44,15152,3472260,56,0 ,45,15153,3996548,32,0 ,22,1020,326536,1,1 ,22,1020,326544,1,1 ,22,1020,326552,1,1 ,22,1020,326560,1,1 ,20,25773,27065250,352,0 ,22,1020,326568,1,1 ,22,1020,326576,1,1 ,22,1020,326584,1,1 ,22,1020,326592,1,1 ,20,15271,326594,504,0 ,44,15152,1375172,24,0 ,17,923,7666628,64,0 ,22,1020,326600,1,1 ,22,1020,326608,1,1 ,22,1020,326616,1,1 ,22,1020,326624,1,1 ,20,19211,9763810,204,0 ,22,1020,326632,1,1 ,22,1020,326640,1,1 ,22,1020,326648,1,1 ,22,1020,326656,1,1 ,20,24247,22871042,24,0 ,17,923,10288132,24,0 ,17,923,8190980,24,0 ,22,1020,326664,1,1 ,22,1020,326672,1,1 ,22,1020,326680,1,1 ,22,1020,326688,1,1 ,22,1020,326696,1,1 ,22,1020,326704,1,1 ,22,1020,326712,1,1 ,22,1020,326720,1,1 ,17,923,8715332,24,0 ,44,15152,851012,16,0 ,22,1020,326728,1,1 ,22,1020,326736,1,1 ,22,1020,326744,1,1 ,22,1020,326752,1,1 ,22,1020,326760,1,1 ,22,1020,326768,1,1 ,22,1020,326776,1,1 ,22,1020,326784,1,1 ,20,18567,8191106,320,0 ,20,25238,25492610,252,0 ,45,15153,5569668,120,0 ,17,923,6618244,24,0 ,44,15152,2948228,32,0 ,44,15152,2423940,72,0 ,44,15152,1375364,32,0 ,45,15153,3996804,24,0 ,22,1020,326792,1,1 ,22,1020,326800,1,1 ,22,1020,326808,1,1 ,22,1020,326816,1,1 ,20,25037,24968354,148,0 ,22,1020,326824,1,1 ,22,1020,326832,1,1 ,22,1020,326840,1,1 ,22,1020,326848,1,1 ,20,24248,22871234,116,0 ,20,16110,2424002,24,0 ,20,18301,7666882,124,0 ,17,923,10288324,56,0 ,44,15152,851140,24,0 ,17,923,8191172,32,0 ,22,1020,326856,1,1 ,22,1020,326864,1,1 ,22,1020,326872,1,1 ,22,1020,326880,1,1 ,20,19019,9239778,796,0 ,22,1020,326888,1,1 ,22,1020,326896,1,1 ,22,1020,326904,1,1 ,22,1020,326912,1,1 ,17,923,8715524,24,0 ,44,15152,1899780,56,0 ,22,1020,326920,1,1 ,22,1020,326928,1,1 ,22,1020,326936,1,1 ,22,1020,326944,1,1 ,20,19801,10812706,12,0 ,20,25598,26541346,280,0 ,20,16479,3472674,12,0 ,22,1020,326952,1,1 ,22,1020,326960,1,1 ,22,1020,326968,1,1 ,22,1020,326976,1,1 ,20,15712,1375554,288,0 ,17,923,9239876,64,0 ,17,923,6618436,24,0 ,44,15152,3472708,48,0 ,45,15153,3996996,152,0 ,45,15153,5045572,16,0 ,22,1020,326984,1,1 ,22,1020,326992,1,1 ,22,1020,327000,1,1 ,22,1020,327008,1,1 ,20,15473,851298,224,0 ,22,1020,327016,1,1 ,22,1020,327024,1,1 ,22,1020,327032,1,1 ,22,1020,327040,1,1 ,20,19802,10812802,12,0 ,20,16111,2424194,4664,0 ,20,16480,3472770,476,0 ,20,18769,8715650,204,0 ,44,15152,851332,24,0 ,44,15152,2948484,24,0 ,44,15152,1375620,24,0 ,22,1020,327048,1,1 ,22,1020,327056,1,1 ,22,1020,327064,1,1 ,22,1020,327072,1,1 ,20,15886,1899938,116,0 ,22,1020,327080,1,1 ,22,1020,327088,1,1 ,22,1020,327096,1,1 ,22,1020,327104,1,1 ,20,24596,23920066,20,0 ,17,923,8715716,40,0 ,17,923,7667140,40,0 ,45,15153,5045700,16,0 ,17,923,8191428,32,0 ,22,1020,327112,1,1 ,22,1020,327120,1,1 ,22,1020,327128,1,1 ,22,1020,327136,1,1 ,20,21046,15531490,364,0 ,20,19803,10812898,272,0 ,22,1020,327144,1,1 ,22,1020,327152,1,1 ,22,1020,327160,1,1 ,22,1020,327168,1,1 ,45,15153,4521476,24,0 ,17,923,6618628,40,0 ,22,1020,327176,1,1 ,22,1020,327184,1,1 ,22,1020,327192,1,1 ,22,1020,327200,1,1 ,22,1020,327208,1,1 ,22,1020,327216,1,1 ,22,1020,327224,1,1 ,22,1020,327232,1,1 ,45,15153,5045828,16,0 ,44,15152,2948676,24,0 ,44,15152,1375812,56,0 ,44,15152,851524,24,0 ,22,1020,327240,1,1 ,22,1020,327248,1,1 ,22,1020,327256,1,1 ,22,1020,327264,1,1 ,20,24597,23920226,116,0 ,22,1020,327272,1,1 ,22,1020,327280,1,1 ,22,1020,327288,1,1 ,22,1020,327296,1,1 ,20,18095,7143042,1684,0 ,17,923,10288772,48,0 ,22,1020,327304,1,1 ,22,1020,327312,1,1 ,22,1020,327320,1,1 ,22,1020,327328,1,1 ,22,1020,327336,1,1 ,22,1020,327344,1,1 ,22,1020,327352,1,1 ,22,1020,327360,1,1 ,17,923,9764548,112,0 ,17,923,7143108,88,0 ,44,15152,2424516,136,0 ,44,15152,1900228,408,0 ,44,15152,3473092,48,0 ,45,15153,4521668,32,0 ,45,15153,5045956,16,0 ,17,923,8191684,40,0 ,22,1020,327368,1,1 ,22,1020,327376,1,1 ,22,1020,327384,1,1 ,22,1020,327392,1,1 ,22,1020,327400,1,1 ,22,1020,327408,1,1 ,22,1020,327416,1,1 ,22,1020,327424,1,1 ,20,17830,6618882,404,0 ,17,923,8716036,48,0 ,17,923,7667460,24,0 ,44,15152,2948868,40,0 ,44,15152,851716,48,0 ,22,1020,327432,1,1 ,22,1020,327440,1,1 ,22,1020,327448,1,1 ,22,1020,327456,1,1 ,22,1020,327464,1,1 ,22,1020,327472,1,1 ,22,1020,327480,1,1 ,22,1020,327488,1,1 ,20,26343,28639042,324,0 ,17,923,9240388,64,0 ,17,923,6618948,40,0 ,45,15153,5046084,16,0 ,22,1020,327496,1,1 ,22,1020,327504,1,1 ,22,1020,327512,1,1 ,22,1020,327520,1,1 ,20,20796,13959010,560,0 ,22,1020,327528,1,1 ,22,1020,327536,1,1 ,22,1020,327544,1,1 ,22,1020,327552,1,1 ,20,24042,22347650,120,0 ,20,17616,6094722,192,0 ,22,1020,327560,1,1 ,22,1020,327568,1,1 ,22,1020,327576,1,1 ,22,1020,327584,1,1 ,22,1020,327592,1,1 ,22,1020,327600,1,1 ,22,1020,327608,1,1 ,22,1020,327616,1,1 ,45,15153,5046212,24,0 ,17,923,7667652,16,0 ,45,15153,4521924,48,0 ,22,1020,327624,1,1 ,22,1020,327632,1,1 ,22,1020,327640,1,1 ,22,1020,327648,1,1 ,20,20317,12910562,328,0 ,22,1020,327656,1,1 ,22,1020,327664,1,1 ,22,1020,327672,1,1 ,22,1020,327680,1,1 ,17,923,10289156,40,0 ,44,15152,1376260,48,0 ,17,923,8192004,40,0 ,22,1020,327688,1,1 ,22,1020,327696,1,1 ,22,1020,327704,1,1 ,22,1020,327712,1,1 ,22,1020,327720,1,1 ,22,1020,327728,1,1 ,22,1020,327736,1,1 ,22,1020,327744,1,1 ,45,15153,5570628,16,0 ,17,923,7667780,32,0 ,44,15152,2949188,40,0 ,44,15152,3473476,32,0 ,22,1020,327752,1,1 ,22,1020,327760,1,1 ,22,1020,327768,1,1 ,22,1020,327776,1,1 ,20,24249,22872162,596,0 ,22,1020,327784,1,1 ,22,1020,327792,1,1 ,22,1020,327800,1,1 ,22,1020,327808,1,1 ,17,923,8716420,24,0 ,17,923,6619268,24,0 ,44,15152,852100,40,0 ,45,15153,5046404,16,0 ,22,1020,327816,1,1 ,22,1020,327824,1,1 ,22,1020,327832,1,1 ,22,1020,327840,1,1 ,20,18302,7667874,128,0 ,22,1020,327848,1,1 ,22,1020,327856,1,1 ,22,1020,327864,1,1 ,22,1020,327872,1,1 ,45,15153,5570756,40,0 ,22,1020,327880,1,1 ,22,1020,327888,1,1 ,22,1020,327896,1,1 ,22,1020,327904,1,1 ,22,1020,327912,1,1 ,22,1020,327920,1,1 ,22,1020,327928,1,1 ,22,1020,327936,1,1 ,20,16796,3997954,136,0 ,45,15153,5046532,48,0 ,22,1020,327944,1,1 ,22,1020,327952,1,1 ,22,1020,327960,1,1 ,22,1020,327968,1,1 ,22,1020,327976,1,1 ,22,1020,327984,1,1 ,22,1020,327992,1,1 ,22,1020,328000,1,1 ,20,15887,1900866,80,0 ,20,25038,24969538,44,0 ,17,923,10289476,80,0 ,17,923,7668036,32,0 ,17,923,6619460,32,0 ,44,15152,3473732,40,0 ,45,15153,4522308,24,0 ,17,923,8192324,40,0 ,17,923,8716612,24,0 ,17,923,9240900,72,0 ,22,1020,328008,1,1 ,22,1020,328016,1,1 ,22,1020,328024,1,1 ,22,1020,328032,1,1 ,20,26192,28115298,216,0 ,22,1020,328040,1,1 ,22,1020,328048,1,1 ,22,1020,328056,1,1 ,22,1020,328064,1,1 ,20,22419,18678146,292,0 ,20,17425,5570946,56,0 ,44,15152,1376644,24,0 ,17,923,7143812,104,0 ,44,15152,2949508,40,0 ,22,1020,328072,1,1 ,22,1020,328080,1,1 ,22,1020,328088,1,1 ,22,1020,328096,1,1 ,22,1020,328104,1,1 ,22,1020,328112,1,1 ,22,1020,328120,1,1 ,22,1020,328128,1,1 ,44,15152,852420,64,0 ,22,1020,328136,1,1 ,22,1020,328144,1,1 ,22,1020,328152,1,1 ,22,1020,328160,1,1 ,22,1020,328168,1,1 ,22,1020,328176,1,1 ,22,1020,328184,1,1 ,22,1020,328192,1,1 ,20,24598,23921154,44,0 ,17,923,8716804,24,0 ,45,15153,3998212,56,0 ,45,15153,4522500,24,0 ,45,15153,5571076,16,0 ,22,1020,328200,1,1 ,22,1020,328208,1,1 ,22,1020,328216,1,1 ,22,1020,328224,1,1 ,22,1020,328232,1,1 ,22,1020,328240,1,1 ,22,1020,328248,1,1 ,22,1020,328256,1,1 ,20,19212,9765442,68,0 ,17,923,9765444,112,0 ,17,923,7668292,56,0 ,17,923,6619716,24,0 ,44,15152,1376836,24,0 ,22,1020,328264,1,1 ,22,1020,328272,1,1 ,22,1020,328280,1,1 ,22,1020,328288,1,1 ,20,25999,27591266,136,0 ,22,1020,328296,1,1 ,22,1020,328304,1,1 ,22,1020,328312,1,1 ,22,1020,328320,1,1 ,17,923,8192644,40,0 ,44,15152,3474052,40,0 ,45,15153,5046916,16,0 ,45,15153,5571204,16,0 ,22,1020,328328,1,1 ,22,1020,328336,1,1 ,22,1020,328344,1,1 ,22,1020,328352,1,1 ,20,25039,24969890,152,0 ,22,1020,328360,1,1 ,22,1020,328368,1,1 ,22,1020,328376,1,1 ,22,1020,328384,1,1 ,17,923,8716996,40,0 ,44,15152,2949828,32,0 ,45,15153,4522692,24,0 ,22,1020,328392,1,1 ,22,1020,328400,1,1 ,22,1020,328408,1,1 ,22,1020,328416,1,1 ,22,1020,328424,1,1 ,22,1020,328432,1,1 ,22,1020,328440,1,1 ,22,1020,328448,1,1 ,20,22132,18154242,484,0 ,45,15153,5571332,16,0 ,17,923,6619908,40,0 ,44,15152,2425604,48,0 ,44,15152,1377028,24,0 ,45,15153,5047044,16,0 ,22,1020,328456,1,1 ,22,1020,328464,1,1 ,22,1020,328472,1,1 ,22,1020,328480,1,1 ,22,1020,328488,1,1 ,22,1020,328496,1,1 ,22,1020,328504,1,1 ,22,1020,328512,1,1 ,20,24043,22348610,248,0 ,20,17426,5571394,192,0 ,22,1020,328520,1,1 ,22,1020,328528,1,1 ,22,1020,328536,1,1 ,22,1020,328544,1,1 ,20,24599,23921506,40,0 ,20,23627,21300066,60,0 ,22,1020,328552,1,1 ,22,1020,328560,1,1 ,22,1020,328568,1,1 ,22,1020,328576,1,1 ,17,923,9241476,24,0 ,45,15153,4522884,24,0 ,45,15153,5047172,32,0 ,45,15153,5571460,16,0 ,22,1020,328584,1,1 ,22,1020,328592,1,1 ,22,1020,328600,1,1 ,22,1020,328608,1,1 ,22,1020,328616,1,1 ,22,1020,328624,1,1 ,22,1020,328632,1,1 ,22,1020,328640,1,1 ,20,15888,1901506,112,0 ,17,923,10290116,40,0 ,44,15152,2950084,24,0 ,44,15152,1377220,48,0 ,44,15152,852932,40,0 ,44,15152,3474372,40,0 ,45,15153,3998660,24,0 ,17,923,8192964,40,0 ,22,1020,328648,1,1 ,22,1020,328656,1,1 ,22,1020,328664,1,1 ,22,1020,328672,1,1 ,20,21392,16057314,172,0 ,20,18770,8717282,832,0 ,22,1020,328680,1,1 ,22,1020,328688,1,1 ,22,1020,328696,1,1 ,22,1020,328704,1,1 ,17,923,8717316,40,0 ,17,923,7668740,40,0 ,45,15153,5571588,16,0 ,22,1020,328712,1,1 ,22,1020,328720,1,1 ,22,1020,328728,1,1 ,22,1020,328736,1,1 ,22,1020,328744,1,1 ,22,1020,328752,1,1 ,22,1020,328760,1,1 ,22,1020,328768,1,1 ,17,923,9241668,32,0 ,17,923,6620228,40,0 ,45,15153,4523076,48,0 ,22,1020,328776,1,1 ,22,1020,328784,1,1 ,22,1020,328792,1,1 ,22,1020,328800,1,1 ,20,19213,9765986,244,0 ,20,25239,25494626,244,0 ,20,15474,853090,12,0 ,22,1020,328808,1,1 ,22,1020,328816,1,1 ,22,1020,328824,1,1 ,22,1020,328832,1,1 ,45,15153,5571716,24,0 ,44,15152,2950276,56,0 ,44,15152,2425988,48,0 ,45,15153,3998852,24,0 ,45,15153,5047428,32,0 ,22,1020,328840,1,1 ,22,1020,328848,1,1 ,22,1020,328856,1,1 ,22,1020,328864,1,1 ,20,24600,23921826,984,0 ,20,18303,7668898,84,0 ,22,1020,328872,1,1 ,22,1020,328880,1,1 ,22,1020,328888,1,1 ,22,1020,328896,1,1 ,20,15475,853186,120,0 ,17,923,7144644,120,0 ,22,1020,328904,1,1 ,22,1020,328912,1,1 ,22,1020,328920,1,1 ,22,1020,328928,1,1 ,22,1020,328936,1,1 ,22,1020,328944,1,1 ,22,1020,328952,1,1 ,22,1020,328960,1,1 ,17,923,10290436,32,0 ,44,15152,853252,24,0 ,44,15152,3474692,40,0 ,17,923,8193284,48,0 ,22,1020,328968,1,1 ,22,1020,328976,1,1 ,22,1020,328984,1,1 ,22,1020,328992,1,1 ,20,17204,5047586,316,0 ,22,1020,329000,1,1 ,22,1020,329008,1,1 ,22,1020,329016,1,1 ,22,1020,329024,1,1 ,20,23628,21300546,776,0 ,20,16797,3999042,12,0 ,17,923,9241924,24,0 ,17,923,7669060,32,0 ,44,15152,1377604,24,0 ,45,15153,3999044,40,0 ,45,15153,5571908,16,0 ,17,923,8717636,32,0 ,22,1020,329032,1,1 ,22,1020,329040,1,1 ,22,1020,329048,1,1 ,22,1020,329056,1,1 ,22,1020,329064,1,1 ,22,1020,329072,1,1 ,22,1020,329080,1,1 ,22,1020,329088,1,1 ,20,17617,6096258,504,0 ,45,15153,5047684,32,0 ,17,923,6620548,32,0 ,22,1020,329096,1,1 ,22,1020,329104,1,1 ,22,1020,329112,1,1 ,22,1020,329120,1,1 ,20,16798,3999138,12,0 ,22,1020,329128,1,1 ,22,1020,329136,1,1 ,22,1020,329144,1,1 ,22,1020,329152,1,1 ,17,923,9766340,112,0 ,44,15152,853444,24,0 ,45,15153,4523460,16,0 ,45,15153,5572036,16,0 ,22,1020,329160,1,1 ,22,1020,329168,1,1 ,22,1020,329176,1,1 ,22,1020,329184,1,1 ,20,19527,10290658,96,0 ,20,25599,26543586,280,0 ,20,16202,2950626,448,0 ,22,1020,329192,1,1 ,22,1020,329200,1,1 ,22,1020,329208,1,1 ,22,1020,329216,1,1 ,20,16799,3999234,272,0 ,17,923,10290692,32,0 ,44,15152,2426372,64,0 ,44,15152,1377796,24,0 ,17,923,9242116,24,0 ,22,1020,329224,1,1 ,22,1020,329232,1,1 ,22,1020,329240,1,1 ,22,1020,329248,1,1 ,22,1020,329256,1,1 ,22,1020,329264,1,1 ,22,1020,329272,1,1 ,22,1020,329280,1,1 ,20,15713,1377858,44,0 ,17,923,8717892,32,0 ,17,923,7669316,24,0 ,44,15152,2950724,56,0 ,44,15152,3475012,24,0 ,45,15153,4523588,24,0 ,45,15153,5572164,16,0 ,22,1020,329288,1,1 ,22,1020,329296,1,1 ,22,1020,329304,1,1 ,22,1020,329312,1,1 ,20,19804,10815074,2744,0 ,22,1020,329320,1,1 ,22,1020,329328,1,1 ,22,1020,329336,1,1 ,22,1020,329344,1,1 ,20,18568,8193666,532,0 ,17,923,8193668,40,0 ,17,923,6620804,24,0 ,44,15152,853636,104,0 ,45,15153,3999364,16,0 ,45,15153,5047940,32,0 ,22,1020,329352,1,1 ,22,1020,329360,1,1 ,22,1020,329368,1,1 ,22,1020,329376,1,1 ,20,25774,27068066,144,0 ,20,26000,27592354,136,0 ,22,1020,329384,1,1 ,22,1020,329392,1,1 ,22,1020,329400,1,1 ,22,1020,329408,1,1 ,17,923,9242308,112,0 ,44,15152,1377988,24,0 ,45,15153,5572292,32,0 ,22,1020,329416,1,1 ,22,1020,329424,1,1 ,22,1020,329432,1,1 ,22,1020,329440,1,1 ,22,1020,329448,1,1 ,22,1020,329456,1,1 ,22,1020,329464,1,1 ,22,1020,329472,1,1 ,17,923,10290948,48,0 ,17,923,7669508,32,0 ,44,15152,3475204,16,0 ,45,15153,3999492,16,0 ,45,15153,4523780,16,0 ,22,1020,329480,1,1 ,22,1020,329488,1,1 ,22,1020,329496,1,1 ,22,1020,329504,1,1 ,22,1020,329512,1,1 ,22,1020,329520,1,1 ,22,1020,329528,1,1 ,22,1020,329536,1,1 ,20,18304,7669570,228,0 ,20,15889,1902402,96,0 ,17,923,8718148,32,0 ,17,923,6620996,40,0 ,22,1020,329544,1,1 ,22,1020,329552,1,1 ,22,1020,329560,1,1 ,22,1020,329568,1,1 ,20,25040,24971106,128,0 ,22,1020,329576,1,1 ,22,1020,329584,1,1 ,22,1020,329592,1,1 ,22,1020,329600,1,1 ,45,15153,5048196,40,0 ,44,15152,1378180,24,0 ,44,15152,3475332,24,0 ,45,15153,3999620,16,0 ,45,15153,4523908,24,0 ,22,1020,329608,1,1 ,22,1020,329616,1,1 ,22,1020,329624,1,1 ,22,1020,329632,1,1 ,20,15714,1378210,124,0 ,22,1020,329640,1,1 ,22,1020,329648,1,1 ,22,1020,329656,1,1 ,22,1020,329664,1,1 ,17,923,8193988,40,0 ,45,15153,5572548,48,0 ,22,1020,329672,1,1 ,22,1020,329680,1,1 ,22,1020,329688,1,1 ,22,1020,329696,1,1 ,22,1020,329704,1,1 ,22,1020,329712,1,1 ,22,1020,329720,1,1 ,22,1020,329728,1,1 ,45,15153,3999748,16,0 ,17,923,7669764,32,0 ,44,15152,2951172,56,0 ,44,15152,2426884,48,0 ,22,1020,329736,1,1 ,22,1020,329744,1,1 ,22,1020,329752,1,1 ,22,1020,329760,1,1 ,20,26193,28117026,604,0 ,22,1020,329768,1,1 ,22,1020,329776,1,1 ,22,1020,329784,1,1 ,22,1020,329792,1,1 ,17,923,8718404,32,0 ,44,15152,1378372,24,0 ,44,15152,3475524,32,0 ,45,15153,4524100,24,0 ,22,1020,329800,1,1 ,22,1020,329808,1,1 ,22,1020,329816,1,1 ,22,1020,329824,1,1 ,22,1020,329832,1,1 ,22,1020,329840,1,1 ,22,1020,329848,1,1 ,22,1020,329856,1,1 ,20,15476,854146,12,0 ,17,923,10291332,32,0 ,17,923,7145604,128,0 ,17,923,6621316,32,0 ,45,15153,3999876,16,0 ,22,1020,329864,1,1 ,22,1020,329872,1,1 ,22,1020,329880,1,1 ,22,1020,329888,1,1 ,22,1020,329896,1,1 ,22,1020,329904,1,1 ,22,1020,329912,1,1 ,22,1020,329920,1,1 ,45,15153,5048516,16,0 ,22,1020,329928,1,1 ,22,1020,329936,1,1 ,22,1020,329944,1,1 ,22,1020,329952,1,1 ,20,19528,10291426,72,0 ,20,15477,854242,552,0 ,22,1020,329960,1,1 ,22,1020,329968,1,1 ,22,1020,329976,1,1 ,22,1020,329984,1,1 ,17,923,8194308,40,0 ,17,923,7670020,24,0 ,44,15152,1378564,32,0 ,45,15153,4000004,16,0 ,45,15153,4524292,16,0 ,22,1020,329992,1,1 ,22,1020,330000,1,1 ,22,1020,330008,1,1 ,22,1020,330016,1,1 ,22,1020,330024,1,1 ,22,1020,330032,1,1 ,22,1020,330040,1,1 ,22,1020,330048,1,1 ,20,21393,16058690,88,0 ,20,17427,5572930,116,0 ,20,21047,15534402,328,0 ,17,923,9767236,24,0 ,44,15152,3475780,40,0 ,45,15153,5048644,16,0 ,45,15153,5572932,16,0 ,17,923,8718660,32,0 ,22,1020,330056,1,1 ,22,1020,330064,1,1 ,22,1020,330072,1,1 ,22,1020,330080,1,1 ,20,26344,28641634,96,0 ,22,1020,330088,1,1 ,22,1020,330096,1,1 ,22,1020,330104,1,1 ,22,1020,330112,1,1 ,17,923,10291588,24,0 ,17,923,6621572,32,0 ,44,15152,2427268,48,0 ,45,15153,4000132,16,0 ,45,15153,4524420,24,0 ,22,1020,330120,1,1 ,22,1020,330128,1,1 ,22,1020,330136,1,1 ,22,1020,330144,1,1 ,22,1020,330152,1,1 ,22,1020,330160,1,1 ,22,1020,330168,1,1 ,22,1020,330176,1,1 ,45,15153,5573060,16,0 ,17,923,7670212,32,0 ,44,15152,2951620,56,0 ,44,15152,854468,104,0 ,45,15153,5048772,16,0 ,22,1020,330184,1,1 ,22,1020,330192,1,1 ,22,1020,330200,1,1 ,22,1020,330208,1,1 ,22,1020,330216,1,1 ,22,1020,330224,1,1 ,22,1020,330232,1,1 ,22,1020,330240,1,1 ,17,923,9767428,64,0 ,44,15152,1378820,24,0 ,45,15153,4000260,96,0 ,22,1020,330248,1,1 ,22,1020,330256,1,1 ,22,1020,330264,1,1 ,22,1020,330272,1,1 ,20,20318,12913186,80,0 ,22,1020,330280,1,1 ,22,1020,330288,1,1 ,22,1020,330296,1,1 ,22,1020,330304,1,1 ,20,15890,1903170,116,0 ,17,923,10291780,64,0 ,45,15153,4524612,16,0 ,45,15153,5048900,16,0 ,45,15153,5573188,16,0 ,17,923,8194628,40,0 ,17,923,8718916,48,0 ,17,923,9243204,40,0 ,22,1020,330312,1,1 ,22,1020,330320,1,1 ,22,1020,330328,1,1 ,22,1020,330336,1,1 ,22,1020,330344,1,1 ,22,1020,330352,1,1 ,22,1020,330360,1,1 ,22,1020,330368,1,1 ,44,15152,3476100,24,0 ,17,923,6621828,32,0 ,22,1020,330376,1,1 ,22,1020,330384,1,1 ,22,1020,330392,1,1 ,22,1020,330400,1,1 ,20,22420,18680482,100,0 ,22,1020,330408,1,1 ,22,1020,330416,1,1 ,22,1020,330424,1,1 ,22,1020,330432,1,1 ,20,23419,20777666,24,0 ,45,15153,5573316,48,0 ,17,923,7670468,72,0 ,44,15152,1379012,24,0 ,45,15153,4524740,16,0 ,45,15153,5049028,16,0 ,22,1020,330440,1,1 ,22,1020,330448,1,1 ,22,1020,330456,1,1 ,22,1020,330464,1,1 ,20,26001,27593442,48,0 ,22,1020,330472,1,1 ,22,1020,330480,1,1 ,22,1020,330488,1,1 ,22,1020,330496,1,1 ,20,24044,22350594,208,0 ,44,15152,2427652,24,0 ,22,1020,330504,1,1 ,22,1020,330512,1,1 ,22,1020,330520,1,1 ,22,1020,330528,1,1 ,20,19529,10292002,768,0 ,20,25775,27069218,280,0 ,22,1020,330536,1,1 ,22,1020,330544,1,1 ,22,1020,330552,1,1 ,22,1020,330560,1,1 ,45,15153,5049156,16,0 ,44,15152,3476292,32,0 ,45,15153,4524868,80,0 ,22,1020,330568,1,1 ,22,1020,330576,1,1 ,22,1020,330584,1,1 ,22,1020,330592,1,1 ,20,25041,24972130,424,0 ,22,1020,330600,1,1 ,22,1020,330608,1,1 ,22,1020,330616,1,1 ,22,1020,330624,1,1 ,20,23420,20777858,24,0 ,20,15272,330626,200,0 ,20,15715,1379202,220,0 ,17,923,9243524,104,0 ,17,923,6622084,32,0 ,44,15152,2952068,24,0 ,44,15152,1903492,24,0 ,44,15152,1379204,24,0 ,17,923,8194948,24,0 ,22,1020,330632,1,1 ,22,1020,330640,1,1 ,22,1020,330648,1,1 ,22,1020,330656,1,1 ,20,17831,6622114,412,0 ,22,1020,330664,1,1 ,22,1020,330672,1,1 ,22,1020,330680,1,1 ,22,1020,330688,1,1 ,17,923,8719300,24,0 ,44,15152,2427844,32,0 ,45,15153,5049284,136,0 ,22,1020,330696,1,1 ,22,1020,330704,1,1 ,22,1020,330712,1,1 ,22,1020,330720,1,1 ,22,1020,330728,1,1 ,22,1020,330736,1,1 ,22,1020,330744,1,1 ,22,1020,330752,1,1 ,20,21394,16059394,176,0 ,20,25240,25496578,24,0 ,20,19214,9767938,96,0 ,17,923,9767940,40,0 ,22,1020,330760,1,1 ,22,1020,330768,1,1 ,22,1020,330776,1,1 ,22,1020,330784,1,1 ,22,1020,330792,1,1 ,22,1020,330800,1,1 ,22,1020,330808,1,1 ,22,1020,330816,1,1 ,20,23421,20778050,204,0 ,17,923,10292292,32,0 ,44,15152,2952260,32,0 ,44,15152,1903684,432,0 ,44,15152,1379396,24,0 ,44,15152,3476548,56,0 ,45,15153,5573700,16,0 ,17,923,8195140,24,0 ,22,1020,330824,1,1 ,22,1020,330832,1,1 ,22,1020,330840,1,1 ,22,1020,330848,1,1 ,20,16481,3476578,308,0 ,20,26345,28642402,9932,0 ,20,26002,27593826,136,0 ,22,1020,330856,1,1 ,22,1020,330864,1,1 ,22,1020,330872,1,1 ,22,1020,330880,1,1 ,17,923,8719492,48,0 ,17,923,7146628,24,0 ,17,923,6622340,40,0 ,22,1020,330888,1,1 ,22,1020,330896,1,1 ,22,1020,330904,1,1 ,22,1020,330912,1,1 ,20,20319,12913826,12,0 ,22,1020,330920,1,1 ,22,1020,330928,1,1 ,22,1020,330936,1,1 ,22,1020,330944,1,1 ,20,25241,25496770,24,0 ,45,15153,5573828,16,0 ,44,15152,2428100,32,0 ,22,1020,330952,1,1 ,22,1020,330960,1,1 ,22,1020,330968,1,1 ,22,1020,330976,1,1 ,20,17428,5573858,116,0 ,22,1020,330984,1,1 ,22,1020,330992,1,1 ,22,1020,331000,1,1 ,22,1020,331008,1,1 ,20,20320,12913922,84,0 ,17,923,8195332,64,0 ,17,923,7671044,32,0 ,44,15152,1379588,24,0 ,44,15152,855300,24,0 ,45,15153,4001028,24,0 ,22,1020,331016,1,1 ,22,1020,331024,1,1 ,22,1020,331032,1,1 ,22,1020,331040,1,1 ,22,1020,331048,1,1 ,22,1020,331056,1,1 ,22,1020,331064,1,1 ,22,1020,331072,1,1 ,17,923,10292548,24,0 ,17,923,7146820,56,0 ,44,15152,2952516,40,0 ,45,15153,5573956,96,0 ,17,923,9768260,32,0 ,22,1020,331080,1,1 ,22,1020,331088,1,1 ,22,1020,331096,1,1 ,22,1020,331104,1,1 ,22,1020,331112,1,1 ,22,1020,331120,1,1 ,22,1020,331128,1,1 ,22,1020,331136,1,1 ,20,25242,25496962,24,0 ,22,1020,331144,1,1 ,22,1020,331152,1,1 ,22,1020,331160,1,1 ,22,1020,331168,1,1 ,22,1020,331176,1,1 ,22,1020,331184,1,1 ,22,1020,331192,1,1 ,22,1020,331200,1,1 ,20,22421,18681282,32,0 ,20,21625,16584130,224,0 ,45,15153,4525508,56,0 ,17,923,6622660,32,0 ,44,15152,2428356,80,0 ,44,15152,1379780,8,0 ,44,15152,855492,64,0 ,45,15153,4001220,16,0 ,22,1020,331208,1,1 ,22,1020,331216,1,1 ,22,1020,331224,1,1 ,22,1020,331232,1,1 ,20,15891,1904098,100,0 ,22,1020,331240,1,1 ,22,1020,331248,1,1 ,22,1020,331256,1,1 ,22,1020,331264,1,1 ,20,25463,26021378,168,0 ,17,923,10292740,56,0 ,17,923,7671300,32,0 ,44,15152,1379844,24,0 ,44,15152,3476996,24,0 ,17,923,8719876,32,0 ,22,1020,331272,1,1 ,22,1020,331280,1,1 ,22,1020,331288,1,1 ,22,1020,331296,1,1 ,22,1020,331304,1,1 ,22,1020,331312,1,1 ,22,1020,331320,1,1 ,22,1020,331328,1,1 ,20,25243,25497154,284,0 ,17,923,9768516,40,0 ,45,15153,4001348,16,0 ,22,1020,331336,1,1 ,22,1020,331344,1,1 ,22,1020,331352,1,1 ,22,1020,331360,1,1 ,20,18305,7671394,248,0 ,22,1020,331368,1,1 ,22,1020,331376,1,1 ,22,1020,331384,1,1 ,22,1020,331392,1,1 ,20,16800,4001410,56,0 ,44,15152,2952836,24,0 ,22,1020,331400,1,1 ,22,1020,331408,1,1 ,22,1020,331416,1,1 ,22,1020,331424,1,1 ,20,25600,26545826,740,0 ,22,1020,331432,1,1 ,22,1020,331440,1,1 ,22,1020,331448,1,1 ,22,1020,331456,1,1 ,20,22422,18681538,612,0 ,17,923,9244356,24,0 ,17,923,6622916,40,0 ,44,15152,1380036,24,0 ,44,15152,3477188,24,0 ,45,15153,4001476,32,0 ,22,1020,331464,1,1 ,22,1020,331472,1,1 ,22,1020,331480,1,1 ,22,1020,331488,1,1 ,22,1020,331496,1,1 ,22,1020,331504,1,1 ,22,1020,331512,1,1 ,22,1020,331520,1,1 ,20,19215,9768706,128,0 ,20,17205,5050114,56,0 ,17,923,8720132,32,0 ,17,923,7671556,24,0 ,17,923,7147268,32,0 ,17,923,8195844,32,0 ,22,1020,331528,1,1 ,22,1020,331536,1,1 ,22,1020,331544,1,1 ,22,1020,331552,1,1 ,22,1020,331560,1,1 ,22,1020,331568,1,1 ,22,1020,331576,1,1 ,22,1020,331584,1,1 ,20,17065,4525890,444,0 ,44,15152,2953028,32,0 ,22,1020,331592,1,1 ,22,1020,331600,1,1 ,22,1020,331608,1,1 ,22,1020,331616,1,1 ,22,1020,331624,1,1 ,22,1020,331632,1,1 ,22,1020,331640,1,1 ,22,1020,331648,1,1 ,17,923,9768836,24,0 ,44,15152,1380228,32,0 ,44,15152,3477380,24,0 ,45,15153,4525956,16,0 ,17,923,9244548,24,0 ,22,1020,331656,1,1 ,22,1020,331664,1,1 ,22,1020,331672,1,1 ,22,1020,331680,1,1 ,20,20321,12914594,440,0 ,22,1020,331688,1,1 ,22,1020,331696,1,1 ,22,1020,331704,1,1 ,22,1020,331712,1,1 ,17,923,10293188,56,0 ,17,923,7671748,48,0 ,44,15152,856004,24,0 ,45,15153,4001732,40,0 ,22,1020,331720,1,1 ,22,1020,331728,1,1 ,22,1020,331736,1,1 ,22,1020,331744,1,1 ,22,1020,331752,1,1 ,22,1020,331760,1,1 ,22,1020,331768,1,1 ,22,1020,331776,1,1 ,17,923,8720388,40,0 ,17,923,7147524,32,0 ,17,923,6623236,48,0 ,45,15153,4526084,88,0 ,45,15153,5050372,56,0 ,17,923,8196100,32,0 ,22,1020,331784,1,1 ,22,1020,331792,1,1 ,22,1020,331800,1,1 ,22,1020,331808,1,1 ,22,1020,331816,1,1 ,22,1020,331824,1,1 ,22,1020,331832,1,1 ,22,1020,331840,1,1 ,20,16801,4001858,120,0 ,17,923,9769028,24,0 ,44,15152,2953284,32,0 ,44,15152,2428996,32,0 ,44,15152,3477572,24,0 ,45,15153,5574724,40,0 ,17,923,9244740,24,0 ,22,1020,331848,1,1 ,22,1020,331856,1,1 ,22,1020,331864,1,1 ,22,1020,331872,1,1 ,22,1020,331880,1,1 ,22,1020,331888,1,1 ,22,1020,331896,1,1 ,22,1020,331904,1,1 ,20,17429,5574786,108,0 ,44,15152,856196,32,0 ,44,15152,1380484,24,0 ,22,1020,331912,1,1 ,22,1020,331920,1,1 ,22,1020,331928,1,1 ,22,1020,331936,1,1 ,20,26003,27594914,188,0 ,22,1020,331944,1,1 ,22,1020,331952,1,1 ,22,1020,331960,1,1 ,22,1020,331968,1,1 ,20,17206,5050562,1252,0 ,22,1020,331976,1,1 ,22,1020,331984,1,1 ,22,1020,331992,1,1 ,22,1020,332000,1,1 ,20,20797,13963490,468,0 ,20,24745,24449250,604,0 ,22,1020,332008,1,1 ,22,1020,332016,1,1 ,22,1020,332024,1,1 ,22,1020,332032,1,1 ,20,15892,1904898,296,0 ,17,923,9769220,24,0 ,17,923,7147780,48,0 ,44,15152,3477764,24,0 ,45,15153,4002052,248,0 ,17,923,8196356,32,0 ,17,923,9244932,48,0 ,22,1020,332040,1,1 ,22,1020,332048,1,1 ,22,1020,332056,1,1 ,22,1020,332064,1,1 ,22,1020,332072,1,1 ,22,1020,332080,1,1 ,22,1020,332088,1,1 ,22,1020,332096,1,1 ,17,923,8720708,40,0 ,17,923,7672132,24,0 ,44,15152,2953540,240,0 ,44,15152,2429252,32,0 ,44,15152,1380676,24,0 ,22,1020,332104,1,1 ,22,1020,332112,1,1 ,22,1020,332120,1,1 ,22,1020,332128,1,1 ,22,1020,332136,1,1 ,22,1020,332144,1,1 ,22,1020,332152,1,1 ,22,1020,332160,1,1 ,20,24045,22352258,120,0 ,20,21395,16060802,696,0 ,17,923,10293636,48,0 ,17,923,6623620,48,0 ,44,15152,856452,32,0 ,45,15153,5575044,16,0 ,22,1020,332168,1,1 ,22,1020,332176,1,1 ,22,1020,332184,1,1 ,22,1020,332192,1,1 ,22,1020,332200,1,1 ,22,1020,332208,1,1 ,22,1020,332216,1,1 ,22,1020,332224,1,1 ,20,15273,332226,156,0 ,17,923,9769412,48,0 ,44,15152,3477956,24,0 ,45,15153,5050820,40,0 ,22,1020,332232,1,1 ,22,1020,332240,1,1 ,22,1020,332248,1,1 ,22,1020,332256,1,1 ,22,1020,332264,1,1 ,22,1020,332272,1,1 ,22,1020,332280,1,1 ,22,1020,332288,1,1 ,17,923,8196612,32,0 ,17,923,7672324,48,0 ,44,15152,1380868,24,0 ,45,15153,5575172,16,0 ,22,1020,332296,1,1 ,22,1020,332304,1,1 ,22,1020,332312,1,1 ,22,1020,332320,1,1 ,20,22133,18158114,376,0 ,22,1020,332328,1,1 ,22,1020,332336,1,1 ,22,1020,332344,1,1 ,22,1020,332352,1,1 ,44,15152,2429508,56,0 ,22,1020,332360,1,1 ,22,1020,332368,1,1 ,22,1020,332376,1,1 ,22,1020,332384,1,1 ,20,15716,1380962,124,0 ,22,1020,332392,1,1 ,22,1020,332400,1,1 ,22,1020,332408,1,1 ,22,1020,332416,1,1 ,17,923,9245316,24,0 ,17,923,7148164,24,0 ,44,15152,856708,32,0 ,44,15152,3478148,48,0 ,45,15153,5575300,16,0 ,17,923,8721028,48,0 ,22,1020,332424,1,1 ,22,1020,332432,1,1 ,22,1020,332440,1,1 ,22,1020,332448,1,1 ,20,23422,20779682,12,0 ,22,1020,332456,1,1 ,22,1020,332464,1,1 ,22,1020,332472,1,1 ,22,1020,332480,1,1 ,45,15153,4526788,24,0 ,44,15152,1381060,32,0 ,22,1020,332488,1,1 ,22,1020,332496,1,1 ,22,1020,332504,1,1 ,22,1020,332512,1,1 ,22,1020,332520,1,1 ,22,1020,332528,1,1 ,22,1020,332536,1,1 ,22,1020,332544,1,1 ,20,24250,22876930,372,0 ,20,19216,9769730,276,0 ,20,23423,20779778,120,0 ,17,923,10294020,40,0 ,17,923,6624004,48,0 ,45,15153,5051140,40,0 ,45,15153,5575428,216,0 ,17,923,8196868,32,0 ,22,1020,332552,1,1 ,22,1020,332560,1,1 ,22,1020,332568,1,1 ,22,1020,332576,1,1 ,22,1020,332584,1,1 ,22,1020,332592,1,1 ,22,1020,332600,1,1 ,22,1020,332608,1,1 ,20,25464,26022722,212,0 ,20,26462,29168450,352,0 ,17,923,9769796,32,0 ,17,923,7148356,24,0 ,17,923,9245508,96,0 ,22,1020,332616,1,1 ,22,1020,332624,1,1 ,22,1020,332632,1,1 ,22,1020,332640,1,1 ,22,1020,332648,1,1 ,22,1020,332656,1,1 ,22,1020,332664,1,1 ,22,1020,332672,1,1 ,20,21048,15537026,364,0 ,45,15153,4526980,24,0 ,17,923,7672708,32,0 ,44,15152,856964,64,0 ,22,1020,332680,1,1 ,22,1020,332688,1,1 ,22,1020,332696,1,1 ,22,1020,332704,1,1 ,22,1020,332712,1,1 ,22,1020,332720,1,1 ,22,1020,332728,1,1 ,22,1020,332736,1,1 ,44,15152,1381316,24,0 ,22,1020,332744,1,1 ,22,1020,332752,1,1 ,22,1020,332760,1,1 ,22,1020,332768,1,1 ,20,17430,5575650,116,0 ,20,25776,27071458,116,0 ,20,16203,2954210,872,0 ,22,1020,332776,1,1 ,22,1020,332784,1,1 ,22,1020,332792,1,1 ,22,1020,332800,1,1 ,20,16802,4002818,220,0 ,17,923,8721412,40,0 ,17,923,7148548,24,0 ,44,15152,2429956,48,0 ,44,15152,3478532,256,0 ,17,923,8197124,32,0 ,22,1020,332808,1,1 ,22,1020,332816,1,1 ,22,1020,332824,1,1 ,22,1020,332832,1,1 ,22,1020,332840,1,1 ,22,1020,332848,1,1 ,22,1020,332856,1,1 ,22,1020,332864,1,1 ,17,923,10294340,40,0 ,45,15153,4527172,16,0 ,45,15153,5051460,16,0 ,17,923,9770052,48,0 ,22,1020,332872,1,1 ,22,1020,332880,1,1 ,22,1020,332888,1,1 ,22,1020,332896,1,1 ,22,1020,332904,1,1 ,22,1020,332912,1,1 ,22,1020,332920,1,1 ,22,1020,332928,1,1 ,44,15152,1381508,24,0 ,17,923,7672964,32,0 ,17,923,6624388,24,0 ,22,1020,332936,1,1 ,22,1020,332944,1,1 ,22,1020,332952,1,1 ,22,1020,332960,1,1 ,22,1020,332968,1,1 ,22,1020,332976,1,1 ,22,1020,332984,1,1 ,22,1020,332992,1,1 ,20,21626,16585922,280,0 ,45,15153,5051588,32,0 ,17,923,7148740,56,0 ,45,15153,4527300,32,0 ,22,1020,333000,1,1 ,22,1020,333008,1,1 ,22,1020,333016,1,1 ,22,1020,333024,1,1 ,22,1020,333032,1,1 ,22,1020,333040,1,1 ,22,1020,333048,1,1 ,22,1020,333056,1,1 ,17,923,8197380,32,0 ,22,1020,333064,1,1 ,22,1020,333072,1,1 ,22,1020,333080,1,1 ,22,1020,333088,1,1 ,22,1020,333096,1,1 ,22,1020,333104,1,1 ,22,1020,333112,1,1 ,22,1020,333120,1,1 ,20,24046,22353218,184,0 ,20,17618,6100290,192,0 ,17,923,8721732,48,0 ,17,923,6624580,32,0 ,44,15152,1381700,24,0 ,22,1020,333128,1,1 ,22,1020,333136,1,1 ,22,1020,333144,1,1 ,22,1020,333152,1,1 ,22,1020,333160,1,1 ,22,1020,333168,1,1 ,22,1020,333176,1,1 ,22,1020,333184,1,1 ,17,923,10294660,32,0 ,17,923,7673220,24,0 ,44,15152,2430340,40,0 ,44,15152,857476,24,0 ,22,1020,333192,1,1 ,22,1020,333200,1,1 ,22,1020,333208,1,1 ,22,1020,333216,1,1 ,22,1020,333224,1,1 ,22,1020,333232,1,1 ,22,1020,333240,1,1 ,22,1020,333248,1,1 ,20,19020,9246146,192,0 ,17,923,9770436,40,0 ,45,15153,4527556,24,0 ,45,15153,5051844,24,0 ,22,1020,333256,1,1 ,22,1020,333264,1,1 ,22,1020,333272,1,1 ,22,1020,333280,1,1 ,22,1020,333288,1,1 ,22,1020,333296,1,1 ,22,1020,333304,1,1 ,22,1020,333312,1,1 ,20,16482,3479042,440,0 ,17,923,8197636,24,0 ,44,15152,1381892,24,0 ,22,1020,333320,1,1 ,22,1020,333328,1,1 ,22,1020,333336,1,1 ,22,1020,333344,1,1 ,20,18306,7673378,1960,0 ,22,1020,333352,1,1 ,22,1020,333360,1,1 ,22,1020,333368,1,1 ,22,1020,333376,1,1 ,20,15717,1381954,172,0 ,17,923,9246276,32,0 ,17,923,7673412,32,0 ,17,923,6624836,16,0 ,44,15152,857668,64,0 ,22,1020,333384,1,1 ,22,1020,333392,1,1 ,22,1020,333400,1,1 ,22,1020,333408,1,1 ,22,1020,333416,1,1 ,22,1020,333424,1,1 ,22,1020,333432,1,1 ,22,1020,333440,1,1 ,20,26004,27596418,188,0 ,17,923,10294916,40,0 ,17,923,7149188,24,0 ,45,15153,4527748,16,0 ,45,15153,5052036,24,0 ,22,1020,333448,1,1 ,22,1020,333456,1,1 ,22,1020,333464,1,1 ,22,1020,333472,1,1 ,20,15274,333474,12,0 ,22,1020,333480,1,1 ,22,1020,333488,1,1 ,22,1020,333496,1,1 ,22,1020,333504,1,1 ,20,23424,20780738,196,0 ,17,923,8722116,40,0 ,17,923,6624964,16,0 ,44,15152,2430660,80,0 ,44,15152,1382084,32,0 ,17,923,8197828,24,0 ,22,1020,333512,1,1 ,22,1020,333520,1,1 ,22,1020,333528,1,1 ,22,1020,333536,1,1 ,22,1020,333544,1,1 ,22,1020,333552,1,1 ,22,1020,333560,1,1 ,22,1020,333568,1,1 ,20,15275,333570,112,0 ,17,923,9770756,24,0 ,44,15152,333572,24,0 ,45,15153,4527876,16,0 ,22,1020,333576,1,1 ,22,1020,333584,1,1 ,22,1020,333592,1,1 ,22,1020,333600,1,1 ,20,18569,8197922,208,0 ,20,25244,25499426,1268,0 ,22,1020,333608,1,1 ,22,1020,333616,1,1 ,22,1020,333624,1,1 ,22,1020,333632,1,1 ,17,923,9246532,32,0 ,17,923,7673668,32,0 ,17,923,7149380,32,0 ,17,923,6625092,16,0 ,45,15153,5052228,24,0 ,22,1020,333640,1,1 ,22,1020,333648,1,1 ,22,1020,333656,1,1 ,22,1020,333664,1,1 ,22,1020,333672,1,1 ,22,1020,333680,1,1 ,22,1020,333688,1,1 ,22,1020,333696,1,1 ,20,17431,5576578,192,0 ,20,25777,27072386,1176,0 ,17,923,8198020,72,0 ,45,15153,4528004,32,0 ,22,1020,333704,1,1 ,22,1020,333712,1,1 ,22,1020,333720,1,1 ,22,1020,333728,1,1 ,22,1020,333736,1,1 ,22,1020,333744,1,1 ,22,1020,333752,1,1 ,22,1020,333760,1,1 ,17,923,10295236,32,0 ,17,923,6625220,32,0 ,44,15152,1382340,24,0 ,44,15152,333764,192,0 ,17,923,9770948,24,0 ,22,1020,333768,1,1 ,22,1020,333776,1,1 ,22,1020,333784,1,1 ,22,1020,333792,1,1 ,22,1020,333800,1,1 ,22,1020,333808,1,1 ,22,1020,333816,1,1 ,22,1020,333824,1,1 ,17,923,8722436,56,0 ,45,15153,5052420,40,0 ,22,1020,333832,1,1 ,22,1020,333840,1,1 ,22,1020,333848,1,1 ,22,1020,333856,1,1 ,22,1020,333864,1,1 ,22,1020,333872,1,1 ,22,1020,333880,1,1 ,22,1020,333888,1,1 ,17,923,9246788,32,0 ,17,923,7673924,32,0 ,17,923,7149636,24,0 ,44,15152,858180,24,0 ,22,1020,333896,1,1 ,22,1020,333904,1,1 ,22,1020,333912,1,1 ,22,1020,333920,1,1 ,22,1020,333928,1,1 ,22,1020,333936,1,1 ,22,1020,333944,1,1 ,22,1020,333952,1,1 ,20,17832,6625410,64,0 ,17,923,9771140,24,0 ,44,15152,1382532,24,0 ,45,15153,4528260,16,0 ,22,1020,333960,1,1 ,22,1020,333968,1,1 ,22,1020,333976,1,1 ,22,1020,333984,1,1 ,20,25042,24975522,72,0 ,22,1020,333992,1,1 ,22,1020,334000,1,1 ,22,1020,334008,1,1 ,22,1020,334016,1,1 ,17,923,10295492,48,0 ,17,923,6625476,48,0 ,44,15152,2955460,432,0 ,45,15153,4004036,24,0 ,22,1020,334024,1,1 ,22,1020,334032,1,1 ,22,1020,334040,1,1 ,22,1020,334048,1,1 ,22,1020,334056,1,1 ,22,1020,334064,1,1 ,22,1020,334072,1,1 ,22,1020,334080,1,1 ,45,15153,4528388,24,0 ,17,923,7149828,24,0 ,44,15152,858372,24,0 ,22,1020,334088,1,1 ,22,1020,334096,1,1 ,22,1020,334104,1,1 ,22,1020,334112,1,1 ,22,1020,334120,1,1 ,22,1020,334128,1,1 ,22,1020,334136,1,1 ,22,1020,334144,1,1 ,17,923,9771332,32,0 ,17,923,7674180,32,0 ,44,15152,2431300,72,0 ,44,15152,1382724,32,0 ,45,15153,5052740,32,0 ,17,923,9247044,32,0 ,22,1020,334152,1,1 ,22,1020,334160,1,1 ,22,1020,334168,1,1 ,22,1020,334176,1,1 ,22,1020,334184,1,1 ,22,1020,334192,1,1 ,22,1020,334200,1,1 ,22,1020,334208,1,1 ,45,15153,4004228,16,0 ,22,1020,334216,1,1 ,22,1020,334224,1,1 ,22,1020,334232,1,1 ,22,1020,334240,1,1 ,22,1020,334248,1,1 ,22,1020,334256,1,1 ,22,1020,334264,1,1 ,22,1020,334272,1,1 ,17,923,8722884,40,0 ,17,923,7150020,24,0 ,44,15152,1907140,48,0 ,44,15152,858564,64,0 ,45,15153,4528580,32,0 ,45,15153,5577156,48,0 ,17,923,8198596,32,0 ,22,1020,334280,1,1 ,22,1020,334288,1,1 ,22,1020,334296,1,1 ,22,1020,334304,1,1 ,20,25465,26024418,100,0 ,22,1020,334312,1,1 ,22,1020,334320,1,1 ,22,1020,334328,1,1 ,22,1020,334336,1,1 ,45,15153,4004356,16,0 ,22,1020,334344,1,1 ,22,1020,334352,1,1 ,22,1020,334360,1,1 ,22,1020,334368,1,1 ,20,15478,858658,820,0 ,22,1020,334376,1,1 ,22,1020,334384,1,1 ,22,1020,334392,1,1 ,22,1020,334400,1,1 ,20,15893,1907266,88,0 ,17,923,10295876,48,0 ,17,923,7674436,32,0 ,17,923,6625860,48,0 ,44,15152,1382980,24,0 ,45,15153,5052996,64,0 ,17,923,9247300,32,0 ,17,923,9771588,48,0 ,22,1020,334408,1,1 ,22,1020,334416,1,1 ,22,1020,334424,1,1 ,22,1020,334432,1,1 ,22,1020,334440,1,1 ,22,1020,334448,1,1 ,22,1020,334456,1,1 ,22,1020,334464,1,1 ,20,17833,6625922,604,0 ,20,15276,334466,608,0 ,45,15153,4004484,16,0 ,17,923,7150212,24,0 ,22,1020,334472,1,1 ,22,1020,334480,1,1 ,22,1020,334488,1,1 ,22,1020,334496,1,1 ,20,21972,17636002,1984,0 ,22,1020,334504,1,1 ,22,1020,334512,1,1 ,22,1020,334520,1,1 ,22,1020,334528,1,1 ,17,923,8198852,16,0 ,45,15153,4528836,24,0 ,22,1020,334536,1,1 ,22,1020,334544,1,1 ,22,1020,334552,1,1 ,22,1020,334560,1,1 ,20,16803,4004578,236,0 ,20,25043,24976098,48,0 ,22,1020,334568,1,1 ,22,1020,334576,1,1 ,22,1020,334584,1,1 ,22,1020,334592,1,1 ,20,24047,22354690,412,0 ,20,26194,28121858,220,0 ,17,923,8723204,40,0 ,44,15152,1383172,24,0 ,45,15153,4004612,16,0 ,22,1020,334600,1,1 ,22,1020,334608,1,1 ,22,1020,334616,1,1 ,22,1020,334624,1,1 ,22,1020,334632,1,1 ,22,1020,334640,1,1 ,22,1020,334648,1,1 ,22,1020,334656,1,1 ,20,17619,6101826,600,0 ,17,923,9247556,48,0 ,17,923,7674692,32,0 ,17,923,7150404,32,0 ,44,15152,1907524,400,0 ,45,15153,5577540,32,0 ,17,923,8198980,32,0 ,22,1020,334664,1,1 ,22,1020,334672,1,1 ,22,1020,334680,1,1 ,22,1020,334688,1,1 ,22,1020,334696,1,1 ,22,1020,334704,1,1 ,22,1020,334712,1,1 ,22,1020,334720,1,1 ,45,15153,4529028,24,0 ,44,15152,2431876,80,0 ,45,15153,4004740,16,0 ,22,1020,334728,1,1 ,22,1020,334736,1,1 ,22,1020,334744,1,1 ,22,1020,334752,1,1 ,20,19217,9771938,448,0 ,20,15718,1383330,1148,0 ,22,1020,334760,1,1 ,22,1020,334768,1,1 ,22,1020,334776,1,1 ,22,1020,334784,1,1 ,20,19021,9247682,140,0 ,17,923,10296260,48,0 ,17,923,6626244,56,0 ,44,15152,1383364,24,0 ,44,15152,859076,24,0 ,17,923,9771972,48,0 ,22,1020,334792,1,1 ,22,1020,334800,1,1 ,22,1020,334808,1,1 ,22,1020,334816,1,1 ,22,1020,334824,1,1 ,22,1020,334832,1,1 ,22,1020,334840,1,1 ,22,1020,334848,1,1 ,45,15153,4004868,40,0 ,44,15152,3480580,80,0 ,22,1020,334856,1,1 ,22,1020,334864,1,1 ,22,1020,334872,1,1 ,22,1020,334880,1,1 ,22,1020,334888,2,1 ,22,1020,334896,1,1 ,22,1020,334904,1,1 ,22,1020,334912,1,1 ,17,923,8723524,48,0 ,17,923,7674948,24,0 ,17,923,7150660,24,0 ,45,15153,4529220,16,0 ,45,15153,5053508,24,0 ,45,15153,5577796,48,0 ,17,923,8199236,56,0 ,22,1020,334920,1,1 ,22,1020,334928,1,1 ,22,1020,334936,1,1 ,22,1020,334944,1,1 ,20,25044,24976482,1356,0 ,20,26005,27597922,136,0 ,22,1020,334952,1,1 ,22,1020,334960,1,1 ,22,1020,334968,1,1 ,22,1020,334976,1,1 ,44,15152,859268,32,0 ,44,15152,1383556,48,0 ,22,1020,334984,1,1 ,22,1020,334992,1,1 ,22,1020,335000,1,1 ,22,1020,335008,1,1 ,22,1020,335016,1,1 ,22,1020,335024,1,1 ,22,1020,335032,1,1 ,22,1020,335040,1,1 ,17,923,9247940,40,0 ,45,15153,4529348,24,0 ,22,1020,335048,1,1 ,22,1020,335056,1,1 ,22,1020,335064,1,1 ,22,1020,335072,1,1 ,20,23425,20782306,48,0 ,22,1020,335080,1,1 ,22,1020,335088,1,1 ,22,1020,335096,1,1 ,22,1020,335104,1,1 ,20,15894,1907970,124,0 ,20,25466,26025218,2060,0 ,45,15153,5053700,16,0 ,17,923,7675140,64,0 ,17,923,7150852,32,0 ,22,1020,335112,1,1 ,22,1020,335120,1,1 ,22,1020,335128,1,1 ,22,1020,335136,1,1 ,20,17066,4529442,36,0 ,22,1020,335144,1,1 ,22,1020,335152,1,1 ,22,1020,335160,1,1 ,22,1020,335168,1,1 ,17,923,10296644,48,0 ,45,15153,4005188,16,0 ,17,923,9772356,32,0 ,22,1020,335176,1,1 ,22,1020,335184,1,1 ,22,1020,335192,1,1 ,22,1020,335200,1,1 ,20,20322,12918114,160,0 ,22,1020,335208,1,1 ,22,1020,335216,1,1 ,22,1020,335224,1,1 ,22,1020,335232,1,1 ,20,23629,21306754,3272,0 ,20,17432,5578114,192,0 ,20,21627,16588162,52,0 ,45,15153,5053828,16,0 ,17,923,6626692,32,0 ,44,15152,859524,48,0 ,45,15153,4529540,16,0 ,22,1020,335240,1,1 ,22,1020,335248,1,1 ,22,1020,335256,1,1 ,22,1020,335264,1,1 ,20,18570,8199586,12,0 ,22,1020,335272,1,1 ,22,1020,335280,1,1 ,22,1020,335288,1,1 ,22,1020,335296,1,1 ,17,923,8723908,48,0 ,44,15152,335300,16,0 ,45,15153,4005316,40,0 ,45,15153,5578180,32,0 ,22,1020,335304,1,1 ,22,1020,335312,1,1 ,22,1020,335320,1,1 ,22,1020,335328,1,1 ,20,22134,18161122,408,0 ,20,18771,8723938,248,0 ,22,1020,335336,1,1 ,22,1020,335344,1,1 ,22,1020,335352,1,1 ,22,1020,335360,1,1 ,20,18571,8199682,12,0 ,17,923,9248260,32,0 ,17,923,7151108,32,0 ,44,15152,2432516,72,0 ,44,15152,1383940,24,0 ,45,15153,4529668,24,0 ,45,15153,5053956,24,0 ,17,923,8199684,24,0 ,22,1020,335368,1,1 ,22,1020,335376,1,1 ,22,1020,335384,1,1 ,22,1020,335392,1,1 ,22,1020,335400,1,1 ,22,1020,335408,1,1 ,22,1020,335416,1,1 ,22,1020,335424,1,1 ,20,17067,4529730,344,0 ,20,26463,29171266,452,0 ,17,923,9772612,40,0 ,44,15152,335428,16,0 ,22,1020,335432,1,1 ,22,1020,335440,1,1 ,22,1020,335448,1,1 ,22,1020,335456,1,1 ,20,23426,20782690,584,0 ,20,18572,8199778,92,0 ,22,1020,335464,1,1 ,22,1020,335472,1,1 ,22,1020,335480,1,1 ,22,1020,335488,1,1 ,44,15152,3481220,24,0 ,17,923,6626948,24,0 ,22,1020,335496,1,1 ,22,1020,335504,1,1 ,22,1020,335512,1,1 ,22,1020,335520,1,1 ,20,24251,22879906,516,0 ,22,1020,335528,1,1 ,22,1020,335536,1,1 ,22,1020,335544,1,1 ,22,1020,335552,1,1 ,17,923,10297028,40,0 ,44,15152,1384132,56,0 ,44,15152,335556,360,0 ,45,15153,4529860,40,0 ,45,15153,5054148,40,0 ,45,15153,5578436,48,0 ,17,923,8199876,40,0 ,22,1020,335560,1,1 ,22,1020,335568,1,1 ,22,1020,335576,1,1 ,22,1020,335584,1,1 ,20,21049,15539938,328,0 ,22,1020,335592,1,1 ,22,1020,335600,1,1 ,22,1020,335608,1,1 ,22,1020,335616,1,1 ,17,923,9248516,32,0 ,17,923,7675652,32,0 ,17,923,7151364,32,0 ,44,15152,859908,40,0 ,45,15153,4005636,16,0 ,22,1020,335624,1,1 ,22,1020,335632,1,1 ,22,1020,335640,1,1 ,22,1020,335648,1,1 ,20,21628,16588578,24,0 ,22,1020,335656,1,1 ,22,1020,335664,1,1 ,22,1020,335672,1,1 ,22,1020,335680,1,1 ,17,923,8724292,24,0 ,17,923,6627140,32,0 ,44,15152,3481412,24,0 ,22,1020,335688,1,1 ,22,1020,335696,1,1 ,22,1020,335704,1,1 ,22,1020,335712,1,1 ,22,1020,335720,1,1 ,22,1020,335728,1,1 ,22,1020,335736,1,1 ,22,1020,335744,1,1 ,20,20798,13967234,1100,0 ,17,923,9772932,40,0 ,45,15153,4005764,16,0 ,22,1020,335752,1,1 ,22,1020,335760,1,1 ,22,1020,335768,1,1 ,22,1020,335776,1,1 ,22,1020,335784,1,1 ,22,1020,335792,1,1 ,22,1020,335800,1,1 ,22,1020,335808,1,1 ,22,1020,335816,1,1 ,22,1020,335824,1,1 ,22,1020,335832,1,1 ,22,1020,335840,1,1 ,20,21629,16588770,128,0 ,22,1020,335848,1,1 ,22,1020,335856,1,1 ,22,1020,335864,1,1 ,22,1020,335872,1,1 ,17,923,10297348,40,0 ,17,923,7675908,48,0 ,17,923,7151620,32,0 ,44,15152,3481604,32,0 ,45,15153,4005892,16,0 ,45,15153,4530180,16,0 ,45,15153,5054468,24,0 ,17,923,8200196,24,0 ,17,923,8724484,64,0 ,17,923,9248772,32,0 ,22,1020,335880,1,1 ,22,1020,335888,1,1 ,22,1020,335896,1,1 ,22,1020,335904,1,1 ,20,19022,9248802,692,0 ,22,1020,335912,1,1 ,22,1020,335920,1,1 ,22,1020,335928,1,1 ,22,1020,335936,1,1 ,45,15153,5578820,16,0 ,17,923,6627396,32,0 ,44,15152,2433092,80,0 ,44,15152,860228,48,0 ,22,1020,335944,1,1 ,22,1020,335952,1,1 ,22,1020,335960,1,1 ,22,1020,335968,1,1 ,22,1020,335976,1,1 ,22,1020,335984,1,1 ,22,1020,335992,1,1 ,22,1020,336000,1,1 ,45,15153,4530308,16,0 ,44,15152,1384580,32,0 ,45,15153,4006020,24,0 ,22,1020,336008,1,1 ,22,1020,336016,1,1 ,22,1020,336024,1,1 ,22,1020,336032,1,1 ,20,26006,27599010,324,0 ,22,1020,336040,1,1 ,22,1020,336048,1,1 ,22,1020,336056,1,1 ,22,1020,336064,1,1 ,17,923,9773252,24,0 ,45,15153,5054660,16,0 ,45,15153,5578948,24,0 ,17,923,8200388,64,0 ,22,1020,336072,1,1 ,22,1020,336080,1,1 ,22,1020,336088,1,1 ,22,1020,336096,1,1 ,20,15895,1908962,112,0 ,22,1020,336104,1,1 ,22,1020,336112,1,1 ,22,1020,336120,1,1 ,22,1020,336128,1,1 ,17,923,9249028,40,0 ,17,923,7151876,32,0 ,44,15152,3481860,24,0 ,45,15153,4530436,24,0 ,22,1020,336136,1,1 ,22,1020,336144,1,1 ,22,1020,336152,1,1 ,22,1020,336160,1,1 ,22,1020,336168,1,1 ,22,1020,336176,1,1 ,22,1020,336184,1,1 ,22,1020,336192,1,1 ,20,18573,8200514,164,0 ,17,923,10297668,32,0 ,17,923,6627652,48,0 ,45,15153,4006212,16,0 ,45,15153,5054788,16,0 ,22,1020,336200,1,1 ,22,1020,336208,1,1 ,22,1020,336216,1,1 ,22,1020,336224,1,1 ,22,1020,336232,1,1 ,22,1020,336240,1,1 ,22,1020,336248,1,1 ,22,1020,336256,1,1 ,17,923,9773444,48,0 ,17,923,7676292,32,0 ,44,15152,1384836,56,0 ,45,15153,5579140,24,0 ,22,1020,336264,1,1 ,22,1020,336272,1,1 ,22,1020,336280,1,1 ,22,1020,336288,1,1 ,22,1020,336296,1,1 ,22,1020,336304,1,1 ,22,1020,336312,1,1 ,22,1020,336320,1,1 ,45,15153,5054916,24,0 ,44,15152,860612,24,0 ,44,15152,3482052,48,0 ,45,15153,4006340,16,0 ,45,15153,4530628,48,0 ,22,1020,336328,1,1 ,22,1020,336336,1,1 ,22,1020,336344,1,1 ,22,1020,336352,1,1 ,20,22423,18686434,56,0 ,20,26195,28123618,1448,0 ,22,1020,336360,1,1 ,22,1020,336368,1,1 ,22,1020,336376,1,1 ,22,1020,336384,1,1 ,17,923,8724996,48,0 ,17,923,7152132,24,0 ,22,1020,336392,1,1 ,22,1020,336400,1,1 ,22,1020,336408,1,1 ,22,1020,336416,1,1 ,22,1020,336424,1,1 ,22,1020,336432,1,1 ,22,1020,336440,1,1 ,22,1020,336448,1,1 ,20,16804,4006466,160,0 ,17,923,10297924,32,0 ,45,15153,4006468,16,0 ,45,15153,5579332,16,0 ,17,923,9249348,40,0 ,22,1020,336456,1,1 ,22,1020,336464,1,1 ,22,1020,336472,1,1 ,22,1020,336480,1,1 ,20,20323,12919394,304,0 ,22,1020,336488,1,1 ,22,1020,336496,1,1 ,22,1020,336504,1,1 ,22,1020,336512,1,1 ,45,15153,5055108,56,0 ,17,923,7676548,32,0 ,44,15152,860804,32,0 ,22,1020,336520,1,1 ,22,1020,336528,1,1 ,22,1020,336536,1,1 ,22,1020,336544,1,1 ,22,1020,336552,1,1 ,22,1020,336560,1,1 ,22,1020,336568,1,1 ,22,1020,336576,1,1 ,17,923,8200900,32,0 ,17,923,7152324,32,0 ,17,923,6628036,48,0 ,44,15152,2433732,104,0 ,45,15153,4006596,48,0 ,45,15153,5579460,48,0 ,22,1020,336584,1,1 ,22,1020,336592,1,1 ,22,1020,336600,1,1 ,22,1020,336608,1,1 ,22,1020,336616,1,1 ,22,1020,336624,1,1 ,22,1020,336632,1,1 ,22,1020,336640,1,1 ,17,923,9773828,32,0 ,22,1020,336648,1,1 ,22,1020,336656,1,1 ,22,1020,336664,1,1 ,22,1020,336672,1,1 ,20,19530,10298146,12,0 ,22,1020,336680,1,1 ,22,1020,336688,1,1 ,22,1020,336696,1,1 ,22,1020,336704,1,1 ,17,923,10298180,24,0 ,44,15152,1385284,32,0 ,44,15152,3482436,24,0 ,45,15153,4531012,24,0 ,22,1020,336712,1,1 ,22,1020,336720,1,1 ,22,1020,336728,1,1 ,22,1020,336736,1,1 ,20,24601,23929698,140,0 ,22,1020,336744,1,1 ,22,1020,336752,1,1 ,22,1020,336760,1,1 ,22,1020,336768,1,1 ,20,19531,10298242,388,0 ,20,17433,5579650,116,0 ,17,923,9249668,24,0 ,17,923,7676804,24,0 ,44,15152,861060,104,0 ,17,923,8725380,48,0 ,22,1020,336776,1,1 ,22,1020,336784,1,1 ,22,1020,336792,1,1 ,22,1020,336800,1,1 ,20,22424,18686882,232,0 ,22,1020,336808,1,1 ,22,1020,336816,1,1 ,22,1020,336824,1,1 ,22,1020,336832,1,1 ,20,16483,3482562,12,0 ,20,24746,24454082,12,0 ,17,923,8201156,24,0 ,17,923,7152580,32,0 ,22,1020,336840,1,1 ,22,1020,336848,1,1 ,22,1020,336856,1,1 ,22,1020,336864,1,1 ,20,21630,16589794,148,0 ,22,1020,336872,1,1 ,22,1020,336880,1,1 ,22,1020,336888,1,1 ,22,1020,336896,1,1 ,17,923,10298372,32,0 ,44,15152,3482628,80,0 ,45,15153,4531204,16,0 ,17,923,9774084,24,0 ,22,1020,336904,1,1 ,22,1020,336912,1,1 ,22,1020,336920,1,1 ,22,1020,336928,1,1 ,20,16484,3482658,32,0 ,20,24747,24454178,88,0 ,22,1020,336936,1,1 ,22,1020,336944,1,1 ,22,1020,336952,1,1 ,22,1020,336960,1,1 ,17,923,9249860,112,0 ,17,923,7676996,24,0 ,17,923,6628420,48,0 ,44,15152,1385540,32,0 ,45,15153,4006980,16,0 ,45,15153,5055556,72,0 ,45,15153,5579844,16,0 ,22,1020,336968,1,1 ,22,1020,336976,1,1 ,22,1020,336984,1,1 ,22,1020,336992,1,1 ,20,15896,1909858,96,0 ,22,1020,337000,1,1 ,22,1020,337008,1,1 ,22,1020,337016,1,1 ,22,1020,337024,1,1 ,17,923,8201348,24,0 ,45,15153,4531332,16,0 ,22,1020,337032,1,1 ,22,1020,337040,1,1 ,22,1020,337048,1,1 ,22,1020,337056,1,1 ,22,1020,337064,1,1 ,22,1020,337072,1,1 ,22,1020,337080,1,1 ,22,1020,337088,1,1 ,17,923,9774276,24,0 ,17,923,7152836,40,0 ,45,15153,4007108,24,0 ,45,15153,5579972,16,0 ,22,1020,337096,1,1 ,22,1020,337104,1,1 ,22,1020,337112,1,1 ,22,1020,337120,1,1 ,22,1020,337128,1,1 ,22,1020,337136,1,1 ,22,1020,337144,1,1 ,22,1020,337152,1,1 ,17,923,10298628,32,0 ,17,923,7677188,24,0 ,45,15153,4531460,32,0 ,17,923,8725764,56,0 ,22,1020,337160,1,1 ,22,1020,337168,1,1 ,22,1020,337176,1,1 ,22,1020,337184,1,1 ,20,16485,3482914,12,0 ,22,1020,337192,1,1 ,22,1020,337200,1,1 ,22,1020,337208,1,1 ,22,1020,337216,1,1 ,17,923,8201540,24,0 ,44,15152,1385796,24,0 ,45,15153,5580100,16,0 ,22,1020,337224,1,1 ,22,1020,337232,1,1 ,22,1020,337240,1,1 ,22,1020,337248,1,1 ,22,1020,337256,1,1 ,22,1020,337264,1,1 ,22,1020,337272,1,1 ,22,1020,337280,1,1 ,20,16486,3483010,204,0 ,17,923,9774468,56,0 ,45,15153,4007300,16,0 ,22,1020,337288,1,1 ,22,1020,337296,1,1 ,22,1020,337304,1,1 ,22,1020,337312,1,1 ,20,18772,8725922,676,0 ,22,1020,337320,1,1 ,22,1020,337328,1,1 ,22,1020,337336,1,1 ,22,1020,337344,1,1 ,20,25601,26551746,608,0 ,45,15153,5580228,24,0 ,17,923,7677380,16,0 ,17,923,6628804,32,0 ,22,1020,337352,1,1 ,22,1020,337360,1,1 ,22,1020,337368,1,1 ,22,1020,337376,1,1 ,22,1020,337384,1,1 ,22,1020,337392,1,1 ,22,1020,337400,1,1 ,22,1020,337408,1,1 ,17,923,10298884,24,0 ,17,923,7153156,40,0 ,44,15152,2434564,120,0 ,44,15152,1385988,32,0 ,45,15153,4007428,16,0 ,45,15153,4531716,48,0 ,17,923,8201732,24,0 ,22,1020,337416,1,1 ,22,1020,337424,1,1 ,22,1020,337432,1,1 ,22,1020,337440,1,1 ,22,1020,337448,1,1 ,22,1020,337456,1,1 ,22,1020,337464,1,1 ,22,1020,337472,1,1 ,20,20581,13444674,848,0 ,44,15152,2958916,24,0 ,17,923,7677508,32,0 ,22,1020,337480,1,1 ,22,1020,337488,1,1 ,22,1020,337496,1,1 ,22,1020,337504,1,1 ,20,18574,8201826,12,0 ,22,1020,337512,1,1 ,22,1020,337520,1,1 ,22,1020,337528,1,1 ,22,1020,337536,1,1 ,45,15153,5580420,24,0 ,44,15152,3483268,16,0 ,45,15153,4007556,24,0 ,45,15153,5056132,16,0 ,22,1020,337544,1,1 ,22,1020,337552,1,1 ,22,1020,337560,1,1 ,22,1020,337568,1,1 ,22,1020,337576,1,1 ,22,1020,337584,1,1 ,22,1020,337592,1,1 ,22,1020,337600,1,1 ,20,18575,8201922,52,0 ,17,923,10299076,24,0 ,17,923,6629060,32,0 ,44,15152,861892,40,0 ,17,923,8201924,24,0 ,17,923,8726212,24,0 ,22,1020,337608,1,1 ,22,1020,337616,1,1 ,22,1020,337624,1,1 ,22,1020,337632,1,1 ,20,24748,24454882,60,0 ,22,1020,337640,1,1 ,22,1020,337648,1,1 ,22,1020,337656,1,1 ,22,1020,337664,1,1 ,45,15153,5056260,88,0 ,44,15152,2959108,280,0 ,44,15152,1386244,24,0 ,44,15152,3483396,136,0 ,22,1020,337672,1,1 ,22,1020,337680,1,1 ,22,1020,337688,1,1 ,22,1020,337696,1,1 ,20,17434,5580578,64,0 ,22,1020,337704,1,1 ,22,1020,337712,1,1 ,22,1020,337720,1,1 ,22,1020,337728,1,1 ,20,21396,16066370,164,0 ,20,16805,4007746,168,0 ,17,923,9774916,40,0 ,17,923,7677764,24,0 ,17,923,7153476,32,0 ,45,15153,4007748,24,0 ,45,15153,5580612,40,0 ,22,1020,337736,1,1 ,22,1020,337744,1,1 ,22,1020,337752,1,1 ,22,1020,337760,1,1 ,20,15897,1910626,92,0 ,22,1020,337768,1,1 ,22,1020,337776,1,1 ,22,1020,337784,1,1 ,22,1020,337792,1,1 ,17,923,10299268,24,0 ,45,15153,4532100,16,0 ,17,923,8202116,40,0 ,17,923,8726404,48,0 ,22,1020,337800,1,1 ,22,1020,337808,1,1 ,22,1020,337816,1,1 ,22,1020,337824,1,1 ,22,1020,337832,1,1 ,22,1020,337840,1,1 ,22,1020,337848,1,1 ,22,1020,337856,1,1 ,20,24602,23930818,28,0 ,17,923,9250756,24,0 ,17,923,6629316,32,0 ,44,15152,1910724,432,0 ,44,15152,1386436,24,0 ,22,1020,337864,1,1 ,22,1020,337872,1,1 ,22,1020,337880,1,1 ,22,1020,337888,1,1 ,20,24048,22357986,48,0 ,22,1020,337896,1,1 ,22,1020,337904,1,1 ,22,1020,337912,1,1 ,22,1020,337920,1,1 ,45,15153,4532228,40,0 ,17,923,7677956,24,0 ,44,15152,862212,40,0 ,45,15153,4007940,16,0 ,22,1020,337928,1,1 ,22,1020,337936,1,1 ,22,1020,337944,1,1 ,22,1020,337952,1,1 ,22,1020,337960,1,1 ,22,1020,337968,1,1 ,22,1020,337976,1,1 ,22,1020,337984,1,1 ,17,923,10299460,24,0 ,17,923,7153732,24,0 ,22,1020,337992,1,1 ,22,1020,338000,1,1 ,22,1020,338008,1,1 ,22,1020,338016,1,1 ,20,18576,8202338,48,0 ,22,1020,338024,1,1 ,22,1020,338032,1,1 ,22,1020,338040,1,1 ,22,1020,338048,1,1 ,20,21631,16590978,124,0 ,17,923,9775236,64,0 ,44,15152,1386628,24,0 ,45,15153,4008068,16,0 ,45,15153,5580932,16,0 ,17,923,9250948,104,0 ,22,1020,338056,1,1 ,22,1020,338064,1,1 ,22,1020,338072,1,1 ,22,1020,338080,1,1 ,20,24603,23931042,1608,0 ,22,1020,338088,1,1 ,22,1020,338096,1,1 ,22,1020,338104,1,1 ,22,1020,338112,1,1 ,20,24749,24455362,24,0 ,17,923,8202436,32,0 ,17,923,7678148,32,0 ,17,923,6629572,32,0 ,22,1020,338120,1,1 ,22,1020,338128,1,1 ,22,1020,338136,1,1 ,22,1020,338144,1,1 ,22,1020,338152,1,1 ,22,1020,338160,1,1 ,22,1020,338168,1,1 ,22,1020,338176,1,1 ,20,17068,4532482,68,0 ,17,923,10299652,24,0 ,17,923,7153924,32,0 ,45,15153,4008196,16,0 ,45,15153,5581060,40,0 ,17,923,8726788,56,0 ,22,1020,338184,1,1 ,22,1020,338192,1,1 ,22,1020,338200,1,1 ,22,1020,338208,1,1 ,20,21050,15542562,364,0 ,20,17435,5581090,236,0 ,22,1020,338216,1,1 ,22,1020,338224,1,1 ,22,1020,338232,1,1 ,22,1020,338240,1,1 ,45,15153,4532548,16,0 ,44,15152,1386820,80,0 ,44,15152,862532,48,0 ,22,1020,338248,1,1 ,22,1020,338256,1,1 ,22,1020,338264,1,1 ,22,1020,338272,1,1 ,20,24049,22358370,144,0 ,22,1020,338280,1,1 ,22,1020,338288,1,1 ,22,1020,338296,1,1 ,22,1020,338304,1,1 ,20,24750,24455554,24,0 ,45,15153,4008324,16,0 ,22,1020,338312,1,1 ,22,1020,338320,1,1 ,22,1020,338328,1,1 ,22,1020,338336,1,1 ,20,19218,9775522,236,0 ,22,1020,338344,1,1 ,22,1020,338352,1,1 ,22,1020,338360,1,1 ,22,1020,338368,1,1 ,17,923,10299844,32,0 ,17,923,7678404,32,0 ,17,923,6629828,32,0 ,44,15152,2435524,40,0 ,45,15153,4532676,24,0 ,45,15153,5056964,24,0 ,17,923,8202692,24,0 ,22,1020,338376,1,1 ,22,1020,338384,1,1 ,22,1020,338392,1,1 ,22,1020,338400,1,1 ,20,18577,8202722,3348,0 ,22,1020,338408,1,1 ,22,1020,338416,1,1 ,22,1020,338424,1,1 ,22,1020,338432,1,1 ,45,15153,4008452,24,0 ,17,923,7154180,32,0 ,44,15152,338436,144,0 ,22,1020,338440,1,1 ,22,1020,338448,1,1 ,22,1020,338456,1,1 ,22,1020,338464,1,1 ,22,1020,338472,1,1 ,22,1020,338480,1,1 ,22,1020,338488,1,1 ,22,1020,338496,1,1 ,20,15898,1911362,84,0 ,20,24751,24455746,24,0 ,45,15153,5581380,16,0 ,22,1020,338504,1,1 ,22,1020,338512,1,1 ,22,1020,338520,1,1 ,22,1020,338528,1,1 ,22,1020,338536,1,1 ,22,1020,338544,1,1 ,22,1020,338552,1,1 ,22,1020,338560,1,1 ,17,923,9775748,56,0 ,45,15153,4532868,16,0 ,45,15153,5057156,48,0 ,17,923,8202884,24,0 ,22,1020,338568,1,1 ,22,1020,338576,1,1 ,22,1020,338584,1,1 ,22,1020,338592,1,1 ,20,22135,18164386,484,0 ,22,1020,338600,1,1 ,22,1020,338608,1,1 ,22,1020,338616,1,1 ,22,1020,338624,1,1 ,20,26007,27601602,120,0 ,17,923,10300100,24,0 ,17,923,7678660,56,0 ,17,923,6630084,32,0 ,44,15152,862916,72,0 ,45,15153,4008644,16,0 ,45,15153,5581508,24,0 ,17,923,8727236,48,0 ,22,1020,338632,1,1 ,22,1020,338640,1,1 ,22,1020,338648,1,1 ,22,1020,338656,1,1 ,20,22425,18688738,616,0 ,22,1020,338664,1,1 ,22,1020,338672,1,1 ,22,1020,338680,1,1 ,22,1020,338688,1,1 ,20,24752,24455938,24,0 ,45,15153,4532996,16,0 ,17,923,7154436,32,0 ,44,15152,2435844,72,0 ,22,1020,338696,1,1 ,22,1020,338704,1,1 ,22,1020,338712,1,1 ,22,1020,338720,1,1 ,20,17069,4533026,1012,0 ,22,1020,338728,1,1 ,22,1020,338736,1,1 ,22,1020,338744,1,1 ,22,1020,338752,1,1 ,20,20227,12397378,1928,0 ,17,923,8203076,56,0 ,44,15152,3484484,128,0 ,45,15153,4008772,16,0 ,22,1020,338760,1,1 ,22,1020,338768,1,1 ,22,1020,338776,1,1 ,22,1020,338784,1,1 ,22,1020,338792,1,1 ,22,1020,338800,1,1 ,22,1020,338808,1,1 ,22,1020,338816,1,1 ,17,923,10300292,32,0 ,45,15153,4533124,24,0 ,45,15153,5581700,16,0 ,22,1020,338824,1,1 ,22,1020,338832,1,1 ,22,1020,338840,1,1 ,22,1020,338848,1,1 ,22,1020,338856,1,1 ,22,1020,338864,1,1 ,22,1020,338872,1,1 ,22,1020,338880,1,1 ,20,24753,24456130,348,0 ,17,923,9251780,32,0 ,17,923,6630340,32,0 ,44,15152,1387460,24,0 ,45,15153,4008900,16,0 ,22,1020,338888,1,1 ,22,1020,338896,1,1 ,22,1020,338904,1,1 ,22,1020,338912,1,1 ,20,20324,12921826,80,0 ,20,16487,3484642,140,0 ,22,1020,338920,1,1 ,22,1020,338928,1,1 ,22,1020,338936,1,1 ,22,1020,338944,1,1 ,45,15153,5581828,56,0 ,17,923,7154692,48,0 ,45,15153,5057540,72,0 ,22,1020,338952,1,1 ,22,1020,338960,1,1 ,22,1020,338968,1,1 ,22,1020,338976,1,1 ,22,1020,338984,1,1 ,22,1020,338992,1,1 ,22,1020,339000,1,1 ,22,1020,339008,1,1 ,17,923,9776196,56,0 ,45,15153,4009028,16,0 ,45,15153,4533316,32,0 ,17,923,8727620,40,0 ,22,1020,339016,1,1 ,22,1020,339024,1,1 ,22,1020,339032,1,1 ,22,1020,339040,1,1 ,20,21632,16591970,88,0 ,20,26464,29174882,112,0 ,20,21397,16067682,84,0 ,22,1020,339048,1,1 ,22,1020,339056,1,1 ,22,1020,339064,1,1 ,22,1020,339072,1,1 ,20,16806,4009090,12,0 ,17,923,10300548,24,0 ,17,923,7679108,48,0 ,44,15152,1387652,24,0 ,22,1020,339080,1,1 ,22,1020,339088,1,1 ,22,1020,339096,1,1 ,22,1020,339104,1,1 ,22,1020,339112,1,1 ,22,1020,339120,1,1 ,22,1020,339128,1,1 ,22,1020,339136,1,1 ,17,923,9252036,32,0 ,17,923,6630596,32,0 ,45,15153,4009156,16,0 ,22,1020,339144,1,1 ,22,1020,339152,1,1 ,22,1020,339160,1,1 ,22,1020,339168,1,1 ,20,16807,4009186,128,0 ,20,15899,1912034,84,0 ,22,1020,339176,1,1 ,22,1020,339184,1,1 ,22,1020,339192,1,1 ,22,1020,339200,1,1 ,17,923,8203524,24,0 ,44,15152,863492,32,0 ,22,1020,339208,1,1 ,22,1020,339216,1,1 ,22,1020,339224,1,1 ,22,1020,339232,1,1 ,22,1020,339240,1,1 ,22,1020,339248,1,1 ,22,1020,339256,1,1 ,22,1020,339264,1,1 ,17,923,10300740,24,0 ,44,15152,2436420,128,0 ,44,15152,1387844,48,0 ,45,15153,4009284,16,0 ,45,15153,4533572,24,0 ,22,1020,339272,1,1 ,22,1020,339280,1,1 ,22,1020,339288,1,1 ,22,1020,339296,1,1 ,20,17834,6630754,128,0 ,22,1020,339304,1,1 ,22,1020,339312,1,1 ,22,1020,339320,1,1 ,22,1020,339328,1,1 ,20,23819,21835138,128,0 ,20,15277,339330,188,0 ,17,923,8727940,24,0 ,17,923,7155076,32,0 ,22,1020,339336,1,1 ,22,1020,339344,1,1 ,22,1020,339352,1,1 ,22,1020,339360,1,1 ,22,1020,339368,1,1 ,22,1020,339376,1,1 ,22,1020,339384,1,1 ,22,1020,339392,1,1 ,17,923,9252292,40,0 ,17,923,6630852,40,0 ,45,15153,4009412,32,0 ,45,15153,5582276,32,0 ,17,923,8203716,64,0 ,22,1020,339400,1,1 ,22,1020,339408,1,1 ,22,1020,339416,1,1 ,22,1020,339424,1,1 ,20,24050,22359522,100,0 ,22,1020,339432,1,1 ,22,1020,339440,1,1 ,22,1020,339448,1,1 ,22,1020,339456,1,1 ,20,17620,6106626,12,0 ,17,923,10300932,24,0 ,17,923,7679492,48,0 ,44,15152,863748,24,0 ,45,15153,4533764,24,0 ,17,923,9776644,56,0 ,22,1020,339464,1,1 ,22,1020,339472,1,1 ,22,1020,339480,1,1 ,22,1020,339488,1,1 ,22,1020,339496,1,1 ,22,1020,339504,1,1 ,22,1020,339512,1,1 ,22,1020,339520,1,1 ,17,923,8728132,56,0 ,45,15153,5058116,16,0 ,22,1020,339528,1,1 ,22,1020,339536,1,1 ,22,1020,339544,1,1 ,22,1020,339552,1,1 ,20,20325,12922466,12,0 ,20,17621,6106722,52,0 ,22,1020,339560,1,1 ,22,1020,339568,1,1 ,22,1020,339576,1,1 ,22,1020,339584,1,1 ,20,26008,27602562,152,0 ,44,15152,339588,40,0 ,17,923,7155332,32,0 ,22,1020,339592,1,1 ,22,1020,339600,1,1 ,22,1020,339608,1,1 ,22,1020,339616,1,1 ,22,1020,339624,1,1 ,22,1020,339632,1,1 ,22,1020,339640,1,1 ,22,1020,339648,1,1 ,20,24252,22884034,1220,0 ,20,20326,12922562,84,0 ,17,923,10301124,24,0 ,44,15152,1388228,24,0 ,44,15152,863940,32,0 ,45,15153,4009668,16,0 ,45,15153,4533956,24,0 ,45,15153,5058244,64,0 ,45,15153,5582532,24,0 ,22,1020,339656,1,1 ,22,1020,339664,1,1 ,22,1020,339672,1,1 ,22,1020,339680,1,1 ,22,1020,339688,1,1 ,22,1020,339696,1,1 ,22,1020,339704,1,1 ,22,1020,339712,1,1 ,20,21398,16068354,84,0 ,17,923,9252612,32,0 ,17,923,6631172,32,0 ,22,1020,339720,1,1 ,22,1020,339728,1,1 ,22,1020,339736,1,1 ,22,1020,339744,1,1 ,20,21633,16592674,76,0 ,20,16204,2961186,188,0 ,22,1020,339752,1,1 ,22,1020,339760,1,1 ,22,1020,339768,1,1 ,22,1020,339776,1,1 ,45,15153,4009796,24,0 ,44,15152,3485508,40,0 ,22,1020,339784,1,1 ,22,1020,339792,1,1 ,22,1020,339800,1,1 ,22,1020,339808,1,1 ,22,1020,339816,1,1 ,22,1020,339824,1,1 ,22,1020,339832,1,1 ,22,1020,339840,1,1 ,20,15900,1912706,84,0 ,17,923,10301316,24,0 ,17,923,7679876,40,0 ,17,923,7155588,32,0 ,44,15152,1388420,32,0 ,45,15153,4534148,16,0 ,45,15153,5582724,24,0 ,22,1020,339848,1,1 ,22,1020,339856,1,1 ,22,1020,339864,1,1 ,22,1020,339872,1,1 ,20,19532,10301346,88,0 ,22,1020,339880,1,1 ,22,1020,339888,1,1 ,22,1020,339896,1,1 ,22,1020,339904,1,1 ,17,923,9777092,144,0 ,44,15152,2961348,88,0 ,44,15152,339908,32,0 ,44,15152,864196,40,0 ,17,923,8204228,32,0 ,22,1020,339912,1,1 ,22,1020,339920,1,1 ,22,1020,339928,1,1 ,22,1020,339936,1,1 ,20,26465,29175778,780,0 ,22,1020,339944,1,1 ,22,1020,339952,1,1 ,22,1020,339960,1,1 ,22,1020,339968,1,1 ,20,17622,6107138,232,0 ,17,923,9252868,40,0 ,17,923,6631428,24,0 ,45,15153,4009988,24,0 ,45,15153,4534276,32,0 ,17,923,8728580,24,0 ,22,1020,339976,1,1 ,22,1020,339984,1,1 ,22,1020,339992,1,1 ,22,1020,340000,1,1 ,22,1020,340008,1,1 ,22,1020,340016,1,1 ,22,1020,340024,1,1 ,22,1020,340032,1,1 ,20,16488,3485762,588,0 ,17,923,10301508,24,0 ,45,15153,5582916,64,0 ,22,1020,340040,1,1 ,22,1020,340048,1,1 ,22,1020,340056,1,1 ,22,1020,340064,1,1 ,22,1020,340072,1,1 ,22,1020,340080,1,1 ,22,1020,340088,1,1 ,22,1020,340096,1,1 ,20,17436,5582978,12,0 ,44,15152,3485828,64,0 ,17,923,7155844,24,0 ,44,15152,1388676,24,0 ,22,1020,340104,1,1 ,22,1020,340112,1,1 ,22,1020,340120,1,1 ,22,1020,340128,1,1 ,20,23427,20787362,56,0 ,22,1020,340136,1,1 ,22,1020,340144,1,1 ,22,1020,340152,1,1 ,22,1020,340160,1,1 ,17,923,8728772,64,0 ,17,923,7680196,32,0 ,17,923,6631620,40,0 ,44,15152,340164,24,0 ,45,15153,4010180,24,0 ,45,15153,5058756,64,0 ,17,923,8204484,24,0 ,22,1020,340168,1,1 ,22,1020,340176,1,1 ,22,1020,340184,1,1 ,22,1020,340192,1,1 ,20,17437,5583074,12,0 ,20,16808,4010210,100,0 ,22,1020,340200,1,1 ,22,1020,340208,1,1 ,22,1020,340216,1,1 ,22,1020,340224,1,1 ,20,24051,22360322,108,0 ,20,19219,9777410,164,0 ,17,923,10301700,48,0 ,44,15152,864516,24,0 ,45,15153,4534532,16,0 ,22,1020,340232,1,1 ,22,1020,340240,1,1 ,22,1020,340248,1,1 ,22,1020,340256,1,1 ,22,1020,340264,1,1 ,22,1020,340272,1,1 ,22,1020,340280,1,1 ,22,1020,340288,1,1 ,20,17438,5583170,12,0 ,17,923,9253188,24,0 ,17,923,7156036,32,0 ,44,15152,2437444,24,0 ,44,15152,1388868,32,0 ,22,1020,340296,1,1 ,22,1020,340304,1,1 ,22,1020,340312,1,1 ,22,1020,340320,1,1 ,20,20327,12923234,440,0 ,20,17835,6631778,200,0 ,22,1020,340328,1,1 ,22,1020,340336,1,1 ,22,1020,340344,1,1 ,22,1020,340352,1,1 ,20,23820,21836162,752,0 ,20,21634,16593282,76,0 ,17,923,8204676,64,0 ,44,15152,340356,32,0 ,45,15153,4010372,24,0 ,45,15153,4534660,16,0 ,22,1020,340360,1,1 ,22,1020,340368,1,1 ,22,1020,340376,1,1 ,22,1020,340384,1,1 ,20,21399,16069026,84,0 ,20,17439,5583266,540,0 ,22,1020,340392,1,1 ,22,1020,340400,1,1 ,22,1020,340408,1,1 ,22,1020,340416,1,1 ,44,15152,864708,24,0 ,17,923,7680452,32,0 ,22,1020,340424,1,1 ,22,1020,340432,1,1 ,22,1020,340440,1,1 ,22,1020,340448,1,1 ,22,1020,340456,1,1 ,22,1020,340464,1,1 ,22,1020,340472,1,1 ,22,1020,340480,1,1 ,17,923,9253380,24,0 ,17,923,6631940,32,0 ,44,15152,2437636,24,0 ,45,15153,4534788,16,0 ,22,1020,340488,1,1 ,22,1020,340496,1,1 ,22,1020,340504,1,1 ,22,1020,340512,1,1 ,20,15901,1913378,80,0 ,22,1020,340520,1,1 ,22,1020,340528,1,1 ,22,1020,340536,1,1 ,22,1020,340544,1,1 ,45,15153,5583428,24,0 ,17,923,7156292,48,0 ,44,15152,1389124,24,0 ,45,15153,4010564,32,0 ,22,1020,340552,1,1 ,22,1020,340560,1,1 ,22,1020,340568,1,1 ,22,1020,340576,1,1 ,20,23428,20787810,12,0 ,20,19533,10302050,196,0 ,22,1020,340584,1,1 ,22,1020,340592,1,1 ,22,1020,340600,1,1 ,22,1020,340608,1,1 ,17,923,10302084,24,0 ,44,15152,2962052,24,0 ,44,15152,340612,64,0 ,44,15152,864900,48,0 ,44,15152,3486340,56,0 ,45,15153,4534916,24,0 ,22,1020,340616,1,1 ,22,1020,340624,1,1 ,22,1020,340632,1,1 ,22,1020,340640,1,1 ,22,1020,340648,1,1 ,22,1020,340656,1,1 ,22,1020,340664,1,1 ,22,1020,340672,1,1 ,20,23429,20787906,56,0 ,17,923,9253572,48,0 ,17,923,7680708,32,0 ,44,15152,2437828,16,0 ,45,15153,5059268,16,0 ,17,923,8729284,24,0 ,22,1020,340680,1,1 ,22,1020,340688,1,1 ,22,1020,340696,1,1 ,22,1020,340704,1,1 ,22,1020,340712,1,1 ,22,1020,340720,1,1 ,22,1020,340728,1,1 ,22,1020,340736,1,1 ,45,15153,5583620,48,0 ,17,923,6632196,24,0 ,44,15152,1389316,24,0 ,22,1020,340744,1,1 ,22,1020,340752,1,1 ,22,1020,340760,1,1 ,22,1020,340768,1,1 ,20,18096,7156514,316,0 ,22,1020,340776,1,1 ,22,1020,340784,1,1 ,22,1020,340792,1,1 ,22,1020,340800,1,1 ,20,23142,20263746,300,0 ,20,26009,27603778,120,0 ,17,923,10302276,24,0 ,44,15152,2962244,40,0 ,44,15152,2437956,128,0 ,45,15153,4010820,32,0 ,45,15153,4535108,24,0 ,45,15153,5059396,24,0 ,22,1020,340808,1,1 ,22,1020,340816,1,1 ,22,1020,340824,1,1 ,22,1020,340832,1,1 ,20,15278,340834,48,0 ,22,1020,340840,1,1 ,22,1020,340848,1,1 ,22,1020,340856,1,1 ,22,1020,340864,1,1 ,17,923,8729476,56,0 ,17,923,8205188,40,0 ,22,1020,340872,1,1 ,22,1020,340880,1,1 ,22,1020,340888,1,1 ,22,1020,340896,1,1 ,22,1020,340904,1,1 ,22,1020,340912,1,1 ,22,1020,340920,1,1 ,22,1020,340928,1,1 ,20,15479,865218,108,0 ,44,15152,1389508,24,0 ,17,923,7680964,40,0 ,17,923,7156676,16,0 ,17,923,6632388,32,0 ,22,1020,340936,1,1 ,22,1020,340944,1,1 ,22,1020,340952,1,1 ,22,1020,340960,1,1 ,20,21635,16593890,1384,0 ,22,1020,340968,1,1 ,22,1020,340976,1,1 ,22,1020,340984,1,1 ,22,1020,340992,1,1 ,20,16809,4011010,12,0 ,17,923,10302468,48,0 ,44,15152,865284,48,0 ,45,15153,4535300,32,0 ,45,15153,5059588,56,0 ,22,1020,341000,1,1 ,22,1020,341008,1,1 ,22,1020,341016,1,1 ,22,1020,341024,1,1 ,22,1020,341032,1,1 ,22,1020,341040,1,1 ,22,1020,341048,1,1 ,22,1020,341056,1,1 ,20,21400,16069698,84,0 ,17,923,9778244,280,0 ,17,923,7156804,32,0 ,44,15152,3486788,32,0 ,45,15153,4011076,24,0 ,17,923,9253956,48,0 ,22,1020,341064,1,1 ,22,1020,341072,1,1 ,22,1020,341080,1,1 ,22,1020,341088,1,1 ,20,24052,22361186,444,0 ,20,16810,4011106,12,0 ,22,1020,341096,1,1 ,22,1020,341104,1,1 ,22,1020,341112,1,1 ,22,1020,341120,1,1 ,20,23430,20788354,480,0 ,20,21051,15545474,328,0 ,45,15153,5584004,40,0 ,44,15152,2962564,32,0 ,44,15152,1389700,32,0 ,44,15152,341124,24,0 ,22,1020,341128,1,1 ,22,1020,341136,1,1 ,22,1020,341144,1,1 ,22,1020,341152,1,1 ,20,15902,1914018,88,0 ,22,1020,341160,1,1 ,22,1020,341168,1,1 ,22,1020,341176,1,1 ,22,1020,341184,1,1 ,20,22837,19739842,304,0 ,20,16811,4011202,12,0 ,17,923,8205508,56,0 ,17,923,6632644,40,0 ,22,1020,341192,1,1 ,22,1020,341200,1,1 ,22,1020,341208,1,1 ,22,1020,341216,1,1 ,20,15279,341218,52,0 ,22,1020,341224,1,1 ,22,1020,341232,1,1 ,22,1020,341240,1,1 ,22,1020,341248,1,1 ,20,16205,2962690,720,0 ,45,15153,4535556,16,0 ,17,923,7681284,32,0 ,45,15153,4011268,24,0 ,22,1020,341256,1,1 ,22,1020,341264,1,1 ,22,1020,341272,1,1 ,22,1020,341280,1,1 ,20,16812,4011298,12,0 ,22,1020,341288,1,1 ,22,1020,341296,1,1 ,22,1020,341304,1,1 ,22,1020,341312,1,1 ,17,923,8729924,24,0 ,17,923,7157060,32,0 ,44,15152,1914180,400,0 ,44,15152,341316,48,0 ,44,15152,3487044,24,0 ,22,1020,341320,1,1 ,22,1020,341328,1,1 ,22,1020,341336,1,1 ,22,1020,341344,1,1 ,22,1020,341352,1,1 ,22,1020,341360,1,1 ,22,1020,341368,1,1 ,22,1020,341376,1,1 ,20,16813,4011394,12,0 ,17,923,10302852,56,0 ,44,15152,2962820,24,0 ,44,15152,1389956,24,0 ,44,15152,865668,72,0 ,45,15153,4535684,48,0 ,22,1020,341384,1,1 ,22,1020,341392,1,1 ,22,1020,341400,1,1 ,22,1020,341408,1,1 ,22,1020,341416,1,1 ,22,1020,341424,1,1 ,22,1020,341432,1,1 ,22,1020,341440,1,1 ,20,19023,9254338,88,0 ,17,923,9254340,24,0 ,45,15153,4011460,32,0 ,45,15153,5060036,32,0 ,45,15153,5584324,80,0 ,22,1020,341448,1,1 ,22,1020,341456,1,1 ,22,1020,341464,1,1 ,22,1020,341472,1,1 ,20,16814,4011490,12,0 ,22,1020,341480,1,1 ,22,1020,341488,1,1 ,22,1020,341496,1,1 ,23,1021,341504,3,1 ,17,923,8730116,64,0 ,17,923,7681540,40,0 ,17,923,6632964,40,0 ,44,15152,3487236,32,0 ,23,1021,341512,1,1 ,23,1021,341520,1,1 ,23,1021,341528,1,1 ,23,1021,341536,1,1 ,20,19220,9778722,120,0 ,23,1021,341544,1,1 ,23,1021,341552,1,1 ,23,1021,341560,1,1 ,23,1021,341568,1,1 ,20,16815,4011586,12,0 ,44,15152,1390148,32,0 ,17,923,7157316,32,0 ,44,15152,2963012,24,0 ,23,1021,341576,1,1 ,23,1021,341584,1,1 ,23,1021,341592,1,1 ,23,1021,341600,1,1 ,23,1021,341608,1,1 ,23,1021,341616,1,1 ,23,1021,341624,1,1 ,23,1021,341632,1,1 ,20,15280,341634,716,0 ,17,923,9254532,120,0 ,17,923,8205956,32,0 ,23,1021,341640,1,1 ,23,1021,341648,1,1 ,23,1021,341656,1,1 ,23,1021,341664,1,1 ,20,16816,4011682,12,0 ,20,24754,24458914,284,0 ,23,1021,341672,1,1 ,23,1021,341680,1,1 ,23,1021,341688,1,1 ,23,1021,341696,1,1 ,20,20080,11351746,176,0 ,45,15153,5060292,32,0 ,44,15152,341700,88,0 ,45,15153,4011716,88,0 ,23,1021,341704,1,1 ,23,1021,341712,1,1 ,23,1021,341720,1,1 ,23,1021,341728,1,1 ,20,21401,16070370,84,0 ,23,1021,341736,1,1 ,23,1021,341744,1,1 ,23,1021,341752,1,1 ,23,1021,341760,1,1 ,20,16817,4011778,12,0 ,20,26010,27604738,148,0 ,45,15153,4536068,16,0 ,44,15152,2963204,56,0 ,44,15152,3487492,24,0 ,23,1021,341768,1,1 ,23,1021,341776,1,1 ,23,1021,341784,1,1 ,23,1021,341792,1,1 ,20,15480,866082,176,0 ,23,1021,341800,1,1 ,23,1021,341808,1,1 ,23,1021,341816,1,1 ,23,1021,341824,1,1 ,20,17623,6108994,864,0 ,17,923,10303300,32,0 ,17,923,7681860,56,0 ,17,923,7157572,32,0 ,17,923,6633284,32,0 ,44,15152,2438980,24,0 ,44,15152,1390404,48,0 ,23,1021,341832,1,1 ,23,1021,341840,1,1 ,23,1021,341848,1,1 ,23,1021,341856,1,1 ,20,16818,4011874,12,0 ,20,15903,1914722,100,0 ,23,1021,341864,1,1 ,23,1021,341872,1,1 ,23,1021,341880,1,1 ,23,1021,341888,1,1 ,17,923,8206212,24,0 ,45,15153,4536196,16,0 ,23,1021,341896,1,1 ,23,1021,341904,1,1 ,23,1021,341912,1,1 ,23,1021,341920,1,1 ,20,17836,6633378,136,0 ,23,1021,341928,1,1 ,23,1021,341936,1,1 ,23,1021,341944,1,1 ,23,1021,341952,1,1 ,20,16819,4011970,268,0 ,45,15153,5060548,16,0 ,44,15152,866244,48,0 ,44,15152,3487684,352,0 ,23,1021,341960,1,1 ,23,1021,341968,1,1 ,23,1021,341976,1,1 ,23,1021,341984,1,1 ,20,17207,5060578,348,0 ,23,1021,341992,1,1 ,23,1021,342000,1,1 ,23,1021,342008,1,1 ,23,1021,342016,1,1 ,17,923,8730628,24,0 ,44,15152,2439172,72,0 ,45,15153,4536324,16,0 ,23,1021,342024,1,1 ,23,1021,342032,1,1 ,23,1021,342040,1,1 ,23,1021,342048,1,1 ,23,1021,342056,1,1 ,23,1021,342064,1,1 ,23,1021,342072,1,1 ,23,1021,342080,1,1 ,17,923,10303556,24,0 ,17,923,7157828,48,0 ,17,923,6633540,40,0 ,45,15153,5060676,16,0 ,45,15153,5584964,24,0 ,17,923,8206404,72,0 ,23,1021,342088,1,1 ,23,1021,342096,1,1 ,23,1021,342104,1,1 ,23,1021,342112,1,1 ,23,1021,342120,1,1 ,23,1021,342128,1,1 ,23,1021,342136,1,1 ,23,1021,342144,1,1 ,20,19534,10303618,356,0 ,20,19024,9255042,1268,0 ,45,15153,4536452,16,0 ,23,1021,342152,1,1 ,23,1021,342160,1,1 ,23,1021,342168,1,1 ,23,1021,342176,1,1 ,23,1021,342184,1,1 ,23,1021,342192,1,1 ,23,1021,342200,1,1 ,23,1021,342208,1,1 ,20,25602,26556610,112,0 ,17,923,8730820,64,0 ,44,15152,2963652,24,0 ,44,15152,1390788,24,0 ,45,15153,5060804,24,0 ,23,1021,342216,1,1 ,23,1021,342224,1,1 ,23,1021,342232,1,1 ,23,1021,342240,1,1 ,23,1021,342248,1,1 ,23,1021,342256,1,1 ,23,1021,342264,1,1 ,23,1021,342272,1,1 ,17,923,10303748,32,0 ,17,923,7682308,32,0 ,45,15153,4536580,24,0 ,45,15153,5585156,24,0 ,23,1021,342280,1,1 ,23,1021,342288,1,1 ,23,1021,342296,1,1 ,23,1021,342304,1,1 ,23,1021,342312,1,1 ,23,1021,342320,1,1 ,23,1021,342328,1,1 ,23,1021,342336,1,1 ,44,15152,866628,24,0 ,23,1021,342344,1,1 ,23,1021,342352,1,1 ,23,1021,342360,1,1 ,23,1021,342368,1,1 ,23,1021,342376,1,1 ,23,1021,342384,1,1 ,23,1021,342392,1,1 ,23,1021,342400,1,1 ,20,21402,16071042,84,0 ,45,15153,5060996,32,0 ,17,923,6633860,24,0 ,44,15152,2963844,40,0 ,44,15152,1390980,80,0 ,44,15152,342404,24,0 ,45,15153,4012420,16,0 ,23,1021,342408,1,1 ,23,1021,342416,1,1 ,23,1021,342424,1,1 ,23,1021,342432,1,1 ,23,1021,342440,1,1 ,23,1021,342448,1,1 ,23,1021,342456,1,1 ,23,1021,342464,1,1 ,20,22136,18168258,292,0 ,45,15153,5585348,56,0 ,17,923,7158212,32,0 ,45,15153,4536772,16,0 ,23,1021,342472,1,1 ,23,1021,342480,1,1 ,23,1021,342488,1,1 ,23,1021,342496,1,1 ,20,19221,9779682,140,0 ,23,1021,342504,1,1 ,23,1021,342512,1,1 ,23,1021,342520,1,1 ,23,1021,342528,1,1 ,17,923,10304004,40,0 ,17,923,7682564,40,0 ,44,15152,866820,24,0 ,45,15153,4012548,16,0 ,23,1021,342536,1,1 ,23,1021,342544,1,1 ,23,1021,342552,1,1 ,23,1021,342560,1,1 ,23,1021,342568,1,1 ,23,1021,342576,1,1 ,23,1021,342584,1,1 ,23,1021,342592,1,1 ,17,923,9255492,32,0 ,17,923,6634052,40,0 ,44,15152,2439748,56,0 ,44,15152,342596,16,0 ,45,15153,4536900,16,0 ,23,1021,342600,1,1 ,23,1021,342608,1,1 ,23,1021,342616,1,1 ,23,1021,342624,1,1 ,23,1021,342632,1,1 ,23,1021,342640,1,1 ,23,1021,342648,1,1 ,23,1021,342656,1,1 ,20,15904,1915522,100,0 ,17,923,8206980,56,0 ,45,15153,4012676,16,0 ,45,15153,5061252,48,0 ,23,1021,342664,1,1 ,23,1021,342672,1,1 ,23,1021,342680,1,1 ,23,1021,342688,1,1 ,23,1021,342696,1,1 ,23,1021,342704,1,1 ,23,1021,342712,1,1 ,23,1021,342720,1,1 ,20,18773,8731330,316,0 ,17,923,8731332,40,0 ,17,923,7158468,32,0 ,44,15152,2964164,24,0 ,44,15152,342724,16,0 ,44,15152,867012,32,0 ,45,15153,4537028,32,0 ,23,1021,342728,1,1 ,23,1021,342736,1,1 ,23,1021,342744,1,1 ,23,1021,342752,1,1 ,23,1021,342760,1,1 ,23,1021,342768,1,1 ,23,1021,342776,1,1 ,23,1021,342784,1,1 ,45,15153,4012804,24,0 ,23,1021,342792,1,1 ,23,1021,342800,1,1 ,23,1021,342808,1,1 ,23,1021,342816,1,1 ,23,1021,342824,1,1 ,23,1021,342832,1,1 ,23,1021,342840,1,1 ,23,1021,342848,1,1 ,17,923,10304324,40,0 ,17,923,7682884,32,0 ,44,15152,342852,32,0 ,17,923,9255748,40,0 ,23,1021,342856,1,1 ,23,1021,342864,1,1 ,23,1021,342872,1,1 ,23,1021,342880,1,1 ,23,1021,342888,1,1 ,23,1021,342896,1,1 ,23,1021,342904,1,1 ,23,1021,342912,1,1 ,45,15153,5585796,16,0 ,17,923,6634372,40,0 ,44,15152,2964356,24,0 ,23,1021,342920,1,1 ,23,1021,342928,1,1 ,23,1021,342936,1,1 ,23,1021,342944,1,1 ,20,26011,27605922,360,0 ,23,1021,342952,1,1 ,23,1021,342960,1,1 ,23,1021,342968,1,1 ,23,1021,342976,1,1 ,45,15153,4537284,24,0 ,17,923,7158724,40,0 ,44,15152,867268,24,0 ,45,15153,4012996,16,0 ,23,1021,342984,1,1 ,23,1021,342992,1,1 ,23,1021,343000,1,1 ,23,1021,343008,1,1 ,20,17837,6634466,12,0 ,23,1021,343016,1,1 ,23,1021,343024,1,1 ,23,1021,343032,1,1 ,23,1021,343040,1,1 ,17,923,8731652,24,0 ,44,15152,2440196,96,0 ,44,15152,1391620,40,0 ,45,15153,5061636,16,0 ,45,15153,5585924,32,0 ,23,1021,343048,1,1 ,23,1021,343056,1,1 ,23,1021,343064,1,1 ,23,1021,343072,1,1 ,20,21403,16071714,80,0 ,23,1021,343080,1,1 ,23,1021,343088,1,1 ,23,1021,343096,1,1 ,23,1021,343104,1,1 ,20,20081,11353154,300,0 ,20,25778,27081794,96,0 ,20,25603,26557506,2192,0 ,20,17838,6634562,128,0 ,17,923,8207428,40,0 ,17,923,7683140,40,0 ,44,15152,2964548,24,0 ,44,15152,343108,136,0 ,45,15153,4013124,16,0 ,23,1021,343112,1,1 ,23,1021,343120,1,1 ,23,1021,343128,1,1 ,23,1021,343136,1,1 ,23,1021,343144,1,1 ,23,1021,343152,1,1 ,23,1021,343160,1,1 ,23,1021,343168,1,1 ,17,923,10304644,40,0 ,44,15152,867460,32,0 ,45,15153,4537476,40,0 ,45,15153,5061764,16,0 ,17,923,9256068,32,0 ,23,1021,343176,1,1 ,23,1021,343184,1,1 ,23,1021,343192,1,1 ,23,1021,343200,1,1 ,20,23143,20266146,200,0 ,20,15481,867490,12,0 ,23,1021,343208,1,1 ,23,1021,343216,1,1 ,23,1021,343224,1,1 ,23,1021,343232,1,1 ,17,923,8731844,24,0 ,17,923,6634692,32,0 ,45,15153,4013252,24,0 ,23,1021,343240,1,1 ,23,1021,343248,1,1 ,23,1021,343256,1,1 ,23,1021,343264,1,1 ,23,1021,343272,1,1 ,23,1021,343280,1,1 ,23,1021,343288,1,1 ,23,1021,343296,1,1 ,20,18097,7159042,256,0 ,20,15482,867586,60,0 ,17,923,9780484,144,0 ,17,923,7159044,32,0 ,44,15152,2964740,24,0 ,45,15153,5061892,16,0 ,45,15153,5586180,16,0 ,23,1021,343304,1,1 ,23,1021,343312,1,1 ,23,1021,343320,1,1 ,23,1021,343328,1,1 ,23,1021,343336,1,1 ,23,1021,343344,1,1 ,23,1021,343352,1,1 ,23,1021,343360,1,1 ,44,15152,1391940,24,0 ,23,1021,343368,1,1 ,23,1021,343376,1,1 ,23,1021,343384,1,1 ,23,1021,343392,1,1 ,23,1021,343400,1,1 ,23,1021,343408,1,1 ,23,1021,343416,1,1 ,23,1021,343424,1,1 ,17,923,9256324,32,0 ,17,923,7683460,32,0 ,44,15152,867716,24,0 ,45,15153,4013444,16,0 ,45,15153,5062020,16,0 ,45,15153,5586308,24,0 ,17,923,8207748,24,0 ,17,923,8732036,24,0 ,23,1021,343432,1,1 ,23,1021,343440,1,1 ,23,1021,343448,1,1 ,23,1021,343456,1,1 ,20,15905,1916322,96,0 ,23,1021,343464,1,1 ,23,1021,343472,1,1 ,23,1021,343480,1,1 ,23,1021,343488,1,1 ,17,923,10304964,24,0 ,17,923,6634948,32,0 ,44,15152,2964932,40,0 ,45,15153,4537796,24,0 ,23,1021,343496,1,1 ,23,1021,343504,1,1 ,23,1021,343512,1,1 ,23,1021,343520,1,1 ,23,1021,343528,1,1 ,23,1021,343536,1,1 ,23,1021,343544,1,1 ,23,1021,343552,1,1 ,45,15153,5062148,16,0 ,17,923,7159300,24,0 ,44,15152,1392132,32,0 ,45,15153,4013572,24,0 ,23,1021,343560,1,1 ,23,1021,343568,1,1 ,23,1021,343576,1,1 ,23,1021,343584,1,1 ,20,22426,18693666,12,0 ,23,1021,343592,1,1 ,23,1021,343600,1,1 ,23,1021,343608,1,1 ,23,1021,343616,1,1 ,20,22838,19742274,728,0 ,20,19222,9780802,516,0 ,17,923,8732228,16,0 ,44,15152,867908,32,0 ,45,15153,5586500,24,0 ,17,923,8207940,72,0 ,23,1021,343624,1,1 ,23,1021,343632,1,1 ,23,1021,343640,1,1 ,23,1021,343648,1,1 ,23,1021,343656,1,1 ,23,1021,343664,1,1 ,23,1021,343672,1,1 ,23,1021,343680,1,1 ,20,22427,18693762,292,0 ,17,923,10305156,24,0 ,17,923,7683716,40,0 ,45,15153,4537988,352,0 ,45,15153,5062276,16,0 ,17,923,9256580,32,0 ,23,1021,343688,1,1 ,23,1021,343696,1,1 ,23,1021,343704,1,1 ,23,1021,343712,1,1 ,20,21404,16072354,80,0 ,23,1021,343720,1,1 ,23,1021,343728,1,1 ,23,1021,343736,1,1 ,23,1021,343744,1,1 ,20,21052,15548098,364,0 ,20,25245,25509570,332,0 ,17,923,8732356,24,0 ,17,923,7159492,24,0 ,17,923,6635204,32,0 ,45,15153,4013764,32,0 ,23,1021,343752,1,1 ,23,1021,343760,1,1 ,23,1021,343768,1,1 ,23,1021,343776,1,1 ,20,15483,868066,84,0 ,23,1021,343784,1,1 ,23,1021,343792,1,1 ,23,1021,343800,1,1 ,23,1021,343808,1,1 ,45,15153,5586692,32,0 ,44,15152,2965252,32,0 ,44,15152,2440964,24,0 ,44,15152,1392388,64,0 ,45,15153,5062404,16,0 ,23,1021,343816,1,1 ,23,1021,343824,1,1 ,23,1021,343832,1,1 ,23,1021,343840,1,1 ,20,20328,12926754,160,0 ,23,1021,343848,1,1 ,23,1021,343856,1,1 ,23,1021,343864,1,1 ,23,1021,343872,1,1 ,20,25779,27082562,908,0 ,17,923,10305348,40,0 ,44,15152,868164,24,0 ,23,1021,343880,1,1 ,23,1021,343888,1,1 ,23,1021,343896,1,1 ,23,1021,343904,1,1 ,23,1021,343912,1,1 ,23,1021,343920,1,1 ,23,1021,343928,1,1 ,23,1021,343936,1,1 ,20,15719,1392514,148,0 ,20,24755,24461186,200,0 ,17,923,9256836,40,0 ,17,923,7159684,32,0 ,45,15153,5062532,16,0 ,17,923,8732548,40,0 ,23,1021,343944,1,1 ,23,1021,343952,1,1 ,23,1021,343960,1,1 ,23,1021,343968,1,1 ,23,1021,343976,1,1 ,23,1021,343984,1,1 ,23,1021,343992,1,1 ,23,1021,344000,1,1 ,45,15153,4014020,40,0 ,17,923,7684036,32,0 ,17,923,6635460,24,0 ,44,15152,2441156,48,0 ,23,1021,344008,1,1 ,23,1021,344016,1,1 ,23,1021,344024,1,1 ,23,1021,344032,1,1 ,23,1021,344040,1,1 ,23,1021,344048,1,1 ,23,1021,344056,1,1 ,23,1021,344064,1,1 ,45,15153,5586948,16,0 ,44,15152,2965508,32,0 ,44,15152,868356,32,0 ,45,15153,5062660,24,0 ,23,1021,344072,1,1 ,23,1021,344080,1,1 ,23,1021,344088,1,1 ,23,1021,344096,1,1 ,20,16820,4014114,760,0 ,23,1021,344104,1,1 ,23,1021,344112,1,1 ,23,1021,344120,1,1 ,23,1021,344128,1,1 ,20,17839,6635586,364,0 ,23,1021,344136,1,1 ,23,1021,344144,1,1 ,23,1021,344152,1,1 ,23,1021,344160,1,1 ,23,1021,344168,1,1 ,23,1021,344176,1,1 ,23,1021,344184,1,1 ,23,1021,344192,1,1 ,17,923,10305668,48,0 ,17,923,7159940,32,0 ,17,923,6635652,24,0 ,44,15152,344196,88,0 ,45,15153,5587076,24,0 ,17,923,8208516,56,0 ,23,1021,344200,1,1 ,23,1021,344208,1,1 ,23,1021,344216,1,1 ,23,1021,344224,1,1 ,20,15906,1917090,88,0 ,23,1021,344232,1,1 ,23,1021,344240,1,1 ,23,1021,344248,1,1 ,23,1021,344256,1,1 ,20,22610,19218626,40,0 ,20,20582,13451458,132,0 ,17,923,9257156,32,0 ,17,923,7684292,40,0 ,45,15153,5062852,64,0 ,17,923,8732868,32,0 ,23,1021,344264,1,1 ,23,1021,344272,1,1 ,23,1021,344280,1,1 ,23,1021,344288,1,1 ,23,1021,344296,1,1 ,23,1021,344304,1,1 ,23,1021,344312,1,1 ,23,1021,344320,1,1 ,45,15153,4014340,24,0 ,44,15152,2965764,32,0 ,44,15152,1392900,120,0 ,44,15152,868612,24,0 ,23,1021,344328,1,1 ,23,1021,344336,1,1 ,23,1021,344344,1,1 ,23,1021,344352,1,1 ,20,21405,16072994,84,0 ,23,1021,344360,1,1 ,23,1021,344368,1,1 ,23,1021,344376,1,1 ,23,1021,344384,1,1 ,45,15153,5587268,80,0 ,17,923,6635844,24,0 ,44,15152,2441540,40,0 ,23,1021,344392,1,1 ,23,1021,344400,1,1 ,23,1021,344408,1,1 ,23,1021,344416,1,1 ,23,1021,344424,1,1 ,23,1021,344432,1,1 ,23,1021,344440,1,1 ,23,1021,344448,1,1 ,20,15484,868738,88,0 ,17,923,9781636,144,0 ,17,923,7160196,48,0 ,23,1021,344456,1,1 ,23,1021,344464,1,1 ,23,1021,344472,1,1 ,23,1021,344480,1,1 ,23,1021,344488,1,1 ,23,1021,344496,1,1 ,23,1021,344504,1,1 ,23,1021,344512,1,1 ,20,24449,23413186,24,0 ,17,923,9257412,32,0 ,44,15152,1917380,432,0 ,44,15152,868804,32,0 ,45,15153,4014532,16,0 ,17,923,8733124,40,0 ,23,1021,344520,1,1 ,23,1021,344528,1,1 ,23,1021,344536,1,1 ,23,1021,344544,1,1 ,20,20799,13976034,60,0 ,23,1021,344552,1,1 ,23,1021,344560,1,1 ,23,1021,344568,1,1 ,23,1021,344576,1,1 ,20,22611,19218946,12,0 ,17,923,10306052,24,0 ,17,923,7684612,32,0 ,17,923,6636036,24,0 ,44,15152,2966020,24,0 ,23,1021,344584,1,1 ,23,1021,344592,1,1 ,23,1021,344600,1,1 ,23,1021,344608,1,1 ,23,1021,344616,1,1 ,23,1021,344624,1,1 ,23,1021,344632,1,1 ,23,1021,344640,1,1 ,20,24053,22364738,132,0 ,17,923,8208964,40,0 ,45,15153,4014660,24,0 ,23,1021,344648,1,1 ,23,1021,344656,1,1 ,23,1021,344664,1,1 ,23,1021,344672,1,1 ,20,22612,19219042,40,0 ,23,1021,344680,1,1 ,23,1021,344688,1,1 ,23,1021,344696,1,1 ,23,1021,344704,1,1 ,20,24450,23413378,44,0 ,20,17440,5587586,1368,0 ,44,15152,2441860,40,0 ,23,1021,344712,1,1 ,23,1021,344720,1,1 ,23,1021,344728,1,1 ,23,1021,344736,1,1 ,20,16489,3490466,120,0 ,23,1021,344744,1,1 ,23,1021,344752,1,1 ,23,1021,344760,1,1 ,23,1021,344768,1,1 ,20,17208,5063362,12,0 ,17,923,10306244,32,0 ,17,923,6636228,24,0 ,44,15152,2966212,160,0 ,44,15152,869060,24,0 ,44,15152,3490500,32,0 ,45,15153,5063364,16,0 ,17,923,9257668,32,0 ,23,1021,344776,1,1 ,23,1021,344784,1,1 ,23,1021,344792,1,1 ,23,1021,344800,1,1 ,20,23144,20267746,820,0 ,20,22137,18170594,316,0 ,23,1021,344808,1,1 ,23,1021,344816,1,1 ,23,1021,344824,1,1 ,23,1021,344832,1,1 ,17,923,8733444,24,0 ,17,923,7684868,40,0 ,17,923,7160580,24,0 ,45,15153,4014852,24,0 ,23,1021,344840,1,1 ,23,1021,344848,1,1 ,23,1021,344856,1,1 ,23,1021,344864,1,1 ,20,17209,5063458,528,0 ,23,1021,344872,1,1 ,23,1021,344880,1,1 ,23,1021,344888,1,1 ,23,1021,344896,1,1 ,45,15153,5063492,32,0 ,44,15152,344900,192,0 ,23,1021,344904,1,1 ,23,1021,344912,1,1 ,23,1021,344920,1,1 ,23,1021,344928,1,1 ,20,15907,1917794,84,0 ,23,1021,344936,1,1 ,23,1021,344944,1,1 ,23,1021,344952,1,1 ,23,1021,344960,1,1 ,20,23431,20792194,224,0 ,17,923,8209284,40,0 ,17,923,6636420,32,0 ,44,15152,869252,32,0 ,23,1021,344968,1,1 ,23,1021,344976,1,1 ,23,1021,344984,1,1 ,23,1021,344992,1,1 ,20,22613,19219362,300,0 ,20,19535,10306466,12,0 ,23,1021,345000,1,1 ,23,1021,345008,1,1 ,23,1021,345016,1,1 ,23,1021,345024,1,1 ,20,21406,16073666,84,0 ,20,20800,13976514,144,0 ,17,923,10306500,24,0 ,17,923,7160772,48,0 ,44,15152,2442180,32,0 ,44,15152,3490756,24,0 ,45,15153,4015044,24,0 ,45,15153,5587908,96,0 ,17,923,8733636,16,0 ,17,923,9257924,32,0 ,23,1021,345032,1,1 ,23,1021,345040,1,1 ,23,1021,345048,1,1 ,23,1021,345056,1,1 ,20,24451,23413730,44,0 ,23,1021,345064,1,1 ,23,1021,345072,1,1 ,23,1021,345080,1,1 ,23,1021,345088,1,1 ,20,19536,10306562,388,0 ,23,1021,345096,1,1 ,23,1021,345104,1,1 ,23,1021,345112,1,1 ,23,1021,345120,1,1 ,20,20329,12928034,328,0 ,20,15720,1393698,120,0 ,23,1021,345128,1,1 ,23,1021,345136,1,1 ,23,1021,345144,1,1 ,23,1021,345152,1,1 ,20,15485,869442,12,0 ,17,923,8733764,24,0 ,17,923,7685188,40,0 ,45,15153,5063748,32,0 ,23,1021,345160,1,1 ,23,1021,345168,1,1 ,23,1021,345176,1,1 ,23,1021,345184,1,1 ,23,1021,345192,1,1 ,23,1021,345200,1,1 ,23,1021,345208,1,1 ,23,1021,345216,1,1 ,17,923,10306692,32,0 ,17,923,6636676,32,0 ,44,15152,869508,64,0 ,44,15152,3490948,24,0 ,45,15153,4015236,16,0 ,23,1021,345224,1,1 ,23,1021,345232,1,1 ,23,1021,345240,1,1 ,23,1021,345248,1,1 ,20,18774,8733858,192,0 ,20,15486,869538,696,0 ,23,1021,345256,1,1 ,23,1021,345264,1,1 ,23,1021,345272,1,1 ,23,1021,345280,1,1 ,17,923,9258180,24,0 ,44,15152,2442436,56,0 ,44,15152,1393860,24,0 ,17,923,8209604,24,0 ,23,1021,345288,1,1 ,23,1021,345296,1,1 ,23,1021,345304,1,1 ,23,1021,345312,1,1 ,20,20583,13452514,372,0 ,23,1021,345320,1,1 ,23,1021,345328,1,1 ,23,1021,345336,1,1 ,23,1021,345344,1,1 ,20,18098,7161090,52,0 ,17,923,8733956,32,0 ,45,15153,4015364,16,0 ,23,1021,345352,1,1 ,23,1021,345360,1,1 ,23,1021,345368,1,1 ,23,1021,345376,1,1 ,23,1021,345384,1,1 ,23,1021,345392,1,1 ,23,1021,345400,1,1 ,23,1021,345408,1,1 ,20,24452,23414082,44,0 ,45,15153,5064004,16,0 ,17,923,7161156,32,0 ,44,15152,3491140,56,0 ,23,1021,345416,1,1 ,23,1021,345424,1,1 ,23,1021,345432,1,1 ,23,1021,345440,1,1 ,23,1021,345448,1,1 ,23,1021,345456,1,1 ,23,1021,345464,1,1 ,23,1021,345472,1,1 ,17,923,10306948,40,0 ,17,923,7685508,32,0 ,17,923,6636932,24,0 ,44,15152,1394052,24,0 ,45,15153,4015492,24,0 ,17,923,8209796,48,0 ,17,923,9258372,24,0 ,23,1021,345480,1,1 ,23,1021,345488,1,1 ,23,1021,345496,1,1 ,23,1021,345504,1,1 ,20,20082,11355554,504,0 ,23,1021,345512,1,1 ,23,1021,345520,1,1 ,23,1021,345528,1,1 ,23,1021,345536,1,1 ,20,24756,24462786,24,0 ,45,15153,5064132,16,0 ,23,1021,345544,1,1 ,23,1021,345552,1,1 ,23,1021,345560,1,1 ,23,1021,345568,1,1 ,23,1021,345576,1,1 ,23,1021,345584,1,1 ,23,1021,345592,1,1 ,23,1021,345600,1,1 ,20,15908,1918466,76,0 ,17,923,9782788,144,0 ,17,923,8734212,24,0 ,23,1021,345608,1,1 ,23,1021,345616,1,1 ,23,1021,345624,1,1 ,23,1021,345632,1,1 ,23,1021,345640,1,1 ,23,1021,345648,1,1 ,23,1021,345656,1,1 ,23,1021,345664,1,1 ,17,923,9258564,32,0 ,17,923,7161412,32,0 ,17,923,6637124,32,0 ,44,15152,1394244,96,0 ,45,15153,4015684,32,0 ,45,15153,5064260,152,0 ,23,1021,345672,1,1 ,23,1021,345680,1,1 ,23,1021,345688,1,1 ,23,1021,345696,1,1 ,20,24054,22365794,132,0 ,20,16490,3491426,12,0 ,20,21407,16074338,176,0 ,23,1021,345704,1,1 ,23,1021,345712,1,1 ,23,1021,345720,1,1 ,23,1021,345728,1,1 ,20,24757,24462978,44,0 ,44,15152,870020,24,0 ,17,923,7685764,40,0 ,44,15152,2442884,32,0 ,23,1021,345736,1,1 ,23,1021,345744,1,1 ,23,1021,345752,1,1 ,23,1021,345760,1,1 ,20,24453,23414434,76,0 ,20,18099,7161506,140,0 ,23,1021,345768,1,1 ,23,1021,345776,1,1 ,23,1021,345784,1,1 ,23,1021,345792,1,1 ,20,16491,3491522,120,0 ,20,25045,24987330,116,0 ,17,923,10307268,24,0 ,45,15153,5588676,56,0 ,17,923,8734404,32,0 ,23,1021,345800,1,1 ,23,1021,345808,1,1 ,23,1021,345816,1,1 ,23,1021,345824,1,1 ,20,26012,27608802,344,0 ,23,1021,345832,1,1 ,23,1021,345840,1,1 ,23,1021,345848,1,1 ,23,1021,345856,1,1 ,17,923,8210180,40,0 ,44,15152,3491588,24,0 ,23,1021,345864,1,1 ,23,1021,345872,1,1 ,23,1021,345880,1,1 ,23,1021,345888,1,1 ,23,1021,345896,1,1 ,23,1021,345904,1,1 ,23,1021,345912,1,1 ,23,1021,345920,1,1 ,17,923,9258820,32,0 ,17,923,7161668,32,0 ,17,923,6637380,32,0 ,44,15152,870212,24,0 ,45,15153,4015940,16,0 ,23,1021,345928,1,1 ,23,1021,345936,1,1 ,23,1021,345944,1,1 ,23,1021,345952,1,1 ,23,1021,345960,1,1 ,23,1021,345968,1,1 ,23,1021,345976,1,1 ,23,1021,345984,2,1 ,17,923,10307460,24,0 ,44,15152,2443140,64,0 ,23,1021,345992,1,1 ,23,1021,346000,1,1 ,23,1021,346008,1,1 ,23,1021,346016,1,1 ,20,22428,18696098,12,0 ,23,1021,346024,1,1 ,23,1021,346032,1,1 ,23,1021,346040,1,1 ,23,1021,346048,1,1 ,17,923,8734660,32,0 ,17,923,7686084,40,0 ,44,15152,2967492,416,0 ,44,15152,3491780,40,0 ,45,15153,4016068,40,0 ,23,1021,346056,1,1 ,23,1021,346064,1,1 ,23,1021,346072,1,1 ,23,1021,346080,1,1 ,20,15721,1394658,168,0 ,20,24758,24463330,444,0 ,23,1021,346088,1,1 ,23,1021,346096,1,1 ,23,1021,346104,1,1 ,23,1021,346112,1,1 ,20,22429,18696194,292,0 ,44,15152,870404,64,0 ,23,1021,346120,1,1 ,23,1021,346128,1,1 ,23,1021,346136,1,1 ,23,1021,346144,1,1 ,23,1021,346152,1,1 ,23,1021,346160,1,1 ,23,1021,346168,1,1 ,23,1021,346176,1,1 ,20,20801,13977666,1428,0 ,20,26466,29182018,148,0 ,17,923,10307652,24,0 ,17,923,7161924,32,0 ,17,923,6637636,32,0 ,17,923,8210500,40,0 ,17,923,9259076,32,0 ,23,1021,346184,1,1 ,23,1021,346192,1,1 ,23,1021,346200,1,1 ,23,1021,346208,1,1 ,20,15909,1919074,76,0 ,23,1021,346216,1,1 ,23,1021,346224,1,1 ,23,1021,346232,1,1 ,23,1021,346240,1,1 ,45,15153,5589124,32,0 ,23,1021,346248,1,1 ,23,1021,346256,1,1 ,23,1021,346264,1,1 ,23,1021,346272,1,1 ,23,1021,346280,1,1 ,23,1021,346288,1,1 ,23,1021,346296,1,1 ,23,1021,346304,1,1 ,17,923,8734916,32,0 ,23,1021,346312,1,1 ,23,1021,346320,1,1 ,23,1021,346328,1,1 ,23,1021,346336,1,1 ,23,1021,346344,1,1 ,23,1021,346352,1,1 ,23,1021,346360,1,1 ,23,1021,346368,1,1 ,20,24454,23415042,204,0 ,20,23821,21842178,516,0 ,17,923,10307844,32,0 ,17,923,7686404,40,0 ,44,15152,3492100,120,0 ,45,15153,4016388,16,0 ,23,1021,346376,1,1 ,23,1021,346384,1,1 ,23,1021,346392,1,1 ,23,1021,346400,1,1 ,20,25246,25512226,400,0 ,23,1021,346408,1,1 ,23,1021,346416,1,1 ,23,1021,346424,1,1 ,23,1021,346432,1,1 ,17,923,9259332,32,0 ,17,923,7162180,32,0 ,17,923,6637892,24,0 ,44,15152,1395012,24,0 ,44,15152,346436,40,0 ,23,1021,346440,1,1 ,23,1021,346448,1,1 ,23,1021,346456,1,1 ,23,1021,346464,1,1 ,23,1021,346472,1,1 ,23,1021,346480,1,1 ,23,1021,346488,1,1 ,23,1021,346496,1,1 ,17,923,8210820,48,0 ,44,15152,2443652,32,0 ,45,15153,4016516,24,0 ,45,15153,4540804,16,0 ,45,15153,5589380,40,0 ,23,1021,346504,1,1 ,23,1021,346512,1,1 ,23,1021,346520,1,1 ,23,1021,346528,1,1 ,23,1021,346536,1,1 ,23,1021,346544,1,1 ,23,1021,346552,1,1 ,23,1021,346560,1,1 ,17,923,8735172,24,0 ,23,1021,346568,1,1 ,23,1021,346576,1,1 ,23,1021,346584,1,1 ,23,1021,346592,1,1 ,23,1021,346600,1,1 ,23,1021,346608,1,1 ,23,1021,346616,1,1 ,23,1021,346624,1,1 ,17,923,10308100,40,0 ,17,923,6638084,24,0 ,44,15152,1395204,16,0 ,44,15152,870916,72,0 ,45,15153,4540932,64,0 ,23,1021,346632,1,1 ,23,1021,346640,1,1 ,23,1021,346648,1,1 ,23,1021,346656,1,1 ,20,21053,15551010,328,0 ,23,1021,346664,1,1 ,23,1021,346672,1,1 ,23,1021,346680,1,1 ,23,1021,346688,1,1 ,17,923,9259588,24,0 ,17,923,7686724,56,0 ,17,923,7162436,24,0 ,45,15153,4016708,24,0 ,23,1021,346696,1,1 ,23,1021,346704,1,1 ,23,1021,346712,1,1 ,23,1021,346720,1,1 ,20,25046,24988258,108,0 ,23,1021,346728,1,1 ,23,1021,346736,1,1 ,23,1021,346744,1,1 ,23,1021,346752,1,1 ,20,24055,22366850,216,0 ,20,16492,3492482,172,0 ,20,23432,20793986,12,0 ,17,923,9783940,24,0 ,44,15152,2443908,64,0 ,44,15152,1395332,48,0 ,44,15152,346756,32,0 ,17,923,8735364,48,0 ,23,1021,346760,1,1 ,23,1021,346768,1,1 ,23,1021,346776,1,1 ,23,1021,346784,1,1 ,20,18775,8735394,144,0 ,23,1021,346792,1,1 ,23,1021,346800,1,1 ,23,1021,346808,1,1 ,23,1021,346816,1,1 ,20,17070,4541122,652,0 ,20,15910,1919682,116,0 ,45,15153,5589700,32,0 ,17,923,6638276,24,0 ,23,1021,346824,1,1 ,23,1021,346832,1,1 ,23,1021,346840,1,1 ,23,1021,346848,1,1 ,20,23433,20794082,76,0 ,23,1021,346856,1,1 ,23,1021,346864,1,1 ,23,1021,346872,1,1 ,23,1021,346880,1,1 ,20,18100,7162626,260,0 ,17,923,9259780,104,0 ,17,923,7162628,32,0 ,45,15153,4016900,24,0 ,45,15153,5065476,40,0 ,17,923,8211204,48,0 ,23,1021,346888,1,1 ,23,1021,346896,1,1 ,23,1021,346904,1,1 ,23,1021,346912,1,1 ,23,1021,346920,1,1 ,23,1021,346928,1,1 ,23,1021,346936,1,1 ,23,1021,346944,1,1 ,17,923,10308420,32,0 ,17,923,9784132,24,0 ,23,1021,346952,1,1 ,23,1021,346960,1,1 ,23,1021,346968,1,1 ,23,1021,346976,1,1 ,23,1021,346984,1,1 ,23,1021,346992,1,1 ,23,1021,347000,1,1 ,23,1021,347008,1,1 ,20,16206,2968450,3564,0 ,44,15152,347012,72,0 ,17,923,6638468,24,0 ,23,1021,347016,1,1 ,23,1021,347024,1,1 ,23,1021,347032,1,1 ,23,1021,347040,1,1 ,20,17840,6638498,216,0 ,23,1021,347048,1,1 ,23,1021,347056,1,1 ,23,1021,347064,1,1 ,23,1021,347072,1,1 ,45,15153,5589956,24,0 ,45,15153,4017092,16,0 ,23,1021,347080,1,1 ,23,1021,347088,1,1 ,23,1021,347096,1,1 ,23,1021,347104,1,1 ,20,21408,16075746,88,0 ,23,1021,347112,1,1 ,23,1021,347120,1,1 ,23,1021,347128,1,1 ,23,1021,347136,1,1 ,17,923,9784324,24,0 ,17,923,7687172,16,0 ,17,923,7162884,48,0 ,44,15152,1395716,24,0 ,45,15153,4541444,24,0 ,17,923,8735748,32,0 ,23,1021,347144,1,1 ,23,1021,347152,1,1 ,23,1021,347160,1,1 ,23,1021,347168,1,1 ,23,1021,347176,1,1 ,23,1021,347184,1,1 ,23,1021,347192,1,1 ,23,1021,347200,1,1 ,17,923,10308676,32,0 ,17,923,6638660,24,0 ,44,15152,871492,24,0 ,45,15153,4017220,24,0 ,45,15153,5065796,24,0 ,23,1021,347208,1,1 ,23,1021,347216,1,1 ,23,1021,347224,1,1 ,23,1021,347232,1,1 ,23,1021,347240,1,1 ,23,1021,347248,1,1 ,23,1021,347256,1,1 ,23,1021,347264,1,1 ,17,923,8211588,48,0 ,17,923,7687300,48,0 ,44,15152,2444420,80,0 ,45,15153,5590148,80,0 ,23,1021,347272,1,1 ,23,1021,347280,1,1 ,23,1021,347288,1,1 ,23,1021,347296,1,1 ,23,1021,347304,1,1 ,23,1021,347312,1,1 ,23,1021,347320,1,1 ,23,1021,347328,1,1 ,20,22138,18173122,340,0 ,17,923,9784516,16,0 ,44,15152,1395908,24,0 ,44,15152,3493060,32,0 ,45,15153,4541636,24,0 ,23,1021,347336,1,1 ,23,1021,347344,1,1 ,23,1021,347352,1,1 ,23,1021,347360,1,1 ,20,15281,347362,56,0 ,20,26467,29183202,128,0 ,23,1021,347368,1,1 ,23,1021,347376,1,1 ,23,1021,347384,1,1 ,23,1021,347392,1,1 ,20,22614,19221762,56,0 ,17,923,8736004,40,0 ,17,923,6638852,32,0 ,44,15152,871684,24,0 ,45,15153,4017412,16,0 ,45,15153,5065988,32,0 ,23,1021,347400,1,1 ,23,1021,347408,1,1 ,23,1021,347416,1,1 ,23,1021,347424,1,1 ,20,15722,1396002,20,0 ,23,1021,347432,1,1 ,23,1021,347440,1,1 ,23,1021,347448,1,1 ,23,1021,347456,1,1 ,20,23434,20794690,224,0 ,17,923,10308932,40,0 ,17,923,9784644,16,0 ,23,1021,347464,1,1 ,23,1021,347472,1,1 ,23,1021,347480,1,1 ,23,1021,347488,1,1 ,23,1021,347496,1,1 ,23,1021,347504,1,1 ,23,1021,347512,1,1 ,23,1021,347520,1,1 ,45,15153,4541828,16,0 ,17,923,7163268,48,0 ,44,15152,1396100,24,0 ,45,15153,4017540,16,0 ,23,1021,347528,1,1 ,23,1021,347536,1,1 ,23,1021,347544,1,1 ,23,1021,347552,1,1 ,23,1021,347560,1,1 ,23,1021,347568,1,1 ,23,1021,347576,1,1 ,23,1021,347584,1,1 ,20,15723,1396162,88,0 ,20,25047,24989122,296,0 ,17,923,9784772,24,0 ,44,15152,347588,88,0 ,44,15152,871876,48,0 ,44,15152,3493316,24,0 ,23,1021,347592,1,1 ,23,1021,347600,1,1 ,23,1021,347608,1,1 ,23,1021,347616,1,1 ,23,1021,347624,1,1 ,23,1021,347632,1,1 ,23,1021,347640,1,1 ,23,1021,347648,1,1 ,17,923,8211972,40,0 ,17,923,7687684,32,0 ,17,923,6639108,24,0 ,45,15153,4017668,32,0 ,45,15153,4541956,24,0 ,45,15153,5066244,72,0 ,23,1021,347656,1,1 ,23,1021,347664,1,1 ,23,1021,347672,1,1 ,23,1021,347680,1,1 ,23,1021,347688,1,1 ,23,1021,347696,1,1 ,23,1021,347704,1,1 ,23,1021,347712,1,1 ,17,923,9260612,40,0 ,44,15152,1396292,16,0 ,17,923,8736324,40,0 ,23,1021,347720,1,1 ,23,1021,347728,1,1 ,23,1021,347736,1,1 ,23,1021,347744,1,1 ,20,20330,12930658,80,0 ,20,15911,1920610,12,0 ,20,19223,9784930,364,0 ,23,1021,347752,1,1 ,23,1021,347760,1,1 ,23,1021,347768,1,1 ,23,1021,347776,1,1 ,17,923,10309252,48,0 ,44,15152,3493508,24,0 ,17,923,9784964,24,0 ,23,1021,347784,1,1 ,23,1021,347792,1,1 ,23,1021,347800,1,1 ,23,1021,347808,1,1 ,20,21409,16076450,88,0 ,20,15282,347810,256,0 ,23,1021,347816,1,1 ,23,1021,347824,1,1 ,23,1021,347832,1,1 ,23,1021,347840,1,1 ,20,22615,19222210,96,0 ,20,15912,1920706,12,0 ,45,15153,4542148,24,0 ,17,923,6639300,24,0 ,44,15152,1396420,24,0 ,23,1021,347848,1,1 ,23,1021,347856,1,1 ,23,1021,347864,1,1 ,23,1021,347872,1,1 ,23,1021,347880,1,1 ,23,1021,347888,1,1 ,23,1021,347896,1,1 ,23,1021,347904,1,1 ,45,15153,5590788,40,0 ,17,923,7687940,32,0 ,17,923,7163652,40,0 ,44,15152,2445060,96,0 ,45,15153,4017924,24,0 ,23,1021,347912,1,1 ,23,1021,347920,1,1 ,23,1021,347928,1,1 ,23,1021,347936,1,1 ,20,18776,8736546,192,0 ,20,26196,28135202,348,0 ,20,15913,1920802,12,0 ,23,1021,347944,1,1 ,23,1021,347952,1,1 ,23,1021,347960,1,1 ,23,1021,347968,1,1 ,17,923,9785156,24,0 ,44,15152,1920836,56,0 ,44,15152,872260,48,0 ,44,15152,3493700,24,0 ,17,923,8212292,40,0 ,23,1021,347976,1,1 ,23,1021,347984,1,1 ,23,1021,347992,1,1 ,23,1021,348000,1,1 ,20,24455,23416674,56,0 ,23,1021,348008,1,1 ,23,1021,348016,1,1 ,23,1021,348024,1,1 ,23,1021,348032,1,1 ,20,15914,1920898,12,0 ,17,923,9260932,32,0 ,17,923,6639492,24,0 ,44,15152,1396612,32,0 ,45,15153,4542340,16,0 ,17,923,8736644,40,0 ,23,1021,348040,1,1 ,23,1021,348048,1,1 ,23,1021,348056,1,1 ,23,1021,348064,1,1 ,23,1021,348072,1,1 ,23,1021,348080,1,1 ,23,1021,348088,1,1 ,23,1021,348096,1,1 ,45,15153,4018116,16,0 ,23,1021,348104,1,1 ,23,1021,348112,1,1 ,23,1021,348120,1,1 ,23,1021,348128,1,1 ,20,16493,3493858,172,0 ,20,15915,1920994,12,0 ,23,1021,348136,1,1 ,23,1021,348144,1,1 ,23,1021,348152,1,1 ,23,1021,348160,1,1 ,17,923,10309636,48,0 ,17,923,7688196,48,0 ,44,15152,3493892,56,0 ,45,15153,4542468,16,0 ,17,923,9785348,32,0 ,23,1021,348168,1,1 ,23,1021,348176,1,1 ,23,1021,348184,1,1 ,23,1021,348192,1,1 ,20,19537,10309666,140,0 ,23,1021,348200,1,1 ,23,1021,348208,1,1 ,23,1021,348216,1,1 ,23,1021,348224,1,1 ,20,15916,1921090,76,0 ,45,15153,5591108,24,0 ,17,923,7163972,32,0 ,17,923,6639684,24,0 ,45,15153,4018244,16,0 ,45,15153,5066820,32,0 ,23,1021,348232,1,1 ,23,1021,348240,1,1 ,23,1021,348248,1,1 ,23,1021,348256,1,1 ,23,1021,348264,1,1 ,23,1021,348272,1,1 ,23,1021,348280,1,1 ,23,1021,348288,1,1 ,20,20584,13455490,104,0 ,20,15724,1396866,868,0 ,17,923,9261188,24,0 ,44,15152,1396868,48,0 ,44,15152,348292,224,0 ,45,15153,4542596,32,0 ,17,923,8212612,48,0 ,23,1021,348296,1,1 ,23,1021,348304,1,1 ,23,1021,348312,1,1 ,23,1021,348320,1,1 ,23,1021,348328,1,1 ,23,1021,348336,1,1 ,23,1021,348344,1,1 ,23,1021,348352,1,1 ,17,923,8736964,48,0 ,44,15152,872644,24,0 ,45,15153,4018372,16,0 ,23,1021,348360,1,1 ,23,1021,348368,1,1 ,23,1021,348376,1,1 ,23,1021,348384,1,1 ,20,20331,12931298,12,0 ,20,26468,29184226,432,0 ,23,1021,348392,1,1 ,23,1021,348400,1,1 ,23,1021,348408,1,1 ,23,1021,348416,1,1 ,17,923,9785604,32,0 ,17,923,6639876,24,0 ,44,15152,1921284,408,0 ,45,15153,5591300,80,0 ,23,1021,348424,1,1 ,23,1021,348432,1,1 ,23,1021,348440,1,1 ,23,1021,348448,1,1 ,20,24456,23417122,56,0 ,20,22430,18698530,12,0 ,23,1021,348456,1,1 ,23,1021,348464,1,1 ,23,1021,348472,1,1 ,23,1021,348480,1,1 ,20,24056,22368578,912,0 ,20,20332,12931394,84,0 ,17,923,9261380,32,0 ,17,923,7164228,24,0 ,45,15153,4018500,16,0 ,45,15153,5067076,24,0 ,23,1021,348488,1,1 ,23,1021,348496,1,1 ,23,1021,348504,1,1 ,23,1021,348512,1,1 ,20,21410,16077154,380,0 ,23,1021,348520,1,1 ,23,1021,348528,1,1 ,23,1021,348536,1,1 ,23,1021,348544,1,1 ,20,22431,18698626,56,0 ,17,923,10310020,48,0 ,17,923,7688580,40,0 ,44,15152,872836,24,0 ,45,15153,4542852,64,0 ,23,1021,348552,1,1 ,23,1021,348560,1,1 ,23,1021,348568,1,1 ,23,1021,348576,1,1 ,20,26013,27611554,360,0 ,23,1021,348584,1,1 ,23,1021,348592,1,1 ,23,1021,348600,1,1 ,23,1021,348608,1,1 ,20,22616,19222978,108,0 ,45,15153,4018628,24,0 ,17,923,6640068,32,0 ,44,15152,3494340,24,0 ,23,1021,348616,1,1 ,23,1021,348624,1,1 ,23,1021,348632,1,1 ,23,1021,348640,1,1 ,23,1021,348648,1,1 ,23,1021,348656,1,1 ,23,1021,348664,1,1 ,23,1021,348672,1,1 ,17,923,9785860,24,0 ,17,923,7164420,24,0 ,44,15152,2445828,32,0 ,44,15152,1397252,88,0 ,45,15153,5067268,40,0 ,17,923,8212996,40,0 ,23,1021,348680,1,1 ,23,1021,348688,1,1 ,23,1021,348696,1,1 ,23,1021,348704,1,1 ,23,1021,348712,1,1 ,23,1021,348720,1,1 ,23,1021,348728,1,1 ,23,1021,348736,1,1 ,20,17624,6115906,12,0 ,17,923,9261636,32,0 ,44,15152,873028,24,0 ,17,923,8737348,32,0 ,23,1021,348744,1,1 ,23,1021,348752,1,1 ,23,1021,348760,1,1 ,23,1021,348768,1,1 ,20,17841,6640226,216,0 ,23,1021,348776,1,1 ,23,1021,348784,1,1 ,23,1021,348792,1,1 ,23,1021,348800,1,1 ,45,15153,4018820,32,0 ,44,15152,3494532,24,0 ,23,1021,348808,1,1 ,23,1021,348816,1,1 ,23,1021,348824,1,1 ,23,1021,348832,1,1 ,20,17625,6116002,128,0 ,20,15917,1921698,76,0 ,23,1021,348840,1,1 ,23,1021,348848,1,1 ,23,1021,348856,1,1 ,23,1021,348864,1,1 ,17,923,9786052,48,0 ,17,923,7688900,32,0 ,17,923,7164612,32,0 ,17,923,6640324,32,0 ,23,1021,348872,1,1 ,23,1021,348880,1,1 ,23,1021,348888,1,1 ,23,1021,348896,1,1 ,20,24457,23417570,748,0 ,23,1021,348904,1,1 ,23,1021,348912,1,1 ,23,1021,348920,1,1 ,23,1021,348928,1,1 ,17,923,10310404,48,0 ,44,15152,2446084,24,0 ,44,15152,873220,24,0 ,23,1021,348936,1,1 ,23,1021,348944,1,1 ,23,1021,348952,1,1 ,23,1021,348960,1,1 ,20,18101,7164706,840,0 ,23,1021,348968,1,1 ,23,1021,348976,1,1 ,23,1021,348984,1,1 ,23,1021,348992,1,1 ,20,22432,18699074,56,0 ,17,923,9261892,24,0 ,44,15152,3494724,24,0 ,45,15153,5067588,32,0 ,17,923,8213316,32,0 ,17,923,8737604,40,0 ,23,1021,349000,1,1 ,23,1021,349008,1,1 ,23,1021,349016,1,1 ,23,1021,349024,1,1 ,20,18307,7689058,124,0 ,23,1021,349032,1,1 ,23,1021,349040,1,1 ,23,1021,349048,1,1 ,23,1021,349056,1,1 ,45,15153,5591940,16,0 ,45,15153,4019076,40,0 ,45,15153,4543364,56,0 ,23,1021,349064,1,1 ,23,1021,349072,1,1 ,23,1021,349080,1,1 ,23,1021,349088,1,1 ,20,17210,5067682,640,0 ,23,1021,349096,1,1 ,23,1021,349104,1,1 ,23,1021,349112,1,1 ,23,1021,349120,1,1 ,20,20585,13456322,384,0 ,44,15152,873412,56,0 ,17,923,7689156,32,0 ,17,923,7164868,40,0 ,17,923,6640580,32,0 ,44,15152,2446276,120,0 ,23,1021,349128,1,1 ,23,1021,349136,1,1 ,23,1021,349144,1,1 ,23,1021,349152,1,1 ,20,20333,12932066,440,0 ,23,1021,349160,1,1 ,23,1021,349168,1,1 ,23,1021,349176,1,1 ,23,1021,349184,1,1 ,17,923,9262084,48,0 ,44,15152,3494916,32,0 ,45,15153,5592068,24,0 ,23,1021,349192,1,1 ,23,1021,349200,1,1 ,23,1021,349208,1,1 ,23,1021,349216,1,1 ,23,1021,349224,1,1 ,23,1021,349232,1,1 ,23,1021,349240,1,1 ,23,1021,349248,1,1 ,20,23435,20796482,176,0 ,17,923,9786436,48,0 ,45,15153,5067844,24,0 ,17,923,8213572,24,0 ,23,1021,349256,1,1 ,23,1021,349264,1,1 ,23,1021,349272,1,1 ,23,1021,349280,1,1 ,20,21054,15553634,364,0 ,23,1021,349288,1,1 ,23,1021,349296,1,1 ,23,1021,349304,1,1 ,23,1021,349312,1,1 ,20,19538,10310786,88,0 ,17,923,10310788,48,0 ,17,923,8737924,40,0 ,23,1021,349320,1,1 ,23,1021,349328,1,1 ,23,1021,349336,1,1 ,23,1021,349344,1,1 ,23,1021,349352,1,1 ,23,1021,349360,1,1 ,23,1021,349368,1,1 ,23,1021,349376,1,1 ,45,15153,5592260,72,0 ,17,923,7689412,32,0 ,17,923,6640836,40,0 ,44,15152,2970820,32,0 ,44,15152,1397956,32,0 ,45,15153,4019396,48,0 ,23,1021,349384,1,1 ,23,1021,349392,1,1 ,23,1021,349400,1,1 ,23,1021,349408,1,1 ,20,24253,22893794,312,0 ,23,1021,349416,1,1 ,23,1021,349424,1,1 ,23,1021,349432,1,1 ,23,1021,349440,1,1 ,20,22839,19748098,244,0 ,20,15918,1922306,76,0 ,20,22433,18699522,56,0 ,17,923,8213764,48,0 ,17,923,7165188,48,0 ,44,15152,3495172,40,0 ,45,15153,5068036,24,0 ,23,1021,349448,1,1 ,23,1021,349456,1,1 ,23,1021,349464,1,1 ,23,1021,349472,1,1 ,20,22617,19223842,72,0 ,20,18777,8738082,444,0 ,23,1021,349480,1,1 ,23,1021,349488,1,1 ,23,1021,349496,1,1 ,23,1021,349504,1,1 ,20,16494,3495234,12,0 ,45,15153,4543812,40,0 ,23,1021,349512,1,1 ,23,1021,349520,1,1 ,23,1021,349528,1,1 ,23,1021,349536,1,1 ,20,20083,11359586,184,0 ,23,1021,349544,1,1 ,23,1021,349552,1,1 ,23,1021,349560,1,1 ,23,1021,349568,1,1 ,17,923,9262468,48,0 ,44,15152,873860,24,0 ,23,1021,349576,1,1 ,23,1021,349584,1,1 ,23,1021,349592,1,1 ,23,1021,349600,1,1 ,20,16495,3495330,12,0 ,20,25247,25515426,108,0 ,23,1021,349608,1,1 ,23,1021,349616,1,1 ,23,1021,349624,1,1 ,23,1021,349632,1,1 ,20,24759,24466882,100,0 ,17,923,9786820,24,0 ,17,923,7689668,32,0 ,44,15152,2971076,128,0 ,44,15152,1398212,88,0 ,45,15153,5068228,56,0 ,17,923,8738244,24,0 ,23,1021,349640,1,1 ,23,1021,349648,1,1 ,23,1021,349656,1,1 ,23,1021,349664,1,1 ,23,1021,349672,1,1 ,23,1021,349680,1,1 ,23,1021,349688,1,1 ,23,1021,349696,1,1 ,20,16496,3495426,12,0 ,17,923,10311172,40,0 ,17,923,6641156,40,0 ,23,1021,349704,1,1 ,23,1021,349712,1,1 ,23,1021,349720,1,1 ,23,1021,349728,1,1 ,23,1021,349736,1,1 ,23,1021,349744,1,1 ,23,1021,349752,1,1 ,23,1021,349760,1,1 ,45,15153,4019780,16,0 ,44,15152,874052,32,0 ,44,15152,3495492,64,0 ,23,1021,349768,1,1 ,23,1021,349776,1,1 ,23,1021,349784,1,1 ,23,1021,349792,1,1 ,20,16497,3495522,156,0 ,23,1021,349800,1,1 ,23,1021,349808,1,1 ,23,1021,349816,1,1 ,23,1021,349824,1,1 ,17,923,9787012,48,0 ,17,923,7165572,48,0 ,45,15153,4544132,32,0 ,17,923,8214148,40,0 ,17,923,8738436,40,0 ,23,1021,349832,1,1 ,23,1021,349840,1,1 ,23,1021,349848,1,1 ,23,1021,349856,1,1 ,20,17626,6117026,80,0 ,20,15283,349858,140,0 ,23,1021,349864,1,1 ,23,1021,349872,1,1 ,23,1021,349880,1,1 ,23,1021,349888,1,1 ,20,22434,18699970,2952,0 ,45,15153,4019908,16,0 ,17,923,7689924,32,0 ,23,1021,349896,1,1 ,23,1021,349904,1,1 ,23,1021,349912,1,1 ,23,1021,349920,1,1 ,23,1021,349928,1,1 ,23,1021,349936,1,1 ,23,1021,349944,1,1 ,23,1021,349952,1,1 ,20,25048,24991490,392,0 ,17,923,9262852,24,0 ,45,15153,5592836,24,0 ,23,1021,349960,1,1 ,23,1021,349968,1,1 ,23,1021,349976,1,1 ,23,1021,349984,1,1 ,23,1021,349992,1,1 ,23,1021,350000,1,1 ,23,1021,350008,1,1 ,23,1021,350016,1,1 ,20,19539,10311490,236,0 ,20,18308,7690050,128,0 ,17,923,10311492,32,0 ,17,923,6641476,48,0 ,44,15152,874308,40,0 ,45,15153,4020036,24,0 ,23,1021,350024,1,1 ,23,1021,350032,1,1 ,23,1021,350040,1,1 ,23,1021,350048,1,1 ,20,22618,19224418,524,0 ,20,15919,1922914,12,0 ,20,22139,18175842,292,0 ,23,1021,350056,1,1 ,23,1021,350064,1,1 ,23,1021,350072,1,1 ,23,1021,350080,1,1 ,45,15153,5068676,48,0 ,44,15152,2447236,24,0 ,44,15152,350084,32,0 ,45,15153,4544388,56,0 ,23,1021,350088,1,1 ,23,1021,350096,1,1 ,23,1021,350104,1,1 ,23,1021,350112,1,1 ,23,1021,350120,1,1 ,23,1021,350128,1,1 ,23,1021,350136,1,1 ,23,1021,350144,1,1 ,20,15920,1923010,152,0 ,17,923,9263044,104,0 ,17,923,7690180,24,0 ,45,15153,5593028,40,0 ,17,923,8214468,48,0 ,17,923,8738756,32,0 ,23,1021,350152,1,1 ,23,1021,350160,1,1 ,23,1021,350168,1,1 ,23,1021,350176,1,1 ,20,20172,11884514,688,0 ,20,16821,4020194,12,0 ,23,1021,350184,1,1 ,23,1021,350192,1,1 ,23,1021,350200,1,1 ,23,1021,350208,1,1 ,17,923,9787396,40,0 ,17,923,7165956,32,0 ,45,15153,4020228,88,0 ,23,1021,350216,1,1 ,23,1021,350224,1,1 ,23,1021,350232,1,1 ,23,1021,350240,1,1 ,23,1021,350248,1,1 ,23,1021,350256,1,1 ,23,1021,350264,1,1 ,23,1021,350272,1,1 ,20,16822,4020290,112,0 ,17,923,10311748,32,0 ,44,15152,2447428,32,0 ,44,15152,3496004,24,0 ,23,1021,350280,1,1 ,23,1021,350288,1,1 ,23,1021,350296,1,1 ,23,1021,350304,1,1 ,23,1021,350312,1,1 ,23,1021,350320,1,1 ,23,1021,350328,1,1 ,23,1021,350336,1,1 ,44,15152,874628,24,0 ,17,923,7690372,64,0 ,44,15152,1398916,32,0 ,44,15152,350340,80,0 ,23,1021,350344,1,1 ,23,1021,350352,1,1 ,23,1021,350360,1,1 ,23,1021,350368,1,1 ,20,21973,17651874,120,0 ,23,1021,350376,1,1 ,23,1021,350384,1,1 ,23,1021,350392,1,1 ,23,1021,350400,1,1 ,17,923,8739012,32,0 ,17,923,6641860,40,0 ,23,1021,350408,1,1 ,23,1021,350416,1,1 ,23,1021,350424,1,1 ,23,1021,350432,1,1 ,20,24760,24467682,36,0 ,23,1021,350440,1,1 ,23,1021,350448,1,1 ,23,1021,350456,1,1 ,23,1021,350464,1,1 ,20,25248,25516290,216,0 ,45,15153,5593348,16,0 ,17,923,7166212,48,0 ,44,15152,3496196,144,0 ,45,15153,5069060,40,0 ,23,1021,350472,1,1 ,23,1021,350480,1,1 ,23,1021,350488,1,1 ,23,1021,350496,1,1 ,20,23822,21846306,108,0 ,20,17627,6117666,224,0 ,20,17842,6641954,216,0 ,23,1021,350504,1,1 ,23,1021,350512,1,1 ,23,1021,350520,1,1 ,23,1021,350528,1,1 ,17,923,10312004,40,0 ,44,15152,2447684,32,0 ,44,15152,874820,48,0 ,45,15153,4544836,32,0 ,17,923,8214852,24,0 ,17,923,9787716,32,0 ,23,1021,350536,1,1 ,23,1021,350544,1,1 ,23,1021,350552,1,1 ,23,1021,350560,1,1 ,23,1021,350568,1,1 ,23,1021,350576,1,1 ,23,1021,350584,1,1 ,23,1021,350592,1,1 ,45,15153,5593476,64,0 ,44,15152,1399172,88,0 ,23,1021,350600,1,1 ,23,1021,350608,1,1 ,23,1021,350616,1,1 ,23,1021,350624,1,1 ,23,1021,350632,1,1 ,23,1021,350640,1,1 ,23,1021,350648,1,1 ,23,1021,350656,1,1 ,20,23436,20797890,92,0 ,20,19224,9787842,272,0 ,17,923,8739268,40,0 ,44,15152,2972100,96,0 ,23,1021,350664,1,1 ,23,1021,350672,1,1 ,23,1021,350680,1,1 ,23,1021,350688,1,1 ,23,1021,350696,1,1 ,23,1021,350704,1,1 ,23,1021,350712,1,1 ,23,1021,350720,1,1 ,20,24761,24467970,24,0 ,20,26197,28137986,900,0 ,17,923,8215044,24,0 ,17,923,6642180,48,0 ,23,1021,350728,1,1 ,23,1021,350736,1,1 ,23,1021,350744,1,1 ,23,1021,350752,1,1 ,23,1021,350760,1,1 ,23,1021,350768,1,1 ,23,1021,350776,1,1 ,23,1021,350784,1,1 ,17,923,9787972,24,0 ,44,15152,2447940,24,0 ,45,15153,4545092,32,0 ,45,15153,5069380,32,0 ,23,1021,350792,1,1 ,23,1021,350800,1,1 ,23,1021,350808,1,1 ,23,1021,350816,1,1 ,20,15487,875106,600,0 ,23,1021,350824,1,1 ,23,1021,350832,1,1 ,23,1021,350840,1,1 ,23,1021,350848,1,1 ,17,923,10312324,24,0 ,17,923,7690884,24,0 ,17,923,7166596,48,0 ,23,1021,350856,1,1 ,23,1021,350864,1,1 ,23,1021,350872,1,1 ,23,1021,350880,1,1 ,23,1021,350888,1,1 ,23,1021,350896,1,1 ,23,1021,350904,1,1 ,23,1021,350912,1,1 ,20,24762,24468162,24,0 ,17,923,8215236,40,0 ,44,15152,875204,32,0 ,45,15153,4020932,16,0 ,23,1021,350920,1,1 ,23,1021,350928,1,1 ,23,1021,350936,1,1 ,23,1021,350944,1,1 ,20,24604,23943906,612,0 ,23,1021,350952,1,1 ,23,1021,350960,1,1 ,23,1021,350968,1,1 ,23,1021,350976,1,1 ,20,15284,350978,12,0 ,17,923,9788164,40,0 ,44,15152,2448132,24,0 ,44,15152,350980,416,0 ,17,923,8739588,32,0 ,17,923,9263876,40,0 ,23,1021,350984,1,1 ,23,1021,350992,1,1 ,23,1021,351000,1,1 ,23,1021,351008,1,1 ,20,20084,11361058,12,0 ,23,1021,351016,1,1 ,23,1021,351024,1,1 ,23,1021,351032,1,1 ,23,1021,351040,1,1 ,20,18309,7691074,84,0 ,20,16498,3496770,12,0 ,17,923,10312516,24,0 ,17,923,7691076,48,0 ,45,15153,4021060,16,0 ,45,15153,4545348,120,0 ,45,15153,5069636,48,0 ,23,1021,351048,1,1 ,23,1021,351056,1,1 ,23,1021,351064,1,1 ,23,1021,351072,1,1 ,20,15285,351074,180,0 ,23,1021,351080,1,1 ,23,1021,351088,1,1 ,23,1021,351096,1,1 ,23,1021,351104,1,1 ,20,20085,11361154,136,0 ,20,24763,24468354,296,0 ,45,15153,5593988,32,0 ,17,923,6642564,48,0 ,23,1021,351112,1,1 ,23,1021,351120,1,1 ,23,1021,351128,1,1 ,23,1021,351136,1,1 ,20,16499,3496866,12,0 ,20,25780,27089826,628,0 ,23,1021,351144,1,1 ,23,1021,351152,1,1 ,23,1021,351160,1,1 ,23,1021,351168,1,1 ,20,16823,4021186,112,0 ,45,15153,4021188,40,0 ,44,15152,2448324,96,0 ,44,15152,875460,48,0 ,23,1021,351176,1,1 ,23,1021,351184,1,1 ,23,1021,351192,1,1 ,23,1021,351200,1,1 ,23,1021,351208,1,1 ,23,1021,351216,1,1 ,23,1021,351224,1,1 ,23,1021,351232,1,1 ,20,16500,3496962,84,0 ,17,923,10312708,32,0 ,17,923,7166980,40,0 ,17,923,8215556,32,0 ,17,923,8739844,40,0 ,23,1021,351240,1,1 ,23,1021,351248,1,1 ,23,1021,351256,1,1 ,23,1021,351264,1,1 ,20,19805,10837026,476,0 ,23,1021,351272,1,1 ,23,1021,351280,1,1 ,23,1021,351288,1,1 ,23,1021,351296,1,1 ,17,923,9788484,32,0 ,44,15152,1399876,32,0 ,17,923,9264196,24,0 ,23,1021,351304,1,1 ,23,1021,351312,1,1 ,23,1021,351320,1,1 ,23,1021,351328,1,1 ,20,21974,17652834,4768,0 ,23,1021,351336,1,1 ,23,1021,351344,1,1 ,23,1021,351352,1,1 ,23,1021,351360,1,1 ,20,23823,21847170,244,0 ,20,15921,1924226,264,0 ,20,23145,20274306,12,0 ,45,15153,5594244,32,0 ,23,1021,351368,1,1 ,23,1021,351376,1,1 ,23,1021,351384,1,1 ,23,1021,351392,1,1 ,20,23437,20798626,156,0 ,20,22840,19750050,24,0 ,23,1021,351400,1,1 ,23,1021,351408,1,1 ,23,1021,351416,1,1 ,23,1021,351424,1,1 ,45,15153,5070020,24,0 ,17,923,7691460,40,0 ,44,15152,2972868,32,0 ,23,1021,351432,1,1 ,23,1021,351440,1,1 ,23,1021,351448,1,1 ,23,1021,351456,1,1 ,20,23146,20274402,172,0 ,20,26014,27614434,216,0 ,23,1021,351464,1,1 ,23,1021,351472,1,1 ,23,1021,351480,1,1 ,23,1021,351488,1,1 ,17,923,10312964,40,0 ,17,923,6642948,32,0 ,45,15153,4021508,16,0 ,17,923,8215812,40,0 ,17,923,9264388,48,0 ,23,1021,351496,1,1 ,23,1021,351504,1,1 ,23,1021,351512,1,1 ,23,1021,351520,1,1 ,23,1021,351528,1,1 ,23,1021,351536,1,1 ,23,1021,351544,1,1 ,23,1021,351552,1,1 ,20,21411,16080194,360,0 ,17,923,9788740,24,0 ,17,923,7167300,24,0 ,44,15152,1400132,88,0 ,44,15152,875844,40,0 ,17,923,8740164,40,0 ,23,1021,351560,1,1 ,23,1021,351568,1,1 ,23,1021,351576,1,1 ,23,1021,351584,1,1 ,20,22841,19750242,24,0 ,20,25467,26041698,1084,0 ,23,1021,351592,1,1 ,23,1021,351600,1,1 ,23,1021,351608,1,1 ,23,1021,351616,1,1 ,45,15153,5594500,24,0 ,44,15152,3497348,32,0 ,45,15153,4021636,24,0 ,45,15153,5070212,24,0 ,23,1021,351624,1,1 ,23,1021,351632,1,1 ,23,1021,351640,1,1 ,23,1021,351648,1,1 ,23,1021,351656,1,1 ,23,1021,351664,1,1 ,23,1021,351672,1,1 ,23,1021,351680,1,1 ,44,15152,1924548,440,0 ,44,15152,2973124,40,0 ,23,1021,351688,1,1 ,23,1021,351696,1,1 ,23,1021,351704,1,1 ,23,1021,351712,1,1 ,20,18310,7691746,524,0 ,23,1021,351720,1,1 ,23,1021,351728,1,1 ,23,1021,351736,1,1 ,23,1021,351744,1,1 ,17,923,9788932,24,0 ,17,923,7691780,24,0 ,17,923,7167492,32,0 ,17,923,6643204,40,0 ,23,1021,351752,1,1 ,23,1021,351760,1,1 ,23,1021,351768,1,1 ,23,1021,351776,1,1 ,20,22842,19750434,24,0 ,23,1021,351784,1,1 ,23,1021,351792,1,1 ,23,1021,351800,1,1 ,23,1021,351808,1,1 ,17,923,10313284,32,0 ,45,15153,4021828,16,0 ,45,15153,5070404,32,0 ,45,15153,5594692,72,0 ,17,923,8216132,56,0 ,23,1021,351816,1,1 ,23,1021,351824,1,1 ,23,1021,351832,1,1 ,23,1021,351840,1,1 ,20,26469,29187682,284,0 ,23,1021,351848,1,1 ,23,1021,351856,1,1 ,23,1021,351864,1,1 ,23,1021,351872,1,1 ,17,923,9264772,40,0 ,44,15152,876164,24,0 ,44,15152,3497604,24,0 ,17,923,8740484,48,0 ,23,1021,351880,1,1 ,23,1021,351888,1,1 ,23,1021,351896,1,1 ,23,1021,351904,1,1 ,20,24254,22896290,652,0 ,20,16501,3497634,104,0 ,20,19540,10313378,12,0 ,23,1021,351912,1,1 ,23,1021,351920,1,1 ,23,1021,351928,1,1 ,23,1021,351936,1,1 ,17,923,9789124,32,0 ,17,923,7691972,24,0 ,44,15152,2449092,32,0 ,45,15153,4021956,24,0 ,23,1021,351944,1,1 ,23,1021,351952,1,1 ,23,1021,351960,1,1 ,23,1021,351968,1,1 ,20,22843,19750626,24,0 ,23,1021,351976,1,1 ,23,1021,351984,1,1 ,23,1021,351992,1,1 ,23,1021,352000,1,1 ,20,19541,10313474,216,0 ,45,15153,4546308,80,0 ,17,923,7167748,32,0 ,44,15152,2973444,72,0 ,23,1021,352008,1,1 ,23,1021,352016,1,1 ,23,1021,352024,1,1 ,23,1021,352032,1,1 ,20,21636,16604962,224,0 ,20,17071,4546338,12,0 ,23,1021,352040,1,1 ,23,1021,352048,1,1 ,23,1021,352056,1,1 ,23,1021,352064,1,1 ,20,16824,4022082,196,0 ,17,923,10313540,40,0 ,17,923,6643524,40,0 ,44,15152,876356,56,0 ,44,15152,3497796,24,0 ,45,15153,5070660,24,0 ,23,1021,352072,1,1 ,23,1021,352080,1,1 ,23,1021,352088,1,1 ,23,1021,352096,1,1 ,23,1021,352104,1,1 ,23,1021,352112,1,1 ,23,1021,352120,1,1 ,23,1021,352128,1,1 ,20,17072,4546434,476,0 ,45,15153,4022148,24,0 ,17,923,7692164,24,0 ,23,1021,352136,1,1 ,23,1021,352144,1,1 ,23,1021,352152,1,1 ,23,1021,352160,1,1 ,20,22844,19750818,24,0 ,23,1021,352168,1,1 ,23,1021,352176,1,1 ,23,1021,352184,1,1 ,23,1021,352192,1,1 ,20,21055,15556546,328,0 ,20,25249,25518018,24,0 ,20,20086,11362242,44,0 ,20,20586,13459394,260,0 ,17,923,9789380,40,0 ,44,15152,2449348,24,0 ,17,923,9265092,32,0 ,23,1021,352200,1,1 ,23,1021,352208,1,1 ,23,1021,352216,1,1 ,23,1021,352224,1,1 ,20,17843,6643682,368,0 ,23,1021,352232,1,1 ,23,1021,352240,1,1 ,23,1021,352248,1,1 ,23,1021,352256,1,1 ,17,923,8740868,24,0 ,17,923,7168004,40,0 ,44,15152,1400836,32,0 ,44,15152,3497988,24,0 ,45,15153,5070852,32,0 ,17,923,8216580,64,0 ,23,1021,352264,1,1 ,23,1021,352272,1,1 ,23,1021,352280,1,1 ,23,1021,352288,1,1 ,20,19025,9265186,276,0 ,20,17628,6119458,152,0 ,23,1021,352296,1,1 ,23,1021,352304,1,1 ,23,1021,352312,1,1 ,23,1021,352320,1,1 ,45,15153,4022340,16,0 ,17,923,7692356,24,0 ,23,1021,352328,1,1 ,23,1021,352336,1,1 ,23,1021,352344,1,1 ,23,1021,352352,1,1 ,20,22845,19751010,24,0 ,23,1021,352360,1,1 ,23,1021,352368,1,1 ,23,1021,352376,1,1 ,23,1021,352384,1,1 ,20,22140,18178178,316,0 ,20,25250,25518210,240,0 ,17,923,10313860,40,0 ,17,923,6643844,40,0 ,44,15152,2449540,16,0 ,45,15153,5595268,16,0 ,23,1021,352392,1,1 ,23,1021,352400,1,1 ,23,1021,352408,1,1 ,23,1021,352416,1,1 ,23,1021,352424,1,1 ,23,1021,352432,1,1 ,23,1021,352440,1,1 ,23,1021,352448,1,1 ,17,923,9265348,40,0 ,44,15152,3498180,24,0 ,45,15153,4022468,24,0 ,17,923,8741060,40,0 ,23,1021,352456,1,1 ,23,1021,352464,1,1 ,23,1021,352472,1,1 ,23,1021,352480,1,1 ,23,1021,352488,1,1 ,23,1021,352496,1,1 ,23,1021,352504,1,1 ,23,1021,352512,1,1 ,20,15286,352514,12,0 ,17,923,9789700,24,0 ,17,923,7692548,24,0 ,44,15152,2449668,24,0 ,44,15152,1401092,24,0 ,44,15152,876804,40,0 ,45,15153,5071108,40,0 ,45,15153,5595396,16,0 ,23,1021,352520,1,1 ,23,1021,352528,1,1 ,23,1021,352536,1,1 ,23,1021,352544,1,1 ,20,22846,19751202,24,0 ,20,20087,11362594,132,0 ,23,1021,352552,1,1 ,23,1021,352560,1,1 ,23,1021,352568,1,1 ,23,1021,352576,1,1 ,44,15152,2974020,32,0 ,17,923,7168324,24,0 ,23,1021,352584,1,1 ,23,1021,352592,1,1 ,23,1021,352600,1,1 ,23,1021,352608,1,1 ,20,15287,352610,12,0 ,23,1021,352616,1,1 ,23,1021,352624,1,1 ,23,1021,352632,1,1 ,23,1021,352640,1,1 ,20,23438,20799874,496,0 ,45,15153,5595524,16,0 ,44,15152,3498372,24,0 ,45,15153,4022660,16,0 ,45,15153,4546948,40,0 ,23,1021,352648,1,1 ,23,1021,352656,1,1 ,23,1021,352664,1,1 ,23,1021,352672,1,1 ,20,20334,12935586,160,0 ,23,1021,352680,1,1 ,23,1021,352688,1,1 ,23,1021,352696,1,1 ,23,1021,352704,1,1 ,20,15288,352706,744,0 ,17,923,10314180,40,0 ,17,923,7692740,32,0 ,17,923,6644164,40,0 ,44,15152,2449860,32,0 ,44,15152,1401284,24,0 ,17,923,9789892,40,0 ,23,1021,352712,1,1 ,23,1021,352720,1,1 ,23,1021,352728,1,1 ,23,1021,352736,1,1 ,20,22847,19751394,24,0 ,20,16502,3498466,92,0 ,23,1021,352744,1,1 ,23,1021,352752,1,1 ,23,1021,352760,1,1 ,23,1021,352768,1,1 ,17,923,9265668,24,0 ,17,923,7168516,32,0 ,45,15153,4022788,24,0 ,45,15153,5595652,16,0 ,17,923,8217092,40,0 ,17,923,8741380,40,0 ,23,1021,352776,1,1 ,23,1021,352784,1,1 ,23,1021,352792,1,1 ,23,1021,352800,1,1 ,23,1021,352808,1,1 ,23,1021,352816,1,1 ,23,1021,352824,1,1 ,23,1021,352832,1,1 ,20,23147,20275778,12,0 ,20,19225,9790018,12,0 ,45,15153,5071428,32,0 ,44,15152,2974276,80,0 ,44,15152,877124,32,0 ,44,15152,3498564,24,0 ,23,1021,352840,1,1 ,23,1021,352848,1,1 ,23,1021,352856,1,1 ,23,1021,352864,1,1 ,23,1021,352872,1,1 ,23,1021,352880,1,1 ,23,1021,352888,1,1 ,23,1021,352896,1,1 ,45,15153,5595780,24,0 ,44,15152,1401476,56,0 ,23,1021,352904,1,1 ,23,1021,352912,1,1 ,23,1021,352920,1,1 ,23,1021,352928,1,1 ,20,23148,20275874,136,0 ,20,19226,9790114,12,0 ,20,22848,19751586,24,0 ,23,1021,352936,1,1 ,23,1021,352944,1,1 ,23,1021,352952,1,1 ,23,1021,352960,1,1 ,17,923,9265860,96,0 ,17,923,7692996,24,0 ,44,15152,2450116,48,0 ,45,15153,4022980,16,0 ,45,15153,4547268,72,0 ,23,1021,352968,1,1 ,23,1021,352976,1,1 ,23,1021,352984,1,1 ,23,1021,352992,1,1 ,23,1021,353000,1,1 ,23,1021,353008,1,1 ,23,1021,353016,1,1 ,23,1021,353024,1,1 ,20,19227,9790210,12,0 ,20,18778,8741634,12,0 ,17,923,10314500,24,0 ,17,923,7168772,32,0 ,17,923,6644484,24,0 ,44,15152,3498756,24,0 ,17,923,9790212,24,0 ,23,1021,353032,1,1 ,23,1021,353040,1,1 ,23,1021,353048,1,1 ,23,1021,353056,1,1 ,23,1021,353064,1,1 ,23,1021,353072,1,1 ,23,1021,353080,1,1 ,23,1021,353088,1,1 ,20,25049,24994626,220,0 ,17,923,8741700,32,0 ,44,15152,877380,40,0 ,45,15153,4023108,16,0 ,45,15153,5071684,264,0 ,45,15153,5595972,16,0 ,17,923,8217412,32,0 ,23,1021,353096,1,1 ,23,1021,353104,1,1 ,23,1021,353112,1,1 ,23,1021,353120,1,1 ,20,22849,19751778,24,0 ,20,18779,8741730,312,0 ,20,19228,9790306,104,0 ,23,1021,353128,1,1 ,23,1021,353136,1,1 ,23,1021,353144,1,1 ,23,1021,353152,1,1 ,17,923,7693188,32,0 ,23,1021,353160,1,1 ,23,1021,353168,1,1 ,23,1021,353176,1,1 ,23,1021,353184,1,1 ,20,26015,27616162,44,0 ,23,1021,353192,1,1 ,23,1021,353200,1,1 ,23,1021,353208,1,1 ,23,1021,353216,1,1 ,17,923,10314692,24,0 ,17,923,6644676,24,0 ,44,15152,3498948,24,0 ,45,15153,4023236,16,0 ,45,15153,5596100,32,0 ,17,923,9790404,40,0 ,23,1021,353224,1,1 ,23,1021,353232,1,1 ,23,1021,353240,1,1 ,23,1021,353248,1,1 ,23,1021,353256,1,1 ,23,1021,353264,1,1 ,23,1021,353272,1,1 ,23,1021,353280,1,1 ,17,923,7169028,40,0 ,23,1021,353288,1,1 ,23,1021,353296,1,1 ,23,1021,353304,1,1 ,23,1021,353312,1,1 ,20,23824,21849122,380,0 ,20,22850,19751970,24,0 ,23,1021,353320,1,1 ,23,1021,353328,1,1 ,23,1021,353336,1,1 ,23,1021,353344,1,1 ,17,923,8741956,40,0 ,44,15152,2450500,120,0 ,44,15152,1401924,24,0 ,45,15153,4023364,24,0 ,17,923,8217668,48,0 ,23,1021,353352,1,1 ,23,1021,353360,1,1 ,23,1021,353368,1,1 ,23,1021,353376,1,1 ,23,1021,353384,1,1 ,23,1021,353392,1,1 ,23,1021,353400,1,1 ,23,1021,353408,1,1 ,17,923,10314884,40,0 ,17,923,7693444,32,0 ,17,923,6644868,40,0 ,44,15152,877700,32,0 ,44,15152,3499140,24,0 ,23,1021,353416,1,1 ,23,1021,353424,1,1 ,23,1021,353432,1,1 ,23,1021,353440,1,1 ,23,1021,353448,1,1 ,23,1021,353456,1,1 ,23,1021,353464,1,1 ,23,1021,353472,1,1 ,20,16503,3499202,12,0 ,20,24764,24470722,1216,0 ,20,15922,1926338,12,0 ,45,15153,5596356,32,0 ,44,15152,2974916,112,0 ,23,1021,353480,1,1 ,23,1021,353488,1,1 ,23,1021,353496,1,1 ,23,1021,353504,1,1 ,20,22851,19752162,24,0 ,20,17629,6120674,868,0 ,23,1021,353512,1,1 ,23,1021,353520,1,1 ,23,1021,353528,1,1 ,23,1021,353536,1,1 ,20,26016,27616514,344,0 ,17,923,9790724,24,0 ,44,15152,1402116,24,0 ,45,15153,4023556,48,0 ,45,15153,4547844,72,0 ,23,1021,353544,1,1 ,23,1021,353552,1,1 ,23,1021,353560,1,1 ,23,1021,353568,1,1 ,20,16504,3499298,12,0 ,20,15923,1926434,172,0 ,23,1021,353576,1,1 ,23,1021,353584,1,1 ,23,1021,353592,1,1 ,23,1021,353600,1,1 ,20,20088,11363650,160,0 ,44,15152,3499332,24,0 ,17,923,7169348,32,0 ,23,1021,353608,1,1 ,23,1021,353616,1,1 ,23,1021,353624,1,1 ,23,1021,353632,1,1 ,20,16825,4023650,112,0 ,23,1021,353640,1,1 ,23,1021,353648,1,1 ,23,1021,353656,1,1 ,23,1021,353664,1,1 ,20,16505,3499394,12,0 ,17,923,8742276,40,0 ,17,923,7693700,40,0 ,44,15152,877956,24,0 ,23,1021,353672,1,1 ,23,1021,353680,1,1 ,23,1021,353688,1,1 ,23,1021,353696,1,1 ,20,22852,19752354,356,0 ,23,1021,353704,1,1 ,23,1021,353712,1,1 ,23,1021,353720,1,1 ,23,1021,353728,1,1 ,20,19542,10315202,364,0 ,17,923,10315204,24,0 ,17,923,6645188,32,0 ,44,15152,1402308,24,0 ,45,15153,5596612,88,0 ,17,923,8218052,32,0 ,17,923,9266628,32,0 ,17,923,9790916,40,0 ,23,1021,353736,1,1 ,23,1021,353744,1,1 ,23,1021,353752,1,1 ,23,1021,353760,1,1 ,20,16506,3499490,120,0 ,23,1021,353768,1,1 ,23,1021,353776,1,1 ,23,1021,353784,1,1 ,23,1021,353792,1,1 ,44,15152,3499524,24,0 ,23,1021,353800,1,1 ,23,1021,353808,1,1 ,23,1021,353816,1,1 ,23,1021,353824,1,1 ,20,21637,16606754,12,0 ,23,1021,353832,1,1 ,23,1021,353840,1,1 ,23,1021,353848,1,1 ,23,1021,353856,1,1 ,44,15152,878148,40,0 ,17,923,7169604,56,0 ,23,1021,353864,1,1 ,23,1021,353872,1,1 ,23,1021,353880,1,1 ,23,1021,353888,1,1 ,23,1021,353896,1,1 ,23,1021,353904,1,1 ,23,1021,353912,1,1 ,23,1021,353920,1,1 ,20,21638,16606850,12,0 ,17,923,10315396,24,0 ,44,15152,1402500,24,0 ,45,15153,4023940,16,0 ,23,1021,353928,1,1 ,23,1021,353936,1,1 ,23,1021,353944,1,1 ,23,1021,353952,1,1 ,20,20335,12936866,304,0 ,20,19229,9791138,216,0 ,23,1021,353960,1,1 ,23,1021,353968,1,1 ,23,1021,353976,1,1 ,23,1021,353984,1,1 ,17,923,9266884,32,0 ,17,923,7694020,40,0 ,17,923,6645444,32,0 ,44,15152,3499716,32,0 ,17,923,8218308,40,0 ,17,923,8742596,40,0 ,23,1021,353992,1,1 ,23,1021,354000,1,1 ,23,1021,354008,1,1 ,23,1021,354016,1,1 ,20,23149,20276962,120,0 ,20,21639,16606946,44,0 ,23,1021,354024,1,1 ,23,1021,354032,1,1 ,23,1021,354040,1,1 ,23,1021,354048,1,1 ,17,923,9791236,24,0 ,45,15153,4024068,16,0 ,23,1021,354056,1,1 ,23,1021,354064,1,1 ,23,1021,354072,1,1 ,23,1021,354080,1,1 ,23,1021,354088,1,1 ,23,1021,354096,1,1 ,23,1021,354104,1,1 ,23,1021,354112,1,1 ,20,26470,29189954,128,0 ,17,923,10315588,32,0 ,44,15152,1402692,16,0 ,45,15153,4548420,16,0 ,23,1021,354120,1,1 ,23,1021,354128,1,1 ,23,1021,354136,1,1 ,23,1021,354144,1,1 ,23,1021,354152,1,1 ,23,1021,354160,1,1 ,23,1021,354168,1,1 ,23,1021,354176,1,1 ,20,20228,12412802,15684,0 ,45,15153,4024196,24,0 ,44,15152,878468,40,0 ,23,1021,354184,1,1 ,23,1021,354192,1,1 ,23,1021,354200,1,1 ,23,1021,354208,1,1 ,20,17211,5072802,424,0 ,23,1021,354216,1,1 ,23,1021,354224,1,1 ,23,1021,354232,1,1 ,23,1021,354240,1,1 ,20,22619,19228610,76,0 ,17,923,9791428,32,0 ,17,923,6645700,24,0 ,44,15152,1402820,48,0 ,44,15152,3499972,24,0 ,45,15153,4548548,48,0 ,17,923,9267140,24,0 ,23,1021,354248,1,1 ,23,1021,354256,1,1 ,23,1021,354264,1,1 ,23,1021,354272,1,1 ,20,20587,13461474,236,0 ,23,1021,354280,1,1 ,23,1021,354288,1,1 ,23,1021,354296,1,1 ,23,1021,354304,1,1 ,20,25251,25520130,72,0 ,17,923,8742916,40,0 ,17,923,7694340,24,0 ,17,923,7170052,48,0 ,44,15152,2451460,24,0 ,44,15152,354308,336,0 ,17,923,8218628,32,0 ,23,1021,354312,1,1 ,23,1021,354320,1,1 ,23,1021,354328,1,1 ,23,1021,354336,1,1 ,23,1021,354344,1,1 ,23,1021,354352,1,1 ,23,1021,354360,1,1 ,23,1021,354368,1,1 ,20,21640,16607298,128,0 ,17,923,10315844,24,0 ,44,15152,2975812,328,0 ,45,15153,4024388,16,0 ,23,1021,354376,1,1 ,23,1021,354384,1,1 ,23,1021,354392,1,1 ,23,1021,354400,1,1 ,23,1021,354408,1,1 ,23,1021,354416,1,1 ,23,1021,354424,1,1 ,23,1021,354432,1,1 ,20,21412,16083074,176,0 ,17,923,9267332,48,0 ,17,923,6645892,32,0 ,44,15152,3500164,24,0 ,45,15153,5597316,40,0 ,23,1021,354440,1,1 ,23,1021,354448,1,1 ,23,1021,354456,1,1 ,23,1021,354464,1,1 ,23,1021,354472,1,1 ,23,1021,354480,1,1 ,23,1021,354488,1,1 ,23,1021,354496,1,1 ,20,19026,9267394,56,0 ,17,923,9791684,24,0 ,17,923,7694532,64,0 ,44,15152,2451652,24,0 ,44,15152,878788,104,0 ,45,15153,4024516,1168,0 ,23,1021,354504,1,1 ,23,1021,354512,1,1 ,23,1021,354520,1,1 ,23,1021,354528,1,1 ,20,16826,4024546,204,0 ,23,1021,354536,1,1 ,23,1021,354544,1,1 ,23,1021,354552,1,1 ,23,1021,354560,1,1 ,17,923,10316036,40,0 ,17,923,8218884,40,0 ,23,1021,354568,1,1 ,23,1021,354576,1,1 ,23,1021,354584,1,1 ,23,1021,354592,1,1 ,23,1021,354600,1,1 ,23,1021,354608,1,1 ,23,1021,354616,1,1 ,23,1021,354624,1,1 ,17,923,8743236,40,0 ,44,15152,1403204,24,0 ,44,15152,3500356,32,0 ,45,15153,4548932,48,0 ,23,1021,354632,1,1 ,23,1021,354640,1,1 ,23,1021,354648,1,1 ,23,1021,354656,1,1 ,23,1021,354664,1,1 ,23,1021,354672,1,1 ,23,1021,354680,1,1 ,23,1021,354688,1,1 ,17,923,9791876,32,0 ,17,923,7170436,48,0 ,17,923,6646148,24,0 ,44,15152,2451844,24,0 ,23,1021,354696,1,1 ,23,1021,354704,1,1 ,23,1021,354712,1,1 ,23,1021,354720,1,1 ,20,16507,3500450,228,0 ,23,1021,354728,1,1 ,23,1021,354736,1,1 ,23,1021,354744,1,1 ,23,1021,354752,1,1 ,45,15153,5597636,16,0 ,23,1021,354760,1,1 ,23,1021,354768,1,1 ,23,1021,354776,1,1 ,23,1021,354784,1,1 ,23,1021,354792,1,1 ,23,1021,354800,1,1 ,23,1021,354808,1,1 ,23,1021,354816,1,1 ,20,21056,15559170,364,0 ,17,923,9267716,32,0 ,44,15152,1403396,24,0 ,23,1021,354824,1,1 ,23,1021,354832,1,1 ,23,1021,354840,1,1 ,23,1021,354848,1,1 ,20,22620,19229218,56,0 ,20,25050,24996386,396,0 ,23,1021,354856,1,1 ,23,1021,354864,1,1 ,23,1021,354872,1,1 ,23,1021,354880,1,1 ,20,24458,23423554,244,0 ,20,25252,25520706,192,0 ,20,20089,11364930,860,0 ,17,923,10316356,48,0 ,17,923,6646340,16,0 ,44,15152,2452036,24,0 ,44,15152,3500612,64,0 ,45,15153,5597764,24,0 ,17,923,8219204,64,0 ,23,1021,354888,1,1 ,23,1021,354896,1,1 ,23,1021,354904,1,1 ,23,1021,354912,1,1 ,20,22141,18180706,340,0 ,23,1021,354920,1,1 ,23,1021,354928,1,1 ,23,1021,354936,1,1 ,23,1021,354944,1,1 ,20,19027,9267842,148,0 ,20,15924,1927810,12,0 ,17,923,9792132,24,0 ,17,923,8743556,40,0 ,23,1021,354952,1,1 ,23,1021,354960,1,1 ,23,1021,354968,1,1 ,23,1021,354976,1,1 ,20,23150,20277922,824,0 ,23,1021,354984,1,1 ,23,1021,354992,1,1 ,23,1021,355000,1,1 ,23,1021,355008,1,1 ,45,15153,4549316,32,0 ,17,923,7695044,24,0 ,17,923,6646468,24,0 ,44,15152,1403588,24,0 ,23,1021,355016,1,1 ,23,1021,355024,1,1 ,23,1021,355032,1,1 ,23,1021,355040,1,1 ,20,15925,1927906,12,0 ,23,1021,355048,1,1 ,23,1021,355056,1,1 ,23,1021,355064,1,1 ,23,1021,355072,1,1 ,20,19806,10840834,176,0 ,17,923,9267972,48,0 ,17,923,7170820,32,0 ,44,15152,2452228,8,0 ,45,15153,5597956,96,0 ,23,1021,355080,1,1 ,23,1021,355088,1,1 ,23,1021,355096,1,1 ,23,1021,355104,1,1 ,23,1021,355112,1,1 ,23,1021,355120,1,1 ,23,1021,355128,1,1 ,23,1021,355136,1,1 ,20,15926,1928002,20,0 ,20,26471,29190978,164,0 ,17,923,9792324,32,0 ,44,15152,2452292,24,0 ,23,1021,355144,1,1 ,23,1021,355152,1,1 ,23,1021,355160,1,1 ,23,1021,355168,1,1 ,20,17844,6646626,128,0 ,23,1021,355176,1,1 ,23,1021,355184,1,1 ,23,1021,355192,1,1 ,23,1021,355200,1,1 ,45,15153,5073796,40,0 ,17,923,7695236,24,0 ,17,923,6646660,40,0 ,44,15152,1928068,400,0 ,44,15152,1403780,72,0 ,23,1021,355208,1,1 ,23,1021,355216,1,1 ,23,1021,355224,1,1 ,23,1021,355232,1,1 ,20,15725,1403810,324,0 ,23,1021,355240,1,1 ,23,1021,355248,1,1 ,23,1021,355256,1,1 ,23,1021,355264,1,1 ,17,923,10316740,32,0 ,45,15153,4549572,136,0 ,17,923,8743876,32,0 ,23,1021,355272,1,1 ,23,1021,355280,1,1 ,23,1021,355288,1,1 ,23,1021,355296,1,1 ,20,22621,19229666,468,0 ,20,15927,1928162,168,0 ,23,1021,355304,1,1 ,23,1021,355312,1,1 ,23,1021,355320,1,1 ,23,1021,355328,1,1 ,44,15152,879620,56,0 ,17,923,7171076,56,0 ,44,15152,2452484,24,0 ,23,1021,355336,1,1 ,23,1021,355344,1,1 ,23,1021,355352,1,1 ,23,1021,355360,1,1 ,23,1021,355368,1,1 ,23,1021,355376,1,1 ,23,1021,355384,1,1 ,23,1021,355392,1,1 ,20,21641,16608322,264,0 ,17,923,9792580,24,0 ,17,923,7695428,40,0 ,44,15152,3501124,24,0 ,17,923,8219716,64,0 ,23,1021,355400,1,1 ,23,1021,355408,1,1 ,23,1021,355416,1,1 ,23,1021,355424,1,1 ,23,1021,355432,1,1 ,23,1021,355440,1,1 ,23,1021,355448,1,1 ,23,1021,355456,1,1 ,17,923,9268356,32,0 ,23,1021,355464,1,1 ,23,1021,355472,1,1 ,23,1021,355480,1,1 ,23,1021,355488,1,1 ,23,1021,355496,1,1 ,23,1021,355504,1,1 ,23,1021,355512,1,1 ,23,1021,355520,1,1 ,17,923,10316996,24,0 ,17,923,6646980,24,0 ,44,15152,2452676,24,0 ,45,15153,5074116,144,0 ,17,923,8744132,24,0 ,23,1021,355528,1,1 ,23,1021,355536,1,1 ,23,1021,355544,1,1 ,23,1021,355552,1,1 ,23,1021,355560,1,1 ,23,1021,355568,1,1 ,23,1021,355576,1,1 ,23,1021,355584,1,1 ,17,923,9792772,32,0 ,44,15152,3501316,32,0 ,23,1021,355592,1,1 ,23,1021,355600,1,1 ,23,1021,355608,1,1 ,23,1021,355616,1,1 ,20,18780,8744226,312,0 ,20,15488,879906,312,0 ,23,1021,355624,1,1 ,23,1021,355632,1,1 ,23,1021,355640,1,1 ,23,1021,355648,1,1 ,20,17441,5598530,644,0 ,23,1021,355656,1,1 ,23,1021,355664,1,1 ,23,1021,355672,1,1 ,23,1021,355680,1,1 ,20,20173,11890018,780,0 ,20,18102,7171426,12,0 ,20,19230,9792866,116,0 ,23,1021,355688,1,1 ,23,1021,355696,1,1 ,23,1021,355704,1,1 ,23,1021,355712,1,1 ,17,923,10317188,32,0 ,17,923,7695748,32,0 ,17,923,6647172,24,0 ,44,15152,2452868,24,0 ,17,923,8744324,16,0 ,17,923,9268612,32,0 ,23,1021,355720,1,1 ,23,1021,355728,1,1 ,23,1021,355736,1,1 ,23,1021,355744,1,1 ,23,1021,355752,1,1 ,23,1021,355760,1,1 ,23,1021,355768,1,1 ,23,1021,355776,1,1 ,20,24057,22375874,244,0 ,20,18103,7171522,304,0 ,44,15152,880068,40,0 ,17,923,7171524,48,0 ,44,15152,1404356,24,0 ,23,1021,355784,1,1 ,23,1021,355792,1,1 ,23,1021,355800,1,1 ,23,1021,355808,1,1 ,23,1021,355816,1,1 ,23,1021,355824,1,1 ,23,1021,355832,1,1 ,23,1021,355840,1,1 ,20,24605,23948802,1836,0 ,20,21413,16084482,248,0 ,17,923,9793028,24,0 ,44,15152,3501572,32,0 ,45,15153,5598724,24,0 ,17,923,8744452,40,0 ,23,1021,355848,1,1 ,23,1021,355856,1,1 ,23,1021,355864,1,1 ,23,1021,355872,1,1 ,23,1021,355880,1,1 ,23,1021,355888,1,1 ,23,1021,355896,1,1 ,23,1021,355904,1,1 ,20,18311,7695938,84,0 ,17,923,8220228,64,0 ,17,923,6647364,16,0 ,44,15152,2453060,24,0 ,23,1021,355912,1,1 ,23,1021,355920,1,1 ,23,1021,355928,1,1 ,23,1021,355936,1,1 ,20,17073,4550242,2144,0 ,23,1021,355944,1,1 ,23,1021,355952,1,1 ,23,1021,355960,1,1 ,23,1021,355968,1,1 ,17,923,10317444,24,0 ,17,923,7696004,32,0 ,44,15152,1404548,24,0 ,17,923,9268868,32,0 ,23,1021,355976,1,1 ,23,1021,355984,1,1 ,23,1021,355992,1,1 ,23,1021,356000,1,1 ,23,1021,356008,1,1 ,23,1021,356016,1,1 ,23,1021,356024,1,1 ,23,1021,356032,1,1 ,17,923,9793220,32,0 ,17,923,6647492,24,0 ,45,15153,5598916,24,0 ,23,1021,356040,1,1 ,23,1021,356048,1,1 ,23,1021,356056,1,1 ,23,1021,356064,1,1 ,23,1021,356072,1,1 ,23,1021,356080,1,1 ,23,1021,356088,1,1 ,23,1021,356096,1,1 ,44,15152,3501828,24,0 ,44,15152,2453252,24,0 ,44,15152,880388,40,0 ,23,1021,356104,1,1 ,23,1021,356112,1,1 ,23,1021,356120,1,1 ,23,1021,356128,1,1 ,20,19028,9269026,88,0 ,23,1021,356136,1,1 ,23,1021,356144,1,1 ,23,1021,356152,1,1 ,23,1021,356160,1,1 ,20,20588,13463362,636,0 ,20,25781,27094850,436,0 ,20,16827,4026178,12,0 ,17,923,10317636,24,0 ,17,923,7171908,48,0 ,44,15152,1404740,72,0 ,17,923,8744772,40,0 ,23,1021,356168,1,1 ,23,1021,356176,1,1 ,23,1021,356184,1,1 ,23,1021,356192,1,1 ,20,17845,6647650,128,0 ,23,1021,356200,1,1 ,23,1021,356208,1,1 ,23,1021,356216,1,1 ,23,1021,356224,1,1 ,17,923,9269124,64,0 ,17,923,7696260,32,0 ,17,923,6647684,32,0 ,45,15153,5599108,16,0 ,23,1021,356232,1,1 ,23,1021,356240,1,1 ,23,1021,356248,1,1 ,23,1021,356256,1,1 ,20,16828,4026274,60,0 ,23,1021,356264,1,1 ,23,1021,356272,1,1 ,23,1021,356280,1,1 ,23,1021,356288,1,1 ,20,26017,27619266,132,0 ,17,923,9793476,16,0 ,44,15152,2453444,24,0 ,44,15152,3502020,24,0 ,23,1021,356296,1,1 ,23,1021,356304,1,1 ,23,1021,356312,1,1 ,23,1021,356320,1,1 ,23,1021,356328,1,1 ,23,1021,356336,1,1 ,23,1021,356344,1,1 ,23,1021,356352,1,1 ,20,23825,21852162,136,0 ,17,923,10317828,40,0 ,45,15153,4550660,64,0 ,45,15153,5599236,24,0 ,23,1021,356360,1,1 ,23,1021,356368,1,1 ,23,1021,356376,1,1 ,23,1021,356384,1,1 ,20,20336,12939298,80,0 ,23,1021,356392,1,1 ,23,1021,356400,1,1 ,23,1021,356408,1,1 ,23,1021,356416,1,1 ,20,25253,25522242,192,0 ,17,923,9793604,32,0 ,44,15152,880708,24,0 ,17,923,8220740,64,0 ,23,1021,356424,1,1 ,23,1021,356432,1,1 ,23,1021,356440,1,1 ,23,1021,356448,1,1 ,20,26472,29192290,112,0 ,23,1021,356456,1,1 ,23,1021,356464,1,1 ,23,1021,356472,1,1 ,23,1021,356480,1,1 ,20,19807,10842242,484,0 ,17,923,8745092,32,0 ,17,923,7696516,40,0 ,17,923,6647940,24,0 ,44,15152,2453636,24,0 ,44,15152,3502212,24,0 ,23,1021,356488,1,1 ,23,1021,356496,1,1 ,23,1021,356504,1,1 ,23,1021,356512,1,1 ,23,1021,356520,1,1 ,23,1021,356528,1,1 ,23,1021,356536,1,1 ,23,1021,356544,1,1 ,20,22853,19755202,24,0 ,20,16508,3502274,180,0 ,45,15153,5599428,48,0 ,17,923,7172292,56,0 ,23,1021,356552,1,1 ,23,1021,356560,1,1 ,23,1021,356568,1,1 ,23,1021,356576,1,1 ,20,18312,7696610,760,0 ,23,1021,356584,1,1 ,23,1021,356592,1,1 ,23,1021,356600,1,1 ,23,1021,356608,1,1 ,20,23439,20803842,12,0 ,20,19231,9793794,72,0 ,44,15152,880900,32,0 ,23,1021,356616,1,1 ,23,1021,356624,1,1 ,23,1021,356632,1,1 ,23,1021,356640,1,1 ,20,19543,10318114,12,0 ,20,15928,1929506,348,0 ,23,1021,356648,1,1 ,23,1021,356656,1,1 ,23,1021,356664,1,1 ,23,1021,356672,1,1 ,17,923,10318148,24,0 ,17,923,6648132,24,0 ,44,15152,2453828,24,0 ,44,15152,3502404,144,0 ,45,15153,5075268,136,0 ,17,923,9793860,16,0 ,23,1021,356680,1,1 ,23,1021,356688,1,1 ,23,1021,356696,1,1 ,23,1021,356704,1,1 ,20,23440,20803938,120,0 ,23,1021,356712,1,1 ,23,1021,356720,1,1 ,23,1021,356728,1,1 ,23,1021,356736,1,1 ,20,22854,19755394,308,0 ,20,16829,4026754,112,0 ,20,19544,10318210,192,0 ,17,923,9269636,40,0 ,44,15152,1405316,24,0 ,17,923,8745348,40,0 ,23,1021,356744,1,1 ,23,1021,356752,1,1 ,23,1021,356760,1,1 ,23,1021,356768,1,1 ,23,1021,356776,1,1 ,23,1021,356784,1,1 ,23,1021,356792,1,1 ,23,1021,356800,1,1 ,17,923,9793988,32,0 ,17,923,7696836,32,0 ,23,1021,356808,1,1 ,23,1021,356816,1,1 ,23,1021,356824,1,1 ,23,1021,356832,1,1 ,20,24459,23425506,704,0 ,20,19029,9269730,64,0 ,23,1021,356840,1,1 ,23,1021,356848,1,1 ,23,1021,356856,1,1 ,23,1021,356864,1,1 ,20,20911,15036930,372,0 ,17,923,10318340,24,0 ,17,923,6648324,24,0 ,44,15152,2454020,56,0 ,44,15152,881156,88,0 ,45,15153,4551172,144,0 ,23,1021,356872,1,1 ,23,1021,356880,1,1 ,23,1021,356888,1,1 ,23,1021,356896,1,1 ,23,1021,356904,1,1 ,23,1021,356912,1,1 ,23,1021,356920,1,1 ,23,1021,356928,1,1 ,17,923,8221252,48,0 ,44,15152,1405508,24,0 ,45,15153,5599812,32,0 ,23,1021,356936,1,1 ,23,1021,356944,1,1 ,23,1021,356952,1,1 ,23,1021,356960,1,1 ,23,1021,356968,1,1 ,23,1021,356976,1,1 ,23,1021,356984,1,1 ,23,1021,356992,1,1 ,44,15152,356996,40,0 ,17,923,7172740,56,0 ,44,15152,2978436,32,0 ,23,1021,357000,1,1 ,23,1021,357008,1,1 ,23,1021,357016,1,1 ,23,1021,357024,1,1 ,20,20337,12939938,12,0 ,23,1021,357032,1,1 ,23,1021,357040,1,1 ,23,1021,357048,1,1 ,23,1021,357056,1,1 ,17,923,10318532,24,0 ,17,923,7697092,32,0 ,17,923,6648516,32,0 ,17,923,8745668,24,0 ,17,923,9269956,40,0 ,17,923,9794244,16,0 ,23,1021,357064,1,1 ,23,1021,357072,1,1 ,23,1021,357080,1,1 ,23,1021,357088,1,1 ,23,1021,357096,1,1 ,23,1021,357104,1,1 ,23,1021,357112,1,1 ,23,1021,357120,1,1 ,20,24255,22901506,68,0 ,20,20338,12940034,84,0 ,44,15152,1405700,24,0 ,23,1021,357128,1,1 ,23,1021,357136,1,1 ,23,1021,357144,1,1 ,23,1021,357152,1,1 ,23,1021,357160,1,1 ,23,1021,357168,1,1 ,23,1021,357176,1,1 ,23,1021,357184,1,1 ,20,19232,9794370,192,0 ,17,923,9794372,32,0 ,45,15153,5600068,24,0 ,23,1021,357192,1,1 ,23,1021,357200,1,1 ,23,1021,357208,1,1 ,23,1021,357216,1,1 ,20,17846,6648674,364,0 ,23,1021,357224,1,1 ,23,1021,357232,1,1 ,23,1021,357240,1,1 ,23,1021,357248,1,1 ,17,923,10318724,24,0 ,44,15152,2978692,40,0 ,17,923,8745860,24,0 ,23,1021,357256,1,1 ,23,1021,357264,1,1 ,23,1021,357272,1,1 ,23,1021,357280,1,1 ,23,1021,357288,1,1 ,23,1021,357296,1,1 ,23,1021,357304,1,1 ,23,1021,357312,1,1 ,17,923,8221636,24,0 ,17,923,7697348,24,0 ,17,923,6648772,32,0 ,44,15152,2454468,56,0 ,44,15152,1405892,32,0 ,44,15152,357316,208,0 ,23,1021,357320,1,1 ,23,1021,357328,1,1 ,23,1021,357336,1,1 ,23,1021,357344,1,1 ,20,19030,9270242,1908,0 ,20,26473,29193186,260,0 ,20,26018,27620322,352,0 ,23,1021,357352,1,1 ,23,1021,357360,1,1 ,23,1021,357368,1,1 ,23,1021,357376,1,1 ,17,923,9270276,24,0 ,45,15153,5600260,48,0 ,23,1021,357384,1,1 ,23,1021,357392,1,1 ,23,1021,357400,1,1 ,23,1021,357408,1,1 ,23,1021,357416,1,1 ,23,1021,357424,1,1 ,23,1021,357432,1,1 ,23,1021,357440,1,1 ,20,23826,21853250,464,0 ,17,923,10318916,24,0 ,17,923,7173188,24,0 ,17,923,8746052,32,0 ,17,923,9794628,40,0 ,23,1021,357448,1,1 ,23,1021,357456,1,1 ,23,1021,357464,1,1 ,23,1021,357472,1,1 ,23,1021,357480,1,1 ,23,1021,357488,1,1 ,23,1021,357496,1,1 ,23,1021,357504,1,1 ,20,21642,16610434,188,0 ,17,923,8221828,24,0 ,17,923,7697540,32,0 ,23,1021,357512,1,1 ,23,1021,357520,1,1 ,23,1021,357528,1,1 ,23,1021,357536,1,1 ,23,1021,357544,1,1 ,23,1021,357552,1,1 ,23,1021,357560,1,1 ,23,1021,357568,1,1 ,17,923,9270468,40,0 ,17,923,6649028,24,0 ,44,15152,2979012,160,0 ,44,15152,1406148,32,0 ,44,15152,881860,32,0 ,23,1021,357576,1,1 ,23,1021,357584,1,1 ,23,1021,357592,1,1 ,23,1021,357600,1,1 ,20,20802,13989090,1740,0 ,20,17212,5076194,12,0 ,23,1021,357608,1,1 ,23,1021,357616,1,1 ,23,1021,357624,1,1 ,23,1021,357632,1,1 ,20,22142,18183426,264,0 ,20,16830,4027650,324,0 ,17,923,10319108,24,0 ,17,923,7173380,24,0 ,23,1021,357640,1,1 ,23,1021,357648,1,1 ,23,1021,357656,1,1 ,23,1021,357664,1,1 ,20,24256,22902050,140,0 ,20,23441,20804898,212,0 ,23,1021,357672,1,1 ,23,1021,357680,1,1 ,23,1021,357688,1,1 ,23,1021,357696,1,1 ,20,17213,5076290,12,0 ,17,923,8746308,32,0 ,17,923,8222020,40,0 ,23,1021,357704,1,1 ,23,1021,357712,1,1 ,23,1021,357720,1,1 ,23,1021,357728,1,1 ,20,24058,22377826,144,0 ,20,21057,15562082,328,0 ,23,1021,357736,1,1 ,23,1021,357744,1,1 ,23,1021,357752,1,1 ,23,1021,357760,1,1 ,17,923,9794948,16,0 ,17,923,7697796,32,0 ,17,923,6649220,24,0 ,44,15152,2454916,24,0 ,45,15153,5076356,224,0 ,45,15153,5600644,32,0 ,23,1021,357768,1,1 ,23,1021,357776,1,1 ,23,1021,357784,1,1 ,23,1021,357792,1,1 ,20,20339,12940706,440,0 ,20,17214,5076386,12,0 ,23,1021,357800,1,1 ,23,1021,357808,1,1 ,23,1021,357816,1,1 ,23,1021,357824,1,1 ,20,21414,16086466,1616,0 ,20,15726,1406402,340,0 ,17,923,10319300,24,0 ,17,923,7173572,40,0 ,44,15152,1406404,24,0 ,44,15152,882116,16,0 ,44,15152,3503556,64,0 ,23,1021,357832,1,1 ,23,1021,357840,1,1 ,23,1021,357848,1,1 ,23,1021,357856,1,1 ,23,1021,357864,1,1 ,23,1021,357872,1,1 ,23,1021,357880,1,1 ,23,1021,357888,1,1 ,20,17215,5076482,56,0 ,17,923,9795076,16,0 ,17,923,9270788,56,0 ,23,1021,357896,1,1 ,23,1021,357904,1,1 ,23,1021,357912,1,1 ,23,1021,357920,1,1 ,20,26198,28145186,96,0 ,23,1021,357928,1,1 ,23,1021,357936,1,1 ,23,1021,357944,1,1 ,23,1021,357952,1,1 ,20,25254,25523778,164,0 ,17,923,8746564,32,0 ,17,923,6649412,40,0 ,44,15152,2455108,88,0 ,44,15152,882244,152,0 ,23,1021,357960,1,1 ,23,1021,357968,1,1 ,23,1021,357976,1,1 ,23,1021,357984,1,1 ,20,16509,3503714,12,0 ,23,1021,357992,1,1 ,23,1021,358000,1,1 ,23,1021,358008,1,1 ,23,1021,358016,1,1 ,20,25051,24999554,560,0 ,17,923,10319492,40,0 ,17,923,7698052,40,0 ,44,15152,1406596,48,0 ,45,15153,4552324,32,0 ,45,15153,5600900,32,0 ,17,923,8222340,32,0 ,17,923,9795204,24,0 ,23,1021,358024,1,1 ,23,1021,358032,1,1 ,23,1021,358040,1,1 ,23,1021,358048,1,1 ,23,1021,358056,1,1 ,23,1021,358064,1,1 ,23,1021,358072,1,1 ,23,1021,358080,1,1 ,20,16510,3503810,196,0 ,23,1021,358088,1,1 ,23,1021,358096,1,1 ,23,1021,358104,1,1 ,23,1021,358112,1,1 ,20,18781,8746722,88,0 ,20,15489,882402,748,0 ,23,1021,358120,1,1 ,23,1021,358128,1,1 ,23,1021,358136,1,1 ,23,1021,358144,1,1 ,17,923,7173892,24,0 ,23,1021,358152,1,1 ,23,1021,358160,1,1 ,23,1021,358168,1,1 ,23,1021,358176,1,1 ,23,1021,358184,1,1 ,23,1021,358192,1,1 ,23,1021,358200,1,1 ,23,1021,358208,1,1 ,20,18104,7173954,380,0 ,17,923,9795396,40,0 ,17,923,8746820,48,0 ,23,1021,358216,1,1 ,23,1021,358224,1,1 ,23,1021,358232,1,1 ,23,1021,358240,1,1 ,23,1021,358248,1,1 ,23,1021,358256,1,1 ,23,1021,358264,1,1 ,23,1021,358272,1,1 ,20,19545,10319746,380,0 ,17,923,8222596,40,0 ,17,923,6649732,32,0 ,45,15153,4552580,280,0 ,45,15153,5601156,16,0 ,23,1021,358280,1,1 ,23,1021,358288,1,1 ,23,1021,358296,1,1 ,23,1021,358304,1,1 ,23,1021,358312,1,1 ,23,1021,358320,1,1 ,23,1021,358328,1,1 ,23,1021,358336,1,1 ,20,17216,5076930,192,0 ,17,923,10319812,32,0 ,17,923,7698372,40,0 ,17,923,7174084,56,0 ,44,15152,3504068,80,0 ,17,923,9271236,32,0 ,23,1021,358344,1,1 ,23,1021,358352,1,1 ,23,1021,358360,1,1 ,23,1021,358368,1,1 ,23,1021,358376,1,1 ,23,1021,358384,1,1 ,23,1021,358392,1,1 ,23,1021,358400,1,1 ,45,15153,5601284,16,0 ,44,15152,1931268,424,0 ,44,15152,1406980,24,0 ,23,1021,358408,1,1 ,23,1021,358416,1,1 ,23,1021,358424,1,1 ,23,1021,358432,1,1 ,23,1021,358440,1,1 ,23,1021,358448,1,1 ,23,1021,358456,1,1 ,23,1021,358464,1,1 ,23,1021,358472,1,1 ,23,1021,358480,1,1 ,23,1021,358488,1,1 ,23,1021,358496,1,1 ,23,1021,358504,1,1 ,23,1021,358512,1,1 ,23,1021,358520,1,1 ,23,1021,358528,1,1 ,17,923,9795716,24,0 ,17,923,6649988,24,0 ,45,15153,5601412,16,0 ,23,1021,358536,1,1 ,23,1021,358544,1,1 ,23,1021,358552,1,1 ,23,1021,358560,1,1 ,23,1021,358568,1,1 ,23,1021,358576,1,1 ,23,1021,358584,1,1 ,23,1021,358592,1,1 ,17,923,10320068,40,0 ,44,15152,1407172,24,0 ,17,923,8222916,56,0 ,17,923,8747204,40,0 ,17,923,9271492,32,0 ,23,1021,358600,1,1 ,23,1021,358608,1,1 ,23,1021,358616,1,1 ,23,1021,358624,1,1 ,23,1021,358632,1,1 ,23,1021,358640,1,1 ,23,1021,358648,1,1 ,23,1021,358656,1,1 ,20,15289,358658,348,0 ,45,15153,5601540,24,0 ,17,923,7698692,32,0 ,44,15152,2455812,24,0 ,23,1021,358664,1,1 ,23,1021,358672,1,1 ,23,1021,358680,1,1 ,23,1021,358688,1,1 ,20,26199,28145954,12,0 ,23,1021,358696,1,1 ,23,1021,358704,1,1 ,23,1021,358712,1,1 ,23,1021,358720,1,1 ,20,19233,9795906,792,0 ,17,923,9795908,24,0 ,17,923,6650180,24,0 ,23,1021,358728,1,1 ,23,1021,358736,1,1 ,23,1021,358744,1,1 ,23,1021,358752,1,1 ,23,1021,358760,1,1 ,23,1021,358768,1,1 ,23,1021,358776,1,1 ,23,1021,358784,1,1 ,20,24257,22903170,12,0 ,20,26200,28146050,52,0 ,44,15152,1407364,24,0 ,17,923,7174532,48,0 ,23,1021,358792,1,1 ,23,1021,358800,1,1 ,23,1021,358808,1,1 ,23,1021,358816,1,1 ,20,18782,8747426,88,0 ,23,1021,358824,1,1 ,23,1021,358832,1,1 ,23,1021,358840,1,1 ,23,1021,358848,1,1 ,17,923,9271748,32,0 ,44,15152,2980292,32,0 ,44,15152,2456004,72,0 ,45,15153,5601732,16,0 ,23,1021,358856,1,1 ,23,1021,358864,1,1 ,23,1021,358872,1,1 ,23,1021,358880,1,1 ,20,24258,22903266,56,0 ,20,24059,22378978,120,0 ,23,1021,358888,1,1 ,23,1021,358896,1,1 ,23,1021,358904,1,1 ,23,1021,358912,1,1 ,17,923,10320388,24,0 ,17,923,7698948,24,0 ,17,923,6650372,32,0 ,17,923,8747524,40,0 ,17,923,9796100,16,0 ,23,1021,358920,1,1 ,23,1021,358928,1,1 ,23,1021,358936,1,1 ,23,1021,358944,1,1 ,23,1021,358952,1,1 ,23,1021,358960,1,1 ,23,1021,358968,1,1 ,23,1021,358976,1,1 ,45,15153,5601860,32,0 ,44,15152,1407556,32,0 ,44,15152,358980,40,0 ,44,15152,3504708,56,0 ,23,1021,358984,1,1 ,23,1021,358992,1,1 ,23,1021,359000,1,1 ,23,1021,359008,1,1 ,20,21643,16611938,1368,0 ,23,1021,359016,1,1 ,23,1021,359024,1,1 ,23,1021,359032,1,1 ,23,1021,359040,1,1 ,20,22622,19233410,40,0 ,17,923,9796228,24,0 ,17,923,8223364,40,0 ,23,1021,359048,1,1 ,23,1021,359056,1,1 ,23,1021,359064,1,1 ,23,1021,359072,1,1 ,23,1021,359080,1,1 ,23,1021,359088,1,1 ,23,1021,359096,1,1 ,23,1021,359104,1,1 ,17,923,10320580,24,0 ,17,923,7699140,48,0 ,44,15152,2980548,104,0 ,17,923,9272004,24,0 ,23,1021,359112,1,1 ,23,1021,359120,1,1 ,23,1021,359128,1,1 ,23,1021,359136,1,1 ,23,1021,359144,1,1 ,23,1021,359152,1,1 ,23,1021,359160,1,1 ,23,1021,359168,1,1 ,44,15152,883460,48,0 ,17,923,7174916,24,0 ,17,923,6650628,40,0 ,23,1021,359176,1,1 ,23,1021,359184,1,1 ,23,1021,359192,1,1 ,23,1021,359200,1,1 ,20,22855,19757858,228,0 ,20,26201,28146466,404,0 ,23,1021,359208,1,1 ,23,1021,359216,1,1 ,23,1021,359224,1,1 ,23,1021,359232,1,1 ,17,923,9796420,40,0 ,44,15152,1407812,32,0 ,45,15153,5602116,24,0 ,17,923,8747844,48,0 ,23,1021,359240,1,1 ,23,1021,359248,1,1 ,23,1021,359256,1,1 ,23,1021,359264,1,1 ,20,25255,25525090,200,0 ,23,1021,359272,1,1 ,23,1021,359280,1,1 ,23,1021,359288,1,1 ,23,1021,359296,1,1 ,17,923,10320772,32,0 ,44,15152,359300,112,0 ,17,923,9272196,24,0 ,23,1021,359304,1,1 ,23,1021,359312,1,1 ,23,1021,359320,1,1 ,23,1021,359328,1,1 ,20,24259,22903714,56,0 ,23,1021,359336,1,1 ,23,1021,359344,1,1 ,23,1021,359352,1,1 ,23,1021,359360,1,1 ,20,23442,20806594,168,0 ,20,22623,19233730,524,0 ,17,923,8223684,40,0 ,17,923,7175108,24,0 ,23,1021,359368,1,1 ,23,1021,359376,1,1 ,23,1021,359384,1,1 ,23,1021,359392,1,1 ,23,1021,359400,1,1 ,23,1021,359408,1,1 ,23,1021,359416,1,1 ,23,1021,359424,1,1 ,20,15929,1932290,244,0 ,20,26474,29195266,392,0 ,45,15153,5602308,16,0 ,44,15152,2456580,24,0 ,44,15152,3505156,32,0 ,23,1021,359432,1,1 ,23,1021,359440,1,1 ,23,1021,359448,1,1 ,23,1021,359456,1,1 ,23,1021,359464,1,1 ,23,1021,359472,1,1 ,23,1021,359480,1,1 ,23,1021,359488,1,1 ,17,923,9272388,16,0 ,17,923,7699524,40,0 ,17,923,6650948,32,0 ,44,15152,1408068,24,0 ,23,1021,359496,1,1 ,23,1021,359504,1,1 ,23,1021,359512,1,1 ,23,1021,359520,1,1 ,20,18783,8748130,12,0 ,23,1021,359528,1,1 ,23,1021,359536,1,1 ,23,1021,359544,1,1 ,23,1021,359552,1,1 ,20,20888,14515330,464,0 ,17,923,10321028,32,0 ,17,923,7175300,40,0 ,44,15152,883844,40,0 ,45,15153,5078148,32,0 ,45,15153,5602436,16,0 ,17,923,9796740,24,0 ,23,1021,359560,1,1 ,23,1021,359568,1,1 ,23,1021,359576,1,1 ,23,1021,359584,1,1 ,23,1021,359592,1,1 ,23,1021,359600,1,1 ,23,1021,359608,1,1 ,23,1021,359616,1,1 ,20,18784,8748226,208,0 ,17,923,9272516,40,0 ,44,15152,2456772,56,0 ,17,923,8748228,32,0 ,23,1021,359624,1,1 ,23,1021,359632,1,1 ,23,1021,359640,1,1 ,23,1021,359648,1,1 ,20,16511,3505378,12,0 ,20,25782,27098338,436,0 ,23,1021,359656,1,1 ,23,1021,359664,1,1 ,23,1021,359672,1,1 ,23,1021,359680,1,1 ,17,923,8224004,48,0 ,44,15152,1408260,48,0 ,44,15152,3505412,40,0 ,45,15153,5602564,32,0 ,23,1021,359688,1,1 ,23,1021,359696,1,1 ,23,1021,359704,1,1 ,23,1021,359712,1,1 ,23,1021,359720,1,1 ,23,1021,359728,1,1 ,23,1021,359736,1,1 ,23,1021,359744,1,1 ,20,22143,18185538,268,0 ,20,16512,3505474,12,0 ,17,923,9796932,16,0 ,17,923,6651204,32,0 ,23,1021,359752,1,1 ,23,1021,359760,1,1 ,23,1021,359768,1,1 ,23,1021,359776,1,1 ,20,24260,22904162,56,0 ,23,1021,359784,1,1 ,23,1021,359792,1,1 ,23,1021,359800,1,1 ,23,1021,359808,1,1 ,17,923,10321284,48,0 ,17,923,7699844,24,0 ,45,15153,5078404,200,0 ,23,1021,359816,1,1 ,23,1021,359824,1,1 ,23,1021,359832,1,1 ,23,1021,359840,1,1 ,20,24060,22379938,132,0 ,20,16513,3505570,364,0 ,20,20912,15039906,484,0 ,23,1021,359848,1,1 ,23,1021,359856,1,1 ,23,1021,359864,1,1 ,23,1021,359872,1,1 ,20,17217,5078466,1164,0 ,17,923,9797060,24,0 ,17,923,7175620,56,0 ,44,15152,884164,120,0 ,17,923,8748484,32,0 ,23,1021,359880,1,1 ,23,1021,359888,1,1 ,23,1021,359896,1,1 ,23,1021,359904,1,1 ,23,1021,359912,1,1 ,23,1021,359920,1,1 ,23,1021,359928,1,1 ,23,1021,359936,1,1 ,17,923,9272836,40,0 ,44,15152,2981380,32,0 ,45,15153,5602820,24,0 ,23,1021,359944,1,1 ,23,1021,359952,1,1 ,23,1021,359960,1,1 ,23,1021,359968,1,1 ,23,1021,359976,1,1 ,23,1021,359984,1,1 ,23,1021,359992,1,1 ,23,1021,360000,1,1 ,44,15152,3505732,32,0 ,17,923,7700036,72,0 ,17,923,6651460,32,0 ,23,1021,360008,1,1 ,23,1021,360016,1,1 ,23,1021,360024,1,1 ,23,1021,360032,1,1 ,23,1021,360040,1,1 ,23,1021,360048,1,1 ,23,1021,360056,1,1 ,23,1021,360064,1,1 ,17,923,9797252,40,0 ,44,15152,2457220,24,0 ,44,15152,1408644,32,0 ,17,923,8224388,40,0 ,23,1021,360072,1,1 ,23,1021,360080,1,1 ,23,1021,360088,1,1 ,23,1021,360096,1,1 ,23,1021,360104,1,1 ,23,1021,360112,1,1 ,23,1021,360120,1,1 ,23,1021,360128,1,1 ,20,17847,6651586,96,0 ,17,923,8748740,32,0 ,45,15153,5603012,40,0 ,23,1021,360136,1,1 ,23,1021,360144,1,1 ,23,1021,360152,1,1 ,23,1021,360160,1,1 ,20,26019,27623138,292,0 ,23,1021,360168,1,1 ,23,1021,360176,1,1 ,23,1021,360184,1,1 ,23,1021,360192,1,1 ,17,923,10321668,24,0 ,44,15152,2981636,24,0 ,44,15152,360196,64,0 ,23,1021,360200,1,1 ,23,1021,360208,1,1 ,23,1021,360216,1,1 ,23,1021,360224,1,1 ,20,24261,22904610,268,0 ,20,16831,4030242,416,0 ,23,1021,360232,1,1 ,23,1021,360240,1,1 ,23,1021,360248,1,1 ,23,1021,360256,1,1 ,20,25468,26050370,64,0 ,17,923,9273156,24,0 ,17,923,6651716,32,0 ,44,15152,2457412,24,0 ,44,15152,3505988,48,0 ,23,1021,360264,1,1 ,23,1021,360272,1,1 ,23,1021,360280,1,1 ,23,1021,360288,1,1 ,23,1021,360296,1,1 ,23,1021,360304,1,1 ,23,1021,360312,1,1 ,23,1021,360320,1,1 ,44,15152,1408900,40,0 ,17,923,7176068,56,0 ,23,1021,360328,1,1 ,23,1021,360336,1,1 ,23,1021,360344,1,1 ,23,1021,360352,1,1 ,20,21058,15564706,364,0 ,20,19808,10846114,52,0 ,23,1021,360360,1,1 ,23,1021,360368,1,1 ,23,1021,360376,1,1 ,23,1021,360384,1,1 ,17,923,10321860,32,0 ,44,15152,2981828,104,0 ,17,923,8224708,40,0 ,17,923,8748996,48,0 ,17,923,9797572,24,0 ,23,1021,360392,1,1 ,23,1021,360400,1,1 ,23,1021,360408,1,1 ,23,1021,360416,1,1 ,23,1021,360424,1,1 ,23,1021,360432,1,1 ,23,1021,360440,1,1 ,23,1021,360448,1,1 ,20,17630,6127618,512,0 ,17,923,9273348,24,0 ,44,15152,2457604,48,0 ,45,15153,5603332,48,0 ,23,1021,360456,1,1 ,23,1021,360464,1,1 ,23,1021,360472,1,1 ,23,1021,360480,1,1 ,23,1021,360488,1,1 ,23,1021,360496,1,1 ,23,1021,360504,1,1 ,23,1021,360512,1,1 ,45,15153,4554820,16,0 ,17,923,6651972,32,0 ,23,1021,360520,1,1 ,23,1021,360528,1,1 ,23,1021,360536,1,1 ,23,1021,360544,1,1 ,20,15727,1409122,252,0 ,23,1021,360552,1,1 ,23,1021,360560,1,1 ,23,1021,360568,1,1 ,23,1021,360576,1,1 ,17,923,9797764,16,0 ,17,923,7700612,32,0 ,23,1021,360584,1,1 ,23,1021,360592,1,1 ,23,1021,360600,1,1 ,23,1021,360608,1,1 ,23,1021,360616,1,1 ,23,1021,360624,1,1 ,23,1021,360632,1,1 ,23,1021,360640,1,1 ,20,25604,26575042,148,0 ,17,923,10322116,32,0 ,44,15152,1409220,24,0 ,44,15152,3506372,24,0 ,45,15153,4554948,40,0 ,17,923,9273540,48,0 ,23,1021,360648,1,1 ,23,1021,360656,1,1 ,23,1021,360664,1,1 ,23,1021,360672,1,1 ,23,1021,360680,1,1 ,23,1021,360688,1,1 ,23,1021,360696,1,1 ,23,1021,360704,1,1 ,20,23443,20807938,12,0 ,17,923,9797892,24,0 ,44,15152,360708,64,0 ,17,923,8225028,32,0 ,23,1021,360712,1,1 ,23,1021,360720,1,1 ,23,1021,360728,1,1 ,23,1021,360736,1,1 ,23,1021,360744,1,1 ,23,1021,360752,1,1 ,23,1021,360760,1,1 ,23,1021,360768,1,1 ,20,19809,10846530,128,0 ,20,25469,26050882,4908,0 ,17,923,8749380,48,0 ,17,923,7176516,24,0 ,17,923,6652228,32,0 ,23,1021,360776,1,1 ,23,1021,360784,1,1 ,23,1021,360792,1,1 ,23,1021,360800,1,1 ,20,23444,20808034,120,0 ,20,17442,5603682,840,0 ,23,1021,360808,1,1 ,23,1021,360816,1,1 ,23,1021,360824,1,1 ,23,1021,360832,1,1 ,45,15153,5603716,32,0 ,17,923,7700868,24,0 ,44,15152,2457988,24,0 ,44,15152,1409412,112,0 ,44,15152,885124,24,0 ,44,15152,3506564,32,0 ,23,1021,360840,1,1 ,23,1021,360848,1,1 ,23,1021,360856,1,1 ,23,1021,360864,1,1 ,20,25256,25526690,200,0 ,23,1021,360872,1,1 ,23,1021,360880,1,1 ,23,1021,360888,1,1 ,23,1021,360896,1,1 ,20,24061,22380994,528,0 ,20,17848,6652354,128,0 ,17,923,10322372,24,0 ,17,923,9798084,48,0 ,23,1021,360904,1,1 ,23,1021,360912,1,1 ,23,1021,360920,1,1 ,23,1021,360928,1,1 ,23,1021,360936,1,1 ,23,1021,360944,1,1 ,23,1021,360952,1,1 ,23,1021,360960,1,1 ,17,923,8225284,32,0 ,17,923,7176708,48,0 ,45,15153,4555268,104,0 ,23,1021,360968,1,1 ,23,1021,360976,1,1 ,23,1021,360984,1,1 ,23,1021,360992,1,1 ,23,1021,361000,1,1 ,23,1021,361008,1,1 ,23,1021,361016,1,1 ,23,1021,361024,1,1 ,20,22856,19759682,128,0 ,17,923,9273924,40,0 ,17,923,7701060,48,0 ,17,923,6652484,32,0 ,44,15152,2458180,104,0 ,44,15152,885316,80,0 ,23,1021,361032,1,1 ,23,1021,361040,1,1 ,23,1021,361048,1,1 ,23,1021,361056,1,1 ,23,1021,361064,1,1 ,23,1021,361072,1,1 ,23,1021,361080,1,1 ,23,1021,361088,1,1 ,17,923,10322564,40,0 ,44,15152,3506820,24,0 ,45,15153,5603972,32,0 ,23,1021,361096,1,1 ,23,1021,361104,1,1 ,23,1021,361112,1,1 ,23,1021,361120,1,1 ,23,1021,361128,1,1 ,23,1021,361136,1,1 ,23,1021,361144,1,1 ,23,1021,361152,1,1 ,20,23827,21856962,544,0 ,17,923,8749764,24,0 ,23,1021,361160,1,1 ,23,1021,361168,1,1 ,23,1021,361176,1,1 ,23,1021,361184,1,1 ,23,1021,361192,1,1 ,23,1021,361200,1,1 ,23,1021,361208,1,1 ,23,1021,361216,1,1 ,17,923,8225540,32,0 ,44,15152,2982660,128,0 ,44,15152,361220,112,0 ,23,1021,361224,1,1 ,23,1021,361232,1,1 ,23,1021,361240,1,1 ,23,1021,361248,1,1 ,20,20589,13468450,116,0 ,20,18105,7176994,392,0 ,23,1021,361256,1,1 ,23,1021,361264,1,1 ,23,1021,361272,1,1 ,23,1021,361280,1,1 ,20,18785,8749890,12,0 ,17,923,9798468,32,0 ,17,923,6652740,32,0 ,44,15152,3507012,24,0 ,23,1021,361288,1,1 ,23,1021,361296,1,1 ,23,1021,361304,1,1 ,23,1021,361312,1,1 ,20,20340,12944226,160,0 ,20,19546,10322786,192,0 ,23,1021,361320,1,1 ,23,1021,361328,1,1 ,23,1021,361336,1,1 ,23,1021,361344,1,1 ,17,923,9274244,32,0 ,17,923,7177092,40,0 ,45,15153,5604228,32,0 ,17,923,8749956,32,0 ,23,1021,361352,1,1 ,23,1021,361360,1,1 ,23,1021,361368,1,1 ,23,1021,361376,1,1 ,20,18786,8749986,12,0 ,20,15930,1934242,356,0 ,23,1021,361384,1,1 ,23,1021,361392,1,1 ,23,1021,361400,1,1 ,23,1021,361408,1,1 ,20,23630,21332930,1996,0 ,17,923,10322884,24,0 ,17,923,7701444,32,0 ,45,15153,5080004,56,0 ,23,1021,361416,1,1 ,23,1021,361424,1,1 ,23,1021,361432,1,1 ,23,1021,361440,1,1 ,20,15290,361442,52,0 ,23,1021,361448,1,1 ,23,1021,361456,1,1 ,23,1021,361464,1,1 ,23,1021,361472,1,1 ,20,18787,8750082,12,0 ,17,923,8225796,32,0 ,44,15152,3507204,160,0 ,23,1021,361480,1,1 ,23,1021,361488,1,1 ,23,1021,361496,1,1 ,23,1021,361504,1,1 ,23,1021,361512,1,1 ,23,1021,361520,1,1 ,23,1021,361528,1,1 ,23,1021,361536,1,1 ,17,923,9798724,24,0 ,17,923,6652996,32,0 ,23,1021,361544,1,1 ,23,1021,361552,1,1 ,23,1021,361560,1,1 ,23,1021,361568,1,1 ,20,23151,20284514,616,0 ,20,18788,8750178,12,0 ,23,1021,361576,1,1 ,23,1021,361584,1,1 ,23,1021,361592,1,1 ,23,1021,361600,1,1 ,17,923,10323076,32,0 ,45,15153,5604484,32,0 ,17,923,8750212,32,0 ,17,923,9274500,24,0 ,23,1021,361608,1,1 ,23,1021,361616,1,1 ,23,1021,361624,1,1 ,23,1021,361632,1,1 ,23,1021,361640,1,1 ,23,1021,361648,1,1 ,23,1021,361656,1,1 ,23,1021,361664,1,1 ,20,18789,8750274,12,0 ,44,15152,885956,24,0 ,17,923,7701700,40,0 ,17,923,7177412,32,0 ,23,1021,361672,1,1 ,23,1021,361680,1,1 ,23,1021,361688,1,1 ,23,1021,361696,1,1 ,23,1021,361704,1,1 ,23,1021,361712,1,1 ,23,1021,361720,1,1 ,23,1021,361728,1,1 ,17,923,9798916,32,0 ,44,15152,1410308,24,0 ,17,923,8226052,32,0 ,23,1021,361736,1,1 ,23,1021,361744,1,1 ,23,1021,361752,1,1 ,23,1021,361760,1,1 ,20,23445,20808994,876,0 ,20,18790,8750370,12,0 ,20,20090,11371810,940,0 ,23,1021,361768,1,1 ,23,1021,361776,1,1 ,23,1021,361784,1,1 ,23,1021,361792,1,1 ,20,19810,10847554,80,0 ,17,923,9274692,24,0 ,17,923,6653252,32,0 ,44,15152,1934660,48,0 ,45,15153,4556100,40,0 ,23,1021,361800,1,1 ,23,1021,361808,1,1 ,23,1021,361816,1,1 ,23,1021,361824,1,1 ,20,25605,26576226,360,0 ,23,1021,361832,1,1 ,23,1021,361840,1,1 ,23,1021,361848,1,1 ,23,1021,361856,1,1 ,20,18791,8750466,216,0 ,20,15291,361858,128,0 ,17,923,10323332,24,0 ,44,15152,2459012,24,0 ,44,15152,886148,32,0 ,45,15153,5080452,24,0 ,45,15153,5604740,24,0 ,17,923,8750468,32,0 ,23,1021,361864,1,1 ,23,1021,361872,1,1 ,23,1021,361880,1,1 ,23,1021,361888,1,1 ,20,22144,18187682,264,0 ,23,1021,361896,1,1 ,23,1021,361904,1,1 ,23,1021,361912,1,1 ,23,1021,361920,1,1 ,20,20174,11896258,116,0 ,20,17849,6653378,368,0 ,44,15152,1410500,24,0 ,17,923,7177668,40,0 ,23,1021,361928,1,1 ,23,1021,361936,1,1 ,23,1021,361944,1,1 ,23,1021,361952,1,1 ,23,1021,361960,1,1 ,23,1021,361968,1,1 ,23,1021,361976,1,1 ,23,1021,361984,1,1 ,17,923,9799172,32,0 ,17,923,7702020,40,0 ,17,923,8226308,24,0 ,17,923,9274884,48,0 ,23,1021,361992,1,1 ,23,1021,362000,1,1 ,23,1021,362008,1,1 ,23,1021,362016,1,1 ,23,1021,362024,1,1 ,23,1021,362032,1,1 ,23,1021,362040,1,1 ,23,1021,362048,1,1 ,20,22857,19760706,244,0 ,17,923,10323524,24,0 ,17,923,6653508,24,0 ,44,15152,2459204,16,0 ,45,15153,5080644,24,0 ,45,15153,5604932,40,0 ,23,1021,362056,1,1 ,23,1021,362064,1,1 ,23,1021,362072,1,1 ,23,1021,362080,1,1 ,23,1021,362088,1,1 ,23,1021,362096,1,1 ,23,1021,362104,1,1 ,23,1021,362112,1,1 ,17,923,8750724,24,0 ,44,15152,1410692,24,0 ,44,15152,362116,24,0 ,44,15152,886404,40,0 ,45,15153,4556420,40,0 ,23,1021,362120,1,1 ,23,1021,362128,1,1 ,23,1021,362136,1,1 ,23,1021,362144,1,1 ,23,1021,362152,1,1 ,23,1021,362160,1,1 ,23,1021,362168,1,1 ,23,1021,362176,1,1 ,20,20590,13469378,80,0 ,17,923,8226500,32,0 ,44,15152,2459332,16,0 ,44,15152,1935044,48,0 ,23,1021,362184,1,1 ,23,1021,362192,1,1 ,23,1021,362200,1,1 ,23,1021,362208,1,1 ,23,1021,362216,1,1 ,23,1021,362224,1,1 ,23,1021,362232,1,1 ,23,1021,362240,1,1 ,17,923,10323716,24,0 ,17,923,7177988,40,0 ,17,923,6653700,24,0 ,44,15152,2983684,24,0 ,45,15153,5080836,184,0 ,17,923,9799428,24,0 ,23,1021,362248,1,1 ,23,1021,362256,1,1 ,23,1021,362264,1,1 ,23,1021,362272,1,1 ,23,1021,362280,1,1 ,23,1021,362288,1,1 ,23,1021,362296,1,1 ,23,1021,362304,1,1 ,17,923,8750916,40,0 ,17,923,7702340,40,0 ,44,15152,2459460,32,0 ,44,15152,1410884,24,0 ,44,15152,362308,56,0 ,23,1021,362312,1,1 ,23,1021,362320,1,1 ,23,1021,362328,1,1 ,23,1021,362336,1,1 ,23,1021,362344,1,1 ,23,1021,362352,1,1 ,23,1021,362360,1,1 ,23,1021,362368,1,1 ,20,24262,22906754,56,0 ,17,923,9275268,48,0 ,45,15153,5605252,24,0 ,23,1021,362376,1,1 ,23,1021,362384,1,1 ,23,1021,362392,1,1 ,23,1021,362400,1,1 ,23,1021,362408,1,1 ,23,1021,362416,1,1 ,23,1021,362424,1,1 ,23,1021,362432,1,1 ,20,19811,10848194,260,0 ,20,26202,28149698,864,0 ,17,923,10323908,32,0 ,17,923,6653892,24,0 ,44,15152,2983876,40,0 ,44,15152,886724,24,0 ,45,15153,4556740,32,0 ,17,923,8226756,32,0 ,17,923,9799620,24,0 ,23,1021,362440,1,1 ,23,1021,362448,1,1 ,23,1021,362456,1,1 ,23,1021,362464,1,1 ,20,24460,23431138,304,0 ,20,25257,25528290,184,0 ,23,1021,362472,1,1 ,23,1021,362480,1,1 ,23,1021,362488,1,1 ,23,1021,362496,1,1 ,20,25052,25004034,324,0 ,20,26020,27625474,1372,0 ,44,15152,1411076,16,0 ,23,1021,362504,1,1 ,23,1021,362512,1,1 ,23,1021,362520,1,1 ,23,1021,362528,1,1 ,23,1021,362536,1,1 ,23,1021,362544,1,1 ,23,1021,362552,1,1 ,23,1021,362560,1,1 ,20,15728,1411138,20,0 ,20,26475,29198402,344,0 ,45,15153,5605444,16,0 ,17,923,7178308,40,0 ,44,15152,2459716,16,0 ,44,15152,1935428,48,0 ,23,1021,362568,1,1 ,23,1021,362576,1,1 ,23,1021,362584,1,1 ,23,1021,362592,1,1 ,20,20341,12945506,328,0 ,23,1021,362600,1,1 ,23,1021,362608,1,1 ,23,1021,362616,1,1 ,23,1021,362624,1,1 ,17,923,9799812,32,0 ,17,923,7702660,48,0 ,17,923,6654084,32,0 ,44,15152,1411204,24,0 ,44,15152,886916,24,0 ,17,923,8751236,32,0 ,23,1021,362632,1,1 ,23,1021,362640,1,1 ,23,1021,362648,1,1 ,23,1021,362656,1,1 ,20,18313,7702690,212,0 ,23,1021,362664,1,1 ,23,1021,362672,1,1 ,23,1021,362680,1,1 ,23,1021,362688,1,1 ,17,923,10324164,40,0 ,44,15152,2459844,48,0 ,45,15153,4556996,72,0 ,45,15153,5605572,24,0 ,17,923,8227012,56,0 ,23,1021,362696,1,1 ,23,1021,362704,1,1 ,23,1021,362712,1,1 ,23,1021,362720,1,1 ,20,15729,1411298,88,0 ,23,1021,362728,1,1 ,23,1021,362736,1,1 ,23,1021,362744,1,1 ,23,1021,362752,1,1 ,20,16514,3508482,12,0 ,17,923,9275652,48,0 ,44,15152,2984196,24,0 ,44,15152,362756,16,0 ,44,15152,3508484,56,0 ,23,1021,362760,1,1 ,23,1021,362768,1,1 ,23,1021,362776,1,1 ,23,1021,362784,1,1 ,23,1021,362792,1,1 ,23,1021,362800,1,1 ,23,1021,362808,1,1 ,23,1021,362816,1,1 ,20,24263,22907202,56,0 ,20,20591,13470018,12,0 ,44,15152,887108,24,0 ,44,15152,1411396,24,0 ,23,1021,362824,1,1 ,23,1021,362832,1,1 ,23,1021,362840,1,1 ,23,1021,362848,1,1 ,20,20175,11897186,56,0 ,20,16515,3508578,328,0 ,20,19547,10324322,380,0 ,23,1021,362856,1,1 ,23,1021,362864,1,1 ,23,1021,362872,1,1 ,23,1021,362880,1,1 ,20,15292,362882,164,0 ,17,923,9800068,24,0 ,17,923,7178628,32,0 ,17,923,6654340,32,0 ,44,15152,362884,32,0 ,45,15153,5605764,24,0 ,17,923,8751492,32,0 ,23,1021,362888,1,1 ,23,1021,362896,1,1 ,23,1021,362904,1,1 ,23,1021,362912,1,1 ,20,20592,13470114,124,0 ,23,1021,362920,1,1 ,23,1021,362928,1,1 ,23,1021,362936,1,1 ,23,1021,362944,1,1 ,44,15152,1935812,16,0 ,44,15152,2984388,32,0 ,23,1021,362952,1,1 ,23,1021,362960,1,1 ,23,1021,362968,1,1 ,23,1021,362976,1,1 ,23,1021,362984,1,1 ,23,1021,362992,1,1 ,23,1021,363000,1,1 ,23,1021,363008,1,1 ,17,923,10324484,16,0 ,17,923,7703044,40,0 ,44,15152,1411588,24,0 ,44,15152,887300,48,0 ,23,1021,363016,1,1 ,23,1021,363024,1,1 ,23,1021,363032,1,1 ,23,1021,363040,1,1 ,23,1021,363048,1,1 ,23,1021,363056,1,1 ,23,1021,363064,1,1 ,23,1021,363072,1,1 ,17,923,9800260,544,0 ,44,15152,2460228,32,0 ,44,15152,1935940,400,0 ,45,15153,5605956,24,0 ,23,1021,363080,1,1 ,23,1021,363088,1,1 ,23,1021,363096,1,1 ,23,1021,363104,1,1 ,23,1021,363112,1,1 ,23,1021,363120,1,1 ,23,1021,363128,1,1 ,23,1021,363136,1,1 ,20,25783,27101826,424,0 ,17,923,10324612,32,0 ,17,923,7178884,24,0 ,17,923,6654596,32,0 ,44,15152,363140,24,0 ,17,923,8227460,32,0 ,17,923,8751748,32,0 ,17,923,9276036,40,0 ,23,1021,363144,1,1 ,23,1021,363152,1,1 ,23,1021,363160,1,1 ,23,1021,363168,1,1 ,23,1021,363176,1,1 ,23,1021,363184,1,1 ,23,1021,363192,1,1 ,23,1021,363200,1,1 ,20,24765,24480450,264,0 ,44,15152,3508932,40,0 ,44,15152,2984644,32,0 ,44,15152,1411780,32,0 ,23,1021,363208,1,1 ,23,1021,363216,1,1 ,23,1021,363224,1,1 ,23,1021,363232,1,1 ,23,1021,363240,1,1 ,23,1021,363248,1,1 ,23,1021,363256,1,1 ,23,1021,363264,1,1 ,20,24264,22907650,56,0 ,20,20889,14519042,4712,0 ,20,21059,15567618,328,0 ,45,15153,5606148,16,0 ,45,15153,4557572,40,0 ,23,1021,363272,1,1 ,23,1021,363280,1,1 ,23,1021,363288,1,1 ,23,1021,363296,1,1 ,20,20176,11897634,304,0 ,23,1021,363304,1,1 ,23,1021,363312,1,1 ,23,1021,363320,1,1 ,23,1021,363328,1,1 ,44,15152,363332,16,0 ,17,923,7703364,48,0 ,17,923,7179076,56,0 ,44,15152,2460484,40,0 ,23,1021,363336,1,1 ,23,1021,363344,1,1 ,23,1021,363352,1,1 ,23,1021,363360,1,1 ,23,1021,363368,1,1 ,23,1021,363376,1,1 ,23,1021,363384,1,1 ,23,1021,363392,1,1 ,17,923,10324868,40,0 ,17,923,6654852,32,0 ,44,15152,887684,24,0 ,45,15153,5606276,16,0 ,17,923,8227716,32,0 ,17,923,8752004,24,0 ,23,1021,363400,1,1 ,23,1021,363408,1,1 ,23,1021,363416,1,1 ,23,1021,363424,1,1 ,20,15730,1412002,440,0 ,23,1021,363432,1,1 ,23,1021,363440,1,1 ,23,1021,363448,1,1 ,23,1021,363456,1,1 ,17,923,9276356,24,0 ,44,15152,2984900,32,0 ,44,15152,1412036,32,0 ,44,15152,363460,24,0 ,23,1021,363464,1,1 ,23,1021,363472,1,1 ,23,1021,363480,1,1 ,23,1021,363488,1,1 ,23,1021,363496,1,1 ,23,1021,363504,1,1 ,23,1021,363512,1,1 ,23,1021,363520,1,1 ,45,15153,5606404,80,0 ,44,15152,3509252,16,0 ,23,1021,363528,1,1 ,23,1021,363536,1,1 ,23,1021,363544,1,1 ,23,1021,363552,1,1 ,20,22624,19237922,992,0 ,20,16832,4033570,204,0 ,23,1021,363560,1,1 ,23,1021,363568,1,1 ,23,1021,363576,1,1 ,23,1021,363584,1,1 ,20,18792,8752194,12,0 ,17,923,8752196,32,0 ,44,15152,887876,32,0 ,45,15153,4557892,24,0 ,23,1021,363592,1,1 ,23,1021,363600,1,1 ,23,1021,363608,1,1 ,23,1021,363616,1,1 ,23,1021,363624,1,1 ,23,1021,363632,1,1 ,23,1021,363640,1,1 ,23,1021,363648,1,1 ,17,923,9276548,24,0 ,17,923,6655108,24,0 ,44,15152,2460804,16,0 ,44,15152,363652,24,0 ,44,15152,3509380,24,0 ,17,923,8227972,48,0 ,23,1021,363656,1,1 ,23,1021,363664,1,1 ,23,1021,363672,1,1 ,23,1021,363680,1,1 ,20,18793,8752290,440,0 ,23,1021,363688,1,1 ,23,1021,363696,1,1 ,23,1021,363704,1,1 ,23,1021,363712,1,1 ,20,24265,22908098,56,0 ,20,20913,15043778,172,0 ,17,923,10325188,24,0 ,17,923,7703748,96,0 ,44,15152,2985156,24,0 ,44,15152,1412292,32,0 ,45,15153,5082308,24,0 ,23,1021,363720,1,1 ,23,1021,363728,1,1 ,23,1021,363736,1,1 ,23,1021,363744,1,1 ,23,1021,363752,1,1 ,23,1021,363760,1,1 ,23,1021,363768,1,1 ,23,1021,363776,1,1 ,45,15153,4558084,208,0 ,17,923,7179524,32,0 ,44,15152,2460932,24,0 ,23,1021,363784,1,1 ,23,1021,363792,1,1 ,23,1021,363800,1,1 ,23,1021,363808,1,1 ,23,1021,363816,1,1 ,23,1021,363824,1,1 ,23,1021,363832,1,1 ,23,1021,363840,1,1 ,17,923,9276740,32,0 ,17,923,6655300,24,0 ,44,15152,363844,24,0 ,44,15152,888132,56,0 ,44,15152,3509572,48,0 ,45,15153,4033860,16,0 ,17,923,8752452,32,0 ,23,1021,363848,1,1 ,23,1021,363856,1,1 ,23,1021,363864,1,1 ,23,1021,363872,1,1 ,23,1021,363880,1,1 ,23,1021,363888,1,1 ,23,1021,363896,1,1 ,23,1021,363904,1,1 ,20,20593,13471106,140,0 ,17,923,10325380,32,0 ,44,15152,2985348,24,0 ,45,15153,5082500,32,0 ,23,1021,363912,1,1 ,23,1021,363920,1,1 ,23,1021,363928,1,1 ,23,1021,363936,1,1 ,20,25258,25529762,288,0 ,23,1021,363944,1,1 ,23,1021,363952,1,1 ,23,1021,363960,1,1 ,23,1021,363968,1,1 ,45,15153,4033988,128,0 ,44,15152,2461124,56,0 ,44,15152,1412548,72,0 ,23,1021,363976,1,1 ,23,1021,363984,1,1 ,23,1021,363992,1,1 ,23,1021,364000,1,1 ,20,22858,19762658,156,0 ,20,22145,18189794,220,0 ,23,1021,364008,1,1 ,23,1021,364016,1,1 ,23,1021,364024,1,1 ,23,1021,364032,1,1 ,17,923,8228356,56,0 ,17,923,7179780,32,0 ,17,923,6655492,24,0 ,44,15152,364036,24,0 ,23,1021,364040,1,1 ,23,1021,364048,1,1 ,23,1021,364056,1,1 ,23,1021,364064,1,1 ,23,1021,364072,1,1 ,23,1021,364080,1,1 ,23,1021,364088,1,1 ,23,1021,364096,1,1 ,20,15490,888386,1168,0 ,17,923,9276996,24,0 ,44,15152,2985540,32,0 ,17,923,8752708,32,0 ,23,1021,364104,1,1 ,23,1021,364112,1,1 ,23,1021,364120,1,1 ,23,1021,364128,1,1 ,23,1021,364136,1,1 ,23,1021,364144,1,1 ,23,1021,364152,1,1 ,23,1021,364160,1,1 ,20,24266,22908546,56,0 ,17,923,10325636,24,0 ,45,15153,5082756,40,0 ,45,15153,5607044,88,0 ,23,1021,364168,1,1 ,23,1021,364176,1,1 ,23,1021,364184,1,1 ,23,1021,364192,1,1 ,20,15293,364194,4660,0 ,23,1021,364200,1,1 ,23,1021,364208,1,1 ,23,1021,364216,1,1 ,23,1021,364224,1,1 ,20,15931,1937090,424,0 ,44,15152,3509956,48,0 ,17,923,6655684,32,0 ,44,15152,364228,24,0 ,23,1021,364232,1,1 ,23,1021,364240,1,1 ,23,1021,364248,1,1 ,23,1021,364256,1,1 ,23,1021,364264,1,1 ,23,1021,364272,1,1 ,23,1021,364280,1,1 ,23,1021,364288,1,1 ,17,923,9277188,56,0 ,17,923,7180036,32,0 ,44,15152,888580,80,0 ,23,1021,364296,1,1 ,23,1021,364304,1,1 ,23,1021,364312,1,1 ,23,1021,364320,1,1 ,23,1021,364328,1,1 ,23,1021,364336,1,1 ,23,1021,364344,1,1 ,23,1021,364352,1,1 ,20,18314,7704386,84,0 ,20,16112,2461506,1632,0 ,17,923,10325828,24,0 ,44,15152,2985796,24,0 ,17,923,8752964,24,0 ,23,1021,364360,1,1 ,23,1021,364368,1,1 ,23,1021,364376,1,1 ,23,1021,364384,1,1 ,20,18106,7180130,336,0 ,23,1021,364392,1,1 ,23,1021,364400,1,1 ,23,1021,364408,1,1 ,23,1021,364416,1,1 ,44,15152,364420,32,0 ,44,15152,2461572,24,0 ,23,1021,364424,1,1 ,23,1021,364432,1,1 ,23,1021,364440,1,1 ,23,1021,364448,1,1 ,23,1021,364456,1,1 ,23,1021,364464,1,1 ,23,1021,364472,1,1 ,23,1021,364480,1,1 ,17,923,8228804,40,0 ,17,923,7704516,24,0 ,17,923,6655940,32,0 ,45,15153,5083076,32,0 ,23,1021,364488,1,1 ,23,1021,364496,1,1 ,23,1021,364504,1,1 ,23,1021,364512,1,1 ,20,19812,10850274,60,0 ,23,1021,364520,1,1 ,23,1021,364528,1,1 ,23,1021,364536,1,1 ,23,1021,364544,1,1 ,20,17631,6131714,100,0 ,17,923,10326020,24,0 ,17,923,7180292,24,0 ,44,15152,2985988,32,0 ,44,15152,1413124,40,0 ,17,923,8753156,32,0 ,23,1021,364552,1,1 ,23,1021,364560,1,1 ,23,1021,364568,1,1 ,23,1021,364576,1,1 ,23,1021,364584,1,1 ,23,1021,364592,1,1 ,23,1021,364600,1,1 ,23,1021,364608,1,1 ,20,24267,22908994,56,0 ,44,15152,3510340,32,0 ,44,15152,2461764,24,0 ,23,1021,364616,1,1 ,23,1021,364624,1,1 ,23,1021,364632,1,1 ,23,1021,364640,1,1 ,23,1021,364648,1,1 ,23,1021,364656,1,1 ,23,1021,364664,1,1 ,23,1021,364672,1,1 ,44,15152,364676,40,0 ,17,923,7704708,24,0 ,23,1021,364680,1,1 ,23,1021,364688,1,1 ,23,1021,364696,1,1 ,23,1021,364704,1,1 ,20,25606,26579106,68,0 ,23,1021,364712,1,1 ,23,1021,364720,1,1 ,23,1021,364728,1,1 ,23,1021,364736,1,1 ,17,923,10326212,24,0 ,17,923,7180484,32,0 ,17,923,6656196,32,0 ,45,15153,5083332,56,0 ,17,923,9277636,32,0 ,23,1021,364744,1,1 ,23,1021,364752,1,1 ,23,1021,364760,1,1 ,23,1021,364768,1,1 ,23,1021,364776,1,1 ,23,1021,364784,1,1 ,23,1021,364792,1,1 ,23,1021,364800,1,1 ,17,923,8753412,40,0 ,44,15152,2986244,32,0 ,44,15152,2461956,24,0 ,17,923,8229124,48,0 ,23,1021,364808,1,1 ,23,1021,364816,1,1 ,23,1021,364824,1,1 ,23,1021,364832,1,1 ,23,1021,364840,1,1 ,23,1021,364848,1,1 ,23,1021,364856,1,1 ,23,1021,364864,1,1 ,20,17850,6656322,216,0 ,45,15153,5607748,64,0 ,17,923,7704900,56,0 ,44,15152,1413444,80,0 ,44,15152,3510596,24,0 ,23,1021,364872,1,1 ,23,1021,364880,1,1 ,23,1021,364888,1,1 ,23,1021,364896,1,1 ,20,24461,23433570,5392,0 ,23,1021,364904,1,1 ,23,1021,364912,1,1 ,23,1021,364920,1,1 ,23,1021,364928,1,1 ,17,923,10326404,40,0 ,44,15152,889220,32,0 ,23,1021,364936,1,1 ,23,1021,364944,1,1 ,23,1021,364952,1,1 ,23,1021,364960,1,1 ,23,1021,364968,1,1 ,23,1021,364976,1,1 ,23,1021,364984,1,1 ,23,1021,364992,1,1 ,20,19813,10850754,80,0 ,17,923,9277892,64,0 ,17,923,7180740,24,0 ,17,923,6656452,32,0 ,44,15152,2462148,24,0 ,44,15152,364996,120,0 ,45,15153,4035012,16,0 ,23,1021,365000,1,1 ,23,1021,365008,1,1 ,23,1021,365016,1,1 ,23,1021,365024,1,1 ,20,20594,13472226,56,0 ,20,18315,7705058,84,0 ,23,1021,365032,1,1 ,23,1021,365040,1,1 ,23,1021,365048,1,1 ,23,1021,365056,1,1 ,20,24268,22909442,96,0 ,20,19234,9802242,28,0 ,44,15152,3510788,56,0 ,44,15152,2986500,32,0 ,23,1021,365064,1,1 ,23,1021,365072,1,1 ,23,1021,365080,1,1 ,23,1021,365088,1,1 ,20,20914,15045154,4684,0 ,20,25053,25006626,640,0 ,23,1021,365096,1,1 ,23,1021,365104,1,1 ,23,1021,365112,1,1 ,23,1021,365120,1,1 ,20,24062,22385218,612,0 ,17,923,8753732,40,0 ,45,15153,4035140,248,0 ,23,1021,365128,1,1 ,23,1021,365136,1,1 ,23,1021,365144,1,1 ,23,1021,365152,1,1 ,23,1021,365160,1,1 ,23,1021,365168,1,1 ,23,1021,365176,1,1 ,23,1021,365184,1,1 ,20,18578,8229506,728,0 ,20,16833,4035202,112,0 ,17,923,8229508,40,0 ,17,923,7180932,24,0 ,44,15152,2462340,24,0 ,44,15152,889476,32,0 ,45,15153,5083780,64,0 ,23,1021,365192,1,1 ,23,1021,365200,1,1 ,23,1021,365208,1,1 ,23,1021,365216,1,1 ,20,20342,12948130,80,0 ,23,1021,365224,1,1 ,23,1021,365232,1,1 ,23,1021,365240,1,1 ,23,1021,365248,1,1 ,20,22859,19763906,480,0 ,20,25607,26579650,52,0 ,17,923,10326724,24,0 ,17,923,6656708,32,0 ,23,1021,365256,1,1 ,23,1021,365264,1,1 ,23,1021,365272,1,1 ,23,1021,365280,1,1 ,20,19235,9802466,708,0 ,23,1021,365288,1,1 ,23,1021,365296,1,1 ,23,1021,365304,1,1 ,23,1021,365312,1,1 ,20,24766,24482562,276,0 ,20,26476,29201154,148,0 ,44,15152,2986756,24,0 ,17,923,7705348,24,0 ,23,1021,365320,1,1 ,23,1021,365328,1,1 ,23,1021,365336,1,1 ,23,1021,365344,1,1 ,20,17632,6132514,200,0 ,23,1021,365352,1,1 ,23,1021,365360,1,1 ,23,1021,365368,1,1 ,23,1021,365376,1,1 ,45,15153,5608260,24,0 ,17,923,7181124,24,0 ,44,15152,2462532,40,0 ,23,1021,365384,1,1 ,23,1021,365392,1,1 ,23,1021,365400,1,1 ,23,1021,365408,1,1 ,23,1021,365416,1,1 ,23,1021,365424,1,1 ,23,1021,365432,1,1 ,23,1021,365440,1,1 ,17,923,10326916,24,0 ,44,15152,889732,24,0 ,45,15153,4559748,16,0 ,17,923,8754052,40,0 ,23,1021,365448,1,1 ,23,1021,365456,1,1 ,23,1021,365464,1,1 ,23,1021,365472,1,1 ,20,20595,13472674,12,0 ,20,16516,3511202,12,0 ,23,1021,365480,1,1 ,23,1021,365488,1,1 ,23,1021,365496,1,1 ,23,1021,365504,1,1 ,20,23828,21861314,2020,0 ,17,923,9278404,40,0 ,17,923,7705540,56,0 ,17,923,6656964,24,0 ,44,15152,2986948,24,0 ,44,15152,1414084,48,0 ,44,15152,3511236,24,0 ,17,923,8229828,32,0 ,23,1021,365512,1,1 ,23,1021,365520,1,1 ,23,1021,365528,1,1 ,23,1021,365536,1,1 ,23,1021,365544,1,1 ,23,1021,365552,1,1 ,23,1021,365560,1,1 ,23,1021,365568,1,1 ,20,20596,13472770,740,0 ,20,16517,3511298,432,0 ,45,15153,5608452,24,0 ,17,923,7181316,24,0 ,45,15153,4559876,48,0 ,23,1021,365576,1,1 ,23,1021,365584,1,1 ,23,1021,365592,1,1 ,23,1021,365600,1,1 ,23,1021,365608,1,1 ,23,1021,365616,1,1 ,23,1021,365624,1,1 ,23,1021,365632,1,1 ,20,19814,10851394,128,0 ,17,923,10327108,40,0 ,44,15152,889924,56,0 ,23,1021,365640,1,1 ,23,1021,365648,1,1 ,23,1021,365656,1,1 ,23,1021,365664,1,1 ,20,25608,26580066,596,0 ,23,1021,365672,1,1 ,23,1021,365680,1,1 ,23,1021,365688,1,1 ,23,1021,365696,1,1 ,20,18316,7705730,84,0 ,45,15153,5084292,40,0 ,17,923,6657156,32,0 ,44,15152,2987140,24,0 ,44,15152,2462852,56,0 ,44,15152,3511428,32,0 ,23,1021,365704,1,1 ,23,1021,365712,1,1 ,23,1021,365720,1,1 ,23,1021,365728,1,1 ,20,20177,11900066,116,0 ,23,1021,365736,1,1 ,23,1021,365744,1,1 ,23,1021,365752,1,1 ,23,1021,365760,1,1 ,20,22146,18191554,272,0 ,17,923,8754372,24,0 ,17,923,7181508,32,0 ,45,15153,5608644,40,0 ,17,923,8230084,48,0 ,23,1021,365768,1,1 ,23,1021,365776,1,1 ,23,1021,365784,1,1 ,23,1021,365792,1,1 ,23,1021,365800,1,1 ,23,1021,365808,1,1 ,23,1021,365816,1,1 ,23,1021,365824,1,1 ,20,24269,22910210,152,0 ,17,923,9278724,32,0 ,23,1021,365832,1,1 ,23,1021,365840,1,1 ,23,1021,365848,1,1 ,23,1021,365856,1,1 ,20,20343,12948770,12,0 ,23,1021,365864,1,1 ,23,1021,365872,1,1 ,23,1021,365880,1,1 ,23,1021,365888,1,1 ,20,21060,15570242,364,0 ,20,19548,10327362,192,0 ,44,15152,1414468,80,0 ,44,15152,2987332,32,0 ,23,1021,365896,1,1 ,23,1021,365904,1,1 ,23,1021,365912,1,1 ,23,1021,365920,1,1 ,23,1021,365928,1,1 ,23,1021,365936,1,1 ,23,1021,365944,1,1 ,23,1021,365952,1,1 ,20,20344,12948866,84,0 ,17,923,10327428,24,0 ,17,923,7705988,24,0 ,17,923,6657412,32,0 ,44,15152,365956,144,0 ,44,15152,3511684,24,0 ,45,15153,4560260,64,0 ,17,923,8754564,40,0 ,23,1021,365960,1,1 ,23,1021,365968,1,1 ,23,1021,365976,1,1 ,23,1021,365984,1,1 ,23,1021,365992,1,1 ,23,1021,366000,1,1 ,23,1021,366008,1,1 ,23,1021,366016,1,1 ,45,15153,5084612,32,0 ,17,923,7181764,24,0 ,23,1021,366024,1,1 ,23,1021,366032,1,1 ,23,1021,366040,1,1 ,23,1021,366048,1,1 ,23,1021,366056,1,1 ,23,1021,366064,1,1 ,23,1021,366072,1,1 ,23,1021,366080,1,1 ,20,16834,4036098,160,0 ,17,923,9278980,24,0 ,44,15152,890372,64,0 ,45,15153,5608964,16,0 ,23,1021,366088,1,1 ,23,1021,366096,1,1 ,23,1021,366104,1,1 ,23,1021,366112,1,1 ,23,1021,366120,1,1 ,23,1021,366128,1,1 ,23,1021,366136,1,1 ,23,1021,366144,1,1 ,17,923,10327620,24,0 ,17,923,7706180,24,0 ,44,15152,2987588,32,0 ,44,15152,2463300,48,0 ,44,15152,3511876,24,0 ,17,923,8230468,32,0 ,23,1021,366152,1,1 ,23,1021,366160,1,1 ,23,1021,366168,1,1 ,23,1021,366176,1,1 ,23,1021,366184,1,1 ,23,1021,366192,1,1 ,23,1021,366200,1,1 ,23,1021,366208,1,1 ,45,15153,5609092,16,0 ,17,923,7181956,32,0 ,17,923,6657668,32,0 ,23,1021,366216,1,1 ,23,1021,366224,1,1 ,23,1021,366232,1,1 ,23,1021,366240,1,1 ,20,25259,25532066,140,0 ,23,1021,366248,1,1 ,23,1021,366256,1,1 ,23,1021,366264,1,1 ,23,1021,366272,1,1 ,17,923,9279172,56,0 ,44,15152,1939140,24,0 ,45,15153,5084868,16,0 ,17,923,8754884,40,0 ,23,1021,366280,1,1 ,23,1021,366288,1,1 ,23,1021,366296,1,1 ,23,1021,366304,1,1 ,23,1021,366312,1,1 ,23,1021,366320,1,1 ,23,1021,366328,1,1 ,23,1021,366336,1,1 ,17,923,10327812,24,0 ,17,923,7706372,24,0 ,44,15152,3512068,40,0 ,45,15153,5609220,32,0 ,23,1021,366344,1,1 ,23,1021,366352,1,1 ,23,1021,366360,1,1 ,23,1021,366368,1,1 ,20,18317,7706402,168,0 ,23,1021,366376,1,1 ,23,1021,366384,1,1 ,23,1021,366392,1,1 ,23,1021,366400,1,1 ,17,923,8230724,32,0 ,44,15152,2987844,24,0 ,45,15153,5084996,64,0 ,23,1021,366408,1,1 ,23,1021,366416,1,1 ,23,1021,366424,1,1 ,23,1021,366432,1,1 ,23,1021,366440,1,1 ,23,1021,366448,1,1 ,23,1021,366456,1,1 ,23,1021,366464,1,1 ,45,15153,4560772,96,0 ,17,923,7182212,24,0 ,17,923,6657924,32,0 ,44,15152,1939332,440,0 ,23,1021,366472,1,1 ,23,1021,366480,1,1 ,23,1021,366488,1,1 ,23,1021,366496,1,1 ,20,23152,20289442,672,0 ,20,26477,29202338,96,0 ,23,1021,366504,1,1 ,23,1021,366512,1,1 ,23,1021,366520,1,1 ,23,1021,366528,1,1 ,20,25784,27105218,436,0 ,17,923,10328004,32,0 ,17,923,7706564,24,0 ,44,15152,2463684,24,0 ,44,15152,1415108,600,0 ,23,1021,366536,1,1 ,23,1021,366544,1,1 ,23,1021,366552,1,1 ,23,1021,366560,1,1 ,23,1021,366568,1,1 ,23,1021,366576,1,1 ,23,1021,366584,1,1 ,23,1021,366592,1,1 ,20,17851,6658050,12,0 ,17,923,8755204,32,0 ,44,15152,2988036,32,0 ,44,15152,890884,24,0 ,45,15153,5609476,32,0 ,23,1021,366600,1,1 ,23,1021,366608,1,1 ,23,1021,366616,1,1 ,23,1021,366624,1,1 ,20,20345,12949538,440,0 ,23,1021,366632,1,1 ,23,1021,366640,1,1 ,23,1021,366648,1,1 ,23,1021,366656,1,1 ,20,20178,11900994,92,0 ,20,19815,10852418,96,0 ,17,923,8230980,24,0 ,17,923,7182404,64,0 ,44,15152,3512388,24,0 ,23,1021,366664,1,1 ,23,1021,366672,1,1 ,23,1021,366680,1,1 ,23,1021,366688,1,1 ,20,17852,6658146,12,0 ,23,1021,366696,1,1 ,23,1021,366704,1,1 ,23,1021,366712,1,1 ,23,1021,366720,1,1 ,17,923,9279620,56,0 ,17,923,7706756,24,0 ,17,923,6658180,32,0 ,44,15152,2463876,48,0 ,23,1021,366728,1,1 ,23,1021,366736,1,1 ,23,1021,366744,1,1 ,23,1021,366752,1,1 ,23,1021,366760,1,1 ,23,1021,366768,1,1 ,23,1021,366776,1,1 ,23,1021,366784,1,1 ,20,17853,6658242,44,0 ,17,923,10328260,32,0 ,44,15152,891076,24,0 ,23,1021,366792,1,1 ,23,1021,366800,1,1 ,23,1021,366808,1,1 ,23,1021,366816,1,1 ,23,1021,366824,1,1 ,23,1021,366832,1,1 ,23,1021,366840,1,1 ,23,1021,366848,1,1 ,17,923,8755460,32,0 ,44,15152,2988292,72,0 ,44,15152,3512580,24,0 ,45,15153,5609732,16,0 ,17,923,8231172,32,0 ,23,1021,366856,1,1 ,23,1021,366864,1,1 ,23,1021,366872,1,1 ,23,1021,366880,1,1 ,23,1021,366888,1,1 ,23,1021,366896,1,1 ,23,1021,366904,1,1 ,23,1021,366912,1,1 ,45,15153,5085508,56,0 ,17,923,7706948,32,0 ,23,1021,366920,1,1 ,23,1021,366928,1,1 ,23,1021,366936,1,1 ,23,1021,366944,1,1 ,20,17633,6134114,12,0 ,20,15731,1415522,424,0 ,23,1021,366952,1,1 ,23,1021,366960,1,1 ,23,1021,366968,1,1 ,23,1021,366976,1,1 ,45,15153,5609860,56,0 ,17,923,6658436,32,0 ,44,15152,891268,24,0 ,23,1021,366984,1,1 ,23,1021,366992,1,1 ,23,1021,367000,1,1 ,23,1021,367008,1,1 ,23,1021,367016,1,1 ,23,1021,367024,1,1 ,23,1021,367032,1,1 ,23,1021,367040,1,1 ,20,24270,22911426,160,0 ,20,17634,6134210,12,0 ,17,923,10328516,40,0 ,44,15152,3512772,24,0 ,23,1021,367048,1,1 ,23,1021,367056,1,1 ,23,1021,367064,1,1 ,23,1021,367072,1,1 ,20,18107,7182818,580,0 ,23,1021,367080,1,1 ,23,1021,367088,1,1 ,23,1021,367096,1,1 ,23,1021,367104,1,1 ,17,923,8755716,24,0 ,44,15152,2464260,24,0 ,44,15152,367108,56,0 ,45,15153,4037124,112,0 ,17,923,8231428,32,0 ,23,1021,367112,1,1 ,23,1021,367120,1,1 ,23,1021,367128,1,1 ,23,1021,367136,1,1 ,20,17854,6658594,12,0 ,20,17635,6134306,52,0 ,23,1021,367144,1,1 ,23,1021,367152,1,1 ,23,1021,367160,1,1 ,23,1021,367168,1,1 ,17,923,9280068,56,0 ,17,923,7707204,32,0 ,17,923,7182916,32,0 ,44,15152,891460,64,0 ,23,1021,367176,1,1 ,23,1021,367184,1,1 ,23,1021,367192,1,1 ,23,1021,367200,1,1 ,20,18794,8755810,12,0 ,23,1021,367208,1,1 ,23,1021,367216,1,1 ,23,1021,367224,1,1 ,23,1021,367232,1,1 ,20,17855,6658690,12,0 ,45,15153,4561540,64,0 ,17,923,6658692,32,0 ,44,15152,3512964,16,0 ,23,1021,367240,1,1 ,23,1021,367248,1,1 ,23,1021,367256,1,1 ,23,1021,367264,1,1 ,20,26478,29203106,656,0 ,23,1021,367272,1,1 ,23,1021,367280,1,1 ,23,1021,367288,1,1 ,23,1021,367296,1,1 ,20,18795,8755906,236,0 ,17,923,8755908,40,0 ,44,15152,2464452,48,0 ,23,1021,367304,1,1 ,23,1021,367312,1,1 ,23,1021,367320,1,1 ,23,1021,367328,1,1 ,20,17856,6658786,12,0 ,23,1021,367336,1,1 ,23,1021,367344,1,1 ,23,1021,367352,1,1 ,23,1021,367360,1,1 ,20,16835,4037378,48,0 ,20,25260,25533186,296,0 ,17,923,10328836,32,0 ,44,15152,3513092,32,0 ,45,15153,5085956,56,0 ,17,923,8231684,32,0 ,23,1021,367368,1,1 ,23,1021,367376,1,1 ,23,1021,367384,1,1 ,23,1021,367392,1,1 ,20,20179,11901730,2160,0 ,23,1021,367400,1,1 ,23,1021,367408,1,1 ,23,1021,367416,1,1 ,23,1021,367424,1,1 ,20,19816,10853186,272,0 ,20,17857,6658882,328,0 ,20,19549,10328898,380,0 ,17,923,9804612,48,0 ,17,923,7707460,24,0 ,17,923,7183172,24,0 ,44,15152,2988868,16,0 ,45,15153,5610308,16,0 ,23,1021,367432,1,1 ,23,1021,367440,1,1 ,23,1021,367448,1,1 ,23,1021,367456,1,1 ,23,1021,367464,1,1 ,23,1021,367472,1,1 ,23,1021,367480,1,1 ,23,1021,367488,1,1 ,17,923,6658948,32,0 ,23,1021,367496,1,1 ,23,1021,367504,1,1 ,23,1021,367512,1,1 ,23,1021,367520,1,1 ,20,17443,5610402,748,0 ,20,24767,24484770,268,0 ,23,1021,367528,1,1 ,23,1021,367536,1,1 ,23,1021,367544,1,1 ,23,1021,367552,1,1 ,20,17636,6134722,284,0 ,45,15153,5610436,32,0 ,44,15152,2988996,16,0 ,44,15152,367556,312,0 ,23,1021,367560,1,1 ,23,1021,367568,1,1 ,23,1021,367576,1,1 ,23,1021,367584,1,1 ,23,1021,367592,1,1 ,23,1021,367600,1,1 ,23,1021,367608,1,1 ,23,1021,367616,1,1 ,20,15932,1940482,416,0 ,17,923,10329092,48,0 ,17,923,7707652,24,0 ,17,923,7183364,32,0 ,44,15152,3513348,24,0 ,17,923,8231940,32,0 ,17,923,8756228,32,0 ,17,923,9280516,56,0 ,23,1021,367624,1,1 ,23,1021,367632,1,1 ,23,1021,367640,1,1 ,23,1021,367648,1,1 ,23,1021,367656,1,1 ,23,1021,367664,1,1 ,23,1021,367672,1,1 ,23,1021,367680,1,1 ,44,15152,891972,56,0 ,44,15152,2989124,32,0 ,44,15152,2464836,32,0 ,23,1021,367688,1,1 ,23,1021,367696,1,1 ,23,1021,367704,1,1 ,23,1021,367712,1,1 ,20,18318,7707746,824,0 ,23,1021,367720,1,1 ,23,1021,367728,1,1 ,23,1021,367736,1,1 ,23,1021,367744,1,1 ,20,16836,4037762,280,0 ,45,15153,4562052,24,0 ,17,923,6659204,24,0 ,23,1021,367752,1,1 ,23,1021,367760,1,1 ,23,1021,367768,1,1 ,23,1021,367776,1,1 ,23,1021,367784,1,1 ,23,1021,367792,1,1 ,23,1021,367800,1,1 ,23,1021,367808,1,1 ,17,923,9804996,96,0 ,17,923,7707844,32,0 ,44,15152,3513540,24,0 ,45,15153,5086404,24,0 ,45,15153,5610692,16,0 ,23,1021,367816,1,1 ,23,1021,367824,1,1 ,23,1021,367832,1,1 ,23,1021,367840,1,1 ,23,1021,367848,1,1 ,23,1021,367856,1,1 ,23,1021,367864,1,1 ,23,1021,367872,1,1 ,17,923,8756484,48,0 ,17,923,7183620,32,0 ,17,923,8232196,48,0 ,23,1021,367880,1,1 ,23,1021,367888,1,1 ,23,1021,367896,1,1 ,23,1021,367904,1,1 ,23,1021,367912,1,1 ,23,1021,367920,1,1 ,23,1021,367928,1,1 ,23,1021,367936,1,1 ,20,22147,18193730,264,0 ,45,15153,5610820,16,0 ,17,923,6659396,16,0 ,44,15152,2989380,32,0 ,44,15152,2465092,48,0 ,45,15153,4562244,24,0 ,23,1021,367944,1,1 ,23,1021,367952,1,1 ,23,1021,367960,1,1 ,23,1021,367968,1,1 ,23,1021,367976,1,1 ,23,1021,367984,1,1 ,23,1021,367992,1,1 ,23,1021,368000,1,1 ,17,923,10329476,24,0 ,44,15152,3513732,80,0 ,45,15153,4038020,32,0 ,45,15153,5086596,24,0 ,23,1021,368008,1,1 ,23,1021,368016,1,1 ,23,1021,368024,1,1 ,23,1021,368032,1,1 ,23,1021,368040,1,1 ,23,1021,368048,1,1 ,23,1021,368056,1,1 ,23,1021,368064,1,1 ,17,923,9280964,80,0 ,17,923,7708100,24,0 ,17,923,6659524,32,0 ,45,15153,5610948,72,0 ,23,1021,368072,1,1 ,23,1021,368080,1,1 ,23,1021,368088,1,1 ,23,1021,368096,1,1 ,23,1021,368104,1,1 ,23,1021,368112,1,1 ,23,1021,368120,1,1 ,23,1021,368128,1,1 ,45,15153,4562436,24,0 ,17,923,7183876,40,0 ,44,15152,892420,48,0 ,23,1021,368136,1,1 ,23,1021,368144,1,1 ,23,1021,368152,1,1 ,23,1021,368160,1,1 ,23,1021,368168,1,1 ,23,1021,368176,1,1 ,23,1021,368184,1,1 ,23,1021,368192,1,1 ,17,923,10329668,24,0 ,44,15152,2989636,16,0 ,45,15153,5086788,24,0 ,23,1021,368200,1,1 ,23,1021,368208,1,1 ,23,1021,368216,1,1 ,23,1021,368224,1,1 ,23,1021,368232,1,1 ,23,1021,368240,1,1 ,23,1021,368248,1,1 ,23,1021,368256,1,1 ,17,923,8756868,48,0 ,17,923,7708292,24,0 ,45,15153,4038276,16,0 ,17,923,8232580,40,0 ,23,1021,368264,1,1 ,23,1021,368272,1,1 ,23,1021,368280,1,1 ,23,1021,368288,1,1 ,23,1021,368296,1,1 ,23,1021,368304,1,1 ,23,1021,368312,1,1 ,23,1021,368320,1,1 ,20,24271,22912706,12,0 ,45,15153,4562628,16,0 ,17,923,6659780,32,0 ,44,15152,2989764,32,0 ,44,15152,2465476,48,0 ,23,1021,368328,1,1 ,23,1021,368336,1,1 ,23,1021,368344,1,1 ,23,1021,368352,1,1 ,23,1021,368360,1,1 ,23,1021,368368,1,1 ,23,1021,368376,1,1 ,23,1021,368384,1,1 ,17,923,10329860,32,0 ,45,15153,4038404,16,0 ,45,15153,5086980,64,0 ,23,1021,368392,1,1 ,23,1021,368400,1,1 ,23,1021,368408,1,1 ,23,1021,368416,1,1 ,20,24272,22912802,52,0 ,23,1021,368424,1,1 ,23,1021,368432,1,1 ,23,1021,368440,1,1 ,23,1021,368448,1,1 ,45,15153,4562756,88,0 ,17,923,7708484,56,0 ,17,923,7184196,40,0 ,23,1021,368456,1,1 ,23,1021,368464,1,1 ,23,1021,368472,1,1 ,23,1021,368480,1,1 ,23,1021,368488,1,1 ,23,1021,368496,1,1 ,23,1021,368504,1,1 ,23,1021,368512,1,1 ,45,15153,4038532,32,0 ,44,15152,892804,32,0 ,23,1021,368520,1,1 ,23,1021,368528,1,1 ,23,1021,368536,1,1 ,23,1021,368544,1,1 ,23,1021,368552,1,1 ,23,1021,368560,1,1 ,23,1021,368568,1,1 ,23,1021,368576,1,1 ,17,923,9805764,96,0 ,17,923,6660036,32,0 ,44,15152,2990020,32,0 ,17,923,8232900,32,0 ,23,1021,368584,1,1 ,23,1021,368592,1,1 ,23,1021,368600,1,1 ,23,1021,368608,1,1 ,23,1021,368616,1,1 ,23,1021,368624,1,1 ,23,1021,368632,1,1 ,23,1021,368640,1,1 ,17,923,10330116,48,0 ,44,15152,3514372,72,0 ,45,15153,5611524,16,0 ,17,923,8757252,40,0 ,23,1021,368648,1,1 ,23,1021,368656,1,1 ,23,1021,368664,1,1 ,23,1021,368672,1,1 ,23,1021,368680,1,1 ,23,1021,368688,1,1 ,23,1021,368696,1,1 ,23,1021,368704,1,1 ,17,923,9281604,32,0 ,44,15152,2465860,48,0 ,23,1021,368712,1,1 ,23,1021,368720,1,1 ,23,1021,368728,1,1 ,23,1021,368736,1,1 ,23,1021,368744,1,1 ,23,1021,368752,1,1 ,23,1021,368760,1,1 ,23,1021,368768,1,1 ,20,23446,20816002,196,0 ,45,15153,5611652,32,0 ,17,923,7184516,24,0 ,44,15152,893060,64,0 ,45,15153,4038788,24,0 ,23,1021,368776,1,1 ,23,1021,368784,1,1 ,23,1021,368792,1,1 ,23,1021,368800,1,1 ,20,21061,15573154,724,0 ,23,1021,368808,1,1 ,23,1021,368816,1,1 ,23,1021,368824,1,1 ,23,1021,368832,1,1 ,20,24273,22913218,96,0 ,17,923,8233156,32,0 ,17,923,6660292,24,0 ,44,15152,2990276,32,0 ,23,1021,368840,1,1 ,23,1021,368848,1,1 ,23,1021,368856,1,1 ,23,1021,368864,1,1 ,23,1021,368872,1,1 ,23,1021,368880,1,1 ,23,1021,368888,1,1 ,23,1021,368896,1,1 ,45,15153,5087492,120,0 ,17,923,7708932,24,0 ,23,1021,368904,1,1 ,23,1021,368912,1,1 ,23,1021,368920,1,1 ,23,1021,368928,1,1 ,23,1021,368936,1,1 ,23,1021,368944,1,1 ,23,1021,368952,1,1 ,23,1021,368960,1,1 ,17,923,9281860,32,0 ,17,923,7184708,24,0 ,45,15153,4038980,40,0 ,17,923,8757572,24,0 ,23,1021,368968,1,1 ,23,1021,368976,1,1 ,23,1021,368984,1,1 ,23,1021,368992,1,1 ,23,1021,369000,1,1 ,23,1021,369008,1,1 ,23,1021,369016,1,1 ,23,1021,369024,1,1 ,20,16518,3514754,12,0 ,17,923,10330500,32,0 ,17,923,6660484,24,0 ,45,15153,5611908,48,0 ,23,1021,369032,1,1 ,23,1021,369040,1,1 ,23,1021,369048,1,1 ,23,1021,369056,1,1 ,23,1021,369064,1,1 ,23,1021,369072,1,1 ,23,1021,369080,1,1 ,23,1021,369088,1,1 ,20,22860,19767746,156,0 ,17,923,8233412,24,0 ,17,923,7709124,24,0 ,44,15152,2990532,24,0 ,44,15152,2466244,32,0 ,23,1021,369096,1,1 ,23,1021,369104,1,1 ,23,1021,369112,1,1 ,23,1021,369120,1,1 ,20,16519,3514850,108,0 ,23,1021,369128,1,1 ,23,1021,369136,1,1 ,23,1021,369144,1,1 ,23,1021,369152,1,1 ,17,923,8757764,24,0 ,17,923,7184900,32,0 ,45,15153,4563460,24,0 ,23,1021,369160,1,1 ,23,1021,369168,1,1 ,23,1021,369176,1,1 ,23,1021,369184,1,1 ,20,18796,8757794,80,0 ,20,17218,5087778,388,0 ,23,1021,369192,1,1 ,23,1021,369200,1,1 ,23,1021,369208,1,1 ,23,1021,369216,1,1 ,17,923,9282116,40,0 ,17,923,6660676,32,0 ,44,15152,3514948,24,0 ,23,1021,369224,1,1 ,23,1021,369232,1,1 ,23,1021,369240,1,1 ,23,1021,369248,1,1 ,23,1021,369256,1,1 ,23,1021,369264,1,1 ,23,1021,369272,1,1 ,23,1021,369280,1,1 ,20,20091,11379330,12,0 ,17,923,10330756,32,0 ,17,923,7709316,24,0 ,44,15152,2990724,48,0 ,44,15152,893572,32,0 ,45,15153,4039300,16,0 ,17,923,8233604,64,0 ,23,1021,369288,1,1 ,23,1021,369296,1,1 ,23,1021,369304,1,1 ,23,1021,369312,1,1 ,23,1021,369320,1,1 ,23,1021,369328,1,1 ,23,1021,369336,1,1 ,23,1021,369344,1,1 ,20,26203,28156610,12,0 ,17,923,9806532,104,0 ,44,15152,2466500,24,0 ,45,15153,4563652,16,0 ,17,923,8757956,32,0 ,23,1021,369352,1,1 ,23,1021,369360,1,1 ,23,1021,369368,1,1 ,23,1021,369376,1,1 ,20,20092,11379426,316,0 ,23,1021,369384,1,1 ,23,1021,369392,1,1 ,23,1021,369400,1,1 ,23,1021,369408,1,1 ,45,15153,5612292,40,0 ,17,923,7185156,24,0 ,44,15152,3515140,24,0 ,45,15153,4039428,16,0 ,23,1021,369416,1,1 ,23,1021,369424,1,1 ,23,1021,369432,1,1 ,23,1021,369440,1,1 ,20,26204,28156706,932,0 ,23,1021,369448,1,1 ,23,1021,369456,1,1 ,23,1021,369464,1,1 ,23,1021,369472,1,1 ,45,15153,4563780,16,0 ,17,923,7709508,56,0 ,17,923,6660932,32,0 ,23,1021,369480,1,1 ,23,1021,369488,1,1 ,23,1021,369496,1,1 ,23,1021,369504,1,1 ,23,1021,369512,1,1 ,23,1021,369520,1,1 ,23,1021,369528,1,1 ,23,1021,369536,1,1 ,17,923,10331012,32,0 ,44,15152,2466692,48,0 ,44,15152,893828,72,0 ,45,15153,4039556,80,0 ,17,923,9282436,24,0 ,23,1021,369544,1,1 ,23,1021,369552,1,1 ,23,1021,369560,1,1 ,23,1021,369568,1,1 ,23,1021,369576,1,1 ,23,1021,369584,1,1 ,23,1021,369592,1,1 ,23,1021,369600,1,1 ,20,24274,22913986,96,0 ,20,19817,10855362,68,0 ,17,923,8758212,24,0 ,17,923,7185348,32,0 ,44,15152,3515332,176,0 ,45,15153,4563908,24,0 ,23,1021,369608,1,1 ,23,1021,369616,1,1 ,23,1021,369624,1,1 ,23,1021,369632,1,1 ,23,1021,369640,1,1 ,23,1021,369648,1,1 ,23,1021,369656,1,1 ,23,1021,369664,1,1 ,20,24768,24486914,308,0 ,44,15152,2991108,40,0 ,23,1021,369672,1,1 ,23,1021,369680,1,1 ,23,1021,369688,1,1 ,23,1021,369696,1,1 ,23,1021,369704,1,1 ,23,1021,369712,1,1 ,23,1021,369720,1,1 ,23,1021,369728,1,1 ,20,25261,25535554,164,0 ,17,923,9282628,40,0 ,17,923,6661188,24,0 ,45,15153,5612612,32,0 ,23,1021,369736,1,1 ,23,1021,369744,1,1 ,23,1021,369752,1,1 ,23,1021,369760,1,1 ,23,1021,369768,1,1 ,23,1021,369776,1,1 ,23,1021,369784,1,1 ,23,1021,369792,1,1 ,17,923,10331268,32,0 ,45,15153,4564100,16,0 ,17,923,8234116,32,0 ,17,923,8758404,72,0 ,23,1021,369800,1,1 ,23,1021,369808,1,1 ,23,1021,369816,1,1 ,23,1021,369824,1,1 ,20,18797,8758434,132,0 ,20,17637,6136994,12,0 ,23,1021,369832,1,1 ,23,1021,369840,1,1 ,23,1021,369848,1,1 ,23,1021,369856,1,1 ,45,15153,5088452,16,0 ,17,923,7185604,40,0 ,23,1021,369864,1,1 ,23,1021,369872,1,1 ,23,1021,369880,1,1 ,23,1021,369888,1,1 ,23,1021,369896,1,1 ,23,1021,369904,1,1 ,23,1021,369912,1,1 ,23,1021,369920,1,1 ,20,17638,6137090,12,0 ,45,15153,4564228,16,0 ,17,923,7709956,56,0 ,17,923,6661380,32,0 ,44,15152,2467076,48,0 ,23,1021,369928,1,1 ,23,1021,369936,1,1 ,23,1021,369944,1,1 ,23,1021,369952,1,1 ,20,21644,16622882,12,0 ,23,1021,369960,1,1 ,23,1021,369968,1,1 ,23,1021,369976,1,1 ,23,1021,369984,1,1 ,20,16837,4040002,168,0 ,20,16520,3515714,164,0 ,45,15153,5612868,16,0 ,44,15152,2991428,72,0 ,44,15152,1942852,48,0 ,45,15153,5088580,24,0 ,23,1021,369992,1,1 ,23,1021,370000,1,1 ,23,1021,370008,1,1 ,23,1021,370016,1,1 ,20,24063,22390114,108,0 ,20,25785,27108706,436,0 ,20,17639,6137186,52,0 ,23,1021,370024,1,1 ,23,1021,370032,1,1 ,23,1021,370040,1,1 ,23,1021,370048,1,1 ,20,22148,18195842,256,0 ,20,17858,6661506,424,0 ,20,21645,16622978,12,0 ,17,923,10331524,40,0 ,44,15152,370052,48,0 ,45,15153,4564356,32,0 ,17,923,8234372,40,0 ,17,923,9282948,24,0 ,23,1021,370056,1,1 ,23,1021,370064,1,1 ,23,1021,370072,1,1 ,23,1021,370080,1,1 ,23,1021,370088,1,1 ,23,1021,370096,1,1 ,23,1021,370104,1,1 ,23,1021,370112,1,1 ,45,15153,5612996,16,0 ,44,15152,894404,24,0 ,23,1021,370120,1,1 ,23,1021,370128,1,1 ,23,1021,370136,1,1 ,23,1021,370144,1,1 ,20,21646,16623074,156,0 ,20,19818,10855906,188,0 ,20,20346,12953058,160,0 ,23,1021,370152,1,1 ,23,1021,370160,1,1 ,23,1021,370168,1,1 ,23,1021,370176,1,1 ,17,923,9807364,96,0 ,17,923,7185924,32,0 ,17,923,6661636,32,0 ,45,15153,4040196,56,0 ,45,15153,5088772,24,0 ,23,1021,370184,1,1 ,23,1021,370192,1,1 ,23,1021,370200,1,1 ,23,1021,370208,1,1 ,20,25054,25011746,460,0 ,23,1021,370216,1,1 ,23,1021,370224,1,1 ,23,1021,370232,1,1 ,23,1021,370240,1,1 ,17,923,9283140,24,0 ,45,15153,5613124,16,0 ,23,1021,370248,1,1 ,23,1021,370256,1,1 ,23,1021,370264,1,1 ,23,1021,370272,1,1 ,23,1021,370280,1,1 ,23,1021,370288,1,1 ,23,1021,370296,1,1 ,23,1021,370304,1,1 ,45,15153,4564612,72,0 ,44,15152,2467460,24,0 ,44,15152,894596,32,0 ,23,1021,370312,1,1 ,23,1021,370320,1,1 ,23,1021,370328,1,1 ,23,1021,370336,1,1 ,20,23447,20817570,124,0 ,20,15732,1418914,200,0 ,20,22861,19768994,532,0 ,23,1021,370344,1,1 ,23,1021,370352,1,1 ,23,1021,370360,1,1 ,23,1021,370368,1,1 ,20,24275,22914754,96,0 ,17,923,10331844,32,0 ,17,923,7710404,56,0 ,44,15152,1943236,48,0 ,45,15153,5088964,24,0 ,45,15153,5613252,24,0 ,17,923,8234692,40,0 ,17,923,8758980,64,0 ,23,1021,370376,1,1 ,23,1021,370384,1,1 ,23,1021,370392,1,1 ,23,1021,370400,1,1 ,23,1021,370408,1,1 ,23,1021,370416,1,1 ,23,1021,370424,1,1 ,23,1021,370432,1,1 ,20,17640,6137602,12,0 ,20,25609,26584834,196,0 ,17,923,9283332,24,0 ,17,923,7186180,32,0 ,17,923,6661892,24,0 ,44,15152,370436,48,0 ,23,1021,370440,1,1 ,23,1021,370448,1,1 ,23,1021,370456,1,1 ,23,1021,370464,1,1 ,20,19550,10331938,192,0 ,23,1021,370472,1,1 ,23,1021,370480,1,1 ,23,1021,370488,1,1 ,23,1021,370496,1,1 ,44,15152,2467652,32,0 ,23,1021,370504,1,1 ,23,1021,370512,1,1 ,23,1021,370520,1,1 ,23,1021,370528,1,1 ,20,24606,23963490,624,0 ,20,17641,6137698,12,0 ,23,1021,370536,1,1 ,23,1021,370544,1,1 ,23,1021,370552,1,1 ,23,1021,370560,1,1 ,45,15153,5613444,40,0 ,44,15152,2992004,112,0 ,44,15152,894852,72,0 ,45,15153,5089156,16,0 ,23,1021,370568,1,1 ,23,1021,370576,1,1 ,23,1021,370584,1,1 ,23,1021,370592,1,1 ,23,1021,370600,1,1 ,23,1021,370608,1,1 ,23,1021,370616,1,1 ,23,1021,370624,1,1 ,20,17642,6137794,136,0 ,17,923,10332100,24,0 ,17,923,6662084,32,0 ,45,15153,4040644,112,0 ,17,923,9283524,24,0 ,23,1021,370632,1,1 ,23,1021,370640,1,1 ,23,1021,370648,1,1 ,23,1021,370656,1,1 ,23,1021,370664,1,1 ,23,1021,370672,1,1 ,23,1021,370680,1,1 ,23,1021,370688,1,1 ,17,923,8235012,40,0 ,17,923,7186436,40,0 ,45,15153,5089284,24,0 ,23,1021,370696,1,1 ,23,1021,370704,1,1 ,23,1021,370712,1,1 ,23,1021,370720,1,1 ,23,1021,370728,1,1 ,23,1021,370736,1,1 ,23,1021,370744,1,1 ,23,1021,370752,1,1 ,20,21415,16099394,316,0 ,44,15152,1943620,48,0 ,44,15152,2467908,24,0 ,23,1021,370760,1,1 ,23,1021,370768,1,1 ,23,1021,370776,1,1 ,23,1021,370784,1,1 ,23,1021,370792,1,1 ,23,1021,370800,1,1 ,23,1021,370808,1,1 ,23,1021,370816,1,1 ,17,923,10332292,24,0 ,17,923,7710852,24,0 ,44,15152,370820,144,0 ,17,923,9283716,56,0 ,23,1021,370824,1,1 ,23,1021,370832,1,1 ,23,1021,370840,1,1 ,23,1021,370848,1,1 ,23,1021,370856,1,1 ,23,1021,370864,1,1 ,23,1021,370872,1,1 ,23,1021,370880,1,1 ,20,24064,22390978,32,0 ,20,18798,8759490,116,0 ,17,923,8759492,40,0 ,17,923,6662340,32,0 ,45,15153,4565188,120,0 ,45,15153,5089476,16,0 ,45,15153,5613764,24,0 ,23,1021,370888,1,1 ,23,1021,370896,1,1 ,23,1021,370904,1,1 ,23,1021,370912,1,1 ,23,1021,370920,1,1 ,23,1021,370928,1,1 ,23,1021,370936,1,1 ,23,1021,370944,1,1 ,20,19236,9808130,48,0 ,20,15933,1943810,416,0 ,17,923,9808132,96,0 ,44,15152,2468100,32,0 ,23,1021,370952,1,1 ,23,1021,370960,1,1 ,23,1021,370968,1,1 ,23,1021,370976,1,1 ,23,1021,370984,1,1 ,23,1021,370992,1,1 ,23,1021,371000,1,1 ,23,1021,371008,1,1 ,20,18579,8235330,12,0 ,17,923,10332484,24,0 ,17,923,7711044,24,0 ,17,923,7186756,32,0 ,44,15152,3516740,32,0 ,45,15153,5089604,24,0 ,17,923,8235332,40,0 ,23,1021,371016,1,1 ,23,1021,371024,1,1 ,23,1021,371032,1,1 ,23,1021,371040,1,1 ,20,25262,25536866,356,0 ,23,1021,371048,1,1 ,23,1021,371056,1,1 ,23,1021,371064,1,1 ,23,1021,371072,1,1 ,45,15153,5613956,16,0 ,23,1021,371080,1,1 ,23,1021,371088,1,1 ,23,1021,371096,1,1 ,23,1021,371104,1,1 ,20,18580,8235426,1032,0 ,23,1021,371112,1,1 ,23,1021,371120,1,1 ,23,1021,371128,1,1 ,23,1021,371136,1,1 ,20,24276,22915522,552,0 ,20,24065,22391234,172,0 ,44,15152,895428,48,0 ,17,923,6662596,32,0 ,44,15152,1944004,16,0 ,23,1021,371144,1,1 ,23,1021,371152,1,1 ,23,1021,371160,1,1 ,23,1021,371168,1,1 ,23,1021,371176,1,1 ,23,1021,371184,1,1 ,23,1021,371192,1,1 ,23,1021,371200,1,1 ,17,923,10332676,40,0 ,17,923,7711236,32,0 ,44,15152,2468356,16,0 ,45,15153,5089796,16,0 ,45,15153,5614084,16,0 ,17,923,8759812,24,0 ,23,1021,371208,1,1 ,23,1021,371216,1,1 ,23,1021,371224,1,1 ,23,1021,371232,1,1 ,23,1021,371240,1,1 ,23,1021,371248,1,1 ,23,1021,371256,1,1 ,23,1021,371264,1,1 ,17,923,9284164,32,0 ,17,923,7187012,48,0 ,44,15152,1944132,24,0 ,44,15152,3516996,32,0 ,23,1021,371272,1,1 ,23,1021,371280,1,1 ,23,1021,371288,1,1 ,23,1021,371296,1,1 ,20,16521,3517026,360,0 ,23,1021,371304,1,1 ,23,1021,371312,1,1 ,23,1021,371320,1,1 ,23,1021,371328,1,1 ,20,23448,20818562,152,0 ,20,16838,4041346,128,0 ,20,19237,9808514,192,0 ,17,923,8235652,32,0 ,44,15152,2468484,16,0 ,44,15152,1419908,24,0 ,45,15153,5089924,32,0 ,45,15153,5614212,24,0 ,23,1021,371336,1,1 ,23,1021,371344,1,1 ,23,1021,371352,1,1 ,23,1021,371360,1,1 ,23,1021,371368,1,1 ,23,1021,371376,1,1 ,23,1021,371384,1,1 ,23,1021,371392,1,1 ,20,21647,16624322,932,0 ,17,923,8760004,40,0 ,17,923,6662852,24,0 ,23,1021,371400,1,1 ,23,1021,371408,1,1 ,23,1021,371416,1,1 ,23,1021,371424,1,1 ,20,20347,12954338,304,0 ,23,1021,371432,1,1 ,23,1021,371440,1,1 ,23,1021,371448,1,1 ,23,1021,371456,1,1 ,44,15152,1944324,432,0 ,17,923,7711492,32,0 ,44,15152,2992900,40,0 ,44,15152,2468612,16,0 ,23,1021,371464,1,1 ,23,1021,371472,1,1 ,23,1021,371480,1,1 ,23,1021,371488,1,1 ,20,22625,19245858,44,0 ,20,20597,13478690,624,0 ,23,1021,371496,1,1 ,23,1021,371504,1,1 ,23,1021,371512,1,1 ,23,1021,371520,1,1 ,20,20803,14003010,164,0 ,17,923,10332996,24,0 ,44,15152,1420100,24,0 ,44,15152,895812,32,0 ,44,15152,3517252,24,0 ,45,15153,4041540,24,0 ,45,15153,5614404,24,0 ,17,923,9284420,56,0 ,23,1021,371528,1,1 ,23,1021,371536,1,1 ,23,1021,371544,1,1 ,23,1021,371552,1,1 ,23,1021,371560,1,1 ,23,1021,371568,1,1 ,23,1021,371576,1,1 ,23,1021,371584,1,1 ,17,923,8235908,56,0 ,17,923,6663044,32,0 ,44,15152,2468740,24,0 ,45,15153,5090180,48,0 ,23,1021,371592,1,1 ,23,1021,371600,1,1 ,23,1021,371608,1,1 ,23,1021,371616,1,1 ,23,1021,371624,1,1 ,23,1021,371632,1,1 ,23,1021,371640,1,1 ,23,1021,371648,1,1 ,20,19819,10857410,620,0 ,17,923,7187396,32,0 ,23,1021,371656,1,1 ,23,1021,371664,1,1 ,23,1021,371672,1,1 ,23,1021,371680,1,1 ,23,1021,371688,1,1 ,23,1021,371696,1,1 ,23,1021,371704,1,1 ,23,1021,371712,1,1 ,20,18108,7187458,12,0 ,20,17643,6138882,212,0 ,17,923,10333188,32,0 ,17,923,7711748,24,0 ,44,15152,1420292,24,0 ,44,15152,3517444,288,0 ,45,15153,4041732,16,0 ,45,15153,5614596,24,0 ,17,923,8760324,24,0 ,17,923,9808900,104,0 ,23,1021,371720,1,1 ,23,1021,371728,1,1 ,23,1021,371736,1,1 ,23,1021,371744,1,1 ,23,1021,371752,1,1 ,23,1021,371760,1,1 ,23,1021,371768,1,1 ,23,1021,371776,1,1 ,44,15152,896068,80,0 ,44,15152,2993220,48,0 ,44,15152,2468932,24,0 ,23,1021,371784,1,1 ,23,1021,371792,1,1 ,23,1021,371800,1,1 ,23,1021,371808,1,1 ,20,18799,8760418,52,0 ,20,18109,7187554,112,0 ,23,1021,371816,1,1 ,23,1021,371824,1,1 ,23,1021,371832,1,1 ,23,1021,371840,1,1 ,20,22626,19246210,44,0 ,45,15153,4566148,16,0 ,17,923,6663300,24,0 ,45,15153,4041860,72,0 ,23,1021,371848,1,1 ,23,1021,371856,1,1 ,23,1021,371864,1,1 ,23,1021,371872,1,1 ,20,23153,20294818,196,0 ,23,1021,371880,1,1 ,23,1021,371888,1,1 ,23,1021,371896,1,1 ,23,1021,371904,1,1 ,20,20093,11381954,508,0 ,17,923,8760516,32,0 ,17,923,7711940,32,0 ,17,923,7187652,24,0 ,44,15152,1420484,24,0 ,45,15153,5614788,24,0 ,23,1021,371912,1,1 ,23,1021,371920,1,1 ,23,1021,371928,1,1 ,23,1021,371936,1,1 ,20,15733,1420514,304,0 ,23,1021,371944,1,1 ,23,1021,371952,1,1 ,23,1021,371960,1,1 ,23,1021,371968,1,1 ,17,923,10333444,24,0 ,44,15152,2469124,24,0 ,44,15152,371972,24,0 ,45,15153,4566276,24,0 ,45,15153,5090564,24,0 ,17,923,9284868,24,0 ,23,1021,371976,1,1 ,23,1021,371984,1,1 ,23,1021,371992,1,1 ,23,1021,372000,1,1 ,20,19551,10333474,380,0 ,20,25610,26586402,196,0 ,23,1021,372008,1,1 ,23,1021,372016,1,1 ,23,1021,372024,1,1 ,23,1021,372032,1,1 ,17,923,8236356,40,0 ,17,923,6663492,24,0 ,23,1021,372040,1,1 ,23,1021,372048,1,1 ,23,1021,372056,1,1 ,23,1021,372064,1,1 ,23,1021,372072,1,1 ,23,1021,372080,1,1 ,23,1021,372088,1,1 ,23,1021,372096,1,1 ,20,22149,18197890,204,0 ,45,15153,5614980,24,0 ,17,923,7187844,24,0 ,44,15152,1420676,24,0 ,23,1021,372104,1,1 ,23,1021,372112,1,1 ,23,1021,372120,1,1 ,23,1021,372128,1,1 ,20,24769,24489378,24,0 ,23,1021,372136,1,1 ,23,1021,372144,1,1 ,23,1021,372152,1,1 ,23,1021,372160,1,1 ,17,923,10333636,24,0 ,17,923,7712196,32,0 ,44,15152,2993604,80,0 ,44,15152,2469316,24,0 ,44,15152,372164,24,0 ,45,15153,4566468,56,0 ,45,15153,5090756,24,0 ,17,923,8760772,24,0 ,17,923,9285060,24,0 ,23,1021,372168,1,1 ,23,1021,372176,1,1 ,23,1021,372184,1,1 ,23,1021,372192,1,1 ,20,22627,19246562,44,0 ,23,1021,372200,1,1 ,23,1021,372208,1,1 ,23,1021,372216,1,1 ,23,1021,372224,1,1 ,20,18800,8760834,12,0 ,17,923,6663684,24,0 ,23,1021,372232,1,1 ,23,1021,372240,1,1 ,23,1021,372248,1,1 ,23,1021,372256,1,1 ,23,1021,372264,1,1 ,23,1021,372272,1,1 ,23,1021,372280,1,1 ,23,1021,372288,1,1 ,20,17219,5090882,88,0 ,45,15153,5615172,40,0 ,17,923,7188036,24,0 ,44,15152,1420868,104,0 ,23,1021,372296,1,1 ,23,1021,372304,1,1 ,23,1021,372312,1,1 ,23,1021,372320,1,1 ,20,18801,8760930,192,0 ,20,24770,24489570,236,0 ,23,1021,372328,1,1 ,23,1021,372336,1,1 ,23,1021,372344,1,1 ,23,1021,372352,1,1 ,20,16839,4042370,12,0 ,17,923,10333828,24,0 ,44,15152,2469508,16,0 ,44,15152,372356,24,0 ,45,15153,5090948,16,0 ,17,923,8236676,32,0 ,17,923,8760964,64,0 ,17,923,9285252,24,0 ,23,1021,372360,1,1 ,23,1021,372368,1,1 ,23,1021,372376,1,1 ,23,1021,372384,1,1 ,23,1021,372392,1,1 ,23,1021,372400,1,1 ,23,1021,372408,1,1 ,23,1021,372416,1,1 ,45,15153,4042436,56,0 ,17,923,7712452,24,0 ,17,923,6663876,24,0 ,44,15152,896708,40,0 ,23,1021,372424,1,1 ,23,1021,372432,1,1 ,23,1021,372440,1,1 ,23,1021,372448,1,1 ,20,16840,4042466,60,0 ,23,1021,372456,1,1 ,23,1021,372464,1,1 ,23,1021,372472,1,1 ,23,1021,372480,1,1 ,45,15153,5091076,24,0 ,17,923,7188228,32,0 ,44,15152,2469636,88,0 ,23,1021,372488,1,1 ,23,1021,372496,1,1 ,23,1021,372504,1,1 ,23,1021,372512,1,1 ,20,24066,22392610,172,0 ,20,26479,29208354,148,0 ,23,1021,372520,1,1 ,23,1021,372528,1,1 ,23,1021,372536,1,1 ,23,1021,372544,1,1 ,20,23449,20819778,216,0 ,20,22628,19246914,44,0 ,17,923,10334020,24,0 ,44,15152,372548,32,0 ,17,923,9285444,64,0 ,17,923,9809732,272,0 ,23,1021,372552,1,1 ,23,1021,372560,1,1 ,23,1021,372568,1,1 ,23,1021,372576,1,1 ,23,1021,372584,1,1 ,23,1021,372592,1,1 ,23,1021,372600,1,1 ,23,1021,372608,1,1 ,20,19031,9285506,48,0 ,17,923,8236932,88,0 ,17,923,7712644,24,0 ,17,923,6664068,24,0 ,45,15153,4566916,24,0 ,45,15153,5615492,40,0 ,23,1021,372616,1,1 ,23,1021,372624,1,1 ,23,1021,372632,1,1 ,23,1021,372640,1,1 ,23,1021,372648,1,1 ,23,1021,372656,1,1 ,23,1021,372664,1,1 ,23,1021,372672,1,1 ,45,15153,5091268,16,0 ,23,1021,372680,1,1 ,23,1021,372688,1,1 ,23,1021,372696,1,1 ,23,1021,372704,1,1 ,20,18110,7188450,424,0 ,23,1021,372712,1,1 ,23,1021,372720,1,1 ,23,1021,372728,1,1 ,23,1021,372736,1,1 ,17,923,10334212,32,0 ,17,923,7188484,40,0 ,44,15152,897028,48,0 ,23,1021,372744,1,1 ,23,1021,372752,1,1 ,23,1021,372760,1,1 ,23,1021,372768,1,1 ,23,1021,372776,1,1 ,23,1021,372784,1,1 ,23,1021,372792,1,1 ,23,1021,372800,1,1 ,45,15153,5091396,24,0 ,17,923,7712836,24,0 ,17,923,6664260,24,0 ,44,15152,2994244,32,0 ,44,15152,372804,72,0 ,45,15153,4567108,24,0 ,23,1021,372808,1,1 ,23,1021,372816,1,1 ,23,1021,372824,1,1 ,23,1021,372832,1,1 ,20,20804,14004322,156,0 ,23,1021,372840,1,1 ,23,1021,372848,1,1 ,23,1021,372856,1,1 ,23,1021,372864,1,1 ,20,19238,9810050,104,0 ,17,923,8761476,64,0 ,45,15153,4042884,152,0 ,23,1021,372872,1,1 ,23,1021,372880,1,1 ,23,1021,372888,1,1 ,23,1021,372896,1,1 ,20,22629,19247266,44,0 ,23,1021,372904,1,1 ,23,1021,372912,1,1 ,23,1021,372920,1,1 ,23,1021,372928,1,1 ,20,16841,4042946,112,0 ,45,15153,5615812,16,0 ,23,1021,372936,1,1 ,23,1021,372944,1,1 ,23,1021,372952,1,1 ,23,1021,372960,1,1 ,23,1021,372968,1,1 ,23,1021,372976,1,1 ,23,1021,372984,1,1 ,23,1021,372992,1,1 ,20,19032,9285890,172,0 ,20,17220,5091586,268,0 ,17,923,10334468,32,0 ,17,923,7713028,56,0 ,17,923,6664452,32,0 ,45,15153,4567300,32,0 ,45,15153,5091588,48,0 ,23,1021,373000,1,1 ,23,1021,373008,1,1 ,23,1021,373016,1,1 ,23,1021,373024,1,1 ,23,1021,373032,1,1 ,23,1021,373040,1,1 ,23,1021,373048,1,1 ,23,1021,373056,1,1 ,17,923,9285956,24,0 ,17,923,7188804,40,0 ,44,15152,2994500,72,0 ,45,15153,5615940,32,0 ,23,1021,373064,1,1 ,23,1021,373072,1,1 ,23,1021,373080,1,1 ,23,1021,373088,1,1 ,20,17074,4567394,2944,0 ,23,1021,373096,1,1 ,23,1021,373104,1,1 ,23,1021,373112,1,1 ,23,1021,373120,1,1 ,44,15152,897412,24,0 ,44,15152,1421700,48,0 ,23,1021,373128,1,1 ,23,1021,373136,1,1 ,23,1021,373144,1,1 ,23,1021,373152,1,1 ,23,1021,373160,1,1 ,23,1021,373168,1,1 ,23,1021,373176,1,1 ,23,1021,373184,1,1 ,44,15152,2470340,56,0 ,23,1021,373192,1,1 ,23,1021,373200,1,1 ,23,1021,373208,1,1 ,23,1021,373216,1,1 ,23,1021,373224,1,1 ,23,1021,373232,1,1 ,23,1021,373240,1,1 ,23,1021,373248,1,1 ,20,22630,19247618,40,0 ,17,923,10334724,32,0 ,17,923,6664708,32,0 ,45,15153,4567556,48,0 ,17,923,9286148,24,0 ,23,1021,373256,1,1 ,23,1021,373264,1,1 ,23,1021,373272,1,1 ,23,1021,373280,1,1 ,20,21416,16101922,628,0 ,23,1021,373288,1,1 ,23,1021,373296,1,1 ,23,1021,373304,1,1 ,23,1021,373312,1,1 ,17,923,8237636,88,0 ,44,15152,897604,32,0 ,45,15153,5616196,40,0 ,23,1021,373320,1,1 ,23,1021,373328,1,1 ,23,1021,373336,1,1 ,23,1021,373344,1,1 ,23,1021,373352,1,1 ,23,1021,373360,1,1 ,23,1021,373368,1,1 ,23,1021,373376,1,1 ,17,923,8761988,56,0 ,17,923,7189124,40,0 ,44,15152,373380,24,0 ,45,15153,5091972,16,0 ,23,1021,373384,1,1 ,23,1021,373392,1,1 ,23,1021,373400,1,1 ,23,1021,373408,1,1 ,20,17644,6140578,224,0 ,23,1021,373416,1,1 ,23,1021,373424,1,1 ,23,1021,373432,1,1 ,23,1021,373440,1,1 ,20,23154,20296386,24,0 ,20,15491,897730,1184,0 ,20,17859,6664898,12,0 ,17,923,9286340,24,0 ,17,923,7713476,32,0 ,23,1021,373448,1,1 ,23,1021,373456,1,1 ,23,1021,373464,1,1 ,23,1021,373472,1,1 ,20,26021,27636450,604,0 ,23,1021,373480,1,1 ,23,1021,373488,1,1 ,23,1021,373496,1,1 ,23,1021,373504,1,1 ,20,22435,18723586,12,0 ,20,25786,27112194,424,0 ,20,17444,5616386,12,0 ,17,923,10334980,24,0 ,17,923,6664964,32,0 ,44,15152,1422084,32,0 ,45,15153,5092100,16,0 ,23,1021,373512,1,1 ,23,1021,373520,1,1 ,23,1021,373528,1,1 ,23,1021,373536,1,1 ,20,17860,6664994,124,0 ,23,1021,373544,1,1 ,23,1021,373552,1,1 ,23,1021,373560,1,1 ,23,1021,373568,1,1 ,20,22631,19247938,44,0 ,20,25611,26587970,196,0 ,44,15152,897860,40,0 ,44,15152,373572,128,0 ,23,1021,373576,1,1 ,23,1021,373584,1,1 ,23,1021,373592,1,1 ,23,1021,373600,1,1 ,20,22436,18723682,1924,0 ,20,17445,5616482,468,0 ,23,1021,373608,1,1 ,23,1021,373616,1,1 ,23,1021,373624,1,1 ,23,1021,373632,1,1 ,20,23155,20296578,200,0 ,17,923,9286532,24,0 ,44,15152,2995076,72,0 ,44,15152,2470788,72,0 ,45,15153,4567940,40,0 ,45,15153,5092228,16,0 ,45,15153,5616516,72,0 ,23,1021,373640,1,1 ,23,1021,373648,1,1 ,23,1021,373656,1,1 ,23,1021,373664,1,1 ,23,1021,373672,1,1 ,23,1021,373680,1,1 ,23,1021,373688,1,1 ,23,1021,373696,1,1 ,20,21892,17150914,96,0 ,20,26480,29209538,128,0 ,20,19239,9810882,48,0 ,17,923,10335172,24,0 ,17,923,7713732,48,0 ,17,923,7189444,40,0 ,23,1021,373704,1,1 ,23,1021,373712,1,1 ,23,1021,373720,1,1 ,23,1021,373728,1,1 ,20,22150,18199522,200,0 ,23,1021,373736,1,1 ,23,1021,373744,1,1 ,23,1021,373752,1,1 ,23,1021,373760,1,1 ,45,15153,5092356,16,0 ,17,923,6665220,32,0 ,44,15152,1422340,48,0 ,23,1021,373768,1,1 ,23,1021,373776,1,1 ,23,1021,373784,1,1 ,23,1021,373792,1,1 ,23,1021,373800,1,1 ,23,1021,373808,1,1 ,23,1021,373816,1,1 ,23,1021,373824,1,1 ,20,16842,4043842,112,0 ,17,923,9286724,32,0 ,17,923,8762436,16,0 ,23,1021,373832,1,1 ,23,1021,373840,1,1 ,23,1021,373848,1,1 ,23,1021,373856,1,1 ,20,20348,12956770,80,0 ,20,18802,8762466,80,0 ,23,1021,373864,1,1 ,23,1021,373872,1,1 ,23,1021,373880,1,1 ,23,1021,373888,1,1 ,20,24067,22393986,92,0 ,20,25263,25539714,24,0 ,20,25055,25015426,392,0 ,17,923,10335364,24,0 ,44,15152,898180,72,0 ,45,15153,5092484,16,0 ,23,1021,373896,1,1 ,23,1021,373904,1,1 ,23,1021,373912,1,1 ,23,1021,373920,1,1 ,20,22632,19248290,420,0 ,23,1021,373928,1,1 ,23,1021,373936,1,1 ,23,1021,373944,1,1 ,23,1021,373952,1,1 ,17,923,8762564,32,0 ,45,15153,4568260,200,0 ,23,1021,373960,1,1 ,23,1021,373968,1,1 ,23,1021,373976,1,1 ,23,1021,373984,1,1 ,23,1021,373992,1,1 ,23,1021,374000,1,1 ,23,1021,374008,1,1 ,23,1021,374016,1,1 ,17,923,8238340,48,0 ,17,923,7189764,40,0 ,17,923,6665476,32,0 ,44,15152,3519748,136,0 ,45,15153,5092612,16,0 ,23,1021,374024,1,1 ,23,1021,374032,1,1 ,23,1021,374040,1,1 ,23,1021,374048,1,1 ,23,1021,374056,1,1 ,23,1021,374064,1,1 ,23,1021,374072,1,1 ,23,1021,374080,1,1 ,20,20805,14005570,148,0 ,20,25264,25539906,24,0 ,20,19240,9811266,276,0 ,17,923,10335556,40,0 ,17,923,7714116,40,0 ,45,15153,4044100,24,0 ,17,923,9286980,32,0 ,23,1021,374088,1,1 ,23,1021,374096,1,1 ,23,1021,374104,1,1 ,23,1021,374112,1,1 ,23,1021,374120,1,1 ,23,1021,374128,1,1 ,23,1021,374136,1,1 ,23,1021,374144,1,1 ,45,15153,5092740,16,0 ,44,15152,1422724,32,0 ,23,1021,374152,1,1 ,23,1021,374160,1,1 ,23,1021,374168,1,1 ,23,1021,374176,1,1 ,20,16522,3519906,108,0 ,23,1021,374184,1,1 ,23,1021,374192,1,1 ,23,1021,374200,1,1 ,23,1021,374208,1,1 ,20,24771,24491458,24,0 ,17,923,8762820,32,0 ,44,15152,2995652,48,0 ,44,15152,2471364,32,0 ,45,15153,5617092,24,0 ,23,1021,374216,1,1 ,23,1021,374224,1,1 ,23,1021,374232,1,1 ,23,1021,374240,1,1 ,23,1021,374248,1,1 ,23,1021,374256,1,1 ,23,1021,374264,1,1 ,23,1021,374272,1,1 ,20,23450,20821506,660,0 ,20,25265,25540098,356,0 ,20,15934,1947138,328,0 ,45,15153,5092868,16,0 ,17,923,6665732,24,0 ,45,15153,4044292,40,0 ,23,1021,374280,1,1 ,23,1021,374288,1,1 ,23,1021,374296,1,1 ,23,1021,374304,1,1 ,20,18319,7714338,12,0 ,23,1021,374312,1,1 ,23,1021,374320,1,1 ,23,1021,374328,1,1 ,23,1021,374336,1,1 ,17,923,9287236,24,0 ,17,923,7190084,40,0 ,23,1021,374344,1,1 ,23,1021,374352,1,1 ,23,1021,374360,1,1 ,23,1021,374368,1,1 ,20,19033,9287266,204,0 ,20,15734,1422946,172,0 ,23,1021,374376,1,1 ,23,1021,374384,1,1 ,23,1021,374392,1,1 ,23,1021,374400,1,1 ,20,18320,7714434,12,0 ,20,24772,24491650,24,0 ,17,923,10335876,48,0 ,17,923,7714436,32,0 ,44,15152,1422980,24,0 ,45,15153,5092996,16,0 ,45,15153,5617284,16,0 ,17,923,8238724,56,0 ,23,1021,374408,1,1 ,23,1021,374416,1,1 ,23,1021,374424,1,1 ,23,1021,374432,1,1 ,23,1021,374440,1,1 ,23,1021,374448,1,1 ,23,1021,374456,1,1 ,23,1021,374464,1,1 ,20,21893,17151682,592,0 ,17,923,8763076,24,0 ,17,923,6665924,32,0 ,44,15152,2471620,32,0 ,44,15152,898756,56,0 ,23,1021,374472,1,1 ,23,1021,374480,1,1 ,23,1021,374488,1,1 ,23,1021,374496,1,1 ,20,20349,12957410,12,0 ,20,18321,7714530,128,0 ,20,18803,8763106,312,0 ,23,1021,374504,1,1 ,23,1021,374512,1,1 ,23,1021,374520,1,1 ,23,1021,374528,1,1 ,20,17861,6665986,216,0 ,17,923,9287428,32,0 ,45,15153,5093124,24,0 ,45,15153,5617412,16,0 ,23,1021,374536,1,1 ,23,1021,374544,1,1 ,23,1021,374552,1,1 ,23,1021,374560,1,1 ,23,1021,374568,1,1 ,23,1021,374576,1,1 ,23,1021,374584,1,1 ,23,1021,374592,1,1 ,20,22862,19773250,76,0 ,20,24773,24491842,380,0 ,20,20350,12957506,84,0 ,20,21062,15578946,876,0 ,45,15153,4044612,256,0 ,44,15152,2996036,48,0 ,44,15152,1423172,24,0 ,44,15152,374596,168,0 ,23,1021,374600,1,1 ,23,1021,374608,1,1 ,23,1021,374616,1,1 ,23,1021,374624,1,1 ,20,24068,22394722,292,0 ,23,1021,374632,1,1 ,23,1021,374640,1,1 ,23,1021,374648,1,1 ,23,1021,374656,1,1 ,17,923,8763268,72,0 ,17,923,7714692,48,0 ,17,923,7190404,40,0 ,45,15153,5617540,24,0 ,23,1021,374664,1,1 ,23,1021,374672,1,1 ,23,1021,374680,1,1 ,23,1021,374688,1,1 ,23,1021,374696,1,1 ,23,1021,374704,1,1 ,23,1021,374712,1,1 ,23,1021,374720,1,1 ,20,16843,4044738,196,0 ,20,26481,29210562,128,0 ,17,923,9811908,72,0 ,17,923,6666180,32,0 ,44,15152,2471876,16,0 ,45,15153,5093316,16,0 ,23,1021,374728,1,1 ,23,1021,374736,1,1 ,23,1021,374744,1,1 ,23,1021,374752,1,1 ,23,1021,374760,1,1 ,23,1021,374768,1,1 ,23,1021,374776,1,1 ,23,1021,374784,1,1 ,17,923,10336260,24,0 ,44,15152,1423364,24,0 ,17,923,9287684,32,0 ,23,1021,374792,1,1 ,23,1021,374800,1,1 ,23,1021,374808,1,1 ,23,1021,374816,1,1 ,23,1021,374824,1,1 ,23,1021,374832,1,1 ,23,1021,374840,1,1 ,23,1021,374848,1,1 ,17,923,8239172,40,0 ,44,15152,2472004,16,0 ,45,15153,5093444,16,0 ,45,15153,5617732,16,0 ,23,1021,374856,1,1 ,23,1021,374864,1,1 ,23,1021,374872,1,1 ,23,1021,374880,1,1 ,23,1021,374888,1,1 ,23,1021,374896,1,1 ,23,1021,374904,1,1 ,23,1021,374912,1,1 ,44,15152,899204,24,0 ,44,15152,1947780,48,0 ,23,1021,374920,1,1 ,23,1021,374928,1,1 ,23,1021,374936,1,1 ,23,1021,374944,1,1 ,23,1021,374952,1,1 ,23,1021,374960,1,1 ,23,1021,374968,1,1 ,23,1021,374976,1,1 ,17,923,10336452,24,0 ,17,923,7190724,32,0 ,17,923,6666436,24,0 ,44,15152,2996420,48,0 ,44,15152,2472132,24,0 ,44,15152,1423556,24,0 ,45,15153,5093572,16,0 ,45,15153,5617860,24,0 ,23,1021,374984,1,1 ,23,1021,374992,1,1 ,23,1021,375000,1,1 ,23,1021,375008,1,1 ,23,1021,375016,1,1 ,23,1021,375024,1,1 ,23,1021,375032,1,1 ,23,1021,375040,1,1 ,20,19552,10336514,140,0 ,20,16523,3520770,12,0 ,17,923,9287940,24,0 ,17,923,7715076,48,0 ,23,1021,375048,1,1 ,23,1021,375056,1,1 ,23,1021,375064,1,1 ,23,1021,375072,1,1 ,23,1021,375080,1,1 ,23,1021,375088,1,1 ,23,1021,375096,1,1 ,23,1021,375104,1,1 ,45,15153,5093700,24,0 ,44,15152,899396,104,0 ,44,15152,3520836,16,0 ,23,1021,375112,1,1 ,23,1021,375120,1,1 ,23,1021,375128,1,1 ,23,1021,375136,1,1 ,20,17221,5093730,128,0 ,20,25612,26589538,196,0 ,20,16524,3520866,12,0 ,23,1021,375144,1,1 ,23,1021,375152,1,1 ,23,1021,375160,1,1 ,23,1021,375168,1,1 ,17,923,10336644,24,0 ,17,923,6666628,48,0 ,44,15152,2472324,24,0 ,44,15152,1423748,48,0 ,45,15153,5618052,24,0 ,17,923,8239492,40,0 ,23,1021,375176,1,1 ,23,1021,375184,1,1 ,23,1021,375192,1,1 ,23,1021,375200,1,1 ,20,22863,19773858,260,0 ,20,17645,6142370,540,0 ,23,1021,375208,1,1 ,23,1021,375216,1,1 ,23,1021,375224,1,1 ,23,1021,375232,1,1 ,20,23156,20298178,24,0 ,20,16525,3520962,220,0 ,17,923,9288132,56,0 ,17,923,7190980,32,0 ,44,15152,3520964,536,0 ,17,923,8763844,72,0 ,23,1021,375240,1,1 ,23,1021,375248,1,1 ,23,1021,375256,1,1 ,23,1021,375264,1,1 ,20,20806,14006754,212,0 ,20,20351,12958178,440,0 ,23,1021,375272,1,1 ,23,1021,375280,1,1 ,23,1021,375288,1,1 ,23,1021,375296,1,1 ,17,923,9812484,48,0 ,44,15152,1948164,400,0 ,45,15153,5093892,24,0 ,23,1021,375304,1,1 ,23,1021,375312,1,1 ,23,1021,375320,1,1 ,23,1021,375328,1,1 ,20,22151,18201122,80,0 ,23,1021,375336,1,1 ,23,1021,375344,1,1 ,23,1021,375352,1,1 ,23,1021,375360,1,1 ,17,923,10336836,24,0 ,44,15152,2996804,64,0 ,44,15152,2472516,16,0 ,45,15153,5618244,24,0 ,23,1021,375368,1,1 ,23,1021,375376,1,1 ,23,1021,375384,1,1 ,23,1021,375392,1,1 ,23,1021,375400,1,1 ,23,1021,375408,1,1 ,23,1021,375416,1,1 ,23,1021,375424,1,1 ,20,23157,20298370,100,0 ,17,923,7715460,24,0 ,23,1021,375432,1,1 ,23,1021,375440,1,1 ,23,1021,375448,1,1 ,23,1021,375456,1,1 ,23,1021,375464,1,1 ,23,1021,375472,1,1 ,23,1021,375480,1,1 ,23,1021,375488,1,1 ,17,923,8239812,40,0 ,17,923,7191236,24,0 ,44,15152,2472644,24,0 ,45,15153,5094084,24,0 ,23,1021,375496,1,1 ,23,1021,375504,1,1 ,23,1021,375512,1,1 ,23,1021,375520,1,1 ,20,24607,23968482,140,0 ,20,16207,2996962,12,0 ,20,18322,7715554,896,0 ,23,1021,375528,1,1 ,23,1021,375536,1,1 ,23,1021,375544,1,1 ,23,1021,375552,1,1 ,20,24277,22919938,24,0 ,17,923,10337028,32,0 ,17,923,6667012,48,0 ,44,15152,1424132,32,0 ,45,15153,4569860,56,0 ,45,15153,5618436,16,0 ,23,1021,375560,1,1 ,23,1021,375568,1,1 ,23,1021,375576,1,1 ,23,1021,375584,1,1 ,23,1021,375592,1,1 ,23,1021,375600,1,1 ,23,1021,375608,1,1 ,23,1021,375616,1,1 ,20,16208,2997058,1184,0 ,17,923,7715652,64,0 ,23,1021,375624,1,1 ,23,1021,375632,1,1 ,23,1021,375640,1,1 ,23,1021,375648,1,1 ,23,1021,375656,1,1 ,23,1021,375664,1,1 ,23,1021,375672,1,1 ,23,1021,375680,1,1 ,17,923,9812868,96,0 ,17,923,7191428,48,0 ,44,15152,2472836,32,0 ,45,15153,5094276,16,0 ,45,15153,5618564,24,0 ,17,923,9288580,24,0 ,23,1021,375688,1,1 ,23,1021,375696,1,1 ,23,1021,375704,1,1 ,23,1021,375712,1,1 ,23,1021,375720,1,1 ,23,1021,375728,1,1 ,23,1021,375736,1,1 ,23,1021,375744,1,1 ,20,24278,22920130,164,0 ,20,26482,29211586,192,0 ,20,15735,1424322,12,0 ,23,1021,375752,1,1 ,23,1021,375760,1,1 ,23,1021,375768,1,1 ,23,1021,375776,1,1 ,23,1021,375784,1,1 ,23,1021,375792,1,1 ,23,1021,375800,1,1 ,23,1021,375808,1,1 ,17,923,10337284,40,0 ,44,15152,1424388,48,0 ,45,15153,5094404,16,0 ,17,923,8240132,48,0 ,17,923,8764420,40,0 ,23,1021,375816,1,1 ,23,1021,375824,1,1 ,23,1021,375832,1,1 ,23,1021,375840,1,1 ,20,15736,1424418,60,0 ,23,1021,375848,1,1 ,23,1021,375856,1,1 ,23,1021,375864,1,1 ,23,1021,375872,1,1 ,17,923,9288772,24,0 ,44,15152,2997316,128,0 ,45,15153,5618756,16,0 ,23,1021,375880,1,1 ,23,1021,375888,1,1 ,23,1021,375896,1,1 ,23,1021,375904,1,1 ,23,1021,375912,1,1 ,23,1021,375920,1,1 ,23,1021,375928,1,1 ,23,1021,375936,1,1 ,45,15153,5094532,24,0 ,17,923,6667396,48,0 ,44,15152,2473092,32,0 ,44,15152,375940,24,0 ,44,15152,900228,24,0 ,23,1021,375944,1,1 ,23,1021,375952,1,1 ,23,1021,375960,1,1 ,23,1021,375968,1,1 ,20,22152,18201762,204,0 ,20,20094,11386018,956,0 ,23,1021,375976,1,1 ,23,1021,375984,1,1 ,23,1021,375992,1,1 ,23,1021,376000,1,1 ,20,19034,9288898,352,0 ,45,15153,5618884,24,0 ,45,15153,4570308,32,0 ,23,1021,376008,1,1 ,23,1021,376016,1,1 ,23,1021,376024,1,1 ,23,1021,376032,1,1 ,23,1021,376040,1,1 ,23,1021,376048,1,1 ,23,1021,376056,1,1 ,23,1021,376064,1,1 ,17,923,9288964,56,0 ,17,923,7191812,56,0 ,23,1021,376072,1,1 ,23,1021,376080,1,1 ,23,1021,376088,1,1 ,23,1021,376096,1,1 ,20,18111,7191842,168,0 ,23,1021,376104,1,1 ,23,1021,376112,1,1 ,23,1021,376120,1,1 ,23,1021,376128,1,1 ,17,923,10337604,24,0 ,17,923,7716164,32,0 ,44,15152,376132,40,0 ,44,15152,900420,72,0 ,45,15153,5094724,24,0 ,17,923,8764740,48,0 ,23,1021,376136,1,1 ,23,1021,376144,1,1 ,23,1021,376152,1,1 ,23,1021,376160,1,1 ,20,19553,10337634,12,0 ,20,17222,5094754,140,0 ,23,1021,376168,1,1 ,23,1021,376176,1,1 ,23,1021,376184,1,1 ,23,1021,376192,1,1 ,17,923,8240516,40,0 ,44,15152,2473348,24,0 ,44,15152,1424772,32,0 ,45,15153,5619076,24,0 ,23,1021,376200,1,1 ,23,1021,376208,1,1 ,23,1021,376216,1,1 ,23,1021,376224,1,1 ,20,23158,20299170,116,0 ,23,1021,376232,1,1 ,23,1021,376240,1,1 ,23,1021,376248,1,1 ,23,1021,376256,1,1 ,20,19554,10337730,108,0 ,20,17862,6667714,52,0 ,45,15153,4570564,40,0 ,23,1021,376264,1,1 ,23,1021,376272,1,1 ,23,1021,376280,1,1 ,23,1021,376288,1,1 ,20,19241,9813474,76,0 ,20,16844,4046306,204,0 ,23,1021,376296,1,1 ,23,1021,376304,1,1 ,23,1021,376312,1,1 ,23,1021,376320,1,1 ,20,15737,1424898,52,0 ,17,923,10337796,32,0 ,17,923,6667780,48,0 ,45,15153,5094916,24,0 ,23,1021,376328,1,1 ,23,1021,376336,1,1 ,23,1021,376344,1,1 ,23,1021,376352,1,1 ,23,1021,376360,1,1 ,23,1021,376368,1,1 ,23,1021,376376,1,1 ,23,1021,376384,1,1 ,45,15153,5619268,104,0 ,17,923,7716420,32,0 ,44,15152,2473540,32,0 ,23,1021,376392,1,1 ,23,1021,376400,1,1 ,23,1021,376408,1,1 ,23,1021,376416,1,1 ,23,1021,376424,1,1 ,23,1021,376432,1,1 ,23,1021,376440,1,1 ,23,1021,376448,1,1 ,17,923,9813636,104,0 ,44,15152,1425028,24,0 ,44,15152,376452,16,0 ,23,1021,376456,1,1 ,23,1021,376464,1,1 ,23,1021,376472,1,1 ,23,1021,376480,1,1 ,20,20598,13483682,256,0 ,23,1021,376488,1,1 ,23,1021,376496,1,1 ,23,1021,376504,1,1 ,23,1021,376512,1,1 ,17,923,9289412,16,0 ,17,923,7192260,32,0 ,45,15153,5095108,24,0 ,17,923,8240836,40,0 ,17,923,8765124,40,0 ,23,1021,376520,1,1 ,23,1021,376528,1,1 ,23,1021,376536,1,1 ,23,1021,376544,1,1 ,23,1021,376552,1,1 ,23,1021,376560,1,1 ,23,1021,376568,1,1 ,23,1021,376576,1,1 ,17,923,10338052,32,0 ,44,15152,376580,168,0 ,45,15153,4570884,16,0 ,23,1021,376584,1,1 ,23,1021,376592,1,1 ,23,1021,376600,1,1 ,23,1021,376608,1,1 ,20,19820,10862370,380,0 ,23,1021,376616,1,1 ,23,1021,376624,1,1 ,23,1021,376632,1,1 ,23,1021,376640,1,1 ,20,24608,23969602,140,0 ,17,923,9289540,32,0 ,17,923,7716676,24,0 ,44,15152,2473796,32,0 ,44,15152,1425220,24,0 ,45,15153,4046660,208,0 ,23,1021,376648,1,1 ,23,1021,376656,1,1 ,23,1021,376664,1,1 ,23,1021,376672,1,1 ,20,17863,6668130,608,0 ,23,1021,376680,1,1 ,23,1021,376688,1,1 ,23,1021,376696,1,1 ,23,1021,376704,1,1 ,20,25613,26591106,316,0 ,45,15153,5095300,16,0 ,17,923,6668164,40,0 ,44,15152,900996,24,0 ,45,15153,4571012,16,0 ,23,1021,376712,1,1 ,23,1021,376720,1,1 ,23,1021,376728,1,1 ,23,1021,376736,1,1 ,20,15738,1425314,120,0 ,23,1021,376744,1,1 ,23,1021,376752,1,1 ,23,1021,376760,1,1 ,23,1021,376768,1,1 ,17,923,7192516,24,0 ,23,1021,376776,1,1 ,23,1021,376784,1,1 ,23,1021,376792,1,1 ,23,1021,376800,1,1 ,23,1021,376808,1,1 ,23,1021,376816,1,1 ,23,1021,376824,1,1 ,23,1021,376832,1,1 ,17,923,10338308,32,0 ,17,923,7716868,24,0 ,44,15152,1425412,32,0 ,45,15153,4571140,24,0 ,45,15153,5095428,16,0 ,17,923,8241156,48,0 ,17,923,8765444,40,0 ,23,1021,376840,1,1 ,23,1021,376848,1,1 ,23,1021,376856,1,1 ,23,1021,376864,1,1 ,23,1021,376872,1,1 ,23,1021,376880,1,1 ,23,1021,376888,1,1 ,23,1021,376896,1,1 ,20,19242,9814082,104,0 ,20,26205,28164162,880,0 ,20,25787,27115586,292,0 ,20,15935,1949762,332,0 ,17,923,9289796,24,0 ,44,15152,2998340,24,0 ,44,15152,2474052,32,0 ,44,15152,901188,200,0 ,23,1021,376904,1,1 ,23,1021,376912,1,1 ,23,1021,376920,1,1 ,23,1021,376928,1,1 ,23,1021,376936,1,1 ,23,1021,376944,1,1 ,23,1021,376952,1,1 ,23,1021,376960,1,1 ,20,24069,22397058,68,0 ,20,20807,14008450,96,0 ,45,15153,5095556,32,0 ,17,923,7192708,32,0 ,23,1021,376968,1,1 ,23,1021,376976,1,1 ,23,1021,376984,1,1 ,23,1021,376992,1,1 ,20,18804,8765602,344,0 ,20,16526,3522722,140,0 ,23,1021,377000,1,1 ,23,1021,377008,1,1 ,23,1021,377016,1,1 ,23,1021,377024,1,1 ,20,25056,25018562,292,0 ,45,15153,4571332,32,0 ,17,923,7717060,32,0 ,17,923,6668484,56,0 ,23,1021,377032,1,1 ,23,1021,377040,1,1 ,23,1021,377048,1,1 ,23,1021,377056,1,1 ,20,24279,22921442,156,0 ,23,1021,377064,1,1 ,23,1021,377072,1,1 ,23,1021,377080,1,1 ,23,1021,377088,1,1 ,17,923,10338564,24,0 ,44,15152,2998532,24,0 ,44,15152,1425668,24,0 ,17,923,9289988,32,0 ,23,1021,377096,1,1 ,23,1021,377104,1,1 ,23,1021,377112,1,1 ,23,1021,377120,1,1 ,20,19555,10338594,236,0 ,20,25266,25542946,132,0 ,23,1021,377128,1,1 ,23,1021,377136,1,1 ,23,1021,377144,1,1 ,23,1021,377152,1,1 ,20,23159,20300098,488,0 ,17,923,8765764,24,0 ,44,15152,2474308,32,0 ,23,1021,377160,1,1 ,23,1021,377168,1,1 ,23,1021,377176,1,1 ,23,1021,377184,1,1 ,23,1021,377192,1,1 ,23,1021,377200,1,1 ,23,1021,377208,1,1 ,23,1021,377216,1,1 ,17,923,8241540,40,0 ,17,923,7192964,24,0 ,45,15153,5095812,16,0 ,45,15153,5620100,40,0 ,23,1021,377224,1,1 ,23,1021,377232,1,1 ,23,1021,377240,1,1 ,23,1021,377248,1,1 ,23,1021,377256,1,1 ,23,1021,377264,1,1 ,23,1021,377272,1,1 ,23,1021,377280,1,1 ,20,22864,19775938,12,0 ,20,26483,29213122,52,0 ,20,17223,5095874,268,0 ,20,22633,19251650,56,0 ,17,923,10338756,40,0 ,17,923,7717316,40,0 ,44,15152,2998724,80,0 ,44,15152,1425860,64,0 ,45,15153,4571588,32,0 ,17,923,9814468,272,0 ,23,1021,377288,1,1 ,23,1021,377296,1,1 ,23,1021,377304,1,1 ,23,1021,377312,1,1 ,23,1021,377320,1,1 ,23,1021,377328,1,1 ,23,1021,377336,1,1 ,23,1021,377344,1,1 ,20,17446,5620226,176,0 ,17,923,9290244,40,0 ,45,15153,5095940,16,0 ,17,923,8765956,64,0 ,23,1021,377352,1,1 ,23,1021,377360,1,1 ,23,1021,377368,1,1 ,23,1021,377376,1,1 ,20,23631,21348898,3164,0 ,20,22865,19776034,244,0 ,23,1021,377384,1,1 ,23,1021,377392,1,1 ,23,1021,377400,1,1 ,23,1021,377408,1,1 ,20,16113,2474562,172,0 ,44,15152,2474564,24,0 ,17,923,7193156,40,0 ,23,1021,377416,1,1 ,23,1021,377424,1,1 ,23,1021,377432,1,1 ,23,1021,377440,1,1 ,20,18112,7193186,2180,0 ,23,1021,377448,1,1 ,23,1021,377456,1,1 ,23,1021,377464,1,1 ,23,1021,377472,1,1 ,45,15153,5096068,16,0 ,17,923,6668932,56,0 ,23,1021,377480,1,1 ,23,1021,377488,1,1 ,23,1021,377496,1,1 ,23,1021,377504,1,1 ,20,24070,22397602,132,0 ,23,1021,377512,1,1 ,23,1021,377520,1,1 ,23,1021,377528,1,1 ,23,1021,377536,1,1 ,17,923,8241860,48,0 ,45,15153,4571844,24,0 ,45,15153,5620420,24,0 ,23,1021,377544,1,1 ,23,1021,377552,1,1 ,23,1021,377560,1,1 ,23,1021,377568,1,1 ,23,1021,377576,1,1 ,23,1021,377584,1,1 ,23,1021,377592,1,1 ,23,1021,377600,1,1 ,20,22153,18203394,288,0 ,17,923,10339076,24,0 ,17,923,7717636,16,0 ,44,15152,2474756,24,0 ,45,15153,5096196,24,0 ,23,1021,377608,1,1 ,23,1021,377616,1,1 ,23,1021,377624,1,1 ,23,1021,377632,1,1 ,20,24774,24494882,364,0 ,23,1021,377640,1,1 ,23,1021,377648,1,1 ,23,1021,377656,1,1 ,23,1021,377664,1,1 ,17,923,9290564,24,0 ,23,1021,377672,1,1 ,23,1021,377680,1,1 ,23,1021,377688,1,1 ,23,1021,377696,1,1 ,20,15739,1426274,120,0 ,20,26484,29213538,416,0 ,23,1021,377704,1,1 ,23,1021,377712,1,1 ,23,1021,377720,1,1 ,23,1021,377728,1,1 ,20,22634,19252098,128,0 ,20,19243,9814914,80,0 ,20,20808,14009218,516,0 ,45,15153,5620612,32,0 ,17,923,7717764,24,0 ,17,923,7193476,40,0 ,45,15153,4572036,112,0 ,23,1021,377736,1,1 ,23,1021,377744,1,1 ,23,1021,377752,1,1 ,23,1021,377760,1,1 ,20,24609,23970722,12,0 ,23,1021,377768,1,1 ,23,1021,377776,1,1 ,23,1021,377784,1,1 ,23,1021,377792,1,1 ,17,923,10339268,32,0 ,44,15152,2474948,32,0 ,44,15152,1426372,152,0 ,45,15153,5096388,24,0 ,23,1021,377800,1,1 ,23,1021,377808,1,1 ,23,1021,377816,1,1 ,23,1021,377824,1,1 ,23,1021,377832,1,1 ,23,1021,377840,1,1 ,23,1021,377848,1,1 ,23,1021,377856,1,1 ,20,24610,23970818,276,0 ,17,923,9290756,32,0 ,17,923,8766468,56,0 ,23,1021,377864,1,1 ,23,1021,377872,1,1 ,23,1021,377880,1,1 ,23,1021,377888,1,1 ,23,1021,377896,1,1 ,23,1021,377904,1,1 ,23,1021,377912,1,1 ,23,1021,377920,1,1 ,20,16845,4047938,112,0 ,17,923,8242244,40,0 ,17,923,7717956,24,0 ,17,923,6669380,24,0 ,44,15152,2999364,24,0 ,44,15152,377924,80,0 ,23,1021,377928,1,1 ,23,1021,377936,1,1 ,23,1021,377944,1,1 ,23,1021,377952,1,1 ,23,1021,377960,1,1 ,23,1021,377968,1,1 ,23,1021,377976,1,1 ,23,1021,377984,1,1 ,45,15153,5620868,32,0 ,45,15153,5096580,16,0 ,23,1021,377992,1,1 ,23,1021,378000,1,1 ,23,1021,378008,1,1 ,23,1021,378016,1,1 ,23,1021,378024,1,1 ,23,1021,378032,1,1 ,23,1021,378040,1,1 ,23,1021,378048,1,1 ,17,923,10339524,24,0 ,17,923,7193796,32,0 ,44,15152,2475204,56,0 ,23,1021,378056,1,1 ,23,1021,378064,1,1 ,23,1021,378072,1,1 ,23,1021,378080,1,1 ,23,1021,378088,1,1 ,23,1021,378096,1,1 ,23,1021,378104,1,1 ,23,1021,378112,1,1 ,20,16527,3523842,112,0 ,17,923,9291012,32,0 ,17,923,7718148,40,0 ,17,923,6669572,24,0 ,44,15152,2999556,48,0 ,45,15153,5096708,16,0 ,23,1021,378120,1,1 ,23,1021,378128,1,1 ,23,1021,378136,1,1 ,23,1021,378144,1,1 ,23,1021,378152,1,1 ,23,1021,378160,1,1 ,23,1021,378168,1,1 ,23,1021,378176,1,1 ,20,25267,25544002,332,0 ,23,1021,378184,1,1 ,23,1021,378192,1,1 ,23,1021,378200,1,1 ,23,1021,378208,1,1 ,23,1021,378216,1,1 ,23,1021,378224,1,1 ,23,1021,378232,1,1 ,23,1021,378240,1,1 ,17,923,10339716,24,0 ,45,15153,5096836,16,0 ,45,15153,5621124,24,0 ,17,923,8242564,40,0 ,23,1021,378248,1,1 ,23,1021,378256,1,1 ,23,1021,378264,1,1 ,23,1021,378272,1,1 ,23,1021,378280,1,1 ,23,1021,378288,1,1 ,23,1021,378296,1,1 ,23,1021,378304,1,1 ,20,24280,22922690,112,0 ,20,26022,27641282,360,0 ,20,21417,16106946,276,0 ,17,923,8766916,32,0 ,17,923,7194052,24,0 ,17,923,6669764,40,0 ,45,15153,4048324,24,0 ,23,1021,378312,1,1 ,23,1021,378320,1,1 ,23,1021,378328,1,1 ,23,1021,378336,1,1 ,23,1021,378344,1,1 ,23,1021,378352,1,1 ,23,1021,378360,1,1 ,23,1021,378368,1,1 ,20,19244,9815554,104,0 ,17,923,9291268,40,0 ,45,15153,5096964,16,0 ,23,1021,378376,1,1 ,23,1021,378384,1,1 ,23,1021,378392,1,1 ,23,1021,378400,1,1 ,23,1021,378408,1,1 ,23,1021,378416,1,1 ,23,1021,378424,1,1 ,23,1021,378432,1,1 ,17,923,10339908,24,0 ,17,923,7718468,40,0 ,45,15153,5621316,32,0 ,23,1021,378440,1,1 ,23,1021,378448,1,1 ,23,1021,378456,1,1 ,23,1021,378464,1,1 ,23,1021,378472,1,1 ,23,1021,378480,1,1 ,23,1021,378488,1,1 ,23,1021,378496,1,1 ,45,15153,5097092,24,0 ,17,923,7194244,32,0 ,44,15152,2999940,24,0 ,44,15152,2475652,56,0 ,44,15152,1951364,424,0 ,44,15152,902788,80,0 ,45,15153,4048516,136,0 ,23,1021,378504,1,1 ,23,1021,378512,1,1 ,23,1021,378520,1,1 ,23,1021,378528,1,1 ,20,20599,13485730,80,0 ,23,1021,378536,1,1 ,23,1021,378544,1,1 ,23,1021,378552,1,1 ,23,1021,378560,1,1 ,20,24071,22398658,176,0 ,17,923,8767172,40,0 ,44,15152,378564,24,0 ,17,923,8242884,48,0 ,23,1021,378568,1,1 ,23,1021,378576,1,1 ,23,1021,378584,1,1 ,23,1021,378592,1,1 ,23,1021,378600,1,1 ,23,1021,378608,1,1 ,23,1021,378616,1,1 ,23,1021,378624,1,1 ,17,923,10340100,32,0 ,17,923,6670084,32,0 ,45,15153,4572932,64,0 ,23,1021,378632,1,1 ,23,1021,378640,1,1 ,23,1021,378648,1,1 ,23,1021,378656,1,1 ,20,15740,1427234,264,0 ,23,1021,378664,1,1 ,23,1021,378672,1,1 ,23,1021,378680,1,1 ,23,1021,378688,1,1 ,17,923,9291588,24,0 ,44,15152,3000132,40,0 ,45,15153,5097284,24,0 ,45,15153,5621572,16,0 ,23,1021,378696,1,1 ,23,1021,378704,1,1 ,23,1021,378712,1,1 ,23,1021,378720,1,1 ,23,1021,378728,1,1 ,23,1021,378736,1,1 ,23,1021,378744,1,1 ,23,1021,378752,1,1 ,20,22635,19253122,172,0 ,20,17447,5621634,56,0 ,44,15152,378756,32,0 ,17,923,7718788,32,0 ,17,923,7194500,32,0 ,23,1021,378760,1,1 ,23,1021,378768,1,1 ,23,1021,378776,1,1 ,23,1021,378784,1,1 ,20,20352,12961698,160,0 ,20,16114,2475938,100,0 ,23,1021,378792,1,1 ,23,1021,378800,1,1 ,23,1021,378808,1,1 ,23,1021,378816,1,1 ,20,19035,9291714,140,0 ,20,16846,4048834,328,0 ,45,15153,5621700,32,0 ,23,1021,378824,1,1 ,23,1021,378832,1,1 ,23,1021,378840,1,1 ,23,1021,378848,1,1 ,20,21648,16631778,152,0 ,23,1021,378856,1,1 ,23,1021,378864,1,1 ,23,1021,378872,1,1 ,23,1021,378880,1,1 ,17,923,10340356,24,0 ,17,923,6670340,32,0 ,45,15153,5097476,16,0 ,17,923,8767492,32,0 ,17,923,9291780,56,0 ,23,1021,378888,1,1 ,23,1021,378896,1,1 ,23,1021,378904,1,1 ,23,1021,378912,1,1 ,23,1021,378920,1,1 ,23,1021,378928,1,1 ,23,1021,378936,1,1 ,23,1021,378944,1,1 ,17,923,8243268,40,0 ,44,15152,2476100,72,0 ,23,1021,378952,1,1 ,23,1021,378960,1,1 ,23,1021,378968,1,1 ,23,1021,378976,1,1 ,23,1021,378984,1,1 ,23,1021,378992,1,1 ,23,1021,379000,1,1 ,23,1021,379008,1,1 ,20,19556,10340482,140,0 ,20,16528,3524738,12,0 ,45,15153,5097604,16,0 ,17,923,7719044,32,0 ,17,923,7194756,24,0 ,44,15152,3000452,24,0 ,44,15152,1427588,120,0 ,44,15152,379012,32,0 ,23,1021,379016,1,1 ,23,1021,379024,1,1 ,23,1021,379032,1,1 ,23,1021,379040,1,1 ,23,1021,379048,1,1 ,23,1021,379056,1,1 ,23,1021,379064,1,1 ,23,1021,379072,1,1 ,17,923,10340548,48,0 ,45,15153,5621956,32,0 ,23,1021,379080,1,1 ,23,1021,379088,1,1 ,23,1021,379096,1,1 ,23,1021,379104,1,1 ,20,16529,3524834,204,0 ,23,1021,379112,1,1 ,23,1021,379120,1,1 ,23,1021,379128,1,1 ,23,1021,379136,1,1 ,17,923,8767748,40,0 ,17,923,6670596,24,0 ,44,15152,903428,48,0 ,45,15153,4573444,16,0 ,45,15153,5097732,16,0 ,23,1021,379144,1,1 ,23,1021,379152,1,1 ,23,1021,379160,1,1 ,23,1021,379168,1,1 ,20,20600,13486370,12,0 ,23,1021,379176,1,1 ,23,1021,379184,1,1 ,23,1021,379192,1,1 ,23,1021,379200,1,1 ,20,24281,22923586,204,0 ,20,17448,5622082,276,0 ,20,19245,9816386,104,0 ,20,21894,17156418,1284,0 ,44,15152,3000644,24,0 ,17,923,7194948,24,0 ,23,1021,379208,1,1 ,23,1021,379216,1,1 ,23,1021,379224,1,1 ,23,1021,379232,1,1 ,20,25614,26593634,280,0 ,20,25788,27117922,924,0 ,23,1021,379240,1,1 ,23,1021,379248,1,1 ,23,1021,379256,1,1 ,23,1021,379264,1,1 ,20,20601,13486466,116,0 ,17,923,8243588,40,0 ,17,923,7719300,32,0 ,44,15152,379268,24,0 ,45,15153,4573572,16,0 ,45,15153,5097860,24,0 ,23,1021,379272,1,1 ,23,1021,379280,1,1 ,23,1021,379288,1,1 ,23,1021,379296,1,1 ,23,1021,379304,1,1 ,23,1021,379312,1,1 ,23,1021,379320,1,1 ,23,1021,379328,1,1 ,20,22866,19777986,348,0 ,17,923,9292228,32,0 ,17,923,6670788,32,0 ,45,15153,5622212,24,0 ,23,1021,379336,1,1 ,23,1021,379344,1,1 ,23,1021,379352,1,1 ,23,1021,379360,1,1 ,20,18581,8243682,12,0 ,20,25057,25020898,628,0 ,23,1021,379368,1,1 ,23,1021,379376,1,1 ,23,1021,379384,1,1 ,23,1021,379392,1,1 ,45,15153,4573700,24,0 ,17,923,7195140,32,0 ,44,15152,3000836,80,0 ,23,1021,379400,1,1 ,23,1021,379408,1,1 ,23,1021,379416,1,1 ,23,1021,379424,1,1 ,20,17224,5098018,304,0 ,23,1021,379432,1,1 ,23,1021,379440,1,1 ,23,1021,379448,1,1 ,23,1021,379456,1,1 ,20,18582,8243778,128,0 ,17,923,10340932,48,0 ,44,15152,379460,24,0 ,45,15153,5098052,32,0 ,17,923,8768068,32,0 ,17,923,9816644,88,0 ,23,1021,379464,1,1 ,23,1021,379472,1,1 ,23,1021,379480,1,1 ,23,1021,379488,1,1 ,23,1021,379496,1,1 ,23,1021,379504,1,1 ,23,1021,379512,1,1 ,23,1021,379520,1,1 ,20,17646,6146690,1368,0 ,45,15153,5622404,40,0 ,17,923,7719556,32,0 ,44,15152,2476676,24,0 ,44,15152,903812,24,0 ,44,15152,3525252,64,0 ,23,1021,379528,1,1 ,23,1021,379536,1,1 ,23,1021,379544,1,1 ,23,1021,379552,1,1 ,20,23451,20826786,1060,0 ,20,15936,1952418,428,0 ,23,1021,379560,1,1 ,23,1021,379568,1,1 ,23,1021,379576,1,1 ,23,1021,379584,1,1 ,20,16115,2476738,60,0 ,17,923,9292484,32,0 ,17,923,6671044,24,0 ,45,15153,4049604,24,0 ,45,15153,4573892,32,0 ,17,923,8243908,48,0 ,23,1021,379592,1,1 ,23,1021,379600,1,1 ,23,1021,379608,1,1 ,23,1021,379616,1,1 ,23,1021,379624,1,1 ,23,1021,379632,1,1 ,23,1021,379640,1,1 ,23,1021,379648,1,1 ,20,19821,10865410,12,0 ,44,15152,379652,24,0 ,17,923,7195396,56,0 ,23,1021,379656,1,1 ,23,1021,379664,1,1 ,23,1021,379672,1,1 ,23,1021,379680,1,1 ,23,1021,379688,1,1 ,23,1021,379696,1,1 ,23,1021,379704,1,1 ,23,1021,379712,1,1 ,17,923,8768324,40,0 ,44,15152,2476868,88,0 ,44,15152,904004,16,0 ,45,15153,5098308,24,0 ,23,1021,379720,1,1 ,23,1021,379728,1,1 ,23,1021,379736,1,1 ,23,1021,379744,1,1 ,20,19822,10865506,136,0 ,20,18805,8768354,12,0 ,23,1021,379752,1,1 ,23,1021,379760,1,1 ,23,1021,379768,1,1 ,23,1021,379776,1,1 ,45,15153,4049796,64,0 ,17,923,7719812,32,0 ,17,923,6671236,32,0 ,23,1021,379784,1,1 ,23,1021,379792,1,1 ,23,1021,379800,1,1 ,23,1021,379808,1,1 ,23,1021,379816,1,1 ,23,1021,379824,1,1 ,23,1021,379832,1,1 ,23,1021,379840,1,1 ,20,18806,8768450,12,0 ,17,923,10341316,24,0 ,44,15152,379844,48,0 ,44,15152,904132,32,0 ,45,15153,4574148,16,0 ,45,15153,5622724,24,0 ,17,923,9292740,32,0 ,23,1021,379848,1,1 ,23,1021,379856,1,1 ,23,1021,379864,1,1 ,23,1021,379872,1,1 ,23,1021,379880,1,1 ,23,1021,379888,1,1 ,23,1021,379896,1,1 ,23,1021,379904,1,1 ,20,22154,18205698,148,0 ,45,15153,5098500,24,0 ,23,1021,379912,1,1 ,23,1021,379920,1,1 ,23,1021,379928,1,1 ,23,1021,379936,1,1 ,20,19036,9292834,192,0 ,20,18807,8768546,52,0 ,23,1021,379944,1,1 ,23,1021,379952,1,1 ,23,1021,379960,1,1 ,23,1021,379968,1,1 ,20,24072,22400066,68,0 ,17,923,8244292,48,0 ,44,15152,1428548,64,0 ,45,15153,4574276,24,0 ,23,1021,379976,1,1 ,23,1021,379984,1,1 ,23,1021,379992,1,1 ,23,1021,380000,1,1 ,23,1021,380008,1,1 ,23,1021,380016,1,1 ,23,1021,380024,1,1 ,23,1021,380032,1,1 ,20,19246,9817218,104,0 ,17,923,10341508,56,0 ,17,923,7720068,32,0 ,17,923,6671492,32,0 ,44,15152,3001476,16,0 ,44,15152,3525764,88,0 ,45,15153,5622916,24,0 ,17,923,8768644,32,0 ,23,1021,380040,1,1 ,23,1021,380048,1,1 ,23,1021,380056,1,1 ,23,1021,380064,1,1 ,20,24611,23973026,36,0 ,20,16116,2477218,1976,0 ,20,20353,12962978,328,0 ,20,21649,16632994,12,0 ,23,1021,380072,1,1 ,23,1021,380080,1,1 ,23,1021,380088,1,1 ,23,1021,380096,1,1 ,17,923,9292996,24,0 ,17,923,7195844,32,0 ,44,15152,904388,32,0 ,45,15153,5098692,24,0 ,23,1021,380104,1,1 ,23,1021,380112,1,1 ,23,1021,380120,1,1 ,23,1021,380128,1,1 ,20,22636,19254498,56,0 ,20,19557,10341602,140,0 ,23,1021,380136,1,1 ,23,1021,380144,1,1 ,23,1021,380152,1,1 ,23,1021,380160,1,1 ,20,21650,16633090,12,0 ,17,923,9817348,104,0 ,44,15152,3001604,24,0 ,45,15153,4574468,16,0 ,23,1021,380168,1,1 ,23,1021,380176,1,1 ,23,1021,380184,1,1 ,23,1021,380192,1,1 ,20,20602,13487394,80,0 ,23,1021,380200,1,1 ,23,1021,380208,1,1 ,23,1021,380216,1,1 ,23,1021,380224,1,1 ,45,15153,5623108,24,0 ,44,15152,380228,24,0 ,23,1021,380232,1,1 ,23,1021,380240,1,1 ,23,1021,380248,1,1 ,23,1021,380256,1,1 ,20,21651,16633186,572,0 ,23,1021,380264,1,1 ,23,1021,380272,1,1 ,23,1021,380280,1,1 ,23,1021,380288,1,1 ,17,923,9293188,56,0 ,17,923,7720324,32,0 ,17,923,6671748,24,0 ,45,15153,4050308,48,0 ,45,15153,4574596,32,0 ,45,15153,5098884,16,0 ,17,923,8768900,40,0 ,23,1021,380296,1,1 ,23,1021,380304,1,1 ,23,1021,380312,1,1 ,23,1021,380320,1,1 ,23,1021,380328,1,1 ,23,1021,380336,1,1 ,23,1021,380344,1,1 ,23,1021,380352,1,1 ,20,24612,23973314,72,0 ,20,18808,8768962,884,0 ,17,923,8244676,48,0 ,17,923,7196100,32,0 ,44,15152,3001796,40,0 ,44,15152,904644,40,0 ,23,1021,380360,1,1 ,23,1021,380368,1,1 ,23,1021,380376,1,1 ,23,1021,380384,1,1 ,23,1021,380392,1,1 ,23,1021,380400,1,1 ,23,1021,380408,1,1 ,23,1021,380416,1,1 ,45,15153,5623300,56,0 ,44,15152,2477572,88,0 ,44,15152,380420,24,0 ,45,15153,5099012,24,0 ,23,1021,380424,1,1 ,23,1021,380432,1,1 ,23,1021,380440,1,1 ,23,1021,380448,1,1 ,23,1021,380456,1,1 ,23,1021,380464,1,1 ,23,1021,380472,1,1 ,23,1021,380480,1,1 ,20,18583,8244802,188,0 ,17,923,10341956,48,0 ,17,923,6671940,24,0 ,44,15152,1429060,72,0 ,23,1021,380488,1,1 ,23,1021,380496,1,1 ,23,1021,380504,1,1 ,23,1021,380512,1,1 ,20,24073,22400610,160,0 ,20,21418,16109154,312,0 ,23,1021,380520,1,1 ,23,1021,380528,1,1 ,23,1021,380536,1,1 ,23,1021,380544,1,1 ,20,24775,24497794,56,0 ,45,15153,4574852,40,0 ,17,923,7720580,32,0 ,23,1021,380552,1,1 ,23,1021,380560,1,1 ,23,1021,380568,1,1 ,23,1021,380576,1,1 ,20,22637,19254946,1084,0 ,23,1021,380584,1,1 ,23,1021,380592,1,1 ,23,1021,380600,1,1 ,23,1021,380608,1,1 ,17,923,8769220,32,0 ,17,923,7196356,40,0 ,44,15152,380612,24,0 ,45,15153,5099204,40,0 ,23,1021,380616,1,1 ,23,1021,380624,1,1 ,23,1021,380632,1,1 ,23,1021,380640,1,1 ,23,1021,380648,1,1 ,23,1021,380656,1,1 ,23,1021,380664,1,1 ,23,1021,380672,1,1 ,45,15153,4050692,32,0 ,17,923,6672132,24,0 ,44,15152,3002116,40,0 ,44,15152,904964,24,0 ,23,1021,380680,1,1 ,23,1021,380688,1,1 ,23,1021,380696,1,1 ,23,1021,380704,1,1 ,23,1021,380712,1,1 ,23,1021,380720,1,1 ,23,1021,380728,1,1 ,23,1021,380736,1,1 ,20,16530,3526466,312,0 ,17,923,9293636,24,0 ,44,15152,3526468,24,0 ,17,923,8245060,56,0 ,23,1021,380744,1,1 ,23,1021,380752,1,1 ,23,1021,380760,1,1 ,23,1021,380768,1,1 ,20,15741,1429346,12,0 ,23,1021,380776,1,1 ,23,1021,380784,1,1 ,23,1021,380792,1,1 ,23,1021,380800,1,1 ,44,15152,380804,56,0 ,17,923,7720836,64,0 ,23,1021,380808,1,1 ,23,1021,380816,1,1 ,23,1021,380824,1,1 ,23,1021,380832,1,1 ,20,24282,22925218,160,0 ,20,25268,25546658,1036,0 ,20,19823,10866594,316,0 ,20,20603,13488034,12,0 ,23,1021,380840,1,1 ,23,1021,380848,1,1 ,23,1021,380856,1,1 ,23,1021,380864,1,1 ,20,19247,9818050,72,0 ,20,15742,1429442,148,0 ,17,923,10342340,24,0 ,17,923,6672324,40,0 ,44,15152,905156,72,0 ,45,15153,4575172,40,0 ,45,15153,5623748,24,0 ,17,923,8769476,32,0 ,23,1021,380872,1,1 ,23,1021,380880,1,1 ,23,1021,380888,1,1 ,23,1021,380896,1,1 ,23,1021,380904,1,1 ,23,1021,380912,1,1 ,23,1021,380920,1,1 ,23,1021,380928,1,1 ,20,24613,23973890,880,0 ,20,20604,13488130,116,0 ,17,923,9293828,96,0 ,17,923,7196676,40,0 ,44,15152,3526660,88,0 ,45,15153,4050948,24,0 ,45,15153,5099524,24,0 ,23,1021,380936,1,1 ,23,1021,380944,1,1 ,23,1021,380952,1,1 ,23,1021,380960,1,1 ,23,1021,380968,1,1 ,23,1021,380976,1,1 ,23,1021,380984,1,1 ,23,1021,380992,1,1 ,20,24776,24498242,124,0 ,17,923,9818180,112,0 ,44,15152,3002436,48,0 ,23,1021,381000,1,1 ,23,1021,381008,1,1 ,23,1021,381016,1,1 ,23,1021,381024,1,1 ,20,26485,29216866,292,0 ,23,1021,381032,1,1 ,23,1021,381040,1,1 ,23,1021,381048,1,1 ,23,1021,381056,1,1 ,20,23160,20304002,276,0 ,17,923,10342532,56,0 ,44,15152,1429636,80,0 ,45,15153,5623940,32,0 ,23,1021,381064,1,1 ,23,1021,381072,1,1 ,23,1021,381080,1,1 ,23,1021,381088,1,1 ,20,22155,18206882,68,0 ,23,1021,381096,1,1 ,23,1021,381104,1,1 ,23,1021,381112,1,1 ,23,1021,381120,1,1 ,17,923,8769732,32,0 ,44,15152,2478276,256,0 ,45,15153,4051140,56,0 ,45,15153,5099716,56,0 ,23,1021,381128,1,1 ,23,1021,381136,1,1 ,23,1021,381144,1,1 ,23,1021,381152,1,1 ,23,1021,381160,1,1 ,23,1021,381168,1,1 ,23,1021,381176,1,1 ,23,1021,381184,1,1 ,20,26023,27644162,132,0 ,17,923,8245508,48,0 ,17,923,6672644,40,0 ,45,15153,4575492,112,0 ,23,1021,381192,1,1 ,23,1021,381200,1,1 ,23,1021,381208,1,1 ,23,1021,381216,1,1 ,23,1021,381224,1,1 ,23,1021,381232,1,1 ,23,1021,381240,1,1 ,23,1021,381248,1,1 ,20,19558,10342722,140,0 ,44,15152,381252,48,0 ,17,923,7196996,24,0 ,23,1021,381256,1,1 ,23,1021,381264,1,1 ,23,1021,381272,1,1 ,23,1021,381280,1,1 ,23,1021,381288,1,1 ,23,1021,381296,1,1 ,23,1021,381304,1,1 ,23,1021,381312,1,1 ,45,15153,5624196,24,0 ,17,923,7721348,72,0 ,23,1021,381320,1,1 ,23,1021,381328,1,1 ,23,1021,381336,1,1 ,23,1021,381344,1,1 ,23,1021,381352,1,1 ,23,1021,381360,1,1 ,23,1021,381368,1,1 ,23,1021,381376,1,1 ,17,923,8769988,32,0 ,44,15152,3002820,48,0 ,23,1021,381384,1,1 ,23,1021,381392,1,1 ,23,1021,381400,1,1 ,23,1021,381408,1,1 ,20,17449,5624290,56,0 ,23,1021,381416,1,1 ,23,1021,381424,1,1 ,23,1021,381432,1,1 ,23,1021,381440,1,1 ,20,19248,9818626,72,0 ,20,16847,4051458,156,0 ,44,15152,905732,48,0 ,17,923,7197188,32,0 ,23,1021,381448,1,1 ,23,1021,381456,1,1 ,23,1021,381464,1,1 ,23,1021,381472,1,1 ,20,19037,9294370,216,0 ,20,25615,26595874,280,0 ,23,1021,381480,1,1 ,23,1021,381488,1,1 ,23,1021,381496,1,1 ,23,1021,381504,1,1 ,17,923,10342980,24,0 ,17,923,6672964,24,0 ,45,15153,5624388,56,0 ,23,1021,381512,1,1 ,23,1021,381520,1,1 ,23,1021,381528,1,1 ,23,1021,381536,1,1 ,20,17864,6672994,168,0 ,23,1021,381544,1,1 ,23,1021,381552,1,1 ,23,1021,381560,1,1 ,23,1021,381568,1,1 ,17,923,8245892,40,0 ,45,15153,4051588,16,0 ,45,15153,5100164,16,0 ,23,1021,381576,1,1 ,23,1021,381584,1,1 ,23,1021,381592,1,1 ,23,1021,381600,1,1 ,20,21063,15585954,152,0 ,23,1021,381608,1,1 ,23,1021,381616,1,1 ,23,1021,381624,1,1 ,23,1021,381632,1,1 ,20,22156,18207426,332,0 ,17,923,8770244,32,0 ,44,15152,381636,112,0 ,44,15152,3527364,80,0 ,23,1021,381640,1,1 ,23,1021,381648,1,1 ,23,1021,381656,1,1 ,23,1021,381664,1,1 ,20,23829,21877474,200,0 ,23,1021,381672,1,1 ,23,1021,381680,1,1 ,23,1021,381688,1,1 ,23,1021,381696,1,1 ,17,923,10343172,32,0 ,17,923,7197444,24,0 ,17,923,6673156,24,0 ,44,15152,1430276,56,0 ,45,15153,4051716,24,0 ,45,15153,5100292,16,0 ,17,923,9294596,40,0 ,23,1021,381704,1,1 ,23,1021,381712,1,1 ,23,1021,381720,1,1 ,23,1021,381728,1,1 ,23,1021,381736,1,1 ,23,1021,381744,1,1 ,23,1021,381752,1,1 ,23,1021,381760,1,1 ,44,15152,3003204,48,0 ,23,1021,381768,1,1 ,23,1021,381776,1,1 ,23,1021,381784,1,1 ,23,1021,381792,1,1 ,20,24074,22401890,188,0 ,23,1021,381800,1,1 ,23,1021,381808,1,1 ,23,1021,381816,1,1 ,23,1021,381824,1,1 ,45,15153,5100420,16,0 ,44,15152,906116,24,0 ,23,1021,381832,1,1 ,23,1021,381840,1,1 ,23,1021,381848,1,1 ,23,1021,381856,1,1 ,20,20809,14013346,1080,0 ,20,17225,5100450,140,0 ,20,17450,5624738,108,0 ,20,20605,13489058,80,0 ,23,1021,381864,1,1 ,23,1021,381872,1,1 ,23,1021,381880,1,1 ,23,1021,381888,1,1 ,17,923,9819076,88,0 ,17,923,7721924,32,0 ,17,923,7197636,16,0 ,17,923,6673348,32,0 ,44,15152,1954756,400,0 ,45,15153,4051908,16,0 ,17,923,8246212,48,0 ,17,923,8770500,32,0 ,23,1021,381896,1,1 ,23,1021,381904,1,1 ,23,1021,381912,1,1 ,23,1021,381920,1,1 ,23,1021,381928,1,1 ,23,1021,381936,1,1 ,23,1021,381944,1,1 ,23,1021,381952,1,1 ,17,923,10343428,32,0 ,45,15153,5100548,16,0 ,45,15153,5624836,40,0 ,23,1021,381960,1,1 ,23,1021,381968,1,1 ,23,1021,381976,1,1 ,23,1021,381984,1,1 ,20,18584,8246306,12,0 ,20,24777,24499234,212,0 ,23,1021,381992,1,1 ,23,1021,382000,1,1 ,23,1021,382008,1,1 ,23,1021,382016,1,1 ,20,19249,9819202,104,0 ,17,923,9294916,24,0 ,17,923,7197764,40,0 ,44,15152,906308,24,0 ,45,15153,4052036,16,0 ,23,1021,382024,1,1 ,23,1021,382032,1,1 ,23,1021,382040,1,1 ,23,1021,382048,1,1 ,20,15743,1430626,628,0 ,23,1021,382056,1,1 ,23,1021,382064,1,1 ,23,1021,382072,1,1 ,23,1021,382080,1,1 ,20,18585,8246402,12,0 ,45,15153,5100676,40,0 ,45,15153,4576388,32,0 ,23,1021,382088,1,1 ,23,1021,382096,1,1 ,23,1021,382104,1,1 ,23,1021,382112,1,1 ,20,24283,22926498,160,0 ,20,22867,19780770,132,0 ,23,1021,382120,1,1 ,23,1021,382128,1,1 ,23,1021,382136,1,1 ,23,1021,382144,1,1 ,17,923,8770756,32,0 ,17,923,7722180,32,0 ,17,923,6673604,24,0 ,44,15152,3003588,40,0 ,44,15152,1430724,48,0 ,45,15153,4052164,16,0 ,23,1021,382152,1,1 ,23,1021,382160,1,1 ,23,1021,382168,1,1 ,23,1021,382176,1,1 ,20,18586,8246498,80,0 ,23,1021,382184,1,1 ,23,1021,382192,1,1 ,23,1021,382200,1,1 ,23,1021,382208,1,1 ,17,923,10343684,24,0 ,44,15152,906500,24,0 ,17,923,9295108,40,0 ,23,1021,382216,1,1 ,23,1021,382224,1,1 ,23,1021,382232,1,1 ,23,1021,382240,1,1 ,20,26024,27645218,488,0 ,23,1021,382248,1,1 ,23,1021,382256,1,1 ,23,1021,382264,1,1 ,23,1021,382272,1,1 ,17,923,8246596,40,0 ,44,15152,3528004,24,0 ,45,15153,4052292,16,0 ,45,15153,5625156,24,0 ,23,1021,382280,1,1 ,23,1021,382288,1,1 ,23,1021,382296,1,1 ,23,1021,382304,1,1 ,23,1021,382312,1,1 ,23,1021,382320,1,1 ,23,1021,382328,1,1 ,23,1021,382336,1,1 ,45,15153,4576644,24,0 ,17,923,7198084,32,0 ,17,923,6673796,32,0 ,23,1021,382344,1,1 ,23,1021,382352,1,1 ,23,1021,382360,1,1 ,23,1021,382368,1,1 ,20,19559,10343842,12,0 ,23,1021,382376,1,1 ,23,1021,382384,1,1 ,23,1021,382392,1,1 ,23,1021,382400,1,1 ,17,923,10343876,32,0 ,17,923,7722436,32,0 ,44,15152,906692,24,0 ,45,15153,4052420,24,0 ,45,15153,5100996,136,0 ,17,923,8771012,32,0 ,23,1021,382408,1,1 ,23,1021,382416,1,1 ,23,1021,382424,1,1 ,23,1021,382432,1,1 ,23,1021,382440,1,1 ,23,1021,382448,1,1 ,23,1021,382456,1,1 ,23,1021,382464,1,1 ,20,19560,10343938,388,0 ,45,15153,5625348,40,0 ,44,15152,3003908,48,0 ,44,15152,3528196,24,0 ,23,1021,382472,1,1 ,23,1021,382480,1,1 ,23,1021,382488,1,1 ,23,1021,382496,1,1 ,20,20606,13489698,12,0 ,23,1021,382504,1,1 ,23,1021,382512,1,1 ,23,1021,382520,1,1 ,23,1021,382528,1,1 ,17,923,9295428,24,0 ,44,15152,1431108,32,0 ,44,15152,382532,656,0 ,45,15153,4576836,40,0 ,23,1021,382536,1,1 ,23,1021,382544,1,1 ,23,1021,382552,1,1 ,23,1021,382560,1,1 ,23,1021,382568,1,1 ,23,1021,382576,1,1 ,23,1021,382584,1,1 ,23,1021,382592,1,1 ,20,20607,13489794,116,0 ,17,923,9819780,32,0 ,17,923,7198340,24,0 ,17,923,6674052,32,0 ,44,15152,906884,32,0 ,45,15153,4052612,64,0 ,17,923,8246916,48,0 ,23,1021,382600,1,1 ,23,1021,382608,1,1 ,23,1021,382616,1,1 ,23,1021,382624,1,1 ,23,1021,382632,1,1 ,23,1021,382640,1,1 ,23,1021,382648,1,1 ,23,1021,382656,1,1 ,17,923,10344132,32,0 ,17,923,7722692,24,0 ,44,15152,3528388,24,0 ,17,923,8771268,32,0 ,23,1021,382664,1,1 ,23,1021,382672,1,1 ,23,1021,382680,1,1 ,23,1021,382688,1,1 ,20,20354,12965602,80,0 ,20,16848,4052706,212,0 ,20,18323,7722722,12,0 ,23,1021,382696,1,1 ,23,1021,382704,1,1 ,23,1021,382712,1,1 ,23,1021,382720,1,1 ,20,17451,5625602,192,0 ,17,923,9295620,72,0 ,23,1021,382728,1,1 ,23,1021,382736,1,1 ,23,1021,382744,1,1 ,23,1021,382752,1,1 ,23,1021,382760,1,1 ,23,1021,382768,1,1 ,23,1021,382776,1,1 ,23,1021,382784,1,1 ,20,18324,7722818,12,0 ,45,15153,5625668,24,0 ,17,923,7198532,24,0 ,44,15152,1431364,48,0 ,23,1021,382792,1,1 ,23,1021,382800,1,1 ,23,1021,382808,1,1 ,23,1021,382816,1,1 ,20,21064,15587170,732,0 ,20,18587,8247138,4100,0 ,23,1021,382824,1,1 ,23,1021,382832,1,1 ,23,1021,382840,1,1 ,23,1021,382848,1,1 ,20,19250,9820034,192,0 ,17,923,9820036,32,0 ,17,923,7722884,32,0 ,17,923,6674308,48,0 ,44,15152,3004292,40,0 ,44,15152,907140,24,0 ,44,15152,3528580,48,0 ,45,15153,4577156,48,0 ,23,1021,382856,1,1 ,23,1021,382864,1,1 ,23,1021,382872,1,1 ,23,1021,382880,1,1 ,20,18325,7722914,12,0 ,20,17865,6674338,244,0 ,23,1021,382888,1,1 ,23,1021,382896,1,1 ,23,1021,382904,1,1 ,23,1021,382912,1,1 ,20,15492,907202,12,0 ,17,923,10344388,24,0 ,17,923,8771524,32,0 ,23,1021,382920,1,1 ,23,1021,382928,1,1 ,23,1021,382936,1,1 ,23,1021,382944,1,1 ,23,1021,382952,1,1 ,23,1021,382960,1,1 ,23,1021,382968,1,1 ,23,1021,382976,1,1 ,20,18326,7723010,12,0 ,20,15937,1955842,12,0 ,20,17226,5101570,88,0 ,17,923,8247300,56,0 ,17,923,7198724,32,0 ,45,15153,5625860,32,0 ,23,1021,382984,1,1 ,23,1021,382992,1,1 ,23,1021,383000,1,1 ,23,1021,383008,1,1 ,20,21419,16111650,756,0 ,20,15493,907298,196,0 ,23,1021,383016,1,1 ,23,1021,383024,1,1 ,23,1021,383032,1,1 ,23,1021,383040,1,1 ,44,15152,907332,32,0 ,23,1021,383048,1,1 ,23,1021,383056,1,1 ,23,1021,383064,1,1 ,23,1021,383072,1,1 ,20,18327,7723106,12,0 ,20,15938,1955938,60,0 ,23,1021,383080,1,1 ,23,1021,383088,1,1 ,23,1021,383096,1,1 ,23,1021,383104,1,1 ,17,923,10344580,16,0 ,17,923,7723140,48,0 ,45,15153,4053124,72,0 ,17,923,9820292,40,0 ,23,1021,383112,1,1 ,23,1021,383120,1,1 ,23,1021,383128,1,1 ,23,1021,383136,1,1 ,23,1021,383144,1,1 ,23,1021,383152,1,1 ,23,1021,383160,1,1 ,23,1021,383168,1,1 ,20,22868,19781826,96,0 ,20,18328,7723202,12,0 ,17,923,8771780,32,0 ,44,15152,3004612,40,0 ,44,15152,2480324,40,0 ,44,15152,1431748,32,0 ,23,1021,383176,1,1 ,23,1021,383184,1,1 ,23,1021,383192,1,1 ,23,1021,383200,1,1 ,20,19038,9296098,140,0 ,23,1021,383208,1,1 ,23,1021,383216,1,1 ,23,1021,383224,1,1 ,23,1021,383232,1,1 ,20,16531,3528962,284,0 ,17,923,10344708,24,0 ,17,923,7198980,32,0 ,17,923,6674692,40,0 ,44,15152,3528964,40,0 ,45,15153,4577540,56,0 ,45,15153,5626116,80,0 ,23,1021,383240,1,1 ,23,1021,383248,1,1 ,23,1021,383256,1,1 ,23,1021,383264,1,1 ,20,23830,21879074,184,0 ,20,18329,7723298,128,0 ,20,23161,20306210,72,0 ,23,1021,383272,1,1 ,23,1021,383280,1,1 ,23,1021,383288,1,1 ,23,1021,383296,1,1 ,20,24075,22403394,112,0 ,17,923,9296196,32,0 ,44,15152,907588,56,0 ,23,1021,383304,1,1 ,23,1021,383312,1,1 ,23,1021,383320,1,1 ,23,1021,383328,1,1 ,20,20355,12966242,12,0 ,23,1021,383336,1,1 ,23,1021,383344,1,1 ,23,1021,383352,1,1 ,23,1021,383360,1,1 ,20,19824,10869122,1664,0 ,20,26486,29219202,432,0 ,23,1021,383368,1,1 ,23,1021,383376,1,1 ,23,1021,383384,1,1 ,23,1021,383392,1,1 ,20,24284,22927778,84,0 ,23,1021,383400,1,1 ,23,1021,383408,1,1 ,23,1021,383416,1,1 ,23,1021,383424,1,1 ,20,20356,12966338,84,0 ,17,923,10344900,32,0 ,44,15152,1432004,48,0 ,17,923,8247748,48,0 ,17,923,8772036,32,0 ,17,923,9820612,32,0 ,23,1021,383432,1,1 ,23,1021,383440,1,1 ,23,1021,383448,1,1 ,23,1021,383456,1,1 ,23,1021,383464,1,1 ,23,1021,383472,1,1 ,23,1021,383480,1,1 ,23,1021,383488,1,1 ,45,15153,5102084,40,0 ,17,923,7723524,32,0 ,17,923,7199236,32,0 ,44,15152,3004932,40,0 ,44,15152,2480644,200,0 ,23,1021,383496,1,1 ,23,1021,383504,1,1 ,23,1021,383512,1,1 ,23,1021,383520,1,1 ,20,20608,13490722,80,0 ,23,1021,383528,1,1 ,23,1021,383536,1,1 ,23,1021,383544,1,1 ,23,1021,383552,1,1 ,20,15939,1956418,1172,0 ,17,923,9296452,24,0 ,17,923,6675012,24,0 ,44,15152,3529284,48,0 ,23,1021,383560,1,1 ,23,1021,383568,1,1 ,23,1021,383576,1,1 ,23,1021,383584,1,1 ,23,1021,383592,1,1 ,23,1021,383600,1,1 ,23,1021,383608,1,1 ,23,1021,383616,1,1 ,20,20095,11393666,772,0 ,23,1021,383624,1,1 ,23,1021,383632,1,1 ,23,1021,383640,1,1 ,23,1021,383648,1,1 ,23,1021,383656,1,1 ,23,1021,383664,1,1 ,23,1021,383672,1,1 ,23,1021,383680,1,1 ,20,17227,5102274,216,0 ,20,24778,24500930,432,0 ,17,923,10345156,16,0 ,45,15153,4053700,32,0 ,45,15153,4577988,24,0 ,17,923,8772292,32,0 ,17,923,9820868,24,0 ,23,1021,383688,1,1 ,23,1021,383696,1,1 ,23,1021,383704,1,1 ,23,1021,383712,1,1 ,20,25616,26598114,280,0 ,23,1021,383720,1,1 ,23,1021,383728,1,1 ,23,1021,383736,1,1 ,23,1021,383744,1,1 ,17,923,9296644,24,0 ,17,923,7723780,24,0 ,17,923,7199492,24,0 ,17,923,6675204,32,0 ,44,15152,908036,72,0 ,23,1021,383752,1,1 ,23,1021,383760,1,1 ,23,1021,383768,1,1 ,23,1021,383776,1,1 ,23,1021,383784,1,1 ,23,1021,383792,1,1 ,23,1021,383800,1,1 ,23,1021,383808,1,1 ,17,923,10345284,24,0 ,44,15152,3005252,56,0 ,44,15152,1432388,32,0 ,45,15153,5102404,56,0 ,17,923,8248132,56,0 ,23,1021,383816,1,1 ,23,1021,383824,1,1 ,23,1021,383832,1,1 ,23,1021,383840,1,1 ,20,23162,20306786,144,0 ,23,1021,383848,1,1 ,23,1021,383856,1,1 ,23,1021,383864,1,1 ,23,1021,383872,1,1 ,17,923,9821060,32,0 ,45,15153,4578180,24,0 ,45,15153,5626756,40,0 ,23,1021,383880,1,1 ,23,1021,383888,1,1 ,23,1021,383896,1,1 ,23,1021,383904,1,1 ,23,1021,383912,1,1 ,23,1021,383920,1,1 ,23,1021,383928,1,1 ,23,1021,383936,1,1 ,20,22869,19782594,132,0 ,20,26206,28171202,840,0 ,17,923,9296836,32,0 ,17,923,7723972,56,0 ,17,923,7199684,24,0 ,44,15152,3529668,1352,0 ,45,15153,4053956,144,0 ,17,923,8772548,32,0 ,23,1021,383944,1,1 ,23,1021,383952,1,1 ,23,1021,383960,1,1 ,23,1021,383968,1,1 ,23,1021,383976,1,1 ,23,1021,383984,1,1 ,23,1021,383992,1,1 ,23,1021,384000,1,1 ,17,923,10345476,32,0 ,17,923,6675460,32,0 ,23,1021,384008,1,1 ,23,1021,384016,1,1 ,23,1021,384024,1,1 ,23,1021,384032,1,1 ,23,1021,384040,1,1 ,23,1021,384048,1,1 ,23,1021,384056,1,1 ,23,1021,384064,1,1 ,20,24285,22928450,1684,0 ,45,15153,4578372,16,0 ,44,15152,1432644,48,0 ,23,1021,384072,1,1 ,23,1021,384080,1,1 ,23,1021,384088,1,1 ,23,1021,384096,1,1 ,20,20357,12967010,440,0 ,23,1021,384104,1,1 ,23,1021,384112,1,1 ,23,1021,384120,1,1 ,23,1021,384128,1,1 ,17,923,9821316,40,0 ,17,923,7199876,56,0 ,23,1021,384136,1,1 ,23,1021,384144,1,1 ,23,1021,384152,1,1 ,23,1021,384160,1,1 ,20,20609,13491362,12,0 ,23,1021,384168,1,1 ,23,1021,384176,1,1 ,23,1021,384184,1,1 ,23,1021,384192,1,1 ,20,24076,22404290,48,0 ,17,923,9297092,24,0 ,45,15153,4578500,16,0 ,45,15153,5627076,104,0 ,17,923,8772804,24,0 ,23,1021,384200,1,1 ,23,1021,384208,1,1 ,23,1021,384216,1,1 ,23,1021,384224,1,1 ,23,1021,384232,1,1 ,23,1021,384240,1,1 ,23,1021,384248,1,1 ,23,1021,384256,1,1 ,20,20610,13491458,116,0 ,20,17452,5627138,192,0 ,17,923,10345732,32,0 ,17,923,6675716,48,0 ,44,15152,3005700,40,0 ,45,15153,5102852,32,0 ,17,923,8248580,32,0 ,23,1021,384264,1,1 ,23,1021,384272,1,1 ,23,1021,384280,1,1 ,23,1021,384288,1,1 ,20,22157,18210082,100,0 ,20,18330,7724322,132,0 ,23,1021,384296,1,1 ,23,1021,384304,1,1 ,23,1021,384312,1,1 ,23,1021,384320,1,1 ,20,19039,9297218,668,0 ,45,15153,4578628,40,0 ,44,15152,908612,24,0 ,23,1021,384328,1,1 ,23,1021,384336,1,1 ,23,1021,384344,1,1 ,23,1021,384352,1,1 ,23,1021,384360,1,1 ,23,1021,384368,1,1 ,23,1021,384376,1,1 ,23,1021,384384,1,1 ,20,19251,9821570,704,0 ,20,25058,25025922,400,0 ,20,16849,4054402,48,0 ,17,923,9297284,24,0 ,17,923,7724420,24,0 ,17,923,8772996,32,0 ,23,1021,384392,1,1 ,23,1021,384400,1,1 ,23,1021,384408,1,1 ,23,1021,384416,1,1 ,23,1021,384424,1,1 ,23,1021,384432,1,1 ,23,1021,384440,1,1 ,23,1021,384448,1,1 ,17,923,9821636,24,0 ,44,15152,1433028,32,0 ,23,1021,384456,1,1 ,23,1021,384464,1,1 ,23,1021,384472,1,1 ,23,1021,384480,1,1 ,23,1021,384488,1,1 ,23,1021,384496,1,1 ,23,1021,384504,1,1 ,23,1021,384512,1,1 ,17,923,10345988,32,0 ,44,15152,908804,24,0 ,45,15153,5103108,16,0 ,17,923,8248836,24,0 ,23,1021,384520,1,1 ,23,1021,384528,1,1 ,23,1021,384536,1,1 ,23,1021,384544,1,1 ,23,1021,384552,1,1 ,23,1021,384560,1,1 ,23,1021,384568,1,1 ,23,1021,384576,1,1 ,20,24077,22404674,64,0 ,20,15494,908866,96,0 ,17,923,9297476,24,0 ,17,923,7724612,32,0 ,17,923,7200324,32,0 ,44,15152,3006020,24,0 ,23,1021,384584,1,1 ,23,1021,384592,1,1 ,23,1021,384600,1,1 ,23,1021,384608,1,1 ,23,1021,384616,1,1 ,23,1021,384624,1,1 ,23,1021,384632,1,1 ,23,1021,384640,1,1 ,17,923,9821828,32,0 ,17,923,6676100,32,0 ,45,15153,4578948,32,0 ,45,15153,5103236,32,0 ,17,923,8773252,32,0 ,23,1021,384648,1,1 ,23,1021,384656,1,1 ,23,1021,384664,1,1 ,23,1021,384672,1,1 ,20,20180,11919010,452,0 ,23,1021,384680,1,1 ,23,1021,384688,1,1 ,23,1021,384696,1,1 ,23,1021,384704,1,1 ,17,923,8249028,32,0 ,44,15152,1433284,24,0 ,44,15152,908996,32,0 ,23,1021,384712,1,1 ,23,1021,384720,1,1 ,23,1021,384728,1,1 ,23,1021,384736,1,1 ,20,23831,21880546,832,0 ,23,1021,384744,1,1 ,23,1021,384752,1,1 ,23,1021,384760,1,1 ,23,1021,384768,1,1 ,20,16850,4054786,480,0 ,17,923,10346244,24,0 ,44,15152,3006212,24,0 ,17,923,9297668,24,0 ,23,1021,384776,1,1 ,23,1021,384784,1,1 ,23,1021,384792,1,1 ,23,1021,384800,1,1 ,23,1021,384808,1,1 ,23,1021,384816,1,1 ,23,1021,384824,1,1 ,23,1021,384832,1,1 ,20,21652,16637762,320,0 ,20,17866,6676290,344,0 ,17,923,7200580,16,0 ,17,923,7724868,48,0 ,23,1021,384840,1,1 ,23,1021,384848,1,1 ,23,1021,384856,1,1 ,23,1021,384864,1,1 ,23,1021,384872,1,1 ,23,1021,384880,1,1 ,23,1021,384888,1,1 ,23,1021,384896,1,1 ,17,923,9822084,32,0 ,17,923,6676356,32,0 ,44,15152,1433476,24,0 ,45,15153,4579204,64,0 ,45,15153,5103492,32,0 ,17,923,8773508,32,0 ,23,1021,384904,1,1 ,23,1021,384912,1,1 ,23,1021,384920,1,1 ,23,1021,384928,1,1 ,23,1021,384936,1,1 ,23,1021,384944,1,1 ,23,1021,384952,1,1 ,23,1021,384960,1,1 ,17,923,10346436,48,0 ,17,923,7200708,32,0 ,44,15152,3006404,64,0 ,44,15152,909252,48,0 ,17,923,8249284,24,0 ,17,923,9297860,24,0 ,23,1021,384968,1,1 ,23,1021,384976,1,1 ,23,1021,384984,1,1 ,23,1021,384992,1,1 ,20,23163,20307938,24,0 ,20,22870,19783650,128,0 ,23,1021,385000,1,1 ,23,1021,385008,1,1 ,23,1021,385016,1,1 ,23,1021,385024,1,1 ,45,15153,5627908,64,0 ,23,1021,385032,1,1 ,23,1021,385040,1,1 ,23,1021,385048,1,1 ,23,1021,385056,1,1 ,23,1021,385064,1,1 ,23,1021,385072,1,1 ,23,1021,385080,1,1 ,23,1021,385088,1,1 ,20,24078,22405186,264,0 ,20,16209,3006530,472,0 ,20,22158,18210882,288,0 ,45,15153,4055108,24,0 ,44,15152,2482244,16,0 ,44,15152,1957956,440,0 ,44,15152,1433668,160,0 ,23,1021,385096,1,1 ,23,1021,385104,1,1 ,23,1021,385112,1,1 ,23,1021,385120,1,1 ,23,1021,385128,1,1 ,23,1021,385136,1,1 ,23,1021,385144,1,1 ,23,1021,385152,1,1 ,17,923,9822340,32,0 ,17,923,6676612,24,0 ,45,15153,5103748,24,0 ,17,923,8249476,56,0 ,17,923,8773764,32,0 ,17,923,9298052,24,0 ,23,1021,385160,1,1 ,23,1021,385168,1,1 ,23,1021,385176,1,1 ,23,1021,385184,1,1 ,20,23164,20308130,24,0 ,20,20611,13492386,80,0 ,23,1021,385192,1,1 ,23,1021,385200,1,1 ,23,1021,385208,1,1 ,23,1021,385216,1,1 ,44,15152,2482372,24,0 ,17,923,7725252,48,0 ,17,923,7200964,32,0 ,23,1021,385224,1,1 ,23,1021,385232,1,1 ,23,1021,385240,1,1 ,23,1021,385248,1,1 ,23,1021,385256,1,1 ,23,1021,385264,1,1 ,23,1021,385272,1,1 ,23,1021,385280,1,1 ,45,15153,4055300,40,0 ,23,1021,385288,1,1 ,23,1021,385296,1,1 ,23,1021,385304,1,1 ,23,1021,385312,1,1 ,23,1021,385320,1,1 ,23,1021,385328,1,1 ,23,1021,385336,1,1 ,23,1021,385344,1,1 ,20,18331,7725378,292,0 ,20,15495,909634,12,0 ,17,923,10346820,24,0 ,17,923,6676804,24,0 ,44,15152,909636,24,0 ,45,15153,5103940,40,0 ,17,923,9298244,40,0 ,23,1021,385352,1,1 ,23,1021,385360,1,1 ,23,1021,385368,1,1 ,23,1021,385376,1,1 ,20,23165,20308322,352,0 ,23,1021,385384,1,1 ,23,1021,385392,1,1 ,23,1021,385400,1,1 ,23,1021,385408,1,1 ,20,17228,5104002,140,0 ,17,923,9822596,32,0 ,44,15152,2482564,56,0 ,45,15153,4579716,24,0 ,17,923,8774020,32,0 ,23,1021,385416,1,1 ,23,1021,385424,1,1 ,23,1021,385432,1,1 ,23,1021,385440,1,1 ,20,15496,909730,52,0 ,23,1021,385448,1,1 ,23,1021,385456,1,1 ,23,1021,385464,1,1 ,23,1021,385472,1,1 ,44,15152,3006916,24,0 ,17,923,7201220,32,0 ,23,1021,385480,1,1 ,23,1021,385488,1,1 ,23,1021,385496,1,1 ,23,1021,385504,1,1 ,20,16532,3531234,340,0 ,23,1021,385512,1,1 ,23,1021,385520,1,1 ,23,1021,385528,1,1 ,23,1021,385536,1,1 ,17,923,10347012,32,0 ,17,923,6676996,48,0 ,44,15152,909828,24,0 ,45,15153,5628420,16,0 ,23,1021,385544,1,1 ,23,1021,385552,1,1 ,23,1021,385560,1,1 ,23,1021,385568,1,1 ,20,19561,10347042,188,0 ,23,1021,385576,1,1 ,23,1021,385584,1,1 ,23,1021,385592,1,1 ,23,1021,385600,1,1 ,17,923,8249924,24,0 ,17,923,7725636,48,0 ,45,15153,4055620,104,0 ,45,15153,4579908,24,0 ,23,1021,385608,1,1 ,23,1021,385616,1,1 ,23,1021,385624,1,1 ,23,1021,385632,1,1 ,23,1021,385640,1,1 ,23,1021,385648,1,1 ,23,1021,385656,1,1 ,23,1021,385664,1,1 ,17,923,9822852,48,0 ,44,15152,3007108,56,0 ,45,15153,5104260,16,0 ,45,15153,5628548,16,0 ,17,923,8774276,32,0 ,17,923,9298564,96,0 ,23,1021,385672,1,1 ,23,1021,385680,1,1 ,23,1021,385688,1,1 ,23,1021,385696,1,1 ,23,1021,385704,1,1 ,23,1021,385712,1,1 ,23,1021,385720,1,1 ,23,1021,385728,1,1 ,44,15152,910020,32,0 ,17,923,7201476,24,0 ,23,1021,385736,1,1 ,23,1021,385744,1,1 ,23,1021,385752,1,1 ,23,1021,385760,1,1 ,23,1021,385768,1,1 ,23,1021,385776,1,1 ,23,1021,385784,1,1 ,23,1021,385792,1,1 ,20,17453,5628674,108,0 ,17,923,10347268,32,0 ,45,15153,4580100,16,0 ,45,15153,5104388,48,0 ,45,15153,5628676,40,0 ,17,923,8250116,24,0 ,23,1021,385800,1,1 ,23,1021,385808,1,1 ,23,1021,385816,1,1 ,23,1021,385824,1,1 ,20,20612,13493026,12,0 ,23,1021,385832,1,1 ,23,1021,385840,1,1 ,23,1021,385848,1,1 ,23,1021,385856,1,1 ,20,15497,910146,564,0 ,44,15152,2483012,40,0 ,23,1021,385864,1,1 ,23,1021,385872,1,1 ,23,1021,385880,1,1 ,23,1021,385888,1,1 ,23,1021,385896,1,1 ,23,1021,385904,1,1 ,23,1021,385912,1,1 ,23,1021,385920,1,1 ,20,20613,13493122,104,0 ,17,923,8774532,32,0 ,17,923,7201668,32,0 ,17,923,6677380,32,0 ,45,15153,4580228,24,0 ,23,1021,385928,1,1 ,23,1021,385936,1,1 ,23,1021,385944,1,1 ,23,1021,385952,1,1 ,20,25617,26600354,132,0 ,23,1021,385960,1,1 ,23,1021,385968,1,1 ,23,1021,385976,1,1 ,23,1021,385984,1,1 ,17,923,8250308,24,0 ,17,923,7726020,40,0 ,44,15152,910276,32,0 ,23,1021,385992,1,1 ,23,1021,386000,1,1 ,23,1021,386008,1,1 ,23,1021,386016,1,1 ,20,22871,19784674,296,0 ,23,1021,386024,1,1 ,23,1021,386032,1,1 ,23,1021,386040,1,1 ,23,1021,386048,1,1 ,17,923,10347524,32,0 ,17,923,9823236,24,0 ,23,1021,386056,1,1 ,23,1021,386064,1,1 ,23,1021,386072,1,1 ,23,1021,386080,1,1 ,23,1021,386088,1,1 ,23,1021,386096,1,1 ,23,1021,386104,1,1 ,23,1021,386112,1,1 ,45,15153,5628996,16,0 ,44,15152,3007556,104,0 ,45,15153,4580420,40,0 ,23,1021,386120,1,1 ,23,1021,386128,1,1 ,23,1021,386136,1,1 ,23,1021,386144,1,1 ,20,26025,27649122,492,0 ,23,1021,386152,1,1 ,23,1021,386160,1,1 ,23,1021,386168,1,1 ,23,1021,386176,1,1 ,17,923,8774788,32,0 ,17,923,7201924,24,0 ,17,923,6677636,24,0 ,44,15152,2483332,56,0 ,45,15153,5104772,32,0 ,17,923,8250500,24,0 ,23,1021,386184,1,1 ,23,1021,386192,1,1 ,23,1021,386200,1,1 ,23,1021,386208,1,1 ,23,1021,386216,1,1 ,23,1021,386224,1,1 ,23,1021,386232,1,1 ,23,1021,386240,1,1 ,17,923,9823428,32,0 ,44,15152,910532,32,0 ,45,15153,5629124,80,0 ,23,1021,386248,1,1 ,23,1021,386256,1,1 ,23,1021,386264,1,1 ,23,1021,386272,1,1 ,23,1021,386280,1,1 ,23,1021,386288,1,1 ,23,1021,386296,1,1 ,23,1021,386304,1,1 ,17,923,10347780,24,0 ,17,923,7726340,48,0 ,23,1021,386312,1,1 ,23,1021,386320,1,1 ,23,1021,386328,1,1 ,23,1021,386336,1,1 ,23,1021,386344,1,1 ,23,1021,386352,1,1 ,23,1021,386360,1,1 ,23,1021,386368,1,1 ,17,923,8250692,24,0 ,17,923,7202116,40,0 ,17,923,6677828,24,0 ,44,15152,1434948,112,0 ,23,1021,386376,1,1 ,23,1021,386384,1,1 ,23,1021,386392,1,1 ,23,1021,386400,1,1 ,23,1021,386408,1,1 ,23,1021,386416,1,1 ,23,1021,386424,1,1 ,23,1021,386432,1,1 ,17,923,9299332,40,0 ,45,15153,4056452,16,0 ,45,15153,4580740,56,0 ,45,15153,5105028,32,0 ,17,923,8775044,32,0 ,23,1021,386440,1,1 ,23,1021,386448,1,1 ,23,1021,386456,1,1 ,23,1021,386464,1,1 ,23,1021,386472,1,1 ,23,1021,386480,1,1 ,23,1021,386488,1,1 ,23,1021,386496,1,1 ,17,923,10347972,24,0 ,44,15152,910788,24,0 ,17,923,9823684,40,0 ,23,1021,386504,1,1 ,23,1021,386512,1,1 ,23,1021,386520,1,1 ,23,1021,386528,1,1 ,20,17229,5105122,88,0 ,23,1021,386536,1,1 ,23,1021,386544,1,1 ,23,1021,386552,1,1 ,23,1021,386560,1,1 ,17,923,8250884,24,0 ,17,923,6678020,32,0 ,45,15153,4056580,16,0 ,23,1021,386568,1,1 ,23,1021,386576,1,1 ,23,1021,386584,1,1 ,23,1021,386592,1,1 ,23,1021,386600,1,1 ,23,1021,386608,1,1 ,23,1021,386616,1,1 ,23,1021,386624,1,1 ,20,25789,27125314,452,0 ,44,15152,2483780,32,0 ,23,1021,386632,1,1 ,23,1021,386640,1,1 ,23,1021,386648,1,1 ,23,1021,386656,1,1 ,20,17454,5629538,116,0 ,23,1021,386664,1,1 ,23,1021,386672,1,1 ,23,1021,386680,1,1 ,23,1021,386688,1,1 ,17,923,10348164,32,0 ,17,923,7726724,40,0 ,17,923,7202436,24,0 ,44,15152,910980,88,0 ,45,15153,4056708,24,0 ,45,15153,5105284,32,0 ,17,923,8775300,32,0 ,23,1021,386696,1,1 ,23,1021,386704,1,1 ,23,1021,386712,1,1 ,23,1021,386720,1,1 ,23,1021,386728,1,1 ,23,1021,386736,1,1 ,23,1021,386744,1,1 ,23,1021,386752,1,1 ,20,20614,13493954,80,0 ,17,923,9299652,32,0 ,17,923,8251076,24,0 ,23,1021,386760,1,1 ,23,1021,386768,1,1 ,23,1021,386776,1,1 ,23,1021,386784,1,1 ,23,1021,386792,1,1 ,23,1021,386800,1,1 ,23,1021,386808,1,1 ,23,1021,386816,1,1 ,20,26487,29222658,412,0 ,17,923,9824004,48,0 ,17,923,6678276,32,0 ,23,1021,386824,1,1 ,23,1021,386832,1,1 ,23,1021,386840,1,1 ,23,1021,386848,1,1 ,23,1021,386856,1,1 ,23,1021,386864,1,1 ,23,1021,386872,1,1 ,23,1021,386880,1,1 ,45,15153,5629764,24,0 ,17,923,7202628,32,0 ,44,15152,2484036,24,0 ,45,15153,4056900,24,0 ,45,15153,4581188,40,0 ,23,1021,386888,1,1 ,23,1021,386896,1,1 ,23,1021,386904,1,1 ,23,1021,386912,1,1 ,23,1021,386920,1,1 ,23,1021,386928,1,1 ,23,1021,386936,1,1 ,23,1021,386944,1,1 ,17,923,10348420,24,0 ,44,15152,3008388,24,0 ,45,15153,5105540,16,0 ,17,923,8251268,24,0 ,17,923,8775556,32,0 ,23,1021,386952,1,1 ,23,1021,386960,1,1 ,23,1021,386968,1,1 ,23,1021,386976,1,1 ,23,1021,386984,1,1 ,23,1021,386992,1,1 ,23,1021,387000,1,1 ,23,1021,387008,1,1 ,20,25618,26601410,280,0 ,17,923,9299908,24,0 ,17,923,7727044,48,0 ,23,1021,387016,1,1 ,23,1021,387024,1,1 ,23,1021,387032,1,1 ,23,1021,387040,1,1 ,23,1021,387048,1,1 ,23,1021,387056,1,1 ,23,1021,387064,1,1 ,23,1021,387072,1,1 ,20,19562,10348546,84,0 ,20,15744,1435650,40,0 ,45,15153,5629956,32,0 ,17,923,6678532,32,0 ,44,15152,2484228,32,0 ,45,15153,4057092,32,0 ,45,15153,5105668,16,0 ,23,1021,387080,1,1 ,23,1021,387088,1,1 ,23,1021,387096,1,1 ,23,1021,387104,1,1 ,23,1021,387112,1,1 ,23,1021,387120,1,1 ,23,1021,387128,1,1 ,23,1021,387136,1,1 ,20,24779,24504386,408,0 ,17,923,10348612,32,0 ,17,923,7202884,32,0 ,44,15152,3008580,24,0 ,17,923,8251460,40,0 ,23,1021,387144,1,1 ,23,1021,387152,1,1 ,23,1021,387160,1,1 ,23,1021,387168,1,1 ,23,1021,387176,1,1 ,23,1021,387184,1,1 ,23,1021,387192,1,1 ,23,1021,387200,1,1 ,20,24079,22407298,284,0 ,17,923,9824388,32,0 ,45,15153,4581508,16,0 ,45,15153,5105796,16,0 ,17,923,8775812,32,0 ,17,923,9300100,32,0 ,23,1021,387208,1,1 ,23,1021,387216,1,1 ,23,1021,387224,1,1 ,23,1021,387232,1,1 ,20,17230,5105826,140,0 ,23,1021,387240,1,1 ,23,1021,387248,1,1 ,23,1021,387256,1,1 ,23,1021,387264,1,1 ,44,15152,1435844,56,0 ,23,1021,387272,1,1 ,23,1021,387280,1,1 ,23,1021,387288,1,1 ,23,1021,387296,1,1 ,23,1021,387304,1,1 ,23,1021,387312,1,1 ,23,1021,387320,1,1 ,23,1021,387328,1,1 ,45,15153,5630212,16,0 ,17,923,6678788,32,0 ,44,15152,3008772,24,0 ,44,15152,2484484,24,0 ,45,15153,4057348,24,0 ,45,15153,4581636,16,0 ,45,15153,5105924,16,0 ,23,1021,387336,1,1 ,23,1021,387344,1,1 ,23,1021,387352,1,1 ,23,1021,387360,1,1 ,23,1021,387368,1,1 ,23,1021,387376,1,1 ,23,1021,387384,1,1 ,23,1021,387392,1,1 ,20,22159,18213186,288,0 ,20,15745,1435970,40,0 ,20,20615,13494594,12,0 ,20,21653,16640322,12,0 ,17,923,10348868,40,0 ,17,923,7727428,48,0 ,17,923,7203140,40,0 ,44,15152,911684,224,0 ,23,1021,387400,1,1 ,23,1021,387408,1,1 ,23,1021,387416,1,1 ,23,1021,387424,1,1 ,20,18809,8776034,340,0 ,23,1021,387432,1,1 ,23,1021,387440,1,1 ,23,1021,387448,1,1 ,23,1021,387456,1,1 ,17,923,9824644,40,0 ,45,15153,4581764,24,0 ,45,15153,5106052,32,0 ,45,15153,5630340,32,0 ,17,923,8251780,48,0 ,17,923,8776068,32,0 ,17,923,9300356,40,0 ,23,1021,387464,1,1 ,23,1021,387472,1,1 ,23,1021,387480,1,1 ,23,1021,387488,1,1 ,20,21654,16640418,56,0 ,20,20616,13494690,104,0 ,23,1021,387496,1,1 ,23,1021,387504,1,1 ,23,1021,387512,1,1 ,23,1021,387520,1,1 ,45,15153,4057540,72,0 ,44,15152,3008964,24,0 ,44,15152,2484676,16,0 ,23,1021,387528,1,1 ,23,1021,387536,1,1 ,23,1021,387544,1,1 ,23,1021,387552,1,1 ,23,1021,387560,1,1 ,23,1021,387568,1,1 ,23,1021,387576,1,1 ,23,1021,387584,1,1 ,20,17867,6679042,156,0 ,20,25059,25029122,348,0 ,20,17455,5630466,200,0 ,17,923,6679044,24,0 ,23,1021,387592,1,1 ,23,1021,387600,1,1 ,23,1021,387608,1,1 ,23,1021,387616,1,1 ,20,20358,12970530,160,0 ,23,1021,387624,1,1 ,23,1021,387632,1,1 ,23,1021,387640,1,1 ,23,1021,387648,1,1 ,45,15153,4581956,32,0 ,44,15152,2484804,24,0 ,23,1021,387656,1,1 ,23,1021,387664,1,1 ,23,1021,387672,1,1 ,23,1021,387680,1,1 ,20,18332,7727714,40,0 ,23,1021,387688,1,1 ,23,1021,387696,1,1 ,23,1021,387704,1,1 ,23,1021,387712,1,1 ,20,15746,1436290,136,0 ,17,923,10349188,24,0 ,17,923,7203460,24,0 ,44,15152,3009156,24,0 ,44,15152,1436292,96,0 ,45,15153,5106308,24,0 ,45,15153,5630596,24,0 ,17,923,8776324,32,0 ,23,1021,387720,1,1 ,23,1021,387728,1,1 ,23,1021,387736,1,1 ,23,1021,387744,1,1 ,20,19563,10349218,140,0 ,23,1021,387752,1,1 ,23,1021,387760,1,1 ,23,1021,387768,1,1 ,23,1021,387776,1,1 ,17,923,9824964,24,0 ,17,923,7727812,48,0 ,17,923,6679236,40,0 ,44,15152,387780,40,0 ,17,923,9300676,24,0 ,23,1021,387784,1,1 ,23,1021,387792,1,1 ,23,1021,387800,1,1 ,23,1021,387808,1,1 ,23,1021,387816,1,1 ,23,1021,387824,1,1 ,23,1021,387832,1,1 ,23,1021,387840,1,1 ,17,923,8252164,40,0 ,44,15152,2484996,24,0 ,23,1021,387848,1,1 ,23,1021,387856,1,1 ,23,1021,387864,1,1 ,23,1021,387872,1,1 ,23,1021,387880,1,1 ,23,1021,387888,1,1 ,23,1021,387896,1,1 ,23,1021,387904,1,1 ,17,923,10349380,24,0 ,17,923,7203652,24,0 ,44,15152,3009348,24,0 ,45,15153,4582212,24,0 ,45,15153,5106500,24,0 ,45,15153,5630788,16,0 ,23,1021,387912,1,1 ,23,1021,387920,1,1 ,23,1021,387928,1,1 ,23,1021,387936,1,1 ,20,21655,16640866,544,0 ,23,1021,387944,1,1 ,23,1021,387952,1,1 ,23,1021,387960,1,1 ,23,1021,387968,1,1 ,20,24614,23980930,1040,0 ,17,923,9825156,32,0 ,17,923,8776580,32,0 ,17,923,9300868,40,0 ,23,1021,387976,1,1 ,23,1021,387984,1,1 ,23,1021,387992,1,1 ,23,1021,388000,1,1 ,20,18333,7728034,120,0 ,23,1021,388008,1,1 ,23,1021,388016,1,1 ,23,1021,388024,1,1 ,23,1021,388032,1,1 ,20,23452,20835266,904,0 ,45,15153,5630916,64,0 ,44,15152,2485188,24,0 ,23,1021,388040,1,1 ,23,1021,388048,1,1 ,23,1021,388056,1,1 ,23,1021,388064,1,1 ,23,1021,388072,1,1 ,23,1021,388080,1,1 ,23,1021,388088,1,1 ,23,1021,388096,1,1 ,17,923,10349572,24,0 ,17,923,7203844,48,0 ,17,923,6679556,32,0 ,44,15152,3009540,24,0 ,44,15152,388100,72,0 ,45,15153,4058116,112,0 ,45,15153,4582404,48,0 ,45,15153,5106692,24,0 ,23,1021,388104,1,1 ,23,1021,388112,1,1 ,23,1021,388120,1,1 ,23,1021,388128,1,1 ,23,1021,388136,1,1 ,23,1021,388144,1,1 ,23,1021,388152,1,1 ,23,1021,388160,1,1 ,17,923,8252484,48,0 ,17,923,7728196,40,0 ,23,1021,388168,1,1 ,23,1021,388176,1,1 ,23,1021,388184,1,1 ,23,1021,388192,1,1 ,20,23166,20311138,272,0 ,23,1021,388200,1,1 ,23,1021,388208,1,1 ,23,1021,388216,1,1 ,23,1021,388224,1,1 ,20,16533,3533954,164,0 ,17,923,9825412,32,0 ,44,15152,2485380,112,0 ,17,923,8776836,24,0 ,23,1021,388232,1,1 ,23,1021,388240,1,1 ,23,1021,388248,1,1 ,23,1021,388256,1,1 ,23,1021,388264,1,1 ,23,1021,388272,1,1 ,23,1021,388280,1,1 ,23,1021,388288,1,1 ,20,20181,11922626,756,0 ,17,923,10349764,32,0 ,44,15152,3009732,40,0 ,45,15153,5106884,24,0 ,17,923,9301188,32,0 ,23,1021,388296,1,1 ,23,1021,388304,1,1 ,23,1021,388312,1,1 ,23,1021,388320,1,1 ,20,20617,13495522,80,0 ,23,1021,388328,1,1 ,23,1021,388336,1,1 ,23,1021,388344,1,1 ,23,1021,388352,1,1 ,20,17231,5106946,88,0 ,17,923,6679812,32,0 ,23,1021,388360,1,1 ,23,1021,388368,1,1 ,23,1021,388376,1,1 ,23,1021,388384,1,1 ,20,22872,19787042,132,0 ,23,1021,388392,1,1 ,23,1021,388400,1,1 ,23,1021,388408,1,1 ,23,1021,388416,1,1 ,17,923,8777028,56,0 ,23,1021,388424,1,1 ,23,1021,388432,1,1 ,23,1021,388440,1,1 ,23,1021,388448,1,1 ,23,1021,388456,1,1 ,23,1021,388464,1,1 ,23,1021,388472,1,1 ,23,1021,388480,1,1 ,17,923,9825668,32,0 ,17,923,7728516,16,0 ,17,923,7204228,40,0 ,44,15152,1437060,104,0 ,45,15153,4582788,16,0 ,45,15153,5107076,32,0 ,23,1021,388488,1,1 ,23,1021,388496,1,1 ,23,1021,388504,1,1 ,23,1021,388512,1,1 ,23,1021,388520,1,1 ,23,1021,388528,1,1 ,23,1021,388536,1,1 ,23,1021,388544,1,1 ,17,923,10350020,32,0 ,45,15153,5631428,40,0 ,17,923,8252868,40,0 ,17,923,9301444,40,0 ,23,1021,388552,1,1 ,23,1021,388560,1,1 ,23,1021,388568,1,1 ,23,1021,388576,1,1 ,23,1021,388584,1,1 ,23,1021,388592,1,1 ,23,1021,388600,1,1 ,23,1021,388608,1,1 ,20,16851,4058626,124,0 ,45,15153,4582916,24,0 ,17,923,7728644,40,0 ,17,923,6680068,32,0 ,44,15152,3010052,24,0 ,44,15152,1961476,400,0 ,23,1021,388616,1,1 ,23,1021,388624,1,1 ,23,1021,388632,1,1 ,23,1021,388640,1,1 ,23,1021,388648,1,1 ,23,1021,388656,1,1 ,23,1021,388664,1,1 ,23,1021,388672,1,1 ,20,21065,15593026,448,0 ,44,15152,388676,80,0 ,23,1021,388680,1,1 ,23,1021,388688,1,1 ,23,1021,388696,1,1 ,23,1021,388704,1,1 ,23,1021,388712,1,1 ,23,1021,388720,1,1 ,23,1021,388728,1,1 ,23,1021,388736,1,1 ,17,923,9825924,24,0 ,45,15153,5107332,32,0 ,23,1021,388744,1,1 ,23,1021,388752,1,1 ,23,1021,388760,1,1 ,23,1021,388768,1,1 ,23,1021,388776,1,1 ,23,1021,388784,1,1 ,23,1021,388792,1,1 ,23,1021,388800,1,1 ,20,15747,1437378,124,0 ,17,923,10350276,24,0 ,17,923,7204548,24,0 ,44,15152,3010244,24,0 ,45,15153,4583108,32,0 ,23,1021,388808,1,1 ,23,1021,388816,1,1 ,23,1021,388824,1,1 ,23,1021,388832,1,1 ,20,17868,6680290,536,0 ,23,1021,388840,1,1 ,23,1021,388848,1,1 ,23,1021,388856,1,1 ,23,1021,388864,1,1 ,20,19564,10350338,84,0 ,20,16210,3010306,144,0 ,17,923,9301764,40,0 ,17,923,6680324,32,0 ,45,15153,5631748,24,0 ,17,923,8253188,32,0 ,17,923,8777476,56,0 ,23,1021,388872,1,1 ,23,1021,388880,1,1 ,23,1021,388888,1,1 ,23,1021,388896,1,1 ,20,20359,12971810,328,0 ,23,1021,388904,1,1 ,23,1021,388912,1,1 ,23,1021,388920,1,1 ,23,1021,388928,1,1 ,17,923,9826116,32,0 ,17,923,7728964,40,0 ,23,1021,388936,1,1 ,23,1021,388944,1,1 ,23,1021,388952,1,1 ,23,1021,388960,1,1 ,20,20618,13496162,12,0 ,20,18334,7728994,168,0 ,23,1021,388968,1,1 ,23,1021,388976,1,1 ,23,1021,388984,1,1 ,23,1021,388992,1,1 ,20,22437,18739074,532,0 ,17,923,10350468,24,0 ,17,923,7204740,40,0 ,44,15152,3010436,24,0 ,45,15153,4059012,24,0 ,45,15153,5107588,24,0 ,23,1021,389000,1,1 ,23,1021,389008,1,1 ,23,1021,389016,1,1 ,23,1021,389024,1,1 ,23,1021,389032,1,1 ,23,1021,389040,1,1 ,23,1021,389048,1,1 ,23,1021,389056,1,1 ,20,21420,16117698,240,0 ,20,17232,5107650,52,0 ,20,20619,13496258,80,0 ,45,15153,5631940,24,0 ,45,15153,4583364,16,0 ,23,1021,389064,1,1 ,23,1021,389072,1,1 ,23,1021,389080,1,1 ,23,1021,389088,1,1 ,23,1021,389096,1,1 ,23,1021,389104,1,1 ,23,1021,389112,1,1 ,23,1021,389120,1,1 ,20,25269,25554946,24,0 ,17,923,8253444,40,0 ,17,923,6680580,40,0 ,44,15152,2486276,96,0 ,23,1021,389128,1,1 ,23,1021,389136,1,1 ,23,1021,389144,1,1 ,23,1021,389152,1,1 ,23,1021,389160,1,1 ,23,1021,389168,1,1 ,23,1021,389176,1,1 ,23,1021,389184,1,1 ,20,17456,5632066,12,0 ,17,923,10350660,40,0 ,44,15152,3010628,24,0 ,44,15152,913476,48,0 ,45,15153,4059204,16,0 ,45,15153,4583492,40,0 ,45,15153,5107780,16,0 ,17,923,9302084,32,0 ,17,923,9826372,24,0 ,23,1021,389192,1,1 ,23,1021,389200,1,1 ,23,1021,389208,1,1 ,23,1021,389216,1,1 ,23,1021,389224,1,1 ,23,1021,389232,1,1 ,23,1021,389240,1,1 ,23,1021,389248,1,1 ,20,22638,19263618,1028,0 ,20,25619,26603650,172,0 ,45,15153,5632132,16,0 ,17,923,7729284,40,0 ,23,1021,389256,1,1 ,23,1021,389264,1,1 ,23,1021,389272,1,1 ,23,1021,389280,1,1 ,20,17457,5632162,60,0 ,23,1021,389288,1,1 ,23,1021,389296,1,1 ,23,1021,389304,1,1 ,23,1021,389312,1,1 ,20,25270,25555138,232,0 ,17,923,8777924,32,0 ,17,923,7205060,24,0 ,44,15152,1437892,24,0 ,44,15152,389316,64,0 ,45,15153,4059332,72,0 ,45,15153,5107908,24,0 ,23,1021,389320,1,1 ,23,1021,389328,1,1 ,23,1021,389336,1,1 ,23,1021,389344,1,1 ,23,1021,389352,1,1 ,23,1021,389360,1,1 ,23,1021,389368,1,1 ,23,1021,389376,1,1 ,17,923,9826564,40,0 ,44,15152,3010820,24,0 ,45,15153,5632260,16,0 ,23,1021,389384,1,1 ,23,1021,389392,1,1 ,23,1021,389400,1,1 ,23,1021,389408,1,1 ,23,1021,389416,1,1 ,23,1021,389424,1,1 ,23,1021,389432,1,1 ,23,1021,389440,1,1 ,20,22873,19788098,148,0 ,17,923,9302340,32,0 ,17,923,6680900,40,0 ,17,923,8253764,40,0 ,23,1021,389448,1,1 ,23,1021,389456,1,1 ,23,1021,389464,1,1 ,23,1021,389472,1,1 ,20,24080,22409570,160,0 ,20,17233,5108066,12,0 ,20,21895,17166690,208,0 ,20,21975,17690978,76,0 ,23,1021,389480,1,1 ,23,1021,389488,1,1 ,23,1021,389496,1,1 ,23,1021,389504,1,1 ,17,923,10350980,24,0 ,17,923,7205252,48,0 ,44,15152,1438084,120,0 ,45,15153,4583812,16,0 ,45,15153,5108100,16,0 ,45,15153,5632388,24,0 ,23,1021,389512,1,1 ,23,1021,389520,1,1 ,23,1021,389528,1,1 ,23,1021,389536,1,1 ,20,19565,10351010,108,0 ,20,16534,3535266,100,0 ,23,1021,389544,1,1 ,23,1021,389552,1,1 ,23,1021,389560,1,1 ,23,1021,389568,1,1 ,20,17234,5108162,60,0 ,17,923,8778180,40,0 ,17,923,7729604,32,0 ,44,15152,3011012,24,0 ,44,15152,913860,24,0 ,23,1021,389576,1,1 ,23,1021,389584,1,1 ,23,1021,389592,1,1 ,23,1021,389600,1,1 ,20,16852,4059618,1144,0 ,23,1021,389608,1,1 ,23,1021,389616,1,1 ,23,1021,389624,1,1 ,23,1021,389632,1,1 ,45,15153,5108228,24,0 ,45,15153,4583940,32,0 ,23,1021,389640,1,1 ,23,1021,389648,1,1 ,23,1021,389656,1,1 ,23,1021,389664,1,1 ,20,19040,9302562,80,0 ,23,1021,389672,2,1 ,23,1021,389680,1,1 ,23,1021,389688,1,1 ,23,1021,389696,1,1 ,20,22160,18215490,180,0 ,20,20620,13496898,12,0 ,17,923,10351172,32,0 ,45,15153,5632580,32,0 ,17,923,9302596,24,0 ,17,923,9826884,40,0 ,23,1021,389704,1,1 ,23,1021,389712,1,1 ,23,1021,389720,1,1 ,23,1021,389728,1,1 ,23,1021,389736,1,1 ,23,1021,389744,1,1 ,23,1021,389752,1,1 ,23,1021,389760,1,1 ,20,17458,5632642,120,0 ,17,923,8254084,32,0 ,17,923,6681220,40,0 ,44,15152,3011204,24,0 ,44,15152,914052,16,0 ,23,1021,389768,1,1 ,23,1021,389776,1,1 ,23,1021,389784,1,1 ,23,1021,389792,1,1 ,20,20621,13496994,188,0 ,20,15748,1438370,560,0 ,20,20096,11399842,420,0 ,23,1021,389800,1,1 ,10,1022,389808,11,1 ,10,1022,389816,11,1 ,10,1022,389824,11,1 ,45,15153,5108420,24,0 ,17,923,7729860,24,0 ,44,15152,389828,24,0 ,10,1022,389832,10,1 ,10,1022,389840,11,1 ,10,1022,389848,11,1 ,10,1022,389856,11,1 ,10,1022,389864,11,1 ,10,1022,389872,11,1 ,10,1022,389880,11,1 ,10,1022,389888,11,1 ,17,923,9302788,24,0 ,17,923,7205636,24,0 ,44,15152,2487044,24,0 ,44,15152,914180,16,0 ,45,15153,4059908,40,0 ,45,15153,4584196,64,0 ,17,923,8778500,40,0 ,10,1022,389896,11,1 ,10,1022,389904,17,1 ,10,1022,389912,11,1 ,10,1022,389920,11,1 ,10,1022,389928,11,1 ,10,1022,389936,11,1 ,10,1022,389944,11,1 ,10,1022,389952,11,1 ,17,923,10351428,24,0 ,44,15152,3011396,24,0 ,45,15153,5632836,16,0 ,10,1022,389960,11,1 ,10,1022,389968,11,1 ,10,1022,389976,11,1 ,10,1022,389984,11,1 ,10,1022,389992,11,1 ,10,1022,390000,11,1 ,10,1022,390008,11,1 ,10,1022,390016,11,1 ,20,19252,9827202,104,0 ,20,16211,3011458,12,0 ,17,923,9827204,32,0 ,17,923,7730052,24,0 ,44,15152,390020,16,0 ,44,15152,914308,568,0 ,45,15153,5108612,24,0 ,17,923,8254340,48,0 ,10,1022,390024,11,1 ,10,1022,390032,11,1 ,10,1022,390040,11,1 ,10,1022,390048,11,1 ,20,17235,5108642,184,0 ,10,1022,390056,17,1 ,10,1022,390064,11,1 ,10,1022,390072,11,1 ,10,1022,390080,11,1 ,20,21976,17691586,340,0 ,20,26026,27653058,408,0 ,17,923,9302980,56,0 ,17,923,7205828,40,0 ,17,923,6681540,40,0 ,44,15152,2487236,24,0 ,45,15153,5632964,16,0 ,10,1022,390088,17,1 ,10,1022,390096,11,1 ,10,1022,390104,11,1 ,10,1022,390112,11,1 ,20,16212,3011554,80,0 ,20,26488,29225954,208,0 ,10,1022,390120,11,1 ,10,1022,390128,11,1 ,10,1022,390136,11,1 ,10,1022,390144,11,1 ,20,18810,8778754,12,0 ,17,923,10351620,32,0 ,44,15152,3011588,24,0 ,44,15152,390148,88,0 ,10,1022,390152,17,1 ,10,1022,390160,17,1 ,10,1022,390168,11,1 ,10,1022,390176,11,1 ,10,1022,390184,11,1 ,10,1022,390192,17,1 ,10,1022,390200,10,1 ,10,1022,390208,11,1 ,17,923,8778820,40,0 ,17,923,7730244,48,0 ,45,15153,4060228,16,0 ,45,15153,5108804,24,0 ,45,15153,5633092,24,0 ,10,1022,390216,11,1 ,10,1022,390224,11,1 ,10,1022,390232,11,1 ,10,1022,390240,11,1 ,20,18811,8778850,336,0 ,20,25790,27128930,300,0 ,10,1022,390248,11,1 ,10,1022,390256,23,1 ,10,1022,390264,11,1 ,10,1022,390272,11,1 ,17,923,9827460,32,0 ,44,15152,2487428,120,0 ,10,1022,390280,11,1 ,10,1022,390288,11,1 ,10,1022,390296,11,1 ,10,1022,390304,11,1 ,20,19041,9303202,204,0 ,20,18335,7730338,1112,0 ,10,1022,390312,11,1 ,10,1022,390320,11,1 ,10,1022,390328,11,1 ,10,1022,390336,11,1 ,20,16535,3536066,80,0 ,45,15153,4060356,16,0 ,44,15152,3011780,24,0 ,10,1022,390344,11,1 ,10,1022,390352,11,1 ,10,1022,390360,10,1 ,10,1022,390368,11,1 ,20,23167,20313314,12,0 ,20,25060,25031906,1064,0 ,20,15498,914658,300,0 ,10,1022,390376,11,1 ,10,1022,390384,11,1 ,10,1022,390392,11,1 ,10,1022,390400,11,1 ,20,19566,10351874,320,0 ,20,24780,24507650,104,0 ,17,923,10351876,32,0 ,17,923,7206148,24,0 ,17,923,6681860,40,0 ,45,15153,4584708,24,0 ,45,15153,5108996,24,0 ,45,15153,5633284,16,0 ,17,923,8254724,40,0 ,10,1022,390408,11,1 ,10,1022,390416,11,1 ,10,1022,390424,11,1 ,10,1022,390432,11,1 ,10,1022,390440,11,1 ,10,1022,390448,11,1 ,10,1022,390456,11,1 ,10,1022,390464,11,1 ,20,23168,20313410,92,0 ,20,17647,6157634,620,0 ,45,15153,4060484,16,0 ,44,15152,1439044,96,0 ,10,1022,390472,11,1 ,10,1022,390480,11,1 ,10,1022,390488,11,1 ,10,1022,390496,11,1 ,20,20810,14021986,2936,0 ,10,1022,390504,11,1 ,10,1022,390512,11,1 ,10,1022,390520,11,1 ,10,1022,390528,11,1 ,17,923,9827716,40,0 ,44,15152,3011972,24,0 ,45,15153,5633412,40,0 ,17,923,8779140,24,0 ,17,923,9303428,24,0 ,10,1022,390536,11,1 ,10,1022,390544,11,1 ,10,1022,390552,11,1 ,10,1022,390560,11,1 ,10,1022,390568,11,1 ,10,1022,390576,11,1 ,10,1022,390584,11,1 ,10,1022,390592,11,1 ,45,15153,5109188,24,0 ,17,923,7730628,56,0 ,17,923,7206340,24,0 ,45,15153,4060612,16,0 ,45,15153,4584900,40,0 ,10,1022,390600,11,1 ,10,1022,390608,17,1 ,10,1022,390616,11,1 ,10,1022,390624,11,1 ,20,22874,19789282,184,0 ,20,25620,26605026,976,0 ,10,1022,390632,11,1 ,10,1022,390640,11,1 ,10,1022,390648,11,1 ,10,1022,390656,11,1 ,20,26207,28177922,2704,0 ,17,923,10352132,24,0 ,10,1022,390664,11,1 ,10,1022,390672,11,1 ,10,1022,390680,17,1 ,10,1022,390688,11,1 ,10,1022,390696,11,1 ,10,1022,390704,11,1 ,10,1022,390712,11,1 ,10,1022,390720,11,1 ,20,17459,5633602,120,0 ,17,923,9303620,32,0 ,17,923,6682180,40,0 ,44,15152,3012164,24,0 ,45,15153,4060740,32,0 ,17,923,8255044,40,0 ,17,923,8779332,32,0 ,10,1022,390728,11,1 ,10,1022,390736,11,1 ,10,1022,390744,11,1 ,10,1022,390752,11,1 ,20,24081,22410850,716,0 ,20,16213,3012194,596,0 ,10,1022,390760,11,1 ,10,1022,390768,11,1 ,10,1022,390776,11,1 ,10,1022,390784,11,1 ,45,15153,5109380,16,0 ,17,923,7206532,24,0 ,10,1022,390792,11,1 ,10,1022,390800,11,1 ,10,1022,390808,11,1 ,10,1022,390816,11,1 ,10,1022,390824,11,1 ,10,1022,390832,17,1 ,10,1022,390840,11,1 ,10,1022,390848,11,1 ,20,19253,9828034,92,0 ,17,923,10352324,32,0 ,44,15152,390852,72,0 ,45,15153,5633732,24,0 ,17,923,9828036,32,0 ,10,1022,390856,11,1 ,10,1022,390864,11,1 ,10,1022,390872,11,1 ,10,1022,390880,11,1 ,10,1022,390888,17,1 ,10,1022,390896,17,1 ,10,1022,390904,11,1 ,10,1022,390912,11,1 ,45,15153,5109508,32,0 ,44,15152,3012356,24,0 ,45,15153,4585220,24,0 ,10,1022,390920,11,1 ,10,1022,390928,11,1 ,10,1022,390936,17,1 ,10,1022,390944,11,1 ,10,1022,390952,11,1 ,10,1022,390960,11,1 ,10,1022,390968,11,1 ,10,1022,390976,11,1 ,20,21421,16119618,12,0 ,20,16536,3536706,232,0 ,17,923,9303876,24,0 ,17,923,7206724,32,0 ,45,15153,4060996,32,0 ,17,923,8779588,32,0 ,10,1022,390984,11,1 ,10,1022,390992,11,1 ,10,1022,391000,11,1 ,10,1022,391008,23,1 ,10,1022,391016,11,1 ,10,1022,391024,17,1 ,10,1022,391032,11,1 ,10,1022,391040,11,1 ,17,923,8255364,40,0 ,17,923,7731076,32,0 ,17,923,6682500,40,0 ,45,15153,5633924,24,0 ,10,1022,391048,11,1 ,10,1022,391056,11,1 ,10,1022,391064,11,1 ,10,1022,391072,11,1 ,20,21422,16119714,20,0 ,10,1022,391080,11,1 ,10,1022,391088,11,1 ,10,1022,391096,11,1 ,10,1022,391104,11,1 ,17,923,10352580,24,0 ,44,15152,3012548,24,0 ,45,15153,4585412,16,0 ,17,923,9828292,40,0 ,10,1022,391112,11,1 ,10,1022,391120,11,1 ,10,1022,391128,11,1 ,33,4631,391136,5,2 ,20,22161,18216930,284,0 ,20,21896,17168354,572,0 ,33,5293,391144,5,2 ,33,1440,391152,5,2 ,33,1509,391160,5,2 ,33,9424,391168,5,2 ,20,25271,25556994,224,0 ,17,923,9304068,48,0 ,45,15153,5109764,24,0 ,33,522,391176,4,2 ,33,2337,391184,5,2 ,33,1037,391192,5,2 ,33,1770,391200,5,2 ,20,23169,20314146,100,0 ,33,11056,391208,5,2 ,33,1422,391216,7,2 ,33,1034,391224,5,2 ,33,1035,391232,5,2 ,20,21423,16119874,12,0 ,20,24781,24508482,208,0 ,17,923,8779844,32,0 ,17,923,7206980,32,0 ,44,15152,2488388,24,0 ,44,15152,1439812,24,0 ,45,15153,4061252,24,0 ,45,15153,4585540,32,0 ,45,15153,5634116,24,0 ,33,623,391240,4,2 ,33,1118,391248,5,2 ,33,2732,391256,5,2 ,33,1035,391264,5,2 ,33,522,391272,4,2 ,33,1562,391280,5,2 ,33,1748,391288,5,2 ,33,1707,391296,5,2 ,20,20622,13498498,80,0 ,17,923,10352772,24,0 ,17,923,7731332,24,0 ,44,15152,3012740,24,0 ,33,10380,391304,5,2 ,33,1771,391312,5,2 ,33,10405,391320,5,2 ,33,10394,391328,5,2 ,20,21424,16119970,12,0 ,33,522,391336,4,2 ,33,522,391344,4,2 ,33,1648,391352,5,2 ,33,7403,391360,5,2 ,17,923,8255684,24,0 ,17,923,6682820,40,0 ,45,15153,5109956,24,0 ,33,522,391368,4,2 ,33,623,391376,4,2 ,33,522,391384,4,2 ,33,522,391392,4,2 ,20,23832,21887202,152,0 ,33,522,391400,4,2 ,34,9488,391408,11,4 ,34,9476,391416,11,4 ,34,1771,391424,11,4 ,20,21425,16120066,1268,0 ,17,923,9828612,32,0 ,44,15152,2488580,24,0 ,44,15152,1440004,64,0 ,44,15152,391428,24,0 ,45,15153,4061444,56,0 ,45,15153,5634308,16,0 ,34,328,391432,10,4 ,34,812,391440,10,4 ,35,15002,391448,1,1 ,35,15002,391456,1,1 ,35,15002,391464,1,1 ,35,15002,391472,1,1 ,35,15002,391480,1,1 ,35,15002,391488,1,1 ,17,923,10352964,24,0 ,17,923,7731524,72,0 ,17,923,7207236,40,0 ,44,15152,3012932,24,0 ,45,15153,4585796,24,0 ,17,923,8780100,32,0 ,35,15002,391496,1,1 ,35,15002,391504,1,1 ,35,15002,391512,1,1 ,35,15002,391520,1,1 ,20,20360,12974434,80,0 ,20,17236,5110114,392,0 ,35,15002,391528,1,1 ,35,15002,391536,1,1 ,35,15002,391544,1,1 ,35,15002,391552,1,1 ,17,923,9304452,24,0 ,45,15153,5110148,128,0 ,45,15153,5634436,24,0 ,17,923,8255876,24,0 ,35,15002,391560,1,1 ,35,15002,391568,1,1 ,35,15002,391576,1,1 ,35,15002,391584,1,1 ,20,19254,9828770,104,0 ,35,15002,391592,1,1 ,35,15002,391600,1,1 ,35,15002,391608,1,1 ,35,15002,391616,1,1 ,44,15152,391620,296,0 ,44,15152,2488772,24,0 ,35,15002,391624,1,1 ,35,15002,391632,1,1 ,35,15002,391640,1,1 ,35,15002,391648,1,1 ,35,15002,391656,1,1 ,35,15002,391664,1,1 ,35,15002,391672,1,1 ,35,15002,391680,1,1 ,20,17460,5634562,116,0 ,17,923,10353156,32,0 ,17,923,6683140,32,0 ,44,15152,3013124,24,0 ,45,15153,4585988,24,0 ,17,923,9828868,32,0 ,35,15002,391688,1,1 ,35,15002,391696,1,1 ,35,15002,391704,1,1 ,35,15002,391712,1,1 ,35,15002,391720,1,1 ,35,15002,391728,1,1 ,35,15002,391736,1,1 ,35,15002,391744,1,1 ,17,923,9304644,24,0 ,45,15153,5634628,48,0 ,17,923,8256068,32,0 ,17,923,8780356,56,0 ,35,15002,391752,1,1 ,35,15002,391760,1,1 ,35,15002,391768,1,1 ,35,15002,391776,1,1 ,20,26489,29227618,112,0 ,35,15002,391784,1,1 ,35,15002,391792,1,1 ,35,15002,391800,1,1 ,35,15002,391808,1,1 ,44,15152,1964676,24,0 ,17,923,7207556,32,0 ,44,15152,2488964,48,0 ,35,15002,391816,1,1 ,35,15002,391824,1,1 ,35,15002,391832,1,1 ,35,15002,391840,1,1 ,35,15002,391848,1,1 ,35,15002,391856,1,1 ,35,15002,391864,1,1 ,35,15002,391872,1,1 ,45,15153,4586180,24,0 ,44,15152,3013316,24,0 ,45,15153,4061892,408,0 ,35,15002,391880,1,1 ,35,15002,391888,1,1 ,35,15002,391896,1,1 ,35,15002,391904,1,1 ,35,15002,391912,1,1 ,35,15002,391920,1,1 ,35,15002,391928,1,1 ,35,15002,391936,1,1 ,20,20623,13499138,12,0 ,20,19042,9304834,60,0 ,17,923,10353412,24,0 ,17,923,6683396,48,0 ,44,15152,1440516,280,0 ,17,923,9304836,40,0 ,17,923,9829124,24,0 ,35,15002,391944,1,1 ,35,15002,391952,1,1 ,35,15002,391960,1,1 ,35,15002,391968,1,1 ,35,15002,391976,1,1 ,35,15002,391984,1,1 ,35,15002,391992,1,1 ,35,15002,392000,1,1 ,20,23170,20314946,52,0 ,17,923,8256324,40,0 ,44,15152,1964868,24,0 ,35,15002,392008,1,1 ,35,15002,392016,1,1 ,35,15002,392024,1,1 ,35,15002,392032,1,1 ,20,20624,13499234,1000,0 ,35,15002,392040,1,1 ,35,15002,392048,1,1 ,35,15002,392056,1,1 ,35,15002,392064,1,1 ,45,15153,4586372,16,0 ,17,923,7732100,40,0 ,17,923,7207812,24,0 ,44,15152,3013508,24,0 ,35,15002,392072,1,1 ,35,15002,392080,1,1 ,35,15002,392088,1,1 ,35,15002,392096,1,1 ,20,22875,19790754,144,0 ,35,15002,392104,1,1 ,35,15002,392112,1,1 ,35,15002,392120,1,1 ,35,15002,392128,1,1 ,17,923,10353604,48,0 ,45,15153,5635012,24,0 ,17,923,9829316,32,0 ,35,15002,392136,1,1 ,35,15002,392144,1,1 ,35,15002,392152,1,1 ,35,15002,392160,1,1 ,20,20361,12975074,12,0 ,35,15002,392168,1,1 ,35,15002,392176,1,1 ,35,15002,392184,1,1 ,35,15002,392192,1,1 ,17,923,8780804,24,0 ,44,15152,2489348,32,0 ,44,15152,1965060,24,0 ,45,15153,4586500,24,0 ,35,15002,392200,1,1 ,35,15002,392208,1,1 ,35,15002,392216,1,1 ,35,15002,392224,1,1 ,35,15002,392232,1,1 ,35,15002,392240,1,1 ,35,15002,392248,1,1 ,35,15002,392256,1,1 ,20,21066,15596610,464,0 ,20,20362,12975170,84,0 ,17,923,9305156,24,0 ,17,923,7208004,24,0 ,44,15152,3013700,24,0 ,35,15002,392264,1,1 ,35,15002,392272,1,1 ,35,15002,392280,1,1 ,35,15002,392288,1,1 ,20,21656,16645218,12,0 ,35,15002,392296,1,1 ,35,15002,392304,1,1 ,35,15002,392312,1,1 ,35,15002,392320,1,1 ,17,923,8256644,40,0 ,17,923,6683780,40,0 ,45,15153,5635204,40,0 ,35,15002,392328,1,1 ,35,15002,392336,1,1 ,35,15002,392344,1,1 ,35,15002,392352,1,1 ,35,15002,392360,1,1 ,35,15002,392368,1,1 ,35,15002,392376,1,1 ,35,15002,392384,1,1 ,20,21657,16645314,1020,0 ,17,923,9829572,32,0 ,17,923,7732420,40,0 ,44,15152,1965252,24,0 ,45,15153,4586692,16,0 ,17,923,8780996,64,0 ,35,15002,392392,1,1 ,35,15002,392400,1,1 ,35,15002,392408,1,1 ,35,15002,392416,1,1 ,20,23171,20315362,80,0 ,20,19043,9305314,276,0 ,20,19255,9829602,104,0 ,35,15002,392424,1,1 ,35,15002,392432,1,1 ,35,15002,392440,1,1 ,35,15002,392448,1,1 ,17,923,9305348,24,0 ,17,923,7208196,40,0 ,44,15152,3013892,24,0 ,44,15152,2489604,24,0 ,35,15002,392456,1,1 ,35,15002,392464,1,1 ,35,15002,392472,1,1 ,35,15002,392480,1,1 ,35,15002,392488,1,1 ,35,15002,392496,1,1 ,35,15002,392504,1,1 ,35,15002,392512,1,1 ,17,923,10353988,24,0 ,45,15153,4586820,24,0 ,35,15002,392520,1,1 ,35,15002,392528,1,1 ,36,15004,392536,1,0 ,5,1023,392544,9,2 ,5,1023,392552,9,2 ,5,1023,392560,13,2 ,5,1023,392568,13,2 ,5,1023,392576,13,2 ,45,15153,5111172,24,0 ,44,15152,1965444,24,0 ,5,1023,392584,13,2 ,5,1023,392592,13,2 ,5,1023,392600,13,2 ,5,1023,392608,13,2 ,20,23833,21888418,836,0 ,20,17461,5635490,200,0 ,5,1023,392616,9,2 ,5,1023,392624,13,2 ,5,1023,392632,18,4 ,5,1023,392640,18,4 ,20,25791,27131330,924,0 ,17,923,9829828,24,0 ,17,923,6684100,48,0 ,44,15152,3014084,24,0 ,44,15152,2489796,32,0 ,45,15153,5635524,32,0 ,17,923,8256964,40,0 ,17,923,9305540,40,0 ,5,1023,392648,13,2 ,5,1023,392656,19,4 ,5,1023,392664,19,4 ,5,1023,392672,13,2 ,20,26490,29228514,120,0 ,5,1023,392680,16,3 ,5,1023,392688,13,2 ,5,1023,392696,13,2 ,5,1023,392704,16,3 ,17,923,10354180,32,0 ,17,923,7732740,24,0 ,45,15153,4587012,24,0 ,5,1023,392712,13,2 ,5,1023,392720,13,2 ,5,1023,392728,13,2 ,5,1023,392736,13,2 ,5,1023,392744,9,2 ,5,1023,392752,13,2 ,5,1023,392760,13,2 ,5,1023,392768,13,2 ,20,15499,917058,64,0 ,45,15153,5111364,24,0 ,17,923,7208516,32,0 ,44,15152,1965636,352,0 ,5,1023,392776,9,2 ,5,1023,392784,13,2 ,5,1023,392792,19,4 ,5,1023,392800,16,3 ,20,21977,17694306,320,0 ,5,1023,392808,13,2 ,5,1023,392816,16,3 ,5,1023,392824,15,3 ,5,1023,392832,15,3 ,20,16537,3538562,928,0 ,17,923,9830020,24,0 ,44,15152,3014276,24,0 ,5,1023,392840,12,3 ,5,1023,392848,16,3 ,5,1023,392856,16,3 ,5,1023,392864,16,3 ,5,1023,392872,16,3 ,5,1023,392880,16,3 ,5,1023,392888,16,3 ,5,1023,392896,12,3 ,20,24782,24510146,1312,0 ,17,923,8781508,48,0 ,17,923,7732932,40,0 ,44,15152,2490052,128,0 ,45,15153,4587204,16,0 ,45,15153,5635780,32,0 ,5,1023,392904,16,3 ,5,1023,392912,28,7 ,5,1023,392920,15,3 ,5,1023,392928,22,5 ,20,20363,12975842,440,0 ,20,15940,1965794,144,0 ,20,18812,8781538,1000,0 ,5,1023,392936,18,5 ,5,1023,392944,16,3 ,5,1023,392952,9,2 ,5,1023,392960,13,2 ,20,19567,10354434,12,0 ,20,25272,25558786,768,0 ,17,923,10354436,24,0 ,45,15153,5111556,16,0 ,17,923,8257284,32,0 ,17,923,9305860,40,0 ,5,1023,392968,13,2 ,5,1023,392976,13,2 ,5,1023,392984,13,2 ,5,1023,392992,13,2 ,5,1023,393000,13,2 ,5,1023,393008,12,2 ,5,1023,393016,12,2 ,5,1023,393024,9,2 ,17,923,9830212,24,0 ,17,923,7208772,32,0 ,17,923,6684484,48,0 ,44,15152,3014468,24,0 ,45,15153,4587332,88,0 ,5,1023,393032,12,2 ,5,1023,393040,12,2 ,5,1023,393048,9,2 ,5,1023,393056,13,2 ,20,23172,20316002,212,0 ,20,19568,10354530,80,0 ,5,1023,393064,9,2 ,5,1023,393072,13,2 ,5,1023,393080,13,2 ,5,1023,393088,13,2 ,45,15153,5111684,24,0 ,5,1023,393096,13,2 ,5,1023,393104,13,2 ,5,1023,393112,9,2 ,5,1023,393120,13,2 ,20,17869,6684578,120,0 ,5,1023,393128,9,2 ,5,1023,393136,13,2 ,5,1023,393144,13,2 ,5,1023,393152,13,2 ,20,20097,11403202,336,0 ,17,923,10354628,24,0 ,45,15153,5636036,24,0 ,5,1023,393160,13,2 ,5,1023,393168,13,2 ,5,1023,393176,9,2 ,5,1023,393184,13,2 ,5,1023,393192,13,2 ,5,1023,393200,13,2 ,5,1023,393208,12,2 ,5,1023,393216,9,2 ,17,923,9830404,32,0 ,17,923,7733252,56,0 ,44,15152,3014660,24,0 ,17,923,8257540,32,0 ,5,1023,393224,13,2 ,5,1023,393232,12,2 ,5,1023,393240,13,2 ,5,1023,393248,13,2 ,20,22876,19791906,292,0 ,20,19256,9830434,296,0 ,20,22438,18743330,264,0 ,5,1023,393256,13,2 ,5,1023,393264,12,3 ,5,1023,393272,13,2 ,5,1023,393280,9,2 ,20,15500,917570,64,0 ,17,923,9306180,24,0 ,17,923,7209028,40,0 ,45,15153,5111876,24,0 ,17,923,8781892,24,0 ,5,1023,393288,9,2 ,5,1023,393296,13,2 ,5,1023,393304,16,3 ,5,1023,393312,16,3 ,5,1023,393320,12,3 ,5,1023,393328,13,2 ,5,1023,393336,12,3 ,5,1023,393344,13,2 ,20,26027,27656322,92,0 ,17,923,10354820,32,0 ,45,15153,5636228,16,0 ,5,1023,393352,9,2 ,5,1023,393360,9,2 ,5,1023,393368,13,2 ,5,1023,393376,13,2 ,5,1023,393384,19,4 ,5,1023,393392,16,3 ,5,1023,393400,19,4 ,5,1023,393408,16,3 ,20,22162,18219202,280,0 ,44,15152,3014852,24,0 ,17,923,6684868,32,0 ,5,1023,393416,12,2 ,5,1023,393424,13,2 ,5,1023,393432,13,2 ,5,1023,393440,13,2 ,5,1023,393448,12,2 ,5,1023,393456,9,2 ,5,1023,393464,13,2 ,5,1023,393472,12,2 ,17,923,9830660,24,0 ,45,15153,5112068,24,0 ,45,15153,5636356,24,0 ,17,923,8257796,40,0 ,17,923,8782084,24,0 ,17,923,9306372,40,0 ,5,1023,393480,9,2 ,5,1023,393488,13,2 ,5,1023,393496,9,2 ,5,1023,393504,13,2 ,5,1023,393512,9,2 ,5,1023,393520,13,2 ,5,1023,393528,9,2 ,5,1023,393536,13,2 ,5,1023,393544,9,2 ,5,1023,393552,9,2 ,5,1023,393560,13,2 ,5,1023,393568,12,2 ,5,1023,393576,12,2 ,5,1023,393584,13,2 ,5,1023,393592,13,2 ,5,1023,393600,13,2 ,17,923,10355076,24,0 ,17,923,7209348,40,0 ,44,15152,3015044,24,0 ,5,1023,393608,13,2 ,5,1023,393616,13,2 ,5,1023,393624,13,2 ,5,1023,393632,9,2 ,20,26491,29229474,52,0 ,5,1023,393640,13,2 ,5,1023,393648,9,2 ,5,1023,393656,9,2 ,5,1023,393664,13,2 ,17,923,9830852,32,0 ,17,923,7733700,56,0 ,17,923,6685124,40,0 ,45,15153,5112260,24,0 ,45,15153,5636548,32,0 ,17,923,8782276,48,0 ,5,1023,393672,13,2 ,5,1023,393680,13,2 ,5,1023,393688,13,2 ,5,1023,393696,9,2 ,20,19569,10355170,12,0 ,5,1023,393704,13,2 ,5,1023,393712,9,2 ,5,1023,393720,9,2 ,5,1023,393728,13,2 ,45,15153,4588036,64,0 ,5,1023,393736,13,2 ,5,1023,393744,13,2 ,5,1023,393752,13,2 ,5,1023,393760,13,2 ,5,1023,393768,13,2 ,5,1023,393776,13,2 ,5,1023,393784,13,2 ,5,1023,393792,13,2 ,20,19570,10355266,128,0 ,20,15501,918082,60,0 ,17,923,10355268,48,0 ,44,15152,3015236,24,0 ,17,923,8258116,48,0 ,17,923,9306692,40,0 ,5,1023,393800,12,2 ,5,1023,393808,13,2 ,5,1023,393816,12,2 ,5,1023,393824,12,2 ,5,1023,393832,16,3 ,5,1023,393840,16,3 ,5,1023,393848,16,3 ,5,1023,393856,16,3 ,45,15153,5112452,32,0 ,5,1023,393864,12,3 ,5,1023,393872,16,3 ,5,1023,393880,28,7 ,5,1023,393888,15,3 ,5,1023,393896,12,3 ,5,1023,393904,16,3 ,5,1023,393912,16,3 ,5,1023,393920,16,3 ,17,923,9831108,32,0 ,17,923,7209668,40,0 ,44,15152,2491076,24,0 ,45,15153,5636804,32,0 ,5,1023,393928,15,3 ,5,1023,393936,16,3 ,5,1023,393944,21,5 ,5,1023,393952,13,2 ,5,1023,393960,18,5 ,5,1023,393968,16,3 ,5,1023,393976,12,3 ,5,1023,393984,16,3 ,44,15152,393988,32,0 ,17,923,6685444,40,0 ,44,15152,3015428,24,0 ,5,1023,393992,16,3 ,5,1023,394000,16,3 ,5,1023,394008,16,3 ,5,1023,394016,16,3 ,5,1023,394024,13,2 ,5,1023,394032,16,3 ,5,1023,394040,16,3 ,5,1023,394048,16,3 ,20,26492,29229890,604,0 ,17,923,8782660,24,0 ,5,1023,394056,16,3 ,5,1023,394064,16,3 ,5,1023,394072,16,3 ,5,1023,394080,16,3 ,20,17870,6685538,52,0 ,20,26028,27657058,96,0 ,20,15941,1966946,52,0 ,5,1023,394088,16,3 ,5,1023,394096,12,3 ,5,1023,394104,16,3 ,5,1023,394112,16,3 ,17,923,9307012,32,0 ,17,923,7734148,56,0 ,44,15152,2491268,32,0 ,45,15153,5112708,24,0 ,5,1023,394120,16,3 ,5,1023,394128,16,3 ,5,1023,394136,16,3 ,5,1023,394144,16,3 ,5,1023,394152,13,2 ,5,1023,394160,13,2 ,5,1023,394168,16,3 ,5,1023,394176,16,3 ,17,923,10355652,24,0 ,44,15152,3015620,24,0 ,44,15152,1442756,152,0 ,45,15153,5637060,32,0 ,17,923,8258500,64,0 ,17,923,9831364,24,0 ,5,1023,394184,16,3 ,5,1023,394192,16,3 ,5,1023,394200,9,2 ,5,1023,394208,13,2 ,20,17462,5637090,1320,0 ,5,1023,394216,13,2 ,5,1023,394224,9,2 ,5,1023,394232,13,2 ,5,1023,394240,19,4 ,17,923,8782852,24,0 ,17,923,7209988,40,0 ,44,15152,394244,24,0 ,45,15153,4588548,16,0 ,5,1023,394248,16,3 ,5,1023,394256,13,2 ,5,1023,394264,12,3 ,5,1023,394272,13,2 ,20,15749,1442850,192,0 ,20,15502,918562,344,0 ,5,1023,394280,13,2 ,5,1023,394288,13,2 ,5,1023,394296,13,2 ,5,1023,394304,13,2 ,45,15153,5112900,24,0 ,17,923,6685764,40,0 ,5,1023,394312,9,2 ,5,1023,394320,9,2 ,5,1023,394328,13,2 ,5,1023,394336,13,2 ,20,20182,11928674,528,0 ,5,1023,394344,13,2 ,5,1023,394352,13,2 ,5,1023,394360,16,3 ,5,1023,394368,16,3 ,17,923,10355844,40,0 ,44,15152,3015812,24,0 ,44,15152,2491524,128,0 ,45,15153,4588676,32,0 ,17,923,9307268,24,0 ,17,923,9831556,32,0 ,5,1023,394376,16,3 ,5,1023,394384,12,3 ,5,1023,394392,16,3 ,5,1023,394400,16,3 ,5,1023,394408,16,3 ,5,1023,394416,13,2 ,5,1023,394424,16,3 ,5,1023,394432,16,3 ,17,923,8783044,32,0 ,44,15152,394436,72,0 ,45,15153,5637316,32,0 ,5,1023,394440,16,3 ,5,1023,394448,13,2 ,5,1023,394456,13,2 ,5,1023,394464,16,3 ,5,1023,394472,16,3 ,5,1023,394480,16,3 ,5,1023,394488,13,2 ,5,1023,394496,16,3 ,20,17871,6685954,204,0 ,20,15942,1967362,176,0 ,45,15153,5113092,48,0 ,5,1023,394504,16,3 ,5,1023,394512,16,3 ,5,1023,394520,16,3 ,5,1023,394528,16,3 ,5,1023,394536,16,3 ,5,1023,394544,16,3 ,5,1023,394552,13,2 ,5,1023,394560,13,2 ,17,923,9307460,24,0 ,17,923,7734596,32,0 ,17,923,7210308,16,0 ,44,15152,3016004,24,0 ,44,15152,918852,80,0 ,5,1023,394568,16,3 ,5,1023,394576,15,3 ,5,1023,394584,15,3 ,5,1023,394592,12,3 ,5,1023,394600,13,2 ,5,1023,394608,12,2 ,5,1023,394616,13,2 ,5,1023,394624,9,2 ,20,19044,9307522,1448,0 ,17,923,9831812,24,0 ,17,923,6686084,24,0 ,45,15153,4588932,32,0 ,5,1023,394632,15,4 ,5,1023,394640,13,2 ,5,1023,394648,9,2 ,5,1023,394656,16,3 ,20,17237,5113250,256,0 ,5,1023,394664,12,2 ,5,1023,394672,9,2 ,5,1023,394680,13,2 ,5,1023,394688,16,3 ,17,923,10356164,24,0 ,17,923,7210436,40,0 ,45,15153,5637572,40,0 ,17,923,8259012,24,0 ,17,923,8783300,56,0 ,5,1023,394696,9,2 ,5,1023,394704,12,3 ,5,1023,394712,12,3 ,5,1023,394720,9,2 ,5,1023,394728,15,4 ,5,1023,394736,12,3 ,5,1023,394744,13,2 ,5,1023,394752,13,2 ,20,23173,20317698,144,0 ,17,923,9307652,56,0 ,44,15152,3016196,24,0 ,44,15152,3540484,432,0 ,5,1023,394760,13,2 ,5,1023,394768,12,3 ,5,1023,394776,15,4 ,5,1023,394784,9,2 ,5,1023,394792,9,2 ,5,1023,394800,9,2 ,5,1023,394808,9,2 ,5,1023,394816,12,3 ,20,19571,10356290,60,0 ,17,923,9832004,32,0 ,17,923,7734852,24,0 ,17,923,6686276,40,0 ,5,1023,394824,12,3 ,5,1023,394832,9,2 ,5,1023,394840,15,4 ,5,1023,394848,12,3 ,20,26029,27657826,272,0 ,5,1023,394856,13,2 ,5,1023,394864,16,3 ,5,1023,394872,12,2 ,5,1023,394880,13,2 ,20,18113,7210626,476,0 ,17,923,10356356,32,0 ,45,15153,4589188,16,0 ,45,15153,5113476,24,0 ,17,923,8259204,56,0 ,5,1023,394888,13,2 ,5,1023,394896,13,2 ,5,1023,394904,13,2 ,5,1023,394912,13,2 ,5,1023,394920,9,2 ,5,1023,394928,9,2 ,5,1023,394936,12,3 ,5,1023,394944,12,3 ,44,15152,3016388,24,0 ,5,1023,394952,13,2 ,5,1023,394960,13,2 ,5,1023,394968,9,2 ,5,1023,394976,13,2 ,5,1023,394984,16,3 ,5,1023,394992,16,3 ,5,1023,395000,13,2 ,5,1023,395008,13,2 ,45,15153,5637892,32,0 ,17,923,7735044,24,0 ,17,923,7210756,32,0 ,44,15152,395012,56,0 ,45,15153,4589316,24,0 ,5,1023,395016,9,2 ,5,1023,395024,13,2 ,5,1023,395032,15,4 ,5,1023,395040,15,4 ,5,1023,395048,9,2 ,5,1023,395056,9,2 ,5,1023,395064,13,2 ,5,1023,395072,13,2 ,17,923,9832260,32,0 ,45,15153,5113668,32,0 ,5,1023,395080,13,2 ,5,1023,395088,13,2 ,5,1023,395096,13,2 ,5,1023,395104,13,2 ,5,1023,395112,13,2 ,5,1023,395120,13,2 ,5,1023,395128,11,2 ,5,1023,395136,13,2 ,17,923,10356612,24,0 ,17,923,6686596,40,0 ,44,15152,3016580,24,0 ,45,15153,4065156,24,0 ,17,923,8783748,24,0 ,5,1023,395144,9,2 ,5,1023,395152,9,2 ,5,1023,395160,13,2 ,5,1023,395168,9,2 ,5,1023,395176,9,2 ,5,1023,395184,13,2 ,5,1023,395192,13,2 ,5,1023,395200,15,4 ,17,923,9308100,32,0 ,17,923,7735236,24,0 ,44,15152,919492,24,0 ,45,15153,4589508,24,0 ,5,1023,395208,9,2 ,5,1023,395216,13,2 ,5,1023,395224,13,2 ,5,1023,395232,13,2 ,5,1023,395240,13,2 ,5,1023,395248,13,2 ,5,1023,395256,13,2 ,5,1023,395264,13,2 ,20,23453,20842498,360,0 ,45,15153,5638148,56,0 ,17,923,7211012,40,0 ,5,1023,395272,12,2 ,5,1023,395280,12,2 ,5,1023,395288,13,2 ,5,1023,395296,13,2 ,20,19572,10356770,448,0 ,5,1023,395304,16,3 ,5,1023,395312,13,2 ,5,1023,395320,13,2 ,5,1023,395328,16,3 ,17,923,10356804,24,0 ,44,15152,3016772,24,0 ,45,15153,4065348,40,0 ,45,15153,5113924,24,0 ,17,923,8259652,48,0 ,17,923,8783940,48,0 ,17,923,9832516,32,0 ,5,1023,395336,13,2 ,5,1023,395344,13,2 ,5,1023,395352,13,2 ,5,1023,395360,13,2 ,20,22439,18745442,1992,0 ,20,21978,17696866,452,0 ,5,1023,395368,13,2 ,5,1023,395376,9,2 ,5,1023,395384,13,2 ,5,1023,395392,9,2 ,45,15153,4589700,40,0 ,17,923,7735428,24,0 ,44,15152,2492548,24,0 ,44,15152,1443972,216,0 ,44,15152,919684,168,0 ,5,1023,395400,13,2 ,5,1023,395408,9,2 ,5,1023,395416,13,2 ,5,1023,395424,13,2 ,20,17648,6162594,508,0 ,5,1023,395432,13,2 ,5,1023,395440,9,2 ,5,1023,395448,13,2 ,5,1023,395456,9,2 ,17,923,9308356,32,0 ,17,923,6686916,32,0 ,44,15152,395460,40,0 ,5,1023,395464,13,2 ,5,1023,395472,19,4 ,5,1023,395480,13,2 ,5,1023,395488,16,3 ,5,1023,395496,13,2 ,5,1023,395504,13,2 ,5,1023,395512,12,3 ,5,1023,395520,13,2 ,20,16214,3016962,56,0 ,17,923,10356996,48,0 ,44,15152,3016964,24,0 ,45,15153,5114116,16,0 ,5,1023,395528,13,2 ,5,1023,395536,13,2 ,5,1023,395544,13,2 ,5,1023,395552,13,2 ,5,1023,395560,13,2 ,5,1023,395568,13,2 ,5,1023,395576,16,3 ,5,1023,395584,13,2 ,20,22877,19794242,260,0 ,17,923,9832772,24,0 ,17,923,7735620,24,0 ,17,923,7211332,40,0 ,44,15152,2492740,88,0 ,44,15152,1968452,24,0 ,5,1023,395592,16,3 ,5,1023,395600,13,2 ,5,1023,395608,13,2 ,5,1023,395616,13,2 ,20,19257,9832802,124,0 ,5,1023,395624,13,2 ,5,1023,395632,13,2 ,5,1023,395640,13,2 ,5,1023,395648,13,2 ,20,22163,18221442,288,0 ,45,15153,5114244,32,0 ,45,15153,4065668,56,0 ,5,1023,395656,13,2 ,5,1023,395664,13,2 ,5,1023,395672,13,2 ,5,1023,395680,13,2 ,5,1023,395688,13,2 ,5,1023,395696,13,2 ,5,1023,395704,13,2 ,5,1023,395712,13,2 ,20,21897,17172930,652,0 ,17,923,9308612,32,0 ,17,923,6687172,32,0 ,44,15152,3017156,24,0 ,45,15153,4590020,24,0 ,45,15153,5638596,104,0 ,17,923,8260036,48,0 ,17,923,8784324,24,0 ,5,1023,395720,13,2 ,5,1023,395728,13,2 ,5,1023,395736,13,2 ,5,1023,395744,13,2 ,5,1023,395752,13,2 ,5,1023,395760,12,2 ,5,1023,395768,12,2 ,5,1023,395776,13,2 ,17,923,9832964,32,0 ,17,923,7735812,32,0 ,44,15152,1968644,24,0 ,44,15152,395780,208,0 ,5,1023,395784,13,2 ,5,1023,395792,13,2 ,5,1023,395800,13,2 ,5,1023,395808,13,2 ,20,15750,1444386,1652,0 ,5,1023,395816,13,2 ,5,1023,395824,13,2 ,5,1023,395832,13,2 ,5,1023,395840,13,2 ,20,20098,11405890,336,0 ,5,1023,395848,13,2 ,5,1023,395856,13,2 ,5,1023,395864,13,2 ,5,1023,395872,13,2 ,20,16117,2493026,12,0 ,5,1023,395880,13,2 ,5,1023,395888,13,2 ,5,1023,395896,13,2 ,5,1023,395904,13,2 ,20,23174,20318850,68,0 ,20,15943,1968770,120,0 ,17,923,10357380,32,0 ,17,923,7211652,48,0 ,44,15152,3017348,24,0 ,45,15153,4590212,24,0 ,45,15153,5114500,48,0 ,17,923,8784516,88,0 ,5,1023,395912,13,2 ,5,1023,395920,13,2 ,5,1023,395928,12,2 ,5,1023,395936,12,2 ,5,1023,395944,13,2 ,5,1023,395952,9,2 ,5,1023,395960,13,2 ,5,1023,395968,9,2 ,20,21067,15600322,812,0 ,20,16118,2493122,60,0 ,20,16215,3017410,4332,0 ,17,923,9308868,40,0 ,17,923,6687428,32,0 ,44,15152,1968836,40,0 ,5,1023,395976,13,2 ,5,1023,395984,13,2 ,5,1023,395992,9,2 ,5,1023,396000,12,2 ,5,1023,396008,12,2 ,5,1023,396016,16,3 ,5,1023,396024,13,2 ,5,1023,396032,13,2 ,17,923,9833220,16,0 ,17,923,7736068,24,0 ,5,1023,396040,13,2 ,5,1023,396048,13,2 ,5,1023,396056,13,2 ,5,1023,396064,13,2 ,5,1023,396072,13,2 ,5,1023,396080,13,2 ,5,1023,396088,13,2 ,5,1023,396096,13,2 ,17,923,8260420,56,0 ,44,15152,3017540,24,0 ,45,15153,4066116,48,0 ,45,15153,4590404,16,0 ,5,1023,396104,13,2 ,5,1023,396112,13,2 ,5,1023,396120,13,2 ,5,1023,396128,13,2 ,20,17872,6687586,96,0 ,5,1023,396136,13,2 ,5,1023,396144,12,2 ,5,1023,396152,12,2 ,5,1023,396160,13,2 ,17,923,10357636,24,0 ,17,923,9833348,32,0 ,5,1023,396168,13,2 ,5,1023,396176,13,2 ,5,1023,396184,13,2 ,5,1023,396192,13,2 ,5,1023,396200,13,2 ,5,1023,396208,13,2 ,5,1023,396216,13,2 ,5,1023,396224,13,2 ,45,15153,4590532,24,0 ,17,923,7736260,40,0 ,17,923,6687684,32,0 ,5,1023,396232,12,2 ,5,1023,396240,13,2 ,5,1023,396248,13,2 ,5,1023,396256,13,2 ,5,1023,396264,13,2 ,5,1023,396272,13,2 ,5,1023,396280,19,4 ,5,1023,396288,12,2 ,20,24615,23989250,692,0 ,17,923,9309188,40,0 ,17,923,7212036,32,0 ,44,15152,3017732,24,0 ,44,15152,2493444,32,0 ,44,15152,1969156,152,0 ,45,15153,5114884,88,0 ,5,1023,396296,16,3 ,5,1023,396304,19,4 ,5,1023,396312,13,2 ,5,1023,396320,16,3 ,5,1023,396328,19,4 ,5,1023,396336,16,3 ,5,1023,396344,9,2 ,5,1023,396352,13,2 ,17,923,10357828,48,0 ,5,1023,396360,13,2 ,5,1023,396368,13,2 ,5,1023,396376,13,2 ,5,1023,396384,13,2 ,5,1023,396392,12,2 ,5,1023,396400,13,2 ,5,1023,396408,13,2 ,5,1023,396416,13,2 ,17,923,9833604,40,0 ,45,15153,4590724,40,0 ,5,1023,396424,13,2 ,5,1023,396432,13,2 ,5,1023,396440,13,2 ,5,1023,396448,13,2 ,20,23175,20319394,144,0 ,20,16119,2493602,124,0 ,20,20364,12979362,160,0 ,5,1023,396456,13,2 ,5,1023,396464,13,2 ,5,1023,396472,13,2 ,5,1023,396480,13,2 ,20,24082,22416578,276,0 ,45,15153,4066500,16,0 ,17,923,6687940,40,0 ,44,15152,3017924,24,0 ,5,1023,396488,13,2 ,5,1023,396496,13,2 ,5,1023,396504,12,2 ,5,1023,396512,12,2 ,5,1023,396520,13,2 ,5,1023,396528,13,2 ,5,1023,396536,13,2 ,5,1023,396544,13,2 ,17,923,8260868,48,0 ,17,923,7736580,40,0 ,17,923,7212292,40,0 ,44,15152,2493700,32,0 ,45,15153,5639428,24,0 ,5,1023,396552,13,2 ,5,1023,396560,13,2 ,5,1023,396568,12,3 ,5,1023,396576,13,2 ,5,1023,396584,16,3 ,5,1023,396592,9,2 ,5,1023,396600,13,2 ,5,1023,396608,9,2 ,20,19258,9833794,7220,0 ,17,923,9309508,32,0 ,45,15153,4066628,56,0 ,17,923,8785220,24,0 ,5,1023,396616,13,2 ,5,1023,396624,9,2 ,5,1023,396632,13,2 ,5,1023,396640,12,2 ,20,17075,4590946,1608,0 ,5,1023,396648,12,2 ,5,1023,396656,13,2 ,5,1023,396664,13,2 ,5,1023,396672,12,2 ,20,19825,10882434,740,0 ,44,15152,3018116,32,0 ,5,1023,396680,13,2 ,5,1023,396688,13,2 ,5,1023,396696,13,2 ,5,1023,396704,13,2 ,20,17238,5115298,1004,0 ,5,1023,396712,13,2 ,5,1023,396720,13,2 ,5,1023,396728,16,3 ,5,1023,396736,12,2 ,17,923,10358212,16,0 ,44,15152,921028,16,0 ,45,15153,4591044,32,0 ,45,15153,5639620,16,0 ,17,923,9833924,24,0 ,5,1023,396744,16,3 ,5,1023,396752,13,2 ,5,1023,396760,13,2 ,5,1023,396768,9,2 ,5,1023,396776,13,2 ,5,1023,396784,9,2 ,5,1023,396792,13,2 ,5,1023,396800,13,2 ,17,923,8785412,80,0 ,17,923,6688260,40,0 ,44,15152,2493956,24,0 ,5,1023,396808,13,2 ,5,1023,396816,9,2 ,5,1023,396824,13,2 ,5,1023,396832,13,2 ,5,1023,396840,13,2 ,5,1023,396848,13,2 ,5,1023,396856,12,2 ,5,1023,396864,12,2 ,20,15944,1969730,176,0 ,17,923,10358340,24,0 ,17,923,7736900,40,0 ,17,923,7212612,32,0 ,44,15152,921156,32,0 ,45,15153,5639748,16,0 ,17,923,9309764,32,0 ,5,1023,396872,12,2 ,5,1023,396880,12,2 ,5,1023,396888,9,2 ,5,1023,396896,13,2 ,20,17873,6688354,76,0 ,5,1023,396904,13,2 ,5,1023,396912,13,2 ,5,1023,396920,9,2 ,5,1023,396928,13,2 ,17,923,9834116,24,0 ,44,15152,3018372,40,0 ,17,923,8261252,56,0 ,5,1023,396936,9,2 ,5,1023,396944,13,2 ,5,1023,396952,9,2 ,5,1023,396960,9,2 ,5,1023,396968,9,2 ,5,1023,396976,9,2 ,5,1023,396984,9,2 ,5,1023,396992,9,2 ,45,15153,5639876,24,0 ,44,15152,2494148,24,0 ,45,15153,4591300,16,0 ,45,15153,5115588,24,0 ,5,1023,397000,13,2 ,5,1023,397008,13,2 ,5,1023,397016,9,2 ,5,1023,397024,13,2 ,20,15503,921314,292,0 ,20,26030,27660002,184,0 ,5,1023,397032,13,2 ,5,1023,397040,9,2 ,5,1023,397048,9,2 ,5,1023,397056,9,2 ,17,923,10358532,24,0 ,45,15153,4067076,32,0 ,5,1023,397064,9,2 ,5,1023,397072,9,2 ,5,1023,397080,13,2 ,5,1023,397088,9,2 ,5,1023,397096,13,2 ,5,1023,397104,9,2 ,5,1023,397112,9,2 ,5,1023,397120,9,2 ,17,923,9834308,24,0 ,17,923,7212868,40,0 ,17,923,6688580,48,0 ,44,15152,1445700,80,0 ,44,15152,921412,40,0 ,45,15153,4591428,40,0 ,17,923,9310020,80,0 ,5,1023,397128,9,2 ,5,1023,397136,16,3 ,5,1023,397144,15,3 ,5,1023,397152,13,2 ,5,1023,397160,13,2 ,5,1023,397168,9,2 ,5,1023,397176,13,2 ,5,1023,397184,9,2 ,45,15153,5640068,16,0 ,17,923,7737220,32,0 ,44,15152,2494340,24,0 ,45,15153,5115780,16,0 ,5,1023,397192,13,2 ,5,1023,397200,13,2 ,5,1023,397208,13,2 ,5,1023,397216,13,2 ,5,1023,397224,13,2 ,5,1023,397232,13,2 ,5,1023,397240,16,3 ,5,1023,397248,13,2 ,17,923,10358724,32,0 ,44,15152,3018692,24,0 ,5,1023,397256,16,3 ,5,1023,397264,13,2 ,5,1023,397272,13,2 ,5,1023,397280,13,2 ,5,1023,397288,13,2 ,5,1023,397296,13,2 ,5,1023,397304,18,4 ,5,1023,397312,13,2 ,17,923,9834500,24,0 ,45,15153,4067332,24,0 ,45,15153,5115908,24,0 ,45,15153,5640196,48,0 ,5,1023,397320,16,3 ,5,1023,397328,13,2 ,5,1023,397336,13,2 ,5,1023,397344,9,2 ,5,1023,397352,13,2 ,5,1023,397360,13,2 ,5,1023,397368,13,2 ,5,1023,397376,13,2 ,17,923,8261700,56,0 ,44,15152,2494532,16,0 ,5,1023,397384,12,2 ,5,1023,397392,12,2 ,5,1023,397400,16,3 ,5,1023,397408,13,2 ,5,1023,397416,13,2 ,5,1023,397424,13,2 ,5,1023,397432,9,2 ,5,1023,397440,9,2 ,20,16120,2494594,624,0 ,17,923,8786052,24,0 ,17,923,7737476,24,0 ,17,923,7213188,32,0 ,44,15152,3018884,80,0 ,44,15152,397444,40,0 ,44,15152,921732,48,0 ,45,15153,4591748,16,0 ,5,1023,397448,9,2 ,5,1023,397456,9,2 ,5,1023,397464,9,2 ,5,1023,397472,9,2 ,20,22639,19271842,808,0 ,5,1023,397480,12,2 ,5,1023,397488,12,2 ,5,1023,397496,13,2 ,5,1023,397504,13,2 ,20,17874,6688962,152,0 ,17,923,10358980,48,0 ,17,923,6688964,48,0 ,44,15152,2494660,88,0 ,44,15152,1970372,48,0 ,45,15153,4067524,64,0 ,45,15153,5116100,40,0 ,17,923,9834692,24,0 ,5,1023,397512,13,2 ,5,1023,397520,13,2 ,5,1023,397528,13,2 ,5,1023,397536,13,2 ,20,24286,22941922,176,0 ,5,1023,397544,13,2 ,5,1023,397552,9,2 ,5,1023,397560,9,2 ,5,1023,397568,12,3 ,45,15153,4591876,24,0 ,5,1023,397576,13,2 ,5,1023,397584,13,2 ,5,1023,397592,13,2 ,5,1023,397600,13,2 ,20,23176,20320546,100,0 ,5,1023,397608,13,2 ,5,1023,397616,16,3 ,5,1023,397624,16,3 ,5,1023,397632,13,2 ,17,923,8786244,40,0 ,17,923,7737668,24,0 ,5,1023,397640,13,2 ,5,1023,397648,13,2 ,5,1023,397656,12,2 ,5,1023,397664,13,2 ,20,22878,19796322,216,0 ,5,1023,397672,13,2 ,5,1023,397680,16,3 ,5,1023,397688,16,3 ,5,1023,397696,16,3 ,17,923,9834884,24,0 ,17,923,7213444,32,0 ,45,15153,5640580,48,0 ,5,1023,397704,13,2 ,5,1023,397712,13,2 ,5,1023,397720,13,2 ,5,1023,397728,13,2 ,20,20365,12980642,304,0 ,5,1023,397736,9,2 ,5,1023,397744,13,2 ,5,1023,397752,13,2 ,5,1023,397760,12,2 ,17,923,9310660,24,0 ,44,15152,1446340,608,0 ,44,15152,397764,24,0 ,45,15153,4592068,24,0 ,5,1023,397768,12,2 ,5,1023,397776,12,2 ,5,1023,397784,13,2 ,5,1023,397792,13,2 ,5,1023,397800,13,2 ,5,1023,397808,13,2 ,5,1023,397816,13,2 ,5,1023,397824,13,2 ,17,923,8262148,40,0 ,17,923,7737860,40,0 ,44,15152,922116,112,0 ,45,15153,5116420,40,0 ,5,1023,397832,16,3 ,5,1023,397840,13,2 ,5,1023,397848,13,2 ,5,1023,397856,9,2 ,5,1023,397864,13,2 ,5,1023,397872,12,2 ,5,1023,397880,13,2 ,5,1023,397888,13,2 ,17,923,10359364,48,0 ,17,923,6689348,32,0 ,44,15152,1970756,72,0 ,17,923,9835076,24,0 ,5,1023,397896,12,2 ,5,1023,397904,13,2 ,5,1023,397912,13,2 ,5,1023,397920,13,2 ,5,1023,397928,13,2 ,5,1023,397936,13,2 ,5,1023,397944,13,2 ,5,1023,397952,13,2 ,20,22164,18223746,316,0 ,17,923,9310852,64,0 ,17,923,7213700,32,0 ,44,15152,397956,256,0 ,45,15153,4592260,24,0 ,17,923,8786564,64,0 ,5,1023,397960,13,2 ,5,1023,397968,13,2 ,5,1023,397976,16,3 ,5,1023,397984,13,2 ,5,1023,397992,13,2 ,5,1023,398000,13,2 ,5,1023,398008,13,2 ,5,1023,398016,13,2 ,45,15153,4068036,40,0 ,5,1023,398024,13,2 ,5,1023,398032,13,2 ,5,1023,398040,13,2 ,5,1023,398048,13,2 ,5,1023,398056,13,2 ,5,1023,398064,19,4 ,5,1023,398072,19,4 ,5,1023,398080,19,4 ,17,923,9835268,32,0 ,44,15152,3019524,24,0 ,45,15153,5640964,24,0 ,5,1023,398088,15,3 ,5,1023,398096,15,3 ,5,1023,398104,16,3 ,5,1023,398112,13,2 ,5,1023,398120,18,4 ,5,1023,398128,18,4 ,5,1023,398136,9,2 ,5,1023,398144,13,2 ,20,23454,20845378,612,0 ,17,923,8262468,40,0 ,17,923,7738180,32,0 ,17,923,6689604,24,0 ,45,15153,4592452,24,0 ,45,15153,5116740,48,0 ,5,1023,398152,19,4 ,5,1023,398160,19,4 ,5,1023,398168,19,4 ,5,1023,398176,19,4 ,5,1023,398184,18,4 ,5,1023,398192,19,4 ,5,1023,398200,16,3 ,5,1023,398208,16,3 ,44,15152,3543940,24,0 ,17,923,7213956,40,0 ,44,15152,2495364,192,0 ,5,1023,398216,16,3 ,5,1023,398224,13,2 ,5,1023,398232,12,2 ,5,1023,398240,12,2 ,5,1023,398248,13,2 ,5,1023,398256,13,2 ,5,1023,398264,13,2 ,5,1023,398272,9,2 ,20,15945,1971138,120,0 ,17,923,10359748,32,0 ,44,15152,3019716,32,0 ,45,15153,5641156,16,0 ,5,1023,398280,13,2 ,5,1023,398288,13,2 ,5,1023,398296,9,2 ,5,1023,398304,13,2 ,5,1023,398312,13,2 ,5,1023,398320,13,2 ,5,1023,398328,13,2 ,5,1023,398336,13,2 ,17,923,9835524,16,0 ,17,923,6689796,32,0 ,45,15153,4068356,24,0 ,45,15153,4592644,40,0 ,5,1023,398344,16,3 ,5,1023,398352,13,2 ,5,1023,398360,9,2 ,5,1023,398368,13,2 ,5,1023,398376,9,2 ,5,1023,398384,13,2 ,5,1023,398392,9,2 ,5,1023,398400,9,2 ,20,23177,20321346,256,0 ,45,15153,5641284,16,0 ,17,923,7738436,40,0 ,44,15152,3544132,24,0 ,5,1023,398408,13,2 ,5,1023,398416,13,2 ,5,1023,398424,9,2 ,5,1023,398432,13,2 ,20,25621,26612834,180,0 ,5,1023,398440,9,2 ,5,1023,398448,13,2 ,5,1023,398456,12,3 ,5,1023,398464,13,2 ,17,923,9835652,40,0 ,44,15152,1971332,40,0 ,17,923,8262788,48,0 ,17,923,8787076,24,0 ,17,923,9311364,32,0 ,5,1023,398472,16,3 ,5,1023,398480,13,2 ,5,1023,398488,13,2 ,5,1023,398496,16,3 ,20,26031,27661474,116,0 ,5,1023,398504,13,2 ,5,1023,398512,13,2 ,5,1023,398520,13,2 ,5,1023,398528,13,2 ,20,20099,11408578,320,0 ,17,923,10360004,24,0 ,17,923,7214276,32,0 ,44,15152,3019972,24,0 ,45,15153,4068548,160,0 ,45,15153,5117124,48,0 ,45,15153,5641412,16,0 ,5,1023,398536,13,2 ,5,1023,398544,12,2 ,5,1023,398552,13,2 ,5,1023,398560,13,2 ,20,20183,11932898,544,0 ,5,1023,398568,13,2 ,5,1023,398576,13,2 ,5,1023,398584,13,2 ,5,1023,398592,13,2 ,44,15152,3544324,24,0 ,17,923,6690052,32,0 ,5,1023,398600,12,2 ,5,1023,398608,13,2 ,5,1023,398616,13,2 ,5,1023,398624,9,2 ,5,1023,398632,13,2 ,5,1023,398640,12,2 ,5,1023,398648,12,2 ,5,1023,398656,13,2 ,17,923,8787268,56,0 ,45,15153,4592964,32,0 ,45,15153,5641540,16,0 ,5,1023,398664,13,2 ,5,1023,398672,13,2 ,5,1023,398680,13,2 ,5,1023,398688,13,2 ,20,24083,22418786,128,0 ,20,18114,7214434,284,0 ,5,1023,398696,13,2 ,5,1023,398704,13,2 ,5,1023,398712,13,2 ,5,1023,398720,9,2 ,20,17875,6690178,156,0 ,17,923,10360196,32,0 ,17,923,7738756,32,0 ,44,15152,3020164,40,0 ,44,15152,923012,24,0 ,17,923,9311620,32,0 ,5,1023,398728,13,2 ,5,1023,398736,13,2 ,5,1023,398744,13,2 ,5,1023,398752,9,2 ,20,16853,4068770,144,0 ,5,1023,398760,13,2 ,5,1023,398768,13,2 ,5,1023,398776,13,2 ,5,1023,398784,13,2 ,17,923,9835972,24,0 ,17,923,7214532,24,0 ,44,15152,1971652,24,0 ,44,15152,3544516,88,0 ,45,15153,5641668,16,0 ,5,1023,398792,14,3 ,5,1023,398800,13,2 ,5,1023,398808,9,2 ,5,1023,398816,13,2 ,5,1023,398824,13,2 ,5,1023,398832,9,2 ,5,1023,398840,13,2 ,5,1023,398848,16,3 ,17,923,8263172,40,0 ,17,923,6690308,24,0 ,5,1023,398856,13,2 ,5,1023,398864,13,2 ,5,1023,398872,13,2 ,5,1023,398880,13,2 ,20,19573,10360354,84,0 ,20,26493,29234722,332,0 ,20,25061,25040418,404,0 ,5,1023,398888,13,2 ,5,1023,398896,19,4 ,5,1023,398904,13,2 ,5,1023,398912,13,2 ,45,15153,5641796,16,0 ,44,15152,923204,24,0 ,45,15153,4593220,56,0 ,45,15153,5117508,56,0 ,5,1023,398920,16,3 ,5,1023,398928,13,2 ,5,1023,398936,13,2 ,5,1023,398944,13,2 ,20,24287,22943330,148,0 ,5,1023,398952,13,2 ,5,1023,398960,19,4 ,5,1023,398968,13,2 ,5,1023,398976,13,2 ,20,21979,17700482,428,0 ,17,923,10360452,32,0 ,17,923,7739012,48,0 ,17,923,7214724,40,0 ,44,15152,1971844,16,0 ,17,923,9311876,32,0 ,17,923,9836164,32,0 ,5,1023,398984,16,3 ,5,1023,398992,9,2 ,5,1023,399000,13,2 ,5,1023,399008,13,2 ,5,1023,399016,13,2 ,5,1023,399024,13,2 ,5,1023,399032,13,2 ,5,1023,399040,13,2 ,45,15153,5641924,16,0 ,17,923,6690500,40,0 ,44,15152,3020484,24,0 ,5,1023,399048,9,2 ,5,1023,399056,9,2 ,5,1023,399064,13,2 ,5,1023,399072,13,2 ,5,1023,399080,12,2 ,5,1023,399088,9,2 ,5,1023,399096,13,2 ,5,1023,399104,13,2 ,20,25273,25564930,364,0 ,17,923,8787716,48,0 ,44,15152,1971972,16,0 ,44,15152,923396,32,0 ,5,1023,399112,9,2 ,5,1023,399120,9,2 ,5,1023,399128,13,2 ,5,1023,399136,9,2 ,5,1023,399144,13,2 ,5,1023,399152,13,2 ,5,1023,399160,16,3 ,5,1023,399168,16,3 ,17,923,8263492,40,0 ,45,15153,5642052,16,0 ,5,1023,399176,13,2 ,5,1023,399184,13,2 ,5,1023,399192,13,2 ,5,1023,399200,13,2 ,20,18336,7739234,12,0 ,5,1023,399208,13,2 ,5,1023,399216,13,2 ,5,1023,399224,13,2 ,5,1023,399232,13,2 ,20,15946,1972098,80,0 ,17,923,10360708,24,0 ,44,15152,3020676,40,0 ,44,15152,1972100,32,0 ,17,923,9312132,32,0 ,17,923,9836420,32,0 ,5,1023,399240,13,2 ,5,1023,399248,12,2 ,5,1023,399256,12,2 ,5,1023,399264,12,2 ,5,1023,399272,13,2 ,5,1023,399280,13,2 ,5,1023,399288,13,2 ,5,1023,399296,12,2 ,20,23834,21895106,208,0 ,20,18337,7739330,100,0 ,45,15153,5642180,16,0 ,17,923,7215044,40,0 ,5,1023,399304,13,2 ,5,1023,399312,13,2 ,5,1023,399320,13,2 ,5,1023,399328,9,2 ,5,1023,399336,13,2 ,5,1023,399344,13,2 ,5,1023,399352,12,2 ,5,1023,399360,13,2 ,20,15504,923650,12,0 ,45,15153,5117956,64,0 ,17,923,7739396,56,0 ,17,923,6690820,32,0 ,44,15152,923652,40,0 ,45,15153,4593668,32,0 ,5,1023,399368,13,2 ,5,1023,399376,13,2 ,5,1023,399384,12,2 ,5,1023,399392,12,2 ,20,22879,19798050,124,0 ,5,1023,399400,15,3 ,5,1023,399408,16,3 ,5,1023,399416,16,3 ,5,1023,399424,15,3 ,20,26032,27662402,444,0 ,17,923,10360900,24,0 ,45,15153,5642308,32,0 ,5,1023,399432,13,2 ,5,1023,399440,13,2 ,5,1023,399448,13,2 ,5,1023,399456,13,2 ,20,15505,923746,120,0 ,5,1023,399464,13,2 ,5,1023,399472,16,3 ,5,1023,399480,22,5 ,5,1023,399488,22,5 ,20,17649,6166658,540,0 ,17,923,9836676,40,0 ,44,15152,1972356,32,0 ,44,15152,3545220,240,0 ,17,923,8263812,40,0 ,17,923,8788100,24,0 ,17,923,9312388,32,0 ,5,1023,399496,22,5 ,5,1023,399504,16,3 ,5,1023,399512,16,3 ,5,1023,399520,21,5 ,5,1023,399528,22,5 ,5,1023,399536,12,3 ,5,1023,399544,16,3 ,5,1023,399552,22,5 ,20,19574,10361026,152,0 ,44,15152,3020996,24,0 ,5,1023,399560,22,5 ,5,1023,399568,22,5 ,5,1023,399576,16,3 ,5,1023,399584,15,3 ,5,1023,399592,15,3 ,5,1023,399600,16,3 ,5,1023,399608,13,2 ,5,1023,399616,13,2 ,17,923,10361092,32,0 ,17,923,7215364,32,0 ,17,923,6691076,32,0 ,45,15153,4593924,32,0 ,5,1023,399624,13,2 ,5,1023,399632,13,2 ,5,1023,399640,13,2 ,5,1023,399648,13,2 ,5,1023,399656,13,2 ,5,1023,399664,9,2 ,5,1023,399672,13,2 ,5,1023,399680,13,2 ,17,923,8788292,24,0 ,44,15152,923972,72,0 ,45,15153,5642564,40,0 ,5,1023,399688,13,2 ,5,1023,399696,13,2 ,5,1023,399704,13,2 ,5,1023,399712,16,3 ,20,24084,22419810,56,0 ,5,1023,399720,12,2 ,5,1023,399728,16,3 ,5,1023,399736,16,3 ,5,1023,399744,16,3 ,17,923,9312644,32,0 ,44,15152,3021188,112,0 ,44,15152,2496900,48,0 ,44,15152,1972612,24,0 ,5,1023,399752,13,2 ,5,1023,399760,13,2 ,5,1023,399768,13,2 ,5,1023,399776,13,2 ,5,1023,399784,13,2 ,5,1023,399792,13,2 ,5,1023,399800,12,2 ,5,1023,399808,13,2 ,17,923,9836996,32,0 ,17,923,7739844,48,0 ,45,15153,4069828,24,0 ,17,923,8264132,32,0 ,5,1023,399816,13,2 ,5,1023,399824,13,2 ,5,1023,399832,13,2 ,5,1023,399840,16,3 ,5,1023,399848,13,2 ,5,1023,399856,13,2 ,5,1023,399864,13,2 ,5,1023,399872,13,2 ,20,15947,1972738,160,0 ,20,25622,26614274,180,0 ,17,923,10361348,40,0 ,17,923,7215620,32,0 ,17,923,6691332,32,0 ,45,15153,4594180,32,0 ,45,15153,5118468,24,0 ,17,923,8788484,56,0 ,5,1023,399880,13,2 ,5,1023,399888,13,2 ,5,1023,399896,12,2 ,5,1023,399904,13,2 ,20,16854,4069922,1924,0 ,5,1023,399912,9,2 ,5,1023,399920,13,2 ,5,1023,399928,13,2 ,5,1023,399936,13,2 ,44,15152,1972804,24,0 ,5,1023,399944,12,2 ,5,1023,399952,16,3 ,5,1023,399960,9,2 ,5,1023,399968,9,2 ,20,17876,6691426,256,0 ,5,1023,399976,9,2 ,5,1023,399984,9,2 ,5,1023,399992,9,2 ,5,1023,400000,9,2 ,17,923,9312900,32,0 ,44,15152,400004,48,0 ,45,15153,4070020,200,0 ,45,15153,5642884,40,0 ,5,1023,400008,12,2 ,5,1023,400016,13,2 ,5,1023,400024,13,2 ,5,1023,400032,13,2 ,20,20625,13507234,756,0 ,20,25792,27138722,452,0 ,20,25470,26090146,324,0 ,5,1023,400040,13,2 ,5,1023,400048,13,2 ,5,1023,400056,13,2 ,5,1023,400064,13,2 ,17,923,9837252,24,0 ,45,15153,5118660,32,0 ,17,923,8264388,40,0 ,5,1023,400072,13,2 ,5,1023,400080,13,2 ,5,1023,400088,13,2 ,5,1023,400096,13,2 ,20,18338,7740130,160,0 ,5,1023,400104,13,2 ,5,1023,400112,13,2 ,5,1023,400120,13,2 ,5,1023,400128,13,2 ,20,24288,22944514,108,0 ,45,15153,4594436,48,0 ,17,923,7215876,32,0 ,17,923,6691588,32,0 ,44,15152,2497284,208,0 ,44,15152,1972996,48,0 ,5,1023,400136,13,2 ,5,1023,400144,13,2 ,5,1023,400152,13,2 ,5,1023,400160,13,2 ,20,24085,22420258,100,0 ,20,20366,12983074,80,0 ,5,1023,400168,13,2 ,5,1023,400176,13,2 ,5,1023,400184,13,2 ,5,1023,400192,13,2 ,17,923,10361668,40,0 ,17,923,7740228,24,0 ,5,1023,400200,13,2 ,5,1023,400208,13,2 ,5,1023,400216,13,2 ,5,1023,400224,9,2 ,5,1023,400232,13,2 ,5,1023,400240,19,4 ,5,1023,400248,13,2 ,5,1023,400256,16,3 ,20,16538,3545986,100,0 ,17,923,9837444,24,0 ,44,15152,924548,128,0 ,17,923,9313156,32,0 ,5,1023,400264,13,2 ,5,1023,400272,13,2 ,5,1023,400280,13,2 ,5,1023,400288,13,2 ,5,1023,400296,19,4 ,5,1023,400304,13,2 ,5,1023,400312,16,3 ,5,1023,400320,13,2 ,17,923,8788932,24,0 ,45,15153,5118916,32,0 ,45,15153,5643204,16,0 ,5,1023,400328,13,2 ,5,1023,400336,13,2 ,5,1023,400344,13,2 ,5,1023,400352,13,2 ,5,1023,400360,13,2 ,5,1023,400368,13,2 ,5,1023,400376,16,3 ,5,1023,400384,12,3 ,20,22880,19799042,172,0 ,17,923,8264708,32,0 ,17,923,7740420,40,0 ,17,923,7216132,64,0 ,17,923,6691844,24,0 ,44,15152,400388,480,0 ,5,1023,400392,16,3 ,5,1023,400400,16,3 ,5,1023,400408,16,3 ,5,1023,400416,16,3 ,20,15506,924706,12,0 ,5,1023,400424,16,3 ,5,1023,400432,16,3 ,5,1023,400440,16,3 ,5,1023,400448,15,3 ,20,23178,20323394,400,0 ,17,923,9837636,32,0 ,45,15153,5643332,160,0 ,5,1023,400456,15,3 ,5,1023,400464,13,2 ,5,1023,400472,9,2 ,5,1023,400480,13,2 ,20,22165,18226274,140,0 ,5,1023,400488,9,2 ,5,1023,400496,9,2 ,5,1023,400504,16,3 ,5,1023,400512,16,3 ,20,15507,924802,136,0 ,17,923,10361988,24,0 ,44,15152,1973380,56,0 ,45,15153,4594820,24,0 ,17,923,8789124,24,0 ,17,923,9313412,32,0 ,5,1023,400520,13,2 ,5,1023,400528,13,2 ,5,1023,400536,13,2 ,5,1023,400544,13,2 ,20,21658,16653474,12,0 ,5,1023,400552,9,2 ,5,1023,400560,13,2 ,5,1023,400568,13,2 ,5,1023,400576,13,2 ,45,15153,5119172,32,0 ,17,923,6692036,24,0 ,5,1023,400584,13,2 ,5,1023,400592,13,2 ,5,1023,400600,9,2 ,5,1023,400608,13,2 ,5,1023,400616,13,2 ,5,1023,400624,13,2 ,5,1023,400632,13,2 ,5,1023,400640,13,2 ,20,21659,16653570,160,0 ,17,923,8264964,32,0 ,44,15152,3022084,32,0 ,5,1023,400648,13,2 ,5,1023,400656,9,2 ,5,1023,400664,13,2 ,5,1023,400672,13,2 ,5,1023,400680,13,2 ,5,1023,400688,16,3 ,5,1023,400696,16,3 ,5,1023,400704,13,2 ,17,923,10362180,32,0 ,17,923,7740740,40,0 ,45,15153,4595012,24,0 ,17,923,8789316,56,0 ,17,923,9837892,40,0 ,5,1023,400712,13,2 ,5,1023,400720,9,2 ,5,1023,400728,13,2 ,5,1023,400736,14,3 ,5,1023,400744,15,3 ,5,1023,400752,16,3 ,5,1023,400760,9,2 ,5,1023,400768,13,2 ,20,19575,10362242,172,0 ,17,923,9313668,24,0 ,17,923,6692228,24,0 ,5,1023,400776,13,2 ,5,1023,400784,13,2 ,5,1023,400792,13,2 ,5,1023,400800,13,2 ,20,20367,12983714,12,0 ,5,1023,400808,9,2 ,5,1023,400816,13,2 ,5,1023,400824,9,2 ,5,1023,400832,13,2 ,45,15153,5119428,32,0 ,5,1023,400840,9,2 ,5,1023,400848,9,2 ,5,1023,400856,13,2 ,5,1023,400864,16,3 ,5,1023,400872,13,2 ,5,1023,400880,12,2 ,5,1023,400888,9,2 ,5,1023,400896,16,3 ,20,20368,12983810,84,0 ,17,923,8265220,32,0 ,17,923,7216644,56,0 ,44,15152,3022340,48,0 ,45,15153,4595204,32,0 ,5,1023,400904,16,3 ,5,1023,400912,13,2 ,5,1023,400920,13,2 ,5,1023,400928,16,3 ,20,21898,17178146,68,0 ,20,18813,8789538,204,0 ,5,1023,400936,16,3 ,5,1023,400944,16,3 ,5,1023,400952,13,2 ,5,1023,400960,13,2 ,20,24086,22421058,48,0 ,20,18115,7216706,540,0 ,20,20890,14556738,4784,0 ,20,23835,21896770,96,0 ,17,923,10362436,32,0 ,17,923,6692420,24,0 ,44,15152,1973828,24,0 ,17,923,9313860,32,0 ,5,1023,400968,16,3 ,5,1023,400976,16,3 ,5,1023,400984,16,3 ,5,1023,400992,13,2 ,20,24289,22945378,136,0 ,5,1023,401000,12,3 ,5,1023,401008,13,2 ,5,1023,401016,12,3 ,5,1023,401024,13,2 ,17,923,9838212,32,0 ,17,923,7741060,40,0 ,5,1023,401032,13,2 ,5,1023,401040,13,2 ,5,1023,401048,13,2 ,5,1023,401056,13,2 ,20,16539,3546786,212,0 ,5,1023,401064,13,2 ,5,1023,401072,13,2 ,5,1023,401080,13,2 ,5,1023,401088,9,2 ,20,20100,11411138,1088,0 ,45,15153,5119684,48,0 ,5,1023,401096,13,2 ,5,1023,401104,9,2 ,5,1023,401112,13,2 ,5,1023,401120,9,2 ,5,1023,401128,9,2 ,5,1023,401136,13,2 ,5,1023,401144,9,2 ,5,1023,401152,13,2 ,20,15948,1974018,136,0 ,17,923,8789764,56,0 ,17,923,6692612,24,0 ,44,15152,1974020,24,0 ,45,15153,4595460,32,0 ,17,923,8265476,40,0 ,5,1023,401160,9,2 ,5,1023,401168,13,2 ,5,1023,401176,9,2 ,5,1023,401184,9,2 ,5,1023,401192,13,2 ,5,1023,401200,13,2 ,5,1023,401208,9,2 ,5,1023,401216,13,2 ,17,923,10362692,40,0 ,17,923,9314116,24,0 ,5,1023,401224,9,2 ,5,1023,401232,13,2 ,5,1023,401240,9,2 ,5,1023,401248,9,2 ,5,1023,401256,13,2 ,5,1023,401264,9,2 ,5,1023,401272,13,2 ,5,1023,401280,9,2 ,17,923,9838468,24,0 ,44,15152,3022724,80,0 ,44,15152,925572,56,0 ,5,1023,401288,13,2 ,5,1023,401296,9,2 ,5,1023,401304,9,2 ,5,1023,401312,13,2 ,20,25623,26615714,92,0 ,5,1023,401320,13,2 ,5,1023,401328,9,2 ,5,1023,401336,13,2 ,5,1023,401344,9,2 ,20,24087,22421442,104,0 ,44,15152,1974212,40,0 ,17,923,7741380,48,0 ,17,923,7217092,64,0 ,17,923,6692804,24,0 ,5,1023,401352,13,2 ,5,1023,401360,9,2 ,5,1023,401368,9,2 ,5,1023,401376,13,2 ,20,18339,7741410,232,0 ,5,1023,401384,9,2 ,5,1023,401392,13,2 ,5,1023,401400,9,2 ,5,1023,401408,13,2 ,17,923,9314308,48,0 ,44,15152,3547140,8,0 ,45,15153,4595716,24,0 ,5,1023,401416,9,2 ,5,1023,401424,9,2 ,5,1023,401432,13,2 ,5,1023,401440,9,2 ,5,1023,401448,13,2 ,5,1023,401456,9,2 ,5,1023,401464,13,2 ,5,1023,401472,9,2 ,20,21899,17178690,60,0 ,20,15294,401474,12,0 ,17,923,9838660,24,0 ,44,15152,3547204,32,0 ,45,15153,5120068,16,0 ,17,923,8265796,40,0 ,5,1023,401480,9,2 ,5,1023,401488,13,2 ,5,1023,401496,12,2 ,5,1023,401504,13,2 ,5,1023,401512,13,2 ,5,1023,401520,12,2 ,5,1023,401528,13,2 ,5,1023,401536,13,2 ,20,26494,29237378,104,0 ,17,923,10363012,16,0 ,17,923,6692996,32,0 ,5,1023,401544,13,2 ,5,1023,401552,13,2 ,5,1023,401560,13,2 ,5,1023,401568,16,3 ,20,21426,16130210,96,0 ,20,15295,401570,196,0 ,20,20369,12984482,440,0 ,5,1023,401576,16,3 ,5,1023,401584,13,2 ,5,1023,401592,16,3 ,5,1023,401600,13,2 ,20,22166,18227394,68,0 ,20,15508,925890,136,0 ,17,923,8790212,40,0 ,45,15153,4071620,16,0 ,45,15153,4595908,16,0 ,45,15153,5120196,24,0 ,5,1023,401608,16,3 ,5,1023,401616,13,2 ,5,1023,401624,19,4 ,5,1023,401632,13,2 ,5,1023,401640,16,3 ,5,1023,401648,13,2 ,5,1023,401656,13,2 ,5,1023,401664,13,2 ,17,923,10363140,16,0 ,44,15152,1974532,48,0 ,17,923,9838852,24,0 ,5,1023,401672,13,2 ,5,1023,401680,13,2 ,5,1023,401688,13,2 ,5,1023,401696,13,2 ,5,1023,401704,13,2 ,5,1023,401712,13,2 ,5,1023,401720,13,2 ,5,1023,401728,13,2 ,20,23836,21897538,1124,0 ,45,15153,5644612,24,0 ,17,923,7741764,56,0 ,44,15152,926020,80,0 ,44,15152,3547460,24,0 ,45,15153,4071748,176,0 ,45,15153,4596036,16,0 ,5,1023,401736,16,3 ,5,1023,401744,13,2 ,5,1023,401752,13,2 ,5,1023,401760,13,2 ,20,22881,19800418,136,0 ,5,1023,401768,13,2 ,5,1023,401776,13,2 ,5,1023,401784,13,2 ,5,1023,401792,13,2 ,17,923,10363268,24,0 ,17,923,6693252,32,0 ,44,15152,2498948,24,0 ,45,15153,5120388,48,0 ,17,923,8266116,40,0 ,17,923,9314692,24,0 ,5,1023,401800,13,2 ,5,1023,401808,13,2 ,5,1023,401816,12,2 ,5,1023,401824,15,3 ,20,24616,23994786,256,0 ,5,1023,401832,12,2 ,5,1023,401840,13,2 ,5,1023,401848,13,2 ,5,1023,401856,13,2 ,17,923,9839044,24,0 ,17,923,7217604,48,0 ,45,15153,4596164,24,0 ,5,1023,401864,13,2 ,5,1023,401872,13,2 ,5,1023,401880,16,3 ,5,1023,401888,12,2 ,5,1023,401896,12,2 ,5,1023,401904,12,2 ,5,1023,401912,19,4 ,5,1023,401920,16,3 ,20,21660,16654850,216,0 ,17,923,8790532,40,0 ,44,15152,3023364,24,0 ,44,15152,3547652,64,0 ,45,15153,5644804,16,0 ,5,1023,401928,13,2 ,5,1023,401936,16,3 ,5,1023,401944,13,2 ,5,1023,401952,13,2 ,20,21900,17179170,60,0 ,5,1023,401960,13,2 ,5,1023,401968,19,4 ,5,1023,401976,13,2 ,5,1023,401984,16,3 ,17,923,10363460,24,0 ,44,15152,2499140,352,0 ,17,923,9314884,72,0 ,5,1023,401992,13,2 ,5,1023,402000,15,3 ,5,1023,402008,15,3 ,5,1023,402016,13,2 ,20,17877,6693474,308,0 ,20,25274,25567842,24,0 ,5,1023,402024,13,2 ,5,1023,402032,16,3 ,5,1023,402040,13,2 ,5,1023,402048,12,2 ,20,25624,26616450,144,0 ,17,923,9839236,24,0 ,17,923,6693508,24,0 ,44,15152,1974916,48,0 ,45,15153,4596356,128,0 ,45,15153,5644932,24,0 ,5,1023,402056,13,2 ,5,1023,402064,13,2 ,5,1023,402072,13,2 ,5,1023,402080,13,2 ,20,24290,22946466,120,0 ,5,1023,402088,12,2 ,5,1023,402096,12,2 ,5,1023,402104,13,2 ,5,1023,402112,13,2 ,20,25062,25043650,1008,0 ,17,923,8266436,40,0 ,44,15152,3023556,16,0 ,5,1023,402120,13,2 ,5,1023,402128,13,2 ,5,1023,402136,13,2 ,5,1023,402144,16,3 ,20,22167,18227938,68,0 ,20,19576,10363618,172,0 ,5,1023,402152,16,3 ,5,1023,402160,16,3 ,5,1023,402168,13,2 ,5,1023,402176,13,2 ,20,24088,22422274,48,0 ,17,923,10363652,16,0 ,17,923,7742212,40,0 ,45,15153,5120772,48,0 ,5,1023,402184,13,2 ,5,1023,402192,13,2 ,5,1023,402200,15,4 ,5,1023,402208,13,2 ,20,25275,25568034,24,0 ,5,1023,402216,13,2 ,5,1023,402224,13,2 ,5,1023,402232,13,2 ,5,1023,402240,12,2 ,20,15949,1975106,136,0 ,17,923,9839428,32,0 ,17,923,7217988,48,0 ,17,923,6693700,32,0 ,44,15152,3023684,24,0 ,45,15153,5645124,40,0 ,17,923,8790852,32,0 ,5,1023,402248,13,2 ,5,1023,402256,13,2 ,5,1023,402264,13,2 ,5,1023,402272,13,2 ,5,1023,402280,13,2 ,5,1023,402288,13,2 ,5,1023,402296,13,2 ,5,1023,402304,13,2 ,17,923,10363780,24,0 ,5,1023,402312,13,2 ,5,1023,402320,13,2 ,5,1023,402328,13,2 ,5,1023,402336,9,2 ,20,21427,16130978,120,0 ,5,1023,402344,13,2 ,5,1023,402352,12,2 ,5,1023,402360,12,2 ,5,1023,402368,19,4 ,20,26495,29238210,672,0 ,44,15152,926660,32,0 ,5,1023,402376,13,2 ,5,1023,402384,16,3 ,5,1023,402392,12,2 ,5,1023,402400,13,2 ,20,21980,17703906,12,0 ,20,25276,25568226,348,0 ,5,1023,402408,13,2 ,5,1023,402416,12,2 ,5,1023,402424,13,2 ,5,1023,402432,13,2 ,20,21901,17179650,496,0 ,20,16121,2499586,92,0 ,17,923,8266756,32,0 ,44,15152,3023876,24,0 ,44,15152,1975300,56,0 ,44,15152,3548164,80,0 ,5,1023,402440,13,2 ,5,1023,402448,13,2 ,5,1023,402456,13,2 ,5,1023,402464,13,2 ,20,21068,15606818,12,0 ,5,1023,402472,13,2 ,5,1023,402480,13,2 ,5,1023,402488,22,5 ,5,1023,402496,19,4 ,20,21981,17704002,88,0 ,17,923,10363972,40,0 ,17,923,7742532,40,0 ,17,923,6693956,32,0 ,17,923,8791108,32,0 ,17,923,9839684,24,0 ,5,1023,402504,19,4 ,5,1023,402512,12,2 ,5,1023,402520,19,4 ,5,1023,402528,16,3 ,5,1023,402536,13,2 ,5,1023,402544,25,6 ,5,1023,402552,22,5 ,5,1023,402560,13,2 ,20,24089,22422658,376,0 ,20,18814,8791170,32,0 ,20,20915,15082626,308,0 ,20,21069,15606914,812,0 ,17,923,9315460,24,0 ,45,15153,5121156,32,0 ,45,15153,5645444,24,0 ,5,1023,402568,19,4 ,5,1023,402576,22,5 ,5,1023,402584,16,3 ,5,1023,402592,25,6 ,20,19826,10888354,160,0 ,5,1023,402600,19,4 ,5,1023,402608,16,3 ,5,1023,402616,12,2 ,5,1023,402624,28,7 ,20,25471,26092738,632,0 ,44,15152,926916,24,0 ,17,923,7218372,48,0 ,44,15152,3024068,32,0 ,44,15152,1451204,32,0 ,5,1023,402632,22,5 ,5,1023,402640,16,3 ,5,1023,402648,13,2 ,5,1023,402656,13,2 ,5,1023,402664,19,4 ,5,1023,402672,16,3 ,5,1023,402680,19,4 ,5,1023,402688,13,2 ,20,23632,21374210,1820,0 ,20,15509,926978,136,0 ,20,22168,18228482,144,0 ,17,923,9839876,24,0 ,17,923,8267012,24,0 ,5,1023,402696,22,5 ,5,1023,402704,16,3 ,5,1023,402712,19,4 ,5,1023,402720,16,3 ,5,1023,402728,13,2 ,5,1023,402736,16,3 ,5,1023,402744,16,3 ,5,1023,402752,25,6 ,20,16540,3548482,56,0 ,17,923,9315652,40,0 ,17,923,6694212,32,0 ,45,15153,5645636,32,0 ,17,923,8791364,32,0 ,5,1023,402760,20,5 ,5,1023,402768,22,5 ,5,1023,402776,18,4 ,5,1023,402784,16,3 ,5,1023,402792,13,2 ,5,1023,402800,13,2 ,5,1023,402808,13,2 ,5,1023,402816,13,2 ,20,18815,8791426,128,0 ,17,923,10364292,32,0 ,17,923,7742852,40,0 ,44,15152,927108,240,0 ,45,15153,5121412,32,0 ,5,1023,402824,16,3 ,5,1023,402832,16,3 ,5,1023,402840,13,2 ,5,1023,402848,13,2 ,20,22882,19801506,160,0 ,5,1023,402856,19,4 ,5,1023,402864,16,3 ,5,1023,402872,18,4 ,5,1023,402880,16,3 ,17,923,9840068,32,0 ,44,15152,3024324,24,0 ,44,15152,1975748,32,0 ,44,15152,1451460,72,0 ,17,923,8267204,24,0 ,5,1023,402888,13,2 ,5,1023,402896,16,3 ,5,1023,402904,16,3 ,5,1023,402912,13,2 ,20,20184,11937250,96,0 ,5,1023,402920,13,2 ,5,1023,402928,13,2 ,5,1023,402936,13,2 ,5,1023,402944,13,2 ,5,1023,402952,13,2 ,5,1023,402960,13,2 ,5,1023,402968,13,2 ,5,1023,402976,13,2 ,20,26033,27665954,480,0 ,5,1023,402984,13,2 ,5,1023,402992,13,2 ,5,1023,403000,13,2 ,5,1023,403008,9,2 ,17,923,8791620,56,0 ,17,923,7218756,48,0 ,17,923,6694468,24,0 ,45,15153,5645892,40,0 ,5,1023,403016,13,2 ,5,1023,403024,24,6 ,5,1023,403032,16,3 ,5,1023,403040,19,4 ,20,24291,22947426,348,0 ,20,23455,20850274,360,0 ,5,1023,403048,16,3 ,5,1023,403056,9,2 ,5,1023,403064,13,2 ,5,1023,403072,13,2 ,17,923,10364548,32,0 ,44,15152,3024516,16,0 ,44,15152,3548804,24,0 ,45,15153,4597380,32,0 ,45,15153,5121668,16,0 ,17,923,8267396,32,0 ,17,923,9315972,32,0 ,5,1023,403080,13,2 ,5,1023,403088,13,2 ,5,1023,403096,13,2 ,5,1023,403104,9,2 ,5,1023,403112,13,2 ,5,1023,403120,13,2 ,5,1023,403128,13,2 ,5,1023,403136,9,2 ,20,15296,403138,72,0 ,17,923,9840324,32,0 ,17,923,7743172,48,0 ,44,15152,1976004,24,0 ,45,15153,4073156,24,0 ,5,1023,403144,13,2 ,5,1023,403152,12,2 ,5,1023,403160,12,2 ,5,1023,403168,13,2 ,20,16122,2500322,48,0 ,5,1023,403176,13,2 ,5,1023,403184,16,3 ,5,1023,403192,16,3 ,5,1023,403200,13,2 ,20,21982,17704706,5848,0 ,20,25625,26617602,316,0 ,20,16541,3548930,12,0 ,45,15153,5121796,16,0 ,17,923,6694660,24,0 ,44,15152,3024644,72,0 ,5,1023,403208,14,3 ,5,1023,403216,13,2 ,5,1023,403224,13,2 ,5,1023,403232,13,2 ,20,18340,7743266,1992,0 ,5,1023,403240,13,2 ,5,1023,403248,16,3 ,5,1023,403256,13,2 ,5,1023,403264,13,2 ,44,15152,3548996,88,0 ,5,1023,403272,12,2 ,5,1023,403280,13,2 ,5,1023,403288,13,2 ,5,1023,403296,15,3 ,20,21428,16131938,120,0 ,20,16542,3549026,52,0 ,5,1023,403304,16,3 ,5,1023,403312,16,3 ,5,1023,403320,16,3 ,5,1023,403328,13,2 ,20,15950,1976194,252,0 ,17,923,10364804,32,0 ,44,15152,1976196,56,0 ,45,15153,4073348,336,0 ,45,15153,4597636,16,0 ,45,15153,5121924,32,0 ,45,15153,5646212,48,0 ,17,923,8267652,32,0 ,17,923,9316228,32,0 ,5,1023,403336,13,2 ,5,1023,403344,13,2 ,5,1023,403352,16,3 ,5,1023,403360,15,3 ,5,1023,403368,16,3 ,5,1023,403376,16,3 ,5,1023,403384,16,3 ,5,1023,403392,13,2 ,20,24783,24520642,468,0 ,17,923,9840580,32,0 ,17,923,7219140,48,0 ,17,923,6694852,24,0 ,5,1023,403400,13,2 ,5,1023,403408,13,2 ,5,1023,403416,13,2 ,5,1023,403424,13,2 ,5,1023,403432,16,3 ,5,1023,403440,13,2 ,5,1023,403448,13,2 ,5,1023,403456,13,2 ,17,923,8792068,32,0 ,44,15152,1452036,24,0 ,45,15153,4597764,16,0 ,5,1023,403464,13,2 ,5,1023,403472,13,2 ,5,1023,403480,19,4 ,5,1023,403488,19,4 ,5,1023,403496,18,4 ,5,1023,403504,19,4 ,5,1023,403512,16,3 ,5,1023,403520,22,5 ,20,19577,10364994,84,0 ,17,923,7743556,48,0 ,5,1023,403528,14,3 ,5,1023,403536,13,2 ,5,1023,403544,13,2 ,5,1023,403552,13,2 ,20,16123,2500706,308,0 ,5,1023,403560,16,3 ,5,1023,403568,16,3 ,5,1023,403576,12,2 ,5,1023,403584,13,2 ,17,923,10365060,32,0 ,17,923,6695044,24,0 ,45,15153,4597892,16,0 ,45,15153,5122180,16,0 ,17,923,8267908,48,0 ,17,923,9316484,24,0 ,5,1023,403592,13,2 ,5,1023,403600,13,2 ,5,1023,403608,13,2 ,5,1023,403616,13,2 ,5,1023,403624,13,2 ,5,1023,403632,19,4 ,5,1023,403640,19,4 ,5,1023,403648,19,4 ,20,23179,20326594,400,0 ,20,25793,27142338,300,0 ,20,21661,16656578,232,0 ,17,923,9840836,24,0 ,44,15152,1452228,24,0 ,5,1023,403656,13,2 ,5,1023,403664,25,6 ,5,1023,403672,22,5 ,5,1023,403680,22,5 ,20,20185,11938018,440,0 ,5,1023,403688,12,2 ,5,1023,403696,16,3 ,5,1023,403704,13,2 ,5,1023,403712,13,2 ,20,16543,3549442,52,0 ,20,15297,403714,120,0 ,17,923,8792324,48,0 ,45,15153,4598020,24,0 ,45,15153,5122308,24,0 ,45,15153,5646596,24,0 ,5,1023,403720,13,2 ,5,1023,403728,13,2 ,5,1023,403736,13,2 ,5,1023,403744,13,2 ,5,1023,403752,13,2 ,5,1023,403760,16,3 ,5,1023,403768,13,2 ,5,1023,403776,16,3 ,20,15510,928066,392,0 ,17,923,9316676,24,0 ,17,923,7219524,40,0 ,17,923,6695236,40,0 ,44,15152,3025220,16,0 ,44,15152,1976644,56,0 ,5,1023,403784,12,2 ,5,1023,403792,13,2 ,5,1023,403800,13,2 ,5,1023,403808,13,2 ,20,17650,6170978,88,0 ,5,1023,403816,13,2 ,5,1023,403824,16,3 ,5,1023,403832,13,2 ,5,1023,403840,16,3 ,20,22169,18229634,140,0 ,20,18816,8792450,196,0 ,17,923,10365316,48,0 ,44,15152,1452420,24,0 ,17,923,9841028,32,0 ,5,1023,403848,13,2 ,5,1023,403856,19,4 ,5,1023,403864,16,3 ,5,1023,403872,16,3 ,20,24617,23996834,960,0 ,20,19827,10889634,160,0 ,5,1023,403880,13,2 ,5,1023,403888,12,2 ,5,1023,403896,13,2 ,5,1023,403904,13,2 ,45,15153,5646788,16,0 ,17,923,7743940,24,0 ,44,15152,3025348,24,0 ,45,15153,4598212,40,0 ,45,15153,5122500,16,0 ,5,1023,403912,13,2 ,5,1023,403920,12,2 ,5,1023,403928,13,2 ,5,1023,403936,13,2 ,20,22640,19278306,548,0 ,5,1023,403944,15,3 ,5,1023,403952,13,2 ,5,1023,403960,13,2 ,5,1023,403968,13,2 ,17,923,9316868,56,0 ,44,15152,3549700,24,0 ,17,923,8268292,32,0 ,5,1023,403976,13,2 ,5,1023,403984,12,2 ,5,1023,403992,13,2 ,5,1023,404000,13,2 ,5,1023,404008,13,2 ,5,1023,404016,13,2 ,5,1023,404024,15,3 ,5,1023,404032,16,3 ,45,15153,5646916,112,0 ,44,15152,1452612,24,0 ,45,15153,5122628,48,0 ,5,1023,404040,13,2 ,5,1023,404048,13,2 ,5,1023,404056,13,2 ,5,1023,404064,13,2 ,5,1023,404072,13,2 ,5,1023,404080,15,3 ,5,1023,404088,23,5 ,5,1023,404096,23,5 ,17,923,9841284,40,0 ,17,923,7744132,32,0 ,17,923,7219844,48,0 ,17,923,6695556,40,0 ,44,15152,3025540,48,0 ,17,923,8792708,24,0 ,5,1023,404104,23,5 ,5,1023,404112,16,3 ,5,1023,404120,13,2 ,5,1023,404128,13,2 ,20,22883,19802786,204,0 ,20,16544,3549858,252,0 ,5,1023,404136,13,2 ,5,1023,404144,21,5 ,5,1023,404152,14,3 ,5,1023,404160,12,2 ,44,15152,3549892,24,0 ,5,1023,404168,13,2 ,5,1023,404176,13,2 ,5,1023,404184,13,2 ,5,1023,404192,13,2 ,20,19578,10365666,300,0 ,5,1023,404200,13,2 ,5,1023,404208,13,2 ,5,1023,404216,13,2 ,5,1023,404224,13,2 ,17,923,10365700,40,0 ,44,15152,1977092,40,0 ,44,15152,1452804,200,0 ,44,15152,404228,32,0 ,45,15153,4598532,32,0 ,17,923,8268548,24,0 ,5,1023,404232,13,2 ,5,1023,404240,18,4 ,5,1023,404248,13,2 ,5,1023,404256,13,2 ,20,21429,16132898,12,0 ,5,1023,404264,13,2 ,5,1023,404272,25,6 ,5,1023,404280,22,5 ,5,1023,404288,14,3 ,17,923,8792900,40,0 ,5,1023,404296,16,3 ,5,1023,404304,18,4 ,5,1023,404312,19,4 ,5,1023,404320,19,4 ,5,1023,404328,19,4 ,5,1023,404336,28,7 ,5,1023,404344,19,4 ,5,1023,404352,16,3 ,20,21430,16132994,12,0 ,44,15152,3550084,24,0 ,17,923,7744388,24,0 ,5,1023,404360,28,7 ,5,1023,404368,19,4 ,5,1023,404376,19,4 ,5,1023,404384,19,4 ,5,1023,404392,16,3 ,5,1023,404400,16,3 ,5,1023,404408,15,3 ,5,1023,404416,13,2 ,17,923,9841604,24,0 ,17,923,6695876,40,0 ,45,15153,5123012,16,0 ,17,923,8268740,40,0 ,17,923,9317316,32,0 ,5,1023,404424,13,2 ,5,1023,404432,13,2 ,5,1023,404440,13,2 ,5,1023,404448,13,2 ,20,21431,16133090,12,0 ,5,1023,404456,13,2 ,5,1023,404464,16,3 ,5,1023,404472,16,3 ,5,1023,404480,15,4 ,20,17878,6695938,12,0 ,45,15153,4598788,16,0 ,17,923,7220228,40,0 ,44,15152,3025924,80,0 ,44,15152,404484,32,0 ,5,1023,404488,13,2 ,5,1023,404496,13,2 ,5,1023,404504,13,2 ,5,1023,404512,14,3 ,20,17651,6171682,192,0 ,5,1023,404520,13,2 ,5,1023,404528,12,2 ,5,1023,404536,13,2 ,5,1023,404544,12,2 ,20,21432,16133186,52,0 ,17,923,10366020,24,0 ,17,923,7744580,24,0 ,44,15152,1977412,16,0 ,44,15152,3550276,56,0 ,45,15153,5123140,96,0 ,5,1023,404552,16,3 ,5,1023,404560,13,2 ,5,1023,404568,13,2 ,5,1023,404576,13,2 ,20,17879,6696034,12,0 ,5,1023,404584,16,3 ,5,1023,404592,13,2 ,5,1023,404600,12,2 ,5,1023,404608,16,3 ,17,923,9841796,40,0 ,45,15153,4598916,16,0 ,17,923,8793220,24,0 ,5,1023,404616,13,2 ,5,1023,404624,13,2 ,5,1023,404632,13,2 ,5,1023,404640,13,2 ,5,1023,404648,13,2 ,5,1023,404656,19,4 ,5,1023,404664,16,3 ,5,1023,404672,22,5 ,20,17880,6696130,12,0 ,20,15298,404674,72,0 ,17,923,9317572,24,0 ,44,15152,1977540,40,0 ,5,1023,404680,16,3 ,5,1023,404688,22,5 ,5,1023,404696,9,2 ,5,1023,404704,13,2 ,5,1023,404712,15,3 ,5,1023,404720,16,3 ,5,1023,404728,16,3 ,5,1023,404736,22,5 ,20,17239,5123330,176,0 ,17,923,10366212,32,0 ,17,923,7744772,40,0 ,17,923,6696196,24,0 ,44,15152,404740,16,0 ,44,15152,929028,32,0 ,45,15153,4599044,24,0 ,17,923,8269060,24,0 ,5,1023,404744,19,4 ,5,1023,404752,16,3 ,5,1023,404760,28,7 ,5,1023,404768,22,5 ,20,17881,6696226,56,0 ,20,17463,5647650,312,0 ,5,1023,404776,19,4 ,5,1023,404784,16,3 ,5,1023,404792,19,4 ,5,1023,404800,16,3 ,17,923,8793412,24,0 ,17,923,7220548,32,0 ,44,15152,2501956,56,0 ,5,1023,404808,16,3 ,5,1023,404816,16,3 ,5,1023,404824,16,3 ,5,1023,404832,15,3 ,5,1023,404840,16,3 ,5,1023,404848,16,3 ,5,1023,404856,16,3 ,5,1023,404864,16,3 ,17,923,9317764,56,0 ,44,15152,404868,16,0 ,5,1023,404872,15,3 ,5,1023,404880,19,4 ,5,1023,404888,16,3 ,5,1023,404896,13,2 ,5,1023,404904,28,7 ,5,1023,404912,21,5 ,5,1023,404920,16,3 ,5,1023,404928,13,2 ,17,923,9842116,40,0 ,17,923,6696388,24,0 ,45,15153,4599236,16,0 ,45,15153,5647812,48,0 ,17,923,8269252,40,0 ,5,1023,404936,13,2 ,5,1023,404944,12,2 ,5,1023,404952,13,2 ,5,1023,404960,13,2 ,20,22170,18230754,140,0 ,20,21433,16133602,12,0 ,5,1023,404968,13,2 ,5,1023,404976,13,2 ,5,1023,404984,16,3 ,5,1023,404992,13,2 ,17,923,10366468,40,0 ,44,15152,1977860,24,0 ,44,15152,404996,16,0 ,44,15152,929284,64,0 ,44,15152,3550724,64,0 ,17,923,8793604,32,0 ,5,1023,405000,12,2 ,5,1023,405008,23,5 ,5,1023,405016,23,5 ,5,1023,405024,23,5 ,20,20916,15085090,324,0 ,5,1023,405032,13,2 ,5,1023,405040,13,2 ,5,1023,405048,13,2 ,5,1023,405056,13,2 ,20,21434,16133698,288,0 ,45,15153,4599364,24,0 ,17,923,7745092,32,0 ,17,923,7220804,32,0 ,5,1023,405064,12,2 ,5,1023,405072,15,3 ,5,1023,405080,15,3 ,5,1023,405088,16,3 ,20,20370,12988002,160,0 ,5,1023,405096,16,3 ,5,1023,405104,13,2 ,5,1023,405112,13,2 ,5,1023,405120,13,2 ,44,15152,405124,24,0 ,17,923,6696580,40,0 ,44,15152,3026564,64,0 ,5,1023,405128,13,2 ,5,1023,405136,13,2 ,5,1023,405144,13,2 ,5,1023,405152,13,2 ,20,19828,10890914,208,0 ,5,1023,405160,13,2 ,5,1023,405168,13,2 ,5,1023,405176,13,2 ,5,1023,405184,13,2 ,20,25277,25571010,100,0 ,44,15152,1978052,112,0 ,5,1023,405192,13,2 ,5,1023,405200,13,2 ,5,1023,405208,13,2 ,5,1023,405216,16,3 ,20,17882,6696674,260,0 ,5,1023,405224,16,3 ,5,1023,405232,19,4 ,5,1023,405240,12,2 ,5,1023,405248,12,2 ,20,15299,405250,128,0 ,17,923,9842436,40,0 ,44,15152,2502404,24,0 ,45,15153,4599556,24,0 ,17,923,8269572,40,0 ,17,923,8793860,16,0 ,5,1023,405256,13,2 ,5,1023,405264,13,2 ,5,1023,405272,13,2 ,5,1023,405280,13,2 ,20,18116,7221026,152,0 ,5,1023,405288,13,2 ,5,1023,405296,13,2 ,5,1023,405304,13,2 ,5,1023,405312,13,2 ,17,923,10366788,24,0 ,17,923,7745348,24,0 ,17,923,7221060,32,0 ,44,15152,405316,16,0 ,45,15153,5123908,24,0 ,45,15153,5648196,16,0 ,17,923,9318212,48,0 ,5,1023,405320,13,2 ,5,1023,405328,13,2 ,5,1023,405336,14,3 ,5,1023,405344,16,3 ,20,15951,1978210,12,0 ,5,1023,405352,13,2 ,5,1023,405360,12,2 ,5,1023,405368,16,3 ,5,1023,405376,13,2 ,17,923,8793988,48,0 ,5,1023,405384,13,2 ,5,1023,405392,13,2 ,5,1023,405400,9,2 ,5,1023,405408,12,2 ,20,18817,8794018,252,0 ,5,1023,405416,13,2 ,5,1023,405424,25,6 ,5,1023,405432,22,5 ,5,1023,405440,13,3 ,20,15952,1978306,124,0 ,45,15153,5648324,32,0 ,17,923,6696900,24,0 ,44,15152,2502596,24,0 ,44,15152,405444,24,0 ,45,15153,4599748,16,0 ,5,1023,405448,17,4 ,5,1023,405456,17,4 ,5,1023,405464,13,2 ,5,1023,405472,12,2 ,5,1023,405480,25,6 ,5,1023,405488,19,4 ,5,1023,405496,19,4 ,5,1023,405504,13,3 ,20,21662,16658434,296,0 ,17,923,10366980,32,0 ,17,923,7745540,32,0 ,44,15152,929796,40,0 ,44,15152,3551236,32,0 ,45,15153,5124100,32,0 ,5,1023,405512,14,3 ,5,1023,405520,16,3 ,5,1023,405528,14,3 ,5,1023,405536,16,3 ,5,1023,405544,18,4 ,5,1023,405552,19,4 ,5,1023,405560,19,4 ,5,1023,405568,19,4 ,20,24090,22425666,652,0 ,17,923,9842756,32,0 ,17,923,7221316,32,0 ,45,15153,4599876,16,0 ,17,923,8269892,24,0 ,5,1023,405576,19,4 ,5,1023,405584,19,4 ,5,1023,405592,18,4 ,5,1023,405600,19,4 ,5,1023,405608,19,4 ,5,1023,405616,19,4 ,5,1023,405624,18,4 ,5,1023,405632,19,4 ,44,15152,405636,16,0 ,17,923,6697092,32,0 ,44,15152,3027076,56,0 ,44,15152,2502788,424,0 ,5,1023,405640,19,4 ,5,1023,405648,19,4 ,5,1023,405656,19,4 ,5,1023,405664,19,4 ,5,1023,405672,18,4 ,5,1023,405680,19,4 ,5,1023,405688,19,4 ,5,1023,405696,19,4 ,17,923,9318596,24,0 ,45,15153,4600004,16,0 ,45,15153,5648580,16,0 ,5,1023,405704,19,4 ,5,1023,405712,16,3 ,5,1023,405720,16,3 ,5,1023,405728,13,2 ,20,25626,26620130,96,0 ,5,1023,405736,28,7 ,5,1023,405744,13,2 ,5,1023,405752,13,2 ,5,1023,405760,13,2 ,20,22884,19804418,124,0 ,17,923,10367236,24,0 ,17,923,7745796,40,0 ,44,15152,405764,24,0 ,44,15152,3551492,40,0 ,45,15153,5124356,24,0 ,17,923,8270084,32,0 ,17,923,8794372,24,0 ,5,1023,405768,13,2 ,5,1023,405776,13,2 ,5,1023,405784,13,2 ,5,1023,405792,13,2 ,5,1023,405800,13,2 ,5,1023,405808,13,2 ,5,1023,405816,13,2 ,5,1023,405824,13,2 ,20,24292,22950210,404,0 ,17,923,9843012,24,0 ,17,923,7221572,32,0 ,44,15152,1454404,24,0 ,44,15152,930116,32,0 ,45,15153,4600132,32,0 ,45,15153,5648708,56,0 ,5,1023,405832,13,2 ,5,1023,405840,13,2 ,5,1023,405848,15,3 ,5,1023,405856,16,3 ,5,1023,405864,16,3 ,5,1023,405872,16,3 ,5,1023,405880,16,3 ,5,1023,405888,15,3 ,17,923,9318788,56,0 ,17,923,6697348,32,0 ,5,1023,405896,12,3 ,5,1023,405904,13,2 ,5,1023,405912,9,2 ,5,1023,405920,12,2 ,20,23456,20853154,1524,0 ,5,1023,405928,13,2 ,5,1023,405936,12,2 ,5,1023,405944,16,3 ,5,1023,405952,16,3 ,17,923,10367428,24,0 ,44,15152,405956,32,0 ,45,15153,5124548,24,0 ,17,923,8794564,40,0 ,5,1023,405960,16,3 ,5,1023,405968,13,2 ,5,1023,405976,13,2 ,5,1023,405984,16,3 ,20,25278,25571810,116,0 ,5,1023,405992,16,3 ,5,1023,406000,16,3 ,5,1023,406008,13,2 ,5,1023,406016,13,2 ,20,16124,2503170,44,0 ,17,923,9843204,24,0 ,44,15152,1454596,24,0 ,45,15153,4076036,16,0 ,17,923,8270340,40,0 ,5,1023,406024,15,3 ,5,1023,406032,16,3 ,5,1023,406040,13,2 ,5,1023,406048,13,2 ,20,17652,6173218,192,0 ,20,25794,27144738,196,0 ,5,1023,406056,13,2 ,5,1023,406064,16,3 ,5,1023,406072,16,3 ,5,1023,406080,13,2 ,20,22171,18231874,192,0 ,20,20626,13513282,608,0 ,45,15153,4600388,16,0 ,17,923,7746116,48,0 ,17,923,7221828,56,0 ,44,15152,3027524,56,0 ,44,15152,1978948,24,0 ,44,15152,930372,24,0 ,44,15152,3551812,40,0 ,5,1023,406088,13,2 ,5,1023,406096,13,2 ,5,1023,406104,13,2 ,5,1023,406112,19,4 ,5,1023,406120,15,3 ,5,1023,406128,16,3 ,5,1023,406136,13,2 ,5,1023,406144,19,4 ,20,17240,5124738,748,0 ,20,16545,3551874,248,0 ,17,923,10367620,24,0 ,17,923,6697604,16,0 ,45,15153,4076164,16,0 ,45,15153,5124740,16,0 ,5,1023,406152,19,4 ,5,1023,406160,13,2 ,5,1023,406168,12,2 ,5,1023,406176,13,2 ,5,1023,406184,19,4 ,5,1023,406192,16,3 ,5,1023,406200,13,2 ,5,1023,406208,13,2 ,20,19045,9319106,900,0 ,17,923,9843396,24,0 ,44,15152,1454788,72,0 ,44,15152,406212,88,0 ,45,15153,4600516,24,0 ,5,1023,406216,13,2 ,5,1023,406224,16,3 ,5,1023,406232,16,3 ,5,1023,406240,16,3 ,5,1023,406248,13,2 ,5,1023,406256,13,2 ,5,1023,406264,16,3 ,5,1023,406272,16,3 ,20,15300,406274,344,0 ,17,923,8794884,48,0 ,17,923,6697732,32,0 ,44,15152,1979140,24,0 ,44,15152,930564,24,0 ,45,15153,4076292,16,0 ,45,15153,5124868,24,0 ,45,15153,5649156,216,0 ,5,1023,406280,13,2 ,5,1023,406288,13,2 ,5,1023,406296,13,2 ,5,1023,406304,13,2 ,5,1023,406312,16,3 ,5,1023,406320,12,2 ,5,1023,406328,16,3 ,5,1023,406336,13,2 ,17,923,10367812,32,0 ,17,923,8270660,32,0 ,17,923,9319236,24,0 ,5,1023,406344,13,2 ,5,1023,406352,16,3 ,5,1023,406360,13,2 ,5,1023,406368,12,2 ,20,20371,12989282,328,0 ,20,16125,2503522,440,0 ,5,1023,406376,13,2 ,5,1023,406384,16,3 ,5,1023,406392,16,3 ,5,1023,406400,14,3 ,20,21902,17183618,104,0 ,17,923,9843588,40,0 ,44,15152,3552132,32,0 ,45,15153,4076420,16,0 ,45,15153,4600708,24,0 ,5,1023,406408,17,4 ,5,1023,406416,19,4 ,5,1023,406424,13,2 ,5,1023,406432,15,3 ,20,15953,1979298,136,0 ,5,1023,406440,13,2 ,5,1023,406448,13,2 ,5,1023,406456,16,3 ,5,1023,406464,13,2 ,45,15153,5125060,16,0 ,17,923,7746500,56,0 ,44,15152,1979332,40,0 ,44,15152,930756,24,0 ,5,1023,406472,13,2 ,5,1023,406480,16,3 ,5,1023,406488,13,2 ,5,1023,406496,19,4 ,20,18117,7222242,12,0 ,20,25627,26620898,280,0 ,5,1023,406504,13,2 ,5,1023,406512,13,2 ,5,1023,406520,13,2 ,5,1023,406528,12,2 ,17,923,9319428,24,0 ,17,923,7222276,32,0 ,17,923,6697988,32,0 ,44,15152,3027972,56,0 ,45,15153,4076548,16,0 ,5,1023,406536,13,2 ,5,1023,406544,19,4 ,5,1023,406552,13,2 ,5,1023,406560,13,2 ,5,1023,406568,12,2 ,5,1023,406576,17,4 ,5,1023,406584,13,2 ,5,1023,406592,13,2 ,20,19579,10368066,12,0 ,20,18118,7222338,12,0 ,17,923,10368068,32,0 ,45,15153,4600900,16,0 ,45,15153,5125188,16,0 ,17,923,8270916,24,0 ,5,1023,406600,13,2 ,5,1023,406608,13,2 ,5,1023,406616,13,2 ,5,1023,406624,9,2 ,5,1023,406632,15,3 ,5,1023,406640,13,2 ,5,1023,406648,9,2 ,5,1023,406656,16,3 ,17,923,8795268,48,0 ,44,15152,930948,24,0 ,44,15152,3552388,48,0 ,45,15153,4076676,16,0 ,5,1023,406664,15,4 ,5,1023,406672,15,4 ,5,1023,406680,12,3 ,5,1023,406688,12,3 ,20,19580,10368162,388,0 ,20,18119,7222434,336,0 ,5,1023,406696,9,2 ,5,1023,406704,9,2 ,5,1023,406712,13,2 ,5,1023,406720,16,3 ,17,923,9843908,32,0 ,45,15153,4601028,16,0 ,45,15153,5125316,24,0 ,17,923,9319620,72,0 ,5,1023,406728,13,2 ,5,1023,406736,13,2 ,5,1023,406744,13,2 ,5,1023,406752,13,2 ,20,22885,19805410,136,0 ,5,1023,406760,16,3 ,5,1023,406768,16,3 ,5,1023,406776,13,3 ,5,1023,406784,13,3 ,17,923,8271108,40,0 ,17,923,7222532,48,0 ,17,923,6698244,24,0 ,44,15152,1979652,24,0 ,44,15152,1455364,80,0 ,45,15153,4076804,16,0 ,5,1023,406792,13,2 ,5,1023,406800,13,2 ,5,1023,406808,13,2 ,5,1023,406816,13,2 ,20,19829,10892578,128,0 ,20,26034,27669794,236,0 ,5,1023,406824,13,2 ,5,1023,406832,13,2 ,4,15006,406840,14,5 ,4,15006,406848,14,5 ,20,23180,20329794,304,0 ,17,923,10368324,48,0 ,44,15152,931140,24,0 ,45,15153,4601156,16,0 ,4,15006,406856,15,5 ,4,15006,406864,14,5 ,4,15006,406872,15,5 ,4,15006,406880,14,5 ,4,15006,406888,14,5 ,4,15006,406896,14,5 ,4,15006,406904,15,5 ,4,15006,406912,14,5 ,20,15511,931202,472,0 ,20,25279,25572738,936,0 ,45,15153,5125508,16,0 ,17,923,7746948,56,0 ,44,15152,406916,24,0 ,45,15153,4076932,16,0 ,4,15006,406920,15,5 ,4,15006,406928,14,5 ,4,15006,406936,14,5 ,4,15006,406944,15,5 ,4,15006,406952,14,5 ,4,15006,406960,15,5 ,4,15006,406968,14,5 ,4,15006,406976,14,5 ,17,923,9844164,40,0 ,17,923,6698436,24,0 ,44,15152,3028420,56,0 ,44,15152,1979844,24,0 ,45,15153,4601284,16,0 ,4,15006,406984,14,5 ,4,15006,406992,14,5 ,4,15006,407000,13,5 ,4,15006,407008,14,5 ,4,15006,407016,14,5 ,4,15006,407024,14,5 ,4,15006,407032,14,5 ,4,15006,407040,14,5 ,17,923,8795652,24,0 ,44,15152,931332,40,0 ,44,15152,3552772,72,0 ,45,15153,4077060,80,0 ,45,15153,5125636,24,0 ,4,15006,407048,14,5 ,4,15006,407056,15,5 ,4,15006,407064,14,5 ,4,15006,407072,14,5 ,4,15006,407080,13,5 ,4,15006,407088,13,5 ,4,15006,407096,13,5 ,4,15006,407104,13,5 ,17,923,8271428,32,0 ,44,15152,407108,24,0 ,45,15153,4601412,16,0 ,4,15006,407112,12,5 ,4,15006,407120,12,5 ,4,15006,407128,12,5 ,4,15006,407136,15,5 ,20,24784,24524386,56,0 ,4,15006,407144,14,5 ,4,15006,407152,15,5 ,4,15006,407160,15,5 ,4,15006,407168,14,5 ,44,15152,1980036,40,0 ,17,923,7222916,40,0 ,17,923,6698628,24,0 ,4,15006,407176,14,5 ,4,15006,407184,15,5 ,4,15006,407192,14,5 ,4,15006,407200,14,5 ,20,20186,11941538,860,0 ,4,15006,407208,14,5 ,4,15006,407216,15,5 ,4,15006,407224,14,5 ,4,15006,407232,14,5 ,20,21903,17184450,216,0 ,17,923,10368708,24,0 ,45,15153,4601540,16,0 ,45,15153,5125828,24,0 ,17,923,8795844,48,0 ,4,15006,407240,14,5 ,4,15006,407248,12,5 ,4,15006,407256,14,5 ,4,15006,407264,13,5 ,20,17464,5650146,144,0 ,4,15006,407272,13,5 ,4,15006,407280,13,5 ,4,15006,407288,14,5 ,4,15006,407296,12,5 ,20,17883,6698754,12,0 ,17,923,9844484,32,0 ,44,15152,407300,24,0 ,17,923,9320196,48,0 ,4,15006,407304,14,5 ,4,15006,407312,12,5 ,4,15006,407320,14,5 ,4,15006,407328,15,5 ,4,15006,407336,16,5 ,4,15006,407344,13,5 ,4,15006,407352,13,5 ,4,15006,407360,13,5 ,20,21435,16136002,392,0 ,17,923,8271684,40,0 ,17,923,7747396,24,0 ,17,923,6698820,32,0 ,44,15152,931652,152,0 ,45,15153,4601668,16,0 ,4,15006,407368,14,5 ,4,15006,407376,14,5 ,4,15006,407384,14,5 ,4,15006,407392,14,5 ,20,17884,6698850,340,0 ,4,15006,407400,16,5 ,4,15006,407408,14,5 ,4,15006,407416,13,5 ,4,15006,407424,12,5 ,20,18818,8796034,116,0 ,46,15154,10368900,16,0 ,44,15152,3028868,80,0 ,44,15152,1456004,56,0 ,45,15153,5126020,16,0 ,4,15006,407432,12,5 ,4,15006,407440,13,5 ,4,15006,407448,14,5 ,4,15006,407456,13,5 ,4,15006,407464,13,5 ,4,15006,407472,14,5 ,4,15006,407480,14,5 ,4,15006,407488,16,5 ,45,15153,4601796,16,0 ,17,923,7223236,32,0 ,44,15152,1980356,32,0 ,44,15152,407492,24,0 ,4,15006,407496,14,5 ,4,15006,407504,14,5 ,4,15006,407512,13,5 ,4,15006,407520,14,5 ,20,15954,1980386,136,0 ,4,15006,407528,12,5 ,4,15006,407536,14,5 ,4,15006,407544,12,5 ,4,15006,407552,14,5 ,46,15154,10369028,16,0 ,17,923,7747588,24,0 ,45,15153,5126148,72,0 ,17,923,9844740,24,0 ,4,15006,407560,13,5 ,4,15006,407568,14,5 ,4,15006,407576,14,5 ,4,15006,407584,14,5 ,20,17653,6174754,504,0 ,20,24785,24524834,112,0 ,4,15006,407592,13,5 ,4,15006,407600,13,5 ,4,15006,407608,12,5 ,4,15006,407616,13,5 ,20,22172,18233410,192,0 ,20,25795,27146306,128,0 ,20,20917,15087682,4384,0 ,17,923,8796228,16,0 ,17,923,6699076,32,0 ,44,15152,3553348,56,0 ,45,15153,4601924,40,0 ,4,15006,407624,14,5 ,4,15006,407632,14,5 ,4,15006,407640,13,5 ,4,15006,407648,16,5 ,4,15006,407656,14,5 ,4,15006,407664,14,5 ,4,15006,407672,14,5 ,4,15006,407680,14,5 ,20,25472,26097794,80,0 ,46,15154,10369156,40,0 ,44,15152,407684,32,0 ,45,15153,4077700,48,0 ,17,923,8272004,48,0 ,17,923,9320580,48,0 ,4,15006,407688,14,5 ,4,15006,407696,14,5 ,4,15006,407704,16,5 ,4,15006,407712,14,5 ,4,15006,407720,16,5 ,4,15006,407728,14,5 ,4,15006,407736,13,5 ,4,15006,407744,14,5 ,20,26496,29243586,112,0 ,17,923,9844932,32,0 ,17,923,7747780,48,0 ,17,923,7223492,48,0 ,44,15152,1980612,16,0 ,17,923,8796356,72,0 ,4,15006,407752,14,5 ,4,15006,407760,15,5 ,4,15006,407768,16,5 ,4,15006,407776,14,5 ,4,15006,407784,14,5 ,4,15006,407792,14,5 ,4,15006,407800,14,5 ,4,15006,407808,14,5 ,4,15006,407816,16,5 ,4,15006,407824,14,5 ,4,15006,407832,14,5 ,4,15006,407840,14,5 ,20,22886,19806498,124,0 ,20,19830,10893602,108,0 ,4,15006,407848,14,5 ,4,15006,407856,14,5 ,4,15006,407864,14,5 ,4,15006,407872,14,5 ,20,21663,16660802,12,0 ,44,15152,1456452,144,0 ,17,923,6699332,24,0 ,44,15152,1980740,24,0 ,4,15006,407880,14,5 ,4,15006,407888,15,5 ,4,15006,407896,14,5 ,4,15006,407904,14,5 ,4,15006,407912,14,5 ,4,15006,407920,14,5 ,4,15006,407928,15,5 ,4,15006,407936,14,5 ,45,15153,4602244,48,0 ,44,15152,407940,24,0 ,4,15006,407944,14,5 ,4,15006,407952,14,5 ,4,15006,407960,14,5 ,4,15006,407968,15,5 ,20,21664,16660898,12,0 ,4,15006,407976,14,5 ,4,15006,407984,14,5 ,4,15006,407992,14,5 ,4,15006,408000,14,5 ,46,15154,10369476,32,0 ,45,15153,5650884,40,0 ,17,923,9845188,32,0 ,4,15006,408008,14,5 ,4,15006,408016,13,5 ,4,15006,408024,14,5 ,4,15006,408032,14,5 ,20,24462,23476706,372,0 ,4,15006,408040,14,5 ,4,15006,408048,14,5 ,4,15006,408056,14,5 ,4,15006,408064,13,5 ,20,21665,16660994,96,0 ,17,923,9320964,32,0 ,17,923,6699524,32,0 ,44,15152,3029508,120,0 ,44,15152,1980932,120,0 ,44,15152,3553796,24,0 ,45,15153,4078084,24,0 ,17,923,8272388,48,0 ,4,15006,408072,14,5 ,4,15006,408080,12,5 ,4,15006,408088,14,5 ,4,15006,408096,14,5 ,4,15006,408104,14,5 ,4,15006,408112,14,5 ,4,15006,408120,14,5 ,4,15006,408128,14,5 ,20,16546,3553858,72,0 ,45,15153,5126724,24,0 ,17,923,7748164,16,0 ,17,923,7223876,24,0 ,44,15152,408132,24,0 ,4,15006,408136,14,5 ,4,15006,408144,14,5 ,4,15006,408152,14,5 ,4,15006,408160,14,5 ,4,15006,408168,14,5 ,4,15006,408176,14,5 ,4,15006,408184,12,5 ,4,15006,408192,14,5 ,4,15006,408200,14,5 ,4,15006,408208,14,5 ,4,15006,408216,14,5 ,4,15006,408224,13,5 ,4,15006,408232,14,5 ,4,15006,408240,14,5 ,4,15006,408248,14,5 ,4,15006,408256,12,5 ,46,15154,10369732,16,0 ,17,923,7748292,24,0 ,44,15152,3553988,48,0 ,45,15153,4078276,16,0 ,17,923,9845444,24,0 ,4,15006,408264,14,5 ,4,15006,408272,14,5 ,4,15006,408280,14,5 ,4,15006,408288,12,5 ,4,15006,408296,14,5 ,4,15006,408304,12,5 ,4,15006,408312,14,5 ,4,15006,408320,14,5 ,20,22641,19282690,80,0 ,20,25473,26098434,648,0 ,17,923,9321220,48,0 ,17,923,7224068,32,0 ,17,923,6699780,64,0 ,44,15152,408324,168,0 ,45,15153,4602628,32,0 ,45,15153,5126916,40,0 ,45,15153,5651204,16,0 ,17,923,8796932,24,0 ,4,15006,408328,14,5 ,4,15006,408336,14,5 ,4,15006,408344,14,5 ,4,15006,408352,12,5 ,20,18819,8796962,12,0 ,4,15006,408360,16,5 ,4,15006,408368,16,5 ,4,15006,408376,16,5 ,4,15006,408384,14,5 ,46,15154,10369860,16,0 ,45,15153,4078404,16,0 ,4,15006,408392,16,5 ,4,15006,408400,14,5 ,4,15006,408408,14,5 ,4,15006,408416,14,5 ,20,17465,5651298,744,0 ,4,15006,408424,14,5 ,4,15006,408432,14,5 ,4,15006,408440,14,5 ,4,15006,408448,14,5 ,20,18820,8797058,128,0 ,17,923,9845636,32,0 ,17,923,7748484,32,0 ,45,15153,5651332,48,0 ,17,923,8272772,40,0 ,4,15006,408456,14,5 ,4,15006,408464,12,5 ,4,15006,408472,13,5 ,4,15006,408480,12,5 ,20,24786,24525730,228,0 ,4,15006,408488,14,5 ,4,15006,408496,14,5 ,4,15006,408504,14,5 ,4,15006,408512,14,5 ,46,15154,10369988,16,0 ,45,15153,4078532,16,0 ,17,923,8797124,64,0 ,4,15006,408520,12,5 ,4,15006,408528,14,5 ,4,15006,408536,14,5 ,4,15006,408544,16,5 ,4,15006,408552,14,5 ,4,15006,408560,15,5 ,4,15006,408568,14,5 ,4,15006,408576,14,5 ,45,15153,4602884,32,0 ,17,923,7224324,48,0 ,44,15152,932868,32,0 ,4,15006,408584,14,5 ,4,15006,408592,14,5 ,4,15006,408600,16,5 ,4,15006,408608,14,5 ,20,15955,1981474,52,0 ,4,15006,408616,14,5 ,4,15006,408624,13,5 ,4,15006,408632,13,5 ,4,15006,408640,13,5 ,20,25796,27147330,388,0 ,20,26497,29244482,308,0 ,46,15154,10370116,24,0 ,44,15152,3554372,24,0 ,45,15153,4078660,56,0 ,45,15153,5127236,32,0 ,4,15006,408648,16,5 ,4,15006,408656,14,5 ,4,15006,408664,14,5 ,4,15006,408672,16,5 ,4,15006,408680,14,5 ,4,15006,408688,15,5 ,4,15006,408696,14,5 ,4,15006,408704,14,5 ,20,19831,10894466,196,0 ,20,26035,27671682,500,0 ,20,16547,3554434,160,0 ,17,923,9845892,24,0 ,17,923,7748740,32,0 ,17,923,9321604,48,0 ,4,15006,408712,13,5 ,4,15006,408720,14,5 ,4,15006,408728,15,5 ,4,15006,408736,14,5 ,20,25628,26623138,280,0 ,4,15006,408744,14,5 ,4,15006,408752,14,5 ,4,15006,408760,15,5 ,4,15006,408768,14,5 ,17,923,8273092,40,0 ,4,15006,408776,14,5 ,4,15006,408784,15,5 ,4,15006,408792,14,5 ,4,15006,408800,15,5 ,4,15006,408808,14,5 ,4,15006,408816,14,5 ,4,15006,408824,14,5 ,4,15006,408832,15,5 ,20,22887,19807490,148,0 ,20,21666,16661762,12,0 ,46,15154,10370308,16,0 ,17,923,6700292,48,0 ,44,15152,933124,24,0 ,44,15152,3554564,24,0 ,45,15153,4603140,56,0 ,45,15153,5651716,96,0 ,4,15006,408840,14,5 ,4,15006,408848,14,5 ,4,15006,408856,14,5 ,4,15006,408864,14,5 ,4,15006,408872,16,5 ,4,15006,408880,14,5 ,4,15006,408888,16,5 ,4,15006,408896,14,5 ,17,923,9846084,32,0 ,45,15153,5127492,16,0 ,4,15006,408904,16,5 ,4,15006,408912,14,5 ,4,15006,408920,14,5 ,4,15006,408928,14,5 ,20,21667,16661858,112,0 ,4,15006,408936,14,5 ,4,15006,408944,16,5 ,4,15006,408952,14,5 ,4,15006,408960,16,5 ,20,22642,19283330,80,0 ,20,21904,17186178,340,0 ,46,15154,10370436,16,0 ,17,923,7748996,40,0 ,17,923,7224708,24,0 ,4,15006,408968,14,5 ,4,15006,408976,16,5 ,4,15006,408984,14,5 ,4,15006,408992,16,5 ,20,20372,12991906,80,0 ,4,15006,409000,14,5 ,4,15006,409008,14,5 ,4,15006,409016,16,5 ,4,15006,409024,14,5 ,20,15956,1981890,136,0 ,20,15301,409026,716,0 ,20,15751,1457602,176,0 ,17,923,8797636,32,0 ,44,15152,3030468,24,0 ,44,15152,2506180,144,0 ,44,15152,1981892,40,0 ,44,15152,1457604,64,0 ,44,15152,933316,24,0 ,44,15152,3554756,24,0 ,45,15153,5127620,32,0 ,4,15006,409032,14,5 ,4,15006,409040,14,5 ,4,15006,409048,14,5 ,4,15006,409056,14,5 ,20,24293,22953442,100,0 ,20,21070,15613410,464,0 ,4,15006,409064,13,5 ,4,15006,409072,14,5 ,4,15006,409080,13,5 ,4,15006,409088,13,5 ,46,15154,10370564,16,0 ,45,15153,4079108,24,0 ,17,923,8273412,40,0 ,17,923,9321988,24,0 ,4,15006,409096,14,5 ,4,15006,409104,14,5 ,4,15006,409112,14,5 ,4,15006,409120,16,5 ,4,15006,409128,14,5 ,4,15006,409136,14,5 ,4,15006,409144,14,5 ,4,15006,409152,16,5 ,20,22173,18234946,140,0 ,17,923,9846340,24,0 ,17,923,7224900,32,0 ,4,15006,409160,14,5 ,4,15006,409168,15,5 ,4,15006,409176,14,5 ,4,15006,409184,14,5 ,4,15006,409192,14,5 ,4,15006,409200,14,5 ,4,15006,409208,14,5 ,4,15006,409216,14,5 ,46,15154,10370692,16,0 ,17,923,6700676,56,0 ,44,15152,3030660,48,0 ,44,15152,933508,64,0 ,44,15152,3554948,24,0 ,4,15006,409224,14,5 ,4,15006,409232,14,5 ,4,15006,409240,15,5 ,4,15006,409248,15,5 ,4,15006,409256,14,5 ,4,15006,409264,15,5 ,4,15006,409272,14,5 ,4,15006,409280,15,5 ,20,23181,20332226,376,0 ,17,923,9322180,64,0 ,17,923,7749316,24,0 ,45,15153,4079300,88,0 ,45,15153,4603588,48,0 ,45,15153,5127876,80,0 ,17,923,8797892,72,0 ,4,15006,409288,14,5 ,4,15006,409296,14,5 ,4,15006,409304,15,5 ,4,15006,409312,14,5 ,4,15006,409320,14,5 ,4,15006,409328,14,5 ,4,15006,409336,16,5 ,4,15006,409344,14,5 ,46,15154,10370820,16,0 ,44,15152,1982212,88,0 ,17,923,9846532,16,0 ,4,15006,409352,14,5 ,4,15006,409360,14,5 ,4,15006,409368,15,5 ,4,15006,409376,14,5 ,20,18120,7225122,12,0 ,4,15006,409384,14,5 ,4,15006,409392,15,5 ,4,15006,409400,14,5 ,4,15006,409408,13,5 ,17,923,8273732,40,0 ,17,923,7225156,48,0 ,44,15152,3555140,72,0 ,4,15006,409416,13,5 ,4,15006,409424,13,5 ,4,15006,409432,13,5 ,4,15006,409440,14,5 ,4,15006,409448,14,5 ,4,15006,409456,14,5 ,4,15006,409464,13,5 ,4,15006,409472,14,5 ,20,18821,8798082,96,0 ,20,18121,7225218,548,0 ,46,15154,10370948,24,0 ,17,923,7749508,32,0 ,17,923,9846660,16,0 ,4,15006,409480,14,5 ,4,15006,409488,14,5 ,4,15006,409496,14,5 ,4,15006,409504,15,5 ,20,17076,4603810,12,0 ,4,15006,409512,14,5 ,4,15006,409520,15,5 ,4,15006,409528,14,5 ,4,15006,409536,14,5 ,44,15152,1458116,40,0 ,4,15006,409544,14,5 ,4,15006,409552,14,5 ,4,15006,409560,15,5 ,4,15006,409568,16,5 ,4,15006,409576,14,5 ,4,15006,409584,14,5 ,4,15006,409592,16,5 ,4,15006,409600,14,5 ,20,22643,19283970,80,0 ,20,17077,4603906,44,0 ,17,923,9846788,24,0 ,44,15152,3031044,72,0 ,45,15153,5652484,24,0 ,4,15006,409608,12,5 ,4,15006,409616,14,5 ,4,15006,409624,13,5 ,4,15006,409632,14,5 ,20,20373,12992546,12,0 ,4,15006,409640,13,5 ,4,15006,409648,13,5 ,4,15006,409656,14,5 ,4,15006,409664,13,5 ,46,15154,10371140,24,0 ,17,923,6701124,48,0 ,44,15152,409668,112,0 ,45,15153,4603972,32,0 ,4,15006,409672,13,5 ,4,15006,409680,14,5 ,4,15006,409688,13,5 ,4,15006,409696,13,5 ,4,15006,409704,14,5 ,4,15006,409712,14,5 ,4,15006,409720,13,5 ,4,15006,409728,13,5 ,20,20374,12992642,84,0 ,17,923,8274052,32,0 ,17,923,7749764,32,0 ,44,15152,934020,136,0 ,4,15006,409736,13,5 ,4,15006,409744,14,5 ,4,15006,409752,13,5 ,4,15006,409760,13,5 ,4,15006,409768,13,5 ,4,15006,409776,13,5 ,4,15006,409784,13,5 ,4,15006,409792,13,5 ,20,20101,11419842,492,0 ,20,19581,10371266,12,0 ,17,923,9846980,40,0 ,17,923,7225540,32,0 ,45,15153,5652676,64,0 ,17,923,9322692,40,0 ,4,15006,409800,13,5 ,4,15006,409808,13,5 ,4,15006,409816,14,5 ,4,15006,409824,13,5 ,20,21668,16662754,52,0 ,4,15006,409832,13,5 ,4,15006,409840,12,5 ,4,15006,409848,14,5 ,4,15006,409856,14,5 ,20,24294,22954242,100,0 ,46,15154,10371332,16,0 ,44,15152,1458436,360,0 ,17,923,8798468,24,0 ,4,15006,409864,13,5 ,4,15006,409872,14,5 ,4,15006,409880,13,5 ,4,15006,409888,13,5 ,20,19582,10371362,112,0 ,20,16126,2507042,224,0 ,4,15006,409896,13,5 ,4,15006,409904,13,5 ,4,15006,409912,13,5 ,4,15006,409920,13,5 ,45,15153,5128516,32,0 ,45,15153,4604228,32,0 ,4,15006,409928,15,5 ,4,15006,409936,13,5 ,4,15006,409944,14,5 ,4,15006,409952,13,5 ,20,17078,4604258,248,0 ,4,15006,409960,13,5 ,4,15006,409968,13,5 ,4,15006,409976,13,5 ,4,15006,409984,13,5 ,20,16548,3555714,48,0 ,46,15154,10371460,16,0 ,17,923,7750020,32,0 ,44,15152,3555716,24,0 ,45,15153,4080004,64,0 ,17,923,8274308,40,0 ,4,15006,409992,13,5 ,4,15006,410000,13,5 ,4,15006,410008,13,5 ,4,15006,410016,13,5 ,20,22888,19808674,124,0 ,4,15006,410024,13,5 ,4,15006,410032,13,5 ,4,15006,410040,13,5 ,4,15006,410048,13,5 ,17,923,8798660,64,0 ,17,923,7225796,56,0 ,17,923,6701508,24,0 ,44,15152,1982916,24,0 ,4,15006,410056,13,5 ,4,15006,410064,13,5 ,4,15006,410072,15,5 ,4,15006,410080,14,5 ,4,15006,410088,14,5 ,4,15006,410096,12,5 ,4,15006,410104,12,5 ,4,15006,410112,15,5 ,20,17885,6701570,140,0 ,20,15957,1982978,136,0 ,46,15154,10371588,16,0 ,17,923,9323012,40,0 ,17,923,9847300,40,0 ,4,15006,410120,12,5 ,4,15006,410128,14,5 ,4,15006,410136,13,5 ,4,15006,410144,13,5 ,4,15006,410152,13,5 ,4,15006,410160,14,5 ,4,15006,410168,14,5 ,4,15006,410176,12,5 ,20,25063,25051714,852,0 ,45,15153,5128772,24,0 ,44,15152,3031620,48,0 ,44,15152,2507332,40,0 ,44,15152,3555908,24,0 ,45,15153,4604484,24,0 ,4,15006,410184,12,5 ,4,15006,410192,13,5 ,4,15006,410200,13,5 ,4,15006,410208,13,5 ,4,15006,410216,13,5 ,4,15006,410224,13,5 ,4,15006,410232,15,5 ,4,15006,410240,14,5 ,20,22644,19284610,80,0 ,20,18822,8798850,68,0 ,20,21669,16663170,52,0 ,46,15154,10371716,16,0 ,17,923,7750276,32,0 ,17,923,6701700,24,0 ,44,15152,1983108,56,0 ,4,15006,410248,16,5 ,4,15006,410256,15,5 ,4,15006,410264,14,5 ,4,15006,410272,15,5 ,20,22174,18236066,192,0 ,20,19832,10896034,1032,0 ,4,15006,410280,14,5 ,4,15006,410288,14,5 ,4,15006,410296,15,5 ,4,15006,410304,15,5 ,20,24787,24527554,48,0 ,20,26346,28721858,164,0 ,17,923,8274628,48,0 ,45,15153,5653188,32,0 ,4,15006,410312,13,5 ,4,15006,410320,14,5 ,4,15006,410328,13,5 ,4,15006,410336,14,5 ,4,15006,410344,14,5 ,4,15006,410352,14,5 ,4,15006,410360,14,5 ,4,15006,410368,12,5 ,20,16549,3556098,48,0 ,45,15153,5128964,24,0 ,44,15152,3556100,24,0 ,45,15153,4604676,56,0 ,4,15006,410376,13,5 ,4,15006,410384,13,5 ,4,15006,410392,14,5 ,4,15006,410400,13,5 ,20,20375,12993314,440,0 ,4,15006,410408,14,5 ,4,15006,410416,12,5 ,4,15006,410424,14,5 ,4,15006,410432,13,5 ,20,15752,1459010,132,0 ,17,923,9847620,24,0 ,17,923,6701892,32,0 ,17,923,9323332,32,0 ,4,15006,410440,13,5 ,4,15006,410448,13,5 ,4,15006,410456,15,5 ,4,15006,410464,14,5 ,4,15006,410472,14,5 ,4,15006,410480,15,5 ,4,15006,410488,12,5 ,4,15006,410496,14,5 ,20,21436,16139138,104,0 ,45,15153,4080516,24,0 ,17,923,7750532,32,0 ,17,923,7226244,40,0 ,44,15152,2507652,32,0 ,4,15006,410504,13,5 ,4,15006,410512,14,5 ,4,15006,410520,13,5 ,4,15006,410528,14,5 ,4,15006,410536,15,5 ,4,15006,410544,14,5 ,4,15006,410552,14,5 ,4,15006,410560,14,5 ,17,923,8799172,32,0 ,44,15152,3032004,48,0 ,44,15152,410564,16,0 ,44,15152,3556292,24,0 ,45,15153,5129156,64,0 ,45,15153,5653444,48,0 ,4,15006,410568,15,5 ,4,15006,410576,14,5 ,4,15006,410584,13,5 ,4,15006,410592,13,5 ,4,15006,410600,13,5 ,4,15006,410608,14,5 ,4,15006,410616,14,5 ,4,15006,410624,14,5 ,17,923,9847812,24,0 ,4,15006,410632,14,5 ,4,15006,410640,14,5 ,4,15006,410648,13,5 ,4,15006,410656,14,5 ,20,24295,22955042,100,0 ,20,21670,16663586,636,0 ,4,15006,410664,14,5 ,4,15006,410672,14,5 ,4,15006,410680,14,5 ,4,15006,410688,13,5 ,20,15512,934978,452,0 ,20,24788,24527938,684,0 ,17,923,9323588,48,0 ,17,923,6702148,40,0 ,44,15152,1983556,72,0 ,44,15152,410692,40,0 ,45,15153,4080708,24,0 ,17,923,8275012,32,0 ,4,15006,410696,14,5 ,4,15006,410704,14,5 ,4,15006,410712,14,5 ,4,15006,410720,13,5 ,20,23837,21906530,1508,0 ,4,15006,410728,14,5 ,4,15006,410736,13,5 ,4,15006,410744,14,5 ,4,15006,410752,14,5 ,20,16550,3556482,48,0 ,44,15152,3556484,184,0 ,17,923,7750788,32,0 ,44,15152,2507908,144,0 ,4,15006,410760,14,5 ,4,15006,410768,14,5 ,4,15006,410776,14,5 ,4,15006,410784,14,5 ,20,24091,22430882,892,0 ,20,18823,8799394,196,0 ,20,19583,10372258,12,0 ,4,15006,410792,14,5 ,4,15006,410800,13,5 ,4,15006,410808,13,5 ,4,15006,410816,14,5 ,17,923,9848004,24,0 ,17,923,7226564,48,0 ,44,15152,935108,16,0 ,45,15153,4605124,16,0 ,17,923,8799428,64,0 ,4,15006,410824,13,5 ,4,15006,410832,14,5 ,4,15006,410840,14,5 ,4,15006,410848,13,5 ,4,15006,410856,14,5 ,4,15006,410864,14,5 ,4,15006,410872,14,5 ,4,15006,410880,14,5 ,20,22645,19285250,80,0 ,20,19584,10372354,12,0 ,45,15153,4080900,16,0 ,4,15006,410888,14,5 ,4,15006,410896,14,5 ,4,15006,410904,14,5 ,4,15006,410912,14,5 ,4,15006,410920,14,5 ,4,15006,410928,14,5 ,4,15006,410936,14,5 ,4,15006,410944,14,5 ,20,20627,13518146,92,0 ,17,923,8275268,32,0 ,44,15152,3032388,16,0 ,44,15152,935236,16,0 ,45,15153,4605252,32,0 ,45,15153,5653828,56,0 ,4,15006,410952,14,5 ,4,15006,410960,15,5 ,4,15006,410968,14,5 ,4,15006,410976,14,5 ,20,19585,10372450,388,0 ,20,25629,26625378,344,0 ,4,15006,410984,13,5 ,4,15006,410992,14,5 ,4,15006,411000,13,5 ,4,15006,411008,14,5 ,20,24463,23479682,304,0 ,20,22889,19809666,164,0 ,17,923,9848196,24,0 ,17,923,7751044,32,0 ,17,923,6702468,40,0 ,44,15152,411012,32,0 ,45,15153,4081028,24,0 ,4,15006,411016,14,5 ,4,15006,411024,14,5 ,4,15006,411032,14,5 ,4,15006,411040,14,5 ,4,15006,411048,13,5 ,4,15006,411056,13,5 ,4,15006,411064,13,5 ,4,15006,411072,13,5 ,17,923,9323972,64,0 ,44,15152,3032516,128,0 ,44,15152,935364,16,0 ,45,15153,5129668,24,0 ,4,15006,411080,13,5 ,4,15006,411088,13,5 ,4,15006,411096,13,5 ,4,15006,411104,13,5 ,20,26498,29246946,136,0 ,4,15006,411112,13,5 ,4,15006,411120,14,5 ,4,15006,411128,14,5 ,4,15006,411136,14,5 ,20,16551,3556866,20,0 ,4,15006,411144,13,5 ,4,15006,411152,14,5 ,4,15006,411160,13,5 ,4,15006,411168,14,5 ,4,15006,411176,14,5 ,4,15006,411184,14,5 ,4,15006,411192,14,5 ,4,15006,411200,14,5 ,20,15958,1984066,264,0 ,17,923,9848388,32,0 ,17,923,7226948,24,0 ,44,15152,935492,24,0 ,45,15153,4081220,32,0 ,45,15153,4605508,16,0 ,17,923,8275524,32,0 ,4,15006,411208,15,5 ,4,15006,411216,14,5 ,4,15006,411224,14,5 ,4,15006,411232,13,5 ,20,17886,6702690,12,0 ,4,15006,411240,14,5 ,4,15006,411248,14,5 ,4,15006,411256,14,5 ,4,15006,411264,14,5 ,45,15153,5129860,32,0 ,17,923,7751300,32,0 ,44,15152,1984132,24,0 ,44,15152,411268,16,0 ,4,15006,411272,14,5 ,4,15006,411280,13,5 ,4,15006,411288,13,5 ,4,15006,411296,13,5 ,20,22440,18761378,888,0 ,20,16552,3557026,376,0 ,4,15006,411304,13,5 ,4,15006,411312,14,5 ,4,15006,411320,14,5 ,4,15006,411328,14,5 ,20,21437,16139970,216,0 ,20,17887,6702786,12,0 ,17,923,8799940,24,0 ,17,923,6702788,16,0 ,45,15153,4605636,80,0 ,4,15006,411336,14,5 ,4,15006,411344,13,5 ,4,15006,411352,14,5 ,4,15006,411360,14,5 ,4,15006,411368,14,5 ,4,15006,411376,14,5 ,4,15006,411384,13,5 ,4,15006,411392,13,5 ,45,15153,5654276,56,0 ,17,923,7227140,24,0 ,44,15152,411396,16,0 ,44,15152,935684,40,0 ,4,15006,411400,13,5 ,4,15006,411408,16,5 ,4,15006,411416,15,5 ,4,15006,411424,14,5 ,20,17888,6702882,12,0 ,4,15006,411432,16,5 ,4,15006,411440,14,5 ,4,15006,411448,15,5 ,4,15006,411456,16,5 ,20,24296,22955842,268,0 ,17,923,9848644,32,0 ,17,923,6702916,16,0 ,44,15152,1984324,24,0 ,45,15153,4081476,16,0 ,17,923,8275780,24,0 ,4,15006,411464,14,5 ,4,15006,411472,14,5 ,4,15006,411480,12,5 ,4,15006,411488,13,5 ,20,15753,1460066,176,0 ,4,15006,411496,13,5 ,4,15006,411504,14,5 ,4,15006,411512,13,5 ,4,15006,411520,13,5 ,20,22646,19285890,80,0 ,20,17889,6702978,56,0 ,17,923,8800132,72,0 ,17,923,7751556,40,0 ,44,15152,411524,32,0 ,45,15153,5130116,24,0 ,4,15006,411528,15,5 ,4,15006,411536,14,5 ,4,15006,411544,13,5 ,4,15006,411552,13,5 ,20,24618,24004514,1084,0 ,4,15006,411560,14,5 ,4,15006,411568,13,5 ,4,15006,411576,13,5 ,4,15006,411584,13,5 ,17,923,9324484,32,0 ,17,923,7227332,32,0 ,17,923,6703044,24,0 ,45,15153,4081604,16,0 ,4,15006,411592,14,5 ,4,15006,411600,14,5 ,4,15006,411608,15,5 ,4,15006,411616,15,5 ,20,17654,6178786,192,0 ,20,26347,28723170,212,0 ,4,15006,411624,14,5 ,4,15006,411632,14,5 ,4,15006,411640,14,5 ,4,15006,411648,13,5 ,17,923,8275972,24,0 ,44,15152,1984516,168,0 ,4,15006,411656,12,5 ,4,15006,411664,14,5 ,4,15006,411672,16,5 ,4,15006,411680,14,5 ,20,21905,17188898,284,0 ,20,16127,2508834,32,0 ,20,20628,13518882,12,0 ,4,15006,411688,14,5 ,4,15006,411696,14,5 ,4,15006,411704,14,5 ,4,15006,411712,12,5 ,17,923,9848900,32,0 ,44,15152,936004,56,0 ,45,15153,4081732,16,0 ,45,15153,5130308,16,0 ,4,15006,411720,14,5 ,4,15006,411728,16,5 ,4,15006,411736,14,5 ,4,15006,411744,14,5 ,20,25797,27150434,1096,0 ,4,15006,411752,14,5 ,4,15006,411760,14,5 ,4,15006,411768,15,5 ,4,15006,411776,15,5 ,20,20629,13518978,168,0 ,44,15152,411780,16,0 ,17,923,6703236,40,0 ,4,15006,411784,15,5 ,4,15006,411792,15,5 ,4,15006,411800,16,5 ,4,15006,411808,14,5 ,20,22175,18237602,140,0 ,4,15006,411816,14,5 ,4,15006,411824,14,5 ,4,15006,411832,12,5 ,4,15006,411840,14,5 ,17,923,9324740,24,0 ,17,923,7751876,24,0 ,17,923,7227588,32,0 ,45,15153,4081860,24,0 ,45,15153,5130436,32,0 ,45,15153,5654724,40,0 ,17,923,8276164,32,0 ,4,15006,411848,13,5 ,4,15006,411856,13,5 ,4,15006,411864,15,5 ,4,15006,411872,14,5 ,4,15006,411880,14,5 ,4,15006,411888,14,5 ,4,15006,411896,14,5 ,4,15006,411904,16,5 ,44,15152,411908,48,0 ,44,15152,2509060,48,0 ,4,15006,411912,14,5 ,4,15006,411920,13,5 ,4,15006,411928,13,5 ,4,15006,411936,14,5 ,20,17079,4606242,280,0 ,20,16128,2509090,108,0 ,4,15006,411944,14,5 ,4,15006,411952,13,5 ,4,15006,411960,14,5 ,4,15006,411968,13,5 ,20,17890,6703426,112,0 ,17,923,9849156,40,0 ,45,15153,4606276,584,0 ,4,15006,411976,13,5 ,4,15006,411984,12,5 ,4,15006,411992,13,5 ,4,15006,412000,13,5 ,4,15006,412008,13,5 ,4,15006,412016,13,5 ,4,15006,412024,12,5 ,4,15006,412032,12,5 ,17,923,9324932,56,0 ,17,923,7752068,24,0 ,45,15153,4082052,24,0 ,4,15006,412040,13,5 ,4,15006,412048,13,5 ,4,15006,412056,14,5 ,4,15006,412064,14,5 ,4,15006,412072,12,5 ,4,15006,412080,14,5 ,4,15006,412088,14,5 ,4,15006,412096,13,5 ,17,923,8800708,56,0 ,17,923,7227844,32,0 ,17,923,6703556,40,0 ,44,15152,3033540,40,0 ,45,15153,5130692,40,0 ,17,923,8276420,40,0 ,4,15006,412104,14,5 ,4,15006,412112,14,5 ,4,15006,412120,13,5 ,4,15006,412128,13,5 ,20,17241,5130722,12,0 ,4,15006,412136,14,5 ,4,15006,412144,13,5 ,4,15006,412152,12,5 ,4,15006,412160,13,5 ,20,22647,19286530,80,0 ,45,15153,5655044,24,0 ,44,15152,936452,24,0 ,4,15006,412168,13,5 ,4,15006,412176,12,5 ,4,15006,412184,13,5 ,4,15006,412192,12,5 ,20,26499,29248034,76,0 ,4,15006,412200,13,5 ,4,15006,412208,13,5 ,4,15006,412216,13,5 ,4,15006,412224,14,5 ,20,17242,5130818,512,0 ,45,15153,4082244,16,0 ,17,923,7752260,72,0 ,44,15152,3557956,24,0 ,4,15006,412232,13,5 ,4,15006,412240,16,5 ,4,15006,412248,14,5 ,4,15006,412256,14,5 ,4,15006,412264,15,5 ,4,15006,412272,14,5 ,4,15006,412280,14,5 ,4,15006,412288,14,5 ,20,23182,20335234,708,0 ,20,26208,28199554,328,0 ,17,923,9849476,40,0 ,44,15152,2509444,120,0 ,44,15152,412292,48,0 ,4,15006,412296,15,5 ,4,15006,412304,14,5 ,4,15006,412312,14,5 ,4,15006,412320,14,5 ,20,22890,19810978,156,0 ,4,15006,412328,16,5 ,4,15006,412336,14,5 ,4,15006,412344,16,5 ,4,15006,412352,14,5 ,20,18824,8800962,528,0 ,45,15153,5655236,216,0 ,17,923,7228100,32,0 ,44,15152,936644,32,0 ,45,15153,4082372,16,0 ,4,15006,412360,14,5 ,4,15006,412368,14,5 ,4,15006,412376,12,5 ,4,15006,412384,15,5 ,4,15006,412392,13,5 ,4,15006,412400,13,5 ,4,15006,412408,14,5 ,4,15006,412416,13,5 ,17,923,8276740,24,0 ,17,923,6703876,40,0 ,44,15152,3033860,24,0 ,44,15152,3558148,40,0 ,45,15153,5131012,32,0 ,4,15006,412424,14,5 ,4,15006,412432,15,5 ,4,15006,412440,14,5 ,4,15006,412448,14,5 ,4,15006,412456,14,5 ,4,15006,412464,14,5 ,4,15006,412472,13,5 ,4,15006,412480,13,5 ,17,923,9325380,48,0 ,45,15153,4082500,16,0 ,4,15006,412488,14,5 ,4,15006,412496,14,5 ,4,15006,412504,13,5 ,4,15006,412512,13,5 ,4,15006,412520,12,5 ,4,15006,412528,14,5 ,4,15006,412536,13,5 ,4,15006,412544,14,5 ,17,923,8801156,32,0 ,4,15006,412552,13,5 ,4,15006,412560,12,5 ,4,15006,412568,12,5 ,4,15006,412576,13,5 ,4,15006,412584,13,5 ,4,15006,412592,13,5 ,4,15006,412600,13,5 ,4,15006,412608,13,5 ,17,923,9849796,40,0 ,17,923,7228356,32,0 ,44,15152,3034052,104,0 ,44,15152,936900,16,0 ,45,15153,4082628,16,0 ,17,923,8276932,24,0 ,4,15006,412616,15,5 ,4,15006,412624,15,5 ,4,15006,412632,15,5 ,4,15006,412640,15,5 ,4,15006,412648,15,5 ,4,15006,412656,13,5 ,4,15006,412664,13,5 ,4,15006,412672,16,5 ,45,15153,5131268,16,0 ,44,15152,412676,24,0 ,4,15006,412680,13,5 ,4,15006,412688,14,5 ,4,15006,412696,13,5 ,4,15006,412704,14,5 ,20,26036,27675682,272,0 ,4,15006,412712,15,5 ,4,15006,412720,14,5 ,4,15006,412728,15,5 ,4,15006,412736,14,5 ,45,15153,4082756,24,0 ,17,923,6704196,40,0 ,44,15152,1461316,24,0 ,44,15152,937028,32,0 ,44,15152,3558468,24,0 ,4,15006,412744,14,5 ,4,15006,412752,14,5 ,4,15006,412760,14,5 ,4,15006,412768,13,5 ,20,21071,15617122,12,0 ,4,15006,412776,14,5 ,4,15006,412784,15,5 ,4,15006,412792,14,5 ,4,15006,412800,15,5 ,20,22648,19287170,76,0 ,20,26500,29248642,732,0 ,20,16129,2509954,1216,0 ,17,923,8801412,24,0 ,17,923,7752836,72,0 ,45,15153,5131396,24,0 ,17,923,8277124,64,0 ,4,15006,412808,14,5 ,4,15006,412816,14,5 ,4,15006,412824,16,5 ,4,15006,412832,15,5 ,4,15006,412840,15,5 ,4,15006,412848,15,5 ,4,15006,412856,12,5 ,4,15006,412864,13,5 ,20,21072,15617218,812,0 ,20,17891,6704322,208,0 ,17,923,9325764,56,0 ,17,923,7228612,40,0 ,44,15152,412868,24,0 ,4,15006,412872,13,5 ,4,15006,412880,13,5 ,4,15006,412888,13,5 ,4,15006,412896,13,5 ,20,15754,1461474,132,0 ,4,15006,412904,15,5 ,4,15006,412912,15,5 ,4,15006,412920,15,5 ,4,15006,412928,15,5 ,20,22176,18238722,100,0 ,17,923,9850116,40,0 ,44,15152,1461508,96,0 ,44,15152,3558660,24,0 ,45,15153,4082948,24,0 ,4,15006,412936,15,5 ,4,15006,412944,16,5 ,4,15006,412952,14,5 ,4,15006,412960,14,5 ,4,15006,412968,15,5 ,4,15006,412976,15,5 ,4,15006,412984,15,5 ,4,15006,412992,15,5 ,17,923,8801604,56,0 ,44,15152,1985860,56,0 ,44,15152,937284,16,0 ,45,15153,5131588,16,0 ,4,15006,413000,15,5 ,4,15006,413008,16,5 ,4,15006,413016,14,5 ,4,15006,413024,16,5 ,4,15006,413032,13,5 ,4,15006,413040,15,5 ,4,15006,413048,12,5 ,4,15006,413056,12,5 ,20,21438,16141698,104,0 ,44,15152,413060,24,0 ,17,923,6704516,24,0 ,4,15006,413064,16,5 ,4,15006,413072,14,5 ,4,15006,413080,16,5 ,4,15006,413088,14,5 ,4,15006,413096,16,5 ,4,15006,413104,14,5 ,4,15006,413112,14,5 ,4,15006,413120,14,5 ,20,20630,13520322,12,0 ,45,15153,5131716,24,0 ,44,15152,937412,24,0 ,44,15152,3558852,24,0 ,45,15153,4083140,24,0 ,4,15006,413128,14,5 ,4,15006,413136,13,5 ,4,15006,413144,14,5 ,4,15006,413152,14,5 ,20,17655,6180322,192,0 ,4,15006,413160,14,5 ,4,15006,413168,14,5 ,4,15006,413176,13,5 ,4,15006,413184,14,5 ,17,923,7228932,24,0 ,4,15006,413192,14,5 ,4,15006,413200,14,5 ,4,15006,413208,14,5 ,4,15006,413216,14,5 ,20,20631,13520418,316,0 ,4,15006,413224,14,5 ,4,15006,413232,14,5 ,4,15006,413240,16,5 ,4,15006,413248,14,5 ,17,923,9850436,32,0 ,17,923,6704708,24,0 ,44,15152,2510404,40,0 ,44,15152,413252,24,0 ,4,15006,413256,15,5 ,4,15006,413264,15,5 ,4,15006,413272,14,5 ,4,15006,413280,14,5 ,4,15006,413288,15,5 ,4,15006,413296,14,5 ,4,15006,413304,16,5 ,4,15006,413312,16,5 ,20,15959,1986178,136,0 ,20,26348,28724866,156,0 ,17,923,9326212,56,0 ,44,15152,937604,48,0 ,44,15152,3559044,24,0 ,45,15153,4083332,24,0 ,45,15153,5131908,24,0 ,17,923,8277636,24,0 ,4,15006,413320,16,5 ,4,15006,413328,15,5 ,4,15006,413336,15,5 ,4,15006,413344,14,5 ,4,15006,413352,15,5 ,4,15006,413360,15,5 ,4,15006,413368,16,5 ,4,15006,413376,16,5 ,17,923,7229124,40,0 ,17,923,7753412,24,0 ,4,15006,413384,15,5 ,4,15006,413392,15,5 ,4,15006,413400,15,5 ,4,15006,413408,14,5 ,20,22649,19287778,2372,0 ,20,19046,9326306,472,0 ,4,15006,413416,15,5 ,4,15006,413424,15,5 ,4,15006,413432,14,5 ,4,15006,413440,14,5 ,20,24464,23482114,4056,0 ,17,923,8802052,24,0 ,17,923,6704900,24,0 ,44,15152,3034884,48,0 ,44,15152,1986308,248,0 ,44,15152,413444,48,0 ,4,15006,413448,14,5 ,4,15006,413456,16,5 ,4,15006,413464,14,5 ,4,15006,413472,16,5 ,4,15006,413480,14,5 ,4,15006,413488,16,5 ,4,15006,413496,14,5 ,4,15006,413504,16,5 ,20,25474,26103618,592,0 ,17,923,9850692,32,0 ,44,15152,3559236,24,0 ,45,15153,4083524,16,0 ,45,15153,5132100,64,0 ,17,923,8277828,32,0 ,4,15006,413512,14,5 ,4,15006,413520,16,5 ,4,15006,413528,14,5 ,4,15006,413536,14,5 ,4,15006,413544,14,5 ,4,15006,413552,12,5 ,4,15006,413560,13,5 ,4,15006,413568,13,5 ,20,22891,19812226,268,0 ,44,15152,2510724,40,0 ,17,923,7753604,24,0 ,4,15006,413576,13,5 ,4,15006,413584,13,5 ,4,15006,413592,13,5 ,4,15006,413600,13,5 ,20,24297,22957986,724,0 ,4,15006,413608,13,5 ,4,15006,413616,13,5 ,4,15006,413624,13,5 ,4,15006,413632,13,5 ,17,923,8802244,64,0 ,17,923,6705092,32,0 ,45,15153,4083652,16,0 ,4,15006,413640,13,5 ,4,15006,413648,13,5 ,4,15006,413656,12,5 ,4,15006,413664,13,5 ,4,15006,413672,13,5 ,4,15006,413680,13,5 ,4,15006,413688,13,5 ,4,15006,413696,14,5 ,44,15152,3559428,24,0 ,17,923,7229444,24,0 ,44,15152,1462276,112,0 ,44,15152,937988,120,0 ,4,15006,413704,13,5 ,4,15006,413712,14,5 ,4,15006,413720,15,5 ,4,15006,413728,14,5 ,20,22177,18239522,88,0 ,20,25630,26628130,280,0 ,20,20102,11423778,1392,0 ,4,15006,413736,14,5 ,4,15006,413744,14,5 ,4,15006,413752,13,5 ,4,15006,413760,13,5 ,17,923,9850948,32,0 ,17,923,7753796,24,0 ,45,15153,4083780,48,0 ,17,923,8278084,40,0 ,17,923,9326660,32,0 ,4,15006,413768,15,5 ,4,15006,413776,14,5 ,4,15006,413784,13,5 ,4,15006,413792,14,5 ,4,15006,413800,14,5 ,4,15006,413808,14,5 ,4,15006,413816,13,5 ,4,15006,413824,13,5 ,44,15152,413828,40,0 ,44,15152,3035268,48,0 ,4,15006,413832,14,5 ,4,15006,413840,14,5 ,4,15006,413848,15,5 ,4,15006,413856,13,5 ,20,18122,7229602,12,0 ,4,15006,413864,14,5 ,4,15006,413872,14,5 ,4,15006,413880,13,5 ,4,15006,413888,13,5 ,20,21439,16142530,104,0 ,44,15152,3559620,24,0 ,17,923,7229636,24,0 ,17,923,6705348,40,0 ,44,15152,2511044,32,0 ,4,15006,413896,13,5 ,4,15006,413904,13,5 ,4,15006,413912,13,5 ,4,15006,413920,13,5 ,20,20376,12996834,160,0 ,4,15006,413928,13,5 ,4,15006,413936,15,5 ,4,15006,413944,13,5 ,4,15006,413952,13,5 ,20,21906,17191170,56,0 ,20,15755,1462530,224,0 ,20,18123,7229698,136,0 ,17,923,7753988,40,0 ,4,15006,413960,13,5 ,4,15006,413968,13,5 ,4,15006,413976,13,5 ,4,15006,413984,14,5 ,20,20811,14045474,216,0 ,4,15006,413992,13,5 ,4,15006,414000,14,5 ,4,15006,414008,13,5 ,4,15006,414016,13,5 ,17,923,9851204,24,0 ,45,15153,5132612,24,0 ,17,923,9326916,32,0 ,4,15006,414024,14,5 ,4,15006,414032,13,5 ,4,15006,414040,14,5 ,4,15006,414048,14,5 ,4,15006,414056,13,5 ,4,15006,414064,14,5 ,4,15006,414072,14,5 ,4,15006,414080,16,5 ,20,20187,11948418,1200,0 ,20,19586,10375554,156,0 ,17,923,8278404,40,0 ,17,923,7229828,24,0 ,44,15152,3559812,24,0 ,45,15153,5656964,40,0 ,4,15006,414088,14,5 ,4,15006,414096,16,5 ,4,15006,414104,14,5 ,4,15006,414112,14,5 ,4,15006,414120,14,5 ,4,15006,414128,15,5 ,4,15006,414136,14,5 ,4,15006,414144,14,5 ,17,923,8802756,24,0 ,44,15152,2511300,40,0 ,44,15152,414148,24,0 ,45,15153,4084164,48,0 ,4,15006,414152,15,5 ,4,15006,414160,14,5 ,4,15006,414168,14,5 ,4,15006,414176,14,5 ,20,17080,4608482,9508,0 ,4,15006,414184,14,5 ,4,15006,414192,16,5 ,4,15006,414200,14,5 ,4,15006,414208,15,5 ,17,923,9851396,32,0 ,17,923,6705668,40,0 ,44,15152,3035652,32,0 ,45,15153,5132804,16,0 ,4,15006,414216,14,5 ,4,15006,414224,14,5 ,4,15006,414232,14,5 ,4,15006,414240,14,5 ,4,15006,414248,15,5 ,4,15006,414256,15,5 ,4,15006,414264,14,5 ,4,15006,414272,16,5 ,17,923,9327172,32,0 ,17,923,7754308,32,0 ,17,923,7230020,32,0 ,44,15152,3560004,392,0 ,4,15006,414280,14,5 ,4,15006,414288,15,5 ,4,15006,414296,14,5 ,4,15006,414304,14,5 ,20,16553,3560034,92,0 ,20,15513,938594,512,0 ,4,15006,414312,14,5 ,4,15006,414320,13,5 ,4,15006,414328,16,5 ,4,15006,414336,15,5 ,17,923,8802948,56,0 ,44,15152,414340,24,0 ,45,15153,5132932,56,0 ,4,15006,414344,14,5 ,4,15006,414352,15,5 ,4,15006,414360,14,5 ,4,15006,414368,14,5 ,20,17466,5657250,452,0 ,4,15006,414376,15,5 ,4,15006,414384,14,5 ,4,15006,414392,13,5 ,4,15006,414400,12,5 ,20,21907,17191618,900,0 ,20,25280,25580226,400,0 ,20,15960,1987266,12,0 ,17,923,8278724,48,0 ,45,15153,5657284,96,0 ,4,15006,414408,16,5 ,4,15006,414416,12,5 ,4,15006,414424,16,5 ,4,15006,414432,14,5 ,20,22178,18240226,140,0 ,4,15006,414440,14,5 ,4,15006,414448,15,5 ,4,15006,414456,14,5 ,4,15006,414464,14,5 ,17,923,9851652,40,0 ,44,15152,3035908,32,0 ,44,15152,2511620,16,0 ,4,15006,414472,16,5 ,4,15006,414480,14,5 ,4,15006,414488,14,5 ,4,15006,414496,14,5 ,20,15961,1987362,12,0 ,4,15006,414504,14,5 ,4,15006,414512,14,5 ,4,15006,414520,14,5 ,4,15006,414528,14,5 ,20,17892,6705986,12,0 ,17,923,9327428,32,0 ,17,923,7754564,32,0 ,17,923,7230276,32,0 ,17,923,6705988,40,0 ,44,15152,414532,16,0 ,45,15153,4084548,16,0 ,4,15006,414536,15,5 ,4,15006,414544,15,5 ,4,15006,414552,14,5 ,4,15006,414560,14,5 ,20,26349,28726114,868,0 ,4,15006,414568,15,5 ,4,15006,414576,14,5 ,4,15006,414584,14,5 ,4,15006,414592,14,5 ,20,15962,1987458,12,0 ,44,15152,1463172,176,0 ,44,15152,2511748,40,0 ,4,15006,414600,14,5 ,4,15006,414608,14,5 ,4,15006,414616,14,5 ,4,15006,414624,14,5 ,20,17893,6706082,12,0 ,4,15006,414632,14,5 ,4,15006,414640,14,5 ,4,15006,414648,14,5 ,4,15006,414656,14,5 ,45,15153,4084676,16,0 ,44,15152,414660,24,0 ,44,15152,938948,16,0 ,4,15006,414664,14,5 ,4,15006,414672,13,5 ,4,15006,414680,13,5 ,4,15006,414688,12,5 ,20,17656,6181858,352,0 ,20,15963,1987554,336,0 ,4,15006,414696,14,5 ,4,15006,414704,13,5 ,4,15006,414712,13,5 ,4,15006,414720,13,5 ,20,21440,16143362,288,0 ,20,17894,6706178,12,0 ,44,15152,3036164,40,0 ,4,15006,414728,13,5 ,4,15006,414736,13,5 ,4,15006,414744,14,5 ,4,15006,414752,14,5 ,20,15302,414754,80,0 ,4,15006,414760,14,5 ,4,15006,414768,15,5 ,4,15006,414776,16,5 ,4,15006,414784,14,5 ,17,923,9851972,32,0 ,17,923,7754820,32,0 ,17,923,7230532,32,0 ,44,15152,939076,120,0 ,45,15153,4084804,16,0 ,45,15153,5133380,48,0 ,17,923,8279108,40,0 ,17,923,8803396,32,0 ,17,923,9327684,40,0 ,4,15006,414792,14,5 ,4,15006,414800,12,5 ,4,15006,414808,14,5 ,4,15006,414816,14,5 ,20,17895,6706274,12,0 ,4,15006,414824,14,5 ,4,15006,414832,13,5 ,4,15006,414840,13,5 ,4,15006,414848,13,5 ,44,15152,414852,24,0 ,17,923,6706308,32,0 ,4,15006,414856,13,5 ,4,15006,414864,13,5 ,4,15006,414872,15,5 ,4,15006,414880,13,5 ,20,26037,27677858,340,0 ,4,15006,414888,13,5 ,4,15006,414896,13,5 ,4,15006,414904,13,5 ,4,15006,414912,13,5 ,20,17896,6706370,12,0 ,20,26209,28202178,12,0 ,45,15153,4084932,16,0 ,44,15152,2512068,48,0 ,4,15006,414920,13,5 ,4,15006,414928,13,5 ,4,15006,414936,13,5 ,4,15006,414944,13,5 ,4,15006,414952,12,5 ,4,15006,414960,13,5 ,4,15006,414968,14,5 ,4,15006,414976,14,5 ,4,15006,414984,13,5 ,4,15006,414992,13,5 ,4,15006,415000,12,5 ,4,15006,415008,12,5 ,20,17897,6706466,12,0 ,20,26210,28202274,12,0 ,4,15006,415016,15,5 ,4,15006,415024,13,5 ,4,15006,415032,14,5 ,4,15006,415040,13,5 ,20,18124,7230786,120,0 ,20,16554,3560770,420,0 ,17,923,9852228,56,0 ,17,923,7755076,40,0 ,17,923,7230788,56,0 ,44,15152,3036484,16,0 ,44,15152,415044,16,0 ,45,15153,4085060,16,0 ,17,923,8803652,32,0 ,4,15006,415048,14,5 ,4,15006,415056,14,5 ,4,15006,415064,14,5 ,4,15006,415072,14,5 ,4,15006,415080,14,5 ,4,15006,415088,13,5 ,4,15006,415096,14,5 ,4,15006,415104,14,5 ,20,17898,6706562,12,0 ,20,26211,28202370,560,0 ,17,923,9328004,32,0 ,17,923,6706564,40,0 ,17,923,8279428,32,0 ,4,15006,415112,14,5 ,4,15006,415120,13,5 ,4,15006,415128,13,5 ,4,15006,415136,13,5 ,4,15006,415144,13,5 ,4,15006,415152,13,5 ,4,15006,415160,14,5 ,4,15006,415168,13,5 ,45,15153,5658052,32,0 ,44,15152,3036612,16,0 ,44,15152,415172,16,0 ,45,15153,4085188,32,0 ,45,15153,5133764,16,0 ,4,15006,415176,14,5 ,4,15006,415184,13,5 ,4,15006,415192,12,5 ,4,15006,415200,12,5 ,20,20377,12998114,328,0 ,20,17899,6706658,12,0 ,4,15006,415208,13,5 ,4,15006,415216,13,5 ,4,15006,415224,13,5 ,4,15006,415232,14,5 ,4,15006,415240,14,5 ,4,15006,415248,13,5 ,4,15006,415256,14,5 ,4,15006,415264,14,5 ,4,15006,415272,14,5 ,4,15006,415280,14,5 ,4,15006,415288,14,5 ,4,15006,415296,14,5 ,20,17900,6706754,192,0 ,20,16855,4085314,648,0 ,17,923,8803908,64,0 ,44,15152,3036740,40,0 ,44,15152,2512452,16,0 ,44,15152,415300,32,0 ,45,15153,5133892,24,0 ,4,15006,415304,14,5 ,4,15006,415312,14,5 ,4,15006,415320,14,5 ,4,15006,415328,14,5 ,20,19587,10376802,12,0 ,4,15006,415336,14,5 ,4,15006,415344,14,5 ,4,15006,415352,14,5 ,4,15006,415360,14,5 ,17,923,9328260,40,0 ,17,923,7755396,48,0 ,17,923,8279684,40,0 ,4,15006,415368,14,5 ,4,15006,415376,14,5 ,4,15006,415384,14,5 ,4,15006,415392,14,5 ,20,15303,415394,2768,0 ,4,15006,415400,14,5 ,4,15006,415408,14,5 ,4,15006,415416,14,5 ,4,15006,415424,14,5 ,20,19588,10376898,116,0 ,45,15153,5658308,16,0 ,17,923,6706884,40,0 ,44,15152,2512580,24,0 ,44,15152,1988292,248,0 ,45,15153,4085444,56,0 ,4,15006,415432,13,5 ,4,15006,415440,13,5 ,4,15006,415448,13,5 ,4,15006,415456,13,5 ,4,15006,415464,13,5 ,4,15006,415472,13,5 ,4,15006,415480,13,5 ,4,15006,415488,14,5 ,17,923,9852676,24,0 ,17,923,7231236,32,0 ,45,15153,5134084,16,0 ,4,15006,415496,13,5 ,4,15006,415504,12,5 ,4,15006,415512,13,5 ,4,15006,415520,13,5 ,4,15006,415528,13,5 ,4,15006,415536,13,5 ,4,15006,415544,13,5 ,4,15006,415552,13,5 ,20,22179,18241346,88,0 ,45,15153,5658436,16,0 ,44,15152,415556,16,0 ,4,15006,415560,13,5 ,4,15006,415568,12,5 ,4,15006,415576,14,5 ,4,15006,415584,14,5 ,4,15006,415592,14,5 ,4,15006,415600,14,5 ,4,15006,415608,14,5 ,4,15006,415616,14,5 ,20,18588,8279938,192,0 ,45,15153,5134212,16,0 ,44,15152,3037060,32,0 ,44,15152,2512772,56,0 ,4,15006,415624,14,5 ,4,15006,415632,13,5 ,4,15006,415640,13,5 ,4,15006,415648,14,5 ,4,15006,415656,15,5 ,4,15006,415664,14,5 ,4,15006,415672,14,5 ,4,15006,415680,16,5 ,17,923,9852868,40,0 ,44,15152,415684,48,0 ,45,15153,5658564,72,0 ,17,923,8280004,48,0 ,17,923,9328580,48,0 ,4,15006,415688,16,5 ,4,15006,415696,14,5 ,4,15006,415704,14,5 ,4,15006,415712,14,5 ,20,22892,19814370,260,0 ,20,20812,14047202,236,0 ,4,15006,415720,15,5 ,4,15006,415728,14,5 ,4,15006,415736,13,5 ,4,15006,415744,14,5 ,20,21671,16668674,12,0 ,20,15756,1464322,136,0 ,20,20632,13522946,92,0 ,45,15153,5134340,16,0 ,17,923,7755780,24,0 ,17,923,7231492,40,0 ,17,923,6707204,32,0 ,44,15152,940036,88,0 ,4,15006,415752,14,5 ,4,15006,415760,14,5 ,4,15006,415768,14,5 ,4,15006,415776,14,5 ,4,15006,415784,14,5 ,4,15006,415792,13,5 ,4,15006,415800,14,5 ,4,15006,415808,13,5 ,17,923,8804420,24,0 ,4,15006,415816,12,5 ,4,15006,415824,14,5 ,4,15006,415832,14,5 ,4,15006,415840,14,5 ,20,21672,16668770,12,0 ,4,15006,415848,14,5 ,4,15006,415856,16,5 ,4,15006,415864,14,5 ,4,15006,415872,14,5 ,45,15153,5134468,32,0 ,44,15152,3037316,24,0 ,45,15153,4085892,16,0 ,4,15006,415880,13,5 ,4,15006,415888,13,5 ,4,15006,415896,13,5 ,4,15006,415904,13,5 ,4,15006,415912,15,5 ,4,15006,415920,14,5 ,4,15006,415928,14,5 ,4,15006,415936,15,5 ,20,21673,16668866,88,0 ,17,923,7755972,40,0 ,4,15006,415944,14,5 ,4,15006,415952,14,5 ,4,15006,415960,13,5 ,4,15006,415968,14,5 ,20,25631,26630370,280,0 ,4,15006,415976,16,5 ,4,15006,415984,14,5 ,4,15006,415992,14,5 ,4,15006,416000,16,5 ,20,18125,7231746,204,0 ,17,923,9853188,24,0 ,17,923,6707460,48,0 ,44,15152,1464580,24,0 ,45,15153,4086020,16,0 ,17,923,8804612,24,0 ,4,15006,416008,14,5 ,4,15006,416016,14,5 ,4,15006,416024,14,5 ,4,15006,416032,14,5 ,4,15006,416040,14,5 ,4,15006,416048,15,5 ,4,15006,416056,14,5 ,4,15006,416064,14,5 ,17,923,9328964,40,0 ,17,923,7231812,24,0 ,44,15152,3037508,40,0 ,44,15152,2513220,40,0 ,44,15152,416068,24,0 ,17,923,8280388,48,0 ,4,15006,416072,15,5 ,4,15006,416080,16,5 ,4,15006,416088,16,5 ,4,15006,416096,14,5 ,4,15006,416104,14,5 ,4,15006,416112,14,5 ,4,15006,416120,16,5 ,4,15006,416128,14,5 ,45,15153,5134724,16,0 ,45,15153,4086148,16,0 ,4,15006,416136,14,5 ,4,15006,416144,14,5 ,4,15006,416152,14,5 ,4,15006,416160,14,5 ,20,24789,24533410,52,0 ,4,15006,416168,14,5 ,4,15006,416176,14,5 ,4,15006,416184,14,5 ,4,15006,416192,14,5 ,17,923,9853380,24,0 ,44,15152,1464772,136,0 ,17,923,8804804,32,0 ,4,15006,416200,15,5 ,4,15006,416208,14,5 ,4,15006,416216,16,5 ,4,15006,416224,14,5 ,4,15006,416232,14,5 ,4,15006,416240,14,5 ,4,15006,416248,14,5 ,4,15006,416256,14,5 ,20,22180,18242050,24,0 ,45,15153,5659140,16,0 ,17,923,7756292,24,0 ,17,923,7232004,24,0 ,44,15152,416260,32,0 ,45,15153,4086276,16,0 ,45,15153,5134852,32,0 ,4,15006,416264,14,5 ,4,15006,416272,14,5 ,4,15006,416280,14,5 ,4,15006,416288,14,5 ,4,15006,416296,14,5 ,4,15006,416304,13,5 ,4,15006,416312,14,5 ,4,15006,416320,14,5 ,20,17243,5134914,48,0 ,4,15006,416328,14,5 ,4,15006,416336,14,5 ,4,15006,416344,15,5 ,4,15006,416352,13,5 ,20,19589,10377826,32,0 ,4,15006,416360,13,5 ,4,15006,416368,14,5 ,4,15006,416376,14,5 ,4,15006,416384,13,5 ,17,923,9853572,24,0 ,17,923,6707844,48,0 ,44,15152,3037828,24,0 ,44,15152,2513540,56,0 ,45,15153,4086404,16,0 ,45,15153,5659268,40,0 ,17,923,9329284,32,0 ,4,15006,416392,14,5 ,4,15006,416400,13,5 ,4,15006,416408,14,5 ,4,15006,416416,14,5 ,4,15006,416424,16,5 ,4,15006,416432,14,5 ,4,15006,416440,14,5 ,4,15006,416448,14,5 ,20,22181,18242242,100,0 ,17,923,8805060,24,0 ,17,923,7756484,24,0 ,17,923,7232196,32,0 ,44,15152,940740,40,0 ,17,923,8280772,40,0 ,4,15006,416456,14,5 ,4,15006,416464,14,5 ,4,15006,416472,14,5 ,4,15006,416480,12,5 ,20,20633,13523682,12,0 ,4,15006,416488,14,5 ,4,15006,416496,14,5 ,4,15006,416504,14,5 ,4,15006,416512,14,5 ,45,15153,5135108,32,0 ,44,15152,416516,32,0 ,45,15153,4086532,24,0 ,4,15006,416520,14,5 ,4,15006,416528,14,5 ,4,15006,416536,14,5 ,4,15006,416544,13,5 ,4,15006,416552,16,5 ,4,15006,416560,14,5 ,4,15006,416568,14,5 ,4,15006,416576,14,5 ,20,20634,13523778,76,0 ,20,24790,24533826,32,0 ,20,18825,8805186,128,0 ,17,923,9853764,24,0 ,44,15152,3038020,24,0 ,4,15006,416584,13,5 ,4,15006,416592,15,5 ,4,15006,416600,13,5 ,4,15006,416608,13,5 ,20,19590,10378082,56,0 ,4,15006,416616,15,5 ,4,15006,416624,13,5 ,4,15006,416632,13,5 ,4,15006,416640,14,5 ,20,21674,16669570,172,0 ,17,923,9329540,40,0 ,17,923,7756676,24,0 ,45,15153,4610948,96,0 ,17,923,8805252,48,0 ,4,15006,416648,13,5 ,4,15006,416656,13,5 ,4,15006,416664,13,5 ,4,15006,416672,13,5 ,4,15006,416680,14,5 ,4,15006,416688,13,5 ,4,15006,416696,14,5 ,4,15006,416704,14,5 ,20,17244,5135298,344,0 ,45,15153,5659588,88,0 ,17,923,7232452,32,0 ,45,15153,4086724,16,0 ,4,15006,416712,14,5 ,4,15006,416720,13,5 ,4,15006,416728,12,5 ,4,15006,416736,14,5 ,4,15006,416744,13,5 ,4,15006,416752,14,5 ,4,15006,416760,14,5 ,4,15006,416768,14,5 ,17,923,9853956,24,0 ,17,923,6708228,48,0 ,44,15152,3038212,24,0 ,44,15152,416772,24,0 ,44,15152,941060,600,0 ,45,15153,5135364,32,0 ,17,923,8281092,80,0 ,4,15006,416776,14,5 ,4,15006,416784,14,5 ,4,15006,416792,14,5 ,4,15006,416800,14,5 ,4,15006,416808,14,5 ,4,15006,416816,16,5 ,4,15006,416824,12,5 ,4,15006,416832,14,5 ,20,17901,6708290,76,0 ,20,24791,24534082,172,0 ,20,15757,1465410,132,0 ,45,15153,4086852,24,0 ,17,923,7756868,32,0 ,44,15152,2513988,56,0 ,4,15006,416840,14,5 ,4,15006,416848,14,5 ,4,15006,416856,14,5 ,4,15006,416864,14,5 ,4,15006,416872,14,5 ,4,15006,416880,13,5 ,4,15006,416888,13,5 ,4,15006,416896,13,5 ,4,15006,416904,13,5 ,4,15006,416912,14,5 ,4,15006,416920,13,5 ,4,15006,416928,14,5 ,4,15006,416936,13,5 ,4,15006,416944,13,5 ,4,15006,416952,14,5 ,4,15006,416960,14,5 ,17,923,9854148,24,0 ,17,923,7232708,32,0 ,44,15152,3038404,32,0 ,44,15152,416964,32,0 ,17,923,9329860,24,0 ,4,15006,416968,13,5 ,4,15006,416976,14,5 ,4,15006,416984,12,5 ,4,15006,416992,13,5 ,20,25064,25058530,392,0 ,4,15006,417000,13,5 ,4,15006,417008,14,5 ,4,15006,417016,12,5 ,4,15006,417024,14,5 ,20,21441,16145666,12,0 ,17,923,8805636,32,0 ,45,15153,4087044,16,0 ,45,15153,5135620,16,0 ,4,15006,417032,14,5 ,4,15006,417040,14,5 ,4,15006,417048,14,5 ,4,15006,417056,16,5 ,20,19591,10378530,160,0 ,4,15006,417064,14,5 ,4,15006,417072,13,5 ,4,15006,417080,13,5 ,4,15006,417088,14,5 ,17,923,7757124,32,0 ,4,15006,417096,13,5 ,4,15006,417104,14,5 ,4,15006,417112,14,5 ,4,15006,417120,14,5 ,20,21442,16145762,12,0 ,4,15006,417128,14,5 ,4,15006,417136,13,5 ,4,15006,417144,14,5 ,4,15006,417152,14,5 ,20,18589,8281474,192,0 ,17,923,9854340,24,0 ,17,923,6708612,40,0 ,45,15153,4087172,16,0 ,45,15153,5135748,24,0 ,17,923,9330052,56,0 ,4,15006,417160,14,5 ,4,15006,417168,14,5 ,4,15006,417176,14,5 ,4,15006,417184,14,5 ,20,20635,13524386,68,0 ,20,19047,9330082,40,0 ,4,15006,417192,14,5 ,4,15006,417200,13,5 ,4,15006,417208,13,5 ,4,15006,417216,13,5 ,20,21443,16145858,12,0 ,44,15152,417220,32,0 ,17,923,7232964,32,0 ,44,15152,3038660,48,0 ,4,15006,417224,13,5 ,4,15006,417232,16,5 ,4,15006,417240,14,5 ,4,15006,417248,12,5 ,20,23633,21388770,92,0 ,20,22182,18243042,180,0 ,4,15006,417256,14,5 ,4,15006,417264,14,5 ,4,15006,417272,15,5 ,4,15006,417280,14,5 ,17,923,8805892,32,0 ,44,15152,2514436,72,0 ,44,15152,1465860,24,0 ,45,15153,4087300,24,0 ,4,15006,417288,15,5 ,4,15006,417296,14,5 ,4,15006,417304,14,5 ,4,15006,417312,14,5 ,20,21444,16145954,52,0 ,4,15006,417320,14,5 ,4,15006,417328,12,5 ,4,15006,417336,13,5 ,4,15006,417344,15,5 ,17,923,9854532,32,0 ,17,923,7757380,32,0 ,45,15153,5135940,24,0 ,4,15006,417352,14,5 ,4,15006,417360,14,5 ,4,15006,417368,14,5 ,4,15006,417376,15,5 ,20,15964,1990242,96,0 ,4,15006,417384,14,5 ,4,15006,417392,15,5 ,4,15006,417400,12,5 ,4,15006,417408,14,5 ,17,923,8281732,24,0 ,44,15152,1990276,72,0 ,44,15152,3563140,64,0 ,45,15153,4611716,16,0 ,45,15153,5660292,72,0 ,4,15006,417416,14,5 ,4,15006,417424,14,5 ,4,15006,417432,14,5 ,4,15006,417440,15,5 ,20,17902,6708898,192,0 ,4,15006,417448,14,5 ,4,15006,417456,14,5 ,4,15006,417464,14,5 ,4,15006,417472,12,5 ,45,15153,4087492,24,0 ,17,923,7233220,24,0 ,17,923,6708932,40,0 ,44,15152,1466052,40,0 ,44,15152,417476,104,0 ,4,15006,417480,14,5 ,4,15006,417488,14,5 ,4,15006,417496,12,5 ,4,15006,417504,14,5 ,20,19048,9330402,648,0 ,20,17657,6184674,12,0 ,4,15006,417512,14,5 ,4,15006,417520,14,5 ,4,15006,417528,14,5 ,4,15006,417536,14,5 ,17,923,8806148,32,0 ,45,15153,4611844,24,0 ,45,15153,5136132,24,0 ,4,15006,417544,14,5 ,4,15006,417552,14,5 ,4,15006,417560,14,5 ,4,15006,417568,14,5 ,4,15006,417576,16,5 ,4,15006,417584,14,5 ,4,15006,417592,14,5 ,4,15006,417600,14,5 ,20,20813,14049090,244,0 ,20,26038,27680578,252,0 ,20,25281,25583426,640,0 ,20,17658,6184770,12,0 ,20,18826,8806210,32,0 ,17,923,9854788,16,0 ,17,923,7757636,24,0 ,44,15152,3039044,48,0 ,17,923,8281924,32,0 ,17,923,9330500,40,0 ,4,15006,417608,13,5 ,4,15006,417616,13,5 ,4,15006,417624,14,5 ,4,15006,417632,13,5 ,20,18126,7233378,120,0 ,4,15006,417640,13,5 ,4,15006,417648,13,5 ,4,15006,417656,15,5 ,4,15006,417664,15,5 ,45,15153,4087684,32,0 ,17,923,7233412,32,0 ,4,15006,417672,14,5 ,4,15006,417680,15,5 ,4,15006,417688,14,5 ,4,15006,417696,14,5 ,20,17659,6184866,12,0 ,4,15006,417704,14,5 ,4,15006,417712,14,5 ,4,15006,417720,14,5 ,4,15006,417728,13,5 ,20,21445,16146370,128,0 ,20,20636,13524930,380,0 ,17,923,9854916,32,0 ,45,15153,4612036,48,0 ,45,15153,5136324,16,0 ,4,15006,417736,13,5 ,4,15006,417744,13,5 ,4,15006,417752,13,5 ,4,15006,417760,13,5 ,4,15006,417768,13,5 ,4,15006,417776,14,5 ,4,15006,417784,14,5 ,4,15006,417792,14,5 ,20,22893,19816450,148,0 ,20,17660,6184962,460,0 ,17,923,8806404,24,0 ,17,923,7757828,16,0 ,17,923,6709252,24,0 ,44,15152,1466372,48,0 ,4,15006,417800,14,5 ,4,15006,417808,14,5 ,4,15006,417816,12,5 ,4,15006,417824,14,5 ,20,20378,13000738,80,0 ,4,15006,417832,16,5 ,4,15006,417840,14,5 ,4,15006,417848,16,5 ,4,15006,417856,16,5 ,20,18827,8806466,68,0 ,17,923,8282180,48,0 ,44,15152,2515012,24,0 ,45,15153,5136452,16,0 ,4,15006,417864,14,5 ,4,15006,417872,14,5 ,4,15006,417880,14,5 ,4,15006,417888,14,5 ,20,15758,1466466,132,0 ,4,15006,417896,13,5 ,4,15006,417904,13,5 ,4,15006,417912,12,5 ,4,15006,417920,14,5 ,20,24092,22438018,96,0 ,17,923,9330820,48,0 ,17,923,7757956,48,0 ,17,923,7233668,48,0 ,44,15152,3563652,32,0 ,45,15153,4087940,72,0 ,4,15006,417928,13,5 ,4,15006,417936,13,5 ,4,15006,417944,15,5 ,4,15006,417952,14,5 ,20,23183,20340898,360,0 ,4,15006,417960,14,5 ,4,15006,417968,13,5 ,4,15006,417976,13,5 ,4,15006,417984,16,5 ,20,23634,21389506,1784,0 ,20,17467,5660866,368,0 ,17,923,9855172,24,0 ,17,923,6709444,24,0 ,44,15152,3039428,32,0 ,44,15152,1990852,72,0 ,45,15153,5136580,16,0 ,45,15153,5660868,136,0 ,17,923,8806596,40,0 ,4,15006,417992,14,5 ,4,15006,418000,12,5 ,4,15006,418008,14,5 ,4,15006,418016,14,5 ,20,21675,16670946,52,0 ,4,15006,418024,14,5 ,4,15006,418032,14,5 ,4,15006,418040,14,5 ,4,15006,418048,13,5 ,44,15152,2515204,48,0 ,4,15006,418056,15,5 ,4,15006,418064,14,5 ,4,15006,418072,15,5 ,4,15006,418080,15,5 ,4,15006,418088,14,5 ,4,15006,418096,14,5 ,4,15006,418104,14,5 ,4,15006,418112,14,5 ,20,23457,20865346,12,0 ,45,15153,5136708,24,0 ,45,15153,4612420,16,0 ,4,15006,418120,13,5 ,4,15006,418128,13,5 ,4,15006,418136,13,5 ,4,15006,418144,13,5 ,20,15965,1991010,76,0 ,4,15006,418152,14,5 ,4,15006,418160,13,5 ,4,15006,418168,13,5 ,4,15006,418176,14,5 ,17,923,9855364,24,0 ,17,923,6709636,24,0 ,44,15152,1466756,40,0 ,44,15152,3563908,32,0 ,4,15006,418184,14,5 ,4,15006,418192,14,5 ,4,15006,418200,14,5 ,4,15006,418208,14,5 ,20,23458,20865442,1404,0 ,20,25632,26632610,2624,0 ,20,24792,24535458,492,0 ,4,15006,418216,13,5 ,4,15006,418224,13,5 ,4,15006,418232,13,5 ,4,15006,418240,13,5 ,20,25475,26108354,52,0 ,17,923,8282564,40,0 ,44,15152,3039684,40,0 ,45,15153,4612548,24,0 ,4,15006,418248,13,5 ,4,15006,418256,13,5 ,4,15006,418264,13,5 ,4,15006,418272,13,5 ,4,15006,418280,14,5 ,4,15006,418288,15,5 ,4,15006,418296,15,5 ,4,15006,418304,14,5 ,17,923,9331204,48,0 ,17,923,7758340,32,0 ,17,923,7234052,40,0 ,44,15152,418308,80,0 ,45,15153,5136900,24,0 ,17,923,8806916,32,0 ,4,15006,418312,12,5 ,4,15006,418320,13,5 ,4,15006,418328,13,5 ,4,15006,418336,13,5 ,20,19592,10379810,108,0 ,4,15006,418344,13,5 ,4,15006,418352,13,5 ,4,15006,418360,14,5 ,4,15006,418368,13,5 ,17,923,9855556,32,0 ,17,923,6709828,40,0 ,4,15006,418376,14,5 ,4,15006,418384,14,5 ,4,15006,418392,15,5 ,4,15006,418400,14,5 ,20,22441,18768482,2964,0 ,20,15514,942690,404,0 ,20,16555,3564130,12,0 ,20,18828,8807010,204,0 ,4,15006,418408,13,5 ,4,15006,418416,13,5 ,4,15006,418424,13,5 ,4,15006,418432,13,5 ,20,21676,16671362,12,0 ,45,15153,4612740,40,0 ,44,15152,2515588,24,0 ,44,15152,3564164,32,0 ,4,15006,418440,13,5 ,4,15006,418448,14,5 ,4,15006,418456,14,5 ,4,15006,418464,14,5 ,20,20379,13001378,12,0 ,4,15006,418472,14,5 ,4,15006,418480,12,5 ,4,15006,418488,14,5 ,4,15006,418496,14,5 ,20,16556,3564226,192,0 ,45,15153,5137092,24,0 ,44,15152,1467076,24,0 ,45,15153,4088516,24,0 ,4,15006,418504,12,5 ,4,15006,418512,13,5 ,4,15006,418520,13,5 ,4,15006,418528,13,5 ,20,21677,16671458,100,0 ,20,19833,10904290,208,0 ,4,15006,418536,13,5 ,4,15006,418544,13,5 ,4,15006,418552,13,5 ,4,15006,418560,12,5 ,20,20380,13001474,84,0 ,17,923,8807172,40,0 ,17,923,7758596,24,0 ,44,15152,3040004,24,0 ,44,15152,1991428,56,0 ,17,923,8282884,24,0 ,4,15006,418568,13,5 ,4,15006,418576,14,5 ,4,15006,418584,13,5 ,4,15006,418592,12,5 ,20,18127,7234338,204,0 ,4,15006,418600,13,5 ,4,15006,418608,12,5 ,4,15006,418616,13,5 ,4,15006,418624,16,5 ,17,923,9855812,24,0 ,17,923,7234372,32,0 ,44,15152,2515780,88,0 ,4,15006,418632,14,5 ,4,15006,418640,16,5 ,4,15006,418648,14,5 ,4,15006,418656,16,5 ,20,25476,26108770,88,0 ,20,26501,29254498,264,0 ,4,15006,418664,13,5 ,4,15006,418672,13,5 ,4,15006,418680,16,5 ,4,15006,418688,16,5 ,20,24093,22438786,160,0 ,20,18590,8283010,80,0 ,20,22183,18244482,140,0 ,17,923,9331588,48,0 ,17,923,6710148,40,0 ,44,15152,1467268,224,0 ,44,15152,3564420,32,0 ,45,15153,4088708,16,0 ,45,15153,5137284,24,0 ,4,15006,418696,14,5 ,4,15006,418704,14,5 ,4,15006,418712,13,5 ,4,15006,418720,16,5 ,4,15006,418728,15,5 ,4,15006,418736,14,5 ,4,15006,418744,16,5 ,4,15006,418752,16,5 ,20,21446,16147394,64,0 ,20,15966,1991618,364,0 ,17,923,8283076,40,0 ,17,923,7758788,64,0 ,44,15152,3040196,24,0 ,45,15153,4613060,16,0 ,4,15006,418760,16,5 ,4,15006,418768,14,5 ,4,15006,418776,14,5 ,4,15006,418784,14,5 ,4,15006,418792,14,5 ,4,15006,418800,16,5 ,4,15006,418808,15,5 ,4,15006,418816,14,5 ,17,923,9856004,72,0 ,45,15153,4088836,16,0 ,4,15006,418824,12,5 ,4,15006,418832,13,5 ,4,15006,418840,14,5 ,4,15006,418848,14,5 ,4,15006,418856,14,5 ,4,15006,418864,14,5 ,4,15006,418872,14,5 ,4,15006,418880,14,5 ,17,923,8807492,24,0 ,17,923,7234628,40,0 ,45,15153,4613188,24,0 ,45,15153,5137476,24,0 ,4,15006,418888,14,5 ,4,15006,418896,14,5 ,4,15006,418904,13,5 ,4,15006,418912,13,5 ,4,15006,418920,13,5 ,4,15006,418928,15,5 ,4,15006,418936,13,5 ,4,15006,418944,13,5 ,20,15759,1467522,1104,0 ,45,15153,4088964,16,0 ,44,15152,3040388,48,0 ,44,15152,418948,16,0 ,44,15152,3564676,56,0 ,4,15006,418952,14,5 ,4,15006,418960,13,5 ,4,15006,418968,16,5 ,4,15006,418976,14,5 ,20,22894,19817634,168,0 ,20,17903,6710434,76,0 ,4,15006,418984,14,5 ,4,15006,418992,13,5 ,4,15006,419000,14,5 ,4,15006,419008,14,5 ,44,15152,1991876,96,0 ,17,923,6710468,56,0 ,4,15006,419016,16,5 ,4,15006,419024,16,5 ,4,15006,419032,14,5 ,4,15006,419040,14,5 ,4,15006,419048,13,5 ,4,15006,419056,14,5 ,4,15006,419064,13,5 ,4,15006,419072,13,5 ,17,923,9331972,48,0 ,44,15152,419076,16,0 ,45,15153,4089092,16,0 ,45,15153,4613380,16,0 ,45,15153,5137668,32,0 ,45,15153,5661956,16,0 ,17,923,8283396,40,0 ,17,923,8807684,48,0 ,4,15006,419080,13,5 ,4,15006,419088,13,5 ,4,15006,419096,13,5 ,4,15006,419104,13,5 ,4,15006,419112,13,5 ,4,15006,419120,13,5 ,4,15006,419128,12,5 ,4,15006,419136,15,5 ,4,15006,419144,14,5 ,4,15006,419152,14,5 ,4,15006,419160,13,5 ,4,15006,419168,13,5 ,20,18341,7759202,800,0 ,4,15006,419176,13,5 ,4,15006,419184,13,5 ,4,15006,419192,13,5 ,4,15006,419200,12,5 ,20,19593,10380674,172,0 ,45,15153,5662084,16,0 ,17,923,7234948,48,0 ,44,15152,419204,16,0 ,45,15153,4089220,32,0 ,45,15153,4613508,16,0 ,4,15006,419208,13,5 ,4,15006,419216,14,5 ,4,15006,419224,13,5 ,4,15006,419232,13,5 ,20,20381,13002146,440,0 ,4,15006,419240,13,5 ,4,15006,419248,13,5 ,4,15006,419256,13,5 ,4,15006,419264,13,5 ,20,21447,16147906,12,0 ,17,923,7759300,24,0 ,4,15006,419272,13,5 ,4,15006,419280,13,5 ,4,15006,419288,13,5 ,4,15006,419296,13,5 ,4,15006,419304,13,5 ,4,15006,419312,13,5 ,4,15006,419320,13,5 ,4,15006,419328,13,5 ,20,21678,16672258,100,0 ,20,18591,8283650,96,0 ,45,15153,5662212,16,0 ,44,15152,3040772,32,0 ,44,15152,2516484,88,0 ,44,15152,419332,24,0 ,45,15153,4613636,88,0 ,45,15153,5137924,16,0 ,4,15006,419336,13,5 ,4,15006,419344,13,5 ,4,15006,419352,13,5 ,4,15006,419360,13,5 ,20,21448,16148002,204,0 ,20,25477,26109474,48,0 ,20,21073,15623714,36,0 ,4,15006,419368,13,5 ,4,15006,419376,13,5 ,4,15006,419384,13,5 ,4,15006,419392,13,5 ,20,24298,22963778,316,0 ,17,923,9856580,72,0 ,44,15152,3565124,24,0 ,17,923,8283716,80,0 ,4,15006,419400,16,5 ,4,15006,419408,14,5 ,4,15006,419416,13,5 ,4,15006,419424,14,5 ,4,15006,419432,14,5 ,4,15006,419440,13,5 ,4,15006,419448,13,5 ,4,15006,419456,13,5 ,20,17245,5138050,344,0 ,17,923,9332356,40,0 ,17,923,7759492,24,0 ,17,923,6710916,48,0 ,45,15153,4089476,24,0 ,45,15153,5138052,40,0 ,45,15153,5662340,16,0 ,17,923,8808068,40,0 ,4,15006,419464,15,5 ,4,15006,419472,14,5 ,4,15006,419480,13,5 ,4,15006,419488,14,5 ,4,15006,419496,13,5 ,4,15006,419504,14,5 ,4,15006,419512,14,5 ,4,15006,419520,14,5 ,44,15152,419524,32,0 ,4,15006,419528,14,5 ,4,15006,419536,14,5 ,4,15006,419544,14,5 ,4,15006,419552,14,5 ,20,20814,14051042,60,0 ,4,15006,419560,14,5 ,4,15006,419568,14,5 ,4,15006,419576,14,5 ,4,15006,419584,14,5 ,20,17904,6711042,192,0 ,20,26212,28206850,1372,0 ,45,15153,5662468,56,0 ,17,923,7235332,48,0 ,44,15152,3041028,56,0 ,44,15152,3565316,40,0 ,4,15006,419592,14,5 ,4,15006,419600,14,5 ,4,15006,419608,13,5 ,4,15006,419616,13,5 ,20,26039,27682594,280,0 ,4,15006,419624,13,5 ,4,15006,419632,13,5 ,4,15006,419640,14,5 ,4,15006,419648,14,5 ,20,21074,15624002,36,0 ,45,15153,4089668,16,0 ,17,923,7759684,24,0 ,4,15006,419656,14,5 ,4,15006,419664,15,5 ,4,15006,419672,15,5 ,4,15006,419680,14,5 ,4,15006,419688,14,5 ,4,15006,419696,14,5 ,4,15006,419704,15,5 ,4,15006,419712,13,5 ,4,15006,419720,16,5 ,4,15006,419728,15,5 ,4,15006,419736,14,5 ,4,15006,419744,16,5 ,20,25478,26109858,172,0 ,4,15006,419752,15,5 ,4,15006,419760,14,5 ,4,15006,419768,14,5 ,4,15006,419776,13,5 ,17,923,9332676,40,0 ,44,15152,1992644,112,0 ,44,15152,419780,24,0 ,45,15153,4089796,24,0 ,45,15153,5138372,16,0 ,17,923,8808388,24,0 ,4,15006,419784,13,5 ,4,15006,419792,14,5 ,4,15006,419800,12,5 ,4,15006,419808,14,5 ,20,22184,18245602,84,0 ,4,15006,419816,14,5 ,4,15006,419824,14,5 ,4,15006,419832,14,5 ,4,15006,419840,14,5 ,17,923,6711300,24,0 ,17,923,7759876,40,0 ,4,15006,419848,14,5 ,4,15006,419856,14,5 ,4,15006,419864,13,5 ,4,15006,419872,13,5 ,4,15006,419880,13,5 ,4,15006,419888,13,5 ,4,15006,419896,13,5 ,4,15006,419904,13,5 ,45,15153,5138500,16,0 ,44,15152,3565636,24,0 ,4,15006,419912,13,5 ,4,15006,419920,13,5 ,4,15006,419928,14,5 ,4,15006,419936,14,5 ,20,21075,15624290,36,0 ,4,15006,419944,16,5 ,4,15006,419952,15,5 ,4,15006,419960,14,5 ,4,15006,419968,16,5 ,20,24094,22440066,220,0 ,17,923,9857156,32,0 ,17,923,7235716,40,0 ,44,15152,419972,24,0 ,45,15153,4089988,16,0 ,17,923,8808580,32,0 ,4,15006,419976,13,5 ,4,15006,419984,13,5 ,4,15006,419992,14,5 ,4,15006,420000,15,5 ,4,15006,420008,14,5 ,4,15006,420016,13,5 ,4,15006,420024,13,5 ,4,15006,420032,13,5 ,20,20815,14051522,96,0 ,20,16557,3565762,12,0 ,20,18829,8808642,164,0 ,17,923,8284356,40,0 ,17,923,6711492,24,0 ,44,15152,3041476,40,0 ,44,15152,2517188,88,0 ,45,15153,4614340,120,0 ,45,15153,5138628,24,0 ,45,15153,5662916,24,0 ,4,15006,420040,14,5 ,4,15006,420048,13,5 ,4,15006,420056,13,5 ,4,15006,420064,13,5 ,4,15006,420072,13,5 ,4,15006,420080,14,5 ,4,15006,420088,13,5 ,4,15006,420096,13,5 ,20,18592,8284418,96,0 ,17,923,9332996,40,0 ,44,15152,3565828,32,0 ,45,15153,4090116,56,0 ,4,15006,420104,14,5 ,4,15006,420112,14,5 ,4,15006,420120,12,5 ,4,15006,420128,13,5 ,20,21679,16673058,644,0 ,20,25065,25061666,448,0 ,20,16558,3565858,168,0 ,4,15006,420136,13,5 ,4,15006,420144,13,5 ,4,15006,420152,12,5 ,4,15006,420160,13,5 ,44,15152,420164,32,0 ,17,923,7760196,32,0 ,4,15006,420168,13,5 ,4,15006,420176,14,5 ,4,15006,420184,13,5 ,4,15006,420192,13,5 ,20,19834,10905954,128,0 ,4,15006,420200,13,5 ,4,15006,420208,13,5 ,4,15006,420216,13,5 ,4,15006,420224,13,5 ,20,24619,24013186,20,0 ,20,18128,7235970,692,0 ,20,21076,15624578,36,0 ,17,923,9857412,32,0 ,17,923,6711684,24,0 ,45,15153,5138820,24,0 ,45,15153,5663108,24,0 ,17,923,8808836,32,0 ,4,15006,420232,16,5 ,4,15006,420240,13,5 ,4,15006,420248,14,5 ,4,15006,420256,14,5 ,4,15006,420264,13,5 ,4,15006,420272,14,5 ,4,15006,420280,13,5 ,4,15006,420288,13,5 ,17,923,7236036,32,0 ,4,15006,420296,13,5 ,4,15006,420304,13,5 ,4,15006,420312,14,5 ,4,15006,420320,14,5 ,20,22895,19818978,1256,0 ,4,15006,420328,14,5 ,4,15006,420336,14,5 ,4,15006,420344,14,5 ,4,15006,420352,14,5 ,17,923,8284676,48,0 ,44,15152,3041796,24,0 ,44,15152,3566084,104,0 ,4,15006,420360,14,5 ,4,15006,420368,14,5 ,4,15006,420376,14,5 ,4,15006,420384,14,5 ,20,24620,24013346,20,0 ,4,15006,420392,14,5 ,4,15006,420400,14,5 ,4,15006,420408,14,5 ,4,15006,420416,14,5 ,17,923,9333316,40,0 ,17,923,7760452,40,0 ,17,923,6711876,24,0 ,44,15152,420420,16,0 ,45,15153,5139012,32,0 ,45,15153,5663300,80,0 ,4,15006,420424,14,5 ,4,15006,420432,15,5 ,4,15006,420440,14,5 ,4,15006,420448,14,5 ,4,15006,420456,15,5 ,4,15006,420464,14,5 ,4,15006,420472,15,5 ,4,15006,420480,15,5 ,20,22185,18246274,140,0 ,20,16856,4090498,256,0 ,17,923,9857668,32,0 ,44,15152,1469060,24,0 ,17,923,8809092,32,0 ,4,15006,420488,14,5 ,4,15006,420496,14,5 ,4,15006,420504,14,5 ,4,15006,420512,14,5 ,20,21077,15624866,32,0 ,20,25798,27159202,272,0 ,4,15006,420520,14,5 ,4,15006,420528,14,5 ,4,15006,420536,14,5 ,4,15006,420544,13,5 ,20,24621,24013506,32,0 ,45,15153,4090564,24,0 ,17,923,7236292,32,0 ,44,15152,3041988,48,0 ,44,15152,420548,16,0 ,4,15006,420552,13,5 ,4,15006,420560,13,5 ,4,15006,420568,13,5 ,4,15006,420576,13,5 ,20,19594,10382050,456,0 ,4,15006,420584,13,5 ,4,15006,420592,14,5 ,4,15006,420600,14,5 ,4,15006,420608,13,5 ,17,923,6712068,40,0 ,4,15006,420616,13,5 ,4,15006,420624,14,5 ,4,15006,420632,13,5 ,4,15006,420640,14,5 ,4,15006,420648,14,5 ,4,15006,420656,13,5 ,4,15006,420664,14,5 ,4,15006,420672,13,5 ,45,15153,5139268,24,0 ,44,15152,1993540,80,0 ,44,15152,1469252,48,0 ,44,15152,420676,56,0 ,4,15006,420680,13,5 ,4,15006,420688,13,5 ,4,15006,420696,14,5 ,4,15006,420704,13,5 ,4,15006,420712,13,5 ,4,15006,420720,13,5 ,4,15006,420728,14,5 ,4,15006,420736,14,5 ,17,923,9857924,32,0 ,17,923,7760772,32,0 ,44,15152,2517892,24,0 ,45,15153,4090756,16,0 ,17,923,8285060,32,0 ,17,923,8809348,40,0 ,17,923,9333636,48,0 ,4,15006,420744,14,5 ,4,15006,420752,12,5 ,4,15006,420760,13,5 ,4,15006,420768,13,5 ,20,21078,15625122,24,0 ,20,26502,29256610,1144,0 ,20,20637,13527970,92,0 ,4,15006,420776,13,5 ,4,15006,420784,13,5 ,4,15006,420792,12,5 ,4,15006,420800,13,5 ,20,24622,24013762,64,0 ,20,20816,14052290,60,0 ,17,923,7236548,40,0 ,4,15006,420808,14,5 ,4,15006,420816,14,5 ,4,15006,420824,14,5 ,4,15006,420832,16,5 ,20,23184,20343778,32,0 ,4,15006,420840,15,5 ,4,15006,420848,14,5 ,4,15006,420856,13,5 ,4,15006,420864,13,5 ,20,18593,8285186,96,0 ,45,15153,5139460,40,0 ,45,15153,4090884,16,0 ,4,15006,420872,14,5 ,4,15006,420880,14,5 ,4,15006,420888,13,5 ,4,15006,420896,13,5 ,4,15006,420904,14,5 ,4,15006,420912,14,5 ,4,15006,420920,14,5 ,4,15006,420928,14,5 ,20,17468,5663810,356,0 ,44,15152,2518084,24,0 ,17,923,6712388,40,0 ,44,15152,3042372,32,0 ,4,15006,420936,12,5 ,4,15006,420944,13,5 ,4,15006,420952,13,5 ,4,15006,420960,13,5 ,20,21079,15625314,244,0 ,4,15006,420968,13,5 ,4,15006,420976,14,5 ,4,15006,420984,13,5 ,4,15006,420992,14,5 ,20,21449,16149634,256,0 ,17,923,9858180,16,0 ,17,923,7761028,24,0 ,45,15153,4091012,16,0 ,45,15153,4615300,56,0 ,17,923,8285316,48,0 ,4,15006,421000,13,5 ,4,15006,421008,14,5 ,4,15006,421016,12,5 ,4,15006,421024,14,5 ,4,15006,421032,16,5 ,4,15006,421040,15,5 ,4,15006,421048,14,5 ,4,15006,421056,14,5 ,17,923,8809668,32,0 ,44,15152,1469636,32,0 ,45,15153,5663940,32,0 ,4,15006,421064,14,5 ,4,15006,421072,14,5 ,4,15006,421080,13,5 ,4,15006,421088,13,5 ,20,23185,20344034,84,0 ,4,15006,421096,13,5 ,4,15006,421104,14,5 ,4,15006,421112,14,5 ,4,15006,421120,15,5 ,20,17905,6712578,76,0 ,20,25479,26111234,172,0 ,17,923,9858308,32,0 ,17,923,7236868,56,0 ,44,15152,2518276,24,0 ,44,15152,421124,88,0 ,45,15153,4091140,16,0 ,17,923,9334020,48,0 ,4,15006,421128,13,5 ,4,15006,421136,13,5 ,4,15006,421144,14,5 ,4,15006,421152,14,5 ,4,15006,421160,14,5 ,4,15006,421168,14,5 ,4,15006,421176,13,5 ,4,15006,421184,14,5 ,45,15153,5139780,24,0 ,17,923,7761220,32,0 ,44,15152,3042628,24,0 ,44,15152,3566916,200,0 ,4,15006,421192,13,5 ,4,15006,421200,13,5 ,4,15006,421208,16,5 ,4,15006,421216,14,5 ,20,19835,10906978,476,0 ,4,15006,421224,16,5 ,4,15006,421232,14,5 ,4,15006,421240,14,5 ,4,15006,421248,14,5 ,45,15153,4091268,24,0 ,17,923,6712708,48,0 ,4,15006,421256,12,5 ,4,15006,421264,14,5 ,4,15006,421272,16,5 ,4,15006,421280,15,5 ,20,20817,14052770,1228,0 ,4,15006,421288,14,5 ,4,15006,421296,15,5 ,4,15006,421304,14,5 ,4,15006,421312,14,5 ,20,24623,24014274,32,0 ,17,923,8809924,16,0 ,44,15152,2518468,24,0 ,44,15152,1994180,56,0 ,44,15152,1469892,24,0 ,45,15153,5664196,24,0 ,4,15006,421320,16,5 ,4,15006,421328,15,5 ,4,15006,421336,16,5 ,4,15006,421344,14,5 ,20,18830,8809954,200,0 ,4,15006,421352,16,5 ,4,15006,421360,14,5 ,4,15006,421368,14,5 ,4,15006,421376,15,5 ,17,923,9858564,24,0 ,44,15152,3042820,64,0 ,45,15153,5139972,16,0 ,17,923,8285700,40,0 ,4,15006,421384,13,5 ,4,15006,421392,13,5 ,4,15006,421400,13,5 ,4,15006,421408,13,5 ,4,15006,421416,14,5 ,4,15006,421424,14,5 ,4,15006,421432,15,5 ,4,15006,421440,14,5 ,17,923,8810052,24,0 ,17,923,7761476,40,0 ,45,15153,4091460,16,0 ,45,15153,4615748,16,0 ,4,15006,421448,14,5 ,4,15006,421456,14,5 ,4,15006,421464,13,5 ,4,15006,421472,13,5 ,20,17661,6188642,228,0 ,20,16559,3567202,276,0 ,4,15006,421480,13,5 ,4,15006,421488,14,5 ,4,15006,421496,13,5 ,4,15006,421504,13,5 ,20,20638,13528706,12,0 ,20,26350,28733058,980,0 ,17,923,9334404,40,0 ,44,15152,2518660,32,0 ,44,15152,1470084,40,0 ,45,15153,5140100,32,0 ,45,15153,5664388,16,0 ,4,15006,421512,14,5 ,4,15006,421520,13,5 ,4,15006,421528,13,5 ,4,15006,421536,14,5 ,4,15006,421544,14,5 ,4,15006,421552,13,5 ,4,15006,421560,13,5 ,4,15006,421568,14,5 ,20,24624,24014530,56,0 ,17,923,9858756,24,0 ,17,923,7237316,40,0 ,44,15152,945860,48,0 ,45,15153,4091588,32,0 ,45,15153,4615876,72,0 ,4,15006,421576,12,5 ,4,15006,421584,14,5 ,4,15006,421592,14,5 ,4,15006,421600,14,5 ,20,22186,18247394,352,0 ,20,20639,13528802,92,0 ,20,21908,17198818,76,0 ,4,15006,421608,13,5 ,4,15006,421616,13,5 ,4,15006,421624,13,5 ,4,15006,421632,16,5 ,20,18594,8285954,96,0 ,20,15515,945922,264,0 ,17,923,8810244,32,0 ,17,923,6713092,40,0 ,45,15153,5664516,24,0 ,4,15006,421640,14,5 ,4,15006,421648,14,5 ,4,15006,421656,14,5 ,4,15006,421664,14,5 ,20,15967,1994530,12,0 ,4,15006,421672,14,5 ,4,15006,421680,14,5 ,4,15006,421688,14,5 ,4,15006,421696,16,5 ,17,923,8286020,48,0 ,4,15006,421704,14,5 ,4,15006,421712,14,5 ,4,15006,421720,14,5 ,4,15006,421728,14,5 ,20,24095,22441826,312,0 ,20,17906,6713186,192,0 ,4,15006,421736,14,5 ,4,15006,421744,14,5 ,4,15006,421752,15,5 ,4,15006,421760,14,5 ,20,23186,20344706,80,0 ,20,15968,1994626,1808,0 ,17,923,9858948,24,0 ,17,923,7761796,48,0 ,44,15152,2518916,24,0 ,44,15152,1994628,256,0 ,45,15153,5140356,16,0 ,4,15006,421768,14,5 ,4,15006,421776,14,5 ,4,15006,421784,14,5 ,4,15006,421792,14,5 ,4,15006,421800,14,5 ,4,15006,421808,14,5 ,4,15006,421816,14,5 ,4,15006,421824,14,5 ,17,923,9334724,40,0 ,44,15152,1470404,32,0 ,44,15152,421828,32,0 ,45,15153,4091844,104,0 ,45,15153,5664708,32,0 ,4,15006,421832,14,5 ,4,15006,421840,14,5 ,4,15006,421848,13,5 ,4,15006,421856,14,5 ,20,26040,27684834,888,0 ,4,15006,421864,15,5 ,4,15006,421872,14,5 ,4,15006,421880,16,5 ,4,15006,421888,16,5 ,17,923,8810500,24,0 ,17,923,7237636,32,0 ,44,15152,3043332,24,0 ,45,15153,5140484,16,0 ,4,15006,421896,14,5 ,4,15006,421904,13,5 ,4,15006,421912,17,5 ,4,15006,421920,14,5 ,20,24299,22966306,404,0 ,4,15006,421928,14,5 ,4,15006,421936,13,5 ,4,15006,421944,14,5 ,4,15006,421952,13,5 ,17,923,9859140,24,0 ,17,923,6713412,40,0 ,44,15152,2519108,32,0 ,44,15152,946244,80,0 ,4,15006,421960,14,5 ,4,15006,421968,14,5 ,4,15006,421976,15,5 ,4,15006,421984,14,5 ,4,15006,421992,14,5 ,4,15006,422000,16,5 ,4,15006,422008,15,5 ,4,15006,422016,16,5 ,20,24625,24014978,32,0 ,45,15153,5140612,24,0 ,4,15006,422024,13,5 ,4,15006,422032,14,5 ,4,15006,422040,13,5 ,4,15006,422048,15,5 ,4,15006,422056,13,5 ,4,15006,422064,14,5 ,4,15006,422072,14,5 ,4,15006,422080,14,5 ,17,923,8810692,40,0 ,44,15152,3043524,40,0 ,44,15152,1470660,32,0 ,44,15152,422084,32,0 ,45,15153,5664964,40,0 ,17,923,8286404,48,0 ,4,15006,422088,14,5 ,4,15006,422096,15,5 ,4,15006,422104,16,5 ,4,15006,422112,13,5 ,4,15006,422120,14,5 ,4,15006,422128,14,5 ,4,15006,422136,14,5 ,4,15006,422144,14,5 ,20,24793,24539394,60,0 ,17,923,9859332,16,0 ,17,923,7762180,32,0 ,17,923,7237892,32,0 ,45,15153,4616452,48,0 ,17,923,9335044,40,0 ,4,15006,422152,14,5 ,4,15006,422160,15,5 ,4,15006,422168,16,5 ,4,15006,422176,15,5 ,4,15006,422184,16,5 ,4,15006,422192,14,5 ,4,15006,422200,14,5 ,4,15006,422208,14,5 ,20,21909,17199426,1152,0 ,20,17246,5140802,12,0 ,45,15153,5140804,24,0 ,44,15152,2519364,24,0 ,4,15006,422216,16,5 ,4,15006,422224,14,5 ,4,15006,422232,14,5 ,4,15006,422240,14,5 ,4,15006,422248,14,5 ,4,15006,422256,16,5 ,4,15006,422264,14,5 ,4,15006,422272,14,5 ,20,24626,24015234,32,0 ,17,923,9859460,24,0 ,17,923,6713732,32,0 ,4,15006,422280,16,5 ,4,15006,422288,14,5 ,4,15006,422296,15,5 ,4,15006,422304,15,5 ,20,17247,5140898,732,0 ,4,15006,422312,13,5 ,4,15006,422320,13,5 ,4,15006,422328,13,5 ,4,15006,422336,13,5 ,20,20640,13529538,12,0 ,44,15152,422340,32,0 ,44,15152,1470916,32,0 ,4,15006,422344,14,5 ,4,15006,422352,13,5 ,4,15006,422360,14,5 ,4,15006,422368,13,5 ,4,15006,422376,15,5 ,4,15006,422384,14,5 ,4,15006,422392,14,5 ,4,15006,422400,14,5 ,20,23187,20345346,236,0 ,20,18595,8286722,352,0 ,17,923,8811012,40,0 ,17,923,7762436,32,0 ,17,923,7238148,32,0 ,44,15152,3043844,32,0 ,44,15152,2519556,112,0 ,45,15153,5140996,16,0 ,45,15153,5665284,24,0 ,4,15006,422408,14,5 ,4,15006,422416,14,5 ,4,15006,422424,15,5 ,4,15006,422432,14,5 ,20,20641,13529634,168,0 ,4,15006,422440,15,5 ,4,15006,422448,14,5 ,4,15006,422456,16,5 ,4,15006,422464,14,5 ,17,923,9859652,24,0 ,17,923,8286788,80,0 ,17,923,9335364,48,0 ,4,15006,422472,13,5 ,4,15006,422480,13,5 ,4,15006,422488,13,5 ,4,15006,422496,13,5 ,20,25480,26112610,264,0 ,4,15006,422504,13,5 ,4,15006,422512,13,5 ,4,15006,422520,16,5 ,4,15006,422528,16,5 ,20,16857,4092546,512,0 ,20,24627,24015490,84,0 ,20,16130,2519682,1284,0 ,45,15153,5141124,24,0 ,17,923,6713988,40,0 ,45,15153,4616836,64,0 ,4,15006,422536,15,5 ,4,15006,422544,14,5 ,4,15006,422552,16,5 ,4,15006,422560,14,5 ,4,15006,422568,13,5 ,4,15006,422576,15,5 ,4,15006,422584,14,5 ,4,15006,422592,14,5 ,45,15153,5665476,24,0 ,44,15152,1471172,24,0 ,44,15152,422596,24,0 ,44,15152,946884,72,0 ,4,15006,422600,15,5 ,4,15006,422608,14,5 ,4,15006,422616,14,5 ,4,15006,422624,13,5 ,20,24794,24539874,472,0 ,4,15006,422632,14,5 ,4,15006,422640,13,5 ,4,15006,422648,14,5 ,4,15006,422656,14,5 ,17,923,9859844,32,0 ,17,923,7762692,24,0 ,17,923,7238404,32,0 ,44,15152,3044100,24,0 ,45,15153,4092676,24,0 ,4,15006,422664,15,5 ,4,15006,422672,14,5 ,4,15006,422680,14,5 ,4,15006,422688,13,5 ,20,19049,9335586,456,0 ,20,25799,27161378,524,0 ,4,15006,422696,16,5 ,4,15006,422704,14,5 ,4,15006,422712,14,5 ,4,15006,422720,14,5 ,20,25282,25588546,244,0 ,17,923,8811332,32,0 ,45,15153,5141316,16,0 ,4,15006,422728,13,5 ,4,15006,422736,14,5 ,4,15006,422744,14,5 ,4,15006,422752,13,5 ,20,20382,13005666,160,0 ,4,15006,422760,16,5 ,4,15006,422768,14,5 ,4,15006,422776,14,5 ,4,15006,422784,15,5 ,20,23838,21918594,64,0 ,45,15153,5665668,16,0 ,44,15152,1471364,40,0 ,44,15152,422788,24,0 ,44,15152,3568516,64,0 ,4,15006,422792,14,5 ,4,15006,422800,14,5 ,4,15006,422808,14,5 ,4,15006,422816,16,5 ,4,15006,422824,14,5 ,4,15006,422832,14,5 ,4,15006,422840,14,5 ,4,15006,422848,13,5 ,17,923,9335748,40,0 ,17,923,7762884,32,0 ,17,923,6714308,32,0 ,44,15152,3044292,24,0 ,45,15153,4092868,24,0 ,45,15153,5141444,72,0 ,4,15006,422856,16,5 ,4,15006,422864,16,5 ,4,15006,422872,14,5 ,4,15006,422880,14,5 ,4,15006,422888,15,5 ,4,15006,422896,14,5 ,4,15006,422904,14,5 ,4,15006,422912,15,5 ,20,21080,15627266,132,0 ,17,923,9860100,24,0 ,17,923,7238660,24,0 ,45,15153,5665796,16,0 ,4,15006,422920,13,5 ,4,15006,422928,13,5 ,4,15006,422936,14,5 ,4,15006,422944,14,5 ,20,18831,8811554,156,0 ,4,15006,422952,13,5 ,4,15006,422960,14,5 ,4,15006,422968,14,5 ,4,15006,422976,14,5 ,17,923,8811588,32,0 ,44,15152,422980,16,0 ,4,15006,422984,16,5 ,4,15006,422992,14,5 ,4,15006,423000,14,5 ,4,15006,423008,15,5 ,4,15006,423016,14,5 ,4,15006,423024,14,5 ,4,15006,423032,14,5 ,4,15006,423040,16,5 ,20,21450,16151682,128,0 ,45,15153,5665924,16,0 ,44,15152,3044484,32,0 ,45,15153,4093060,16,0 ,45,15153,4617348,72,0 ,4,15006,423048,14,5 ,4,15006,423056,14,5 ,4,15006,423064,14,5 ,4,15006,423072,14,5 ,4,15006,423080,14,5 ,4,15006,423088,14,5 ,4,15006,423096,14,5 ,4,15006,423104,14,5 ,17,923,9860292,32,0 ,17,923,7763140,24,0 ,17,923,7238852,40,0 ,17,923,6714564,40,0 ,44,15152,1471684,176,0 ,44,15152,423108,32,0 ,17,923,8287428,32,0 ,4,15006,423112,16,5 ,4,15006,423120,14,5 ,4,15006,423128,14,5 ,4,15006,423136,14,5 ,4,15006,423144,16,5 ,4,15006,423152,14,5 ,4,15006,423160,14,5 ,4,15006,423168,14,5 ,17,923,9336068,48,0 ,44,15152,947460,24,0 ,45,15153,4093188,16,0 ,45,15153,5666052,16,0 ,4,15006,423176,14,5 ,4,15006,423184,14,5 ,4,15006,423192,14,5 ,4,15006,423200,16,5 ,20,24628,24016162,92,0 ,4,15006,423208,15,5 ,4,15006,423216,16,5 ,4,15006,423224,14,5 ,4,15006,423232,16,5 ,17,923,8811844,32,0 ,4,15006,423240,15,5 ,4,15006,423248,14,5 ,4,15006,423256,16,5 ,4,15006,423264,14,5 ,20,17907,6714722,76,0 ,4,15006,423272,15,5 ,4,15006,423280,14,5 ,4,15006,423288,16,5 ,4,15006,423296,14,5 ,20,23839,21919106,296,0 ,20,17662,6190466,160,0 ,45,15153,5666180,24,0 ,17,923,7763332,32,0 ,44,15152,3044740,24,0 ,44,15152,2520452,32,0 ,44,15152,3569028,32,0 ,45,15153,4093316,16,0 ,4,15006,423304,14,5 ,4,15006,423312,16,5 ,4,15006,423320,15,5 ,4,15006,423328,14,5 ,4,15006,423336,14,5 ,4,15006,423344,16,5 ,4,15006,423352,16,5 ,4,15006,423360,15,5 ,17,923,9860548,32,0 ,44,15152,423364,16,0 ,44,15152,947652,32,0 ,17,923,8287684,48,0 ,4,15006,423368,16,5 ,4,15006,423376,14,5 ,4,15006,423384,13,5 ,4,15006,423392,14,5 ,4,15006,423400,14,5 ,4,15006,423408,14,5 ,4,15006,423416,16,5 ,4,15006,423424,14,5 ,45,15153,5142020,24,0 ,17,923,7239172,40,0 ,17,923,6714884,40,0 ,45,15153,4093444,16,0 ,4,15006,423432,16,5 ,4,15006,423440,16,5 ,4,15006,423448,13,5 ,4,15006,423456,14,5 ,4,15006,423464,13,5 ,4,15006,423472,14,5 ,4,15006,423480,12,5 ,4,15006,423488,13,5 ,17,923,8812100,32,0 ,44,15152,3044932,48,0 ,44,15152,423492,24,0 ,45,15153,5666372,16,0 ,4,15006,423496,14,5 ,4,15006,423504,14,5 ,4,15006,423512,14,5 ,4,15006,423520,14,5 ,4,15006,423528,16,5 ,4,15006,423536,15,5 ,4,15006,423544,13,5 ,4,15006,423552,13,5 ,17,923,9336452,48,0 ,17,923,7763588,40,0 ,44,15152,2520708,24,0 ,44,15152,3569284,56,0 ,45,15153,4093572,16,0 ,4,15006,423560,16,5 ,4,15006,423568,14,5 ,4,15006,423576,14,5 ,4,15006,423584,14,5 ,4,15006,423592,14,5 ,4,15006,423600,13,5 ,4,15006,423608,15,5 ,4,15006,423616,14,5 ,17,923,9860804,32,0 ,44,15152,947908,32,0 ,45,15153,4617924,360,0 ,45,15153,5142212,112,0 ,45,15153,5666500,16,0 ,4,15006,423624,14,5 ,4,15006,423632,15,5 ,4,15006,423640,14,5 ,4,15006,423648,14,5 ,4,15006,423656,15,5 ,4,15006,423664,13,5 ,4,15006,423672,16,5 ,4,15006,423680,16,5 ,20,20188,11958018,424,0 ,20,16560,3569410,44,0 ,45,15153,4093700,72,0 ,44,15152,423684,40,0 ,4,15006,423688,14,5 ,4,15006,423696,13,5 ,4,15006,423704,12,5 ,4,15006,423712,13,5 ,20,25066,25065250,736,0 ,4,15006,423720,13,5 ,4,15006,423728,13,5 ,4,15006,423736,13,5 ,4,15006,423744,13,5 ,20,15516,948034,304,0 ,17,923,8812356,32,0 ,17,923,7239492,32,0 ,17,923,6715204,40,0 ,44,15152,2520900,32,0 ,45,15153,5666628,24,0 ,17,923,8288068,48,0 ,4,15006,423752,15,5 ,4,15006,423760,14,5 ,4,15006,423768,14,5 ,4,15006,423776,13,5 ,20,20642,13530978,12,0 ,20,17469,5666658,12,0 ,4,15006,423784,15,5 ,4,15006,423792,14,5 ,4,15006,423800,14,5 ,4,15006,423808,15,5 ,44,15152,1996676,72,0 ,4,15006,423816,14,5 ,4,15006,423824,14,5 ,4,15006,423832,14,5 ,4,15006,423840,16,5 ,4,15006,423848,14,5 ,4,15006,423856,16,5 ,4,15006,423864,15,5 ,4,15006,423872,14,5 ,20,20643,13531074,1120,0 ,20,17470,5666754,12,0 ,20,17908,6715330,88,0 ,17,923,9861060,40,0 ,17,923,7763908,32,0 ,44,15152,3045316,24,0 ,44,15152,948164,32,0 ,4,15006,423880,16,5 ,4,15006,423888,14,5 ,4,15006,423896,15,5 ,4,15006,423904,13,5 ,4,15006,423912,13,5 ,4,15006,423920,14,5 ,4,15006,423928,14,5 ,4,15006,423936,14,5 ,20,24629,24016898,104,0 ,17,923,9336836,48,0 ,45,15153,5666820,56,0 ,4,15006,423944,14,5 ,4,15006,423952,14,5 ,4,15006,423960,13,5 ,4,15006,423968,14,5 ,20,21081,15628322,168,0 ,20,17471,5666850,60,0 ,4,15006,423976,16,5 ,4,15006,423984,14,5 ,4,15006,423992,16,5 ,4,15006,424000,13,5 ,17,923,8812612,24,0 ,17,923,7239748,24,0 ,44,15152,2521156,56,0 ,44,15152,424004,32,0 ,44,15152,3569732,32,0 ,4,15006,424008,14,5 ,4,15006,424016,14,5 ,4,15006,424024,14,5 ,4,15006,424032,14,5 ,20,20383,13006946,328,0 ,20,16561,3569762,44,0 ,4,15006,424040,13,5 ,4,15006,424048,13,5 ,4,15006,424056,14,5 ,4,15006,424064,13,5 ,20,21451,16152706,292,0 ,44,15152,3045508,16,0 ,17,923,6715524,40,0 ,4,15006,424072,13,5 ,4,15006,424080,16,5 ,4,15006,424088,14,5 ,4,15006,424096,13,5 ,4,15006,424104,15,5 ,4,15006,424112,13,5 ,4,15006,424120,13,5 ,4,15006,424128,13,5 ,17,923,8288452,40,0 ,17,923,7764164,24,0 ,44,15152,948420,32,0 ,4,15006,424136,13,5 ,4,15006,424144,13,5 ,4,15006,424152,13,5 ,4,15006,424160,13,5 ,4,15006,424168,14,5 ,4,15006,424176,14,5 ,4,15006,424184,13,5 ,4,15006,424192,13,5 ,20,18832,8812802,204,0 ,17,923,9861380,40,0 ,17,923,7239940,56,0 ,44,15152,3045636,32,0 ,17,923,8812804,24,0 ,4,15006,424200,13,5 ,4,15006,424208,14,5 ,4,15006,424216,14,5 ,4,15006,424224,13,5 ,20,24096,22444322,184,0 ,20,19595,10385698,692,0 ,4,15006,424232,15,5 ,4,15006,424240,13,5 ,4,15006,424248,14,5 ,4,15006,424256,14,5 ,45,15153,4094276,16,0 ,44,15152,424260,32,0 ,44,15152,3569988,32,0 ,4,15006,424264,13,5 ,4,15006,424272,14,5 ,4,15006,424280,14,5 ,4,15006,424288,15,5 ,20,23188,20347234,392,0 ,4,15006,424296,14,5 ,4,15006,424304,13,5 ,4,15006,424312,13,5 ,4,15006,424320,13,5 ,17,923,9337220,48,0 ,17,923,7764356,32,0 ,4,15006,424328,13,5 ,4,15006,424336,13,5 ,4,15006,424344,13,5 ,4,15006,424352,13,5 ,4,15006,424360,13,5 ,4,15006,424368,13,5 ,4,15006,424376,13,5 ,4,15006,424384,13,5 ,20,16562,3570114,52,0 ,17,923,8812996,48,0 ,17,923,6715844,32,0 ,44,15152,1997252,224,0 ,44,15152,948676,32,0 ,45,15153,4094404,56,0 ,45,15153,5667268,32,0 ,4,15006,424392,13,5 ,4,15006,424400,13,5 ,4,15006,424408,13,5 ,4,15006,424416,13,5 ,20,22187,18250210,24,0 ,4,15006,424424,13,5 ,4,15006,424432,13,5 ,4,15006,424440,13,5 ,4,15006,424448,13,5 ,20,17472,5667330,116,0 ,17,923,8288772,40,0 ,44,15152,3045892,40,0 ,44,15152,2521604,32,0 ,4,15006,424456,13,5 ,4,15006,424464,13,5 ,4,15006,424472,13,5 ,4,15006,424480,13,5 ,4,15006,424488,14,5 ,4,15006,424496,13,5 ,4,15006,424504,13,5 ,4,15006,424512,13,5 ,17,923,9861700,32,0 ,44,15152,1473092,24,0 ,44,15152,424516,24,0 ,44,15152,3570244,32,0 ,45,15153,5143108,16,0 ,4,15006,424520,13,5 ,4,15006,424528,13,5 ,4,15006,424536,13,5 ,4,15006,424544,13,5 ,4,15006,424552,13,5 ,4,15006,424560,13,5 ,4,15006,424568,13,5 ,4,15006,424576,13,5 ,20,17909,6716034,276,0 ,20,17663,6191746,120,0 ,17,923,7764612,32,0 ,4,15006,424584,13,5 ,4,15006,424592,13,5 ,4,15006,424600,14,5 ,4,15006,424608,14,5 ,20,22188,18250402,108,0 ,20,25481,26114722,392,0 ,4,15006,424616,14,5 ,4,15006,424624,14,5 ,4,15006,424632,13,5 ,4,15006,424640,12,5 ,45,15153,5667524,16,0 ,17,923,7240388,48,0 ,17,923,6716100,40,0 ,44,15152,948932,24,0 ,45,15153,5143236,56,0 ,4,15006,424648,13,5 ,4,15006,424656,13,5 ,4,15006,424664,13,5 ,4,15006,424672,13,5 ,20,25283,25590498,24,0 ,4,15006,424680,13,5 ,4,15006,424688,13,5 ,4,15006,424696,13,5 ,4,15006,424704,13,5 ,17,923,9337604,48,0 ,44,15152,2521860,56,0 ,44,15152,1473284,224,0 ,44,15152,424708,40,0 ,4,15006,424712,14,5 ,4,15006,424720,14,5 ,4,15006,424728,13,5 ,4,15006,424736,14,5 ,4,15006,424744,13,5 ,4,15006,424752,13,5 ,4,15006,424760,14,5 ,4,15006,424768,13,5 ,20,24630,24017730,84,0 ,17,923,9861956,24,0 ,44,15152,3046212,32,0 ,44,15152,3570500,32,0 ,45,15153,5667652,16,0 ,17,923,8289092,40,0 ,17,923,8813380,40,0 ,4,15006,424776,13,5 ,4,15006,424784,14,5 ,4,15006,424792,14,5 ,4,15006,424800,14,5 ,20,16563,3570530,300,0 ,4,15006,424808,13,5 ,4,15006,424816,13,5 ,4,15006,424824,14,5 ,4,15006,424832,14,5 ,45,15153,4094852,24,0 ,17,923,7764868,24,0 ,44,15152,949124,48,0 ,4,15006,424840,14,5 ,4,15006,424848,13,5 ,4,15006,424856,14,5 ,4,15006,424864,14,5 ,20,20103,11434914,2012,0 ,20,25284,25590690,1768,0 ,4,15006,424872,13,5 ,4,15006,424880,14,5 ,4,15006,424888,13,5 ,4,15006,424896,13,5 ,45,15153,5667780,16,0 ,4,15006,424904,16,5 ,4,15006,424912,14,5 ,4,15006,424920,15,5 ,4,15006,424928,14,5 ,4,15006,424936,16,5 ,4,15006,424944,14,5 ,4,15006,424952,13,5 ,4,15006,424960,14,5 ,17,923,9862148,32,0 ,17,923,6716420,56,0 ,4,15006,424968,16,5 ,4,15006,424976,14,5 ,4,15006,424984,16,5 ,4,15006,424992,15,5 ,4,15006,425000,14,5 ,4,15006,425008,14,5 ,4,15006,425016,14,5 ,4,15006,425024,16,5 ,20,19836,10910786,128,0 ,45,15153,5667908,16,0 ,17,923,7765060,48,0 ,17,923,7240772,32,0 ,44,15152,3046468,24,0 ,44,15152,425028,40,0 ,44,15152,3570756,32,0 ,45,15153,4095044,56,0 ,4,15006,425032,16,5 ,4,15006,425040,13,5 ,4,15006,425048,15,5 ,4,15006,425056,14,5 ,4,15006,425064,13,5 ,4,15006,425072,15,5 ,4,15006,425080,14,5 ,4,15006,425088,14,5 ,17,923,9337988,48,0 ,45,15153,5143684,16,0 ,17,923,8289412,32,0 ,17,923,8813700,24,0 ,4,15006,425096,14,5 ,4,15006,425104,16,5 ,4,15006,425112,16,5 ,4,15006,425120,15,5 ,4,15006,425128,14,5 ,4,15006,425136,13,5 ,4,15006,425144,14,5 ,4,15006,425152,14,5 ,20,24300,22969538,140,0 ,45,15153,5668036,24,0 ,44,15152,2522308,32,0 ,4,15006,425160,14,5 ,4,15006,425168,13,5 ,4,15006,425176,14,5 ,4,15006,425184,13,5 ,4,15006,425192,14,5 ,4,15006,425200,13,5 ,4,15006,425208,13,5 ,4,15006,425216,13,5 ,20,18596,8289538,80,0 ,17,923,9862404,24,0 ,44,15152,3046660,24,0 ,44,15152,949508,104,0 ,45,15153,5143812,16,0 ,4,15006,425224,13,5 ,4,15006,425232,14,5 ,4,15006,425240,15,5 ,4,15006,425248,13,5 ,4,15006,425256,13,5 ,4,15006,425264,14,5 ,4,15006,425272,14,5 ,4,15006,425280,16,5 ,20,21680,16678210,68,0 ,17,923,8813892,24,0 ,17,923,7241028,40,0 ,44,15152,3571012,32,0 ,4,15006,425288,14,5 ,4,15006,425296,15,5 ,4,15006,425304,14,5 ,4,15006,425312,14,5 ,20,21082,15629666,168,0 ,4,15006,425320,14,5 ,4,15006,425328,14,5 ,4,15006,425336,14,5 ,4,15006,425344,16,5 ,17,923,8289668,40,0 ,44,15152,425348,24,0 ,45,15153,5143940,64,0 ,45,15153,5668228,32,0 ,4,15006,425352,14,5 ,4,15006,425360,14,5 ,4,15006,425368,14,5 ,4,15006,425376,14,5 ,20,17473,5668258,116,0 ,4,15006,425384,14,5 ,4,15006,425392,14,5 ,4,15006,425400,14,5 ,4,15006,425408,14,5 ,17,923,9862596,32,0 ,17,923,7765444,48,0 ,17,923,6716868,40,0 ,44,15152,3046852,24,0 ,44,15152,2522564,48,0 ,4,15006,425416,13,5 ,4,15006,425424,13,5 ,4,15006,425432,16,5 ,4,15006,425440,14,5 ,20,24631,24018402,136,0 ,4,15006,425448,14,5 ,4,15006,425456,16,5 ,4,15006,425464,14,5 ,4,15006,425472,14,5 ,20,22189,18251266,108,0 ,17,923,9338372,48,0 ,45,15153,4095492,72,0 ,17,923,8814084,24,0 ,4,15006,425480,14,5 ,4,15006,425488,14,5 ,4,15006,425496,14,5 ,4,15006,425504,14,5 ,4,15006,425512,16,5 ,4,15006,425520,14,5 ,4,15006,425528,14,5 ,4,15006,425536,14,5 ,20,17664,6192706,272,0 ,44,15152,3571268,32,0 ,44,15152,425540,24,0 ,4,15006,425544,14,5 ,4,15006,425552,12,5 ,4,15006,425560,16,5 ,4,15006,425568,16,5 ,20,18342,7765602,180,0 ,4,15006,425576,16,5 ,4,15006,425584,14,5 ,4,15006,425592,14,5 ,4,15006,425600,14,5 ,45,15153,5668484,24,0 ,17,923,7241348,56,0 ,44,15152,3047044,24,0 ,4,15006,425608,14,5 ,4,15006,425616,14,5 ,4,15006,425624,14,5 ,4,15006,425632,16,5 ,4,15006,425640,15,5 ,4,15006,425648,14,5 ,4,15006,425656,14,5 ,4,15006,425664,14,5 ,20,23840,21921474,124,0 ,17,923,9862852,32,0 ,17,923,8289988,32,0 ,17,923,8814276,24,0 ,4,15006,425672,14,5 ,4,15006,425680,13,5 ,4,15006,425688,13,5 ,4,15006,425696,13,5 ,20,24097,22445794,348,0 ,4,15006,425704,13,5 ,4,15006,425712,14,5 ,4,15006,425720,12,5 ,4,15006,425728,13,5 ,44,15152,425732,24,0 ,17,923,6717188,24,0 ,4,15006,425736,13,5 ,4,15006,425744,13,5 ,4,15006,425752,16,5 ,4,15006,425760,14,5 ,20,18129,7241506,376,0 ,4,15006,425768,16,5 ,4,15006,425776,14,5 ,4,15006,425784,15,5 ,4,15006,425792,15,5 ,45,15153,5668676,32,0 ,17,923,7765828,48,0 ,44,15152,3047236,24,0 ,44,15152,2522948,64,0 ,44,15152,3571524,32,0 ,4,15006,425800,14,5 ,4,15006,425808,13,5 ,4,15006,425816,15,5 ,4,15006,425824,14,5 ,20,21681,16678754,12,0 ,20,18833,8814434,976,0 ,4,15006,425832,15,5 ,4,15006,425840,13,5 ,4,15006,425848,15,5 ,4,15006,425856,16,5 ,20,18597,8290178,192,0 ,17,923,9338756,32,0 ,45,15153,5144452,48,0 ,17,923,8814468,24,0 ,4,15006,425864,14,5 ,4,15006,425872,13,5 ,4,15006,425880,13,5 ,4,15006,425888,13,5 ,4,15006,425896,16,5 ,4,15006,425904,14,5 ,4,15006,425912,14,5 ,4,15006,425920,16,5 ,20,21682,16678850,52,0 ,17,923,9863108,32,0 ,17,923,6717380,16,0 ,44,15152,425924,64,0 ,17,923,8290244,40,0 ,4,15006,425928,15,5 ,4,15006,425936,14,5 ,4,15006,425944,16,5 ,4,15006,425952,14,5 ,4,15006,425960,16,5 ,4,15006,425968,16,5 ,4,15006,425976,16,5 ,4,15006,425984,16,5 ,44,15152,3047428,24,0 ,4,15006,425992,16,5 ,4,15006,426000,16,5 ,4,15006,426008,14,5 ,4,15006,426016,14,5 ,4,15006,426024,13,5 ,4,15006,426032,13,5 ,4,15006,426040,14,5 ,4,15006,426048,14,5 ,20,19837,10911810,476,0 ,17,923,8814660,24,0 ,17,923,7241796,40,0 ,17,923,6717508,16,0 ,44,15152,950340,24,0 ,44,15152,3571780,32,0 ,45,15153,4096068,16,0 ,45,15153,5668932,16,0 ,4,15006,426056,15,5 ,4,15006,426064,15,5 ,4,15006,426072,14,5 ,4,15006,426080,13,5 ,4,15006,426088,13,5 ,4,15006,426096,14,5 ,4,15006,426104,14,5 ,4,15006,426112,14,5 ,17,923,9339012,40,0 ,4,15006,426120,14,5 ,4,15006,426128,14,5 ,4,15006,426136,14,5 ,4,15006,426144,14,5 ,4,15006,426152,14,5 ,4,15006,426160,15,5 ,4,15006,426168,13,5 ,4,15006,426176,14,5 ,20,15517,950466,80,0 ,17,923,9863364,24,0 ,17,923,7766212,24,0 ,17,923,6717636,32,0 ,44,15152,3047620,24,0 ,44,15152,1999044,40,0 ,45,15153,4096196,48,0 ,45,15153,5669060,40,0 ,4,15006,426184,14,5 ,4,15006,426192,13,5 ,4,15006,426200,14,5 ,4,15006,426208,14,5 ,4,15006,426216,13,5 ,4,15006,426224,14,5 ,4,15006,426232,14,5 ,4,15006,426240,14,5 ,17,923,8814852,24,0 ,44,15152,950532,40,0 ,45,15153,5144836,56,0 ,17,923,8290564,40,0 ,4,15006,426248,14,5 ,4,15006,426256,14,5 ,4,15006,426264,14,5 ,4,15006,426272,13,5 ,20,24301,22970658,276,0 ,4,15006,426280,14,5 ,4,15006,426288,14,5 ,4,15006,426296,14,5 ,4,15006,426304,14,5 ,20,17474,5669186,116,0 ,44,15152,3572036,32,0 ,44,15152,2523460,72,0 ,4,15006,426312,14,5 ,4,15006,426320,14,5 ,4,15006,426328,13,5 ,4,15006,426336,14,5 ,20,22190,18252130,300,0 ,20,19050,9339234,12,0 ,20,21683,16679266,56,0 ,4,15006,426344,13,5 ,4,15006,426352,13,5 ,4,15006,426360,14,5 ,4,15006,426368,14,5 ,17,923,9863556,56,0 ,17,923,7766404,56,0 ,17,923,7242116,40,0 ,44,15152,3047812,24,0 ,4,15006,426376,13,5 ,4,15006,426384,13,5 ,4,15006,426392,14,5 ,4,15006,426400,14,5 ,20,21452,16155042,128,0 ,20,24795,24543650,232,0 ,4,15006,426408,13,5 ,4,15006,426416,13,5 ,4,15006,426424,13,5 ,4,15006,426432,14,5 ,20,19051,9339330,12,0 ,17,923,9339332,40,0 ,17,923,6717892,48,0 ,44,15152,426436,144,0 ,17,923,8815044,24,0 ,4,15006,426440,14,5 ,4,15006,426448,14,5 ,4,15006,426456,14,5 ,4,15006,426464,13,5 ,4,15006,426472,14,5 ,4,15006,426480,14,5 ,4,15006,426488,14,5 ,4,15006,426496,14,5 ,45,15153,5669380,40,0 ,44,15152,1999364,40,0 ,44,15152,1475076,32,0 ,45,15153,4620804,40,0 ,4,15006,426504,13,5 ,4,15006,426512,13,5 ,4,15006,426520,14,5 ,4,15006,426528,14,5 ,20,19052,9339426,480,0 ,20,24632,24019490,140,0 ,4,15006,426536,14,5 ,4,15006,426544,14,5 ,4,15006,426552,13,5 ,4,15006,426560,15,5 ,17,923,8290884,40,0 ,44,15152,3048004,32,0 ,44,15152,950852,24,0 ,44,15152,3572292,32,0 ,45,15153,4096580,56,0 ,4,15006,426568,13,5 ,4,15006,426576,13,5 ,4,15006,426584,13,5 ,4,15006,426592,13,5 ,4,15006,426600,13,5 ,4,15006,426608,13,5 ,4,15006,426616,13,5 ,4,15006,426624,13,5 ,20,16858,4096642,576,0 ,17,923,8815236,56,0 ,4,15006,426632,13,5 ,4,15006,426640,13,5 ,4,15006,426648,13,5 ,4,15006,426656,13,5 ,20,23841,21922466,160,0 ,20,20384,13009570,80,0 ,20,21083,15631010,168,0 ,4,15006,426664,14,5 ,4,15006,426672,14,5 ,4,15006,426680,14,5 ,4,15006,426688,14,5 ,45,15153,5145284,16,0 ,17,923,7242436,48,0 ,4,15006,426696,15,5 ,4,15006,426704,14,5 ,4,15006,426712,15,5 ,4,15006,426720,14,5 ,4,15006,426728,14,5 ,4,15006,426736,14,5 ,4,15006,426744,14,5 ,4,15006,426752,14,5 ,17,923,9339652,40,0 ,44,15152,1475332,24,0 ,44,15152,951044,64,0 ,4,15006,426760,14,5 ,4,15006,426768,15,5 ,4,15006,426776,16,5 ,4,15006,426784,13,5 ,20,21684,16679714,52,0 ,20,17910,6718242,128,0 ,4,15006,426792,14,5 ,4,15006,426800,16,5 ,4,15006,426808,15,5 ,4,15006,426816,14,5 ,20,15518,951106,52,0 ,17,923,9864004,32,0 ,17,923,7766852,24,0 ,17,923,6718276,32,0 ,44,15152,3048260,24,0 ,44,15152,1999684,24,0 ,44,15152,3572548,96,0 ,45,15153,4621124,16,0 ,45,15153,5145412,24,0 ,45,15153,5669700,32,0 ,4,15006,426824,13,5 ,4,15006,426832,13,5 ,4,15006,426840,13,5 ,4,15006,426848,13,5 ,4,15006,426856,13,5 ,4,15006,426864,13,5 ,4,15006,426872,13,5 ,4,15006,426880,14,5 ,20,25800,27165570,220,0 ,17,923,8291204,40,0 ,44,15152,2524036,32,0 ,4,15006,426888,14,5 ,4,15006,426896,13,5 ,4,15006,426904,14,5 ,4,15006,426912,15,5 ,4,15006,426920,16,5 ,4,15006,426928,15,5 ,4,15006,426936,14,5 ,4,15006,426944,16,5 ,45,15153,4621252,24,0 ,44,15152,1475524,24,0 ,4,15006,426952,14,5 ,4,15006,426960,13,5 ,4,15006,426968,12,5 ,4,15006,426976,12,5 ,4,15006,426984,15,5 ,4,15006,426992,13,5 ,4,15006,427000,14,5 ,4,15006,427008,14,5 ,20,18343,7767042,348,0 ,45,15153,5145604,16,0 ,17,923,7767044,24,0 ,44,15152,3048452,24,0 ,44,15152,1999876,32,0 ,45,15153,4097028,40,0 ,4,15006,427016,14,5 ,4,15006,427024,14,5 ,4,15006,427032,14,5 ,4,15006,427040,14,5 ,4,15006,427048,14,5 ,4,15006,427056,14,5 ,4,15006,427064,14,5 ,4,15006,427072,13,5 ,20,20189,11961410,12,0 ,17,923,9864260,24,0 ,17,923,7242820,56,0 ,17,923,6718532,32,0 ,45,15153,5669956,16,0 ,17,923,8815684,48,0 ,17,923,9339972,24,0 ,4,15006,427080,15,5 ,4,15006,427088,14,5 ,4,15006,427096,16,5 ,4,15006,427104,15,5 ,4,15006,427112,16,5 ,4,15006,427120,13,5 ,4,15006,427128,13,5 ,4,15006,427136,13,5 ,45,15153,5145732,16,0 ,44,15152,2524292,32,0 ,44,15152,1475716,32,0 ,45,15153,4621444,16,0 ,4,15006,427144,13,5 ,4,15006,427152,13,5 ,4,15006,427160,14,5 ,4,15006,427168,14,5 ,20,20190,11961506,48,0 ,4,15006,427176,16,5 ,4,15006,427184,15,5 ,4,15006,427192,16,5 ,4,15006,427200,15,5 ,20,21685,16680130,52,0 ,20,16564,3572930,376,0 ,17,923,8291524,40,0 ,17,923,7767236,24,0 ,44,15152,3048644,24,0 ,45,15153,5670084,48,0 ,4,15006,427208,14,5 ,4,15006,427216,14,5 ,4,15006,427224,14,5 ,4,15006,427232,16,5 ,20,17475,5670114,200,0 ,20,15519,951522,12,0 ,4,15006,427240,14,5 ,4,15006,427248,14,5 ,4,15006,427256,16,5 ,4,15006,427264,13,5 ,17,923,9864452,16,0 ,44,15152,2000132,48,0 ,44,15152,951556,32,0 ,45,15153,4621572,48,0 ,45,15153,5145860,48,0 ,17,923,9340164,48,0 ,4,15006,427272,16,5 ,4,15006,427280,14,5 ,4,15006,427288,14,5 ,4,15006,427296,15,5 ,20,20385,13010210,12,0 ,4,15006,427304,14,5 ,4,15006,427312,15,5 ,4,15006,427320,15,5 ,4,15006,427328,14,5 ,20,15520,951618,84,0 ,45,15153,4097348,24,0 ,17,923,6718788,40,0 ,4,15006,427336,14,5 ,4,15006,427344,14,5 ,4,15006,427352,16,5 ,4,15006,427360,14,5 ,4,15006,427368,14,5 ,4,15006,427376,13,5 ,4,15006,427384,14,5 ,4,15006,427392,14,5 ,20,20386,13010306,84,0 ,20,18598,8291714,96,0 ,17,923,9864580,32,0 ,17,923,7767428,56,0 ,44,15152,3048836,24,0 ,44,15152,2524548,32,0 ,44,15152,1475972,128,0 ,4,15006,427400,16,5 ,4,15006,427408,15,5 ,4,15006,427416,16,5 ,4,15006,427424,14,5 ,20,23189,20350370,300,0 ,20,21453,16156066,292,0 ,4,15006,427432,13,5 ,4,15006,427440,14,5 ,4,15006,427448,13,5 ,4,15006,427456,13,5 ,17,923,8816068,40,0 ,4,15006,427464,13,5 ,4,15006,427472,13,5 ,4,15006,427480,13,5 ,4,15006,427488,13,5 ,4,15006,427496,13,5 ,4,15006,427504,14,5 ,4,15006,427512,15,5 ,4,15006,427520,14,5 ,17,923,8291844,40,0 ,17,923,7243268,40,0 ,44,15152,951812,88,0 ,45,15153,4097540,56,0 ,4,15006,427528,16,5 ,4,15006,427536,13,5 ,4,15006,427544,16,5 ,4,15006,427552,16,5 ,20,20191,11961890,60,0 ,4,15006,427560,16,5 ,4,15006,427568,14,5 ,4,15006,427576,14,5 ,4,15006,427584,13,5 ,45,15153,5670468,24,0 ,44,15152,3049028,24,0 ,44,15152,427588,32,0 ,44,15152,3573316,80,0 ,4,15006,427592,14,5 ,4,15006,427600,12,5 ,4,15006,427608,13,5 ,4,15006,427616,15,5 ,20,21686,16680546,240,0 ,4,15006,427624,14,5 ,4,15006,427632,14,5 ,4,15006,427640,15,5 ,4,15006,427648,14,5 ,20,24633,24020610,36,0 ,17,923,9864836,24,0 ,17,923,6719108,40,0 ,44,15152,2524804,32,0 ,44,15152,2000516,24,0 ,45,15153,4621956,48,0 ,45,15153,5146244,32,0 ,17,923,9340548,32,0 ,4,15006,427656,14,5 ,4,15006,427664,13,5 ,4,15006,427672,14,5 ,4,15006,427680,14,5 ,4,15006,427688,14,5 ,4,15006,427696,14,5 ,4,15006,427704,14,5 ,4,15006,427712,14,5 ,20,17665,6194882,12,0 ,4,15006,427720,14,5 ,4,15006,427728,14,5 ,4,15006,427736,14,5 ,4,15006,427744,15,5 ,20,25482,26117858,464,0 ,4,15006,427752,15,5 ,4,15006,427760,13,5 ,4,15006,427768,12,5 ,4,15006,427776,13,5 ,20,15760,1476354,348,0 ,17,923,8816388,40,0 ,44,15152,3049220,32,0 ,45,15153,5670660,24,0 ,4,15006,427784,13,5 ,4,15006,427792,14,5 ,4,15006,427800,12,5 ,4,15006,427808,14,5 ,20,17911,6719266,540,0 ,20,17666,6194978,276,0 ,4,15006,427816,13,5 ,4,15006,427824,15,5 ,4,15006,427832,14,5 ,4,15006,427840,15,5 ,17,923,9865028,48,0 ,17,923,7767876,24,0 ,17,923,7243588,24,0 ,44,15152,2000708,88,0 ,44,15152,427844,16,0 ,17,923,8292164,24,0 ,4,15006,427848,15,5 ,4,15006,427856,15,5 ,4,15006,427864,15,5 ,4,15006,427872,14,5 ,4,15006,427880,14,5 ,4,15006,427888,14,5 ,4,15006,427896,14,5 ,4,15006,427904,12,5 ,17,923,9340804,32,0 ,44,15152,2525060,32,0 ,45,15153,5146500,24,0 ,4,15006,427912,13,5 ,4,15006,427920,14,5 ,4,15006,427928,13,5 ,4,15006,427936,14,5 ,20,23842,21923746,140,0 ,20,24634,24020898,408,0 ,4,15006,427944,14,5 ,4,15006,427952,14,5 ,4,15006,427960,14,5 ,4,15006,427968,16,5 ,45,15153,5670852,16,0 ,17,923,6719428,32,0 ,44,15152,427972,16,0 ,45,15153,4097988,16,0 ,4,15006,427976,14,5 ,4,15006,427984,16,5 ,4,15006,427992,14,5 ,4,15006,428000,14,5 ,20,21084,15632354,168,0 ,20,15521,952290,268,0 ,4,15006,428008,14,5 ,4,15006,428016,16,5 ,4,15006,428024,14,5 ,4,15006,428032,16,5 ,20,20192,11962370,60,0 ,17,923,8292356,64,0 ,17,923,7768068,32,0 ,17,923,7243780,56,0 ,44,15152,3049476,24,0 ,45,15153,4622340,56,0 ,4,15006,428040,16,5 ,4,15006,428048,14,5 ,4,15006,428056,14,5 ,4,15006,428064,16,5 ,20,20387,13010978,440,0 ,4,15006,428072,16,5 ,4,15006,428080,14,5 ,4,15006,428088,14,5 ,4,15006,428096,13,5 ,17,923,8816708,24,0 ,44,15152,428100,16,0 ,45,15153,4098116,16,0 ,45,15153,5146692,24,0 ,45,15153,5670980,16,0 ,4,15006,428104,13,5 ,4,15006,428112,14,5 ,4,15006,428120,14,5 ,4,15006,428128,14,5 ,4,15006,428136,14,5 ,4,15006,428144,14,5 ,4,15006,428152,14,5 ,4,15006,428160,16,5 ,20,18599,8292482,192,0 ,20,17248,5146754,32,0 ,17,923,9341060,32,0 ,44,15152,2525316,24,0 ,4,15006,428168,14,5 ,4,15006,428176,14,5 ,4,15006,428184,14,5 ,4,15006,428192,14,5 ,4,15006,428200,14,5 ,4,15006,428208,14,5 ,4,15006,428216,13,5 ,4,15006,428224,14,5 ,17,923,9865412,40,0 ,17,923,6719684,32,0 ,44,15152,3049668,24,0 ,44,15152,428228,16,0 ,44,15152,952516,40,0 ,44,15152,3573956,240,0 ,45,15153,4098244,16,0 ,45,15153,5671108,24,0 ,4,15006,428232,13,5 ,4,15006,428240,14,5 ,4,15006,428248,13,5 ,4,15006,428256,13,5 ,20,24796,24545506,120,0 ,4,15006,428264,14,5 ,4,15006,428272,13,5 ,4,15006,428280,14,5 ,4,15006,428288,14,5 ,17,923,8816900,64,0 ,17,923,7768324,32,0 ,45,15153,5146884,32,0 ,4,15006,428296,14,5 ,4,15006,428304,14,5 ,4,15006,428312,14,5 ,4,15006,428320,14,5 ,4,15006,428328,14,5 ,4,15006,428336,14,5 ,4,15006,428344,12,5 ,4,15006,428352,14,5 ,45,15153,4098372,16,0 ,44,15152,2525508,24,0 ,44,15152,428356,24,0 ,4,15006,428360,14,5 ,4,15006,428368,14,5 ,4,15006,428376,14,5 ,4,15006,428384,14,5 ,4,15006,428392,14,5 ,4,15006,428400,14,5 ,4,15006,428408,14,5 ,4,15006,428416,16,5 ,20,17249,5147010,204,0 ,17,923,9341316,24,0 ,44,15152,3049860,32,0 ,44,15152,1476996,56,0 ,45,15153,5671300,24,0 ,4,15006,428424,15,5 ,4,15006,428432,14,5 ,4,15006,428440,14,5 ,4,15006,428448,14,5 ,4,15006,428456,14,5 ,4,15006,428464,13,5 ,4,15006,428472,13,5 ,4,15006,428480,14,5 ,20,24302,22972866,276,0 ,20,24098,22448578,244,0 ,45,15153,4622788,104,0 ,17,923,7244228,72,0 ,17,923,6719940,24,0 ,45,15153,4098500,24,0 ,4,15006,428488,14,5 ,4,15006,428496,14,5 ,4,15006,428504,14,5 ,4,15006,428512,14,5 ,20,20193,11962850,44,0 ,4,15006,428520,14,5 ,4,15006,428528,16,5 ,4,15006,428536,14,5 ,4,15006,428544,16,5 ,17,923,9865732,32,0 ,17,923,7768580,32,0 ,44,15152,2525700,24,0 ,44,15152,2001412,24,0 ,44,15152,428548,16,0 ,44,15152,952836,40,0 ,45,15153,5147140,16,0 ,17,923,8292868,32,0 ,4,15006,428552,14,5 ,4,15006,428560,14,5 ,4,15006,428568,14,5 ,4,15006,428576,14,5 ,4,15006,428584,16,5 ,4,15006,428592,16,5 ,4,15006,428600,14,5 ,4,15006,428608,14,5 ,17,923,9341508,32,0 ,45,15153,5671492,32,0 ,4,15006,428616,14,5 ,4,15006,428624,14,5 ,4,15006,428632,14,5 ,4,15006,428640,16,5 ,20,25801,27167330,632,0 ,4,15006,428648,14,5 ,4,15006,428656,14,5 ,4,15006,428664,14,5 ,4,15006,428672,14,5 ,45,15153,5147268,24,0 ,17,923,6720132,32,0 ,44,15152,3050116,24,0 ,44,15152,428676,24,0 ,45,15153,4098692,32,0 ,4,15006,428680,12,5 ,4,15006,428688,14,5 ,4,15006,428696,14,5 ,4,15006,428704,14,5 ,4,15006,428712,14,5 ,4,15006,428720,14,5 ,4,15006,428728,14,5 ,4,15006,428736,14,5 ,20,22191,18254530,224,0 ,44,15152,2001604,96,0 ,44,15152,2525892,24,0 ,4,15006,428744,14,5 ,4,15006,428752,14,5 ,4,15006,428760,14,5 ,4,15006,428768,14,5 ,20,18130,7244514,1956,0 ,4,15006,428776,14,5 ,4,15006,428784,14,5 ,4,15006,428792,14,5 ,4,15006,428800,14,5 ,17,923,9865988,32,0 ,17,923,7768836,32,0 ,17,923,8293124,32,0 ,17,923,8817412,32,0 ,4,15006,428808,14,5 ,4,15006,428816,14,5 ,4,15006,428824,16,5 ,4,15006,428832,14,5 ,20,17476,5671714,1320,0 ,4,15006,428840,15,5 ,4,15006,428848,14,5 ,4,15006,428856,14,5 ,4,15006,428864,14,5 ,20,20194,11963202,204,0 ,17,923,9341764,32,0 ,44,15152,3050308,32,0 ,44,15152,1477444,24,0 ,44,15152,428868,16,0 ,44,15152,953156,40,0 ,45,15153,5147460,24,0 ,45,15153,5671748,40,0 ,4,15006,428872,16,5 ,4,15006,428880,14,5 ,4,15006,428888,14,5 ,4,15006,428896,14,5 ,4,15006,428904,13,5 ,4,15006,428912,13,5 ,4,15006,428920,12,5 ,4,15006,428928,14,5 ,45,15153,4098948,32,0 ,17,923,6720388,32,0 ,44,15152,2526084,24,0 ,4,15006,428936,14,5 ,4,15006,428944,14,5 ,4,15006,428952,13,5 ,4,15006,428960,13,5 ,20,26041,27691938,348,0 ,4,15006,428968,14,5 ,4,15006,428976,16,5 ,4,15006,428984,14,5 ,4,15006,428992,14,5 ,44,15152,428996,64,0 ,4,15006,429000,14,5 ,4,15006,429008,12,5 ,4,15006,429016,16,5 ,4,15006,429024,14,5 ,4,15006,429032,14,5 ,4,15006,429040,13,5 ,4,15006,429048,13,5 ,4,15006,429056,13,5 ,20,23843,21924866,212,0 ,17,923,9866244,24,0 ,17,923,7769092,32,0 ,17,923,7244804,32,0 ,44,15152,1477636,32,0 ,45,15153,5147652,24,0 ,17,923,8293380,24,0 ,17,923,8817668,24,0 ,4,15006,429064,13,5 ,4,15006,429072,13,5 ,4,15006,429080,13,5 ,4,15006,429088,14,5 ,4,15006,429096,15,5 ,4,15006,429104,15,5 ,4,15006,429112,14,5 ,4,15006,429120,13,5 ,17,923,9342020,24,0 ,44,15152,3050564,24,0 ,44,15152,2526276,24,0 ,4,15006,429128,14,5 ,4,15006,429136,14,5 ,4,15006,429144,15,5 ,4,15006,429152,14,5 ,4,15006,429160,14,5 ,4,15006,429168,15,5 ,4,15006,429176,14,5 ,4,15006,429184,15,5 ,45,15153,5672068,24,0 ,17,923,6720644,32,0 ,44,15152,953476,40,0 ,45,15153,4099204,16,0 ,4,15006,429192,14,5 ,4,15006,429200,14,5 ,4,15006,429208,14,5 ,4,15006,429216,14,5 ,20,24797,24546466,76,0 ,4,15006,429224,14,5 ,4,15006,429232,14,5 ,4,15006,429240,16,5 ,4,15006,429248,15,5 ,17,923,9866436,48,0 ,45,15153,5147844,32,0 ,17,923,8293572,32,0 ,17,923,8817860,72,0 ,4,15006,429256,16,5 ,4,15006,429264,15,5 ,4,15006,429272,14,5 ,4,15006,429280,14,5 ,4,15006,429288,16,5 ,4,15006,429296,15,5 ,4,15006,429304,14,5 ,4,15006,429312,16,5 ,17,923,9342212,80,0 ,17,923,7769348,40,0 ,17,923,7245060,24,0 ,44,15152,3050756,24,0 ,44,15152,2526468,24,0 ,44,15152,1477892,32,0 ,45,15153,4099332,16,0 ,45,15153,4623620,808,0 ,4,15006,429320,15,5 ,4,15006,429328,14,5 ,4,15006,429336,16,5 ,4,15006,429344,15,5 ,20,21085,15633698,164,0 ,20,26351,28740898,1076,0 ,4,15006,429352,14,5 ,4,15006,429360,13,5 ,4,15006,429368,14,5 ,4,15006,429376,14,5 ,45,15153,5672260,16,0 ,4,15006,429384,14,5 ,4,15006,429392,14,5 ,4,15006,429400,14,5 ,4,15006,429408,16,5 ,4,15006,429416,14,5 ,4,15006,429424,14,5 ,4,15006,429432,14,5 ,4,15006,429440,16,5 ,20,23459,20876674,440,0 ,45,15153,4099460,56,0 ,17,923,6720900,24,0 ,4,15006,429448,15,5 ,4,15006,429456,14,5 ,4,15006,429464,14,5 ,4,15006,429472,16,5 ,4,15006,429480,16,5 ,4,15006,429488,14,5 ,4,15006,429496,16,5 ,4,15006,429504,16,5 ,17,923,8293828,32,0 ,17,923,7245252,32,0 ,44,15152,3050948,24,0 ,44,15152,2526660,24,0 ,44,15152,2002372,64,0 ,44,15152,429508,40,0 ,44,15152,953796,24,0 ,45,15153,5148100,32,0 ,45,15153,5672388,16,0 ,4,15006,429512,15,5 ,4,15006,429520,13,5 ,4,15006,429528,14,5 ,4,15006,429536,14,5 ,20,21687,16682466,12,0 ,4,15006,429544,16,5 ,4,15006,429552,14,5 ,4,15006,429560,16,5 ,4,15006,429568,14,5 ,44,15152,1478148,32,0 ,4,15006,429576,14,5 ,4,15006,429584,14,5 ,4,15006,429592,16,5 ,4,15006,429600,14,5 ,20,25067,25071138,188,0 ,4,15006,429608,15,5 ,4,15006,429616,16,5 ,4,15006,429624,14,5 ,4,15006,429632,14,5 ,20,21688,16682562,328,0 ,17,923,9866820,32,0 ,17,923,7769668,24,0 ,17,923,6721092,32,0 ,45,15153,5672516,24,0 ,4,15006,429640,14,5 ,4,15006,429648,14,5 ,4,15006,429656,14,5 ,4,15006,429664,14,5 ,4,15006,429672,16,5 ,4,15006,429680,14,5 ,4,15006,429688,13,5 ,4,15006,429696,14,5 ,20,18600,8294018,80,0 ,44,15152,953988,80,0 ,44,15152,3051140,32,0 ,44,15152,2526852,24,0 ,4,15006,429704,14,5 ,4,15006,429712,14,5 ,4,15006,429720,14,5 ,4,15006,429728,14,5 ,4,15006,429736,14,5 ,4,15006,429744,14,5 ,4,15006,429752,14,5 ,4,15006,429760,13,5 ,20,21454,16158402,12,0 ,20,19596,10391234,184,0 ,17,923,8294084,32,0 ,17,923,7245508,40,0 ,45,15153,5148356,32,0 ,4,15006,429768,15,5 ,4,15006,429776,14,5 ,4,15006,429784,14,5 ,4,15006,429792,14,5 ,20,18344,7769826,188,0 ,4,15006,429800,14,5 ,4,15006,429808,14,5 ,4,15006,429816,14,5 ,4,15006,429824,14,5 ,20,23190,20352770,300,0 ,20,24798,24547074,56,0 ,17,923,8818436,72,0 ,17,923,7769860,64,0 ,44,15152,1478404,32,0 ,44,15152,429828,24,0 ,45,15153,5672708,88,0 ,4,15006,429832,14,5 ,4,15006,429840,16,5 ,4,15006,429848,12,5 ,4,15006,429856,14,5 ,20,21455,16158498,192,0 ,20,19838,10915618,128,0 ,4,15006,429864,15,5 ,4,15006,429872,16,5 ,4,15006,429880,14,5 ,4,15006,429888,14,5 ,17,923,9867076,24,0 ,17,923,6721348,32,0 ,44,15152,2527044,280,0 ,45,15153,4099908,24,0 ,4,15006,429896,14,5 ,4,15006,429904,14,5 ,4,15006,429912,13,5 ,4,15006,429920,13,5 ,20,26503,29265762,112,0 ,4,15006,429928,16,5 ,4,15006,429936,14,5 ,4,15006,429944,14,5 ,4,15006,429952,14,5 ,17,923,9342852,40,0 ,44,15152,3051396,24,0 ,4,15006,429960,13,5 ,4,15006,429968,13,5 ,4,15006,429976,13,5 ,4,15006,429984,13,5 ,4,15006,429992,13,5 ,4,15006,430000,13,5 ,4,15006,430008,14,5 ,4,15006,430016,13,5 ,20,17667,6197186,12,0 ,17,923,8294340,32,0 ,44,15152,2002884,32,0 ,44,15152,430020,16,0 ,45,15153,5148612,48,0 ,4,15006,430024,14,5 ,4,15006,430032,13,5 ,4,15006,430040,13,5 ,4,15006,430048,14,5 ,20,17250,5148642,140,0 ,4,15006,430056,13,5 ,4,15006,430064,14,5 ,4,15006,430072,13,5 ,4,15006,430080,13,5 ,17,923,9867268,64,0 ,17,923,7245828,40,0 ,44,15152,1478660,32,0 ,45,15153,4100100,64,0 ,4,15006,430088,13,5 ,4,15006,430096,14,5 ,4,15006,430104,14,5 ,4,15006,430112,13,5 ,20,17668,6197282,12,0 ,4,15006,430120,13,5 ,4,15006,430128,12,5 ,4,15006,430136,13,5 ,4,15006,430144,13,5 ,20,15522,954434,56,0 ,44,15152,3575876,16,0 ,17,923,6721604,32,0 ,44,15152,3051588,24,0 ,44,15152,430148,24,0 ,4,15006,430152,15,5 ,4,15006,430160,14,5 ,4,15006,430168,14,5 ,4,15006,430176,14,5 ,4,15006,430184,16,5 ,4,15006,430192,14,5 ,4,15006,430200,14,5 ,4,15006,430208,13,5 ,20,17669,6197378,12,0 ,20,16565,3575938,408,0 ,4,15006,430216,16,5 ,4,15006,430224,15,5 ,4,15006,430232,14,5 ,4,15006,430240,16,5 ,4,15006,430248,13,5 ,4,15006,430256,14,5 ,4,15006,430264,14,5 ,4,15006,430272,13,5 ,20,24799,24547522,56,0 ,17,923,9343172,24,0 ,44,15152,2003140,24,0 ,44,15152,3576004,32,0 ,17,923,8294596,24,0 ,4,15006,430280,16,5 ,4,15006,430288,15,5 ,4,15006,430296,14,5 ,4,15006,430304,16,5 ,20,17670,6197474,12,0 ,4,15006,430312,16,5 ,4,15006,430320,15,5 ,4,15006,430328,13,5 ,4,15006,430336,15,5 ,20,18601,8294658,276,0 ,44,15152,954628,32,0 ,17,923,7770372,32,0 ,44,15152,3051780,24,0 ,44,15152,1478916,64,0 ,44,15152,430340,16,0 ,4,15006,430344,14,5 ,4,15006,430352,14,5 ,4,15006,430360,15,5 ,4,15006,430368,16,5 ,20,22896,19829026,120,0 ,20,19053,9343266,48,0 ,4,15006,430376,14,5 ,4,15006,430384,14,5 ,4,15006,430392,14,5 ,4,15006,430400,16,5 ,20,17671,6197570,188,0 ,17,923,8819012,40,0 ,17,923,7246148,48,0 ,17,923,6721860,32,0 ,45,15153,5148996,24,0 ,4,15006,430408,14,5 ,4,15006,430416,15,5 ,4,15006,430424,13,5 ,4,15006,430432,13,5 ,20,24099,22450530,120,0 ,4,15006,430440,15,5 ,4,15006,430448,14,5 ,4,15006,430456,14,5 ,4,15006,430464,14,5 ,17,923,9343364,24,0 ,44,15152,2003332,24,0 ,44,15152,430468,16,0 ,17,923,8294788,24,0 ,4,15006,430472,14,5 ,4,15006,430480,13,5 ,4,15006,430488,14,5 ,4,15006,430496,14,5 ,20,20195,11964834,240,0 ,4,15006,430504,16,5 ,4,15006,430512,15,5 ,4,15006,430520,15,5 ,4,15006,430528,15,5 ,20,22192,18256322,148,0 ,45,15153,5673412,56,0 ,44,15152,3051972,24,0 ,44,15152,3576260,72,0 ,4,15006,430536,14,5 ,4,15006,430544,15,5 ,4,15006,430552,14,5 ,4,15006,430560,14,5 ,20,15761,1479138,1628,0 ,20,26213,28217826,544,0 ,4,15006,430568,14,5 ,4,15006,430576,14,5 ,4,15006,430584,15,5 ,4,15006,430592,14,5 ,20,15523,954882,200,0 ,17,923,9867780,32,0 ,17,923,7770628,40,0 ,44,15152,430596,40,0 ,44,15152,954884,40,0 ,45,15153,4100612,24,0 ,45,15153,5149188,16,0 ,4,15006,430600,14,5 ,4,15006,430608,15,5 ,4,15006,430616,14,5 ,4,15006,430624,14,5 ,20,16216,3052066,524,0 ,4,15006,430632,15,5 ,4,15006,430640,14,5 ,4,15006,430648,14,5 ,4,15006,430656,14,5 ,20,21086,15635010,132,0 ,17,923,9343556,40,0 ,17,923,6722116,32,0 ,44,15152,2003524,24,0 ,17,923,8294980,24,0 ,4,15006,430664,14,5 ,4,15006,430672,14,5 ,4,15006,430680,14,5 ,4,15006,430688,16,5 ,20,24303,22975074,476,0 ,4,15006,430696,14,5 ,4,15006,430704,14,5 ,4,15006,430712,14,5 ,4,15006,430720,16,5 ,20,24800,24547970,96,0 ,17,923,8819332,32,0 ,44,15152,3052164,24,0 ,45,15153,5149316,24,0 ,4,15006,430728,15,5 ,4,15006,430736,14,5 ,4,15006,430744,16,5 ,4,15006,430752,14,5 ,20,23844,21926562,116,0 ,20,19054,9343650,44,0 ,4,15006,430760,13,5 ,4,15006,430768,15,5 ,4,15006,430776,14,5 ,4,15006,430784,13,5 ,45,15153,4100804,16,0 ,17,923,7246532,40,0 ,4,15006,430792,13,5 ,4,15006,430800,12,5 ,4,15006,430808,13,5 ,4,15006,430816,14,5 ,20,26504,29266658,48,0 ,4,15006,430824,13,5 ,4,15006,430832,14,5 ,4,15006,430840,13,5 ,4,15006,430848,12,5 ,17,923,9868036,32,0 ,44,15152,2003716,32,0 ,44,15152,1479428,24,0 ,17,923,8295172,24,0 ,4,15006,430856,13,5 ,4,15006,430864,12,5 ,4,15006,430872,12,5 ,4,15006,430880,12,5 ,20,19839,10916642,492,0 ,4,15006,430888,12,5 ,4,15006,430896,13,5 ,4,15006,430904,13,5 ,4,15006,430912,13,5 ,45,15153,5149508,32,0 ,17,923,7770948,24,0 ,17,923,6722372,32,0 ,44,15152,3052356,64,0 ,44,15152,430916,24,0 ,44,15152,955204,24,0 ,45,15153,4100932,16,0 ,4,15006,430920,13,5 ,4,15006,430928,13,5 ,4,15006,430936,13,5 ,4,15006,430944,13,5 ,4,15006,430952,13,5 ,4,15006,430960,13,5 ,4,15006,430968,13,5 ,4,15006,430976,13,5 ,17,923,9343876,32,0 ,45,15153,5673860,16,0 ,17,923,8819588,48,0 ,4,15006,430984,13,5 ,4,15006,430992,13,5 ,4,15006,431000,13,5 ,4,15006,431008,13,5 ,4,15006,431016,13,5 ,4,15006,431024,13,5 ,4,15006,431032,13,5 ,4,15006,431040,13,5 ,17,923,8295364,24,0 ,44,15152,1479620,24,0 ,45,15153,4101060,24,0 ,4,15006,431048,15,5 ,4,15006,431056,14,5 ,4,15006,431064,15,5 ,4,15006,431072,14,5 ,4,15006,431080,14,5 ,4,15006,431088,14,5 ,4,15006,431096,14,5 ,4,15006,431104,14,5 ,20,20818,14062594,160,0 ,20,25068,25072642,176,0 ,20,19055,9344002,12,0 ,17,923,9868292,24,0 ,17,923,7771140,64,0 ,17,923,7246852,24,0 ,44,15152,2003972,152,0 ,44,15152,431108,16,0 ,44,15152,955396,56,0 ,44,15152,3576836,32,0 ,45,15153,5673988,16,0 ,4,15006,431112,13,5 ,4,15006,431120,13,5 ,4,15006,431128,12,5 ,4,15006,431136,13,5 ,4,15006,431144,13,5 ,4,15006,431152,13,5 ,4,15006,431160,13,5 ,4,15006,431168,13,5 ,20,17251,5149762,12,0 ,45,15153,5149764,24,0 ,17,923,6722628,24,0 ,4,15006,431176,13,5 ,4,15006,431184,12,5 ,4,15006,431192,14,5 ,4,15006,431200,13,5 ,20,19056,9344098,52,0 ,20,26505,29267042,64,0 ,20,24635,24024162,188,0 ,4,15006,431208,12,5 ,4,15006,431216,14,5 ,4,15006,431224,14,5 ,4,15006,431232,14,5 ,20,19597,10392706,12,0 ,20,16859,4101250,668,0 ,17,923,9344132,24,0 ,44,15152,1479812,24,0 ,44,15152,431236,24,0 ,45,15153,4101252,32,0 ,45,15153,5674116,88,0 ,17,923,8295556,24,0 ,4,15006,431240,13,5 ,4,15006,431248,13,5 ,4,15006,431256,12,5 ,4,15006,431264,13,5 ,20,17252,5149858,48,0 ,4,15006,431272,14,5 ,4,15006,431280,14,5 ,4,15006,431288,14,5 ,4,15006,431296,14,5 ,20,18345,7771330,204,0 ,17,923,9868484,32,0 ,17,923,7247044,56,0 ,4,15006,431304,13,5 ,4,15006,431312,13,5 ,4,15006,431320,12,5 ,4,15006,431328,13,5 ,20,22897,19829986,132,0 ,20,19598,10392802,12,0 ,4,15006,431336,13,5 ,4,15006,431344,13,5 ,4,15006,431352,12,5 ,4,15006,431360,13,5 ,17,923,8819972,32,0 ,17,923,6722820,24,0 ,44,15152,3577092,32,0 ,45,15153,5149956,24,0 ,4,15006,431368,13,5 ,4,15006,431376,13,5 ,4,15006,431384,13,5 ,4,15006,431392,13,5 ,20,24100,22451490,92,0 ,20,21456,16160034,104,0 ,4,15006,431400,13,5 ,4,15006,431408,12,5 ,4,15006,431416,13,5 ,4,15006,431424,13,5 ,20,21910,17208642,1316,0 ,20,19599,10392898,12,0 ,17,923,9344324,48,0 ,44,15152,3052868,56,0 ,44,15152,1480004,24,0 ,44,15152,431428,16,0 ,17,923,8295748,40,0 ,4,15006,431432,13,5 ,4,15006,431440,13,5 ,4,15006,431448,13,5 ,4,15006,431456,14,5 ,20,25483,26121570,17092,0 ,4,15006,431464,13,5 ,4,15006,431472,13,5 ,4,15006,431480,13,5 ,4,15006,431488,13,5 ,20,24801,24548738,752,0 ,45,15153,4101508,40,0 ,4,15006,431496,12,5 ,4,15006,431504,13,5 ,4,15006,431512,13,5 ,4,15006,431520,13,5 ,20,19600,10392994,12,0 ,4,15006,431528,13,5 ,4,15006,431536,12,5 ,4,15006,431544,13,5 ,4,15006,431552,13,5 ,17,923,9868740,40,0 ,17,923,6723012,24,0 ,44,15152,431556,16,0 ,44,15152,955844,24,0 ,45,15153,5150148,32,0 ,4,15006,431560,13,5 ,4,15006,431568,13,5 ,4,15006,431576,13,5 ,4,15006,431584,13,5 ,20,20388,13014498,160,0 ,4,15006,431592,13,5 ,4,15006,431600,13,5 ,4,15006,431608,13,5 ,4,15006,431616,13,5 ,20,19601,10393090,12,0 ,20,19057,9344514,104,0 ,17,923,8820228,64,0 ,17,923,7771652,24,0 ,44,15152,1480196,64,0 ,44,15152,3577348,32,0 ,4,15006,431624,14,5 ,4,15006,431632,13,5 ,4,15006,431640,13,5 ,4,15006,431648,13,5 ,20,17253,5150242,368,0 ,4,15006,431656,14,5 ,4,15006,431664,14,5 ,4,15006,431672,13,5 ,4,15006,431680,13,5 ,20,23845,21927490,116,0 ,44,15152,431684,16,0 ,4,15006,431688,13,5 ,4,15006,431696,13,5 ,4,15006,431704,13,5 ,4,15006,431712,13,5 ,20,22193,18257506,248,0 ,20,26506,29267554,232,0 ,20,19602,10393186,12,0 ,20,21087,15636066,132,0 ,4,15006,431720,13,5 ,4,15006,431728,13,5 ,4,15006,431736,13,5 ,4,15006,431744,13,5 ,20,26042,27694722,348,0 ,17,923,8296068,24,0 ,17,923,7247492,32,0 ,17,923,6723204,48,0 ,44,15152,956036,32,0 ,4,15006,431752,13,5 ,4,15006,431760,13,5 ,4,15006,431768,13,5 ,4,15006,431776,13,5 ,4,15006,431784,13,5 ,4,15006,431792,13,5 ,4,15006,431800,13,5 ,4,15006,431808,13,5 ,20,19603,10393282,640,0 ,17,923,9344708,24,0 ,17,923,7771844,32,0 ,44,15152,431812,24,0 ,45,15153,4101828,96,0 ,45,15153,5150404,32,0 ,4,15006,431816,13,5 ,4,15006,431824,13,5 ,4,15006,431832,13,5 ,4,15006,431840,13,5 ,4,15006,431848,13,5 ,4,15006,431856,13,5 ,4,15006,431864,13,5 ,4,15006,431872,13,5 ,17,923,9869060,40,0 ,44,15152,3053316,24,0 ,44,15152,3577604,32,0 ,4,15006,431880,13,5 ,4,15006,431888,13,5 ,4,15006,431896,13,5 ,4,15006,431904,13,5 ,20,17672,6199074,128,0 ,4,15006,431912,13,5 ,4,15006,431920,13,5 ,4,15006,431928,13,5 ,4,15006,431936,13,5 ,17,923,8296260,24,0 ,45,15153,5674820,24,0 ,4,15006,431944,13,5 ,4,15006,431952,13,5 ,4,15006,431960,13,5 ,4,15006,431968,13,5 ,4,15006,431976,13,5 ,4,15006,431984,13,5 ,4,15006,431992,13,5 ,4,15006,432000,13,5 ,17,923,9344900,32,0 ,17,923,7247748,24,0 ,44,15152,432004,16,0 ,44,15152,956292,48,0 ,4,15006,432008,13,5 ,4,15006,432016,13,5 ,4,15006,432024,13,5 ,4,15006,432032,13,5 ,4,15006,432040,13,5 ,4,15006,432048,13,5 ,4,15006,432056,13,5 ,4,15006,432064,13,5 ,45,15153,5150660,16,0 ,17,923,7772100,32,0 ,44,15152,3053508,24,0 ,4,15006,432072,13,5 ,4,15006,432080,13,5 ,4,15006,432088,13,5 ,4,15006,432096,13,5 ,4,15006,432104,13,5 ,4,15006,432112,13,5 ,4,15006,432120,13,5 ,4,15006,432128,13,5 ,20,24101,22452226,104,0 ,20,17912,6723586,80,0 ,17,923,8820740,24,0 ,17,923,6723588,40,0 ,44,15152,2529284,96,0 ,44,15152,1480708,80,0 ,44,15152,432132,144,0 ,44,15152,3577860,32,0 ,45,15153,5675012,24,0 ,17,923,8296452,24,0 ,4,15006,432136,13,5 ,4,15006,432144,13,5 ,4,15006,432152,13,5 ,4,15006,432160,13,5 ,4,15006,432168,13,5 ,4,15006,432176,13,5 ,4,15006,432184,13,5 ,4,15006,432192,13,5 ,20,15524,956482,132,0 ,17,923,9869380,40,0 ,17,923,7247940,56,0 ,45,15153,5150788,56,0 ,4,15006,432200,13,5 ,4,15006,432208,13,5 ,4,15006,432216,13,5 ,4,15006,432224,13,5 ,20,23191,20355170,100,0 ,20,21457,16160866,256,0 ,4,15006,432232,13,5 ,4,15006,432240,13,5 ,4,15006,432248,13,5 ,4,15006,432256,13,5 ,20,23635,21403778,176,0 ,20,21689,16685186,96,0 ,17,923,9345156,24,0 ,44,15152,3053700,32,0 ,4,15006,432264,13,5 ,4,15006,432272,13,5 ,4,15006,432280,13,5 ,4,15006,432288,13,5 ,4,15006,432296,13,5 ,4,15006,432304,13,5 ,4,15006,432312,13,5 ,4,15006,432320,13,5 ,17,923,8820932,64,0 ,17,923,7772356,32,0 ,44,15152,2005188,32,0 ,45,15153,5675204,24,0 ,17,923,8296644,24,0 ,4,15006,432328,13,5 ,4,15006,432336,13,5 ,4,15006,432344,13,5 ,4,15006,432352,13,5 ,4,15006,432360,13,5 ,4,15006,432368,13,5 ,4,15006,432376,13,5 ,4,15006,432384,13,5 ,20,22898,19831042,156,0 ,20,20819,14063874,12,0 ,20,22650,19306754,60,0 ,44,15152,3578116,32,0 ,44,15152,956676,24,0 ,4,15006,432392,12,5 ,4,15006,432400,13,5 ,4,15006,432408,13,5 ,4,15006,432416,13,5 ,20,20196,11966754,672,0 ,4,15006,432424,13,5 ,4,15006,432432,12,5 ,4,15006,432440,13,5 ,4,15006,432448,14,5 ,20,19058,9345346,160,0 ,17,923,9345348,48,0 ,17,923,6723908,40,0 ,4,15006,432456,13,5 ,4,15006,432464,13,5 ,4,15006,432472,13,5 ,4,15006,432480,12,5 ,20,20820,14063970,240,0 ,4,15006,432488,13,5 ,4,15006,432496,13,5 ,4,15006,432504,13,5 ,4,15006,432512,13,5 ,20,25069,25074050,572,0 ,17,923,9869700,40,0 ,44,15152,3053956,24,0 ,45,15153,5675396,24,0 ,17,923,8296836,24,0 ,4,15006,432520,13,5 ,4,15006,432528,13,5 ,4,15006,432536,13,5 ,4,15006,432544,13,5 ,20,18602,8296866,644,0 ,4,15006,432552,13,5 ,4,15006,432560,13,5 ,4,15006,432568,13,5 ,4,15006,432576,13,5 ,45,15153,4102596,24,0 ,17,923,7772612,24,0 ,44,15152,2005444,32,0 ,44,15152,956868,40,0 ,4,15006,432584,14,5 ,4,15006,432592,13,5 ,4,15006,432600,13,5 ,4,15006,432608,13,5 ,20,23846,21928418,176,0 ,4,15006,432616,13,5 ,4,15006,432624,13,5 ,4,15006,432632,13,5 ,4,15006,432640,13,5 ,45,15153,5151236,16,0 ,17,923,7248388,40,0 ,44,15152,3578372,32,0 ,4,15006,432648,13,5 ,4,15006,432656,13,5 ,4,15006,432664,12,5 ,4,15006,432672,13,5 ,4,15006,432680,13,5 ,4,15006,432688,13,5 ,4,15006,432696,13,5 ,4,15006,432704,13,5 ,20,24636,24025666,276,0 ,17,923,8297028,40,0 ,44,15152,3054148,56,0 ,45,15153,5675588,88,0 ,4,15006,432712,13,5 ,4,15006,432720,13,5 ,4,15006,432728,13,5 ,4,15006,432736,13,5 ,4,15006,432744,13,5 ,4,15006,432752,13,5 ,4,15006,432760,13,5 ,4,15006,432768,13,5 ,20,21088,15637122,132,0 ,20,17913,6724226,384,0 ,45,15153,5151364,24,0 ,17,923,7772804,32,0 ,17,923,6724228,40,0 ,44,15152,1481348,320,0 ,45,15153,4102788,16,0 ,4,15006,432776,13,5 ,4,15006,432784,13,5 ,4,15006,432792,15,5 ,4,15006,432800,13,5 ,20,16131,2529954,180,0 ,4,15006,432808,12,5 ,4,15006,432816,13,5 ,4,15006,432824,13,5 ,4,15006,432832,14,5 ,20,20644,13540034,1168,0 ,17,923,9870020,16,0 ,44,15152,2005700,32,0 ,17,923,8821444,32,0 ,17,923,9345732,32,0 ,4,15006,432840,14,5 ,4,15006,432848,14,5 ,4,15006,432856,13,5 ,4,15006,432864,13,5 ,20,22651,19307234,56,0 ,20,20389,13015778,328,0 ,4,15006,432872,13,5 ,4,15006,432880,13,5 ,4,15006,432888,15,5 ,4,15006,432896,14,5 ,45,15153,4102916,16,0 ,44,15152,2530052,48,0 ,44,15152,957188,40,0 ,44,15152,3578628,32,0 ,4,15006,432904,14,5 ,4,15006,432912,13,5 ,4,15006,432920,14,5 ,4,15006,432928,14,5 ,20,18346,7772962,356,0 ,20,17673,6200098,340,0 ,4,15006,432936,14,5 ,4,15006,432944,13,5 ,4,15006,432952,14,5 ,4,15006,432960,12,5 ,20,24102,22453058,200,0 ,20,23460,20880194,264,0 ,17,923,9870148,16,0 ,17,923,7248708,40,0 ,45,15153,5151556,16,0 ,4,15006,432968,13,5 ,4,15006,432976,13,5 ,4,15006,432984,13,5 ,4,15006,432992,16,5 ,4,15006,433000,14,5 ,4,15006,433008,14,5 ,4,15006,433016,13,5 ,4,15006,433024,12,5 ,20,23192,20355970,164,0 ,20,21690,16685954,452,0 ,17,923,8297348,24,0 ,17,923,7773060,32,0 ,45,15153,4103044,16,0 ,4,15006,433032,12,5 ,4,15006,433040,12,5 ,4,15006,433048,16,5 ,4,15006,433056,14,5 ,4,15006,433064,15,5 ,4,15006,433072,16,5 ,4,15006,433080,14,5 ,4,15006,433088,13,5 ,17,923,9870276,40,0 ,17,923,6724548,24,0 ,44,15152,2005956,24,0 ,45,15153,5151684,16,0 ,17,923,8821700,32,0 ,17,923,9345988,24,0 ,4,15006,433096,13,5 ,4,15006,433104,13,5 ,4,15006,433112,14,5 ,4,15006,433120,14,5 ,4,15006,433128,14,5 ,4,15006,433136,14,5 ,4,15006,433144,14,5 ,4,15006,433152,14,5 ,45,15153,4103172,16,0 ,44,15152,3054596,64,0 ,44,15152,3578884,24,0 ,4,15006,433160,14,5 ,4,15006,433168,12,5 ,4,15006,433176,14,5 ,4,15006,433184,14,5 ,4,15006,433192,14,5 ,4,15006,433200,14,5 ,4,15006,433208,14,5 ,4,15006,433216,14,5 ,17,923,8297540,24,0 ,44,15152,957508,48,0 ,45,15153,5151812,24,0 ,4,15006,433224,14,5 ,4,15006,433232,14,5 ,4,15006,433240,14,5 ,4,15006,433248,14,5 ,20,15525,957538,1220,0 ,4,15006,433256,14,5 ,4,15006,433264,14,5 ,4,15006,433272,14,5 ,4,15006,433280,12,5 ,17,923,9346180,24,0 ,17,923,7773316,24,0 ,17,923,7249028,48,0 ,17,923,6724740,24,0 ,44,15152,2530436,56,0 ,44,15152,2006148,88,0 ,44,15152,433284,24,0 ,45,15153,4103300,16,0 ,4,15006,433288,14,5 ,4,15006,433296,14,5 ,4,15006,433304,14,5 ,4,15006,433312,14,5 ,20,22652,19307682,348,0 ,4,15006,433320,14,5 ,4,15006,433328,14,5 ,4,15006,433336,14,5 ,4,15006,433344,14,5 ,17,923,8821956,48,0 ,44,15152,3579076,32,0 ,4,15006,433352,14,5 ,4,15006,433360,14,5 ,4,15006,433368,14,5 ,4,15006,433376,14,5 ,4,15006,433384,14,5 ,4,15006,433392,12,5 ,4,15006,433400,14,5 ,4,15006,433408,14,5 ,17,923,9870596,16,0 ,45,15153,4103428,16,0 ,45,15153,5152004,24,0 ,45,15153,5676292,24,0 ,17,923,8297732,24,0 ,4,15006,433416,14,5 ,4,15006,433424,14,5 ,4,15006,433432,14,5 ,4,15006,433440,14,5 ,4,15006,433448,14,5 ,4,15006,433456,14,5 ,4,15006,433464,14,5 ,4,15006,433472,14,5 ,20,16566,3579202,224,0 ,17,923,9346372,24,0 ,17,923,7773508,72,0 ,17,923,6724932,32,0 ,44,15152,433476,32,0 ,4,15006,433480,13,5 ,4,15006,433488,13,5 ,4,15006,433496,13,5 ,4,15006,433504,13,5 ,4,15006,433512,13,5 ,4,15006,433520,13,5 ,4,15006,433528,14,5 ,4,15006,433536,14,5 ,17,923,9870724,24,0 ,45,15153,4103556,24,0 ,4,15006,433544,14,5 ,4,15006,433552,14,5 ,4,15006,433560,14,5 ,4,15006,433568,14,5 ,20,26507,29269410,224,0 ,4,15006,433576,14,5 ,4,15006,433584,14,5 ,4,15006,433592,12,5 ,4,15006,433600,14,5 ,17,923,8297924,32,0 ,44,15152,957892,24,0 ,44,15152,3579332,32,0 ,45,15153,5152196,24,0 ,45,15153,5676484,80,0 ,4,15006,433608,14,5 ,4,15006,433616,14,5 ,4,15006,433624,14,5 ,4,15006,433632,14,5 ,20,22899,19832290,132,0 ,20,18834,8822242,1008,0 ,4,15006,433640,14,5 ,4,15006,433648,14,5 ,4,15006,433656,14,5 ,4,15006,433664,14,5 ,20,23636,21405186,72,0 ,17,923,9346564,32,0 ,17,923,7249412,40,0 ,44,15152,3055108,32,0 ,4,15006,433672,14,5 ,4,15006,433680,14,5 ,4,15006,433688,14,5 ,4,15006,433696,14,5 ,20,22194,18259490,172,0 ,20,25802,27172386,432,0 ,4,15006,433704,14,5 ,4,15006,433712,14,5 ,4,15006,433720,14,5 ,4,15006,433728,14,5 ,20,19059,9346626,60,0 ,17,923,9870916,32,0 ,17,923,6725188,32,0 ,44,15152,2530884,24,0 ,44,15152,433732,24,0 ,45,15153,4103748,24,0 ,17,923,8822340,32,0 ,4,15006,433736,12,5 ,4,15006,433744,14,5 ,4,15006,433752,14,5 ,4,15006,433760,14,5 ,4,15006,433768,12,5 ,4,15006,433776,14,5 ,4,15006,433784,14,5 ,4,15006,433792,14,5 ,45,15153,5152388,16,0 ,44,15152,958084,32,0 ,4,15006,433800,14,5 ,4,15006,433808,14,5 ,4,15006,433816,14,5 ,4,15006,433824,14,5 ,20,21089,15638178,132,0 ,4,15006,433832,15,5 ,4,15006,433840,14,5 ,4,15006,433848,14,5 ,4,15006,433856,14,5 ,17,923,8298180,24,0 ,44,15152,3579588,72,0 ,4,15006,433864,12,5 ,4,15006,433872,16,5 ,4,15006,433880,14,5 ,4,15006,433888,14,5 ,4,15006,433896,15,5 ,4,15006,433904,14,5 ,4,15006,433912,14,5 ,4,15006,433920,14,5 ,17,923,9346820,24,0 ,44,15152,3055364,24,0 ,44,15152,2531076,48,0 ,44,15152,433924,24,0 ,45,15153,4103940,24,0 ,45,15153,5152516,16,0 ,4,15006,433928,14,5 ,4,15006,433936,15,5 ,4,15006,433944,14,5 ,4,15006,433952,15,5 ,4,15006,433960,14,5 ,4,15006,433968,14,5 ,4,15006,433976,14,5 ,4,15006,433984,16,5 ,17,923,9871172,24,0 ,17,923,7249732,40,0 ,17,923,6725444,32,0 ,44,15152,2006852,24,0 ,17,923,8822596,64,0 ,4,15006,433992,15,5 ,4,15006,434000,16,5 ,4,15006,434008,14,5 ,4,15006,434016,13,5 ,20,23847,21929826,116,0 ,4,15006,434024,16,5 ,4,15006,434032,13,5 ,4,15006,434040,16,5 ,4,15006,434048,14,5 ,17,923,8298372,24,0 ,17,923,7774084,32,0 ,44,15152,958340,24,0 ,45,15153,5152644,24,0 ,4,15006,434056,14,5 ,4,15006,434064,15,5 ,4,15006,434072,13,5 ,4,15006,434080,13,5 ,4,15006,434088,12,5 ,4,15006,434096,13,5 ,4,15006,434104,13,5 ,4,15006,434112,14,5 ,17,923,9347012,32,0 ,44,15152,3055556,24,0 ,44,15152,434116,32,0 ,45,15153,4104132,32,0 ,4,15006,434120,13,5 ,4,15006,434128,13,5 ,4,15006,434136,13,5 ,4,15006,434144,13,5 ,4,15006,434152,14,5 ,4,15006,434160,14,5 ,4,15006,434168,14,5 ,4,15006,434176,15,5 ,17,923,9871364,24,0 ,44,15152,2007044,24,0 ,4,15006,434184,14,5 ,4,15006,434192,13,5 ,4,15006,434200,14,5 ,4,15006,434208,14,5 ,20,19060,9347106,104,0 ,4,15006,434216,13,5 ,4,15006,434224,15,5 ,4,15006,434232,13,5 ,4,15006,434240,14,5 ,20,23637,21405762,160,0 ,20,16132,2531394,1772,0 ,17,923,8298564,40,0 ,17,923,6725700,32,0 ,44,15152,958532,32,0 ,45,15153,5152836,16,0 ,45,15153,5677124,16,0 ,4,15006,434248,14,5 ,4,15006,434256,14,5 ,4,15006,434264,15,5 ,4,15006,434272,15,5 ,20,21458,16162914,580,0 ,4,15006,434280,14,5 ,4,15006,434288,14,5 ,4,15006,434296,13,5 ,4,15006,434304,13,5 ,44,15152,2531460,40,0 ,17,923,7774340,40,0 ,17,923,7250052,24,0 ,44,15152,3055748,40,0 ,4,15006,434312,14,5 ,4,15006,434320,14,5 ,4,15006,434328,14,5 ,4,15006,434336,14,5 ,20,23193,20357282,76,0 ,4,15006,434344,14,5 ,4,15006,434352,13,5 ,4,15006,434360,12,5 ,4,15006,434368,13,5 ,17,923,9871556,32,0 ,44,15152,2007236,48,0 ,44,15152,434372,24,0 ,45,15153,4104388,16,0 ,45,15153,5152964,24,0 ,45,15153,5677252,144,0 ,17,923,9347268,24,0 ,4,15006,434376,14,5 ,4,15006,434384,14,5 ,4,15006,434392,14,5 ,4,15006,434400,13,5 ,20,20821,14065890,12,0 ,4,15006,434408,16,5 ,4,15006,434416,14,5 ,4,15006,434424,16,5 ,4,15006,434432,14,5 ,44,15152,3580164,40,0 ,4,15006,434440,14,5 ,4,15006,434448,14,5 ,4,15006,434456,14,5 ,4,15006,434464,14,5 ,4,15006,434472,14,5 ,4,15006,434480,13,5 ,4,15006,434488,13,5 ,4,15006,434496,14,5 ,20,24304,22978882,672,0 ,20,20822,14065986,356,0 ,17,923,8823108,24,0 ,17,923,7250244,24,0 ,17,923,6725956,24,0 ,44,15152,958788,24,0 ,45,15153,4104516,24,0 ,4,15006,434504,14,5 ,4,15006,434512,14,5 ,4,15006,434520,14,5 ,4,15006,434528,14,5 ,20,26043,27697506,428,0 ,4,15006,434536,14,5 ,4,15006,434544,14,5 ,4,15006,434552,14,5 ,4,15006,434560,14,5 ,20,24103,22454658,688,0 ,17,923,9347460,24,0 ,44,15152,434564,24,0 ,45,15153,5153156,16,0 ,17,923,8298884,40,0 ,4,15006,434568,14,5 ,4,15006,434576,14,5 ,4,15006,434584,14,5 ,4,15006,434592,14,5 ,20,17254,5153186,12,0 ,4,15006,434600,14,5 ,4,15006,434608,14,5 ,4,15006,434616,14,5 ,4,15006,434624,14,5 ,17,923,9871812,24,0 ,17,923,7774660,32,0 ,44,15152,3056068,48,0 ,44,15152,2531780,24,0 ,4,15006,434632,14,5 ,4,15006,434640,14,5 ,4,15006,434648,14,5 ,4,15006,434656,14,5 ,4,15006,434664,14,5 ,4,15006,434672,14,5 ,4,15006,434680,14,5 ,4,15006,434688,14,5 ,20,22900,19833346,188,0 ,20,17255,5153282,516,0 ,17,923,8823300,64,0 ,17,923,7250436,32,0 ,17,923,6726148,24,0 ,44,15152,958980,56,0 ,45,15153,4104708,24,0 ,45,15153,5153284,16,0 ,4,15006,434696,14,5 ,4,15006,434704,14,5 ,4,15006,434712,14,5 ,4,15006,434720,14,5 ,4,15006,434728,14,5 ,4,15006,434736,13,5 ,4,15006,434744,14,5 ,4,15006,434752,14,5 ,17,923,9347652,32,0 ,44,15152,2007620,48,0 ,44,15152,434756,56,0 ,44,15152,3580484,40,0 ,4,15006,434760,14,5 ,4,15006,434768,16,5 ,4,15006,434776,15,5 ,4,15006,434784,14,5 ,4,15006,434792,14,5 ,4,15006,434800,14,5 ,4,15006,434808,14,5 ,4,15006,434816,15,5 ,20,19840,10920578,128,0 ,20,16217,3056258,56,0 ,17,923,9872004,24,0 ,44,15152,2531972,24,0 ,45,15153,5153412,24,0 ,4,15006,434824,14,5 ,4,15006,434832,14,5 ,4,15006,434840,16,5 ,4,15006,434848,14,5 ,4,15006,434856,14,5 ,4,15006,434864,16,5 ,4,15006,434872,16,5 ,4,15006,434880,13,5 ,20,21090,15639234,76,0 ,17,923,8299204,32,0 ,17,923,7774916,32,0 ,17,923,6726340,24,0 ,45,15153,4104900,16,0 ,4,15006,434888,15,5 ,4,15006,434896,15,5 ,4,15006,434904,14,5 ,4,15006,434912,13,5 ,20,24637,24027874,72,0 ,20,26214,28222178,104,0 ,4,15006,434920,14,5 ,4,15006,434928,15,5 ,4,15006,434936,14,5 ,4,15006,434944,13,5 ,20,23848,21930754,128,0 ,20,23194,20357890,444,0 ,17,923,7250692,40,0 ,4,15006,434952,15,5 ,4,15006,434960,15,5 ,4,15006,434968,15,5 ,4,15006,434976,14,5 ,4,15006,434984,14,5 ,4,15006,434992,16,5 ,4,15006,435000,14,5 ,4,15006,435008,13,5 ,17,923,9872196,16,0 ,44,15152,3056452,24,0 ,44,15152,2532164,24,0 ,45,15153,4105028,32,0 ,45,15153,5153604,16,0 ,17,923,9347908,24,0 ,4,15006,435016,14,5 ,4,15006,435024,14,5 ,4,15006,435032,16,5 ,4,15006,435040,16,5 ,20,19061,9347938,104,0 ,4,15006,435048,16,5 ,4,15006,435056,14,5 ,4,15006,435064,16,5 ,4,15006,435072,15,5 ,20,23461,20882306,112,0 ,20,22195,18260866,200,0 ,44,15152,3580804,40,0 ,17,923,6726532,24,0 ,4,15006,435080,14,5 ,4,15006,435088,14,5 ,4,15006,435096,16,5 ,4,15006,435104,16,5 ,4,15006,435112,16,5 ,4,15006,435120,15,5 ,4,15006,435128,15,5 ,4,15006,435136,15,5 ,17,923,9872324,32,0 ,17,923,7775172,48,0 ,44,15152,2008004,48,0 ,44,15152,959428,16,0 ,45,15153,5153732,16,0 ,17,923,8299460,24,0 ,4,15006,435144,14,5 ,4,15006,435152,16,5 ,4,15006,435160,14,5 ,4,15006,435168,14,5 ,4,15006,435176,16,5 ,4,15006,435184,15,5 ,4,15006,435192,14,5 ,4,15006,435200,15,5 ,17,923,9348100,32,0 ,44,15152,3056644,32,0 ,44,15152,2532356,48,0 ,44,15152,435204,24,0 ,17,923,8823812,32,0 ,4,15006,435208,14,5 ,4,15006,435216,14,5 ,4,15006,435224,14,5 ,4,15006,435232,16,5 ,4,15006,435240,15,5 ,4,15006,435248,14,5 ,4,15006,435256,13,5 ,4,15006,435264,14,5 ,20,16567,3580994,228,0 ,20,16218,3056706,1872,0 ,45,15153,5153860,16,0 ,17,923,7251012,40,0 ,17,923,6726724,32,0 ,44,15152,959556,32,0 ,45,15153,4105284,24,0 ,4,15006,435272,14,5 ,4,15006,435280,15,5 ,4,15006,435288,14,5 ,4,15006,435296,15,5 ,4,15006,435304,15,5 ,4,15006,435312,14,5 ,4,15006,435320,13,5 ,4,15006,435328,13,5 ,17,923,8299652,24,0 ,44,15152,1483908,72,0 ,4,15006,435336,15,5 ,4,15006,435344,14,5 ,4,15006,435352,14,5 ,4,15006,435360,13,5 ,20,26508,29271202,200,0 ,4,15006,435368,15,5 ,4,15006,435376,14,5 ,4,15006,435384,14,5 ,4,15006,435392,15,5 ,17,923,9872580,24,0 ,44,15152,435396,32,0 ,44,15152,3581124,24,0 ,45,15153,5153988,16,0 ,4,15006,435400,14,5 ,4,15006,435408,13,5 ,4,15006,435416,15,5 ,4,15006,435424,14,5 ,4,15006,435432,14,5 ,4,15006,435440,13,5 ,4,15006,435448,14,5 ,4,15006,435456,13,5 ,17,923,9348356,24,0 ,44,15152,3056900,48,0 ,45,15153,4105476,24,0 ,17,923,8824068,32,0 ,4,15006,435464,14,5 ,4,15006,435472,14,5 ,4,15006,435480,14,5 ,4,15006,435488,13,5 ,20,21091,15639842,132,0 ,20,24638,24028450,84,0 ,20,20390,13018402,80,0 ,4,15006,435496,13,5 ,4,15006,435504,13,5 ,4,15006,435512,14,5 ,4,15006,435520,16,5 ,20,23638,21407042,68,0 ,17,923,8299844,24,0 ,17,923,7775556,16,0 ,17,923,6726980,24,0 ,44,15152,2008388,48,0 ,44,15152,959812,24,0 ,45,15153,5154116,16,0 ,45,15153,5678404,48,0 ,4,15006,435528,13,5 ,4,15006,435536,16,5 ,4,15006,435544,13,5 ,4,15006,435552,13,5 ,4,15006,435560,14,5 ,4,15006,435568,13,5 ,4,15006,435576,14,5 ,4,15006,435584,14,5 ,17,923,9872772,24,0 ,17,923,7251332,24,0 ,44,15152,2532740,56,0 ,44,15152,3581316,32,0 ,4,15006,435592,16,5 ,4,15006,435600,14,5 ,4,15006,435608,14,5 ,4,15006,435616,14,5 ,4,15006,435624,13,5 ,4,15006,435632,13,5 ,4,15006,435640,14,5 ,4,15006,435648,14,5 ,20,17674,6202818,96,0 ,17,923,9348548,48,0 ,17,923,7775684,40,0 ,44,15152,435652,80,0 ,45,15153,4105668,16,0 ,45,15153,5154244,24,0 ,4,15006,435656,13,5 ,4,15006,435664,13,5 ,4,15006,435672,12,5 ,4,15006,435680,13,5 ,4,15006,435688,14,5 ,4,15006,435696,13,5 ,4,15006,435704,13,5 ,4,15006,435712,14,5 ,17,923,8824324,48,0 ,17,923,6727172,32,0 ,44,15152,960004,144,0 ,17,923,8300036,24,0 ,4,15006,435720,14,5 ,4,15006,435728,13,5 ,4,15006,435736,12,5 ,4,15006,435744,13,5 ,20,26215,28223010,268,0 ,4,15006,435752,13,5 ,4,15006,435760,13,5 ,4,15006,435768,13,5 ,4,15006,435776,12,5 ,20,18347,7775810,12,0 ,17,923,9872964,24,0 ,17,923,7251524,24,0 ,45,15153,4105796,16,0 ,45,15153,4630084,56,0 ,4,15006,435784,13,5 ,4,15006,435792,14,5 ,4,15006,435800,13,5 ,4,15006,435808,12,5 ,4,15006,435816,13,5 ,4,15006,435824,14,5 ,4,15006,435832,14,5 ,4,15006,435840,14,5 ,20,19841,10921602,156,0 ,20,17914,6727298,240,0 ,45,15153,5154436,16,0 ,44,15152,3057284,24,0 ,44,15152,3581572,32,0 ,4,15006,435848,14,5 ,4,15006,435856,13,5 ,4,15006,435864,13,5 ,4,15006,435872,14,5 ,20,19062,9348770,104,0 ,20,18348,7775906,1384,0 ,4,15006,435880,13,5 ,4,15006,435888,14,5 ,4,15006,435896,13,5 ,4,15006,435904,12,5 ,17,923,8300228,24,0 ,44,15152,2008772,48,0 ,44,15152,1484484,88,0 ,45,15153,4105924,16,0 ,45,15153,5678788,24,0 ,4,15006,435912,13,5 ,4,15006,435920,12,5 ,4,15006,435928,12,5 ,4,15006,435936,13,5 ,4,15006,435944,12,5 ,4,15006,435952,13,5 ,4,15006,435960,13,5 ,4,15006,435968,13,5 ,20,23849,21931778,148,0 ,20,23462,20883202,4096,0 ,17,923,9873156,16,0 ,17,923,7776004,24,0 ,17,923,7251716,32,0 ,17,923,6727428,24,0 ,45,15153,5154564,16,0 ,4,15006,435976,13,5 ,4,15006,435984,13,5 ,4,15006,435992,13,5 ,4,15006,436000,14,5 ,4,15006,436008,14,5 ,4,15006,436016,13,5 ,4,15006,436024,13,5 ,4,15006,436032,13,5 ,17,923,9348932,32,0 ,44,15152,3057476,32,0 ,44,15152,2533188,112,0 ,45,15153,4106052,16,0 ,4,15006,436040,14,5 ,4,15006,436048,13,5 ,4,15006,436056,13,5 ,4,15006,436064,13,5 ,20,23639,21407586,52,0 ,4,15006,436072,13,5 ,4,15006,436080,12,5 ,4,15006,436088,13,5 ,4,15006,436096,13,5 ,20,22653,19310466,252,0 ,17,923,9873284,24,0 ,44,15152,3581828,32,0 ,45,15153,5154692,16,0 ,45,15153,5678980,16,0 ,17,923,8300420,32,0 ,17,923,8824708,32,0 ,4,15006,436104,13,5 ,4,15006,436112,14,5 ,4,15006,436120,14,5 ,4,15006,436128,14,5 ,20,20391,13019042,12,0 ,4,15006,436136,14,5 ,4,15006,436144,13,5 ,4,15006,436152,14,5 ,4,15006,436160,12,5 ,20,24639,24029122,180,0 ,45,15153,4106180,24,0 ,17,923,7776196,24,0 ,17,923,6727620,24,0 ,4,15006,436168,13,5 ,4,15006,436176,13,5 ,4,15006,436184,13,5 ,4,15006,436192,14,5 ,20,22901,19834850,144,0 ,4,15006,436200,15,5 ,4,15006,436208,13,5 ,4,15006,436216,13,5 ,4,15006,436224,13,5 ,20,20392,13019138,84,0 ,20,15969,2009090,84,0 ,45,15153,5679108,16,0 ,17,923,7251972,40,0 ,45,15153,4630532,32,0 ,45,15153,5154820,16,0 ,4,15006,436232,12,5 ,4,15006,436240,13,5 ,4,15006,436248,14,5 ,4,15006,436256,14,5 ,4,15006,436264,13,5 ,4,15006,436272,14,5 ,4,15006,436280,14,5 ,4,15006,436288,13,5 ,17,923,9873476,16,0 ,44,15152,3057732,24,0 ,44,15152,2009156,48,0 ,44,15152,436292,176,0 ,17,923,9349188,24,0 ,4,15006,436296,13,5 ,4,15006,436304,13,5 ,4,15006,436312,13,5 ,4,15006,436320,14,5 ,4,15006,436328,13,5 ,4,15006,436336,13,5 ,4,15006,436344,13,5 ,4,15006,436352,14,5 ,17,923,8824964,64,0 ,17,923,7776388,56,0 ,17,923,6727812,24,0 ,44,15152,3582084,32,0 ,45,15153,4106372,32,0 ,45,15153,5154948,24,0 ,45,15153,5679236,16,0 ,17,923,8300676,24,0 ,4,15006,436360,14,5 ,4,15006,436368,13,5 ,4,15006,436376,13,5 ,4,15006,436384,15,5 ,4,15006,436392,14,5 ,4,15006,436400,13,5 ,4,15006,436408,15,5 ,4,15006,436416,14,5 ,20,17675,6203586,448,0 ,17,923,9873604,16,0 ,4,15006,436424,13,5 ,4,15006,436432,14,5 ,4,15006,436440,14,5 ,4,15006,436448,15,5 ,4,15006,436456,14,5 ,4,15006,436464,13,5 ,4,15006,436472,15,5 ,4,15006,436480,15,5 ,20,23640,21408002,292,0 ,17,923,9349380,24,0 ,44,15152,3057924,24,0 ,45,15153,4630788,120,0 ,45,15153,5679364,16,0 ,4,15006,436488,15,5 ,4,15006,436496,14,5 ,4,15006,436504,14,5 ,4,15006,436512,13,5 ,4,15006,436520,14,5 ,4,15006,436528,15,5 ,4,15006,436536,14,5 ,4,15006,436544,14,5 ,20,21092,15640898,132,0 ,17,923,9873732,24,0 ,17,923,7252292,24,0 ,17,923,6728004,24,0 ,45,15153,5155140,32,0 ,17,923,8300868,24,0 ,4,15006,436552,16,5 ,4,15006,436560,13,5 ,4,15006,436568,13,5 ,4,15006,436576,12,5 ,20,16860,4106594,132,0 ,4,15006,436584,13,5 ,4,15006,436592,13,5 ,4,15006,436600,13,5 ,4,15006,436608,13,5 ,45,15153,5679492,24,0 ,44,15152,1485188,32,0 ,44,15152,3582340,32,0 ,45,15153,4106628,32,0 ,4,15006,436616,13,5 ,4,15006,436624,16,5 ,4,15006,436632,14,5 ,4,15006,436640,16,5 ,20,21691,16689570,388,0 ,4,15006,436648,14,5 ,4,15006,436656,14,5 ,4,15006,436664,14,5 ,4,15006,436672,16,5 ,20,22196,18262466,188,0 ,17,923,9349572,32,0 ,44,15152,3058116,24,0 ,44,15152,2009540,48,0 ,4,15006,436680,14,5 ,4,15006,436688,14,5 ,4,15006,436696,14,5 ,4,15006,436704,14,5 ,20,19063,9349602,5416,0 ,4,15006,436712,16,5 ,4,15006,436720,14,5 ,4,15006,436728,14,5 ,4,15006,436736,16,5 ,17,923,9873924,24,0 ,17,923,7252484,56,0 ,17,923,6728196,24,0 ,17,923,8301060,24,0 ,4,15006,436744,14,5 ,4,15006,436752,14,5 ,4,15006,436760,16,5 ,4,15006,436768,14,5 ,4,15006,436776,16,5 ,4,15006,436784,14,5 ,4,15006,436792,14,5 ,4,15006,436800,14,5 ,45,15153,5679684,16,0 ,17,923,7776836,24,0 ,45,15153,5155396,16,0 ,4,15006,436808,14,5 ,4,15006,436816,15,5 ,4,15006,436824,14,5 ,4,15006,436832,14,5 ,4,15006,436840,15,5 ,4,15006,436848,14,5 ,4,15006,436856,15,5 ,4,15006,436864,14,5 ,17,923,8825476,24,0 ,44,15152,3058308,24,0 ,44,15152,1485444,72,0 ,44,15152,961156,32,0 ,44,15152,3582596,32,0 ,45,15153,4106884,64,0 ,4,15006,436872,14,5 ,4,15006,436880,15,5 ,4,15006,436888,14,5 ,4,15006,436896,16,5 ,20,20393,13019810,440,0 ,20,15970,2009762,68,0 ,4,15006,436904,14,5 ,4,15006,436912,16,5 ,4,15006,436920,14,5 ,4,15006,436928,14,5 ,20,19604,10398402,12,0 ,17,923,9874116,24,0 ,17,923,6728388,32,0 ,44,15152,2534084,24,0 ,45,15153,5155524,16,0 ,45,15153,5679812,88,0 ,17,923,8301252,16,0 ,17,923,9349828,24,0 ,4,15006,436936,16,5 ,4,15006,436944,14,5 ,4,15006,436952,16,5 ,4,15006,436960,14,5 ,20,26509,29272802,584,0 ,4,15006,436968,16,5 ,4,15006,436976,14,5 ,4,15006,436984,14,5 ,4,15006,436992,16,5 ,17,923,7777028,64,0 ,4,15006,437000,14,5 ,4,15006,437008,16,5 ,4,15006,437016,14,5 ,4,15006,437024,16,5 ,20,19605,10398498,12,0 ,4,15006,437032,14,5 ,4,15006,437040,14,5 ,4,15006,437048,16,5 ,4,15006,437056,14,5 ,17,923,8825668,64,0 ,44,15152,3058500,24,0 ,44,15152,2009924,48,0 ,45,15153,5155652,24,0 ,17,923,8301380,32,0 ,4,15006,437064,14,5 ,4,15006,437072,14,5 ,4,15006,437080,16,5 ,4,15006,437088,14,5 ,20,19842,10922850,272,0 ,20,25070,25078626,288,0 ,20,16568,3582818,1556,0 ,4,15006,437096,14,5 ,4,15006,437104,16,5 ,4,15006,437112,14,5 ,4,15006,437120,14,5 ,20,19606,10398594,12,0 ,17,923,9874308,24,0 ,44,15152,2534276,16,0 ,44,15152,961412,32,0 ,44,15152,3582852,120,0 ,17,923,9350020,48,0 ,4,15006,437128,14,5 ,4,15006,437136,14,5 ,4,15006,437144,14,5 ,4,15006,437152,16,5 ,20,23850,21932962,140,0 ,20,25803,27175842,368,0 ,4,15006,437160,16,5 ,4,15006,437168,14,5 ,4,15006,437176,15,5 ,4,15006,437184,14,5 ,17,923,6728644,24,0 ,17,923,7252932,16,0 ,4,15006,437192,14,5 ,4,15006,437200,15,5 ,4,15006,437208,14,5 ,4,15006,437216,14,5 ,20,19607,10398690,52,0 ,4,15006,437224,16,5 ,4,15006,437232,14,5 ,4,15006,437240,14,5 ,4,15006,437248,14,5 ,45,15153,5155844,16,0 ,44,15152,3058692,24,0 ,44,15152,2534404,16,0 ,4,15006,437256,16,5 ,4,15006,437264,14,5 ,4,15006,437272,16,5 ,4,15006,437280,14,5 ,4,15006,437288,16,5 ,4,15006,437296,14,5 ,4,15006,437304,14,5 ,4,15006,437312,13,5 ,17,923,9874500,16,0 ,17,923,7253060,40,0 ,17,923,8301636,32,0 ,4,15006,437320,14,5 ,4,15006,437328,13,5 ,4,15006,437336,13,5 ,4,15006,437344,13,5 ,20,22902,19836002,172,0 ,20,20823,14068834,1932,0 ,4,15006,437352,13,5 ,4,15006,437360,13,5 ,4,15006,437368,13,5 ,4,15006,437376,13,5 ,45,15153,5155972,32,0 ,17,923,6728836,24,0 ,44,15152,2534532,32,0 ,44,15152,961668,64,0 ,45,15153,4107396,24,0 ,4,15006,437384,13,5 ,4,15006,437392,12,5 ,4,15006,437400,13,5 ,4,15006,437408,13,5 ,4,15006,437416,13,5 ,4,15006,437424,13,5 ,4,15006,437432,16,5 ,4,15006,437440,14,5 ,20,15971,2010306,200,0 ,17,923,9874628,16,0 ,44,15152,3058884,24,0 ,44,15152,2010308,48,0 ,44,15152,1486020,32,0 ,45,15153,4631748,48,0 ,4,15006,437448,13,5 ,4,15006,437456,13,5 ,4,15006,437464,13,5 ,4,15006,437472,13,5 ,4,15006,437480,16,5 ,4,15006,437488,14,5 ,4,15006,437496,14,5 ,4,15006,437504,14,5 ,20,24802,24554754,96,0 ,17,923,9350404,24,0 ,17,923,7777540,40,0 ,4,15006,437512,13,5 ,4,15006,437520,13,5 ,4,15006,437528,14,5 ,4,15006,437536,13,5 ,20,15304,437538,1760,0 ,4,15006,437544,13,5 ,4,15006,437552,13,5 ,4,15006,437560,14,5 ,4,15006,437568,16,5 ,17,923,9874756,16,0 ,17,923,6729028,24,0 ,45,15153,4107588,16,0 ,17,923,8301892,48,0 ,17,923,8826180,32,0 ,4,15006,437576,14,5 ,4,15006,437584,14,5 ,4,15006,437592,14,5 ,4,15006,437600,16,5 ,20,21093,15641954,280,0 ,20,24640,24030562,96,0 ,4,15006,437608,14,5 ,4,15006,437616,14,5 ,4,15006,437624,14,5 ,4,15006,437632,13,5 ,20,19608,10399106,12,0 ,20,16861,4107650,436,0 ,45,15153,5680516,16,0 ,17,923,7253380,24,0 ,44,15152,3059076,24,0 ,44,15152,2534788,24,0 ,45,15153,5156228,24,0 ,4,15006,437640,13,5 ,4,15006,437648,13,5 ,4,15006,437656,13,5 ,4,15006,437664,14,5 ,4,15006,437672,13,5 ,4,15006,437680,13,5 ,4,15006,437688,13,5 ,4,15006,437696,16,5 ,20,18603,8302018,508,0 ,17,923,9874884,16,0 ,44,15152,1486276,32,0 ,44,15152,437700,24,0 ,45,15153,4107716,24,0 ,17,923,9350596,24,0 ,4,15006,437704,16,5 ,4,15006,437712,14,5 ,4,15006,437720,14,5 ,4,15006,437728,15,5 ,20,19609,10399202,12,0 ,4,15006,437736,13,5 ,4,15006,437744,14,5 ,4,15006,437752,15,5 ,4,15006,437760,14,5 ,20,17915,6729218,12,0 ,45,15153,5680644,16,0 ,17,923,6729220,24,0 ,4,15006,437768,14,5 ,4,15006,437776,14,5 ,4,15006,437784,14,5 ,4,15006,437792,12,5 ,20,20197,11972130,692,0 ,4,15006,437800,14,5 ,4,15006,437808,14,5 ,4,15006,437816,14,5 ,4,15006,437824,14,5 ,20,19610,10399298,12,0 ,17,923,9875012,16,0 ,17,923,7777860,48,0 ,17,923,7253572,32,0 ,44,15152,3059268,32,0 ,44,15152,2534980,48,0 ,44,15152,2010692,48,0 ,45,15153,4632132,16,0 ,45,15153,5156420,48,0 ,17,923,8826436,32,0 ,4,15006,437832,14,5 ,4,15006,437840,13,5 ,4,15006,437848,13,5 ,4,15006,437856,13,5 ,20,17916,6729314,12,0 ,4,15006,437864,13,5 ,4,15006,437872,13,5 ,4,15006,437880,13,5 ,4,15006,437888,13,5 ,20,26216,28225154,100,0 ,17,923,9350788,40,0 ,44,15152,437892,32,0 ,44,15152,962180,32,0 ,45,15153,4107908,24,0 ,45,15153,5680772,200,0 ,4,15006,437896,13,5 ,4,15006,437904,13,5 ,4,15006,437912,13,5 ,4,15006,437920,13,5 ,20,19611,10399394,12,0 ,4,15006,437928,13,5 ,4,15006,437936,15,5 ,4,15006,437944,14,5 ,4,15006,437952,13,5 ,20,17917,6729410,12,0 ,20,26352,28749506,1268,0 ,20,26044,27700930,328,0 ,17,923,9875140,16,0 ,17,923,6729412,24,0 ,44,15152,1486532,40,0 ,45,15153,4632260,48,0 ,17,923,8302276,40,0 ,4,15006,437960,14,5 ,4,15006,437968,15,5 ,4,15006,437976,14,5 ,4,15006,437984,13,5 ,4,15006,437992,16,5 ,4,15006,438000,14,5 ,4,15006,438008,14,5 ,4,15006,438016,14,5 ,20,19612,10399490,380,0 ,4,15006,438024,13,5 ,4,15006,438032,15,5 ,4,15006,438040,15,5 ,4,15006,438048,15,5 ,20,17918,6729506,12,0 ,4,15006,438056,15,5 ,4,15006,438064,14,5 ,4,15006,438072,14,5 ,4,15006,438080,13,5 ,17,923,9875268,16,0 ,17,923,7253828,64,0 ,44,15152,3059524,32,0 ,44,15152,3583812,88,0 ,45,15153,4108100,16,0 ,17,923,8826692,48,0 ,4,15006,438088,13,5 ,4,15006,438096,13,5 ,4,15006,438104,15,5 ,4,15006,438112,14,5 ,20,22654,19312482,212,0 ,4,15006,438120,14,5 ,4,15006,438128,14,5 ,4,15006,438136,13,5 ,4,15006,438144,13,5 ,20,17919,6729602,128,0 ,44,15152,962436,32,0 ,17,923,6729604,24,0 ,44,15152,438148,40,0 ,4,15006,438152,13,5 ,4,15006,438160,13,5 ,4,15006,438168,13,5 ,4,15006,438176,13,5 ,20,22197,18263970,280,0 ,4,15006,438184,13,5 ,4,15006,438192,13,5 ,4,15006,438200,12,5 ,4,15006,438208,12,5 ,17,923,9875396,16,0 ,17,923,7778244,48,0 ,44,15152,2535364,24,0 ,44,15152,2011076,48,0 ,45,15153,4108228,24,0 ,45,15153,5156804,40,0 ,17,923,9351108,24,0 ,4,15006,438216,13,5 ,4,15006,438224,14,5 ,4,15006,438232,13,5 ,4,15006,438240,14,5 ,4,15006,438248,14,5 ,4,15006,438256,13,5 ,4,15006,438264,12,5 ,4,15006,438272,14,5 ,20,23851,21934082,116,0 ,20,24803,24555522,292,0 ,17,923,8302596,56,0 ,44,15152,1486852,24,0 ,4,15006,438280,14,5 ,4,15006,438288,14,5 ,4,15006,438296,16,5 ,4,15006,438304,14,5 ,4,15006,438312,13,5 ,4,15006,438320,13,5 ,4,15006,438328,13,5 ,4,15006,438336,15,5 ,17,923,9875524,16,0 ,17,923,6729796,24,0 ,44,15152,3059780,40,0 ,45,15153,4632644,256,0 ,4,15006,438344,14,5 ,4,15006,438352,14,5 ,4,15006,438360,13,5 ,4,15006,438368,13,5 ,20,24641,24031330,348,0 ,4,15006,438376,13,5 ,4,15006,438384,13,5 ,4,15006,438392,13,5 ,4,15006,438400,14,5 ,17,923,9351300,24,0 ,44,15152,2535556,24,0 ,44,15152,962692,48,0 ,45,15153,4108420,24,0 ,4,15006,438408,15,5 ,4,15006,438416,13,5 ,4,15006,438424,14,5 ,4,15006,438432,13,5 ,4,15006,438440,13,5 ,4,15006,438448,13,5 ,4,15006,438456,13,5 ,4,15006,438464,13,5 ,17,923,9875652,16,0 ,44,15152,1487044,64,0 ,44,15152,438468,24,0 ,17,923,8827076,32,0 ,4,15006,438472,13,5 ,4,15006,438480,15,5 ,4,15006,438488,13,5 ,4,15006,438496,14,5 ,20,23195,20361442,12,0 ,4,15006,438504,13,5 ,4,15006,438512,13,5 ,4,15006,438520,13,5 ,4,15006,438528,13,5 ,45,15153,5157124,48,0 ,17,923,6729988,32,0 ,4,15006,438536,14,5 ,4,15006,438544,13,5 ,4,15006,438552,13,5 ,4,15006,438560,13,5 ,4,15006,438568,14,5 ,4,15006,438576,16,5 ,4,15006,438584,14,5 ,4,15006,438592,14,5 ,20,23196,20361538,248,0 ,17,923,9875780,16,0 ,17,923,7778628,48,0 ,17,923,7254340,24,0 ,44,15152,2535748,32,0 ,44,15152,2011460,48,0 ,45,15153,4108612,16,0 ,17,923,9351492,24,0 ,4,15006,438600,14,5 ,4,15006,438608,16,5 ,4,15006,438616,14,5 ,4,15006,438624,14,5 ,4,15006,438632,16,5 ,4,15006,438640,14,5 ,4,15006,438648,13,5 ,4,15006,438656,14,5 ,44,15152,438660,32,0 ,44,15152,3060100,24,0 ,4,15006,438664,16,5 ,4,15006,438672,14,5 ,4,15006,438680,16,5 ,4,15006,438688,14,5 ,20,26217,28225954,740,0 ,4,15006,438696,13,5 ,4,15006,438704,13,5 ,4,15006,438712,14,5 ,4,15006,438720,14,5 ,20,22903,19837378,144,0 ,17,923,9875908,16,0 ,45,15153,4108740,24,0 ,17,923,8303044,40,0 ,17,923,8827332,64,0 ,4,15006,438728,13,5 ,4,15006,438736,13,5 ,4,15006,438744,14,5 ,4,15006,438752,14,5 ,4,15006,438760,14,5 ,4,15006,438768,13,5 ,4,15006,438776,16,5 ,4,15006,438784,15,5 ,17,923,9351684,24,0 ,17,923,7254532,24,0 ,17,923,6730244,40,0 ,44,15152,963076,48,0 ,44,15152,3584516,352,0 ,4,15006,438792,15,5 ,4,15006,438800,15,5 ,4,15006,438808,14,5 ,4,15006,438816,16,5 ,20,23641,21410338,200,0 ,20,17256,5157410,104,0 ,4,15006,438824,14,5 ,4,15006,438832,13,5 ,4,15006,438840,15,5 ,4,15006,438848,15,5 ,17,923,9876036,16,0 ,44,15152,3060292,32,0 ,44,15152,2536004,32,0 ,4,15006,438856,14,5 ,4,15006,438864,13,5 ,4,15006,438872,15,5 ,4,15006,438880,15,5 ,4,15006,438888,15,5 ,4,15006,438896,13,5 ,4,15006,438904,13,5 ,4,15006,438912,15,5 ,20,21459,16167554,176,0 ,45,15153,5157508,40,0 ,44,15152,438916,32,0 ,45,15153,4108932,24,0 ,4,15006,438920,14,5 ,4,15006,438928,14,5 ,4,15006,438936,15,5 ,4,15006,438944,13,5 ,4,15006,438952,14,5 ,4,15006,438960,15,5 ,4,15006,438968,15,5 ,4,15006,438976,15,5 ,17,923,9876164,16,0 ,17,923,7779012,24,0 ,17,923,7254724,40,0 ,44,15152,2011844,48,0 ,44,15152,1487556,40,0 ,17,923,9351876,24,0 ,4,15006,438984,14,5 ,4,15006,438992,15,5 ,4,15006,439000,14,5 ,4,15006,439008,15,5 ,20,25285,25604834,24,0 ,4,15006,439016,15,5 ,4,15006,439024,15,5 ,4,15006,439032,15,5 ,4,15006,439040,15,5 ,20,15972,2011906,12,0 ,17,923,8303364,40,0 ,4,15006,439048,15,5 ,4,15006,439056,15,5 ,4,15006,439064,15,5 ,4,15006,439072,15,5 ,4,15006,439080,14,5 ,4,15006,439088,13,5 ,4,15006,439096,16,5 ,4,15006,439104,15,5 ,17,923,9876292,16,0 ,17,923,6730564,32,0 ,44,15152,3060548,24,0 ,44,15152,2536260,32,0 ,45,15153,4109124,40,0 ,4,15006,439112,14,5 ,4,15006,439120,13,5 ,4,15006,439128,15,5 ,4,15006,439136,15,5 ,20,15973,2012002,400,0 ,4,15006,439144,14,5 ,4,15006,439152,14,5 ,4,15006,439160,15,5 ,4,15006,439168,15,5 ,20,17920,6730626,64,0 ,17,923,9352068,24,0 ,17,923,7779204,56,0 ,44,15152,439172,32,0 ,44,15152,963460,96,0 ,4,15006,439176,13,5 ,4,15006,439184,13,5 ,4,15006,439192,13,5 ,4,15006,439200,15,5 ,20,23852,21935010,116,0 ,20,25633,26653602,2548,0 ,20,25286,25605026,700,0 ,4,15006,439208,13,5 ,4,15006,439216,14,5 ,4,15006,439224,15,5 ,4,15006,439232,14,5 ,20,20891,14595010,304,0 ,17,923,9876420,16,0 ,45,15153,5157828,48,0 ,17,923,8827844,24,0 ,4,15006,439240,15,5 ,4,15006,439248,14,5 ,4,15006,439256,16,5 ,4,15006,439264,15,5 ,20,19843,10925026,352,0 ,4,15006,439272,15,5 ,4,15006,439280,15,5 ,4,15006,439288,13,5 ,4,15006,439296,15,5 ,44,15152,1487876,24,0 ,17,923,7255044,40,0 ,44,15152,3060740,24,0 ,4,15006,439304,14,5 ,4,15006,439312,15,5 ,4,15006,439320,15,5 ,4,15006,439328,14,5 ,4,15006,439336,15,5 ,4,15006,439344,15,5 ,4,15006,439352,15,5 ,4,15006,439360,13,5 ,17,923,9876548,16,0 ,17,923,6730820,16,0 ,44,15152,2536516,32,0 ,44,15152,2012228,48,0 ,17,923,8303684,32,0 ,17,923,9352260,16,0 ,4,15006,439368,13,5 ,4,15006,439376,14,5 ,4,15006,439384,15,5 ,4,15006,439392,15,5 ,20,17477,5682274,480,0 ,20,25071,25080930,336,0 ,4,15006,439400,13,5 ,4,15006,439408,14,5 ,4,15006,439416,14,5 ,4,15006,439424,14,5 ,17,923,8828036,64,0 ,44,15152,439428,32,0 ,45,15153,4109444,32,0 ,4,15006,439432,14,5 ,4,15006,439440,14,5 ,4,15006,439448,16,5 ,4,15006,439456,15,5 ,4,15006,439464,15,5 ,4,15006,439472,15,5 ,4,15006,439480,14,5 ,4,15006,439488,14,5 ,17,923,9876676,16,0 ,17,923,6730948,32,0 ,44,15152,3060932,32,0 ,44,15152,1488068,56,0 ,45,15153,5682372,16,0 ,17,923,9352388,24,0 ,4,15006,439496,15,5 ,4,15006,439504,13,5 ,4,15006,439512,14,5 ,4,15006,439520,15,5 ,4,15006,439528,15,5 ,4,15006,439536,13,5 ,4,15006,439544,13,5 ,4,15006,439552,13,5 ,4,15006,439560,13,5 ,4,15006,439568,14,5 ,4,15006,439576,14,5 ,4,15006,439584,13,5 ,4,15006,439592,13,5 ,4,15006,439600,14,5 ,4,15006,439608,16,5 ,4,15006,439616,13,5 ,17,923,9876804,16,0 ,17,923,7779652,32,0 ,17,923,7255364,24,0 ,44,15152,2536772,32,0 ,45,15153,5158212,64,0 ,45,15153,5682500,56,0 ,17,923,8303940,32,0 ,4,15006,439624,15,5 ,4,15006,439632,16,5 ,4,15006,439640,15,5 ,4,15006,439648,14,5 ,20,17257,5158242,240,0 ,4,15006,439656,15,5 ,4,15006,439664,14,5 ,4,15006,439672,14,5 ,4,15006,439680,15,5 ,20,17921,6731138,12,0 ,17,923,9352580,40,0 ,44,15152,439684,32,0 ,45,15153,4109700,24,0 ,4,15006,439688,15,5 ,4,15006,439696,14,5 ,4,15006,439704,14,5 ,4,15006,439712,15,5 ,4,15006,439720,13,5 ,4,15006,439728,14,5 ,4,15006,439736,14,5 ,4,15006,439744,16,5 ,20,21692,16692674,584,0 ,17,923,9876932,16,0 ,17,923,6731204,32,0 ,44,15152,3061188,24,0 ,44,15152,2012612,48,0 ,4,15006,439752,16,5 ,4,15006,439760,15,5 ,4,15006,439768,14,5 ,4,15006,439776,15,5 ,20,17922,6731234,96,0 ,4,15006,439784,16,5 ,4,15006,439792,15,5 ,4,15006,439800,15,5 ,4,15006,439808,15,5 ,20,22655,19314178,772,0 ,17,923,7255556,32,0 ,4,15006,439816,15,5 ,4,15006,439824,14,5 ,4,15006,439832,15,5 ,4,15006,439840,15,5 ,20,21094,15644194,160,0 ,4,15006,439848,13,5 ,4,15006,439856,15,5 ,4,15006,439864,16,5 ,4,15006,439872,14,5 ,20,24305,22984258,2328,0 ,20,22904,19838530,220,0 ,17,923,9877060,16,0 ,17,923,7779908,48,0 ,44,15152,2537028,32,0 ,45,15153,4109892,32,0 ,17,923,8304196,32,0 ,4,15006,439880,13,5 ,4,15006,439888,14,5 ,4,15006,439896,15,5 ,4,15006,439904,14,5 ,4,15006,439912,14,5 ,4,15006,439920,15,5 ,4,15006,439928,15,5 ,4,15006,439936,15,5 ,17,923,8828548,32,0 ,44,15152,3061380,40,0 ,44,15152,1488516,24,0 ,44,15152,439940,32,0 ,44,15152,964228,40,0 ,4,15006,439944,15,5 ,4,15006,439952,15,5 ,4,15006,439960,14,5 ,4,15006,439968,15,5 ,4,15006,439976,14,5 ,4,15006,439984,15,5 ,4,15006,439992,15,5 ,4,15006,440000,14,5 ,20,17676,6207170,204,0 ,17,923,9877188,16,0 ,17,923,6731460,32,0 ,17,923,9352900,32,0 ,4,15006,440008,14,5 ,4,15006,440016,13,5 ,4,15006,440024,14,5 ,4,15006,440032,15,5 ,4,15006,440040,14,5 ,4,15006,440048,15,5 ,4,15006,440056,14,5 ,4,15006,440064,14,5 ,20,24104,22460162,288,0 ,45,15153,5682948,16,0 ,17,923,7255812,40,0 ,4,15006,440072,14,5 ,4,15006,440080,14,5 ,4,15006,440088,14,5 ,4,15006,440096,14,5 ,20,25804,27178786,52,0 ,4,15006,440104,14,5 ,4,15006,440112,14,5 ,4,15006,440120,13,5 ,4,15006,440128,14,5 ,20,23853,21935938,160,0 ,17,923,9877316,16,0 ,44,15152,2537284,32,0 ,44,15152,2012996,48,0 ,44,15152,1488708,24,0 ,45,15153,4110148,112,0 ,45,15153,5158724,64,0 ,17,923,8304452,40,0 ,4,15006,440136,13,5 ,4,15006,440144,14,5 ,4,15006,440152,13,5 ,4,15006,440160,14,5 ,4,15006,440168,13,5 ,4,15006,440176,14,5 ,4,15006,440184,13,5 ,4,15006,440192,14,5 ,17,923,8828804,32,0 ,44,15152,440196,24,0 ,45,15153,5683076,24,0 ,4,15006,440200,13,5 ,4,15006,440208,14,5 ,4,15006,440216,13,5 ,4,15006,440224,14,5 ,4,15006,440232,13,5 ,4,15006,440240,14,5 ,4,15006,440248,13,5 ,4,15006,440256,14,5 ,17,923,9877444,24,0 ,17,923,7780292,40,0 ,17,923,6731716,32,0 ,44,15152,3061700,24,0 ,44,15152,964548,40,0 ,17,923,9353156,24,0 ,4,15006,440264,13,5 ,4,15006,440272,14,5 ,4,15006,440280,13,5 ,4,15006,440288,14,5 ,4,15006,440296,13,5 ,4,15006,440304,14,5 ,4,15006,440312,13,5 ,4,15006,440320,14,5 ,20,21460,16168962,664,0 ,44,15152,1488900,56,0 ,4,15006,440328,13,5 ,4,15006,440336,14,5 ,4,15006,440344,13,5 ,4,15006,440352,14,5 ,4,15006,440360,13,5 ,4,15006,440368,14,5 ,4,15006,440376,13,5 ,4,15006,440384,14,5 ,45,15153,5683268,216,0 ,17,923,7256132,56,0 ,44,15152,2537540,32,0 ,44,15152,440388,24,0 ,45,15153,4634692,16,0 ,4,15006,440392,13,5 ,4,15006,440400,14,5 ,4,15006,440408,13,5 ,4,15006,440416,14,5 ,20,23642,21411938,272,0 ,20,20394,13023330,160,0 ,20,22198,18266210,280,0 ,4,15006,440424,13,5 ,4,15006,440432,15,5 ,4,15006,440440,14,5 ,4,15006,440448,13,5 ,17,923,9877636,24,0 ,44,15152,3061892,24,0 ,17,923,8304772,40,0 ,17,923,8829060,48,0 ,17,923,9353348,24,0 ,4,15006,440456,14,5 ,4,15006,440464,13,5 ,4,15006,440472,14,5 ,4,15006,440480,13,5 ,4,15006,440488,14,5 ,4,15006,440496,13,5 ,4,15006,440504,14,5 ,4,15006,440512,13,5 ,20,25805,27179202,412,0 ,45,15153,4634820,56,0 ,17,923,6731972,40,0 ,44,15152,2013380,48,0 ,4,15006,440520,14,5 ,4,15006,440528,13,5 ,4,15006,440536,14,5 ,4,15006,440544,13,5 ,20,17923,6732002,12,0 ,4,15006,440552,14,5 ,4,15006,440560,13,5 ,4,15006,440568,14,5 ,4,15006,440576,13,5 ,20,23197,20363522,76,0 ,20,26045,27703554,108,0 ,44,15152,964868,40,0 ,17,923,7780612,40,0 ,44,15152,440580,24,0 ,4,15006,440584,14,5 ,4,15006,440592,13,5 ,4,15006,440600,14,5 ,4,15006,440608,13,5 ,20,24804,24557858,40,0 ,4,15006,440616,14,5 ,4,15006,440624,13,5 ,4,15006,440632,14,5 ,4,15006,440640,13,5 ,20,17924,6732098,52,0 ,17,923,9877828,24,0 ,44,15152,3062084,24,0 ,44,15152,2537796,32,0 ,45,15153,5159236,24,0 ,17,923,9353540,24,0 ,4,15006,440648,14,5 ,4,15006,440656,13,5 ,4,15006,440664,14,5 ,4,15006,440672,13,5 ,4,15006,440680,14,5 ,4,15006,440688,14,5 ,4,15006,440696,13,5 ,4,15006,440704,14,5 ,4,15006,440712,13,5 ,4,15006,440720,14,5 ,4,15006,440728,13,5 ,4,15006,440736,14,5 ,4,15006,440744,13,5 ,4,15006,440752,14,5 ,4,15006,440760,14,5 ,4,15006,440768,14,5 ,17,923,8305092,32,0 ,44,15152,1489348,24,0 ,44,15152,440772,32,0 ,4,15006,440776,14,5 ,4,15006,440784,14,5 ,4,15006,440792,14,5 ,4,15006,440800,14,5 ,4,15006,440808,14,5 ,4,15006,440816,14,5 ,4,15006,440824,14,5 ,4,15006,440832,14,5 ,17,923,9878020,24,0 ,17,923,7256580,32,0 ,17,923,6732292,40,0 ,44,15152,3062276,24,0 ,45,15153,5159428,96,0 ,17,923,8829444,32,0 ,17,923,9353732,40,0 ,4,15006,440840,14,5 ,4,15006,440848,14,5 ,4,15006,440856,14,5 ,4,15006,440864,14,5 ,4,15006,440872,14,5 ,4,15006,440880,14,5 ,4,15006,440888,14,5 ,4,15006,440896,14,5 ,44,15152,965188,80,0 ,17,923,7780932,48,0 ,44,15152,2538052,120,0 ,44,15152,2013764,48,0 ,4,15006,440904,14,5 ,4,15006,440912,14,5 ,4,15006,440920,14,5 ,4,15006,440928,14,5 ,20,24805,24558178,40,0 ,4,15006,440936,14,5 ,4,15006,440944,14,5 ,4,15006,440952,14,5 ,4,15006,440960,14,5 ,20,20104,11451010,212,0 ,45,15153,4635268,64,0 ,44,15152,1489540,40,0 ,4,15006,440968,14,5 ,4,15006,440976,14,5 ,4,15006,440984,14,5 ,4,15006,440992,14,5 ,4,15006,441000,14,5 ,4,15006,441008,14,5 ,4,15006,441016,14,5 ,4,15006,441024,14,5 ,17,923,9878212,24,0 ,44,15152,3062468,24,0 ,44,15152,441028,120,0 ,45,15153,4111044,24,0 ,17,923,8305348,32,0 ,4,15006,441032,14,5 ,4,15006,441040,14,5 ,4,15006,441048,14,5 ,4,15006,441056,14,5 ,20,19613,10402530,12,0 ,20,17925,6732514,96,0 ,4,15006,441064,14,5 ,4,15006,441072,14,5 ,4,15006,441080,14,5 ,4,15006,441088,14,5 ,17,923,8829700,64,0 ,17,923,7256836,48,0 ,4,15006,441096,13,5 ,4,15006,441104,14,5 ,4,15006,441112,13,5 ,4,15006,441120,14,5 ,20,21095,15645474,132,0 ,20,16862,4111138,108,0 ,4,15006,441128,13,5 ,4,15006,441136,14,5 ,4,15006,441144,13,5 ,4,15006,441152,14,5 ,20,19614,10402626,12,0 ,20,24642,24034114,24,0 ,17,923,9354052,32,0 ,17,923,6732612,40,0 ,4,15006,441160,13,5 ,4,15006,441168,14,5 ,4,15006,441176,13,5 ,4,15006,441184,14,5 ,20,23198,20364130,160,0 ,4,15006,441192,13,5 ,4,15006,441200,14,5 ,4,15006,441208,13,5 ,4,15006,441216,14,5 ,17,923,9878404,16,0 ,44,15152,3062660,24,0 ,45,15153,4111236,24,0 ,4,15006,441224,13,5 ,4,15006,441232,14,5 ,4,15006,441240,13,5 ,4,15006,441248,14,5 ,20,19615,10402722,136,0 ,20,24806,24558498,84,0 ,4,15006,441256,13,5 ,4,15006,441264,14,5 ,4,15006,441272,13,5 ,4,15006,441280,14,5 ,17,923,8305604,40,0 ,17,923,7781316,64,0 ,44,15152,2014148,48,0 ,44,15152,1489860,128,0 ,4,15006,441288,13,5 ,4,15006,441296,14,5 ,4,15006,441304,13,5 ,4,15006,441312,14,5 ,4,15006,441320,13,5 ,4,15006,441328,14,5 ,4,15006,441336,13,5 ,4,15006,441344,14,5 ,20,24643,24034306,48,0 ,17,923,9878532,16,0 ,4,15006,441352,13,5 ,4,15006,441360,14,5 ,4,15006,441368,13,5 ,4,15006,441376,14,5 ,4,15006,441384,13,5 ,4,15006,441392,14,5 ,4,15006,441400,13,5 ,4,15006,441408,14,5 ,20,23854,21937218,192,0 ,17,923,9354308,24,0 ,44,15152,3062852,32,0 ,45,15153,4111428,16,0 ,4,15006,441416,13,5 ,4,15006,441424,14,5 ,4,15006,441432,13,5 ,4,15006,441440,14,5 ,20,26046,27704418,664,0 ,4,15006,441448,13,5 ,4,15006,441456,14,5 ,4,15006,441464,13,5 ,4,15006,441472,14,5 ,17,923,9878660,24,0 ,17,923,7257220,48,0 ,17,923,6732932,32,0 ,45,15153,4635780,112,0 ,4,15006,441480,13,5 ,4,15006,441488,14,5 ,4,15006,441496,13,5 ,4,15006,441504,14,5 ,4,15006,441512,13,5 ,4,15006,441520,14,5 ,4,15006,441528,14,5 ,4,15006,441536,12,5 ,45,15153,4111556,16,0 ,44,15152,965828,40,0 ,4,15006,441544,14,5 ,4,15006,441552,13,5 ,4,15006,441560,14,5 ,4,15006,441568,14,5 ,20,17258,5160162,52,0 ,4,15006,441576,14,5 ,4,15006,441584,16,5 ,4,15006,441592,15,5 ,4,15006,441600,14,5 ,17,923,9354500,48,0 ,44,15152,3587332,32,0 ,45,15153,5160196,16,0 ,17,923,8305924,32,0 ,17,923,8830212,24,0 ,4,15006,441608,15,5 ,4,15006,441616,14,5 ,4,15006,441624,14,5 ,4,15006,441632,14,5 ,20,22905,19840290,144,0 ,20,26510,29277474,704,0 ,20,17677,6208802,108,0 ,4,15006,441640,15,5 ,4,15006,441648,13,5 ,4,15006,441656,13,5 ,4,15006,441664,15,5 ,20,20892,14597442,444,0 ,17,923,9878852,24,0 ,44,15152,3063108,24,0 ,44,15152,2014532,48,0 ,45,15153,4111684,32,0 ,4,15006,441672,14,5 ,4,15006,441680,14,5 ,4,15006,441688,13,5 ,4,15006,441696,14,5 ,20,20395,13024610,328,0 ,20,18835,8830306,232,0 ,4,15006,441704,14,5 ,4,15006,441712,14,5 ,4,15006,441720,14,5 ,4,15006,441728,15,5 ,20,24644,24034690,484,0 ,45,15153,5160324,16,0 ,17,923,6733188,32,0 ,4,15006,441736,15,5 ,4,15006,441744,15,5 ,4,15006,441752,14,5 ,4,15006,441760,15,5 ,20,18604,8306082,748,0 ,4,15006,441768,14,5 ,4,15006,441776,14,5 ,4,15006,441784,14,5 ,4,15006,441792,15,5 ,17,923,8830404,64,0 ,17,923,7781828,24,0 ,4,15006,441800,14,5 ,4,15006,441808,15,5 ,4,15006,441816,14,5 ,4,15006,441824,15,5 ,20,17926,6733282,420,0 ,4,15006,441832,13,5 ,4,15006,441840,14,5 ,4,15006,441848,14,5 ,4,15006,441856,14,5 ,17,923,9879044,24,0 ,17,923,7257604,48,0 ,44,15152,3063300,40,0 ,44,15152,2539012,24,0 ,44,15152,966148,32,0 ,44,15152,3587588,24,0 ,45,15153,5160452,24,0 ,17,923,8306180,32,0 ,4,15006,441864,14,5 ,4,15006,441872,13,5 ,4,15006,441880,14,5 ,4,15006,441888,14,5 ,4,15006,441896,14,5 ,4,15006,441904,14,5 ,4,15006,441912,14,5 ,4,15006,441920,15,5 ,20,24807,24559170,192,0 ,45,15153,4111940,16,0 ,4,15006,441928,15,5 ,4,15006,441936,14,5 ,4,15006,441944,15,5 ,4,15006,441952,15,5 ,20,21911,17219170,44,0 ,4,15006,441960,14,5 ,4,15006,441968,13,5 ,4,15006,441976,13,5 ,4,15006,441984,14,5 ,20,17259,5160578,120,0 ,20,16863,4112002,488,0 ,17,923,9354884,24,0 ,17,923,7782020,24,0 ,17,923,6733444,24,0 ,44,15152,441988,24,0 ,4,15006,441992,15,5 ,4,15006,442000,15,5 ,4,15006,442008,14,5 ,4,15006,442016,14,5 ,4,15006,442024,13,5 ,4,15006,442032,14,5 ,4,15006,442040,14,5 ,4,15006,442048,15,5 ,17,923,9879236,24,0 ,44,15152,2539204,32,0 ,44,15152,2014916,48,0 ,44,15152,3587780,32,0 ,45,15153,4112068,16,0 ,45,15153,5160644,24,0 ,4,15006,442056,14,5 ,4,15006,442064,14,5 ,4,15006,442072,14,5 ,4,15006,442080,15,5 ,20,19844,10927842,344,0 ,20,25072,25083618,1076,0 ,4,15006,442088,14,5 ,4,15006,442096,15,5 ,4,15006,442104,15,5 ,4,15006,442112,14,5 ,20,22442,18792194,476,0 ,17,923,8306436,40,0 ,44,15152,966404,24,0 ,45,15153,5684996,16,0 ,4,15006,442120,15,5 ,4,15006,442128,15,5 ,4,15006,442136,13,5 ,4,15006,442144,15,5 ,4,15006,442152,13,5 ,4,15006,442160,15,5 ,4,15006,442168,13,5 ,4,15006,442176,14,5 ,20,21096,15646530,36,0 ,20,20645,13549378,248,0 ,17,923,9355076,48,0 ,17,923,7782212,32,0 ,17,923,6733636,40,0 ,44,15152,3063620,24,0 ,44,15152,442180,32,0 ,45,15153,4112196,32,0 ,4,15006,442184,14,5 ,4,15006,442192,14,5 ,4,15006,442200,14,5 ,4,15006,442208,14,5 ,4,15006,442216,14,5 ,4,15006,442224,14,5 ,4,15006,442232,14,5 ,4,15006,442240,14,5 ,17,923,9879428,24,0 ,17,923,7257988,24,0 ,45,15153,5160836,32,0 ,45,15153,5685124,16,0 ,4,15006,442248,15,5 ,4,15006,442256,12,5 ,4,15006,442264,13,5 ,4,15006,442272,14,5 ,4,15006,442280,13,5 ,4,15006,442288,15,5 ,4,15006,442296,15,5 ,4,15006,442304,14,5 ,20,21912,17219522,84,0 ,17,923,8830916,32,0 ,44,15152,2539460,136,0 ,44,15152,1490884,72,0 ,44,15152,966596,320,0 ,44,15152,3588036,56,0 ,4,15006,442312,17,5 ,4,15006,442320,15,5 ,4,15006,442328,15,5 ,4,15006,442336,14,5 ,20,19616,10403810,12,0 ,20,15974,2015202,92,0 ,4,15006,442344,13,5 ,4,15006,442352,15,5 ,4,15006,442360,13,5 ,4,15006,442368,13,5 ,20,24105,22462466,772,0 ,45,15153,5685252,24,0 ,44,15152,3063812,32,0 ,45,15153,4636676,32,0 ,4,15006,442376,12,5 ,4,15006,442384,13,5 ,4,15006,442392,15,5 ,4,15006,442400,13,5 ,4,15006,442408,14,5 ,4,15006,442416,16,5 ,4,15006,442424,15,5 ,4,15006,442432,13,5 ,20,19617,10403906,264,0 ,17,923,9879620,32,0 ,17,923,7782468,24,0 ,17,923,7258180,48,0 ,44,15152,2015300,72,0 ,44,15152,442436,16,0 ,45,15153,4112452,16,0 ,17,923,8306756,48,0 ,4,15006,442440,13,5 ,4,15006,442448,15,5 ,4,15006,442456,15,5 ,4,15006,442464,12,5 ,20,23199,20365410,704,0 ,20,21097,15646818,68,0 ,4,15006,442472,14,5 ,4,15006,442480,14,5 ,4,15006,442488,14,5 ,4,15006,442496,14,5 ,20,17678,6209666,1104,0 ,45,15153,5161092,32,0 ,17,923,6733956,40,0 ,4,15006,442504,13,5 ,4,15006,442512,13,5 ,4,15006,442520,15,5 ,4,15006,442528,15,5 ,4,15006,442536,15,5 ,4,15006,442544,14,5 ,4,15006,442552,15,5 ,4,15006,442560,15,5 ,17,923,9355460,24,0 ,44,15152,442564,24,0 ,45,15153,4112580,16,0 ,45,15153,5685444,352,0 ,17,923,8831172,32,0 ,4,15006,442568,15,5 ,4,15006,442576,13,5 ,4,15006,442584,13,5 ,4,15006,442592,13,5 ,20,23643,21414114,160,0 ,4,15006,442600,14,5 ,4,15006,442608,13,5 ,4,15006,442616,15,5 ,4,15006,442624,15,5 ,45,15153,4636932,592,0 ,17,923,7782660,48,0 ,44,15152,3064068,80,0 ,4,15006,442632,15,5 ,4,15006,442640,13,5 ,4,15006,442648,13,5 ,4,15006,442656,13,5 ,20,22199,18268450,384,0 ,20,20105,11452706,92,0 ,4,15006,442664,13,5 ,4,15006,442672,16,5 ,4,15006,442680,14,5 ,4,15006,442688,15,5 ,20,20918,15122754,4520,0 ,17,923,9879876,16,0 ,45,15153,4112708,16,0 ,4,15006,442696,15,5 ,4,15006,442704,14,5 ,4,15006,442712,15,5 ,4,15006,442720,14,5 ,4,15006,442728,15,5 ,4,15006,442736,15,5 ,4,15006,442744,15,5 ,4,15006,442752,15,5 ,17,923,9355652,40,0 ,44,15152,442756,24,0 ,44,15152,3588484,24,0 ,45,15153,5161348,16,0 ,4,15006,442760,15,5 ,4,15006,442768,15,5 ,4,15006,442776,14,5 ,4,15006,442784,13,5 ,20,22906,19841442,228,0 ,4,15006,442792,15,5 ,4,15006,442800,15,5 ,4,15006,442808,15,5 ,4,15006,442816,15,5 ,17,923,9880004,16,0 ,17,923,7258564,24,0 ,17,923,6734276,40,0 ,45,15153,4112836,32,0 ,17,923,8307140,32,0 ,17,923,8831428,48,0 ,4,15006,442824,14,5 ,4,15006,442832,14,5 ,4,15006,442840,15,5 ,4,15006,442848,15,5 ,4,15006,442856,15,5 ,4,15006,442864,15,5 ,4,15006,442872,15,5 ,4,15006,442880,14,5 ,45,15153,5161476,16,0 ,44,15152,1491460,24,0 ,4,15006,442888,14,5 ,4,15006,442896,15,5 ,4,15006,442904,15,5 ,4,15006,442912,15,5 ,4,15006,442920,15,5 ,4,15006,442928,15,5 ,4,15006,442936,15,5 ,4,15006,442944,15,5 ,20,23855,21938754,148,0 ,20,17260,5161538,344,0 ,17,923,9880132,48,0 ,44,15152,442948,24,0 ,44,15152,3588676,48,0 ,4,15006,442952,15,5 ,4,15006,442960,15,5 ,4,15006,442968,13,5 ,4,15006,442976,14,5 ,20,21913,17220194,596,0 ,4,15006,442984,15,5 ,4,15006,442992,14,5 ,4,15006,443000,15,5 ,4,15006,443008,14,5 ,20,21098,15647362,64,0 ,20,15526,967298,684,0 ,45,15153,5161604,24,0 ,17,923,7783044,32,0 ,17,923,7258756,32,0 ,44,15152,2015876,24,0 ,4,15006,443016,14,5 ,4,15006,443024,14,5 ,4,15006,443032,13,5 ,4,15006,443040,14,5 ,4,15006,443048,13,5 ,4,15006,443056,13,5 ,4,15006,443064,14,5 ,4,15006,443072,13,5 ,20,15975,2015938,140,0 ,17,923,9355972,40,0 ,44,15152,1491652,24,0 ,45,15153,4113092,48,0 ,17,923,8307396,40,0 ,4,15006,443080,13,5 ,4,15006,443088,14,5 ,4,15006,443096,15,5 ,4,15006,443104,13,5 ,4,15006,443112,13,5 ,4,15006,443120,14,5 ,4,15006,443128,14,5 ,4,15006,443136,14,5 ,44,15152,443140,24,0 ,17,923,6734596,40,0 ,4,15006,443144,15,5 ,4,15006,443152,15,5 ,4,15006,443160,16,5 ,4,15006,443168,15,5 ,4,15006,443176,14,5 ,4,15006,443184,14,5 ,4,15006,443192,14,5 ,4,15006,443200,14,5 ,17,923,8831812,32,0 ,44,15152,2016068,88,0 ,45,15153,5161796,24,0 ,4,15006,443208,16,5 ,4,15006,443216,13,5 ,4,15006,443224,16,5 ,4,15006,443232,16,5 ,20,17478,5686114,2216,0 ,4,15006,443240,14,5 ,4,15006,443248,16,5 ,4,15006,443256,14,5 ,4,15006,443264,13,5 ,44,15152,1491844,40,0 ,17,923,7783300,40,0 ,17,923,7259012,24,0 ,44,15152,3064708,24,0 ,4,15006,443272,15,5 ,4,15006,443280,14,5 ,4,15006,443288,16,5 ,4,15006,443296,16,5 ,4,15006,443304,14,5 ,4,15006,443312,12,5 ,4,15006,443320,14,5 ,4,15006,443328,14,5 ,20,20198,11977666,300,0 ,17,923,9880516,24,0 ,44,15152,443332,32,0 ,44,15152,3589060,32,0 ,4,15006,443336,16,5 ,4,15006,443344,16,5 ,4,15006,443352,14,5 ,4,15006,443360,14,5 ,4,15006,443368,16,5 ,4,15006,443376,15,5 ,4,15006,443384,14,5 ,4,15006,443392,16,5 ,20,20106,11453442,12,0 ,17,923,9356292,24,0 ,44,15152,2540548,24,0 ,45,15153,5161988,16,0 ,17,923,8307716,40,0 ,4,15006,443400,14,5 ,4,15006,443408,15,5 ,4,15006,443416,16,5 ,4,15006,443424,16,5 ,4,15006,443432,16,5 ,4,15006,443440,16,5 ,4,15006,443448,12,5 ,4,15006,443456,15,5 ,20,24808,24560706,24,0 ,17,923,8832068,64,0 ,17,923,7259204,24,0 ,17,923,6734916,40,0 ,44,15152,3064900,24,0 ,45,15153,4113476,24,0 ,4,15006,443464,16,5 ,4,15006,443472,16,5 ,4,15006,443480,15,5 ,4,15006,443488,16,5 ,20,20107,11453538,176,0 ,4,15006,443496,16,5 ,4,15006,443504,16,5 ,4,15006,443512,15,5 ,4,15006,443520,13,5 ,20,21099,15647874,36,0 ,17,923,9880708,24,0 ,45,15153,5162116,24,0 ,4,15006,443528,13,5 ,4,15006,443536,13,5 ,4,15006,443544,13,5 ,4,15006,443552,13,5 ,20,18836,8832162,12,0 ,4,15006,443560,13,5 ,4,15006,443568,16,5 ,4,15006,443576,14,5 ,4,15006,443584,15,5 ,20,15762,1492162,600,0 ,17,923,9356484,32,0 ,17,923,7783620,40,0 ,44,15152,2540740,24,0 ,44,15152,1492164,80,0 ,44,15152,443588,104,0 ,44,15152,3589316,48,0 ,4,15006,443592,14,5 ,4,15006,443600,14,5 ,4,15006,443608,14,5 ,4,15006,443616,14,5 ,4,15006,443624,16,5 ,4,15006,443632,14,5 ,4,15006,443640,13,5 ,4,15006,443648,16,5 ,20,18837,8832258,12,0 ,20,24809,24560898,76,0 ,45,15153,4113668,16,0 ,17,923,7259396,16,0 ,44,15152,3065092,24,0 ,4,15006,443656,15,5 ,4,15006,443664,15,5 ,4,15006,443672,15,5 ,4,15006,443680,15,5 ,4,15006,443688,14,5 ,4,15006,443696,14,5 ,4,15006,443704,14,5 ,4,15006,443712,15,5 ,17,923,9880900,48,0 ,45,15153,5162308,16,0 ,17,923,8308036,48,0 ,4,15006,443720,14,5 ,4,15006,443728,15,5 ,4,15006,443736,15,5 ,4,15006,443744,16,5 ,20,18838,8832354,12,0 ,4,15006,443752,16,5 ,4,15006,443760,14,5 ,4,15006,443768,14,5 ,4,15006,443776,16,5 ,45,15153,4113796,24,0 ,17,923,7259524,16,0 ,17,923,6735236,32,0 ,44,15152,2540932,24,0 ,4,15006,443784,15,5 ,4,15006,443792,15,5 ,4,15006,443800,15,5 ,4,15006,443808,15,5 ,20,21100,15648162,36,0 ,20,25806,27182498,1124,0 ,4,15006,443816,14,5 ,4,15006,443824,14,5 ,4,15006,443832,15,5 ,4,15006,443840,15,5 ,20,18839,8832450,52,0 ,17,923,9356740,32,0 ,44,15152,3065284,24,0 ,45,15153,5162436,16,0 ,4,15006,443848,15,5 ,4,15006,443856,14,5 ,4,15006,443864,14,5 ,4,15006,443872,15,5 ,20,23644,21415394,364,0 ,4,15006,443880,16,5 ,4,15006,443888,15,5 ,4,15006,443896,15,5 ,4,15006,443904,15,5 ,44,15152,2016772,72,0 ,17,923,7783940,48,0 ,17,923,7259652,24,0 ,4,15006,443912,14,5 ,4,15006,443920,14,5 ,4,15006,443928,14,5 ,4,15006,443936,14,5 ,4,15006,443944,16,5 ,4,15006,443952,14,5 ,4,15006,443960,14,5 ,4,15006,443968,14,5 ,17,923,8832580,24,0 ,44,15152,2541124,24,0 ,44,15152,3589700,32,0 ,45,15153,4113988,24,0 ,45,15153,5162564,16,0 ,4,15006,443976,14,5 ,4,15006,443984,14,5 ,4,15006,443992,14,5 ,4,15006,444000,12,5 ,4,15006,444008,14,5 ,4,15006,444016,14,5 ,4,15006,444024,14,5 ,4,15006,444032,13,5 ,44,15152,3065476,40,0 ,17,923,6735492,24,0 ,4,15006,444040,13,5 ,4,15006,444048,14,5 ,4,15006,444056,14,5 ,4,15006,444064,15,5 ,4,15006,444072,15,5 ,4,15006,444080,13,5 ,4,15006,444088,14,5 ,4,15006,444096,15,5 ,20,21101,15648450,304,0 ,17,923,9881284,40,0 ,17,923,7259844,24,0 ,45,15153,5162692,16,0 ,17,923,8308420,56,0 ,17,923,9356996,24,0 ,4,15006,444104,14,5 ,4,15006,444112,16,5 ,4,15006,444120,14,5 ,4,15006,444128,16,5 ,20,23856,21939938,112,0 ,4,15006,444136,15,5 ,4,15006,444144,13,5 ,4,15006,444152,14,5 ,4,15006,444160,16,5 ,20,20646,13551362,80,0 ,17,923,8832772,64,0 ,44,15152,2541316,168,0 ,45,15153,4114180,16,0 ,4,15006,444168,16,5 ,4,15006,444176,15,5 ,4,15006,444184,16,5 ,4,15006,444192,16,5 ,20,15976,2017058,76,0 ,4,15006,444200,14,5 ,4,15006,444208,14,5 ,4,15006,444216,14,5 ,4,15006,444224,14,5 ,45,15153,5162820,16,0 ,17,923,6735684,24,0 ,44,15152,1492804,40,0 ,44,15152,3589956,48,0 ,4,15006,444232,14,5 ,4,15006,444240,14,5 ,4,15006,444248,16,5 ,4,15006,444256,16,5 ,20,18840,8832866,12,0 ,20,24810,24561506,20,0 ,4,15006,444264,16,5 ,4,15006,444272,16,5 ,4,15006,444280,17,5 ,4,15006,444288,16,5 ,17,923,9357188,24,0 ,17,923,7784324,32,0 ,17,923,7260036,24,0 ,45,15153,4114308,16,0 ,4,15006,444296,16,5 ,4,15006,444304,15,5 ,4,15006,444312,14,5 ,4,15006,444320,16,5 ,20,20396,13027234,80,0 ,4,15006,444328,14,5 ,4,15006,444336,15,5 ,4,15006,444344,14,5 ,4,15006,444352,16,5 ,20,18841,8832962,276,0 ,45,15153,5162948,16,0 ,44,15152,3065796,24,0 ,4,15006,444360,15,5 ,4,15006,444368,14,5 ,4,15006,444376,15,5 ,4,15006,444384,16,5 ,4,15006,444392,13,5 ,4,15006,444400,13,5 ,4,15006,444408,13,5 ,4,15006,444416,15,5 ,20,21693,16697346,44,0 ,20,24811,24561666,24,0 ,20,18131,7260162,136,0 ,17,923,9881604,80,0 ,17,923,6735876,32,0 ,44,15152,444420,40,0 ,45,15153,4114436,24,0 ,4,15006,444424,15,5 ,4,15006,444432,14,5 ,4,15006,444440,14,5 ,4,15006,444448,15,5 ,4,15006,444456,14,5 ,4,15006,444464,15,5 ,4,15006,444472,14,5 ,4,15006,444480,15,5 ,17,923,9357380,24,0 ,17,923,7260228,32,0 ,44,15152,2017348,56,0 ,45,15153,5163076,16,0 ,4,15006,444488,15,5 ,4,15006,444496,14,5 ,4,15006,444504,14,5 ,4,15006,444512,16,5 ,4,15006,444520,14,5 ,4,15006,444528,14,5 ,4,15006,444536,14,5 ,4,15006,444544,14,5 ,20,19618,10406018,12,0 ,17,923,8308868,40,0 ,17,923,7784580,24,0 ,44,15152,3065988,32,0 ,44,15152,1493124,40,0 ,4,15006,444552,14,5 ,4,15006,444560,14,5 ,4,15006,444568,14,5 ,4,15006,444576,16,5 ,4,15006,444584,16,5 ,4,15006,444592,14,5 ,4,15006,444600,14,5 ,4,15006,444608,14,5 ,20,22907,19843266,280,0 ,20,26218,28231874,92,0 ,20,24812,24561858,20,0 ,45,15153,5163204,16,0 ,44,15152,3590340,40,0 ,45,15153,4114628,24,0 ,4,15006,444616,12,5 ,4,15006,444624,13,5 ,4,15006,444632,12,5 ,4,15006,444640,14,5 ,20,19619,10406114,12,0 ,4,15006,444648,15,5 ,4,15006,444656,16,5 ,4,15006,444664,14,5 ,4,15006,444672,14,5 ,17,923,9357572,48,0 ,17,923,6736132,24,0 ,17,923,8833284,32,0 ,4,15006,444680,14,5 ,4,15006,444688,14,5 ,4,15006,444696,15,5 ,4,15006,444704,14,5 ,4,15006,444712,14,5 ,4,15006,444720,12,5 ,4,15006,444728,14,5 ,4,15006,444736,13,5 ,20,19620,10406210,12,0 ,45,15153,5163332,16,0 ,17,923,7784772,24,0 ,17,923,7260484,40,0 ,44,15152,444740,104,0 ,4,15006,444744,13,5 ,4,15006,444752,14,5 ,4,15006,444760,16,5 ,4,15006,444768,14,5 ,20,21694,16697698,116,0 ,20,24813,24562018,76,0 ,4,15006,444776,14,5 ,4,15006,444784,14,5 ,4,15006,444792,16,5 ,4,15006,444800,13,5 ,20,20647,13552002,12,0 ,20,25287,25610626,616,0 ,20,15977,2017666,164,0 ,45,15153,4114820,16,0 ,44,15152,3066244,24,0 ,4,15006,444808,14,5 ,4,15006,444816,13,5 ,4,15006,444824,13,5 ,4,15006,444832,13,5 ,20,19845,10930594,196,0 ,20,19621,10406306,12,0 ,4,15006,444840,13,5 ,4,15006,444848,13,5 ,4,15006,444856,13,5 ,4,15006,444864,15,5 ,17,923,8309188,40,0 ,17,923,6736324,24,0 ,44,15152,1493444,48,0 ,44,15152,969156,16,0 ,45,15153,5163460,16,0 ,4,15006,444872,13,5 ,4,15006,444880,14,5 ,4,15006,444888,15,5 ,4,15006,444896,15,5 ,20,20648,13552098,92,0 ,20,20108,11454946,92,0 ,4,15006,444904,13,5 ,4,15006,444912,13,5 ,4,15006,444920,13,5 ,4,15006,444928,13,5 ,20,19622,10406402,12,0 ,17,923,8833540,32,0 ,17,923,7784964,24,0 ,44,15152,2017796,56,0 ,44,15152,3590660,32,0 ,45,15153,4114948,16,0 ,4,15006,444936,13,5 ,4,15006,444944,13,5 ,4,15006,444952,13,5 ,4,15006,444960,14,5 ,20,20397,13027874,12,0 ,4,15006,444968,12,5 ,4,15006,444976,13,5 ,4,15006,444984,13,5 ,4,15006,444992,13,5 ,45,15153,5163588,16,0 ,44,15152,3066436,32,0 ,44,15152,969284,40,0 ,4,15006,445000,13,5 ,4,15006,445008,13,5 ,4,15006,445016,13,5 ,4,15006,445024,13,5 ,20,23857,21940834,136,0 ,20,19623,10406498,92,0 ,4,15006,445032,13,5 ,4,15006,445040,13,5 ,4,15006,445048,13,5 ,4,15006,445056,13,5 ,20,20398,13027970,84,0 ,17,923,9882244,32,0 ,17,923,7260804,24,0 ,17,923,6736516,40,0 ,45,15153,4115076,40,0 ,17,923,9357956,24,0 ,4,15006,445064,13,5 ,4,15006,445072,13,5 ,4,15006,445080,13,5 ,4,15006,445088,13,5 ,4,15006,445096,12,5 ,4,15006,445104,13,5 ,4,15006,445112,13,5 ,4,15006,445120,14,5 ,45,15153,5163716,16,0 ,17,923,7785156,48,0 ,4,15006,445128,13,5 ,4,15006,445136,13,5 ,4,15006,445144,13,5 ,4,15006,445152,13,5 ,4,15006,445160,14,5 ,4,15006,445168,14,5 ,4,15006,445176,14,5 ,4,15006,445184,14,5 ,20,17927,6736642,304,0 ,17,923,8833796,48,0 ,44,15152,3590916,24,0 ,17,923,8309508,56,0 ,4,15006,445192,14,5 ,4,15006,445200,14,5 ,4,15006,445208,14,5 ,4,15006,445216,14,5 ,20,20893,14600994,4592,0 ,4,15006,445224,14,5 ,4,15006,445232,14,5 ,4,15006,445240,14,5 ,4,15006,445248,13,5 ,17,923,9358148,24,0 ,17,923,7260996,40,0 ,44,15152,3066692,24,0 ,44,15152,1493828,24,0 ,45,15153,5163844,40,0 ,4,15006,445256,14,5 ,4,15006,445264,14,5 ,4,15006,445272,14,5 ,4,15006,445280,14,5 ,4,15006,445288,14,5 ,4,15006,445296,14,5 ,4,15006,445304,14,5 ,4,15006,445312,14,5 ,17,923,9882500,16,0 ,44,15152,969604,128,0 ,4,15006,445320,14,5 ,4,15006,445328,14,5 ,4,15006,445336,14,5 ,4,15006,445344,14,5 ,20,26219,28232610,220,0 ,4,15006,445352,14,5 ,4,15006,445360,14,5 ,4,15006,445368,14,5 ,4,15006,445376,14,5 ,20,24814,24562626,80,0 ,45,15153,5688260,16,0 ,17,923,6736836,32,0 ,44,15152,2018244,88,0 ,44,15152,3591108,40,0 ,45,15153,4115396,16,0 ,4,15006,445384,14,5 ,4,15006,445392,14,5 ,4,15006,445400,14,5 ,4,15006,445408,14,5 ,4,15006,445416,14,5 ,4,15006,445424,14,5 ,4,15006,445432,14,5 ,4,15006,445440,14,5 ,17,923,9882628,40,0 ,44,15152,3066884,144,0 ,44,15152,1494020,72,0 ,17,923,9358340,24,0 ,4,15006,445448,14,5 ,4,15006,445456,14,5 ,4,15006,445464,14,5 ,4,15006,445472,14,5 ,4,15006,445480,14,5 ,4,15006,445488,14,5 ,4,15006,445496,14,5 ,4,15006,445504,14,5 ,20,18132,7261250,228,0 ,45,15153,5688388,16,0 ,17,923,7785540,32,0 ,44,15152,2542660,32,0 ,45,15153,4115524,32,0 ,4,15006,445512,14,5 ,4,15006,445520,14,5 ,4,15006,445528,14,5 ,4,15006,445536,14,5 ,4,15006,445544,14,5 ,4,15006,445552,14,5 ,4,15006,445560,14,5 ,4,15006,445568,14,5 ,17,923,8834180,32,0 ,17,923,7261316,32,0 ,44,15152,445572,24,0 ,45,15153,5164164,16,0 ,4,15006,445576,14,5 ,4,15006,445584,14,5 ,4,15006,445592,14,5 ,4,15006,445600,14,5 ,20,24645,24038562,428,0 ,4,15006,445608,14,5 ,4,15006,445616,14,5 ,4,15006,445624,14,5 ,4,15006,445632,14,5 ,20,21461,16174274,176,0 ,20,20109,11455682,12,0 ,20,20649,13552834,12,0 ,17,923,9358532,24,0 ,17,923,6737092,24,0 ,45,15153,5688516,16,0 ,17,923,8309956,40,0 ,4,15006,445640,14,5 ,4,15006,445648,14,5 ,4,15006,445656,14,5 ,4,15006,445664,14,5 ,4,15006,445672,14,5 ,4,15006,445680,14,5 ,4,15006,445688,14,5 ,4,15006,445696,14,5 ,20,21695,16698626,12,0 ,20,17261,5164290,12,0 ,45,15153,5164292,40,0 ,44,15152,3591428,32,0 ,4,15006,445704,14,5 ,4,15006,445712,14,5 ,4,15006,445720,14,5 ,4,15006,445728,14,5 ,20,22200,18271522,692,0 ,20,20110,11455778,412,0 ,20,20199,11980066,168,0 ,20,20399,13028642,440,0 ,20,20650,13552930,92,0 ,4,15006,445736,14,5 ,4,15006,445744,14,5 ,4,15006,445752,14,5 ,4,15006,445760,14,5 ,20,19624,10407234,12,0 ,17,923,9882948,16,0 ,17,923,7785796,24,0 ,44,15152,2542916,24,0 ,44,15152,445764,160,0 ,45,15153,4115780,24,0 ,45,15153,5688644,72,0 ,4,15006,445768,14,5 ,4,15006,445776,14,5 ,4,15006,445784,14,5 ,4,15006,445792,14,5 ,20,21696,16698722,88,0 ,20,17262,5164386,40,0 ,4,15006,445800,14,5 ,4,15006,445808,14,5 ,4,15006,445816,13,5 ,4,15006,445824,14,5 ,17,923,9358724,24,0 ,17,923,7261572,40,0 ,17,923,6737284,32,0 ,17,923,8834436,64,0 ,4,15006,445832,14,5 ,4,15006,445840,12,5 ,4,15006,445848,14,5 ,4,15006,445856,14,5 ,20,19625,10407330,12,0 ,4,15006,445864,14,5 ,4,15006,445872,14,5 ,4,15006,445880,14,5 ,4,15006,445888,14,5 ,20,24465,23514562,228,0 ,20,16864,4115906,112,0 ,17,923,9883076,24,0 ,4,15006,445896,14,5 ,4,15006,445904,14,5 ,4,15006,445912,14,5 ,4,15006,445920,14,5 ,20,22443,18796002,128,0 ,4,15006,445928,14,5 ,4,15006,445936,14,5 ,4,15006,445944,14,5 ,4,15006,445952,14,5 ,20,19626,10407426,544,0 ,17,923,8310276,56,0 ,17,923,7785988,32,0 ,44,15152,2543108,24,0 ,44,15152,3591684,32,0 ,45,15153,4115972,40,0 ,4,15006,445960,14,5 ,4,15006,445968,14,5 ,4,15006,445976,13,5 ,4,15006,445984,14,5 ,20,22656,19320354,188,0 ,4,15006,445992,14,5 ,4,15006,446000,14,5 ,4,15006,446008,14,5 ,4,15006,446016,14,5 ,20,24815,24563266,80,0 ,17,923,9358916,32,0 ,44,15152,1494596,208,0 ,45,15153,5164612,40,0 ,4,15006,446024,14,5 ,4,15006,446032,14,5 ,4,15006,446040,14,5 ,4,15006,446048,14,5 ,4,15006,446056,14,5 ,4,15006,446064,14,5 ,4,15006,446072,14,5 ,4,15006,446080,14,5 ,17,923,9883268,16,0 ,17,923,6737540,32,0 ,44,15152,2018948,56,0 ,4,15006,446088,14,5 ,4,15006,446096,14,5 ,4,15006,446104,14,5 ,4,15006,446112,14,5 ,20,23858,21941922,572,0 ,20,15978,2018978,68,0 ,20,17263,5164706,60,0 ,4,15006,446120,14,5 ,4,15006,446128,14,5 ,4,15006,446136,14,5 ,4,15006,446144,14,5 ,44,15152,2543300,40,0 ,17,923,7261892,24,0 ,4,15006,446152,14,5 ,4,15006,446160,14,5 ,4,15006,446168,14,5 ,4,15006,446176,14,5 ,4,15006,446184,14,5 ,4,15006,446192,14,5 ,4,15006,446200,14,5 ,4,15006,446208,14,5 ,17,923,9883396,16,0 ,17,923,7786244,40,0 ,44,15152,3591940,32,0 ,4,15006,446216,14,5 ,4,15006,446224,14,5 ,4,15006,446232,14,5 ,4,15006,446240,14,5 ,4,15006,446248,14,5 ,4,15006,446256,14,5 ,4,15006,446264,14,5 ,4,15006,446272,14,5 ,17,923,9359172,40,0 ,45,15153,4116292,16,0 ,4,15006,446280,14,5 ,4,15006,446288,14,5 ,4,15006,446296,14,5 ,4,15006,446304,14,5 ,4,15006,446312,14,5 ,4,15006,446320,14,5 ,4,15006,446328,14,5 ,4,15006,446336,14,5 ,17,923,9883524,24,0 ,17,923,7262084,64,0 ,17,923,6737796,40,0 ,44,15152,970628,40,0 ,45,15153,5164932,80,0 ,45,15153,5689220,72,0 ,17,923,8834948,24,0 ,4,15006,446344,14,5 ,4,15006,446352,14,5 ,4,15006,446360,14,5 ,4,15006,446368,14,5 ,4,15006,446376,14,5 ,4,15006,446384,14,5 ,4,15006,446392,14,5 ,4,15006,446400,14,5 ,20,19846,10932162,188,0 ,17,923,8310724,56,0 ,45,15153,4116420,16,0 ,4,15006,446408,14,5 ,4,15006,446416,14,5 ,4,15006,446424,14,5 ,4,15006,446432,14,5 ,4,15006,446440,14,5 ,4,15006,446448,14,5 ,4,15006,446456,14,5 ,4,15006,446464,14,5 ,20,20651,13553666,12,0 ,44,15152,3592196,240,0 ,44,15152,2543620,24,0 ,4,15006,446472,14,5 ,4,15006,446480,14,5 ,4,15006,446488,14,5 ,4,15006,446496,14,5 ,20,21697,16699426,172,0 ,4,15006,446504,14,5 ,4,15006,446512,14,5 ,4,15006,446520,14,5 ,4,15006,446528,14,5 ,20,21102,15650882,120,0 ,17,923,9883716,24,0 ,17,923,7786564,24,0 ,44,15152,2019396,88,0 ,45,15153,4116548,24,0 ,17,923,8835140,64,0 ,4,15006,446536,14,5 ,4,15006,446544,14,5 ,4,15006,446552,14,5 ,4,15006,446560,14,5 ,20,20652,13553762,228,0 ,20,18842,8835170,52,0 ,4,15006,446568,14,5 ,4,15006,446576,14,5 ,4,15006,446584,14,5 ,4,15006,446592,14,5 ,20,17264,5165186,60,0 ,17,923,9359492,24,0 ,44,15152,3068036,24,0 ,4,15006,446600,14,5 ,4,15006,446608,14,5 ,4,15006,446616,14,5 ,4,15006,446624,14,5 ,4,15006,446632,14,5 ,4,15006,446640,14,5 ,4,15006,446648,14,5 ,4,15006,446656,14,5 ,20,15979,2019522,68,0 ,20,24816,24563906,80,0 ,44,15152,970948,24,0 ,17,923,6738116,40,0 ,44,15152,2543812,24,0 ,4,15006,446664,14,5 ,4,15006,446672,14,5 ,4,15006,446680,14,5 ,4,15006,446688,14,5 ,4,15006,446696,14,5 ,4,15006,446704,14,5 ,4,15006,446712,13,5 ,4,15006,446720,14,5 ,17,923,9883908,16,0 ,17,923,7786756,56,0 ,45,15153,4116740,24,0 ,4,15006,446728,13,5 ,4,15006,446736,14,5 ,4,15006,446744,14,5 ,4,15006,446752,14,5 ,20,26047,27709730,564,0 ,4,15006,446760,14,5 ,4,15006,446768,14,5 ,4,15006,446776,14,5 ,4,15006,446784,14,5 ,20,23645,21418306,396,0 ,20,16865,4116802,712,0 ,17,923,9359684,24,0 ,44,15152,3068228,16,0 ,4,15006,446792,14,5 ,4,15006,446800,14,5 ,4,15006,446808,14,5 ,4,15006,446816,14,5 ,4,15006,446824,14,5 ,4,15006,446832,14,5 ,4,15006,446840,14,5 ,4,15006,446848,14,5 ,20,22908,19845506,144,0 ,17,923,9884036,16,0 ,17,923,7262596,24,0 ,44,15152,2544004,88,0 ,44,15152,971140,16,0 ,17,923,8311172,24,0 ,4,15006,446856,14,5 ,4,15006,446864,14,5 ,4,15006,446872,14,5 ,4,15006,446880,13,5 ,4,15006,446888,14,5 ,4,15006,446896,14,5 ,4,15006,446904,14,5 ,4,15006,446912,14,5 ,45,15153,5689796,64,0 ,44,15152,3068356,32,0 ,45,15153,4116932,16,0 ,4,15006,446920,13,5 ,4,15006,446928,14,5 ,4,15006,446936,14,5 ,4,15006,446944,14,5 ,20,22444,18797026,56,0 ,20,18349,7786978,12,0 ,4,15006,446952,14,5 ,4,15006,446960,14,5 ,4,15006,446968,14,5 ,4,15006,446976,12,5 ,20,18843,8835586,12,0 ,17,923,9884164,24,0 ,17,923,6738436,24,0 ,44,15152,971268,136,0 ,45,15153,5165572,40,0 ,17,923,9359876,40,0 ,4,15006,446984,16,5 ,4,15006,446992,14,5 ,4,15006,447000,14,5 ,4,15006,447008,14,5 ,4,15006,447016,14,5 ,4,15006,447024,14,5 ,4,15006,447032,13,5 ,4,15006,447040,14,5 ,20,21462,16175682,1324,0 ,20,18350,7787074,204,0 ,17,923,8835652,32,0 ,17,923,7262788,32,0 ,44,15152,447044,24,0 ,45,15153,4117060,24,0 ,17,923,8311364,56,0 ,4,15006,447048,14,5 ,4,15006,447056,14,5 ,4,15006,447064,14,5 ,4,15006,447072,14,5 ,20,20200,11981410,380,0 ,20,17265,5165666,68,0 ,20,18844,8835682,460,0 ,4,15006,447080,14,5 ,4,15006,447088,14,5 ,4,15006,447096,14,5 ,4,15006,447104,14,5 ,20,26220,28234370,660,0 ,4,15006,447112,14,5 ,4,15006,447120,14,5 ,4,15006,447128,14,5 ,4,15006,447136,14,5 ,4,15006,447144,14,5 ,4,15006,447152,14,5 ,4,15006,447160,14,5 ,4,15006,447168,14,5 ,17,923,9884356,24,0 ,17,923,7787204,56,0 ,17,923,6738628,32,0 ,44,15152,3068612,24,0 ,4,15006,447176,14,5 ,4,15006,447184,14,5 ,4,15006,447192,14,5 ,4,15006,447200,14,5 ,20,15980,2020066,80,0 ,4,15006,447208,13,5 ,4,15006,447216,14,5 ,4,15006,447224,14,5 ,4,15006,447232,14,5 ,45,15153,4117252,24,0 ,44,15152,2020100,56,0 ,44,15152,447236,32,0 ,4,15006,447240,14,5 ,4,15006,447248,14,5 ,4,15006,447256,14,5 ,4,15006,447264,14,5 ,20,26511,29283106,504,0 ,4,15006,447272,14,5 ,4,15006,447280,14,5 ,4,15006,447288,14,5 ,4,15006,447296,14,5 ,20,24817,24564546,56,0 ,17,923,9360196,24,0 ,17,923,7263044,32,0 ,45,15153,5165892,16,0 ,17,923,8835908,32,0 ,4,15006,447304,14,5 ,4,15006,447312,14,5 ,4,15006,447320,14,5 ,4,15006,447328,14,5 ,20,18133,7263074,12,0 ,4,15006,447336,14,5 ,4,15006,447344,14,5 ,4,15006,447352,14,5 ,4,15006,447360,14,5 ,17,923,9884548,24,0 ,44,15152,3068804,32,0 ,45,15153,4641668,16,0 ,4,15006,447368,14,5 ,4,15006,447376,14,5 ,4,15006,447384,14,5 ,4,15006,447392,14,5 ,20,22445,18797474,128,0 ,4,15006,447400,14,5 ,4,15006,447408,14,5 ,4,15006,447416,14,5 ,4,15006,447424,14,5 ,20,18134,7263170,984,0 ,45,15153,5690308,16,0 ,17,923,6738884,24,0 ,45,15153,4117444,32,0 ,45,15153,5166020,32,0 ,4,15006,447432,14,5 ,4,15006,447440,14,5 ,4,15006,447448,14,5 ,4,15006,447456,14,5 ,4,15006,447464,14,5 ,4,15006,447472,14,5 ,4,15006,447480,14,5 ,4,15006,447488,14,5 ,20,22657,19321858,276,0 ,20,21103,15651842,120,0 ,17,923,9360388,32,0 ,44,15152,447492,112,0 ,45,15153,4641796,96,0 ,17,923,8311812,48,0 ,4,15006,447496,14,5 ,4,15006,447504,14,5 ,4,15006,447512,14,5 ,4,15006,447520,14,5 ,4,15006,447528,14,5 ,4,15006,447536,14,5 ,4,15006,447544,14,5 ,4,15006,447552,14,5 ,17,923,9884740,24,0 ,17,923,7263300,24,0 ,44,15152,2544708,136,0 ,45,15153,5690436,40,0 ,17,923,8836164,48,0 ,4,15006,447560,14,5 ,4,15006,447568,14,5 ,4,15006,447576,14,5 ,4,15006,447584,13,5 ,4,15006,447592,14,5 ,4,15006,447600,14,5 ,4,15006,447608,13,5 ,4,15006,447616,14,5 ,20,17928,6739074,12,0 ,20,17266,5166210,3432,0 ,44,15152,3069060,24,0 ,17,923,7787652,32,0 ,17,923,6739076,24,0 ,4,15006,447624,14,5 ,4,15006,447632,14,5 ,4,15006,447640,14,5 ,4,15006,447648,14,5 ,4,15006,447656,14,5 ,4,15006,447664,14,5 ,4,15006,447672,14,5 ,4,15006,447680,14,5 ,45,15153,5166276,32,0 ,44,15152,2020548,56,0 ,44,15152,1496260,88,0 ,45,15153,4117700,24,0 ,4,15006,447688,13,5 ,4,15006,447696,12,5 ,4,15006,447704,14,5 ,4,15006,447712,14,5 ,20,24466,23516386,1092,0 ,20,17929,6739170,112,0 ,4,15006,447720,14,5 ,4,15006,447728,13,5 ,4,15006,447736,14,5 ,4,15006,447744,14,5 ,20,21914,17224962,60,0 ,20,24818,24564994,80,0 ,20,18605,8312066,348,0 ,17,923,9884932,24,0 ,17,923,7263492,32,0 ,17,923,9360644,24,0 ,4,15006,447752,14,5 ,4,15006,447760,14,5 ,4,15006,447768,14,5 ,4,15006,447776,14,5 ,4,15006,447784,14,5 ,4,15006,447792,14,5 ,4,15006,447800,14,5 ,4,15006,447808,12,5 ,44,15152,3069252,24,0 ,17,923,6739268,24,0 ,4,15006,447816,13,5 ,4,15006,447824,12,5 ,4,15006,447832,13,5 ,4,15006,447840,13,5 ,20,15981,2020706,80,0 ,4,15006,447848,13,5 ,4,15006,447856,13,5 ,4,15006,447864,13,5 ,4,15006,447872,12,5 ,20,21698,16700802,456,0 ,17,923,8312196,48,0 ,17,923,7787908,40,0 ,45,15153,4117892,40,0 ,45,15153,5690756,32,0 ,4,15006,447880,13,5 ,4,15006,447888,13,5 ,4,15006,447896,12,5 ,4,15006,447904,12,5 ,20,19847,10933666,480,0 ,4,15006,447912,12,5 ,4,15006,447920,13,5 ,4,15006,447928,13,5 ,4,15006,447936,12,5 ,17,923,9885124,32,0 ,45,15153,5166532,24,0 ,17,923,8836548,32,0 ,17,923,9360836,32,0 ,4,15006,447944,12,5 ,4,15006,447952,12,5 ,4,15006,447960,12,5 ,4,15006,447968,12,5 ,4,15006,447976,12,5 ,4,15006,447984,13,5 ,4,15006,447992,12,5 ,4,15006,448000,12,5 ,20,22909,19846658,132,0 ,44,15152,3069444,24,0 ,17,923,7263748,32,0 ,17,923,6739460,24,0 ,4,15006,448008,12,5 ,4,15006,448016,15,5 ,4,15006,448024,14,5 ,4,15006,448032,14,5 ,4,15006,448040,15,5 ,4,15006,448048,15,5 ,4,15006,448056,14,5 ,4,15006,448064,15,5 ,44,15152,972356,40,0 ,4,15006,448072,15,5 ,4,15006,448080,14,5 ,4,15006,448088,15,5 ,4,15006,448096,14,5 ,20,23200,20371042,120,0 ,20,26353,28759650,12,0 ,4,15006,448104,16,5 ,4,15006,448112,14,5 ,4,15006,448120,15,5 ,4,15006,448128,15,5 ,45,15153,5691012,64,0 ,44,15152,2020996,56,0 ,45,15153,5166724,32,0 ,4,15006,448136,15,5 ,4,15006,448144,14,5 ,4,15006,448152,14,5 ,4,15006,448160,14,5 ,4,15006,448168,15,5 ,4,15006,448176,14,5 ,4,15006,448184,15,5 ,4,15006,448192,15,5 ,20,26354,28759746,52,0 ,17,923,9885380,32,0 ,17,923,7788228,32,0 ,17,923,6739652,32,0 ,44,15152,3069636,32,0 ,45,15153,4118212,96,0 ,17,923,8836804,64,0 ,17,923,9361092,40,0 ,4,15006,448200,14,5 ,4,15006,448208,15,5 ,4,15006,448216,15,5 ,4,15006,448224,15,5 ,20,21915,17225442,60,0 ,4,15006,448232,14,5 ,4,15006,448240,15,5 ,4,15006,448248,15,5 ,4,15006,448256,15,5 ,17,923,8312580,56,0 ,17,923,7264004,24,0 ,45,15153,4642564,56,0 ,4,15006,448264,15,5 ,4,15006,448272,16,5 ,4,15006,448280,16,5 ,4,15006,448288,14,5 ,4,15006,448296,14,5 ,4,15006,448304,14,5 ,4,15006,448312,14,5 ,4,15006,448320,15,5 ,4,15006,448328,15,5 ,4,15006,448336,15,5 ,4,15006,448344,14,5 ,4,15006,448352,15,5 ,4,15006,448360,15,5 ,4,15006,448368,15,5 ,4,15006,448376,14,5 ,4,15006,448384,15,5 ,20,20653,13555586,228,0 ,20,24819,24565634,72,0 ,20,15763,1496962,564,0 ,45,15153,5166980,48,0 ,44,15152,1496964,24,0 ,44,15152,448388,32,0 ,44,15152,972676,24,0 ,44,15152,3594116,24,0 ,4,15006,448392,14,5 ,4,15006,448400,15,5 ,4,15006,448408,15,5 ,4,15006,448416,13,5 ,20,22446,18798498,1604,0 ,20,16133,2545570,1068,0 ,4,15006,448424,13,5 ,4,15006,448432,14,5 ,4,15006,448440,13,5 ,4,15006,448448,15,5 ,20,21104,15652802,120,0 ,17,923,9885636,24,0 ,17,923,7788484,24,0 ,17,923,7264196,32,0 ,17,923,6739908,32,0 ,44,15152,3069892,48,0 ,4,15006,448456,15,5 ,4,15006,448464,15,5 ,4,15006,448472,15,5 ,4,15006,448480,15,5 ,20,15982,2021346,80,0 ,20,15527,972770,176,0 ,4,15006,448488,15,5 ,4,15006,448496,15,5 ,4,15006,448504,15,5 ,4,15006,448512,15,5 ,17,923,9361412,32,0 ,4,15006,448520,15,5 ,4,15006,448528,15,5 ,4,15006,448536,15,5 ,4,15006,448544,15,5 ,20,24106,22468642,48,0 ,4,15006,448552,15,5 ,4,15006,448560,15,5 ,4,15006,448568,15,5 ,4,15006,448576,15,5 ,44,15152,3594308,64,0 ,44,15152,2021444,56,0 ,44,15152,1497156,88,0 ,44,15152,972868,24,0 ,4,15006,448584,15,5 ,4,15006,448592,14,5 ,4,15006,448600,14,5 ,4,15006,448608,14,5 ,20,17930,6740066,112,0 ,20,26355,28760162,208,0 ,4,15006,448616,14,5 ,4,15006,448624,14,5 ,4,15006,448632,14,5 ,4,15006,448640,14,5 ,17,923,9885828,24,0 ,17,923,7788676,32,0 ,44,15152,2545796,32,0 ,44,15152,448644,24,0 ,45,15153,5691524,104,0 ,4,15006,448648,14,5 ,4,15006,448656,14,5 ,4,15006,448664,14,5 ,4,15006,448672,14,5 ,20,18351,7788706,196,0 ,4,15006,448680,14,5 ,4,15006,448688,15,5 ,4,15006,448696,14,5 ,4,15006,448704,15,5 ,20,21916,17225922,12,0 ,17,923,8837316,24,0 ,17,923,7264452,32,0 ,17,923,6740164,32,0 ,45,15153,4643012,40,0 ,17,923,8313028,40,0 ,4,15006,448712,14,5 ,4,15006,448720,14,5 ,4,15006,448728,14,5 ,4,15006,448736,14,5 ,4,15006,448744,14,5 ,4,15006,448752,15,5 ,4,15006,448760,14,5 ,4,15006,448768,14,5 ,17,923,9361668,24,0 ,44,15152,973060,32,0 ,45,15153,5167364,32,0 ,4,15006,448776,14,5 ,4,15006,448784,14,5 ,4,15006,448792,14,5 ,4,15006,448800,14,5 ,20,21917,17226018,112,0 ,4,15006,448808,15,5 ,4,15006,448816,15,5 ,4,15006,448824,14,5 ,4,15006,448832,14,5 ,17,923,9886020,24,0 ,44,15152,3070276,32,0 ,44,15152,448836,88,0 ,4,15006,448840,14,5 ,4,15006,448848,15,5 ,4,15006,448856,14,5 ,4,15006,448864,14,5 ,4,15006,448872,14,5 ,4,15006,448880,14,5 ,4,15006,448888,14,5 ,4,15006,448896,15,5 ,17,923,8837508,64,0 ,17,923,7788932,48,0 ,44,15152,2546052,120,0 ,4,15006,448904,14,5 ,4,15006,448912,16,5 ,4,15006,448920,14,5 ,4,15006,448928,14,5 ,20,24107,22469026,120,0 ,4,15006,448936,14,5 ,4,15006,448944,14,5 ,4,15006,448952,14,5 ,4,15006,448960,14,5 ,20,24820,24566210,80,0 ,17,923,9361860,32,0 ,17,923,7264708,32,0 ,17,923,6740420,32,0 ,45,15153,4118980,24,0 ,4,15006,448968,14,5 ,4,15006,448976,14,5 ,4,15006,448984,15,5 ,4,15006,448992,14,5 ,4,15006,449000,15,5 ,4,15006,449008,14,5 ,4,15006,449016,14,5 ,4,15006,449024,14,5 ,20,20111,11459074,516,0 ,20,24646,24041986,80,0 ,17,923,9886212,24,0 ,44,15152,2021892,96,0 ,44,15152,973316,24,0 ,45,15153,4643332,48,0 ,45,15153,5167620,24,0 ,17,923,8313348,40,0 ,4,15006,449032,14,5 ,4,15006,449040,14,5 ,4,15006,449048,15,5 ,4,15006,449056,15,5 ,20,23201,20372002,240,0 ,20,22910,19847714,140,0 ,4,15006,449064,15,5 ,4,15006,449072,15,5 ,4,15006,449080,15,5 ,4,15006,449088,14,5 ,44,15152,3594820,88,0 ,44,15152,3070532,48,0 ,4,15006,449096,14,5 ,4,15006,449104,15,5 ,4,15006,449112,15,5 ,4,15006,449120,14,5 ,20,15983,2021986,80,0 ,4,15006,449128,14,5 ,4,15006,449136,15,5 ,4,15006,449144,14,5 ,4,15006,449152,15,5 ,45,15153,4119172,40,0 ,4,15006,449160,15,5 ,4,15006,449168,14,5 ,4,15006,449176,14,5 ,4,15006,449184,14,5 ,4,15006,449192,14,5 ,4,15006,449200,15,5 ,4,15006,449208,15,5 ,4,15006,449216,15,5 ,17,923,9886404,24,0 ,17,923,7264964,32,0 ,17,923,6740676,32,0 ,44,15152,973508,24,0 ,45,15153,5167812,24,0 ,17,923,9362116,48,0 ,4,15006,449224,14,5 ,4,15006,449232,14,5 ,4,15006,449240,14,5 ,4,15006,449248,15,5 ,20,20400,13032162,160,0 ,4,15006,449256,15,5 ,4,15006,449264,16,5 ,4,15006,449272,14,5 ,4,15006,449280,15,5 ,44,15152,1497860,24,0 ,17,923,7789316,40,0 ,4,15006,449288,15,5 ,4,15006,449296,15,5 ,4,15006,449304,15,5 ,4,15006,449312,15,5 ,4,15006,449320,15,5 ,4,15006,449328,15,5 ,4,15006,449336,14,5 ,4,15006,449344,14,5 ,17,923,8313668,96,0 ,4,15006,449352,14,5 ,4,15006,449360,14,5 ,4,15006,449368,14,5 ,4,15006,449376,14,5 ,4,15006,449384,14,5 ,4,15006,449392,15,5 ,4,15006,449400,15,5 ,4,15006,449408,15,5 ,20,21105,15653762,120,0 ,17,923,9886596,24,0 ,44,15152,973700,48,0 ,45,15153,4643716,56,0 ,45,15153,5168004,24,0 ,17,923,8838020,32,0 ,4,15006,449416,14,5 ,4,15006,449424,14,5 ,4,15006,449432,15,5 ,4,15006,449440,15,5 ,4,15006,449448,15,5 ,4,15006,449456,15,5 ,4,15006,449464,14,5 ,4,15006,449472,15,5 ,45,15153,5692356,16,0 ,17,923,7265220,32,0 ,17,923,6740932,32,0 ,44,15152,3070916,16,0 ,44,15152,1498052,88,0 ,45,15153,4119492,16,0 ,4,15006,449480,14,5 ,4,15006,449488,15,5 ,4,15006,449496,15,5 ,4,15006,449504,14,5 ,20,17931,6740962,72,0 ,4,15006,449512,15,5 ,4,15006,449520,15,5 ,4,15006,449528,14,5 ,4,15006,449536,14,5 ,20,16569,3595266,12,0 ,44,15152,449540,48,0 ,4,15006,449544,14,5 ,4,15006,449552,15,5 ,4,15006,449560,15,5 ,4,15006,449568,15,5 ,4,15006,449576,15,5 ,4,15006,449584,15,5 ,4,15006,449592,15,5 ,4,15006,449600,14,5 ,20,24821,24566850,24,0 ,17,923,9886788,24,0 ,17,923,7789636,40,0 ,44,15152,3071044,24,0 ,45,15153,4119620,16,0 ,45,15153,5168196,24,0 ,45,15153,5692484,16,0 ,17,923,9362500,48,0 ,4,15006,449608,14,5 ,4,15006,449616,15,5 ,4,15006,449624,15,5 ,4,15006,449632,15,5 ,20,16570,3595362,52,0 ,4,15006,449640,14,5 ,4,15006,449648,15,5 ,4,15006,449656,14,5 ,4,15006,449664,16,5 ,20,24647,24042626,56,0 ,17,923,8838276,32,0 ,4,15006,449672,16,5 ,4,15006,449680,16,5 ,4,15006,449688,14,5 ,4,15006,449696,15,5 ,20,22658,19324066,380,0 ,20,21918,17226914,160,0 ,4,15006,449704,15,5 ,4,15006,449712,15,5 ,4,15006,449720,15,5 ,4,15006,449728,15,5 ,20,25288,25615554,92,0 ,45,15153,5692612,48,0 ,17,923,7265476,32,0 ,17,923,6741188,32,0 ,45,15153,4119748,32,0 ,4,15006,449736,15,5 ,4,15006,449744,15,5 ,4,15006,449752,15,5 ,4,15006,449760,15,5 ,20,15984,2022626,180,0 ,4,15006,449768,15,5 ,4,15006,449776,15,5 ,4,15006,449784,15,5 ,4,15006,449792,15,5 ,20,24822,24567042,68,0 ,17,923,9886980,40,0 ,44,15152,3071236,24,0 ,44,15152,2022660,16,0 ,44,15152,974084,32,0 ,44,15152,3595524,48,0 ,45,15153,5168388,24,0 ,4,15006,449800,16,5 ,4,15006,449808,14,5 ,4,15006,449816,15,5 ,4,15006,449824,15,5 ,4,15006,449832,16,5 ,4,15006,449840,15,5 ,4,15006,449848,15,5 ,4,15006,449856,15,5 ,45,15153,4644164,16,0 ,44,15152,2547012,96,0 ,4,15006,449864,15,5 ,4,15006,449872,15,5 ,4,15006,449880,15,5 ,4,15006,449888,15,5 ,20,24108,22469986,112,0 ,20,15528,974178,12,0 ,4,15006,449896,14,5 ,4,15006,449904,14,5 ,4,15006,449912,16,5 ,4,15006,449920,15,5 ,17,923,8838532,48,0 ,17,923,7789956,24,0 ,44,15152,2022788,16,0 ,44,15152,449924,24,0 ,4,15006,449928,15,5 ,4,15006,449936,15,5 ,4,15006,449944,15,5 ,4,15006,449952,15,5 ,20,23646,21421474,440,0 ,4,15006,449960,14,5 ,4,15006,449968,15,5 ,4,15006,449976,15,5 ,4,15006,449984,15,5 ,20,21983,17751490,5264,0 ,20,15529,974274,688,0 ,17,923,9362884,32,0 ,17,923,7265732,32,0 ,17,923,6741444,32,0 ,44,15152,3071428,24,0 ,45,15153,4120004,24,0 ,45,15153,4644292,48,0 ,45,15153,5168580,24,0 ,4,15006,449992,15,5 ,4,15006,450000,15,5 ,4,15006,450008,15,5 ,4,15006,450016,15,5 ,4,15006,450024,15,5 ,4,15006,450032,15,5 ,4,15006,450040,15,5 ,4,15006,450048,15,5 ,20,16571,3595778,384,0 ,44,15152,974340,40,0 ,44,15152,2022916,16,0 ,4,15006,450056,14,5 ,4,15006,450064,15,5 ,4,15006,450072,15,5 ,4,15006,450080,15,5 ,20,17932,6741538,88,0 ,4,15006,450088,15,5 ,4,15006,450096,15,5 ,4,15006,450104,15,5 ,4,15006,450112,15,5 ,20,20201,11984450,144,0 ,20,24648,24043074,80,0 ,17,923,9887300,24,0 ,17,923,7790148,40,0 ,44,15152,450116,32,0 ,45,15153,5692996,24,0 ,17,923,8314436,24,0 ,4,15006,450120,15,5 ,4,15006,450128,15,5 ,4,15006,450136,15,5 ,4,15006,450144,15,5 ,4,15006,450152,14,5 ,4,15006,450160,14,5 ,4,15006,450168,14,5 ,4,15006,450176,14,5 ,20,22911,19848834,200,0 ,45,15153,5168772,32,0 ,44,15152,3071620,24,0 ,44,15152,2023044,16,0 ,44,15152,1498756,24,0 ,44,15152,3595908,24,0 ,45,15153,4120196,24,0 ,4,15006,450184,15,5 ,4,15006,450192,15,5 ,4,15006,450200,15,5 ,4,15006,450208,15,5 ,20,20654,13557410,120,0 ,4,15006,450216,15,5 ,4,15006,450224,15,5 ,4,15006,450232,15,5 ,4,15006,450240,15,5 ,20,18352,7790274,116,0 ,20,16219,3071682,12,0 ,17,923,9363140,24,0 ,17,923,7265988,56,0 ,17,923,6741700,24,0 ,4,15006,450248,15,5 ,4,15006,450256,16,5 ,4,15006,450264,15,5 ,4,15006,450272,15,5 ,20,26356,28761826,76,0 ,4,15006,450280,14,5 ,4,15006,450288,15,5 ,4,15006,450296,15,5 ,4,15006,450304,15,5 ,20,19627,10411778,112,0 ,17,923,9887492,24,0 ,44,15152,2023172,16,0 ,45,15153,5693188,32,0 ,17,923,8314628,64,0 ,17,923,8838916,32,0 ,4,15006,450312,15,5 ,4,15006,450320,15,5 ,4,15006,450328,15,5 ,4,15006,450336,15,5 ,20,16220,3071778,48,0 ,20,24823,24567586,96,0 ,4,15006,450344,15,5 ,4,15006,450352,15,5 ,4,15006,450360,15,5 ,4,15006,450368,15,5 ,20,21106,15654722,120,0 ,45,15153,4644676,72,0 ,44,15152,3071812,24,0 ,44,15152,1498948,24,0 ,44,15152,450372,32,0 ,44,15152,974660,40,0 ,44,15152,3596100,24,0 ,45,15153,4120388,24,0 ,4,15006,450376,15,5 ,4,15006,450384,15,5 ,4,15006,450392,15,5 ,4,15006,450400,15,5 ,4,15006,450408,15,5 ,4,15006,450416,14,5 ,4,15006,450424,14,5 ,4,15006,450432,15,5 ,17,923,9363332,32,0 ,17,923,7790468,48,0 ,17,923,6741892,32,0 ,44,15152,2023300,16,0 ,45,15153,5169028,16,0 ,4,15006,450440,15,5 ,4,15006,450448,14,5 ,4,15006,450456,14,5 ,4,15006,450464,14,5 ,20,25289,25616290,92,0 ,4,15006,450472,14,5 ,4,15006,450480,14,5 ,4,15006,450488,16,5 ,4,15006,450496,15,5 ,17,923,9887684,32,0 ,4,15006,450504,14,5 ,4,15006,450512,15,5 ,4,15006,450520,15,5 ,4,15006,450528,15,5 ,20,20401,13033442,328,0 ,20,18606,8314850,136,0 ,4,15006,450536,15,5 ,4,15006,450544,15,5 ,4,15006,450552,15,5 ,4,15006,450560,15,5 ,17,923,8839172,64,0 ,44,15152,3072004,24,0 ,44,15152,2023428,16,0 ,44,15152,1499140,24,0 ,44,15152,3596292,48,0 ,45,15153,4120580,16,0 ,45,15153,5169156,48,0 ,45,15153,5693444,16,0 ,4,15006,450568,15,5 ,4,15006,450576,15,5 ,4,15006,450584,14,5 ,4,15006,450592,15,5 ,4,15006,450600,14,5 ,4,15006,450608,15,5 ,4,15006,450616,15,5 ,4,15006,450624,14,5 ,44,15152,450628,32,0 ,44,15152,2547780,24,0 ,4,15006,450632,14,5 ,4,15006,450640,15,5 ,4,15006,450648,15,5 ,4,15006,450656,15,5 ,4,15006,450664,15,5 ,4,15006,450672,15,5 ,4,15006,450680,16,5 ,4,15006,450688,15,5 ,20,23859,21946498,56,0 ,20,25073,25092226,460,0 ,17,923,9363588,32,0 ,17,923,7266436,24,0 ,17,923,6742148,40,0 ,44,15152,2023556,48,0 ,44,15152,974980,72,0 ,45,15153,4120708,24,0 ,45,15153,5693572,72,0 ,4,15006,450696,15,5 ,4,15006,450704,15,5 ,4,15006,450712,15,5 ,4,15006,450720,15,5 ,20,16221,3072162,1804,0 ,4,15006,450728,15,5 ,4,15006,450736,15,5 ,4,15006,450744,15,5 ,4,15006,450752,16,5 ,20,18845,8839362,12,0 ,20,24649,24043714,260,0 ,17,923,9887940,48,0 ,44,15152,3072196,24,0 ,44,15152,1499332,40,0 ,4,15006,450760,14,5 ,4,15006,450768,15,5 ,4,15006,450776,15,5 ,4,15006,450784,15,5 ,20,24109,22470882,188,0 ,20,17933,6742242,304,0 ,4,15006,450792,15,5 ,4,15006,450800,15,5 ,4,15006,450808,15,5 ,4,15006,450816,15,5 ,17,923,8315140,16,0 ,17,923,7790852,24,0 ,44,15152,2547972,48,0 ,4,15006,450824,16,5 ,4,15006,450832,15,5 ,4,15006,450840,16,5 ,4,15006,450848,15,5 ,20,18846,8839458,148,0 ,4,15006,450856,15,5 ,4,15006,450864,15,5 ,4,15006,450872,15,5 ,4,15006,450880,15,5 ,20,26357,28762434,636,0 ,45,15153,4120900,16,0 ,17,923,7266628,24,0 ,44,15152,450884,24,0 ,4,15006,450888,15,5 ,4,15006,450896,15,5 ,4,15006,450904,15,5 ,4,15006,450912,14,5 ,4,15006,450920,16,5 ,4,15006,450928,14,5 ,4,15006,450936,14,5 ,4,15006,450944,14,5 ,17,923,9363844,24,0 ,44,15152,3072388,24,0 ,44,15152,3596676,40,0 ,45,15153,4645252,96,0 ,45,15153,5169540,40,0 ,17,923,8315268,24,0 ,4,15006,450952,15,5 ,4,15006,450960,15,5 ,4,15006,450968,15,5 ,4,15006,450976,15,5 ,20,23202,20373922,60,0 ,20,21919,17228194,952,0 ,4,15006,450984,15,5 ,4,15006,450992,15,5 ,4,15006,451000,15,5 ,4,15006,451008,15,5 ,45,15153,4121028,56,0 ,17,923,7791044,40,0 ,17,923,6742468,40,0 ,4,15006,451016,15,5 ,4,15006,451024,15,5 ,4,15006,451032,15,5 ,4,15006,451040,15,5 ,4,15006,451048,15,5 ,4,15006,451056,15,5 ,4,15006,451064,15,5 ,4,15006,451072,14,5 ,17,923,8839684,24,0 ,17,923,7266820,24,0 ,44,15152,2023940,16,0 ,44,15152,1499652,40,0 ,44,15152,451076,32,0 ,4,15006,451080,14,5 ,4,15006,451088,14,5 ,4,15006,451096,15,5 ,4,15006,451104,15,5 ,20,24824,24568354,220,0 ,4,15006,451112,15,5 ,4,15006,451120,15,5 ,4,15006,451128,15,5 ,4,15006,451136,15,5 ,20,23860,21946946,76,0 ,17,923,9888324,40,0 ,44,15152,3072580,24,0 ,17,923,8315460,56,0 ,17,923,9364036,32,0 ,4,15006,451144,15,5 ,4,15006,451152,15,5 ,4,15006,451160,15,5 ,4,15006,451168,15,5 ,20,20655,13558370,120,0 ,20,18353,7791202,60,0 ,4,15006,451176,15,5 ,4,15006,451184,15,5 ,4,15006,451192,15,5 ,4,15006,451200,15,5 ,20,19628,10412674,12,0 ,20,25290,25617026,4188,0 ,20,15985,2024066,84,0 ,44,15152,2024068,32,0 ,44,15152,2548356,40,0 ,4,15006,451208,15,5 ,4,15006,451216,15,5 ,4,15006,451224,15,5 ,4,15006,451232,15,5 ,4,15006,451240,15,5 ,4,15006,451248,15,5 ,4,15006,451256,15,5 ,4,15006,451264,15,5 ,20,22201,18277058,276,0 ,20,26048,27714242,168,0 ,20,20202,11985602,136,0 ,17,923,8839876,64,0 ,17,923,7267012,24,0 ,44,15152,975556,280,0 ,44,15152,3596996,24,0 ,45,15153,5169860,40,0 ,45,15153,5694148,24,0 ,4,15006,451272,15,5 ,4,15006,451280,15,5 ,4,15006,451288,15,5 ,4,15006,451296,15,5 ,20,19629,10412770,12,0 ,20,26512,29287138,220,0 ,4,15006,451304,15,5 ,4,15006,451312,15,5 ,4,15006,451320,15,5 ,4,15006,451328,15,5 ,20,21107,15655682,120,0 ,20,17679,6218498,12,0 ,44,15152,451332,32,0 ,17,923,7791364,24,0 ,17,923,6742788,24,0 ,44,15152,3072772,24,0 ,4,15006,451336,15,5 ,4,15006,451344,15,5 ,4,15006,451352,15,5 ,4,15006,451360,15,5 ,4,15006,451368,15,5 ,4,15006,451376,15,5 ,4,15006,451384,15,5 ,4,15006,451392,15,5 ,20,19630,10412866,12,0 ,17,923,9364292,32,0 ,44,15152,1499972,56,0 ,4,15006,451400,15,5 ,4,15006,451408,15,5 ,4,15006,451416,15,5 ,4,15006,451424,15,5 ,20,17680,6218594,176,0 ,4,15006,451432,15,5 ,4,15006,451440,15,5 ,4,15006,451448,15,5 ,4,15006,451456,15,5 ,20,23203,20374402,80,0 ,17,923,9888644,32,0 ,17,923,7267204,40,0 ,44,15152,2024324,24,0 ,44,15152,3597188,24,0 ,45,15153,4121476,24,0 ,45,15153,5694340,32,0 ,4,15006,451464,15,5 ,4,15006,451472,15,5 ,4,15006,451480,15,5 ,4,15006,451488,15,5 ,20,19631,10412962,12,0 ,4,15006,451496,14,5 ,4,15006,451504,14,5 ,4,15006,451512,14,5 ,4,15006,451520,14,5 ,20,21699,16704450,532,0 ,44,15152,2548676,16,0 ,17,923,7791556,24,0 ,17,923,6742980,24,0 ,44,15152,3072964,24,0 ,4,15006,451528,14,5 ,4,15006,451536,15,5 ,4,15006,451544,15,5 ,4,15006,451552,15,5 ,4,15006,451560,15,5 ,4,15006,451568,15,5 ,4,15006,451576,15,5 ,4,15006,451584,15,5 ,20,19632,10413058,12,0 ,17,923,8315908,24,0 ,44,15152,451588,24,0 ,45,15153,5170180,56,0 ,4,15006,451592,15,5 ,4,15006,451600,15,5 ,4,15006,451608,15,5 ,4,15006,451616,15,5 ,20,18607,8315938,540,0 ,20,15305,451618,1580,0 ,4,15006,451624,15,5 ,4,15006,451632,15,5 ,4,15006,451640,15,5 ,4,15006,451648,15,5 ,20,18354,7791682,44,0 ,17,923,9364548,24,0 ,44,15152,2548804,88,0 ,44,15152,2024516,24,0 ,44,15152,3597380,24,0 ,45,15153,4121668,80,0 ,4,15006,451656,15,5 ,4,15006,451664,15,5 ,4,15006,451672,15,5 ,4,15006,451680,15,5 ,20,19633,10413154,12,0 ,4,15006,451688,15,5 ,4,15006,451696,15,5 ,4,15006,451704,15,5 ,4,15006,451712,15,5 ,17,923,9888900,32,0 ,17,923,7791748,40,0 ,17,923,6743172,40,0 ,44,15152,3073156,24,0 ,45,15153,4646020,32,0 ,45,15153,5694596,160,0 ,4,15006,451720,15,5 ,4,15006,451728,15,5 ,4,15006,451736,15,5 ,4,15006,451744,15,5 ,20,23861,21947554,148,0 ,20,19848,10937506,128,0 ,4,15006,451752,15,5 ,4,15006,451760,15,5 ,4,15006,451768,15,5 ,4,15006,451776,15,5 ,20,22912,19850434,504,0 ,20,19634,10413250,12,0 ,17,923,8840388,32,0 ,17,923,7267524,24,0 ,44,15152,451780,40,0 ,17,923,8316100,40,0 ,4,15006,451784,14,5 ,4,15006,451792,15,5 ,4,15006,451800,15,5 ,4,15006,451808,15,5 ,4,15006,451816,15,5 ,4,15006,451824,14,5 ,4,15006,451832,14,5 ,4,15006,451840,14,5 ,17,923,9364740,24,0 ,44,15152,2024708,24,0 ,44,15152,1500420,32,0 ,44,15152,3597572,24,0 ,4,15006,451848,14,5 ,4,15006,451856,14,5 ,4,15006,451864,14,5 ,4,15006,451872,14,5 ,20,19635,10413346,12,0 ,20,15986,2024738,12,0 ,4,15006,451880,14,5 ,4,15006,451888,14,5 ,4,15006,451896,14,5 ,4,15006,451904,14,5 ,44,15152,3073348,40,0 ,4,15006,451912,15,5 ,4,15006,451920,15,5 ,4,15006,451928,15,5 ,4,15006,451936,15,5 ,4,15006,451944,15,5 ,4,15006,451952,15,5 ,4,15006,451960,15,5 ,4,15006,451968,15,5 ,20,19636,10413442,12,0 ,20,15987,2024834,88,0 ,17,923,9889156,40,0 ,17,923,7267716,24,0 ,45,15153,4646276,16,0 ,4,15006,451976,15,5 ,4,15006,451984,15,5 ,4,15006,451992,15,5 ,4,15006,452000,15,5 ,20,18355,7792034,32,0 ,4,15006,452008,15,5 ,4,15006,452016,15,5 ,4,15006,452024,15,5 ,4,15006,452032,15,5 ,20,18847,8840642,12,0 ,17,923,9364932,24,0 ,17,923,7792068,32,0 ,17,923,6743492,40,0 ,44,15152,2024900,24,0 ,44,15152,3597764,48,0 ,45,15153,5170628,40,0 ,17,923,8840644,32,0 ,4,15006,452040,15,5 ,4,15006,452048,15,5 ,4,15006,452056,15,5 ,4,15006,452064,15,5 ,20,19637,10413538,204,0 ,4,15006,452072,14,5 ,4,15006,452080,14,5 ,4,15006,452088,14,5 ,4,15006,452096,15,5 ,20,23204,20375042,88,0 ,17,923,8316420,32,0 ,44,15152,1500676,40,0 ,44,15152,452100,80,0 ,45,15153,4646404,32,0 ,4,15006,452104,15,5 ,4,15006,452112,15,5 ,4,15006,452120,15,5 ,4,15006,452128,14,5 ,20,20656,13559330,120,0 ,20,18848,8840738,108,0 ,4,15006,452136,15,5 ,4,15006,452144,15,5 ,4,15006,452152,15,5 ,4,15006,452160,15,5 ,17,923,7267908,32,0 ,4,15006,452168,15,5 ,4,15006,452176,15,5 ,4,15006,452184,15,5 ,4,15006,452192,15,5 ,4,15006,452200,15,5 ,4,15006,452208,15,5 ,4,15006,452216,15,5 ,4,15006,452224,15,5 ,17,923,9365124,24,0 ,44,15152,3073668,16,0 ,44,15152,2025092,24,0 ,4,15006,452232,14,5 ,4,15006,452240,15,5 ,4,15006,452248,15,5 ,4,15006,452256,15,5 ,20,18356,7792290,12,0 ,4,15006,452264,15,5 ,4,15006,452272,15,5 ,4,15006,452280,15,5 ,4,15006,452288,15,5 ,20,24110,22472386,104,0 ,20,21108,15656642,120,0 ,17,923,9889476,32,0 ,17,923,7792324,40,0 ,45,15153,4122308,56,0 ,17,923,8840900,48,0 ,4,15006,452296,14,5 ,4,15006,452304,15,5 ,4,15006,452312,15,5 ,4,15006,452320,15,5 ,4,15006,452328,15,5 ,4,15006,452336,15,5 ,4,15006,452344,15,5 ,4,15006,452352,15,5 ,20,20203,11986690,136,0 ,20,18357,7792386,100,0 ,17,923,8316676,32,0 ,17,923,6743812,24,0 ,44,15152,3073796,16,0 ,44,15152,2549508,56,0 ,45,15153,4646660,32,0 ,45,15153,5170948,56,0 ,4,15006,452360,15,5 ,4,15006,452368,15,5 ,4,15006,452376,15,5 ,4,15006,452384,15,5 ,20,26221,28239650,896,0 ,4,15006,452392,14,5 ,4,15006,452400,14,5 ,4,15006,452408,15,5 ,4,15006,452416,15,5 ,17,923,9365316,56,0 ,17,923,7268164,24,0 ,44,15152,2025284,24,0 ,44,15152,1500996,88,0 ,44,15152,3598148,32,0 ,4,15006,452424,15,5 ,4,15006,452432,15,5 ,4,15006,452440,15,5 ,4,15006,452448,15,5 ,4,15006,452456,14,5 ,4,15006,452464,15,5 ,4,15006,452472,15,5 ,4,15006,452480,14,5 ,20,16866,4122498,140,0 ,44,15152,3073924,24,0 ,4,15006,452488,15,5 ,4,15006,452496,14,5 ,4,15006,452504,15,5 ,4,15006,452512,14,5 ,4,15006,452520,14,5 ,4,15006,452528,15,5 ,4,15006,452536,14,5 ,4,15006,452544,15,5 ,17,923,9889732,24,0 ,17,923,6744004,40,0 ,4,15006,452552,14,5 ,4,15006,452560,14,5 ,4,15006,452568,14,5 ,4,15006,452576,14,5 ,4,15006,452584,14,5 ,4,15006,452592,14,5 ,4,15006,452600,14,5 ,4,15006,452608,14,5 ,20,26049,27715586,724,0 ,17,923,8316932,32,0 ,17,923,7792644,24,0 ,17,923,7268356,32,0 ,44,15152,2025476,24,0 ,45,15153,4646916,24,0 ,4,15006,452616,14,5 ,4,15006,452624,14,5 ,4,15006,452632,14,5 ,4,15006,452640,14,5 ,4,15006,452648,14,5 ,4,15006,452656,14,5 ,4,15006,452664,14,5 ,4,15006,452672,14,5 ,20,15988,2025538,368,0 ,17,923,8841284,32,0 ,44,15152,3074116,88,0 ,44,15152,3598404,56,0 ,4,15006,452680,14,5 ,4,15006,452688,14,5 ,4,15006,452696,14,5 ,4,15006,452704,14,5 ,4,15006,452712,14,5 ,4,15006,452720,14,5 ,4,15006,452728,14,5 ,4,15006,452736,14,5 ,20,22659,19327106,368,0 ,17,923,9889924,32,0 ,44,15152,452740,80,0 ,45,15153,4122756,24,0 ,4,15006,452744,14,5 ,4,15006,452752,14,5 ,4,15006,452760,14,5 ,4,15006,452768,14,5 ,20,19849,10938530,108,0 ,4,15006,452776,14,5 ,4,15006,452784,14,5 ,4,15006,452792,14,5 ,4,15006,452800,14,5 ,20,23205,20375746,200,0 ,20,25807,27191490,96,0 ,20,20824,14084290,24,0 ,45,15153,5171396,32,0 ,17,923,7792836,24,0 ,44,15152,2549956,80,0 ,44,15152,2025668,24,0 ,45,15153,4647108,56,0 ,4,15006,452808,14,5 ,4,15006,452816,14,5 ,4,15006,452824,14,5 ,4,15006,452832,14,5 ,20,17681,6220002,40,0 ,20,24650,24045794,440,0 ,4,15006,452840,14,5 ,4,15006,452848,14,5 ,4,15006,452856,14,5 ,4,15006,452864,14,5 ,20,24825,24570114,236,0 ,17,923,9365764,24,0 ,17,923,7268612,24,0 ,17,923,6744324,32,0 ,17,923,8317188,32,0 ,4,15006,452872,14,5 ,4,15006,452880,15,5 ,4,15006,452888,15,5 ,4,15006,452896,14,5 ,20,15764,1501474,1616,0 ,4,15006,452904,14,5 ,4,15006,452912,14,5 ,4,15006,452920,14,5 ,4,15006,452928,14,5 ,20,23862,21948738,148,0 ,17,923,8841540,64,0 ,45,15153,4122948,80,0 ,4,15006,452936,15,5 ,4,15006,452944,15,5 ,4,15006,452952,14,5 ,4,15006,452960,15,5 ,4,15006,452968,15,5 ,4,15006,452976,15,5 ,4,15006,452984,15,5 ,4,15006,452992,15,5 ,20,20825,14084482,264,0 ,20,18849,8841602,3528,0 ,17,923,9890180,24,0 ,17,923,7793028,32,0 ,44,15152,2025860,32,0 ,45,15153,5695876,40,0 ,4,15006,453000,15,5 ,4,15006,453008,15,5 ,4,15006,453016,15,5 ,4,15006,453024,15,5 ,4,15006,453032,15,5 ,4,15006,453040,15,5 ,4,15006,453048,15,5 ,4,15006,453056,15,5 ,20,26513,29288898,116,0 ,17,923,9365956,24,0 ,17,923,7268804,32,0 ,45,15153,5171652,16,0 ,4,15006,453064,15,5 ,4,15006,453072,15,5 ,4,15006,453080,15,5 ,4,15006,453088,15,5 ,20,20657,13560290,120,0 ,4,15006,453096,15,5 ,4,15006,453104,16,5 ,4,15006,453112,15,5 ,4,15006,453120,14,5 ,20,24111,22473218,128,0 ,20,16572,3598850,176,0 ,17,923,8317444,32,0 ,17,923,6744580,32,0 ,44,15152,1501700,48,0 ,44,15152,3598852,208,0 ,4,15006,453128,15,5 ,4,15006,453136,15,5 ,4,15006,453144,15,5 ,4,15006,453152,15,5 ,20,20402,13036066,80,0 ,20,17682,6220322,52,0 ,20,18358,7793186,204,0 ,20,20112,11463202,168,0 ,4,15006,453160,15,5 ,4,15006,453168,15,5 ,4,15006,453176,15,5 ,4,15006,453184,15,5 ,17,923,9890372,24,0 ,45,15153,5171780,80,0 ,4,15006,453192,15,5 ,4,15006,453200,15,5 ,4,15006,453208,15,5 ,4,15006,453216,15,5 ,20,17934,6744674,80,0 ,4,15006,453224,15,5 ,4,15006,453232,15,5 ,4,15006,453240,14,5 ,4,15006,453248,14,5 ,20,21109,15657602,120,0 ,17,923,9366148,32,0 ,17,923,7793284,32,0 ,44,15152,2026116,24,0 ,45,15153,4647556,48,0 ,4,15006,453256,14,5 ,4,15006,453264,14,5 ,4,15006,453272,14,5 ,4,15006,453280,15,5 ,4,15006,453288,15,5 ,4,15006,453296,15,5 ,4,15006,453304,14,5 ,4,15006,453312,14,5 ,45,15153,5696196,32,0 ,17,923,7269060,48,0 ,4,15006,453320,14,5 ,4,15006,453328,14,5 ,4,15006,453336,15,5 ,4,15006,453344,15,5 ,4,15006,453352,14,5 ,4,15006,453360,15,5 ,4,15006,453368,15,5 ,4,15006,453376,14,5 ,17,923,9890564,24,0 ,17,923,6744836,32,0 ,44,15152,3074820,56,0 ,44,15152,453380,24,0 ,17,923,8317700,32,0 ,4,15006,453384,15,5 ,4,15006,453392,14,5 ,4,15006,453400,12,5 ,4,15006,453408,14,5 ,4,15006,453416,15,5 ,4,15006,453424,14,5 ,4,15006,453432,15,5 ,4,15006,453440,15,5 ,20,20204,11987778,12,0 ,17,923,8842052,24,0 ,44,15152,2550596,24,0 ,44,15152,2026308,56,0 ,4,15006,453448,14,5 ,4,15006,453456,14,5 ,4,15006,453464,15,5 ,4,15006,453472,15,5 ,20,23647,21424994,384,0 ,20,22202,18279266,208,0 ,4,15006,453480,15,5 ,4,15006,453488,16,5 ,4,15006,453496,15,5 ,4,15006,453504,15,5 ,17,923,9366404,24,0 ,17,923,7793540,24,0 ,44,15152,1502084,24,0 ,44,15152,977796,56,0 ,4,15006,453512,15,5 ,4,15006,453520,15,5 ,4,15006,453528,14,5 ,4,15006,453536,14,5 ,20,20205,11987874,12,0 ,4,15006,453544,14,5 ,4,15006,453552,15,5 ,4,15006,453560,15,5 ,4,15006,453568,15,5 ,20,17683,6220738,224,0 ,20,25808,27192258,300,0 ,17,923,9890756,24,0 ,44,15152,453572,16,0 ,45,15153,4123588,16,0 ,45,15153,5696452,32,0 ,4,15006,453576,14,5 ,4,15006,453584,14,5 ,4,15006,453592,14,5 ,4,15006,453600,15,5 ,20,16867,4123618,120,0 ,4,15006,453608,14,5 ,4,15006,453616,14,5 ,4,15006,453624,14,5 ,4,15006,453632,14,5 ,20,20206,11987970,168,0 ,20,19850,10939394,492,0 ,17,923,8842244,64,0 ,17,923,6745092,24,0 ,44,15152,2550788,24,0 ,45,15153,4647940,24,0 ,17,923,8317956,40,0 ,4,15006,453640,15,5 ,4,15006,453648,15,5 ,4,15006,453656,12,5 ,4,15006,453664,14,5 ,4,15006,453672,12,5 ,4,15006,453680,12,5 ,37,15012,453688,5,2 ,37,15012,453696,5,2 ,20,19638,10415170,108,0 ,17,923,9366596,24,0 ,17,923,7793732,40,0 ,17,923,7269444,40,0 ,44,15152,1502276,88,0 ,44,15152,453700,104,0 ,45,15153,4123716,24,0 ,37,15012,453704,5,2 ,37,15012,453712,5,2 ,37,15012,453720,5,2 ,37,15012,453728,5,2 ,37,15012,453736,5,2 ,37,15012,453744,5,2 ,37,15012,453752,5,2 ,37,15012,453760,5,2 ,17,923,9890948,40,0 ,37,15012,453768,5,2 ,37,15012,453776,5,2 ,37,15012,453784,5,2 ,37,15012,453792,5,2 ,20,20403,13036706,12,0 ,37,15012,453800,5,2 ,38,15013,453808,16,5 ,38,15013,453816,16,5 ,38,15013,453824,16,5 ,45,15153,5696708,120,0 ,17,923,6745284,24,0 ,44,15152,3075268,136,0 ,44,15152,2550980,24,0 ,45,15153,4648132,16,0 ,45,15153,5172420,24,0 ,38,15013,453832,16,5 ,38,15013,453840,16,5 ,38,15013,453848,16,5 ,38,15013,453856,16,5 ,20,17935,6745314,152,0 ,38,15013,453864,16,5 ,38,15013,453872,16,5 ,38,15013,453880,16,5 ,38,15013,453888,16,5 ,20,20404,13036802,84,0 ,17,923,9366788,64,0 ,44,15152,2026756,24,0 ,45,15153,4123908,24,0 ,38,15013,453896,16,5 ,38,15013,453904,16,5 ,38,15013,453912,16,5 ,38,15013,453920,16,5 ,38,15013,453928,16,5 ,38,15013,453936,16,5 ,38,15013,453944,16,5 ,38,15013,453952,16,5 ,17,923,8318276,40,0 ,44,15152,978244,80,0 ,45,15153,4648260,24,0 ,38,15013,453960,16,5 ,38,15013,453968,16,5 ,38,15013,453976,16,5 ,38,15013,453984,16,5 ,20,26514,29289826,316,0 ,38,15013,453992,16,5 ,38,15013,454000,17,5 ,38,15013,454008,17,5 ,38,15013,454016,16,5 ,45,15153,5172612,16,0 ,17,923,7794052,24,0 ,17,923,7269764,48,0 ,17,923,6745476,24,0 ,44,15152,2551172,24,0 ,38,15013,454024,16,5 ,38,15013,454032,16,5 ,38,15013,454040,16,5 ,38,15013,454048,16,5 ,20,20658,13561250,120,0 ,38,15013,454056,16,5 ,38,15013,454064,17,5 ,38,15013,454072,17,5 ,38,15013,454080,17,5 ,17,923,9891268,24,0 ,44,15152,2026948,32,0 ,45,15153,4124100,16,0 ,38,15013,454088,17,5 ,38,15013,454096,17,5 ,38,15013,454104,17,5 ,38,15013,454112,17,5 ,20,23863,21949922,72,0 ,38,15013,454120,17,5 ,38,15013,454128,17,5 ,38,15013,454136,17,5 ,38,15013,454144,16,5 ,20,24112,22474242,116,0 ,17,923,8842756,32,0 ,45,15153,4648452,32,0 ,45,15153,5172740,32,0 ,38,15013,454152,16,5 ,38,15013,454160,15,5 ,38,15013,454168,16,5 ,38,15013,454176,16,5 ,38,15013,454184,16,5 ,38,15013,454192,16,5 ,38,15013,454200,16,5 ,38,15013,454208,16,5 ,20,21110,15658562,120,0 ,45,15153,4124228,32,0 ,17,923,7794244,72,0 ,17,923,6745668,32,0 ,44,15152,2551364,32,0 ,38,15013,454216,16,5 ,38,15013,454224,16,5 ,38,15013,454232,16,5 ,38,15013,454240,16,5 ,38,15013,454248,16,5 ,38,15013,454256,16,5 ,38,15013,454264,16,5 ,38,15013,454272,16,5 ,17,923,9891460,24,0 ,17,923,8318596,48,0 ,38,15013,454280,16,5 ,38,15013,454288,16,5 ,38,15013,454296,16,5 ,38,15013,454304,16,5 ,38,15013,454312,16,5 ,38,15013,454320,16,5 ,38,15013,454328,16,5 ,38,15013,454336,16,5 ,44,15152,2027204,24,0 ,38,15013,454344,16,5 ,38,15013,454352,16,5 ,38,15013,454360,16,5 ,38,15013,454368,16,5 ,20,19259,9891554,12,0 ,20,25074,25095906,448,0 ,38,15013,454376,16,5 ,38,15013,454384,16,5 ,38,15013,454392,16,5 ,38,15013,454400,16,5 ,20,23206,20377346,220,0 ,17,923,9367300,24,0 ,17,923,7270148,40,0 ,44,15152,1502980,64,0 ,45,15153,4648708,16,0 ,45,15153,5172996,64,0 ,17,923,8843012,32,0 ,38,15013,454408,16,5 ,38,15013,454416,16,5 ,38,15013,454424,16,5 ,38,15013,454432,16,5 ,38,15013,454440,16,5 ,38,15013,454448,16,5 ,38,15013,454456,16,5 ,38,15013,454464,16,5 ,20,19260,9891650,108,0 ,17,923,9891652,32,0 ,17,923,6745924,40,0 ,44,15152,2551620,24,0 ,45,15153,4124484,40,0 ,38,15013,454472,16,5 ,38,15013,454480,16,5 ,38,15013,454488,16,5 ,38,15013,454496,17,5 ,20,20113,11464546,12,0 ,38,15013,454504,17,5 ,38,15013,454512,16,5 ,38,15013,454520,16,5 ,38,15013,454528,16,5 ,20,16573,3600258,196,0 ,45,15153,4648836,24,0 ,44,15152,2027396,24,0 ,44,15152,454532,216,0 ,38,15013,454536,16,5 ,38,15013,454544,16,5 ,38,15013,454552,16,5 ,38,15013,454560,16,5 ,20,20405,13037474,440,0 ,20,16868,4124578,760,0 ,20,19639,10416034,112,0 ,38,15013,454568,16,5 ,38,15013,454576,16,5 ,38,15013,454584,16,5 ,38,15013,454592,16,5 ,20,20114,11464642,248,0 ,17,923,9367492,40,0 ,44,15152,978884,32,0 ,38,15013,454600,16,5 ,38,15013,454608,16,5 ,38,15013,454616,16,5 ,38,15013,454624,16,5 ,38,15013,454632,16,5 ,38,15013,454640,17,5 ,38,15013,454648,17,5 ,38,15013,454656,17,5 ,17,923,8843268,48,0 ,44,15152,2551812,24,0 ,17,923,8318980,56,0 ,38,15013,454664,17,5 ,38,15013,454672,16,5 ,38,15013,454680,16,5 ,38,15013,454688,16,5 ,20,23864,21950498,120,0 ,38,15013,454696,16,5 ,38,15013,454704,17,5 ,38,15013,454712,17,5 ,38,15013,454720,16,5 ,17,923,9891908,24,0 ,17,923,7270468,48,0 ,44,15152,2027588,40,0 ,45,15153,4649028,32,0 ,38,15013,454728,16,5 ,38,15013,454736,17,5 ,38,15013,454744,17,5 ,38,15013,454752,16,5 ,20,24826,24572002,388,0 ,38,15013,454760,16,5 ,38,15013,454768,17,5 ,38,15013,454776,17,5 ,38,15013,454784,16,5 ,20,18359,7794818,88,0 ,45,15153,5697668,32,0 ,17,923,7794820,40,0 ,17,923,6746244,40,0 ,44,15152,3600516,24,0 ,45,15153,4124804,24,0 ,38,15013,454792,16,5 ,38,15013,454800,16,5 ,38,15013,454808,16,5 ,38,15013,454816,16,5 ,38,15013,454824,16,5 ,38,15013,454832,16,5 ,38,15013,454840,16,5 ,38,15013,454848,16,5 ,44,15152,979140,40,0 ,44,15152,2552004,48,0 ,38,15013,454856,16,5 ,38,15013,454864,16,5 ,38,15013,454872,16,5 ,38,15013,454880,16,5 ,38,15013,454888,16,5 ,38,15013,454896,16,5 ,38,15013,454904,16,5 ,38,15013,454912,16,5 ,17,923,9892100,24,0 ,44,15152,3076356,24,0 ,44,15152,1503492,80,0 ,45,15153,5173508,40,0 ,17,923,9367812,24,0 ,38,15013,454920,16,5 ,38,15013,454928,17,5 ,38,15013,454936,17,5 ,38,15013,454944,16,5 ,38,15013,454952,16,5 ,38,15013,454960,16,5 ,38,15013,454968,16,5 ,38,15013,454976,16,5 ,20,20207,11989314,296,0 ,45,15153,4649284,16,0 ,44,15152,3600708,24,0 ,45,15153,4124996,16,0 ,38,15013,454984,16,5 ,38,15013,454992,16,5 ,38,15013,455000,16,5 ,38,15013,455008,16,5 ,20,20659,13562210,12,0 ,38,15013,455016,16,5 ,38,15013,455024,16,5 ,38,15013,455032,16,5 ,38,15013,455040,16,5 ,17,923,8843652,32,0 ,44,15152,2027908,24,0 ,45,15153,5697924,48,0 ,38,15013,455048,16,5 ,38,15013,455056,16,5 ,38,15013,455064,16,5 ,38,15013,455072,16,5 ,20,24113,22475170,320,0 ,20,17936,6746530,80,0 ,38,15013,455080,16,5 ,38,15013,455088,16,5 ,38,15013,455096,16,5 ,38,15013,455104,16,5 ,20,20826,14086594,24,0 ,20,20660,13562306,12,0 ,17,923,9892292,24,0 ,17,923,7795140,32,0 ,17,923,7270852,24,0 ,17,923,6746564,40,0 ,44,15152,3076548,24,0 ,45,15153,4125124,32,0 ,45,15153,4649412,16,0 ,17,923,8319428,24,0 ,17,923,9368004,64,0 ,38,15013,455112,16,5 ,38,15013,455120,16,5 ,38,15013,455128,16,5 ,38,15013,455136,17,5 ,20,22203,18280930,400,0 ,38,15013,455144,17,5 ,38,15013,455152,16,5 ,38,15013,455160,16,5 ,38,15013,455168,16,5 ,20,21111,15659522,120,0 ,44,15152,3600900,24,0 ,44,15152,979460,64,0 ,38,15013,455176,16,5 ,38,15013,455184,16,5 ,38,15013,455192,16,5 ,38,15013,455200,16,5 ,20,20661,13562402,140,0 ,38,15013,455208,16,5 ,38,15013,455216,16,5 ,38,15013,455224,16,5 ,38,15013,455232,16,5 ,45,15153,5173828,56,0 ,44,15152,2552388,64,0 ,44,15152,2028100,24,0 ,45,15153,4649540,16,0 ,38,15013,455240,16,5 ,38,15013,455248,16,5 ,38,15013,455256,16,5 ,38,15013,455264,16,5 ,38,15013,455272,16,5 ,38,15013,455280,16,5 ,38,15013,455288,16,5 ,38,15013,455296,16,5 ,20,20827,14086786,232,0 ,20,18135,7271042,52,0 ,17,923,9892484,24,0 ,17,923,7271044,32,0 ,44,15152,3076740,24,0 ,17,923,8319620,32,0 ,17,923,8843908,64,0 ,38,15013,455304,16,5 ,38,15013,455312,16,5 ,38,15013,455320,16,5 ,38,15013,455328,16,5 ,20,19261,9892514,104,0 ,38,15013,455336,16,5 ,38,15013,455344,16,5 ,38,15013,455352,17,5 ,38,15013,455360,17,5 ,20,17684,6222530,40,0 ,45,15153,4649668,16,0 ,17,923,7795396,32,0 ,44,15152,3601092,24,0 ,45,15153,4125380,40,0 ,38,15013,455368,16,5 ,38,15013,455376,16,5 ,38,15013,455384,16,5 ,38,15013,455392,16,5 ,38,15013,455400,17,5 ,38,15013,455408,17,5 ,38,15013,455416,16,5 ,38,15013,455424,16,5 ,45,15153,5698308,40,0 ,17,923,6746884,32,0 ,44,15152,2028292,24,0 ,38,15013,455432,16,5 ,38,15013,455440,17,5 ,38,15013,455448,17,5 ,38,15013,455456,16,5 ,20,19640,10416930,12,0 ,38,15013,455464,16,5 ,38,15013,455472,16,5 ,38,15013,455480,16,5 ,38,15013,455488,16,5 ,20,18360,7795522,52,0 ,20,15530,979778,332,0 ,17,923,9892676,24,0 ,44,15152,3076932,24,0 ,45,15153,4649796,16,0 ,38,15013,455496,17,5 ,38,15013,455504,17,5 ,38,15013,455512,16,5 ,38,15013,455520,16,5 ,38,15013,455528,16,5 ,38,15013,455536,16,5 ,38,15013,455544,16,5 ,38,15013,455552,17,5 ,20,19641,10417026,12,0 ,17,923,8319876,24,0 ,17,923,7271300,32,0 ,44,15152,1504132,48,0 ,44,15152,3601284,48,0 ,38,15013,455560,17,5 ,38,15013,455568,16,5 ,38,15013,455576,16,5 ,38,15013,455584,16,5 ,38,15013,455592,17,5 ,38,15013,455600,17,5 ,38,15013,455608,16,5 ,38,15013,455616,16,5 ,20,15989,2028482,12,0 ,17,923,9368516,24,0 ,17,923,7795652,24,0 ,44,15152,2028484,24,0 ,45,15153,4649924,48,0 ,38,15013,455624,16,5 ,38,15013,455632,16,5 ,38,15013,455640,16,5 ,38,15013,455648,16,5 ,20,23865,21951458,200,0 ,20,19642,10417122,12,0 ,38,15013,455656,16,5 ,38,15013,455664,16,5 ,38,15013,455672,16,5 ,38,15013,455680,16,5 ,20,22660,19330050,312,0 ,20,17685,6222850,352,0 ,17,923,9892868,32,0 ,17,923,6747140,32,0 ,44,15152,3077124,24,0 ,44,15152,979972,16,0 ,45,15153,4125700,24,0 ,45,15153,5174276,56,0 ,38,15013,455688,16,5 ,38,15013,455696,16,5 ,38,15013,455704,16,5 ,38,15013,455712,16,5 ,20,18136,7271458,52,0 ,20,15990,2028578,88,0 ,20,17937,6747170,52,0 ,38,15013,455720,16,5 ,38,15013,455728,17,5 ,38,15013,455736,17,5 ,38,15013,455744,16,5 ,20,19643,10417218,12,0 ,17,923,8320068,32,0 ,44,15152,2552900,72,0 ,45,15153,5698628,360,0 ,38,15013,455752,17,5 ,38,15013,455760,17,5 ,38,15013,455768,16,5 ,38,15013,455776,16,5 ,20,21700,16708706,1036,0 ,38,15013,455784,16,5 ,38,15013,455792,16,5 ,38,15013,455800,16,5 ,38,15013,455808,16,5 ,20,22913,19854466,192,0 ,17,923,9368708,48,0 ,17,923,7795844,24,0 ,17,923,7271556,40,0 ,44,15152,2028676,24,0 ,44,15152,980100,24,0 ,17,923,8844420,24,0 ,38,15013,455816,16,5 ,38,15013,455824,16,5 ,38,15013,455832,16,5 ,38,15013,455840,16,5 ,20,19644,10417314,216,0 ,38,15013,455848,16,5 ,38,15013,455856,16,5 ,38,15013,455864,17,5 ,38,15013,455872,17,5 ,45,15153,4125892,32,0 ,44,15152,3077316,24,0 ,38,15013,455880,17,5 ,38,15013,455888,16,5 ,38,15013,455896,16,5 ,38,15013,455904,16,5 ,20,18361,7795938,204,0 ,38,15013,455912,16,5 ,38,15013,455920,16,5 ,38,15013,455928,16,5 ,38,15013,455936,16,5 ,20,18608,8320258,1368,0 ,17,923,9893124,24,0 ,17,923,6747396,24,0 ,44,15152,1504516,88,0 ,44,15152,3601668,16,0 ,38,15013,455944,16,5 ,38,15013,455952,16,5 ,38,15013,455960,16,5 ,38,15013,455968,16,5 ,20,25809,27194658,356,0 ,20,26358,28767522,32,0 ,38,15013,455976,16,5 ,38,15013,455984,16,5 ,38,15013,455992,16,5 ,38,15013,456000,16,5 ,17,923,8844612,64,0 ,17,923,7796036,40,0 ,44,15152,2028868,24,0 ,44,15152,980292,24,0 ,45,15153,4650308,16,0 ,17,923,8320324,32,0 ,38,15013,456008,16,5 ,38,15013,456016,16,5 ,38,15013,456024,16,5 ,38,15013,456032,16,5 ,38,15013,456040,16,5 ,38,15013,456048,16,5 ,38,15013,456056,16,5 ,38,15013,456064,16,5 ,44,15152,3601796,24,0 ,44,15152,3077508,32,0 ,38,15013,456072,16,5 ,38,15013,456080,16,5 ,38,15013,456088,16,5 ,38,15013,456096,16,5 ,20,16574,3601826,272,0 ,38,15013,456104,16,5 ,38,15013,456112,16,5 ,38,15013,456120,16,5 ,38,15013,456128,16,5 ,20,21112,15660482,24,0 ,20,17938,6747586,224,0 ,20,18137,7271874,52,0 ,17,923,9893316,24,0 ,17,923,7271876,40,0 ,17,923,6747588,32,0 ,45,15153,4126148,32,0 ,45,15153,4650436,96,0 ,45,15153,5174724,88,0 ,38,15013,456136,16,5 ,38,15013,456144,16,5 ,38,15013,456152,16,5 ,38,15013,456160,16,5 ,20,23207,20379106,12,0 ,20,19262,9893346,108,0 ,38,15013,456168,16,5 ,38,15013,456176,16,5 ,38,15013,456184,16,5 ,38,15013,456192,16,5 ,17,923,9369092,56,0 ,44,15152,2029060,24,0 ,44,15152,980484,16,0 ,38,15013,456200,16,5 ,38,15013,456208,16,5 ,38,15013,456216,16,5 ,38,15013,456224,16,5 ,20,26359,28767778,268,0 ,38,15013,456232,16,5 ,38,15013,456240,16,5 ,38,15013,456248,16,5 ,38,15013,456256,16,5 ,20,23208,20379202,352,0 ,17,923,8320580,40,0 ,44,15152,456260,40,0 ,44,15152,3601988,24,0 ,38,15013,456264,16,5 ,38,15013,456272,16,5 ,38,15013,456280,16,5 ,38,15013,456288,16,5 ,38,15013,456296,16,5 ,38,15013,456304,16,5 ,38,15013,456312,16,5 ,38,15013,456320,16,5 ,20,21113,15660674,36,0 ,20,20662,13563522,48,0 ,17,923,9893508,32,0 ,17,923,7796356,24,0 ,44,15152,3077764,16,0 ,44,15152,2553476,24,0 ,44,15152,980612,200,0 ,38,15013,456328,16,5 ,38,15013,456336,16,5 ,38,15013,456344,16,5 ,38,15013,456352,16,5 ,20,24651,24049314,544,0 ,38,15013,456360,16,5 ,38,15013,456368,16,5 ,38,15013,456376,16,5 ,38,15013,456384,16,5 ,45,15153,4126404,32,0 ,17,923,6747844,48,0 ,44,15152,2029252,24,0 ,38,15013,456392,16,5 ,38,15013,456400,16,5 ,38,15013,456408,16,5 ,38,15013,456416,16,5 ,20,15991,2029282,100,0 ,38,15013,456424,16,5 ,38,15013,456432,16,5 ,38,15013,456440,16,5 ,38,15013,456448,16,5 ,20,24467,23525122,144,0 ,44,15152,3602180,24,0 ,17,923,7272196,32,0 ,44,15152,3077892,56,0 ,38,15013,456456,16,5 ,38,15013,456464,16,5 ,38,15013,456472,16,5 ,38,15013,456480,16,5 ,38,15013,456488,16,5 ,38,15013,456496,16,5 ,38,15013,456504,16,5 ,38,15013,456512,16,5 ,20,26515,29292354,316,0 ,17,923,8845124,32,0 ,17,923,7796548,40,0 ,44,15152,2553668,24,0 ,38,15013,456520,16,5 ,38,15013,456528,16,5 ,38,15013,456536,16,5 ,38,15013,456544,16,5 ,20,23648,21428066,628,0 ,20,18138,7272290,12,0 ,38,15013,456552,16,5 ,38,15013,456560,16,5 ,38,15013,456568,16,5 ,38,15013,456576,16,5 ,20,20115,11466626,80,0 ,17,923,9893764,48,0 ,44,15152,2029444,24,0 ,44,15152,456580,104,0 ,17,923,8320900,48,0 ,38,15013,456584,16,5 ,38,15013,456592,17,5 ,38,15013,456600,17,5 ,38,15013,456608,17,5 ,20,21114,15660962,144,0 ,38,15013,456616,17,5 ,38,15013,456624,16,5 ,38,15013,456632,16,5 ,38,15013,456640,16,5 ,20,18139,7272386,1136,0 ,17,923,9369540,40,0 ,44,15152,1505220,24,0 ,44,15152,3602372,24,0 ,45,15153,4126660,16,0 ,38,15013,456648,16,5 ,38,15013,456656,16,5 ,38,15013,456664,16,5 ,38,15013,456672,16,5 ,38,15013,456680,16,5 ,38,15013,456688,16,5 ,38,15013,456696,16,5 ,38,15013,456704,16,5 ,20,20663,13563906,460,0 ,44,15152,2553860,16,0 ,17,923,7272452,24,0 ,38,15013,456712,16,5 ,38,15013,456720,16,5 ,38,15013,456728,16,5 ,38,15013,456736,16,5 ,38,15013,456744,16,5 ,38,15013,456752,16,5 ,38,15013,456760,16,5 ,38,15013,456768,16,5 ,17,923,8845380,32,0 ,17,923,6748228,32,0 ,44,15152,2029636,32,0 ,45,15153,4126788,32,0 ,38,15013,456776,16,5 ,38,15013,456784,16,5 ,38,15013,456792,16,5 ,38,15013,456800,16,5 ,38,15013,456808,16,5 ,38,15013,456816,16,5 ,38,15013,456824,16,5 ,38,15013,456832,16,5 ,45,15153,5175428,16,0 ,17,923,7796868,40,0 ,44,15152,2553988,16,0 ,44,15152,1505412,24,0 ,44,15152,3602564,32,0 ,38,15013,456840,16,5 ,38,15013,456848,16,5 ,38,15013,456856,16,5 ,38,15013,456864,16,5 ,38,15013,456872,16,5 ,38,15013,456880,16,5 ,38,15013,456888,16,5 ,38,15013,456896,16,5 ,45,15153,4651204,96,0 ,17,923,7272644,32,0 ,44,15152,3078340,56,0 ,38,15013,456904,16,5 ,38,15013,456912,16,5 ,38,15013,456920,17,5 ,38,15013,456928,17,5 ,38,15013,456936,17,5 ,38,15013,456944,17,5 ,38,15013,456952,16,5 ,38,15013,456960,16,5 ,20,16134,2554114,512,0 ,17,923,9894148,48,0 ,44,15152,2554116,24,0 ,45,15153,5175556,40,0 ,17,923,8321284,48,0 ,17,923,9369860,48,0 ,38,15013,456968,16,5 ,38,15013,456976,16,5 ,38,15013,456984,16,5 ,38,15013,456992,16,5 ,38,15013,457000,16,5 ,38,15013,457008,16,5 ,38,15013,457016,16,5 ,38,15013,457024,16,5 ,20,19263,9894210,192,0 ,17,923,8845636,48,0 ,17,923,6748484,32,0 ,44,15152,2029892,24,0 ,44,15152,1505604,24,0 ,45,15153,4127044,32,0 ,38,15013,457032,16,5 ,38,15013,457040,16,5 ,38,15013,457048,16,5 ,38,15013,457056,16,5 ,38,15013,457064,16,5 ,38,15013,457072,16,5 ,38,15013,457080,16,5 ,38,15013,457088,16,5 ,44,15152,3602820,32,0 ,38,15013,457096,16,5 ,38,15013,457104,16,5 ,38,15013,457112,16,5 ,38,15013,457120,16,5 ,38,15013,457128,16,5 ,38,15013,457136,16,5 ,38,15013,457144,16,5 ,38,15013,457152,16,5 ,20,20828,14088642,308,0 ,44,15152,2554308,16,0 ,17,923,7797188,32,0 ,17,923,7272900,32,0 ,38,15013,457160,17,5 ,38,15013,457168,17,5 ,38,15013,457176,16,5 ,38,15013,457184,16,5 ,38,15013,457192,16,5 ,38,15013,457200,16,5 ,38,15013,457208,16,5 ,38,15013,457216,16,5 ,20,20116,11467266,12,0 ,20,15992,2030082,812,0 ,44,15152,1505796,24,0 ,44,15152,2030084,24,0 ,38,15013,457224,16,5 ,38,15013,457232,16,5 ,38,15013,457240,16,5 ,38,15013,457248,16,5 ,20,23866,21953058,152,0 ,38,15013,457256,16,5 ,38,15013,457264,17,5 ,38,15013,457272,16,5 ,38,15013,457280,17,5 ,45,15153,5175876,16,0 ,17,923,6748740,32,0 ,44,15152,2554436,24,0 ,45,15153,4127300,32,0 ,38,15013,457288,17,5 ,38,15013,457296,16,5 ,38,15013,457304,16,5 ,38,15013,457312,16,5 ,20,20117,11467362,48,0 ,38,15013,457320,16,5 ,38,15013,457328,17,5 ,38,15013,457336,16,5 ,38,15013,457344,17,5 ,20,22914,19856002,256,0 ,20,20208,11991682,168,0 ,17,923,9894532,32,0 ,44,15152,3078788,72,0 ,44,15152,3603076,48,0 ,17,923,8321668,32,0 ,17,923,9370244,24,0 ,38,15013,457352,17,5 ,38,15013,457360,17,5 ,38,15013,457368,16,5 ,38,15013,457376,16,5 ,38,15013,457384,16,5 ,38,15013,457392,16,5 ,38,15013,457400,16,5 ,38,15013,457408,16,5 ,17,923,8846020,32,0 ,17,923,7797444,32,0 ,17,923,7273156,32,0 ,44,15152,2030276,24,0 ,44,15152,1505988,40,0 ,44,15152,457412,40,0 ,45,15153,5176004,32,0 ,38,15013,457416,16,5 ,38,15013,457424,16,5 ,38,15013,457432,16,5 ,38,15013,457440,16,5 ,38,15013,457448,16,5 ,38,15013,457456,17,5 ,38,15013,457464,16,5 ,38,15013,457472,16,5 ,44,15152,2554628,24,0 ,38,15013,457480,16,5 ,38,15013,457488,16,5 ,38,15013,457496,16,5 ,38,15013,457504,16,5 ,38,15013,457512,16,5 ,38,15013,457520,16,5 ,38,15013,457528,16,5 ,38,15013,457536,16,5 ,20,18362,7797570,80,0 ,17,923,9370436,64,0 ,17,923,6748996,32,0 ,45,15153,4127556,32,0 ,38,15013,457544,16,5 ,38,15013,457552,16,5 ,38,15013,457560,16,5 ,38,15013,457568,16,5 ,20,19851,10943330,220,0 ,20,19645,10419042,436,0 ,38,15013,457576,16,5 ,38,15013,457584,16,5 ,38,15013,457592,16,5 ,38,15013,457600,16,5 ,20,24468,23526274,68,0 ,17,923,9894788,40,0 ,44,15152,2030468,24,0 ,17,923,8321924,24,0 ,38,15013,457608,16,5 ,38,15013,457616,16,5 ,38,15013,457624,16,5 ,38,15013,457632,16,5 ,20,24114,22477730,84,0 ,20,21463,16186274,100,0 ,38,15013,457640,16,5 ,38,15013,457648,16,5 ,38,15013,457656,16,5 ,38,15013,457664,16,5 ,17,923,8846276,64,0 ,17,923,7797700,32,0 ,17,923,7273412,88,0 ,44,15152,2554820,16,0 ,45,15153,4651972,968,0 ,45,15153,5176260,16,0 ,38,15013,457672,16,5 ,38,15013,457680,16,5 ,38,15013,457688,16,5 ,38,15013,457696,16,5 ,20,20118,11467746,452,0 ,38,15013,457704,16,5 ,38,15013,457712,16,5 ,38,15013,457720,16,5 ,38,15013,457728,16,5 ,44,15152,3603460,24,0 ,44,15152,1506308,24,0 ,44,15152,457732,16,0 ,38,15013,457736,16,5 ,38,15013,457744,16,5 ,38,15013,457752,16,5 ,38,15013,457760,16,5 ,20,21115,15662114,136,0 ,38,15013,457768,16,5 ,38,15013,457776,16,5 ,38,15013,457784,16,5 ,38,15013,457792,16,5 ,17,923,8322116,48,0 ,17,923,6749252,40,0 ,44,15152,2554948,24,0 ,44,15152,2030660,24,0 ,45,15153,4127812,32,0 ,45,15153,5176388,56,0 ,38,15013,457800,16,5 ,38,15013,457808,16,5 ,38,15013,457816,16,5 ,38,15013,457824,16,5 ,38,15013,457832,16,5 ,38,15013,457840,16,5 ,38,15013,457848,16,5 ,38,15013,457856,16,5 ,20,24827,24575106,320,0 ,44,15152,457860,24,0 ,38,15013,457864,16,5 ,38,15013,457872,16,5 ,38,15013,457880,16,5 ,38,15013,457888,16,5 ,38,15013,457896,17,5 ,38,15013,457904,17,5 ,38,15013,457912,16,5 ,38,15013,457920,16,5 ,20,17939,6749378,52,0 ,17,923,9895108,32,0 ,17,923,7797956,32,0 ,44,15152,3079364,128,0 ,44,15152,1506500,24,0 ,44,15152,982212,32,0 ,44,15152,3603652,24,0 ,38,15013,457928,16,5 ,38,15013,457936,16,5 ,38,15013,457944,16,5 ,38,15013,457952,16,5 ,20,25075,25099490,892,0 ,38,15013,457960,16,5 ,38,15013,457968,16,5 ,38,15013,457976,16,5 ,38,15013,457984,16,5 ,44,15152,2030852,24,0 ,44,15152,2555140,16,0 ,38,15013,457992,16,5 ,38,15013,458000,16,5 ,38,15013,458008,16,5 ,38,15013,458016,16,5 ,38,15013,458024,16,5 ,38,15013,458032,16,5 ,38,15013,458040,16,5 ,38,15013,458048,16,5 ,17,923,9370948,32,0 ,44,15152,458052,24,0 ,45,15153,4128068,16,0 ,38,15013,458056,16,5 ,38,15013,458064,16,5 ,38,15013,458072,16,5 ,38,15013,458080,16,5 ,20,20406,13040994,160,0 ,38,15013,458088,16,5 ,38,15013,458096,16,5 ,38,15013,458104,16,5 ,38,15013,458112,16,5 ,44,15152,3603844,24,0 ,17,923,6749572,40,0 ,44,15152,2555268,16,0 ,44,15152,1506692,88,0 ,38,15013,458120,16,5 ,38,15013,458128,16,5 ,38,15013,458136,16,5 ,38,15013,458144,16,5 ,20,24469,23526818,172,0 ,20,15531,982434,740,0 ,38,15013,458152,16,5 ,38,15013,458160,16,5 ,38,15013,458168,16,5 ,38,15013,458176,16,5 ,20,22661,19332546,296,0 ,20,18363,7798210,140,0 ,17,923,9895364,24,0 ,17,923,7798212,32,0 ,44,15152,2031044,24,0 ,44,15152,982468,24,0 ,45,15153,4128196,24,0 ,17,923,8322500,48,0 ,17,923,8846788,24,0 ,38,15013,458184,16,5 ,38,15013,458192,16,5 ,38,15013,458200,17,5 ,38,15013,458208,17,5 ,38,15013,458216,16,5 ,38,15013,458224,16,5 ,38,15013,458232,16,5 ,38,15013,458240,16,5 ,45,15153,5176836,24,0 ,44,15152,2555396,16,0 ,44,15152,458244,24,0 ,38,15013,458248,16,5 ,38,15013,458256,16,5 ,38,15013,458264,16,5 ,38,15013,458272,16,5 ,20,16575,3604002,128,0 ,38,15013,458280,16,5 ,38,15013,458288,16,5 ,38,15013,458296,16,5 ,38,15013,458304,16,5 ,20,24115,22478402,1360,0 ,17,923,9371204,40,0 ,44,15152,3604036,40,0 ,38,15013,458312,16,5 ,38,15013,458320,16,5 ,38,15013,458328,16,5 ,38,15013,458336,16,5 ,20,22204,18284130,280,0 ,20,17940,6749794,12,0 ,38,15013,458344,16,5 ,38,15013,458352,16,5 ,38,15013,458360,16,5 ,38,15013,458368,16,5 ,20,26360,28769922,1920,0 ,17,923,9895556,40,0 ,17,923,7274116,40,0 ,44,15152,2555524,16,0 ,44,15152,2031236,16,0 ,44,15152,982660,24,0 ,45,15153,4128388,24,0 ,17,923,8846980,64,0 ,38,15013,458376,16,5 ,38,15013,458384,16,5 ,38,15013,458392,16,5 ,38,15013,458400,16,5 ,20,26050,27721378,300,0 ,38,15013,458408,16,5 ,38,15013,458416,16,5 ,38,15013,458424,17,5 ,38,15013,458432,17,5 ,20,21464,16187074,176,0 ,20,17941,6749890,12,0 ,45,15153,5177028,24,0 ,17,923,7798468,32,0 ,17,923,6749892,40,0 ,44,15152,458436,40,0 ,38,15013,458440,17,5 ,38,15013,458448,16,5 ,38,15013,458456,16,5 ,38,15013,458464,16,5 ,20,23867,21954274,76,0 ,38,15013,458472,16,5 ,38,15013,458480,16,5 ,38,15013,458488,16,5 ,38,15013,458496,16,5 ,20,24306,23002882,4476,0 ,20,17686,6225666,468,0 ,44,15152,2031364,24,0 ,44,15152,2555652,16,0 ,38,15013,458504,16,5 ,38,15013,458512,16,5 ,38,15013,458520,16,5 ,38,15013,458528,16,5 ,20,17942,6749986,3328,0 ,38,15013,458536,16,5 ,38,15013,458544,16,5 ,38,15013,458552,16,5 ,38,15013,458560,16,5 ,20,19264,9895746,704,0 ,17,923,8322884,48,0 ,44,15152,982852,24,0 ,45,15153,4128580,32,0 ,38,15013,458568,16,5 ,38,15013,458576,16,5 ,38,15013,458584,16,5 ,38,15013,458592,16,5 ,20,21920,17235810,276,0 ,38,15013,458600,16,5 ,38,15013,458608,16,5 ,38,15013,458616,16,5 ,38,15013,458624,16,5 ,17,923,9371524,24,0 ,44,15152,2555780,16,0 ,44,15152,3604356,72,0 ,45,15153,5177220,32,0 ,45,15153,5701508,24,0 ,38,15013,458632,16,5 ,38,15013,458640,16,5 ,38,15013,458648,16,5 ,38,15013,458656,16,5 ,38,15013,458664,16,5 ,38,15013,458672,16,5 ,38,15013,458680,16,5 ,38,15013,458688,16,5 ,20,20209,11993026,176,0 ,17,923,9895876,24,0 ,17,923,7798724,40,0 ,17,923,7274436,32,0 ,44,15152,2031556,32,0 ,38,15013,458696,16,5 ,38,15013,458704,16,5 ,38,15013,458712,16,5 ,38,15013,458720,16,5 ,38,15013,458728,16,5 ,38,15013,458736,16,5 ,38,15013,458744,16,5 ,38,15013,458752,16,5 ,44,15152,983044,24,0 ,17,923,6750212,48,0 ,44,15152,2555908,16,0 ,44,15152,458756,80,0 ,38,15013,458760,16,5 ,38,15013,458768,16,5 ,38,15013,458776,16,5 ,38,15013,458784,16,5 ,38,15013,458792,16,5 ,38,15013,458800,16,5 ,38,15013,458808,16,5 ,38,15013,458816,16,5 ,20,25810,27197506,188,0 ,17,923,9371716,64,0 ,44,15152,1507396,72,0 ,45,15153,4128836,24,0 ,45,15153,5701700,16,0 ,38,15013,458824,16,5 ,38,15013,458832,16,5 ,38,15013,458840,16,5 ,38,15013,458848,16,5 ,20,21116,15663202,32,0 ,38,15013,458856,16,5 ,38,15013,458864,16,5 ,38,15013,458872,16,5 ,38,15013,458880,16,5 ,17,923,9896068,40,0 ,44,15152,2556036,16,0 ,45,15153,5177476,16,0 ,17,923,8847492,32,0 ,38,15013,458888,16,5 ,38,15013,458896,16,5 ,38,15013,458904,16,5 ,38,15013,458912,16,5 ,38,15013,458920,16,5 ,38,15013,458928,16,5 ,38,15013,458936,16,5 ,38,15013,458944,16,5 ,17,923,8323268,48,0 ,17,923,7274692,32,0 ,44,15152,3080388,40,0 ,44,15152,2031812,80,0 ,44,15152,983236,24,0 ,45,15153,5701828,32,0 ,38,15013,458952,16,5 ,38,15013,458960,16,5 ,38,15013,458968,16,5 ,38,15013,458976,16,5 ,38,15013,458984,16,5 ,38,15013,458992,16,5 ,38,15013,459000,16,5 ,38,15013,459008,16,5 ,45,15153,5177604,24,0 ,17,923,7799044,48,0 ,44,15152,2556164,24,0 ,45,15153,4129028,40,0 ,38,15013,459016,16,5 ,38,15013,459024,16,5 ,38,15013,459032,16,5 ,38,15013,459040,16,5 ,20,26516,29294882,52,0 ,38,15013,459048,16,5 ,38,15013,459056,16,5 ,38,15013,459064,16,5 ,38,15013,459072,16,5 ,20,23868,21954882,368,0 ,20,23209,20382018,60,0 ,38,15013,459080,16,5 ,38,15013,459088,16,5 ,38,15013,459096,16,5 ,38,15013,459104,16,5 ,20,21117,15663458,32,0 ,38,15013,459112,16,5 ,38,15013,459120,16,5 ,38,15013,459128,16,5 ,38,15013,459136,16,5 ,17,923,8847748,32,0 ,17,923,6750596,32,0 ,44,15152,983428,112,0 ,38,15013,459144,16,5 ,38,15013,459152,16,5 ,38,15013,459160,16,5 ,38,15013,459168,16,5 ,38,15013,459176,16,5 ,38,15013,459184,17,5 ,38,15013,459192,16,5 ,38,15013,459200,17,5 ,17,923,9896388,40,0 ,17,923,7274948,56,0 ,44,15152,2556356,40,0 ,44,15152,3604932,24,0 ,45,15153,5177796,56,0 ,45,15153,5702084,32,0 ,38,15013,459208,16,5 ,38,15013,459216,16,5 ,38,15013,459224,17,5 ,38,15013,459232,16,5 ,38,15013,459240,16,5 ,38,15013,459248,16,5 ,38,15013,459256,16,5 ,38,15013,459264,16,5 ,44,15152,3080708,24,0 ,38,15013,459272,16,5 ,38,15013,459280,16,5 ,38,15013,459288,16,5 ,38,15013,459296,16,5 ,20,18364,7799330,148,0 ,20,16576,3605026,384,0 ,38,15013,459304,16,5 ,38,15013,459312,16,5 ,38,15013,459320,16,5 ,38,15013,459328,16,5 ,20,19852,10945090,424,0 ,17,923,9372228,32,0 ,45,15153,4129348,32,0 ,17,923,8323652,48,0 ,38,15013,459336,16,5 ,38,15013,459344,16,5 ,38,15013,459352,16,5 ,38,15013,459360,16,5 ,20,21118,15663714,32,0 ,20,20407,13042274,328,0 ,38,15013,459368,16,5 ,38,15013,459376,17,5 ,38,15013,459384,16,5 ,38,15013,459392,16,5 ,20,22915,19858050,300,0 ,17,923,8848004,48,0 ,17,923,7799428,32,0 ,17,923,6750852,48,0 ,44,15152,1507972,40,0 ,44,15152,459396,16,0 ,44,15152,3605124,24,0 ,38,15013,459400,16,5 ,38,15013,459408,16,5 ,38,15013,459416,16,5 ,38,15013,459424,16,5 ,38,15013,459432,16,5 ,38,15013,459440,16,5 ,38,15013,459448,16,5 ,38,15013,459456,16,5 ,20,26517,29295298,156,0 ,45,15153,5702340,88,0 ,44,15152,3080900,296,0 ,38,15013,459464,16,5 ,38,15013,459472,16,5 ,38,15013,459480,16,5 ,38,15013,459488,16,5 ,38,15013,459496,16,5 ,38,15013,459504,16,5 ,38,15013,459512,16,5 ,38,15013,459520,16,5 ,20,24470,23528194,176,0 ,17,923,9896708,32,0 ,44,15152,2556676,64,0 ,44,15152,459524,80,0 ,38,15013,459528,16,5 ,38,15013,459536,17,5 ,38,15013,459544,16,5 ,38,15013,459552,16,5 ,20,23210,20382498,12,0 ,20,26222,28246818,1064,0 ,38,15013,459560,16,5 ,38,15013,459568,16,5 ,38,15013,459576,17,5 ,38,15013,459584,17,5 ,20,25634,26673986,2212,0 ,17,923,9372484,40,0 ,44,15152,2032452,24,0 ,44,15152,3605316,16,0 ,45,15153,4129604,16,0 ,38,15013,459592,17,5 ,38,15013,459600,16,5 ,38,15013,459608,16,5 ,38,15013,459616,16,5 ,20,21119,15663970,32,0 ,20,20829,14091106,244,0 ,38,15013,459624,17,5 ,38,15013,459632,17,5 ,38,15013,459640,18,5 ,38,15013,459648,18,5 ,20,23211,20382594,128,0 ,45,15153,5178244,16,0 ,17,923,7799684,32,0 ,17,923,7275396,24,0 ,38,15013,459656,17,5 ,38,15013,459664,18,5 ,38,15013,459672,18,5 ,38,15013,459680,17,5 ,38,15013,459688,17,5 ,38,15013,459696,17,5 ,38,15013,459704,17,5 ,38,15013,459712,17,5 ,17,923,8324036,56,0 ,44,15152,1508292,16,0 ,44,15152,3605444,24,0 ,45,15153,4129732,32,0 ,38,15013,459720,17,5 ,38,15013,459728,17,5 ,39,15016,459736,8,6 ,39,15016,459744,8,6 ,39,15016,459752,8,6 ,39,15016,459760,8,6 ,39,15016,459768,8,6 ,39,15016,459776,8,6 ,17,923,9896964,40,0 ,17,923,6751236,40,0 ,44,15152,2032644,24,0 ,45,15153,5178372,24,0 ,17,923,8848388,32,0 ,39,15016,459784,8,6 ,39,15016,459792,8,6 ,39,15016,459800,8,6 ,39,15016,459808,8,6 ,39,15016,459816,8,6 ,39,15016,459824,8,6 ,39,15016,459832,8,6 ,39,15016,459840,8,6 ,20,21465,16188482,688,0 ,44,15152,1508420,24,0 ,17,923,7275588,56,0 ,39,15016,459848,8,6 ,39,15016,459856,8,6 ,39,15016,459864,8,6 ,39,15016,459872,8,6 ,20,21120,15664226,136,0 ,39,15016,459880,8,6 ,39,15016,459888,8,6 ,39,15016,459896,8,6 ,39,15016,459904,8,6 ,17,923,9372804,48,0 ,17,923,7799940,32,0 ,44,15152,3605636,24,0 ,39,15016,459912,8,6 ,39,15016,459920,8,6 ,39,15016,459928,8,6 ,39,15016,459936,8,6 ,39,15016,459944,8,6 ,39,15016,459952,8,6 ,39,15016,459960,8,6 ,39,15016,459968,8,6 ,45,15153,5178564,24,0 ,44,15152,2032836,24,0 ,45,15153,4129988,32,0 ,39,15016,459976,8,6 ,39,15016,459984,8,6 ,39,15016,459992,8,6 ,39,15016,460000,8,6 ,39,15016,460008,8,6 ,39,15016,460016,8,6 ,39,15016,460024,8,6 ,39,15016,460032,8,6 ,17,923,8848644,64,0 ,44,15152,2557188,16,0 ,44,15152,1508612,152,0 ,44,15152,984324,32,0 ,39,15016,460040,8,6 ,39,15016,460048,8,6 ,39,15016,460056,8,6 ,39,15016,460064,8,6 ,39,15016,460072,8,6 ,39,15016,460080,8,6 ,39,15016,460088,8,6 ,39,15016,460096,8,6 ,20,20210,11994434,12,0 ,17,923,9897284,40,0 ,17,923,6751556,40,0 ,44,15152,3605828,24,0 ,39,15016,460104,8,6 ,39,15016,460112,8,6 ,39,15016,460120,8,6 ,39,15016,460128,8,6 ,39,15016,460136,8,6 ,39,15016,460144,8,6 ,39,15016,460152,8,6 ,39,15016,460160,8,6 ,17,923,8324484,40,0 ,17,923,7800196,24,0 ,44,15152,2557316,72,0 ,44,15152,2033028,24,0 ,44,15152,460164,24,0 ,45,15153,5178756,24,0 ,45,15153,5703044,48,0 ,39,15016,460168,8,6 ,39,15016,460176,8,6 ,39,15016,460184,8,6 ,39,15016,460192,8,6 ,20,20211,11994530,4932,0 ,39,15016,460200,8,6 ,39,15016,460208,8,6 ,39,15016,460216,8,6 ,39,15016,460224,8,6 ,45,15153,4130244,24,0 ,39,15016,460232,8,6 ,39,15016,460240,8,6 ,39,15016,460248,8,6 ,39,15016,460256,8,6 ,39,15016,460264,8,6 ,39,15016,460272,8,6 ,39,15016,460280,8,6 ,39,15016,460288,8,6 ,17,923,9373188,48,0 ,17,923,7276036,24,0 ,44,15152,984580,24,0 ,44,15152,3606020,72,0 ,39,15016,460296,8,6 ,39,15016,460304,8,6 ,39,15016,460312,8,6 ,39,15016,460320,8,6 ,20,25811,27199010,120,0 ,39,15016,460328,8,6 ,39,15016,460336,8,6 ,39,15016,460344,8,6 ,39,15016,460352,8,6 ,45,15153,5178948,48,0 ,17,923,7800388,32,0 ,44,15152,2033220,24,0 ,44,15152,460356,104,0 ,39,15016,460360,8,6 ,39,15016,460368,8,6 ,39,15016,460376,8,6 ,39,15016,460384,8,6 ,20,20664,13567586,544,0 ,39,15016,460392,8,6 ,39,15016,460400,8,6 ,39,15016,460408,8,6 ,39,15016,460416,8,6 ,20,24828,24577666,24,0 ,17,923,9897604,24,0 ,17,923,6751876,40,0 ,45,15153,4130436,32,0 ,39,15016,460424,8,6 ,39,15016,460432,8,6 ,39,15016,460440,8,6 ,39,15016,460448,8,6 ,39,15016,460456,8,6 ,39,15016,460464,8,6 ,39,15016,460472,8,6 ,39,15016,460480,8,6 ,20,18365,7800514,60,0 ,17,923,8324804,64,0 ,17,923,7276228,24,0 ,44,15152,984772,24,0 ,39,15016,460488,8,6 ,39,15016,460496,8,6 ,39,15016,460504,8,6 ,39,15016,460512,8,6 ,39,15016,460520,8,6 ,39,15016,460528,8,6 ,39,15016,460536,8,6 ,39,15016,460544,8,6 ,20,22662,19334914,692,0 ,17,923,8849156,24,0 ,44,15152,2033412,24,0 ,45,15153,5703428,16,0 ,39,15016,460552,8,6 ,39,15016,460560,8,6 ,39,15016,460568,8,6 ,39,15016,460576,8,6 ,20,22205,18286370,200,0 ,39,15016,460584,8,6 ,39,15016,460592,8,6 ,39,15016,460600,8,6 ,39,15016,460608,8,6 ,20,24829,24577858,68,0 ,17,923,9897796,24,0 ,17,923,7800644,24,0 ,39,15016,460616,8,6 ,39,15016,460624,8,6 ,39,15016,460632,8,6 ,39,15016,460640,8,6 ,20,16869,4130658,1600,0 ,39,15016,460648,9,6 ,14,27,460656,6,0 ,14,27,460664,6,0 ,14,27,460672,6,0 ,20,23212,20383618,248,0 ,17,923,9373572,40,0 ,17,923,7276420,24,0 ,44,15152,984964,24,0 ,45,15153,4130692,24,0 ,45,15153,5703556,24,0 ,14,27,460680,6,0 ,14,27,460688,6,0 ,14,27,460696,6,0 ,14,27,460704,6,0 ,20,24652,24053666,296,0 ,20,26518,29296546,692,0 ,14,27,460712,6,0 ,14,27,460720,6,0 ,14,27,460728,3,0 ,14,27,460736,6,0 ,17,923,8849348,64,0 ,17,923,6752196,32,0 ,44,15152,2557892,64,0 ,44,15152,2033604,32,0 ,45,15153,5179332,64,0 ,14,27,460744,6,0 ,14,27,460752,6,0 ,14,27,460760,6,0 ,14,27,460768,3,0 ,14,27,460776,6,0 ,14,27,460784,2,0 ,14,27,460792,6,0 ,14,27,460800,6,0 ,20,21921,17238018,32,0 ,20,26051,27723778,476,0 ,17,923,9897988,24,0 ,17,923,7800836,32,0 ,14,27,460808,6,0 ,14,27,460816,6,0 ,14,27,460824,6,0 ,14,27,460832,6,0 ,14,27,460840,6,0 ,14,27,460848,6,0 ,14,27,460856,6,0 ,14,27,460864,6,0 ,45,15153,5703748,24,0 ,17,923,7276612,32,0 ,44,15152,985156,40,0 ,44,15152,3606596,16,0 ,45,15153,4130884,16,0 ,14,27,460872,6,0 ,14,27,460880,6,0 ,14,27,460888,6,0 ,14,27,460896,3,0 ,14,27,460904,6,0 ,14,27,460912,3,0 ,14,27,460920,5,0 ,14,27,460928,6,0 ,20,24471,23529602,172,0 ,14,27,460936,6,0 ,14,27,460944,6,0 ,14,27,460952,6,0 ,14,27,460960,3,0 ,20,21121,15665314,340,0 ,20,17479,5703842,424,0 ,20,18366,7800994,132,0 ,14,27,460968,6,0 ,14,27,460976,6,0 ,14,27,460984,6,0 ,14,27,460992,6,0 ,17,923,9898180,40,0 ,17,923,6752452,32,0 ,44,15152,2033860,24,0 ,44,15152,3606724,24,0 ,45,15153,4131012,16,0 ,17,923,8325316,56,0 ,17,923,9373892,48,0 ,14,27,461000,3,0 ,14,27,461008,5,0 ,14,27,461016,6,0 ,14,27,461024,6,0 ,14,27,461032,6,0 ,14,27,461040,5,0 ,14,27,461048,6,0 ,14,27,461056,6,0 ,20,21922,17238274,80,0 ,20,16135,2558210,192,0 ,20,19646,10422530,7888,0 ,45,15153,5703940,24,0 ,17,923,7801092,24,0 ,14,27,461064,6,0 ,14,27,461072,6,0 ,14,27,461080,6,0 ,14,27,461088,3,0 ,14,27,461096,6,0 ,14,27,461104,6,0 ,14,27,461112,6,0 ,14,27,461120,6,0 ,45,15153,4131140,16,0 ,17,923,7276868,32,0 ,14,27,461128,6,0 ,14,27,461136,3,0 ,14,27,461144,2,0 ,14,27,461152,5,0 ,20,24830,24578402,80,0 ,14,27,461160,6,0 ,14,27,461168,3,0 ,14,27,461176,6,0 ,14,27,461184,3,0 ,44,15152,3606916,224,0 ,44,15152,2034052,24,0 ,44,15152,461188,40,0 ,44,15152,985476,72,0 ,14,27,461192,6,0 ,14,27,461200,6,0 ,14,27,461208,6,0 ,14,27,461216,6,0 ,14,27,461224,3,0 ,14,27,461232,6,0 ,14,27,461240,6,0 ,14,27,461248,6,0 ,20,22447,18811330,100,0 ,17,923,8849860,32,0 ,17,923,7801284,56,0 ,17,923,6752708,24,0 ,44,15152,2558404,24,0 ,44,15152,1509828,40,0 ,45,15153,4131268,48,0 ,45,15153,5179844,24,0 ,45,15153,5704132,32,0 ,14,27,461256,6,0 ,14,27,461264,6,0 ,14,27,461272,6,0 ,14,27,461280,6,0 ,20,25812,27199970,108,0 ,14,27,461288,6,0 ,14,27,461296,5,0 ,14,27,461304,6,0 ,14,27,461312,3,0 ,20,20119,11471362,492,0 ,17,923,9898500,24,0 ,14,27,461320,6,0 ,14,27,461328,3,0 ,14,27,461336,6,0 ,14,27,461344,6,0 ,14,27,461352,6,0 ,14,27,461360,6,0 ,14,27,461368,6,0 ,14,27,461376,3,0 ,17,923,9374276,48,0 ,17,923,7277124,40,0 ,44,15152,2034244,24,0 ,14,27,461384,6,0 ,14,27,461392,5,0 ,14,27,461400,6,0 ,14,27,461408,6,0 ,14,27,461416,6,0 ,14,27,461424,6,0 ,14,27,461432,6,0 ,14,27,461440,3,0 ,17,923,8325764,32,0 ,17,923,6752900,40,0 ,44,15152,2558596,24,0 ,45,15153,5180036,56,0 ,14,27,461448,6,0 ,14,27,461456,3,0 ,14,27,461464,6,0 ,14,27,461472,3,0 ,14,27,461480,6,0 ,14,27,461488,2,0 ,14,27,461496,5,0 ,14,27,461504,3,0 ,17,923,9898692,64,0 ,44,15152,461508,32,0 ,45,15153,5704388,16,0 ,17,923,8850116,32,0 ,14,27,461512,6,0 ,14,27,461520,3,0 ,14,27,461528,2,0 ,14,27,461536,2,0 ,14,27,461544,6,0 ,14,27,461552,5,0 ,14,27,461560,3,0 ,14,27,461568,2,0 ,20,23649,21433090,136,0 ,20,20830,14093058,136,0 ,44,15152,1510148,32,0 ,44,15152,2034436,32,0 ,14,27,461576,6,0 ,14,27,461584,3,0 ,14,27,461592,6,0 ,14,27,461600,3,0 ,14,27,461608,5,0 ,14,27,461616,3,0 ,14,27,461624,6,0 ,14,27,461632,3,0 ,45,15153,5704516,24,0 ,44,15152,2558788,24,0 ,45,15153,4131652,16,0 ,14,27,461640,6,0 ,14,27,461648,5,0 ,14,27,461656,3,0 ,14,27,461664,6,0 ,14,27,461672,3,0 ,14,27,461680,6,0 ,14,27,461688,6,0 ,14,27,461696,3,0 ,20,21923,17238914,712,0 ,17,923,8326020,48,0 ,17,923,7801732,40,0 ,17,923,7277444,32,0 ,14,27,461704,6,0 ,14,27,461712,6,0 ,14,27,461720,2,0 ,14,27,461728,6,0 ,14,27,461736,3,0 ,14,27,461744,6,0 ,14,27,461752,6,0 ,14,27,461760,3,0 ,17,923,9374660,24,0 ,17,923,6753220,64,0 ,44,15152,461764,24,0 ,44,15152,986052,128,0 ,45,15153,4131780,24,0 ,17,923,8850372,48,0 ,14,27,461768,6,0 ,14,27,461776,6,0 ,14,27,461784,3,0 ,14,27,461792,6,0 ,20,22916,19860450,144,0 ,20,24831,24579042,24,0 ,14,27,461800,5,0 ,14,27,461808,6,0 ,14,27,461816,5,0 ,14,27,461824,3,0 ,45,15153,5704708,24,0 ,44,15152,3083268,80,0 ,44,15152,2558980,24,0 ,44,15152,2034692,80,0 ,44,15152,1510404,24,0 ,14,27,461832,6,0 ,14,27,461840,3,0 ,14,27,461848,6,0 ,14,27,461856,3,0 ,14,27,461864,6,0 ,14,27,461872,6,0 ,14,27,461880,3,0 ,14,27,461888,6,0 ,45,15153,5180484,64,0 ,14,27,461896,3,0 ,14,27,461904,6,0 ,14,27,461912,3,0 ,14,27,461920,2,0 ,14,27,461928,6,0 ,14,27,461936,6,0 ,14,27,461944,3,0 ,14,27,461952,6,0 ,17,923,9374852,64,0 ,17,923,7277700,40,0 ,44,15152,461956,24,0 ,45,15153,4131972,32,0 ,14,27,461960,3,0 ,14,27,461968,6,0 ,14,27,461976,3,0 ,14,27,461984,6,0 ,20,20408,13044898,80,0 ,20,24832,24579234,24,0 ,14,27,461992,3,0 ,14,27,462000,6,0 ,14,27,462008,5,0 ,14,27,462016,3,0 ,20,23869,21957826,316,0 ,20,18367,7802050,132,0 ,17,923,9899204,56,0 ,17,923,7802052,32,0 ,44,15152,2559172,24,0 ,44,15152,1510596,24,0 ,45,15153,5704900,16,0 ,14,27,462024,6,0 ,14,27,462032,6,0 ,14,27,462040,6,0 ,14,27,462048,6,0 ,20,22448,18812130,200,0 ,14,27,462056,6,0 ,14,27,462064,6,0 ,14,27,462072,5,0 ,14,27,462080,6,0 ,17,923,8326404,56,0 ,14,27,462088,6,0 ,14,27,462096,3,0 ,14,27,462104,5,0 ,14,27,462112,6,0 ,14,27,462120,6,0 ,14,27,462128,6,0 ,14,27,462136,2,0 ,14,27,462144,6,0 ,20,25813,27200834,120,0 ,17,923,8850756,32,0 ,44,15152,462148,16,0 ,45,15153,5705028,176,0 ,14,27,462152,6,0 ,14,27,462160,2,0 ,14,27,462168,6,0 ,14,27,462176,2,0 ,20,22206,18287970,240,0 ,20,24833,24579426,24,0 ,14,27,462184,6,0 ,14,27,462192,6,0 ,14,27,462200,6,0 ,14,27,462208,5,0 ,45,15153,4132228,40,0 ,44,15152,2559364,24,0 ,44,15152,1510788,48,0 ,14,27,462216,6,0 ,14,27,462224,3,0 ,14,27,462232,2,0 ,14,27,462240,2,0 ,20,17687,6229410,404,0 ,14,27,462248,5,0 ,14,27,462256,3,0 ,14,27,462264,5,0 ,14,27,462272,3,0 ,44,15152,462276,24,0 ,17,923,7802308,40,0 ,17,923,7278020,24,0 ,17,923,6753732,32,0 ,14,27,462280,5,0 ,14,27,462288,3,0 ,14,27,462296,6,0 ,14,27,462304,3,0 ,20,24472,23530978,24,0 ,14,27,462312,6,0 ,14,27,462320,3,0 ,14,27,462328,5,0 ,14,27,462336,3,0 ,14,27,462344,6,0 ,14,27,462352,3,0 ,14,27,462360,6,0 ,14,27,462368,6,0 ,20,16577,3608098,440,0 ,20,24834,24579618,24,0 ,14,27,462376,3,0 ,14,27,462384,6,0 ,14,27,462392,6,0 ,14,27,462400,6,0 ,17,923,8851012,64,0 ,44,15152,2559556,24,0 ,45,15153,5180996,24,0 ,14,27,462408,6,0 ,14,27,462416,3,0 ,14,27,462424,6,0 ,14,27,462432,6,0 ,14,27,462440,6,0 ,14,27,462448,6,0 ,14,27,462456,6,0 ,14,27,462464,5,0 ,17,923,9899652,24,0 ,17,923,7278212,24,0 ,44,15152,3083908,16,0 ,44,15152,2035332,88,0 ,44,15152,462468,32,0 ,17,923,9375364,32,0 ,14,27,462472,3,0 ,14,27,462480,6,0 ,14,27,462488,6,0 ,14,27,462496,6,0 ,20,24473,23531170,24,0 ,14,27,462504,3,0 ,14,27,462512,6,0 ,14,27,462520,3,0 ,14,27,462528,6,0 ,17,923,8326852,40,0 ,17,923,6753988,40,0 ,45,15153,4132548,40,0 ,14,27,462536,3,0 ,14,27,462544,6,0 ,14,27,462552,6,0 ,14,27,462560,6,0 ,20,24835,24579810,104,0 ,14,27,462568,6,0 ,14,27,462576,6,0 ,14,27,462584,5,0 ,14,27,462592,3,0 ,20,16136,2559746,264,0 ,45,15153,5181188,80,0 ,17,923,7802628,24,0 ,44,15152,3084036,24,0 ,44,15152,2559748,24,0 ,44,15152,1511172,32,0 ,14,27,462600,6,0 ,14,27,462608,5,0 ,14,27,462616,6,0 ,14,27,462624,3,0 ,20,20409,13045538,12,0 ,14,27,462632,6,0 ,14,27,462640,6,0 ,14,27,462648,6,0 ,14,27,462656,6,0 ,20,23650,21434178,1308,0 ,20,20831,14094146,136,0 ,20,23213,20385602,96,0 ,17,923,9899844,32,0 ,17,923,7278404,40,0 ,14,27,462664,6,0 ,14,27,462672,5,0 ,14,27,462680,6,0 ,14,27,462688,6,0 ,20,24474,23531362,620,0 ,14,27,462696,6,0 ,14,27,462704,3,0 ,14,27,462712,6,0 ,14,27,462720,6,0 ,20,20410,13045634,84,0 ,20,19853,10948482,12,0 ,17,923,9375620,32,0 ,44,15152,462724,24,0 ,14,27,462728,3,0 ,14,27,462736,6,0 ,14,27,462744,2,0 ,14,27,462752,6,0 ,14,27,462760,3,0 ,14,27,462768,5,0 ,14,27,462776,3,0 ,14,27,462784,6,0 ,44,15152,987076,96,0 ,17,923,7802820,48,0 ,44,15152,3084228,32,0 ,44,15152,2559940,232,0 ,14,27,462792,6,0 ,14,27,462800,3,0 ,14,27,462808,6,0 ,14,27,462816,6,0 ,20,19854,10948578,444,0 ,14,27,462824,2,0 ,14,27,462832,2,0 ,14,27,462840,6,0 ,14,27,462848,3,0 ,17,923,8327172,40,0 ,17,923,6754308,32,0 ,44,15152,1511428,24,0 ,45,15153,4132868,16,0 ,14,27,462856,6,0 ,14,27,462864,6,0 ,14,27,462872,3,0 ,14,27,462880,6,0 ,14,27,462888,6,0 ,14,27,462896,6,0 ,14,27,462904,3,0 ,14,27,462912,5,0 ,17,923,9900100,24,0 ,44,15152,462916,16,0 ,17,923,8851524,24,0 ,14,27,462920,6,0 ,14,27,462928,6,0 ,14,27,462936,6,0 ,14,27,462944,6,0 ,20,22917,19861602,240,0 ,14,27,462952,6,0 ,14,27,462960,3,0 ,14,27,462968,6,0 ,14,27,462976,5,0 ,17,923,9375876,24,0 ,17,923,7278724,40,0 ,44,15152,3608708,64,0 ,45,15153,4132996,40,0 ,14,27,462984,6,0 ,14,27,462992,6,0 ,14,27,463000,6,0 ,14,27,463008,6,0 ,14,27,463016,6,0 ,14,27,463024,6,0 ,14,27,463032,3,0 ,14,27,463040,6,0 ,44,15152,463044,16,0 ,44,15152,3084484,112,0 ,44,15152,1511620,24,0 ,14,27,463048,5,0 ,14,27,463056,3,0 ,14,27,463064,6,0 ,14,27,463072,3,0 ,20,18368,7803106,284,0 ,20,24653,24056034,380,0 ,14,27,463080,6,0 ,14,27,463088,3,0 ,14,27,463096,6,0 ,14,27,463104,3,0 ,20,25814,27201794,96,0 ,17,923,9900292,40,0 ,17,923,6754564,40,0 ,17,923,8851716,64,0 ,14,27,463112,5,0 ,14,27,463120,6,0 ,14,27,463128,3,0 ,14,27,463136,6,0 ,14,27,463144,5,0 ,14,27,463152,6,0 ,14,27,463160,2,0 ,14,27,463168,5,0 ,17,923,9376068,24,0 ,17,923,7803204,32,0 ,44,15152,2036036,72,0 ,44,15152,463172,16,0 ,17,923,8327492,40,0 ,14,27,463176,3,0 ,14,27,463184,5,0 ,14,27,463192,6,0 ,14,27,463200,6,0 ,14,27,463208,3,0 ,14,27,463216,6,0 ,14,27,463224,3,0 ,14,27,463232,6,0 ,45,15153,5181828,80,0 ,44,15152,1511812,40,0 ,14,27,463240,3,0 ,14,27,463248,6,0 ,14,27,463256,3,0 ,14,27,463264,6,0 ,14,27,463272,3,0 ,14,27,463280,6,0 ,14,27,463288,6,0 ,14,27,463296,6,0 ,45,15153,4133316,32,0 ,17,923,7279044,48,0 ,44,15152,463300,40,0 ,14,27,463304,3,0 ,14,27,463312,6,0 ,14,27,463320,3,0 ,14,27,463328,6,0 ,14,27,463336,3,0 ,14,27,463344,6,0 ,14,27,463352,3,0 ,14,27,463360,6,0 ,17,923,9376260,40,0 ,14,27,463368,6,0 ,14,27,463376,3,0 ,14,27,463384,6,0 ,14,27,463392,3,0 ,20,20411,13046306,440,0 ,20,24836,24580642,100,0 ,14,27,463400,6,0 ,14,27,463408,3,0 ,14,27,463416,5,0 ,14,27,463424,6,0 ,20,23214,20386370,56,0 ,17,923,9900612,32,0 ,17,923,7803460,40,0 ,17,923,6754884,48,0 ,14,27,463432,3,0 ,14,27,463440,6,0 ,14,27,463448,3,0 ,14,27,463456,5,0 ,14,27,463464,3,0 ,14,27,463472,6,0 ,14,27,463480,3,0 ,14,27,463488,6,0 ,17,923,8327812,56,0 ,44,15152,3609220,64,0 ,14,27,463496,3,0 ,14,27,463504,6,0 ,14,27,463512,3,0 ,14,27,463520,6,0 ,14,27,463528,6,0 ,14,27,463536,2,0 ,14,27,463544,6,0 ,14,27,463552,3,0 ,45,15153,5706436,128,0 ,44,15152,1512132,32,0 ,44,15152,987844,192,0 ,45,15153,4133572,32,0 ,14,27,463560,6,0 ,14,27,463568,5,0 ,14,27,463576,3,0 ,14,27,463584,6,0 ,14,27,463592,3,0 ,14,27,463600,6,0 ,14,27,463608,3,0 ,14,27,463616,6,0 ,17,923,8852228,32,0 ,44,15152,463620,32,0 ,14,27,463624,6,0 ,14,27,463632,3,0 ,14,27,463640,6,0 ,14,27,463648,6,0 ,20,22449,18813730,864,0 ,14,27,463656,3,0 ,14,27,463664,6,0 ,14,27,463672,6,0 ,14,27,463680,6,0 ,20,21122,15668034,1200,0 ,17,923,9900868,24,0 ,17,923,7279428,32,0 ,17,923,9376580,40,0 ,14,27,463688,6,0 ,14,27,463696,6,0 ,14,27,463704,3,0 ,14,27,463712,6,0 ,20,15993,2036578,188,0 ,14,27,463720,3,0 ,14,27,463728,6,0 ,14,27,463736,6,0 ,14,27,463744,2,0 ,20,20832,14095234,304,0 ,44,15152,2036612,24,0 ,17,923,7803780,24,0 ,14,27,463752,6,0 ,14,27,463760,3,0 ,14,27,463768,6,0 ,14,27,463776,3,0 ,14,27,463784,2,0 ,14,27,463792,6,0 ,14,27,463800,3,0 ,14,27,463808,6,0 ,45,15153,4133828,16,0 ,17,923,6755268,32,0 ,44,15152,1512388,80,0 ,14,27,463816,3,0 ,14,27,463824,6,0 ,14,27,463832,3,0 ,14,27,463840,6,0 ,14,27,463848,3,0 ,14,27,463856,2,0 ,14,27,463864,6,0 ,14,27,463872,6,0 ,20,23215,20386818,80,0 ,20,25815,27202562,312,0 ,17,923,9901060,40,0 ,44,15152,463876,16,0 ,45,15153,5182468,32,0 ,17,923,8852484,32,0 ,14,27,463880,3,0 ,14,27,463888,6,0 ,14,27,463896,3,0 ,14,27,463904,6,0 ,14,27,463912,3,0 ,14,27,463920,4,0 ,14,27,463928,3,0 ,14,27,463936,6,0 ,17,923,8328260,48,0 ,17,923,7803972,56,0 ,17,923,7279684,32,0 ,44,15152,3085380,24,0 ,44,15152,2036804,24,0 ,45,15153,4133956,16,0 ,14,27,463944,3,0 ,14,27,463952,6,0 ,14,27,463960,3,0 ,14,27,463968,6,0 ,14,27,463976,6,0 ,14,27,463984,3,0 ,14,27,463992,6,0 ,14,27,464000,3,0 ,17,923,9376900,24,0 ,44,15152,464004,40,0 ,44,15152,3609732,24,0 ,14,27,464008,6,0 ,14,27,464016,3,0 ,14,27,464024,5,0 ,14,27,464032,3,0 ,14,27,464040,6,0 ,14,27,464048,3,0 ,14,27,464056,6,0 ,14,27,464064,6,0 ,20,21701,16716994,48,0 ,20,15532,988354,1228,0 ,45,15153,4134084,16,0 ,17,923,6755524,24,0 ,14,27,464072,3,0 ,14,27,464080,6,0 ,14,27,464088,3,0 ,14,27,464096,6,0 ,20,22207,18289890,172,0 ,14,27,464104,3,0 ,14,27,464112,6,0 ,14,27,464120,3,0 ,14,27,464128,6,0 ,17,923,8852740,48,0 ,44,15152,3085572,24,0 ,44,15152,2036996,24,0 ,45,15153,5182724,24,0 ,14,27,464136,3,0 ,14,27,464144,6,0 ,14,27,464152,6,0 ,14,27,464160,6,0 ,14,27,464168,2,0 ,14,27,464176,6,0 ,14,27,464184,6,0 ,14,27,464192,3,0 ,20,19265,9901378,12,0 ,20,24837,24581442,388,0 ,17,923,9901380,24,0 ,17,923,7279940,32,0 ,44,15152,3609924,24,0 ,45,15153,4134212,40,0 ,17,923,9377092,64,0 ,14,27,464200,6,0 ,14,27,464208,6,0 ,14,27,464216,6,0 ,14,27,464224,3,0 ,14,27,464232,6,0 ,14,27,464240,6,0 ,14,27,464248,6,0 ,14,27,464256,6,0 ,20,15306,464258,784,0 ,17,923,6755716,24,0 ,14,27,464264,6,0 ,14,27,464272,5,0 ,14,27,464280,6,0 ,14,27,464288,6,0 ,20,19266,9901474,12,0 ,14,27,464296,5,0 ,14,27,464304,6,0 ,14,27,464312,6,0 ,14,27,464320,6,0 ,17,923,8328644,48,0 ,44,15152,3085764,32,0 ,44,15152,2037188,24,0 ,44,15152,464324,96,0 ,45,15153,5182916,16,0 ,14,27,464328,3,0 ,14,27,464336,6,0 ,14,27,464344,6,0 ,14,27,464352,6,0 ,20,17480,5707234,292,0 ,14,27,464360,6,0 ,14,27,464368,6,0 ,14,27,464376,6,0 ,14,27,464384,5,0 ,20,19267,9901570,48,0 ,17,923,9901572,24,0 ,17,923,7804420,40,0 ,44,15152,3610116,24,0 ,14,27,464392,3,0 ,14,27,464400,6,0 ,14,27,464408,3,0 ,14,27,464416,6,0 ,14,27,464424,6,0 ,14,27,464432,6,0 ,14,27,464440,6,0 ,14,27,464448,6,0 ,20,21702,16717378,12,0 ,45,15153,5183044,296,0 ,17,923,7280196,48,0 ,17,923,6755908,40,0 ,44,15152,1513028,24,0 ,14,27,464456,3,0 ,14,27,464464,6,0 ,14,27,464472,6,0 ,14,27,464480,6,0 ,14,27,464488,5,0 ,14,27,464496,6,0 ,14,27,464504,5,0 ,14,27,464512,6,0 ,20,23216,20387458,116,0 ,17,923,8853124,32,0 ,44,15152,2037380,24,0 ,45,15153,4134532,16,0 ,14,27,464520,6,0 ,14,27,464528,3,0 ,14,27,464536,6,0 ,14,27,464544,6,0 ,20,23870,21960354,768,0 ,20,21703,16717474,232,0 ,14,27,464552,3,0 ,14,27,464560,6,0 ,14,27,464568,3,0 ,14,27,464576,6,0 ,17,923,9901764,32,0 ,44,15152,3086020,16,0 ,44,15152,3610308,16,0 ,45,15153,5707460,16,0 ,14,27,464584,3,0 ,14,27,464592,6,0 ,14,27,464600,6,0 ,14,27,464608,5,0 ,20,26052,27727586,848,0 ,14,27,464616,3,0 ,14,27,464624,6,0 ,14,27,464632,6,0 ,14,27,464640,5,0 ,45,15153,4134660,24,0 ,44,15152,2561796,24,0 ,44,15152,1513220,88,0 ,14,27,464648,6,0 ,14,27,464656,6,0 ,14,27,464664,6,0 ,14,27,464672,6,0 ,14,27,464680,6,0 ,14,27,464688,5,0 ,14,27,464696,6,0 ,14,27,464704,6,0 ,20,16137,2561858,2744,0 ,17,923,9377604,48,0 ,17,923,7804740,40,0 ,44,15152,3086148,16,0 ,44,15152,2037572,16,0 ,44,15152,3610436,368,0 ,45,15153,5707588,48,0 ,17,923,8329028,40,0 ,14,27,464712,3,0 ,14,27,464720,6,0 ,14,27,464728,6,0 ,14,27,464736,3,0 ,20,20665,13571938,880,0 ,14,27,464744,6,0 ,14,27,464752,5,0 ,14,27,464760,2,0 ,14,27,464768,6,0 ,20,19268,9901954,12,0 ,17,923,8853380,64,0 ,17,923,6756228,32,0 ,14,27,464776,3,0 ,14,27,464784,6,0 ,14,27,464792,3,0 ,14,27,464800,6,0 ,14,27,464808,3,0 ,14,27,464816,6,0 ,14,27,464824,6,0 ,14,27,464832,3,0 ,17,923,9902020,24,0 ,17,923,7280580,48,0 ,44,15152,3086276,24,0 ,44,15152,2561988,72,0 ,44,15152,2037700,24,0 ,45,15153,4134852,24,0 ,14,27,464840,6,0 ,14,27,464848,3,0 ,14,27,464856,6,0 ,14,27,464864,6,0 ,20,22918,19863522,500,0 ,20,19269,9902050,52,0 ,14,27,464872,3,0 ,14,27,464880,5,0 ,14,27,464888,3,0 ,14,27,464896,6,0 ,14,27,464904,6,0 ,14,27,464912,5,0 ,14,27,464920,6,0 ,14,27,464928,5,0 ,14,27,464936,3,0 ,14,27,464944,6,0 ,14,27,464952,6,0 ,14,27,464960,6,0 ,14,27,464968,6,0 ,14,27,464976,3,0 ,14,27,464984,6,0 ,14,27,464992,3,0 ,14,27,465000,5,0 ,14,27,465008,5,0 ,14,27,465016,6,0 ,14,27,465024,6,0 ,17,923,9902212,40,0 ,17,923,7805060,40,0 ,17,923,6756484,24,0 ,44,15152,3086468,40,0 ,44,15152,2037892,24,0 ,45,15153,4135044,16,0 ,17,923,8329348,48,0 ,14,27,465032,6,0 ,14,27,465040,6,0 ,14,27,465048,6,0 ,14,27,465056,3,0 ,14,27,465064,6,0 ,14,27,465072,6,0 ,14,27,465080,6,0 ,14,27,465088,2,0 ,20,25076,25106626,3012,0 ,17,923,9377988,40,0 ,44,15152,465092,24,0 ,44,15152,989380,24,0 ,45,15153,5707972,56,0 ,14,27,465096,5,0 ,14,27,465104,6,0 ,14,27,465112,3,0 ,14,27,465120,6,0 ,14,27,465128,6,0 ,14,27,465136,6,0 ,14,27,465144,3,0 ,14,27,465152,6,0 ,20,16222,3086594,944,0 ,45,15153,4135172,24,0 ,14,27,465160,5,0 ,14,27,465168,6,0 ,14,27,465176,6,0 ,14,27,465184,6,0 ,14,27,465192,5,0 ,14,27,465200,5,0 ,14,27,465208,6,0 ,14,27,465216,5,0 ,20,15994,2038082,120,0 ,44,15152,2038084,24,0 ,17,923,7280964,32,0 ,17,923,6756676,32,0 ,14,27,465224,6,0 ,14,27,465232,6,0 ,14,27,465240,6,0 ,14,27,465248,3,0 ,20,20120,11475298,148,0 ,14,27,465256,6,0 ,14,27,465264,3,0 ,14,27,465272,5,0 ,14,27,465280,6,0 ,20,19270,9902466,104,0 ,17,923,8853892,24,0 ,44,15152,465284,56,0 ,44,15152,989572,40,0 ,14,27,465288,6,0 ,14,27,465296,6,0 ,14,27,465304,6,0 ,14,27,465312,3,0 ,14,27,465320,6,0 ,14,27,465328,3,0 ,14,27,465336,6,0 ,14,27,465344,3,0 ,20,21466,16193986,1188,0 ,20,18369,7805378,12,0 ,17,923,9902532,32,0 ,17,923,7805380,56,0 ,44,15152,3086788,32,0 ,44,15152,1513924,24,0 ,45,15153,4135364,112,0 ,14,27,465352,6,0 ,14,27,465360,6,0 ,14,27,465368,3,0 ,14,27,465376,6,0 ,14,27,465384,6,0 ,14,27,465392,3,0 ,14,27,465400,6,0 ,14,27,465408,6,0 ,17,923,9378308,40,0 ,44,15152,2562564,40,0 ,44,15152,2038276,24,0 ,45,15153,4659716,1000,0 ,17,923,8329732,32,0 ,14,27,465416,5,0 ,14,27,465424,3,0 ,14,27,465432,6,0 ,14,27,465440,3,0 ,20,23217,20388386,84,0 ,20,18370,7805474,2112,0 ,14,27,465448,6,0 ,14,27,465456,6,0 ,14,27,465464,6,0 ,14,27,465472,3,0 ,20,22208,18291266,116,0 ,20,17688,6232642,444,0 ,17,923,8854084,64,0 ,17,923,7281220,40,0 ,17,923,6756932,24,0 ,14,27,465480,6,0 ,14,27,465488,5,0 ,14,27,465496,5,0 ,14,27,465504,3,0 ,14,27,465512,6,0 ,14,27,465520,6,0 ,14,27,465528,3,0 ,14,27,465536,6,0 ,45,15153,5708420,24,0 ,44,15152,1514116,24,0 ,14,27,465544,3,0 ,14,27,465552,6,0 ,14,27,465560,6,0 ,14,27,465568,6,0 ,14,27,465576,6,0 ,14,27,465584,6,0 ,14,27,465592,6,0 ,14,27,465600,6,0 ,17,923,9902788,24,0 ,44,15152,3087044,24,0 ,44,15152,2038468,48,0 ,44,15152,989892,32,0 ,14,27,465608,6,0 ,14,27,465616,6,0 ,14,27,465624,3,0 ,14,27,465632,6,0 ,14,27,465640,6,0 ,14,27,465648,3,0 ,14,27,465656,6,0 ,14,27,465664,5,0 ,17,923,8329988,40,0 ,17,923,6757124,40,0 ,14,27,465672,6,0 ,14,27,465680,6,0 ,14,27,465688,3,0 ,14,27,465696,6,0 ,14,27,465704,6,0 ,14,27,465712,3,0 ,14,27,465720,6,0 ,14,27,465728,6,0 ,20,18140,7281474,296,0 ,17,923,9378628,24,0 ,44,15152,2562884,24,0 ,44,15152,1514308,48,0 ,44,15152,465732,32,0 ,45,15153,5708612,24,0 ,14,27,465736,6,0 ,14,27,465744,6,0 ,14,27,465752,6,0 ,14,27,465760,6,0 ,14,27,465768,6,0 ,14,27,465776,6,0 ,14,27,465784,2,0 ,14,27,465792,5,0 ,17,923,9902980,24,0 ,17,923,7805828,32,0 ,17,923,7281540,32,0 ,44,15152,3087236,96,0 ,14,27,465800,3,0 ,14,27,465808,6,0 ,14,27,465816,3,0 ,14,27,465824,6,0 ,20,15765,1514402,152,0 ,14,27,465832,6,0 ,14,27,465840,6,0 ,14,27,465848,6,0 ,14,27,465856,6,0 ,44,15152,990148,24,0 ,14,27,465864,6,0 ,14,27,465872,5,0 ,14,27,465880,6,0 ,14,27,465888,6,0 ,20,16578,3611618,384,0 ,14,27,465896,6,0 ,14,27,465904,6,0 ,14,27,465912,6,0 ,14,27,465920,6,0 ,17,923,9378820,40,0 ,44,15152,2563076,48,0 ,45,15153,5708804,16,0 ,14,27,465928,5,0 ,14,27,465936,6,0 ,14,27,465944,3,0 ,14,27,465952,6,0 ,14,27,465960,6,0 ,14,27,465968,6,0 ,14,27,465976,6,0 ,14,27,465984,6,0 ,17,923,9903172,24,0 ,17,923,6757444,32,0 ,44,15152,2038852,24,0 ,44,15152,465988,24,0 ,17,923,8330308,40,0 ,17,923,8854596,32,0 ,14,27,465992,6,0 ,14,27,466000,3,0 ,14,27,466008,6,0 ,14,27,466016,3,0 ,14,27,466024,6,0 ,14,27,466032,6,0 ,14,27,466040,6,0 ,14,27,466048,5,0 ,45,15153,5708932,24,0 ,17,923,7806084,40,0 ,17,923,7281796,24,0 ,44,15152,990340,16,0 ,14,27,466056,6,0 ,14,27,466064,6,0 ,14,27,466072,6,0 ,14,27,466080,5,0 ,20,22663,19340450,588,0 ,14,27,466088,6,0 ,14,27,466096,6,0 ,14,27,466104,5,0 ,14,27,466112,6,0 ,20,23218,20389058,368,0 ,20,24654,24059074,244,0 ,20,19271,9903298,180,0 ,44,15152,1514692,24,0 ,14,27,466120,6,0 ,14,27,466128,6,0 ,14,27,466136,6,0 ,14,27,466144,6,0 ,14,27,466152,6,0 ,14,27,466160,6,0 ,14,27,466168,2,0 ,14,27,466176,6,0 ,20,20833,14097666,136,0 ,20,15995,2039042,96,0 ,17,923,9903364,24,0 ,44,15152,2039044,24,0 ,44,15152,466180,64,0 ,44,15152,990468,32,0 ,14,27,466184,6,0 ,14,27,466192,3,0 ,14,27,466200,2,0 ,14,27,466208,2,0 ,14,27,466216,6,0 ,14,27,466224,6,0 ,14,27,466232,6,0 ,14,27,466240,6,0 ,20,26519,29302082,376,0 ,17,923,9379140,48,0 ,17,923,7281988,32,0 ,17,923,6757700,32,0 ,45,15153,4136260,16,0 ,45,15153,5709124,16,0 ,17,923,8854852,32,0 ,14,27,466248,6,0 ,14,27,466256,5,0 ,14,27,466264,3,0 ,14,27,466272,6,0 ,14,27,466280,3,0 ,14,27,466288,6,0 ,14,27,466296,5,0 ,14,27,466304,6,0 ,17,923,8330628,48,0 ,44,15152,2563460,152,0 ,44,15152,1514884,24,0 ,14,27,466312,6,0 ,14,27,466320,6,0 ,14,27,466328,6,0 ,14,27,466336,6,0 ,14,27,466344,6,0 ,14,27,466352,6,0 ,14,27,466360,6,0 ,14,27,466368,5,0 ,20,19855,10952130,96,0 ,20,25816,27205058,88,0 ,17,923,9903556,64,0 ,17,923,7806404,24,0 ,44,15152,2039236,24,0 ,45,15153,4136388,32,0 ,45,15153,5709252,64,0 ,14,27,466376,6,0 ,14,27,466384,6,0 ,14,27,466392,6,0 ,14,27,466400,6,0 ,20,22209,18292194,108,0 ,20,21704,16719330,136,0 ,14,27,466408,3,0 ,14,27,466416,6,0 ,14,27,466424,3,0 ,14,27,466432,6,0 ,20,20121,11476482,452,0 ,44,15152,990724,40,0 ,14,27,466440,6,0 ,14,27,466448,5,0 ,14,27,466456,6,0 ,14,27,466464,6,0 ,14,27,466472,6,0 ,14,27,466480,6,0 ,14,27,466488,3,0 ,14,27,466496,6,0 ,17,923,8855108,48,0 ,17,923,7282244,40,0 ,17,923,6757956,24,0 ,44,15152,1515076,40,0 ,14,27,466504,3,0 ,14,27,466512,6,0 ,14,27,466520,6,0 ,14,27,466528,6,0 ,14,27,466536,6,0 ,14,27,466544,3,0 ,14,27,466552,2,0 ,14,27,466560,6,0 ,44,15152,2039428,24,0 ,17,923,7806596,40,0 ,44,15152,3088004,88,0 ,14,27,466568,6,0 ,14,27,466576,6,0 ,14,27,466584,3,0 ,14,27,466592,6,0 ,14,27,466600,3,0 ,14,27,466608,6,0 ,14,27,466616,6,0 ,14,27,466624,6,0 ,17,923,9379524,40,0 ,45,15153,4136644,24,0 ,14,27,466632,6,0 ,14,27,466640,5,0 ,14,27,466648,6,0 ,14,27,466656,6,0 ,14,27,466664,6,0 ,14,27,466672,5,0 ,14,27,466680,6,0 ,14,27,466688,6,0 ,20,17481,5709570,124,0 ,17,923,8331012,56,0 ,17,923,6758148,32,0 ,44,15152,466692,32,0 ,14,27,466696,6,0 ,14,27,466704,6,0 ,14,27,466712,6,0 ,14,27,466720,6,0 ,14,27,466728,6,0 ,14,27,466736,6,0 ,14,27,466744,6,0 ,14,27,466752,6,0 ,44,15152,991044,120,0 ,44,15152,2039620,56,0 ,14,27,466760,2,0 ,14,27,466768,6,0 ,14,27,466776,6,0 ,14,27,466784,6,0 ,14,27,466792,3,0 ,14,27,466800,6,0 ,14,27,466808,6,0 ,14,27,466816,6,0 ,45,15153,5185412,40,0 ,17,923,7282564,40,0 ,44,15152,1515396,72,0 ,45,15153,4136836,16,0 ,14,27,466824,3,0 ,14,27,466832,6,0 ,14,27,466840,6,0 ,14,27,466848,6,0 ,14,27,466856,3,0 ,14,27,466864,6,0 ,14,27,466872,5,0 ,14,27,466880,3,0 ,20,18609,8331202,1044,0 ,17,923,9904068,32,0 ,17,923,7806916,48,0 ,45,15153,5709764,16,0 ,17,923,8855492,32,0 ,14,27,466888,6,0 ,14,27,466896,5,0 ,14,27,466904,6,0 ,14,27,466912,6,0 ,20,20412,13049826,160,0 ,14,27,466920,6,0 ,14,27,466928,3,0 ,14,27,466936,6,0 ,14,27,466944,3,0 ,20,15996,2039810,68,0 ,17,923,9379844,24,0 ,17,923,6758404,40,0 ,44,15152,466948,40,0 ,45,15153,4136964,56,0 ,14,27,466952,3,0 ,14,27,466960,6,0 ,14,27,466968,3,0 ,14,27,466976,6,0 ,14,27,466984,5,0 ,14,27,466992,6,0 ,14,27,467000,6,0 ,14,27,467008,6,0 ,45,15153,5709892,40,0 ,14,27,467016,6,0 ,14,27,467024,5,0 ,14,27,467032,3,0 ,14,27,467040,6,0 ,20,15766,1515618,312,0 ,14,27,467048,6,0 ,14,27,467056,6,0 ,14,27,467064,3,0 ,14,27,467072,6,0 ,20,25817,27205762,216,0 ,14,27,467080,3,0 ,14,27,467088,6,0 ,14,27,467096,3,0 ,14,27,467104,6,0 ,14,27,467112,6,0 ,14,27,467120,6,0 ,14,27,467128,6,0 ,14,27,467136,6,0 ,20,19856,10952898,12,0 ,17,923,9904324,24,0 ,17,923,7282884,40,0 ,45,15153,5185732,176,0 ,17,923,8331460,32,0 ,17,923,8855748,64,0 ,17,923,9380036,80,0 ,14,27,467144,3,0 ,14,27,467152,2,0 ,14,27,467160,6,0 ,14,27,467168,3,0 ,14,27,467176,6,0 ,14,27,467184,3,0 ,14,27,467192,5,0 ,14,27,467200,3,0 ,44,15152,2040068,24,0 ,14,27,467208,6,0 ,14,27,467216,3,0 ,14,27,467224,6,0 ,14,27,467232,6,0 ,20,19857,10952994,492,0 ,14,27,467240,3,0 ,14,27,467248,6,0 ,14,27,467256,3,0 ,14,27,467264,5,0 ,20,22210,18293058,148,0 ,20,20834,14098754,136,0 ,44,15152,467268,64,0 ,17,923,7807300,24,0 ,17,923,6758724,40,0 ,44,15152,3088708,32,0 ,14,27,467272,6,0 ,14,27,467280,3,0 ,14,27,467288,5,0 ,14,27,467296,6,0 ,20,24838,24584546,360,0 ,14,27,467304,6,0 ,14,27,467312,6,0 ,14,27,467320,3,0 ,14,27,467328,6,0 ,17,923,9904516,24,0 ,45,15153,5710212,40,0 ,14,27,467336,6,0 ,14,27,467344,3,0 ,14,27,467352,6,0 ,14,27,467360,3,0 ,14,27,467368,6,0 ,14,27,467376,6,0 ,14,27,467384,5,0 ,14,27,467392,3,0 ,20,21924,17244610,376,0 ,17,923,8331716,40,0 ,44,15152,2040260,64,0 ,44,15152,1515972,40,0 ,45,15153,4137412,16,0 ,14,27,467400,5,0 ,14,27,467408,6,0 ,14,27,467416,6,0 ,14,27,467424,6,0 ,14,27,467432,6,0 ,14,27,467440,2,0 ,14,27,467448,3,0 ,14,27,467456,6,0 ,17,923,7283204,24,0 ,17,923,7807492,32,0 ,14,27,467464,3,0 ,14,27,467472,6,0 ,14,27,467480,3,0 ,14,27,467488,6,0 ,20,21705,16720418,228,0 ,20,15997,2040354,272,0 ,14,27,467496,3,0 ,14,27,467504,6,0 ,14,27,467512,3,0 ,14,27,467520,6,0 ,17,923,9904708,24,0 ,44,15152,3088964,112,0 ,44,15152,2564676,56,0 ,45,15153,4137540,40,0 ,14,27,467528,3,0 ,14,27,467536,2,0 ,14,27,467544,6,0 ,14,27,467552,3,0 ,20,19272,9904738,88,0 ,14,27,467560,6,0 ,14,27,467568,3,0 ,14,27,467576,6,0 ,14,27,467584,3,0 ,17,923,6759044,24,0 ,14,27,467592,6,0 ,14,27,467600,3,0 ,14,27,467608,6,0 ,14,27,467616,3,0 ,14,27,467624,6,0 ,14,27,467632,3,0 ,14,27,467640,6,0 ,14,27,467648,3,0 ,20,24475,23536322,524,0 ,17,923,8856260,24,0 ,17,923,7283396,40,0 ,44,15152,3613380,136,0 ,45,15153,5710532,24,0 ,14,27,467656,6,0 ,14,27,467664,3,0 ,14,27,467672,6,0 ,14,27,467680,3,0 ,20,17482,5710562,1756,0 ,14,27,467688,6,0 ,14,27,467696,3,0 ,14,27,467704,5,0 ,14,27,467712,3,0 ,17,923,9904900,32,0 ,17,923,7807748,40,0 ,44,15152,1516292,96,0 ,44,15152,992004,24,0 ,17,923,8332036,48,0 ,14,27,467720,5,0 ,14,27,467728,3,0 ,14,27,467736,6,0 ,14,27,467744,3,0 ,14,27,467752,6,0 ,14,27,467760,3,0 ,14,27,467768,6,0 ,14,27,467776,3,0 ,17,923,9380676,24,0 ,17,923,6759236,32,0 ,44,15152,467780,24,0 ,14,27,467784,6,0 ,14,27,467792,3,0 ,14,27,467800,6,0 ,14,27,467808,3,0 ,14,27,467816,6,0 ,14,27,467824,3,0 ,14,27,467832,6,0 ,14,27,467840,3,0 ,17,923,8856452,64,0 ,45,15153,4137860,32,0 ,45,15153,5710724,80,0 ,14,27,467848,6,0 ,14,27,467856,3,0 ,14,27,467864,6,0 ,14,27,467872,3,0 ,14,27,467880,6,0 ,14,27,467888,3,0 ,14,27,467896,6,0 ,14,27,467904,3,0 ,44,15152,992196,32,0 ,44,15152,2040772,24,0 ,14,27,467912,5,0 ,14,27,467920,3,0 ,14,27,467928,6,0 ,14,27,467936,3,0 ,14,27,467944,6,0 ,14,27,467952,6,0 ,14,27,467960,3,0 ,14,27,467968,6,0 ,17,923,9905156,24,0 ,17,923,7283716,32,0 ,44,15152,2565124,56,0 ,44,15152,467972,24,0 ,17,923,9380868,32,0 ,14,27,467976,3,0 ,14,27,467984,6,0 ,14,27,467992,3,0 ,14,27,468000,6,0 ,14,27,468008,3,0 ,14,27,468016,6,0 ,14,27,468024,3,0 ,14,27,468032,6,0 ,17,923,6759492,32,0 ,17,923,7808068,40,0 ,14,27,468040,6,0 ,14,27,468048,3,0 ,14,27,468056,2,0 ,14,27,468064,6,0 ,20,24655,24061026,244,0 ,20,26223,28255330,1520,0 ,14,27,468072,3,0 ,14,27,468080,6,0 ,14,27,468088,3,0 ,14,27,468096,6,0 ,20,18141,7283842,376,0 ,17,923,8332420,48,0 ,44,15152,2040964,24,0 ,45,15153,4138116,40,0 ,14,27,468104,3,0 ,14,27,468112,6,0 ,14,27,468120,3,0 ,14,27,468128,6,0 ,14,27,468136,3,0 ,14,27,468144,6,0 ,14,27,468152,3,0 ,14,27,468160,6,0 ,17,923,9905348,24,0 ,44,15152,468164,24,0 ,44,15152,992452,40,0 ,14,27,468168,3,0 ,14,27,468176,6,0 ,14,27,468184,3,0 ,14,27,468192,6,0 ,20,20413,13051106,328,0 ,14,27,468200,3,0 ,14,27,468208,6,0 ,14,27,468216,3,0 ,14,27,468224,6,0 ,17,923,9381124,40,0 ,17,923,7283972,48,0 ,14,27,468232,3,0 ,14,27,468240,5,0 ,14,27,468248,3,0 ,14,27,468256,6,0 ,20,19273,9905442,172,0 ,14,27,468264,3,0 ,14,27,468272,6,0 ,14,27,468280,3,0 ,14,27,468288,6,0 ,44,15152,2041156,64,0 ,17,923,6759748,48,0 ,14,27,468296,3,0 ,14,27,468304,6,0 ,14,27,468312,3,0 ,14,27,468320,6,0 ,14,27,468328,3,0 ,14,27,468336,6,0 ,14,27,468344,3,0 ,14,27,468352,6,0 ,20,20835,14099842,244,0 ,17,923,9905540,24,0 ,17,923,7808388,24,0 ,44,15152,468356,24,0 ,17,923,8856964,32,0 ,14,27,468360,3,0 ,14,27,468368,6,0 ,14,27,468376,3,0 ,14,27,468384,6,0 ,14,27,468392,3,0 ,14,27,468400,6,0 ,14,27,468408,3,0 ,14,27,468416,5,0 ,45,15153,4138436,24,0 ,44,15152,3089860,392,0 ,44,15152,2565572,88,0 ,14,27,468424,3,0 ,14,27,468432,6,0 ,14,27,468440,3,0 ,14,27,468448,6,0 ,20,22211,18294242,444,0 ,14,27,468456,3,0 ,14,27,468464,6,0 ,14,27,468472,3,0 ,14,27,468480,6,0 ,17,923,8332804,32,0 ,44,15152,1517060,32,0 ,44,15152,992772,64,0 ,45,15153,5711364,24,0 ,14,27,468488,3,0 ,14,27,468496,2,0 ,14,27,468504,5,0 ,14,27,468512,3,0 ,14,27,468520,6,0 ,14,27,468528,3,0 ,14,27,468536,6,0 ,14,27,468544,3,0 ,17,923,9905732,32,0 ,17,923,7808580,48,0 ,44,15152,468548,48,0 ,45,15153,5187140,32,0 ,17,923,9381444,40,0 ,14,27,468552,6,0 ,14,27,468560,3,0 ,14,27,468568,6,0 ,14,27,468576,3,0 ,14,27,468584,6,0 ,14,27,468592,3,0 ,14,27,468600,6,0 ,14,27,468608,3,0 ,17,923,8857220,32,0 ,17,923,7284356,40,0 ,45,15153,4138628,24,0 ,14,27,468616,5,0 ,14,27,468624,2,0 ,14,27,468632,5,0 ,14,27,468640,6,0 ,14,27,468648,3,0 ,14,27,468656,5,0 ,14,27,468664,6,0 ,14,27,468672,3,0 ,45,15153,5711556,56,0 ,17,923,6760132,24,0 ,14,27,468680,6,0 ,14,27,468688,6,0 ,14,27,468696,3,0 ,14,27,468704,6,0 ,14,27,468712,3,0 ,14,27,468720,6,0 ,14,27,468728,5,0 ,14,27,468736,6,0 ,20,23463,20915970,380,0 ,17,923,8333060,64,0 ,44,15152,1517316,24,0 ,44,15152,3614468,48,0 ,14,27,468744,6,0 ,14,27,468752,6,0 ,14,27,468760,3,0 ,14,27,468768,6,0 ,14,27,468776,5,0 ,14,27,468784,3,0 ,14,27,468792,6,0 ,14,27,468800,6,0 ,20,25818,27207490,572,0 ,17,923,9905988,24,0 ,44,15152,2041668,24,0 ,45,15153,4138820,24,0 ,45,15153,5187396,56,0 ,14,27,468808,6,0 ,14,27,468816,6,0 ,14,27,468824,6,0 ,14,27,468832,6,0 ,14,27,468840,3,0 ,14,27,468848,2,0 ,14,27,468856,6,0 ,14,27,468864,6,0 ,20,22919,19867522,1124,0 ,17,923,9381764,40,0 ,17,923,6760324,64,0 ,17,923,8857476,48,0 ,14,27,468872,3,0 ,14,27,468880,5,0 ,14,27,468888,6,0 ,14,27,468896,6,0 ,14,27,468904,5,0 ,14,27,468912,6,0 ,14,27,468920,5,0 ,14,27,468928,3,0 ,44,15152,468932,104,0 ,17,923,7808964,48,0 ,17,923,7284676,24,0 ,44,15152,1517508,32,0 ,14,27,468936,6,0 ,14,27,468944,3,0 ,14,27,468952,6,0 ,14,27,468960,6,0 ,20,16579,3614690,12,0 ,14,27,468968,6,0 ,14,27,468976,3,0 ,14,27,468984,6,0 ,14,27,468992,6,0 ,17,923,9906180,40,0 ,44,15152,2041860,88,0 ,44,15152,993284,48,0 ,45,15153,4139012,40,0 ,14,27,469000,3,0 ,14,27,469008,6,0 ,14,27,469016,3,0 ,14,27,469024,6,0 ,20,17689,6236194,500,0 ,14,27,469032,6,0 ,14,27,469040,6,0 ,14,27,469048,6,0 ,14,27,469056,5,0 ,20,23219,20392002,100,0 ,20,16580,3614786,136,0 ,14,27,469064,3,0 ,14,27,469072,6,0 ,14,27,469080,6,0 ,14,27,469088,3,0 ,14,27,469096,2,0 ,14,27,469104,6,0 ,14,27,469112,3,0 ,14,27,469120,6,0 ,45,15153,5712004,88,0 ,17,923,7284868,24,0 ,44,15152,2566276,48,0 ,44,15152,3614852,24,0 ,14,27,469128,3,0 ,14,27,469136,6,0 ,14,27,469144,3,0 ,14,27,469152,6,0 ,14,27,469160,3,0 ,14,27,469168,6,0 ,14,27,469176,3,0 ,14,27,469184,6,0 ,20,24116,22489282,172,0 ,17,923,9382084,24,0 ,44,15152,1517764,24,0 ,14,27,469192,3,0 ,14,27,469200,6,0 ,14,27,469208,3,0 ,14,27,469216,6,0 ,14,27,469224,6,0 ,14,27,469232,6,0 ,14,27,469240,3,0 ,14,27,469248,6,0 ,20,26520,29305090,504,0 ,17,923,8857860,32,0 ,45,15153,5187844,24,0 ,17,923,8333572,56,0 ,14,27,469256,6,0 ,14,27,469264,3,0 ,14,27,469272,6,0 ,14,27,469280,6,0 ,14,27,469288,6,0 ,14,27,469296,3,0 ,14,27,469304,6,0 ,14,27,469312,5,0 ,20,21706,16722242,80,0 ,17,923,9906500,32,0 ,17,923,7809348,40,0 ,17,923,7285060,24,0 ,44,15152,3615044,24,0 ,45,15153,4139332,24,0 ,14,27,469320,3,0 ,14,27,469328,6,0 ,14,27,469336,6,0 ,14,27,469344,6,0 ,14,27,469352,5,0 ,14,27,469360,6,0 ,14,27,469368,6,0 ,14,27,469376,3,0 ,17,923,9382276,56,0 ,17,923,6760836,40,0 ,44,15152,1517956,40,0 ,44,15152,993668,48,0 ,14,27,469384,6,0 ,14,27,469392,5,0 ,14,27,469400,3,0 ,14,27,469408,6,0 ,14,27,469416,3,0 ,14,27,469424,6,0 ,14,27,469432,6,0 ,14,27,469440,6,0 ,45,15153,5188036,16,0 ,14,27,469448,3,0 ,14,27,469456,6,0 ,14,27,469464,3,0 ,14,27,469472,6,0 ,14,27,469480,3,0 ,14,27,469488,5,0 ,14,27,469496,3,0 ,14,27,469504,6,0 ,17,923,8858116,64,0 ,17,923,7285252,80,0 ,44,15152,2566660,40,0 ,44,15152,3615236,80,0 ,45,15153,4139524,24,0 ,14,27,469512,3,0 ,14,27,469520,6,0 ,14,27,469528,6,0 ,14,27,469536,3,0 ,20,15767,1518114,12,0 ,14,27,469544,6,0 ,14,27,469552,6,0 ,14,27,469560,3,0 ,14,27,469568,6,0 ,17,923,9906756,24,0 ,45,15153,5188164,16,0 ,14,27,469576,3,0 ,14,27,469584,6,0 ,14,27,469592,3,0 ,14,27,469600,6,0 ,14,27,469608,3,0 ,14,27,469616,6,0 ,14,27,469624,6,0 ,14,27,469632,3,0 ,20,19274,9906818,72,0 ,20,15768,1518210,60,0 ,17,923,7809668,24,0 ,14,27,469640,6,0 ,14,27,469648,3,0 ,14,27,469656,6,0 ,14,27,469664,3,0 ,20,15998,2042530,272,0 ,14,27,469672,2,0 ,14,27,469680,6,0 ,14,27,469688,3,0 ,14,27,469696,6,0 ,17,923,8334020,48,0 ,17,923,6761156,40,0 ,44,15152,2042564,104,0 ,44,15152,1518276,24,0 ,45,15153,4139716,48,0 ,45,15153,5188292,32,0 ,14,27,469704,3,0 ,14,27,469712,6,0 ,14,27,469720,3,0 ,14,27,469728,5,0 ,14,27,469736,3,0 ,14,27,469744,6,0 ,14,27,469752,6,0 ,14,27,469760,3,0 ,17,923,9906948,48,0 ,44,15152,469764,24,0 ,44,15152,994052,48,0 ,14,27,469768,5,0 ,14,27,469776,3,0 ,14,27,469784,6,0 ,14,27,469792,5,0 ,14,27,469800,3,0 ,14,27,469808,6,0 ,14,27,469816,3,0 ,14,27,469824,6,0 ,17,923,9382724,32,0 ,17,923,7809860,40,0 ,44,15152,2566980,40,0 ,45,15153,5712708,32,0 ,14,27,469832,3,0 ,14,27,469840,6,0 ,14,27,469848,3,0 ,14,27,469856,6,0 ,20,23220,20392802,368,0 ,14,27,469864,3,0 ,14,27,469872,5,0 ,14,27,469880,3,0 ,14,27,469888,6,0 ,44,15152,1518468,32,0 ,14,27,469896,3,0 ,14,27,469904,6,0 ,14,27,469912,3,0 ,14,27,469920,6,0 ,14,27,469928,3,0 ,14,27,469936,6,0 ,14,27,469944,3,0 ,14,27,469952,6,0 ,20,21707,16722882,124,0 ,45,15153,5188548,72,0 ,44,15152,469956,64,0 ,14,27,469960,3,0 ,14,27,469968,6,0 ,14,27,469976,3,0 ,14,27,469984,6,0 ,14,27,469992,3,0 ,14,27,470000,6,0 ,14,27,470008,3,0 ,14,27,470016,6,0 ,20,24656,24062978,88,0 ,17,923,8858628,24,0 ,17,923,6761476,32,0 ,14,27,470024,6,0 ,14,27,470032,6,0 ,14,27,470040,6,0 ,14,27,470048,6,0 ,20,20122,11480098,112,0 ,14,27,470056,6,0 ,14,27,470064,6,0 ,14,27,470072,6,0 ,14,27,470080,3,0 ,17,923,9382980,40,0 ,45,15153,4140100,24,0 ,45,15153,5712964,40,0 ,17,923,8334404,32,0 ,14,27,470088,6,0 ,14,27,470096,5,0 ,14,27,470104,5,0 ,14,27,470112,5,0 ,20,15769,1518690,120,0 ,14,27,470120,3,0 ,14,27,470128,6,0 ,14,27,470136,6,0 ,14,27,470144,6,0 ,20,16581,3615874,304,0 ,17,923,9907332,32,0 ,17,923,7810180,48,0 ,17,923,7285892,80,0 ,44,15152,2567300,128,0 ,44,15152,1518724,24,0 ,44,15152,994436,48,0 ,44,15152,3615876,56,0 ,14,27,470152,3,0 ,14,27,470160,6,0 ,14,27,470168,6,0 ,14,27,470176,6,0 ,20,24839,24587426,476,0 ,14,27,470184,6,0 ,14,27,470192,6,0 ,14,27,470200,3,0 ,14,27,470208,6,0 ,20,19275,9907394,172,0 ,17,923,8858820,64,0 ,14,27,470216,6,0 ,14,27,470224,3,0 ,14,27,470232,6,0 ,14,27,470240,3,0 ,14,27,470248,6,0 ,14,27,470256,3,0 ,14,27,470264,6,0 ,14,27,470272,3,0 ,45,15153,4140292,112,0 ,17,923,6761732,24,0 ,14,27,470280,6,0 ,14,27,470288,6,0 ,14,27,470296,6,0 ,14,27,470304,3,0 ,20,20836,14101794,136,0 ,14,27,470312,6,0 ,14,27,470320,6,0 ,14,27,470328,6,0 ,14,27,470336,3,0 ,17,923,8334660,48,0 ,44,15152,1518916,24,0 ,14,27,470344,6,0 ,14,27,470352,3,0 ,14,27,470360,5,0 ,14,27,470368,5,0 ,14,27,470376,6,0 ,14,27,470384,6,0 ,14,27,470392,3,0 ,14,27,470400,6,0 ,20,21925,17247618,436,0 ,17,923,9907588,32,0 ,45,15153,5713284,64,0 ,17,923,9383300,40,0 ,14,27,470408,6,0 ,14,27,470416,6,0 ,14,27,470424,5,0 ,14,27,470432,6,0 ,14,27,470440,3,0 ,14,27,470448,6,0 ,14,27,470456,3,0 ,14,27,470464,6,0 ,44,15152,470468,40,0 ,17,923,6761924,24,0 ,14,27,470472,3,0 ,14,27,470480,6,0 ,14,27,470488,3,0 ,14,27,470496,6,0 ,14,27,470504,3,0 ,14,27,470512,6,0 ,14,27,470520,3,0 ,14,27,470528,6,0 ,20,15307,470530,156,0 ,45,15153,5189124,104,0 ,17,923,7810564,64,0 ,44,15152,2043396,24,0 ,44,15152,1519108,80,0 ,44,15152,994820,32,0 ,14,27,470536,3,0 ,14,27,470544,6,0 ,14,27,470552,3,0 ,14,27,470560,6,0 ,20,24117,22490658,88,0 ,20,22450,18820642,252,0 ,14,27,470568,6,0 ,14,27,470576,6,0 ,14,27,470584,6,0 ,14,27,470592,3,0 ,44,15152,3616324,16,0 ,14,27,470600,5,0 ,14,27,470608,6,0 ,14,27,470616,6,0 ,14,27,470624,3,0 ,14,27,470632,6,0 ,14,27,470640,6,0 ,14,27,470648,3,0 ,14,27,470656,6,0 ,17,923,9907844,24,0 ,17,923,6762116,24,0 ,14,27,470664,6,0 ,14,27,470672,3,0 ,14,27,470680,6,0 ,14,27,470688,3,0 ,20,23871,21966498,1168,0 ,14,27,470696,6,0 ,14,27,470704,6,0 ,14,27,470712,6,0 ,14,27,470720,6,0 ,20,24657,24063682,32,0 ,17,923,9383620,40,0 ,44,15152,2043588,24,0 ,44,15152,3616452,96,0 ,17,923,8335044,40,0 ,17,923,8859332,32,0 ,14,27,470728,3,0 ,14,27,470736,6,0 ,14,27,470744,3,0 ,14,27,470752,6,0 ,14,27,470760,3,0 ,14,27,470768,6,0 ,14,27,470776,6,0 ,14,27,470784,6,0 ,20,22664,19345154,700,0 ,44,15152,995076,224,0 ,17,923,7286532,24,0 ,44,15152,470788,48,0 ,14,27,470792,6,0 ,14,27,470800,5,0 ,14,27,470808,3,0 ,14,27,470816,6,0 ,20,20414,13053730,80,0 ,14,27,470824,6,0 ,14,27,470832,6,0 ,14,27,470840,6,0 ,14,27,470848,3,0 ,17,923,9908036,24,0 ,17,923,6762308,56,0 ,14,27,470856,5,0 ,14,27,470864,3,0 ,14,27,470872,6,0 ,14,27,470880,6,0 ,14,27,470888,5,0 ,14,27,470896,3,0 ,14,27,470904,5,0 ,14,27,470912,3,0 ,45,15153,5713796,16,0 ,44,15152,2043780,24,0 ,14,27,470920,6,0 ,14,27,470928,6,0 ,14,27,470936,6,0 ,14,27,470944,3,0 ,20,21708,16723874,48,0 ,20,20123,11480994,112,0 ,14,27,470952,6,0 ,14,27,470960,6,0 ,14,27,470968,6,0 ,14,27,470976,6,0 ,20,24658,24063938,12,0 ,17,923,8859588,32,0 ,17,923,7286724,32,0 ,14,27,470984,6,0 ,14,27,470992,2,0 ,14,27,471000,6,0 ,14,27,471008,3,0 ,14,27,471016,6,0 ,14,27,471024,3,0 ,14,27,471032,6,0 ,14,27,471040,3,0 ,17,923,9908228,32,0 ,17,923,7811076,56,0 ,45,15153,5713924,24,0 ,17,923,8335364,40,0 ,17,923,9383940,32,0 ,14,27,471048,6,0 ,14,27,471056,3,0 ,14,27,471064,6,0 ,14,27,471072,3,0 ,20,15770,1519650,120,0 ,20,24659,24064034,412,0 ,14,27,471080,6,0 ,14,27,471088,3,0 ,14,27,471096,6,0 ,14,27,471104,6,0 ,20,18142,7286850,452,0 ,44,15152,2043972,24,0 ,14,27,471112,3,0 ,14,27,471120,6,0 ,14,27,471128,3,0 ,14,27,471136,6,0 ,14,27,471144,3,0 ,14,27,471152,6,0 ,14,27,471160,6,0 ,14,27,471168,3,0 ,20,19858,10956930,128,0 ,45,15153,4141188,64,0 ,44,15152,2568324,104,0 ,44,15152,1519748,24,0 ,44,15152,471172,24,0 ,14,27,471176,6,0 ,14,27,471184,3,0 ,14,27,471192,6,0 ,14,27,471200,3,0 ,14,27,471208,6,0 ,14,27,471216,3,0 ,14,27,471224,6,0 ,14,27,471232,3,0 ,17,923,8859844,48,0 ,17,923,7286980,24,0 ,45,15153,5714116,56,0 ,14,27,471240,6,0 ,14,27,471248,3,0 ,14,27,471256,6,0 ,14,27,471264,3,0 ,20,24118,22491362,296,0 ,14,27,471272,6,0 ,14,27,471280,3,0 ,14,27,471288,5,0 ,14,27,471296,3,0 ,17,923,9908484,32,0 ,17,923,6762756,32,0 ,44,15152,2044164,24,0 ,17,923,9384196,40,0 ,14,27,471304,6,0 ,14,27,471312,3,0 ,14,27,471320,6,0 ,14,27,471328,6,0 ,20,21709,16724258,72,0 ,14,27,471336,3,0 ,14,27,471344,6,0 ,14,27,471352,6,0 ,14,27,471360,6,0 ,17,923,8335684,32,0 ,44,15152,1519940,24,0 ,44,15152,471364,24,0 ,45,15153,5189956,40,0 ,14,27,471368,6,0 ,14,27,471376,3,0 ,14,27,471384,6,0 ,14,27,471392,6,0 ,20,20837,14102882,136,0 ,20,26053,27734370,492,0 ,14,27,471400,3,0 ,14,27,471408,6,0 ,14,27,471416,6,0 ,14,27,471424,3,0 ,17,923,7287172,56,0 ,14,27,471432,6,0 ,14,27,471440,3,0 ,14,27,471448,6,0 ,14,27,471456,3,0 ,20,20415,13054370,12,0 ,14,27,471464,6,0 ,14,27,471472,3,0 ,14,27,471480,6,0 ,14,27,471488,3,0 ,44,15152,3617220,24,0 ,17,923,7811524,64,0 ,44,15152,2044356,16,0 ,14,27,471496,6,0 ,14,27,471504,3,0 ,14,27,471512,6,0 ,14,27,471520,3,0 ,14,27,471528,6,0 ,14,27,471536,3,0 ,14,27,471544,6,0 ,14,27,471552,3,0 ,20,20416,13054466,84,0 ,17,923,9908740,32,0 ,17,923,6763012,24,0 ,44,15152,3092996,24,0 ,44,15152,1520132,56,0 ,44,15152,471556,40,0 ,14,27,471560,6,0 ,14,27,471568,3,0 ,14,27,471576,6,0 ,14,27,471584,6,0 ,20,19276,9908770,164,0 ,14,27,471592,6,0 ,14,27,471600,5,0 ,14,27,471608,3,0 ,14,27,471616,6,0 ,17,923,9384516,40,0 ,44,15152,2044484,24,0 ,17,923,8335940,40,0 ,17,923,8860228,32,0 ,14,27,471624,5,0 ,14,27,471632,3,0 ,14,27,471640,6,0 ,14,27,471648,6,0 ,14,27,471656,3,0 ,14,27,471664,6,0 ,14,27,471672,6,0 ,14,27,471680,5,0 ,45,15153,5714564,56,0 ,44,15152,3617412,16,0 ,45,15153,4141700,120,0 ,45,15153,5190276,56,0 ,14,27,471688,3,0 ,14,27,471696,6,0 ,14,27,471704,6,0 ,14,27,471712,6,0 ,14,27,471720,3,0 ,14,27,471728,6,0 ,14,27,471736,6,0 ,14,27,471744,6,0 ,44,15152,3093188,176,0 ,17,923,6763204,24,0 ,14,27,471752,3,0 ,14,27,471760,6,0 ,14,27,471768,3,0 ,14,27,471776,6,0 ,20,23464,20919010,2312,0 ,20,15308,471778,2304,0 ,20,20666,13578978,12,0 ,14,27,471784,3,0 ,14,27,471792,6,0 ,14,27,471800,3,0 ,14,27,471808,6,0 ,17,923,9908996,24,0 ,44,15152,2044676,16,0 ,44,15152,3617540,32,0 ,14,27,471816,3,0 ,14,27,471824,6,0 ,14,27,471832,3,0 ,14,27,471840,6,0 ,20,24476,23540514,1116,0 ,20,15999,2044706,92,0 ,20,20124,11481890,60,0 ,14,27,471848,3,0 ,14,27,471856,6,0 ,14,27,471864,3,0 ,14,27,471872,6,0 ,20,20667,13579074,204,0 ,17,923,8860484,64,0 ,17,923,7287620,64,0 ,44,15152,471876,24,0 ,14,27,471880,6,0 ,14,27,471888,3,0 ,14,27,471896,6,0 ,14,27,471904,6,0 ,20,21710,16724834,64,0 ,14,27,471912,3,0 ,14,27,471920,5,0 ,14,27,471928,5,0 ,14,27,471936,6,0 ,17,923,9384836,40,0 ,17,923,6763396,48,0 ,44,15152,2044804,32,0 ,17,923,8336260,32,0 ,14,27,471944,6,0 ,14,27,471952,3,0 ,14,27,471960,6,0 ,14,27,471968,3,0 ,14,27,471976,2,0 ,14,27,471984,6,0 ,14,27,471992,3,0 ,14,27,472000,6,0 ,20,22212,18297794,148,0 ,17,923,9909188,40,0 ,17,923,7812036,48,0 ,44,15152,2569156,120,0 ,44,15152,1520580,120,0 ,14,27,472008,6,0 ,14,27,472016,3,0 ,14,27,472024,6,0 ,14,27,472032,6,0 ,20,15771,1520610,352,0 ,14,27,472040,5,0 ,14,27,472048,3,0 ,14,27,472056,5,0 ,14,27,472064,6,0 ,44,15152,3617796,32,0 ,44,15152,472068,40,0 ,14,27,472072,3,0 ,14,27,472080,5,0 ,14,27,472088,6,0 ,14,27,472096,3,0 ,14,27,472104,6,0 ,14,27,472112,6,0 ,14,27,472120,6,0 ,14,27,472128,6,0 ,45,15153,5715012,72,0 ,45,15153,5190724,24,0 ,14,27,472136,6,0 ,14,27,472144,3,0 ,14,27,472152,6,0 ,14,27,472160,3,0 ,14,27,472168,6,0 ,14,27,472176,3,0 ,14,27,472184,6,0 ,14,27,472192,3,0 ,20,19859,10957954,104,0 ,17,923,8336516,32,0 ,44,15152,2045060,24,0 ,14,27,472200,6,0 ,14,27,472208,3,0 ,14,27,472216,6,0 ,14,27,472224,3,0 ,20,20417,13055138,440,0 ,14,27,472232,6,0 ,14,27,472240,3,0 ,14,27,472248,6,0 ,14,27,472256,3,0 ,17,923,9385156,40,0 ,14,27,472264,6,0 ,14,27,472272,3,0 ,14,27,472280,6,0 ,14,27,472288,3,0 ,14,27,472296,6,0 ,14,27,472304,3,0 ,14,27,472312,6,0 ,14,27,472320,3,0 ,20,20125,11482370,1660,0 ,17,923,9909508,40,0 ,17,923,6763780,40,0 ,44,15152,3618052,24,0 ,45,15153,5190916,64,0 ,14,27,472328,6,0 ,14,27,472336,3,0 ,14,27,472344,6,0 ,14,27,472352,3,0 ,14,27,472360,6,0 ,14,27,472368,3,0 ,14,27,472376,6,0 ,14,27,472384,3,0 ,17,923,8860996,24,0 ,17,923,7812420,48,0 ,17,923,7288132,32,0 ,44,15152,2045252,16,0 ,44,15152,472388,40,0 ,14,27,472392,6,0 ,14,27,472400,3,0 ,14,27,472408,6,0 ,14,27,472416,3,0 ,20,21711,16725346,96,0 ,14,27,472424,6,0 ,14,27,472432,3,0 ,14,27,472440,6,0 ,14,27,472448,6,0 ,17,923,8336772,40,0 ,14,27,472456,3,0 ,14,27,472464,6,0 ,14,27,472472,3,0 ,14,27,472480,6,0 ,20,20838,14103970,304,0 ,14,27,472488,6,0 ,14,27,472496,6,0 ,14,27,472504,3,0 ,14,27,472512,6,0 ,44,15152,3618244,24,0 ,44,15152,2045380,16,0 ,14,27,472520,6,0 ,14,27,472528,3,0 ,14,27,472536,5,0 ,14,27,472544,6,0 ,14,27,472552,3,0 ,14,27,472560,6,0 ,14,27,472568,6,0 ,14,27,472576,3,0 ,20,22451,18822658,108,0 ,20,16000,2045442,80,0 ,20,16582,3618306,12,0 ,17,923,9385476,32,0 ,44,15152,996868,72,0 ,17,923,8861188,64,0 ,14,27,472584,6,0 ,14,27,472592,3,0 ,14,27,472600,6,0 ,14,27,472608,6,0 ,14,27,472616,5,0 ,14,27,472624,3,0 ,14,27,472632,6,0 ,14,27,472640,3,0 ,17,923,9909828,32,0 ,17,923,7288388,24,0 ,17,923,6764100,32,0 ,44,15152,2045508,104,0 ,45,15153,4142660,16,0 ,14,27,472648,6,0 ,14,27,472656,3,0 ,14,27,472664,6,0 ,14,27,472672,3,0 ,20,16583,3618402,136,0 ,14,27,472680,6,0 ,14,27,472688,6,0 ,14,27,472696,6,0 ,14,27,472704,6,0 ,20,16223,3094146,440,0 ,45,15153,5715588,16,0 ,44,15152,472708,40,0 ,44,15152,3618436,24,0 ,14,27,472712,6,0 ,14,27,472720,3,0 ,14,27,472728,6,0 ,14,27,472736,3,0 ,14,27,472744,6,0 ,14,27,472752,3,0 ,14,27,472760,6,0 ,14,27,472768,6,0 ,17,923,8337092,40,0 ,17,923,7812804,32,0 ,45,15153,4142788,24,0 ,14,27,472776,6,0 ,14,27,472784,6,0 ,14,27,472792,6,0 ,14,27,472800,6,0 ,20,23221,20395746,80,0 ,14,27,472808,3,0 ,14,27,472816,6,0 ,14,27,472824,6,0 ,14,27,472832,6,0 ,17,923,9385732,40,0 ,17,923,7288580,32,0 ,45,15153,5191428,64,0 ,45,15153,5715716,16,0 ,14,27,472840,6,0 ,14,27,472848,3,0 ,14,27,472856,6,0 ,14,27,472864,6,0 ,14,27,472872,6,0 ,14,27,472880,5,0 ,14,27,472888,6,0 ,14,27,472896,6,0 ,20,19277,9910082,100,0 ,17,923,9910084,32,0 ,17,923,6764356,48,0 ,44,15152,3618628,24,0 ,14,27,472904,3,0 ,14,27,472912,6,0 ,14,27,472920,6,0 ,14,27,472928,6,0 ,14,27,472936,3,0 ,14,27,472944,5,0 ,14,27,472952,6,0 ,14,27,472960,6,0 ,45,15153,5715844,32,0 ,44,15152,2570116,56,0 ,44,15152,1521540,48,0 ,45,15153,4142980,32,0 ,14,27,472968,3,0 ,14,27,472976,6,0 ,14,27,472984,6,0 ,14,27,472992,5,0 ,14,27,473000,6,0 ,14,27,473008,3,0 ,14,27,473016,6,0 ,14,27,473024,6,0 ,20,19860,10958786,48,0 ,20,17690,6240194,184,0 ,44,15152,473028,16,0 ,17,923,7813060,32,0 ,14,27,473032,6,0 ,14,27,473040,3,0 ,14,27,473048,6,0 ,14,27,473056,3,0 ,14,27,473064,6,0 ,14,27,473072,3,0 ,14,27,473080,5,0 ,14,27,473088,6,0 ,17,923,8861700,32,0 ,17,923,7288836,48,0 ,44,15152,3618820,96,0 ,17,923,8337412,40,0 ,14,27,473096,3,0 ,14,27,473104,5,0 ,14,27,473112,6,0 ,14,27,473120,6,0 ,20,23651,21444642,296,0 ,14,27,473128,6,0 ,14,27,473136,6,0 ,14,27,473144,6,0 ,14,27,473152,6,0 ,17,923,9910340,32,0 ,44,15152,3094596,24,0 ,44,15152,473156,24,0 ,44,15152,997444,32,0 ,17,923,9386052,40,0 ,14,27,473160,6,0 ,14,27,473168,3,0 ,14,27,473176,5,0 ,14,27,473184,6,0 ,20,22213,18298978,88,0 ,20,21712,16726114,12,0 ,14,27,473192,6,0 ,14,27,473200,6,0 ,14,27,473208,6,0 ,14,27,473216,6,0 ,20,16001,2046082,312,0 ,45,15153,5716100,72,0 ,45,15153,4143236,48,0 ,14,27,473224,6,0 ,14,27,473232,6,0 ,14,27,473240,6,0 ,14,27,473248,5,0 ,14,27,473256,6,0 ,14,27,473264,3,0 ,14,27,473272,6,0 ,14,27,473280,3,0 ,20,21713,16726210,76,0 ,20,26521,29309122,164,0 ,20,21123,15677634,64,0 ,17,923,6764740,40,0 ,17,923,7813316,40,0 ,14,27,473288,5,0 ,14,27,473296,6,0 ,14,27,473304,3,0 ,14,27,473312,5,0 ,14,27,473320,6,0 ,14,27,473328,3,0 ,14,27,473336,6,0 ,14,27,473344,5,0 ,17,923,8861956,32,0 ,44,15152,3094788,80,0 ,44,15152,1521924,64,0 ,44,15152,473348,24,0 ,45,15153,5191940,32,0 ,14,27,473352,6,0 ,14,27,473360,6,0 ,14,27,473368,6,0 ,14,27,473376,6,0 ,20,25819,27212066,472,0 ,14,27,473384,5,0 ,14,27,473392,6,0 ,14,27,473400,3,0 ,14,27,473408,6,0 ,20,19861,10959170,128,0 ,17,923,9910596,32,0 ,44,15152,2570564,96,0 ,44,15152,997700,304,0 ,45,15153,4667716,24,0 ,17,923,8337732,32,0 ,14,27,473416,6,0 ,14,27,473424,3,0 ,14,27,473432,6,0 ,14,27,473440,2,0 ,20,23222,20396386,256,0 ,20,16870,4143458,76,0 ,20,22452,18823522,96,0 ,14,27,473448,6,0 ,14,27,473456,3,0 ,14,27,473464,6,0 ,14,27,473472,3,0 ,17,923,9386372,40,0 ,17,923,7289220,32,0 ,44,15152,2046340,40,0 ,14,27,473480,6,0 ,14,27,473488,6,0 ,14,27,473496,3,0 ,14,27,473504,6,0 ,20,20668,13580706,196,0 ,14,27,473512,3,0 ,14,27,473520,6,0 ,14,27,473528,3,0 ,14,27,473536,6,0 ,44,15152,473540,40,0 ,14,27,473544,6,0 ,14,27,473552,6,0 ,14,27,473560,6,0 ,14,27,473568,5,0 ,14,27,473576,3,0 ,14,27,473584,6,0 ,14,27,473592,5,0 ,14,27,473600,6,0 ,17,923,8862212,48,0 ,17,923,7813636,24,0 ,17,923,6765060,32,0 ,45,15153,4143620,48,0 ,45,15153,4667908,24,0 ,45,15153,5192196,32,0 ,14,27,473608,6,0 ,14,27,473616,6,0 ,14,27,473624,3,0 ,14,27,473632,6,0 ,20,24119,22493730,964,0 ,14,27,473640,5,0 ,14,27,473648,3,0 ,14,27,473656,5,0 ,14,27,473664,5,0 ,17,923,9910852,32,0 ,17,923,8337988,32,0 ,14,27,473672,5,0 ,14,27,473680,2,0 ,14,27,473688,5,0 ,14,27,473696,3,0 ,20,19278,9910882,64,0 ,14,27,473704,6,0 ,14,27,473712,6,0 ,14,27,473720,6,0 ,14,27,473728,3,0 ,20,26361,28785282,112,0 ,17,923,7289476,32,0 ,14,27,473736,6,0 ,14,27,473744,6,0 ,14,27,473752,3,0 ,14,27,473760,6,0 ,20,16584,3619490,136,0 ,14,27,473768,6,0 ,14,27,473776,6,0 ,14,27,473784,5,0 ,14,27,473792,3,0 ,20,21124,15678146,64,0 ,17,923,9386692,32,0 ,17,923,7813828,32,0 ,44,15152,2046660,56,0 ,45,15153,4668100,96,0 ,45,15153,5716676,24,0 ,14,27,473800,6,0 ,14,27,473808,3,0 ,14,27,473816,6,0 ,14,27,473824,3,0 ,14,27,473832,6,0 ,14,27,473840,3,0 ,14,27,473848,6,0 ,14,27,473856,3,0 ,45,15153,5192452,24,0 ,17,923,6765316,40,0 ,44,15152,1522436,32,0 ,44,15152,473860,32,0 ,44,15152,3619588,24,0 ,14,27,473864,6,0 ,14,27,473872,3,0 ,14,27,473880,5,0 ,14,27,473888,6,0 ,20,22214,18299682,196,0 ,20,15533,998178,136,0 ,20,21714,16726818,208,0 ,20,21926,17251106,160,0 ,14,27,473896,6,0 ,14,27,473904,3,0 ,14,27,473912,6,0 ,14,27,473920,3,0 ,17,923,9911108,24,0 ,17,923,8338244,24,0 ,14,27,473928,6,0 ,14,27,473936,3,0 ,14,27,473944,6,0 ,14,27,473952,3,0 ,14,27,473960,5,0 ,14,27,473968,3,0 ,14,27,473976,6,0 ,14,27,473984,6,0 ,20,24840,24591234,376,0 ,17,923,8862596,32,0 ,17,923,7289732,40,0 ,44,15152,3095428,56,0 ,45,15153,4144004,40,0 ,45,15153,5716868,32,0 ,14,27,473992,6,0 ,14,27,474000,3,0 ,14,27,474008,6,0 ,14,27,474016,6,0 ,14,27,474024,3,0 ,14,27,474032,6,0 ,14,27,474040,6,0 ,14,27,474048,3,0 ,20,16871,4144066,208,0 ,17,923,9386948,32,0 ,17,923,7814084,40,0 ,44,15152,3619780,24,0 ,45,15153,5192644,56,0 ,14,27,474056,6,0 ,14,27,474064,3,0 ,14,27,474072,6,0 ,14,27,474080,3,0 ,14,27,474088,6,0 ,14,27,474096,3,0 ,14,27,474104,6,0 ,14,27,474112,6,0 ,17,923,9911300,24,0 ,44,15152,1522692,40,0 ,44,15152,474116,88,0 ,17,923,8338436,32,0 ,14,27,474120,3,0 ,14,27,474128,6,0 ,14,27,474136,3,0 ,14,27,474144,5,0 ,14,27,474152,3,0 ,14,27,474160,6,0 ,14,27,474168,3,0 ,14,27,474176,5,0 ,44,15152,2571332,40,0 ,17,923,6765636,32,0 ,14,27,474184,6,0 ,14,27,474192,3,0 ,14,27,474200,6,0 ,14,27,474208,3,0 ,20,22453,18824290,108,0 ,20,19279,9911394,128,0 ,14,27,474216,6,0 ,14,27,474224,3,0 ,14,27,474232,5,0 ,14,27,474240,3,0 ,17,923,8862852,64,0 ,44,15152,2047108,32,0 ,44,15152,3619972,24,0 ,45,15153,5717124,56,0 ,14,27,474248,6,0 ,14,27,474256,3,0 ,14,27,474264,6,0 ,14,27,474272,6,0 ,14,27,474280,3,0 ,14,27,474288,6,0 ,14,27,474296,5,0 ,14,27,474304,3,0 ,20,21125,15678658,64,0 ,17,923,9911492,32,0 ,17,923,7290052,32,0 ,45,15153,4144324,24,0 ,17,923,9387204,48,0 ,14,27,474312,5,0 ,14,27,474320,3,0 ,14,27,474328,5,0 ,14,27,474336,3,0 ,14,27,474344,6,0 ,14,27,474352,6,0 ,14,27,474360,6,0 ,14,27,474368,3,0 ,20,24660,24067330,96,0 ,17,923,8338692,24,0 ,17,923,7814404,40,0 ,14,27,474376,6,0 ,14,27,474384,3,0 ,14,27,474392,6,0 ,14,27,474400,6,0 ,14,27,474408,3,0 ,14,27,474416,6,0 ,14,27,474424,6,0 ,14,27,474432,6,0 ,20,19862,10960194,272,0 ,44,15152,3620164,32,0 ,17,923,6765892,32,0 ,44,15152,3095876,32,0 ,44,15152,1523012,32,0 ,14,27,474440,6,0 ,14,27,474448,6,0 ,14,27,474456,6,0 ,14,27,474464,6,0 ,14,27,474472,6,0 ,14,27,474480,6,0 ,14,27,474488,3,0 ,14,27,474496,6,0 ,20,17691,6241666,112,0 ,45,15153,5193092,16,0 ,44,15152,2571652,24,0 ,44,15152,2047364,32,0 ,45,15153,4144516,64,0 ,14,27,474504,6,0 ,14,27,474512,3,0 ,14,27,474520,6,0 ,14,27,474528,3,0 ,14,27,474536,6,0 ,14,27,474544,3,0 ,14,27,474552,6,0 ,14,27,474560,3,0 ,17,923,9911748,16,0 ,17,923,7290308,24,0 ,45,15153,4668868,16,0 ,17,923,8338884,24,0 ,14,27,474568,6,0 ,14,27,474576,6,0 ,14,27,474584,3,0 ,14,27,474592,6,0 ,20,26522,29310434,60,0 ,14,27,474600,3,0 ,14,27,474608,6,0 ,14,27,474616,6,0 ,14,27,474624,3,0 ,20,26362,28786178,284,0 ,45,15153,5193220,16,0 ,14,27,474632,6,0 ,14,27,474640,3,0 ,14,27,474648,6,0 ,14,27,474656,3,0 ,14,27,474664,6,0 ,14,27,474672,2,0 ,14,27,474680,6,0 ,14,27,474688,3,0 ,17,923,9911876,24,0 ,17,923,7814724,40,0 ,17,923,6766148,24,0 ,44,15152,3096132,616,0 ,44,15152,2571844,48,0 ,44,15152,1523268,32,0 ,44,15152,3620420,32,0 ,45,15153,4668996,80,0 ,45,15153,5717572,24,0 ,17,923,9387588,48,0 ,14,27,474696,6,0 ,14,27,474704,3,0 ,14,27,474712,6,0 ,14,27,474720,3,0 ,20,18143,7290466,204,0 ,14,27,474728,6,0 ,14,27,474736,3,0 ,14,27,474744,6,0 ,14,27,474752,3,0 ,17,923,8863364,24,0 ,17,923,7290500,64,0 ,44,15152,2047620,24,0 ,45,15153,5193348,24,0 ,17,923,8339076,32,0 ,14,27,474760,6,0 ,14,27,474768,3,0 ,14,27,474776,6,0 ,14,27,474784,3,0 ,14,27,474792,6,0 ,14,27,474800,3,0 ,14,27,474808,6,0 ,14,27,474816,3,0 ,20,21126,15679170,64,0 ,44,15152,474820,64,0 ,14,27,474824,6,0 ,14,27,474832,3,0 ,14,27,474840,6,0 ,14,27,474848,3,0 ,20,21467,16203490,532,0 ,20,15772,1523426,136,0 ,20,16585,3620578,128,0 ,14,27,474856,6,0 ,14,27,474864,6,0 ,14,27,474872,3,0 ,14,27,474880,6,0 ,17,923,9912068,24,0 ,17,923,6766340,40,0 ,45,15153,5717764,16,0 ,14,27,474888,3,0 ,14,27,474896,6,0 ,14,27,474904,3,0 ,14,27,474912,6,0 ,20,20839,14106402,136,0 ,14,27,474920,6,0 ,14,27,474928,3,0 ,14,27,474936,6,0 ,14,27,474944,6,0 ,17,923,8863556,64,0 ,44,15152,2047812,24,0 ,44,15152,1523524,32,0 ,44,15152,3620676,88,0 ,45,15153,5193540,32,0 ,14,27,474952,3,0 ,14,27,474960,6,0 ,14,27,474968,3,0 ,14,27,474976,6,0 ,20,15534,999266,120,0 ,14,27,474984,6,0 ,14,27,474992,3,0 ,14,27,475000,6,0 ,14,27,475008,3,0 ,17,923,8339332,56,0 ,17,923,7815044,40,0 ,45,15153,4145028,16,0 ,45,15153,5717892,16,0 ,14,27,475016,6,0 ,14,27,475024,3,0 ,14,27,475032,6,0 ,14,27,475040,3,0 ,14,27,475048,6,0 ,14,27,475056,3,0 ,14,27,475064,5,0 ,14,27,475072,3,0 ,20,22454,18825154,32,0 ,20,26523,29310914,36,0 ,20,17267,5193666,204,0 ,20,20669,13582274,208,0 ,17,923,9912260,32,0 ,44,15152,2572228,64,0 ,17,923,9387972,40,0 ,14,27,475080,6,0 ,14,27,475088,3,0 ,14,27,475096,5,0 ,14,27,475104,3,0 ,14,27,475112,6,0 ,14,27,475120,5,0 ,14,27,475128,3,0 ,14,27,475136,6,0 ,20,24661,24068098,432,0 ,45,15153,5718020,24,0 ,44,15152,2048004,32,0 ,45,15153,4145156,56,0 ,14,27,475144,6,0 ,14,27,475152,3,0 ,14,27,475160,6,0 ,14,27,475168,3,0 ,20,21927,17252386,80,0 ,14,27,475176,6,0 ,14,27,475184,3,0 ,14,27,475192,6,0 ,14,27,475200,6,0 ,45,15153,5193796,24,0 ,17,923,6766660,24,0 ,44,15152,1523780,72,0 ,14,27,475208,3,0 ,14,27,475216,6,0 ,14,27,475224,6,0 ,14,27,475232,3,0 ,20,19280,9912418,396,0 ,20,18610,8339554,12,0 ,14,27,475240,6,0 ,14,27,475248,6,0 ,14,27,475256,2,0 ,14,27,475264,6,0 ,17,923,7291012,40,0 ,14,27,475272,3,0 ,14,27,475280,5,0 ,14,27,475288,5,0 ,14,27,475296,3,0 ,14,27,475304,6,0 ,14,27,475312,3,0 ,14,27,475320,6,0 ,14,27,475328,3,0 ,20,22455,18825410,108,0 ,20,26054,27738306,1480,0 ,20,18611,8339650,96,0 ,20,21127,15679682,64,0 ,17,923,9912516,24,0 ,17,923,7815364,40,0 ,44,15152,475332,56,0 ,45,15153,4669636,88,0 ,45,15153,5718212,24,0 ,14,27,475336,6,0 ,14,27,475344,6,0 ,14,27,475352,3,0 ,14,27,475360,6,0 ,20,26524,29311202,208,0 ,14,27,475368,3,0 ,14,27,475376,6,0 ,14,27,475384,3,0 ,14,27,475392,6,0 ,20,17692,6242562,444,0 ,17,923,9388292,40,0 ,17,923,6766852,32,0 ,44,15152,2048260,32,0 ,45,15153,5193988,24,0 ,14,27,475400,5,0 ,14,27,475408,3,0 ,14,27,475416,6,0 ,14,27,475424,3,0 ,14,27,475432,5,0 ,14,27,475440,3,0 ,14,27,475448,5,0 ,14,27,475456,3,0 ,20,22215,18301250,152,0 ,17,923,8864068,32,0 ,17,923,8339780,48,0 ,14,27,475464,6,0 ,14,27,475472,6,0 ,14,27,475480,3,0 ,14,27,475488,6,0 ,20,23652,21447010,372,0 ,20,23223,20398434,84,0 ,14,27,475496,6,0 ,14,27,475504,6,0 ,14,27,475512,3,0 ,14,27,475520,6,0 ,17,923,9912708,32,0 ,45,15153,5718404,32,0 ,14,27,475528,3,0 ,14,27,475536,6,0 ,14,27,475544,6,0 ,14,27,475552,3,0 ,20,21715,16728482,12,0 ,14,27,475560,6,0 ,14,27,475568,3,0 ,14,27,475576,6,0 ,14,27,475584,3,0 ,45,15153,5194180,16,0 ,17,923,7291332,40,0 ,44,15152,2572740,40,0 ,45,15153,4145604,24,0 ,14,27,475592,6,0 ,14,27,475600,6,0 ,14,27,475608,3,0 ,14,27,475616,6,0 ,14,27,475624,6,0 ,14,27,475632,3,0 ,14,27,475640,6,0 ,14,27,475648,3,0 ,20,21716,16728578,12,0 ,44,15152,3621380,32,0 ,17,923,7815684,32,0 ,17,923,6767108,16,0 ,44,15152,2048516,24,0 ,14,27,475656,6,0 ,14,27,475664,3,0 ,14,27,475672,5,0 ,14,27,475680,3,0 ,14,27,475688,5,0 ,14,27,475696,6,0 ,14,27,475704,3,0 ,14,27,475712,6,0 ,20,16872,4145730,48,0 ,20,16002,2048578,12,0 ,17,923,9388612,40,0 ,45,15153,5194308,16,0 ,17,923,8864324,32,0 ,14,27,475720,3,0 ,14,27,475728,6,0 ,14,27,475736,6,0 ,14,27,475744,3,0 ,20,21717,16728674,48,0 ,20,20418,13058658,160,0 ,14,27,475752,6,0 ,14,27,475760,6,0 ,14,27,475768,6,0 ,14,27,475776,5,0 ,17,923,9912964,16,0 ,17,923,6767236,24,0 ,44,15152,1524356,40,0 ,44,15152,475780,48,0 ,45,15153,4145796,16,0 ,45,15153,5718660,16,0 ,14,27,475784,6,0 ,14,27,475792,6,0 ,14,27,475800,3,0 ,14,27,475808,6,0 ,20,21928,17253026,240,0 ,20,16003,2048674,12,0 ,14,27,475816,6,0 ,14,27,475824,6,0 ,14,27,475832,6,0 ,14,27,475840,3,0 ,20,21128,15680194,64,0 ,17,923,8340164,48,0 ,44,15152,2048708,32,0 ,44,15152,1000132,424,0 ,45,15153,5194436,16,0 ,14,27,475848,6,0 ,14,27,475856,6,0 ,14,27,475864,6,0 ,14,27,475872,3,0 ,20,16586,3621602,324,0 ,14,27,475880,6,0 ,14,27,475888,6,0 ,14,27,475896,6,0 ,14,27,475904,3,0 ,20,16004,2048770,60,0 ,17,923,9913092,16,0 ,17,923,7815940,32,0 ,17,923,7291652,48,0 ,44,15152,2573060,24,0 ,44,15152,3621636,88,0 ,45,15153,4145924,64,0 ,45,15153,5718788,24,0 ,14,27,475912,6,0 ,14,27,475920,6,0 ,14,27,475928,6,0 ,14,27,475936,6,0 ,20,15773,1524514,152,0 ,20,15535,1000226,236,0 ,14,27,475944,6,0 ,14,27,475952,6,0 ,14,27,475960,6,0 ,14,27,475968,3,0 ,17,923,8864580,48,0 ,17,923,6767428,40,0 ,45,15153,5194564,24,0 ,14,27,475976,6,0 ,14,27,475984,5,0 ,14,27,475992,6,0 ,14,27,476000,3,0 ,20,20840,14107490,136,0 ,14,27,476008,6,0 ,14,27,476016,3,0 ,14,27,476024,6,0 ,14,27,476032,3,0 ,17,923,9913220,32,0 ,45,15153,4670340,32,0 ,17,923,9388932,32,0 ,14,27,476040,6,0 ,14,27,476048,6,0 ,14,27,476056,3,0 ,14,27,476064,6,0 ,14,27,476072,6,0 ,14,27,476080,3,0 ,14,27,476088,6,0 ,14,27,476096,3,0 ,20,18612,8340418,332,0 ,20,16873,4146114,136,0 ,45,15153,5718980,24,0 ,44,15152,2573252,80,0 ,44,15152,2048964,32,0 ,44,15152,1524676,40,0 ,14,27,476104,6,0 ,14,27,476112,3,0 ,14,27,476120,6,0 ,14,27,476128,3,0 ,20,21718,16729058,452,0 ,14,27,476136,6,0 ,14,27,476144,3,0 ,14,27,476152,6,0 ,14,27,476160,5,0 ,20,23224,20399106,120,0 ,45,15153,5194756,32,0 ,17,923,7816196,56,0 ,44,15152,476164,184,0 ,14,27,476168,5,0 ,14,27,476176,6,0 ,14,27,476184,3,0 ,14,27,476192,6,0 ,20,22456,18826274,88,0 ,14,27,476200,3,0 ,14,27,476208,6,0 ,14,27,476216,3,0 ,14,27,476224,6,0 ,20,16224,3097666,3528,0 ,17,923,8340548,48,0 ,14,27,476232,6,0 ,14,27,476240,6,0 ,14,27,476248,3,0 ,14,27,476256,6,0 ,14,27,476264,6,0 ,14,27,476272,6,0 ,14,27,476280,6,0 ,14,27,476288,3,0 ,17,923,9913476,72,0 ,17,923,7292036,40,0 ,17,923,6767748,24,0 ,45,15153,4670596,24,0 ,45,15153,5719172,32,0 ,17,923,9389188,32,0 ,14,27,476296,5,0 ,14,27,476304,6,0 ,14,27,476312,3,0 ,14,27,476320,6,0 ,14,27,476328,6,0 ,14,27,476336,3,0 ,14,27,476344,6,0 ,14,27,476352,6,0 ,20,21129,15680706,64,0 ,20,18144,7292098,120,0 ,17,923,8864964,32,0 ,44,15152,2049220,24,0 ,14,27,476360,3,0 ,14,27,476368,6,0 ,14,27,476376,5,0 ,14,27,476384,5,0 ,20,22665,19350754,352,0 ,20,16005,2049250,120,0 ,14,27,476392,6,0 ,14,27,476400,6,0 ,14,27,476408,5,0 ,14,27,476416,6,0 ,45,15153,5195012,16,0 ,44,15152,1524996,56,0 ,45,15153,4146436,88,0 ,14,27,476424,2,0 ,14,27,476432,6,0 ,14,27,476440,3,0 ,14,27,476448,6,0 ,14,27,476456,3,0 ,14,27,476464,6,0 ,14,27,476472,3,0 ,14,27,476480,6,0 ,45,15153,4670788,32,0 ,17,923,6767940,48,0 ,14,27,476488,6,0 ,14,27,476496,3,0 ,14,27,476504,6,0 ,14,27,476512,3,0 ,14,27,476520,6,0 ,14,27,476528,3,0 ,14,27,476536,5,0 ,14,27,476544,3,0 ,17,923,9389444,32,0 ,44,15152,2049412,32,0 ,45,15153,5195140,16,0 ,45,15153,5719428,24,0 ,14,27,476552,6,0 ,14,27,476560,3,0 ,14,27,476568,6,0 ,14,27,476576,6,0 ,14,27,476584,3,0 ,14,27,476592,2,0 ,14,27,476600,6,0 ,14,27,476608,6,0 ,20,19863,10962370,796,0 ,17,923,8865220,64,0 ,17,923,7816644,40,0 ,17,923,7292356,24,0 ,44,15152,3622340,32,0 ,17,923,8340932,48,0 ,14,27,476616,3,0 ,14,27,476624,6,0 ,14,27,476632,3,0 ,14,27,476640,6,0 ,14,27,476648,6,0 ,14,27,476656,3,0 ,14,27,476664,6,0 ,14,27,476672,3,0 ,20,22216,18302466,312,0 ,45,15153,5195268,16,0 ,14,27,476680,6,0 ,14,27,476688,3,0 ,14,27,476696,6,0 ,14,27,476704,6,0 ,20,17268,5195298,324,0 ,14,27,476712,6,0 ,14,27,476720,5,0 ,14,27,476728,3,0 ,14,27,476736,5,0 ,20,20670,13583938,332,0 ,45,15153,5719620,56,0 ,44,15152,2573892,48,0 ,45,15153,4671044,72,0 ,14,27,476744,3,0 ,14,27,476752,6,0 ,14,27,476760,6,0 ,14,27,476768,3,0 ,14,27,476776,6,0 ,14,27,476784,6,0 ,14,27,476792,3,0 ,14,27,476800,6,0 ,17,923,9389700,40,0 ,17,923,7292548,40,0 ,44,15152,2049668,32,0 ,45,15153,5195396,24,0 ,14,27,476808,3,0 ,14,27,476816,6,0 ,14,27,476824,3,0 ,14,27,476832,6,0 ,14,27,476840,3,0 ,14,27,476848,6,0 ,14,27,476856,3,0 ,14,27,476864,6,0 ,20,21130,15681218,64,0 ,17,923,9914052,32,0 ,17,923,6768324,48,0 ,44,15152,1525444,16,0 ,44,15152,3622596,24,0 ,14,27,476872,3,0 ,14,27,476880,5,0 ,14,27,476888,6,0 ,14,27,476896,3,0 ,20,22457,18826978,228,0 ,20,26363,28788450,188,0 ,14,27,476904,6,0 ,14,27,476912,3,0 ,14,27,476920,6,0 ,14,27,476928,5,0 ,17,923,7816964,40,0 ,14,27,476936,6,0 ,14,27,476944,6,0 ,14,27,476952,6,0 ,14,27,476960,3,0 ,14,27,476968,6,0 ,14,27,476976,3,0 ,14,27,476984,6,0 ,14,27,476992,6,0 ,20,24841,24594242,84,0 ,17,923,8341316,56,0 ,44,15152,1525572,48,0 ,45,15153,5195588,16,0 ,14,27,477000,2,0 ,14,27,477008,6,0 ,14,27,477016,3,0 ,14,27,477024,6,0 ,20,20419,13059938,328,0 ,20,26525,29312866,216,0 ,14,27,477032,3,0 ,14,27,477040,6,0 ,14,27,477048,3,0 ,14,27,477056,6,0 ,44,15152,3622788,24,0 ,44,15152,2049924,104,0 ,14,27,477064,5,0 ,14,27,477072,3,0 ,14,27,477080,6,0 ,14,27,477088,3,0 ,20,20841,14108578,244,0 ,14,27,477096,5,0 ,14,27,477104,3,0 ,14,27,477112,6,0 ,14,27,477120,5,0 ,20,23225,20400066,124,0 ,17,923,9914308,40,0 ,17,923,7292868,32,0 ,44,15152,2574276,24,0 ,45,15153,4147140,16,0 ,45,15153,5195716,16,0 ,17,923,8865732,24,0 ,17,923,9390020,40,0 ,14,27,477128,3,0 ,14,27,477136,6,0 ,14,27,477144,3,0 ,14,27,477152,6,0 ,20,15774,1525730,268,0 ,20,25820,27215842,892,0 ,14,27,477160,6,0 ,14,27,477168,6,0 ,14,27,477176,3,0 ,14,27,477184,6,0 ,20,16874,4147202,44,0 ,45,15153,5720068,32,0 ,14,27,477192,3,0 ,14,27,477200,6,0 ,14,27,477208,3,0 ,14,27,477216,6,0 ,14,27,477224,3,0 ,14,27,477232,6,0 ,14,27,477240,3,0 ,14,27,477248,6,0 ,45,15153,5195844,16,0 ,17,923,7817284,32,0 ,17,923,6768708,48,0 ,44,15152,3622980,32,0 ,45,15153,4147268,24,0 ,14,27,477256,3,0 ,14,27,477264,6,0 ,14,27,477272,3,0 ,14,27,477280,6,0 ,20,25635,26691682,360,0 ,14,27,477288,6,0 ,14,27,477296,6,0 ,14,27,477304,3,0 ,14,27,477312,5,0 ,20,18145,7293058,12,0 ,17,923,8865924,64,0 ,44,15152,2574468,24,0 ,45,15153,4671620,24,0 ,14,27,477320,5,0 ,14,27,477328,3,0 ,14,27,477336,5,0 ,14,27,477344,3,0 ,20,16006,2050210,120,0 ,14,27,477352,6,0 ,14,27,477360,3,0 ,14,27,477368,6,0 ,14,27,477376,3,0 ,20,21131,15681730,60,0 ,45,15153,5195972,16,0 ,17,923,7293124,40,0 ,44,15152,1525956,24,0 ,14,27,477384,5,0 ,14,27,477392,6,0 ,14,27,477400,3,0 ,14,27,477408,6,0 ,20,18146,7293154,12,0 ,14,27,477416,6,0 ,14,27,477424,6,0 ,14,27,477432,3,0 ,14,27,477440,6,0 ,17,923,9914628,24,0 ,45,15153,4147460,24,0 ,45,15153,5720324,16,0 ,17,923,8341764,56,0 ,17,923,9390340,40,0 ,14,27,477448,6,0 ,14,27,477456,3,0 ,14,27,477464,6,0 ,14,27,477472,3,0 ,14,27,477480,6,0 ,14,27,477488,6,0 ,14,27,477496,3,0 ,14,27,477504,5,0 ,20,18147,7293250,44,0 ,45,15153,5196100,16,0 ,17,923,7817540,40,0 ,44,15152,2574660,72,0 ,44,15152,3623236,24,0 ,45,15153,4671812,16,0 ,14,27,477512,3,0 ,14,27,477520,6,0 ,14,27,477528,6,0 ,14,27,477536,6,0 ,20,16875,4147554,328,0 ,14,27,477544,5,0 ,14,27,477552,3,0 ,14,27,477560,6,0 ,14,27,477568,3,0 ,45,15153,5720452,16,0 ,44,15152,1526148,24,0 ,14,27,477576,6,0 ,14,27,477584,6,0 ,14,27,477592,6,0 ,14,27,477600,3,0 ,14,27,477608,3,0 ,14,27,477616,6,0 ,14,27,477624,3,0 ,14,27,477632,6,0 ,17,923,9914820,32,0 ,17,923,6769092,40,0 ,44,15152,477636,32,0 ,45,15153,4147652,32,0 ,45,15153,4671940,24,0 ,45,15153,5196228,16,0 ,14,27,477640,3,0 ,14,27,477648,5,0 ,14,27,477656,3,0 ,14,27,477664,6,0 ,20,24842,24594914,516,0 ,14,27,477672,6,0 ,14,27,477680,6,0 ,14,27,477688,6,0 ,14,27,477696,3,0 ,45,15153,5720580,56,0 ,17,923,7293444,32,0 ,44,15152,3623428,24,0 ,14,27,477704,6,0 ,14,27,477712,5,0 ,14,27,477720,3,0 ,14,27,477728,6,0 ,20,21929,17254946,84,0 ,14,27,477736,3,0 ,14,27,477744,6,0 ,14,27,477752,3,0 ,14,27,477760,6,0 ,17,923,9390660,32,0 ,44,15152,1526340,32,0 ,45,15153,5196356,16,0 ,14,27,477768,3,0 ,14,27,477776,6,0 ,14,27,477784,6,0 ,14,27,477792,3,0 ,14,27,477800,6,0 ,14,27,477808,3,0 ,14,27,477816,6,0 ,14,27,477824,3,0 ,20,15536,1002114,360,0 ,17,923,8866436,32,0 ,17,923,7817860,32,0 ,45,15153,4672132,48,0 ,14,27,477832,5,0 ,14,27,477840,6,0 ,14,27,477848,6,0 ,14,27,477856,3,0 ,20,22920,19876514,156,0 ,20,18148,7293602,284,0 ,20,21132,15682210,60,0 ,14,27,477864,5,0 ,14,27,477872,3,0 ,14,27,477880,6,0 ,14,27,477888,3,0 ,17,923,9915076,24,0 ,44,15152,2050756,24,0 ,44,15152,477892,40,0 ,44,15152,3623620,128,0 ,45,15153,4147908,32,0 ,45,15153,5196484,24,0 ,17,923,8342212,80,0 ,14,27,477896,6,0 ,14,27,477904,3,0 ,14,27,477912,6,0 ,14,27,477920,3,0 ,14,27,477928,6,0 ,14,27,477936,3,0 ,14,27,477944,6,0 ,14,27,477952,3,0 ,17,923,6769412,40,0 ,17,923,7293700,40,0 ,14,27,477960,6,0 ,14,27,477968,3,0 ,14,27,477976,5,0 ,14,27,477984,6,0 ,14,27,477992,6,0 ,14,27,478000,6,0 ,14,27,478008,6,0 ,14,27,478016,6,0 ,17,923,9390916,48,0 ,44,15152,1526596,40,0 ,14,27,478024,6,0 ,14,27,478032,6,0 ,14,27,478040,2,0 ,14,27,478048,6,0 ,14,27,478056,3,0 ,14,27,478064,5,0 ,14,27,478072,6,0 ,14,27,478080,3,0 ,17,923,9915268,24,0 ,17,923,7818116,48,0 ,44,15152,2575236,616,0 ,44,15152,2050948,56,0 ,45,15153,5196676,16,0 ,17,923,8866692,32,0 ,14,27,478088,6,0 ,14,27,478096,3,0 ,14,27,478104,6,0 ,14,27,478112,6,0 ,20,23226,20401058,84,0 ,14,27,478120,3,0 ,14,27,478128,6,0 ,14,27,478136,3,0 ,14,27,478144,6,0 ,45,15153,5721028,24,0 ,45,15153,4148164,32,0 ,14,27,478152,3,0 ,14,27,478160,5,0 ,14,27,478168,6,0 ,14,27,478176,3,0 ,14,27,478184,6,0 ,14,27,478192,6,0 ,14,27,478200,3,0 ,14,27,478208,5,0 ,45,15153,5196804,16,0 ,44,15152,478212,32,0 ,45,15153,4672516,64,0 ,14,27,478216,6,0 ,14,27,478224,3,0 ,14,27,478232,6,0 ,14,27,478240,3,0 ,14,27,478248,6,0 ,14,27,478256,6,0 ,14,27,478264,6,0 ,14,27,478272,3,0 ,17,923,9915460,32,0 ,17,923,7294020,40,0 ,17,923,6769732,32,0 ,14,27,478280,6,0 ,14,27,478288,6,0 ,14,27,478296,3,0 ,14,27,478304,6,0 ,20,16007,2051170,368,0 ,14,27,478312,6,0 ,14,27,478320,3,0 ,14,27,478328,6,0 ,14,27,478336,6,0 ,20,21133,15682690,340,0 ,17,923,8866948,48,0 ,44,15152,1526916,24,0 ,45,15153,5196932,16,0 ,45,15153,5721220,64,0 ,14,27,478344,3,0 ,14,27,478352,6,0 ,14,27,478360,3,0 ,14,27,478368,6,0 ,14,27,478376,3,0 ,14,27,478384,6,0 ,14,27,478392,3,0 ,14,27,478400,6,0 ,20,21930,17255618,284,0 ,20,26364,28789954,96,0 ,20,19281,9915586,40,0 ,17,923,9391300,48,0 ,45,15153,4148420,16,0 ,14,27,478408,3,0 ,14,27,478416,5,0 ,14,27,478424,6,0 ,14,27,478432,3,0 ,14,27,478440,3,0 ,14,27,478448,6,0 ,14,27,478456,3,0 ,14,27,478464,6,0 ,20,23653,21449986,648,0 ,20,16587,3624194,92,0 ,45,15153,5197060,16,0 ,17,923,7818500,24,0 ,44,15152,478468,24,0 ,14,27,478472,6,0 ,14,27,478480,6,0 ,14,27,478488,6,0 ,14,27,478496,6,0 ,14,27,478504,6,0 ,14,27,478512,5,0 ,14,27,478520,6,0 ,14,27,478528,6,0 ,17,923,9915716,32,0 ,17,923,6769988,24,0 ,44,15152,2051396,32,0 ,44,15152,1527108,24,0 ,45,15153,4148548,24,0 ,17,923,8342852,56,0 ,14,27,478536,3,0 ,14,27,478544,6,0 ,14,27,478552,3,0 ,14,27,478560,5,0 ,14,27,478568,6,0 ,14,27,478576,3,0 ,14,27,478584,6,0 ,14,27,478592,6,0 ,20,24662,24071554,72,0 ,45,15153,5197188,16,0 ,17,923,7294340,32,0 ,14,27,478600,3,0 ,14,27,478608,5,0 ,14,27,478616,3,0 ,14,27,478624,5,0 ,14,27,478632,6,0 ,14,27,478640,3,0 ,14,27,478648,3,0 ,14,27,478656,6,0 ,44,15152,478660,24,0 ,17,923,7818692,24,0 ,14,27,478664,6,0 ,14,27,478672,3,0 ,14,27,478680,6,0 ,14,27,478688,3,0 ,14,27,478696,6,0 ,14,27,478704,3,0 ,14,27,478712,6,0 ,14,27,478720,3,0 ,20,22458,18828802,180,0 ,20,19282,9915906,680,0 ,17,923,8867332,32,0 ,17,923,6770180,40,0 ,44,15152,1527300,32,0 ,45,15153,4148740,24,0 ,45,15153,4673028,24,0 ,45,15153,5197316,24,0 ,14,27,478728,5,0 ,14,27,478736,6,0 ,14,27,478744,6,0 ,14,27,478752,3,0 ,20,18613,8343074,12,0 ,20,26526,29314594,216,0 ,14,27,478760,6,0 ,14,27,478768,3,0 ,14,27,478776,6,0 ,14,27,478784,5,0 ,20,23227,20401730,60,0 ,17,923,9915972,32,0 ,44,15152,2051652,56,0 ,17,923,9391684,48,0 ,14,27,478792,3,0 ,14,27,478800,6,0 ,14,27,478808,3,0 ,14,27,478816,5,0 ,14,27,478824,3,0 ,14,27,478832,6,0 ,14,27,478840,3,0 ,14,27,478848,6,0 ,20,20919,15158914,4352,0 ,20,18614,8343170,888,0 ,45,15153,5721732,24,0 ,17,923,7818884,24,0 ,17,923,7294596,24,0 ,44,15152,478852,24,0 ,14,27,478856,6,0 ,14,27,478864,3,0 ,14,27,478872,6,0 ,14,27,478880,3,0 ,14,27,478888,6,0 ,14,27,478896,3,0 ,14,27,478904,6,0 ,14,27,478912,3,0 ,45,15153,5197508,32,0 ,44,15152,3624644,40,0 ,45,15153,4148932,40,0 ,45,15153,4673220,16,0 ,14,27,478920,6,0 ,14,27,478928,3,0 ,14,27,478936,6,0 ,14,27,478944,3,0 ,20,17693,6246114,100,0 ,14,27,478952,6,0 ,14,27,478960,3,0 ,14,27,478968,6,0 ,14,27,478976,6,0 ,17,923,8867588,64,0 ,44,15152,1527556,24,0 ,17,923,8343300,56,0 ,14,27,478984,3,0 ,14,27,478992,6,0 ,14,27,479000,3,0 ,14,27,479008,6,0 ,14,27,479016,6,0 ,14,27,479024,3,0 ,14,27,479032,6,0 ,14,27,479040,3,0 ,20,20842,14110530,136,0 ,17,923,9916228,48,0 ,17,923,7819076,48,0 ,17,923,7294788,56,0 ,17,923,6770500,32,0 ,44,15152,479044,24,0 ,45,15153,4673348,176,0 ,45,15153,5721924,16,0 ,14,27,479048,6,0 ,14,27,479056,3,0 ,14,27,479064,6,0 ,14,27,479072,3,0 ,14,27,479080,6,0 ,14,27,479088,3,0 ,14,27,479096,6,0 ,14,27,479104,3,0 ,20,22921,19877762,280,0 ,20,21468,16207746,556,0 ,14,27,479112,6,0 ,14,27,479120,3,0 ,14,27,479128,6,0 ,14,27,479136,3,0 ,14,27,479144,3,0 ,14,27,479152,6,0 ,14,27,479160,3,0 ,14,27,479168,6,0 ,20,22217,18304962,656,0 ,20,26365,28790722,96,0 ,20,24663,24072130,176,0 ,17,923,9392068,40,0 ,44,15152,1527748,24,0 ,45,15153,5197764,64,0 ,45,15153,5722052,16,0 ,14,27,479176,3,0 ,14,27,479184,6,0 ,14,27,479192,3,0 ,14,27,479200,6,0 ,20,22666,19353570,468,0 ,20,16588,3624930,12,0 ,14,27,479208,3,0 ,14,27,479216,6,0 ,14,27,479224,6,0 ,14,27,479232,3,0 ,45,15153,4149252,24,0 ,44,15152,2052100,32,0 ,44,15152,479236,32,0 ,44,15152,1003524,32,0 ,44,15152,3624964,40,0 ,14,27,479240,6,0 ,14,27,479248,3,0 ,14,27,479256,6,0 ,14,27,479264,6,0 ,20,23228,20402210,72,0 ,14,27,479272,3,0 ,14,27,479280,6,0 ,14,27,479288,3,0 ,14,27,479296,6,0 ,20,17269,5197890,160,0 ,20,15775,1527874,576,0 ,20,16589,3625026,12,0 ,45,15153,5722180,56,0 ,17,923,6770756,40,0 ,14,27,479304,3,0 ,14,27,479312,6,0 ,14,27,479320,3,0 ,14,27,479328,6,0 ,14,27,479336,3,0 ,14,27,479344,6,0 ,14,27,479352,3,0 ,14,27,479360,5,0 ,44,15152,1527940,80,0 ,14,27,479368,3,0 ,14,27,479376,6,0 ,14,27,479384,3,0 ,14,27,479392,6,0 ,20,20671,13586594,12,0 ,20,16590,3625122,12,0 ,14,27,479400,3,0 ,14,27,479408,6,0 ,14,27,479416,3,0 ,14,27,479424,6,0 ,17,923,9916612,32,0 ,17,923,7819460,24,0 ,45,15153,4149444,16,0 ,17,923,8343748,32,0 ,14,27,479432,3,0 ,14,27,479440,6,0 ,14,27,479448,6,0 ,14,27,479456,6,0 ,14,27,479464,3,0 ,14,27,479472,3,0 ,14,27,479480,6,0 ,14,27,479488,6,0 ,20,20672,13586690,68,0 ,20,16591,3625218,136,0 ,17,923,9392388,32,0 ,17,923,7295236,32,0 ,44,15152,2052356,56,0 ,44,15152,479492,24,0 ,44,15152,1003780,24,0 ,17,923,8868100,24,0 ,14,27,479496,6,0 ,14,27,479504,3,0 ,14,27,479512,6,0 ,14,27,479520,3,0 ,14,27,479528,6,0 ,14,27,479536,5,0 ,14,27,479544,3,0 ,14,27,479552,3,0 ,45,15153,4149572,16,0 ,44,15152,3625284,40,0 ,14,27,479560,6,0 ,14,27,479568,6,0 ,14,27,479576,6,0 ,14,27,479584,3,0 ,14,27,479592,6,0 ,14,27,479600,3,0 ,14,27,479608,6,0 ,14,27,479616,3,0 ,44,15152,3101060,24,0 ,17,923,7819652,24,0 ,17,923,6771076,40,0 ,14,27,479624,6,0 ,14,27,479632,3,0 ,14,27,479640,6,0 ,14,27,479648,3,0 ,20,20420,13062562,80,0 ,20,20229,12538274,15952,0 ,14,27,479656,6,0 ,14,27,479664,3,0 ,14,27,479672,6,0 ,14,27,479680,6,0 ,17,923,9916868,24,0 ,44,15152,479684,16,0 ,44,15152,1003972,40,0 ,45,15153,4149700,16,0 ,45,15153,5198276,32,0 ,17,923,8344004,64,0 ,17,923,8868292,64,0 ,14,27,479688,3,0 ,14,27,479696,6,0 ,14,27,479704,3,0 ,14,27,479712,6,0 ,14,27,479720,5,0 ,14,27,479728,3,0 ,14,27,479736,6,0 ,14,27,479744,3,0 ,20,21719,16732674,52,0 ,20,17694,6246914,12,0 ,17,923,9392644,32,0 ,17,923,7295492,24,0 ,45,15153,5722628,40,0 ,14,27,479752,6,0 ,14,27,479760,3,0 ,14,27,479768,6,0 ,14,27,479776,3,0 ,14,27,479784,6,0 ,14,27,479792,3,0 ,14,27,479800,6,0 ,14,27,479808,3,0 ,45,15153,4149828,40,0 ,17,923,7819844,24,0 ,44,15152,3101252,24,0 ,44,15152,479812,16,0 ,14,27,479816,6,0 ,14,27,479824,6,0 ,14,27,479832,6,0 ,14,27,479840,3,0 ,20,23229,20402786,116,0 ,20,17695,6247010,364,0 ,14,27,479848,6,0 ,14,27,479856,3,0 ,14,27,479864,6,0 ,14,27,479872,3,0 ,17,923,9917060,24,0 ,44,15152,3625604,128,0 ,14,27,479880,6,0 ,14,27,479888,3,0 ,14,27,479896,5,0 ,14,27,479904,6,0 ,14,27,479912,6,0 ,14,27,479920,3,0 ,14,27,479928,6,0 ,14,27,479936,3,0 ,20,26366,28791490,748,0 ,45,15153,5198532,40,0 ,17,923,7295684,64,0 ,17,923,6771396,48,0 ,44,15152,2052804,32,0 ,44,15152,479940,32,0 ,14,27,479944,6,0 ,14,27,479952,3,0 ,14,27,479960,6,0 ,14,27,479968,3,0 ,14,27,479976,6,0 ,14,27,479984,5,0 ,14,27,479992,3,0 ,14,27,480000,6,0 ,17,923,9392900,32,0 ,17,923,7820036,32,0 ,44,15152,3101444,24,0 ,44,15152,1528580,24,0 ,44,15152,1004292,32,0 ,14,27,480008,3,0 ,14,27,480016,6,0 ,14,27,480024,3,0 ,14,27,480032,6,0 ,20,23872,21975842,332,0 ,20,19064,9392930,12,0 ,20,20673,13587234,268,0 ,14,27,480040,3,0 ,14,27,480048,6,0 ,14,27,480056,6,0 ,14,27,480064,3,0 ,17,923,9917252,24,0 ,45,15153,5722948,32,0 ,14,27,480072,6,0 ,14,27,480080,6,0 ,14,27,480088,3,0 ,14,27,480096,6,0 ,14,27,480104,3,0 ,14,27,480112,6,0 ,14,27,480120,3,0 ,14,27,480128,6,0 ,20,20843,14111618,136,0 ,20,18149,7295874,52,0 ,20,19065,9393026,168,0 ,45,15153,4150148,16,0 ,14,27,480136,3,0 ,14,27,480144,6,0 ,14,27,480152,6,0 ,14,27,480160,3,0 ,20,22459,18830242,24,0 ,20,25636,26694562,136,0 ,20,16876,4150178,396,0 ,20,21720,16733090,76,0 ,14,27,480168,5,0 ,14,27,480176,3,0 ,14,27,480184,6,0 ,14,27,480192,3,0 ,17,923,8868804,32,0 ,44,15152,3101636,32,0 ,44,15152,2053060,24,0 ,44,15152,1528772,32,0 ,44,15152,480196,88,0 ,17,923,8344516,64,0 ,14,27,480200,6,0 ,14,27,480208,3,0 ,14,27,480216,6,0 ,14,27,480224,3,0 ,20,26224,28267490,320,0 ,14,27,480232,6,0 ,14,27,480240,3,0 ,14,27,480248,6,0 ,14,27,480256,3,0 ,17,923,9917444,40,0 ,17,923,7820292,40,0 ,44,15152,1004548,136,0 ,45,15153,4150276,16,0 ,45,15153,5198852,96,0 ,17,923,9393156,40,0 ,14,27,480264,5,0 ,14,27,480272,3,0 ,14,27,480280,5,0 ,14,27,480288,3,0 ,20,20421,13063202,12,0 ,14,27,480296,6,0 ,14,27,480304,3,0 ,14,27,480312,6,0 ,14,27,480320,3,0 ,45,15153,5723204,16,0 ,17,923,6771780,40,0 ,14,27,480328,6,0 ,14,27,480336,3,0 ,14,27,480344,6,0 ,14,27,480352,3,0 ,20,22460,18830434,340,0 ,14,27,480360,6,0 ,14,27,480368,3,0 ,14,27,480376,6,0 ,14,27,480384,3,0 ,20,20422,13063298,84,0 ,45,15153,4150404,24,0 ,44,15152,2053252,24,0 ,14,27,480392,5,0 ,14,27,480400,3,0 ,14,27,480408,6,0 ,14,27,480416,5,0 ,14,27,480424,6,0 ,14,27,480432,6,0 ,14,27,480440,6,0 ,14,27,480448,3,0 ,17,923,8869060,32,0 ,17,923,7296196,40,0 ,44,15152,1529028,40,0 ,44,15152,3101892,24,0 ,45,15153,4674756,24,0 ,45,15153,5723332,24,0 ,14,27,480456,6,0 ,14,27,480464,3,0 ,14,27,480472,6,0 ,14,27,480480,6,0 ,20,26527,29316322,112,0 ,14,27,480488,6,0 ,14,27,480496,3,0 ,14,27,480504,6,0 ,14,27,480512,3,0 ,14,27,480520,6,0 ,14,27,480528,3,0 ,14,27,480536,6,0 ,14,27,480544,3,0 ,20,18150,7296290,332,0 ,14,27,480552,6,0 ,14,27,480560,3,0 ,14,27,480568,6,0 ,14,27,480576,3,0 ,20,17270,5199170,196,0 ,20,24664,24073538,100,0 ,20,16592,3626306,128,0 ,17,923,9917764,24,0 ,17,923,7820612,40,0 ,44,15152,2053444,32,0 ,45,15153,4150596,16,0 ,17,923,9393476,32,0 ,14,27,480584,6,0 ,14,27,480592,3,0 ,14,27,480600,6,0 ,14,27,480608,3,0 ,14,27,480616,6,0 ,14,27,480624,3,0 ,14,27,480632,6,0 ,14,27,480640,3,0 ,45,15153,5723524,16,0 ,17,923,6772100,24,0 ,44,15152,3102084,32,0 ,45,15153,4674948,120,0 ,14,27,480648,6,0 ,14,27,480656,3,0 ,14,27,480664,6,0 ,14,27,480672,3,0 ,20,21931,17257890,212,0 ,14,27,480680,6,0 ,14,27,480688,6,0 ,14,27,480696,3,0 ,14,27,480704,6,0 ,20,15537,1004994,88,0 ,17,923,8869316,48,0 ,45,15153,4150724,16,0 ,17,923,8345028,96,0 ,14,27,480712,3,0 ,14,27,480720,6,0 ,14,27,480728,3,0 ,14,27,480736,6,0 ,14,27,480744,6,0 ,14,27,480752,6,0 ,14,27,480760,3,0 ,14,27,480768,5,0 ,20,24477,23549442,4384,0 ,20,21721,16733698,132,0 ,20,23230,20403714,360,0 ,17,923,9917956,64,0 ,17,923,7296516,48,0 ,44,15152,1529348,32,0 ,45,15153,5723652,48,0 ,14,27,480776,6,0 ,14,27,480784,6,0 ,14,27,480792,6,0 ,14,27,480800,6,0 ,14,27,480808,3,0 ,14,27,480816,6,0 ,14,27,480824,3,0 ,14,27,480832,6,0 ,17,923,9393732,32,0 ,17,923,6772292,40,0 ,44,15152,2053700,24,0 ,45,15153,4150852,16,0 ,14,27,480840,6,0 ,14,27,480848,6,0 ,14,27,480856,3,0 ,14,27,480864,6,0 ,14,27,480872,6,0 ,14,27,480880,6,0 ,14,27,480888,3,0 ,14,27,480896,6,0 ,44,15152,3626628,40,0 ,17,923,7820932,40,0 ,44,15152,480900,24,0 ,44,15152,3102340,48,0 ,14,27,480904,3,0 ,14,27,480912,6,0 ,14,27,480920,3,0 ,14,27,480928,6,0 ,14,27,480936,3,0 ,14,27,480944,6,0 ,14,27,480952,3,0 ,14,27,480960,6,0 ,45,15153,4150980,16,0 ,14,27,480968,3,0 ,14,27,480976,6,0 ,14,27,480984,3,0 ,14,27,480992,6,0 ,14,27,481000,3,0 ,14,27,481008,6,0 ,14,27,481016,3,0 ,14,27,481024,6,0 ,45,15153,5199620,96,0 ,44,15152,2053892,104,0 ,44,15152,1529604,144,0 ,14,27,481032,3,0 ,14,27,481040,5,0 ,14,27,481048,3,0 ,14,27,481056,5,0 ,20,21134,15685410,340,0 ,20,20423,13063970,440,0 ,14,27,481064,3,0 ,14,27,481072,6,0 ,14,27,481080,6,0 ,14,27,481088,3,0 ,17,923,9393988,48,0 ,44,15152,481092,24,0 ,45,15153,4151108,16,0 ,17,923,8869700,32,0 ,14,27,481096,5,0 ,14,27,481104,3,0 ,14,27,481112,3,0 ,14,27,481120,6,0 ,14,27,481128,6,0 ,14,27,481136,6,0 ,14,27,481144,3,0 ,14,27,481152,6,0 ,45,15153,5724036,24,0 ,17,923,7296900,64,0 ,17,923,6772612,32,0 ,14,27,481160,3,0 ,14,27,481168,6,0 ,14,27,481176,6,0 ,14,27,481184,3,0 ,14,27,481192,6,0 ,14,27,481200,6,0 ,14,27,481208,3,0 ,14,27,481216,6,0 ,20,20844,14112706,304,0 ,20,18850,8869826,128,0 ,45,15153,4151236,16,0 ,17,923,7821252,40,0 ,44,15152,3626948,80,0 ,14,27,481224,3,0 ,14,27,481232,6,0 ,14,27,481240,3,0 ,14,27,481248,6,0 ,20,16008,2054114,12,0 ,20,25637,26695650,48,0 ,14,27,481256,3,0 ,14,27,481264,6,0 ,14,27,481272,3,0 ,14,27,481280,6,0 ,17,923,9918468,24,0 ,44,15152,481284,24,0 ,44,15152,3102724,24,0 ,14,27,481288,3,0 ,14,27,481296,6,0 ,14,27,481304,3,0 ,14,27,481312,6,0 ,14,27,481320,6,0 ,14,27,481328,3,0 ,14,27,481336,6,0 ,14,27,481344,3,0 ,20,24120,22501442,100,0 ,20,16009,2054210,12,0 ,20,22922,19880002,132,0 ,17,923,8869956,80,0 ,44,15152,1005636,120,0 ,45,15153,4151364,24,0 ,45,15153,5724228,24,0 ,14,27,481352,6,0 ,14,27,481360,3,0 ,14,27,481368,6,0 ,14,27,481376,3,0 ,20,24665,24074338,204,0 ,20,26528,29317218,112,0 ,14,27,481384,6,0 ,14,27,481392,3,0 ,14,27,481400,6,0 ,14,27,481408,3,0 ,20,15538,1005698,176,0 ,17,923,6772868,40,0 ,14,27,481416,6,0 ,14,27,481424,3,0 ,14,27,481432,6,0 ,14,27,481440,6,0 ,20,16010,2054306,80,0 ,14,27,481448,3,0 ,14,27,481456,5,0 ,14,27,481464,3,0 ,14,27,481472,6,0 ,20,19066,9394370,68,0 ,17,923,9918660,24,0 ,44,15152,481476,24,0 ,44,15152,3102916,24,0 ,17,923,8345796,96,0 ,17,923,9394372,48,0 ,14,27,481480,3,0 ,14,27,481488,6,0 ,14,27,481496,3,0 ,14,27,481504,6,0 ,14,27,481512,3,0 ,14,27,481520,6,0 ,14,27,481528,3,0 ,14,27,481536,6,0 ,45,15153,5724420,24,0 ,17,923,7821572,40,0 ,45,15153,4151556,24,0 ,14,27,481544,3,0 ,14,27,481552,6,0 ,14,27,481560,3,0 ,14,27,481568,6,0 ,14,27,481576,3,0 ,14,27,481584,6,0 ,14,27,481592,3,0 ,14,27,481600,6,0 ,20,16593,3627330,88,0 ,45,15153,4675908,384,0 ,14,27,481608,6,0 ,14,27,481616,6,0 ,14,27,481624,5,0 ,14,27,481632,6,0 ,20,25638,26696034,344,0 ,14,27,481640,3,0 ,14,27,481648,6,0 ,14,27,481656,3,0 ,14,27,481664,6,0 ,17,923,9918852,24,0 ,17,923,7297412,24,0 ,44,15152,481668,24,0 ,44,15152,3103108,24,0 ,14,27,481672,3,0 ,14,27,481680,6,0 ,14,27,481688,6,0 ,14,27,481696,6,0 ,14,27,481704,6,0 ,14,27,481712,3,0 ,14,27,481720,6,0 ,14,27,481728,3,0 ,20,17483,5724610,108,0 ,45,15153,5724612,72432,0 ,17,923,6773188,32,0 ,45,15153,4151748,16,0 ,14,27,481736,5,0 ,14,27,481744,3,0 ,14,27,481752,5,0 ,14,27,481760,3,0 ,14,27,481768,6,0 ,14,27,481776,3,0 ,14,27,481784,6,0 ,14,27,481792,3,0 ,20,24843,24599042,328,0 ,45,15153,5200388,24,0 ,14,27,481800,6,0 ,14,27,481808,3,0 ,14,27,481816,6,0 ,14,27,481824,6,0 ,20,21722,16734754,180,0 ,14,27,481832,3,0 ,14,27,481840,6,0 ,14,27,481848,6,0 ,14,27,481856,3,0 ,17,923,9919044,24,0 ,17,923,7821892,32,0 ,17,923,7297604,16,0 ,44,15152,2054724,80,0 ,44,15152,481860,32,0 ,44,15152,3103300,24,0 ,44,15152,3627588,72,0 ,45,15153,4151876,16,0 ,17,923,9394756,56,0 ,14,27,481864,6,0 ,14,27,481872,3,0 ,14,27,481880,6,0 ,14,27,481888,6,0 ,14,27,481896,3,0 ,14,27,481904,6,0 ,14,27,481912,3,0 ,14,27,481920,6,0 ,14,27,481928,3,0 ,14,27,481936,6,0 ,14,27,481944,6,0 ,14,27,481952,6,0 ,20,20894,14637730,4784,0 ,14,27,481960,6,0 ,14,27,481968,3,0 ,14,27,481976,5,0 ,14,27,481984,3,0 ,17,923,8870596,24,0 ,17,923,7297732,24,0 ,17,923,6773444,32,0 ,45,15153,4152004,32,0 ,45,15153,5200580,128,0 ,14,27,481992,2,0 ,14,27,482000,6,0 ,14,27,482008,3,0 ,14,27,482016,6,0 ,20,19067,9394914,12,0 ,14,27,482024,3,0 ,14,27,482032,6,0 ,14,27,482040,3,0 ,14,27,482048,6,0 ,17,923,9919236,48,0 ,44,15152,3103492,24,0 ,14,27,482056,6,0 ,14,27,482064,2,0 ,14,27,482072,6,0 ,14,27,482080,3,0 ,20,16011,2054946,92,0 ,14,27,482088,6,0 ,14,27,482096,3,0 ,14,27,482104,6,0 ,14,27,482112,3,0 ,20,19068,9395010,12,0 ,44,15152,482116,32,0 ,17,923,7822148,32,0 ,14,27,482120,6,0 ,14,27,482128,3,0 ,14,27,482136,6,0 ,14,27,482144,3,0 ,20,24121,22502242,64,0 ,20,17271,5200738,100,0 ,14,27,482152,6,0 ,14,27,482160,3,0 ,14,27,482168,6,0 ,14,27,482176,6,0 ,20,20674,13589378,12,0 ,17,923,8870788,80,0 ,17,923,7297924,32,0 ,44,15152,1530756,104,0 ,14,27,482184,6,0 ,14,27,482192,6,0 ,14,27,482200,3,0 ,14,27,482208,6,0 ,20,19069,9395106,12,0 ,14,27,482216,3,0 ,14,27,482224,6,0 ,14,27,482232,3,0 ,14,27,482240,6,0 ,20,18851,8870850,108,0 ,17,923,8346564,48,0 ,17,923,6773700,40,0 ,44,15152,3103684,24,0 ,45,15153,4152260,264,0 ,14,27,482248,3,0 ,14,27,482256,6,0 ,14,27,482264,3,0 ,14,27,482272,6,0 ,20,20675,13589474,12,0 ,20,26529,29318114,204,0 ,14,27,482280,3,0 ,14,27,482288,6,0 ,14,27,482296,3,0 ,14,27,482304,5,0 ,20,19070,9395202,84,0 ,20,16594,3628034,244,0 ,17,923,9395204,32,0 ,44,15152,1006596,24,0 ,14,27,482312,3,0 ,14,27,482320,6,0 ,14,27,482328,3,0 ,14,27,482336,6,0 ,20,18371,7822370,248,0 ,14,27,482344,3,0 ,14,27,482352,6,0 ,14,27,482360,3,0 ,14,27,482368,5,0 ,20,21932,17259586,332,0 ,20,20676,13589570,332,0 ,44,15152,482372,40,0 ,17,923,7822404,40,0 ,14,27,482376,3,0 ,14,27,482384,6,0 ,14,27,482392,3,0 ,14,27,482400,6,0 ,20,22923,19881058,124,0 ,14,27,482408,3,0 ,14,27,482416,6,0 ,14,27,482424,3,0 ,14,27,482432,6,0 ,17,923,9919620,32,0 ,17,923,7298180,32,0 ,44,15152,3103876,176,0 ,44,15152,3628164,160,0 ,14,27,482440,6,0 ,14,27,482448,3,0 ,14,27,482456,6,0 ,14,27,482464,3,0 ,14,27,482472,6,0 ,14,27,482480,3,0 ,14,27,482488,6,0 ,14,27,482496,3,0 ,44,15152,1006788,24,0 ,44,15152,2055364,40,0 ,14,27,482504,6,0 ,14,27,482512,3,0 ,14,27,482520,6,0 ,14,27,482528,3,0 ,14,27,482536,6,0 ,14,27,482544,3,0 ,14,27,482552,6,0 ,14,27,482560,3,0 ,17,923,9395460,32,0 ,17,923,6774020,40,0 ,14,27,482568,6,0 ,14,27,482576,3,0 ,14,27,482584,5,0 ,14,27,482592,3,0 ,20,17484,5725474,108,0 ,14,27,482600,6,0 ,14,27,482608,3,0 ,14,27,482616,6,0 ,14,27,482624,3,0 ,17,923,8346948,48,0 ,14,27,482632,6,0 ,14,27,482640,3,0 ,14,27,482648,6,0 ,14,27,482656,3,0 ,20,24122,22502754,96,0 ,14,27,482664,6,0 ,14,27,482672,6,0 ,14,27,482680,3,0 ,14,27,482688,3,0 ,20,23873,21978498,768,0 ,17,923,9919876,32,0 ,17,923,7822724,32,0 ,17,923,7298436,32,0 ,44,15152,482692,24,0 ,44,15152,1006980,32,0 ,14,27,482696,6,0 ,14,27,482704,6,0 ,14,27,482712,3,0 ,14,27,482720,6,0 ,14,27,482728,6,0 ,14,27,482736,3,0 ,14,27,482744,6,0 ,14,27,482752,3,0 ,20,17696,6249922,204,0 ,14,27,482760,6,0 ,14,27,482768,6,0 ,14,27,482776,3,0 ,14,27,482784,6,0 ,20,26225,28270050,320,0 ,14,27,482792,3,0 ,14,27,482800,6,0 ,14,27,482808,6,0 ,14,27,482816,3,0 ,20,16012,2055682,204,0 ,20,15539,1007106,32,0 ,17,923,9395716,48,0 ,44,15152,2055684,24,0 ,17,923,8871428,32,0 ,14,27,482824,6,0 ,14,27,482832,3,0 ,14,27,482840,6,0 ,14,27,482848,3,0 ,14,27,482856,6,0 ,14,27,482864,3,0 ,14,27,482872,6,0 ,14,27,482880,3,0 ,44,15152,482884,24,0 ,17,923,6774340,24,0 ,14,27,482888,6,0 ,14,27,482896,3,0 ,14,27,482904,6,0 ,14,27,482912,6,0 ,14,27,482920,6,0 ,14,27,482928,3,0 ,14,27,482936,6,0 ,14,27,482944,6,0 ,20,22667,19357314,232,0 ,20,17272,5201538,192,0 ,17,923,9920132,32,0 ,17,923,7822980,40,0 ,17,923,7298692,24,0 ,44,15152,1007236,24,0 ,14,27,482952,3,0 ,14,27,482960,3,0 ,14,27,482968,6,0 ,14,27,482976,3,0 ,20,19864,10968738,276,0 ,20,19071,9395874,84,0 ,14,27,482984,6,0 ,14,27,482992,3,0 ,14,27,483000,6,0 ,14,27,483008,6,0 ,20,24666,24075970,660,0 ,17,923,8347332,56,0 ,44,15152,2580164,88,0 ,44,15152,2055876,32,0 ,44,15152,1531588,24,0 ,45,15153,5201604,48,0 ,14,27,483016,3,0 ,14,27,483024,6,0 ,14,27,483032,3,0 ,14,27,483040,5,0 ,14,27,483048,5,0 ,14,27,483056,6,0 ,14,27,483064,3,0 ,14,27,483072,6,0 ,20,22461,18833154,340,0 ,20,15540,1007362,20,0 ,17,923,8871684,56,0 ,17,923,6774532,24,0 ,44,15152,483076,24,0 ,14,27,483080,6,0 ,14,27,483088,6,0 ,14,27,483096,6,0 ,14,27,483104,5,0 ,20,18852,8871714,108,0 ,14,27,483112,6,0 ,14,27,483120,3,0 ,14,27,483128,6,0 ,14,27,483136,6,0 ,44,15152,1007428,32,0 ,17,923,7298884,48,0 ,14,27,483144,3,0 ,14,27,483152,6,0 ,14,27,483160,5,0 ,14,27,483168,3,0 ,14,27,483176,6,0 ,14,27,483184,6,0 ,14,27,483192,3,0 ,14,27,483200,6,0 ,20,18151,7298946,12,0 ,17,923,9920388,312,0 ,44,15152,1531780,48,0 ,17,923,9396100,40,0 ,14,27,483208,3,0 ,14,27,483216,6,0 ,14,27,483224,3,0 ,14,27,483232,6,0 ,20,15541,1007522,12,0 ,14,27,483240,3,0 ,14,27,483248,6,0 ,14,27,483256,3,0 ,14,27,483264,6,0 ,20,21723,16736194,608,0 ,44,15152,483268,24,0 ,17,923,7823300,40,0 ,17,923,6774724,32,0 ,44,15152,2056132,32,0 ,14,27,483272,3,0 ,14,27,483280,6,0 ,14,27,483288,6,0 ,14,27,483296,3,0 ,20,18152,7299042,12,0 ,14,27,483304,6,0 ,14,27,483312,3,0 ,14,27,483320,6,0 ,14,27,483328,3,0 ,20,16877,4153346,52,0 ,20,15542,1007618,160,0 ,14,27,483336,6,0 ,14,27,483344,3,0 ,14,27,483352,6,0 ,14,27,483360,3,0 ,14,27,483368,6,0 ,14,27,483376,3,0 ,14,27,483384,6,0 ,14,27,483392,3,0 ,20,22924,19882050,144,0 ,20,18153,7299138,52,0 ,45,15153,5201988,112,0 ,44,15152,1007684,24,0 ,14,27,483400,5,0 ,14,27,483408,6,0 ,14,27,483416,6,0 ,14,27,483424,6,0 ,20,24123,22503522,188,0 ,14,27,483432,6,0 ,14,27,483440,6,0 ,14,27,483448,6,0 ,14,27,483456,6,0 ,20,17485,5726338,192,0 ,17,923,8347780,32,0 ,44,15152,483460,24,0 ,14,27,483464,3,0 ,14,27,483472,6,0 ,14,27,483480,6,0 ,14,27,483488,3,0 ,14,27,483496,6,0 ,14,27,483504,3,0 ,14,27,483512,6,0 ,14,27,483520,6,0 ,17,923,9396420,32,0 ,17,923,7299268,32,0 ,17,923,6774980,32,0 ,44,15152,2056388,24,0 ,17,923,8872132,72,0 ,14,27,483528,6,0 ,14,27,483536,6,0 ,14,27,483544,6,0 ,14,27,483552,6,0 ,20,21469,16212194,180,0 ,14,27,483560,6,0 ,14,27,483568,6,0 ,14,27,483576,6,0 ,14,27,483584,6,0 ,44,15152,1007876,24,0 ,17,923,7823620,40,0 ,44,15152,1532164,48,0 ,14,27,483592,6,0 ,14,27,483600,6,0 ,14,27,483608,6,0 ,14,27,483616,6,0 ,14,27,483624,3,0 ,14,27,483632,6,0 ,14,27,483640,6,0 ,14,27,483648,6,0 ,20,23654,21455170,816,0 ,20,19072,9396546,116,0 ,20,20845,14115138,244,0 ,20,23231,20406594,76,0 ,44,15152,483652,24,0 ,14,27,483656,3,0 ,14,27,483664,6,0 ,14,27,483672,3,0 ,14,27,483680,6,0 ,14,27,483688,6,0 ,14,27,483696,6,0 ,14,27,483704,6,0 ,14,27,483712,3,0 ,17,923,8348036,24,0 ,44,15152,2580868,248,0 ,44,15152,2056580,32,0 ,44,15152,3629444,32,0 ,14,27,483720,6,0 ,14,27,483728,6,0 ,14,27,483736,5,0 ,14,27,483744,5,0 ,20,16878,4153762,236,0 ,14,27,483752,6,0 ,14,27,483760,6,0 ,14,27,483768,5,0 ,14,27,483776,5,0 ,20,21135,15688130,340,0 ,17,923,9396676,40,0 ,17,923,7299524,32,0 ,17,923,6775236,40,0 ,44,15152,1008068,24,0 ,14,27,483784,6,0 ,14,27,483792,3,0 ,14,27,483800,6,0 ,14,27,483808,6,0 ,20,18154,7299554,204,0 ,14,27,483816,5,0 ,14,27,483824,3,0 ,14,27,483832,3,0 ,14,27,483840,6,0 ,44,15152,3105284,216,0 ,44,15152,483844,24,0 ,14,27,483848,6,0 ,14,27,483856,3,0 ,14,27,483864,5,0 ,14,27,483872,3,0 ,14,27,483880,6,0 ,14,27,483888,3,0 ,14,27,483896,6,0 ,14,27,483904,3,0 ,20,15776,1532482,280,0 ,20,26530,29319746,212,0 ,17,923,8348228,64,0 ,17,923,7823940,40,0 ,14,27,483912,6,0 ,14,27,483920,6,0 ,14,27,483928,3,0 ,14,27,483936,6,0 ,14,27,483944,3,0 ,14,27,483952,6,0 ,14,27,483960,5,0 ,14,27,483968,3,0 ,20,18853,8872578,108,0 ,44,15152,3629700,32,0 ,44,15152,2056836,24,0 ,44,15152,1532548,32,0 ,44,15152,1008260,24,0 ,14,27,483976,3,0 ,14,27,483984,6,0 ,14,27,483992,3,0 ,14,27,484000,6,0 ,14,27,484008,3,0 ,14,27,484016,6,0 ,14,27,484024,3,0 ,14,27,484032,6,0 ,44,15152,484036,64,0 ,17,923,7299780,48,0 ,14,27,484040,6,0 ,14,27,484048,3,0 ,14,27,484056,6,0 ,14,27,484064,6,0 ,14,27,484072,6,0 ,14,27,484080,6,0 ,14,27,484088,3,0 ,14,27,484096,6,0 ,17,923,9396996,40,0 ,17,923,6775556,32,0 ,17,923,8872708,56,0 ,14,27,484104,6,0 ,14,27,484112,6,0 ,14,27,484120,6,0 ,14,27,484128,6,0 ,14,27,484136,6,0 ,14,27,484144,3,0 ,14,27,484152,6,0 ,14,27,484160,6,0 ,20,19283,9921346,12,0 ,44,15152,1008452,24,0 ,44,15152,2057028,40,0 ,14,27,484168,6,0 ,14,27,484176,6,0 ,14,27,484184,6,0 ,14,27,484192,6,0 ,14,27,484200,5,0 ,14,27,484208,6,0 ,14,27,484216,5,0 ,14,27,484224,3,0 ,44,15152,3629956,56,0 ,17,923,7824260,40,0 ,44,15152,1532804,48,0 ,14,27,484232,6,0 ,14,27,484240,6,0 ,14,27,484248,6,0 ,14,27,484256,6,0 ,20,23232,20407202,72,0 ,20,16595,3629986,1140,0 ,20,19284,9921442,52,0 ,14,27,484264,6,0 ,14,27,484272,6,0 ,14,27,484280,3,0 ,14,27,484288,3,0 ,20,25821,27222978,624,0 ,45,15153,5202884,72,0 ,14,27,484296,6,0 ,14,27,484304,6,0 ,14,27,484312,6,0 ,14,27,484320,3,0 ,20,18372,7824354,260,0 ,14,27,484328,6,0 ,14,27,484336,3,0 ,14,27,484344,6,0 ,14,27,484352,3,0 ,45,15153,4154372,200,0 ,17,923,6775812,24,0 ,44,15152,1008644,232,0 ,14,27,484360,6,0 ,14,27,484368,6,0 ,14,27,484376,3,0 ,14,27,484384,6,0 ,20,17697,6251554,324,0 ,20,25639,26698786,52,0 ,14,27,484392,6,0 ,14,27,484400,3,0 ,14,27,484408,6,0 ,14,27,484416,3,0 ,20,22218,18310210,688,0 ,20,24844,24601666,508,0 ,17,923,9397316,48,0 ,17,923,7300164,24,0 ,17,923,8348740,32,0 ,14,27,484424,5,0 ,14,27,484432,3,0 ,14,27,484440,5,0 ,14,27,484448,6,0 ,20,16013,2057314,2444,0 ,14,27,484456,5,0 ,14,27,484464,6,0 ,14,27,484472,6,0 ,14,27,484480,6,0 ,20,17273,5203074,48,0 ,44,15152,2057348,24,0 ,14,27,484488,3,0 ,14,27,484496,6,0 ,14,27,484504,5,0 ,14,27,484512,5,0 ,14,27,484520,3,0 ,14,27,484528,6,0 ,14,27,484536,3,0 ,14,27,484544,6,0 ,20,22925,19883202,144,0 ,17,923,8873156,80,0 ,17,923,7824580,32,0 ,17,923,6776004,40,0 ,44,15152,484548,32,0 ,14,27,484552,3,0 ,14,27,484560,6,0 ,14,27,484568,6,0 ,14,27,484576,3,0 ,20,20424,13067490,160,0 ,20,19073,9397474,156,0 ,14,27,484584,5,0 ,14,27,484592,6,0 ,14,27,484600,6,0 ,14,27,484608,6,0 ,20,15543,1008898,20,0 ,44,15152,1533188,40,0 ,17,923,7300356,32,0 ,14,27,484616,6,0 ,14,27,484624,6,0 ,14,27,484632,6,0 ,14,27,484640,6,0 ,14,27,484648,6,0 ,14,27,484656,6,0 ,14,27,484664,6,0 ,14,27,484672,6,0 ,20,19285,9921858,276,0 ,17,923,8348996,24,0 ,44,15152,2057540,24,0 ,44,15152,3630404,96,0 ,45,15153,4678980,16,0 ,14,27,484680,3,0 ,14,27,484688,6,0 ,14,27,484696,6,0 ,14,27,484704,6,0 ,20,25291,25650530,156,0 ,14,27,484712,6,0 ,14,27,484720,3,0 ,14,27,484728,2,0 ,14,27,484736,6,0 ,14,27,484744,6,0 ,14,27,484752,3,0 ,14,27,484760,6,0 ,14,27,484768,6,0 ,20,15544,1009058,136,0 ,14,27,484776,3,0 ,14,27,484784,5,0 ,14,27,484792,3,0 ,14,27,484800,6,0 ,20,22668,19359170,84,0 ,20,25640,26699202,504,0 ,17,923,9397700,40,0 ,17,923,7824836,40,0 ,44,15152,484804,32,0 ,45,15153,4679108,24,0 ,14,27,484808,3,0 ,14,27,484816,6,0 ,14,27,484824,3,0 ,14,27,484832,6,0 ,20,23233,20407778,32,0 ,20,18854,8873442,96,0 ,14,27,484840,6,0 ,14,27,484848,6,0 ,14,27,484856,3,0 ,14,27,484864,3,0 ,20,17274,5203458,468,0 ,17,923,8349188,64,0 ,17,923,7300612,24,0 ,17,923,6776324,40,0 ,44,15152,2057732,152,0 ,45,15153,5203460,56,0 ,14,27,484872,6,0 ,14,27,484880,6,0 ,14,27,484888,3,0 ,14,27,484896,6,0 ,14,27,484904,6,0 ,14,27,484912,3,0 ,14,27,484920,6,0 ,14,27,484928,6,0 ,20,24124,22505026,200,0 ,44,15152,1533508,72,0 ,14,27,484936,6,0 ,14,27,484944,3,0 ,14,27,484952,6,0 ,14,27,484960,6,0 ,14,27,484968,6,0 ,14,27,484976,3,0 ,14,27,484984,6,0 ,14,27,484992,3,0 ,20,21470,16213634,160,0 ,20,17486,5727874,192,0 ,45,15153,4679300,32,0 ,14,27,485000,6,0 ,14,27,485008,3,0 ,14,27,485016,6,0 ,14,27,485024,6,0 ,20,21933,17262242,92,0 ,20,20677,13592226,84,0 ,14,27,485032,3,0 ,14,27,485040,6,0 ,14,27,485048,6,0 ,14,27,485056,3,0 ,44,15152,485060,40,0 ,17,923,7300804,40,0 ,14,27,485064,6,0 ,14,27,485072,3,0 ,14,27,485080,6,0 ,14,27,485088,6,0 ,20,23234,20408034,76,0 ,14,27,485096,6,0 ,14,27,485104,3,0 ,14,27,485112,6,0 ,14,27,485120,6,0 ,17,923,9398020,32,0 ,17,923,7825156,16,0 ,14,27,485128,3,0 ,14,27,485136,6,0 ,14,27,485144,6,0 ,14,27,485152,6,0 ,20,17943,6776610,12,0 ,14,27,485160,6,0 ,14,27,485168,3,0 ,14,27,485176,6,0 ,14,27,485184,6,0 ,20,19865,10970946,24,0 ,17,923,8873796,24,0 ,17,923,6776644,32,0 ,14,27,485192,6,0 ,14,27,485200,3,0 ,14,27,485208,3,0 ,14,27,485216,6,0 ,14,27,485224,6,0 ,14,27,485232,6,0 ,14,27,485240,3,0 ,14,27,485248,6,0 ,20,17944,6776706,12,0 ,45,15153,4679556,216,0 ,17,923,7825284,72,0 ,14,27,485256,3,0 ,14,27,485264,6,0 ,14,27,485272,3,0 ,14,27,485280,6,0 ,14,27,485288,5,0 ,14,27,485296,6,0 ,14,27,485304,6,0 ,14,27,485312,3,0 ,45,15153,5203908,208,0 ,14,27,485320,6,0 ,14,27,485328,3,0 ,14,27,485336,6,0 ,14,27,485344,6,0 ,20,17945,6776802,204,0 ,20,26226,28272610,132,0 ,14,27,485352,6,0 ,14,27,485360,5,0 ,14,27,485368,3,0 ,14,27,485376,5,0 ,20,19866,10971138,144,0 ,17,923,9398276,48,0 ,17,923,7301124,40,0 ,44,15152,485380,64,0 ,17,923,8349700,24,0 ,17,923,8873988,80,0 ,14,27,485384,5,0 ,14,27,485392,6,0 ,14,27,485400,6,0 ,14,27,485408,6,0 ,14,27,485416,6,0 ,14,27,485424,3,0 ,14,27,485432,6,0 ,14,27,485440,3,0 ,20,18155,7301186,80,0 ,44,15152,3631172,16,0 ,17,923,6776900,32,0 ,14,27,485448,6,0 ,14,27,485456,5,0 ,14,27,485464,6,0 ,14,27,485472,3,0 ,20,22669,19359842,380,0 ,14,27,485480,6,0 ,14,27,485488,6,0 ,14,27,485496,3,0 ,14,27,485504,6,0 ,44,15152,1534084,32,0 ,14,27,485512,3,0 ,14,27,485520,5,0 ,14,27,485528,6,0 ,14,27,485536,3,0 ,14,27,485544,6,0 ,14,27,485552,3,0 ,14,27,485560,6,0 ,14,27,485568,6,0 ,17,923,8349892,32,0 ,44,15152,3107012,24,0 ,44,15152,3631300,48,0 ,14,27,485576,6,0 ,14,27,485584,6,0 ,14,27,485592,3,0 ,14,27,485600,6,0 ,20,20846,14117090,136,0 ,20,26531,29321442,212,0 ,20,18855,8874210,544,0 ,20,20126,11495650,96,0 ,14,27,485608,6,0 ,14,27,485616,3,0 ,14,27,485624,6,0 ,14,27,485632,6,0 ,20,16879,4155650,28,0 ,14,27,485640,3,0 ,14,27,485648,6,0 ,14,27,485656,6,0 ,14,27,485664,6,0 ,14,27,485672,6,0 ,14,27,485680,6,0 ,14,27,485688,3,0 ,14,27,485696,6,0 ,20,23235,20408642,68,0 ,20,20678,13592898,372,0 ,20,22926,19884354,124,0 ,17,923,9922884,56,0 ,17,923,7301444,40,0 ,17,923,6777156,40,0 ,44,15152,2582852,176,0 ,14,27,485704,3,0 ,14,27,485712,6,0 ,14,27,485720,6,0 ,14,27,485728,6,0 ,14,27,485736,3,0 ,14,27,485744,6,0 ,14,27,485752,6,0 ,14,27,485760,6,0 ,20,21934,17262978,76,0 ,17,923,9398660,48,0 ,44,15152,1534340,48,0 ,44,15152,3107204,24,0 ,14,27,485768,6,0 ,14,27,485776,6,0 ,14,27,485784,6,0 ,14,27,485792,3,0 ,20,22462,18835874,296,0 ,14,27,485800,5,0 ,14,27,485808,3,0 ,14,27,485816,6,0 ,14,27,485824,3,0 ,20,19074,9398722,12,0 ,17,923,8350148,56,0 ,17,923,7825860,40,0 ,14,27,485832,6,0 ,14,27,485840,6,0 ,14,27,485848,6,0 ,14,27,485856,6,0 ,20,20425,13068770,328,0 ,20,15545,1010146,12,0 ,20,16880,4155874,112,0 ,14,27,485864,6,0 ,14,27,485872,5,0 ,14,27,485880,6,0 ,14,27,485888,3,0 ,44,15152,485892,24,0 ,14,27,485896,3,0 ,14,27,485904,6,0 ,14,27,485912,6,0 ,14,27,485920,3,0 ,20,19075,9398818,244,0 ,20,26367,28797474,144,0 ,14,27,485928,6,0 ,14,27,485936,3,0 ,14,27,485944,6,0 ,14,27,485952,3,0 ,20,18615,8350274,12,0 ,20,25292,25651778,432,0 ,20,15546,1010242,432,0 ,45,15153,4155972,40,0 ,44,15152,3107396,184,0 ,44,15152,3631684,16,0 ,14,27,485960,6,0 ,14,27,485968,6,0 ,14,27,485976,3,0 ,14,27,485984,3,0 ,14,27,485992,6,0 ,14,27,486000,6,0 ,14,27,486008,6,0 ,14,27,486016,6,0 ,17,923,8874628,32,0 ,17,923,7301764,40,0 ,17,923,6777476,48,0 ,14,27,486024,6,0 ,14,27,486032,3,0 ,14,27,486040,6,0 ,14,27,486048,6,0 ,20,18616,8350370,592,0 ,14,27,486056,6,0 ,14,27,486064,3,0 ,14,27,486072,6,0 ,14,27,486080,6,0 ,20,18156,7301826,12,0 ,44,15152,3631812,40,0 ,44,15152,2058948,32,0 ,44,15152,486084,32,0 ,14,27,486088,3,0 ,14,27,486096,6,0 ,14,27,486104,3,0 ,14,27,486112,6,0 ,14,27,486120,3,0 ,14,27,486128,6,0 ,14,27,486136,6,0 ,14,27,486144,3,0 ,20,15777,1534722,152,0 ,17,923,9923332,72,0 ,17,923,7826180,24,0 ,44,15152,1534724,32,0 ,17,923,9399044,40,0 ,14,27,486152,6,0 ,14,27,486160,3,0 ,14,27,486168,6,0 ,14,27,486176,6,0 ,20,18157,7301922,204,0 ,14,27,486184,3,0 ,14,27,486192,6,0 ,14,27,486200,3,0 ,14,27,486208,6,0 ,44,15152,1010500,32,0 ,14,27,486216,3,0 ,14,27,486224,6,0 ,14,27,486232,3,0 ,14,27,486240,6,0 ,20,23236,20409186,176,0 ,14,27,486248,3,0 ,14,27,486256,6,0 ,14,27,486264,3,0 ,14,27,486272,5,0 ,20,21471,16214914,160,0 ,17,923,8874884,56,0 ,45,15153,4156292,168,0 ,17,923,8350596,48,0 ,14,27,486280,3,0 ,14,27,486288,6,0 ,14,27,486296,6,0 ,14,27,486304,3,0 ,14,27,486312,5,0 ,14,27,486320,3,0 ,14,27,486328,6,0 ,14,27,486336,3,0 ,44,15152,486340,24,0 ,17,923,7826372,24,0 ,17,923,7302084,40,0 ,44,15152,2059204,40,0 ,14,27,486344,6,0 ,14,27,486352,3,0 ,14,27,486360,5,0 ,14,27,486368,3,0 ,20,21935,17263586,72,0 ,20,20127,11496418,1236,0 ,14,27,486376,6,0 ,14,27,486384,3,0 ,14,27,486392,6,0 ,14,27,486400,3,0 ,20,18373,7826434,52,0 ,20,26227,28273666,144,0 ,44,15152,3632132,32,0 ,17,923,6777860,48,0 ,44,15152,1534980,40,0 ,14,27,486408,6,0 ,14,27,486416,6,0 ,14,27,486424,6,0 ,14,27,486432,6,0 ,14,27,486440,6,0 ,14,27,486448,3,0 ,14,27,486456,6,0 ,14,27,486464,3,0 ,17,923,9399364,40,0 ,44,15152,1010756,40,0 ,14,27,486472,6,0 ,14,27,486480,3,0 ,14,27,486488,6,0 ,14,27,486496,3,0 ,20,21136,15690850,340,0 ,14,27,486504,6,0 ,14,27,486512,6,0 ,14,27,486520,6,0 ,14,27,486528,6,0 ,20,24125,22506626,228,0 ,20,17487,5729410,108,0 ,20,19867,10972290,64,0 ,44,15152,486532,32,0 ,17,923,7826564,56,0 ,14,27,486536,3,0 ,14,27,486544,6,0 ,14,27,486552,3,0 ,14,27,486560,5,0 ,14,27,486568,3,0 ,14,27,486576,6,0 ,14,27,486584,3,0 ,14,27,486592,5,0 ,14,27,486600,3,0 ,14,27,486608,6,0 ,14,27,486616,3,0 ,14,27,486624,6,0 ,14,27,486632,3,0 ,14,27,486640,6,0 ,14,27,486648,5,0 ,14,27,486656,3,0 ,20,16138,2583810,84,0 ,17,923,8350980,40,0 ,17,923,7302404,32,0 ,44,15152,2059524,72,0 ,44,15152,3632388,64,0 ,14,27,486664,6,0 ,14,27,486672,6,0 ,14,27,486680,3,0 ,14,27,486688,6,0 ,20,22927,19885346,132,0 ,20,20847,14118178,136,0 ,14,27,486696,3,0 ,14,27,486704,6,0 ,14,27,486712,6,0 ,14,27,486720,5,0 ,17,923,9923908,32,0 ,44,15152,1535300,72,0 ,17,923,8875332,72,0 ,14,27,486728,3,0 ,14,27,486736,6,0 ,14,27,486744,3,0 ,14,27,486752,6,0 ,20,16881,4156770,128,0 ,14,27,486760,3,0 ,14,27,486768,6,0 ,14,27,486776,6,0 ,14,27,486784,3,0 ,17,923,9399684,48,0 ,17,923,6778244,40,0 ,44,15152,486788,24,0 ,44,15152,1011076,16,0 ,14,27,486792,6,0 ,14,27,486800,6,0 ,14,27,486808,3,0 ,14,27,486816,6,0 ,20,18374,7826850,40,0 ,14,27,486824,6,0 ,14,27,486832,6,0 ,14,27,486840,6,0 ,14,27,486848,3,0 ,14,27,486856,6,0 ,14,27,486864,6,0 ,14,27,486872,3,0 ,14,27,486880,6,0 ,20,19286,9924066,64,0 ,14,27,486888,3,0 ,14,27,486896,6,0 ,14,27,486904,3,0 ,14,27,486912,6,0 ,44,15152,1011204,24,0 ,17,923,7302660,48,0 ,14,27,486920,3,0 ,14,27,486928,6,0 ,14,27,486936,6,0 ,14,27,486944,3,0 ,20,21936,17264162,100,0 ,14,27,486952,6,0 ,14,27,486960,3,0 ,14,27,486968,6,0 ,14,27,486976,3,0 ,20,17946,6778434,232,0 ,20,17698,6254146,12,0 ,17,923,9924164,80,0 ,17,923,7827012,32,0 ,44,15152,486980,32,0 ,45,15153,4681284,24,0 ,45,15153,5205572,168,0 ,17,923,8351300,40,0 ,14,27,486984,6,0 ,14,27,486992,3,0 ,14,27,487000,6,0 ,14,27,487008,6,0 ,14,27,487016,6,0 ,14,27,487024,3,0 ,14,27,487032,6,0 ,14,27,487040,3,0 ,20,19868,10972802,196,0 ,14,27,487048,6,0 ,14,27,487056,3,0 ,14,27,487064,6,0 ,14,27,487072,3,0 ,20,17699,6254242,204,0 ,20,26368,28798626,432,0 ,14,27,487080,6,0 ,14,27,487088,3,0 ,14,27,487096,6,0 ,14,27,487104,3,0 ,44,15152,1011396,88,0 ,17,923,6778564,24,0 ,44,15152,2584260,400,0 ,14,27,487112,6,0 ,14,27,487120,3,0 ,14,27,487128,6,0 ,14,27,487136,3,0 ,20,18375,7827170,128,0 ,14,27,487144,6,0 ,14,27,487152,3,0 ,14,27,487160,6,0 ,14,27,487168,6,0 ,20,26055,27750146,48,0 ,17,923,9400068,24,0 ,44,15152,3632900,24,0 ,45,15153,4681476,24,0 ,14,27,487176,5,0 ,14,27,487184,3,0 ,14,27,487192,6,0 ,14,27,487200,6,0 ,14,27,487208,3,0 ,14,27,487216,5,0 ,14,27,487224,3,0 ,14,27,487232,6,0 ,44,15152,487236,40,0 ,17,923,7827268,24,0 ,44,15152,2060100,24,0 ,14,27,487240,3,0 ,14,27,487248,6,0 ,14,27,487256,3,0 ,14,27,487264,5,0 ,14,27,487272,3,0 ,14,27,487280,6,0 ,14,27,487288,3,0 ,14,27,487296,6,0 ,20,26532,29323138,60,0 ,17,923,8875908,56,0 ,17,923,7303044,24,0 ,17,923,6778756,32,0 ,44,15152,1535876,64,0 ,17,923,8351620,40,0 ,14,27,487304,3,0 ,14,27,487312,6,0 ,14,27,487320,3,0 ,14,27,487328,6,0 ,20,16139,2584482,1476,0 ,14,27,487336,3,0 ,14,27,487344,6,0 ,14,27,487352,3,0 ,14,27,487360,6,0 ,20,15778,1535938,52,0 ,17,923,9400260,64,0 ,44,15152,3633092,56,0 ,45,15153,4681668,80,0 ,14,27,487368,3,0 ,14,27,487376,6,0 ,14,27,487384,3,0 ,14,27,487392,6,0 ,20,19287,9924578,44,0 ,20,17488,5730274,96,0 ,14,27,487400,3,0 ,14,27,487408,6,0 ,14,27,487416,6,0 ,14,27,487424,5,0 ,44,15152,3108868,8,0 ,17,923,7827460,32,0 ,44,15152,2060292,32,0 ,14,27,487432,3,0 ,14,27,487440,6,0 ,14,27,487448,3,0 ,14,27,487456,6,0 ,14,27,487464,3,0 ,14,27,487472,6,0 ,14,27,487480,3,0 ,14,27,487488,6,0 ,44,15152,3108932,40,0 ,17,923,7303236,40,0 ,14,27,487496,3,0 ,14,27,487504,6,0 ,14,27,487512,3,0 ,14,27,487520,6,0 ,14,27,487528,3,0 ,14,27,487536,6,0 ,14,27,487544,3,0 ,14,27,487552,6,0 ,20,21472,16216194,160,0 ,20,26228,28274818,320,0 ,20,26056,27750530,100,0 ,44,15152,487556,48,0 ,17,923,6779012,24,0 ,14,27,487560,3,0 ,14,27,487568,5,0 ,14,27,487576,3,0 ,14,27,487584,5,0 ,14,27,487592,3,0 ,14,27,487600,6,0 ,14,27,487608,3,0 ,14,27,487616,6,0 ,17,923,9924804,72,0 ,45,15153,4157636,40,0 ,17,923,8351940,24,0 ,14,27,487624,3,0 ,14,27,487632,6,0 ,14,27,487640,3,0 ,14,27,487648,6,0 ,20,23237,20410594,232,0 ,14,27,487656,3,0 ,14,27,487664,6,0 ,14,27,487672,3,0 ,14,27,487680,6,0 ,44,15152,2060548,8,0 ,17,923,7827716,32,0 ,14,27,487688,3,0 ,14,27,487696,6,0 ,14,27,487704,3,0 ,14,27,487712,6,0 ,14,27,487720,3,0 ,14,27,487728,6,0 ,14,27,487736,3,0 ,14,27,487744,6,0 ,20,22928,19886402,124,0 ,20,19288,9924930,164,0 ,20,21937,17264962,320,0 ,17,923,8876356,80,0 ,17,923,6779204,16,0 ,44,15152,2060612,24,0 ,14,27,487752,3,0 ,14,27,487760,5,0 ,14,27,487768,3,0 ,14,27,487776,6,0 ,20,20848,14119266,244,0 ,20,26533,29323618,172,0 ,20,15779,1536354,700,0 ,20,16882,4157794,160,0 ,14,27,487784,3,0 ,14,27,487792,5,0 ,14,27,487800,3,0 ,14,27,487808,5,0 ,20,18158,7303554,36,0 ,17,923,8352132,64,0 ,17,923,7303556,24,0 ,44,15152,1536388,16,0 ,44,15152,1012100,80,0 ,44,15152,3109252,24,0 ,44,15152,3633540,24,0 ,14,27,487816,3,0 ,14,27,487824,6,0 ,14,27,487832,3,0 ,14,27,487840,5,0 ,14,27,487848,3,0 ,14,27,487856,6,0 ,14,27,487864,3,0 ,14,27,487872,6,0 ,20,19076,9400770,84,0 ,17,923,9400772,56,0 ,17,923,6779332,16,0 ,14,27,487880,3,0 ,14,27,487888,6,0 ,14,27,487896,3,0 ,14,27,487904,6,0 ,14,27,487912,3,0 ,14,27,487920,6,0 ,14,27,487928,3,0 ,14,27,487936,6,0 ,45,15153,4157956,16,0 ,17,923,7827972,40,0 ,44,15152,2060804,16,0 ,44,15152,1536516,24,0 ,44,15152,487940,16,0 ,14,27,487944,3,0 ,14,27,487952,6,0 ,14,27,487960,3,0 ,14,27,487968,6,0 ,14,27,487976,3,0 ,14,27,487984,6,0 ,14,27,487992,3,0 ,14,27,488000,6,0 ,45,15153,4682308,160,0 ,17,923,7303748,64,0 ,17,923,6779460,24,0 ,44,15152,3109444,24,0 ,44,15152,3633732,152,0 ,14,27,488008,3,0 ,14,27,488016,6,0 ,14,27,488024,3,0 ,14,27,488032,6,0 ,14,27,488040,3,0 ,14,27,488048,6,0 ,14,27,488056,3,0 ,14,27,488064,6,0 ,45,15153,4158084,16,0 ,44,15152,2060932,24,0 ,44,15152,488068,16,0 ,14,27,488072,3,0 ,14,27,488080,6,0 ,14,27,488088,3,0 ,14,27,488096,6,0 ,20,18159,7303842,12,0 ,14,27,488104,3,0 ,14,27,488112,6,0 ,14,27,488120,3,0 ,14,27,488128,6,0 ,20,21724,16741058,168,0 ,44,15152,1536708,48,0 ,14,27,488136,3,0 ,14,27,488144,6,0 ,14,27,488152,3,0 ,14,27,488160,6,0 ,20,22463,18838242,88,0 ,20,17489,5731042,12,0 ,20,18376,7828194,244,0 ,14,27,488168,3,0 ,14,27,488176,6,0 ,14,27,488184,6,0 ,14,27,488192,6,0 ,20,18160,7303938,12,0 ,17,923,9925380,64,0 ,17,923,6779652,24,0 ,44,15152,488196,24,0 ,44,15152,3109636,32,0 ,45,15153,4158212,16,0 ,14,27,488200,3,0 ,14,27,488208,6,0 ,14,27,488216,6,0 ,14,27,488224,3,0 ,14,27,488232,6,0 ,14,27,488240,6,0 ,14,27,488248,3,0 ,14,27,488256,3,0 ,20,17490,5731138,12,0 ,44,15152,2061124,32,0 ,17,923,7828292,40,0 ,14,27,488264,6,0 ,14,27,488272,6,0 ,14,27,488280,6,0 ,14,27,488288,3,0 ,20,18161,7304034,52,0 ,20,24667,24081250,152,0 ,14,27,488296,6,0 ,14,27,488304,3,0 ,14,27,488312,6,0 ,14,27,488320,3,0 ,17,923,9401220,40,0 ,45,15153,4158340,16,0 ,45,15153,5206916,152,0 ,17,923,8352644,64,0 ,14,27,488328,6,0 ,14,27,488336,3,0 ,14,27,488344,6,0 ,14,27,488352,6,0 ,20,24126,22508450,280,0 ,20,26057,27751330,80,0 ,20,17491,5731234,136,0 ,14,27,488360,6,0 ,14,27,488368,3,0 ,14,27,488376,6,0 ,14,27,488384,3,0 ,17,923,8876996,24,0 ,17,923,6779844,32,0 ,44,15152,488388,32,0 ,14,27,488392,6,0 ,14,27,488400,6,0 ,14,27,488408,3,0 ,14,27,488416,6,0 ,14,27,488424,3,0 ,14,27,488432,6,0 ,14,27,488440,3,0 ,14,27,488448,6,0 ,45,15153,4158468,32,0 ,44,15152,1012740,24,0 ,44,15152,3109892,24,0 ,14,27,488456,6,0 ,14,27,488464,3,0 ,14,27,488472,6,0 ,14,27,488480,3,0 ,20,20426,13071394,80,0 ,20,24845,24605730,60,0 ,14,27,488488,6,0 ,14,27,488496,6,0 ,14,27,488504,6,0 ,14,27,488512,3,0 ,20,22670,19362882,524,0 ,44,15152,1537092,24,0 ,17,923,7304260,40,0 ,44,15152,2061380,24,0 ,14,27,488520,6,0 ,14,27,488528,3,0 ,14,27,488536,6,0 ,14,27,488544,6,0 ,20,19077,9401442,12,0 ,14,27,488552,6,0 ,14,27,488560,5,0 ,14,27,488568,6,0 ,14,27,488576,6,0 ,17,923,8877188,80,0 ,17,923,7828612,40,0 ,14,27,488584,6,0 ,14,27,488592,6,0 ,14,27,488600,3,0 ,14,27,488608,3,0 ,20,19869,10974370,436,0 ,20,17275,5207202,12,0 ,14,27,488616,6,0 ,14,27,488624,6,0 ,14,27,488632,5,0 ,14,27,488640,6,0 ,20,19078,9401538,116,0 ,17,923,9401540,24,0 ,17,923,6780100,32,0 ,44,15152,488644,32,0 ,44,15152,1012932,64,0 ,44,15152,3110084,40,0 ,14,27,488648,5,0 ,14,27,488656,6,0 ,14,27,488664,5,0 ,14,27,488672,3,0 ,20,20679,13595874,756,0 ,14,27,488680,6,0 ,14,27,488688,6,0 ,14,27,488696,5,0 ,14,27,488704,6,0 ,20,18162,7304450,6624,0 ,20,17276,5207298,12,0 ,20,17700,6255874,300,0 ,17,923,9925892,24,0 ,44,15152,2061572,24,0 ,44,15152,1537284,32,0 ,45,15153,4158724,16,0 ,14,27,488712,3,0 ,14,27,488720,5,0 ,14,27,488728,3,0 ,14,27,488736,5,0 ,20,22929,19887394,144,0 ,14,27,488744,3,0 ,14,27,488752,6,0 ,14,27,488760,3,0 ,14,27,488768,6,0 ,14,27,488776,3,0 ,14,27,488784,5,0 ,14,27,488792,3,0 ,14,27,488800,6,0 ,20,17277,5207394,52,0 ,14,27,488808,6,0 ,14,27,488816,3,0 ,14,27,488824,6,0 ,14,27,488832,6,0 ,20,23874,21984642,160,0 ,20,25641,26703234,132,0 ,20,17947,6780290,364,0 ,20,21473,16217474,100,0 ,17,923,9401732,24,0 ,17,923,7304580,24,0 ,45,15153,4158852,16,0 ,17,923,8353156,24,0 ,14,27,488840,3,0 ,14,27,488848,6,0 ,14,27,488856,3,0 ,14,27,488864,6,0 ,20,22464,18838946,300,0 ,14,27,488872,3,0 ,14,27,488880,6,0 ,14,27,488888,3,0 ,14,27,488896,3,0 ,17,923,9926084,32,0 ,17,923,7828932,40,0 ,17,923,6780356,48,0 ,44,15152,2061764,24,0 ,44,15152,488900,32,0 ,14,27,488904,6,0 ,14,27,488912,6,0 ,14,27,488920,6,0 ,14,27,488928,3,0 ,14,27,488936,5,0 ,14,27,488944,3,0 ,14,27,488952,6,0 ,14,27,488960,3,0 ,20,24846,24606210,648,0 ,45,15153,4158980,16,0 ,44,15152,1537540,48,0 ,44,15152,3110404,40,0 ,14,27,488968,6,0 ,14,27,488976,3,0 ,14,27,488984,6,0 ,14,27,488992,3,0 ,20,26058,27751970,136,0 ,14,27,489000,5,0 ,14,27,489008,3,0 ,14,27,489016,6,0 ,14,27,489024,6,0 ,17,923,9401924,56,0 ,17,923,7304772,56,0 ,17,923,8353348,64,0 ,14,27,489032,3,0 ,14,27,489040,6,0 ,14,27,489048,3,0 ,14,27,489056,6,0 ,20,19289,9926242,12,0 ,20,16883,4159074,144,0 ,14,27,489064,3,0 ,14,27,489072,6,0 ,14,27,489080,6,0 ,14,27,489088,6,0 ,45,15153,4159108,64,0 ,44,15152,2061956,24,0 ,14,27,489096,3,0 ,14,27,489104,6,0 ,14,27,489112,3,0 ,14,27,489120,6,0 ,20,20427,13072034,12,0 ,14,27,489128,3,0 ,14,27,489136,6,0 ,14,27,489144,3,0 ,14,27,489152,6,0 ,20,19290,9926338,52,0 ,20,26534,29324994,164,0 ,17,923,9926340,48,0 ,44,15152,489156,40,0 ,44,15152,1013444,24,0 ,14,27,489160,3,0 ,14,27,489168,6,0 ,14,27,489176,6,0 ,14,27,489184,3,0 ,20,25077,25130722,256,0 ,14,27,489192,5,0 ,14,27,489200,6,0 ,14,27,489208,3,0 ,14,27,489216,6,0 ,20,21137,15693570,72,0 ,20,17278,5207810,140,0 ,20,20428,13072130,84,0 ,17,923,8877828,32,0 ,17,923,7829252,48,0 ,44,15152,3634948,160,0 ,14,27,489224,6,0 ,14,27,489232,5,0 ,14,27,489240,3,0 ,14,27,489248,6,0 ,14,27,489256,3,0 ,14,27,489264,6,0 ,14,27,489272,6,0 ,14,27,489280,6,0 ,20,25822,27227970,96,0 ,45,15153,4683588,24,0 ,17,923,6780740,24,0 ,44,15152,2062148,40,0 ,44,15152,3110724,40,0 ,14,27,489288,3,0 ,14,27,489296,6,0 ,14,27,489304,6,0 ,14,27,489312,6,0 ,14,27,489320,6,0 ,14,27,489328,3,0 ,14,27,489336,6,0 ,14,27,489344,3,0 ,44,15152,1013636,88,0 ,44,15152,1537924,32,0 ,14,27,489352,6,0 ,14,27,489360,3,0 ,14,27,489368,6,0 ,14,27,489376,3,0 ,14,27,489384,6,0 ,14,27,489392,3,0 ,14,27,489400,6,0 ,14,27,489408,3,0 ,20,15547,1013698,104,0 ,20,25293,25655234,372,0 ,14,27,489416,5,0 ,14,27,489424,3,0 ,14,27,489432,6,0 ,14,27,489440,3,0 ,20,17492,5732322,12,0 ,14,27,489448,6,0 ,14,27,489456,6,0 ,14,27,489464,3,0 ,14,27,489472,3,0 ,20,21725,16742402,188,0 ,17,923,9402372,48,0 ,17,923,7305220,40,0 ,17,923,6780932,32,0 ,44,15152,489476,56,0 ,45,15153,4683780,16,0 ,17,923,8878084,48,0 ,14,27,489480,6,0 ,14,27,489488,6,0 ,14,27,489496,6,0 ,14,27,489504,3,0 ,20,23238,20412450,284,0 ,20,24668,24082466,12,0 ,14,27,489512,6,0 ,14,27,489520,3,0 ,14,27,489528,6,0 ,14,27,489536,3,0 ,20,17493,5732418,1336,0 ,17,923,9926724,56,0 ,45,15153,5208132,48,0 ,17,923,8353860,32,0 ,14,27,489544,6,0 ,14,27,489552,6,0 ,14,27,489560,3,0 ,14,27,489568,6,0 ,20,19291,9926754,128,0 ,20,19079,9402466,12,0 ,14,27,489576,3,0 ,14,27,489584,6,0 ,14,27,489592,6,0 ,14,27,489600,3,0 ,20,24669,24082562,56,0 ,45,15153,4683908,16,0 ,17,923,7829636,24,0 ,44,15152,2062468,16,0 ,44,15152,1538180,32,0 ,44,15152,3111044,24,0 ,45,15153,4159620,32,0 ,14,27,489608,6,0 ,14,27,489616,3,0 ,14,27,489624,6,0 ,14,27,489632,3,0 ,20,21474,16218274,232,0 ,14,27,489640,6,0 ,14,27,489648,3,0 ,14,27,489656,6,0 ,14,27,489664,3,0 ,20,19080,9402562,84,0 ,14,27,489672,5,0 ,14,27,489680,6,0 ,14,27,489688,3,0 ,14,27,489696,6,0 ,14,27,489704,3,0 ,14,27,489712,6,0 ,14,27,489720,3,0 ,14,27,489728,6,0 ,20,20849,14121218,136,0 ,45,15153,4684036,16,0 ,17,923,6781188,40,0 ,44,15152,2062596,16,0 ,14,27,489736,3,0 ,14,27,489744,5,0 ,14,27,489752,3,0 ,14,27,489760,6,0 ,14,27,489768,3,0 ,14,27,489776,6,0 ,14,27,489784,3,0 ,14,27,489792,5,0 ,20,21138,15694146,72,0 ,17,923,8354116,56,0 ,17,923,7829828,56,0 ,17,923,7305540,32,0 ,44,15152,3111236,40,0 ,14,27,489800,3,0 ,14,27,489808,6,0 ,14,27,489816,3,0 ,14,27,489824,6,0 ,14,27,489832,3,0 ,14,27,489840,6,0 ,14,27,489848,3,0 ,14,27,489856,6,0 ,17,923,9402756,24,0 ,44,15152,2062724,48,0 ,44,15152,1538436,80,0 ,45,15153,4159876,80,0 ,45,15153,4684164,24,0 ,17,923,8878468,64,0 ,14,27,489864,3,0 ,14,27,489872,6,0 ,14,27,489880,3,0 ,14,27,489888,3,0 ,20,22930,19888546,64,0 ,20,25642,26704290,496,0 ,20,20429,13072802,440,0 ,14,27,489896,6,0 ,14,27,489904,6,0 ,14,27,489912,3,0 ,14,27,489920,6,0 ,20,22219,18315714,760,0 ,45,15153,5208516,32,0 ,44,15152,489924,16,0 ,14,27,489928,3,0 ,14,27,489936,6,0 ,14,27,489944,3,0 ,14,27,489952,6,0 ,20,18856,8878562,264,0 ,14,27,489960,3,0 ,14,27,489968,6,0 ,14,27,489976,3,0 ,14,27,489984,6,0 ,17,923,9927172,24,0 ,14,27,489992,3,0 ,14,27,490000,6,0 ,14,27,490008,3,0 ,14,27,490016,6,0 ,14,27,490024,3,0 ,14,27,490032,6,0 ,14,27,490040,3,0 ,14,27,490048,3,0 ,20,24670,24083010,248,0 ,20,25823,27228738,144,0 ,17,923,9402948,24,0 ,17,923,7305796,32,0 ,17,923,6781508,32,0 ,44,15152,490052,24,0 ,44,15152,1014340,24,0 ,45,15153,4684356,40,0 ,14,27,490056,6,0 ,14,27,490064,6,0 ,14,27,490072,3,0 ,14,27,490080,6,0 ,20,26059,27753058,136,0 ,14,27,490088,6,0 ,14,27,490096,6,0 ,14,27,490104,6,0 ,14,27,490112,3,0 ,20,23875,21985922,496,0 ,20,26229,28277378,88,0 ,20,18377,7830146,632,0 ,44,15152,3111556,72,0 ,14,27,490120,6,0 ,14,27,490128,3,0 ,14,27,490136,6,0 ,14,27,490144,3,0 ,14,27,490152,6,0 ,14,27,490160,3,0 ,14,27,490168,6,0 ,14,27,490176,6,0 ,20,23655,21461698,248,0 ,17,923,9927364,24,0 ,45,15153,5208772,384,0 ,14,27,490184,3,0 ,14,27,490192,5,0 ,14,27,490200,3,0 ,14,27,490208,6,0 ,20,16884,4160226,52,0 ,20,15309,490210,3248,0 ,14,27,490216,3,0 ,14,27,490224,5,0 ,14,27,490232,3,0 ,14,27,490240,6,0 ,20,17081,4684546,916,0 ,20,15548,1014530,236,0 ,17,923,9403140,24,0 ,17,923,7830276,40,0 ,44,15152,2063108,48,0 ,44,15152,490244,64,0 ,44,15152,1014532,24,0 ,17,923,8354564,24,0 ,14,27,490248,3,0 ,14,27,490256,6,0 ,14,27,490264,3,0 ,14,27,490272,6,0 ,20,23465,20937506,36,0 ,14,27,490280,3,0 ,14,27,490288,6,0 ,14,27,490296,3,0 ,14,27,490304,6,0 ,20,21938,17267522,172,0 ,44,15152,2587460,56,0 ,17,923,7306052,80,0 ,17,923,6781764,32,0 ,14,27,490312,3,0 ,14,27,490320,6,0 ,14,27,490328,3,0 ,14,27,490336,6,0 ,20,19081,9403234,188,0 ,20,17279,5208930,80,0 ,14,27,490344,3,0 ,14,27,490352,6,0 ,14,27,490360,3,0 ,14,27,490368,6,0 ,20,21139,15694722,68,0 ,17,923,9927556,56,0 ,45,15153,4684676,72,0 ,17,923,8878980,48,0 ,14,27,490376,6,0 ,14,27,490384,3,0 ,14,27,490392,6,0 ,14,27,490400,6,0 ,20,22931,19889058,64,0 ,14,27,490408,6,0 ,14,27,490416,6,0 ,14,27,490424,3,0 ,14,27,490432,6,0 ,17,923,9403332,64,0 ,44,15152,1014724,168,0 ,17,923,8354756,32,0 ,14,27,490440,3,0 ,14,27,490448,6,0 ,14,27,490456,3,0 ,14,27,490464,6,0 ,20,26535,29326306,164,0 ,14,27,490472,3,0 ,14,27,490480,6,0 ,14,27,490488,3,0 ,14,27,490496,6,0 ,45,15153,4160516,72,0 ,44,15152,1539076,80,0 ,44,15152,3636228,120,0 ,14,27,490504,3,0 ,14,27,490512,6,0 ,14,27,490520,3,0 ,14,27,490528,5,0 ,20,26369,28802082,796,0 ,14,27,490536,5,0 ,14,27,490544,5,0 ,14,27,490552,3,0 ,14,27,490560,3,0 ,20,23466,20937794,212,0 ,17,923,6782020,32,0 ,17,923,7830596,32,0 ,14,27,490568,6,0 ,14,27,490576,6,0 ,14,27,490584,6,0 ,14,27,490592,6,0 ,20,24127,22510690,84,0 ,20,19292,9927778,64,0 ,14,27,490600,6,0 ,14,27,490608,6,0 ,14,27,490616,3,0 ,14,27,490624,6,0 ,20,16885,4160642,328,0 ,44,15152,2063492,24,0 ,14,27,490632,3,0 ,14,27,490640,6,0 ,14,27,490648,3,0 ,14,27,490656,6,0 ,14,27,490664,6,0 ,14,27,490672,3,0 ,14,27,490680,6,0 ,14,27,490688,3,0 ,17,923,8355012,40,0 ,44,15152,3112132,64,0 ,14,27,490696,5,0 ,14,27,490704,5,0 ,14,27,490712,6,0 ,14,27,490720,3,0 ,14,27,490728,3,0 ,14,27,490736,6,0 ,14,27,490744,6,0 ,14,27,490752,3,0 ,17,923,8879364,80,0 ,44,15152,2587908,24,0 ,44,15152,490756,24,0 ,14,27,490760,6,0 ,14,27,490768,6,0 ,14,27,490776,3,0 ,14,27,490784,6,0 ,20,18617,8355106,12,0 ,14,27,490792,3,0 ,14,27,490800,6,0 ,14,27,490808,3,0 ,14,27,490816,5,0 ,20,20850,14122306,136,0 ,20,26230,28278082,896,0 ,17,923,9928004,32,0 ,17,923,7830852,40,0 ,17,923,6782276,24,0 ,44,15152,2063684,24,0 ,14,27,490824,3,0 ,14,27,490832,6,0 ,14,27,490840,6,0 ,14,27,490848,3,0 ,14,27,490856,2,0 ,14,27,490864,6,0 ,14,27,490872,3,0 ,14,27,490880,6,0 ,20,18618,8355202,448,0 ,14,27,490888,3,0 ,14,27,490896,5,0 ,14,27,490904,3,0 ,14,27,490912,6,0 ,20,22932,19889570,124,0 ,20,21140,15695266,340,0 ,14,27,490920,3,0 ,14,27,490928,6,0 ,14,27,490936,5,0 ,14,27,490944,3,0 ,17,923,9403844,32,0 ,17,923,7306692,80,0 ,44,15152,2588100,384,0 ,44,15152,490948,48,0 ,45,15153,4685252,16,0 ,14,27,490952,3,0 ,14,27,490960,6,0 ,14,27,490968,3,0 ,14,27,490976,6,0 ,20,21726,16743906,552,0 ,20,17280,5209570,240,0 ,14,27,490984,3,0 ,14,27,490992,6,0 ,14,27,491000,3,0 ,14,27,491008,6,0 ,17,923,8355332,24,0 ,17,923,6782468,32,0 ,44,15152,2063876,24,0 ,14,27,491016,3,0 ,14,27,491024,6,0 ,14,27,491032,6,0 ,14,27,491040,3,0 ,14,27,491048,3,0 ,14,27,491056,6,0 ,14,27,491064,3,0 ,14,27,491072,5,0 ,17,923,9928260,24,0 ,45,15153,4161092,96,0 ,45,15153,4685380,32,0 ,14,27,491080,3,0 ,14,27,491088,5,0 ,14,27,491096,6,0 ,14,27,491104,6,0 ,20,19293,9928290,12,0 ,20,17701,6258274,520,0 ,14,27,491112,3,0 ,14,27,491120,6,0 ,14,27,491128,6,0 ,14,27,491136,6,0 ,44,15152,1539716,24,0 ,17,923,7831172,32,0 ,14,27,491144,3,0 ,14,27,491152,6,0 ,14,27,491160,6,0 ,14,27,491168,3,0 ,20,26060,27754146,728,0 ,14,27,491176,6,0 ,14,27,491184,6,0 ,14,27,491192,6,0 ,14,27,491200,3,0 ,20,19294,9928386,12,0 ,20,25824,27229890,140,0 ,17,923,9404100,40,0 ,44,15152,2064068,48,0 ,44,15152,3112644,24,0 ,17,923,8355524,40,0 ,14,27,491208,6,0 ,14,27,491216,3,0 ,14,27,491224,6,0 ,14,27,491232,6,0 ,20,25078,25132770,1004,0 ,14,27,491240,3,0 ,14,27,491248,3,0 ,14,27,491256,6,0 ,14,27,491264,3,0 ,20,24128,22511362,88,0 ,20,22465,18841346,88,0 ,17,923,9928452,24,0 ,17,923,6782724,32,0 ,14,27,491272,6,0 ,14,27,491280,5,0 ,14,27,491288,3,0 ,14,27,491296,6,0 ,20,19295,9928482,12,0 ,14,27,491304,3,0 ,14,27,491312,6,0 ,14,27,491320,3,0 ,14,27,491328,6,0 ,45,15153,4685636,16,0 ,44,15152,1539908,128,0 ,44,15152,491332,80,0 ,14,27,491336,6,0 ,14,27,491344,6,0 ,14,27,491352,3,0 ,14,27,491360,6,0 ,14,27,491368,6,0 ,14,27,491376,6,0 ,14,27,491384,3,0 ,14,27,491392,6,0 ,20,19296,9928578,88,0 ,17,923,8880004,24,0 ,17,923,7831428,24,0 ,44,15152,3112836,16,0 ,14,27,491400,3,0 ,14,27,491408,6,0 ,14,27,491416,3,0 ,14,27,491424,6,0 ,14,27,491432,3,0 ,14,27,491440,5,0 ,14,27,491448,3,0 ,14,27,491456,6,0 ,17,923,9928644,24,0 ,44,15152,3637188,64,0 ,45,15153,4685764,16,0 ,14,27,491464,6,0 ,14,27,491472,6,0 ,14,27,491480,3,0 ,14,27,491488,6,0 ,20,21475,16220130,160,0 ,14,27,491496,3,0 ,14,27,491504,6,0 ,14,27,491512,3,0 ,14,27,491520,6,0 ,17,923,9404420,24,0 ,17,923,6782980,24,0 ,44,15152,3112964,24,0 ,17,923,8355844,48,0 ,14,27,491528,3,0 ,14,27,491536,6,0 ,14,27,491544,6,0 ,14,27,491552,3,0 ,14,27,491560,5,0 ,14,27,491568,3,0 ,14,27,491576,6,0 ,14,27,491584,3,0 ,17,923,8880196,80,0 ,17,923,7831620,32,0 ,17,923,7307332,32,0 ,44,15152,2064452,56,0 ,45,15153,4685892,32,0 ,14,27,491592,6,0 ,14,27,491600,3,0 ,14,27,491608,6,0 ,14,27,491616,3,0 ,14,27,491624,6,0 ,14,27,491632,3,0 ,14,27,491640,5,0 ,14,27,491648,3,0 ,17,923,9928836,24,0 ,14,27,491656,6,0 ,14,27,491664,3,0 ,14,27,491672,6,0 ,14,27,491680,6,0 ,20,21939,17268898,48,0 ,14,27,491688,6,0 ,14,27,491696,5,0 ,14,27,491704,3,0 ,14,27,491712,6,0 ,17,923,9404612,56,0 ,17,923,6783172,24,0 ,44,15152,3113156,24,0 ,14,27,491720,3,0 ,14,27,491728,6,0 ,14,27,491736,3,0 ,14,27,491744,6,0 ,20,17948,6783202,396,0 ,14,27,491752,3,0 ,14,27,491760,6,0 ,14,27,491768,3,0 ,14,27,491776,2,0 ,20,23239,20414722,20,0 ,20,26536,29327618,44,0 ,44,15152,1016068,24,0 ,14,27,491784,6,0 ,14,27,491792,3,0 ,14,27,491800,6,0 ,14,27,491808,3,0 ,14,27,491816,6,0 ,14,27,491824,3,0 ,14,27,491832,3,0 ,14,27,491840,6,0 ,20,19082,9404738,12,0 ,17,923,9929028,24,0 ,17,923,7831876,24,0 ,17,923,7307588,32,0 ,45,15153,4161860,64,0 ,45,15153,4686148,40,0 ,14,27,491848,3,0 ,14,27,491856,6,0 ,14,27,491864,3,0 ,14,27,491872,6,0 ,14,27,491880,3,0 ,14,27,491888,6,0 ,14,27,491896,3,0 ,14,27,491904,6,0 ,20,22933,19890562,144,0 ,20,20851,14123394,240,0 ,17,923,8356228,48,0 ,17,923,6783364,24,0 ,44,15152,3113348,24,0 ,14,27,491912,3,0 ,14,27,491920,6,0 ,14,27,491928,3,0 ,14,27,491936,6,0 ,20,23240,20414882,60,0 ,20,19083,9404834,468,0 ,14,27,491944,3,0 ,14,27,491952,6,0 ,14,27,491960,3,0 ,14,27,491968,6,0 ,20,24129,22512066,296,0 ,20,22466,18842050,660,0 ,44,15152,3637700,64,0 ,44,15152,491972,32,0 ,44,15152,1016260,48,0 ,14,27,491976,6,0 ,14,27,491984,3,0 ,14,27,491992,6,0 ,14,27,492000,3,0 ,14,27,492008,6,0 ,14,27,492016,6,0 ,14,27,492024,6,0 ,14,27,492032,3,0 ,20,24671,24084994,56,0 ,17,923,9929220,24,0 ,17,923,7832068,32,0 ,44,15152,2064900,48,0 ,14,27,492040,6,0 ,14,27,492048,3,0 ,14,27,492056,5,0 ,14,27,492064,6,0 ,20,21940,17269282,144,0 ,20,18857,8880674,96,0 ,14,27,492072,5,0 ,14,27,492080,3,0 ,14,27,492088,6,0 ,14,27,492096,6,0 ,20,21984,17793602,64,0 ,20,19297,9929282,124,0 ,20,19870,10977858,48,0 ,44,15152,3113540,32,0 ,17,923,7307844,40,0 ,17,923,6783556,40,0 ,14,27,492104,3,0 ,14,27,492112,6,0 ,14,27,492120,3,0 ,14,27,492128,6,0 ,20,15549,1016418,200,0 ,20,26537,29327970,48,0 ,14,27,492136,3,0 ,14,27,492144,6,0 ,14,27,492152,5,0 ,14,27,492160,3,0 ,20,23656,21463682,2960,0 ,17,923,9405060,24,0 ,45,15153,4686468,32,0 ,14,27,492168,6,0 ,14,27,492176,3,0 ,14,27,492184,5,0 ,14,27,492192,3,0 ,14,27,492200,6,0 ,14,27,492208,3,0 ,14,27,492216,5,0 ,14,27,492224,6,0 ,17,923,9929412,40,0 ,44,15152,492228,32,0 ,17,923,8880836,32,0 ,14,27,492232,3,0 ,14,27,492240,6,0 ,14,27,492248,3,0 ,14,27,492256,6,0 ,20,23467,20939490,584,0 ,14,27,492264,3,0 ,14,27,492272,5,0 ,14,27,492280,3,0 ,14,27,492288,6,0 ,17,923,8356612,48,0 ,17,923,7832324,24,0 ,14,27,492296,3,0 ,14,27,492304,6,0 ,14,27,492312,3,0 ,14,27,492320,6,0 ,20,25825,27231010,184,0 ,14,27,492328,3,0 ,14,27,492336,6,0 ,14,27,492344,3,0 ,14,27,492352,6,0 ,17,923,9405252,32,0 ,44,15152,1540932,64,0 ,44,15152,1016644,112,0 ,44,15152,3113796,32,0 ,45,15153,4162372,24,0 ,14,27,492360,3,0 ,14,27,492368,6,0 ,14,27,492376,3,0 ,14,27,492384,6,0 ,20,25294,25658210,244,0 ,14,27,492392,6,0 ,14,27,492400,6,0 ,14,27,492408,5,0 ,14,27,492416,3,0 ,20,23241,20415362,60,0 ,45,15153,4686724,16,0 ,17,923,7308164,40,0 ,17,923,6783876,32,0 ,44,15152,2065284,56,0 ,14,27,492424,6,0 ,14,27,492432,3,0 ,14,27,492440,6,0 ,14,27,492448,3,0 ,14,27,492456,6,0 ,14,27,492464,3,0 ,14,27,492472,6,0 ,14,27,492480,3,0 ,20,19871,10978242,92,0 ,20,24672,24085442,256,0 ,17,923,8881092,48,0 ,17,923,7832516,24,0 ,44,15152,492484,56,0 ,44,15152,3638212,64,0 ,14,27,492488,6,0 ,14,27,492496,3,0 ,14,27,492504,6,0 ,14,27,492512,5,0 ,20,26538,29328354,48,0 ,14,27,492520,3,0 ,14,27,492528,5,0 ,14,27,492536,3,0 ,14,27,492544,6,0 ,17,923,9929732,48,0 ,45,15153,4162564,112,0 ,45,15153,4686852,16,0 ,14,27,492552,3,0 ,14,27,492560,6,0 ,14,27,492568,3,0 ,14,27,492576,6,0 ,14,27,492584,3,0 ,14,27,492592,6,0 ,14,27,492600,3,0 ,14,27,492608,6,0 ,20,21985,17794114,64,0 ,17,923,9405508,40,0 ,44,15152,3114052,40,0 ,14,27,492616,3,0 ,14,27,492624,6,0 ,14,27,492632,3,0 ,14,27,492640,6,0 ,14,27,492648,3,0 ,14,27,492656,6,0 ,14,27,492664,3,0 ,14,27,492672,6,0 ,17,923,8356996,56,0 ,17,923,7832708,24,0 ,17,923,6784132,24,0 ,45,15153,4686980,16,0 ,14,27,492680,3,0 ,14,27,492688,6,0 ,14,27,492696,3,0 ,14,27,492704,6,0 ,20,22671,19367074,224,0 ,14,27,492712,3,0 ,14,27,492720,6,0 ,14,27,492728,6,0 ,14,27,492736,3,0 ,17,923,7308484,56,0 ,14,27,492744,6,0 ,14,27,492752,3,0 ,14,27,492760,5,0 ,14,27,492768,3,0 ,20,21476,16221410,328,0 ,14,27,492776,6,0 ,14,27,492784,3,0 ,14,27,492792,6,0 ,14,27,492800,3,0 ,45,15153,4687108,32,0 ,14,27,492808,6,0 ,14,27,492816,3,0 ,14,27,492824,6,0 ,14,27,492832,3,0 ,20,18858,8881442,304,0 ,14,27,492840,6,0 ,14,27,492848,3,0 ,14,27,492856,6,0 ,14,27,492864,3,0 ,17,923,8881476,64,0 ,17,923,7832900,56,0 ,17,923,6784324,24,0 ,44,15152,2065732,24,0 ,44,15152,1541444,64,0 ,14,27,492872,6,0 ,14,27,492880,3,0 ,14,27,492888,6,0 ,14,27,492896,3,0 ,20,23242,20415842,152,0 ,20,26539,29328738,44,0 ,20,17281,5211490,128,0 ,14,27,492904,6,0 ,14,27,492912,3,0 ,14,27,492920,6,0 ,14,27,492928,3,0 ,17,923,9930116,48,0 ,44,15152,492932,32,0 ,44,15152,3114372,40,0 ,17,923,9405828,24,0 ,14,27,492936,6,0 ,14,27,492944,3,0 ,14,27,492952,6,0 ,14,27,492960,3,0 ,14,27,492968,6,0 ,14,27,492976,3,0 ,14,27,492984,6,0 ,14,27,492992,3,0 ,44,15152,3638724,64,0 ,14,27,493000,6,0 ,14,27,493008,3,0 ,14,27,493016,6,0 ,14,27,493024,3,0 ,14,27,493032,6,0 ,14,27,493040,5,0 ,14,27,493048,3,0 ,14,27,493056,6,0 ,20,22934,19891714,144,0 ,45,15153,4687364,32,0 ,17,923,6784516,32,0 ,44,15152,2065924,56,0 ,14,27,493064,3,0 ,14,27,493072,5,0 ,14,27,493080,3,0 ,14,27,493088,6,0 ,20,19298,9930274,176,0 ,14,27,493096,6,0 ,14,27,493104,3,0 ,14,27,493112,6,0 ,14,27,493120,3,0 ,20,21986,17794626,704,0 ,17,923,9406020,72,0 ,17,923,8357444,48,0 ,14,27,493128,6,0 ,14,27,493136,3,0 ,14,27,493144,6,0 ,14,27,493152,3,0 ,14,27,493160,6,0 ,14,27,493168,3,0 ,14,27,493176,6,0 ,14,27,493184,3,0 ,44,15152,493188,48,0 ,17,923,7308932,104,0 ,14,27,493192,6,0 ,14,27,493200,3,0 ,14,27,493208,6,0 ,14,27,493216,6,0 ,20,21941,17270434,48,0 ,20,19872,10978978,80,0 ,14,27,493224,3,0 ,14,27,493232,6,0 ,14,27,493240,6,0 ,14,27,493248,3,0 ,20,16886,4163266,144,0 ,20,26540,29329090,44,0 ,45,15153,5211844,16,0 ,44,15152,1017540,16,0 ,44,15152,3114692,40,0 ,14,27,493256,6,0 ,14,27,493264,3,0 ,14,27,493272,5,0 ,14,27,493280,5,0 ,14,27,493288,3,0 ,14,27,493296,6,0 ,14,27,493304,3,0 ,14,27,493312,5,0 ,17,923,9930500,48,0 ,17,923,7833348,56,0 ,17,923,6784772,24,0 ,45,15153,4687620,40,0 ,14,27,493320,3,0 ,14,27,493328,6,0 ,14,27,493336,6,0 ,14,27,493344,6,0 ,14,27,493352,6,0 ,14,27,493360,6,0 ,14,27,493368,6,0 ,14,27,493376,6,0 ,20,16596,3639106,260,0 ,20,15780,1541954,1868,0 ,17,923,8881988,48,0 ,44,15152,1541956,64,0 ,44,15152,1017668,48,0 ,45,15153,5211972,72,0 ,14,27,493384,6,0 ,14,27,493392,3,0 ,14,27,493400,6,0 ,14,27,493408,6,0 ,20,20430,13076322,160,0 ,14,27,493416,3,0 ,14,27,493424,6,0 ,14,27,493432,6,0 ,14,27,493440,6,0 ,45,15153,4163460,64,0 ,14,27,493448,6,0 ,14,27,493456,6,0 ,14,27,493464,3,0 ,14,27,493472,6,0 ,14,27,493480,3,0 ,14,27,493488,6,0 ,14,27,493496,3,0 ,14,27,493504,6,0 ,17,923,8357828,40,0 ,17,923,6784964,40,0 ,44,15152,2066372,48,0 ,44,15152,3639236,64,0 ,14,27,493512,3,0 ,14,27,493520,6,0 ,14,27,493528,3,0 ,14,27,493536,6,0 ,14,27,493544,6,0 ,14,27,493552,3,0 ,14,27,493560,3,0 ,14,27,493568,6,0 ,44,15152,3115012,40,0 ,44,15152,493572,24,0 ,14,27,493576,6,0 ,14,27,493584,3,0 ,14,27,493592,6,0 ,14,27,493600,6,0 ,20,21942,17270818,756,0 ,20,26541,29329442,44,0 ,14,27,493608,3,0 ,14,27,493616,3,0 ,14,27,493624,6,0 ,14,27,493632,6,0 ,20,21141,15697986,140,0 ,45,15153,4687940,32,0 ,14,27,493640,6,0 ,14,27,493648,3,0 ,14,27,493656,3,0 ,14,27,493664,6,0 ,14,27,493672,6,0 ,14,27,493680,6,0 ,14,27,493688,3,0 ,14,27,493696,3,0 ,17,923,9930884,48,0 ,17,923,9406596,32,0 ,14,27,493704,6,0 ,14,27,493712,6,0 ,14,27,493720,3,0 ,14,27,493728,6,0 ,20,15550,1018018,112,0 ,14,27,493736,3,0 ,14,27,493744,6,0 ,14,27,493752,6,0 ,14,27,493760,3,0 ,17,923,8882372,80,0 ,17,923,7833796,40,0 ,44,15152,493764,80,0 ,44,15152,1018052,40,0 ,14,27,493768,6,0 ,14,27,493776,3,0 ,14,27,493784,6,0 ,14,27,493792,5,0 ,20,25826,27232482,1104,0 ,14,27,493800,3,0 ,14,27,493808,5,0 ,14,27,493816,3,0 ,14,27,493824,6,0 ,20,20852,14125314,240,0 ,17,923,8358148,40,0 ,17,923,6785284,40,0 ,14,27,493832,3,0 ,14,27,493840,6,0 ,14,27,493848,6,0 ,14,27,493856,3,0 ,20,19873,10979618,12,0 ,20,25643,26708258,148,0 ,14,27,493864,6,0 ,14,27,493872,3,0 ,14,27,493880,6,0 ,14,27,493888,3,0 ,45,15153,4688196,32,0 ,44,15152,2066756,56,0 ,44,15152,1542468,32,0 ,44,15152,3115332,32,0 ,14,27,493896,6,0 ,14,27,493904,3,0 ,14,27,493912,6,0 ,14,27,493920,3,0 ,20,17282,5212514,180,0 ,14,27,493928,6,0 ,14,27,493936,6,0 ,14,27,493944,3,0 ,14,27,493952,6,0 ,20,19874,10979714,136,0 ,20,26542,29329794,44,0 ,17,923,9406852,24,0 ,45,15153,4163972,16,0 ,45,15153,5212548,56,0 ,14,27,493960,6,0 ,14,27,493968,3,0 ,14,27,493976,6,0 ,14,27,493984,6,0 ,14,27,493992,6,0 ,14,27,494000,6,0 ,14,27,494008,6,0 ,14,27,494016,5,0 ,44,15152,3639748,64,0 ,17,923,7309764,104,0 ,44,15152,2591172,96,0 ,14,27,494024,3,0 ,14,27,494032,6,0 ,14,27,494040,3,0 ,14,27,494048,6,0 ,14,27,494056,6,0 ,14,27,494064,6,0 ,14,27,494072,5,0 ,14,27,494080,3,0 ,20,23876,21989890,520,0 ,17,923,9931268,40,0 ,17,923,7834116,40,0 ,44,15152,1018372,56,0 ,45,15153,4164100,16,0 ,14,27,494088,6,0 ,14,27,494096,3,0 ,14,27,494104,6,0 ,14,27,494112,6,0 ,20,23243,20417058,84,0 ,14,27,494120,6,0 ,14,27,494128,6,0 ,14,27,494136,3,0 ,14,27,494144,6,0 ,20,24847,24611394,696,0 ,17,923,9407044,56,0 ,17,923,6785604,40,0 ,44,15152,1542724,24,0 ,44,15152,3115588,64,0 ,45,15153,4688452,16,0 ,17,923,8358468,40,0 ,14,27,494152,6,0 ,14,27,494160,3,0 ,14,27,494168,6,0 ,14,27,494176,6,0 ,14,27,494184,3,0 ,14,27,494192,6,0 ,14,27,494200,3,0 ,14,27,494208,5,0 ,20,22935,19892866,124,0 ,45,15153,4164228,48,0 ,14,27,494216,3,0 ,14,27,494224,5,0 ,14,27,494232,3,0 ,14,27,494240,6,0 ,14,27,494248,6,0 ,14,27,494256,6,0 ,14,27,494264,6,0 ,14,27,494272,3,0 ,45,15153,4688580,32,0 ,14,27,494280,5,0 ,14,27,494288,6,0 ,14,27,494296,3,0 ,14,27,494304,6,0 ,20,24307,23038690,172,0 ,20,26543,29330146,44,0 ,14,27,494312,6,0 ,14,27,494320,6,0 ,14,27,494328,3,0 ,14,27,494336,6,0 ,20,24130,22514434,72,0 ,20,25295,25660162,216,0 ,44,15152,1542916,88,0 ,44,15152,2067204,64,0 ,14,27,494344,6,0 ,14,27,494352,3,0 ,14,27,494360,6,0 ,14,27,494368,3,0 ,14,27,494376,5,0 ,14,27,494384,6,0 ,14,27,494392,6,0 ,14,27,494400,6,0 ,20,16887,4164418,452,0 ,17,923,9931588,48,0 ,17,923,7834436,32,0 ,44,15152,494404,40,0 ,45,15153,5212996,24,0 ,17,923,8883012,24,0 ,14,27,494408,6,0 ,14,27,494416,3,0 ,14,27,494424,6,0 ,14,27,494432,6,0 ,14,27,494440,3,0 ,14,27,494448,6,0 ,14,27,494456,6,0 ,14,27,494464,5,0 ,20,18619,8358786,12,0 ,17,923,8358788,48,0 ,17,923,6785924,32,0 ,14,27,494472,3,0 ,14,27,494480,6,0 ,14,27,494488,3,0 ,14,27,494496,6,0 ,20,22672,19368866,356,0 ,20,19299,9931682,12,0 ,14,27,494504,3,0 ,14,27,494512,6,0 ,14,27,494520,3,0 ,14,27,494528,6,0 ,20,24673,24087490,380,0 ,45,15153,4688836,176,0 ,44,15152,1018820,48,0 ,44,15152,3640260,40,0 ,14,27,494536,3,0 ,14,27,494544,6,0 ,14,27,494552,6,0 ,14,27,494560,3,0 ,20,18620,8358882,272,0 ,14,27,494568,6,0 ,14,27,494576,3,0 ,14,27,494584,6,0 ,14,27,494592,3,0 ,20,19300,9931778,12,0 ,17,923,9407492,24,0 ,45,15153,4164612,16,0 ,45,15153,5213188,24,0 ,17,923,8883204,80,0 ,14,27,494600,6,0 ,14,27,494608,3,0 ,14,27,494616,6,0 ,14,27,494624,3,0 ,20,15551,1018914,48,0 ,14,27,494632,6,0 ,14,27,494640,3,0 ,14,27,494648,5,0 ,14,27,494656,5,0 ,20,26544,29330498,228,0 ,44,15152,3116100,104,0 ,17,923,7834692,40,0 ,14,27,494664,6,0 ,14,27,494672,6,0 ,14,27,494680,6,0 ,14,27,494688,3,0 ,20,20431,13077602,328,0 ,20,19301,9931874,12,0 ,14,27,494696,5,0 ,14,27,494704,3,0 ,14,27,494712,6,0 ,14,27,494720,6,0 ,20,20680,13601922,196,0 ,45,15153,4164740,32,0 ,17,923,6786180,40,0 ,44,15152,494724,24,0 ,14,27,494728,3,0 ,14,27,494736,6,0 ,14,27,494744,6,0 ,14,27,494752,6,0 ,20,21142,15699106,340,0 ,14,27,494760,6,0 ,14,27,494768,3,0 ,14,27,494776,6,0 ,14,27,494784,3,0 ,20,23244,20417730,120,0 ,20,19302,9931970,1276,0 ,17,923,9931972,40,0 ,44,15152,2591940,40,0 ,45,15153,5213380,24,0 ,17,923,9407684,24,0 ,14,27,494792,6,0 ,14,27,494800,3,0 ,14,27,494808,6,0 ,14,27,494816,6,0 ,14,27,494824,3,0 ,14,27,494832,3,0 ,14,27,494840,6,0 ,14,27,494848,3,0 ,17,923,8359172,48,0 ,17,923,7310596,48,0 ,44,15152,2067716,56,0 ,44,15152,3640580,120,0 ,14,27,494856,6,0 ,14,27,494864,5,0 ,14,27,494872,6,0 ,14,27,494880,3,0 ,14,27,494888,6,0 ,14,27,494896,3,0 ,14,27,494904,6,0 ,14,27,494912,6,0 ,20,24131,22515010,152,0 ,20,17949,6786370,12,0 ,44,15152,1019204,32,0 ,44,15152,494916,24,0 ,14,27,494920,3,0 ,14,27,494928,6,0 ,14,27,494936,6,0 ,14,27,494944,5,0 ,14,27,494952,3,0 ,14,27,494960,6,0 ,14,27,494968,6,0 ,14,27,494976,6,0 ,17,923,9407876,72,0 ,17,923,7835012,32,0 ,45,15153,4164996,16,0 ,45,15153,5213572,40,0 ,14,27,494984,3,0 ,14,27,494992,6,0 ,14,27,495000,6,0 ,14,27,495008,6,0 ,20,17950,6786466,576,0 ,20,15552,1019298,568,0 ,14,27,495016,6,0 ,14,27,495024,6,0 ,14,27,495032,6,0 ,14,27,495040,6,0 ,20,19875,10980802,524,0 ,20,25644,26709442,484,0 ,44,15152,1543620,48,0 ,17,923,6786500,32,0 ,14,27,495048,3,0 ,14,27,495056,3,0 ,14,27,495064,3,0 ,14,27,495072,3,0 ,14,27,495080,3,0 ,14,27,495088,3,0 ,14,27,495096,3,0 ,14,27,495104,3,0 ,17,923,9932292,48,0 ,44,15152,2592260,40,0 ,44,15152,495108,48,0 ,45,15153,4165124,16,0 ,14,27,495112,3,0 ,14,27,495120,3,0 ,14,27,495128,3,0 ,14,27,495136,3,0 ,14,27,495144,3,0 ,14,27,495152,3,0 ,14,27,495160,3,0 ,14,27,495168,3,0 ,20,18378,7835202,292,0 ,44,15152,1019460,24,0 ,14,27,495176,3,0 ,14,27,495184,3,0 ,14,27,495192,3,0 ,14,27,495200,3,0 ,20,22936,19893858,264,0 ,14,27,495208,3,0 ,14,27,495216,2,0 ,14,27,495224,4,0 ,14,27,495232,4,0 ,17,923,8883844,32,0 ,17,923,7835268,40,0 ,17,923,7310980,40,0 ,45,15153,4165252,16,0 ,17,923,8359556,40,0 ,14,27,495240,4,0 ,14,27,495248,4,0 ,14,27,495256,4,0 ,14,27,495264,4,0 ,20,18859,8883874,92,0 ,20,17702,6262434,296,0 ,14,27,495272,4,0 ,14,27,495280,4,0 ,14,27,495288,4,0 ,14,27,495296,4,0 ,45,15153,5213892,16,0 ,17,923,6786756,40,0 ,44,15152,2068164,56,0 ,14,27,495304,4,0 ,14,27,495312,4,0 ,14,27,495320,4,0 ,14,27,495328,4,0 ,14,27,495336,4,0 ,14,27,495344,4,0 ,14,27,495352,4,0 ,14,27,495360,4,0 ,20,17283,5213954,136,0 ,45,15153,4165380,16,0 ,44,15152,1019652,24,0 ,14,27,495368,4,0 ,14,27,495376,4,0 ,14,27,495384,2,0 ,14,27,495392,3,0 ,20,21727,16748322,156,0 ,20,21477,16224034,120,0 ,14,27,495400,3,0 ,14,27,495408,3,0 ,14,27,495416,3,0 ,14,27,495424,3,0 ,45,15153,5214020,40,0 ,44,15152,2592580,48,0 ,44,15152,1544004,48,0 ,14,27,495432,3,0 ,14,27,495440,3,0 ,14,27,495448,3,0 ,14,27,495456,3,0 ,20,16597,3641186,76,0 ,14,27,495464,3,0 ,14,27,495472,4,0 ,14,27,495480,4,0 ,14,27,495488,4,0 ,17,923,9932676,48,0 ,44,15152,495492,24,0 ,44,15152,3116932,24,0 ,45,15153,4165508,16,0 ,17,923,8884100,48,0 ,14,27,495496,4,0 ,14,27,495504,4,0 ,14,27,495512,4,0 ,14,27,495520,4,0 ,14,27,495528,4,0 ,14,27,495536,3,0 ,14,27,495544,3,0 ,14,27,495552,3,0 ,17,923,9408452,40,0 ,17,923,7835588,48,0 ,17,923,7311300,40,0 ,44,15152,1019844,24,0 ,17,923,8359876,40,0 ,14,27,495560,3,0 ,14,27,495568,3,0 ,14,27,495576,3,0 ,14,27,495584,3,0 ,14,27,495592,3,0 ,14,27,495600,3,0 ,14,27,495608,3,0 ,14,27,495616,4,0 ,45,15153,4165636,24,0 ,17,923,6787076,32,0 ,14,27,495624,4,0 ,14,27,495632,3,0 ,14,27,495640,3,0 ,14,27,495648,3,0 ,14,27,495656,3,0 ,14,27,495664,3,0 ,14,27,495672,3,0 ,14,27,495680,4,0 ,20,24308,23040066,120,0 ,20,19084,9408578,412,0 ,44,15152,3117124,32,0 ,44,15152,495684,24,0 ,14,27,495688,3,0 ,14,27,495696,4,0 ,14,27,495704,4,0 ,14,27,495712,4,0 ,14,27,495720,4,0 ,14,27,495728,4,0 ,14,27,495736,4,0 ,14,27,495744,4,0 ,20,23245,20418690,256,0 ,20,20853,14127234,704,0 ,45,15153,5214340,136,0 ,44,15152,2068612,24,0 ,44,15152,1020036,32,0 ,14,27,495752,4,0 ,14,27,495760,4,0 ,14,27,495768,4,0 ,14,27,495776,4,0 ,14,27,495784,4,0 ,14,27,495792,4,0 ,14,27,495800,3,0 ,14,27,495808,3,0 ,45,15153,4165828,64,0 ,44,15152,2592964,376,0 ,44,15152,1544388,72,0 ,44,15152,3641540,72,0 ,14,27,495816,3,0 ,14,27,495824,3,0 ,14,27,495832,3,0 ,14,27,495840,2,0 ,14,27,495848,2,0 ,14,27,495856,2,0 ,14,27,495864,2,0 ,14,27,495872,2,0 ,17,923,9933060,48,0 ,17,923,7311620,40,0 ,17,923,6787332,40,0 ,44,15152,495876,24,0 ,17,923,8360196,80,0 ,17,923,8884484,64,0 ,17,923,9408772,24,0 ,14,27,495880,2,0 ,14,27,495888,2,0 ,14,27,495896,2,0 ,14,27,495904,2,0 ,14,27,495912,3,0 ,14,27,495920,3,0 ,14,27,495928,4,0 ,14,27,495936,4,0 ,45,15153,4690244,48,0 ,17,923,7835972,40,0 ,44,15152,2068804,64,0 ,44,15152,3117380,80,0 ,14,27,495944,3,0 ,14,27,495952,3,0 ,14,27,495960,3,0 ,14,27,495968,3,0 ,14,27,495976,3,0 ,14,27,495984,3,0 ,14,27,495992,3,0 ,14,27,496000,3,0 ,20,22220,18321794,688,0 ,20,18860,8884610,52,0 ,44,15152,1020292,72,0 ,14,27,496008,3,0 ,14,27,496016,3,0 ,14,27,496024,3,0 ,14,27,496032,3,0 ,14,27,496040,3,0 ,14,27,496048,3,0 ,14,27,496056,3,0 ,14,27,496064,3,0 ,20,16598,3641794,180,0 ,20,25296,25661890,116,0 ,17,923,9408964,56,0 ,44,15152,496068,24,0 ,14,27,496072,3,0 ,14,27,496080,3,0 ,14,27,496088,3,0 ,14,27,496096,3,0 ,14,27,496104,3,0 ,14,27,496112,3,0 ,14,27,496120,3,0 ,14,27,496128,3,0 ,20,24132,22516226,84,0 ,14,27,496136,3,0 ,14,27,496144,3,0 ,14,27,496152,3,0 ,14,27,496160,3,0 ,14,27,496168,3,0 ,14,27,496176,3,0 ,14,27,496184,3,0 ,14,27,496192,3,0 ,17,923,6787652,40,0 ,17,923,7311940,40,0 ,14,27,496200,3,0 ,14,27,496208,3,0 ,14,27,496216,3,0 ,14,27,496224,3,0 ,14,27,496232,3,0 ,14,27,496240,3,0 ,14,27,496248,3,0 ,14,27,496256,3,0 ,20,20128,11506306,60,0 ,17,923,9933444,32,0 ,17,923,7836292,32,0 ,44,15152,496260,16,0 ,14,27,496264,3,0 ,14,27,496272,3,0 ,14,27,496280,3,0 ,14,27,496288,3,0 ,20,20681,13603490,56,0 ,14,27,496296,3,0 ,14,27,496304,3,0 ,14,27,496312,3,0 ,14,27,496320,3,0 ,45,15153,4690628,40,0 ,45,15153,4166340,16,0 ,14,27,496328,3,0 ,14,27,496336,3,0 ,14,27,496344,3,0 ,14,27,496352,4,0 ,20,21478,16224994,48,0 ,14,27,496360,4,0 ,14,27,496368,4,0 ,14,27,496376,4,0 ,14,27,496384,4,0 ,17,923,8884996,48,0 ,44,15152,1544964,24,0 ,44,15152,496388,24,0 ,44,15152,3642116,32,0 ,14,27,496392,4,0 ,14,27,496400,4,0 ,14,27,496408,4,0 ,14,27,496416,4,0 ,20,18861,8885026,120,0 ,14,27,496424,4,0 ,14,27,496432,4,0 ,14,27,496440,4,0 ,14,27,496448,4,0 ,20,17284,5215042,204,0 ,45,15153,4166468,48,0 ,44,15152,2069316,56,0 ,14,27,496456,4,0 ,14,27,496464,4,0 ,14,27,496472,4,0 ,14,27,496480,4,0 ,20,26545,29332322,228,0 ,14,27,496488,4,0 ,14,27,496496,4,0 ,14,27,496504,4,0 ,14,27,496512,4,0 ,17,923,9933700,24,0 ,17,923,7836548,56,0 ,17,923,7312260,48,0 ,17,923,6787972,32,0 ,17,923,8360836,40,0 ,17,923,9409412,24,0 ,14,27,496520,4,0 ,14,27,496528,4,0 ,14,27,496536,4,0 ,14,27,496544,4,0 ,14,27,496552,4,0 ,14,27,496560,4,0 ,14,27,496568,4,0 ,14,27,496576,4,0 ,44,15152,3118020,40,0 ,44,15152,1545156,16,0 ,44,15152,496580,24,0 ,44,15152,1020868,32,0 ,14,27,496584,4,0 ,14,27,496592,4,0 ,14,27,496600,4,0 ,14,27,496608,4,0 ,14,27,496616,4,0 ,14,27,496624,4,0 ,14,27,496632,4,0 ,14,27,496640,4,0 ,20,24309,23041026,360,0 ,20,21728,16749570,88,0 ,45,15153,4690948,16,0 ,44,15152,3642372,120,0 ,14,27,496648,4,0 ,14,27,496656,4,0 ,14,27,496664,4,0 ,14,27,496672,4,0 ,14,27,496680,4,0 ,14,27,496688,4,0 ,14,27,496696,4,0 ,14,27,496704,4,0 ,17,923,9933892,32,0 ,44,15152,1545284,16,0 ,17,923,9409604,24,0 ,14,27,496712,4,0 ,14,27,496720,4,0 ,14,27,496728,4,0 ,14,27,496736,4,0 ,20,21479,16225378,44,0 ,20,18621,8361058,328,0 ,20,20129,11506786,84,0 ,20,20682,13603938,128,0 ,14,27,496744,4,0 ,14,27,496752,4,0 ,14,27,496760,4,0 ,14,27,496768,4,0 ,17,923,8885380,64,0 ,17,923,6788228,40,0 ,44,15152,496772,40,0 ,45,15153,4691076,336,0 ,14,27,496776,4,0 ,14,27,496784,4,0 ,14,27,496792,4,0 ,14,27,496800,4,0 ,20,24133,22516898,140,0 ,14,27,496808,4,0 ,14,27,496816,4,0 ,14,27,496824,4,0 ,14,27,496832,4,0 ,17,923,8361156,24,0 ,44,15152,1545412,16,0 ,44,15152,1021124,72,0 ,45,15153,4166852,32,0 ,45,15153,5215428,152,0 ,14,27,496840,4,0 ,14,27,496848,4,0 ,14,27,496856,4,0 ,14,27,496864,4,0 ,14,27,496872,4,0 ,14,27,496880,4,0 ,14,27,496888,4,0 ,14,27,496896,4,0 ,20,26370,28808450,52,0 ,17,923,9409796,56,0 ,17,923,7312644,40,0 ,44,15152,2069764,56,0 ,44,15152,3118340,64,0 ,14,27,496904,4,0 ,14,27,496912,4,0 ,14,27,496920,4,0 ,14,27,496928,4,0 ,20,23468,20944162,200,0 ,14,27,496936,4,0 ,14,27,496944,4,0 ,14,27,496952,4,0 ,14,27,496960,4,0 ,17,923,9934148,32,0 ,17,923,7836996,56,0 ,44,15152,1545540,64,0 ,14,27,496968,4,0 ,14,27,496976,4,0 ,14,27,496984,4,0 ,14,27,496992,4,0 ,20,25297,25662818,196,0 ,20,26061,27759970,260,0 ,14,27,497000,4,0 ,14,27,497008,4,0 ,14,27,497016,4,0 ,14,27,497024,4,0 ,17,923,8361348,56,0 ,14,27,497032,4,0 ,14,27,497040,4,0 ,14,27,497048,4,0 ,14,27,497056,4,0 ,14,27,497064,4,0 ,14,27,497072,4,0 ,14,27,497080,4,0 ,14,27,497088,4,0 ,20,21480,16225730,96,0 ,45,15153,4167108,16,0 ,17,923,6788548,32,0 ,44,15152,497092,24,0 ,14,27,497096,4,0 ,14,27,497104,4,0 ,14,27,497112,4,0 ,14,27,497120,4,0 ,14,27,497128,4,0 ,14,27,497136,4,0 ,14,27,497144,4,0 ,14,27,497152,4,0 ,14,27,497160,4,0 ,14,27,497168,4,0 ,14,27,497176,4,0 ,14,27,497184,4,0 ,14,27,497192,4,0 ,14,27,497200,4,0 ,14,27,497208,4,0 ,14,27,497216,4,0 ,17,923,9934404,24,0 ,17,923,7312964,48,0 ,45,15153,4167236,112,0 ,14,27,497224,4,0 ,14,27,497232,4,0 ,14,27,497240,4,0 ,14,27,497248,4,0 ,20,22467,18847330,660,0 ,14,27,497256,4,0 ,14,27,497264,4,0 ,14,27,497272,4,0 ,14,27,497280,4,0 ,17,923,8885892,24,0 ,44,15152,497284,80,0 ,14,27,497288,4,0 ,14,27,497296,4,0 ,14,27,497304,4,0 ,14,27,497312,4,0 ,20,22937,19895970,596,0 ,20,26371,28808866,12,0 ,20,20432,13080226,80,0 ,14,27,497320,4,0 ,14,27,497328,4,0 ,14,27,497336,4,0 ,14,27,497344,4,0 ,20,22673,19371714,416,0 ,20,21729,16750274,12,0 ,17,923,9410244,24,0 ,17,923,6788804,40,0 ,44,15152,2070212,24,0 ,14,27,497352,4,0 ,14,27,497360,4,0 ,14,27,497368,4,0 ,14,27,497376,4,0 ,20,18862,8885986,172,0 ,14,27,497384,4,0 ,14,27,497392,4,0 ,14,27,497400,4,0 ,14,27,497408,4,0 ,20,20130,11507458,176,0 ,20,26372,28808962,52,0 ,17,923,9934596,16,0 ,17,923,7837444,40,0 ,44,15152,1021700,32,0 ,44,15152,3118852,136,0 ,14,27,497416,4,0 ,14,27,497424,4,0 ,14,27,497432,4,0 ,14,27,497440,4,0 ,20,21730,16750370,112,0 ,14,27,497448,4,0 ,14,27,497456,4,0 ,14,27,497464,4,0 ,14,27,497472,4,0 ,20,21143,15701826,320,0 ,17,923,8886084,72,0 ,44,15152,1546052,32,0 ,17,923,8361796,48,0 ,14,27,497480,4,0 ,14,27,497488,4,0 ,14,27,497496,4,0 ,14,27,497504,4,0 ,20,18379,7837538,244,0 ,20,16599,3643234,128,0 ,14,27,497512,4,0 ,14,27,497520,4,0 ,14,27,497528,4,0 ,14,27,497536,4,0 ,17,923,9934724,32,0 ,44,15152,2070404,64,0 ,17,923,9410436,24,0 ,14,27,497544,4,0 ,14,27,497552,4,0 ,14,27,497560,4,0 ,14,27,497568,4,0 ,20,17082,4691874,292,0 ,20,24674,24090530,448,0 ,14,27,497576,4,0 ,14,27,497584,4,0 ,14,27,497592,4,0 ,14,27,497600,4,0 ,44,15152,3643332,72,0 ,17,923,7313348,32,0 ,14,27,497608,4,0 ,14,27,497616,4,0 ,14,27,497624,4,0 ,14,27,497632,4,0 ,20,17703,6264802,68,0 ,14,27,497640,4,0 ,14,27,497648,4,0 ,14,27,497656,4,0 ,14,27,497664,4,0 ,44,15152,1021956,32,0 ,17,923,6789124,32,0 ,14,27,497672,4,0 ,14,27,497680,4,0 ,14,27,497688,4,0 ,14,27,497696,4,0 ,14,27,497704,4,0 ,14,27,497712,4,0 ,14,27,497720,4,0 ,14,27,497728,4,0 ,17,923,9410628,56,0 ,17,923,7837764,48,0 ,44,15152,1546308,24,0 ,14,27,497736,4,0 ,14,27,497744,4,0 ,14,27,497752,4,0 ,14,27,497760,4,0 ,20,20683,13604962,84,0 ,14,27,497768,4,0 ,14,27,497776,4,0 ,14,27,497784,4,0 ,14,27,497792,4,0 ,20,23246,20420738,320,0 ,17,923,9934980,24,0 ,14,27,497800,4,0 ,14,27,497808,4,0 ,14,27,497816,4,0 ,14,27,497824,4,0 ,20,26373,28809378,180,0 ,14,27,497832,4,0 ,14,27,497840,4,0 ,14,27,497848,4,0 ,14,27,497856,4,0 ,20,21481,16226498,140,0 ,17,923,8362180,24,0 ,17,923,7313604,32,0 ,14,27,497864,4,0 ,14,27,497872,4,0 ,14,27,497880,4,0 ,14,27,497888,4,0 ,14,27,497896,4,0 ,14,27,497904,4,0 ,14,27,497912,4,0 ,14,27,497920,4,0 ,20,24134,22518018,156,0 ,44,15152,1022212,32,0 ,17,923,6789380,32,0 ,44,15152,1546500,24,0 ,44,15152,497924,48,0 ,14,27,497928,4,0 ,14,27,497936,4,0 ,14,27,497944,4,0 ,14,27,497952,4,0 ,20,20433,13080866,12,0 ,14,27,497960,4,0 ,14,27,497968,4,0 ,14,27,497976,4,0 ,14,27,497984,4,0 ,20,26231,28285250,148,0 ,17,923,9935172,40,0 ,14,27,497992,4,0 ,14,27,498000,4,0 ,14,27,498008,4,0 ,14,27,498016,4,0 ,20,16888,4168034,440,0 ,14,27,498024,4,0 ,14,27,498032,4,0 ,14,27,498040,4,0 ,14,27,498048,4,0 ,20,20434,13080962,84,0 ,17,923,8886660,32,0 ,44,15152,2070916,24,0 ,45,15153,5216644,40,0 ,17,923,8362372,48,0 ,14,27,498056,4,0 ,14,27,498064,4,0 ,14,27,498072,4,0 ,14,27,498080,4,0 ,20,17285,5216674,80,0 ,14,27,498088,4,0 ,14,27,498096,4,0 ,14,27,498104,4,0 ,14,27,498112,4,0 ,45,15153,4168132,40,0 ,17,923,7838148,40,0 ,17,923,7313860,40,0 ,44,15152,1546692,48,0 ,14,27,498120,4,0 ,14,27,498128,4,0 ,14,27,498136,4,0 ,14,27,498144,4,0 ,14,27,498152,4,0 ,14,27,498160,4,0 ,14,27,498168,4,0 ,14,27,498176,4,0 ,20,17704,6265346,180,0 ,17,923,9411076,32,0 ,17,923,6789636,24,0 ,44,15152,1022468,72,0 ,44,15152,3643908,32,0 ,14,27,498184,4,0 ,14,27,498192,4,0 ,14,27,498200,4,0 ,14,27,498208,4,0 ,14,27,498216,4,0 ,14,27,498224,4,0 ,14,27,498232,4,0 ,14,27,498240,4,0 ,20,23877,21994050,288,0 ,44,15152,2071108,56,0 ,14,27,498248,4,0 ,14,27,498256,4,0 ,14,27,498264,4,0 ,14,27,498272,4,0 ,14,27,498280,4,0 ,14,27,498288,4,0 ,14,27,498296,4,0 ,14,27,498304,4,0 ,20,26546,29334146,228,0 ,17,923,9935492,32,0 ,44,15152,498308,152,0 ,17,923,8886916,40,0 ,14,27,498312,4,0 ,14,27,498320,4,0 ,14,27,498328,4,0 ,14,27,498336,4,0 ,20,21731,16751266,64,0 ,14,27,498344,4,0 ,14,27,498352,4,0 ,14,27,498360,4,0 ,14,27,498368,4,0 ,45,15153,5216964,64,0 ,17,923,6789828,24,0 ,14,27,498376,4,0 ,14,27,498384,4,0 ,14,27,498392,4,0 ,14,27,498400,4,0 ,14,27,498408,4,0 ,14,27,498416,5,0 ,14,27,498424,4,0 ,14,27,498432,4,0 ,20,20684,13605634,68,0 ,17,923,9411332,32,0 ,17,923,7838468,48,0 ,17,923,7314180,32,0 ,44,15152,3644164,16,0 ,45,15153,4168452,56,0 ,17,923,8362756,48,0 ,14,27,498440,4,0 ,14,27,498448,4,0 ,14,27,498456,4,0 ,14,27,498464,4,0 ,14,27,498472,4,0 ,14,27,498480,3,0 ,14,27,498488,3,0 ,14,27,498496,3,0 ,44,15152,3119940,40,0 ,44,15152,1547076,24,0 ,14,27,498504,3,0 ,14,27,498512,6,0 ,14,27,498520,3,0 ,14,27,498528,3,0 ,20,23469,20945762,124,0 ,20,16600,3644258,128,0 ,14,27,498536,3,0 ,14,27,498544,3,0 ,14,27,498552,3,0 ,14,27,498560,3,0 ,20,25298,25664386,552,0 ,17,923,9935748,32,0 ,17,923,6790020,32,0 ,44,15152,3644292,32,0 ,14,27,498568,3,0 ,14,27,498576,3,0 ,14,27,498584,3,0 ,14,27,498592,3,0 ,14,27,498600,3,0 ,14,27,498608,3,0 ,14,27,498616,3,0 ,14,27,498624,3,0 ,17,923,8887236,56,0 ,14,27,498632,3,0 ,14,27,498640,3,0 ,14,27,498648,3,0 ,14,27,498656,3,0 ,14,27,498664,3,0 ,14,27,498672,3,0 ,14,27,498680,3,0 ,14,27,498688,3,0 ,17,923,9411588,32,0 ,17,923,7314436,32,0 ,44,15152,2071556,56,0 ,44,15152,1547268,24,0 ,14,27,498696,3,0 ,14,27,498704,3,0 ,14,27,498712,3,0 ,14,27,498720,3,0 ,20,20435,13081634,440,0 ,20,17286,5217314,416,0 ,14,27,498728,3,0 ,14,27,498736,3,0 ,14,27,498744,3,0 ,14,27,498752,3,0 ,20,21987,17800258,12,0 ,20,18863,8887362,12,0 ,44,15152,1023044,24,0 ,14,27,498760,3,0 ,14,27,498768,3,0 ,14,27,498776,3,0 ,14,27,498784,3,0 ,14,27,498792,3,0 ,14,27,498800,3,0 ,14,27,498808,3,0 ,14,27,498816,3,0 ,20,20131,11508866,60,0 ,17,923,9936004,24,0 ,17,923,7838852,40,0 ,17,923,6790276,32,0 ,44,15152,2595972,48,0 ,44,15152,3120260,112,0 ,44,15152,3644548,144,0 ,17,923,8363140,32,0 ,14,27,498824,3,0 ,14,27,498832,3,0 ,14,27,498840,3,0 ,14,27,498848,3,0 ,20,21988,17800354,12,0 ,20,18864,8887458,12,0 ,20,21732,16751778,68,0 ,14,27,498856,3,0 ,14,27,498864,3,0 ,14,27,498872,3,0 ,14,27,498880,3,0 ,45,15153,5217476,32,0 ,44,15152,1547460,24,0 ,45,15153,4168900,16,0 ,14,27,498888,3,0 ,14,27,498896,3,0 ,14,27,498904,3,0 ,14,27,498912,3,0 ,20,25645,26713314,164,0 ,14,27,498920,3,0 ,14,27,498928,3,0 ,14,27,498936,3,0 ,14,27,498944,3,0 ,20,21989,17800450,12,0 ,20,18865,8887554,604,0 ,17,923,9411844,32,0 ,17,923,7314692,24,0 ,44,15152,1023236,176,0 ,14,27,498952,3,0 ,14,27,498960,3,0 ,14,27,498968,3,0 ,14,27,498976,3,0 ,20,21482,16227618,492,0 ,20,19085,9411874,2564,0 ,20,20685,13606178,128,0 ,14,27,498984,3,0 ,14,27,498992,3,0 ,14,27,499000,3,0 ,14,27,499008,3,0 ,17,923,9936196,32,0 ,45,15153,4169028,16,0 ,14,27,499016,3,0 ,14,27,499024,3,0 ,14,27,499032,3,0 ,14,27,499040,3,0 ,20,21990,17800546,12,0 ,14,27,499048,3,0 ,14,27,499056,3,0 ,14,27,499064,3,0 ,14,27,499072,3,0 ,20,26062,27762050,88,0 ,17,923,8887684,40,0 ,17,923,6790532,24,0 ,44,15152,1547652,328,0 ,17,923,8363396,32,0 ,14,27,499080,3,0 ,14,27,499088,3,0 ,14,27,499096,3,0 ,14,27,499104,3,0 ,14,27,499112,3,0 ,14,27,499120,3,0 ,14,27,499128,3,0 ,14,27,499136,3,0 ,20,21991,17800642,56,0 ,20,16140,2596290,1648,0 ,45,15153,5217732,56,0 ,17,923,7839172,40,0 ,17,923,7314884,40,0 ,44,15152,2072004,24,0 ,45,15153,4169156,16,0 ,14,27,499144,3,0 ,14,27,499152,3,0 ,14,27,499160,3,0 ,14,27,499168,3,0 ,20,24135,22519266,156,0 ,20,26232,28286434,224,0 ,14,27,499176,3,0 ,14,27,499184,3,0 ,14,27,499192,3,0 ,14,27,499200,3,0 ,17,923,9412100,40,0 ,44,15152,2596356,24,0 ,14,27,499208,3,0 ,14,27,499216,6,0 ,14,27,499224,6,0 ,14,27,499232,3,0 ,20,19876,10984994,96,0 ,14,27,499240,6,0 ,14,27,499248,3,0 ,14,27,499256,6,0 ,14,27,499264,3,0 ,20,25079,25140802,460,0 ,20,26374,28810818,204,0 ,17,923,9936452,56,0 ,17,923,6790724,32,0 ,45,15153,4169284,24,0 ,14,27,499272,6,0 ,14,27,499280,6,0 ,14,27,499288,3,0 ,14,27,499296,6,0 ,20,20132,11509346,112,0 ,14,27,499304,3,0 ,14,27,499312,6,0 ,14,27,499320,6,0 ,14,27,499328,6,0 ,17,923,8363652,24,0 ,44,15152,2072196,64,0 ,14,27,499336,6,0 ,14,27,499344,5,0 ,14,27,499352,3,0 ,14,27,499360,6,0 ,20,18622,8363682,1216,0 ,14,27,499368,3,0 ,14,27,499376,5,0 ,14,27,499384,3,0 ,14,27,499392,6,0 ,20,21733,16752322,160,0 ,17,923,8888004,64,0 ,44,15152,2596548,48,0 ,14,27,499400,3,0 ,14,27,499408,6,0 ,14,27,499416,6,0 ,14,27,499424,3,0 ,14,27,499432,6,0 ,14,27,499440,6,0 ,14,27,499448,6,0 ,14,27,499456,6,0 ,20,18380,7839490,56,0 ,45,15153,4693764,16,0 ,17,923,7839492,40,0 ,17,923,7315204,24,0 ,45,15153,4169476,24,0 ,14,27,499464,6,0 ,14,27,499472,6,0 ,14,27,499480,6,0 ,14,27,499488,6,0 ,14,27,499496,6,0 ,14,27,499504,6,0 ,14,27,499512,6,0 ,14,27,499520,3,0 ,20,24310,23043906,44,0 ,20,23470,20946754,24,0 ,17,923,9412420,48,0 ,17,923,6790980,24,0 ,44,15152,499524,24,0 ,17,923,8363844,32,0 ,14,27,499528,5,0 ,14,27,499536,3,0 ,14,27,499544,6,0 ,14,27,499552,6,0 ,20,16601,3645282,12,0 ,20,15553,1023842,236,0 ,14,27,499560,3,0 ,14,27,499568,6,0 ,14,27,499576,6,0 ,14,27,499584,6,0 ,20,21992,17801090,104,0 ,45,15153,5218180,240,0 ,45,15153,4693892,40,0 ,14,27,499592,6,0 ,14,27,499600,3,0 ,14,27,499608,6,0 ,14,27,499616,3,0 ,20,17951,6791074,12,0 ,20,17705,6266786,12,0 ,14,27,499624,5,0 ,14,27,499632,3,0 ,14,27,499640,6,0 ,14,27,499648,6,0 ,20,21943,17276866,184,0 ,20,16602,3645378,64,0 ,20,20212,12033986,4932,0 ,45,15153,4169668,16,0 ,17,923,7315396,64,0 ,14,27,499656,3,0 ,14,27,499664,6,0 ,14,27,499672,3,0 ,14,27,499680,6,0 ,14,27,499688,6,0 ,14,27,499696,5,0 ,14,27,499704,3,0 ,14,27,499712,6,0 ,20,23471,20946946,80,0 ,20,24848,24616962,356,0 ,20,17706,6266882,12,0 ,20,17952,6791170,12,0 ,17,923,9936900,40,0 ,17,923,6791172,24,0 ,44,15152,499716,24,0 ,44,15152,3121156,24,0 ,14,27,499720,6,0 ,14,27,499728,3,0 ,14,27,499736,6,0 ,14,27,499744,6,0 ,14,27,499752,3,0 ,14,27,499760,6,0 ,14,27,499768,6,0 ,14,27,499776,3,0 ,20,26063,27762754,196,0 ,17,923,8364100,32,0 ,17,923,7839812,48,0 ,44,15152,2596932,16,0 ,45,15153,4169796,16,0 ,14,27,499784,6,0 ,14,27,499792,3,0 ,14,27,499800,6,0 ,14,27,499808,6,0 ,20,17953,6791266,12,0 ,20,17707,6266978,12,0 ,14,27,499816,6,0 ,14,27,499824,3,0 ,14,27,499832,3,0 ,14,27,499840,3,0 ,44,15152,2072708,24,0 ,14,27,499848,3,0 ,14,27,499856,3,0 ,14,27,499864,3,0 ,14,27,499872,3,0 ,20,24311,23044258,24,0 ,14,27,499880,3,0 ,14,27,499888,3,0 ,14,27,499896,3,0 ,14,27,499904,3,0 ,20,18381,7839938,196,0 ,20,17083,4694210,112,0 ,20,17708,6267074,12,0 ,20,17954,6791362,180,0 ,17,923,9412804,56,0 ,17,923,6791364,32,0 ,44,15152,2597060,16,0 ,44,15152,499908,56,0 ,44,15152,3121348,32,0 ,45,15153,4169924,16,0 ,45,15153,4694212,40,0 ,17,923,8888516,24,0 ,14,27,499912,3,0 ,14,27,499920,3,0 ,14,27,499928,3,0 ,14,27,499936,3,0 ,14,27,499944,3,0 ,14,27,499952,3,0 ,14,27,499960,3,0 ,14,27,499968,3,0 ,44,15152,3645700,40,0 ,14,27,499976,3,0 ,14,27,499984,3,0 ,14,27,499992,3,0 ,14,27,500000,3,0 ,20,20686,13607202,548,0 ,20,17709,6267170,12,0 ,20,19877,10985762,536,0 ,14,27,500008,3,0 ,14,27,500016,3,0 ,14,27,500024,3,0 ,14,27,500032,3,0 ,20,21144,15704386,1284,0 ,17,923,9937220,40,0 ,44,15152,2597188,16,0 ,44,15152,2072900,56,0 ,45,15153,4170052,24,0 ,17,923,8364356,32,0 ,14,27,500040,3,0 ,14,27,500048,6,0 ,14,27,500056,3,0 ,14,27,500064,6,0 ,20,24312,23044450,24,0 ,14,27,500072,3,0 ,14,27,500080,6,0 ,14,27,500088,3,0 ,14,27,500096,5,0 ,20,17710,6267266,12,0 ,17,923,8888708,72,0 ,14,27,500104,3,0 ,14,27,500112,6,0 ,14,27,500120,3,0 ,14,27,500128,6,0 ,20,26547,29335970,112,0 ,14,27,500136,6,0 ,14,27,500144,5,0 ,14,27,500152,6,0 ,14,27,500160,6,0 ,20,16603,3645890,96,0 ,44,15152,3121604,16,0 ,17,923,7840196,40,0 ,17,923,7315908,24,0 ,17,923,6791620,40,0 ,44,15152,2597316,16,0 ,14,27,500168,3,0 ,14,27,500176,6,0 ,14,27,500184,6,0 ,14,27,500192,6,0 ,20,20133,11510242,60,0 ,20,17711,6267362,120,0 ,14,27,500200,6,0 ,14,27,500208,6,0 ,14,27,500216,6,0 ,14,27,500224,6,0 ,20,17494,5743106,216,0 ,20,25646,26714626,48,0 ,45,15153,4694532,48,0 ,45,15153,4170244,32,0 ,14,27,500232,6,0 ,14,27,500240,3,0 ,14,27,500248,5,0 ,14,27,500256,5,0 ,20,24313,23044642,300,0 ,14,27,500264,6,0 ,14,27,500272,3,0 ,14,27,500280,5,0 ,14,27,500288,6,0 ,17,923,8364612,32,0 ,44,15152,2597444,16,0 ,44,15152,3121732,16,0 ,44,15152,3646020,80,0 ,14,27,500296,6,0 ,14,27,500304,6,0 ,14,27,500312,6,0 ,14,27,500320,6,0 ,14,27,500328,3,0 ,14,27,500336,6,0 ,14,27,500344,3,0 ,14,27,500352,6,0 ,20,23472,20947586,624,0 ,20,23247,20423298,172,0 ,17,923,9937540,32,0 ,17,923,7316100,24,0 ,44,15152,500356,64,0 ,44,15152,1024644,24,0 ,17,923,9413252,48,0 ,14,27,500360,6,0 ,14,27,500368,6,0 ,14,27,500376,6,0 ,14,27,500384,6,0 ,14,27,500392,6,0 ,14,27,500400,6,0 ,14,27,500408,6,0 ,14,27,500416,6,0 ,20,24136,22520514,112,0 ,20,21993,17801922,160,0 ,44,15152,3121860,16,0 ,44,15152,2597572,16,0 ,14,27,500424,6,0 ,14,27,500432,3,0 ,14,27,500440,6,0 ,14,27,500448,6,0 ,14,27,500456,3,0 ,14,27,500464,6,0 ,14,27,500472,3,0 ,14,27,500480,6,0 ,45,15153,4170500,24,0 ,17,923,7840516,48,0 ,17,923,6791940,56,0 ,44,15152,2073348,56,0 ,14,27,500488,3,0 ,14,27,500496,6,0 ,14,27,500504,6,0 ,14,27,500512,3,0 ,14,27,500520,6,0 ,14,27,500528,6,0 ,14,27,500536,5,0 ,14,27,500544,3,0 ,20,23878,21996354,288,0 ,17,923,8364868,40,0 ,17,923,7316292,24,0 ,44,15152,2597700,16,0 ,44,15152,1024836,24,0 ,44,15152,3121988,24,0 ,14,27,500552,6,0 ,14,27,500560,6,0 ,14,27,500568,6,0 ,14,27,500576,6,0 ,14,27,500584,5,0 ,14,27,500592,5,0 ,14,27,500600,6,0 ,14,27,500608,6,0 ,20,25647,26715010,480,0 ,17,923,9937796,24,0 ,45,15153,4694916,40,0 ,14,27,500616,5,0 ,14,27,500624,6,0 ,14,27,500632,6,0 ,14,27,500640,5,0 ,14,27,500648,3,0 ,14,27,500656,6,0 ,14,27,500664,5,0 ,14,27,500672,6,0 ,20,22674,19375042,108,0 ,20,20134,11510722,232,0 ,20,21734,16753602,272,0 ,17,923,8889284,32,0 ,44,15152,2597828,16,0 ,45,15153,4170692,16,0 ,14,27,500680,6,0 ,14,27,500688,6,0 ,14,27,500696,6,0 ,14,27,500704,6,0 ,14,27,500712,3,0 ,14,27,500720,6,0 ,14,27,500728,6,0 ,14,27,500736,6,0 ,17,923,9413636,24,0 ,17,923,7316484,40,0 ,44,15152,1025028,56,0 ,44,15152,3122180,16,0 ,14,27,500744,3,0 ,14,27,500752,6,0 ,14,27,500760,6,0 ,14,27,500768,5,0 ,14,27,500776,6,0 ,14,27,500784,6,0 ,14,27,500792,3,0 ,14,27,500800,6,0 ,20,17084,4695106,1864,0 ,17,923,9937988,24,0 ,44,15152,2597956,80,0 ,45,15153,4170820,16,0 ,14,27,500808,3,0 ,14,27,500816,6,0 ,14,27,500824,3,0 ,14,27,500832,6,0 ,14,27,500840,3,0 ,14,27,500848,6,0 ,14,27,500856,6,0 ,14,27,500864,6,0 ,17,923,8365188,24,0 ,17,923,7840900,40,0 ,44,15152,500868,24,0 ,44,15152,3122308,16,0 ,14,27,500872,6,0 ,14,27,500880,5,0 ,14,27,500888,6,0 ,14,27,500896,6,0 ,20,26375,28812450,444,0 ,14,27,500904,6,0 ,14,27,500912,6,0 ,14,27,500920,6,0 ,14,27,500928,3,0 ,20,16604,3646658,88,0 ,17,923,9413828,64,0 ,17,923,6792388,40,0 ,44,15152,2073796,24,0 ,44,15152,3646660,24,0 ,45,15153,4170948,32,0 ,45,15153,4695236,720,0 ,17,923,8889540,40,0 ,14,27,500936,6,0 ,14,27,500944,6,0 ,14,27,500952,6,0 ,14,27,500960,6,0 ,20,26233,28288226,112,0 ,14,27,500968,6,0 ,14,27,500976,6,0 ,14,27,500984,5,0 ,14,27,500992,5,0 ,17,923,9938180,88,0 ,44,15152,3122436,16,0 ,14,27,501000,6,0 ,14,27,501008,5,0 ,14,27,501016,6,0 ,14,27,501024,6,0 ,20,26548,29336866,88,0 ,14,27,501032,3,0 ,14,27,501040,6,0 ,14,27,501048,6,0 ,14,27,501056,3,0 ,17,923,8365380,64,0 ,17,923,7316804,32,0 ,44,15152,501060,32,0 ,14,27,501064,6,0 ,14,27,501072,5,0 ,14,27,501080,6,0 ,14,27,501088,6,0 ,14,27,501096,6,0 ,14,27,501104,6,0 ,14,27,501112,6,0 ,14,27,501120,6,0 ,20,21944,17278338,1292,0 ,44,15152,3646852,120,0 ,44,15152,2073988,64,0 ,44,15152,3122564,16,0 ,14,27,501128,6,0 ,14,27,501136,6,0 ,14,27,501144,6,0 ,14,27,501152,6,0 ,20,17712,6268322,120,0 ,20,24675,24094114,256,0 ,14,27,501160,6,0 ,14,27,501168,6,0 ,14,27,501176,6,0 ,14,27,501184,6,0 ,45,15153,4171204,64,0 ,17,923,7841220,56,0 ,44,15152,1025476,96,0 ,14,27,501192,6,0 ,14,27,501200,6,0 ,14,27,501208,6,0 ,14,27,501216,6,0 ,14,27,501224,6,0 ,14,27,501232,6,0 ,14,27,501240,5,0 ,14,27,501248,5,0 ,17,923,8889860,56,0 ,17,923,6792708,24,0 ,44,15152,3122692,24,0 ,14,27,501256,6,0 ,14,27,501264,6,0 ,14,27,501272,6,0 ,14,27,501280,6,0 ,14,27,501288,3,0 ,14,27,501296,6,0 ,14,27,501304,5,0 ,14,27,501312,3,0 ,20,24137,22521410,108,0 ,44,15152,501316,32,0 ,17,923,7317060,40,0 ,14,27,501320,6,0 ,14,27,501328,6,0 ,14,27,501336,3,0 ,14,27,501344,6,0 ,20,17955,6792802,204,0 ,20,26064,27764322,536,0 ,14,27,501352,6,0 ,14,27,501360,6,0 ,14,27,501368,6,0 ,14,27,501376,3,0 ,20,20854,14132866,68,0 ,14,27,501384,6,0 ,14,27,501392,6,0 ,14,27,501400,3,0 ,14,27,501408,6,0 ,14,27,501416,6,0 ,14,27,501424,6,0 ,14,27,501432,6,0 ,14,27,501440,5,0 ,20,15554,1025730,180,0 ,17,923,9414340,40,0 ,17,923,6792900,24,0 ,44,15152,2598596,16,0 ,44,15152,3122884,24,0 ,14,27,501448,6,0 ,14,27,501456,3,0 ,14,27,501464,6,0 ,14,27,501472,6,0 ,20,18382,7841506,332,0 ,14,27,501480,6,0 ,14,27,501488,6,0 ,14,27,501496,3,0 ,14,27,501504,6,0 ,20,22221,18327298,732,0 ,45,15153,5220100,176,0 ,14,27,501512,6,0 ,14,27,501520,3,0 ,14,27,501528,6,0 ,14,27,501536,6,0 ,20,22675,19375906,108,0 ,20,16889,4171554,384,0 ,14,27,501544,3,0 ,14,27,501552,6,0 ,14,27,501560,6,0 ,14,27,501568,6,0 ,17,923,8365892,80,0 ,44,15152,2598724,40,0 ,44,15152,501572,40,0 ,14,27,501576,6,0 ,14,27,501584,6,0 ,14,27,501592,6,0 ,14,27,501600,6,0 ,14,27,501608,6,0 ,14,27,501616,6,0 ,14,27,501624,6,0 ,14,27,501632,6,0 ,20,16605,3647362,240,0 ,44,15152,3123076,16,0 ,17,923,7841668,40,0 ,17,923,7317380,32,0 ,17,923,6793092,24,0 ,44,15152,2074500,24,0 ,14,27,501640,5,0 ,14,27,501648,3,0 ,14,27,501656,6,0 ,14,27,501664,6,0 ,14,27,501672,3,0 ,14,27,501680,6,0 ,14,27,501688,6,0 ,14,27,501696,3,0 ,20,21994,17803202,120,0 ,17,923,9938884,40,0 ,44,15152,1550276,24,0 ,45,15153,4171716,24,0 ,17,923,8890308,40,0 ,14,27,501704,5,0 ,14,27,501712,5,0 ,14,27,501720,3,0 ,14,27,501728,6,0 ,20,23248,20424674,336,0 ,20,26549,29337570,116,0 ,14,27,501736,6,0 ,14,27,501744,3,0 ,14,27,501752,6,0 ,14,27,501760,6,0 ,17,923,9414660,24,0 ,44,15152,3123204,40,0 ,14,27,501768,3,0 ,14,27,501776,6,0 ,14,27,501784,6,0 ,14,27,501792,6,0 ,14,27,501800,6,0 ,14,27,501808,6,0 ,14,27,501816,6,0 ,14,27,501824,6,0 ,44,15152,2074692,56,0 ,17,923,6793284,40,0 ,14,27,501832,6,0 ,14,27,501840,5,0 ,14,27,501848,6,0 ,14,27,501856,5,0 ,20,26234,28289122,276,0 ,14,27,501864,6,0 ,14,27,501872,6,0 ,14,27,501880,6,0 ,14,27,501888,6,0 ,45,15153,4171908,24,0 ,17,923,7317636,32,0 ,44,15152,2599044,88,0 ,44,15152,1550468,72,0 ,44,15152,501892,40,0 ,14,27,501896,5,0 ,14,27,501904,6,0 ,14,27,501912,6,0 ,14,27,501920,5,0 ,20,20855,14133410,864,0 ,14,27,501928,6,0 ,14,27,501936,6,0 ,14,27,501944,5,0 ,14,27,501952,6,0 ,20,17495,5744834,24,0 ,17,923,9414852,64,0 ,17,923,7841988,24,0 ,44,15152,1026244,64,0 ,14,27,501960,5,0 ,14,27,501968,5,0 ,14,27,501976,3,0 ,14,27,501984,6,0 ,14,27,501992,3,0 ,14,27,502000,6,0 ,14,27,502008,6,0 ,14,27,502016,6,0 ,17,923,9939204,32,0 ,17,923,8890628,64,0 ,14,27,502024,5,0 ,14,27,502032,3,0 ,14,27,502040,6,0 ,14,27,502048,6,0 ,20,17287,5220642,184,0 ,14,27,502056,3,0 ,14,27,502064,6,0 ,14,27,502072,5,0 ,14,27,502080,3,0 ,20,22938,19900738,648,0 ,45,15153,4172100,32,0 ,44,15152,3123524,24,0 ,44,15152,3647812,64,0 ,14,27,502088,6,0 ,14,27,502096,3,0 ,14,27,502104,6,0 ,14,27,502112,6,0 ,20,17713,6269282,12,0 ,14,27,502120,5,0 ,14,27,502128,6,0 ,14,27,502136,3,0 ,14,27,502144,6,0 ,20,17496,5745026,516,0 ,17,923,6793604,32,0 ,17,923,7842180,56,0 ,17,923,7317892,32,0 ,14,27,502152,3,0 ,14,27,502160,6,0 ,14,27,502168,3,0 ,14,27,502176,6,0 ,20,24138,22522274,136,0 ,14,27,502184,6,0 ,14,27,502192,6,0 ,14,27,502200,3,0 ,14,27,502208,6,0 ,20,17714,6269378,3448,0 ,17,923,8366532,96,0 ,44,15152,502212,40,0 ,14,27,502216,6,0 ,14,27,502224,6,0 ,14,27,502232,6,0 ,14,27,502240,5,0 ,20,20436,13085154,160,0 ,14,27,502248,6,0 ,14,27,502256,6,0 ,14,27,502264,6,0 ,14,27,502272,6,0 ,17,923,9939460,24,0 ,44,15152,2075140,64,0 ,44,15152,3123716,24,0 ,14,27,502280,6,0 ,14,27,502288,6,0 ,14,27,502296,6,0 ,14,27,502304,6,0 ,14,27,502312,3,0 ,14,27,502320,6,0 ,14,27,502328,6,0 ,14,27,502336,6,0 ,45,15153,4172356,16,0 ,14,27,502344,6,0 ,14,27,502352,6,0 ,14,27,502360,6,0 ,14,27,502368,3,0 ,14,27,502376,5,0 ,14,27,502384,3,0 ,14,27,502392,6,0 ,14,27,502400,5,0 ,20,22676,19376770,336,0 ,17,923,6793860,32,0 ,17,923,7318148,24,0 ,14,27,502408,3,0 ,14,27,502416,6,0 ,14,27,502424,6,0 ,14,27,502432,5,0 ,14,27,502440,3,0 ,14,27,502448,6,0 ,14,27,502456,5,0 ,14,27,502464,3,0 ,17,923,9939652,32,0 ,44,15152,1551044,32,0 ,44,15152,1026756,16,0 ,44,15152,3123908,24,0 ,45,15153,4172484,32,0 ,17,923,9415364,32,0 ,14,27,502472,6,0 ,14,27,502480,6,0 ,14,27,502488,6,0 ,14,27,502496,3,0 ,14,27,502504,6,0 ,14,27,502512,6,0 ,14,27,502520,6,0 ,14,27,502528,3,0 ,20,22468,18852610,940,0 ,20,20135,11512578,460,0 ,17,923,8891140,24,0 ,44,15152,502532,40,0 ,14,27,502536,6,0 ,14,27,502544,3,0 ,14,27,502552,5,0 ,14,27,502560,5,0 ,20,24849,24619810,428,0 ,14,27,502568,3,0 ,14,27,502576,6,0 ,14,27,502584,3,0 ,14,27,502592,6,0 ,44,15152,3648324,48,0 ,17,923,7842628,56,0 ,17,923,7318340,32,0 ,44,15152,2599748,88,0 ,44,15152,1026884,48,0 ,14,27,502600,3,0 ,14,27,502608,5,0 ,14,27,502616,6,0 ,14,27,502624,6,0 ,20,25827,27241314,268,0 ,14,27,502632,3,0 ,14,27,502640,6,0 ,14,27,502648,3,0 ,14,27,502656,5,0 ,20,24314,23047042,376,0 ,20,26550,29338498,116,0 ,20,21995,17804162,84,0 ,44,15152,3124100,24,0 ,17,923,6794116,40,0 ,14,27,502664,5,0 ,14,27,502672,3,0 ,14,27,502680,6,0 ,14,27,502688,6,0 ,14,27,502696,3,0 ,14,27,502704,5,0 ,14,27,502712,6,0 ,14,27,502720,6,0 ,17,923,9939908,24,0 ,44,15152,1551300,24,0 ,45,15153,4172740,16,0 ,17,923,8891332,72,0 ,17,923,9415620,24,0 ,14,27,502728,3,0 ,14,27,502736,6,0 ,14,27,502744,3,0 ,14,27,502752,6,0 ,14,27,502760,6,0 ,14,27,502768,3,0 ,14,27,502776,6,0 ,14,27,502784,6,0 ,44,15152,2075652,24,0 ,14,27,502792,3,0 ,14,27,502800,6,0 ,14,27,502808,6,0 ,14,27,502816,6,0 ,14,27,502824,3,0 ,14,27,502832,6,0 ,14,27,502840,3,0 ,14,27,502848,6,0 ,20,23879,21998658,224,0 ,20,21735,16755778,260,0 ,45,15153,4172868,16,0 ,17,923,7318596,32,0 ,44,15152,502852,24,0 ,44,15152,3124292,104,0 ,14,27,502856,6,0 ,14,27,502864,3,0 ,14,27,502872,6,0 ,14,27,502880,6,0 ,20,15555,1027170,812,0 ,14,27,502888,3,0 ,14,27,502896,6,0 ,14,27,502904,3,0 ,14,27,502912,6,0 ,20,21483,16231554,136,0 ,17,923,9940100,16,0 ,44,15152,1551492,24,0 ,45,15153,5221508,200,0 ,17,923,9415812,32,0 ,14,27,502920,3,0 ,14,27,502928,6,0 ,14,27,502936,3,0 ,14,27,502944,6,0 ,20,25080,25144482,420,0 ,14,27,502952,3,0 ,14,27,502960,6,0 ,14,27,502968,3,0 ,14,27,502976,6,0 ,20,17956,6794434,188,0 ,20,25299,25668802,344,0 ,17,923,8367300,32,0 ,17,923,6794436,40,0 ,44,15152,2075844,72,0 ,44,15152,1027268,56,0 ,44,15152,3648708,24,0 ,45,15153,4172996,24,0 ,14,27,502984,3,0 ,14,27,502992,6,0 ,14,27,503000,6,0 ,14,27,503008,6,0 ,14,27,503016,6,0 ,14,27,503024,3,0 ,14,27,503032,6,0 ,14,27,503040,6,0 ,17,923,9940228,16,0 ,17,923,7843076,24,0 ,44,15152,503044,24,0 ,14,27,503048,6,0 ,14,27,503056,3,0 ,14,27,503064,5,0 ,14,27,503072,3,0 ,14,27,503080,6,0 ,14,27,503088,3,0 ,14,27,503096,6,0 ,14,27,503104,6,0 ,44,15152,1551684,56,0 ,17,923,7318852,32,0 ,14,27,503112,6,0 ,14,27,503120,3,0 ,14,27,503128,6,0 ,14,27,503136,3,0 ,14,27,503144,6,0 ,14,27,503152,3,0 ,14,27,503160,6,0 ,14,27,503168,6,0 ,17,923,9940356,24,0 ,44,15152,3648900,136,0 ,45,15153,4173188,24,0 ,17,923,9416068,32,0 ,14,27,503176,6,0 ,14,27,503184,3,0 ,14,27,503192,6,0 ,14,27,503200,3,0 ,20,24676,24096162,72,0 ,14,27,503208,6,0 ,14,27,503216,3,0 ,14,27,503224,6,0 ,14,27,503232,3,0 ,17,923,8367556,48,0 ,17,923,7843268,32,0 ,44,15152,503236,32,0 ,14,27,503240,6,0 ,14,27,503248,6,0 ,14,27,503256,6,0 ,14,27,503264,3,0 ,20,24139,22523362,108,0 ,14,27,503272,6,0 ,14,27,503280,6,0 ,14,27,503288,3,0 ,14,27,503296,6,0 ,17,923,8891908,32,0 ,17,923,6794756,32,0 ,44,15152,2600452,48,0 ,14,27,503304,6,0 ,14,27,503312,3,0 ,14,27,503320,5,0 ,14,27,503328,6,0 ,20,21996,17804834,372,0 ,14,27,503336,3,0 ,14,27,503344,5,0 ,14,27,503352,6,0 ,14,27,503360,3,0 ,17,923,9940548,24,0 ,17,923,7319108,40,0 ,45,15153,4173380,40,0 ,14,27,503368,6,0 ,14,27,503376,6,0 ,14,27,503384,6,0 ,14,27,503392,3,0 ,14,27,503400,6,0 ,14,27,503408,3,0 ,14,27,503416,6,0 ,14,27,503424,3,0 ,17,923,9416324,72,0 ,44,15152,1027716,48,0 ,14,27,503432,6,0 ,14,27,503440,3,0 ,14,27,503448,6,0 ,14,27,503456,3,0 ,14,27,503464,6,0 ,14,27,503472,6,0 ,14,27,503480,3,0 ,14,27,503488,6,0 ,44,15152,503492,24,0 ,17,923,7843524,32,0 ,14,27,503496,6,0 ,14,27,503504,3,0 ,14,27,503512,6,0 ,14,27,503520,3,0 ,20,20437,13086434,304,0 ,20,17288,5222114,284,0 ,14,27,503528,5,0 ,14,27,503536,6,0 ,14,27,503544,6,0 ,14,27,503552,6,0 ,20,16606,3649282,240,0 ,17,923,9940740,32,0 ,17,923,6795012,24,0 ,44,15152,2076420,24,0 ,44,15152,1552132,16,0 ,17,923,8892164,40,0 ,14,27,503560,6,0 ,14,27,503568,6,0 ,14,27,503576,3,0 ,14,27,503584,6,0 ,20,26551,29339426,144,0 ,14,27,503592,6,0 ,14,27,503600,6,0 ,14,27,503608,6,0 ,14,27,503616,6,0 ,17,923,8367940,48,0 ,14,27,503624,6,0 ,14,27,503632,3,0 ,14,27,503640,6,0 ,14,27,503648,5,0 ,14,27,503656,6,0 ,14,27,503664,6,0 ,14,27,503672,3,0 ,14,27,503680,5,0 ,45,15153,4173700,56,0 ,17,923,7319428,32,0 ,44,15152,2600836,48,0 ,44,15152,1552260,32,0 ,44,15152,503684,32,0 ,44,15152,3125124,24,0 ,14,27,503688,6,0 ,14,27,503696,6,0 ,14,27,503704,5,0 ,14,27,503712,6,0 ,14,27,503720,3,0 ,14,27,503728,6,0 ,14,27,503736,6,0 ,14,27,503744,3,0 ,44,15152,2076612,64,0 ,17,923,7843780,56,0 ,17,923,6795204,48,0 ,14,27,503752,6,0 ,14,27,503760,6,0 ,14,27,503768,6,0 ,14,27,503776,3,0 ,20,18866,8892386,396,0 ,20,24677,24096738,644,0 ,14,27,503784,6,0 ,14,27,503792,6,0 ,14,27,503800,3,0 ,14,27,503808,3,0 ,17,923,9940996,32,0 ,44,15152,1028100,288,0 ,14,27,503816,6,0 ,14,27,503824,3,0 ,14,27,503832,6,0 ,14,27,503840,3,0 ,14,27,503848,6,0 ,14,27,503856,6,0 ,14,27,503864,6,0 ,14,27,503872,5,0 ,17,923,8892484,56,0 ,44,15152,3125316,40,0 ,14,27,503880,6,0 ,14,27,503888,6,0 ,14,27,503896,3,0 ,14,27,503904,6,0 ,14,27,503912,6,0 ,14,27,503920,6,0 ,14,27,503928,6,0 ,14,27,503936,5,0 ,44,15152,503940,112,0 ,17,923,7319684,40,0 ,44,15152,1552516,16,0 ,14,27,503944,6,0 ,14,27,503952,6,0 ,14,27,503960,6,0 ,14,27,503968,6,0 ,14,27,503976,6,0 ,14,27,503984,6,0 ,14,27,503992,6,0 ,14,27,504000,5,0 ,20,21484,16232642,288,0 ,20,16014,2076866,68,0 ,17,923,9416900,40,0 ,17,923,8368324,32,0 ,14,27,504008,6,0 ,14,27,504016,5,0 ,14,27,504024,6,0 ,14,27,504032,5,0 ,14,27,504040,6,0 ,14,27,504048,5,0 ,14,27,504056,3,0 ,14,27,504064,6,0 ,20,26235,28291330,120,0 ,17,923,9941252,24,0 ,44,15152,2601220,40,0 ,44,15152,1552644,16,0 ,14,27,504072,6,0 ,14,27,504080,3,0 ,14,27,504088,6,0 ,14,27,504096,6,0 ,14,27,504104,6,0 ,14,27,504112,3,0 ,14,27,504120,6,0 ,14,27,504128,3,0 ,20,24140,22524226,76,0 ,20,18383,7844162,912,0 ,45,15153,4174148,32,0 ,17,923,6795588,48,0 ,14,27,504136,6,0 ,14,27,504144,6,0 ,14,27,504152,6,0 ,14,27,504160,6,0 ,14,27,504168,6,0 ,14,27,504176,6,0 ,14,27,504184,6,0 ,14,27,504192,6,0 ,44,15152,3125636,32,0 ,17,923,7844228,56,0 ,44,15152,1552772,40,0 ,14,27,504200,6,0 ,14,27,504208,6,0 ,14,27,504216,3,0 ,14,27,504224,6,0 ,14,27,504232,3,0 ,14,27,504240,6,0 ,14,27,504248,3,0 ,14,27,504256,6,0 ,17,923,9941444,32,0 ,17,923,7320004,40,0 ,44,15152,2077124,72,0 ,44,15152,3649988,32,0 ,17,923,8368580,32,0 ,14,27,504264,6,0 ,14,27,504272,3,0 ,14,27,504280,6,0 ,14,27,504288,3,0 ,20,19878,10990050,80,0 ,14,27,504296,6,0 ,14,27,504304,3,0 ,14,27,504312,6,0 ,14,27,504320,3,0 ,17,923,9417220,24,0 ,17,923,8892932,40,0 ,14,27,504328,6,0 ,14,27,504336,3,0 ,14,27,504344,5,0 ,14,27,504352,3,0 ,14,27,504360,6,0 ,14,27,504368,6,0 ,14,27,504376,6,0 ,14,27,504384,6,0 ,20,20687,13611586,76,0 ,45,15153,4174404,16,0 ,44,15152,2601540,96,0 ,14,27,504392,6,0 ,14,27,504400,6,0 ,14,27,504408,6,0 ,14,27,504416,6,0 ,20,23249,20427362,288,0 ,14,27,504424,6,0 ,14,27,504432,6,0 ,14,27,504440,5,0 ,14,27,504448,6,0 ,20,16225,3125890,336,0 ,20,26376,28816002,2280,0 ,20,25648,26718850,156,0 ,44,15152,3125892,24,0 ,14,27,504456,6,0 ,14,27,504464,5,0 ,14,27,504472,6,0 ,14,27,504480,6,0 ,20,17957,6795938,340,0 ,14,27,504488,5,0 ,14,27,504496,6,0 ,14,27,504504,6,0 ,14,27,504512,6,0 ,17,923,9941700,32,0 ,17,923,6795972,32,0 ,44,15152,1553092,16,0 ,44,15152,3650244,24,0 ,45,15153,4174532,88,0 ,45,15153,5223108,128,0 ,17,923,8368836,24,0 ,17,923,9417412,56,0 ,14,27,504520,6,0 ,14,27,504528,6,0 ,14,27,504536,3,0 ,14,27,504544,6,0 ,20,16015,2077410,48,0 ,14,27,504552,6,0 ,14,27,504560,3,0 ,14,27,504568,6,0 ,14,27,504576,3,0 ,17,923,7320324,32,0 ,14,27,504584,6,0 ,14,27,504592,3,0 ,14,27,504600,6,0 ,14,27,504608,3,0 ,20,16890,4174626,12,0 ,14,27,504616,6,0 ,14,27,504624,3,0 ,14,27,504632,6,0 ,14,27,504640,3,0 ,20,23880,22000450,560,0 ,17,923,8893252,64,0 ,17,923,7844676,48,0 ,44,15152,1553220,48,0 ,44,15152,3126084,40,0 ,14,27,504648,6,0 ,14,27,504656,3,0 ,14,27,504664,6,0 ,14,27,504672,3,0 ,14,27,504680,6,0 ,14,27,504688,3,0 ,14,27,504696,6,0 ,14,27,504704,3,0 ,20,16891,4174722,204,0 ,17,923,8369028,40,0 ,44,15152,3650436,24,0 ,14,27,504712,6,0 ,14,27,504720,3,0 ,14,27,504728,6,0 ,14,27,504736,6,0 ,20,24141,22524834,80,0 ,20,26552,29340578,148,0 ,14,27,504744,3,0 ,14,27,504752,3,0 ,14,27,504760,6,0 ,14,27,504768,6,0 ,20,25828,27243458,372,0 ,17,923,9941956,32,0 ,17,923,6796228,40,0 ,14,27,504776,3,0 ,14,27,504784,5,0 ,14,27,504792,6,0 ,14,27,504800,6,0 ,14,27,504808,6,0 ,14,27,504816,3,0 ,14,27,504824,3,0 ,14,27,504832,6,0 ,44,15152,504836,32,0 ,17,923,7320580,32,0 ,44,15152,2077700,24,0 ,14,27,504840,5,0 ,14,27,504848,6,0 ,14,27,504856,3,0 ,14,27,504864,3,0 ,14,27,504872,6,0 ,14,27,504880,6,0 ,14,27,504888,5,0 ,14,27,504896,3,0 ,44,15152,3650628,32,0 ,14,27,504904,6,0 ,14,27,504912,6,0 ,14,27,504920,6,0 ,14,27,504928,6,0 ,20,21736,16757858,156,0 ,20,16016,2077794,12,0 ,20,19879,10990690,128,0 ,14,27,504936,3,0 ,14,27,504944,3,0 ,14,27,504952,6,0 ,14,27,504960,5,0 ,17,923,9417860,32,0 ,44,15152,3126404,40,0 ,14,27,504968,3,0 ,14,27,504976,6,0 ,14,27,504984,6,0 ,14,27,504992,3,0 ,20,20688,13612194,24,0 ,20,19303,9942178,280,0 ,14,27,505000,3,0 ,14,27,505008,5,0 ,14,27,505016,6,0 ,14,27,505024,3,0 ,20,16017,2077890,96,0 ,20,26236,28292290,100,0 ,17,923,9942212,24,0 ,17,923,7845060,56,0 ,44,15152,2077892,64,0 ,44,15152,1553604,32,0 ,17,923,8369348,24,0 ,14,27,505032,6,0 ,14,27,505040,6,0 ,14,27,505048,6,0 ,14,27,505056,3,0 ,14,27,505064,6,0 ,14,27,505072,6,0 ,14,27,505080,6,0 ,14,27,505088,6,0 ,20,22677,19379458,2908,0 ,44,15152,505092,40,0 ,17,923,7320836,32,0 ,17,923,6796548,40,0 ,14,27,505096,3,0 ,14,27,505104,3,0 ,14,27,505112,5,0 ,14,27,505120,6,0 ,14,27,505128,6,0 ,14,27,505136,3,0 ,14,27,505144,6,0 ,14,27,505152,6,0 ,17,923,8893764,24,0 ,44,15152,2602308,80,0 ,44,15152,3650884,32,0 ,14,27,505160,6,0 ,14,27,505168,6,0 ,14,27,505176,3,0 ,14,27,505184,6,0 ,20,20689,13612386,24,0 ,14,27,505192,6,0 ,14,27,505200,5,0 ,14,27,505208,6,0 ,14,27,505216,6,0 ,17,923,9942404,32,0 ,45,15153,4175236,48,0 ,17,923,8369540,40,0 ,17,923,9418116,32,0 ,14,27,505224,6,0 ,14,27,505232,6,0 ,14,27,505240,6,0 ,14,27,505248,6,0 ,14,27,505256,3,0 ,14,27,505264,6,0 ,14,27,505272,5,0 ,14,27,505280,3,0 ,44,15152,3126724,40,0 ,44,15152,1553860,16,0 ,14,27,505288,6,0 ,14,27,505296,3,0 ,14,27,505304,6,0 ,14,27,505312,6,0 ,14,27,505320,3,0 ,14,27,505328,3,0 ,14,27,505336,6,0 ,14,27,505344,3,0 ,20,23473,20952578,1224,0 ,17,923,8893956,72,0 ,17,923,7321092,40,0 ,14,27,505352,6,0 ,14,27,505360,3,0 ,14,27,505368,6,0 ,14,27,505376,3,0 ,20,24142,22525474,512,0 ,20,20690,13612578,24,0 ,14,27,505384,6,0 ,14,27,505392,6,0 ,14,27,505400,6,0 ,14,27,505408,3,0 ,44,15152,3651140,40,0 ,17,923,6796868,32,0 ,44,15152,1553988,72,0 ,44,15152,505412,112,0 ,14,27,505416,6,0 ,14,27,505424,3,0 ,14,27,505432,6,0 ,14,27,505440,6,0 ,14,27,505448,3,0 ,14,27,505456,3,0 ,14,27,505464,5,0 ,14,27,505472,5,0 ,20,16607,3651202,116,0 ,17,923,9942660,40,0 ,17,923,7845508,40,0 ,17,923,9418372,24,0 ,14,27,505480,6,0 ,14,27,505488,3,0 ,14,27,505496,6,0 ,14,27,505504,3,0 ,14,27,505512,6,0 ,14,27,505520,3,0 ,14,27,505528,6,0 ,14,27,505536,3,0 ,17,923,8369860,40,0 ,44,15152,2078404,24,0 ,45,15153,5224132,16,0 ,14,27,505544,6,0 ,14,27,505552,3,0 ,14,27,505560,6,0 ,14,27,505568,3,0 ,20,20691,13612770,152,0 ,14,27,505576,5,0 ,14,27,505584,3,0 ,14,27,505592,6,0 ,14,27,505600,3,0 ,45,15153,4175620,552,0 ,44,15152,3127044,24,0 ,14,27,505608,6,0 ,14,27,505616,3,0 ,14,27,505624,6,0 ,14,27,505632,3,0 ,20,26065,27768610,52,0 ,14,27,505640,6,0 ,14,27,505648,6,0 ,14,27,505656,3,0 ,14,27,505664,6,0 ,20,24315,23050050,872,0 ,17,923,9418564,56,0 ,17,923,7321412,32,0 ,17,923,6797124,32,0 ,45,15153,5224260,152,0 ,14,27,505672,6,0 ,14,27,505680,6,0 ,14,27,505688,6,0 ,14,27,505696,6,0 ,20,25649,26720098,360,0 ,14,27,505704,3,0 ,14,27,505712,6,0 ,14,27,505720,6,0 ,14,27,505728,6,0 ,20,25300,25671554,288,0 ,44,15152,3651460,24,0 ,44,15152,2078596,56,0 ,14,27,505736,3,0 ,14,27,505744,6,0 ,14,27,505752,3,0 ,14,27,505760,6,0 ,14,27,505768,3,0 ,14,27,505776,6,0 ,14,27,505784,3,0 ,14,27,505792,6,0 ,20,17289,5224386,256,0 ,20,16018,2078658,88,0 ,17,923,9942980,16,0 ,17,923,7845828,40,0 ,44,15152,2602948,80,0 ,44,15152,3127236,112,0 ,14,27,505800,6,0 ,14,27,505808,6,0 ,14,27,505816,6,0 ,14,27,505824,3,0 ,20,26237,28293090,244,0 ,14,27,505832,6,0 ,14,27,505840,3,0 ,14,27,505848,5,0 ,14,27,505856,3,0 ,17,923,8370180,32,0 ,14,27,505864,6,0 ,14,27,505872,3,0 ,14,27,505880,6,0 ,14,27,505888,3,0 ,14,27,505896,6,0 ,14,27,505904,3,0 ,14,27,505912,6,0 ,14,27,505920,5,0 ,20,26553,29341762,140,0 ,17,923,9943108,24,0 ,17,923,7321668,32,0 ,17,923,6797380,40,0 ,44,15152,3651652,64,0 ,17,923,8894532,32,0 ,14,27,505928,3,0 ,14,27,505936,6,0 ,14,27,505944,6,0 ,14,27,505952,6,0 ,20,20438,13088866,80,0 ,20,19880,10991714,508,0 ,14,27,505960,6,0 ,14,27,505968,6,0 ,14,27,505976,5,0 ,14,27,505984,3,0 ,20,24850,24623234,136,0 ,44,15152,1554564,24,0 ,14,27,505992,6,0 ,14,27,506000,3,0 ,14,27,506008,6,0 ,14,27,506016,6,0 ,14,27,506024,6,0 ,14,27,506032,6,0 ,14,27,506040,3,0 ,14,27,506048,6,0 ,20,26066,27769026,52,0 ,14,27,506056,3,0 ,14,27,506064,6,0 ,14,27,506072,3,0 ,14,27,506080,6,0 ,14,27,506088,3,0 ,14,27,506096,6,0 ,14,27,506104,3,0 ,14,27,506112,6,0 ,17,923,9943300,24,0 ,17,923,7846148,48,0 ,44,15152,1030404,24,0 ,17,923,8370436,40,0 ,17,923,9419012,32,0 ,14,27,506120,3,0 ,14,27,506128,6,0 ,14,27,506136,3,0 ,14,27,506144,6,0 ,14,27,506152,6,0 ,14,27,506160,3,0 ,14,27,506168,6,0 ,14,27,506176,3,0 ,20,21737,16759106,12,0 ,17,923,8894788,40,0 ,17,923,7321924,24,0 ,44,15152,2079044,64,0 ,44,15152,1554756,32,0 ,14,27,506184,6,0 ,14,27,506192,6,0 ,14,27,506200,3,0 ,14,27,506208,5,0 ,20,20136,11516258,572,0 ,14,27,506216,3,0 ,14,27,506224,6,0 ,14,27,506232,3,0 ,14,27,506240,6,0 ,17,923,6797700,32,0 ,14,27,506248,3,0 ,14,27,506256,6,0 ,14,27,506264,3,0 ,14,27,506272,6,0 ,20,21738,16759202,48,0 ,20,17497,5749154,204,0 ,14,27,506280,3,0 ,14,27,506288,6,0 ,14,27,506296,6,0 ,14,27,506304,6,0 ,20,21997,17807810,148,0 ,20,25081,25147842,220,0 ,20,21485,16234946,12,0 ,17,923,9943492,32,0 ,44,15152,506308,80,0 ,44,15152,1030596,88,0 ,14,27,506312,3,0 ,14,27,506320,6,0 ,14,27,506328,6,0 ,14,27,506336,6,0 ,20,16892,4176354,148,0 ,14,27,506344,3,0 ,14,27,506352,6,0 ,14,27,506360,3,0 ,14,27,506368,6,0 ,17,923,9419268,32,0 ,17,923,7322116,24,0 ,14,27,506376,6,0 ,14,27,506384,3,0 ,14,27,506392,6,0 ,14,27,506400,6,0 ,20,21486,16235042,12,0 ,20,16608,3652130,252,0 ,14,27,506408,6,0 ,14,27,506416,6,0 ,14,27,506424,6,0 ,14,27,506432,6,0 ,17,923,8370756,40,0 ,44,15152,2603588,40,0 ,44,15152,1555012,40,0 ,44,15152,3652164,48,0 ,14,27,506440,6,0 ,14,27,506448,6,0 ,14,27,506456,6,0 ,14,27,506464,6,0 ,20,26067,27769442,104,0 ,14,27,506472,6,0 ,14,27,506480,5,0 ,14,27,506488,6,0 ,14,27,506496,5,0 ,20,21487,16235138,52,0 ,20,16019,2079362,52,0 ,17,923,8895108,56,0 ,17,923,7846532,32,0 ,17,923,6797956,32,0 ,14,27,506504,6,0 ,14,27,506512,3,0 ,14,27,506520,6,0 ,14,27,506528,6,0 ,14,27,506536,3,0 ,14,27,506544,6,0 ,14,27,506552,6,0 ,14,27,506560,3,0 ,17,923,9943748,40,0 ,17,923,7322308,40,0 ,14,27,506568,3,0 ,14,27,506576,6,0 ,14,27,506584,6,0 ,14,27,506592,3,0 ,20,20439,13089506,12,0 ,14,27,506600,6,0 ,14,27,506608,5,0 ,14,27,506616,3,0 ,14,27,506624,3,0 ,17,923,9419524,32,0 ,14,27,506632,6,0 ,14,27,506640,6,0 ,14,27,506648,5,0 ,14,27,506656,3,0 ,20,21739,16759586,12,0 ,14,27,506664,6,0 ,14,27,506672,6,0 ,14,27,506680,6,0 ,14,27,506688,3,0 ,20,20440,13089602,84,0 ,45,15153,4700996,24,0 ,44,15152,2079556,72,0 ,44,15152,3128132,24,0 ,14,27,506696,5,0 ,14,27,506704,3,0 ,14,27,506712,6,0 ,14,27,506720,3,0 ,20,23250,20429666,640,0 ,14,27,506728,6,0 ,14,27,506736,6,0 ,14,27,506744,3,0 ,14,27,506752,6,0 ,20,21740,16759682,216,0 ,17,923,8371076,40,0 ,17,923,7846788,32,0 ,17,923,6798212,24,0 ,44,15152,2603908,32,0 ,44,15152,1555332,32,0 ,14,27,506760,3,0 ,14,27,506768,6,0 ,14,27,506776,3,0 ,14,27,506784,6,0 ,20,20692,13613986,332,0 ,14,27,506792,3,0 ,14,27,506800,6,0 ,14,27,506808,3,0 ,14,27,506816,6,0 ,44,15152,3652548,112,0 ,14,27,506824,3,0 ,14,27,506832,6,0 ,14,27,506840,3,0 ,14,27,506848,6,0 ,14,27,506856,6,0 ,14,27,506864,3,0 ,14,27,506872,6,0 ,14,27,506880,5,0 ,17,923,9944068,32,0 ,17,923,7322628,24,0 ,44,15152,3128324,32,0 ,45,15153,4701188,32,0 ,45,15153,5225476,24,0 ,17,923,9419780,32,0 ,14,27,506888,6,0 ,14,27,506896,3,0 ,14,27,506904,6,0 ,14,27,506912,6,0 ,20,21488,16235554,204,0 ,20,16020,2079778,144,0 ,14,27,506920,6,0 ,14,27,506928,6,0 ,14,27,506936,6,0 ,14,27,506944,3,0 ,20,18867,8895554,740,0 ,17,923,8895556,40,0 ,17,923,6798404,40,0 ,44,15152,506948,24,0 ,14,27,506952,6,0 ,14,27,506960,5,0 ,14,27,506968,6,0 ,14,27,506976,6,0 ,14,27,506984,3,0 ,14,27,506992,6,0 ,14,27,507000,6,0 ,14,27,507008,6,0 ,44,15152,1031300,24,0 ,17,923,7847044,40,0 ,44,15152,2604164,40,0 ,44,15152,1555588,32,0 ,14,27,507016,6,0 ,14,27,507024,3,0 ,14,27,507032,6,0 ,14,27,507040,6,0 ,20,26554,29342882,140,0 ,14,27,507048,3,0 ,14,27,507056,6,0 ,14,27,507064,6,0 ,14,27,507072,6,0 ,20,24851,24624322,32,0 ,17,923,8371396,40,0 ,17,923,7322820,24,0 ,45,15153,5225668,16,0 ,14,27,507080,6,0 ,14,27,507088,6,0 ,14,27,507096,3,0 ,14,27,507104,6,0 ,14,27,507112,5,0 ,14,27,507120,6,0 ,14,27,507128,6,0 ,14,27,507136,3,0 ,20,16226,3128578,140,0 ,17,923,9944324,24,0 ,44,15152,507140,40,0 ,44,15152,3128580,24,0 ,45,15153,4701444,24,0 ,17,923,9420036,32,0 ,14,27,507144,6,0 ,14,27,507152,5,0 ,14,27,507160,6,0 ,14,27,507168,5,0 ,14,27,507176,3,0 ,14,27,507184,6,0 ,14,27,507192,6,0 ,14,27,507200,6,0 ,20,17958,6798658,84,0 ,45,15153,5225796,24,0 ,44,15152,1031492,24,0 ,14,27,507208,3,0 ,14,27,507216,5,0 ,14,27,507224,6,0 ,14,27,507232,6,0 ,20,19304,9944418,288,0 ,14,27,507240,6,0 ,14,27,507248,3,0 ,14,27,507256,6,0 ,14,27,507264,6,0 ,20,22939,19905922,688,0 ,17,923,8895876,64,0 ,17,923,7323012,24,0 ,17,923,6798724,40,0 ,44,15152,2080132,24,0 ,44,15152,1555844,64,0 ,14,27,507272,3,0 ,14,27,507280,6,0 ,14,27,507288,6,0 ,14,27,507296,6,0 ,20,26068,27770274,896,0 ,14,27,507304,5,0 ,14,27,507312,6,0 ,14,27,507320,6,0 ,14,27,507328,3,0 ,20,24852,24624578,92,0 ,17,923,9944516,24,0 ,17,923,7847364,24,0 ,44,15152,2604484,24,0 ,44,15152,3128772,40,0 ,45,15153,4701636,64,0 ,14,27,507336,6,0 ,14,27,507344,3,0 ,14,27,507352,6,0 ,14,27,507360,6,0 ,20,22222,18333154,1100,0 ,20,20441,13090274,440,0 ,14,27,507368,6,0 ,14,27,507376,6,0 ,14,27,507384,3,0 ,14,27,507392,5,0 ,17,923,9420292,40,0 ,44,15152,1031684,24,0 ,45,15153,5225988,16,0 ,17,923,8371716,40,0 ,14,27,507400,3,0 ,14,27,507408,6,0 ,14,27,507416,6,0 ,14,27,507424,6,0 ,14,27,507432,3,0 ,14,27,507440,6,0 ,14,27,507448,6,0 ,14,27,507456,3,0 ,44,15152,507460,168,0 ,17,923,7323204,32,0 ,44,15152,2080324,64,0 ,14,27,507464,6,0 ,14,27,507472,6,0 ,14,27,507480,6,0 ,14,27,507488,6,0 ,20,21998,17808994,5152,0 ,14,27,507496,5,0 ,14,27,507504,6,0 ,14,27,507512,3,0 ,14,27,507520,6,0 ,20,16893,4177538,96,0 ,17,923,9944708,24,0 ,17,923,7847556,64,0 ,44,15152,2604676,112,0 ,45,15153,5226116,16,0 ,14,27,507528,6,0 ,14,27,507536,5,0 ,14,27,507544,6,0 ,14,27,507552,3,0 ,14,27,507560,5,0 ,14,27,507568,6,0 ,14,27,507576,5,0 ,14,27,507584,6,0 ,44,15152,1031876,16,0 ,17,923,6799044,32,0 ,14,27,507592,3,0 ,14,27,507600,6,0 ,14,27,507608,6,0 ,14,27,507616,6,0 ,14,27,507624,6,0 ,14,27,507632,3,0 ,14,27,507640,6,0 ,14,27,507648,6,0 ,45,15153,5226244,32,0 ,44,15152,3129092,40,0 ,14,27,507656,3,0 ,14,27,507664,6,0 ,14,27,507672,6,0 ,14,27,507680,3,0 ,14,27,507688,6,0 ,14,27,507696,6,0 ,14,27,507704,3,0 ,14,27,507712,6,0 ,17,923,9944900,24,0 ,17,923,7323460,48,0 ,44,15152,1032004,32,0 ,44,15152,3653444,64,0 ,17,923,8372036,32,0 ,17,923,9420612,40,0 ,14,27,507720,6,0 ,14,27,507728,6,0 ,14,27,507736,6,0 ,14,27,507744,3,0 ,20,25829,27246434,148,0 ,14,27,507752,6,0 ,14,27,507760,6,0 ,14,27,507768,6,0 ,14,27,507776,6,0 ,20,26238,28295042,100,0 ,17,923,8896388,24,0 ,44,15152,1556356,24,0 ,14,27,507784,3,0 ,14,27,507792,6,0 ,14,27,507800,6,0 ,14,27,507808,6,0 ,14,27,507816,6,0 ,14,27,507824,6,0 ,14,27,507832,3,0 ,14,27,507840,6,0 ,20,17290,5226434,12,0 ,45,15153,4702148,24,0 ,17,923,6799300,32,0 ,14,27,507848,6,0 ,14,27,507856,3,0 ,14,27,507864,5,0 ,14,27,507872,6,0 ,20,17959,6799330,316,0 ,14,27,507880,6,0 ,14,27,507888,6,0 ,14,27,507896,3,0 ,14,27,507904,6,0 ,20,17498,5750786,48,0 ,17,923,9945092,24,0 ,45,15153,5226500,32,0 ,14,27,507912,6,0 ,14,27,507920,3,0 ,14,27,507928,6,0 ,14,27,507936,6,0 ,20,17291,5226530,52,0 ,14,27,507944,6,0 ,14,27,507952,3,0 ,14,27,507960,6,0 ,14,27,507968,5,0 ,17,923,8896580,72,0 ,44,15152,2080836,64,0 ,44,15152,1556548,48,0 ,44,15152,1032260,120,0 ,44,15152,3129412,80,0 ,17,923,8372292,40,0 ,14,27,507976,6,0 ,14,27,507984,3,0 ,14,27,507992,6,0 ,14,27,508000,6,0 ,14,27,508008,6,0 ,14,27,508016,5,0 ,14,27,508024,6,0 ,14,27,508032,6,0 ,20,25301,25673858,248,0 ,17,923,9420932,48,0 ,17,923,7848068,40,0 ,45,15153,4702340,40,0 ,14,27,508040,5,0 ,14,27,508048,6,0 ,14,27,508056,6,0 ,14,27,508064,6,0 ,20,16021,2080930,80,0 ,20,25082,25149602,392,0 ,20,24853,24625314,60,0 ,14,27,508072,3,0 ,14,27,508080,6,0 ,14,27,508088,6,0 ,14,27,508096,3,0 ,17,923,9945284,24,0 ,17,923,7323844,40,0 ,17,923,6799556,40,0 ,14,27,508104,6,0 ,14,27,508112,3,0 ,14,27,508120,6,0 ,14,27,508128,3,0 ,14,27,508136,6,0 ,14,27,508144,5,0 ,14,27,508152,3,0 ,14,27,508160,6,0 ,20,26555,29344002,60,0 ,45,15153,5226756,32,0 ,14,27,508168,6,0 ,14,27,508176,6,0 ,14,27,508184,6,0 ,14,27,508192,3,0 ,14,27,508200,6,0 ,14,27,508208,3,0 ,14,27,508216,6,0 ,14,27,508224,3,0 ,44,15152,3653956,24,0 ,14,27,508232,6,0 ,14,27,508240,3,0 ,14,27,508248,5,0 ,14,27,508256,3,0 ,20,16227,3129698,464,0 ,14,27,508264,6,0 ,14,27,508272,5,0 ,14,27,508280,6,0 ,14,27,508288,3,0 ,20,17499,5751170,196,0 ,20,16894,4178306,156,0 ,17,923,9945476,32,0 ,17,923,8372612,40,0 ,14,27,508296,6,0 ,14,27,508304,6,0 ,14,27,508312,6,0 ,14,27,508320,6,0 ,20,15781,1556898,52,0 ,14,27,508328,6,0 ,14,27,508336,3,0 ,14,27,508344,6,0 ,14,27,508352,6,0 ,20,17292,5226946,52,0 ,45,15153,4702660,16,0 ,17,923,7848388,40,0 ,44,15152,1556932,32,0 ,14,27,508360,3,0 ,14,27,508368,6,0 ,14,27,508376,3,0 ,14,27,508384,6,0 ,14,27,508392,3,0 ,14,27,508400,6,0 ,14,27,508408,3,0 ,14,27,508416,6,0 ,20,16609,3654146,12,0 ,17,923,9421316,32,0 ,17,923,7324164,24,0 ,17,923,6799876,40,0 ,44,15152,2605572,144,0 ,44,15152,3654148,32,0 ,45,15153,5227012,16,0 ,14,27,508424,6,0 ,14,27,508432,3,0 ,14,27,508440,6,0 ,14,27,508448,3,0 ,14,27,508456,6,0 ,14,27,508464,3,0 ,14,27,508472,6,0 ,14,27,508480,6,0 ,20,21741,16761410,12,0 ,45,15153,4702788,168,0 ,44,15152,2081348,56,0 ,14,27,508488,3,0 ,14,27,508496,6,0 ,14,27,508504,6,0 ,14,27,508512,3,0 ,20,16610,3654242,136,0 ,14,27,508520,6,0 ,14,27,508528,6,0 ,14,27,508536,6,0 ,14,27,508544,6,0 ,20,21489,16237186,164,0 ,20,24854,24625794,152,0 ,17,923,9945732,24,0 ,45,15153,5227140,32,0 ,17,923,8897156,32,0 ,14,27,508552,6,0 ,14,27,508560,6,0 ,14,27,508568,6,0 ,14,27,508576,6,0 ,20,21742,16761506,160,0 ,20,26239,28295842,936,0 ,20,25650,26722978,120,0 ,14,27,508584,6,0 ,14,27,508592,3,0 ,14,27,508600,6,0 ,14,27,508608,6,0 ,17,923,8372932,40,0 ,17,923,7324356,24,0 ,44,15152,1557188,40,0 ,44,15152,3130052,24,0 ,14,27,508616,3,0 ,14,27,508624,6,0 ,14,27,508632,6,0 ,14,27,508640,5,0 ,20,26556,29344482,60,0 ,14,27,508648,6,0 ,14,27,508656,3,0 ,14,27,508664,6,0 ,14,27,508672,3,0 ,17,923,9421572,40,0 ,17,923,7848708,32,0 ,44,15152,3654404,40,0 ,14,27,508680,6,0 ,14,27,508688,3,0 ,14,27,508696,5,0 ,14,27,508704,3,0 ,20,16022,2081570,136,0 ,14,27,508712,6,0 ,14,27,508720,3,0 ,14,27,508728,6,0 ,14,27,508736,3,0 ,20,15782,1557314,272,0 ,17,923,9945924,40,0 ,17,923,6800196,24,0 ,14,27,508744,6,0 ,14,27,508752,3,0 ,14,27,508760,6,0 ,14,27,508768,3,0 ,20,17293,5227362,304,0 ,14,27,508776,6,0 ,14,27,508784,3,0 ,14,27,508792,6,0 ,14,27,508800,3,0 ,17,923,8897412,40,0 ,17,923,7324548,32,0 ,44,15152,508804,32,0 ,44,15152,3130244,24,0 ,45,15153,5227396,40,0 ,14,27,508808,6,0 ,14,27,508816,3,0 ,14,27,508824,6,0 ,14,27,508832,6,0 ,20,20856,14140322,704,0 ,14,27,508840,3,0 ,14,27,508848,3,0 ,14,27,508856,6,0 ,14,27,508864,6,0 ,14,27,508872,3,0 ,14,27,508880,6,0 ,14,27,508888,3,0 ,14,27,508896,6,0 ,14,27,508904,6,0 ,14,27,508912,6,0 ,14,27,508920,3,0 ,14,27,508928,5,0 ,20,24678,24101890,740,0 ,20,25830,27247618,372,0 ,17,923,8373252,40,0 ,17,923,7848964,40,0 ,17,923,6800388,64,0 ,44,15152,2081796,64,0 ,44,15152,1557508,48,0 ,44,15152,1033220,32,0 ,14,27,508936,3,0 ,14,27,508944,6,0 ,14,27,508952,6,0 ,14,27,508960,3,0 ,14,27,508968,6,0 ,14,27,508976,3,0 ,14,27,508984,6,0 ,14,27,508992,6,0 ,17,923,9421892,32,0 ,44,15152,3130436,24,0 ,44,15152,3654724,144,0 ,14,27,509000,3,0 ,14,27,509008,3,0 ,14,27,509016,6,0 ,14,27,509024,5,0 ,14,27,509032,3,0 ,14,27,509040,6,0 ,14,27,509048,6,0 ,14,27,509056,6,0 ,17,923,9946244,40,0 ,17,923,7324804,32,0 ,44,15152,509060,24,0 ,14,27,509064,6,0 ,14,27,509072,3,0 ,14,27,509080,6,0 ,14,27,509088,3,0 ,20,18623,8373410,12,0 ,14,27,509096,6,0 ,14,27,509104,3,0 ,14,27,509112,6,0 ,14,27,509120,6,0 ,20,23881,22004930,1312,0 ,20,26557,29344962,104,0 ,17,923,8897732,56,0 ,45,15153,5227716,40,0 ,14,27,509128,6,0 ,14,27,509136,6,0 ,14,27,509144,3,0 ,14,27,509152,6,0 ,14,27,509160,3,0 ,14,27,509168,6,0 ,14,27,509176,3,0 ,14,27,509184,6,0 ,20,18624,8373506,1928,0 ,44,15152,3130628,40,0 ,44,15152,1033476,32,0 ,14,27,509192,3,0 ,14,27,509200,6,0 ,14,27,509208,3,0 ,14,27,509216,6,0 ,14,27,509224,3,0 ,14,27,509232,6,0 ,14,27,509240,3,0 ,14,27,509248,6,0 ,17,923,9422148,40,0 ,17,923,7849284,40,0 ,44,15152,509252,32,0 ,17,923,8373572,24,0 ,14,27,509256,3,0 ,14,27,509264,6,0 ,14,27,509272,3,0 ,14,27,509280,6,0 ,14,27,509288,3,0 ,14,27,509296,6,0 ,14,27,509304,3,0 ,14,27,509312,6,0 ,44,15152,1557892,16,0 ,17,923,7325060,32,0 ,14,27,509320,6,0 ,14,27,509328,6,0 ,14,27,509336,3,0 ,14,27,509344,6,0 ,14,27,509352,6,0 ,14,27,509360,3,0 ,14,27,509368,6,0 ,14,27,509376,3,0 ,20,15556,1033666,124,0 ,17,923,9946564,32,0 ,14,27,509384,6,0 ,14,27,509392,3,0 ,14,27,509400,5,0 ,14,27,509408,3,0 ,14,27,509416,6,0 ,14,27,509424,6,0 ,14,27,509432,3,0 ,14,27,509440,5,0 ,20,20693,13616642,12,0 ,17,923,8373764,32,0 ,17,923,6800900,32,0 ,44,15152,2082308,56,0 ,44,15152,1558020,32,0 ,44,15152,1033732,24,0 ,45,15153,5228036,40,0 ,14,27,509448,3,0 ,14,27,509456,5,0 ,14,27,509464,3,0 ,14,27,509472,6,0 ,20,24143,22529570,432,0 ,14,27,509480,3,0 ,14,27,509488,6,0 ,14,27,509496,6,0 ,14,27,509504,6,0 ,44,15152,3130948,128,0 ,44,15152,509508,40,0 ,14,27,509512,5,0 ,14,27,509520,3,0 ,14,27,509528,5,0 ,14,27,509536,3,0 ,20,20694,13616738,24,0 ,20,25651,26723938,324,0 ,20,16895,4179554,12,0 ,20,19305,9946722,176,0 ,14,27,509544,6,0 ,14,27,509552,3,0 ,14,27,509560,6,0 ,14,27,509568,3,0 ,17,923,9422468,40,0 ,17,923,7849604,40,0 ,17,923,7325316,32,0 ,44,15152,2606724,24,0 ,17,923,8898180,40,0 ,14,27,509576,6,0 ,14,27,509584,3,0 ,14,27,509592,6,0 ,14,27,509600,3,0 ,20,16611,3655330,136,0 ,14,27,509608,6,0 ,14,27,509616,6,0 ,14,27,509624,3,0 ,14,27,509632,6,0 ,20,16896,4179650,52,0 ,17,923,9946820,24,0 ,44,15152,1033924,32,0 ,14,27,509640,6,0 ,14,27,509648,3,0 ,14,27,509656,6,0 ,14,27,509664,3,0 ,14,27,509672,6,0 ,14,27,509680,6,0 ,14,27,509688,6,0 ,14,27,509696,6,0 ,17,923,8374020,32,0 ,17,923,6801156,40,0 ,44,15152,1558276,32,0 ,14,27,509704,5,0 ,14,27,509712,3,0 ,14,27,509720,6,0 ,14,27,509728,5,0 ,20,20695,13616930,24,0 ,14,27,509736,3,0 ,14,27,509744,6,0 ,14,27,509752,5,0 ,14,27,509760,3,0 ,20,24855,24627010,556,0 ,45,15153,5228356,64,0 ,44,15152,2606916,24,0 ,14,27,509768,6,0 ,14,27,509776,3,0 ,14,27,509784,6,0 ,14,27,509792,3,0 ,20,16023,2082658,80,0 ,14,27,509800,6,0 ,14,27,509808,3,0 ,14,27,509816,6,0 ,14,27,509824,3,0 ,17,923,9947012,48,0 ,17,923,7325572,32,0 ,44,15152,509828,40,0 ,45,15153,4704132,64,0 ,14,27,509832,6,0 ,14,27,509840,3,0 ,14,27,509848,6,0 ,14,27,509856,6,0 ,20,21743,16762786,12,0 ,20,17500,5752738,244,0 ,20,21490,16238498,388,0 ,14,27,509864,3,0 ,14,27,509872,6,0 ,14,27,509880,3,0 ,14,27,509888,6,0 ,17,923,9422788,32,0 ,17,923,7849924,48,0 ,44,15152,2082756,56,0 ,44,15152,1034180,24,0 ,17,923,8898500,64,0 ,14,27,509896,3,0 ,14,27,509904,6,0 ,14,27,509912,3,0 ,14,27,509920,6,0 ,20,20696,13617122,24,0 ,14,27,509928,5,0 ,14,27,509936,3,0 ,14,27,509944,6,0 ,14,27,509952,6,0 ,20,21744,16762882,100,0 ,20,26558,29345794,88,0 ,17,923,8374276,48,0 ,44,15152,2607108,24,0 ,44,15152,1558532,32,0 ,14,27,509960,5,0 ,14,27,509968,3,0 ,14,27,509976,6,0 ,14,27,509984,6,0 ,14,27,509992,6,0 ,14,27,510000,3,0 ,14,27,510008,6,0 ,14,27,510016,6,0 ,20,19881,10995778,104,0 ,20,25302,25675842,556,0 ,45,15153,4180036,64,0 ,17,923,6801476,32,0 ,14,27,510024,6,0 ,14,27,510032,6,0 ,14,27,510040,6,0 ,14,27,510048,6,0 ,20,22469,18860130,24,0 ,20,16897,4180066,12,0 ,14,27,510056,6,0 ,14,27,510064,6,0 ,14,27,510072,6,0 ,14,27,510080,6,0 ,44,15152,1034372,24,0 ,17,923,7325828,40,0 ,14,27,510088,6,0 ,14,27,510096,6,0 ,14,27,510104,6,0 ,14,27,510112,6,0 ,20,20697,13617314,12,0 ,14,27,510120,6,0 ,14,27,510128,6,0 ,14,27,510136,6,0 ,14,27,510144,6,0 ,20,16898,4180162,112,0 ,17,923,9423044,24,0 ,44,15152,2607300,24,0 ,44,15152,510148,24,0 ,44,15152,3655876,56,0 ,14,27,510152,6,0 ,14,27,510160,6,0 ,14,27,510168,6,0 ,14,27,510176,6,0 ,14,27,510184,6,0 ,14,27,510192,6,0 ,14,27,510200,6,0 ,14,27,510208,6,0 ,20,20698,13617410,404,0 ,17,923,9947396,32,0 ,44,15152,1558788,56,0 ,14,27,510216,6,0 ,14,27,510224,6,0 ,14,27,510232,6,0 ,14,27,510240,6,0 ,20,22470,18860322,24,0 ,14,27,510248,5,0 ,14,27,510256,6,0 ,14,27,510264,6,0 ,14,27,510272,6,0 ,45,15153,5228868,24,0 ,17,923,7850308,48,0 ,17,923,6801732,24,0 ,44,15152,1034564,32,0 ,14,27,510280,6,0 ,14,27,510288,6,0 ,14,27,510296,6,0 ,14,27,510304,6,0 ,20,21145,15714658,804,0 ,14,27,510312,6,0 ,14,27,510320,6,0 ,14,27,510328,6,0 ,14,27,510336,6,0 ,17,923,9423236,56,0 ,44,15152,2607492,24,0 ,44,15152,2083204,56,0 ,44,15152,510340,40,0 ,45,15153,4704644,72,0 ,17,923,8374660,24,0 ,14,27,510344,6,0 ,14,27,510352,6,0 ,14,27,510360,6,0 ,14,27,510368,6,0 ,20,15557,1034658,12,0 ,14,27,510376,6,0 ,14,27,510384,6,0 ,14,27,510392,5,0 ,14,27,510400,6,0 ,20,17960,6801858,592,0 ,17,923,8899012,24,0 ,17,923,7326148,24,0 ,14,27,510408,6,0 ,14,27,510416,6,0 ,14,27,510424,6,0 ,14,27,510432,6,0 ,20,22471,18860514,24,0 ,20,16024,2083298,92,0 ,14,27,510440,6,0 ,14,27,510448,6,0 ,14,27,510456,6,0 ,14,27,510464,6,0 ,20,15558,1034754,532,0 ,17,923,9947652,56,0 ,17,923,6801924,40,0 ,45,15153,5229060,80,0 ,14,27,510472,6,0 ,14,27,510480,6,0 ,14,27,510488,6,0 ,14,27,510496,6,0 ,14,27,510504,6,0 ,14,27,510512,5,0 ,14,27,510520,6,0 ,14,27,510528,6,0 ,17,923,8374852,40,0 ,44,15152,2607684,24,0 ,44,15152,1034820,40,0 ,44,15152,3131972,48,0 ,45,15153,4180548,24,0 ,14,27,510536,6,0 ,14,27,510544,6,0 ,14,27,510552,6,0 ,14,27,510560,6,0 ,14,27,510568,6,0 ,14,27,510576,5,0 ,14,27,510584,6,0 ,14,27,510592,6,0 ,17,923,8899204,72,0 ,17,923,7326340,24,0 ,44,15152,3656324,24,0 ,14,27,510600,5,0 ,14,27,510608,6,0 ,14,27,510616,6,0 ,14,27,510624,6,0 ,20,22472,18860706,24,0 ,14,27,510632,6,0 ,14,27,510640,6,0 ,14,27,510648,5,0 ,14,27,510656,6,0 ,20,26559,29346498,72,0 ,44,15152,510660,24,0 ,17,923,7850692,40,0 ,44,15152,1559236,24,0 ,14,27,510664,6,0 ,14,27,510672,6,0 ,14,27,510680,6,0 ,14,27,510688,6,0 ,20,16612,3656418,128,0 ,14,27,510696,6,0 ,14,27,510704,6,0 ,14,27,510712,6,0 ,14,27,510720,6,0 ,45,15153,4180740,24,0 ,44,15152,2607876,24,0 ,14,27,510728,6,0 ,14,27,510736,6,0 ,14,27,510744,6,0 ,14,27,510752,6,0 ,20,21745,16763682,128,0 ,14,27,510760,6,0 ,14,27,510768,6,0 ,14,27,510776,6,0 ,14,27,510784,6,0 ,20,20137,11520834,6752,0 ,17,923,9423684,24,0 ,17,923,7326532,32,0 ,17,923,6802244,32,0 ,44,15152,2083652,56,0 ,44,15152,3656516,32,0 ,14,27,510792,6,0 ,14,27,510800,6,0 ,14,27,510808,6,0 ,14,27,510816,6,0 ,20,22473,18860898,24,0 ,14,27,510824,6,0 ,14,27,510832,5,0 ,14,27,510840,6,0 ,14,27,510848,6,0 ,20,19882,10996610,328,0 ,17,923,8375172,24,0 ,44,15152,1559428,24,0 ,44,15152,510852,64,0 ,44,15152,1035140,128,0 ,14,27,510856,6,0 ,14,27,510864,5,0 ,14,27,510872,6,0 ,14,27,510880,6,0 ,20,20442,13093794,160,0 ,14,27,510888,6,0 ,14,27,510896,5,0 ,14,27,510904,6,0 ,14,27,510912,6,0 ,20,15783,1559490,156,0 ,17,923,9948100,32,0 ,44,15152,2608068,16,0 ,44,15152,3132356,80,0 ,45,15153,4180932,120,0 ,45,15153,4705220,16,0 ,14,27,510920,6,0 ,14,27,510928,6,0 ,14,27,510936,6,0 ,14,27,510944,6,0 ,20,19306,9948130,12,0 ,14,27,510952,6,0 ,14,27,510960,5,0 ,14,27,510968,6,0 ,14,27,510976,6,0 ,17,923,9423876,40,0 ,17,923,7851012,56,0 ,14,27,510984,6,0 ,14,27,510992,6,0 ,14,27,511000,6,0 ,14,27,511008,6,0 ,20,22474,18861090,24,0 ,14,27,511016,6,0 ,14,27,511024,6,0 ,14,27,511032,6,0 ,14,27,511040,6,0 ,20,19307,9948226,96,0 ,20,16899,4181058,60,0 ,17,923,8375364,40,0 ,17,923,7326788,24,0 ,17,923,6802500,40,0 ,44,15152,2608196,16,0 ,44,15152,1559620,32,0 ,44,15152,3656772,16,0 ,45,15153,4705348,56,0 ,14,27,511048,6,0 ,14,27,511056,5,0 ,14,27,511064,6,0 ,14,27,511072,6,0 ,14,27,511080,5,0 ,14,27,511088,6,0 ,14,27,511096,6,0 ,14,27,511104,6,0 ,45,15153,5229700,40,0 ,14,27,511112,6,0 ,14,27,511120,6,0 ,14,27,511128,6,0 ,14,27,511136,6,0 ,14,27,511144,5,0 ,14,27,511152,6,0 ,14,27,511160,3,0 ,14,27,511168,6,0 ,20,16025,2084034,64,0 ,17,923,9948356,312,0 ,44,15152,2608324,40,0 ,44,15152,3656900,16,0 ,17,923,8899780,32,0 ,14,27,511176,6,0 ,14,27,511184,6,0 ,14,27,511192,6,0 ,14,27,511200,6,0 ,20,22475,18861282,24,0 ,20,25083,25152738,1024,0 ,20,17294,5229794,136,0 ,14,27,511208,6,0 ,14,27,511216,6,0 ,14,27,511224,6,0 ,14,27,511232,5,0 ,20,26560,29347074,80,0 ,44,15152,2084100,48,0 ,17,923,7326980,40,0 ,14,27,511240,6,0 ,14,27,511248,6,0 ,14,27,511256,6,0 ,14,27,511264,6,0 ,14,27,511272,6,0 ,14,27,511280,6,0 ,14,27,511288,6,0 ,14,27,511296,6,0 ,17,923,9424196,32,0 ,44,15152,1559876,24,0 ,44,15152,3657028,56,0 ,14,27,511304,6,0 ,14,27,511312,6,0 ,14,27,511320,6,0 ,14,27,511328,6,0 ,14,27,511336,6,0 ,14,27,511344,6,0 ,14,27,511352,6,0 ,14,27,511360,6,0 ,17,923,8375684,40,0 ,17,923,6802820,24,0 ,44,15152,511364,32,0 ,14,27,511368,6,0 ,14,27,511376,5,0 ,14,27,511384,6,0 ,14,27,511392,6,0 ,20,22476,18861474,116,0 ,14,27,511400,6,0 ,14,27,511408,6,0 ,14,27,511416,6,0 ,14,27,511424,6,0 ,20,18384,7851458,12,0 ,17,923,8900036,40,0 ,17,923,7851460,24,0 ,45,15153,5230020,48,0 ,14,27,511432,6,0 ,14,27,511440,6,0 ,14,27,511448,6,0 ,14,27,511456,6,0 ,20,21945,17288674,1032,0 ,14,27,511464,6,0 ,14,27,511472,6,0 ,14,27,511480,6,0 ,14,27,511488,5,0 ,45,15153,4705796,32,0 ,44,15152,2608644,24,0 ,44,15152,1560068,24,0 ,14,27,511496,6,0 ,14,27,511504,5,0 ,14,27,511512,5,0 ,14,27,511520,6,0 ,20,18385,7851554,12,0 ,20,16900,4181538,160,0 ,14,27,511528,6,0 ,14,27,511536,6,0 ,14,27,511544,5,0 ,14,27,511552,6,0 ,17,923,9424452,24,0 ,17,923,7327300,32,0 ,17,923,6803012,40,0 ,44,15152,3132996,24,0 ,14,27,511560,6,0 ,14,27,511568,6,0 ,14,27,511576,5,0 ,14,27,511584,6,0 ,14,27,511592,6,0 ,14,27,511600,6,0 ,14,27,511608,6,0 ,14,27,511616,6,0 ,20,18386,7851650,44,0 ,44,15152,511620,24,0 ,17,923,7851652,72,0 ,44,15152,2084484,24,0 ,14,27,511624,6,0 ,14,27,511632,6,0 ,14,27,511640,5,0 ,14,27,511648,6,0 ,14,27,511656,6,0 ,14,27,511664,6,0 ,14,27,511672,6,0 ,14,27,511680,6,0 ,20,16026,2084546,48,0 ,17,923,8376004,40,0 ,44,15152,2608836,24,0 ,44,15152,1560260,88,0 ,14,27,511688,6,0 ,14,27,511696,6,0 ,14,27,511704,6,0 ,14,27,511712,6,0 ,20,16613,3657442,52,0 ,14,27,511720,6,0 ,14,27,511728,6,0 ,14,27,511736,6,0 ,14,27,511744,6,0 ,17,923,9424644,24,0 ,44,15152,3133188,48,0 ,44,15152,3657476,24,0 ,45,15153,4706052,16,0 ,17,923,8900356,56,0 ,14,27,511752,6,0 ,14,27,511760,6,0 ,14,27,511768,6,0 ,14,27,511776,5,0 ,20,21746,16764706,128,0 ,14,27,511784,6,0 ,14,27,511792,6,0 ,14,27,511800,6,0 ,14,27,511808,6,0 ,20,19308,9948994,312,0 ,20,17501,5754690,336,0 ,45,15153,5230404,72,0 ,17,923,7327556,24,0 ,44,15152,2084676,64,0 ,44,15152,511812,32,0 ,14,27,511816,6,0 ,14,27,511824,6,0 ,14,27,511832,6,0 ,14,27,511840,5,0 ,20,23251,20434786,668,0 ,14,27,511848,6,0 ,14,27,511856,6,0 ,14,27,511864,6,0 ,14,27,511872,5,0 ,20,26561,29347714,84,0 ,45,15153,4706180,24,0 ,17,923,6803332,48,0 ,44,15152,2609028,32,0 ,44,15152,1036164,32,0 ,45,15153,4181892,16,0 ,14,27,511880,3,0 ,14,27,511888,5,0 ,14,27,511896,6,0 ,14,27,511904,6,0 ,20,25831,27250594,68,0 ,14,27,511912,6,0 ,14,27,511920,5,0 ,14,27,511928,6,0 ,14,27,511936,6,0 ,17,923,9424836,72,0 ,44,15152,3657668,88,0 ,14,27,511944,6,0 ,14,27,511952,6,0 ,14,27,511960,6,0 ,14,27,511968,5,0 ,20,18387,7852002,196,0 ,20,16228,3133410,348,0 ,14,27,511976,6,0 ,14,27,511984,6,0 ,14,27,511992,6,0 ,14,27,512000,6,0 ,17,923,8376324,32,0 ,17,923,7327748,24,0 ,45,15153,4182020,40,0 ,14,27,512008,6,0 ,14,27,512016,6,0 ,14,27,512024,6,0 ,14,27,512032,6,0 ,14,27,512040,6,0 ,14,27,512048,6,0 ,14,27,512056,6,0 ,14,27,512064,6,0 ,20,16027,2084930,68,0 ,45,15153,4706372,40,0 ,44,15152,512068,24,0 ,14,27,512072,6,0 ,14,27,512080,6,0 ,14,27,512088,6,0 ,14,27,512096,6,0 ,14,27,512104,6,0 ,14,27,512112,6,0 ,14,27,512120,6,0 ,14,27,512128,6,0 ,20,16614,3657858,128,0 ,20,25652,26726530,124,0 ,44,15152,3133572,48,0 ,44,15152,2609284,24,0 ,44,15152,1036420,32,0 ,14,27,512136,6,0 ,14,27,512144,6,0 ,14,27,512152,6,0 ,14,27,512160,6,0 ,20,20443,13095074,304,0 ,20,15784,1560738,152,0 ,14,27,512168,6,0 ,14,27,512176,6,0 ,14,27,512184,6,0 ,14,27,512192,6,0 ,17,923,8900804,40,0 ,17,923,7852228,40,0 ,17,923,7327940,32,0 ,14,27,512200,6,0 ,14,27,512208,6,0 ,14,27,512216,6,0 ,14,27,512224,6,0 ,14,27,512232,6,0 ,14,27,512240,5,0 ,14,27,512248,6,0 ,14,27,512256,5,0 ,17,923,8376580,56,0 ,17,923,6803716,24,0 ,44,15152,512260,48,0 ,14,27,512264,6,0 ,14,27,512272,6,0 ,14,27,512280,3,0 ,14,27,512288,6,0 ,20,17295,5230882,44,0 ,14,27,512296,6,0 ,14,27,512304,6,0 ,14,27,512312,6,0 ,14,27,512320,6,0 ,20,22477,18862402,24,0 ,20,16141,2609474,1872,0 ,45,15153,4182340,112,0 ,44,15152,2609476,56,0 ,44,15152,2085188,64,0 ,14,27,512328,5,0 ,14,27,512336,5,0 ,14,27,512344,6,0 ,14,27,512352,6,0 ,14,27,512360,5,0 ,14,27,512368,6,0 ,14,27,512376,5,0 ,14,27,512384,5,0 ,45,15153,5230980,72,0 ,44,15152,1560964,104,0 ,44,15152,1036676,32,0 ,45,15153,4706692,32,0 ,14,27,512392,6,0 ,14,27,512400,6,0 ,14,27,512408,6,0 ,14,27,512416,6,0 ,14,27,512424,6,0 ,14,27,512432,5,0 ,14,27,512440,6,0 ,14,27,512448,6,0 ,20,25832,27251138,68,0 ,17,923,6803908,32,0 ,17,923,7328196,32,0 ,14,27,512456,6,0 ,14,27,512464,6,0 ,14,27,512472,3,0 ,14,27,512480,6,0 ,14,27,512488,3,0 ,14,27,512496,6,0 ,14,27,512504,6,0 ,14,27,512512,6,0 ,20,22478,18862594,24,0 ,17,923,9425412,16,0 ,17,923,7852548,32,0 ,44,15152,3133956,72,0 ,17,923,8901124,64,0 ,14,27,512520,6,0 ,14,27,512528,6,0 ,14,27,512536,5,0 ,14,27,512544,6,0 ,20,26562,29348386,64,0 ,14,27,512552,6,0 ,14,27,512560,6,0 ,14,27,512568,6,0 ,14,27,512576,5,0 ,14,27,512584,6,0 ,14,27,512592,6,0 ,14,27,512600,5,0 ,14,27,512608,6,0 ,20,16028,2085474,80,0 ,14,27,512616,6,0 ,14,27,512624,6,0 ,14,27,512632,6,0 ,14,27,512640,6,0 ,20,24316,23057026,952,0 ,20,17296,5231234,236,0 ,17,923,9425540,24,0 ,44,15152,512644,24,0 ,44,15152,1036932,40,0 ,44,15152,3658372,72,0 ,45,15153,4706948,48,0 ,14,27,512648,6,0 ,14,27,512656,6,0 ,14,27,512664,6,0 ,14,27,512672,6,0 ,14,27,512680,6,0 ,14,27,512688,6,0 ,14,27,512696,6,0 ,14,27,512704,6,0 ,20,22479,18862786,24,0 ,17,923,8377028,40,0 ,17,923,7328452,24,0 ,17,923,6804164,32,0 ,14,27,512712,6,0 ,14,27,512720,6,0 ,14,27,512728,6,0 ,14,27,512736,6,0 ,14,27,512744,6,0 ,14,27,512752,6,0 ,14,27,512760,6,0 ,14,27,512768,3,0 ,20,22940,19911426,648,0 ,44,15152,2609924,40,0 ,17,923,7852804,48,0 ,14,27,512776,6,0 ,14,27,512784,6,0 ,14,27,512792,3,0 ,14,27,512800,5,0 ,20,21747,16765730,348,0 ,20,16901,4182818,112,0 ,14,27,512808,6,0 ,14,27,512816,5,0 ,14,27,512824,6,0 ,14,27,512832,3,0 ,17,923,9425732,80,0 ,44,15152,2085700,24,0 ,44,15152,512836,24,0 ,14,27,512840,6,0 ,14,27,512848,3,0 ,14,27,512856,6,0 ,14,27,512864,6,0 ,20,18868,8901474,400,0 ,14,27,512872,5,0 ,14,27,512880,6,0 ,14,27,512888,6,0 ,14,27,512896,6,0 ,20,22480,18862978,260,0 ,17,923,7328644,24,0 ,14,27,512904,6,0 ,14,27,512912,6,0 ,14,27,512920,6,0 ,14,27,512928,6,0 ,20,24144,22533026,1080,0 ,14,27,512936,6,0 ,14,27,512944,6,0 ,14,27,512952,6,0 ,14,27,512960,6,0 ,20,21491,16241602,164,0 ,45,15153,5231556,32,0 ,17,923,6804420,40,0 ,44,15152,1037252,24,0 ,14,27,512968,5,0 ,14,27,512976,6,0 ,14,27,512984,3,0 ,14,27,512992,6,0 ,20,25833,27251682,268,0 ,14,27,513000,6,0 ,14,27,513008,5,0 ,14,27,513016,5,0 ,14,27,513024,6,0 ,17,923,8901636,24,0 ,44,15152,2085892,16,0 ,44,15152,513028,64,0 ,45,15153,4707332,16,0 ,17,923,8377348,24,0 ,14,27,513032,6,0 ,14,27,513040,6,0 ,14,27,513048,6,0 ,14,27,513056,6,0 ,20,26563,29348898,40,0 ,14,27,513064,6,0 ,14,27,513072,6,0 ,14,27,513080,5,0 ,14,27,513088,6,0 ,44,15152,3134532,64,0 ,17,923,7328836,56,0 ,44,15152,2610244,32,0 ,14,27,513096,6,0 ,14,27,513104,5,0 ,14,27,513112,6,0 ,14,27,513120,6,0 ,20,25653,26727522,120,0 ,14,27,513128,6,0 ,14,27,513136,6,0 ,14,27,513144,6,0 ,14,27,513152,6,0 ,20,16615,3658882,332,0 ,45,15153,4707460,16,0 ,17,923,7853188,48,0 ,44,15152,2086020,64,0 ,44,15152,1037444,24,0 ,14,27,513160,6,0 ,14,27,513168,6,0 ,14,27,513176,6,0 ,14,27,513184,6,0 ,14,27,513192,6,0 ,14,27,513200,3,0 ,14,27,513208,6,0 ,14,27,513216,3,0 ,17,923,8901828,72,0 ,44,15152,1561796,64,0 ,44,15152,3658948,48,0 ,45,15153,4183236,168,0 ,45,15153,5231812,248,0 ,17,923,8377540,40,0 ,14,27,513224,6,0 ,14,27,513232,3,0 ,14,27,513240,6,0 ,14,27,513248,3,0 ,20,16029,2086114,92,0 ,14,27,513256,6,0 ,14,27,513264,3,0 ,14,27,513272,6,0 ,14,27,513280,3,0 ,45,15153,4707588,16,0 ,17,923,6804740,40,0 ,14,27,513288,6,0 ,14,27,513296,6,0 ,14,27,513304,6,0 ,14,27,513312,6,0 ,14,27,513320,6,0 ,14,27,513328,6,0 ,14,27,513336,6,0 ,14,27,513344,6,0 ,44,15152,1037636,24,0 ,44,15152,2610500,24,0 ,14,27,513352,6,0 ,14,27,513360,5,0 ,14,27,513368,5,0 ,14,27,513376,6,0 ,20,15785,1561954,576,0 ,20,26564,29349218,44,0 ,14,27,513384,6,0 ,14,27,513392,6,0 ,14,27,513400,6,0 ,14,27,513408,6,0 ,45,15153,4707716,48,0 ,14,27,513416,6,0 ,14,27,513424,6,0 ,14,27,513432,6,0 ,14,27,513440,6,0 ,20,20699,13620642,304,0 ,14,27,513448,6,0 ,14,27,513456,5,0 ,14,27,513464,5,0 ,14,27,513472,5,0 ,20,19883,10999234,76,0 ,17,923,9426372,24,0 ,14,27,513480,6,0 ,14,27,513488,6,0 ,14,27,513496,6,0 ,14,27,513504,6,0 ,14,27,513512,6,0 ,14,27,513520,6,0 ,14,27,513528,6,0 ,14,27,513536,6,0 ,20,18388,7853570,380,0 ,17,923,8377860,32,0 ,17,923,7853572,40,0 ,17,923,7329284,56,0 ,44,15152,2610692,48,0 ,44,15152,513540,40,0 ,44,15152,1037828,24,0 ,14,27,513544,6,0 ,14,27,513552,4,0 ,14,27,513560,4,0 ,14,27,513568,4,0 ,14,27,513576,4,0 ,14,27,513584,4,0 ,14,27,513592,4,0 ,14,27,513600,5,0 ,44,15152,3659332,56,0 ,17,923,6805060,32,0 ,44,15152,3135044,256,0 ,14,27,513608,6,0 ,14,27,513616,6,0 ,14,27,513624,6,0 ,14,27,513632,6,0 ,14,27,513640,6,0 ,14,27,513648,6,0 ,14,27,513656,6,0 ,14,27,513664,3,0 ,20,20920,15193730,4592,0 ,17,923,9950852,80,0 ,44,15152,2086532,16,0 ,17,923,9426564,48,0 ,14,27,513672,6,0 ,14,27,513680,6,0 ,14,27,513688,6,0 ,14,27,513696,6,0 ,20,16902,4183714,60,0 ,14,27,513704,5,0 ,14,27,513712,3,0 ,14,27,513720,6,0 ,14,27,513728,6,0 ,20,26565,29349570,140,0 ,44,15152,1038020,24,0 ,44,15152,1562308,56,0 ,14,27,513736,6,0 ,14,27,513744,5,0 ,14,27,513752,6,0 ,14,27,513760,3,0 ,14,27,513768,5,0 ,14,27,513776,6,0 ,14,27,513784,6,0 ,14,27,513792,6,0 ,17,923,8902404,32,0 ,44,15152,2086660,24,0 ,45,15153,4708100,40,0 ,17,923,8378116,32,0 ,14,27,513800,6,0 ,14,27,513808,6,0 ,14,27,513816,3,0 ,14,27,513824,6,0 ,14,27,513832,3,0 ,14,27,513840,6,0 ,14,27,513848,6,0 ,14,27,513856,6,0 ,44,15152,513860,72,0 ,17,923,7853892,40,0 ,17,923,6805316,40,0 ,14,27,513864,6,0 ,14,27,513872,6,0 ,14,27,513880,5,0 ,14,27,513888,6,0 ,14,27,513896,6,0 ,14,27,513904,6,0 ,14,27,513912,6,0 ,14,27,513920,5,0 ,44,15152,1038212,32,0 ,44,15152,2611076,24,0 ,14,27,513928,6,0 ,14,27,513936,6,0 ,14,27,513944,6,0 ,14,27,513952,6,0 ,14,27,513960,6,0 ,14,27,513968,6,0 ,14,27,513976,5,0 ,14,27,513984,6,0 ,20,16030,2086850,144,0 ,44,15152,2086852,24,0 ,17,923,7329732,32,0 ,14,27,513992,6,0 ,14,27,514000,6,0 ,14,27,514008,6,0 ,14,27,514016,3,0 ,14,27,514024,6,0 ,14,27,514032,6,0 ,14,27,514040,6,0 ,14,27,514048,6,0 ,17,923,9426948,32,0 ,44,15152,3659780,88,0 ,17,923,8378372,48,0 ,17,923,8902660,40,0 ,14,27,514056,6,0 ,14,27,514064,6,0 ,14,27,514072,5,0 ,14,27,514080,6,0 ,20,19884,10999842,656,0 ,20,25654,26728482,120,0 ,14,27,514088,6,0 ,14,27,514096,6,0 ,14,27,514104,6,0 ,14,27,514112,6,0 ,45,15153,4708420,24,0 ,44,15152,2611268,24,0 ,14,27,514120,6,0 ,14,27,514128,6,0 ,14,27,514136,6,0 ,14,27,514144,6,0 ,14,27,514152,6,0 ,14,27,514160,3,0 ,14,27,514168,6,0 ,14,27,514176,3,0 ,20,16903,4184194,80,0 ,44,15152,1038468,112,0 ,17,923,7854212,40,0 ,17,923,6805636,40,0 ,44,15152,2087044,24,0 ,44,15152,1562756,72,0 ,14,27,514184,6,0 ,14,27,514192,3,0 ,14,27,514200,6,0 ,14,27,514208,6,0 ,20,24856,24631458,296,0 ,14,27,514216,3,0 ,14,27,514224,6,0 ,14,27,514232,6,0 ,14,27,514240,4,0 ,17,923,7329988,24,0 ,14,27,514248,4,0 ,14,27,514256,4,0 ,14,27,514264,6,0 ,14,27,514272,6,0 ,20,21492,16242914,236,0 ,14,27,514280,6,0 ,14,27,514288,4,0 ,14,27,514296,4,0 ,14,27,514304,4,0 ,20,19309,9951490,152,0 ,17,923,9951492,88,0 ,44,15152,2611460,40,0 ,45,15153,4708612,16,0 ,17,923,9427204,24,0 ,14,27,514312,4,0 ,14,27,514320,4,0 ,14,27,514328,4,0 ,14,27,514336,4,0 ,14,27,514344,5,0 ,14,27,514352,6,0 ,14,27,514360,6,0 ,14,27,514368,6,0 ,17,923,8902980,56,0 ,44,15152,2087236,24,0 ,14,27,514376,6,0 ,14,27,514384,5,0 ,14,27,514392,5,0 ,14,27,514400,5,0 ,14,27,514408,5,0 ,14,27,514416,6,0 ,14,27,514424,6,0 ,14,27,514432,6,0 ,17,923,8378756,32,0 ,17,923,7330180,32,0 ,44,15152,514436,48,0 ,45,15153,4708740,16,0 ,14,27,514440,6,0 ,14,27,514448,6,0 ,14,27,514456,6,0 ,14,27,514464,6,0 ,20,20857,14145954,752,0 ,20,26069,27777442,320,0 ,20,25303,25680290,180,0 ,14,27,514472,5,0 ,14,27,514480,5,0 ,14,27,514488,5,0 ,14,27,514496,6,0 ,20,17502,5757378,1156,0 ,17,923,9427396,24,0 ,17,923,7854532,40,0 ,17,923,6805956,24,0 ,14,27,514504,6,0 ,14,27,514512,6,0 ,14,27,514520,6,0 ,14,27,514528,6,0 ,20,17297,5233122,116,0 ,14,27,514536,5,0 ,14,27,514544,6,0 ,14,27,514552,6,0 ,14,27,514560,6,0 ,45,15153,4708868,16,0 ,44,15152,2087428,24,0 ,45,15153,4184580,16,0 ,14,27,514568,6,0 ,14,27,514576,6,0 ,14,27,514584,6,0 ,14,27,514592,6,0 ,20,20444,13097506,80,0 ,14,27,514600,6,0 ,14,27,514608,6,0 ,14,27,514616,6,0 ,14,27,514624,6,0 ,44,15152,2611780,32,0 ,14,27,514632,5,0 ,14,27,514640,6,0 ,14,27,514648,6,0 ,14,27,514656,3,0 ,14,27,514664,6,0 ,14,27,514672,3,0 ,14,27,514680,6,0 ,14,27,514688,3,0 ,17,923,9427588,40,0 ,17,923,7330436,32,0 ,17,923,6806148,24,0 ,45,15153,4184708,24,0 ,45,15153,4708996,16,0 ,17,923,8379012,32,0 ,14,27,514696,6,0 ,14,27,514704,3,0 ,14,27,514712,6,0 ,14,27,514720,3,0 ,20,15559,1039010,340,0 ,14,27,514728,6,0 ,14,27,514736,3,0 ,14,27,514744,6,0 ,14,27,514752,3,0 ,20,16229,3136194,96,0 ,44,15152,3660484,64,0 ,44,15152,2087620,24,0 ,44,15152,1563332,72,0 ,14,27,514760,6,0 ,14,27,514768,3,0 ,14,27,514776,6,0 ,14,27,514784,6,0 ,14,27,514792,3,0 ,14,27,514800,3,0 ,14,27,514808,6,0 ,14,27,514816,6,0 ,20,16904,4184834,60,0 ,17,923,8903428,40,0 ,17,923,7854852,24,0 ,44,15152,514820,48,0 ,45,15153,4709124,56,0 ,14,27,514824,3,0 ,14,27,514832,6,0 ,14,27,514840,3,0 ,14,27,514848,6,0 ,20,24679,24107810,132,0 ,20,26566,29350690,148,0 ,14,27,514856,6,0 ,14,27,514864,6,0 ,14,27,514872,6,0 ,14,27,514880,6,0 ,45,15153,4184900,40,0 ,17,923,6806340,32,0 ,44,15152,2612036,64,0 ,14,27,514888,6,0 ,14,27,514896,6,0 ,14,27,514904,3,0 ,14,27,514912,6,0 ,14,27,514920,3,0 ,14,27,514928,5,0 ,14,27,514936,6,0 ,14,27,514944,3,0 ,17,923,8379268,24,0 ,17,923,7330692,40,0 ,44,15152,2087812,24,0 ,14,27,514952,6,0 ,14,27,514960,5,0 ,14,27,514968,3,0 ,14,27,514976,6,0 ,20,22481,18865058,156,0 ,14,27,514984,5,0 ,14,27,514992,6,0 ,14,27,515000,6,0 ,14,27,515008,6,0 ,17,923,9952196,88,0 ,17,923,7855044,32,0 ,17,923,9427908,24,0 ,14,27,515016,6,0 ,14,27,515024,6,0 ,14,27,515032,6,0 ,14,27,515040,6,0 ,20,25655,26729442,1712,0 ,14,27,515048,6,0 ,14,27,515056,6,0 ,14,27,515064,5,0 ,14,27,515072,3,0 ,44,15152,1039364,24,0 ,14,27,515080,6,0 ,14,27,515088,6,0 ,14,27,515096,5,0 ,14,27,515104,3,0 ,14,27,515112,5,0 ,14,27,515120,6,0 ,14,27,515128,6,0 ,14,27,515136,6,0 ,20,23474,20962370,1176,0 ,20,25834,27253826,372,0 ,20,16031,2088002,148,0 ,20,17961,6806594,1056,0 ,17,923,8903748,64,0 ,17,923,6806596,40,0 ,44,15152,2088004,24,0 ,17,923,8379460,40,0 ,14,27,515144,3,0 ,14,27,515152,6,0 ,14,27,515160,6,0 ,14,27,515168,3,0 ,14,27,515176,6,0 ,14,27,515184,6,0 ,14,27,515192,6,0 ,14,27,515200,6,0 ,17,923,9428100,32,0 ,44,15152,515204,48,0 ,45,15153,4185220,16,0 ,45,15153,5233796,64,0 ,14,27,515208,6,0 ,14,27,515216,6,0 ,14,27,515224,6,0 ,14,27,515232,6,0 ,20,20445,13098146,12,0 ,14,27,515240,6,0 ,14,27,515248,6,0 ,14,27,515256,6,0 ,14,27,515264,5,0 ,45,15153,4709572,56,0 ,17,923,7855300,24,0 ,17,923,7331012,40,0 ,44,15152,1039556,32,0 ,44,15152,3660996,64,0 ,14,27,515272,6,0 ,14,27,515280,5,0 ,14,27,515288,6,0 ,14,27,515296,6,0 ,20,16905,4185314,140,0 ,14,27,515304,6,0 ,14,27,515312,5,0 ,14,27,515320,6,0 ,14,27,515328,6,0 ,20,20446,13098242,84,0 ,45,15153,4185348,200,0 ,44,15152,2088196,48,0 ,44,15152,1563908,48,0 ,14,27,515336,6,0 ,14,27,515344,6,0 ,14,27,515352,6,0 ,14,27,515360,6,0 ,14,27,515368,6,0 ,14,27,515376,6,0 ,14,27,515384,6,0 ,14,27,515392,6,0 ,44,15152,2612548,112,0 ,14,27,515400,5,0 ,14,27,515408,6,0 ,14,27,515416,5,0 ,14,27,515424,6,0 ,14,27,515432,6,0 ,14,27,515440,6,0 ,14,27,515448,6,0 ,14,27,515456,6,0 ,20,17298,5234050,192,0 ,17,923,9428356,24,0 ,17,923,7855492,32,0 ,17,923,6806916,32,0 ,17,923,8379780,48,0 ,14,27,515464,6,0 ,14,27,515472,6,0 ,14,27,515480,6,0 ,14,27,515488,5,0 ,14,27,515496,6,0 ,14,27,515504,6,0 ,14,27,515512,6,0 ,14,27,515520,6,0 ,20,19310,9952706,172,0 ,20,16230,3136962,44,0 ,44,15152,1039812,64,0 ,14,27,515528,6,0 ,14,27,515536,6,0 ,14,27,515544,6,0 ,14,27,515552,6,0 ,14,27,515560,6,0 ,14,27,515568,6,0 ,14,27,515576,6,0 ,14,27,515584,6,0 ,20,21748,16768514,52,0 ,44,15152,515588,24,0 ,17,923,7331332,40,0 ,14,27,515592,6,0 ,14,27,515600,5,0 ,14,27,515608,6,0 ,14,27,515616,6,0 ,14,27,515624,6,0 ,14,27,515632,6,0 ,14,27,515640,6,0 ,14,27,515648,6,0 ,17,923,9428548,32,0 ,44,15152,3137092,376,0 ,17,923,8904260,24,0 ,14,27,515656,6,0 ,14,27,515664,6,0 ,14,27,515672,6,0 ,14,27,515680,6,0 ,14,27,515688,6,0 ,14,27,515696,6,0 ,14,27,515704,5,0 ,14,27,515712,6,0 ,20,17085,4710018,12,0 ,17,923,9952900,96,0 ,17,923,7855748,32,0 ,17,923,6807172,32,0 ,44,15152,2088580,56,0 ,44,15152,1564292,56,0 ,45,15153,4710020,80,0 ,45,15153,5234308,40,0 ,14,27,515720,6,0 ,14,27,515728,6,0 ,14,27,515736,6,0 ,14,27,515744,6,0 ,14,27,515752,5,0 ,14,27,515760,6,0 ,14,27,515768,6,0 ,14,27,515776,6,0 ,44,15152,3661508,24,0 ,44,15152,515780,56,0 ,14,27,515784,6,0 ,14,27,515792,6,0 ,14,27,515800,6,0 ,14,27,515808,6,0 ,20,17086,4710114,644,0 ,20,16616,3661538,96,0 ,14,27,515816,6,0 ,14,27,515824,6,0 ,14,27,515832,6,0 ,14,27,515840,6,0 ,20,24478,23584514,112,0 ,20,23657,21487362,848,0 ,17,923,8904452,72,0 ,17,923,8380164,24,0 ,14,27,515848,6,0 ,14,27,515856,6,0 ,14,27,515864,6,0 ,14,27,515872,6,0 ,20,20700,13623074,584,0 ,20,16231,3137314,72,0 ,14,27,515880,6,0 ,14,27,515888,6,0 ,14,27,515896,6,0 ,14,27,515904,6,0 ,20,24680,24108866,24,0 ,20,25304,25681730,484,0 ,17,923,9428804,24,0 ,17,923,7331652,40,0 ,14,27,515912,6,0 ,14,27,515920,5,0 ,14,27,515928,6,0 ,14,27,515936,6,0 ,14,27,515944,6,0 ,14,27,515952,6,0 ,14,27,515960,6,0 ,14,27,515968,6,0 ,44,15152,3661700,24,0 ,17,923,7856004,48,0 ,17,923,6807428,24,0 ,14,27,515976,6,0 ,14,27,515984,6,0 ,14,27,515992,6,0 ,14,27,516000,6,0 ,20,21749,16768930,356,0 ,20,20447,13098914,440,0 ,14,27,516008,6,0 ,14,27,516016,6,0 ,14,27,516024,6,0 ,14,27,516032,6,0 ,17,923,8380356,24,0 ,44,15152,1040324,32,0 ,45,15153,5234628,32,0 ,14,27,516040,6,0 ,14,27,516048,6,0 ,14,27,516056,6,0 ,14,27,516064,6,0 ,20,18869,8904674,12,0 ,20,26240,28303330,412,0 ,14,27,516072,6,0 ,14,27,516080,6,0 ,14,27,516088,5,0 ,14,27,516096,5,0 ,20,24681,24109058,876,0 ,17,923,9428996,48,0 ,14,27,516104,6,0 ,14,27,516112,6,0 ,14,27,516120,6,0 ,14,27,516128,6,0 ,14,27,516136,6,0 ,14,27,516144,6,0 ,14,27,516152,6,0 ,14,27,516160,6,0 ,20,22223,18341954,1252,0 ,20,18870,8904770,196,0 ,20,21493,16244802,12,0 ,44,15152,3661892,24,0 ,17,923,6807620,24,0 ,44,15152,2089028,24,0 ,44,15152,1564740,56,0 ,14,27,516168,6,0 ,14,27,516176,6,0 ,14,27,516184,5,0 ,14,27,516192,6,0 ,20,15310,516194,860,0 ,14,27,516200,6,0 ,14,27,516208,6,0 ,14,27,516216,6,0 ,14,27,516224,6,0 ,20,22482,18866306,256,0 ,17,923,8380548,32,0 ,17,923,7331972,40,0 ,44,15152,516228,64,0 ,14,27,516232,6,0 ,14,27,516240,6,0 ,14,27,516248,6,0 ,14,27,516256,6,0 ,20,21494,16244898,12,0 ,14,27,516264,6,0 ,14,27,516272,6,0 ,14,27,516280,6,0 ,14,27,516288,6,0 ,45,15153,5234884,24,0 ,44,15152,2613444,48,0 ,44,15152,1040580,160,0 ,14,27,516296,6,0 ,14,27,516304,6,0 ,14,27,516312,6,0 ,14,27,516320,6,0 ,20,16032,2089186,84,0 ,14,27,516328,6,0 ,14,27,516336,6,0 ,14,27,516344,6,0 ,14,27,516352,6,0 ,20,21495,16244994,52,0 ,45,15153,4710660,24,0 ,17,923,7856388,40,0 ,17,923,6807812,48,0 ,44,15152,2089220,24,0 ,44,15152,3662084,24,0 ,14,27,516360,6,0 ,14,27,516368,6,0 ,14,27,516376,5,0 ,14,27,516384,6,0 ,14,27,516392,6,0 ,14,27,516400,6,0 ,14,27,516408,6,0 ,14,27,516416,6,0 ,20,16906,4186434,88,0 ,17,923,8905028,32,0 ,14,27,516424,5,0 ,14,27,516432,6,0 ,14,27,516440,6,0 ,14,27,516448,6,0 ,20,16232,3137890,120,0 ,14,27,516456,6,0 ,14,27,516464,6,0 ,14,27,516472,6,0 ,14,27,516480,6,0 ,17,923,9953668,88,0 ,45,15153,5235076,32,0 ,17,923,8380804,48,0 ,17,923,9429380,32,0 ,14,27,516488,6,0 ,14,27,516496,6,0 ,14,27,516504,6,0 ,14,27,516512,6,0 ,14,27,516520,6,0 ,14,27,516528,6,0 ,14,27,516536,6,0 ,14,27,516544,6,0 ,45,15153,4710852,16,0 ,17,923,7332292,32,0 ,44,15152,2089412,104,0 ,44,15152,3662276,32,0 ,14,27,516552,6,0 ,14,27,516560,6,0 ,14,27,516568,5,0 ,14,27,516576,6,0 ,20,18389,7856610,12,0 ,20,24857,24633826,1068,0 ,20,16617,3662306,280,0 ,14,27,516584,6,0 ,14,27,516592,6,0 ,14,27,516600,6,0 ,14,27,516608,6,0 ,44,15152,1565188,40,0 ,14,27,516616,6,0 ,14,27,516624,5,0 ,14,27,516632,6,0 ,14,27,516640,6,0 ,14,27,516648,6,0 ,14,27,516656,6,0 ,14,27,516664,6,0 ,14,27,516672,6,0 ,20,18390,7856706,12,0 ,17,923,8905284,40,0 ,17,923,7856708,40,0 ,44,15152,2613828,48,0 ,45,15153,4710980,16,0 ,14,27,516680,6,0 ,14,27,516688,6,0 ,14,27,516696,6,0 ,14,27,516704,6,0 ,14,27,516712,6,0 ,14,27,516720,6,0 ,14,27,516728,6,0 ,14,27,516736,6,0 ,20,24479,23585410,240,0 ,20,21146,15721090,460,0 ,17,923,9429636,32,0 ,17,923,6808196,32,0 ,44,15152,516740,56,0 ,45,15153,5235332,112,0 ,14,27,516744,6,0 ,14,27,516752,6,0 ,14,27,516760,5,0 ,14,27,516768,6,0 ,20,21496,16245410,128,0 ,20,18391,7856802,204,0 ,14,27,516776,6,0 ,14,27,516784,6,0 ,14,27,516792,6,0 ,14,27,516800,6,0 ,45,15153,4711108,16,0 ,17,923,7332548,24,0 ,44,15152,3662532,24,0 ,14,27,516808,6,0 ,14,27,516816,6,0 ,14,27,516824,6,0 ,14,27,516832,6,0 ,14,27,516840,5,0 ,14,27,516848,6,0 ,14,27,516856,6,0 ,14,27,516864,6,0 ,17,923,8381188,32,0 ,14,27,516872,6,0 ,14,27,516880,6,0 ,14,27,516888,6,0 ,14,27,516896,6,0 ,20,19311,9954082,204,0 ,14,27,516904,6,0 ,14,27,516912,6,0 ,14,27,516920,6,0 ,14,27,516928,6,0 ,45,15153,4711236,32,0 ,44,15152,1565508,88,0 ,45,15153,4186948,16,0 ,14,27,516936,6,0 ,14,27,516944,6,0 ,14,27,516952,6,0 ,14,27,516960,6,0 ,14,27,516968,5,0 ,14,27,516976,6,0 ,14,27,516984,6,0 ,14,27,516992,6,0 ,20,17299,5235586,12,0 ,20,16033,2089858,84,0 ,17,923,9429892,64,0 ,17,923,7857028,48,0 ,17,923,7332740,32,0 ,17,923,6808452,32,0 ,44,15152,3662724,32,0 ,17,923,8905604,56,0 ,14,27,517000,6,0 ,14,27,517008,6,0 ,14,27,517016,6,0 ,14,27,517024,6,0 ,20,26070,27780002,52,0 ,14,27,517032,6,0 ,14,27,517040,6,0 ,14,27,517048,5,0 ,14,27,517056,6,0 ,45,15153,4187076,96,0 ,44,15152,2614212,40,0 ,14,27,517064,6,0 ,14,27,517072,6,0 ,14,27,517080,6,0 ,14,27,517088,5,0 ,20,17300,5235682,12,0 ,14,27,517096,6,0 ,14,27,517104,3,0 ,14,27,517112,4,0 ,14,27,517120,6,0 ,20,16907,4187138,60,0 ,17,923,8381444,56,0 ,14,27,517128,6,0 ,14,27,517136,6,0 ,14,27,517144,6,0 ,14,27,517152,6,0 ,14,27,517160,3,0 ,14,27,517168,6,0 ,14,27,517176,3,0 ,14,27,517184,6,0 ,20,23252,20440130,740,0 ,20,17301,5235778,24,0 ,17,923,9954372,16,0 ,44,15152,517188,48,0 ,45,15153,4711492,104,0 ,14,27,517192,3,0 ,14,27,517200,6,0 ,14,27,517208,3,0 ,14,27,517216,6,0 ,14,27,517224,6,0 ,14,27,517232,6,0 ,14,27,517240,6,0 ,14,27,517248,3,0 ,44,15152,3662980,32,0 ,17,923,7332996,24,0 ,17,923,6808708,24,0 ,14,27,517256,6,0 ,14,27,517264,6,0 ,14,27,517272,6,0 ,14,27,517280,6,0 ,14,27,517288,6,0 ,14,27,517296,6,0 ,14,27,517304,6,0 ,14,27,517312,6,0 ,17,923,9954500,24,0 ,14,27,517320,6,0 ,14,27,517328,6,0 ,14,27,517336,6,0 ,14,27,517344,6,0 ,14,27,517352,6,0 ,14,27,517360,6,0 ,14,27,517368,6,0 ,14,27,517376,6,0 ,20,17302,5235970,52,0 ,44,15152,2090244,40,0 ,17,923,7857412,48,0 ,44,15152,2614532,24,0 ,14,27,517384,6,0 ,14,27,517392,6,0 ,14,27,517400,6,0 ,14,27,517408,6,0 ,20,16233,3138850,124,0 ,14,27,517416,6,0 ,14,27,517424,6,0 ,14,27,517432,6,0 ,14,27,517440,6,0 ,20,15560,1041730,408,0 ,20,26071,27780418,360,0 ,17,923,8906052,40,0 ,17,923,7333188,40,0 ,17,923,6808900,32,0 ,14,27,517448,6,0 ,14,27,517456,6,0 ,14,27,517464,6,0 ,14,27,517472,6,0 ,14,27,517480,6,0 ,14,27,517488,6,0 ,14,27,517496,6,0 ,14,27,517504,6,0 ,17,923,9954692,32,0 ,44,15152,3663236,56,0 ,17,923,9430404,48,0 ,14,27,517512,6,0 ,14,27,517520,6,0 ,14,27,517528,6,0 ,14,27,517536,6,0 ,14,27,517544,6,0 ,14,27,517552,6,0 ,14,27,517560,6,0 ,14,27,517568,6,0 ,17,923,8381892,40,0 ,44,15152,2614724,48,0 ,44,15152,517572,48,0 ,44,15152,1041860,24,0 ,14,27,517576,6,0 ,14,27,517584,6,0 ,14,27,517592,6,0 ,14,27,517600,6,0 ,20,16908,4187618,316,0 ,14,27,517608,6,0 ,14,27,517616,6,0 ,14,27,517624,6,0 ,14,27,517632,6,0 ,45,15153,5236228,32,0 ,44,15152,1566212,24,0 ,14,27,517640,6,0 ,14,27,517648,6,0 ,14,27,517656,6,0 ,14,27,517664,6,0 ,20,16034,2090530,100,0 ,14,27,517672,6,0 ,14,27,517680,6,0 ,14,27,517688,6,0 ,14,27,517696,6,0 ,44,15152,2090564,88,0 ,17,923,6809156,24,0 ,14,27,517704,6,0 ,14,27,517712,6,0 ,14,27,517720,6,0 ,14,27,517728,6,0 ,20,18871,8906338,108,0 ,14,27,517736,6,0 ,14,27,517744,6,0 ,14,27,517752,6,0 ,14,27,517760,6,0 ,17,923,9954948,24,0 ,17,923,7857796,24,0 ,17,923,7333508,40,0 ,44,15152,1042052,136,0 ,17,923,8906372,64,0 ,14,27,517768,6,0 ,14,27,517776,6,0 ,14,27,517784,6,0 ,14,27,517792,6,0 ,20,21497,16246434,68,0 ,20,17303,5236386,68,0 ,14,27,517800,6,0 ,14,27,517808,6,0 ,14,27,517816,6,0 ,14,27,517824,6,0 ,45,15153,4187844,32,0 ,44,15152,1566404,32,0 ,14,27,517832,6,0 ,14,27,517840,6,0 ,14,27,517848,6,0 ,14,27,517856,6,0 ,14,27,517864,6,0 ,14,27,517872,6,0 ,14,27,517880,6,0 ,14,27,517888,6,0 ,17,923,9430788,24,0 ,17,923,6809348,32,0 ,45,15153,5236484,40,0 ,17,923,8382212,40,0 ,14,27,517896,6,0 ,14,27,517904,6,0 ,14,27,517912,6,0 ,14,27,517920,6,0 ,14,27,517928,6,0 ,14,27,517936,6,0 ,14,27,517944,6,0 ,14,27,517952,6,0 ,20,22941,19916610,676,0 ,17,923,9955140,72,0 ,17,923,7857988,40,0 ,44,15152,2615108,24,0 ,44,15152,517956,24,0 ,44,15152,3663684,32,0 ,14,27,517960,6,0 ,14,27,517968,6,0 ,14,27,517976,6,0 ,14,27,517984,6,0 ,20,15786,1566562,13284,0 ,14,27,517992,6,0 ,14,27,518000,6,0 ,14,27,518008,6,0 ,14,27,518016,6,0 ,45,15153,4712324,96,0 ,14,27,518024,6,0 ,14,27,518032,6,0 ,14,27,518040,6,0 ,14,27,518048,6,0 ,14,27,518056,6,0 ,14,27,518064,6,0 ,14,27,518072,6,0 ,14,27,518080,6,0 ,17,923,9430980,40,0 ,17,923,7333828,56,0 ,44,15152,1566660,120,0 ,45,15153,4188100,48,0 ,14,27,518088,6,0 ,14,27,518096,6,0 ,14,27,518104,6,0 ,14,27,518112,6,0 ,20,25835,27256802,540,0 ,14,27,518120,6,0 ,14,27,518128,6,0 ,14,27,518136,6,0 ,14,27,518144,6,0 ,44,15152,518148,56,0 ,17,923,6809604,32,0 ,44,15152,2615300,32,0 ,14,27,518152,6,0 ,14,27,518160,6,0 ,14,27,518168,6,0 ,14,27,518176,6,0 ,14,27,518184,6,0 ,14,27,518192,6,0 ,14,27,518200,6,0 ,14,27,518208,6,0 ,17,923,8382532,24,0 ,44,15152,3663940,16,0 ,45,15153,5236804,16,0 ,14,27,518216,6,0 ,14,27,518224,6,0 ,14,27,518232,6,0 ,14,27,518240,6,0 ,14,27,518248,6,0 ,14,27,518256,6,0 ,14,27,518264,6,0 ,14,27,518272,6,0 ,20,22483,18868354,292,0 ,17,923,8906884,24,0 ,17,923,7858308,32,0 ,14,27,518280,6,0 ,14,27,518288,6,0 ,14,27,518296,6,0 ,14,27,518304,6,0 ,14,27,518312,6,0 ,14,27,518320,6,0 ,14,27,518328,6,0 ,14,27,518336,6,0 ,20,21498,16246978,284,0 ,20,17304,5236930,12,0 ,45,15153,5236932,16,0 ,44,15152,3664068,16,0 ,14,27,518344,6,0 ,14,27,518352,6,0 ,14,27,518360,6,0 ,14,27,518368,6,0 ,14,27,518376,6,0 ,14,27,518384,6,0 ,14,27,518392,6,0 ,14,27,518400,6,0 ,20,18392,7858434,168,0 ,20,16234,3139842,128,0 ,17,923,9431300,40,0 ,17,923,6809860,32,0 ,44,15152,2615556,32,0 ,44,15152,2091268,40,0 ,17,923,8382724,24,0 ,14,27,518408,6,0 ,14,27,518416,6,0 ,14,27,518424,6,0 ,14,27,518432,6,0 ,20,17305,5237026,184,0 ,14,27,518440,6,0 ,14,27,518448,6,0 ,14,27,518456,6,0 ,14,27,518464,6,0 ,20,16035,2091330,484,0 ,17,923,8907076,72,0 ,44,15152,3664196,16,0 ,45,15153,4188484,16,0 ,45,15153,5237060,16,0 ,14,27,518472,6,0 ,14,27,518480,6,0 ,14,27,518488,6,0 ,14,27,518496,6,0 ,14,27,518504,6,0 ,14,27,518512,6,0 ,14,27,518520,6,0 ,14,27,518528,6,0 ,20,19312,9955714,196,0 ,17,923,9955716,32,0 ,17,923,7858564,32,0 ,17,923,7334276,32,0 ,14,27,518536,6,0 ,14,27,518544,6,0 ,14,27,518552,6,0 ,14,27,518560,6,0 ,14,27,518568,6,0 ,14,27,518576,6,0 ,14,27,518584,6,0 ,14,27,518592,6,0 ,20,18872,8907202,140,0 ,17,923,8382916,40,0 ,44,15152,518596,32,0 ,44,15152,3664324,16,0 ,45,15153,4188612,24,0 ,45,15153,5237188,16,0 ,14,27,518600,6,0 ,14,27,518608,6,0 ,14,27,518616,6,0 ,14,27,518624,6,0 ,14,27,518632,6,0 ,14,27,518640,6,0 ,14,27,518648,6,0 ,14,27,518656,6,0 ,20,24480,23587330,268,0 ,44,15152,3140100,32,0 ,17,923,6810116,40,0 ,44,15152,2615812,120,0 ,14,27,518664,6,0 ,14,27,518672,6,0 ,14,27,518680,6,0 ,14,27,518688,6,0 ,14,27,518696,6,0 ,14,27,518704,6,0 ,14,27,518712,6,0 ,14,27,518720,6,0 ,17,923,9431620,32,0 ,44,15152,2091588,40,0 ,44,15152,3664452,16,0 ,45,15153,5237316,24,0 ,14,27,518728,6,0 ,14,27,518736,6,0 ,14,27,518744,6,0 ,14,27,518752,6,0 ,14,27,518760,6,0 ,14,27,518768,6,0 ,14,27,518776,6,0 ,14,27,518784,6,0 ,17,923,9955972,24,0 ,17,923,7858820,24,0 ,17,923,7334532,24,0 ,45,15153,4188804,24,0 ,45,15153,4713092,48,0 ,14,27,518792,6,0 ,14,27,518800,6,0 ,14,27,518808,6,0 ,14,27,518816,6,0 ,20,16618,3664546,108,0 ,14,27,518824,6,0 ,14,27,518832,6,0 ,14,27,518840,6,0 ,14,27,518848,6,0 ,20,21750,16771778,52,0 ,44,15152,3664580,16,0 ,44,15152,518852,64,0 ,44,15152,1043140,40,0 ,14,27,518856,6,0 ,14,27,518864,6,0 ,14,27,518872,6,0 ,14,27,518880,6,0 ,14,27,518888,6,0 ,14,27,518896,6,0 ,14,27,518904,6,0 ,14,27,518912,6,0 ,17,923,8383236,32,0 ,44,15152,3140356,32,0 ,45,15153,5237508,32,0 ,14,27,518920,6,0 ,14,27,518928,6,0 ,14,27,518936,6,0 ,14,27,518944,6,0 ,14,27,518952,6,0 ,14,27,518960,6,0 ,14,27,518968,6,0 ,14,27,518976,6,0 ,17,923,9956164,72,0 ,17,923,7859012,64,0 ,17,923,7334724,32,0 ,17,923,6810436,40,0 ,44,15152,3664708,64,0 ,45,15153,4188996,64,0 ,17,923,9431876,40,0 ,14,27,518984,6,0 ,14,27,518992,6,0 ,14,27,519000,6,0 ,14,27,519008,6,0 ,14,27,519016,6,0 ,14,27,519024,6,0 ,14,27,519032,6,0 ,14,27,519040,6,0 ,17,923,8907652,32,0 ,44,15152,2091908,48,0 ,44,15152,1567620,1240,0 ,14,27,519048,6,0 ,14,27,519056,6,0 ,14,27,519064,8,0 ,14,27,519072,8,0 ,14,27,519080,8,0 ,14,27,519088,8,0 ,14,27,519096,6,0 ,14,27,519104,6,0 ,14,27,519112,6,0 ,14,27,519120,6,0 ,14,27,519128,6,0 ,14,27,519136,6,0 ,14,27,519144,6,0 ,14,27,519152,6,0 ,14,27,519160,6,0 ,14,27,519168,6,0 ,17,923,8383492,32,0 ,44,15152,1043460,32,0 ,44,15152,3140612,56,0 ,45,15153,4713476,32,0 ,45,15153,5237764,40,0 ,14,27,519176,6,0 ,14,27,519184,6,0 ,14,27,519192,6,0 ,14,27,519200,6,0 ,14,27,519208,6,0 ,14,27,519216,6,0 ,14,27,519224,6,0 ,14,27,519232,6,0 ,17,923,7334980,40,0 ,14,27,519240,6,0 ,14,27,519248,6,0 ,14,27,519256,6,0 ,14,27,519264,6,0 ,20,21751,16772194,12,0 ,14,27,519272,6,0 ,14,27,519280,6,0 ,14,27,519288,6,0 ,14,27,519296,6,0 ,17,923,9432196,32,0 ,17,923,6810756,32,0 ,17,923,8907908,40,0 ,14,27,519304,6,0 ,14,27,519312,6,0 ,14,27,519320,6,0 ,14,27,519328,6,0 ,20,19885,11005090,204,0 ,14,27,519336,6,0 ,14,27,519344,6,0 ,14,27,519352,6,0 ,14,27,519360,6,0 ,20,21752,16772290,292,0 ,20,26241,28306626,96,0 ,44,15152,519364,64,0 ,14,27,519368,6,0 ,14,27,519376,6,0 ,14,27,519384,6,0 ,14,27,519392,6,0 ,20,25084,25160930,1268,0 ,14,27,519400,6,0 ,14,27,519408,6,0 ,14,27,519416,6,0 ,14,27,519424,6,0 ,20,16235,3140866,32,0 ,17,923,8383748,24,0 ,44,15152,2092292,16,0 ,44,15152,1043716,40,0 ,45,15153,4713732,40,0 ,14,27,519432,6,0 ,14,27,519440,6,0 ,14,27,519448,6,0 ,14,27,519456,6,0 ,14,27,519464,6,0 ,14,27,519472,6,0 ,14,27,519480,6,0 ,14,27,519488,6,0 ,20,19086,9432386,52,0 ,45,15153,5238084,16,0 ,17,923,7859524,32,0 ,44,15152,3665220,16,0 ,45,15153,4189508,16,0 ,14,27,519496,6,0 ,14,27,519504,6,0 ,14,27,519512,6,0 ,14,27,519520,6,0 ,20,20448,13102434,160,0 ,14,27,519528,6,0 ,14,27,519536,6,0 ,14,27,519544,6,0 ,14,27,519552,6,0 ,17,923,9956740,64,0 ,17,923,7335300,24,0 ,17,923,6811012,32,0 ,44,15152,2092420,200,0 ,17,923,9432452,32,0 ,14,27,519560,6,0 ,14,27,519568,6,0 ,14,27,519576,6,0 ,14,27,519584,6,0 ,14,27,519592,6,0 ,14,27,519600,6,0 ,14,27,519608,6,0 ,14,27,519616,6,0 ,20,23882,22015426,108,0 ,17,923,8908228,56,0 ,44,15152,2616772,48,0 ,44,15152,3141060,24,0 ,44,15152,3665348,16,0 ,45,15153,4189636,48,0 ,45,15153,5238212,16,0 ,17,923,8383940,32,0 ,14,27,519624,6,0 ,14,27,519632,6,0 ,14,27,519640,6,0 ,14,27,519648,6,0 ,14,27,519656,6,0 ,14,27,519664,6,0 ,14,27,519672,6,0 ,14,27,519680,6,0 ,20,16619,3665410,576,0 ,20,16236,3141122,104,0 ,14,27,519688,6,0 ,14,27,519696,6,0 ,14,27,519704,6,0 ,14,27,519712,6,0 ,20,21946,17296930,1344,0 ,20,18873,8908322,260,0 ,14,27,519720,6,0 ,14,27,519728,6,0 ,14,27,519736,6,0 ,14,27,519744,6,0 ,20,18393,7859778,128,0 ,45,15153,5238340,16,0 ,17,923,7859780,32,0 ,17,923,7335492,48,0 ,44,15152,1044036,56,0 ,44,15152,3665476,16,0 ,45,15153,4714052,64,0 ,14,27,519752,6,0 ,14,27,519760,6,0 ,14,27,519768,6,0 ,14,27,519776,6,0 ,20,25305,25685602,204,0 ,14,27,519784,6,0 ,14,27,519792,6,0 ,14,27,519800,6,0 ,14,27,519808,6,0 ,17,923,9432708,32,0 ,17,923,6811268,32,0 ,44,15152,3141252,40,0 ,14,27,519816,6,0 ,14,27,519824,6,0 ,14,27,519832,6,0 ,14,27,519840,6,0 ,14,27,519848,6,0 ,14,27,519856,6,0 ,14,27,519864,6,0 ,14,27,519872,6,0 ,17,923,8384196,32,0 ,44,15152,519876,64,0 ,44,15152,3665604,48,0 ,45,15153,5238468,24,0 ,14,27,519880,6,0 ,14,27,519888,6,0 ,14,27,519896,6,0 ,14,27,519904,6,0 ,20,19087,9432802,56,0 ,20,17306,5238498,108,0 ,14,27,519912,6,0 ,14,27,519920,6,0 ,14,27,519928,6,0 ,14,27,519936,6,0 ,14,27,519944,6,0 ,14,27,519952,6,0 ,14,27,519960,6,0 ,14,27,519968,6,0 ,14,27,519976,6,0 ,14,27,519984,6,0 ,14,27,519992,6,0 ,14,27,520000,6,0 ,45,15153,4190020,24,0 ,17,923,7860036,48,0 ,44,15152,2617156,48,0 ,14,27,520008,6,0 ,14,27,520016,6,0 ,14,27,520024,6,0 ,14,27,520032,6,0 ,14,27,520040,6,0 ,14,27,520048,6,0 ,14,27,520056,6,0 ,14,27,520064,6,0 ,17,923,9957252,56,0 ,17,923,6811524,32,0 ,45,15153,5238660,56,0 ,17,923,8908676,40,0 ,17,923,9432964,40,0 ,14,27,520072,6,0 ,14,27,520080,6,0 ,14,27,520088,6,0 ,14,27,520096,6,0 ,20,19313,9957282,92,0 ,14,27,520104,6,0 ,14,27,520112,6,0 ,14,27,520120,6,0 ,14,27,520128,6,0 ,20,16909,4190146,60,0 ,20,26242,28307394,444,0 ,17,923,8384452,32,0 ,17,923,7335876,32,0 ,44,15152,3141572,32,0 ,14,27,520136,6,0 ,14,27,520144,6,0 ,14,27,520152,6,0 ,14,27,520160,6,0 ,14,27,520168,6,0 ,14,27,520176,6,0 ,14,27,520184,6,0 ,14,27,520192,6,0 ,45,15153,4190212,56,0 ,44,15152,1044484,96,0 ,14,27,520200,6,0 ,14,27,520208,6,0 ,14,27,520216,6,0 ,14,27,520224,6,0 ,20,20895,14676002,4592,0 ,14,27,520232,6,0 ,14,27,520240,6,0 ,14,27,520248,6,0 ,14,27,520256,6,0 ,20,24317,23064642,640,0 ,45,15153,4714564,32,0 ,44,15152,3665988,80,0 ,14,27,520264,6,0 ,14,27,520272,6,0 ,14,27,520280,6,0 ,14,27,520288,6,0 ,14,27,520296,6,0 ,14,27,520304,6,0 ,14,27,520312,6,0 ,14,27,520320,6,0 ,20,26072,27783298,368,0 ,17,923,6811780,32,0 ,14,27,520328,6,0 ,14,27,520336,6,0 ,14,27,520344,6,0 ,14,27,520352,6,0 ,20,19088,9433250,232,0 ,14,27,520360,6,0 ,14,27,520368,6,0 ,14,27,520376,6,0 ,14,27,520384,6,0 ,17,923,9433284,40,0 ,17,923,7860420,24,0 ,17,923,7336132,48,0 ,44,15152,2617540,48,0 ,44,15152,520388,56,0 ,44,15152,3141828,64,0 ,17,923,8384708,24,0 ,17,923,8908996,64,0 ,14,27,520392,6,0 ,14,27,520400,6,0 ,14,27,520408,6,0 ,14,27,520416,6,0 ,20,21147,15724770,12,0 ,14,27,520424,6,0 ,14,27,520432,6,0 ,14,27,520440,6,0 ,14,27,520448,6,0 ,14,27,520456,6,0 ,14,27,520464,6,0 ,14,27,520472,6,0 ,14,27,520480,6,0 ,20,23883,22016290,200,0 ,20,20858,14151970,316,0 ,14,27,520488,6,0 ,14,27,520496,6,0 ,14,27,520504,6,0 ,14,27,520512,6,0 ,20,21148,15724866,112,0 ,20,16237,3141954,76,0 ,17,923,9957700,32,0 ,45,15153,4714820,24,0 ,45,15153,5239108,16,0 ,14,27,520520,6,0 ,14,27,520528,6,0 ,14,27,520536,6,0 ,14,27,520544,6,0 ,20,20701,13627746,520,0 ,14,27,520552,6,0 ,14,27,520560,6,0 ,14,27,520568,6,0 ,14,27,520576,6,0 ,17,923,8384900,24,0 ,17,923,7860612,56,0 ,17,923,6812036,32,0 ,14,27,520584,6,0 ,14,27,520592,6,0 ,14,27,520600,6,0 ,14,27,520608,6,0 ,20,22484,18870690,116,0 ,20,16910,4190626,104,0 ,20,21499,16249250,200,0 ,14,27,520616,6,0 ,14,27,520624,6,0 ,14,27,520632,6,0 ,14,27,520640,6,0 ,45,15153,5239236,16,0 ,45,15153,4190660,16,0 ,14,27,520648,6,0 ,14,27,520656,6,0 ,14,27,520664,6,0 ,14,27,520672,6,0 ,14,27,520680,6,0 ,14,27,520688,6,0 ,14,27,520696,6,0 ,14,27,520704,6,0 ,20,15561,1044994,12,0 ,17,923,9433604,48,0 ,45,15153,4715012,16,0 ,14,27,520712,6,0 ,14,27,520720,6,0 ,14,27,520728,6,0 ,14,27,520736,6,0 ,14,27,520744,6,0 ,14,27,520752,6,0 ,14,27,520760,6,0 ,14,27,520768,6,0 ,20,18394,7860802,80,0 ,20,17307,5239362,4848,0 ,17,923,9957956,24,0 ,17,923,7336516,32,0 ,44,15152,2617924,48,0 ,45,15153,4190788,64,0 ,45,15153,5239364,120,0 ,17,923,8385092,40,0 ,14,27,520776,6,0 ,14,27,520784,6,0 ,14,27,520792,6,0 ,14,27,520800,6,0 ,20,24481,23589474,992,0 ,20,15562,1045090,12,0 ,20,20449,13103714,304,0 ,14,27,520808,6,0 ,14,27,520816,6,0 ,14,27,520824,6,0 ,14,27,520832,6,0 ,20,19314,9958018,24,0 ,45,15153,4715140,24,0 ,17,923,6812292,32,0 ,44,15152,520836,64,0 ,14,27,520840,6,0 ,14,27,520848,6,0 ,14,27,520856,6,0 ,14,27,520864,6,0 ,14,27,520872,6,0 ,14,27,520880,6,0 ,14,27,520888,6,0 ,14,27,520896,6,0 ,20,15563,1045186,140,0 ,17,923,8909508,24,0 ,44,15152,3142340,104,0 ,44,15152,3666628,56,0 ,14,27,520904,6,0 ,14,27,520912,6,0 ,14,27,520920,6,0 ,14,27,520928,6,0 ,14,27,520936,6,0 ,14,27,520944,6,0 ,14,27,520952,6,0 ,14,27,520960,6,0 ,20,19886,11006722,204,0 ,20,17087,4715266,52,0 ,17,923,9958148,32,0 ,44,15152,1045252,24,0 ,14,27,520968,6,0 ,14,27,520976,6,0 ,14,27,520984,6,0 ,14,27,520992,6,0 ,14,27,521000,6,0 ,14,27,521008,6,0 ,14,27,521016,6,0 ,14,27,521024,6,0 ,20,19315,9958210,136,0 ,45,15153,4715332,16,0 ,17,923,7861060,32,0 ,17,923,7336772,24,0 ,14,27,521032,6,0 ,14,27,521040,6,0 ,14,27,521048,6,0 ,14,27,521056,6,0 ,14,27,521064,6,0 ,14,27,521072,6,0 ,14,27,521080,6,0 ,14,27,521088,6,0 ,17,923,9433988,32,0 ,17,923,6812548,40,0 ,17,923,8385412,32,0 ,17,923,8909700,72,0 ,14,27,521096,6,0 ,14,27,521104,6,0 ,14,27,521112,6,0 ,14,27,521120,6,0 ,20,16238,3142562,136,0 ,14,27,521128,6,0 ,14,27,521136,6,0 ,14,27,521144,6,0 ,14,27,521152,6,0 ,45,15153,4715460,16,0 ,44,15152,2618308,48,0 ,44,15152,2094020,24,0 ,44,15152,1045444,32,0 ,14,27,521160,6,0 ,14,27,521168,6,0 ,14,27,521176,6,0 ,14,27,521184,6,0 ,14,27,521192,6,0 ,14,27,521200,6,0 ,14,27,521208,6,0 ,14,27,521216,6,0 ,17,923,9958404,40,0 ,17,923,7336964,64,0 ,14,27,521224,6,0 ,14,27,521232,6,0 ,14,27,521240,6,0 ,14,27,521248,6,0 ,14,27,521256,6,0 ,14,27,521264,6,0 ,14,27,521272,6,0 ,14,27,521280,6,0 ,45,15153,4715588,32,0 ,17,923,7861316,24,0 ,45,15153,4191300,24,0 ,14,27,521288,6,0 ,14,27,521296,6,0 ,14,27,521304,6,0 ,14,27,521312,6,0 ,14,27,521320,6,0 ,14,27,521328,6,0 ,14,27,521336,6,0 ,14,27,521344,6,0 ,17,923,9434244,32,0 ,44,15152,2094212,24,0 ,44,15152,521348,72,0 ,44,15152,3667076,96,0 ,17,923,8385668,40,0 ,14,27,521352,6,0 ,14,27,521360,6,0 ,14,27,521368,6,0 ,14,27,521376,6,0 ,20,17088,4715682,52,0 ,14,27,521384,6,0 ,14,27,521392,6,0 ,14,27,521400,6,0 ,14,27,521408,6,0 ,20,21149,15725762,112,0 ,20,25306,25687234,496,0 ,20,18395,7861442,204,0 ,44,15152,1045700,64,0 ,17,923,6812868,32,0 ,14,27,521416,6,0 ,14,27,521424,6,0 ,14,27,521432,6,0 ,14,27,521440,6,0 ,20,16911,4191458,312,0 ,14,27,521448,6,0 ,14,27,521456,6,0 ,14,27,521464,6,0 ,14,27,521472,6,0 ,45,15153,4191492,64,0 ,17,923,7861508,40,0 ,14,27,521480,6,0 ,14,27,521488,6,0 ,14,27,521496,6,0 ,14,27,521504,6,0 ,14,27,521512,6,0 ,14,27,521520,6,0 ,14,27,521528,6,0 ,14,27,521536,6,0 ,20,22485,18871618,24,0 ,17,923,9958724,24,0 ,44,15152,2618692,32,0 ,44,15152,2094404,24,0 ,45,15153,4715844,48,0 ,14,27,521544,6,0 ,14,27,521552,6,0 ,14,27,521560,6,0 ,14,27,521568,6,0 ,20,24145,22541666,96,0 ,14,27,521576,6,0 ,14,27,521584,6,0 ,14,27,521592,6,0 ,14,27,521600,6,0 ,17,923,9434500,24,0 ,14,27,521608,6,0 ,14,27,521616,6,0 ,14,27,521624,6,0 ,14,27,521632,6,0 ,14,27,521640,6,0 ,14,27,521648,6,0 ,14,27,521656,6,0 ,14,27,521664,6,0 ,17,923,8910276,32,0 ,17,923,6813124,40,0 ,17,923,8385988,40,0 ,14,27,521672,6,0 ,14,27,521680,6,0 ,14,27,521688,6,0 ,14,27,521696,6,0 ,20,21753,16774626,376,0 ,14,27,521704,6,0 ,14,27,521712,6,0 ,14,27,521720,6,0 ,14,27,521728,6,0 ,20,22486,18871810,396,0 ,17,923,9958916,24,0 ,17,923,7337476,40,0 ,44,15152,2094596,56,0 ,44,15152,3143172,120,0 ,45,15153,5240324,48,0 ,14,27,521736,6,0 ,14,27,521744,6,0 ,14,27,521752,6,0 ,14,27,521760,6,0 ,14,27,521768,6,0 ,14,27,521776,6,0 ,14,27,521784,6,0 ,14,27,521792,6,0 ,20,18874,8910402,132,0 ,20,17089,4716098,52,0 ,17,923,9434692,24,0 ,17,923,7861828,32,0 ,44,15152,2618948,24,0 ,14,27,521800,6,0 ,14,27,521808,6,0 ,14,27,521816,6,0 ,14,27,521824,6,0 ,14,27,521832,6,0 ,14,27,521840,6,0 ,14,27,521848,6,0 ,14,27,521856,6,0 ,14,27,521864,6,0 ,14,27,521872,6,0 ,14,27,521880,6,0 ,14,27,521888,6,0 ,14,27,521896,6,0 ,14,27,521904,6,0 ,14,27,521912,6,0 ,14,27,521920,6,0 ,17,923,9959108,48,0 ,44,15152,521924,64,0 ,44,15152,1046212,88,0 ,45,15153,4716228,48,0 ,17,923,8910532,40,0 ,14,27,521928,6,0 ,14,27,521936,6,0 ,14,27,521944,6,0 ,14,27,521952,6,0 ,14,27,521960,6,0 ,14,27,521968,6,0 ,14,27,521976,6,0 ,14,27,521984,6,0 ,17,923,9434884,32,0 ,17,923,6813444,32,0 ,44,15152,2619140,24,0 ,45,15153,4192004,16,0 ,17,923,8386308,40,0 ,14,27,521992,6,0 ,14,27,522000,6,0 ,14,27,522008,6,0 ,14,27,522016,6,0 ,20,15564,1046306,12,0 ,14,27,522024,6,0 ,14,27,522032,6,0 ,14,27,522040,6,0 ,14,27,522048,6,0 ,17,923,7337796,40,0 ,17,923,7862084,32,0 ,14,27,522056,6,0 ,14,27,522064,6,0 ,14,27,522072,6,0 ,14,27,522080,6,0 ,20,23884,22017890,12,0 ,14,27,522088,6,0 ,14,27,522096,6,0 ,14,27,522104,6,0 ,14,27,522112,6,0 ,20,19316,9959298,1060,0 ,20,15565,1046402,12,0 ,45,15153,5240708,16,0 ,44,15152,3667844,56,0 ,45,15153,4192132,24,0 ,14,27,522120,6,0 ,14,27,522128,6,0 ,14,27,522136,6,0 ,14,27,522144,6,0 ,14,27,522152,6,0 ,14,27,522160,6,0 ,14,27,522168,6,0 ,14,27,522176,6,0 ,20,23885,22017986,136,0 ,44,15152,2095044,48,0 ,44,15152,2619332,24,0 ,14,27,522184,6,0 ,14,27,522192,6,0 ,14,27,522200,6,0 ,14,27,522208,6,0 ,20,21500,16250850,68,0 ,20,15566,1046498,112,0 ,20,16239,3143650,140,0 ,20,17090,4716514,48,0 ,20,19089,9435106,136,0 ,14,27,522216,6,0 ,14,27,522224,6,0 ,14,27,522232,6,0 ,14,27,522240,6,0 ,17,923,9435140,48,0 ,17,923,6813700,32,0 ,45,15153,5240836,24,0 ,17,923,8910852,56,0 ,14,27,522248,6,0 ,14,27,522256,6,0 ,14,27,522264,6,0 ,14,27,522272,6,0 ,14,27,522280,6,0 ,14,27,522288,6,0 ,14,27,522296,6,0 ,14,27,522304,6,0 ,20,21150,15726658,36,0 ,17,923,9959492,24,0 ,17,923,7862340,24,0 ,45,15153,4192324,16,0 ,45,15153,4716612,16,0 ,17,923,8386628,32,0 ,14,27,522312,6,0 ,14,27,522320,6,0 ,14,27,522328,6,0 ,14,27,522336,6,0 ,20,24146,22542434,224,0 ,20,16036,2095202,12,0 ,14,27,522344,6,0 ,14,27,522352,6,0 ,14,27,522360,6,0 ,14,27,522368,6,0 ,44,15152,2619524,56,0 ,17,923,7338116,48,0 ,14,27,522376,6,0 ,14,27,522384,6,0 ,14,27,522392,6,0 ,14,27,522400,6,0 ,14,27,522408,6,0 ,14,27,522416,6,0 ,14,27,522424,6,0 ,14,27,522432,6,0 ,20,16037,2095298,56,0 ,20,25836,27261122,372,0 ,45,15153,5241028,24,0 ,44,15152,522436,16,0 ,45,15153,4192452,88,0 ,45,15153,4716740,16,0 ,14,27,522440,6,0 ,14,27,522448,6,0 ,14,27,522456,6,0 ,14,27,522464,6,0 ,14,27,522472,6,0 ,14,27,522480,6,0 ,14,27,522488,6,0 ,14,27,522496,6,0 ,17,923,9959684,32,0 ,17,923,7862532,72,0 ,17,923,6813956,32,0 ,14,27,522504,6,0 ,14,27,522512,6,0 ,14,27,522520,6,0 ,14,27,522528,6,0 ,14,27,522536,6,0 ,14,27,522544,6,0 ,14,27,522552,6,0 ,14,27,522560,6,0 ,17,923,8386884,32,0 ,44,15152,2095428,24,0 ,44,15152,522564,56,0 ,44,15152,3668292,24,0 ,45,15153,4716868,24,0 ,14,27,522568,6,0 ,14,27,522576,6,0 ,14,27,522584,6,0 ,14,27,522592,6,0 ,20,21151,15726946,104,0 ,20,17091,4716898,32,0 ,20,19887,11008354,148,0 ,14,27,522600,6,0 ,14,27,522608,6,0 ,14,27,522616,6,0 ,14,27,522624,6,0 ,20,23658,21494146,76,0 ,17,923,9435524,32,0 ,44,15152,1046916,48,0 ,45,15153,5241220,16,0 ,14,27,522632,6,0 ,14,27,522640,6,0 ,14,27,522648,6,0 ,14,27,522656,6,0 ,14,27,522664,6,0 ,14,27,522672,6,0 ,14,27,522680,6,0 ,14,27,522688,6,0 ,20,26377,28834242,24,0 ,17,923,8911300,40,0 ,44,15152,3144132,96,0 ,14,27,522696,6,0 ,14,27,522704,6,0 ,14,27,522712,6,0 ,14,27,522720,6,0 ,14,27,522728,6,0 ,14,27,522736,6,0 ,14,27,522744,6,0 ,14,27,522752,6,0 ,20,21501,16251394,204,0 ,17,923,9959940,32,0 ,17,923,7338500,32,0 ,17,923,6814212,24,0 ,44,15152,2095620,24,0 ,44,15152,3668484,56,0 ,45,15153,4717060,24,0 ,45,15153,5241348,240,0 ,14,27,522760,6,0 ,14,27,522768,6,0 ,14,27,522776,6,0 ,14,27,522784,6,0 ,14,27,522792,6,0 ,14,27,522800,6,0 ,14,27,522808,6,0 ,14,27,522816,6,0 ,17,923,8387140,32,0 ,44,15152,2619972,24,0 ,14,27,522824,6,0 ,14,27,522832,6,0 ,14,27,522840,6,0 ,14,27,522848,6,0 ,20,18875,8911458,156,0 ,20,17092,4717154,52,0 ,14,27,522856,6,0 ,14,27,522864,6,0 ,14,27,522872,6,0 ,14,27,522880,6,0 ,20,16038,2095746,752,0 ,20,26378,28834434,640,0 ,17,923,9435780,48,0 ,14,27,522888,6,0 ,14,27,522896,6,0 ,14,27,522904,6,0 ,14,27,522912,6,0 ,14,27,522920,6,0 ,14,27,522928,6,0 ,14,27,522936,6,0 ,14,27,522944,6,0 ,45,15153,4717252,16,0 ,17,923,6814404,32,0 ,44,15152,2095812,24,0 ,14,27,522952,6,0 ,14,27,522960,6,0 ,14,27,522968,6,0 ,14,27,522976,6,0 ,14,27,522984,6,0 ,14,27,522992,6,0 ,14,27,523000,6,0 ,14,27,523008,6,0 ,20,20859,14154498,264,0 ,17,923,9960196,32,0 ,17,923,7338756,32,0 ,44,15152,2620164,24,0 ,44,15152,523012,48,0 ,44,15152,1047300,168,0 ,17,923,8911620,64,0 ,14,27,523016,6,0 ,14,27,523024,6,0 ,14,27,523032,6,0 ,14,27,523040,6,0 ,20,18396,7863074,240,0 ,14,27,523048,6,0 ,14,27,523056,6,0 ,14,27,523064,6,0 ,14,27,523072,6,0 ,20,15311,523074,168,0 ,17,923,8387396,24,0 ,17,923,7863108,32,0 ,45,15153,4717380,32,0 ,14,27,523080,6,0 ,14,27,523088,6,0 ,14,27,523096,6,0 ,14,27,523104,6,0 ,20,23253,20446050,668,0 ,20,24682,24116066,152,0 ,20,15567,1047394,120,0 ,14,27,523112,6,0 ,14,27,523120,6,0 ,14,27,523128,6,0 ,14,27,523136,6,0 ,45,15153,4193156,32,0 ,44,15152,2096004,88,0 ,14,27,523144,6,0 ,14,27,523152,6,0 ,14,27,523160,6,0 ,14,27,523168,6,0 ,14,27,523176,6,0 ,14,27,523184,6,0 ,14,27,523192,6,0 ,14,27,523200,6,0 ,44,15152,3668932,56,0 ,17,923,6814660,40,0 ,44,15152,2620356,32,0 ,14,27,523208,6,0 ,14,27,523216,6,0 ,14,27,523224,6,0 ,14,27,523232,6,0 ,20,23659,21494754,664,0 ,20,20450,13106146,80,0 ,14,27,523240,6,0 ,14,27,523248,6,0 ,14,27,523256,6,0 ,14,27,523264,6,0 ,20,23886,22019074,704,0 ,20,26073,27786242,360,0 ,20,17093,4717570,48,0 ,17,923,9960452,40,0 ,17,923,7339012,40,0 ,17,923,8387588,32,0 ,17,923,9436164,32,0 ,14,27,523272,6,0 ,14,27,523280,6,0 ,14,27,523288,6,0 ,14,27,523296,6,0 ,20,19090,9436194,272,0 ,14,27,523304,6,0 ,14,27,523312,6,0 ,14,27,523320,6,0 ,14,27,523328,6,0 ,20,16240,3144770,72,0 ,45,15153,4717636,16,0 ,17,923,7863364,40,0 ,14,27,523336,6,0 ,14,27,523344,6,0 ,14,27,523352,6,0 ,14,27,523360,6,0 ,20,22942,19922018,1076,0 ,14,27,523368,6,0 ,14,27,523376,6,0 ,14,27,523384,6,0 ,14,27,523392,6,0 ,45,15153,4193412,16,0 ,44,15152,523396,32,0 ,14,27,523400,6,0 ,14,27,523408,6,0 ,14,27,523416,6,0 ,14,27,523424,6,0 ,20,21152,15727778,120,0 ,14,27,523432,6,0 ,14,27,523440,6,0 ,14,27,523448,6,0 ,14,27,523456,6,0 ,45,15153,4717764,32,0 ,44,15152,2620612,24,0 ,44,15152,3144900,64,0 ,14,27,523464,6,0 ,14,27,523472,6,0 ,14,27,523480,6,0 ,14,27,523488,6,0 ,14,27,523496,6,0 ,14,27,523504,6,0 ,14,27,523512,6,0 ,14,27,523520,6,0 ,17,923,9436420,40,0 ,17,923,6814980,48,0 ,45,15153,4193540,16,0 ,17,923,8387844,32,0 ,17,923,8912132,24,0 ,14,27,523528,6,0 ,14,27,523536,6,0 ,14,27,523544,6,0 ,14,27,523552,6,0 ,14,27,523560,6,0 ,14,27,523568,6,0 ,14,27,523576,6,0 ,14,27,523584,6,0 ,20,17962,6815042,584,0 ,17,923,9960772,40,0 ,17,923,7339332,32,0 ,14,27,523592,6,0 ,14,27,523600,6,0 ,14,27,523608,6,0 ,14,27,523616,6,0 ,14,27,523624,6,0 ,14,27,523632,6,0 ,14,27,523640,6,0 ,14,27,523648,6,0 ,20,17094,4717954,96,0 ,45,15153,4193668,16,0 ,17,923,7863684,32,0 ,44,15152,2620804,24,0 ,44,15152,523652,48,0 ,44,15152,3669380,64,0 ,14,27,523656,6,0 ,14,27,523664,6,0 ,14,27,523672,6,0 ,14,27,523680,6,0 ,20,26243,28310946,148,0 ,14,27,523688,6,0 ,14,27,523696,6,0 ,14,27,523704,6,0 ,14,27,523712,6,0 ,17,923,8912324,72,0 ,45,15153,4718020,32,0 ,14,27,523720,6,0 ,14,27,523728,6,0 ,14,27,523736,6,0 ,14,27,523744,6,0 ,20,17503,5766626,84,0 ,14,27,523752,6,0 ,14,27,523760,6,0 ,14,27,523768,6,0 ,14,27,523776,6,0 ,20,19888,11009538,300,0 ,17,923,8388100,40,0 ,45,15153,4193796,24,0 ,14,27,523784,6,0 ,14,27,523792,6,0 ,14,27,523800,6,0 ,14,27,523808,6,0 ,14,27,523816,6,0 ,14,27,523824,6,0 ,14,27,523832,6,0 ,14,27,523840,6,0 ,17,923,9436740,32,0 ,17,923,7339588,40,0 ,44,15152,2620996,48,0 ,44,15152,2096708,56,0 ,14,27,523848,6,0 ,14,27,523856,6,0 ,14,27,523864,6,0 ,14,27,523872,6,0 ,20,20451,13106786,12,0 ,14,27,523880,6,0 ,14,27,523888,6,0 ,14,27,523896,6,0 ,14,27,523904,6,0 ,20,16241,3145346,340,0 ,17,923,9961092,24,0 ,17,923,7863940,40,0 ,17,923,6815364,24,0 ,14,27,523912,6,0 ,14,27,523920,6,0 ,14,27,523928,6,0 ,14,27,523936,6,0 ,20,16912,4193954,108,0 ,14,27,523944,6,0 ,14,27,523952,6,0 ,14,27,523960,6,0 ,14,27,523968,6,0 ,20,20452,13106882,84,0 ,45,15153,4718276,48,0 ,44,15152,3145412,24,0 ,45,15153,4193988,24,0 ,14,27,523976,6,0 ,14,27,523984,6,0 ,14,27,523992,6,0 ,14,27,524000,6,0 ,14,27,524008,6,0 ,14,27,524016,6,0 ,14,27,524024,6,0 ,14,27,524032,6,0 ,44,15152,524036,48,0 ,14,27,524040,6,0 ,14,27,524048,6,0 ,14,27,524056,6,0 ,14,27,524064,6,0 ,20,15568,1048354,144,0 ,14,27,524072,6,0 ,14,27,524080,6,0 ,14,27,524088,6,0 ,14,27,524096,6,0 ,20,18876,8912706,272,0 ,17,923,9961284,32,0 ,17,923,6815556,24,0 ,17,923,8388420,32,0 ,17,923,9436996,48,0 ,14,27,524104,6,0 ,14,27,524112,6,0 ,14,27,524120,6,0 ,14,27,524128,6,0 ,20,24147,22544226,180,0 ,14,27,524136,6,0 ,14,27,524144,6,0 ,14,27,524152,6,0 ,14,27,524160,6,0 ,20,19647,10485634,408,0 ,45,15153,4194180,16,0 ,17,923,7339908,24,0 ,44,15152,3145604,24,0 ,44,15152,3669892,40,0 ,14,27,524168,6,0 ,14,27,524176,6,0 ,14,27,524184,6,0 ,14,27,524192,6,0 ,14,27,524200,6,0 ,14,27,524208,6,0 ,14,27,524216,6,0 ,14,27,524224,6,0 ,44,15152,2621380,48,0 ,17,923,7864260,48,0 ,14,27,524232,6,0 ,14,27,524240,6,0 ,14,27,524248,6,0 ,14,27,524256,6,0 ,14,27,524264,6,0 ,14,27,524272,6,0 ,14,27,524280,6,0 ],"edges":[2,893,1790 ,3,1,10 ,3,2,20 ,2,892,1830 ,3,4,45 ,2,891,1840 ,3,6,55 ,2,15079,606010 ,2,15148,400185 ,3,9,65 ,2,890,1850 ,2,15069,606015 ,2,15147,400190 ,3,13,75 ,2,889,1860 ,2,15048,606020 ,2,15146,400195 ,3,17,90 ,2,888,1870 ,2,15045,606025 ,2,15145,400200 ,3,21,100 ,2,887,1880 ,2,15088,159335 ,2,15144,400205 ,3,25,110 ,2,886,1890 ,2,885,1900 ,2,15143,400210 ,3,29,120 ,2,884,1935 ,2,15142,400240 ,3,32,160 ,2,883,1945 ,2,15141,400245 ,3,35,170 ,2,882,1955 ,2,15140,400250 ,3,38,180 ,2,881,1965 ,2,15139,400255 ,2,15115,22550 ,3,42,190 ,2,880,1980 ,2,15138,400260 ,3,45,210 ,2,879,1990 ,2,15137,400265 ,3,48,220 ,2,878,2000 ,2,15136,400270 ,3,51,230 ,2,877,2010 ,2,15135,400275 ,3,54,240 ,2,876,2060 ,2,15134,400285 ,3,57,295 ,2,875,2070 ,2,15133,400290 ,3,60,305 ,2,874,2080 ,2,15132,400295 ,3,63,315 ,2,873,2090 ,2,15131,400300 ,2,15110,374285 ,3,67,325 ,2,872,2105 ,2,15130,400305 ,2,15111,374295 ,3,71,335 ,2,871,2115 ,2,15129,400310 ,3,74,345 ,2,870,2125 ,2,15128,400315 ,3,77,355 ,2,869,2135 ,2,15127,400320 ,2,15109,22690 ,3,81,365 ,2,868,2160 ,2,15126,400355 ,2,15108,22735 ,3,85,405 ,2,867,2170 ,2,15125,400360 ,3,88,415 ,2,866,2180 ,2,15124,400365 ,3,91,425 ,2,865,2190 ,2,15123,400370 ,3,94,435 ,2,15067,557705 ,2,15122,400375 ,3,97,455 ,2,864,2200 ,2,15066,557710 ,2,15121,400380 ,3,101,465 ,2,863,2210 ,2,15065,557715 ,2,15120,400385 ,3,105,475 ,2,862,2220 ,2,15064,557720 ,2,15119,400390 ,2,15106,22805 ,3,110,485 ,2,861,2230 ,2,15063,557755 ,2,15118,400420 ,3,114,530 ,2,860,2270 ,2,15062,557760 ,2,15117,400425 ,2,859,2280 ,3,119,540 ,2,15061,557765 ,2,15116,400430 ,2,858,2290 ,3,123,550 ,2,15060,557770 ,2,857,2300 ,3,126,560 ,2,15059,557785 ,2,856,2310 ,3,129,570 ,2,15058,557790 ,2,855,2320 ,3,132,580 ,3,133,590 ,2,854,2330 ,2,15078,599855 ,2,853,2340 ,3,137,600 ,2,15075,599870 ,2,852,2375 ,3,140,645 ,2,15074,599875 ,2,851,2385 ,3,143,655 ,2,15057,599880 ,2,15112,224185 ,2,850,2395 ,3,147,665 ,2,15056,599885 ,2,849,2405 ,3,150,675 ,2,15087,14395 ,2,848,2415 ,3,153,690 ,2,15055,599895 ,2,15086,14405 ,2,847,2425 ,3,157,700 ,2,15054,599900 ,2,15085,14415 ,2,846,2435 ,3,161,710 ,2,15053,599905 ,2,15084,14425 ,2,845,2445 ,3,165,720 ,2,15052,599910 ,2,15082,14460 ,2,844,2465 ,3,169,755 ,2,15051,599940 ,2,15081,14470 ,2,15114,418045 ,2,843,2475 ,3,174,765 ,2,15050,599945 ,2,15080,14480 ,2,842,2485 ,3,178,775 ,2,15047,599950 ,2,15077,14490 ,2,841,2495 ,3,182,785 ,2,15044,599955 ,2,15076,14500 ,2,840,2510 ,3,186,810 ,2,15041,599965 ,2,15073,14510 ,2,839,2520 ,3,190,820 ,2,15040,599970 ,2,15072,14520 ,2,838,2530 ,3,194,830 ,2,15039,599975 ,2,15071,14530 ,2,837,2540 ,3,198,840 ,2,15038,599980 ,2,15070,14560 ,2,836,2570 ,3,202,865 ,2,15037,600005 ,2,15049,14570 ,2,835,2580 ,3,206,875 ,2,15035,600010 ,2,15046,14580 ,2,834,2590 ,3,210,885 ,2,15034,600015 ,2,15043,14590 ,2,833,2600 ,3,214,895 ,2,15033,600020 ,2,15042,14600 ,2,832,2620 ,3,218,910 ,2,15032,600025 ,2,15036,14610 ,2,831,2630 ,3,222,920 ,2,15030,600030 ,2,15031,14620 ,3,225,930 ,2,15028,600035 ,2,15029,14630 ,3,228,940 ,2,15027,600040 ,2,15026,600065 ,2,830,2695 ,3,232,985 ,2,15025,14655 ,3,234,995 ,3,235,1005 ,3,236,1015 ,2,15113,540440 ,3,238,1025 ,3,239,1035 ,3,240,1045 ,3,241,1055 ,2,15083,49175 ,3,243,1090 ,2,15068,49185 ,3,245,1100 ,3,246,1110 ,3,247,1120 ,3,248,1135 ,2,15149,375040 ,3,250,1145 ,3,251,1155 ,3,252,1165 ,3,253,1190 ,3,254,1200 ,3,255,1210 ,3,256,1220 ,3,257,1240 ,3,258,1250 ,3,259,1260 ,3,260,1270 ,3,261,1305 ,3,262,1315 ,3,263,1325 ,3,264,1335 ,3,265,1345 ,3,266,1355 ,3,267,1365 ,3,268,1375 ,3,269,1405 ,2,15090,152040 ,3,271,1415 ,2,922,1425 ,2,921,1435 ,2,920,1450 ,2,919,1460 ,2,15107,150350 ,2,15105,280480 ,2,15089,152095 ,2,918,1470 ,2,15104,280490 ,2,917,1480 ,2,15103,280500 ,2,916,1520 ,2,15102,280540 ,2,915,1530 ,2,15101,280550 ,2,914,1540 ,2,15100,280560 ,2,913,1550 ,2,15099,280570 ,2,912,1560 ,2,15098,280580 ,2,911,1570 ,2,15097,280590 ,2,910,1580 ,2,15096,280600 ,2,909,1590 ,2,15095,280610 ,2,908,1615 ,2,15094,280645 ,2,907,1625 ,2,15093,280655 ,2,906,1635 ,2,15092,280665 ,2,905,1645 ,2,15091,280675 ,2,904,1660 ,2,903,1670 ,2,902,1680 ,2,901,1690 ,2,900,1715 ,2,899,1725 ,2,898,1735 ,2,897,1745 ,2,896,1760 ,2,895,1770 ,2,894,1780 ,1,16,250 ,1,16,260 ,1,8,375 ,1,212,3145 ,1,356,5090 ,1,500,6995 ,1,616,8560 ,1,688,9510 ,1,728,10030 ,1,772,10620 ,1,812,11165 ,1,968,13250 ,1,1076,14695 ,1,1136,15505 ,1,1192,16230 ,1,1348,18355 ,1,1532,20805 ,1,1708,23205 ,1,1712,23255 ,1,1716,23315 ,1,1772,24095 ,1,1964,26745 ,1,2012,27380 ,1,2132,29020 ,1,2172,29600 ,1,2284,31105 ,1,2324,31645 ,1,2436,33090 ,1,2464,33455 ,1,2468,33510 ,1,2472,33560 ,1,2648,35945 ,1,2776,37625 ,1,2892,39190 ,1,3132,42440 ,1,3136,42485 ,1,3140,42555 ,1,3164,42855 ,1,3172,42965 ,1,3392,45925 ,1,3560,48110 ,1,3696,49890 ,1,3776,50945 ,1,4348,58665 ,1,4828,65080 ,1,4864,65530 ,1,5440,72955 ,1,5920,79215 ,1,6436,86145 ,1,6952,92880 ,1,7464,99725 ,1,8028,107465 ,1,8496,113840 ,1,8500,113900 ,1,8504,113965 ,1,8508,114020 ,1,8652,116000 ,1,8796,117915 ,1,9100,121940 ,1,9384,125720 ,1,9632,129035 ,1,9688,129795 ,1,9828,131685 ,1,9900,132655 ,1,10008,134025 ,1,10036,134395 ,1,10104,135305 ,1,10108,135385 ,1,10112,135430 ,1,10328,138370 ,1,10404,139400 ,1,10456,140090 ,1,10620,142235 ,1,10708,143360 ,1,10796,144540 ,1,10884,145750 ,1,10888,145800 ,1,10936,146450 ,1,11024,147665 ,1,11236,150555 ,1,11340,151970 ,1,11440,153310 ,1,11520,154380 ,1,11728,157150 ,1,11840,158610 ,1,12088,161960 ,1,12360,165610 ,1,12416,166350 ,1,12880,172765 ,1,13072,175435 ,1,13376,179590 ,1,13664,183495 ,1,13692,183895 ,1,13744,184585 ,1,8,380 ,1,120,1920 ,1,336,4795 ,1,348,4990 ,1,468,6570 ,1,480,6705 ,1,616,8570 ,1,728,10035 ,1,864,11865 ,1,992,13585 ,1,1096,14955 ,1,1348,18365 ,1,1476,20085 ,1,1640,22255 ,1,1776,24145 ,1,2016,27430 ,1,2028,27610 ,1,2164,29480 ,1,2668,36210 ,1,2908,39420 ,1,3312,44870 ,1,3344,45305 ,1,3452,46715 ,1,3476,47065 ,1,3588,48505 ,1,3672,49585 ,1,3908,52750 ,1,4300,58060 ,1,4312,58205 ,1,4356,58795 ,1,4492,60560 ,1,4544,61265 ,1,4672,62940 ,1,4820,64955 ,1,4940,66515 ,1,4952,66670 ,1,5080,68345 ,1,5388,72295 ,1,5444,73015 ,1,5456,73160 ,1,5720,76555 ,1,5868,78525 ,1,6476,86635 ,1,6948,92825 ,1,7332,97950 ,1,7344,98115 ,1,7580,101345 ,1,7652,102365 ,1,7760,103825 ,1,7804,104445 ,1,8108,108565 ,1,8236,110305 ,1,8384,112305 ,1,8396,112455 ,1,8424,112820 ,1,8436,113000 ,1,8724,116995 ,1,11920,159665 ,1,11932,159845 ,1,12912,173215 ,1,12960,173880 ,1,13248,177840 ,1,13876,186440 ,1,14888,200105 ,1,15772,212065 ,1,16028,215600 ,1,16160,217360 ,1,16644,223880 ,1,17908,240715 ,1,18044,242485 ,1,18560,249400 ,1,18728,251685 ,1,18756,252105 ,1,19776,265485 ,1,20196,270875 ,1,20372,273150 ,1,20548,275405 ,1,20636,276535 ,1,20772,278240 ,1,21132,282840 ,1,21244,284290 ,1,21468,287245 ,1,23668,316035 ,1,24300,324310 ,1,24908,332320 ,1,24920,332495 ,1,25068,334530 ,1,25160,335780 ,1,25320,338005 ,1,26400,352470 ,1,26532,354270 ,1,26664,356025 ,1,26988,360410 ,1,29172,383465 ,1,29528,386185 ,1,30728,395385 ,1,33500,417500 ,1,33880,420560 ,1,34368,424540 ,1,35380,432790 ,1,35464,433450 ,1,35652,434975 ,1,35708,435440 ,1,35740,435705 ,1,35752,435800 ,1,35764,435950 ,1,36976,445945 ,1,37136,447285 ,1,37296,448515 ,1,38236,456040 ,1,39264,464325 ,1,39440,465720 ,1,39732,467970 ,1,39864,468970 ,1,40360,472820 ,1,40808,476435 ,1,41312,480540 ,1,41512,482195 ,1,41668,483405 ,1,41680,483500 ,1,41792,484380 ,1,42400,489310 ,1,42588,490910 ,1,42636,491315 ,1,42688,491735 ,1,43404,497530 ,1,43460,498000 ,1,43716,500140 ,1,43856,501240 ,1,43868,501370 ,1,44048,502870 ,1,44060,502990 ,1,44072,503085 ,1,44816,509110 ,1,45164,511860 ,1,45216,512265 ,1,45344,513360 ,1,45508,514705 ,1,50168,552170 ,1,50180,552275 ,1,50376,553915 ,1,50448,554515 ,1,50568,555490 ,1,50640,556070 ,1,50768,557170 ,1,51112,560015 ,1,51828,565865 ,1,51908,566525 ,1,54676,589345 ,1,56436,603865 ,1,58016,616640 ,1,58800,622550 ,1,58956,623750 ,1,61260,641990 ,1,64508,667295 ,1,65368,673950 ,1,65536,265 ,1,65720,2775 ,1,65852,4530 ,1,66116,8110 ,1,67324,24325 ,1,67576,27755 ,1,68036,33935 ,1,68124,35125 ,1,68324,37790 ,1,68788,44080 ,1,71444,79070 ,1,74064,114315 ,1,74344,118070 ,1,74660,122285 ,1,74808,124215 ,1,74820,124385 ,1,74900,125455 ,1,75016,127000 ,1,75048,127445 ,1,75300,130810 ,1,75348,131470 ,1,75424,132480 ,1,75508,133585 ,1,75672,135745 ,1,75860,138325 ,1,75888,138715 ,1,75920,139125 ,1,75932,139300 ,1,75988,140045 ,1,76164,142355 ,1,76452,146190 ,1,76464,146340 ,1,76524,147185 ,1,77036,154110 ,1,77048,154270 ,1,77176,155985 ,1,77396,158865 ,1,77668,162575 ,1,77680,162725 ,1,77976,166685 ,1,78112,168575 ,1,78124,168755 ,1,78544,174540 ,1,78784,177845 ,1,78892,179340 ,1,79184,183270 ,1,79260,184330 ,1,79316,185090 ,1,79392,186145 ,1,79916,193255 ,1,80052,195075 ,1,80180,196840 ,1,80192,196990 ,1,80560,201965 ,1,80968,207535 ,1,81320,212240 ,1,81456,214120 ,1,81568,215645 ,1,82008,221535 ,1,82020,221695 ,1,82076,222435 ,1,82952,234155 ,1,83676,243795 ,1,84288,252025 ,1,84560,255645 ,1,84852,259495 ,1,84908,260210 ,1,85364,266160 ,1,85376,266290 ,1,85700,270470 ,1,85836,272215 ,1,85984,274110 ,1,85996,274270 ,1,86592,281815 ,1,86604,281995 ,1,87100,288475 ,1,87236,290220 ,1,87372,291945 ,1,87744,296725 ,1,88032,300495 ,1,88336,304575 ,1,88932,312520 ,1,88944,312680 ,1,89388,318490 ,1,89984,326215 ,1,89996,326365 ,1,90460,332555 ,1,90764,336725 ,1,91040,340480 ,1,91052,340660 ,1,91380,345020 ,1,91496,346595 ,1,91788,350485 ,1,92216,356235 ,1,92228,356415 ,1,92284,357185 ,1,92456,359490 ,1,92608,361495 ,1,92684,362475 ,1,92820,364370 ,1,93160,368880 ,1,93332,371150 ,1,93380,371800 ,1,93392,371950 ,1,93528,373720 ,1,93604,374725 ,1,93616,374860 ,1,94328,380465 ,1,94356,380685 ,1,94368,380785 ,1,94396,381005 ,1,94428,381250 ,1,94480,381675 ,1,94884,384830 ,1,95036,385985 ,1,95964,393000 ,1,96200,394865 ,1,97180,402565 ,1,97420,404530 ,1,97672,406585 ,1,97696,406765 ,1,97708,406870 ,1,97884,408265 ,1,98256,411320 ,1,98336,412010 ,1,98392,412440 ,1,98600,414055 ,1,98624,414235 ,1,98648,414450 ,1,98660,414550 ,1,98720,415035 ,1,98732,415155 ,1,98916,416580 ,1,99064,417720 ,1,99268,419315 ,1,99316,419725 ,1,100392,428550 ,1,101612,438565 ,1,101680,439070 ,1,101728,439475 ,1,101748,439655 ,1,101760,439750 ,1,101848,440480 ,1,102072,442295 ,1,102084,442395 ,1,102096,442480 ,1,102108,442580 ,1,102160,442990 ,1,102344,444540 ,1,104428,461290 ,1,104532,462160 ,1,104728,463730 ,1,104832,464610 ,1,104844,464700 ,1,104900,465130 ,1,105204,467460 ,1,105392,468920 ,1,105464,469480 ,1,105476,469580 ,1,105580,470345 ,1,106184,475120 ,1,106396,476875 ,1,106620,478660 ,1,106632,478760 ,1,106752,479745 ,1,106764,479840 ,1,107316,484270 ,1,108136,490985 ,1,108244,491910 ,1,108420,493325 ,1,108432,493410 ,1,108492,493930 ,1,108576,494585 ,1,108664,495330 ,1,108676,495440 ,1,109372,501095 ,1,109972,506080 ,1,110284,508635 ,1,111032,514605 ,1,112200,523955 ,1,113384,533660 ,1,113396,533770 ,1,113592,535340 ,1,113688,536110 ,1,113700,536230 ,1,113752,536630 ,1,114316,541215 ,1,114616,543665 ,1,114680,544195 ,1,114744,544665 ,1,114804,545135 ,1,115148,547815 ,1,115440,550095 ,1,115452,550205 ,1,115572,551160 ,1,115584,551245 ,1,115720,552310 ,1,115856,553460 ,1,115992,554580 ,1,116384,557865 ,1,116856,561720 ,1,117308,565410 ,1,117820,569595 ,1,118224,572955 ,1,118488,575090 ,1,118792,577495 ,1,118872,578160 ,1,118924,578620 ,1,118936,578720 ,1,119020,579415 ,1,119288,581605 ,1,119344,582075 ,1,119544,583785 ,1,119676,584875 ,1,120896,594965 ,1,121580,600540 ,1,121756,601945 ,1,121768,602040 ,1,122456,607865 ,1,122788,610615 ,1,123528,616445 ,1,124756,625810 ,1,124892,626905 ,1,125012,627930 ,1,125248,629775 ,1,125608,632700 ,1,125696,633395 ,1,125872,634735 ,1,125904,635000 ,1,125924,635155 ,1,125936,635255 ,1,126096,636465 ,1,126116,636610 ,1,126252,637650 ,1,126264,637745 ,1,126696,641155 ,1,126800,642020 ,1,127036,643890 ,1,127236,645385 ,1,127348,646280 ,1,127396,646670 ,1,127964,651080 ,1,128200,652995 ,1,128380,654390 ,1,129192,660615 ,1,129316,661635 ,1,129328,661725 ,1,129860,665860 ,1,130200,668475 ,1,130608,671615 ,1,130620,671735 ,1,130632,671825 ,1,130772,672885 ,1,130784,672970 ,1,130796,673070 ,1,130908,674000 ,1,131028,674910 ,1,131172,1655 ,1,131236,2505 ,1,131576,7060 ,1,131976,12405 ,1,132036,13205 ,1,132280,16460 ,1,132532,19855 ,1,132544,20020 ,1,132736,22600 ,1,132920,25175 ,1,133512,33135 ,1,133524,33305 ,1,133904,38370 ,1,133952,39010 ,1,134392,44985 ,1,134848,50950 ,1,135720,62620 ,1,135732,62790 ,1,135832,64140 ,1,136264,69765 ,1,136376,71205 ,1,136808,76760 ,1,136928,78330 ,1,137296,83265 ,1,137484,85795 ,1,137832,90385 ,1,137900,91260 ,1,137976,92250 ,1,138064,93395 ,1,138436,98395 ,1,138992,106005 ,1,139088,107310 ,1,139264,109685 ,1,139452,112255 ,1,139956,119095 ,1,140140,121505 ,1,140212,122510 ,1,140384,124740 ,1,140456,125725 ,1,140612,127820 ,1,140712,129135 ,1,140932,132100 ,1,141316,137255 ,1,141952,145700 ,1,142492,153060 ,1,142840,157660 ,1,143392,165085 ,1,143476,166210 ,1,143616,168130 ,1,143772,170305 ,1,143816,170890 ,1,144216,176415 ,1,144900,185745 ,1,144996,187095 ,1,145072,188095 ,1,148040,228210 ,1,148348,232320 ,1,148804,238380 ,1,148896,239610 ,1,149032,241375 ,1,149108,242380 ,1,149172,243215 ,1,149504,247720 ,1,149652,249675 ,1,150092,255590 ,1,150332,258745 ,1,150484,260725 ,1,150528,261285 ,1,150616,262430 ,1,150752,264200 ,1,151264,270820 ,1,151500,273870 ,1,151748,277030 ,1,151788,277525 ,1,151800,277670 ,1,151812,277840 ,1,152364,284930 ,1,152376,285070 ,1,152412,285555 ,1,152424,285720 ,1,152600,288015 ,1,152744,289865 ,1,152756,290030 ,1,153152,295065 ,1,153864,304440 ,1,154420,311840 ,1,154916,318375 ,1,155464,325490 ,1,155960,332050 ,1,156012,332760 ,1,156088,333810 ,1,156288,336530 ,1,156392,338000 ,1,156464,338995 ,1,156524,339810 ,1,156676,341860 ,1,157104,347540 ,1,157116,347725 ,1,157356,350935 ,1,157520,353145 ,1,157808,357010 ,1,157840,357465 ,1,157852,357630 ,1,157864,357790 ,1,158088,360750 ,1,158252,362905 ,1,158412,365125 ,1,158424,365265 ,1,158496,366240 ,1,158620,367900 ,1,158744,369530 ,1,159076,373865 ,1,159124,374510 ,1,159220,375485 ,1,160088,382230 ,1,160100,382340 ,1,160112,382425 ,1,162600,401610 ,1,162728,402660 ,1,162924,404280 ,1,163120,405855 ,1,163172,406290 ,1,163240,406830 ,1,163588,409655 ,1,164016,413125 ,1,164232,414830 ,1,164416,416285 ,1,164660,418185 ,1,164844,419645 ,1,166840,435985 ,1,167224,439145 ,1,168924,452950 ,1,169436,457040 ,1,169948,461150 ,1,170460,465305 ,1,170660,466880 ,1,170752,467555 ,1,170872,468475 ,1,170892,468655 ,1,170980,469340 ,1,171272,471535 ,1,171368,472295 ,1,171536,473595 ,1,171928,476825 ,1,172216,479155 ,1,172260,479545 ,1,172384,480545 ,1,172604,482345 ,1,172728,483295 ,1,172900,484680 ,1,174048,494080 ,1,174196,495305 ,1,174316,496270 ,1,174484,497610 ,1,174504,497750 ,1,174592,498510 ,1,175460,505725 ,1,175784,508325 ,1,176124,510970 ,1,176376,513000 ,1,176396,513195 ,1,176484,513930 ,1,176924,517450 ,1,177348,520785 ,1,177548,522455 ,1,177852,524935 ,1,178024,526375 ,1,178036,526465 ,1,178096,526940 ,1,178148,527360 ,1,178268,528330 ,1,178388,529265 ,1,178652,531465 ,1,178664,531565 ,1,178812,532760 ,1,179440,537765 ,1,179480,538100 ,1,179520,538440 ,1,179656,539500 ,1,179780,540590 ,1,180340,545130 ,1,180532,546645 ,1,182184,560020 ,1,182360,561470 ,1,182492,562595 ,1,182668,564005 ,1,182800,565055 ,1,183024,566870 ,1,183160,567965 ,1,183292,569055 ,1,183424,570170 ,1,184528,579165 ,1,184876,582045 ,1,186504,595525 ,1,187104,600405 ,1,187668,605215 ,1,189284,618180 ,1,189436,619335 ,1,189748,621650 ,1,189760,621730 ,1,189820,622175 ,1,189940,623075 ,1,190060,624020 ,1,190412,626770 ,1,190548,627925 ,1,190700,629115 ,1,190968,631265 ,1,191544,635795 ,1,191824,637925 ,1,191976,639085 ,1,192028,639495 ,1,192728,645070 ,1,194596,659600 ,1,194648,660025 ,1,194920,662175 ,1,195076,663440 ,1,195228,664605 ,1,195804,669005 ,1,209088,167230 ,1,209100,167405 ,1,209112,167560 ,1,209892,178385 ,1,209904,178535 ,1,210096,181115 ,1,210228,182905 ,1,210376,184915 ,1,210508,186765 ,1,210640,188515 ,1,210788,190545 ,1,212024,207310 ,1,212232,210060 ,1,212316,211225 ,1,212400,212345 ,1,212484,213510 ,1,212568,214660 ,1,213128,222160 ,1,213212,223300 ,1,213296,224475 ,1,213380,225585 ,1,213464,226725 ,1,213548,227825 ,1,213692,229710 ,1,213776,230855 ,1,213860,231990 ,1,213944,233100 ,1,214028,234220 ,1,214356,238590 ,1,214368,238750 ,1,214540,241025 ,1,217920,285185 ,1,217932,285355 ,1,219048,299750 ,1,219216,301990 ,1,219384,304250 ,1,219920,311320 ,1,220160,314590 ,1,220332,316805 ,1,220452,318380 ,1,220628,320655 ,1,220772,322555 ,1,220916,324430 ,1,221056,326205 ,1,221196,328030 ,1,221336,329920 ,1,221440,331285 ,1,221580,333205 ,1,221720,335100 ,1,221772,335850 ,1,221836,336730 ,1,221984,338765 ,1,222760,349155 ,1,222836,350135 ,1,223124,354050 ,1,223236,355550 ,1,223340,356955 ,1,223408,357900 ,1,223780,362790 ,1,223928,364835 ,1,224648,374330 ,1,230176,418025 ,1,230388,419730 ,1,230560,421165 ,1,230712,422360 ,1,230848,423495 ,1,231020,424915 ,1,231032,425010 ,1,231112,425680 ,1,231256,426895 ,1,231368,427760 ,1,231444,428395 ,1,231540,429155 ,1,231676,430235 ,1,232288,435205 ,1,232388,436105 ,1,233008,441175 ,1,233020,441295 ,1,233100,441950 ,1,233172,442520 ,1,233248,443145 ,1,233260,443250 ,1,234428,452680 ,1,234440,452765 ,1,234492,453210 ,1,234640,454370 ,1,234652,454465 ,1,234664,454550 ,1,234836,455980 ,1,234920,456620 ,1,235020,457460 ,1,235108,458180 ,1,236292,467605 ,1,236572,469760 ,1,236672,470490 ,1,236844,471805 ,1,236968,472825 ,1,237092,473760 ,1,237192,474580 ,1,237476,476955 ,1,237592,477820 ,1,237672,478470 ,1,237784,479440 ,1,237880,480205 ,1,237996,481195 ,1,238096,481985 ,1,238392,484295 ,1,238480,485015 ,1,238604,486060 ,1,238716,486970 ,1,238812,487735 ,1,238904,488470 ,1,238988,489160 ,1,239072,489820 ,1,239156,490555 ,1,239236,491250 ,1,239324,491995 ,1,239424,492755 ,1,239524,493585 ,1,239620,494370 ,1,239708,495085 ,1,239792,495775 ,1,239868,496405 ,1,239944,496995 ,1,240060,497930 ,1,240072,498030 ,1,240084,498145 ,1,240096,498240 ,1,240108,498340 ,1,240120,498435 ,1,240196,499090 ,1,240272,499705 ,1,240348,500330 ,1,240360,500420 ,1,240512,501660 ,1,240776,503920 ,1,240788,504035 ,1,240960,505425 ,1,240972,505525 ,1,240984,505615 ,1,241004,505790 ,1,241172,507120 ,1,241520,509860 ,1,241764,511795 ,1,242120,514730 ,1,242544,518130 ,1,242960,521400 ,1,243376,524835 ,1,243704,527520 ,1,244036,530210 ,1,244464,533720 ,1,244476,533825 ,1,244536,534330 ,1,245708,543840 ,1,245852,544930 ,1,245904,545345 ,1,246080,546725 ,1,246200,547640 ,1,246376,549000 ,1,246496,549965 ,1,246576,550595 ,1,246736,551860 ,1,246872,552980 ,1,247008,554115 ,1,247260,556200 ,1,247272,556275 ,1,247396,557360 ,1,247532,558495 ,1,247668,559590 ,1,247720,560010 ,1,247856,561130 ,1,247992,562265 ,1,248256,564390 ,1,248392,565505 ,1,248404,565600 ,1,248416,565705 ,1,248428,565805 ,1,248764,568500 ,1,248860,569325 ,1,248936,569995 ,1,249300,572995 ,1,249312,573080 ,1,251120,587980 ,1,251204,588680 ,1,251272,589240 ,1,251472,590935 ,1,251484,591030 ,1,251884,594285 ,1,251976,595030 ,1,252116,596145 ,1,252192,596775 ,1,252356,598165 ,1,252424,598675 ,1,252492,599240 ,1,252572,599890 ,1,252652,600535 ,1,252732,601185 ,1,252812,601810 ,1,252992,603395 ,1,253076,604160 ,1,253088,604235 ,1,253176,604955 ,1,253544,607990 ,1,253556,608130 ,1,253644,608890 ,1,253744,609665 ,1,254556,616110 ,1,254744,617570 ,1,254864,618510 ,1,254960,619245 ,1,255028,619755 ,1,255300,621760 ,1,255572,623820 ,1,255664,624490 ,1,255744,625125 ,1,256056,627645 ,1,256068,627770 ,1,256080,627865 ,1,256140,628375 ,1,256260,629305 ,1,256380,630240 ,1,256748,633225 ,1,256760,633315 ,1,256772,633425 ,1,256852,634035 ,1,256944,634730 ,1,257148,636315 ,1,259592,655435 ,1,259660,655970 ,1,259708,656315 ,1,259720,656405 ,1,259816,657140 ,1,259904,657825 ,1,259956,658230 ,1,260100,659370 ,1,260180,660000 ,1,260316,661035 ,1,260396,661700 ,1,260488,662435 ,1,260552,662935 ,1,260600,663335 ,1,260668,663850 ,1,260748,664500 ,1,260840,665150 ,1,260984,666250 ,1,261132,667420 ,1,261216,668060 ,1,261300,668690 ,1,261400,669445 ,1,261884,673225 ,1,261896,673300 ,1,261952,673760 ,1,262704,7820 ,1,263484,18245 ,1,263620,20080 ,1,263676,20810 ,1,263732,21565 ,1,263996,25245 ,1,264368,30300 ,1,264424,31040 ,1,264664,34190 ,1,267084,66510 ,1,267140,67245 ,1,267196,67985 ,1,267208,68120 ,1,267288,69155 ,1,267348,69945 ,1,267416,70805 ,1,267464,71395 ,1,267828,76090 ,1,267904,77095 ,1,267980,78080 ,1,268032,78805 ,1,268076,79375 ,1,268216,81250 ,1,268344,82940 ,1,268472,84640 ,1,268548,85685 ,1,268676,87400 ,1,268804,89100 ,1,268932,90750 ,1,269084,92715 ,1,269324,95905 ,1,269452,97615 ,1,269532,98705 ,1,269612,99800 ,1,269740,101580 ,1,269888,103580 ,1,270016,105365 ,1,270144,107085 ,1,270272,108820 ,1,270304,109250 ,1,270432,110995 ,1,270560,112715 ,1,270572,112890 ,1,270756,115460 ,1,271048,119335 ,1,271060,119505 ,1,271072,119655 ,1,271084,119830 ,1,271104,120090 ,1,271128,120405 ,1,271160,120790 ,1,271292,122610 ,1,272080,133120 ,1,272104,133420 ,1,272116,133580 ,1,272148,133980 ,1,272180,134405 ,1,272304,136070 ,1,272428,137795 ,1,273152,147445 ,1,273328,149825 ,1,273440,151355 ,1,273536,152670 ,1,273792,156095 ,1,274432,164665 ,1,275524,179655 ,1,275536,179820 ,1,275776,183060 ,1,275940,185325 ,1,276088,187365 ,1,276120,187785 ,1,302984,476690 ,1,303008,476905 ,1,307672,514850 ,1,309304,528065 ,1,309476,529400 ,1,309576,530235 ,1,309636,530745 ,1,311612,546695 ,1,311624,546805 ,1,311684,547245 ,1,311808,548190 ,1,312432,553170 ,1,312524,553960 ,1,312572,554345 ,1,312880,556875 ,1,312924,557290 ,1,313364,560910 ,1,313588,562800 ,1,313620,563065 ,1,313728,563895 ,1,314944,573870 ,1,316228,584415 ,1,316408,585865 ,1,318180,600460 ,1,319248,609415 ,1,319760,613560 ,1,319952,615045 ,1,320216,617080 ,1,322960,638400 ,1,323044,639060 ,1,324520,650645 ,1,326168,663585 ,1,328040,5135 ,1,332392,63495 ,1,335704,107415 ,1,335948,110740 ,1,337136,126685 ,1,337380,129955 ,1,337656,133630 ,1,338000,138265 ,1,340272,168805 ,1,341164,181065 ,1,342088,193605 ,1,342196,195070 ,1,343196,208650 ,1,343208,208800 ,1,343344,210615 ,1,343828,217200 ,1,343924,218505 ,1,344048,220140 ,1,344460,225690 ,1,344516,226455 ,1,344568,227110 ,1,344616,227765 ,1,344668,228480 ,1,344796,230165 ,1,344924,231885 ,1,345064,233740 ,1,345200,235525 ,1,345328,237275 ,1,345500,239560 ,1,345512,239710 ,1,345524,239880 ,1,345536,240030 ,1,345952,245545 ,1,346900,258230 ,1,348660,280880 ,1,348760,282145 ,1,348936,284445 ,1,349096,286570 ,1,349256,288635 ,1,349600,293025 ,1,350800,308780 ,1,350960,310885 ,1,353116,339590 ,1,353328,342405 ,1,353384,343150 ,1,353436,343815 ,1,354436,357290 ,1,354812,362280 ,1,354892,363365 ,1,355068,365780 ,1,361280,418285 ,1,361292,418365 ,1,361352,418805 ,1,361460,419720 ,1,361572,420675 ,1,361876,423140 ,1,361988,424075 ,1,362336,426955 ,1,362448,427835 ,1,362560,428755 ,1,368812,479065 ,1,369260,482735 ,1,370132,489745 ,1,370320,491340 ,1,371040,497175 ,1,374604,526145 ,1,374616,526245 ,1,375800,535855 ,1,376272,539575 ,1,376416,540810 ,1,376428,540945 ,1,376508,541640 ,1,377104,546335 ,1,377160,546810 ,1,381492,582130 ,1,382016,586485 ,1,382072,586950 ,1,383944,602340 ,1,383956,602455 ,1,384004,602885 ,1,385808,617520 ,1,386752,624625 ,1,387192,628210 ,1,390720,655845 ,1,391056,658440 ,1,391196,659535 ,1,391660,663255 ,1,392008,665885 ,1,392104,666630 ,1,392148,666975 ,1,392220,667545 ,1,392340,668450 ,1,392464,669370 ,1,392592,670350 ,1,392624,670635 ,1,392728,671430 ,1,392804,672045 ,1,392940,673075 ,1,393080,674220 ,1,393152,674760 ,1,393492,4010 ,1,393556,4855 ,1,393612,5620 ,1,393656,6160 ,1,393760,7610 ,1,393852,8845 ,1,394060,11585 ,1,394072,11755 ,1,394416,16365 ,1,395684,33515 ,1,396568,45395 ,1,396592,45720 ,1,396628,46180 ,1,396640,46340 ,1,396908,49845 ,1,397188,53605 ,1,397200,53750 ,1,397212,53945 ,1,397232,54215 ,1,397244,54400 ,1,397272,54740 ,1,397324,55455 ,1,397412,56615 ,1,397604,59205 ,1,397616,59360 ,1,397888,62935 ,1,397952,63805 ,1,397964,63970 ,1,398216,67290 ,1,398544,71510 ,1,398608,72345 ,1,398672,73155 ,1,398792,74690 ,1,398888,75920 ,1,399020,77665 ,1,399228,80420 ,1,399260,80885 ,1,399368,82285 ,1,399500,84070 ,1,399548,84700 ,1,399616,85615 ,1,399648,86065 ,1,399692,86630 ,1,399828,88475 ,1,399940,89920 ,1,399952,90065 ,1,400056,91415 ,1,400076,91660 ,1,400500,97285 ,1,400520,97550 ,1,400584,98440 ,1,400792,101275 ,1,400804,101465 ,1,400932,103235 ,1,400976,103830 ,1,401076,105205 ,1,401548,111600 ,1,401580,112030 ,1,401600,112300 ,1,402432,123475 ,1,402640,126260 ,1,402660,126540 ,1,402680,126810 ,1,402728,127440 ,1,402776,128090 ,1,402808,128495 ,1,402932,130175 ,1,403020,131370 ,1,403084,132230 ,1,403236,134190 ,1,403248,134335 ,1,403316,135255 ,1,403464,137300 ,1,403508,137910 ,1,403520,138055 ,1,403532,138215 ,1,403652,139835 ,1,403696,140430 ,1,404064,145240 ,1,405064,158715 ,1,405288,161730 ,1,405340,162460 ,1,405448,163890 ,1,405460,164085 ,1,405532,165040 ,1,405652,166640 ,1,405664,166800 ,1,405780,168420 ,1,405792,168570 ,1,405856,169495 ,1,405920,170350 ,1,405960,170895 ,1,406032,171895 ,1,406272,175230 ,1,406384,176750 ,1,406488,178185 ,1,406696,180995 ,1,406792,182310 ,1,406952,184465 ,1,407100,186555 ,1,407820,196275 ,1,408016,198940 ,1,408068,199620 ,1,408288,202630 ,1,408300,202800 ,1,408388,204015 ,1,408436,204660 ,1,408476,205230 ,1,408508,205660 ,1,408788,209405 ,1,408996,212190 ,1,409168,214555 ,1,409472,218640 ,1,409548,219675 ,1,409644,220960 ,1,409736,222155 ,1,409860,223875 ,1,409868,223995 ,1,410032,226160 ,1,410112,227225 ,1,410188,228265 ,1,410304,229755 ,1,410408,231190 ,1,410472,232035 ,1,410508,232530 ,1,410636,234215 ,1,410712,235205 ,1,410920,238005 ,1,410972,238700 ,1,411032,239480 ,1,411284,242790 ,1,411360,243845 ,1,411392,244255 ,1,411560,246505 ,1,411660,247875 ,1,411736,248875 ,1,411812,249890 ,1,411900,251075 ,1,411936,251565 ,1,412704,261690 ,1,412756,262380 ,1,412836,263415 ,1,412912,264400 ,1,412988,265435 ,1,413064,266410 ,1,413088,266745 ,1,413160,267650 ,1,413360,270180 ,1,413384,270515 ,1,413528,272350 ,1,413628,273665 ,1,413732,275005 ,1,413868,276745 ,1,413924,277425 ,1,414912,290160 ,1,415000,291280 ,1,415308,295220 ,1,415344,295685 ,1,415472,297340 ,1,415672,299945 ,1,415812,301845 ,1,415844,302285 ,1,415944,303620 ,1,416044,304970 ,1,416144,306270 ,1,416240,307520 ,1,416340,308840 ,1,416440,310145 ,1,416472,310565 ,1,416536,311450 ,1,416744,314270 ,1,416800,314990 ,1,416972,317195 ,1,416984,317360 ,1,417112,319035 ,1,417812,328140 ,1,417984,330440 ,1,418064,331505 ,1,418076,331660 ,1,418212,333545 ,1,418224,333690 ,1,418360,335560 ,1,418496,337450 ,1,418632,339325 ,1,418644,339485 ,1,418816,341775 ,1,418896,342830 ,1,418992,344080 ,1,419080,345295 ,1,419092,345470 ,1,419104,345625 ,1,419692,353520 ,1,419976,357340 ,1,420104,359065 ,1,421144,372900 ,1,421700,378080 ,1,421800,378845 ,1,422004,380435 ,1,422952,387765 ,1,422964,387865 ,1,423668,393175 ,1,424256,397795 ,1,424460,399425 ,1,425016,403855 ,1,425144,404875 ,1,425612,408665 ,1,425624,408750 ,1,426212,413535 ,1,426224,413640 ,1,426428,415280 ,1,426596,416575 ,1,426768,417890 ,1,426988,419635 ,1,427108,420670 ,1,427120,420765 ,1,427292,422155 ,1,427496,423825 ,1,427672,425255 ,1,427808,426445 ,1,428196,429535 ,1,428604,432845 ,1,429040,436475 ,1,429212,437895 ,1,429320,438770 ,1,429452,439860 ,1,429580,440890 ,1,431596,457190 ,1,432152,461630 ,1,432164,461755 ,1,432304,462900 ,1,433380,471290 ,1,433676,473570 ,1,433712,473840 ,1,433724,473960 ,1,433812,474690 ,1,433824,474785 ,1,433932,475685 ,1,434068,476800 ,1,434080,476910 ,1,434556,480800 ,1,434864,483235 ,1,435304,486780 ,1,435316,486885 ,1,435348,487145 ,1,435360,487225 ,1,435564,488905 ,1,435704,490040 ,1,436292,494875 ,1,436412,495885 ,1,436424,495985 ,1,436544,496910 ,1,436716,498335 ,1,436888,499785 ,1,436900,499870 ,1,436912,499975 ,1,436924,500065 ,1,437080,501320 ,1,437092,501435 ,1,437104,501525 ,1,437188,502230 ,1,437292,503145 ,1,437384,503910 ,1,437396,504030 ,1,437408,504120 ,1,437420,504245 ,1,437540,505195 ,1,437768,507020 ,1,437948,508500 ,1,437960,508605 ,1,438156,510105 ,1,438168,510200 ,1,438180,510300 ,1,438544,513220 ,1,438556,513330 ,1,438884,515975 ,1,438896,516085 ,1,439328,519445 ,1,439340,519550 ,1,439448,520400 ,1,439612,521760 ,1,439972,524735 ,1,440080,525645 ,1,440092,525745 ,1,440104,525855 ,1,440324,527630 ,1,440464,528730 ,1,440576,529605 ,1,440588,529710 ,1,440792,531425 ,1,441104,533985 ,1,441388,536285 ,1,441728,538970 ,1,441892,540320 ,1,441992,541170 ,1,442072,541840 ,1,442304,543730 ,1,443232,550995 ,1,443332,551785 ,1,443544,553520 ,1,443600,553995 ,1,443612,554090 ,1,443664,554510 ,1,443716,554965 ,1,443968,557040 ,1,444216,559110 ,1,444288,559695 ,1,444448,560990 ,1,444496,561405 ,1,444544,561805 ,1,444592,562220 ,1,444612,562390 ,1,444988,565405 ,1,445080,566150 ,1,445500,569600 ,1,445512,569695 ,1,445704,571260 ,1,445716,571395 ,1,445884,572765 ,1,446160,575030 ,1,446204,575410 ,1,446248,575730 ,1,446300,576185 ,1,446600,578570 ,1,446976,581675 ,1,447384,585100 ,1,447608,586945 ,1,447836,588895 ,1,449392,601570 ,1,449404,601680 ,1,449456,602120 ,1,449840,605435 ,1,450016,606865 ,1,450212,608535 ,1,450484,610760 ,1,450612,611805 ,1,450996,614825 ,1,451436,618230 ,1,451820,621115 ,1,451832,621210 ,1,451968,622200 ,1,452272,624495 ,1,452284,624600 ,1,452420,625665 ,1,452556,626775 ,1,452684,627840 ,1,453008,630400 ,1,453100,631165 ,1,453112,631270 ,1,453124,631355 ,1,453136,631445 ,1,453272,632565 ,1,453400,633575 ,1,453488,634270 ,1,453732,636120 ,1,454872,645065 ,1,455132,647100 ,1,455208,647680 ,1,455388,649070 ,1,455516,650030 ,1,455644,651075 ,1,455656,651175 ,1,455720,651730 ,1,455816,652510 ,1,455904,653180 ,1,456144,655020 ,1,456384,656835 ,1,456500,657730 ,1,456752,659685 ,1,456764,659795 ,1,456900,660860 ,1,457036,661950 ,1,457164,662975 ,1,457216,663390 ,1,457344,664385 ,1,457676,666905 ,1,457772,667680 ,1,458052,669805 ,1,458160,670630 ,1,458736,15 ,1,458924,2615 ,1,459052,4335 ,1,459296,7605 ,1,459356,8415 ,1,459596,11590 ,1,459968,16560 ,1,459980,16745 ,1,460100,18360 ,1,460304,21075 ,1,460752,27205 ,1,460812,28050 ,1,460944,29865 ,1,461184,33025 ,1,461356,35380 ,1,461532,37685 ,1,462280,47695 ,1,462648,52560 ,1,462784,54450 ,1,463248,60605 ,1,463344,61880 ,1,463472,63600 ,1,463868,68795 ,1,464120,72025 ,1,464360,75110 ,1,464492,76815 ,1,464788,80760 ,1,464892,82140 ,1,465164,85800 ,1,465260,87060 ,1,465352,88305 ,1,465364,88470 ,1,465492,90145 ,1,465764,93660 ,1,465964,96340 ,1,466092,98070 ,1,466180,99255 ,1,466316,101115 ,1,466376,101985 ,1,466504,103690 ,1,466600,105030 ,1,466656,105785 ,1,466784,107530 ,1,466796,107705 ,1,467188,113005 ,1,467688,119760 ,1,467860,122070 ,1,467948,123220 ,1,468108,125350 ,1,468412,129400 ,1,468540,131150 ,1,468620,132235 ,1,469544,144475 ,1,469832,148430 ,1,470036,151195 ,1,470124,152415 ,1,470640,159245 ,1,470920,163055 ,1,470968,163685 ,1,470980,163845 ,1,471152,166145 ,1,471300,168195 ,1,471324,168525 ,1,471596,172285 ,1,471940,177035 ,1,472076,178925 ,1,472428,183670 ,1,472952,190810 ,1,473200,194130 ,1,473264,195005 ,1,473320,195780 ,1,473616,199775 ,1,473628,199945 ,1,473640,200100 ,1,473652,200285 ,1,473700,200945 ,1,474452,211110 ,1,474464,211275 ,1,474476,211420 ,1,474680,214235 ,1,474732,214940 ,1,474936,217670 ,1,475920,230850 ,1,476272,235530 ,1,476368,236815 ,1,476872,243490 ,1,477956,258015 ,1,477968,258160 ,1,478100,259910 ,1,478304,262520 ,1,478408,263865 ,1,478472,264695 ,1,478644,267010 ,1,478936,270715 ,1,479320,275670 ,1,479480,277665 ,1,479492,277845 ,1,479628,279535 ,1,480140,286190 ,1,480152,286335 ,1,480356,289005 ,1,480412,289710 ,1,480612,292260 ,1,480808,294745 ,1,481184,299640 ,1,481196,299800 ,1,481384,302340 ,1,481756,307260 ,1,482048,311100 ,1,482060,311265 ,1,482072,311445 ,1,482084,311615 ,1,482096,311760 ,1,482300,314545 ,1,482872,321950 ,1,482884,322120 ,1,482896,322270 ,1,483036,324125 ,1,483400,328830 ,1,483688,332695 ,1,483976,336665 ,1,484264,340585 ,1,484336,341560 ,1,484820,348050 ,1,485256,353885 ,1,485612,358700 ,1,486000,363850 ,1,486372,368830 ,1,486440,369725 ,1,486716,373360 ,1,486956,375920 ,1,487276,378400 ,1,487596,380875 ,1,487916,383385 ,1,488152,385210 ,1,488760,389760 ,1,489312,394040 ,1,489884,398520 ,1,489972,399230 ,1,490456,403060 ,1,490792,405780 ,1,491080,408095 ,1,491252,409520 ,1,491336,410195 ,1,491348,410295 ,1,491396,410715 ,1,491536,411875 ,1,491584,412260 ,1,491720,413315 ,1,491856,414370 ,1,492096,416290 ,1,493276,425875 ,1,493288,425955 ,1,493668,429035 ,1,493972,431470 ,1,494512,435880 ,1,494756,437950 ,1,495424,443395 ,1,495456,443645 ,1,495932,447635 ,1,496396,451235 ,1,496492,452030 ,1,496556,452540 ,1,496732,453935 ,1,496936,455625 ,1,497160,457405 ,1,497288,458470 ,1,497752,462190 ,1,498896,471105 ,1,498908,471215 ,1,499028,472150 ,1,499232,473710 ,1,499284,474135 ,1,499336,474575 ,1,499468,475690 ,1,499480,475790 ,1,499728,477770 ,1,499864,478880 ,1,499876,478990 ,1,499888,479090 ,1,500160,481350 ,1,500216,481795 ,1,500336,482760 ,1,500556,484470 ,1,500792,486395 ,1,500952,487685 ,1,501120,489060 ,1,501132,489155 ,1,501260,490220 ,1,501360,491055 ,1,501372,491175 ,1,501384,491280 ,1,501396,491380 ,1,501408,491470 ,1,501420,491585 ,1,501432,491675 ,1,501444,491770 ,1,501456,491865 ,1,501468,491990 ,1,501480,492075 ,1,501748,494250 ,1,502508,500475 ,1,502520,500555 ,1,502632,501465 ,1,502744,502395 ,1,502940,504095 ,1,503052,505020 ,1,503256,506620 ,1,503268,506730 ,1,503328,507225 ,1,503440,508110 ,1,503764,510665 ,1,504180,514050 ,1,504384,515670 ,1,504496,516590 ,1,504656,517860 ,1,504704,518270 ,1,504984,520395 ,1,505152,521790 ,1,505280,522885 ,1,505292,523005 ,1,505352,523475 ,1,505464,524375 ,1,505576,525325 ,1,505772,526915 ,1,505976,528555 ,1,506088,529430 ,1,506416,532125 ,1,506572,533420 ,1,506784,535165 ,1,506832,535535 ,1,507312,539330 ,1,507436,540390 ,1,508580,549500 ,1,508724,550655 ,1,510648,566415 ,1,511296,571740 ,1,511552,573860 ,1,512064,577980 ,1,512640,582770 ,1,513308,588355 ,1,513440,589450 ,1,513876,593030 ,1,513984,593885 ,1,514472,597935 ,1,514584,598805 ,1,515296,604785 ,1,515436,605940 ,1,515556,606910 ,1,516316,613125 ,1,517916,625370 ,1,517992,625965 ,1,518200,627640 ,1,518248,628075 ,1,518384,629145 ,1,518428,629510 ,1,518756,632145 ,1,519152,635250 ,1,519204,635650 ,1,519440,637425 ,1,519468,637655 ,1,519580,638510 ,1,519708,639500 ,1,519868,640820 ,1,520012,641985 ,1,520064,642420 ,1,520392,644940 ,1,520536,646035 ,1,520988,649535 ,1,521428,653100 ,1,521812,656020 ,1,521824,656110 ,1,522028,657670 ,1,522176,658845 ,1,522272,659565 ,1,522428,660785 ,1,522440,660885 ,1,522492,661315 ,1,522504,661395 ,1,522616,662310 ,1,522676,662790 ,1,522836,664050 ,1,522948,664905 ,1,523008,665325 ,1,523088,665945 ,1,523148,666430 ,1,523288,667515 ,1,523376,668195 ,1,523436,668635 ,1,523752,671060 ,1,523812,671535 ,1,523916,672350 ,1,524228,674800 ,1,524336,950 ,1,524396,1755 ,1,524460,2610 ,1,524524,3490 ,1,524584,4235 ,1,524692,5725 ,1,525536,17005 ,1,525720,19485 ,1,525784,20325 ,1,525844,21130 ,1,525904,21945 ,1,525944,22480 ,1,526004,23325 ,1,526036,23765 ,1,526100,24675 ,1,526160,25495 ,1,526220,26295 ,1,526284,27160 ,1,526468,29715 ,1,526576,31155 ,1,526636,31960 ,1,526744,33350 ,1,526804,34140 ,1,526988,36640 ,1,527048,37410 ,1,527112,38255 ,1,527172,39080 ,1,527232,39890 ,1,527416,42375 ,1,527524,43830 ,1,527584,44650 ,1,527644,45480 ,1,529152,65535 ,1,529592,71200 ,1,532188,105740 ,1,532200,105895 ,1,535584,151350 ,1,538572,191970 ,1,538584,192140 ,1,538632,192745 ,1,539052,198450 ,1,539100,199100 ,1,539172,200055 ,1,539232,200850 ,1,539428,203585 ,1,539440,203735 ,1,539452,203895 ,1,539572,205555 ,1,539828,208970 ,1,539876,209620 ,1,539928,210300 ,1,539940,210470 ,1,539952,210610 ,1,539964,210780 ,1,539976,210940 ,1,539988,211115 ,1,540136,213120 ,1,540148,213295 ,1,540272,214985 ,1,541036,225280 ,1,541316,228995 ,1,541548,232105 ,1,541652,233500 ,1,541712,234270 ,1,541724,234435 ,1,542192,240635 ,1,542336,242540 ,1,542348,242690 ,1,542396,243320 ,1,542520,244990 ,1,542700,247450 ,1,542712,247620 ,1,542876,249775 ,1,543648,260045 ,1,543928,263655 ,1,544052,265320 ,1,546096,291585 ,1,547100,304730 ,1,547920,315575 ,1,548696,325715 ,1,550004,343325 ,1,550896,355270 ,1,551040,357235 ,1,551052,357415 ,1,552596,376695 ,1,553076,380440 ,1,553088,380520 ,1,553224,381595 ,1,553552,384185 ,1,553828,386285 ,1,554912,394570 ,1,555008,395315 ,1,555020,395425 ,1,555032,395505 ,1,555260,397255 ,1,555416,398480 ,1,555428,398590 ,1,555656,400325 ,1,555812,401585 ,1,555948,402705 ,1,556268,405315 ,1,556496,407135 ,1,556652,408390 ,1,556788,409515 ,1,557604,416075 ,1,558156,420470 ,1,558240,421160 ,1,558624,424290 ,1,559200,428990 ,1,559256,429440 ,1,559268,429540 ,1,559404,430625 ,1,559416,430715 ,1,559464,431090 ,1,559604,432230 ,1,559616,432325 ,1,559712,433130 ,1,559824,434025 ,1,559896,434600 ,1,559980,435320 ,1,559992,435395 ,1,560388,438745 ,1,560588,440395 ,1,560692,441230 ,1,560928,443135 ,1,561044,444120 ,1,561056,444210 ,1,561384,446930 ,1,561396,447040 ,1,561408,447130 ,1,561504,447925 ,1,561516,448030 ,1,561640,448960 ,1,561764,449955 ,1,561888,450885 ,1,561984,451670 ,1,561996,451770 ,1,562340,454520 ,1,562772,458050 ,1,563052,460215 ,1,563064,460300 ,1,563140,460960 ,1,563264,461980 ,1,563360,462755 ,1,563840,466585 ,1,564004,467845 ,1,564164,469095 ,1,564440,471165 ,1,564508,471705 ,1,564648,472815 ,1,564856,474425 ,1,565020,475825 ,1,565720,481545 ,1,566164,485060 ,1,566200,485375 ,1,566544,488140 ,1,566612,488715 ,1,567624,496990 ,1,568276,502370 ,1,568288,502465 ,1,568764,506410 ,1,570908,523640 ,1,573852,547440 ,1,575460,560530 ,1,575472,560605 ,1,575516,560965 ,1,575764,563060 ,1,576044,565280 ,1,585552,642015 ,1,586468,649130 ,1,586760,651445 ,1,586872,652385 ,1,588736,666790 ,1,588748,666900 ,1,589392,671890 ,1,589444,672280 ,1,589496,672675 ,1,589548,673080 ,1,589596,673475 ,1,589628,673735 ,1,589680,674150 ,1,589728,674510 ,1,589824,270 ,1,589836,450 ,1,590188,5205 ,1,590828,13750 ,1,590840,13895 ,1,591020,16320 ,1,591592,24030 ,1,592912,41835 ,1,593072,44005 ,1,593252,46415 ,1,593592,50855 ,1,594364,61215 ,1,594664,65240 ,1,595308,73540 ,1,595648,77910 ,1,596460,88790 ,1,596536,89770 ,1,596664,91410 ,1,596740,92415 ,1,597496,102630 ,1,597652,104755 ,1,598864,121135 ,1,598992,122855 ,1,599140,124805 ,1,599548,130280 ,1,599748,132955 ,1,601004,149780 ,1,601768,160005 ,1,601948,162455 ,1,602008,163265 ,1,602160,165295 ,1,602344,167805 ,1,602580,171070 ,1,602792,174015 ,1,602944,176085 ,1,603292,180835 ,1,603660,185870 ,1,603956,189890 ,1,604064,191360 ,1,604760,200750 ,1,604916,202915 ,1,605108,205550 ,1,605228,207165 ,1,605568,211680 ,1,605632,212565 ,1,605800,214880 ,1,606880,229330 ,1,606892,229510 ,1,606988,230805 ,1,607176,233305 ,1,607640,239485 ,1,610424,276095 ,1,610468,276640 ,1,610480,276790 ,1,610740,280040 ,1,610752,280190 ,1,610764,280370 ,1,610820,281085 ,1,612060,297075 ,1,613812,320250 ,1,614756,332650 ,1,615516,342985 ,1,615668,345015 ,1,615748,346110 ,1,615760,346260 ,1,615808,346915 ,1,615860,347625 ,1,616540,356780 ,1,616636,358080 ,1,616804,360300 ,1,616932,361965 ,1,617000,362840 ,1,617052,363585 ,1,617092,364145 ,1,617104,364305 ,1,617116,364480 ,1,617820,373775 ,1,618240,377515 ,1,618300,377995 ,1,619420,386690 ,1,619564,387805 ,1,619680,388670 ,1,619880,390155 ,1,619928,390505 ,1,619940,390625 ,1,620000,391075 ,1,620120,391980 ,1,620240,392870 ,1,620356,393810 ,1,620556,395430 ,1,621488,402730 ,1,622136,407970 ,1,622756,413025 ,1,622768,413115 ,1,622828,413610 ,1,622944,414505 ,1,623060,415460 ,1,623176,416360 ,1,623376,417895 ,1,624308,425500 ,1,624320,425605 ,1,628468,459310 ,1,628696,461110 ,1,629048,463985 ,1,629208,465270 ,1,629368,466525 ,1,629692,469015 ,1,629752,469485 ,1,630608,476225 ,1,630932,478850 ,1,631248,481480 ,1,631304,481930 ,1,632556,492115 ,1,632904,494900 ,1,632916,495030 ,1,633444,499350 ,1,634084,504665 ,1,634508,508080 ,1,634520,508175 ,1,634532,508295 ,1,634544,508395 ,1,634600,508825 ,1,634792,510330 ,1,635956,519615 ,1,636344,522815 ,1,636432,523530 ,1,636700,525735 ,1,636828,526785 ,1,636968,527915 ,1,637236,530060 ,1,637540,532535 ,1,637680,533725 ,1,637768,534435 ,1,637984,536185 ,1,638124,537255 ,1,638212,537950 ,1,638352,539100 ,1,638440,539785 ,1,638492,540230 ,1,638504,540345 ,1,638564,540865 ,1,638748,542440 ,1,639140,545500 ,1,639396,547495 ,1,640400,555545 ,1,640576,557035 ,1,641324,563250 ,1,641336,563335 ,1,641848,567430 ,1,641896,567820 ,1,642240,570700 ,1,642584,573540 ,1,642596,573630 ,1,643328,579585 ,1,643360,579835 ,1,643564,581515 ,1,643704,582695 ,1,643716,582825 ,1,643764,583240 ,1,644132,586255 ,1,644144,586345 ,1,644660,590720 ,1,644764,591555 ,1,645004,593450 ,1,645056,593880 ,1,645176,594895 ,1,645520,597700 ,1,645532,597840 ,1,645572,598170 ,1,645632,598620 ,1,645692,599125 ,1,645760,599660 ,1,649192,627000 ,1,649396,628665 ,1,649720,631260 ,1,649880,632555 ,1,650076,634100 ,1,650176,634850 ,1,650368,636340 ,1,650416,636715 ,1,650884,640340 ,1,650896,640445 ,1,650908,640540 ,1,650960,640975 ,1,651100,642145 ,1,651180,642755 ,1,651420,644630 ,1,651548,645580 ,1,651728,647000 ,1,651864,648020 ,1,652068,649605 ,1,652148,650205 ,1,652564,653590 ,1,652748,654995 ,1,653032,657135 ,1,653288,659140 ,1,653300,659235 ,1,653352,659625 ,1,653404,660060 ,1,653708,662490 ,1,653844,663555 ,1,653888,663880 ,1,654124,665680 ,1,654240,666560 ,1,654432,668055 ,1,654444,668170 ,1,654456,668250 ,1,654480,668410 ,1,654532,668820 ,1,654600,669310 ,1,654612,669420 ,1,654796,670870 ,1,654904,671675 ,1,659752,59250 ,1,659764,59415 ,1,659892,61100 ,1,660016,62725 ,1,660120,64145 ,1,660132,64290 ,1,660184,65000 ,1,660272,66150 ,1,660292,66405 ,1,660348,67135 ,1,660572,70055 ,1,661000,75510 ,1,661152,77495 ,1,661264,79005 ,1,661564,83015 ,1,661844,86745 ,1,662016,89025 ,1,662504,95420 ,1,662980,101935 ,1,663040,102745 ,1,663456,108380 ,1,663580,110090 ,1,663708,111830 ,1,664100,117190 ,1,664912,127980 ,1,665016,129340 ,1,665604,137250 ,1,665752,139225 ,1,666060,143260 ,1,666352,147235 ,1,666528,149610 ,1,667020,156280 ,1,667336,160430 ,1,667520,162930 ,1,667596,163970 ,1,668224,172540 ,1,668236,172720 ,1,668360,174435 ,1,668372,174610 ,1,668640,178310 ,1,668652,178490 ,1,669036,183665 ,1,669892,195305 ,1,670052,197485 ,1,670116,198355 ,1,670368,201750 ,1,670556,204325 ,1,671160,212445 ,1,671400,215755 ,1,671460,216550 ,1,671664,219295 ,1,671804,221170 ,1,671864,221935 ,1,672000,223815 ,1,672976,236820 ,1,673640,245660 ,1,675096,264930 ,1,675108,265090 ,1,675120,265275 ,1,675956,276050 ,1,677736,298910 ,1,678408,307815 ,1,678608,310465 ,1,678820,313380 ,1,678944,314985 ,1,679040,316180 ,1,679124,317315 ,1,679196,318260 ,1,679208,318430 ,1,679468,321805 ,1,680876,340655 ,1,681284,346105 ,1,682724,365465 ,1,686472,398340 ,1,686484,398455 ,1,688448,414240 ,1,688944,418150 ,1,689040,418885 ,1,689052,418990 ,1,689180,420070 ,1,689236,420530 ,1,689480,422510 ,1,689652,423925 ,1,689664,424025 ,1,689688,424230 ,1,689700,424330 ,1,689712,424400 ,1,689848,425525 ,1,689860,425655 ,1,689912,426095 ,1,689976,426640 ,1,690084,427490 ,1,690212,428525 ,1,691128,435990 ,1,691868,442060 ,1,692340,445995 ,1,693040,451530 ,1,693052,451645 ,1,693064,451735 ,1,693180,452675 ,1,693192,452760 ,1,693204,452880 ,1,693256,453295 ,1,693320,453775 ,1,693332,453875 ,1,693416,454545 ,1,693512,455360 ,1,693524,455460 ,1,693848,458075 ,1,693860,458185 ,1,693872,458265 ,1,694524,463505 ,1,694828,465945 ,1,695104,468065 ,1,695204,468840 ,1,695320,469710 ,1,696160,476360 ,1,696352,477920 ,1,696408,478355 ,1,696600,479935 ,1,696716,480930 ,1,696832,481870 ,1,696940,482725 ,1,697056,483635 ,1,697248,485150 ,1,697440,486710 ,1,697556,487655 ,1,697620,488195 ,1,697856,490095 ,1,697868,490215 ,1,697880,490310 ,1,697892,490440 ,1,698432,494845 ,1,699800,506105 ,1,700444,511225 ,1,701284,518040 ,1,702032,524030 ,1,702044,524145 ,1,702512,527995 ,1,702688,529355 ,1,702744,529810 ,1,703020,532095 ,1,703076,532540 ,1,703184,533450 ,1,703376,535020 ,1,703568,536555 ,1,703676,537365 ,1,703792,538330 ,1,703992,539905 ,1,704004,540030 ,1,704064,540540 ,1,704184,541580 ,1,704304,542580 ,1,704420,543500 ,1,704620,545065 ,1,705940,555610 ,1,706252,558230 ,1,706396,559405 ,1,707140,565470 ,1,707592,569160 ,1,707960,572190 ,1,708316,575150 ,1,708328,575225 ,1,708340,575335 ,1,708400,575810 ,1,708516,576735 ,1,708632,577640 ,1,708748,578615 ,1,708948,580275 ,1,710268,591305 ,1,710748,595180 ,1,712964,613450 ,1,713388,616740 ,1,713680,619005 ,1,713804,619935 ,1,715560,633690 ,1,715668,634535 ,1,715776,635365 ,1,715968,636840 ,1,716160,638300 ,1,716268,639130 ,1,716364,639880 ,1,716376,639980 ,1,716388,640095 ,1,716524,641185 ,1,716536,641295 ,1,717872,651810 ,1,718088,653500 ,1,718112,653680 ,1,718628,657595 ,1,718832,659200 ,1,718880,659560 ,1,719076,661105 ,1,719320,663075 ,1,719656,665640 ,1,720812,674615 ,1,720896,255 ,1,720908,445 ,1,720920,615 ,1,720984,1500 ,1,721388,6895 ,1,722036,15585 ,1,722048,15715 ,1,723464,34820 ,1,723476,35010 ,1,724108,43510 ,1,729368,113490 ,1,729420,114260 ,1,729740,118560 ,1,732244,152075 ,1,735324,193880 ,1,735592,197530 ,1,736352,207835 ,1,736364,207995 ,1,736376,208155 ,1,736388,208330 ,1,736444,209080 ,1,736508,209920 ,1,736712,212665 ,1,736792,213770 ,1,737592,224580 ,1,737640,225200 ,1,737792,227220 ,1,738028,230385 ,1,738472,236290 ,1,738532,237125 ,1,738848,241275 ,1,738932,242375 ,1,739008,243370 ,1,739776,253720 ,1,740640,265035 ,1,743912,307405 ,1,744052,309275 ,1,744344,313210 ,1,744576,316175 ,1,744660,317310 ,1,744848,319750 ,1,745104,323095 ,1,745180,324120 ,1,745300,325670 ,1,745540,328785 ,1,745604,329670 ,1,745668,330500 ,1,745808,332370 ,1,745916,333880 ,1,746056,335775 ,1,746172,337400 ,1,746252,338495 ,1,746336,339635 ,1,746824,346155 ,1,747172,350820 ,1,747776,358955 ,1,748288,365825 ,1,748452,368030 ,1,748784,372360 ,1,748904,373915 ,1,749096,375855 ,1,749124,376090 ,1,749316,377565 ,1,749620,379905 ,1,749836,381650 ,1,749948,382520 ,1,750580,387360 ,1,750608,387580 ,1,750956,390185 ,1,751036,390800 ,1,751136,391550 ,1,751288,392705 ,1,751416,393685 ,1,751444,393945 ,1,751552,394800 ,1,751744,396275 ,1,751872,397280 ,1,751940,397835 ,1,752068,398860 ,1,752232,400105 ,1,752336,400910 ,1,752488,402120 ,1,752588,402975 ,1,752780,404525 ,1,752948,405895 ,1,754596,419060 ,1,755320,425005 ,1,755416,425815 ,1,756316,433105 ,1,756328,433180 ,1,756340,433305 ,1,756664,435975 ,1,756808,437205 ,1,756916,438080 ,1,756972,438570 ,1,757112,439680 ,1,757124,439795 ,1,757316,441380 ,1,757940,446500 ,1,758084,447700 ,1,758276,449180 ,1,758900,454130 ,1,759092,455730 ,1,759716,460690 ,1,759908,462285 ,1,760532,467235 ,1,760640,468055 ,1,760780,469170 ,1,760792,469240 ,1,760984,470665 ,1,761524,474960 ,1,761632,475850 ,1,761824,477435 ,1,762016,478955 ,1,762520,483055 ,1,762712,484565 ,1,763312,489435 ,1,763324,489540 ,1,763376,489970 ,1,763608,491935 ,1,764472,498990 ,1,764484,499085 ,1,764612,500135 ,1,764692,500785 ,1,764916,502660 ,1,765068,503960 ,1,765936,510880 ,1,766448,515030 ,1,766548,515850 ,1,766748,517445 ,1,766760,517535 ,1,766772,517645 ,1,766824,518070 ,1,767108,520250 ,1,767120,520325 ,1,767132,520455 ,1,767184,520895 ,1,767196,521000 ,1,767208,521085 ,1,767344,522190 ,1,767556,523925 ,1,767780,525825 ,1,768320,530155 ,1,769688,541330 ,1,770308,546255 ,1,770816,550230 ,1,771356,554630 ,1,771444,555330 ,1,771636,556920 ,1,771828,558560 ,1,772332,562735 ,1,772524,564255 ,1,772716,565800 ,1,773068,568645 ,1,773080,568740 ,1,773092,568850 ,1,773104,568945 ,1,773564,572760 ,1,773792,574640 ,1,773952,575940 ,1,774072,576890 ,1,774344,579115 ,1,774356,579210 ,1,774632,581470 ,1,774644,581580 ,1,774656,581670 ,1,774668,581765 ,1,774680,581870 ,1,774868,583505 ,1,774996,584560 ,1,775336,587350 ,1,775432,588190 ,1,775880,591905 ,1,776084,593530 ,1,776192,594460 ,1,777296,603550 ,1,777308,603650 ,1,777484,605140 ,1,777524,605485 ,1,777576,605890 ,1,777800,607735 ,1,777840,608070 ,1,778192,611015 ,1,778660,614715 ,1,779064,617850 ,1,779508,621180 ,1,780008,624930 ,1,780192,626395 ,1,780304,627330 ,1,780748,630895 ,1,780848,631715 ,1,780860,631820 ,1,781224,634680 ,1,781428,636240 ,1,781752,638705 ,1,781764,638805 ,1,781968,640450 ,1,782268,642875 ,1,782788,646920 ,1,783084,649190 ,1,783152,649690 ,1,783332,651145 ,1,783344,651245 ,1,783356,651365 ,1,783368,651450 ,1,783380,651570 ,1,783392,651675 ,1,783404,651785 ,1,783524,652745 ,1,783644,653655 ,1,783656,653745 ,1,787104,9305 ,1,787116,9465 ,1,793312,91915 ,1,793464,93925 ,1,793756,97845 ,1,793880,99505 ,1,793892,99680 ,1,794016,101390 ,1,794108,102690 ,1,794288,105125 ,1,794300,105320 ,1,794312,105480 ,1,794324,105645 ,1,794640,109905 ,1,794652,110095 ,1,795096,116140 ,1,795108,116340 ,1,795120,116495 ,1,795132,116680 ,1,795180,117290 ,1,795192,117440 ,1,795204,117605 ,1,796196,130805 ,1,797520,148540 ,1,797804,152410 ,1,799028,168880 ,1,799264,172115 ,1,799432,174430 ,1,799628,177130 ,1,799640,177285 ,1,799652,177475 ,1,800932,194850 ,1,800944,194995 ,1,800956,195180 ,1,800968,195355 ,1,800980,195520 ,1,800992,195650 ,1,801496,202530 ,1,801612,204120 ,1,801832,207095 ,1,802344,214005 ,1,803096,224150 ,1,803848,234150 ,1,803904,234885 ,1,803956,235615 ,1,804064,237065 ,1,804172,238495 ,1,804660,244940 ,1,804800,246810 ,1,805424,255225 ,1,805564,257055 ,1,805672,258490 ,1,806436,268390 ,1,807324,279730 ,1,807704,284665 ,1,807820,286195 ,1,809020,301730 ,1,809032,301890 ,1,809308,305590 ,1,809664,310250 ,1,809804,312190 ,1,809944,314055 ,1,813768,365060 ,1,813912,366970 ,1,813924,367145 ,1,813972,367795 ,1,815028,378935 ,1,815164,379985 ,1,815372,381645 ,1,815384,381750 ,1,815436,382155 ,1,818392,405135 ,1,818600,406835 ,1,818736,407880 ,1,819072,410665 ,1,819160,411385 ,1,819296,412495 ,1,819432,413565 ,1,820628,423145 ,1,820884,425230 ,1,821768,432395 ,1,822012,434400 ,1,822024,434470 ,1,822124,435315 ,1,822652,439725 ,1,823040,442875 ,1,823340,445395 ,1,823352,445495 ,1,823364,445605 ,1,823376,445715 ,1,823388,445800 ,1,823660,448035 ,1,823672,448115 ,1,823780,448935 ,1,823920,450050 ,1,824116,451570 ,1,824232,452480 ,1,824416,453960 ,1,824456,454285 ,1,824500,454660 ,1,824512,454765 ,1,824524,454870 ,1,824536,454945 ,1,824664,456005 ,1,824736,456560 ,1,824932,458175 ,1,824996,458720 ,1,825308,461145 ,1,825392,461840 ,1,825944,466285 ,1,826460,470220 ,1,826588,471210 ,1,826700,472090 ,1,826796,472860 ,1,826844,473220 ,1,827344,477300 ,1,827748,480600 ,1,828160,483870 ,1,828224,484375 ,1,828828,489280 ,1,828956,490360 ,1,829156,492050 ,1,829292,493095 ,1,829304,493205 ,1,829432,494275 ,1,829796,497210 ,1,830012,499030 ,1,830228,500790 ,1,830444,502580 ,1,830812,505655 ,1,830940,506665 ,1,831068,507695 ,1,831432,510565 ,1,831528,511330 ,1,831656,512350 ,1,832024,515335 ,1,832240,517095 ,1,832252,517210 ,1,832264,517295 ,1,832308,517640 ,1,832320,517735 ,1,832332,517835 ,1,832344,517940 ,1,832672,520485 ,1,833096,523960 ,1,833108,524075 ,1,833232,525120 ,1,833448,526880 ,1,833500,527290 ,1,834108,532225 ,1,834276,533635 ,1,834520,535600 ,1,834864,538320 ,1,835020,539545 ,1,835556,544040 ,1,835676,544920 ,1,835728,545340 ,1,835932,546960 ,1,836028,547695 ,1,836104,548275 ,1,836256,549450 ,1,836412,550705 ,1,836668,552745 ,1,836976,555285 ,1,836988,555405 ,1,837000,555485 ,1,837012,555605 ,1,837068,556045 ,1,837328,558255 ,1,837340,558365 ,1,837680,561125 ,1,837820,562320 ,1,837832,562420 ,1,837844,562520 ,1,837856,562625 ,1,837912,563090 ,1,838024,563965 ,1,838232,565625 ,1,838244,565740 ,1,838256,565835 ,1,838268,565955 ,1,838280,566035 ,1,838292,566115 ,1,838304,566230 ,1,838316,566345 ,1,838328,566410 ,1,838520,567955 ,1,838596,568570 ,1,838788,570220 ,1,838864,570830 ,1,839056,572385 ,1,839132,573050 ,1,839324,574610 ,1,839400,575230 ,1,839488,575935 ,1,839764,578135 ,1,839892,579205 ,1,840432,583700 ,1,840512,584365 ,1,840896,587555 ,1,841136,589595 ,1,841148,589725 ,1,841160,589825 ,1,841172,589930 ,1,841184,590030 ,1,841312,591055 ,1,841376,591580 ,1,841388,591685 ,1,841484,592465 ,1,841496,592560 ,1,841548,592970 ,1,841644,593720 ,1,842064,597175 ,1,842368,599655 ,1,842380,599765 ,1,842492,600655 ,1,842604,601545 ,1,842676,602155 ,1,842764,602960 ,1,843068,605550 ,1,843148,606215 ,1,843300,607410 ,1,843380,608135 ,1,843432,608565 ,1,843656,610380 ,1,843708,610825 ,1,843720,610940 ,1,843732,611050 ,1,847060,636985 ,1,847072,637065 ,1,847084,637145 ,1,847288,638700 ,1,847520,640575 ,1,847884,643480 ,1,848280,646570 ,1,848292,646665 ,1,848868,651140 ,1,848880,651250 ,1,848892,651360 ,1,848904,651455 ,1,849084,652920 ,1,849288,654485 ,1,849476,655885 ,1,849816,658510 ,1,849900,659175 ,1,850216,661660 ,1,850808,666255 ,1,851864,674455 ,1,852448,6700 ,1,852700,10095 ,1,852948,13420 ,1,853152,16135 ,1,853224,17100 ,1,853428,19845 ,1,853848,25615 ,1,853920,26575 ,1,854892,39640 ,1,855084,42220 ,1,855212,43955 ,1,855312,45300 ,1,855440,46990 ,1,855600,49080 ,1,855612,49215 ,1,855624,49360 ,1,855636,49540 ,1,856068,55350 ,1,856200,57110 ,1,857500,74145 ,1,857708,76810 ,1,857856,78800 ,1,857984,80465 ,1,858344,85290 ,1,858672,89665 ,1,859120,95520 ,1,859176,96270 ,1,859576,101750 ,1,859900,106160 ,1,860300,111595 ,1,860544,114965 ,1,860648,116385 ,1,860660,116565 ,1,861048,121655 ,1,861100,122405 ,1,861232,124095 ,1,861392,126265 ,1,861508,127815 ,1,861616,129225 ,1,861628,129405 ,1,862020,134635 ,1,862484,140885 ,1,862584,142175 ,1,862832,145460 ,1,863024,148090 ,1,863616,156100 ,1,863920,160115 ,1,864056,161965 ,1,864068,162135 ,1,864452,167300 ,1,864568,168925 ,1,864764,171630 ,1,864776,171780 ,1,864828,172495 ,1,865540,182260 ,1,865552,182415 ,1,865800,185795 ,1,866016,188740 ,1,866028,188915 ,1,866708,198120 ,1,867220,205110 ,1,867232,205275 ,1,868276,219355 ,1,868584,223470 ,1,868796,226340 ,1,868808,226500 ,1,868820,226680 ,1,869432,234765 ,1,869444,234950 ,1,869924,241330 ,1,870272,245995 ,1,870320,246605 ,1,870464,248570 ,1,870708,251855 ,1,870720,252030 ,1,870992,255640 ,1,871004,255810 ,1,871056,256475 ,1,871324,260000 ,1,873688,290470 ,1,873700,290645 ,1,873712,290790 ,1,873864,292710 ,1,874932,306760 ,1,875328,312000 ,1,875388,312865 ,1,875440,313540 ,1,875560,315085 ,1,875680,316625 ,1,875800,318190 ,1,876004,320860 ,1,876124,322445 ,1,876328,325090 ,1,876732,330385 ,1,876744,330555 ,1,877200,336780 ,1,877316,338385 ,1,877364,339060 ,1,877376,339215 ,1,877476,340540 ,1,877560,341665 ,1,877940,346745 ,1,877952,346920 ,1,878004,347620 ,1,878072,348520 ,1,878084,348695 ,1,878096,348835 ,1,878148,349530 ,1,878160,349675 ,1,878172,349835 ,1,878216,350405 ,1,878348,352210 ,1,878508,354385 ,1,878656,356345 ,1,878804,358390 ,1,878816,358530 ,1,879204,363700 ,1,880636,379495 ,1,881224,384125 ,1,883888,404805 ,1,883900,404930 ,1,883952,405340 ,1,884004,405755 ,1,884840,412565 ,1,885944,421350 ,1,886076,422405 ,1,886196,423405 ,1,886444,425440 ,1,886748,427940 ,1,892028,470465 ,1,892040,470550 ,1,892668,475550 ,1,892864,477170 ,1,894548,490825 ,1,894864,493405 ,1,895120,495530 ,1,895172,495960 ,1,895312,497055 ,1,895572,499215 ,1,896412,506135 ,1,896424,506240 ,1,896728,508705 ,1,897108,511655 ,1,897500,514890 ,1,897836,517570 ,1,898416,522185 ,1,898428,522315 ,1,898540,523260 ,1,898964,526705 ,1,899132,528100 ,1,901312,545715 ,1,901788,549425 ,1,902072,551675 ,1,902612,556120 ,1,902764,557425 ,1,902776,557525 ,1,902788,557635 ,1,903124,560405 ,1,903136,560490 ,1,903684,564955 ,1,903696,565060 ,1,903832,566145 ,1,903952,567105 ,1,904156,568795 ,1,904276,569815 ,1,904480,571480 ,1,905172,577100 ,1,905548,580210 ,1,907504,596370 ,1,907640,597490 ,1,907868,599370 ,1,907880,599455 ,1,908864,607660 ,1,908916,608125 ,1,908968,608570 ,1,909020,609020 ,1,909032,609115 ,1,910168,618070 ,1,910464,620310 ,1,910840,623105 ,1,911292,626645 ,1,911496,628335 ,1,911616,629265 ,1,911628,629370 ,1,911640,629460 ,1,911684,629820 ,1,911968,632100 ,1,912020,632530 ,1,912352,635115 ,1,912364,635225 ,1,912376,635305 ,1,912428,635720 ,1,912632,637245 ,1,912712,637865 ,1,912724,637970 ,1,912928,639525 ,1,912964,639820 ,1,912976,639910 ,1,912988,640015 ,1,913040,640440 ,1,919664,29415 ,1,919756,30675 ,1,919804,31330 ,1,919828,31650 ,1,921284,51025 ,1,921760,57445 ,1,921792,57875 ,1,921844,58580 ,1,922532,67660 ,1,923540,80765 ,1,923552,80930 ,1,923564,81095 ,1,923928,85955 ,1,923960,86365 ,1,923992,86790 ,1,924036,87395 ,1,924252,90245 ,1,924880,98545 ,1,924928,99195 ,1,925300,104325 ,1,925504,107090 ,1,925596,108335 ,1,925800,111105 ,1,925828,111510 ,1,926032,114305 ,1,926108,115365 ,1,926264,117435 ,1,926764,124050 ,1,927420,132860 ,1,927908,139405 ,1,928176,142885 ,1,928240,143745 ,1,928564,148155 ,1,928576,148320 ,1,928628,149025 ,1,928640,149170 ,1,928996,154010 ,1,929752,164130 ,1,930484,174165 ,1,931644,190010 ,1,931916,193675 ,1,932092,196060 ,1,932292,198770 ,1,932452,200940 ,1,932620,203260 ,1,932672,203940 ,1,932872,206665 ,1,932884,206850 ,1,932896,206980 ,1,932992,208255 ,1,933260,211855 ,1,933312,212555 ,1,933404,213840 ,1,933608,216600 ,1,934328,226270 ,1,934340,226450 ,1,934404,227300 ,1,934548,229195 ,1,934780,232325 ,1,935176,237585 ,1,935484,241640 ,1,935496,241800 ,1,935508,241955 ,1,935608,243265 ,1,935620,243440 ,1,935660,244005 ,1,935952,247920 ,1,936048,249185 ,1,936252,251975 ,1,936384,253715 ,1,936700,257900 ,1,936904,260550 ,1,937064,262615 ,1,937112,263245 ,1,937328,266090 ,1,937424,267360 ,1,937492,268200 ,1,937612,269735 ,1,937840,272660 ,1,937876,273145 ,1,937936,273915 ,1,938012,274895 ,1,938092,275945 ,1,938404,279835 ,1,939992,300375 ,1,940380,305585 ,1,940584,308240 ,1,940848,311755 ,1,941384,318835 ,1,941740,323490 ,1,942732,336720 ,1,942744,336900 ,1,942756,337085 ,1,943584,348205 ,1,943980,353515 ,1,944088,354945 ,1,944100,355110 ,1,944692,363035 ,1,944704,363185 ,1,944984,366975 ,1,945036,367690 ,1,945472,373410 ,1,945536,374240 ,1,945780,376465 ,1,945960,377830 ,1,945972,377935 ,1,945984,378025 ,1,946088,378835 ,1,946140,379250 ,1,948436,396935 ,1,948448,397040 ,1,948460,397120 ,1,948472,397220 ,1,948524,397650 ,1,948564,397960 ,1,948732,399310 ,1,949556,405890 ,1,949604,406285 ,1,949644,406630 ,1,950684,415010 ,1,951028,417695 ,1,951168,418755 ,1,951252,419435 ,1,951264,419525 ,1,951384,420555 ,1,951588,422210 ,1,951724,423335 ,1,951808,424020 ,1,952068,426210 ,1,952292,428000 ,1,952384,428760 ,1,952996,433695 ,1,953264,435885 ,1,953404,437105 ,1,953620,438875 ,1,954316,444575 ,1,954820,448675 ,1,957764,472030 ,1,958344,476695 ,1,958468,477700 ,1,958596,478735 ,1,958680,479435 ,1,958908,481325 ,1,959156,483270 ,1,961116,499290 ,1,961240,500280 ,1,961368,501315 ,1,961452,502025 ,1,961976,506370 ,1,962060,507055 ,1,962820,513125 ,1,963032,514845 ,1,963116,515515 ,1,963200,516205 ,1,963284,516880 ,1,963452,518245 ,1,964276,524875 ,1,964288,524960 ,1,964300,525090 ,1,964428,526150 ,1,965324,533425 ,1,965336,533500 ,1,965348,533630 ,1,965360,533715 ,1,965372,533820 ,1,965384,533915 ,1,965396,534045 ,1,965524,535075 ,1,965656,536105 ,1,965948,538415 ,1,965988,538755 ,1,966108,539685 ,1,966276,541145 ,1,967388,549940 ,1,967400,550040 ,1,967500,550840 ,1,967660,552085 ,1,967892,554035 ,1,969884,570395 ,1,970684,576925 ,1,970864,578355 ,1,971212,581245 ,1,971400,582850 ,1,971604,584555 ,1,971960,587485 ,1,971972,587600 ,1,973356,598970 ,1,973368,599070 ,1,973572,600730 ,1,973768,602335 ,1,973884,603360 ,1,973944,603890 ,1,973988,604275 ,1,974020,604540 ,1,974032,604640 ,1,974132,605490 ,1,974336,607120 ,1,974424,607860 ,1,974476,608335 ,1,974680,609985 ,1,974760,610645 ,1,974900,611800 ,1,975048,612965 ,1,975108,613455 ,1,975240,614490 ,1,975372,615530 ,1,975656,617700 ,1,975668,617820 ,1,977780,634305 ,1,978028,636180 ,1,978288,638175 ,1,978340,638575 ,1,978380,638870 ,1,978508,639885 ,1,978752,641900 ,1,979384,646815 ,1,979676,649065 ,1,979920,650960 ,1,979976,651440 ,1,980172,653040 ,1,980504,655555 ,1,981416,662685 ,1,981428,662785 ,1,981440,662875 ,1,981484,663250 ,1,981680,664735 ,1,982060,667670 ,1,982072,667750 ,1,982084,667870 ,1,982288,669365 ,1,982456,670690 ,1,982584,671670 ,1,982664,672315 ,1,982868,673925 ,1,983108,1235 ,1,983364,4650 ,1,983464,5965 ,1,983660,8640 ,1,983880,11520 ,1,984080,14235 ,1,984212,15990 ,1,984692,22435 ,1,984744,23145 ,1,984756,23330 ,1,984808,24025 ,1,984820,24200 ,1,984832,24370 ,1,984880,25050 ,1,985008,26790 ,1,985072,27655 ,1,985084,27815 ,1,985096,27975 ,1,985108,28150 ,1,985120,28310 ,1,985132,28495 ,1,985184,29180 ,1,985196,29360 ,1,985208,29530 ,1,985220,29710 ,1,985232,29860 ,1,985244,30030 ,1,985620,35015 ,1,985632,35170 ,1,985644,35375 ,1,986016,40345 ,1,986840,51270 ,1,986884,51870 ,1,987060,54290 ,1,987072,54445 ,1,987084,54600 ,1,987316,57720 ,1,987580,61210 ,1,989588,87615 ,1,990144,94875 ,1,990212,95800 ,1,990364,97840 ,1,990516,99935 ,1,990612,101230 ,1,990784,103575 ,1,991752,116830 ,1,991864,118290 ,1,991916,118970 ,1,992068,120985 ,1,992080,121140 ,1,992132,121840 ,1,992144,121990 ,1,992192,122655 ,1,992204,122810 ,1,992256,123480 ,1,992268,123640 ,1,992280,123790 ,1,992476,126445 ,1,993296,137410 ,1,993388,138665 ,1,993480,139880 ,1,993584,141245 ,1,993752,143410 ,1,993856,144795 ,1,994012,146965 ,1,994100,148160 ,1,994232,149940 ,1,994368,151795 ,1,994476,153265 ,1,994540,154105 ,1,994616,155130 ,1,994688,156090 ,1,994812,157725 ,1,994824,157880 ,1,994876,158565 ,1,995556,167760 ,1,996540,181280 ,1,997916,199940 ,1,998092,202335 ,1,998836,212400 ,1,999040,215200 ,1,999108,216125 ,1,999500,221380 ,1,999512,221530 ,1,999564,222215 ,1,999652,223420 ,1,999884,226560 ,1,1000148,230050 ,1,1000216,230965 ,1,1000480,234480 ,1,1000812,238930 ,1,1002060,255595 ,1,1002884,266365 ,1,1003088,268950 ,1,1003168,269975 ,1,1003600,275565 ,1,1003612,275730 ,1,1003964,280145 ,1,1004228,283580 ,1,1004296,284440 ,1,1005000,293555 ,1,1005204,296160 ,1,1005256,296835 ,1,1005416,298915 ,1,1005428,299080 ,1,1005480,299740 ,1,1005812,304205 ,1,1006316,310840 ,1,1006416,312240 ,1,1006828,317630 ,1,1006840,317780 ,1,1006852,317940 ,1,1006864,318080 ,1,1006960,319330 ,1,1007008,319970 ,1,1007020,320140 ,1,1007196,322450 ,1,1007296,323735 ,1,1007872,331265 ,1,1007924,331995 ,1,1008128,334785 ,1,1008180,335510 ,1,1008304,337225 ,1,1008356,337955 ,1,1008560,340705 ,1,1008688,342400 ,1,1008824,344190 ,1,1008888,345065 ,1,1009080,347670 ,1,1009212,349430 ,1,1009376,351620 ,1,1009636,355105 ,1,1010348,364690 ,1,1010360,364830 ,1,1012600,386435 ,1,1014980,404980 ,1,1015816,411785 ,1,1015828,411910 ,1,1015932,412700 ,1,1016144,414375 ,1,1016368,416160 ,1,1016616,418080 ,1,1016860,420075 ,1,1017060,421720 ,1,1017192,422785 ,1,1017396,424465 ,1,1017532,425575 ,1,1017760,427465 ,1,1017772,427555 ,1,1017860,428260 ,1,1017872,428330 ,1,1019320,440240 ,1,1019440,441170 ,1,1019492,441615 ,1,1019504,441725 ,1,1019516,441820 ,1,1019640,442810 ,1,1019748,443695 ,1,1019892,444925 ,1,1020076,446440 ,1,1020088,446525 ,1,1023372,472590 ,1,1023384,472680 ,1,1023396,472790 ,1,1023408,472890 ,1,1023496,473525 ,1,1023508,473620 ,1,1023728,475430 ,1,1023740,475555 ,1,1023752,475640 ,1,1023872,476600 ,1,1024192,479235 ,1,1024724,483540 ,1,1024932,485200 ,1,1024944,485295 ,1,1024956,485420 ,1,1025048,486145 ,1,1025212,487455 ,1,1025224,487540 ,1,1025276,487980 ,1,1025324,488390 ,1,1028672,515665 ,1,1029400,521455 ,1,1029412,521560 ,1,1030444,529995 ,1,1030456,530085 ,1,1030584,531175 ,1,1030772,532685 ,1,1030784,532785 ,1,1030796,532900 ,1,1030876,533545 ,1,1034976,566730 ,1,1035168,568250 ,1,1035360,569910 ,1,1035440,570550 ,1,1035536,571345 ,1,1035632,572135 ,1,1035728,572950 ,1,1035824,573715 ,1,1036176,576565 ,1,1036256,577200 ,1,1036448,578780 ,1,1036544,579580 ,1,1036736,581140 ,1,1036816,581790 ,1,1037092,584155 ,1,1037736,589520 ,1,1038244,593665 ,1,1038992,599800 ,1,1039340,602665 ,1,1039476,603860 ,1,1040016,608360 ,1,1041384,619175 ,1,1042428,627170 ,1,1042440,627250 ,1,1042536,628070 ,1,1042868,630695 ,1,1042880,630790 ,1,1043768,637735 ,1,1043780,637840 ,1,1044372,642555 ,1,1044384,642650 ,1,1044832,646105 ,1,1044844,646210 ,1,1045116,648310 ,1,1045444,650880 ,1,1046660,660365 ,1,1046672,660450 ,1,1048600,610 ,1,1048612,800 ,1,1049116,7560 ,1,1049128,7710 ,1,1049196,8635 ,1,1049952,18720 ,1,1049964,18885 ,1,1050008,19490 ,1,1050152,21390 ,1,1050816,30510 ,1,1051220,35895 ,1,1051232,36045 ,1,1051804,43715 ,1,1051816,43880 ,1,1051884,44825 ,1,1053912,71615 ,1,1053924,71775 ,1,1054440,78445 ,1,1054956,85355 ,1,1054968,85485 ,1,1056056,99985 ,1,1056068,100155 ,1,1056164,101470 ,1,1056548,106705 ,1,1056560,106850 ,1,1057936,125395 ,1,1057948,125575 ,1,1058844,137570 ,1,1058920,138590 ,1,1059024,139980 ,1,1059516,146525 ,1,1059528,146695 ,1,1059540,146840 ,1,1061172,168875 ,1,1061184,169035 ,1,1062504,187145 ,1,1064340,211960 ,1,1064352,212115 ,1,1064836,218725 ,1,1064848,218860 ,1,1064900,219575 ,1,1069388,278720 ,1,1069400,278875 ,1,1069672,282380 ,1,1069716,282950 ,1,1069844,284620 ,1,1069980,286410 ,1,1070152,288625 ,1,1070472,292715 ,1,1070560,293855 ,1,1070672,295270 ,1,1070784,296715 ,1,1070868,297820 ,1,1070880,297965 ,1,1070892,298120 ,1,1070904,298265 ,1,1071044,300120 ,1,1071056,300265 ,1,1071148,301525 ,1,1071196,302160 ,1,1071252,302930 ,1,1071364,304395 ,1,1071376,304570 ,1,1071388,304725 ,1,1071400,304910 ,1,1071412,305080 ,1,1071636,307980 ,1,1071676,308525 ,1,1071980,312630 ,1,1072224,315790 ,1,1072296,316730 ,1,1072512,319540 ,1,1072940,325150 ,1,1073016,326110 ,1,1073060,326670 ,1,1073072,326830 ,1,1073084,326990 ,1,1073136,327650 ,1,1073148,327830 ,1,1073160,327970 ,1,1073172,328145 ,1,1073184,328295 ,1,1073196,328470 ,1,1073248,329165 ,1,1073260,329350 ,1,1073936,338540 ,1,1073948,338710 ,1,1073960,338895 ,1,1074012,339585 ,1,1074632,347880 ,1,1074816,350305 ,1,1075312,357000 ,1,1075752,362835 ,1,1076056,366965 ,1,1076384,371300 ,1,1076396,371475 ,1,1076600,374135 ,1,1076720,375435 ,1,1076896,376780 ,1,1077100,378395 ,1,1077512,381600 ,1,1077716,383195 ,1,1077824,384055 ,1,1078348,388040 ,1,1078360,388125 ,1,1078480,389000 ,1,1078492,389105 ,1,1078504,389200 ,1,1078516,389290 ,1,1078568,389630 ,1,1078836,391730 ,1,1079060,393415 ,1,1079188,394450 ,1,1079372,395895 ,1,1079724,398655 ,1,1080068,401325 ,1,1080352,403645 ,1,1080480,404670 ,1,1080664,406185 ,1,1080948,408465 ,1,1081144,410055 ,1,1082052,417310 ,1,1082136,417960 ,1,1082300,419240 ,1,1084148,434335 ,1,1084284,435435 ,1,1084400,436470 ,1,1084616,438250 ,1,1084904,440610 ,1,1085116,442330 ,1,1085340,444180 ,1,1085704,447195 ,1,1086700,455145 ,1,1087228,459380 ,1,1087300,459915 ,1,1087516,461680 ,1,1087700,463185 ,1,1087848,464390 ,1,1087860,464510 ,1,1088052,466000 ,1,1088348,468285 ,1,1088796,471700 ,1,1088828,471940 ,1,1089124,474280 ,1,1089440,476915 ,1,1089644,478535 ,1,1090476,485270 ,1,1090724,487260 ,1,1091400,492815 ,1,1091716,495435 ,1,1091908,496965 ,1,1092052,498135 ,1,1092244,499760 ,1,1092688,503445 ,1,1092700,503575 ,1,1093012,506075 ,1,1093324,508630 ,1,1093412,509270 ,1,1093500,509965 ,1,1093512,510065 ,1,1093720,511680 ,1,1093732,511790 ,1,1093744,511885 ,1,1093756,511975 ,1,1093768,512060 ,1,1093780,512160 ,1,1093792,512260 ,1,1094008,514075 ,1,1094020,514185 ,1,1094460,517710 ,1,1094472,517800 ,1,1094708,519610 ,1,1094788,520245 ,1,1094920,521325 ,1,1095036,522310 ,1,1095088,522765 ,1,1095100,522855 ,1,1095292,524415 ,1,1095372,525095 ,1,1095684,527625 ,1,1096028,530405 ,1,1096040,530485 ,1,1096052,530595 ,1,1096104,531050 ,1,1096988,538155 ,1,1097328,540975 ,1,1097340,541080 ,1,1097676,543845 ,1,1098676,551645 ,1,1098880,553315 ,1,1098912,553585 ,1,1099040,554660 ,1,1099236,556250 ,1,1099488,558390 ,1,1099604,559350 ,1,1099616,559430 ,1,1099744,560485 ,1,1099840,561265 ,1,1099908,561850 ,1,1100104,563465 ,1,1100632,567695 ,1,1100760,568745 ,1,1100792,569015 ,1,1100860,569605 ,1,1101064,571265 ,1,1101228,572635 ,1,1101428,574305 ,1,1101584,575545 ,1,1101788,577175 ,1,1102764,585270 ,1,1103772,593605 ,1,1104004,595500 ,1,1104016,595600 ,1,1104028,595700 ,1,1104040,595795 ,1,1104092,596210 ,1,1104104,596305 ,1,1104380,598595 ,1,1104432,598995 ,1,1104444,599130 ,1,1104904,602910 ,1,1104916,603020 ,1,1105064,604300 ,1,1105076,604435 ,1,1105184,605300 ,1,1108712,633185 ,1,1108840,634190 ,1,1108948,635040 ,1,1109056,635855 ,1,1109164,636690 ,1,1109260,637395 ,1,1109804,641735 ,1,1110068,643815 ,1,1110164,644550 ,1,1110468,646915 ,1,1110560,647630 ,1,1110612,647995 ,1,1110732,648925 ,1,1110904,650235 ,1,1110916,650350 ,1,1110928,650445 ,1,1111532,655245 ,1,1111928,658255 ,1,1112668,664110 ,1,1113068,667160 ,1,1113080,667245 ,1,1113276,668745 ,1,1113384,669570 ,1,1113524,670665 ,1,1113784,672670 ,1,1113916,673730 ,1,1114072,674935 ,1,1114344,3410 ,1,1115324,16510 ,1,1115412,17680 ,1,1115528,19265 ,1,1115580,19975 ,1,1115800,22920 ,1,1116520,32705 ,1,1116584,33565 ,1,1116632,34185 ,1,1116696,35065 ,1,1116708,35245 ,1,1116748,35780 ,1,1116788,36340 ,1,1118060,53285 ,1,1118072,53430 ,1,1118184,54960 ,1,1118312,56665 ,1,1119400,71005 ,1,1119528,72660 ,1,1119608,73680 ,1,1119620,73840 ,1,1119640,74090 ,1,1119652,74270 ,1,1119844,76705 ,1,1119856,76860 ,1,1119868,77050 ,1,1119952,78125 ,1,1121376,97005 ,1,1121428,97725 ,1,1121536,99190 ,1,1121600,100085 ,1,1121692,101340 ,1,1121816,103075 ,1,1121904,104265 ,1,1122188,108130 ,1,1122200,108280 ,1,1122212,108450 ,1,1122224,108610 ,1,1122284,109435 ,1,1122660,114600 ,1,1122672,114750 ,1,1123124,120740 ,1,1124136,134235 ,1,1124148,134400 ,1,1124248,135740 ,1,1124304,136510 ,1,1124432,138260 ,1,1124628,140890 ,1,1124900,144425 ,1,1124972,145410 ,1,1124984,145580 ,1,1125748,155940 ,1,1125836,157105 ,1,1126284,163115 ,1,1126372,164290 ,1,1126484,165765 ,1,1126612,167515 ,1,1126884,171310 ,1,1126988,172715 ,1,1127068,173830 ,1,1127172,175300 ,1,1127252,176370 ,1,1127360,177835 ,1,1127372,178015 ,1,1127948,185875 ,1,1128312,190805 ,1,1128416,192245 ,1,1128552,194030 ,1,1128928,199150 ,1,1129188,202695 ,1,1130524,220725 ,1,1130568,221310 ,1,1130784,224250 ,1,1130880,225525 ,1,1131088,228310 ,1,1131128,228825 ,1,1132196,242995 ,1,1132244,243670 ,1,1132356,245190 ,1,1132396,245730 ,1,1132620,248735 ,1,1132884,252300 ,1,1132896,252460 ,1,1132948,253155 ,1,1133232,256870 ,1,1133244,257050 ,1,1133256,257210 ,1,1133404,259175 ,1,1133532,260825 ,1,1133620,261960 ,1,1133772,263940 ,1,1133784,264100 ,1,1134344,271310 ,1,1134356,271475 ,1,1134672,275560 ,1,1134992,279580 ,1,1135304,283630 ,1,1135388,284725 ,1,1135432,285285 ,1,1135596,287455 ,1,1135760,289545 ,1,1136164,294700 ,1,1136376,297440 ,1,1136564,299900 ,1,1136612,300570 ,1,1137072,306690 ,1,1137548,313065 ,1,1139092,333325 ,1,1139284,335955 ,1,1139388,337395 ,1,1139452,338280 ,1,1139656,341035 ,1,1139708,341725 ,1,1139828,343320 ,1,1140968,358635 ,1,1141100,360405 ,1,1142620,378265 ,1,1142728,379100 ,1,1142920,380595 ,1,1143028,381440 ,1,1143708,386695 ,1,1144108,389685 ,1,1144180,390245 ,1,1145860,403410 ,1,1145988,404445 ,1,1146036,404850 ,1,1146100,405380 ,1,1146272,406760 ,1,1147216,414365 ,1,1147620,417575 ,1,1147740,418495 ,1,1147836,419245 ,1,1147956,420280 ,1,1148112,421540 ,1,1150172,438440 ,1,1151336,447985 ,1,1151740,451115 ,1,1151788,451505 ,1,1151916,452535 ,1,1151964,452945 ,1,1152028,453455 ,1,1153252,463310 ,1,1154956,476735 ,1,1155752,483175 ,1,1155944,484705 ,1,1156084,485875 ,1,1156776,491540 ,1,1156864,492270 ,1,1158132,502655 ,1,1158408,504970 ,1,1158464,505420 ,1,1158612,506585 ,1,1158700,507325 ,1,1158764,507825 ,1,1160672,523165 ,1,1160720,523525 ,1,1160892,524930 ,1,1161096,526620 ,1,1161448,529425 ,1,1161588,530590 ,1,1161780,532160 ,1,1161996,533960 ,1,1162136,535100 ,1,1162804,540445 ,1,1162884,541140 ,1,1163088,542830 ,1,1163148,543325 ,1,1163424,545460 ,1,1164872,557105 ,1,1165772,564505 ,1,1166244,568305 ,1,1166284,568640 ,1,1166932,574040 ,1,1167388,577680 ,1,1167400,577780 ,1,1167412,577885 ,1,1167892,581845 ,1,1167940,582270 ,1,1167984,582610 ,1,1167996,582730 ,1,1168048,583195 ,1,1168152,584050 ,1,1168312,585365 ,1,1168372,585835 ,1,1168476,586725 ,1,1168580,587595 ,1,1168684,588485 ,1,1174100,632015 ,1,1174112,632105 ,1,1174280,633450 ,1,1174348,633980 ,1,1174360,634060 ,1,1174372,634165 ,1,1174384,634265 ,1,1174468,634900 ,1,1174552,635550 ,1,1174668,636440 ,1,1174824,637610 ,1,1174836,637705 ,1,1175080,639600 ,1,1175164,640280 ,1,1175176,640365 ,1,1175292,641340 ,1,1175304,641445 ,1,1175388,642140 ,1,1175576,643560 ,1,1175588,643680 ,1,1176056,647310 ,1,1176468,650490 ,1,1179032,670415 ,1,1179084,670865 ,1,1179140,671265 ,1,1179372,673085 ,1,1179508,674195 ,1,1179780,2100 ,1,1180736,14845 ,1,1180928,17425 ,1,1181448,24490 ,1,1181476,24895 ,1,1181760,28760 ,1,1183108,46825 ,1,1187192,100840 ,1,1187248,101635 ,1,1187452,104440 ,1,1187620,106700 ,1,1187812,109335 ,1,1188192,114535 ,1,1188384,117125 ,1,1188764,122165 ,1,1189608,133410 ,1,1189824,136280 ,1,1190184,141140 ,1,1190212,141520 ,1,1190352,143310 ,1,1190544,145915 ,1,1190664,147570 ,1,1192392,170900 ,1,1192668,174750 ,1,1192808,176635 ,1,1192948,178600 ,1,1193888,191355 ,1,1197240,236500 ,1,1197348,237955 ,1,1197644,241850 ,1,1197784,243720 ,1,1197980,246355 ,1,1198064,247505 ,1,1198144,248565 ,1,1198524,253670 ,1,1198872,258280 ,1,1199236,262980 ,1,1201456,291590 ,1,1201888,297120 ,1,1203480,318185 ,1,1203608,319875 ,1,1203928,324060 ,1,1205444,344365 ,1,1206068,352730 ,1,1206548,359230 ,1,1206560,359370 ,1,1206608,360015 ,1,1206784,362330 ,1,1206796,362470 ,1,1206848,363180 ,1,1206976,364945 ,1,1207112,366750 ,1,1207404,370630 ,1,1207604,373265 ,1,1207708,374605 ,1,1207908,376335 ,1,1208108,377870 ,1,1208268,379130 ,1,1208396,380110 ,1,1208596,381720 ,1,1208788,383190 ,1,1208984,384725 ,1,1209188,386280 ,1,1209380,387735 ,1,1209496,388590 ,1,1209700,390125 ,1,1209904,391680 ,1,1210220,394155 ,1,1210260,394455 ,1,1210428,395780 ,1,1210556,396725 ,1,1210752,398285 ,1,1210952,399865 ,1,1211068,400755 ,1,1211196,401775 ,1,1211292,402560 ,1,1211420,403620 ,1,1211904,407495 ,1,1212248,410320 ,1,1212656,413635 ,1,1212720,414115 ,1,1213064,416845 ,1,1213412,419555 ,1,1213456,419945 ,1,1213468,420080 ,1,1213948,423995 ,1,1214156,425730 ,1,1214200,426090 ,1,1214244,426490 ,1,1214464,428215 ,1,1214508,428605 ,1,1214728,430325 ,1,1214800,430910 ,1,1214952,432130 ,1,1215004,432580 ,1,1215268,434700 ,1,1215408,435890 ,1,1215612,437650 ,1,1215792,439065 ,1,1215880,439820 ,1,1216176,442230 ,1,1216380,443905 ,1,1217708,454600 ,1,1217720,454685 ,1,1217756,455005 ,1,1217768,455100 ,1,1217780,455220 ,1,1217824,455560 ,1,1217836,455665 ,1,1218040,457270 ,1,1218448,460500 ,1,1218648,462185 ,1,1219072,465585 ,1,1219152,466215 ,1,1219200,466580 ,1,1219400,468115 ,1,1219840,471470 ,1,1219988,472650 ,1,1220188,474210 ,1,1220316,475270 ,1,1220460,476470 ,1,1220664,478090 ,1,1220732,478650 ,1,1220976,480690 ,1,1221072,481475 ,1,1221200,482500 ,1,1221476,484675 ,1,1221924,488310 ,1,1222160,490250 ,1,1222324,491650 ,1,1222444,492605 ,1,1222584,493740 ,1,1223100,497935 ,1,1223464,500940 ,1,1223736,503245 ,1,1223748,503345 ,1,1223760,503440 ,1,1223772,503580 ,1,1223876,504415 ,1,1224092,506140 ,1,1224208,507085 ,1,1224280,507660 ,1,1224472,509175 ,1,1225264,515545 ,1,1225292,515785 ,1,1226000,521395 ,1,1226048,521795 ,1,1226240,523415 ,1,1226344,524255 ,1,1226392,524640 ,1,1226668,526910 ,1,1226744,527505 ,1,1226848,528365 ,1,1226928,528980 ,1,1227032,529815 ,1,1227136,530680 ,1,1227240,531560 ,1,1227312,532120 ,1,1227384,532715 ,1,1227488,533570 ,1,1227680,535155 ,1,1228384,540805 ,1,1228488,541715 ,1,1228580,542505 ,1,1228684,543330 ,1,1228788,544165 ,1,1229084,546445 ,1,1229208,547400 ,1,1236428,606690 ,1,1236440,606795 ,1,1236548,607710 ,1,1236652,608630 ,1,1236760,609485 ,1,1236952,611075 ,1,1237656,616565 ,1,1237668,616670 ,1,1237680,616765 ,1,1237728,617165 ,1,1237740,617275 ,1,1237792,617635 ,1,1237896,618455 ,1,1238076,619820 ,1,1238164,620460 ,1,1238336,621725 ,1,1238408,622285 ,1,1238580,623570 ,1,1238744,624805 ,1,1238844,625610 ,1,1238908,626125 ,1,1239036,627165 ,1,1239432,630340 ,1,1239472,630640 ,1,1240152,636025 ,1,1240164,636125 ,1,1240216,636520 ,1,1240492,638620 ,1,1240556,639125 ,1,1240600,639440 ,1,1240764,640815 ,1,1240776,640900 ,1,1240828,641335 ,1,1240956,642395 ,1,1241020,642870 ,1,1241032,642955 ,1,1241044,643070 ,1,1241056,643150 ,1,1241144,643845 ,1,1241268,644800 ,1,1241444,646145 ,1,1241456,646235 ,1,1241468,646345 ,1,1241480,646440 ,1,1242756,656380 ,1,1243036,658545 ,1,1243324,660790 ,1,1243500,662225 ,1,1243512,662305 ,1,1243608,663070 ,1,1243920,665450 ,1,1244072,666625 ,1,1244244,667975 ,1,1244448,669510 ,1,1244644,671035 ,1,1244736,671765 ,1,1244760,671945 ,1,1244896,672965 ,1,1245956,10630 ,1,1245968,10780 ,1,1246168,13465 ,1,1246284,15025 ,1,1246296,15180 ,1,1246348,15880 ,1,1246476,17585 ,1,1246572,18890 ,1,1246768,21495 ,1,1247848,36145 ,1,1248048,38805 ,1,1248412,43710 ,1,1248540,45485 ,1,1248736,48005 ,1,1248852,49535 ,1,1249076,52515 ,1,1249112,53020 ,1,1249124,53175 ,1,1249172,53830 ,1,1249184,53990 ,1,1249196,54165 ,1,1249368,56445 ,1,1249884,63345 ,1,1249896,63490 ,1,1249948,64195 ,1,1250228,67865 ,1,1250508,71465 ,1,1250764,74750 ,1,1250876,76185 ,1,1251340,82345 ,1,1252072,92025 ,1,1252084,92200 ,1,1252312,95200 ,1,1252428,96755 ,1,1252944,103835 ,1,1253728,114530 ,1,1253884,116675 ,1,1254400,123465 ,1,1254944,130740 ,1,1255148,133480 ,1,1255488,138050 ,1,1255616,139770 ,1,1256704,154385 ,1,1256756,155085 ,1,1257188,160820 ,1,1257400,163680 ,1,1257928,170885 ,1,1258448,178060 ,1,1258732,181940 ,1,1258848,183500 ,1,1258904,184260 ,1,1259108,187090 ,1,1259292,189565 ,1,1259420,191310 ,1,1259672,194665 ,1,1260116,200705 ,1,1260244,202470 ,1,1260368,204175 ,1,1260528,206340 ,1,1260624,207645 ,1,1260828,210360 ,1,1260928,211685 ,1,1261104,214125 ,1,1261468,219035 ,1,1261596,220730 ,1,1261724,222440 ,1,1261788,223295 ,1,1261888,224685 ,1,1262112,227655 ,1,1262292,230040 ,1,1262544,233440 ,1,1262708,235600 ,1,1262824,237175 ,1,1262836,237335 ,1,1262888,238000 ,1,1262900,238165 ,1,1262912,238315 ,1,1262924,238500 ,1,1262936,238640 ,1,1263016,239715 ,1,1263152,241480 ,1,1263692,248730 ,1,1265060,266800 ,1,1265072,266950 ,1,1265084,267115 ,1,1265212,268705 ,1,1265276,269520 ,1,1265340,270360 ,1,1265420,271370 ,1,1265432,271520 ,1,1265444,271715 ,1,1266540,285790 ,1,1266772,288785 ,1,1267400,296840 ,1,1267480,297865 ,1,1267560,298905 ,1,1267664,300255 ,1,1267676,300450 ,1,1267688,300615 ,1,1267740,301310 ,1,1267752,301450 ,1,1267880,303205 ,1,1268112,306275 ,1,1268880,316410 ,1,1268892,316580 ,1,1269176,320295 ,1,1269380,322960 ,1,1269460,324015 ,1,1269932,330180 ,1,1270088,332255 ,1,1270304,335205 ,1,1270432,336995 ,1,1270584,339105 ,1,1270788,341855 ,1,1270916,343525 ,1,1271012,344810 ,1,1271024,344945 ,1,1271164,346865 ,1,1271304,348740 ,1,1271496,351285 ,1,1271572,352315 ,1,1271764,354900 ,1,1271956,357530 ,1,1272148,360075 ,1,1272424,363750 ,1,1272616,366350 ,1,1272808,368885 ,1,1273000,371400 ,1,1273192,373910 ,1,1273468,376520 ,1,1273856,379520 ,1,1273868,379600 ,1,1274260,382715 ,1,1274496,384540 ,1,1274508,384645 ,1,1274620,385500 ,1,1274700,386105 ,1,1274780,386700 ,1,1275624,393075 ,1,1275704,393680 ,1,1275780,394335 ,1,1275908,395360 ,1,1276036,396320 ,1,1276112,396885 ,1,1276328,398620 ,1,1276408,399260 ,1,1276536,400215 ,1,1276612,400820 ,1,1276688,401420 ,1,1276816,402440 ,1,1276956,403615 ,1,1277096,404740 ,1,1277312,406525 ,1,1277392,407140 ,1,1277520,408165 ,1,1277596,408800 ,1,1277812,410560 ,1,1277892,411210 ,1,1278000,412130 ,1,1278080,412725 ,1,1278160,413375 ,1,1278376,415100 ,1,1278456,415715 ,1,1278536,416355 ,1,1278752,418020 ,1,1278944,419530 ,1,1279000,420020 ,1,1279080,420700 ,1,1279160,421345 ,1,1279172,421455 ,1,1279364,423000 ,1,1279576,424740 ,1,1279680,425610 ,1,1279900,427435 ,1,1279960,427890 ,1,1280152,429445 ,1,1280364,431145 ,1,1280556,432715 ,1,1280748,434255 ,1,1280796,434635 ,1,1280932,435770 ,1,1280944,435875 ,1,1280956,436030 ,1,1280968,436130 ,1,1281356,439305 ,1,1281368,439400 ,1,1281952,444205 ,1,1282040,444950 ,1,1282128,445710 ,1,1282308,447170 ,1,1282320,447280 ,1,1282396,447895 ,1,1282588,449405 ,1,1282780,450855 ,1,1282856,451460 ,1,1283244,454605 ,1,1283324,455280 ,1,1283400,455875 ,1,1283592,457410 ,1,1283784,458965 ,1,1283860,459555 ,1,1283872,459645 ,1,1284096,461445 ,1,1284108,461540 ,1,1284496,464725 ,1,1284996,468580 ,1,1285172,469925 ,1,1285296,470840 ,1,1285452,472085 ,1,1285720,474160 ,1,1286316,479055 ,1,1286412,479835 ,1,1286484,480445 ,1,1287252,486615 ,1,1287264,486705 ,1,1287652,489875 ,1,1287740,490625 ,1,1287936,492265 ,1,1288292,495155 ,1,1288304,495275 ,1,1288692,498410 ,1,1288832,499570 ,1,1288920,500275 ,1,1289156,502235 ,1,1289168,502325 ,1,1289384,504185 ,1,1289748,507115 ,1,1289760,507230 ,1,1289952,508760 ,1,1290332,511725 ,1,1290524,513335 ,1,1290904,516405 ,1,1291096,517945 ,1,1291476,520945 ,1,1291668,522530 ,1,1292048,525640 ,1,1292188,526780 ,1,1292200,526875 ,1,1292308,527760 ,1,1292544,529600 ,1,1292684,530825 ,1,1292824,531960 ,1,1292964,533080 ,1,1292976,533175 ,1,1293364,536350 ,1,1293552,537760 ,1,1293636,538500 ,1,1293776,539570 ,1,1293860,540315 ,1,1293968,541240 ,1,1294288,543870 ,1,1294300,543990 ,1,1294380,544590 ,1,1294392,544660 ,1,1294520,545650 ,1,1294580,546100 ,1,1295028,549620 ,1,1295112,550305 ,1,1295264,551490 ,1,1295436,552890 ,1,1295608,554315 ,1,1295692,555015 ,1,1295992,557520 ,1,1296004,557630 ,1,1296392,560795 ,1,1296404,560905 ,1,1296516,561855 ,1,1296528,561950 ,1,1296540,562050 ,1,1296928,565175 ,1,1297084,566465 ,1,1297096,566550 ,1,1297212,567455 ,1,1297244,567730 ,1,1297300,568175 ,1,1297460,569535 ,1,1297568,570420 ,1,1297740,571855 ,1,1298196,575595 ,1,1298888,581205 ,1,1299072,582765 ,1,1299084,582890 ,1,1299096,582990 ,1,1299108,583095 ,1,1299120,583190 ,1,1299132,583305 ,1,1299144,583400 ,1,1299784,588705 ,1,1299796,588815 ,1,1299808,588920 ,1,1299820,589030 ,1,1299872,589445 ,1,1299884,589570 ,1,1299896,589655 ,1,1299908,589800 ,1,1299920,589905 ,1,1300300,592965 ,1,1300312,593055 ,1,1300324,593155 ,1,1300460,594280 ,1,1300472,594370 ,1,1300736,596495 ,1,1300748,596610 ,1,1300760,596690 ,1,1300772,596815 ,1,1300784,596915 ,1,1300796,597030 ,1,1300888,597780 ,1,1300900,597905 ,1,1300912,597990 ,1,1301456,602405 ,1,1301568,603385 ,1,1301580,603515 ,1,1301592,603615 ,1,1301604,603730 ,1,1301616,603820 ,1,1301628,603940 ,1,1301640,604050 ,1,1301652,604155 ,1,1301664,604230 ,1,1301676,604360 ,1,1301880,606040 ,1,1301988,606915 ,1,1302100,607835 ,1,1302112,607925 ,1,1302124,608040 ,1,1302136,608160 ,1,1302148,608280 ,1,1302364,610030 ,1,1302800,613565 ,1,1310688,675005 ,1,1311096,5350 ,1,1311300,8105 ,1,1311736,13890 ,1,1311844,15350 ,1,1311900,16090 ,1,1312024,17725 ,1,1312108,18880 ,1,1312120,19055 ,1,1312132,19215 ,1,1312212,20280 ,1,1312316,21675 ,1,1312776,27970 ,1,1313580,38760 ,1,1313772,41375 ,1,1313964,43950 ,1,1314460,50480 ,1,1314524,51345 ,1,1314588,52195 ,1,1314724,54060 ,1,1314832,55500 ,1,1314940,56955 ,1,1314972,57385 ,1,1315428,63445 ,1,1315620,65995 ,1,1315812,68495 ,1,1316236,73940 ,1,1316344,75315 ,1,1316468,76935 ,1,1316740,80535 ,1,1316752,80695 ,1,1316968,83595 ,1,1316980,83745 ,1,1316992,83900 ,1,1317004,84065 ,1,1317140,85905 ,1,1317152,86070 ,1,1317680,92990 ,1,1319032,111325 ,1,1319648,119650 ,1,1320152,126380 ,1,1320496,130965 ,1,1320780,134730 ,1,1321588,145525 ,1,1321924,150115 ,1,1322040,151685 ,1,1322232,154265 ,1,1322424,156840 ,1,1322708,160590 ,1,1322992,164445 ,1,1323184,167010 ,1,1323376,169715 ,1,1323660,173610 ,1,1323768,175110 ,1,1323824,175850 ,1,1323876,176590 ,1,1323988,178140 ,1,1325180,194300 ,1,1326960,218420 ,1,1328240,235535 ,1,1329100,247010 ,1,1330192,261485 ,1,1330784,269160 ,1,1331160,274015 ,1,1331172,274175 ,1,1331792,282040 ,1,1331904,283520 ,1,1331916,283685 ,1,1332312,288830 ,1,1333980,310625 ,1,1334032,311325 ,1,1334084,312075 ,1,1334096,312235 ,1,1334568,318425 ,1,1334668,319705 ,1,1334728,320495 ,1,1335236,327105 ,1,1335288,327760 ,1,1335380,329010 ,1,1335436,329760 ,1,1335448,329915 ,1,1335508,330720 ,1,1335568,331500 ,1,1335580,331655 ,1,1335628,332315 ,1,1335640,332490 ,1,1335692,333210 ,1,1335704,333370 ,1,1335716,333540 ,1,1335768,334245 ,1,1335780,334420 ,1,1335820,334940 ,1,1335832,335095 ,1,1335884,335845 ,1,1335896,336000 ,1,1335908,336165 ,1,1338688,373405 ,1,1339176,377825 ,1,1339592,381090 ,1,1339948,383895 ,1,1341028,392070 ,1,1341304,394225 ,1,1341776,397925 ,1,1341972,399485 ,1,1342512,403800 ,1,1343324,410375 ,1,1343448,411380 ,1,1343460,411500 ,1,1343472,411590 ,1,1343524,412060 ,1,1343652,413030 ,1,1344272,417885 ,1,1344444,419235 ,1,1344644,420940 ,1,1345620,428905 ,1,1345820,430510 ,1,1345920,431305 ,1,1345988,431850 ,1,1346000,431930 ,1,1346012,432035 ,1,1346024,432125 ,1,1346160,433245 ,1,1346272,434150 ,1,1346416,435345 ,1,1346500,436100 ,1,1346584,436810 ,1,1346672,437540 ,1,1346760,438245 ,1,1347180,441700 ,1,1347308,442720 ,1,1347512,444405 ,1,1349124,457375 ,1,1349180,457855 ,1,1349232,458260 ,1,1349284,458725 ,1,1349456,459980 ,1,1349924,463830 ,1,1349936,463925 ,1,1349948,464045 ,1,1349960,464130 ,1,1349972,464240 ,1,1350068,465010 ,1,1350188,465940 ,1,1350392,467485 ,1,1350596,469090 ,1,1350752,470245 ,1,1350864,471110 ,1,1351048,472550 ,1,1351300,474550 ,1,1351356,475030 ,1,1351412,475475 ,1,1351424,475585 ,1,1351436,475680 ,1,1351492,476130 ,1,1351572,476790 ,1,1351584,476900 ,1,1351596,477030 ,1,1351868,479210 ,1,1354612,501570 ,1,1355088,505550 ,1,1355264,506945 ,1,1355748,510790 ,1,1355800,511175 ,1,1355928,512190 ,1,1356008,512850 ,1,1356268,515005 ,1,1356328,515455 ,1,1356408,516145 ,1,1356536,517170 ,1,1356632,517935 ,1,1356904,520030 ,1,1356972,520595 ,1,1357160,522135 ,1,1357780,527215 ,1,1358160,530305 ,1,1358172,530400 ,1,1358308,531530 ,1,1358624,534135 ,1,1360288,547465 ,1,1361028,553365 ,1,1361188,554705 ,1,1361348,555990 ,1,1361556,557775 ,1,1361684,558830 ,1,1361792,559685 ,1,1361988,561320 ,1,1363020,569740 ,1,1363228,571450 ,1,1363356,572505 ,1,1363832,576370 ,1,1363960,577370 ,1,1364436,581330 ,1,1364564,582390 ,1,1365056,586480 ,1,1365184,587550 ,1,1365340,588885 ,1,1365612,591175 ,1,1365964,594000 ,1,1366308,596810 ,1,1366504,598425 ,1,1366692,599960 ,1,1367172,604020 ,1,1367300,605055 ,1,1367408,605970 ,1,1367900,610025 ,1,1368120,611830 ,1,1368544,615195 ,1,1368556,615290 ,1,1369000,618705 ,1,1369096,619405 ,1,1369108,619505 ,1,1369600,623155 ,1,1369728,624145 ,1,1369832,624925 ,1,1369880,625315 ,1,1370008,626330 ,1,1370280,628565 ,1,1371076,634895 ,1,1371352,637010 ,1,1371376,637175 ,1,1371520,638305 ,1,1371584,638780 ,1,1371780,640335 ,1,1372216,643850 ,1,1372264,644225 ,1,1372356,644915 ,1,1372436,645510 ,1,1372448,645605 ,1,1372584,646695 ,1,1373108,650755 ,1,1373204,651575 ,1,1373740,655710 ,1,1373820,656320 ,1,1373948,657310 ,1,1374456,661270 ,1,1374560,662105 ,1,1374888,664685 ,1,1374964,665245 ,1,1375620,670265 ,1,1375824,671885 ,1,1376028,673480 ,1,1376176,674640 ,1,1376476,3270 ,1,1376892,8850 ,1,1376964,9770 ,1,1377056,10975 ,1,1377132,12045 ,1,1377204,13005 ,1,1377276,13960 ,1,1377344,14840 ,1,1377840,21490 ,1,1377896,22250 ,1,1377920,22595 ,1,1377944,22915 ,1,1377968,23260 ,1,1377992,23605 ,1,1378016,23915 ,1,1378040,24245 ,1,1378064,24600 ,1,1378200,26470 ,1,1378212,26645 ,1,1378236,26950 ,1,1378260,27265 ,1,1378284,27605 ,1,1378308,27925 ,1,1378332,28265 ,1,1378356,28605 ,1,1378368,28755 ,1,1378824,34815 ,1,1378836,35005 ,1,1379084,38325 ,1,1379096,38480 ,1,1380332,55020 ,1,1380344,55160 ,1,1380356,55355 ,1,1380408,56035 ,1,1381048,64575 ,1,1381204,66625 ,1,1381304,67915 ,1,1381356,68595 ,1,1381368,68745 ,1,1381380,68905 ,1,1381392,69050 ,1,1381588,71570 ,1,1381860,75055 ,1,1382056,77600 ,1,1382180,79275 ,1,1382572,84490 ,1,1382928,89255 ,1,1383276,93770 ,1,1383588,97945 ,1,1383736,99980 ,1,1383792,100745 ,1,1383868,101820 ,1,1384020,103890 ,1,1384248,106965 ,1,1384304,107755 ,1,1384384,108815 ,1,1384480,110145 ,1,1384556,111185 ,1,1384636,112250 ,1,1384708,113240 ,1,1384776,114195 ,1,1385272,120785 ,1,1385348,121835 ,1,1385500,123860 ,1,1385772,127515 ,1,1385912,129335 ,1,1385924,129530 ,1,1387316,148165 ,1,1388056,158095 ,1,1388180,159740 ,1,1388596,165355 ,1,1388888,169370 ,1,1389252,174385 ,1,1389424,176745 ,1,1389436,176925 ,1,1389792,181755 ,1,1389964,184090 ,1,1390088,185790 ,1,1390100,185995 ,1,1390344,189285 ,1,1390492,191300 ,1,1390504,191480 ,1,1390516,191650 ,1,1390988,198025 ,1,1391000,198165 ,1,1391048,198820 ,1,1391412,203790 ,1,1391832,209460 ,1,1392140,213615 ,1,1392160,213890 ,1,1392172,214070 ,1,1392184,214230 ,1,1392616,220030 ,1,1392668,220735 ,1,1392680,220885 ,1,1392936,224360 ,1,1393052,225915 ,1,1393188,227720 ,1,1393596,233160 ,1,1393736,234995 ,1,1394220,241435 ,1,1394388,243675 ,1,1394400,243850 ,1,1394452,244505 ,1,1394916,250750 ,1,1394928,250885 ,1,1394984,251680 ,1,1395684,260940 ,1,1396004,265085 ,1,1396372,269835 ,1,1396708,274180 ,1,1396884,276440 ,1,1397416,283200 ,1,1397660,286405 ,1,1398064,291580 ,1,1398096,292000 ,1,1398192,293250 ,1,1398204,293390 ,1,1398240,293850 ,1,1398276,294300 ,1,1398328,294955 ,1,1398828,301520 ,1,1398956,303265 ,1,1398968,303405 ,1,1399080,304905 ,1,1399180,306220 ,1,1399456,309845 ,1,1399468,310010 ,1,1401020,330380 ,1,1401032,330550 ,1,1401168,332365 ,1,1401304,334240 ,1,1401336,334680 ,1,1401464,336410 ,1,1401476,336620 ,1,1401488,336785 ,1,1401540,337530 ,1,1401552,337665 ,1,1401828,341410 ,1,1402020,343935 ,1,1402060,344475 ,1,1402112,345175 ,1,1402124,345355 ,1,1402636,352215 ,1,1402824,354725 ,1,1403188,359660 ,1,1403224,360125 ,1,1403236,360295 ,1,1403336,361585 ,1,1403372,362075 ,1,1403424,362725 ,1,1403436,362900 ,1,1403448,363085 ,1,1403500,363805 ,1,1403512,363985 ,1,1403612,365360 ,1,1403624,365510 ,1,1403744,367085 ,1,1403996,370420 ,1,1404464,375945 ,1,1405236,381975 ,1,1405468,383750 ,1,1405480,383845 ,1,1405540,384345 ,1,1405600,384790 ,1,1405824,386490 ,1,1406072,388360 ,1,1406272,389820 ,1,1406440,391150 ,1,1406452,391255 ,1,1406508,391650 ,1,1406564,392065 ,1,1406800,393890 ,1,1406952,395110 ,1,1406964,395225 ,1,1407240,397350 ,1,1407252,397455 ,1,1407428,398865 ,1,1407520,399565 ,1,1407532,399675 ,1,1407912,402665 ,1,1408044,403775 ,1,1408176,404795 ,1,1408476,407225 ,1,1408556,407850 ,1,1408568,407975 ,1,1408632,408495 ,1,1408644,408590 ,1,1408776,409685 ,1,1408912,410790 ,1,1408976,411315 ,1,1418952,491800 ,1,1419128,493190 ,1,1419428,495700 ,1,1419932,499815 ,1,1420116,501290 ,1,1420128,501395 ,1,1420264,502535 ,1,1420308,502935 ,1,1420440,504060 ,1,1420600,505340 ,1,1421460,512165 ,1,1422400,519695 ,1,1422412,519815 ,1,1422728,522405 ,1,1423236,526595 ,1,1424192,534390 ,1,1424964,540595 ,1,1425384,544065 ,1,1425720,546670 ,1,1426056,549255 ,1,1426376,551810 ,1,1427464,560790 ,1,1427956,564835 ,1,1429348,576245 ,1,1431360,592865 ,1,1431572,594625 ,1,1431664,595325 ,1,1431676,595440 ,1,1431852,596890 ,1,1431944,597625 ,1,1431956,597740 ,1,1432368,601065 ,1,1432884,605495 ,1,1433052,606840 ,1,1433064,606940 ,1,1433312,609045 ,1,1433392,609660 ,1,1433404,609765 ,1,1433452,610175 ,1,1433904,613825 ,1,1434396,617610 ,1,1434544,618790 ,1,1434996,622110 ,1,1435108,622950 ,1,1435220,623825 ,1,1435280,624250 ,1,1436940,637400 ,1,1437036,638150 ,1,1438272,647835 ,1,1438332,648315 ,1,1438416,648950 ,1,1438592,650285 ,1,1438652,650825 ,1,1438764,651780 ,1,1438824,652260 ,1,1439056,654035 ,1,1439516,657540 ,1,1440088,662030 ,1,1446840,67910 ,1,1446972,69615 ,1,1448068,83955 ,1,1448124,84705 ,1,1448356,87845 ,1,1448452,89095 ,1,1449180,98700 ,1,1450092,111180 ,1,1451132,125130 ,1,1451216,126270 ,1,1451308,127510 ,1,1451420,128990 ,1,1451484,129850 ,1,1451548,130690 ,1,1451608,131520 ,1,1452416,142285 ,1,1453020,150440 ,1,1453816,161105 ,1,1455024,177625 ,1,1464884,308405 ,1,1464992,309840 ,1,1474376,410190 ,1,1475136,416280 ,1,1475300,417580 ,1,1476992,431300 ,1,1477028,431600 ,1,1477040,431665 ,1,1477588,436245 ,1,1478200,441255 ,1,1478376,442680 ,1,1479260,449890 ,1,1480672,461175 ,1,1480684,461285 ,1,1480872,462825 ,1,1485548,500470 ,1,1486236,506130 ,1,1487016,512345 ,1,1487132,513325 ,1,1487188,513795 ,1,1487492,516255 ,1,1487608,517165 ,1,1487700,517910 ,1,1489860,535450 ,1,1490312,539030 ,1,1491068,545190 ,1,1491596,549310 ,1,1492140,553700 ,1,1492236,554485 ,1,1492676,558160 ,1,1493536,565170 ,1,1494736,575025 ,1,1495160,578425 ,1,1495172,578540 ,1,1495220,578945 ,1,1495280,579440 ,1,1495340,579950 ,1,1495384,580300 ,1,1495588,581980 ,1,1495828,584025 ,1,1496500,589630 ,1,1497192,595265 ,1,1497492,597745 ,1,1497660,599120 ,1,1498040,602180 ,1,1498184,603460 ,1,1498320,604635 ,1,1498456,605755 ,1,1498468,605865 ,1,1498480,605965 ,1,1498648,607305 ,1,1498944,609795 ,1,1499112,611205 ,1,1499288,612590 ,1,1499300,612705 ,1,1504232,651180 ,1,1509164,25005 ,1,1514096,90490 ,1,1519028,156785 ,1,1523960,223700 ,1,1528892,288470 ,1,1533824,353765 ,1,1538756,400815 ,1,1539180,404275 ,1,1543092,435945 ,1,1547004,467520 ,1,1547696,472895 ,1,1547888,474365 ,1,1547948,474880 ,1,1548028,475560 ,1,1549656,488740 ,1,1551584,504630 ,1,1567268,631610 ,1,1583220,138775 ,1,1583396,141095 ,1,1583476,142125 ,1,1583488,142280 ,1,1583568,143305 ,1,1583580,143470 ,1,1583684,144855 ,1,1583852,147190 ,1,1583864,147335 ,1,1585128,164335 ,1,1585376,167675 ,1,1585544,170045 ,1,1585556,170190 ,1,1585880,174655 ,1,1585972,175925 ,1,1586972,189560 ,1,1587880,201855 ,1,1587892,202040 ,1,1588112,205035 ,1,1588204,206295 ,1,1588216,206450 ,1,1589224,220025 ,1,1590088,231605 ,1,1590236,233590 ,1,1590328,234760 ,1,1590340,234945 ,1,1590764,240585 ,1,1591096,244995 ,1,1591272,247380 ,1,1591352,248445 ,1,1591364,248630 ,1,1591444,249670 ,1,1591456,249820 ,1,1591632,252245 ,1,1591712,253310 ,1,1591724,253475 ,1,1591816,254705 ,1,1591828,254875 ,1,1594812,293385 ,1,1594892,294405 ,1,1594904,294545 ,1,1595048,296415 ,1,1595548,303050 ,1,1596188,311510 ,1,1596236,312185 ,1,1597260,325555 ,1,1597468,328245 ,1,1597788,332550 ,1,1597832,333125 ,1,1599796,359655 ,1,1602008,383220 ,1,1602148,384340 ,1,1602276,385310 ,1,1602452,386635 ,1,1604932,406045 ,1,1606544,418880 ,1,1608240,432745 ,1,1608404,434070 ,1,1608536,435120 ,1,1608752,437005 ,1,1608764,437100 ,1,1609372,442050 ,1,1609384,442165 ,1,1609688,444670 ,1,1609700,444775 ,1,1609872,446205 ,1,1610004,447320 ,1,1610080,447920 ,1,1610092,448025 ,1,1610492,451110 ,1,1610540,451500 ,1,1610644,452345 ,1,1610728,453025 ,1,1611168,456555 ,1,1611328,457880 ,1,1611656,460440 ,1,1611924,462665 ,1,1612004,463305 ,1,1612016,463405 ,1,1612100,464100 ,1,1612540,467525 ,1,1612700,468760 ,1,1613028,471285 ,1,1613108,471865 ,1,1613120,471970 ,1,1613204,472655 ,1,1613644,476200 ,1,1613804,477515 ,1,1614132,480180 ,1,1614212,480870 ,1,1614224,480955 ,1,1614308,481640 ,1,1614748,485120 ,1,1614908,486440 ,1,1615212,488900 ,1,1615292,489535 ,1,1615304,489625 ,1,1615388,490355 ,1,1615828,494000 ,1,1615988,495300 ,1,1616316,497925 ,1,1616396,498615 ,1,1616408,498720 ,1,1616492,499425 ,1,1616932,503060 ,1,1617092,504410 ,1,1617396,506855 ,1,1617476,507510 ,1,1617488,507610 ,1,1617572,508290 ,1,1618012,511720 ,1,1618172,513050 ,1,1618500,515720 ,1,1618580,516375 ,1,1618592,516460 ,1,1618676,517140 ,1,1619116,520600 ,1,1619276,521900 ,1,1619580,524410 ,1,1619660,525085 ,1,1619672,525190 ,1,1619756,525905 ,1,1620196,529395 ,1,1620356,530750 ,1,1620684,533415 ,1,1620764,534110 ,1,1620776,534190 ,1,1620860,534870 ,1,1621300,538360 ,1,1621460,539625 ,1,1621788,542435 ,1,1621868,543060 ,1,1621880,543150 ,1,1621964,543835 ,1,1622404,547250 ,1,1622564,548500 ,1,1622868,550920 ,1,1622948,551525 ,1,1622960,551595 ,1,1623044,552280 ,1,1623484,555930 ,1,1623644,557285 ,1,1623972,559985 ,1,1624052,560645 ,1,1624064,560730 ,1,1624148,561445 ,1,1624588,565025 ,1,1624748,566340 ,1,1625076,568990 ,1,1625156,569670 ,1,1625168,569765 ,1,1625252,570470 ,1,1625692,574105 ,1,1625852,575405 ,1,1626180,578015 ,1,1626260,578695 ,1,1626272,578775 ,1,1626356,579490 ,1,1626796,583165 ,1,1626956,584490 ,1,1627284,587185 ,1,1627364,587885 ,1,1627376,587975 ,1,1627460,588675 ,1,1627900,592330 ,1,1628060,593600 ,1,1628388,596280 ,1,1628468,596965 ,1,1628480,597055 ,1,1628564,597750 ,1,1629004,601305 ,1,1629164,602660 ,1,1629492,605480 ,1,1629572,606140 ,1,1629584,606240 ,1,1629668,606905 ,1,1630108,610545 ,1,1630268,611875 ,1,1630596,614455 ,1,1630676,615095 ,1,1630688,615190 ,1,1630772,615815 ,1,1631212,619220 ,1,1631372,620405 ,1,1631700,622840 ,1,1631780,623440 ,1,1631792,623520 ,1,1631876,624180 ,1,1632316,627690 ,1,1632476,628970 ,1,1632804,631605 ,1,1632884,632300 ,1,1632896,632380 ,1,1632980,633040 ,1,1633420,636435 ,1,1633580,637645 ,1,1633908,640210 ,1,1633988,640875 ,1,1634000,640980 ,1,1634084,641675 ,1,1634524,645115 ,1,1634684,646340 ,1,1635012,648855 ,1,1635092,649480 ,1,1635104,649560 ,1,1635188,650200 ,1,1635628,653780 ,1,1635788,654990 ,1,1636092,657305 ,1,1636172,657915 ,1,1636184,657990 ,1,1636268,658700 ,1,1636708,662150 ,1,1636868,663435 ,1,1637172,665740 ,1,1637252,666360 ,1,1637264,666455 ,1,1637348,667100 ,1,1637788,670460 ,1,1637948,671740 ,1,1638252,674115 ,1,1638332,674735 ,1,1638344,674825 ,1,1638428,685 ,1,1638868,6560 ,1,1639028,8735 ,1,1639332,12780 ,1,1639412,13845 ,1,1639424,14010 ,1,1639508,15135 ,1,1639948,21030 ,1,1640108,23210 ,1,1640412,27385 ,1,1640492,28490 ,1,1640504,28650 ,1,1640588,29815 ,1,1641028,35675 ,1,1641188,37785 ,1,1641492,41910 ,1,1641572,42970 ,1,1641584,43140 ,1,1641668,44285 ,1,1642108,50060 ,1,1642268,52190 ,1,1642572,56300 ,1,1642652,57390 ,1,1642664,57545 ,1,1642748,58670 ,1,1643188,64525 ,1,1643348,66620 ,1,1643652,70550 ,1,1643732,71565 ,1,1643744,71720 ,1,1643828,72820 ,1,1644268,78515 ,1,1644428,80650 ,1,1644732,84710 ,1,1644812,85785 ,1,1644824,85950 ,1,1644908,87065 ,1,1645348,92830 ,1,1645508,94925 ,1,1645812,99030 ,1,1645892,100160 ,1,1645904,100325 ,1,1645988,101475 ,1,1646428,107485 ,1,1646588,109640 ,1,1646892,113795 ,1,1646972,114920 ,1,1646984,115085 ,1,1647068,116205 ,1,1647508,122060 ,1,1647668,124170 ,1,1647972,128245 ,1,1648052,129290 ,1,1648064,129450 ,1,1648148,130585 ,1,1648588,136460 ,1,1648748,138660 ,1,1649052,142650 ,1,1649132,143690 ,1,1649144,143850 ,1,1649228,144970 ,1,1649668,150985 ,1,1649828,153150 ,1,1650132,157220 ,1,1650212,158265 ,1,1650224,158405 ,1,1650308,159530 ,1,1650748,165465 ,1,1650908,167625 ,1,1651212,171845 ,1,1651292,172935 ,1,1651304,173100 ,1,1651388,174290 ,1,1651828,180330 ,1,1651988,182480 ,1,1652292,186665 ,1,1652372,187740 ,1,1652384,187885 ,1,1652468,189040 ,1,1652908,194950 ,1,1653068,197165 ,1,1653372,201260 ,1,1653452,202340 ,1,1653464,202515 ,1,1653548,203690 ,1,1653988,209615 ,1,1654148,211735 ,1,1654452,215915 ,1,1654532,217005 ,1,1654544,217140 ,1,1654628,218270 ,1,1655068,224205 ,1,1655228,226345 ,1,1655532,230390 ,1,1656788,247120 ,1,1656868,248180 ,1,1656880,248335 ,1,1657468,256230 ,1,1657548,257270 ,1,1657560,257415 ,1,1658056,263860 ,1,1658196,265745 ,1,1658252,266475 ,1,1658264,266635 ,1,1665772,365575 ,1,1665848,366550 ,1,1666140,370415 ,1,1666432,374235 ,1,1666960,378650 ,1,1667212,380630 ,1,1673216,428210 ,1,1673460,430175 ,1,1673752,432525 ,1,1674044,434900 ,1,1674308,437175 ,1,1674584,439405 ,1,1675552,447410 ,1,1675848,449710 ,1,1676164,452215 ,1,1676244,452875 ,1,1678080,467550 ,1,1678916,474020 ,1,1678996,474695 ,1,1679008,474775 ,1,1679088,475425 ,1,1679100,475540 ,1,1679180,476195 ,1,1679192,476295 ,1,1680568,487420 ,1,1681416,494400 ,1,1681548,495505 ,1,1681920,498505 ,1,1682024,499375 ,1,1682408,502540 ,1,1682668,504745 ,1,1682904,506610 ,1,1683540,511650 ,1,1683656,512600 ,1,1683736,513290 ,1,1683748,513415 ,1,1683872,514415 ,1,1684012,515510 ,1,1684068,515970 ,1,1684080,516080 ,1,1684820,521970 ,1,1685444,527090 ,1,1685700,529145 ,1,1685780,529780 ,1,1685792,529885 ,1,1685908,530890 ,1,1685988,531535 ,1,1686000,531645 ,1,1686116,532545 ,1,1686196,533215 ,1,1686208,533300 ,1,1686324,534305 ,1,1686404,534925 ,1,1686416,535015 ,1,1686532,535980 ,1,1686612,536605 ,1,1686624,536680 ,1,1686728,537465 ,1,1686808,538105 ,1,1686820,538240 ,1,1686924,539075 ,1,1687004,539680 ,1,1687016,539790 ,1,1687096,540475 ,1,1687108,540585 ,1,1687296,542185 ,1,1687376,542825 ,1,1687388,542935 ,1,1688388,550770 ,1,1689144,556955 ,1,1689752,562000 ,1,1689844,562805 ,1,1689856,562895 ,1,1690024,564210 ,1,1690036,564305 ,1,1690352,566875 ,1,1690444,567605 ,1,1690456,567685 ,1,1690532,568300 ,1,1690600,568880 ,1,1690980,572050 ,1,1691072,572790 ,1,1691084,572920 ,1,1691176,573655 ,1,1691188,573775 ,1,1691356,575145 ,1,1691368,575220 ,1,1692488,584440 ,1,1693656,594095 ,1,1693904,596105 ,1,1693984,596765 ,1,1693996,596885 ,1,1694088,597630 ,1,1694100,597755 ,1,1694192,598480 ,1,1694204,598590 ,1,1694432,600395 ,1,1694660,602310 ,1,1694780,603355 ,1,1694900,604430 ,1,1695020,605405 ,1,1695140,606405 ,1,1695260,607345 ,1,1695272,607440 ,1,1695284,607570 ,1,1695424,608780 ,1,1695472,609180 ,1,1695932,612880 ,1,1696476,617140 ,1,1697356,623755 ,1,1697368,623850 ,1,1697572,625435 ,1,1697768,627005 ,1,1697976,628690 ,1,1698308,631350 ,1,1698320,631440 ,1,1698388,632020 ,1,1698656,634125 ,1,1698668,634235 ,1,1698680,634335 ,1,1699012,636875 ,1,1699096,637475 ,1,1699468,640415 ,1,1700224,646370 ,1,1700420,647875 ,1,1700476,648320 ,1,1700604,649300 ,1,1700688,649920 ,1,1700756,650495 ,1,1700884,651565 ,1,1701432,655785 ,1,1701508,656375 ,1,1701532,656575 ,1,1701556,656750 ,1,1701580,656930 ,1,1701732,658105 ,1,1702064,660665 ,1,1702076,660775 ,1,1702100,660975 ,1,1702124,661180 ,1,1702148,661370 ,1,1702160,661460 ,1,1702564,664660 ,1,1702868,666970 ,1,1703452,671470 ,1,1703972,805 ,1,1704048,1800 ,1,1704124,2840 ,1,1704280,4900 ,1,1704540,8410 ,1,1704572,8840 ,1,1706084,29245 ,1,1706272,31790 ,1,1708040,55400 ,1,1709008,68225 ,1,1709628,76190 ,1,1710312,85280 ,1,1710460,87295 ,1,1710492,87740 ,1,1710736,90895 ,1,1711556,101930 ,1,1711704,103935 ,1,1712120,109580 ,1,1712144,109900 ,1,1712156,110100 ,1,1712180,110420 ,1,1712204,110730 ,1,1712228,111060 ,1,1712372,112995 ,1,1712516,115040 ,1,1712584,115940 ,1,1713560,128910 ,1,1714756,144860 ,1,1715212,151090 ,1,1715224,151245 ,1,1715344,152885 ,1,1715548,155635 ,1,1715560,155770 ,1,1715960,161095 ,1,1716432,167455 ,1,1716572,169450 ,1,1716684,170970 ,1,1716780,172280 ,1,1716896,173875 ,1,1716956,174745 ,1,1717164,177570 ,1,1717240,178645 ,1,1717332,179890 ,1,1717392,180670 ,1,1717468,181705 ,1,1717900,187640 ,1,1718144,190925 ,1,1718196,191655 ,1,1719336,207090 ,1,1719424,208260 ,1,1720888,227985 ,1,1720940,228690 ,1,1721132,231265 ,1,1723552,263345 ,1,1723672,264925 ,1,1723788,266480 ,1,1724068,270045 ,1,1724120,270710 ,1,1724500,275625 ,1,1725188,284395 ,1,1725332,286290 ,1,1726152,296830 ,1,1726272,298370 ,1,1726344,299335 ,1,1726472,301035 ,1,1726484,301215 ,1,1726568,302345 ,1,1726932,307150 ,1,1727040,308570 ,1,1727108,309485 ,1,1727340,312625 ,1,1727352,312785 ,1,1727504,314795 ,1,1727716,317505 ,1,1727740,317835 ,1,1728212,324005 ,1,1728472,327345 ,1,1728752,331065 ,1,1729204,337300 ,1,1729216,337445 ,1,1729344,339210 ,1,1729472,340920 ,1,1729528,341670 ,1,1729648,343250 ,1,1729952,347330 ,1,1737096,414825 ,1,1742852,461485 ,1,1742916,462020 ,1,1742992,462605 ,1,1743024,462895 ,1,1743056,463145 ,1,1743168,464070 ,1,1743740,468510 ,1,1744196,472025 ,1,1744860,477405 ,1,1745420,481955 ,1,1745888,485705 ,1,1746988,494690 ,1,1747048,495185 ,1,1747192,496350 ,1,1748620,508075 ,1,1750360,521995 ,1,1750524,523390 ,1,1750680,524630 ,1,1750828,525900 ,1,1751040,527590 ,1,1751136,528370 ,1,1751652,532530 ,1,1752732,541365 ,1,1755668,565090 ,1,1755884,566840 ,1,1756120,568725 ,1,1756364,570805 ,1,1756424,571255 ,1,1756520,572080 ,1,1756580,572560 ,1,1757808,582600 ,1,1757968,583985 ,1,1757980,584085 ,1,1758220,586060 ,1,1758232,586135 ,1,1758588,589150 ,1,1760520,605090 ,1,1760544,605295 ,1,1760808,607435 ,1,1760832,607655 ,1,1761064,609600 ,1,1761372,612150 ,1,1761616,614055 ,1,1761752,615125 ,1,1761888,616135 ,1,1762192,618505 ,1,1762328,619535 ,1,1762464,620535 ,1,1762708,622365 ,1,1762844,623385 ,1,1762980,624410 ,1,1763284,626835 ,1,1763420,627990 ,1,1763556,629030 ,1,1763800,630975 ,1,1763936,632095 ,1,1764072,633180 ,1,1764376,635555 ,1,1764620,637385 ,1,1764756,638450 ,1,1764892,639485 ,1,1765136,641490 ,1,1765272,642580 ,1,1765408,643635 ,1,1765648,645475 ,1,1765888,647370 ,1,1766592,652950 ,1,1766660,653475 ,1,1767524,660130 ,1,1768228,665605 ,1,1768980,671400 ,1,1769296,673870 ,1,1769560,1490 ,1,1769740,3890 ,1,1769892,5920 ,1,1770320,11635 ,1,1770344,11985 ,1,1770556,14795 ,1,1770568,14945 ,1,1770580,15130 ,1,1770664,16235 ,1,1770732,17170 ,1,1770756,17485 ,1,1770828,18475 ,1,1770904,19480 ,1,1771416,26465 ,1,1772360,39125 ,1,1776908,99355 ,1,1776920,99500 ,1,1777032,101050 ,1,1781668,163425 ,1,1786088,223475 ,1,1786200,225000 ,1,1790708,284190 ,1,1795252,344145 ,1,1795264,344300 ,1,1795376,345815 ,1,1800012,393865 ,1,1804848,432740 ,1,1809556,470635 ,1,1814400,509990 ,1,1814864,513755 ,1,1819576,551680 ,1,1824360,591135 ,1,1824664,593555 ,1,1825108,597215 ,1,1829700,633910 ,1,1834484,671155 ,1,1839076,54915 ,1,1843888,119015 ,1,1844352,125180 ,1,1848972,187635 ,1,1853936,254360 ,1,1858556,314540 ,1,1863124,375225 ,1,1863624,379095 ,1,1868356,416330 ,1,1868728,419195 ,1,1869212,423200 ,1,1869384,424590 ,1,1873960,461785 ,1,1874268,464295 ,1,1874768,468190 ,1,1879600,507350 ,1,1879972,510305 ,1,1880456,514215 ,1,1880628,515580 ,1,1885312,553320 ,1,1885620,555865 ,1,1885944,558600 ,1,1890328,594650 ,1,1894848,630785 ,1,1899200,664865 ,1,1903792,44000 ,1,1908144,101625 ,1,1908156,101805 ,1,1908168,101990 ,1,1908304,103840 ,1,1908728,109575 ,1,1908864,111445 ,1,1909008,113390 ,1,1909020,113565 ,1,1909032,113725 ,1,1909044,113920 ,1,1909176,115725 ,1,1913152,169030 ,1,1913188,169555 ,1,1913264,170560 ,1,1913296,171020 ,1,1913328,171460 ,1,1913428,172810 ,1,1913604,175290 ,1,1915316,198575 ,1,1915600,202400 ,1,1916396,213185 ,1,1916556,215375 ,1,1916624,216275 ,1,1916636,216435 ,1,1916648,216595 ,1,1916700,217315 ,1,1916736,217775 ,1,1916772,218265 ,1,1916864,219505 ,1,1916956,220720 ,1,1917056,222055 ,1,1917324,225695 ,1,1917552,228735 ,1,1918092,235935 ,1,1918104,236065 ,1,1918160,236825 ,1,1918172,237010 ,1,1918284,238490 ,1,1918296,238635 ,1,1918456,240760 ,1,1918536,241795 ,1,1919212,250835 ,1,1919284,251860 ,1,1919488,254590 ,1,1919732,257790 ,1,1919940,260505 ,1,1920204,263935 ,1,1920216,264085 ,1,1920268,264750 ,1,1920324,265545 ,1,1920568,268640 ,1,1920580,268805 ,1,1920996,274170 ,1,1921284,277835 ,1,1921492,280465 ,1,1921716,283360 ,1,1921728,283515 ,1,1921752,283825 ,1,1921960,286560 ,1,1922036,287570 ,1,1923472,306265 ,1,1923492,306545 ,1,1923856,311330 ,1,1924008,313430 ,1,1924788,323595 ,1,1924956,325770 ,1,1925036,326780 ,1,1925208,329055 ,1,1925260,329765 ,1,1925312,330445 ,1,1925484,332755 ,1,1925584,334145 ,1,1925748,336365 ,1,1926072,340820 ,1,1926788,350360 ,1,1926848,351190 ,1,1927092,354485 ,1,1927256,356695 ,1,1928224,369635 ,1,1929192,379335 ,1,1929420,381125 ,1,1929612,382645 ,1,1929776,383925 ,1,1930160,386850 ,1,1930464,389130 ,1,1930728,391145 ,1,1930892,392355 ,1,1931696,398685 ,1,1931996,401010 ,1,1932008,401090 ,1,1932300,403500 ,1,1932460,404770 ,1,1932580,405745 ,1,1932836,407800 ,1,1932892,408260 ,1,1933348,412055 ,1,1933508,413290 ,1,1933752,415225 ,1,1934052,417585 ,1,1934680,422670 ,1,1934796,423595 ,1,1934948,424855 ,1,1935012,425365 ,1,1935068,425865 ,1,1935304,427755 ,1,1936424,436915 ,1,1936568,438110 ,1,1936580,438215 ,1,1936604,438435 ,1,1936752,439595 ,1,1936928,441060 ,1,1936940,441145 ,1,1937268,443825 ,1,1937632,446845 ,1,1937960,449485 ,1,1938324,452340 ,1,1938652,455000 ,1,1939016,457945 ,1,1939344,460495 ,1,1939708,463500 ,1,1940036,466135 ,1,1940400,468915 ,1,1940728,471425 ,1,1941092,474270 ,1,1941420,477025 ,1,1941784,479940 ,1,1942112,482640 ,1,1942476,485555 ,1,1942804,488190 ,1,1943168,491205 ,1,1943496,493880 ,1,1943860,496815 ,1,1944188,499545 ,1,1944552,502525 ,1,1944880,505265 ,1,1945244,508215 ,1,1945572,510785 ,1,1945936,513760 ,1,1946264,516400 ,1,1946628,519250 ,1,1947352,525195 ,1,1948228,532285 ,1,1948380,533540 ,1,1949112,539400 ,1,1949560,543145 ,1,1950024,546800 ,1,1950836,553215 ,1,1950848,553325 ,1,1951660,560090 ,1,1952124,563860 ,1,1952136,563960 ,1,1952948,570615 ,1,1952984,570905 ,1,1953020,571160 ,1,1953056,571485 ,1,1953092,571780 ,1,1953124,572040 ,1,1953148,572230 ,1,1953392,574265 ,1,1953524,575330 ,1,1953692,576670 ,1,1953860,578020 ,1,1954028,579410 ,1,1954196,580805 ,1,1954360,582155 ,1,1954492,583310 ,1,1954624,584360 ,1,1954756,585470 ,1,1954888,586545 ,1,1954964,587175 ,1,1955096,588305 ,1,1955228,589415 ,1,1955508,591740 ,1,1955668,593025 ,1,1955800,594090 ,1,1955836,594435 ,1,1955904,594960 ,1,1955968,595465 ,1,1956004,595765 ,1,1956040,596030 ,1,1956344,598540 ,1,1956464,599525 ,1,1956584,600485 ,1,1956704,601425 ,1,1956824,602485 ,1,1956944,603545 ,1,1957064,604570 ,1,1957184,605575 ,1,1957304,606550 ,1,1957424,607535 ,1,1957544,608560 ,1,1957568,608775 ,1,1957604,609090 ,1,1957748,610235 ,1,1957884,611375 ,1,1957916,611625 ,1,1957948,611870 ,1,1957980,612145 ,1,1958012,612395 ,1,1958148,613445 ,1,1958488,616070 ,1,1959688,625190 ,1,1959752,625690 ,1,1959816,626210 ,1,1959880,626735 ,1,1959944,627255 ,1,1960008,627795 ,1,1960072,628330 ,1,1960136,628810 ,1,1960200,629330 ,1,1960260,629825 ,1,1960320,630265 ,1,1960660,633035 ,1,1961000,635675 ,1,1961340,638270 ,1,1961680,640970 ,1,1961752,641550 ,1,1961824,642170 ,1,1961892,642680 ,1,1962232,645305 ,1,1962372,646410 ,1,1962712,649025 ,1,1963032,651600 ,1,1964316,661560 ,1,1965120,667820 ,1,1965580,671350 ,1,1965592,671425 ,1,1965704,672305 ,1,1965816,673170 ,1,1965852,673470 ,1,1965956,674310 ,1,1966076,205 ,1,1966124,905 ,1,1966472,5550 ,1,1966580,7000 ,1,1966692,8515 ,1,1966812,10090 ,1,1966860,10735 ,1,1967256,16035 ,1,1967368,17530 ,1,1967416,18190 ,1,1967812,23560 ,1,1967924,25125 ,1,1968656,34940 ,1,1969444,45575 ,1,1969556,47060 ,1,1969668,48495 ,1,1969740,49420 ,1,1969848,50850 ,1,1969968,52445 ,1,1969980,52630 ,1,1970000,52905 ,1,1970076,53940 ,1,1970148,54905 ,1,1970332,57395 ,1,1970396,58275 ,1,1970432,58720 ,1,1972032,79625 ,1,1972056,79935 ,1,1972428,84905 ,1,1972452,85235 ,1,1972644,87840 ,1,1972952,91805 ,1,1972964,91980 ,1,1972976,92130 ,1,1973028,92835 ,1,1973040,92980 ,1,1973176,94775 ,1,1973256,95845 ,1,1973336,96900 ,1,1973476,98830 ,1,1973668,101455 ,1,1973860,104110 ,1,1974000,106000 ,1,1974080,107080 ,1,1974220,109000 ,1,1974300,110085 ,1,1974492,112670 ,1,1974912,118380 ,1,1974924,118555 ,1,1975312,123685 ,1,1975504,126275 ,1,1975812,130380 ,1,1976004,132960 ,1,1976312,137065 ,1,1976504,139660 ,1,1976812,143685 ,1,1976836,144005 ,1,1976860,144320 ,1,1976884,144640 ,1,1976908,144960 ,1,1976932,145305 ,1,1976956,145645 ,1,1976980,145990 ,1,1977004,146295 ,1,1977028,146650 ,1,1977220,149240 ,1,1977232,149395 ,1,1977244,149560 ,1,1977256,149715 ,1,1977972,159305 ,1,1978088,160875 ,1,1978368,164660 ,1,1978672,168800 ,1,1978864,171455 ,1,1979628,181945 ,1,1979820,184540 ,1,1979928,186040 ,1,1980072,187995 ,1,1980200,189720 ,1,1980264,190590 ,1,1981132,202345 ,1,1981200,203310 ,1,1981352,205385 ,1,1981708,210145 ,1,1981900,212735 ,1,1981924,213070 ,1,1981948,213405 ,1,1981972,213725 ,1,1981996,214065 ,1,1982020,214400 ,1,1982044,214730 ,1,1982068,215055 ,1,1982092,215365 ,1,1982116,215700 ,1,1982256,217570 ,1,1982268,217730 ,1,1982460,220290 ,1,1982504,220890 ,1,1982828,225275 ,1,1983020,227820 ,1,1983064,228420 ,1,1983204,230275 ,1,1983316,231755 ,1,1983432,233310 ,1,1983456,233635 ,1,1983480,233950 ,1,1983504,234275 ,1,1983528,234575 ,1,1983552,234880 ,1,1983576,235200 ,1,1983600,235520 ,1,1983624,235875 ,1,1983648,236190 ,1,1983672,236495 ,1,1983696,236810 ,1,1983720,237170 ,1,1983744,237485 ,1,1983768,237795 ,1,1983792,238095 ,1,1983816,238425 ,1,1983840,238745 ,1,1983864,239080 ,1,1983888,239375 ,1,1983912,239705 ,1,1983936,240025 ,1,1983960,240330 ,1,1983984,240640 ,1,1984008,240960 ,1,1984032,241270 ,1,1984056,241575 ,1,1984080,241895 ,1,1984104,242210 ,1,1984128,242530 ,1,1984152,242840 ,1,1984176,243135 ,1,1984200,243485 ,1,1984224,243840 ,1,1984248,244150 ,1,1984272,244445 ,1,1984296,244775 ,1,1984320,245115 ,1,1984452,246875 ,1,1984476,247220 ,1,1984500,247575 ,1,1984524,247870 ,1,1984548,248175 ,1,1984572,248515 ,1,1984596,248830 ,1,1984652,249550 ,1,1984728,250575 ,1,1984752,250890 ,1,1984776,251240 ,1,1984800,251560 ,1,1984824,251910 ,1,1984848,252240 ,1,1984872,252560 ,1,1984896,252885 ,1,1984920,253200 ,1,1984944,253525 ,1,1984968,253835 ,1,1984992,254150 ,1,1985016,254490 ,1,1985040,254830 ,1,1985064,255125 ,1,1985088,255440 ,1,1985112,255755 ,1,1985136,256080 ,1,1985160,256375 ,1,1985184,256680 ,1,1985208,256985 ,1,1985232,257315 ,1,1985256,257625 ,1,1985280,257945 ,1,1985304,258275 ,1,1985328,258590 ,1,1985352,258905 ,1,1985376,259220 ,1,1985400,259540 ,1,1985676,263090 ,1,1986040,267850 ,1,1986400,272460 ,1,1986692,276250 ,1,1987024,280415 ,1,1987388,285140 ,1,1987804,290545 ,1,1988008,293150 ,1,1988340,297395 ,1,1988704,302210 ,1,1989120,307715 ,1,1989412,311610 ,1,1989824,317035 ,1,1990264,322805 ,1,1990760,329285 ,1,1991052,333215 ,1,1991432,338430 ,1,1991840,343865 ,1,1992308,350130 ,1,1992608,354185 ,1,1993028,359865 ,1,1993140,361320 ,1,1993588,367365 ,1,1994012,372965 ,1,1994172,375030 ,1,1994592,378290 ,1,1994704,379160 ,1,1995152,382675 ,1,1995572,385915 ,1,1995732,387120 ,1,1996116,389990 ,1,1996228,390875 ,1,1996636,394015 ,1,1997092,397575 ,1,1997400,399985 ,1,1997928,404215 ,1,1998040,405130 ,1,1998588,409590 ,1,1999192,414445 ,1,1999500,416885 ,1,1999884,419910 ,1,1999996,420875 ,1,2000420,424325 ,1,2000880,428075 ,1,2001360,431925 ,1,2001472,432870 ,1,2001992,437200 ,1,2002548,441755 ,1,2003040,445825 ,1,2003212,447255 ,1,2003676,450850 ,1,2004168,454820 ,1,2004340,456240 ,1,2004724,459315 ,1,2004896,460640 ,1,2005256,463605 ,1,2005636,466625 ,1,2005808,467935 ,1,2006104,470190 ,1,2006216,471030 ,1,2006676,474680 ,1,2007148,478530 ,1,2007320,479930 ,1,2007408,480680 ,1,2007584,482130 ,1,2008280,487680 ,1,2008444,489035 ,1,2008528,489705 ,1,2008612,490435 ,1,2008696,491120 ,1,2008780,491840 ,1,2008864,492490 ,1,2008948,493165 ,1,2009028,493855 ,1,2009108,494505 ,1,2009192,495180 ,1,2009276,495890 ,1,2009452,497265 ,1,2009540,497995 ,1,2009628,498765 ,1,2010008,501855 ,1,2010368,504905 ,1,2010544,506305 ,1,2010792,508320 ,1,2012408,521205 ,1,2012724,523805 ,1,2013352,528915 ,1,2013628,531220 ,1,2013940,533765 ,1,2014696,539780 ,1,2014936,541835 ,1,2014948,541945 ,1,2014968,542100 ,1,2014980,542225 ,1,2014992,542310 ,1,2016260,552270 ,1,2016356,553080 ,1,2016476,554085 ,1,2016596,555090 ,1,2016608,555160 ,1,2016620,555260 ,1,2016632,555355 ,1,2016684,555790 ,1,2016696,555890 ,1,2016984,558315 ,1,2017376,561530 ,1,2017480,562415 ,1,2017696,564155 ,1,2017800,564980 ,1,2017904,565830 ,1,2018192,568135 ,1,2018204,568225 ,1,2018216,568330 ,1,2018228,568440 ,1,2018280,568875 ,1,2018408,569990 ,1,2018472,570495 ,1,2018484,570605 ,1,2018688,572255 ,1,2018944,574380 ,1,2019072,575435 ,1,2019364,577750 ,1,2019492,578835 ,1,2019784,581200 ,1,2019796,581325 ,1,2019988,582960 ,1,2020092,583830 ,1,2020348,585915 ,1,2020928,590800 ,1,2021104,592230 ,1,2021768,597620 ,1,2021944,599065 ,1,2023268,610100 ,1,2023368,610935 ,1,2023544,612360 ,1,2024232,617695 ,1,2025420,626765 ,1,2025952,631060 ,1,2026508,635465 ,1,2026688,636835 ,1,2026848,638045 ,1,2027008,639260 ,1,2027168,640580 ,1,2027268,641420 ,1,2027500,643245 ,1,2027660,644500 ,1,2027988,647040 ,1,2028108,647930 ,1,2028156,648305 ,1,2028200,648655 ,1,2028296,649380 ,1,2028436,650485 ,1,2028928,654415 ,1,2029064,655430 ,1,2029352,657630 ,1,2029364,657725 ,1,2029376,657820 ,1,2029428,658225 ,1,2029632,659820 ,1,2029796,661110 ,1,2030184,664190 ,1,2030348,665425 ,1,2030584,667250 ,1,2030596,667360 ,1,2030608,667445 ,1,2030660,667865 ,1,2030788,668815 ,1,2030856,669305 ,1,2031140,671540 ,1,2031340,673065 ,1,2031408,673620 ,1,2031612,200 ,1,2031684,1230 ,1,2032132,7225 ,1,2032480,11870 ,1,2032652,14190 ,1,2033044,19435 ,1,2033332,23320 ,1,2034044,32980 ,1,2034216,35290 ,1,2034796,43090 ,1,2035292,49650 ,1,2035588,53600 ,1,2035820,56725 ,1,2035992,59025 ,1,2036160,61260 ,1,2036660,67860 ,1,2037324,76380 ,1,2037488,78570 ,1,2037660,80880 ,1,2037672,81040 ,1,2037684,81205 ,1,2038328,89765 ,1,2040096,113610 ,1,2041984,138915 ,1,2042232,142170 ,1,2042688,148315 ,1,2042740,149020 ,1,2042792,149710 ,1,2042804,149895 ,1,2042816,150065 ,1,2043020,152840 ,1,2043120,154155 ,1,2043324,156910 ,1,2043656,161320 ,1,2043748,162565 ,1,2047788,217525 ,1,2047860,218510 ,1,2047948,219670 ,1,2048256,223810 ,1,2048568,227990 ,1,2048676,229390 ,1,2048776,230735 ,1,2048788,230920 ,1,2048800,231080 ,1,2048924,232725 ,1,2048936,232870 ,1,2048948,233055 ,1,2049040,234265 ,1,2049148,235720 ,1,2049244,237015 ,1,2049392,238975 ,1,2049432,239475 ,1,2049444,239660 ,1,2049540,240915 ,1,2049848,244985 ,1,2049956,246460 ,1,2050032,247495 ,1,2050340,251635 ,1,2050504,253830 ,1,2052312,277265 ,1,2053068,287045 ,1,2053396,291235 ,1,2053688,294945 ,1,2054104,300380 ,1,2054748,308945 ,1,2055588,320035 ,1,2055696,321420 ,1,2055708,321575 ,1,2055720,321720 ,1,2055772,322435 ,1,2055972,325040 ,1,2057920,351185 ,1,2058000,352260 ,1,2058688,361490 ,1,2061116,385990 ,1,2063004,400495 ,1,2063016,400575 ,1,2063168,401800 ,1,2063372,403495 ,1,2063384,403570 ,1,2063396,403685 ,1,2064176,409970 ,1,2064400,411870 ,1,2064604,413470 ,1,2065520,420760 ,1,2065724,422400 ,1,2065916,423990 ,1,2066808,431230 ,1,2066924,432160 ,1,2067064,433330 ,1,2067304,435265 ,1,2067872,440035 ,1,2068088,441780 ,1,2068476,444985 ,1,2068552,445630 ,1,2068988,449125 ,1,2069096,449990 ,1,2069176,450575 ,1,2069188,450680 ,1,2069304,451595 ,1,2069408,452420 ,1,2069532,453450 ,1,2069620,454135 ,1,2069744,455170 ,1,2069860,456110 ,1,2069976,456995 ,1,2070092,457995 ,1,2070260,459305 ,1,2070376,460160 ,1,2070484,461085 ,1,2070580,461875 ,1,2070692,462800 ,1,2070864,464190 ,1,2071032,465510 ,1,2071164,466555 ,1,2071336,467870 ,1,2071484,469020 ,1,2071564,469635 ,1,2071676,470460 ,1,2071756,471075 ,1,2071868,471935 ,1,2071968,472745 ,1,2072068,473500 ,1,2073000,481140 ,1,2073224,482945 ,1,2073504,485155 ,1,2073556,485625 ,1,2073580,485780 ,1,2073708,486820 ,1,2073856,488005 ,1,2073980,489025 ,1,2074068,489740 ,1,2074144,490390 ,1,2074220,491030 ,1,2075604,502365 ,1,2075828,504295 ,1,2075840,504370 ,1,2075852,504495 ,1,2075896,504845 ,1,2076024,505870 ,1,2076288,507975 ,1,2076476,509470 ,1,2077844,520370 ,1,2077856,520490 ,1,2077868,520590 ,1,2078024,521865 ,1,2078956,529460 ,1,2079108,530755 ,1,2079120,530850 ,1,2079132,530945 ,1,2079704,535595 ,1,2080024,538110 ,1,2080036,538235 ,1,2080092,538690 ,1,2080636,543190 ,1,2080648,543270 ,1,2081668,551295 ,1,2081680,551370 ,1,2081840,552640 ,1,2082056,554450 ,1,2082288,556345 ,1,2082584,558855 ,1,2082596,558945 ,1,2082608,559030 ,1,2082704,559810 ,1,2082716,559915 ,1,2082828,560840 ,1,2082880,561270 ,1,2082932,561695 ,1,2083568,566865 ,1,2083580,566970 ,1,2083592,567050 ,1,2083680,567755 ,1,2083852,569220 ,1,2083904,569630 ,1,2083916,569735 ,1,2084016,570545 ,1,2084116,571385 ,1,2084760,576630 ,1,2084828,577170 ,1,2084840,577260 ,1,2084892,577685 ,1,2084948,578130 ,1,2085000,578565 ,1,2085052,579010 ,1,2085292,581000 ,1,2085304,581075 ,1,2085632,583860 ,1,2085728,584655 ,1,2086180,588420 ,1,2086568,591640 ,1,2087152,596360 ,1,2087196,596735 ,1,2087312,597695 ,1,2087324,597835 ,1,2087412,598515 ,1,2087584,599915 ,1,2088040,603755 ,1,2088572,608200 ,1,2089608,616440 ,1,2089656,616825 ,1,2089668,616935 ,1,2089900,618765 ,1,2090036,619750 ,1,2090264,621430 ,1,2090344,622020 ,1,2090468,622945 ,1,2090516,623320 ,1,2090588,623890 ,1,2090652,624360 ,1,2090748,625100 ,1,2090760,625180 ,1,2090836,625815 ,1,2091044,627490 ,1,2091056,627575 ,1,2091068,627685 ,1,2091116,628120 ,1,2091568,631710 ,1,2091620,632150 ,1,2091696,632765 ,1,2091828,633780 ,1,2092008,635180 ,1,2092616,639845 ,1,2092784,641210 ,1,2092972,642750 ,1,2093524,647035 ,1,2093680,648215 ,1,2093768,648885 ,1,2093780,649000 ,1,2093892,649845 ,1,2093956,650355 ,1,2094024,650905 ,1,2094184,652265 ,1,2094456,654345 ,1,2094716,656310 ,1,2094872,657495 ,1,2094884,657590 ,1,2094932,657965 ,1,2094944,658055 ,1,2095160,659760 ,1,2095172,659865 ,1,2095332,661100 ,1,2095344,661205 ,1,2095444,662005 ,1,2095572,663045 ,1,2095700,664045 ,1,2096048,666680 ,1,2096100,667095 ,1,2096456,669830 ,1,2096508,670205 ,1,2096520,670290 ,1,2096812,672575 ,1,2097188,795 ,1,2097556,5720 ,1,2097908,10410 ,1,2099512,32105 ,1,2099524,32245 ,1,2099736,35070 ,1,2100180,41045 ,1,2100392,43875 ,1,2100508,45475 ,1,2101072,52895 ,1,2101408,57440 ,1,2101748,61950 ,1,2101760,62090 ,1,2101772,62265 ,1,2101784,62410 ,1,2102132,67040 ,1,2102176,67590 ,1,2102304,69270 ,1,2102432,70895 ,1,2102844,76180 ,1,2102876,76610 ,1,2102888,76750 ,1,2103016,78450 ,1,2103088,79420 ,1,2103216,81140 ,1,2103324,82575 ,1,2103336,82715 ,1,2103348,82895 ,1,2103708,87735 ,1,2103784,88725 ,1,2103836,89410 ,1,2103964,91060 ,1,2104176,93820 ,1,2104344,96060 ,1,2104628,99920 ,1,2104776,101980 ,1,2105132,106805 ,1,2105260,108560 ,1,2105524,112145 ,1,2105652,113905 ,1,2106000,118610 ,1,2106268,122160 ,1,2106280,122330 ,1,2106292,122505 ,1,2106644,127185 ,1,2106996,131895 ,1,2107340,136465 ,1,2107668,140880 ,1,2108012,145415 ,1,2108024,145570 ,1,2108036,145755 ,1,2108088,146455 ,1,2108260,148805 ,1,2108360,150160 ,1,2109236,161915 ,1,2109880,170660 ,1,2110292,176360 ,1,2110676,181605 ,1,2110688,181750 ,1,2110700,181935 ,1,2110752,182630 ,1,2111032,186490 ,1,2111312,190265 ,1,2111552,193500 ,1,2111804,196940 ,1,2111856,197635 ,1,2112372,204655 ,1,2112700,209085 ,1,2113064,214010 ,1,2113284,217000 ,1,2113392,218415 ,1,2115536,247055 ,1,2115824,250880 ,1,2115968,252880 ,1,2116204,256035 ,1,2116452,259280 ,1,2116880,264795 ,1,2117072,267355 ,1,2117196,268905 ,1,2117420,271810 ,1,2117528,273195 ,1,2117924,278235 ,1,2118624,287295 ,1,2118824,289855 ,1,2119260,295430 ,1,2119400,297240 ,1,2119672,300820 ,1,2120008,305320 ,1,2120300,309160 ,1,2120636,313705 ,1,2121356,323050 ,1,2121512,325085 ,1,2121748,328130 ,1,2122120,333120 ,1,2122364,336480 ,1,2122556,339160 ,1,2123024,345400 ,1,2123072,346035 ,1,2123528,352140 ,1,2123804,355870 ,1,2123912,357335 ,1,2124072,359495 ,1,2124120,360120 ,1,2124980,371590 ,1,2125028,372210 ,1,2125148,373770 ,1,2125296,375430 ,1,2125632,378020 ,1,2125644,378135 ,1,2125716,378705 ,1,2126832,387315 ,1,2126908,387920 ,1,2127324,391050 ,1,2127396,391600 ,1,2128156,397525 ,1,2128324,398855 ,1,2128568,400710 ,1,2128716,401925 ,1,2128808,402670 ,1,2128832,402860 ,1,2129388,407355 ,1,2129412,407540 ,1,2129476,408065 ,1,2129548,408660 ,1,2130456,415975 ,1,2131680,425900 ,1,2131724,426295 ,1,2131812,427000 ,1,2131920,427830 ,1,2132172,429840 ,1,2133088,437410 ,1,2134068,445465 ,1,2134140,446050 ,1,2134164,446260 ,1,2134188,446435 ,1,2134212,446625 ,1,2136052,461350 ,1,2137724,474470 ,1,2143848,524245 ,1,2143944,525040 ,1,2144536,529820 ,1,2145820,540235 ,1,2146028,542015 ,1,2146600,546525 ,1,2147252,551640 ,1,2147320,552165 ,1,2147380,552685 ,1,2147440,553165 ,1,2147936,557315 ,1,2148040,558185 ,1,2148256,559945 ,1,2148596,562795 ,1,2148880,565050 ,1,2148936,565495 ,1,2149836,572925 ,1,2149912,573535 ,1,2151064,582985 ,1,2152380,593855 ,1,2152424,594230 ,1,2152508,594935 ,1,2153104,599790 ,1,2153164,600275 ,1,2153224,600755 ,1,2153236,600860 ,1,2153348,601740 ,1,2153508,603160 ,1,2154460,611115 ,1,2154736,613295 ,1,2154768,613555 ,1,2154848,614165 ,1,2155560,619655 ,1,2155936,622440 ,1,2156372,625820 ,1,2156532,627105 ,1,2156612,627765 ,1,2156852,629695 ,1,2156936,630330 ,1,2157220,632675 ,1,2157432,634330 ,1,2157764,636870 ,1,2157856,637545 ,1,2157932,638145 ,1,2158004,638675 ,1,2158104,639445 ,1,2158424,642100 ,1,2158596,643420 ,1,2158644,643810 ,1,2158788,644910 ,1,2158836,645275 ,1,2159592,651170 ,1,2159776,652705 ,1,2161068,662725 ,1,2162100,670660 ,1,2163444,10405 ,1,2164476,24320 ,1,2164968,31030 ,1,2166180,47255 ,1,2167448,64130 ,1,2169052,85110 ,1,2169952,97010 ,1,2170296,101745 ,1,2170696,107190 ,1,2171136,113170 ,1,2171364,116330 ,1,2171496,118065 ,1,2171668,120355 ,1,2171912,123570 ,1,2172380,129845 ,1,2174732,161385 ,1,2174856,163050 ,1,2184632,293340 ,1,2192212,386160 ,1,2193336,394750 ,1,2193488,395920 ,1,2197460,427865 ,1,2199248,442475 ,1,2201672,462050 ,1,2202944,471975 ,1,2204484,484415 ,1,2206468,500655 ,1,2206588,501630 ,1,2211356,540240 ,1,2211432,540890 ,1,2211772,543705 ,1,2212092,546185 ,1,2212544,549720 ,1,2212972,553135 ,1,2212984,553240 ,1,2213072,553985 ,1,2218920,602035 ,1,2224184,643840 ,1,2224248,644355 ,1,2224312,644825 ,1,2225016,650230 ,1,2225028,650345 ,1,2225040,650440 ,1,2225052,650550 ,1,2225064,650640 ,1,2225120,651105 ,1,2225224,652015 ,1,2225384,653250 ,1,2225504,654175 ,1,2225588,654830 ,1,2225960,657620 ,1,2226108,658820 ,1,2231260,41150 ,1,2233584,71935 ,1,2234136,79115 ,1,2234772,87610 ,1,2235528,97555 ,1,2235900,102695 ,1,2236088,105250 ,1,2236232,107185 ,1,2236680,113285 ,1,2236824,115305 ,1,2237016,117860 ,1,2237544,124855 ,1,2237732,127395 ,1,2237876,129285 ,1,2238040,131515 ,1,2238148,132965 ,1,2238292,134850 ,1,2238424,136620 ,1,2238480,137405 ,1,2238680,140095 ,1,2238784,141470 ,1,2239060,145085 ,1,2239456,150490 ,1,2239468,150660 ,1,2239892,156370 ,1,2240332,162245 ,1,2241136,173210 ,1,2241940,184210 ,1,2242380,190220 ,1,2242392,190365 ,1,2242448,191130 ,1,2242504,191905 ,1,2243468,204985 ,1,2243480,205160 ,1,2243976,211785 ,1,2243988,211965 ,1,2244036,212620 ,1,2244080,213230 ,1,2244092,213400 ,1,2244332,216660 ,1,2244428,217955 ,1,2244568,219820 ,1,2244688,221430 ,1,2244712,221740 ,1,2245260,229095 ,1,2245308,229705 ,1,2245556,233050 ,1,2245724,235275 ,1,2245788,236140 ,1,2245852,237020 ,1,2245916,237855 ,1,2245980,238695 ,1,2246044,239555 ,1,2246108,240385 ,1,2246172,241225 ,1,2246236,242060 ,1,2246296,242835 ,1,2246356,243665 ,1,2246468,245185 ,1,2246584,246710 ,1,2246696,248230 ,1,2246768,249180 ,1,2246840,250170 ,1,2247180,254785 ,1,2249236,281290 ,1,2249416,283625 ,1,2249504,284770 ,1,2249604,286080 ,1,2250484,297390 ,1,2250572,298545 ,1,2250596,298860 ,1,2250908,303045 ,1,2251104,305635 ,1,2251420,309795 ,1,2251536,311310 ,1,2251608,312350 ,1,2251632,312675 ,1,2251656,312995 ,1,2251736,314050 ,1,2253240,333815 ,1,2253984,343860 ,1,2256044,371470 ,1,2256488,376360 ,1,2256916,379665 ,1,2257196,381910 ,1,2257476,384100 ,1,2257784,386430 ,1,2257960,387760 ,1,2258136,389065 ,1,2258332,390550 ,1,2258556,392255 ,1,2258836,394445 ,1,2258860,394665 ,1,2259344,398410 ,1,2260012,403770 ,1,2260332,406350 ,1,2260432,407130 ,1,2260456,407320 ,1,2260480,407490 ,1,2260504,407690 ,1,2260528,407875 ,1,2260552,408090 ,1,2260576,408290 ,1,2260600,408490 ,1,2260624,408690 ,1,2260648,408885 ,1,2260672,409075 ,1,2260696,409280 ,1,2260720,409475 ,1,2260744,409680 ,1,2260768,409870 ,1,2260848,410525 ,1,2261072,412375 ,1,2261380,414800 ,1,2261700,417315 ,1,2262044,420065 ,1,2262420,423135 ,1,2262860,426810 ,1,2263204,429530 ,1,2263580,432575 ,1,2264020,436250 ,1,2264428,439570 ,1,2264868,443180 ,1,2265372,447385 ,1,2265748,450330 ,1,2266156,453585 ,1,2266632,457415 ,1,2266988,460210 ,1,2267376,463410 ,1,2267736,466280 ,1,2268092,469010 ,1,2268480,471965 ,1,2268856,474985 ,1,2269264,478280 ,1,2269748,482295 ,1,2270124,485265 ,1,2270532,488565 ,1,2271016,492565 ,1,2271308,494965 ,1,2271624,497485 ,1,2271964,500335 ,1,2272256,502740 ,1,2272572,505395 ,1,2272912,508105 ,1,2273176,510195 ,1,2273444,512320 ,1,2273708,514520 ,1,2273928,516280 ,1,2274200,518445 ,1,2274464,520480 ,1,2274720,522610 ,1,2274924,524295 ,1,2275124,525965 ,1,2275204,526590 ,1,2275408,528235 ,1,2275696,530560 ,1,2275844,531815 ,1,2275912,532310 ,1,2276244,535070 ,1,2276344,535860 ,1,2276632,538095 ,1,2276920,540470 ,1,2277100,542010 ,1,2277384,544315 ,1,2277664,546470 ,1,2277952,548705 ,1,2278268,551220 ,1,2278408,552305 ,1,2278476,552885 ,1,2278544,553465 ,1,2278688,554655 ,1,2278828,555785 ,1,2278968,556950 ,1,2279160,558590 ,1,2279352,560175 ,1,2279492,561315 ,1,2279684,562930 ,1,2279824,564030 ,1,2279924,564825 ,1,2280012,565540 ,1,2280152,566675 ,1,2280240,567355 ,1,2280264,567555 ,1,2280364,568375 ,1,2280544,569915 ,1,2280684,571055 ,1,2280768,571735 ,1,2280908,572915 ,1,2281260,575785 ,1,2281284,575970 ,1,2281392,576830 ,1,2281500,577675 ,1,2281800,580175 ,1,2282024,582005 ,1,2282172,583295 ,1,2282420,585335 ,1,2282592,586755 ,1,2282792,588445 ,1,2282980,590070 ,1,2283260,592335 ,1,2283540,594620 ,1,2283924,597735 ,1,2284616,603450 ,1,2284892,605800 ,1,2285100,607510 ,1,2285500,610820 ,1,2285780,613065 ,1,2285980,614650 ,1,2286220,616480 ,1,2286392,617845 ,1,2286508,618760 ,1,2286616,619530 ,1,2286764,620635 ,1,2287208,623975 ,1,2287356,625095 ,1,2287444,625805 ,1,2287640,627395 ,1,2287792,628635 ,1,2288104,631105 ,1,2288760,636270 ,1,2289448,641700 ,1,2290208,647625 ,1,2290896,653065 ,1,2291628,658695 ,1,2292728,667240 ,1,2293980,3265 ,1,2294312,7705 ,1,2295020,17175 ,1,2296044,31110 ,1,2296208,33235 ,1,2296344,35060 ,1,2296356,35240 ,1,2296444,36435 ,1,2297328,48235 ,1,2297488,50305 ,1,2298052,57945 ,1,2298392,62405 ,1,2299112,71830 ,1,2299220,73215 ,1,2299556,77555 ,1,2299880,81865 ,1,2300016,83680 ,1,2300132,85230 ,1,2300508,90240 ,1,2300624,91705 ,1,2301064,97560 ,1,2301180,99145 ,1,2301608,105025 ,1,2302352,115180 ,1,2303136,125620 ,1,2303268,127390 ,1,2303400,129130 ,1,2303540,131035 ,1,2304480,143515 ,1,2304620,145405 ,1,2304748,147180 ,1,2304820,148145 ,1,2304904,149285 ,1,2305592,158505 ,1,2305728,160310 ,1,2305868,162240 ,1,2306148,165980 ,1,2306196,166635 ,1,2306284,167865 ,1,2306512,171015 ,1,2307084,178920 ,1,2307096,179075 ,1,2307172,180100 ,1,2307236,180950 ,1,2307316,182045 ,1,2307412,183335 ,1,2307464,184030 ,1,2307516,184750 ,1,2307568,185455 ,1,2307620,186205 ,1,2307672,186910 ,1,2307720,187565 ,1,2307768,188210 ,1,2308108,192810 ,1,2308448,197430 ,1,2308556,198895 ,1,2308936,204060 ,1,2309400,210295 ,1,2309472,211270 ,1,2309780,215485 ,1,2309880,216810 ,1,2309980,218150 ,1,2310148,220400 ,1,2310160,220540 ,1,2310260,221890 ,1,2310960,231310 ,1,2311008,231930 ,1,2311028,232210 ,1,2311072,232770 ,1,2311340,236355 ,1,2311652,240475 ,1,2311736,241570 ,1,2311932,244210 ,1,2311976,244770 ,1,2312052,245845 ,1,2312364,250010 ,1,2312444,251080 ,1,2312500,251865 ,1,2312700,254545 ,1,2312968,258065 ,1,2312980,258225 ,1,2312992,258380 ,1,2313360,263135 ,1,2313504,265030 ,1,2313772,268490 ,1,2313828,269210 ,1,2314044,272015 ,1,2314144,273310 ,1,2314412,276735 ,1,2314628,279430 ,1,2314844,282210 ,1,2314972,283885 ,1,2315184,286685 ,1,2315392,289335 ,1,2315608,292105 ,1,2315856,295265 ,1,2315948,296470 ,1,2316048,297755 ,1,2316336,301570 ,1,2316512,303940 ,1,2316568,304675 ,1,2316672,306035 ,1,2316812,307885 ,1,2316860,308520 ,1,2316924,309370 ,1,2316936,309530 ,1,2316948,309685 ,1,2317012,310520 ,1,2317024,310670 ,1,2317036,310835 ,1,2317160,312565 ,1,2317172,312740 ,1,2317184,312910 ,1,2317320,314690 ,1,2317444,316250 ,1,2317456,316405 ,1,2317468,316570 ,1,2317604,318370 ,1,2317688,319445 ,1,2317700,319600 ,1,2318388,328590 ,1,2318512,330225 ,1,2319100,338275 ,1,2319576,344620 ,1,2319588,344805 ,1,2319600,344940 ,1,2319708,346435 ,1,2319720,346590 ,1,2319744,346910 ,1,2319808,347780 ,1,2319820,347950 ,1,2319832,348095 ,1,2319920,349270 ,1,2320068,351240 ,1,2320280,354095 ,1,2320292,354265 ,1,2320360,355155 ,1,2320372,355320 ,1,2320512,357230 ,1,2320788,360920 ,1,2320800,361070 ,1,2320976,363410 ,1,2320988,363580 ,1,2321264,367305 ,1,2321276,367470 ,1,2321452,369810 ,1,2321684,372850 ,1,2321696,373010 ,1,2321880,375250 ,1,2321892,375355 ,1,2322076,376755 ,1,2322088,376845 ,1,2322200,377710 ,1,2322280,378345 ,1,2322356,378930 ,1,2322696,381590 ,1,2323036,384280 ,1,2323332,386530 ,1,2323384,386920 ,1,2324044,391890 ,1,2324704,397035 ,1,2326444,411020 ,1,2326508,411565 ,1,2326732,413350 ,1,2327828,422070 ,1,2327904,422720 ,1,2328056,423950 ,1,2328324,426205 ,1,2328336,426325 ,1,2328612,428520 ,1,2329092,432370 ,1,2329224,433445 ,1,2329384,434725 ,1,2329484,435590 ,1,2329620,436780 ,1,2329680,437280 ,1,2329816,438390 ,1,2329952,439480 ,1,2330088,440605 ,1,2330608,444860 ,1,2331044,448430 ,1,2331096,448820 ,1,2331232,449915 ,1,2331764,454125 ,1,2331900,455285 ,1,2331948,455670 ,1,2332084,456725 ,1,2332220,457850 ,1,2332396,459250 ,1,2332964,463825 ,1,2333040,464460 ,1,2333192,465645 ,1,2333244,466075 ,1,2333688,469475 ,1,2333700,469575 ,1,2334752,477915 ,1,2335044,480315 ,1,2335144,481135 ,1,2335176,481405 ,1,2335788,486315 ,1,2335844,486755 ,1,2336076,488650 ,1,2336692,493710 ,1,2336704,493805 ,1,2336996,496200 ,1,2337008,496300 ,1,2337300,498690 ,1,2337312,498790 ,1,2337368,499240 ,1,2337424,499710 ,1,2337480,500165 ,1,2340432,524020 ,1,2340444,524140 ,1,2342368,539710 ,1,2342900,544170 ,1,2343164,546180 ,1,2345156,562385 ,1,2346044,569590 ,1,2349008,594030 ,1,2349484,597965 ,1,2349612,598965 ,1,2349668,599430 ,1,2349796,600455 ,1,2351400,613735 ,1,2351500,614540 ,1,2351700,616045 ,1,2352564,622605 ,1,2352816,624485 ,1,2352924,625375 ,1,2353020,626120 ,1,2353128,626990 ,1,2353160,627240 ,1,2353268,628185 ,1,2353356,628855 ,1,2353584,630635 ,1,2353764,632135 ,1,2353788,632355 ,1,2354128,634995 ,1,2354468,637585 ,1,2354764,639875 ,1,2354852,640625 ,1,2355152,643035 ,1,2355240,643710 ,1,2355900,648790 ,1,2356560,654030 ,1,2357500,661310 ,1,2357524,661495 ,1,2357548,661695 ,1,2357572,661885 ,1,2357596,662080 ,1,2357620,662280 ,1,2357644,662480 ,1,2357668,662660 ,1,2357784,663580 ,1,2357808,663760 ,1,2357832,663950 ,1,2357856,664135 ,1,2358116,666110 ,1,2358272,667320 ,1,2358528,669250 ,1,2358820,671530 ,1,2358936,672425 ,1,2358960,672600 ,1,2359356,1130 ,1,2359380,1445 ,1,2359532,3485 ,1,2359556,3790 ,1,2360520,16690 ,1,2360544,16995 ,1,2360664,18620 ,1,2360688,18935 ,1,2360712,19260 ,1,2360736,19590 ,1,2360760,19900 ,1,2360784,20235 ,1,2360808,20540 ,1,2360944,22365 ,1,2360968,22695 ,1,2360992,23020 ,1,2361016,23375 ,1,2361040,23710 ,1,2361144,25170 ,1,2361452,29365 ,1,2361556,30775 ,1,2361868,34895 ,1,2361972,36330 ,1,2362276,40420 ,1,2362744,46655 ,1,2363272,53650 ,1,2363396,55345 ,1,2363520,57000 ,1,2363592,57990 ,1,2363696,59355 ,1,2363808,60830 ,1,2363948,62680 ,1,2364088,64570 ,1,2364228,66400 ,1,2364368,68220 ,1,2364508,70045 ,1,2364648,71820 ,1,2364784,73585 ,1,2364852,74460 ,1,2364904,75100 ,1,2367344,107750 ,1,2368120,118285 ,1,2368660,125460 ,1,2369308,134085 ,1,2369484,136455 ,1,2369772,140385 ,1,2370108,144750 ,1,2370176,145705 ,1,2370652,152190 ,1,2371216,159660 ,1,2371240,160000 ,1,2371264,160305 ,1,2371288,160635 ,1,2371836,168085 ,1,2372064,171240 ,1,2372736,180475 ,1,2374348,202350 ,1,2375216,214115 ,1,2377632,246400 ,1,2381832,301040 ,1,2381920,302205 ,1,2382220,306215 ,1,2382308,307360 ,1,2384672,338770 ,1,2384784,340265 ,1,2384896,341780 ,1,2385008,343245 ,1,2385120,344735 ,1,2385232,346255 ,1,2385344,347775 ,1,2385456,349265 ,1,2385568,350745 ,1,2385676,352200 ,1,2385784,353660 ,1,2385940,355755 ,1,2386784,367080 ,1,2386808,367410 ,1,2386952,369320 ,1,2387140,371795 ,1,2387224,372895 ,1,2388732,385495 ,1,2388992,387440 ,1,2389148,388640 ,1,2389404,390545 ,1,2390700,400620 ,1,2390992,403000 ,1,2391108,403960 ,1,2391184,404555 ,1,2391408,406375 ,1,2391468,406865 ,1,2391532,407350 ,1,2391604,407940 ,1,2391960,410845 ,1,2393172,420525 ,1,2393312,421665 ,1,2394324,429915 ,1,2394808,433845 ,1,2394944,434935 ,1,2395256,437605 ,1,2395480,439395 ,1,2395556,440085 ,1,2396040,444005 ,1,2396384,446840 ,1,2396444,447380 ,1,2396496,447780 ,1,2397108,452605 ,1,2397204,453380 ,1,2397260,453815 ,1,2397320,454275 ,1,2397484,455660 ,1,2397548,456160 ,1,2397676,457185 ,1,2397740,457730 ,1,2397804,458235 ,1,2397860,458715 ,1,2397912,459080 ,1,2397984,459640 ,1,2398224,461565 ,1,2398508,463900 ,1,2399504,471610 ,1,2399560,472055 ,1,2399624,472540 ,1,2399664,472900 ,1,2402312,494395 ,1,2402352,494715 ,1,2402364,494815 ,1,2402404,495150 ,1,2402704,497560 ,1,2402760,498025 ,1,2402856,498860 ,1,2402964,499755 ,1,2403036,500325 ,1,2403560,504690 ,1,2403636,505300 ,1,2403692,505785 ,1,2404160,509495 ,1,2404200,509805 ,1,2404724,514045 ,1,2405716,521965 ,1,2405760,522340 ,1,2405804,522740 ,1,2405848,523100 ,1,2405892,523450 ,1,2405936,523760 ,1,2405976,524100 ,1,2406020,524490 ,1,2406440,527920 ,1,2406496,528360 ,1,2406624,529350 ,1,2406796,530820 ,1,2406852,531280 ,1,2407936,539990 ,1,2408964,548250 ,1,2409772,554775 ,1,2410320,559280 ,1,2410400,559940 ,1,2410480,560600 ,1,2410560,561260 ,1,2410640,561945 ,1,2410720,562620 ,1,2410800,563275 ,1,2410880,563885 ,1,2410956,564500 ,1,2413328,583990 ,1,2413388,584485 ,1,2413444,584960 ,1,2413792,587830 ,1,2414044,590005 ,1,2414256,591710 ,1,2415028,598040 ,1,2415216,599520 ,1,2415492,601735 ,1,2415872,605015 ,1,2416240,608065 ,1,2416552,610640 ,1,2416848,613025 ,1,2417540,618420 ,1,2418128,622800 ,1,2418828,628370 ,1,2419180,631160 ,1,2419648,634845 ,1,2419880,636635 ,1,2419964,637280 ,1,2420344,640240 ,1,2420868,644450 ,1,2421092,646140 ,1,2421448,648880 ,1,2421864,652255 ,1,2421972,653095 ,1,2422080,653905 ,1,2422416,656480 ,1,2425324,6890 ,1,2425696,11855 ,1,2426988,29355 ,1,2427348,34135 ,1,2429908,68300 ,1,2432968,108930 ,1,2432980,109095 ,1,2433036,109850 ,1,2435112,137720 ,1,2435608,144260 ,1,2435804,146955 ,1,2436000,149605 ,1,2436268,153260 ,1,2438696,186255 ,1,2438896,188960 ,1,2438972,190005 ,1,2439396,195730 ,1,2439476,196835 ,1,2439488,196985 ,1,2439568,198070 ,1,2439648,199145 ,1,2439728,200220 ,1,2439808,201310 ,1,2439888,202395 ,1,2439964,203460 ,1,2439976,203630 ,1,2440056,204705 ,1,2440136,205805 ,1,2440356,208755 ,1,2440988,217310 ,1,2441056,218200 ,1,2441440,223350 ,1,2441452,223540 ,1,2441996,230800 ,1,2442552,238210 ,1,2442920,243040 ,1,2442932,243220 ,1,2442944,243365 ,1,2443320,248440 ,1,2443332,248625 ,1,2443572,251850 ,1,2444396,262680 ,1,2444884,269010 ,1,2445348,274995 ,1,2445924,282335 ,1,2446116,284830 ,1,2446356,287970 ,1,2446432,288930 ,1,2448640,317880 ,1,2449252,325865 ,1,2449368,327340 ,1,2449484,328900 ,1,2449600,330430 ,1,2449716,332000 ,1,2449832,333590 ,1,2449948,335160 ,1,2450064,336775 ,1,2450180,338380 ,1,2450296,339945 ,1,2450412,341515 ,1,2450452,342055 ,1,2450528,343030 ,1,2450664,344855 ,1,2450800,346685 ,1,2450848,347325 ,1,2450932,348475 ,1,2450980,349110 ,1,2451224,352360 ,1,2451372,354380 ,1,2451464,355595 ,1,2451536,356580 ,1,2451696,358745 ,1,2451752,359485 ,1,2451852,360815 ,1,2451992,362610 ,1,2452088,363975 ,1,2452300,366830 ,1,2452512,369630 ,1,2452824,373715 ,1,2453248,377520 ,1,2453456,379155 ,1,2453604,380300 ,1,2453816,382000 ,1,2453956,383080 ,1,2454064,383920 ,1,2454232,385205 ,1,2454332,385980 ,1,2454432,386725 ,1,2454464,386965 ,1,2454544,387585 ,1,2454680,388585 ,1,2455236,392795 ,1,2455372,393860 ,1,2455464,394620 ,1,2455564,395420 ,1,2455656,396095 ,1,2455756,396855 ,1,2455892,397955 ,1,2456024,399010 ,1,2456108,399680 ,1,2456212,400440 ,1,2456308,401190 ,1,2456452,402365 ,1,2456584,403435 ,1,2456724,404595 ,1,2456804,405245 ,1,2456900,406050 ,1,2457016,406955 ,1,2457144,407965 ,1,2457304,409275 ,1,2457404,410110 ,1,2457512,410965 ,1,2457612,411845 ,1,2457684,412415 ,1,2457784,413170 ,1,2457892,414030 ,1,2458020,415075 ,1,2458156,416135 ,1,2458316,417380 ,1,2458392,417955 ,1,2458508,418850 ,1,2458592,419520 ,1,2459140,424070 ,1,2459216,424675 ,1,2459300,425360 ,1,2459400,426235 ,1,2459516,427185 ,1,2459628,428050 ,1,2459776,429240 ,1,2459932,430505 ,1,2460036,431340 ,1,2460128,432060 ,1,2460212,432785 ,1,2460304,433520 ,1,2460480,434930 ,1,2460640,436345 ,1,2460716,436975 ,1,2460804,437705 ,1,2460908,438560 ,1,2461024,439470 ,1,2461156,440580 ,1,2461496,443325 ,1,2461644,444570 ,1,2461808,445935 ,1,2461948,447105 ,1,2462072,448110 ,1,2462344,450225 ,1,2463044,455850 ,1,2463108,456360 ,1,2463240,457420 ,1,2463252,457525 ,1,2463276,457725 ,1,2463868,462460 ,1,2463984,463400 ,1,2464116,464500 ,1,2464244,465485 ,1,2464376,466520 ,1,2464508,467515 ,1,2465048,471660 ,1,2467464,491275 ,1,2467768,493735 ,1,2468496,499700 ,1,2468740,501700 ,1,2468764,501905 ,1,2468788,502090 ,1,2468812,502300 ,1,2468836,502500 ,1,2468860,502715 ,1,2468884,502930 ,1,2468908,503140 ,1,2468932,503350 ,1,2468956,503570 ,1,2468980,503755 ,1,2469004,503955 ,1,2469028,504160 ,1,2469384,507015 ,1,2469408,507220 ,1,2469716,509645 ,1,2469944,511440 ,1,2470072,512465 ,1,2470316,514515 ,1,2470472,515745 ,1,2470952,519505 ,1,2471108,520790 ,1,2471640,525180 ,1,2471716,525820 ,1,2471976,527905 ,1,2471988,528040 ,1,2472232,529955 ,1,2472580,532825 ,1,2472712,533910 ,1,2472808,534705 ,1,2472940,535780 ,1,2473068,536785 ,1,2473364,539130 ,1,2473496,540185 ,1,2473644,541500 ,1,2473828,543000 ,1,2473972,544160 ,1,2474264,546395 ,1,2474524,548440 ,1,2474740,550145 ,1,2474864,551110 ,1,2475036,552485 ,1,2475172,553630 ,1,2475332,554960 ,1,2475536,556600 ,1,2475660,557700 ,1,2475796,558825 ,1,2475920,559805 ,1,2476068,561040 ,1,2476192,562085 ,1,2476356,563440 ,1,2476512,564670 ,1,2476780,566835 ,1,2477040,568940 ,1,2477188,570215 ,1,2477356,571580 ,1,2478612,581840 ,1,2478732,582885 ,1,2478864,583980 ,1,2479020,585265 ,1,2479152,586340 ,1,2479340,587950 ,1,2479484,589145 ,1,2479656,590605 ,1,2479800,591770 ,1,2480020,593520 ,1,2480164,594745 ,1,2480392,596560 ,1,2480672,598860 ,1,2480816,600045 ,1,2480948,601130 ,1,2481088,602255 ,1,2481288,604045 ,1,2481792,608225 ,1,2481984,609790 ,1,2482240,611900 ,1,2482540,614275 ,1,2482684,615410 ,1,2482924,617270 ,1,2483424,621015 ,1,2484548,629815 ,1,2484704,631055 ,1,2484984,633320 ,1,2485116,634370 ,1,2485240,635300 ,1,2485384,636390 ,1,2485528,637480 ,1,2485652,638445 ,1,2485784,639435 ,1,2485908,640495 ,1,2486052,641665 ,1,2486116,642210 ,1,2486180,642675 ,1,2486304,643630 ,1,2486448,644760 ,1,2486592,645870 ,1,2486716,646845 ,1,2486980,648845 ,1,2487576,653615 ,1,2488224,658570 ,1,2488912,664010 ,1,2489560,668955 ,1,2490236,674255 ,1,2491312,12925 ,1,2492528,29410 ,1,2492852,33735 ,1,2493304,39790 ,1,2493448,41720 ,1,2493600,43760 ,1,2493744,45715 ,1,2493896,47690 ,1,2494384,54210 ,1,2495060,63230 ,1,2495204,65195 ,1,2495328,66765 ,1,2495680,71295 ,1,2495760,72340 ,1,2496344,79930 ,1,2496536,82485 ,1,2496592,83260 ,1,2496736,85155 ,1,2496940,87950 ,1,2497660,97405 ,1,2498228,105200 ,1,2498312,106325 ,1,2498676,111280 ,1,2499056,116485 ,1,2499116,117285 ,1,2499172,118020 ,1,2499388,120865 ,1,2499440,121550 ,1,2499800,126375 ,1,2499836,126860 ,1,2499916,127935 ,1,2499968,128615 ,1,2500028,129395 ,1,2500128,130735 ,1,2500140,130920 ,1,2500152,131085 ,1,2500472,135310 ,1,2500584,136845 ,1,2500696,138375 ,1,2503188,171955 ,1,2503820,180625 ,1,2504088,184255 ,1,2504100,184420 ,1,2504296,187140 ,1,2504720,192855 ,1,2505260,200175 ,1,2505364,201595 ,1,2505388,201920 ,1,2505468,203035 ,1,2505668,205760 ,1,2505788,207375 ,1,2505848,208145 ,1,2505980,209915 ,1,2506112,211675 ,1,2506256,213665 ,1,2506344,214875 ,1,2506408,215750 ,1,2506564,217845 ,1,2506644,218920 ,1,2506792,220880 ,1,2506904,222365 ,1,2506984,223465 ,1,2507096,224995 ,1,2507176,226055 ,1,2507256,227105 ,1,2507320,227970 ,1,2507400,229045 ,1,2507480,230095 ,1,2508208,239820 ,1,2508272,240630 ,1,2508444,242905 ,1,2508776,247385 ,1,2509004,250420 ,1,2509080,251465 ,1,2509128,252150 ,1,2509176,252765 ,1,2509428,256135 ,1,2510100,264880 ,1,2510328,267845 ,1,2510392,268645 ,1,2510628,271710 ,1,2510752,273305 ,1,2511452,282200 ,1,2511564,283680 ,1,2511616,284340 ,1,2511756,286185 ,1,2511820,287040 ,1,2512016,289540 ,1,2512112,290785 ,1,2512260,292660 ,1,2512392,294345 ,1,2512472,295375 ,1,2512752,299015 ,1,2512832,300050 ,1,2512856,300370 ,1,2512880,300720 ,1,2512904,301030 ,1,2513284,306095 ,1,2513308,306435 ,1,2513332,306755 ,1,2513612,310420 ,1,2513636,310730 ,1,2513660,311050 ,1,2513940,314855 ,1,2513964,315150 ,1,2514068,316470 ,1,2514092,316800 ,1,2514220,318485 ,1,2514244,318790 ,1,2514340,320030 ,1,2514448,321415 ,1,2514596,323385 ,1,2515176,330970 ,1,2515208,331400 ,1,2515232,331705 ,1,2515256,332045 ,1,2515316,332885 ,1,2515340,333195 ,1,2515376,333695 ,1,2515492,335290 ,1,2515516,335630 ,1,2515652,337525 ,1,2515796,339480 ,1,2515896,340815 ,1,2515920,341130 ,1,2516604,350260 ,1,2516628,350595 ,1,2516740,352095 ,1,2516804,352965 ,1,2516872,353880 ,1,2517388,360810 ,1,2517436,361445 ,1,2517608,363745 ,1,2517768,365930 ,1,2517968,368570 ,1,2517980,368735 ,1,2517992,368875 ,1,2518120,370570 ,1,2518152,370985 ,1,2518272,372570 ,1,2518300,372960 ,1,2518436,374715 ,1,2518540,375655 ,1,2518804,377685 ,1,2518852,378075 ,1,2518864,378165 ,1,2519072,379745 ,1,2519156,380430 ,1,2519256,381195 ,1,2519564,383640 ,1,2519780,385305 ,1,2519940,386525 ,1,2520144,388065 ,1,2520408,390015 ,1,2520664,391975 ,1,2520792,392940 ,1,2521012,394725 ,1,2521088,395310 ,1,2521208,396225 ,1,2521232,396395 ,1,2521368,397480 ,1,2521592,399255 ,1,2521812,400950 ,1,2522008,402515 ,1,2522400,405695 ,1,2522784,408825 ,1,2523084,411285 ,1,2523268,412765 ,1,2523444,414155 ,1,2523876,417570 ,1,2524436,422065 ,1,2524484,422485 ,1,2524748,424650 ,1,2525228,428600 ,1,2525328,429355 ,1,2525512,430850 ,1,2525636,431845 ,1,2526116,435775 ,1,2526468,438740 ,1,2527096,443855 ,1,2527160,444400 ,1,2527240,445085 ,1,2527360,446075 ,1,2527428,446620 ,1,2527536,447545 ,1,2527760,449275 ,1,2527812,449685 ,1,2528208,452830 ,1,2528288,453480 ,1,2528508,455275 ,1,2528916,458595 ,1,2528996,459190 ,1,2529136,460240 ,1,2529352,462045 ,1,2529428,462660 ,1,2529632,464320 ,1,2529696,464860 ,1,2529732,465125 ,1,2530736,472885 ,1,2532952,490850 ,1,2533252,493320 ,1,2533452,494960 ,1,2534272,501665 ,1,2534284,501760 ,1,2534456,503240 ,1,2534468,503340 ,1,2534604,504490 ,1,2534724,505460 ,1,2535548,511970 ,1,2536164,517000 ,1,2536836,522380 ,1,2537032,523950 ,1,2537056,524170 ,1,2537256,525850 ,1,2537280,526050 ,1,2537380,526850 ,1,2537496,527790 ,1,2537984,531775 ,1,2538260,534050 ,1,2538332,534625 ,1,2538476,535775 ,1,2538500,535975 ,1,2538524,536160 ,1,2538876,538945 ,1,2539148,541205 ,1,2539160,541325 ,1,2539252,542075 ,1,2539352,542900 ,1,2539404,543320 ,1,2539484,543985 ,1,2539696,545590 ,1,2539840,546720 ,1,2539908,547240 ,1,2540052,548385 ,1,2540152,549120 ,1,2540408,551185 ,1,2540808,554440 ,1,2541208,557805 ,1,2541512,560295 ,1,2541888,563395 ,1,2542596,569130 ,1,2542956,572110 ,1,2542988,572360 ,1,2543072,573075 ,1,2543152,573710 ,1,2543388,575655 ,1,2543780,578830 ,1,2544080,581270 ,1,2544380,583825 ,1,2544480,584650 ,1,2544644,585980 ,1,2544720,586625 ,1,2545164,590395 ,1,2545176,590470 ,1,2545424,592490 ,1,2545500,593095 ,1,2545660,594430 ,1,2546364,600130 ,1,2546484,601125 ,1,2546724,603155 ,1,2546784,603675 ,1,2546864,604385 ,1,2546952,605080 ,1,2547152,606720 ,1,2547372,608625 ,1,2547384,608715 ,1,2547736,611600 ,1,2547796,612070 ,1,2547808,612175 ,1,2547936,613150 ,1,2548184,615130 ,1,2548280,615845 ,1,2548336,616245 ,1,2548416,616890 ,1,2548532,617815 ,1,2548616,618445 ,1,2548984,621205 ,1,2549084,621950 ,1,2549452,624720 ,1,2549532,625365 ,1,2549788,627435 ,1,2549872,628145 ,1,2549992,629055 ,1,2550116,630075 ,1,2550200,630725 ,1,2550260,631235 ,1,2550332,631815 ,1,2550448,632770 ,1,2550808,635560 ,1,2550884,636115 ,1,2550956,636685 ,1,2550988,636930 ,1,2551064,637470 ,1,2551132,638020 ,1,2551308,639360 ,1,2551540,641265 ,1,2551824,643505 ,1,2551844,643675 ,1,2551904,644160 ,1,2551964,644620 ,1,2552116,645770 ,1,2552200,646435 ,1,2552320,647365 ,1,2552576,649325 ,1,2552896,651940 ,1,2553068,653295 ,1,2553404,655820 ,1,2553692,658030 ,1,2554332,663120 ,1,2555000,668245 ,1,2555740,673990 ,1,2556408,7055 ,1,2557124,16645 ,1,2558204,31325 ,1,2559436,47755 ,1,2559744,51815 ,1,2561344,72960 ,1,2561412,73835 ,1,2561496,74885 ,1,2561616,76425 ,1,2561892,80110 ,1,2562168,83790 ,1,2562412,87055 ,1,2562496,88210 ,1,2562508,88375 ,1,2562892,93350 ,1,2562960,94255 ,1,2563036,95265 ,1,2563076,95795 ,1,2563144,96690 ,1,2563168,96995 ,1,2563252,98180 ,1,2563324,99140 ,1,2563452,100915 ,1,2563588,102800 ,1,2563660,103775 ,1,2563740,104875 ,1,2563872,106625 ,1,2564176,110785 ,1,2564424,114190 ,1,2564484,115030 ,1,2564744,118510 ,1,2564804,119290 ,1,2564864,120080 ,1,2565036,122410 ,1,2565248,125175 ,1,2565380,126955 ,1,2565500,128570 ,1,2565524,128865 ,1,2565644,130470 ,1,2565764,132095 ,1,2565884,133680 ,1,2566004,135260 ,1,2566124,136915 ,1,2566244,138540 ,1,2566364,140170 ,1,2566484,141725 ,1,2566604,143255 ,1,2566724,144850 ,1,2566800,145905 ,1,2566864,146790 ,1,2566888,147110 ,1,2566912,147440 ,1,2567288,152550 ,1,2568000,162065 ,1,2568516,169095 ,1,2568628,170615 ,1,2568640,170780 ,1,2568844,173605 ,1,2568868,173970 ,1,2568892,174285 ,1,2568916,174605 ,1,2569060,176580 ,1,2569084,176920 ,1,2569108,177235 ,1,2569132,177565 ,1,2569156,177905 ,1,2569180,178265 ,1,2569324,180210 ,1,2569716,185525 ,1,2570440,195350 ,1,2570988,202795 ,1,2571088,204170 ,1,2571156,205105 ,1,2571228,206085 ,1,2571576,210730 ,1,2571632,211465 ,1,2571656,211780 ,1,2571680,212110 ,1,2571736,212885 ,1,2571792,213660 ,1,2571816,214000 ,1,2571924,215480 ,1,2572048,217135 ,1,2572128,218195 ,1,2572208,219285 ,1,2572288,220335 ,1,2572368,221425 ,1,2572448,222485 ,1,2572528,223585 ,1,2572608,224680 ,1,2572684,225685 ,1,2572708,226010 ,1,2572732,226335 ,1,2572796,227175 ,1,2572936,229040 ,1,2573036,230380 ,1,2573060,230690 ,1,2573084,231035 ,1,2573108,231360 ,1,2573132,231650 ,1,2573156,231980 ,1,2573180,232315 ,1,2573204,232625 ,1,2573228,232935 ,1,2573252,233255 ,1,2573392,235100 ,1,2573532,237005 ,1,2574032,243595 ,1,2574172,245500 ,1,2574312,247375 ,1,2574452,249240 ,1,2574592,251125 ,1,2574732,253050 ,1,2574808,254040 ,1,2575308,260620 ,1,2575808,267160 ,1,2575832,267450 ,1,2576328,273810 ,1,2577252,285675 ,1,2577744,292005 ,1,2577876,293700 ,1,2578092,296465 ,1,2578592,303095 ,1,2579116,310005 ,1,2579384,313640 ,1,2579760,318535 ,1,2580444,327405 ,1,2580912,333685 ,1,2581288,338890 ,1,2581504,341770 ,1,2581880,346795 ,1,2581980,348160 ,1,2582040,348940 ,1,2582120,349980 ,1,2582336,352905 ,1,2582552,355800 ,1,2582576,356130 ,1,2582876,360190 ,1,2583176,364190 ,1,2583596,369805 ,1,2583700,371145 ,1,2583804,372525 ,1,2584688,380385 ,1,2584940,382400 ,1,2585500,386685 ,1,2585604,387475 ,1,2586828,396850 ,1,2587400,401350 ,1,2587972,406035 ,1,2588836,413020 ,1,2589212,416005 ,1,2589316,416820 ,1,2589420,417645 ,1,2591072,431040 ,1,2591268,432655 ,1,2591412,433820 ,1,2591828,437310 ,1,2592820,445470 ,1,2593424,450280 ,1,2594272,457065 ,1,2595220,464770 ,1,2595328,465580 ,1,2595428,466380 ,1,2596552,475115 ,1,2596652,475955 ,1,2597192,480340 ,1,2597216,480535 ,1,2597240,480740 ,1,2597444,482420 ,1,2597456,482505 ,1,2597576,483430 ,1,2597772,484990 ,1,2597820,485415 ,1,2598404,490135 ,1,2598460,490620 ,1,2598472,490720 ,1,2598528,491200 ,1,2599008,495110 ,1,2599232,496915 ,1,2599244,497030 ,1,2599320,497635 ,1,2599544,499505 ,1,2599720,500935 ,1,2599812,501695 ,1,2599968,503015 ,1,2600464,507080 ,1,2600476,507195 ,1,2600596,508150 ,1,2600808,509800 ,1,2600976,511115 ,1,2600988,511220 ,1,2601108,512155 ,1,2601984,519205 ,1,2602180,520780 ,1,2602304,521785 ,1,2602456,523095 ,1,2602672,524825 ,1,2603332,530205 ,1,2604392,538780 ,1,2605296,546065 ,1,2605656,548875 ,1,2606268,553815 ,1,2606628,556785 ,1,2608152,569290 ,1,2608164,569390 ,1,2609568,580880 ,1,2610008,584590 ,1,2610272,586750 ,1,2610384,587695 ,1,2614480,620890 ,1,2614860,623745 ,1,2617172,642075 ,1,2617208,642355 ,1,2617420,644010 ,1,2618004,648520 ,1,2618204,650025 ,1,2618328,651030 ,1,2618352,651235 ,1,2618432,651935 ,1,2619056,656710 ,1,2620280,666240 ,1,2621456,495 ,1,2621968,7375 ,1,2622700,17165 ,1,2622948,20495 ,1,2624076,35775 ,1,2624100,36100 ,1,2625244,51340 ,1,2625256,51505 ,1,2625692,57380 ,1,2625704,57540 ,1,2625792,58715 ,1,2626256,64890 ,1,2626516,68295 ,1,2626592,69265 ,1,2627304,78440 ,1,2627420,80005 ,1,2627572,82035 ,1,2627584,82185 ,1,2627636,82890 ,1,2627836,85570 ,1,2628192,90290 ,1,2628464,93815 ,1,2628708,97090 ,1,2628824,98645 ,1,2628908,99795 ,1,2628972,100700 ,1,2629036,101575 ,1,2629080,102200 ,1,2629144,103070 ,1,2629404,106580 ,1,2629416,106750 ,1,2629468,107470 ,1,2629760,111440 ,1,2630052,115455 ,1,2630164,116990 ,1,2630276,118460 ,1,2630288,118605 ,1,2630352,119445 ,1,2630424,120400 ,1,2630480,121125 ,1,2630508,121500 ,1,2630544,121985 ,1,2630572,122395 ,1,2630600,122755 ,1,2630744,124645 ,1,2630808,125505 ,1,2630836,125910 ,1,2630864,126255 ,1,2630988,127930 ,1,2631016,128295 ,1,2631124,129745 ,1,2631196,130685 ,1,2631224,131080 ,1,2631252,131465 ,1,2631280,131840 ,1,2631308,132240 ,1,2631336,132595 ,1,2631364,132950 ,1,2631456,134135 ,1,2631484,134515 ,1,2631512,134895 ,1,2631540,135250 ,1,2631596,136025 ,1,2631652,136800 ,1,2631680,137185 ,1,2631708,137565 ,1,2631772,138435 ,1,2631848,139450 ,1,2631908,140270 ,1,2631944,140715 ,1,2632124,143030 ,1,2632152,143405 ,1,2632180,143805 ,1,2632236,144545 ,1,2632292,145300 ,1,2632328,145805 ,1,2632356,146195 ,1,2632420,147065 ,1,2632456,147565 ,1,2632492,148045 ,1,2632520,148425 ,1,2632560,148955 ,1,2632628,149890 ,1,2632664,150375 ,1,2632804,152290 ,1,2632868,153145 ,1,2632896,153535 ,1,2633012,155080 ,1,2633076,155935 ,1,2633128,156625 ,1,2633220,157835 ,1,2633284,158670 ,1,2633312,159020 ,1,2633340,159430 ,1,2633376,159890 ,1,2633460,161050 ,1,2633576,162620 ,1,2633600,162925 ,1,2633624,163260 ,1,2633648,163580 ,1,2633716,164510 ,1,2633740,164830 ,1,2633764,165140 ,1,2633788,165460 ,1,2633812,165760 ,1,2633836,166100 ,1,2633860,166415 ,1,2633884,166755 ,1,2633908,167075 ,1,2633932,167410 ,1,2633956,167755 ,1,2633980,168080 ,1,2634004,168415 ,1,2634112,169925 ,1,2634256,171890 ,1,2634328,172855 ,1,2634564,176145 ,1,2635016,182305 ,1,2635916,194515 ,1,2635940,194840 ,1,2636416,201305 ,1,2636988,209075 ,1,2638424,228415 ,1,2639872,247715 ,1,2640056,250165 ,1,2641464,268635 ,1,2642052,276245 ,1,2643336,292705 ,1,2643400,293550 ,1,2643448,294130 ,1,2643488,294645 ,1,2644308,305485 ,1,2644860,312860 ,1,2647472,347535 ,1,2649272,371635 ,1,2651064,386915 ,1,2651512,390270 ,1,2651764,392210 ,1,2654772,416205 ,1,2655652,423265 ,1,2655760,424155 ,1,2656160,427460 ,1,2656288,428485 ,1,2656468,429910 ,1,2656628,431205 ,1,2656916,433550 ,1,2657008,434280 ,1,2657484,438300 ,1,2659140,451710 ,1,2661040,466955 ,1,2661584,471115 ,1,2662240,476355 ,1,2662492,478385 ,1,2662552,478875 ,1,2663328,485145 ,1,2666600,511820 ,1,2668596,528035 ,1,2671760,553455 ,1,2673580,568370 ,1,2673672,569155 ,1,2675456,583855 ,1,2675632,585295 ,1,2675704,585860 ,1,2675864,587210 ,1,2675932,587805 ,1,2675984,588240 ,1,2676276,590715 ,1,2676476,592325 ,1,2676748,594560 ,1,2676908,595835 ,1,2677272,598800 ,1,2677668,602010 ,1,2678108,605795 ,1,2678492,609015 ,1,2679120,614050 ,1,2679256,615120 ,1,2680564,625025 ,1,2680860,627430 ,1,2681232,630395 ,1,2681880,635545 ,1,2682696,641950 ,1,2682944,643920 ,1,2685904,666935 ,1,2686752,673505 ,1,2686828,674110 ,1,2687492,7220 ,1,2687592,8565 ,1,2687820,11580 ,1,2687896,12625 ,1,2687980,13745 ,1,2688584,21835 ,1,2688800,24820 ,1,2688860,25680 ,1,2689116,29135 ,1,2690272,44645 ,1,2690544,48225 ,1,2690884,52755 ,1,2690996,54285 ,1,2691092,55565 ,1,2691188,56835 ,1,2691284,58160 ,1,2691380,59410 ,1,2691476,60660 ,1,2691572,61945 ,1,2691664,63150 ,1,2691756,64420 ,1,2691852,65705 ,1,2691948,66945 ,1,2692124,69220 ,1,2692516,74260 ,1,2693208,83370 ,1,2693308,84695 ,1,2693408,86060 ,1,2693668,89525 ,1,2693924,92820 ,1,2694216,96685 ,1,2694340,98390 ,1,2694652,102685 ,1,2695468,113790 ,1,2695596,115585 ,1,2695648,116260 ,1,2695720,117235 ,1,2695780,118015 ,1,2697188,136795 ,1,2697856,145690 ,1,2697880,146035 ,1,2697892,146185 ,1,2698000,147670 ,1,2698224,150705 ,1,2698364,152625 ,1,2698528,154800 ,1,2701448,194435 ,1,2701564,196055 ,1,2702468,208325 ,1,2702636,210565 ,1,2702760,212235 ,1,2703096,216815 ,1,2703320,219815 ,1,2703380,220600 ,1,2703428,221265 ,1,2703524,222555 ,1,2703584,223345 ,1,2703808,226390 ,1,2703940,228165 ,1,2704080,229980 ,1,2704168,231185 ,1,2704444,234835 ,1,2704920,241155 ,1,2704992,242105 ,1,2705076,243210 ,1,2705204,244935 ,1,2705288,246090 ,1,2705352,246920 ,1,2705448,248225 ,1,2705660,251070 ,1,2705812,253150 ,1,2705868,253895 ,1,2705900,254315 ,1,2705932,254780 ,1,2705996,255585 ,1,2706028,256030 ,1,2706104,256980 ,1,2706256,258995 ,1,2706608,263555 ,1,2706828,266470 ,1,2707084,269720 ,1,2707108,270040 ,1,2707132,270355 ,1,2707232,271650 ,1,2707680,277365 ,1,2708224,284335 ,1,2708424,286980 ,1,2708448,287290 ,1,2708588,289100 ,1,2708892,292980 ,1,2709896,306140 ,1,2710260,310945 ,1,2711124,322330 ,1,2712084,335050 ,1,2712192,336525 ,1,2712396,339380 ,1,2712420,339695 ,1,2713180,349830 ,1,2713328,351835 ,1,2713924,359855 ,1,2714404,366305 ,1,2714892,372745 ,1,2715060,374935 ,1,2715508,378460 ,1,2715632,379390 ,1,2715792,380655 ,1,2716048,382670 ,1,2716072,382855 ,1,2716096,383045 ,1,2716160,383530 ,1,2716224,384045 ,1,2716340,384955 ,1,2716464,385875 ,1,2716580,386765 ,1,2716644,387230 ,1,2716708,387730 ,1,2716772,388230 ,1,2716916,389285 ,1,2717060,390360 ,1,2717204,391455 ,1,2717348,392545 ,1,2717412,393050 ,1,2717476,393545 ,1,2717592,394480 ,1,2717656,394990 ,1,2717912,396960 ,1,2718168,399005 ,1,2718288,399930 ,1,2719588,410435 ,1,2721496,425810 ,1,2721568,426440 ,1,2723352,440995 ,1,2723812,444770 ,1,2723884,445390 ,1,2724072,446925 ,1,2724224,448185 ,1,2724380,449395 ,1,2724456,449980 ,1,2724516,450435 ,1,2725004,454345 ,1,2725028,454515 ,1,2725156,455600 ,1,2725360,457215 ,1,2725384,457400 ,1,2725408,457615 ,1,2725432,457805 ,1,2725516,458525 ,1,2725824,460890 ,1,2725900,461535 ,1,2725924,461760 ,1,2725948,461955 ,1,2725972,462155 ,1,2725996,462345 ,1,2726040,462690 ,1,2726156,463635 ,1,2726412,465695 ,1,2726668,467675 ,1,2726788,468570 ,1,2727516,474205 ,1,2729376,489305 ,1,2729504,490385 ,1,2730256,496525 ,1,2730772,500780 ,1,2730880,501655 ,1,2731124,503750 ,1,2731504,506815 ,1,2731640,507910 ,1,2732104,511565 ,1,2732648,516000 ,1,2734668,532350 ,1,2734868,534040 ,1,2735052,535510 ,1,2735884,542285 ,1,2736036,543495 ,1,2736872,550035 ,1,2737080,551685 ,1,2737176,552430 ,1,2738300,561780 ,1,2739808,574130 ,1,2739872,574635 ,1,2740168,577005 ,1,2740292,578010 ,1,2740452,579340 ,1,2740592,580485 ,1,2740804,582265 ,1,2740920,583265 ,1,2741036,584220 ,1,2741212,585660 ,1,2741328,586620 ,1,2741456,587690 ,1,2741604,588970 ,1,2741744,590170 ,1,2741860,591100 ,1,2741976,592025 ,1,2742136,593295 ,1,2742328,594890 ,1,2742476,596080 ,1,2742588,597025 ,1,2742724,598160 ,1,2743296,602820 ,1,2743352,603310 ,1,2743428,604015 ,1,2743576,605240 ,1,2743724,606465 ,1,2743796,607030 ,1,2743916,608035 ,1,2744116,609700 ,1,2744268,610985 ,1,2744344,611595 ,1,2744712,614485 ,1,2745028,616930 ,1,2745796,622705 ,1,2746964,632010 ,1,2747296,634610 ,1,2748064,640565 ,1,2748224,641890 ,1,2748720,645725 ,1,2749240,649755 ,1,2749528,652130 ,1,2749816,654340 ,1,2750040,656045 ,1,2750600,660390 ,1,2751912,670550 ,1,2752020,671395 ,1,2752220,672940 ,1,2752232,673030 ,1,2752368,674140 ,1,2753072,7815 ,1,2753284,10625 ,1,2753728,16555 ,1,2754356,25120 ,1,2754376,25390 ,1,2754532,27500 ,1,2754584,28195 ,1,2754808,31260 ,1,2754828,31545 ,1,2754908,32565 ,1,2755464,40020 ,1,2755488,40340 ,1,2756140,49035 ,1,2756744,57105 ,1,2757484,66935 ,1,2758232,76550 ,1,2758980,86530 ,1,2759672,95645 ,1,2760444,106155 ,1,2761132,115580 ,1,2761696,123070 ,1,2762376,132145 ,1,2762564,134640 ,1,2762744,137060 ,1,2762804,137905 ,1,2762864,138710 ,1,2763188,142940 ,1,2763248,143735 ,1,2763456,146570 ,1,2764216,156835 ,1,2764340,158460 ,1,2764400,159240 ,1,2764460,160070 ,1,2764520,160870 ,1,2764580,161685 ,1,2764640,162505 ,1,2764700,163325 ,1,2764924,166305 ,1,2765004,167400 ,1,2765084,168520 ,1,2765164,169670 ,1,2765244,170735 ,1,2765324,171840 ,1,2765404,172930 ,1,2765484,174070 ,1,2765564,175185 ,1,2765644,176245 ,1,2765724,177350 ,1,2765804,178485 ,1,2765884,179545 ,1,2765964,180620 ,1,2766044,181700 ,1,2766124,182795 ,1,2766204,183900 ,1,2766284,184985 ,1,2766364,186100 ,1,2766444,187210 ,1,2766524,188285 ,1,2766604,189360 ,1,2766884,193140 ,1,2767080,195775 ,1,2767144,196640 ,1,2767456,200855 ,1,2767768,205155 ,1,2767936,207425 ,1,2768000,208250 ,1,2768088,209455 ,1,2768208,211050 ,1,2768508,215155 ,1,2768696,217665 ,1,2768788,218915 ,1,2769840,232980 ,1,2770336,239605 ,1,2771264,252020 ,1,2771828,259490 ,1,2771892,260310 ,1,2772020,261950 ,1,2772128,263340 ,1,2772176,263985 ,1,2772268,265225 ,1,2772376,266630 ,1,2773232,277570 ,1,2774164,289605 ,1,2774216,290265 ,1,2775316,304630 ,1,2775340,304965 ,1,2776472,319870 ,1,2776672,322495 ,1,2776728,323220 ,1,2776784,323945 ,1,2776928,325815 ,1,2777208,329505 ,1,2777716,336360 ,1,2778052,340990 ,1,2778428,345990 ,1,2778812,351140 ,1,2779220,356645 ,1,2779640,362215 ,1,2780160,369220 ,1,2780928,377510 ,1,2781052,378520 ,1,2781404,381245 ,1,2782224,387575 ,1,2782588,390305 ,1,2782868,392435 ,1,2782980,393285 ,1,2782992,393370 ,1,2783928,400700 ,1,2784120,402250 ,1,2784212,403035 ,1,2784636,406495 ,1,2784776,407565 ,1,2785076,410030 ,1,2785200,411045 ,1,2785328,412125 ,1,2785476,413285 ,1,2785512,413560 ,1,2785600,414230 ,1,2785688,414970 ,1,2785988,417300 ,1,2786256,419395 ,1,2786320,419940 ,1,2786532,421710 ,1,2786628,422470 ,1,2786740,423400 ,1,2787008,425600 ,1,2788132,434695 ,1,2788356,436650 ,1,2788504,437855 ,1,2788700,439445 ,1,2788772,440080 ,1,2789188,443445 ,1,2789376,445010 ,1,2789568,446585 ,1,2790080,450640 ,1,2790384,453105 ,1,2790572,454595 ,1,2790884,457105 ,1,2791052,458515 ,1,2791136,459150 ,1,2791220,459790 ,1,2791304,460435 ,1,2791316,460540 ,1,2791328,460635 ,1,2791660,463375 ,1,2791696,463665 ,1,2791752,464125 ,1,2791940,465620 ,1,2792068,466620 ,1,2792200,467630 ,1,2792332,468650 ,1,2792432,469415 ,1,2792600,470660 ,1,2792720,471605 ,1,2792852,472645 ,1,2793440,477430 ,1,2793560,478350 ,1,2793808,480415 ,1,2794016,482125 ,1,2794136,483050 ,1,2794320,484500 ,1,2794732,487865 ,1,2794780,488255 ,1,2794924,489410 ,1,2795024,490245 ,1,2795132,491170 ,1,2795576,494780 ,1,2795708,495880 ,1,2795840,496905 ,1,2796056,498715 ,1,2796968,506235 ,1,2797212,508210 ,1,2797356,509340 ,1,2797476,510295 ,1,2797608,511325 ,1,2798136,515610 ,1,2798748,520445 ,1,2798856,521320 ,1,2798888,521590 ,1,2799060,523065 ,1,2799232,524440 ,1,2799324,525240 ,1,2799616,527585 ,1,2799684,528155 ,1,2799816,529170 ,1,2799992,530620 ,1,2800060,531215 ,1,2800220,532475 ,1,2800408,534075 ,1,2800520,534950 ,1,2800568,535335 ,1,2800632,535850 ,1,2800896,537900 ,1,2801180,540225 ,1,2801340,541635 ,1,2802056,547275 ,1,2802332,549420 ,1,2802460,550450 ,1,2802516,550915 ,1,2802616,551670 ,1,2802664,552040 ,1,2802768,552915 ,1,2802816,553310 ,1,2803192,556415 ,1,2803844,561845 ,1,2804736,569080 ,1,2804832,569905 ,1,2804992,571185 ,1,2805212,573045 ,1,2805524,575590 ,1,2805708,577045 ,1,2806056,579905 ,1,2806300,581915 ,1,2806420,582955 ,1,2806512,583695 ,1,2806616,584585 ,1,2806816,586210 ,1,2807504,591965 ,1,2807792,594310 ,1,2808564,600590 ,1,2808612,600975 ,1,2808732,601940 ,1,2808844,602955 ,1,2809032,604565 ,1,2809136,605430 ,1,2809264,606490 ,1,2809380,607405 ,1,2809700,610095 ,1,2809784,610785 ,1,2811144,621315 ,1,2811316,622600 ,1,2811404,623255 ,1,2811700,625555 ,1,2812664,633310 ,1,2812764,634095 ,1,2812828,634585 ,1,2812924,635340 ,1,2813112,636785 ,1,2813312,638295 ,1,2813540,640085 ,1,2813820,642390 ,1,2813904,643030 ,1,2813992,643705 ,1,2814288,645975 ,1,2814360,646565 ,1,2814512,647740 ,1,2814596,648385 ,1,2814736,649435 ,1,2814892,650695 ,1,2815048,652010 ,1,2815160,652885 ,1,2815268,653720 ,1,2815404,654770 ,1,2815512,655550 ,1,2815588,656145 ,1,2815668,656745 ,1,2816180,660720 ,1,2816612,664165 ,1,2817692,672470 ,1,2817788,673220 ,1,2818012,674980 ,1,2818192,2240 ,1,2818332,4095 ,1,2818488,6155 ,1,2818624,8040 ,1,2818688,8895 ,1,2818852,11055 ,1,2819016,13255 ,1,2819244,16315 ,1,2819844,24445 ,1,2820072,27545 ,1,2820096,27860 ,1,2820180,29025 ,1,2823168,68850 ,1,2823860,77760 ,1,2823944,78905 ,1,2824000,79620 ,1,2824084,80755 ,1,2824228,82670 ,1,2824252,83010 ,1,2825352,97545 ,1,2825476,99250 ,1,2825572,100595 ,1,2825728,102740 ,1,2825856,104490 ,1,2831444,179885 ,1,2833416,206655 ,1,2833572,208750 ,1,2833584,208900 ,1,2833692,210355 ,1,2833900,213180 ,1,2834020,214830 ,1,2834280,218315 ,1,2834604,222670 ,1,2834760,224785 ,1,2834836,225810 ,1,2834848,225960 ,1,2835628,236350 ,1,2835716,237540 ,1,2836268,244845 ,1,2837188,257165 ,1,2837336,259100 ,1,2838812,278135 ,1,2839396,285670 ,1,2839528,287400 ,1,2839616,288520 ,1,2839888,291995 ,1,2839976,293145 ,1,2840060,294195 ,1,2840176,295680 ,1,2840260,296785 ,1,2840416,298805 ,1,2840548,300565 ,1,2840680,302335 ,1,2840704,302645 ,1,2840716,302825 ,1,2840728,302975 ,1,2840908,305390 ,1,2841140,308400 ,1,2841240,309730 ,1,2841284,310320 ,1,2841344,311095 ,1,2841512,313425 ,1,2841572,314220 ,1,2842620,327825 ,1,2844068,347400 ,1,2844320,350750 ,1,2844344,351070 ,1,2844368,351400 ,1,2844488,353010 ,1,2847796,387860 ,1,2847820,388035 ,1,2847884,388510 ,1,2848192,390830 ,1,2848216,391020 ,1,2848228,391120 ,1,2848372,392205 ,1,2848432,392640 ,1,2848576,393765 ,1,2848668,394540 ,1,2848828,395775 ,1,2849764,403150 ,1,2850436,408585 ,1,2850664,410460 ,1,2851364,416070 ,1,2852184,422665 ,1,2853016,429435 ,1,2854080,438180 ,1,2854128,438595 ,1,2854172,438925 ,1,2854196,439120 ,1,2854296,439950 ,1,2854640,442750 ,1,2854964,445460 ,1,2855316,448335 ,1,2855696,451260 ,1,2856292,456105 ,1,2856672,459145 ,1,2856996,461750 ,1,2857616,466720 ,1,2858864,476495 ,1,2858888,476685 ,1,2859004,477635 ,1,2859600,482495 ,1,2859972,485475 ,1,2860488,489620 ,1,2861708,499675 ,1,2862020,502225 ,1,2862672,507605 ,1,2862740,508145 ,1,2862880,509230 ,1,2862892,509335 ,1,2862948,509775 ,1,2863004,510235 ,1,2863060,510660 ,1,2863328,512795 ,1,2863384,513285 ,1,2863440,513750 ,1,2863496,514210 ,1,2863552,514665 ,1,2863608,515100 ,1,2863664,515540 ,1,2863760,516345 ,1,2863912,517530 ,1,2864072,518805 ,1,2864084,518905 ,1,2864136,519275 ,1,2864232,520025 ,1,2864328,520815 ,1,2864424,521585 ,1,2864976,526175 ,1,2865000,526365 ,1,2865164,527695 ,1,2865320,528905 ,1,2865432,529805 ,1,2865636,531520 ,1,2865796,532820 ,1,2865956,534165 ,1,2866040,534835 ,1,2867724,548335 ,1,2867900,549695 ,1,2868048,550865 ,1,2868156,551730 ,1,2868292,552825 ,1,2868412,553810 ,1,2868760,556680 ,1,2869164,560085 ,1,2869264,560865 ,1,2869364,561690 ,1,2869464,562545 ,1,2869732,564705 ,1,2870456,570640 ,1,2870772,573260 ,1,2871176,576510 ,1,2871316,577615 ,1,2871592,579900 ,1,2871868,582200 ,1,2872344,586130 ,1,2873016,591765 ,1,2875344,611010 ,1,2879820,645945 ,1,2879992,647305 ,1,2880112,648210 ,1,2880472,651025 ,1,2880516,651415 ,1,2880540,651650 ,1,2880564,651850 ,1,2880864,654165 ,1,2881240,657010 ,1,2882112,663875 ,1,2883064,671180 ,1,2883704,1910 ,1,2884944,18520 ,1,2888848,70700 ,1,2891636,107820 ,1,2892492,119400 ,1,2892620,121080 ,1,2892820,123745 ,1,2892948,125450 ,1,2893048,126805 ,1,2893072,127115 ,1,2893452,132215 ,1,2893636,134625 ,1,2893740,136020 ,1,2895540,160165 ,1,2895668,161910 ,1,2895680,162060 ,1,2895936,165510 ,1,2895988,166205 ,1,2896012,166520 ,1,2896140,168305 ,1,2896236,169665 ,1,2896284,170300 ,1,2896416,172110 ,1,2896536,173765 ,1,2896700,176035 ,1,2896816,177615 ,1,2896932,179235 ,1,2897148,182145 ,1,2897400,185570 ,1,2897516,187205 ,1,2897792,190920 ,1,2897816,191235 ,1,2897840,191575 ,1,2898080,194770 ,1,2898528,200845 ,1,2898636,202330 ,1,2899020,207595 ,1,2899164,209510 ,1,2899348,211955 ,1,2899632,215870 ,1,2899804,218145 ,1,2899828,218500 ,1,2900028,221165 ,1,2900172,223080 ,1,2900196,223410 ,1,2900328,225195 ,1,2900936,233300 ,1,2901732,243910 ,1,2901848,245430 ,1,2901872,245780 ,1,2901976,247165 ,1,2902284,251310 ,1,2902752,257515 ,1,2902896,259425 ,1,2903012,260935 ,1,2903036,261240 ,1,2903060,261545 ,1,2903084,261855 ,1,2903168,262925 ,1,2903872,272060 ,1,2903932,272830 ,1,2904520,280310 ,1,2904760,283405 ,1,2905004,286640 ,1,2905248,289755 ,1,2906020,299695 ,1,2906324,303780 ,1,2906400,304775 ,1,2906476,305805 ,1,2906552,306805 ,1,2906680,308450 ,1,2906828,310415 ,1,2906968,312345 ,1,2907112,314265 ,1,2907368,317550 ,1,2907924,324835 ,1,2908052,326480 ,1,2908128,327450 ,1,2908600,333805 ,1,2908960,338760 ,1,2909176,341660 ,1,2909448,345290 ,1,2909584,347125 ,1,2909856,350740 ,1,2909984,352465 ,1,2910352,357460 ,1,2910460,358910 ,1,2910628,361135 ,1,2911392,371295 ,1,2911544,373310 ,1,2912052,377930 ,1,2912328,380065 ,1,2912852,384225 ,1,2913068,385850 ,1,2913244,387175 ,1,2913444,388705 ,1,2913640,390150 ,1,2913816,391480 ,1,2914252,394905 ,1,2914420,396190 ,1,2914512,396880 ,1,2914628,397830 ,1,2914744,398745 ,1,2914860,399670 ,1,2914976,400520 ,1,2915240,402655 ,1,2915752,406825 ,1,2916148,410025 ,1,2916380,411985 ,1,2916524,413090 ,1,2916808,415360 ,1,2917396,419995 ,1,2917524,421065 ,1,2917548,421270 ,1,2918200,426635 ,1,2918464,428745 ,1,2918680,430455 ,1,2919308,435585 ,1,2919332,435765 ,1,2919356,436025 ,1,2919380,436240 ,1,2919516,437380 ,1,2919608,438105 ,1,2919724,439040 ,1,2919868,440290 ,1,2920212,443035 ,1,2920328,444000 ,1,2920660,446760 ,1,2921020,449625 ,1,2922768,463660 ,1,2922836,464235 ,1,2926632,494640 ,1,2926656,494840 ,1,2926700,495250 ,1,2926744,495585 ,1,2926788,495955 ,1,2926864,496520 ,1,2927068,498215 ,1,2927124,498685 ,1,2927180,499155 ,1,2927928,505330 ,1,2928172,507320 ,1,2928876,512915 ,1,2929180,515380 ,1,2934572,559005 ,1,2934944,562080 ,1,2935248,564530 ,1,2939304,597930 ,1,2939532,599760 ,1,2940624,608915 ,1,2940768,610055 ,1,2940836,610610 ,1,2941008,612030 ,1,2941184,613420 ,1,2941356,614780 ,1,2941380,614960 ,1,2941404,615165 ,1,2942024,619890 ,1,2942548,623815 ,1,2943664,632760 ,1,2948048,666930 ,1,2948160,667815 ,1,2948400,669640 ,1,2948668,671730 ,1,2949660,7550 ,1,2952092,40295 ,1,2952288,42900 ,1,2952372,44070 ,1,2952548,46410 ,1,2952716,48605 ,1,2952920,51265 ,1,2953004,52400 ,1,2953028,52745 ,1,2953256,55820 ,1,2953400,57765 ,1,2953648,61035 ,1,2954240,68845 ,1,2955360,83465 ,1,2956024,92245 ,1,2956048,92560 ,1,2956224,94870 ,1,2956368,96800 ,1,2956612,100150 ,1,2956880,103820 ,1,2957000,105470 ,1,2957116,107035 ,1,2958208,121775 ,1,2958348,123635 ,1,2958460,125125 ,1,2958844,130275 ,1,2959760,142490 ,1,2959904,144365 ,1,2960060,146515 ,1,2960160,147870 ,1,2960924,158160 ,1,2961404,164615 ,1,2962072,173760 ,1,2962660,181830 ,1,2962932,185520 ,1,2962956,185865 ,1,2963012,186655 ,1,2963036,186985 ,1,2963380,191645 ,1,2963804,197385 ,1,2963976,199665 ,1,2964148,202035 ,1,2964400,205490 ,1,2964820,211105 ,1,2965240,216800 ,1,2965660,222425 ,1,2966172,229285 ,1,2966960,239815 ,1,2967932,252835 ,1,2968444,259610 ,1,2969232,269780 ,1,2970020,279830 ,1,2970196,282100 ,1,2970272,283090 ,1,2970340,284005 ,1,2970636,287880 ,1,2970920,291485 ,1,2971188,294900 ,1,2973188,321265 ,1,2973332,323175 ,1,2973448,324680 ,1,2973492,325250 ,1,2973636,327100 ,1,2973836,329755 ,1,2974004,331990 ,1,2974140,333875 ,1,2974356,336855 ,1,2974572,339805 ,1,2974612,340330 ,1,2975416,351065 ,1,2975544,352780 ,1,2975816,356465 ,1,2976332,363355 ,1,2976416,364525 ,1,2976652,367685 ,1,2976676,368020 ,1,2976760,369115 ,1,2976824,369940 ,1,2976904,370980 ,1,2977684,378700 ,1,2977768,379330 ,1,2977852,379975 ,1,2978048,381515 ,1,2978152,382365 ,1,2978280,383345 ,1,2978408,384370 ,1,2979072,389365 ,1,2979616,393495 ,1,2979628,393610 ,1,2979884,395660 ,1,2979896,395745 ,1,2979960,396220 ,1,2980160,397790 ,1,2980216,398215 ,1,2980272,398680 ,1,2980328,399125 ,1,2982888,419580 ,1,2983432,424100 ,1,2984604,433625 ,1,2984984,436805 ,1,2985832,443720 ,1,2986132,446255 ,1,2986416,448510 ,1,2986720,450880 ,1,2986980,453000 ,1,2986992,453100 ,1,2987132,454190 ,1,2987328,455800 ,1,2987376,456185 ,1,2987576,457800 ,1,2987656,458465 ,1,2988188,462730 ,1,2988680,466650 ,1,2989264,471100 ,1,2989992,476980 ,1,2990012,477145 ,1,2990128,478025 ,1,2990172,478380 ,1,2990212,478730 ,1,2991196,486680 ,1,2991336,487820 ,1,2991364,488055 ,1,2992972,501215 ,1,2993584,506300 ,1,2995420,520995 ,1,2996044,526140 ,1,2996184,527240 ,1,2996324,528415 ,1,2996336,528500 ,1,2996612,530740 ,1,2996648,531045 ,1,2996720,531640 ,1,2997600,538715 ,1,2998640,547090 ,1,2999332,552560 ,1,2999588,554700 ,1,3000548,562670 ,1,3001632,571475 ,1,3001652,571640 ,1,3001672,571810 ,1,3001704,572075 ,1,3001768,572585 ,1,3001800,572865 ,1,3001856,573345 ,1,3001888,573595 ,1,3001920,573865 ,1,3002004,574560 ,1,3002096,575295 ,1,3002200,576130 ,1,3002284,576805 ,1,3002420,577890 ,1,3002560,579035 ,1,3002596,579345 ,1,3003004,582740 ,1,3003192,584300 ,1,3003468,586590 ,1,3003540,587180 ,1,3003624,587910 ,1,3003804,589420 ,1,3003900,590270 ,1,3004248,593060 ,1,3004272,593245 ,1,3004320,593630 ,1,3004804,597595 ,1,3005232,601070 ,1,3005312,601705 ,1,3005368,602185 ,1,3005448,602915 ,1,3005708,605145 ,1,3006148,608830 ,1,3006692,613200 ,1,3006988,615535 ,1,3007368,618450 ,1,3007612,620280 ,1,3007856,622075 ,1,3007944,622730 ,1,3007976,622975 ,1,3007988,623080 ,1,3008400,626275 ,1,3008496,627065 ,1,3008928,630530 ,1,3009000,631115 ,1,3009176,632560 ,1,3009276,633365 ,1,3009480,634925 ,1,3010140,640020 ,1,3010292,641270 ,1,3010304,641365 ,1,3010360,641805 ,1,3010608,643770 ,1,3010664,644230 ,1,3010920,646170 ,1,3011300,649135 ,1,3011748,652750 ,1,3012004,654710 ,1,3012076,655250 ,1,3012720,660195 ,1,3013460,665990 ,1,3013592,667000 ,1,3013616,667190 ,1,3014492,673995 ,1,3014644,85 ,1,3015156,7010 ,1,3015892,16855 ,1,3015972,17910 ,1,3016312,22485 ,1,3016864,30075 ,1,3017636,40425 ,1,3019140,60450 ,1,3019164,60785 ,1,3020772,81820 ,1,3022812,109205 ,1,3022836,109530 ,1,3022860,109855 ,1,3022884,110210 ,1,3023056,112505 ,1,3023136,113615 ,1,3023324,116215 ,1,3024040,125730 ,1,3024452,131250 ,1,3024524,132225 ,1,3024848,136515 ,1,3025392,143740 ,1,3025500,145195 ,1,3025608,146700 ,1,3025716,148150 ,1,3025792,149175 ,1,3025868,150225 ,1,3025976,151690 ,1,3026200,154680 ,1,3026212,154865 ,1,3026416,157560 ,1,3028548,186660 ,1,3029100,194085 ,1,3029216,195655 ,1,3029444,198775 ,1,3030068,207265 ,1,3032864,244665 ,1,3034360,264500 ,1,3034372,264650 ,1,3034728,269255 ,1,3034780,269930 ,1,3034880,271220 ,1,3035020,273030 ,1,3035516,279320 ,1,3035564,279940 ,1,3039236,327925 ,1,3039360,329605 ,1,3039416,330315 ,1,3039528,331815 ,1,3040060,339165 ,1,3041276,355440 ,1,3041288,355600 ,1,3041336,356240 ,1,3042008,365270 ,1,3042368,370055 ,1,3043388,379980 ,1,3046196,401715 ,1,3046208,401805 ,1,3046440,403710 ,1,3048376,419200 ,1,3051776,447135 ,1,3054408,468120 ,1,3056140,481960 ,1,3056744,486785 ,1,3056756,486890 ,1,3056844,487590 ,1,3056904,488080 ,1,3056928,488280 ,1,3056952,488475 ,1,3056976,488675 ,1,3057000,488855 ,1,3057348,491775 ,1,3057632,494085 ,1,3057832,495725 ,1,3057856,495915 ,1,3057900,496275 ,1,3058344,499900 ,1,3058444,500710 ,1,3058480,500995 ,1,3058504,501175 ,1,3058528,501400 ,1,3058824,503915 ,1,3060040,513690 ,1,3060304,515810 ,1,3060580,518045 ,1,3060848,520095 ,1,3061156,522650 ,1,3061180,522860 ,1,3061416,524760 ,1,3061440,524965 ,1,3061464,525185 ,1,3061844,528280 ,1,3062208,531245 ,1,3062264,531715 ,1,3062388,532690 ,1,3062600,534440 ,1,3063032,537835 ,1,3063440,541245 ,1,3063544,542105 ,1,3063752,543785 ,1,3065064,554200 ,1,3065532,558100 ,1,3065588,558565 ,1,3065700,559475 ,1,3065928,561345 ,1,3065976,561725 ,1,3066660,567275 ,1,3066712,567690 ,1,3066744,567960 ,1,3066916,569400 ,1,3067408,573465 ,1,3067468,573970 ,1,3067940,577755 ,1,3068172,579700 ,1,3068292,580660 ,1,3068368,581275 ,1,3068424,581720 ,1,3068480,582225 ,1,3068576,583065 ,1,3069328,589310 ,1,3069424,590175 ,1,3069716,592535 ,1,3069756,592840 ,1,3069796,593160 ,1,3069880,593825 ,1,3070072,595390 ,1,3070096,595605 ,1,3070172,596215 ,1,3070192,596365 ,1,3070216,596570 ,1,3070236,596740 ,1,3070312,597360 ,1,3070392,598065 ,1,3070472,598680 ,1,3070552,599325 ,1,3070608,599795 ,1,3070688,600400 ,1,3070760,601000 ,1,3070840,601620 ,1,3070864,601835 ,1,3070932,602460 ,1,3071028,603285 ,1,3071248,605170 ,1,3071484,607095 ,1,3071872,610330 ,1,3072192,612905 ,1,3072216,613090 ,1,3072284,613650 ,1,3072364,614280 ,1,3072388,614460 ,1,3072412,614655 ,1,3072436,614830 ,1,3072460,615020 ,1,3072564,615820 ,1,3072664,616570 ,1,3073052,619580 ,1,3073412,622260 ,1,3073888,625895 ,1,3074264,628930 ,1,3074348,629635 ,1,3074864,633750 ,1,3075192,636275 ,1,3075700,640215 ,1,3075760,640715 ,1,3076408,645795 ,1,3077104,651240 ,1,3077460,654070 ,1,3077888,657335 ,1,3078024,658380 ,1,3078056,658645 ,1,3078148,659380 ,1,3078208,659825 ,1,3078360,661000 ,1,3078916,665375 ,1,3079212,667675 ,1,3080280,1495 ,1,3080436,3585 ,1,3080660,6565 ,1,3080716,7330 ,1,3080984,10885 ,1,3081056,11860 ,1,3081368,16040 ,1,3081440,17000 ,1,3081512,17955 ,1,3082276,28380 ,1,3082344,29290 ,1,3082612,32880 ,1,3082748,34665 ,1,3082988,37900 ,1,3083124,39745 ,1,3083520,45090 ,1,3083648,46760 ,1,3083780,48500 ,1,3083896,49990 ,1,3083980,51125 ,1,3084480,57880 ,1,3086072,78680 ,1,3087600,98965 ,1,3087668,99930 ,1,3087744,100960 ,1,3087804,101815 ,1,3088220,107480 ,1,3088740,114605 ,1,3089468,124295 ,1,3089632,126490 ,1,3089644,126640 ,1,3089896,130000 ,1,3090088,132605 ,1,3090100,132755 ,1,3091260,148270 ,1,3091864,156415 ,1,3092076,159195 ,1,3092196,160825 ,1,3092432,164020 ,1,3092820,169325 ,1,3093960,184920 ,1,3094240,188745 ,1,3094428,191305 ,1,3094576,193300 ,1,3094692,194845 ,1,3094772,195940 ,1,3095092,200290 ,1,3095176,201425 ,1,3095288,202960 ,1,3095368,204065 ,1,3095560,206660 ,1,3095648,207840 ,1,3095744,209130 ,1,3095880,210945 ,1,3096000,212560 ,1,3096064,213450 ,1,3096128,214340 ,1,3096228,215705 ,1,3096308,216755 ,1,3096388,217850 ,1,3096496,219290 ,1,3096520,219620 ,1,3096544,219915 ,1,3096660,221485 ,1,3096804,223415 ,1,3096852,224105 ,1,3096888,224585 ,1,3097012,226225 ,1,3097136,227870 ,1,3097260,229515 ,1,3097284,229835 ,1,3097308,230170 ,1,3097548,233395 ,1,3097692,235280 ,1,3097716,235610 ,1,3097928,238430 ,1,3098072,240335 ,1,3098512,246180 ,1,3098784,249825 ,1,3098804,250120 ,1,3099432,258495 ,1,3099504,259430 ,1,3099576,260355 ,1,3099648,261290 ,1,3100268,269320 ,1,3101024,278975 ,1,3101124,280260 ,1,3101220,281485 ,1,3101320,282785 ,1,3101412,284010 ,1,3101496,285075 ,1,3101532,285565 ,1,3101632,286870 ,1,3101768,288630 ,1,3101864,289860 ,1,3101924,290650 ,1,3102004,291650 ,1,3102372,296365 ,1,3102604,299385 ,1,3102832,302440 ,1,3103008,304785 ,1,3103304,308670 ,1,3103344,309205 ,1,3103492,311155 ,1,3103540,311845 ,1,3103688,313845 ,1,3103736,314485 ,1,3103832,315675 ,1,3103900,316575 ,1,3103976,317555 ,1,3104016,318085 ,1,3104212,320660 ,1,3104284,321580 ,1,3104504,324475 ,1,3104684,326785 ,1,3104864,329170 ,1,3105252,334425 ,1,3105516,338055 ,1,3106196,347185 ,1,3107360,362730 ,1,3107448,363980 ,1,3107800,368675 ,1,3108220,374190 ,1,3108612,377570 ,1,3108796,378995 ,1,3109440,384050 ,1,3110324,390735 ,1,3110760,394110 ,1,3111100,396730 ,1,3111372,398925 ,1,3111712,401530 ,1,3112068,404450 ,1,3112256,405980 ,1,3113180,413475 ,1,3113416,415365 ,1,3113684,417450 ,1,3113808,418395 ,1,3113836,418620 ,1,3114100,420815 ,1,3114308,422480 ,1,3114452,423655 ,1,3114576,424680 ,1,3114740,426065 ,1,3114764,426300 ,1,3115040,428490 ,1,3115280,430395 ,1,3115328,430775 ,1,3115488,432065 ,1,3115676,433630 ,1,3115824,434790 ,1,3116124,437385 ,1,3116328,439005 ,1,3116400,439600 ,1,3116632,441505 ,1,3116780,442725 ,1,3116856,443330 ,1,3116896,443650 ,1,3116968,444275 ,1,3117192,446140 ,1,3117292,446975 ,1,3117388,447755 ,1,3117564,449130 ,1,3117712,450285 ,1,3117776,450750 ,1,3118080,453235 ,1,3118272,454770 ,1,3118296,454950 ,1,3118424,456010 ,1,3118472,456385 ,1,3118724,458440 ,1,3118748,458670 ,1,3118796,459005 ,1,3119248,462610 ,1,3119476,464505 ,1,3119696,466220 ,1,3119936,468060 ,1,3119996,468515 ,1,3120516,472515 ,1,3120668,473685 ,1,3121028,476660 ,1,3121176,477825 ,1,3121220,478200 ,1,3121372,479475 ,1,3121500,480510 ,1,3121924,483910 ,1,3121996,484475 ,1,3122044,484880 ,1,3123400,495990 ,1,3123516,496880 ,1,3123624,497755 ,1,3123920,500220 ,1,3124312,503515 ,1,3124532,505305 ,1,3124928,508525 ,1,3125488,512945 ,1,3125812,515585 ,1,3126452,520670 ,1,3126912,524450 ,1,3127304,527655 ,1,3127596,530000 ,1,3128224,535160 ,1,3128624,538325 ,1,3128972,541210 ,1,3130036,549630 ,1,3130440,552850 ,1,3131448,561190 ,1,3132300,568110 ,1,3132692,571390 ,1,3133140,575065 ,1,3133876,581050 ,1,3134064,582605 ,1,3134240,584110 ,1,3134812,588890 ,1,3135100,591310 ,1,3135436,594005 ,1,3136512,602825 ,1,3136972,606695 ,1,3137420,610435 ,1,3138312,617455 ,1,3141324,640945 ,1,3141580,643005 ,1,3142584,650780 ,1,3143044,654460 ,1,3143464,657625 ,1,3143684,659375 ,1,3144076,662485 ,1,3145100,670325 ,1,3146368,8900 ,1,3146556,11380 ,1,3146748,13965 ,1,3146848,15285 ,1,3147052,18020 ,1,3147260,20815 ,1,3148372,35900 ,1,3148548,38210 ,1,3148836,42110 ,1,3148980,44075 ,1,3149040,44875 ,1,3149264,47800 ,1,3149288,48115 ,1,3149348,48925 ,1,3149392,49465 ,1,3149900,56305 ,1,3149924,56620 ,1,3150216,60500 ,1,3150408,63045 ,1,3150700,66940 ,1,3150792,68125 ,1,3151136,72560 ,1,3151464,76755 ,1,3151612,78755 ,1,3151732,80320 ,1,3151832,81645 ,1,3152036,84385 ,1,3152140,85790 ,1,3152836,94930 ,1,3152860,95275 ,1,3152920,96065 ,1,3153268,100795 ,1,3153292,101120 ,1,3153316,101460 ,1,3153340,101810 ,1,3153424,102940 ,1,3153608,105475 ,1,3153668,106280 ,1,3153876,109100 ,1,3153900,109440 ,1,3153924,109745 ,1,3154076,111835 ,1,3154100,112150 ,1,3154228,113915 ,1,3154564,118465 ,1,3154680,119970 ,1,3154812,121730 ,1,3154944,123470 ,1,3154968,123795 ,1,3155776,134560 ,1,3157624,159350 ,1,3157684,160170 ,1,3157996,164400 ,1,3158056,165185 ,1,3158200,167120 ,1,3158352,169260 ,1,3158624,172980 ,1,3158648,173325 ,1,3158824,175745 ,1,3159072,179185 ,1,3159376,183275 ,1,3159548,185650 ,1,3159796,189045 ,1,3160100,193145 ,1,3160456,197965 ,1,3160480,198295 ,1,3160684,201040 ,1,3160956,204765 ,1,3160968,204910 ,1,3161024,205705 ,1,3161208,208150 ,1,3161848,216805 ,1,3164012,245735 ,1,3165484,265230 ,1,3166532,278615 ,1,3167144,286565 ,1,3167248,287925 ,1,3168052,298220 ,1,3168144,299435 ,1,3169324,315155 ,1,3171648,346040 ,1,3171772,347730 ,1,3172436,356650 ,1,3172556,358290 ,1,3174128,377400 ,1,3174152,377595 ,1,3174452,379910 ,1,3174476,380115 ,1,3174500,380305 ,1,3175632,389005 ,1,3176048,392140 ,1,3176436,395235 ,1,3176640,396755 ,1,3176664,396965 ,1,3176936,399130 ,1,3177140,400675 ,1,3177536,403915 ,1,3177740,405565 ,1,3177764,405750 ,1,3177788,405955 ,1,3177812,406160 ,1,3178012,407745 ,1,3178444,411290 ,1,3178912,415040 ,1,3178936,415230 ,1,3179180,417120 ,1,3179204,417305 ,1,3179348,418435 ,1,3179372,418625 ,1,3179396,418780 ,1,3179420,418995 ,1,3179444,419170 ,1,3179468,419370 ,1,3179780,421955 ,1,3179848,422515 ,1,3179860,422640 ,1,3179904,422975 ,1,3180240,425755 ,1,3180780,430095 ,1,3180840,430590 ,1,3180976,431670 ,1,3181048,432255 ,1,3181392,435065 ,1,3181424,435350 ,1,3181448,435535 ,1,3181472,435730 ,1,3181496,435980 ,1,3181520,436200 ,1,3181716,437830 ,1,3181992,440110 ,1,3182140,441300 ,1,3182760,446395 ,1,3182784,446590 ,1,3183208,449985 ,1,3183292,450615 ,1,3183316,450785 ,1,3183340,450995 ,1,3183544,452630 ,1,3183752,454280 ,1,3184368,459275 ,1,3184392,459465 ,1,3184576,460900 ,1,3184952,463990 ,1,3185340,467050 ,1,3185732,470050 ,1,3186008,472175 ,1,3186032,472370 ,1,3186056,472545 ,1,3186080,472755 ,1,3186104,472960 ,1,3186336,474780 ,1,3186360,474990 ,1,3186384,475175 ,1,3186560,476605 ,1,3186812,478655 ,1,3187056,480685 ,1,3187080,480895 ,1,3187104,481090 ,1,3187128,481290 ,1,3187412,483545 ,1,3188680,493885 ,1,3189012,496570 ,1,3189412,499875 ,1,3189520,500735 ,1,3189736,502530 ,1,3189760,502745 ,1,3190000,504770 ,1,3190072,505335 ,1,3190264,506880 ,1,3190456,508455 ,1,3190620,509715 ,1,3190820,511300 ,1,3191020,512920 ,1,3191204,514455 ,1,3191492,516755 ,1,3191632,517865 ,1,3191928,520145 ,1,3192092,521510 ,1,3192448,524445 ,1,3192472,524635 ,1,3192496,524830 ,1,3192852,527765 ,1,3192984,528800 ,1,3193316,531525 ,1,3194352,539845 ,1,3194376,540055 ,1,3194608,542040 ,1,3194832,543875 ,1,3195600,549850 ,1,3195964,552750 ,1,3195988,552955 ,1,3196012,553140 ,1,3196360,556015 ,1,3196460,556850 ,1,3196576,557870 ,1,3197512,565500 ,1,3197912,568735 ,1,3198552,574070 ,1,3198796,576045 ,1,3198820,576250 ,1,3200588,590910 ,1,3200612,591110 ,1,3201312,596770 ,1,3201928,601765 ,1,3202020,602610 ,1,3202112,603390 ,1,3206300,636565 ,1,3206456,637740 ,1,3206888,641160 ,1,3207260,644135 ,1,3207504,645980 ,1,3207720,647685 ,1,3207836,648580 ,1,3208032,650055 ,1,3208584,654490 ,1,3208928,657080 ,1,3209216,659330 ,1,3209464,661275 ,1,3210020,665615 ,1,3210200,667005 ,1,3210684,670745 ,1,3210888,672310 ,1,3211384,1915 ,1,3211552,4140 ,1,3211764,7005 ,1,3212116,11710 ,1,3212400,15510 ,1,3212688,19370 ,1,3212964,23100 ,1,3213200,26345 ,1,3213428,29485 ,1,3213680,32800 ,1,3214036,37580 ,1,3214392,42380 ,1,3214672,46125 ,1,3215000,50435 ,1,3215164,52635 ,1,3215288,54335 ,1,3215648,59130 ,1,3215720,60090 ,1,3216024,64135 ,1,3216152,65835 ,1,3216380,68800 ,1,3216728,73260 ,1,3216804,74265 ,1,3216872,75105 ,1,3216940,75980 ,1,3217008,76865 ,1,3217076,77765 ,1,3217144,78685 ,1,3217344,81360 ,1,3218964,103025 ,1,3219532,110735 ,1,3219608,111765 ,1,3219748,113680 ,1,3219780,114145 ,1,3219952,116490 ,1,3220044,117705 ,1,3221248,133725 ,1,3221328,134775 ,1,3221404,135820 ,1,3222204,146520 ,1,3222964,156790 ,1,3223280,161000 ,1,3223428,163005 ,1,3223540,164515 ,1,3223656,166025 ,1,3223772,167630 ,1,3224192,173425 ,1,3224308,175060 ,1,3224420,176585 ,1,3224536,178190 ,1,3224652,179775 ,1,3225300,188595 ,1,3225628,193030 ,1,3225744,194560 ,1,3225776,195000 ,1,3225944,197315 ,1,3226084,199215 ,1,3226328,202525 ,1,3226352,202845 ,1,3226376,203180 ,1,3229536,245550 ,1,3229680,247500 ,1,3229756,248520 ,1,3230124,253480 ,1,3230192,254365 ,1,3231036,265440 ,1,3231684,273765 ,1,3231780,275000 ,1,3231920,276795 ,1,3232216,280510 ,1,3232264,281130 ,1,3232640,286020 ,1,3233028,291050 ,1,3233416,295995 ,1,3233680,299440 ,1,3233704,299745 ,1,3233796,300985 ,1,3233928,302770 ,1,3234284,307470 ,1,3235100,318265 ,1,3235148,318890 ,1,3235312,321000 ,1,3235372,321810 ,1,3235436,322670 ,1,3235492,323390 ,1,3235652,325445 ,1,3235712,326210 ,1,3235860,328135 ,1,3236220,332980 ,1,3236456,336210 ,1,3236636,338715 ,1,3236920,342505 ,1,3237064,344410 ,1,3237236,346750 ,1,3237372,348580 ,1,3237504,350310 ,1,3237576,351290 ,1,3237668,352550 ,1,3237692,352860 ,1,3237716,353200 ,1,3237928,356030 ,1,3238000,357005 ,1,3238212,359860 ,1,3238360,361795 ,1,3238452,363040 ,1,3238476,363360 ,1,3238620,365365 ,1,3238792,367625 ,1,3240216,381755 ,1,3240800,386240 ,1,3241500,391525 ,1,3241832,394115 ,1,3241972,395230 ,1,3242144,396520 ,1,3242536,399625 ,1,3243040,403650 ,1,3243064,403860 ,1,3243088,404060 ,1,3243112,404220 ,1,3243136,404415 ,1,3243160,404620 ,1,3243212,405030 ,1,3243308,405830 ,1,3243332,406040 ,1,3243400,406590 ,1,3243448,406960 ,1,3243492,407295 ,1,3244484,415335 ,1,3244856,418210 ,1,3245068,419915 ,1,3245104,420210 ,1,3245148,420605 ,1,3245420,422830 ,1,3245712,425185 ,1,3245848,426375 ,1,3245912,426900 ,1,3246840,434360 ,1,3246908,434905 ,1,3247052,436175 ,1,3247148,436980 ,1,3247300,438220 ,1,3247600,440680 ,1,3247792,442235 ,1,3247848,442685 ,1,3247904,443140 ,1,3247944,443470 ,1,3248408,447345 ,1,3248484,447960 ,1,3248564,448560 ,1,3248668,449400 ,1,3248920,451320 ,1,3250300,462465 ,1,3251616,472750 ,1,3251676,473225 ,1,3251704,473425 ,1,3251812,474275 ,1,3252656,481220 ,1,3252824,482575 ,1,3253036,484220 ,1,3253136,485020 ,1,3255196,501910 ,1,3256280,510690 ,1,3256344,511180 ,1,3261252,550780 ,1,3261576,553390 ,1,3262208,558665 ,1,3262288,559285 ,1,3262936,564600 ,1,3263528,569425 ,1,3263580,569875 ,1,3263668,570610 ,1,3263716,570980 ,1,3263888,572390 ,1,3264060,573835 ,1,3264324,575975 ,1,3264716,579140 ,1,3265180,583040 ,1,3282272,73385 ,1,3283812,93665 ,1,3283872,94460 ,1,3283932,95270 ,1,3284644,104975 ,1,3286600,131295 ,1,3286632,131730 ,1,3287000,136625 ,1,3287268,140275 ,1,3287696,145910 ,1,3288584,157885 ,1,3288724,159750 ,1,3289916,176040 ,1,3290004,177240 ,1,3290080,178315 ,1,3290180,179660 ,1,3290592,185250 ,1,3291476,197270 ,1,3291644,199525 ,1,3291708,200395 ,1,3291980,204125 ,1,3292176,206775 ,1,3292424,210065 ,1,3292732,214295 ,1,3293600,225965 ,1,3294364,236145 ,1,3294424,236935 ,1,3294896,243140 ,1,3295036,245070 ,1,3295064,245435 ,1,3295136,246405 ,1,3295156,246665 ,1,3295176,246925 ,1,3295196,247225 ,1,3295336,249080 ,1,3295352,249285 ,1,3295492,251195 ,1,3296312,262005 ,1,3296472,264095 ,1,3296716,267310 ,1,3296820,268590 ,1,3296908,269730 ,1,3298756,293505 ,1,3298948,295950 ,1,3299072,297550 ,1,3299264,300055 ,1,3299456,302650 ,1,3299644,305180 ,1,3299820,307475 ,1,3300112,311315 ,1,3300160,312005 ,1,3300252,313285 ,1,3300308,314005 ,1,3300448,315795 ,1,3300684,318895 ,1,3300924,322005 ,1,3300928,322050 ,1,3300932,322125 ,1,3300956,322440 ,1,3300964,322560 ,1,3301140,324840 ,1,3301296,326835 ,1,3301404,328250 ,1,3301464,329060 ,1,3301520,329810 ,1,3301592,330765 ,1,3301632,331280 ,1,3301676,331880 ,1,3301716,332445 ,1,3302180,338845 ,1,3302372,341415 ,1,3302584,344195 ,1,3302684,345580 ,1,3302764,346640 ,1,3302972,349435 ,1,3303244,353100 ,1,3303300,353835 ,1,3303492,356420 ,1,3303604,357960 ,1,3303852,361225 ,1,3303900,361855 ,1,3304020,363470 ,1,3304060,364045 ,1,3304172,365580 ,1,3304212,366085 ,1,3304324,367580 ,1,3304352,367945 ,1,3304652,371905 ,1,3307480,394995 ,1,3307940,398595 ,1,3308300,401395 ,1,3308668,404390 ,1,3308720,404800 ,1,3309052,407465 ,1,3309372,410115 ,1,3309816,413705 ,1,3309952,414745 ,1,3310080,415780 ,1,3310412,418370 ,1,3310556,419495 ,1,3310916,422475 ,1,3311840,430000 ,1,3313700,445325 ,1,3314168,449080 ,1,3314528,451915 ,1,3314972,455535 ,1,3315340,458520 ,1,3315656,460985 ,1,3315972,463580 ,1,3316252,465820 ,1,3316532,467975 ,1,3316812,470110 ,1,3317092,472270 ,1,3317372,474475 ,1,3317652,476795 ,1,3317932,479060 ,1,3318212,481380 ,1,3318952,487285 ,1,3319560,492320 ,1,3319672,493200 ,1,3321864,511045 ,1,3322012,512235 ,1,3322372,515185 ,1,3322440,515750 ,1,3322492,516180 ,1,3323088,520900 ,1,3323284,522535 ,1,3323480,524105 ,1,3323676,525740 ,1,3323872,527315 ,1,3324188,529855 ,1,3324468,532165 ,1,3324748,534490 ,1,3325028,536725 ,1,3325160,537705 ,1,3325440,539995 ,1,3325612,541505 ,1,3326588,549160 ,1,3326768,550600 ,1,3326948,552015 ,1,3327040,552775 ,1,3327184,553990 ,1,3327500,556575 ,1,3327596,557430 ,1,3327876,559735 ,1,3328156,562055 ,1,3328500,564830 ,1,3328780,567080 ,1,3329060,569395 ,1,3331684,591105 ,1,3334232,612100 ,1,3336444,629240 ,1,3336804,632140 ,1,3336940,633230 ,1,3336988,633605 ,1,3337332,636245 ,1,3337384,636640 ,1,3337888,640570 ,1,3338020,641670 ,1,3338516,645515 ,1,3338664,646700 ,1,3339148,650415 ,1,3339312,651815 ,1,3339360,652200 ,1,3339840,655855 ,1,3339996,657055 ,1,3340356,659875 ,1,3340476,660780 ,1,3340800,663395 ,1,3340924,664360 ,1,3341044,665250 ,1,3341164,666170 ,1,3342876,7555 ,1,3342988,9055 ,1,3343568,16790 ,1,3344136,24495 ,1,3344616,31035 ,1,3344892,34670 ,1,3345168,38375 ,1,3345472,42490 ,1,3345784,46660 ,1,3345892,48065 ,1,3346000,49470 ,1,3346116,51030 ,1,3346224,52450 ,1,3346728,59255 ,1,3347080,63905 ,1,3347736,72455 ,1,3348856,87220 ,1,3348964,88680 ,1,3349072,90070 ,1,3349188,91565 ,1,3349296,92985 ,1,3349408,94465 ,1,3349936,101630 ,1,3350164,104760 ,1,3350420,108235 ,1,3350676,111720 ,1,3350836,113910 ,1,3350976,115825 ,1,3351344,120685 ,1,3351496,122760 ,1,3351724,125795 ,1,3351828,127190 ,1,3351940,128685 ,1,3352136,131300 ,1,3352232,132600 ,1,3352676,138545 ,1,3353264,146345 ,1,3353412,148380 ,1,3353520,149830 ,1,3353564,150445 ,1,3353780,153390 ,1,3353928,155335 ,1,3354076,157330 ,1,3354208,159025 ,1,3355012,169995 ,1,3355344,174545 ,1,3355456,176090 ,1,3355568,177620 ,1,3355820,181070 ,1,3357200,199780 ,1,3357316,201380 ,1,3358180,213075 ,1,3359044,224740 ,1,3359316,228370 ,1,3359588,231985 ,1,3359860,235605 ,1,3360016,237680 ,1,3362444,269725 ,1,3362988,276740 ,1,3363420,282205 ,1,3363676,285560 ,1,3363932,288885 ,1,3364516,296370 ,1,3365008,302870 ,1,3365156,304860 ,1,3366092,317205 ,1,3366240,319130 ,1,3366388,321075 ,1,3366664,324685 ,1,3366960,328520 ,1,3367288,332930 ,1,3367436,334945 ,1,3367584,337005 ,1,3367688,338435 ,1,3367820,340220 ,1,3367968,342190 ,1,3368364,347490 ,1,3368492,349215 ,1,3368604,350695 ,1,3368716,352205 ,1,3368828,353720 ,1,3369032,356470 ,1,3369236,359235 ,1,3369432,361800 ,1,3369780,366505 ,1,3370716,377245 ,1,3370840,378230 ,1,3371768,385445 ,1,3371892,386405 ,1,3372216,388835 ,1,3372304,389475 ,1,3372420,390365 ,1,3372784,393145 ,1,3372836,393550 ,1,3373004,394910 ,1,3373172,396195 ,1,3374336,405445 ,1,3374812,409320 ,1,3375080,411530 ,1,3375380,413910 ,1,3376356,421715 ,1,3376608,423745 ,1,3377216,428750 ,1,3377784,433335 ,1,3379060,443830 ,1,3379420,446815 ,1,3379724,449250 ,1,3380216,453170 ,1,3380328,454035 ,1,3381364,462405 ,1,3381512,463610 ,1,3381660,464835 ,1,3382176,468785 ,1,3382272,469545 ,1,3382536,471540 ,1,3382740,473165 ,1,3382828,473810 ,1,3383140,476410 ,1,3383492,479285 ,1,3383636,480450 ,1,3383916,482730 ,1,3384032,483640 ,1,3385208,493195 ,1,3385304,494025 ,1,3386212,501440 ,1,3386840,506615 ,1,3387276,510110 ,1,3387712,513610 ,1,3388136,517030 ,1,3388572,520450 ,1,3389008,524025 ,1,3389432,527515 ,1,3389724,529860 ,1,3390648,537335 ,1,3391100,541085 ,1,3391400,543525 ,1,3392324,550775 ,1,3392776,554445 ,1,3393076,556925 ,1,3393272,558595 ,1,3393400,559615 ,1,3393788,562870 ,1,3394884,571785 ,1,3395156,574045 ,1,3395680,578250 ,1,3395900,580085 ,1,3396532,585340 ,1,3396964,588975 ,1,3397332,592000 ,1,3397384,592425 ,1,3397796,595770 ,1,3398920,605085 ,1,3399016,605895 ,1,3399316,608405 ,1,3399672,611330 ,1,3399860,612815 ,1,3399980,613800 ,1,3400088,614610 ,1,3400208,615560 ,1,3400304,616250 ,1,3400616,618710 ,1,3400704,619360 ,1,3400920,620950 ,1,3401492,625290 ,1,3401964,629120 ,1,3402856,636150 ,1,3403480,641040 ,1,3403576,641810 ,1,3403720,642960 ,1,3403860,644065 ,1,3404044,645450 ,1,3405148,654140 ,1,3405416,656175 ,1,3405788,659060 ,1,3405936,660200 ,1,3406308,663195 ,1,3406376,663705 ,1,3406444,664230 ,1,3406712,666245 ,1,3407084,669115 ,1,3407624,673305 ,1,3407996,1975 ,1,3408384,7160 ,1,3408756,12175 ,1,3409004,15460 ,1,3409376,20435 ,1,3409644,24100 ,1,3410016,29185 ,1,3410556,36440 ,1,3410928,41420 ,1,3411316,46610 ,1,3411688,51510 ,1,3412144,57650 ,1,3412252,59085 ,1,3412356,60455 ,1,3412460,61835 ,1,3412564,63235 ,1,3412668,64630 ,1,3412772,66000 ,1,3412876,67350 ,1,3412980,68700 ,1,3413084,70050 ,1,3413272,72460 ,1,3413644,77240 ,1,3413748,78635 ,1,3413852,80010 ,1,3414000,81965 ,1,3414148,83960 ,1,3414536,89145 ,1,3414908,93985 ,1,3415012,95375 ,1,3415244,98500 ,1,3415348,99925 ,1,3415440,101165 ,1,3415532,102475 ,1,3415624,103695 ,1,3415716,104980 ,1,3415808,106205 ,1,3415900,107475 ,1,3415992,108715 ,1,3416084,109985 ,1,3416176,111230 ,1,3416268,112460 ,1,3416360,113730 ,1,3416452,115035 ,1,3416544,116265 ,1,3416636,117510 ,1,3416728,118705 ,1,3416820,119925 ,1,3416912,121130 ,1,3417004,122400 ,1,3417096,123580 ,1,3417188,124810 ,1,3417280,126065 ,1,3417372,127290 ,1,3417464,128500 ,1,3417556,129750 ,1,3417648,130970 ,1,3417740,132220 ,1,3417832,133415 ,1,3417924,134630 ,1,3418016,135865 ,1,3418108,137140 ,1,3418200,138380 ,1,3418292,139615 ,1,3418384,140820 ,1,3418476,142025 ,1,3418568,143180 ,1,3418660,144430 ,1,3418752,145695 ,1,3418844,146960 ,1,3418936,148210 ,1,3419028,149455 ,1,3419120,150710 ,1,3419424,154805 ,1,3419796,159745 ,1,3419864,160640 ,1,3419932,161580 ,1,3420000,162510 ,1,3420240,165710 ,1,3421012,176365 ,1,3421280,180050 ,1,3421652,185100 ,1,3422248,193190 ,1,3422620,198250 ,1,3422936,202520 ,1,3423308,207600 ,1,3423376,208490 ,1,3423444,209410 ,1,3423772,213845 ,1,3424144,218865 ,1,3424412,222430 ,1,3424784,227435 ,1,3424888,228830 ,1,3425216,233205 ,1,3425724,239980 ,1,3425920,242535 ,1,3426676,252720 ,1,3426936,256180 ,1,3427308,261035 ,1,3427412,262385 ,1,3427600,264800 ,1,3427952,269365 ,1,3428136,271760 ,1,3428508,276540 ,1,3428620,277945 ,1,3428664,278470 ,1,3428804,280265 ,1,3429644,291140 ,1,3430600,303625 ,1,3430688,304780 ,1,3431228,311955 ,1,3431628,317200 ,1,3431940,321270 ,1,3432640,330435 ,1,3432776,332260 ,1,3432876,333640 ,1,3433012,335515 ,1,3433120,337000 ,1,3433484,341960 ,1,3433912,347675 ,1,3434080,349880 ,1,3434440,354730 ,1,3434484,355325 ,1,3435216,365170 ,1,3435428,368025 ,1,3435576,369945 ,1,3435940,374720 ,1,3436176,376665 ,1,3436364,378140 ,1,3437220,384835 ,1,3437344,385765 ,1,3437780,389040 ,1,3438464,394295 ,1,3439000,398485 ,1,3439288,400705 ,1,3439432,401880 ,1,3439556,402895 ,1,3439820,405035 ,1,3440140,407610 ,1,3440236,408395 ,1,3440828,413215 ,1,3440964,414280 ,1,3441208,416230 ,1,3441388,417650 ,1,3441568,419020 ,1,3441736,420430 ,1,3441880,421600 ,1,3442060,423075 ,1,3442396,425870 ,1,3442716,428460 ,1,3443008,430780 ,1,3443360,433655 ,1,3443924,438365 ,1,3444496,442995 ,1,3444848,445940 ,1,3445412,450440 ,1,3445984,455030 ,1,3446248,457130 ,1,3446720,460895 ,1,3447312,465725 ,1,3447364,466140 ,1,3448572,475545 ,1,3448892,478135 ,1,3449028,479290 ,1,3449164,480390 ,1,3449212,480810 ,1,3449348,481905 ,1,3449536,483360 ,1,3449724,484885 ,1,3449860,485995 ,1,3450184,488590 ,1,3450304,489565 ,1,3450456,490855 ,1,3450576,491870 ,1,3450724,493030 ,1,3451084,496030 ,1,3451428,498835 ,1,3451788,501765 ,1,3452004,503630 ,1,3452048,503985 ,1,3452392,506755 ,1,3452524,507835 ,1,3452876,510600 ,1,3453168,512950 ,1,3454540,523995 ,1,3455144,528910 ,1,3455504,531900 ,1,3455636,532960 ,1,3456124,536895 ,1,3456616,540895 ,1,3457024,544260 ,1,3457116,544925 ,1,3457212,545690 ,1,3457484,547820 ,1,3457668,549230 ,1,3457784,550170 ,1,3458228,553745 ,1,3458708,557780 ,1,3458944,559690 ,1,3459444,563790 ,1,3459716,566010 ,1,3460056,568730 ,1,3460308,570880 ,1,3460588,573195 ,1,3461476,580415 ,1,3461824,583335 ,1,3462172,586185 ,1,3462600,589835 ,1,3462928,592495 ,1,3463036,593335 ,1,3463700,598775 ,1,3464264,603455 ,1,3464432,604885 ,1,3465156,610910 ,1,3465456,613300 ,1,3465932,617000 ,1,3466780,623390 ,1,3467272,627245 ,1,3468752,638895 ,1,3468800,639270 ,1,3468900,640090 ,1,3468980,640755 ,1,3469116,641865 ,1,3469252,642930 ,1,3469980,648585 ,1,3470240,650575 ,1,3470328,651315 ,1,3470524,652925 ,1,3471060,656985 ,1,3471112,657385 ,1,3471164,657795 ,1,3471268,658620 ,1,3472164,665610 ,1,3472484,668115 ,1,3472536,668480 ,1,3472896,671235 ,1,3473264,674145 ,1,3473624,3190 ,1,3473956,7660 ,1,3474504,14950 ,1,3474544,15515 ,1,3474868,19850 ,1,3475340,26300 ,1,3475684,30985 ,1,3475972,34770 ,1,3477148,50485 ,1,3477840,59775 ,1,3478180,64295 ,1,3478612,69950 ,1,3478760,71825 ,1,3479008,74995 ,1,3479232,77915 ,1,3479276,78520 ,1,3479592,82720 ,1,3479696,84115 ,1,3479784,85285 ,1,3479888,86680 ,1,3480452,94095 ,1,3480672,97000 ,1,3480800,98750 ,1,3480892,100040 ,1,3481136,103380 ,1,3481232,104690 ,1,3481508,108455 ,1,3482076,116210 ,1,3482368,120085 ,1,3482588,123025 ,1,3482808,125955 ,1,3482980,128250 ,1,3483420,134090 ,1,3484132,143580 ,1,3484280,145575 ,1,3484848,153315 ,1,3485184,157770 ,1,3485488,161840 ,1,3485540,162570 ,1,3485644,163975 ,1,3486040,169375 ,1,3486468,175295 ,1,3486840,180375 ,1,3487116,184095 ,1,3487268,186210 ,1,3487592,190595 ,1,3488120,197745 ,1,3488524,203265 ,1,3488848,207650 ,1,3489420,215370 ,1,3489960,222600 ,1,3490360,227980 ,1,3490408,228625 ,1,3490516,230045 ,1,3491352,241160 ,1,3492528,256875 ,1,3492916,261955 ,1,3493080,264090 ,1,3493160,265135 ,1,3493292,266905 ,1,3493568,270405 ,1,3493764,272930 ,1,3493984,275775 ,1,3494540,282845 ,1,3495244,291950 ,1,3495568,296090 ,1,3495616,296720 ,1,3495760,298590 ,1,3495888,300260 ,1,3495932,300885 ,1,3495984,301575 ,1,3496364,306645 ,1,3496496,308345 ,1,3496548,309060 ,1,3496952,314490 ,1,3497096,316295 ,1,3497140,316900 ,1,3497512,321725 ,1,3497656,323640 ,1,3497708,324315 ,1,3498028,328475 ,1,3498188,330620 ,1,3498240,331275 ,1,3498528,335210 ,1,3498660,337090 ,1,3499072,342615 ,1,3499228,344690 ,1,3499848,353015 ,1,3500524,362080 ,1,3501036,368960 ,1,3501164,370635 ,1,3501292,372315 ,1,3503212,388295 ,1,3503260,388645 ,1,3503548,390805 ,1,3503660,391655 ,1,3503956,393955 ,1,3504236,396135 ,1,3504388,397325 ,1,3504988,402040 ,1,3505372,405170 ,1,3505524,406425 ,1,3506148,411505 ,1,3506808,416725 ,1,3507084,418855 ,1,3507180,419640 ,1,3507424,421670 ,1,3507520,422430 ,1,3508760,432535 ,1,3508848,433250 ,1,3509652,439925 ,1,3509720,440485 ,1,3509916,442055 ,1,3510336,445550 ,1,3510488,446785 ,1,3511208,452485 ,1,3513648,471830 ,1,3513688,472180 ,1,3514396,477890 ,1,3514612,479660 ,1,3515216,484505 ,1,3515436,486320 ,1,3516884,498140 ,1,3517232,501000 ,1,3518132,508430 ,1,3518228,509150 ,1,3518240,509235 ,1,3518292,509650 ,1,3518696,512855 ,1,3519560,519770 ,1,3519572,519880 ,1,3520504,527510 ,1,3521384,534710 ,1,3522224,541530 ,1,3524928,563400 ,1,3525256,566040 ,1,3525268,566120 ,1,3525280,566235 ,1,3525840,570835 ,1,3527212,582050 ,1,3527756,586595 ,1,3527860,587460 ,1,3528128,589750 ,1,3528228,590580 ,1,3528968,596565 ,1,3529060,597335 ,1,3529280,599155 ,1,3529940,604695 ,1,3530836,612075 ,1,3531900,620285 ,1,3533420,632225 ,1,3533740,634705 ,1,3534060,637150 ,1,3534192,638180 ,1,3534336,639265 ,1,3534656,641895 ,1,3534744,642585 ,1,3535640,649505 ,1,3535788,650700 ,1,3536012,652570 ,1,3536124,653405 ,1,3536400,655490 ,1,3536520,656410 ,1,3536620,657185 ,1,3536864,659085 ,1,3536964,659870 ,1,3537900,667165 ,1,3538312,670295 ,1,3538408,671065 ,1,3538852,674560 ,1,3539000,1065 ,1,3539316,5305 ,1,3539748,11060 ,1,3540212,17285 ,1,3540896,26580 ,1,3541260,31550 ,1,3541620,36335 ,1,3541736,37835 ,1,3542016,41620 ,1,3542124,43095 ,1,3542404,46830 ,1,3542512,48230 ,1,3542864,52900 ,1,3543012,54910 ,1,3543364,59630 ,1,3543512,61575 ,1,3543640,63280 ,1,3543768,65005 ,1,3544144,69875 ,1,3544964,80540 ,1,3545484,87500 ,1,3545632,89455 ,1,3545760,91105 ,1,3545984,94030 ,1,3546216,97135 ,1,3546464,100525 ,1,3546728,104155 ,1,3547240,111110 ,1,3547620,116335 ,1,3548232,124430 ,1,3548496,127985 ,1,3549124,136355 ,1,3549772,144965 ,1,3549956,147520 ,1,3550548,155505 ,1,3550812,158975 ,1,3550940,160710 ,1,3551616,169930 ,1,3551872,173430 ,1,3551984,175000 ,1,3552336,179825 ,1,3552452,181385 ,1,3552560,182840 ,1,3552820,186445 ,1,3552932,187950 ,1,3553560,196420 ,1,3553672,197970 ,1,3553768,199260 ,1,3554364,207380 ,1,3554908,214735 ,1,3555112,217460 ,1,3555352,220645 ,1,3555568,223590 ,1,3555896,227975 ,1,3557072,243600 ,1,3557680,251795 ,1,3557896,254710 ,1,3558148,258020 ,1,3559192,271525 ,1,3559408,274315 ,1,3559696,277990 ,1,3559924,280885 ,1,3560264,285290 ,1,3560552,289050 ,1,3560800,292200 ,1,3561016,294950 ,1,3562012,308085 ,1,3562228,310950 ,1,3562484,314440 ,1,3563560,328410 ,1,3563776,331270 ,1,3563916,333200 ,1,3566076,362285 ,1,3566536,368455 ,1,3566984,374335 ,1,3567236,376570 ,1,3567528,378840 ,1,3567712,380265 ,1,3567892,381725 ,1,3567940,382095 ,1,3568056,382970 ,1,3568620,387290 ,1,3568708,387980 ,1,3569036,390440 ,1,3569184,391555 ,1,3569492,393950 ,1,3570504,401885 ,1,3570668,403230 ,1,3570976,405700 ,1,3571068,406500 ,1,3574028,430370 ,1,3574200,431720 ,1,3574296,432530 ,1,3575196,440010 ,1,3575360,441325 ,1,3575692,444035 ,1,3575808,445015 ,1,3579436,473815 ,1,3579608,475240 ,1,3579864,477365 ,1,3580188,479990 ,1,3580284,480805 ,1,3590216,561350 ,1,3590380,562740 ,1,3590592,564395 ,1,3590748,565680 ,1,3591616,572795 ,1,3592596,580810 ,1,3593672,589830 ,1,3594940,600135 ,1,3594952,600215 ,1,3595004,600660 ,1,3595212,602380 ,1,3595288,603045 ,1,3595924,608410 ,1,3595956,608690 ,1,3596224,610850 ,1,3598144,625635 ,1,3598256,626525 ,1,3598540,628860 ,1,3598728,630335 ,1,3598824,631110 ,1,3598920,631895 ,1,3599668,637710 ,1,3599812,638810 ,1,3600244,642330 ,1,3601040,648475 ,1,3601092,648850 ,1,3601104,648955 ,1,3601156,649355 ,1,3601336,650785 ,1,3601540,652485 ,1,3601984,655850 ,1,3604264,673565 ,1,3604288,673765 ,1,3604928,6285 ,1,3605348,11940 ,1,3605784,17730 ,1,3607380,39315 ,1,3607796,44940 ,1,3608432,53330 ,1,3608916,59850 ,1,3608968,60505 ,1,3613008,114310 ,1,3613340,118775 ,1,3613588,122065 ,1,3613600,122210 ,1,3613704,123575 ,1,3613808,124970 ,1,3613860,125675 ,1,3615028,141315 ,1,3615316,145090 ,1,3615752,151030 ,1,3615764,151200 ,1,3616360,159130 ,1,3616504,161100 ,1,3616556,161795 ,1,3616808,165190 ,1,3617156,170000 ,1,3617524,175065 ,1,3617892,180105 ,1,3618260,185095 ,1,3618824,192750 ,1,3618972,194725 ,1,3619100,196500 ,1,3619468,201490 ,1,3619724,204990 ,1,3619816,206230 ,1,3620100,210015 ,1,3620248,212010 ,1,3623116,250425 ,1,3623636,257370 ,1,3623784,259325 ,1,3623912,260985 ,1,3626564,295120 ,1,3626616,295780 ,1,3626892,299390 ,1,3627108,302290 ,1,3627832,311890 ,1,3628520,320905 ,1,3628756,324010 ,1,3628804,324635 ,1,3629040,327655 ,1,3629252,330505 ,1,3629612,335395 ,1,3629972,340335 ,1,3630268,344255 ,1,3630636,349220 ,1,3630900,352735 ,1,3631008,354190 ,1,3631300,358175 ,1,3631520,361075 ,1,3631564,361650 ,1,3632120,369120 ,1,3632384,372575 ,1,3633036,378625 ,1,3633604,383085 ,1,3634000,386130 ,1,3635100,394545 ,1,3635348,396430 ,1,3635444,397195 ,1,3636092,402290 ,1,3637424,413120 ,1,3637864,416605 ,1,3638484,421575 ,1,3639656,431095 ,1,3639912,433185 ,1,3640352,436870 ,1,3640752,440165 ,1,3641680,447785 ,1,3642600,455105 ,1,3642648,455485 ,1,3642688,455805 ,1,3644136,467365 ,1,3644292,468575 ,1,3644400,469420 ,1,3644684,471580 ,1,3645076,474685 ,1,3646040,482580 ,1,3646392,485380 ,1,3646844,489030 ,1,3646956,489945 ,1,3647736,496355 ,1,3647884,497535 ,1,3648012,498620 ,1,3648444,502160 ,1,3648728,504570 ,1,3648856,505620 ,1,3649020,506920 ,1,3649132,507830 ,1,3649392,509865 ,1,3649784,513005 ,1,3650128,515815 ,1,3650276,517005 ,1,3650372,517775 ,1,3651028,523070 ,1,3651176,524250 ,1,3651304,525330 ,1,3651432,526370 ,1,3651624,527910 ,1,3651676,528335 ,1,3652092,531750 ,1,3652384,534140 ,1,3652816,537520 ,1,3653228,540950 ,1,3653436,542690 ,1,3653548,543585 ,1,3653668,544515 ,1,3653720,544890 ,1,3654324,549625 ,1,3654656,552235 ,1,3654760,553105 ,1,3655432,558735 ,1,3655544,559620 ,1,3655852,562195 ,1,3655988,563310 ,1,3656064,563890 ,1,3656796,569880 ,1,3657060,572045 ,1,3658204,581395 ,1,3658316,582325 ,1,3658364,582735 ,1,3658428,583300 ,1,3658660,585195 ,1,3658884,587050 ,1,3659084,588765 ,1,3659668,593525 ,1,3660372,599300 ,1,3660876,603520 ,1,3661096,605365 ,1,3661212,606335 ,1,3661528,608975 ,1,3661844,611570 ,1,3661896,611975 ,1,3662052,613205 ,1,3662744,618575 ,1,3663120,621370 ,1,3663624,625185 ,1,3663788,626500 ,1,3663848,626995 ,1,3663884,627305 ,1,3664092,628975 ,1,3664308,630700 ,1,3664524,632485 ,1,3664636,633370 ,1,3664748,634240 ,1,3664952,635800 ,1,3665164,637390 ,1,3665376,639010 ,1,3665436,639490 ,1,3665608,640905 ,1,3665772,642270 ,1,3665936,643510 ,1,3665980,643895 ,1,3666028,644275 ,1,3666076,644625 ,1,3666120,644945 ,1,3666164,645280 ,1,3666208,645610 ,1,3666252,645950 ,1,3666296,646305 ,1,3666524,648055 ,1,3666752,649805 ,1,3666980,651705 ,1,3667092,652625 ,1,3667180,653300 ,1,3667296,654170 ,1,3667412,655070 ,1,3667556,656150 ,1,3667704,657255 ,1,3667844,658355 ,1,3667984,659460 ,1,3668044,659940 ,1,3668104,660395 ,1,3668208,661210 ,1,3668296,661910 ,1,3668368,662515 ,1,3668448,663145 ,1,3668532,663805 ,1,3668596,664300 ,1,3668636,664610 ,1,3668680,664930 ,1,3668820,665995 ,2,821,375 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,3145 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,5090 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,6995 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,8560 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,9510 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,10030 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,10620 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,11165 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,13250 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,14695 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,15505 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,16230 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,18355 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,20805 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,23205 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,23255 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,23315 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,24095 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,26745 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,27380 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,29020 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,29600 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,31105 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,31645 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,33090 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,33455 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,33510 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,33560 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,35945 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,37625 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,39190 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,42440 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,42485 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,42555 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,42855 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,42965 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,45925 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,48110 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,49890 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,50945 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,58665 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,65080 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,65530 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,72955 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,79215 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,86145 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,92880 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,99725 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,107465 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,113840 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,113900 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,113965 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,114020 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,116000 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,117915 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,121940 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,125720 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,129035 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,129795 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,131685 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,132655 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,134025 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,134395 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,135305 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,135385 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,135430 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,138370 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,139400 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,140090 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,142235 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,143360 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,144540 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,145750 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,145800 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,146450 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,147665 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,150555 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,151970 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,153310 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,154380 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,157150 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,158610 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,161960 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,165610 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,166350 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,172765 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,175435 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,179590 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,183495 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,183895 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,184585 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,829,45 ,1,0,2650 ,1,1,2640 ,1,2,65 ,1,3,13320 ,1,4,13310 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,13300 ,1,9,13290 ,1,10,65 ,1,11,13280 ,1,12,13240 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,13230 ,1,17,13220 ,1,18,65 ,1,19,13210 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,13195 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,13185 ,1,33,13175 ,1,34,13165 ,1,35,65 ,1,36,13130 ,1,37,65 ,1,38,65 ,1,39,13120 ,1,40,65 ,1,41,13110 ,1,42,65 ,1,43,13100 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,13090 ,1,51,65 ,1,52,13080 ,1,53,13070 ,1,54,13060 ,1,55,13040 ,1,56,13030 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,13020 ,1,62,13010 ,1,63,12995 ,1,64,65 ,1,65,12985 ,1,66,12975 ,1,67,12965 ,1,68,12915 ,1,69,12905 ,1,70,65 ,1,71,12895 ,1,72,65 ,1,73,65 ,1,74,65 ,1,75,12885 ,1,76,12875 ,1,77,12865 ,1,78,12855 ,1,79,12845 ,1,80,12815 ,1,81,12805 ,1,82,12795 ,1,83,65 ,1,84,12785 ,1,85,65 ,1,86,65 ,1,87,12770 ,1,88,65 ,1,89,65 ,1,90,65 ,1,91,65 ,1,92,65 ,1,93,65 ,1,94,65 ,1,95,65 ,1,96,12760 ,1,97,12750 ,1,98,65 ,1,99,65 ,1,100,65 ,1,101,65 ,1,102,12740 ,1,103,65 ,1,104,12715 ,1,105,65 ,1,106,65 ,1,107,65 ,1,108,65 ,1,109,65 ,1,110,65 ,1,111,65 ,1,112,65 ,1,113,12705 ,1,114,65 ,1,115,12695 ,1,116,65 ,1,117,65 ,1,118,65 ,1,119,65 ,1,120,12685 ,1,121,65 ,1,122,12675 ,1,123,12665 ,1,124,65 ,1,125,65 ,1,126,12655 ,1,127,12645 ,1,128,65 ,1,129,65 ,1,130,12615 ,1,131,65 ,1,132,65 ,1,133,65 ,1,134,65 ,1,135,12605 ,1,136,65 ,1,137,65 ,1,138,65 ,1,139,65 ,1,140,65 ,1,141,65 ,1,142,12595 ,1,143,12585 ,1,144,65 ,1,145,65 ,1,146,65 ,1,147,12575 ,1,148,12565 ,1,149,65 ,1,150,65 ,1,151,65 ,1,152,65 ,1,153,65 ,1,154,65 ,1,155,65 ,1,156,65 ,1,157,12555 ,1,158,12545 ,1,159,12505 ,1,160,65 ,1,161,65 ,1,162,12495 ,1,163,65 ,1,164,65 ,1,165,12485 ,1,166,65 ,1,167,65 ,1,168,65 ,1,169,12475 ,1,170,12465 ,1,171,12455 ,1,172,12445 ,1,173,65 ,1,174,12435 ,1,175,12395 ,1,176,65 ,1,177,65 ,1,178,65 ,1,179,65 ,1,180,65 ,1,181,65 ,1,182,12385 ,1,183,12375 ,1,184,12365 ,1,185,65 ,1,186,65 ,1,187,65 ,1,188,65 ,1,189,12355 ,1,190,12345 ,1,191,12335 ,1,192,12325 ,1,193,65 ,1,194,65 ,1,195,12295 ,1,196,12285 ,1,197,65 ,1,198,12275 ,1,199,12265 ,1,200,65 ,1,201,65 ,1,202,65 ,1,203,12255 ,1,204,12245 ,1,205,65 ,1,206,12235 ,1,207,65 ,1,208,12225 ,1,209,12210 ,1,210,65 ,1,211,12200 ,1,212,65 ,1,213,12190 ,1,214,65 ,1,215,65 ,1,216,65 ,1,217,65 ,1,218,65 ,1,219,65 ,1,220,65 ,1,221,65 ,1,222,65 ,1,223,12180 ,1,224,12165 ,1,225,65 ,1,226,12155 ,1,227,65 ,1,228,65 ,1,229,65 ,1,230,12145 ,1,231,12135 ,1,232,65 ,1,233,12080 ,1,234,12070 ,1,235,12060 ,1,236,12050 ,1,237,12035 ,1,238,65 ,1,239,65 ,1,240,65 ,1,241,12025 ,1,242,65 ,1,243,65 ,1,244,65 ,1,245,65 ,1,246,12015 ,1,247,65 ,1,248,12005 ,1,249,11975 ,1,250,11965 ,1,251,11955 ,1,252,11945 ,1,253,11930 ,1,254,11920 ,1,255,11910 ,1,256,65 ,1,257,65 ,1,258,65 ,1,259,65 ,1,260,65 ,1,261,65 ,1,262,65 ,1,263,65 ,1,264,65 ,1,265,65 ,1,266,11900 ,1,267,65 ,1,268,11845 ,1,269,65 ,1,270,65 ,1,271,65 ,1,272,11835 ,1,273,65 ,1,274,65 ,1,275,65 ,1,276,65 ,1,277,65 ,1,278,65 ,1,279,65 ,1,280,65 ,1,281,65 ,1,282,65 ,1,283,65 ,1,284,11825 ,1,285,65 ,1,286,65 ,1,287,65 ,1,288,65 ,1,289,65 ,1,290,11815 ,1,291,65 ,1,292,11805 ,1,293,65 ,1,294,65 ,1,295,65 ,1,296,11795 ,1,297,11785 ,1,298,65 ,1,299,11775 ,1,300,65 ,1,301,65 ,1,302,65 ,1,303,65 ,1,304,65 ,1,305,11745 ,1,306,65 ,1,307,65 ,1,308,65 ,1,309,65 ,1,310,11735 ,1,311,11725 ,1,312,11715 ,1,313,11700 ,1,314,65 ,1,315,11690 ,1,316,65 ,1,317,11680 ,1,318,11670 ,1,319,65 ,1,320,65 ,1,321,65 ,1,322,11625 ,1,323,65 ,1,324,11615 ,1,325,11605 ,1,326,65 ,1,327,65 ,1,328,65 ,1,329,65 ,1,330,11595 ,1,331,11570 ,1,332,11560 ,1,333,65 ,1,334,11550 ,1,335,65 ,1,336,11540 ,1,337,65 ,1,338,65 ,1,339,65 ,1,340,65 ,1,341,11510 ,1,342,11500 ,1,343,65 ,1,344,11490 ,1,345,65 ,1,346,65 ,1,347,65 ,1,348,11480 ,1,349,65 ,1,350,65 ,1,351,65 ,1,352,65 ,1,353,65 ,1,354,65 ,1,355,11470 ,1,356,65 ,1,357,11460 ,1,358,11450 ,1,359,11440 ,1,360,65 ,1,361,11415 ,1,362,65 ,1,363,65 ,1,364,65 ,1,365,11405 ,1,366,65 ,1,367,11395 ,1,368,65 ,1,369,65 ,1,370,11385 ,1,371,65 ,1,372,11370 ,1,373,11360 ,1,374,65 ,1,375,11350 ,1,376,11340 ,1,377,65 ,1,378,65 ,1,379,65 ,1,380,65 ,1,381,65 ,1,382,65 ,1,383,65 ,1,384,11315 ,1,385,11305 ,1,386,65 ,1,387,11295 ,1,388,65 ,1,389,65 ,1,390,11285 ,1,391,11275 ,1,392,11265 ,1,393,11255 ,1,394,65 ,1,395,11245 ,1,396,11200 ,1,397,11190 ,1,398,11180 ,1,399,65 ,1,400,65 ,1,401,11170 ,1,402,11155 ,1,403,11145 ,1,404,11135 ,1,405,65 ,1,406,65 ,1,407,11125 ,1,408,65 ,1,409,65 ,1,410,65 ,1,411,11095 ,1,412,65 ,1,413,11085 ,1,414,65 ,1,415,65 ,1,416,11075 ,1,417,65 ,1,418,65 ,1,419,65 ,1,420,65 ,1,421,11065 ,1,422,65 ,1,423,65 ,1,424,65 ,1,425,65 ,1,426,65 ,1,427,65 ,1,428,65 ,1,429,65 ,1,430,65 ,1,431,65 ,1,432,11045 ,1,433,11035 ,1,434,65 ,1,435,65 ,1,436,65 ,1,437,65 ,1,438,65 ,1,439,11025 ,1,440,11015 ,1,441,65 ,1,442,10965 ,1,443,65 ,1,444,10955 ,1,445,65 ,1,446,65 ,1,447,10945 ,1,448,65 ,1,449,10935 ,1,450,10925 ,1,451,65 ,1,452,65 ,1,453,10915 ,1,454,65 ,1,455,65 ,1,456,65 ,1,457,65 ,1,458,65 ,1,459,65 ,1,460,65 ,1,461,65 ,1,462,65 ,1,463,65 ,1,464,10905 ,1,465,10895 ,1,466,65 ,1,467,10875 ,1,468,65 ,1,469,65 ,1,470,65 ,1,471,10865 ,1,472,65 ,1,473,10855 ,1,474,65 ,1,475,10845 ,1,476,65 ,1,477,65 ,1,478,10835 ,1,479,10825 ,1,480,10815 ,1,481,65 ,1,482,65 ,1,483,65 ,1,484,10805 ,1,485,10770 ,1,486,10760 ,1,487,10750 ,1,488,65 ,1,489,65 ,1,490,65 ,1,491,10740 ,1,492,10725 ,1,493,65 ,1,494,10715 ,1,495,10705 ,1,496,65 ,1,497,10695 ,1,498,65 ,1,499,10665 ,1,500,65 ,1,501,65 ,1,502,10655 ,1,503,65 ,1,504,65 ,1,505,65 ,1,506,65 ,1,507,10645 ,1,508,10635 ,1,509,10610 ,1,510,65 ,1,511,10600 ,1,512,10590 ,1,513,65 ,1,514,10580 ,1,515,10550 ,1,516,65 ,1,517,65 ,1,518,65 ,1,519,65 ,1,520,10540 ,1,521,65 ,1,522,65 ,1,523,10530 ,1,524,10520 ,1,525,10510 ,1,526,65 ,1,527,65 ,1,528,10500 ,1,529,65 ,1,530,10490 ,1,531,10480 ,1,532,65 ,1,533,65 ,1,534,65 ,1,535,65 ,1,536,65 ,1,537,65 ,1,538,65 ,1,539,10445 ,1,540,10435 ,1,541,65 ,1,542,65 ,1,543,65 ,1,544,10425 ,1,545,65 ,1,546,65 ,1,547,65 ,1,548,10415 ,1,549,10395 ,1,550,65 ,1,551,10385 ,1,552,10375 ,1,553,65 ,1,554,10365 ,1,555,10345 ,1,556,10335 ,1,557,65 ,1,558,65 ,1,559,65 ,1,560,10325 ,1,561,65 ,1,562,65 ,1,563,65 ,1,564,65 ,1,565,10315 ,1,566,65 ,1,567,65 ,1,568,65 ,1,569,10305 ,1,570,10295 ,1,571,65 ,1,572,65 ,1,573,65 ,1,574,65 ,1,575,65 ,1,576,65 ,1,577,65 ,1,578,65 ,1,579,65 ,1,580,65 ,1,581,65 ,1,582,65 ,1,583,65 ,1,584,65 ,1,585,10285 ,1,586,10275 ,1,587,10230 ,1,588,65 ,1,589,10220 ,1,590,65 ,1,591,65 ,1,592,65 ,1,593,65 ,1,594,65 ,1,595,65 ,1,596,65 ,1,597,65 ,1,598,65 ,1,599,10210 ,1,600,10200 ,1,601,10190 ,1,602,10180 ,1,603,10170 ,1,604,10160 ,1,605,65 ,1,606,10130 ,1,607,65 ,1,608,10120 ,1,609,10110 ,1,610,65 ,1,611,65 ,1,612,10100 ,1,613,10080 ,1,614,10070 ,1,615,10060 ,1,616,65 ,1,617,10050 ,1,618,10020 ,1,619,65 ,1,620,10010 ,1,621,65 ,1,622,10000 ,1,623,65 ,1,624,9990 ,1,625,65 ,1,626,65 ,1,627,65 ,1,628,65 ,1,629,65 ,1,630,65 ,1,631,65 ,1,632,9980 ,1,633,9970 ,1,634,9960 ,1,635,65 ,1,636,65 ,1,637,65 ,1,638,65 ,1,639,65 ,1,640,65 ,1,641,9950 ,1,642,65 ,1,643,65 ,1,644,65 ,1,645,65 ,1,646,65 ,1,647,9920 ,1,648,65 ,1,649,65 ,1,650,9910 ,1,651,9900 ,1,652,9890 ,1,653,65 ,1,654,65 ,1,655,65 ,1,656,9880 ,1,657,9870 ,1,658,9860 ,1,659,9850 ,1,660,9805 ,1,661,9795 ,1,662,9785 ,1,663,65 ,1,664,9775 ,1,665,65 ,1,666,65 ,1,667,65 ,1,668,65 ,1,669,65 ,1,670,9760 ,1,671,65 ,1,672,65 ,1,673,65 ,1,674,9750 ,1,675,9740 ,1,676,9730 ,1,677,9700 ,1,678,9690 ,1,679,65 ,1,680,9680 ,1,681,9670 ,1,682,65 ,1,683,65 ,1,684,9660 ,1,685,9650 ,1,686,65 ,1,687,9640 ,1,688,9630 ,1,689,65 ,1,690,9605 ,1,691,65 ,1,692,65 ,1,693,9595 ,1,694,9585 ,1,695,65 ,1,696,65 ,1,697,65 ,1,698,65 ,1,699,65 ,1,700,9575 ,1,701,65 ,1,702,65 ,1,703,65 ,1,704,65 ,1,705,65 ,1,706,9565 ,1,707,65 ,1,708,65 ,1,709,65 ,1,710,65 ,1,711,65 ,1,712,65 ,1,713,65 ,1,714,65 ,1,715,9555 ,1,716,65 ,1,717,65 ,1,718,9545 ,1,719,65 ,1,720,9535 ,1,721,9500 ,1,722,65 ,1,723,65 ,1,724,9490 ,1,725,65 ,1,726,9480 ,1,727,9470 ,1,728,9455 ,1,729,65 ,1,730,9445 ,1,731,65 ,1,732,65 ,1,733,9435 ,1,734,65 ,1,735,65 ,1,736,9425 ,1,737,9405 ,1,738,65 ,1,739,65 ,1,740,65 ,1,741,9395 ,1,742,9385 ,1,743,9375 ,1,744,65 ,1,745,65 ,1,746,65 ,1,747,65 ,1,748,65 ,1,749,65 ,1,750,9365 ,1,751,9355 ,1,752,9345 ,1,753,9335 ,1,754,9295 ,1,755,9285 ,1,756,65 ,1,757,65 ,1,758,65 ,1,759,65 ,1,760,9275 ,1,761,65 ,1,762,65 ,1,763,65 ,1,764,65 ,1,765,9265 ,1,766,65 ,1,767,65 ,1,768,65 ,1,769,65 ,1,770,65 ,1,771,9255 ,1,772,65 ,1,773,9245 ,1,774,65 ,1,775,65 ,1,776,9235 ,1,777,65 ,1,778,9225 ,1,779,65 ,1,780,9190 ,1,781,9180 ,1,782,9170 ,1,783,9160 ,1,784,65 ,1,785,9150 ,1,786,65 ,1,787,9140 ,1,788,9130 ,1,789,65 ,1,790,9120 ,1,791,65 ,1,792,9090 ,1,793,9080 ,1,794,65 ,1,795,65 ,1,796,65 ,1,797,65 ,1,798,65 ,1,799,65 ,1,800,65 ,1,801,65 ,1,802,65 ,1,803,9070 ,1,804,65 ,1,805,65 ,1,806,9060 ,1,807,65 ,1,808,65 ,1,809,65 ,1,810,65 ,1,811,65 ,1,812,65 ,1,813,65 ,1,814,65 ,1,815,65 ,1,816,65 ,1,817,65 ,1,818,9045 ,1,819,9035 ,1,820,9025 ,1,821,65 ,1,822,65 ,1,823,65 ,1,824,9015 ,1,825,65 ,1,826,65 ,1,827,65 ,1,828,65 ,1,829,65 ,1,830,65 ,1,831,65 ,1,832,9000 ,1,833,8990 ,1,834,8980 ,1,835,65 ,1,836,8970 ,1,837,8960 ,1,838,65 ,1,839,65 ,1,840,8950 ,1,841,8940 ,1,842,65 ,1,843,65 ,1,844,8930 ,1,845,65 ,1,846,8885 ,1,847,8875 ,1,848,65 ,1,849,8865 ,1,850,65 ,1,851,65 ,1,852,65 ,1,853,65 ,1,854,8855 ,1,855,8830 ,1,856,65 ,1,857,8820 ,1,858,65 ,1,859,8810 ,1,860,8800 ,1,861,65 ,1,862,8770 ,1,863,65 ,1,864,65 ,1,865,8760 ,1,866,65 ,1,867,65 ,1,868,65 ,1,869,65 ,1,870,65 ,1,871,8750 ,1,872,65 ,1,873,65 ,1,874,65 ,1,875,65 ,1,876,65 ,1,877,65 ,1,878,65 ,1,879,65 ,1,880,65 ,1,881,8740 ,1,882,65 ,1,883,65 ,1,884,65 ,1,885,8725 ,1,886,8715 ,1,887,65 ,1,888,8705 ,1,889,65 ,1,890,8695 ,1,891,65 ,1,892,65 ,1,893,65 ,1,894,65 ,1,895,8675 ,1,896,65 ,1,897,65 ,1,898,65 ,1,899,65 ,1,900,8665 ,1,901,65 ,1,902,65 ,1,903,65 ,1,904,65 ,1,905,8655 ,1,906,8645 ,1,907,65 ,1,908,8625 ,1,909,8615 ,1,910,8605 ,1,911,8595 ,1,912,65 ,1,913,65 ,1,914,65 ,1,915,8550 ,1,916,8540 ,1,917,8530 ,1,918,8520 ,1,919,65 ,1,920,65 ,1,921,8505 ,1,922,65 ,1,923,65 ,1,924,8495 ,1,925,8485 ,1,926,65 ,1,927,65 ,1,928,8475 ,1,929,65 ,1,930,65 ,1,931,8450 ,1,932,8440 ,1,933,65 ,1,934,8430 ,1,935,8420 ,1,936,65 ,1,937,65 ,1,938,65 ,1,939,8400 ,1,940,65 ,1,941,65 ,1,942,65 ,1,943,65 ,1,944,65 ,1,945,8390 ,1,946,65 ,1,947,8380 ,1,948,8370 ,1,949,8345 ,1,950,65 ,1,951,65 ,1,952,8335 ,1,953,8325 ,1,954,8315 ,1,955,65 ,1,956,65 ,1,957,8305 ,1,958,65 ,1,959,65 ,1,960,65 ,1,961,65 ,1,962,65 ,1,963,8295 ,1,964,8285 ,1,965,65 ,1,966,65 ,1,967,8275 ,1,968,65 ,1,969,8240 ,1,970,65 ,1,971,8230 ,1,972,8220 ,1,973,65 ,1,974,65 ,1,975,65 ,1,976,8210 ,1,977,65 ,1,978,8200 ,1,979,65 ,1,980,8190 ,1,981,8180 ,1,982,65 ,1,983,8170 ,1,984,65 ,1,985,65 ,1,986,8145 ,1,987,65 ,1,988,65 ,1,989,65 ,1,990,65 ,1,991,65 ,1,992,8135 ,1,993,65 ,1,994,65 ,1,995,65 ,1,996,8125 ,1,997,8115 ,1,998,65 ,1,999,65 ,1,1000,65 ,1,1001,65 ,1,1002,8095 ,1,1003,8085 ,1,1004,65 ,1,1005,8075 ,1,1006,65 ,1,1007,65 ,1,1008,65 ,1,1009,65 ,1,1010,8065 ,1,1011,8030 ,1,1012,65 ,1,1013,65 ,1,1014,65 ,1,1015,8020 ,1,1016,8010 ,1,1017,65 ,1,1018,65 ,1,1019,65 ,1,1020,65 ,1,1021,8000 ,1,1022,65 ,1,1023,65 ,1,1024,7990 ,1,1025,65 ,1,1026,65 ,1,1027,65 ,1,1028,65 ,1,1029,65 ,1,1030,7980 ,1,1031,65 ,1,1032,65 ,1,1033,65 ,1,1034,7970 ,1,1035,65 ,1,1036,65 ,1,1037,7960 ,1,1038,7920 ,1,1039,65 ,1,1040,7910 ,1,1041,65 ,1,1042,65 ,1,1043,65 ,1,1044,7900 ,1,1045,7890 ,1,1046,65 ,1,1047,65 ,1,1048,65 ,1,1049,65 ,1,1050,65 ,1,1051,65 ,1,1052,65 ,1,1053,7880 ,1,1054,65 ,1,1055,7870 ,1,1056,65 ,1,1057,7860 ,1,1058,7850 ,1,1059,65 ,1,1060,65 ,1,1061,7805 ,1,1062,7795 ,1,1063,7785 ,1,1064,65 ,1,1065,65 ,1,1066,65 ,1,1067,7775 ,1,1068,7765 ,1,1069,7755 ,1,1070,65 ,1,1071,7745 ,1,1072,65 ,1,1073,65 ,1,1074,65 ,1,1075,7735 ,1,1076,7695 ,1,1077,7685 ,1,1078,7675 ,1,1079,7665 ,1,1080,7650 ,1,1081,7640 ,1,1082,65 ,1,1083,7630 ,1,1084,7620 ,1,1085,65 ,1,1086,65 ,1,1087,65 ,1,1088,65 ,1,1089,7595 ,1,1090,65 ,1,1091,65 ,1,1092,7585 ,1,1093,65 ,1,1094,65 ,1,1095,7575 ,1,1096,65 ,1,1097,65 ,1,1098,7565 ,1,1099,65 ,1,1100,7540 ,1,1101,7530 ,1,1102,7520 ,1,1103,7510 ,1,1104,65 ,1,1105,65 ,1,1106,65 ,1,1107,65 ,1,1108,7470 ,1,1109,7460 ,1,1110,7450 ,1,1111,65 ,1,1112,7440 ,1,1113,7430 ,1,1114,65 ,1,1115,7420 ,1,1116,65 ,1,1117,65 ,1,1118,65 ,1,1119,7410 ,1,1120,65 ,1,1121,65 ,1,1122,7400 ,1,1123,7365 ,1,1124,65 ,1,1125,65 ,1,1126,7355 ,1,1127,7345 ,1,1128,7335 ,1,1129,65 ,1,1130,7320 ,1,1131,7310 ,1,1132,65 ,1,1133,7300 ,1,1134,65 ,1,1135,65 ,1,1136,65 ,1,1137,65 ,1,1138,65 ,1,1139,65 ,1,1140,65 ,1,1141,7290 ,1,1142,7260 ,1,1143,65 ,1,1144,65 ,1,1145,65 ,1,1146,65 ,1,1147,65 ,1,1148,65 ,1,1149,65 ,1,1150,65 ,1,1151,65 ,1,1152,65 ,1,1153,65 ,1,1154,65 ,1,1155,7250 ,1,1156,65 ,1,1157,65 ,1,1158,65 ,1,1159,65 ,1,1160,65 ,1,1161,65 ,1,1162,7240 ,1,1163,65 ,1,1164,7230 ,1,1165,65 ,1,1166,65 ,1,1167,65 ,1,1168,65 ,1,1169,65 ,1,1170,65 ,1,1171,65 ,1,1172,65 ,1,1173,7210 ,1,1174,7200 ,1,1175,65 ,1,1176,65 ,1,1177,65 ,1,1178,65 ,1,1179,65 ,1,1180,65 ,1,1181,7190 ,1,1182,65 ,1,1183,7180 ,1,1184,7150 ,1,1185,65 ,1,1186,7140 ,1,1187,65 ,1,1188,7130 ,1,1189,7120 ,1,1190,65 ,1,1191,65 ,1,1192,7110 ,1,1193,65 ,1,1194,7100 ,1,1195,65 ,1,1196,65 ,1,1197,65 ,1,1198,7090 ,1,1199,7080 ,1,1200,7045 ,1,1201,65 ,1,1202,7035 ,1,1203,7025 ,1,1204,7015 ,1,1205,6985 ,1,1206,65 ,1,1207,65 ,1,1208,6975 ,1,1209,6965 ,1,1210,6955 ,1,1211,65 ,1,1212,65 ,1,1213,6930 ,1,1214,65 ,1,1215,65 ,1,1216,65 ,1,1217,65 ,1,1218,6920 ,1,1219,6910 ,1,1220,6900 ,1,1221,6880 ,1,1222,65 ,1,1223,65 ,1,1224,6870 ,1,1225,6860 ,1,1226,65 ,1,1227,6850 ,1,1228,65 ,1,1229,65 ,1,1230,6810 ,1,1231,6800 ,1,1232,65 ,1,1233,65 ,1,1234,65 ,1,1235,65 ,1,1236,65 ,1,1237,65 ,1,1238,65 ,1,1239,6790 ,1,1240,6780 ,1,1241,65 ,1,1242,65 ,1,1243,65 ,1,1244,65 ,1,1245,6770 ,1,1246,6760 ,1,1247,65 ,1,1248,6750 ,1,1249,65 ,1,1250,65 ,1,1251,6740 ,1,1252,65 ,1,1253,6690 ,1,1254,65 ,1,1255,6680 ,1,1256,6670 ,1,1257,65 ,1,1258,65 ,1,1259,6660 ,1,1260,65 ,1,1261,65 ,1,1262,6650 ,1,1263,6640 ,1,1264,6630 ,1,1265,65 ,1,1266,6620 ,1,1267,65 ,1,1268,6605 ,1,1269,65 ,1,1270,65 ,1,1271,6595 ,1,1272,65 ,1,1273,65 ,1,1274,6585 ,1,1275,6575 ,1,1276,65 ,1,1277,65 ,1,1278,65 ,1,1279,65 ,1,1280,65 ,1,1281,6550 ,1,1282,6540 ,1,1283,6530 ,1,1284,65 ,1,1285,65 ,1,1286,65 ,1,1287,65 ,1,1288,65 ,1,1289,65 ,1,1290,65 ,1,1291,65 ,1,1292,65 ,1,1293,6520 ,1,1294,65 ,1,1295,65 ,1,1296,6470 ,1,1297,6460 ,1,1298,6450 ,1,1299,6440 ,1,1300,6430 ,1,1301,6420 ,1,1302,65 ,1,1303,65 ,1,1304,65 ,1,1305,6410 ,1,1306,6400 ,1,1307,65 ,1,1308,65 ,1,1309,6385 ,1,1310,65 ,1,1311,65 ,1,1312,6375 ,1,1313,65 ,1,1314,6365 ,1,1315,65 ,1,1316,6355 ,1,1317,6345 ,1,1318,6335 ,1,1319,65 ,1,1320,6325 ,1,1321,6315 ,1,1322,65 ,1,1323,6275 ,1,1324,65 ,1,1325,6265 ,1,1326,6255 ,1,1327,6245 ,1,1328,6235 ,1,1329,65 ,1,1330,65 ,1,1331,65 ,1,1332,6225 ,1,1333,6215 ,1,1334,65 ,1,1335,6205 ,1,1336,65 ,1,1337,65 ,1,1338,65 ,1,1339,6145 ,1,1340,6135 ,1,1341,6125 ,1,1342,6115 ,1,1343,65 ,1,1344,65 ,1,1345,6105 ,1,1346,65 ,1,1347,65 ,1,1348,6095 ,1,1349,6085 ,1,1350,6075 ,1,1351,6055 ,1,1352,6045 ,1,1353,6035 ,1,1354,6025 ,1,1355,6015 ,1,1356,6005 ,1,1357,5995 ,1,1358,65 ,1,1359,5985 ,1,1360,65 ,1,1361,65 ,1,1362,65 ,1,1363,5955 ,1,1364,65 ,1,1365,65 ,1,1366,65 ,1,1367,5945 ,1,1368,5935 ,1,1369,65 ,1,1370,5925 ,1,1371,5910 ,1,1372,65 ,1,1373,5900 ,1,1374,5890 ,1,1375,5880 ,1,1376,65 ,1,1377,65 ,1,1378,65 ,1,1379,65 ,1,1380,65 ,1,1381,65 ,1,1382,65 ,1,1383,5855 ,1,1384,65 ,1,1385,65 ,1,1386,5845 ,1,1387,5835 ,1,1388,65 ,1,1389,65 ,1,1390,65 ,1,1391,5825 ,1,1392,5815 ,1,1393,65 ,1,1394,65 ,1,1395,65 ,1,1396,5805 ,1,1397,5795 ,1,1398,65 ,1,1399,5785 ,1,1400,5760 ,1,1401,65 ,1,1402,65 ,1,1403,5750 ,1,1404,65 ,1,1405,65 ,1,1406,65 ,1,1407,65 ,1,1408,65 ,1,1409,5740 ,1,1410,5730 ,1,1411,65 ,1,1412,5710 ,1,1413,65 ,1,1414,5700 ,1,1415,65 ,1,1416,65 ,1,1417,5690 ,1,1418,65 ,1,1419,65 ,1,1420,5680 ,1,1421,65 ,1,1422,5655 ,1,1423,65 ,1,1424,65 ,1,1425,65 ,1,1426,65 ,1,1427,65 ,1,1428,65 ,1,1429,5645 ,1,1430,65 ,1,1431,65 ,1,1432,65 ,1,1433,65 ,1,1434,65 ,1,1435,65 ,1,1436,5635 ,1,1437,65 ,1,1438,65 ,1,1439,65 ,1,1440,65 ,1,1441,65 ,1,1442,5625 ,1,1443,65 ,1,1444,65 ,1,1445,65 ,1,1446,5610 ,1,1447,65 ,1,1448,65 ,1,1449,65 ,1,1450,65 ,1,1451,65 ,1,1452,65 ,1,1453,65 ,1,1454,65 ,1,1455,65 ,1,1456,65 ,1,1457,65 ,1,1458,65 ,1,1459,65 ,1,1460,5600 ,1,1461,65 ,1,1462,65 ,1,1463,5590 ,1,1464,65 ,1,1465,65 ,1,1466,5580 ,1,1467,5540 ,1,1468,5530 ,1,1469,5520 ,1,1470,65 ,1,1471,65 ,1,1472,65 ,1,1473,65 ,1,1474,65 ,1,1475,5510 ,1,1476,65 ,1,1477,65 ,1,1478,5500 ,1,1479,65 ,1,1480,5490 ,1,1481,65 ,1,1482,5480 ,1,1483,5470 ,1,1484,5430 ,1,1485,65 ,1,1486,65 ,1,1487,65 ,1,1488,65 ,1,1489,65 ,1,1490,65 ,1,1491,65 ,1,1492,65 ,1,1493,65 ,1,1494,5420 ,1,1495,5410 ,1,1496,65 ,1,1497,5400 ,1,1498,5390 ,1,1499,65 ,1,1500,5380 ,1,1501,65 ,1,1502,65 ,1,1503,65 ,1,1504,65 ,1,1505,65 ,1,1506,65 ,1,1507,65 ,1,1508,65 ,1,1509,65 ,1,1510,65 ,1,1511,5370 ,1,1512,65 ,1,1513,5360 ,1,1514,65 ,1,1515,5340 ,1,1516,5330 ,1,1517,65 ,1,1518,5320 ,1,1519,5310 ,1,1520,5295 ,1,1521,5285 ,1,1522,5275 ,1,1523,5265 ,1,1524,5240 ,1,1525,65 ,1,1526,5230 ,1,1527,5220 ,1,1528,65 ,1,1529,5210 ,1,1530,5195 ,1,1531,65 ,1,1532,65 ,1,1533,5185 ,1,1534,5175 ,1,1535,65 ,1,1536,5165 ,1,1537,65 ,1,1538,65 ,1,1539,65 ,1,1540,65 ,1,1541,65 ,1,1542,65 ,1,1543,65 ,1,1544,65 ,1,1545,65 ,1,1546,65 ,1,1547,5125 ,1,1548,5115 ,1,1549,65 ,1,1550,65 ,1,1551,65 ,1,1552,65 ,1,1553,5105 ,1,1554,65 ,1,1555,65 ,1,1556,65 ,1,1557,65 ,1,1558,65 ,1,1559,65 ,1,1560,65 ,1,1561,5095 ,1,1562,65 ,1,1563,65 ,1,1564,65 ,1,1565,5080 ,1,1566,65 ,1,1567,65 ,1,1568,5070 ,1,1569,65 ,1,1570,65 ,1,1571,65 ,1,1572,65 ,1,1573,65 ,1,1574,65 ,1,1575,65 ,1,1576,65 ,1,1577,65 ,1,1578,5060 ,1,1579,5050 ,1,1580,5025 ,1,1581,65 ,1,1582,65 ,1,1583,65 ,1,1584,5015 ,1,1585,5005 ,1,1586,65 ,1,1587,65 ,1,1588,65 ,1,1589,65 ,1,1590,4995 ,1,1591,4980 ,1,1592,65 ,1,1593,65 ,1,1594,65 ,1,1595,65 ,1,1596,65 ,1,1597,65 ,1,1598,65 ,1,1599,4970 ,1,1600,65 ,1,1601,65 ,1,1602,4960 ,1,1603,65 ,1,1604,4950 ,1,1605,4890 ,1,1606,65 ,1,1607,4880 ,1,1608,4870 ,1,1609,4860 ,1,1610,65 ,1,1611,4845 ,1,1612,65 ,1,1613,4835 ,1,1614,4825 ,1,1615,4815 ,1,1616,65 ,1,1617,65 ,1,1618,4785 ,1,1619,4775 ,1,1620,65 ,1,1621,65 ,1,1622,65 ,1,1623,4765 ,1,1624,4755 ,1,1625,65 ,1,1626,65 ,1,1627,65 ,1,1628,65 ,1,1629,65 ,1,1630,4745 ,1,1631,65 ,1,1632,4735 ,1,1633,65 ,1,1634,65 ,1,1635,65 ,1,1636,65 ,1,1637,65 ,1,1638,4725 ,1,1639,4715 ,1,1640,4685 ,1,1641,65 ,1,1642,65 ,1,1643,65 ,1,1644,65 ,1,1645,65 ,1,1646,65 ,1,1647,4675 ,1,1648,65 ,1,1649,65 ,1,1650,65 ,1,1651,65 ,1,1652,4665 ,1,1653,4655 ,1,1654,65 ,1,1655,4640 ,1,1656,65 ,1,1657,65 ,1,1658,65 ,1,1659,65 ,1,1660,4630 ,1,1661,4620 ,1,1662,65 ,1,1663,65 ,1,1664,65 ,1,1665,4610 ,1,1666,65 ,1,1667,65 ,1,1668,4565 ,1,1669,65 ,1,1670,65 ,1,1671,4555 ,1,1672,4545 ,1,1673,65 ,1,1674,4535 ,1,1675,4520 ,1,1676,65 ,1,1677,4510 ,1,1678,65 ,1,1679,4500 ,1,1680,65 ,1,1681,65 ,1,1682,4490 ,1,1683,65 ,1,1684,65 ,1,1685,65 ,1,1686,65 ,1,1687,65 ,1,1688,65 ,1,1689,4470 ,1,1690,65 ,1,1691,65 ,1,1692,65 ,1,1693,4460 ,1,1694,65 ,1,1695,65 ,1,1696,4450 ,1,1697,4440 ,1,1698,4430 ,1,1699,65 ,1,1700,65 ,1,1701,4420 ,1,1702,4410 ,1,1703,65 ,1,1704,65 ,1,1705,65 ,1,1706,4400 ,1,1707,4370 ,1,1708,65 ,1,1709,4360 ,1,1710,65 ,1,1711,65 ,1,1712,65 ,1,1713,4350 ,1,1714,65 ,1,1715,65 ,1,1716,4340 ,1,1717,65 ,1,1718,4325 ,1,1719,65 ,1,1720,4315 ,1,1721,4305 ,1,1722,4295 ,1,1723,65 ,1,1724,4225 ,1,1725,4215 ,1,1726,4205 ,1,1727,65 ,1,1728,65 ,1,1729,65 ,1,1730,4195 ,1,1731,65 ,1,1732,65 ,1,1733,65 ,1,1734,65 ,1,1735,4185 ,1,1736,65 ,1,1737,65 ,1,1738,65 ,1,1739,65 ,1,1740,4175 ,1,1741,4165 ,1,1742,65 ,1,1743,4155 ,1,1744,4130 ,1,1745,4120 ,1,1746,65 ,1,1747,65 ,1,1748,65 ,1,1749,65 ,1,1750,4110 ,1,1751,4100 ,1,1752,65 ,1,1753,4085 ,1,1754,65 ,1,1755,65 ,1,1756,65 ,1,1757,4075 ,1,1758,4065 ,1,1759,4055 ,1,1760,65 ,1,1761,4045 ,1,1762,4035 ,1,1763,65 ,1,1764,65 ,1,1765,4025 ,1,1766,4015 ,1,1767,4000 ,1,1768,3990 ,1,1769,65 ,1,1770,65 ,1,1771,65 ,1,1772,65 ,1,1773,3980 ,1,1774,65 ,1,1775,65 ,1,1776,65 ,1,1777,65 ,1,1778,3970 ,1,1779,65 ,1,1780,65 ,1,1781,65 ,1,1782,3925 ,1,1783,65 ,1,1784,65 ,1,1785,65 ,1,1786,65 ,1,1787,65 ,1,1788,3915 ,1,1789,3905 ,1,1790,65 ,1,1791,65 ,1,1792,3895 ,1,1793,65 ,1,1794,65 ,1,1795,3880 ,1,1796,65 ,1,1797,65 ,1,1798,3870 ,1,1799,3860 ,1,1800,65 ,1,1801,3850 ,1,1802,65 ,1,1803,65 ,1,1804,65 ,1,1805,65 ,1,1806,65 ,1,1807,65 ,1,1808,65 ,1,1809,65 ,1,1810,65 ,1,1811,65 ,1,1812,65 ,1,1813,65 ,1,1814,3825 ,1,1815,3815 ,1,1816,65 ,1,1817,65 ,1,1818,65 ,1,1819,65 ,1,1820,3805 ,1,1821,65 ,1,1822,65 ,1,1823,3795 ,1,1824,3780 ,1,1825,3770 ,1,1826,65 ,1,1827,65 ,1,1828,65 ,1,1829,65 ,1,1830,3760 ,1,1831,3750 ,1,1832,65 ,1,1833,65 ,1,1834,65 ,1,1835,65 ,1,1836,65 ,1,1837,65 ,1,1838,65 ,1,1839,3725 ,1,1840,3715 ,1,1841,3705 ,1,1842,3695 ,1,1843,3685 ,1,1844,3675 ,1,1845,65 ,1,1846,65 ,1,1847,3665 ,1,1848,65 ,1,1849,3655 ,1,1850,65 ,1,1851,65 ,1,1852,3620 ,1,1853,3610 ,1,1854,65 ,1,1855,65 ,1,1856,3600 ,1,1857,3590 ,1,1858,65 ,1,1859,65 ,1,1860,3575 ,1,1861,65 ,1,1862,65 ,1,1863,65 ,1,1864,65 ,1,1865,65 ,1,1866,65 ,1,1867,3565 ,1,1868,65 ,1,1869,65 ,1,1870,65 ,1,1871,65 ,1,1872,65 ,1,1873,65 ,1,1874,3555 ,1,1875,65 ,1,1876,65 ,1,1877,65 ,1,1878,3545 ,1,1879,65 ,1,1880,3525 ,1,1881,65 ,1,1882,3515 ,1,1883,3505 ,1,1884,65 ,1,1885,65 ,1,1886,65 ,1,1887,65 ,1,1888,3495 ,1,1889,3475 ,1,1890,3465 ,1,1891,65 ,1,1892,65 ,1,1893,65 ,1,1894,65 ,1,1895,3455 ,1,1896,3445 ,1,1897,3400 ,1,1898,3390 ,1,1899,65 ,1,1900,65 ,1,1901,3380 ,1,1902,65 ,1,1903,3370 ,1,1904,65 ,1,1905,65 ,1,1906,65 ,1,1907,65 ,1,1908,65 ,1,1909,65 ,1,1910,3360 ,1,1911,65 ,1,1912,65 ,1,1913,65 ,1,1914,65 ,1,1915,65 ,1,1916,3350 ,1,1917,3340 ,1,1918,65 ,1,1919,65 ,1,1920,65 ,1,1921,65 ,1,1922,65 ,1,1923,65 ,1,1924,65 ,1,1925,65 ,1,1926,65 ,1,1927,65 ,1,1928,65 ,1,1929,65 ,1,1930,3330 ,1,1931,3305 ,1,1932,3295 ,1,1933,3285 ,1,1934,65 ,1,1935,65 ,1,1936,65 ,1,1937,65 ,1,1938,65 ,1,1939,65 ,1,1940,3275 ,1,1941,3255 ,1,1942,3245 ,1,1943,3235 ,1,1944,65 ,1,1945,65 ,1,1946,3225 ,1,1947,65 ,1,1948,3180 ,1,1949,3170 ,1,1950,65 ,1,1951,65 ,1,1952,65 ,1,1953,65 ,1,1954,65 ,1,1955,65 ,1,1956,65 ,1,1957,65 ,1,1958,3160 ,1,1959,65 ,1,1960,65 ,1,1961,65 ,1,1962,65 ,1,1963,65 ,1,1964,65 ,1,1965,65 ,1,1966,65 ,1,1967,3150 ,1,1968,3135 ,1,1969,65 ,1,1970,65 ,1,1971,65 ,1,1972,65 ,1,1973,65 ,1,1974,65 ,1,1975,3125 ,1,1976,65 ,1,1977,65 ,1,1978,65 ,1,1979,65 ,1,1980,65 ,1,1981,3115 ,1,1982,3105 ,1,1983,65 ,1,1984,65 ,1,1985,65 ,1,1986,3070 ,1,1987,65 ,1,1988,65 ,1,1989,65 ,1,1990,65 ,1,1991,65 ,1,1992,65 ,1,1993,65 ,1,1994,3060 ,1,1995,65 ,1,1996,65 ,1,1997,65 ,1,1998,3050 ,1,1999,3040 ,1,2000,3030 ,1,2001,3020 ,1,2002,3010 ,1,2003,3000 ,1,2004,65 ,1,2005,65 ,1,2006,65 ,1,2007,65 ,1,2008,65 ,1,2009,2980 ,1,2010,65 ,1,2011,2970 ,1,2012,65 ,1,2013,65 ,1,2014,2960 ,1,2015,2950 ,1,2016,2940 ,1,2017,2930 ,1,2018,2920 ,1,2019,65 ,1,2020,65 ,1,2021,2910 ,1,2022,65 ,1,2023,65 ,1,2024,65 ,1,2025,2875 ,1,2026,2865 ,1,2027,65 ,1,2028,2855 ,1,2029,2845 ,1,2030,65 ,1,2031,65 ,1,2032,2830 ,1,2033,2820 ,1,2034,65 ,1,2035,2810 ,1,2036,2800 ,1,2037,2765 ,1,2038,2755 ,1,2039,65 ,1,2040,2745 ,1,2041,2735 ,1,2042,65 ,1,2043,2725 ,1,2044,65 ,1,2045,65 ,1,2046,2715 ,1,2047,2705 ,1,2048,65 ,1,2049,65 ,1,0,275 ,1,0,500 ,1,0,1070 ,1,0,1280 ,1,0,1505 ,1,0,2020 ,1,0,2455 ,1,0,2660 ,1,0,2990 ,1,0,3315 ,1,0,3535 ,1,0,3735 ,1,0,3935 ,1,0,4240 ,1,0,4575 ,1,0,4905 ,1,0,5140 ,1,0,5355 ,1,0,5665 ,1,0,5970 ,1,0,6290 ,1,0,6480 ,1,0,6710 ,1,0,7165 ,1,0,7480 ,1,0,7715 ,1,0,8155 ,1,0,8355 ,1,0,8905 ,1,0,9310 ,1,0,9615 ,1,0,9930 ,1,0,10140 ,1,0,10455 ,1,0,10785 ,1,0,10980 ,1,0,11210 ,1,0,11425 ,1,0,11640 ,1,0,12090 ,1,0,12515 ,1,0,12725 ,1,0,12930 ,1,0,13140 ,1,0,13685 ,1,0,13900 ,1,0,14240 ,1,0,14640 ,1,0,14960 ,1,0,15395 ,1,0,15720 ,1,0,16370 ,1,0,16565 ,1,0,17010 ,1,0,17220 ,1,0,17630 ,1,0,18065 ,1,0,18290 ,1,0,18525 ,1,0,18940 ,1,0,19155 ,1,0,19375 ,1,0,19685 ,1,0,19905 ,1,0,20330 ,1,0,20650 ,1,0,20860 ,1,0,21175 ,1,0,21395 ,1,0,21610 ,1,0,21840 ,1,0,22040 ,1,0,22370 ,1,0,22810 ,1,0,23025 ,1,0,23380 ,1,0,23810 ,1,0,24035 ,1,0,24500 ,1,0,24940 ,1,0,25180 ,1,0,25395 ,1,0,25725 ,1,0,25935 ,1,0,26350 ,1,0,26585 ,1,0,26995 ,1,0,27210 ,1,0,27435 ,1,0,27865 ,1,0,28315 ,1,0,28765 ,1,0,29070 ,1,0,29295 ,1,0,29535 ,1,0,29970 ,1,0,30190 ,1,0,30390 ,1,0,30820 ,1,0,31160 ,1,0,31475 ,1,0,31880 ,1,0,32290 ,1,0,32505 ,1,0,32805 ,1,0,33030 ,1,0,33240 ,1,0,33460 ,1,0,33780 ,1,0,33980 ,1,0,34195 ,1,0,34505 ,1,0,34715 ,1,0,35295 ,1,0,35515 ,1,0,35825 ,1,0,36050 ,1,0,36255 ,1,0,36585 ,1,0,36905 ,1,0,37110 ,1,0,37415 ,1,0,37630 ,1,0,37840 ,1,0,38150 ,1,0,38380 ,1,0,38585 ,1,0,38895 ,1,0,39130 ,1,0,39360 ,1,0,39685 ,1,0,40120 ,1,0,40570 ,1,0,40975 ,1,0,41310 ,1,0,41725 ,1,0,42265 ,1,0,42690 ,1,0,43015 ,1,0,43335 ,1,0,43665 ,1,0,43885 ,1,0,44125 ,1,0,44330 ,1,0,44550 ,1,0,44990 ,1,0,45190 ,1,0,45400 ,1,0,45825 ,1,0,46025 ,1,0,46225 ,1,0,46460 ,1,0,46875 ,1,0,47385 ,1,0,47805 ,1,0,48120 ,1,0,48350 ,1,0,48650 ,1,0,48970 ,1,0,49365 ,1,0,49695 ,1,0,49995 ,1,0,50310 ,1,0,50530 ,1,0,50955 ,1,0,51390 ,1,0,51600 ,1,0,51820 ,1,0,52030 ,1,0,52455 ,1,0,52680 ,1,0,52910 ,1,0,53125 ,1,0,53335 ,1,0,53545 ,1,0,53875 ,1,0,54220 ,1,0,54455 ,1,0,54745 ,1,0,55065 ,1,0,55505 ,1,0,55715 ,1,0,56135 ,1,0,56450 ,1,0,56770 ,1,0,57005 ,1,0,57200 ,1,0,57450 ,1,0,57770 ,1,0,57995 ,1,0,58415 ,1,0,58725 ,1,0,59365 ,1,0,59675 ,1,0,60195 ,1,0,60705 ,1,0,61145 ,1,0,61470 ,1,0,61670 ,1,0,61885 ,1,0,62095 ,1,0,62310 ,1,0,62525 ,1,0,62945 ,1,0,63155 ,1,0,63390 ,1,0,63710 ,1,0,63910 ,1,0,64340 ,1,0,64675 ,1,0,64895 ,1,0,65125 ,1,0,65640 ,1,0,65840 ,1,0,66045 ,1,0,66450 ,1,0,66770 ,1,0,67085 ,1,0,67490 ,1,0,67805 ,1,0,68230 ,1,0,68640 ,1,0,69055 ,1,0,69360 ,1,0,69770 ,1,0,70100 ,1,0,70385 ,1,0,70595 ,1,0,70900 ,1,0,71210 ,1,0,71515 ,1,0,71835 ,1,0,72220 ,1,0,72565 ,1,0,72865 ,1,0,73060 ,1,0,73485 ,1,0,73685 ,1,0,73985 ,1,0,74190 ,1,0,74505 ,1,0,74890 ,1,0,75320 ,1,0,75515 ,1,0,75815 ,1,0,76025 ,1,0,76560 ,1,0,76980 ,1,0,77285 ,1,0,77605 ,1,0,77920 ,1,0,78335 ,1,0,78575 ,1,0,79010 ,1,0,79320 ,1,0,79725 ,1,0,79940 ,1,0,80365 ,1,0,80585 ,1,0,80810 ,1,0,81255 ,1,0,81740 ,1,0,82290 ,1,0,82620 ,1,0,82820 ,1,0,83060 ,1,0,83270 ,1,0,83470 ,1,0,83795 ,1,0,84320 ,1,0,84535 ,1,0,85045 ,1,0,85295 ,1,0,85490 ,1,0,85960 ,1,0,86370 ,1,0,86795 ,1,0,86995 ,1,0,87445 ,1,0,87660 ,1,0,88105 ,1,0,88310 ,1,0,88835 ,1,0,89030 ,1,0,89260 ,1,0,89460 ,1,0,89775 ,1,0,90075 ,1,0,90295 ,1,0,90495 ,1,0,90685 ,1,0,90900 ,1,0,91305 ,1,0,91610 ,1,0,91920 ,1,0,92255 ,1,0,92565 ,1,0,92760 ,1,0,93285 ,1,0,93500 ,1,0,93825 ,1,0,94140 ,1,0,94355 ,1,0,94670 ,1,0,95090 ,1,0,95425 ,1,0,95850 ,1,0,96170 ,1,0,96570 ,1,0,96905 ,1,0,97140 ,1,0,97565 ,1,0,97770 ,1,0,97995 ,1,0,98225 ,1,0,98445 ,1,0,98755 ,1,0,98970 ,1,0,99400 ,1,0,99730 ,1,0,99990 ,1,0,100205 ,1,0,100640 ,1,0,100845 ,1,0,101170 ,1,0,101395 ,1,0,101640 ,1,0,102100 ,1,0,102410 ,1,0,102635 ,1,0,102945 ,1,0,103165 ,1,0,103700 ,1,0,103940 ,1,0,104160 ,1,0,104370 ,1,0,104695 ,1,0,105130 ,1,0,105370 ,1,0,105690 ,1,0,105900 ,1,0,106210 ,1,0,106415 ,1,0,106630 ,1,0,106855 ,1,0,107095 ,1,0,107315 ,1,0,107535 ,1,0,107970 ,1,0,108285 ,1,0,108615 ,1,0,108825 ,1,0,109045 ,1,0,109255 ,1,0,109690 ,1,0,109910 ,1,0,110350 ,1,0,110665 ,1,0,110890 ,1,0,111330 ,1,0,111645 ,1,0,111880 ,1,0,112075 ,1,0,112510 ,1,0,112720 ,1,0,113050 ,1,0,113290 ,1,0,113620 ,1,0,113845 ,1,0,114065 ,1,0,114540 ,1,0,114850 ,1,0,115310 ,1,0,115505 ,1,0,115830 ,1,0,116145 ,1,0,116500 ,1,0,116725 ,1,0,117130 ,1,0,117650 ,1,0,117960 ,1,0,118180 ,1,0,118385 ,1,0,118820 ,1,0,119140 ,1,0,119450 ,1,0,119765 ,1,0,119975 ,1,0,120180 ,1,0,120595 ,1,0,121030 ,1,0,121230 ,1,0,121780 ,1,0,122215 ,1,0,122660 ,1,0,122860 ,1,0,123485 ,1,0,123800 ,1,0,124220 ,1,0,124435 ,1,0,124860 ,1,0,125290 ,1,0,125510 ,1,0,125735 ,1,0,125960 ,1,0,126155 ,1,0,126585 ,1,0,126905 ,1,0,127120 ,1,0,127335 ,1,0,127560 ,1,0,127865 ,1,0,128095 ,1,0,128300 ,1,0,128620 ,1,0,128915 ,1,0,129230 ,1,0,129455 ,1,0,129895 ,1,0,130325 ,1,0,130515 ,1,0,130975 ,1,0,131305 ,1,0,131525 ,1,0,131845 ,1,0,132150 ,1,0,132370 ,1,0,132800 ,1,0,133010 ,1,0,133425 ,1,0,133730 ,1,0,133910 ,1,0,134240 ,1,0,134565 ,1,0,135000 ,1,0,135315 ,1,0,135635 ,1,0,136175 ,1,0,136400 ,1,0,136850 ,1,0,137070 ,1,0,137305 ,1,0,137615 ,1,0,137840 ,1,0,138270 ,1,0,138595 ,1,0,139010 ,1,0,139455 ,1,0,139665 ,1,0,139985 ,1,0,140215 ,1,0,140615 ,1,0,140825 ,1,0,141035 ,1,0,141360 ,1,0,141565 ,1,0,141870 ,1,0,142290 ,1,0,142495 ,1,0,142890 ,1,0,143185 ,1,0,143855 ,1,0,144140 ,1,0,144590 ,1,0,144800 ,1,0,145015 ,1,0,145350 ,1,0,145585 ,1,0,146135 ,1,0,146350 ,1,0,146885 ,1,0,147115 ,1,0,147450 ,1,0,147770 ,1,0,147980 ,1,0,148435 ,1,0,148740 ,1,0,148960 ,1,0,149180 ,1,0,149400 ,1,0,149720 ,1,0,149945 ,1,0,150165 ,1,0,150495 ,1,0,150715 ,1,0,150930 ,1,0,151250 ,1,0,151800 ,1,0,152015 ,1,0,152335 ,1,0,152675 ,1,0,152990 ,1,0,153320 ,1,0,153735 ,1,0,153930 ,1,0,154275 ,1,0,154685 ,1,0,154910 ,1,0,155135 ,1,0,155550 ,1,0,155870 ,1,0,156105 ,1,0,156515 ,1,0,156725 ,1,0,157055 ,1,0,157375 ,1,0,157775 ,1,0,158205 ,1,0,158615 ,1,0,159030 ,1,0,159250 ,1,0,159475 ,1,0,159670 ,1,0,159895 ,1,0,160315 ,1,0,160645 ,1,0,160880 ,1,0,161110 ,1,0,161430 ,1,0,161625 ,1,0,162070 ,1,0,162395 ,1,0,162830 ,1,0,163160 ,1,0,163470 ,1,0,163895 ,1,0,164135 ,1,0,164340 ,1,0,164560 ,1,0,164875 ,1,0,165195 ,1,0,165615 ,1,0,165810 ,1,0,166150 ,1,0,166355 ,1,0,166565 ,1,0,166805 ,1,0,167235 ,1,0,167565 ,1,0,167810 ,1,0,168015 ,1,0,168580 ,1,0,169140 ,1,0,169380 ,1,0,169600 ,1,0,169935 ,1,0,170470 ,1,0,170665 ,1,0,170905 ,1,0,171115 ,1,0,171675 ,1,0,171900 ,1,0,172205 ,1,0,172645 ,1,0,172985 ,1,0,173220 ,1,0,173655 ,1,0,173885 ,1,0,174210 ,1,0,174550 ,1,0,174885 ,1,0,175115 ,1,0,175555 ,1,0,175750 ,1,0,175970 ,1,0,176525 ,1,0,176755 ,1,0,177395 ,1,0,177630 ,1,0,178065 ,1,0,178320 ,1,0,178650 ,1,0,178970 ,1,0,179385 ,1,0,179595 ,1,0,180055 ,1,0,180380 ,1,0,180880 ,1,0,181325 ,1,0,181535 ,1,0,181990 ,1,0,182190 ,1,0,182420 ,1,0,182635 ,1,0,182845 ,1,0,183065 ,1,0,183380 ,1,0,183810 ,1,0,184265 ,1,0,184590 ,1,0,184925 ,1,0,185145 ,1,0,185460 ,1,0,185800 ,1,0,186150 ,1,0,186365 ,1,0,186915 ,1,0,187255 ,1,0,187570 ,1,0,187890 ,1,0,188100 ,1,0,188330 ,1,0,188520 ,1,0,188845 ,1,0,189290 ,1,0,189610 ,1,0,189935 ,1,0,190370 ,1,0,190685 ,1,0,191020 ,1,0,191365 ,1,0,191805 ,1,0,192015 ,1,0,192250 ,1,0,192440 ,1,0,192755 ,1,0,192965 ,1,0,193195 ,1,0,193505 ,1,0,193925 ,1,0,194565 ,1,0,194775 ,1,0,195010 ,1,0,195225 ,1,0,195445 ,1,0,195785 ,1,0,195985 ,1,0,196215 ,1,0,196425 ,1,0,196645 ,1,0,196885 ,1,0,197320 ,1,0,197750 ,1,0,198300 ,1,0,198825 ,1,0,199155 ,1,0,199670 ,1,0,199890 ,1,0,200110 ,1,0,200335 ,1,0,200535 ,1,0,201085 ,1,0,201315 ,1,0,201535 ,1,0,201755 ,1,0,201970 ,1,0,202275 ,1,0,202740 ,1,0,202965 ,1,0,203185 ,1,0,203505 ,1,0,203945 ,1,0,204270 ,1,0,204580 ,1,0,205040 ,1,0,205280 ,1,0,205810 ,1,0,206025 ,1,0,206345 ,1,0,206550 ,1,0,206780 ,1,0,206985 ,1,0,207210 ,1,0,207540 ,1,0,208040 ,1,0,208375 ,1,0,208805 ,1,0,209135 ,1,0,209330 ,1,0,209760 ,1,0,210070 ,1,0,210825 ,1,0,211055 ,1,0,211470 ,1,0,211790 ,1,0,212245 ,1,0,212670 ,1,0,212890 ,1,0,213125 ,1,0,213455 ,1,0,213895 ,1,0,214240 ,1,0,214665 ,1,0,214990 ,1,0,215205 ,1,0,215530 ,1,0,215760 ,1,0,216280 ,1,0,216480 ,1,0,216920 ,1,0,217245 ,1,0,217780 ,1,0,218205 ,1,0,218425 ,1,0,218645 ,1,0,218965 ,1,0,219190 ,1,0,219400 ,1,0,219920 ,1,0,220445 ,1,0,220895 ,1,0,221435 ,1,0,221635 ,1,0,222060 ,1,0,222370 ,1,0,222605 ,1,0,222810 ,1,0,223025 ,1,0,223230 ,1,0,223705 ,1,0,224040 ,1,0,224480 ,1,0,224790 ,1,0,225205 ,1,0,225630 ,1,0,225855 ,1,0,226395 ,1,0,226910 ,1,0,227115 ,1,0,227440 ,1,0,227660 ,1,0,227995 ,1,0,228315 ,1,0,228525 ,1,0,228925 ,1,0,229335 ,1,0,229760 ,1,0,229985 ,1,0,230215 ,1,0,230625 ,1,0,230860 ,1,0,231195 ,1,0,231405 ,1,0,231800 ,1,0,232150 ,1,0,232370 ,1,0,232775 ,1,0,233315 ,1,0,233640 ,1,0,233850 ,1,0,234160 ,1,0,234380 ,1,0,234770 ,1,0,235325 ,1,0,235540 ,1,0,235765 ,1,0,235980 ,1,0,236295 ,1,0,236505 ,1,0,236940 ,1,0,237180 ,1,0,237590 ,1,0,237900 ,1,0,238100 ,1,0,238435 ,1,0,238645 ,1,0,238875 ,1,0,239085 ,1,0,239490 ,1,0,240035 ,1,0,240520 ,1,0,240765 ,1,0,241070 ,1,0,241580 ,1,0,242000 ,1,0,242215 ,1,0,242545 ,1,0,242735 ,1,0,243145 ,1,0,243495 ,1,0,243855 ,1,0,244155 ,1,0,244670 ,1,0,245000 ,1,0,245440 ,1,0,245785 ,1,0,246000 ,1,0,246185 ,1,0,246510 ,1,0,246815 ,1,0,247060 ,1,0,247270 ,1,0,247510 ,1,0,247820 ,1,0,248120 ,1,0,248450 ,1,0,248675 ,1,0,249085 ,1,0,249290 ,1,0,249505 ,1,0,249830 ,1,0,250175 ,1,0,250580 ,1,0,251005 ,1,0,251355 ,1,0,251570 ,2,14956,9730 ,2,14957,45 ,2,14958,24140 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24130 ,2,14963,265465 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600005 ,2,14970,75 ,2,14971,45 ,2,14956,173270 ,2,14957,45 ,2,14958,27890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27855 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559000 ,2,14967,45 ,2,14968,75 ,2,14969,558995 ,2,14970,26730 ,2,14971,283570 ,2,14956,173165 ,2,14957,45 ,2,14958,26880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26860 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559070 ,2,14970,75 ,2,14971,283615 ,2,14956,172375 ,2,14957,45 ,2,14958,27080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27070 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559085 ,2,14967,45 ,2,14968,75 ,2,14969,559080 ,2,14970,26915 ,2,14971,283650 ,2,14956,172680 ,2,14957,45 ,2,14958,27295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27285 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559180 ,2,14967,45 ,2,14968,75 ,2,14969,559175 ,2,14970,27190 ,2,14971,283755 ,2,14956,172740 ,2,14957,45 ,2,14958,27425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27415 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559200 ,2,14967,45 ,2,14968,75 ,2,14969,559195 ,2,14970,27355 ,2,14971,283785 ,2,14956,172805 ,2,14957,45 ,2,14958,27600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27590 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559245 ,2,14967,45 ,2,14968,75 ,2,14969,559240 ,2,14970,27520 ,2,14971,283845 ,2,14956,173085 ,2,14957,45 ,2,14958,27740 ,2,14959,27700 ,2,14960,75 ,2,14961,45 ,2,14962,27690 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559260 ,2,14970,75 ,2,14971,283900 ,2,14956,13240 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,32605 ,2,14963,266250 ,2,14964,280675 ,2,14965,545815 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,190680 ,2,14957,45 ,2,14958,40635 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40535 ,2,14963,265660 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562760 ,2,14970,75 ,2,14971,45 ,2,14956,196540 ,2,14957,45 ,2,14958,43650 ,2,14959,45 ,2,14960,43640 ,2,14961,45 ,2,14962,43630 ,2,14963,267095 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563665 ,2,14970,75 ,2,14971,45 ,2,14956,196305 ,2,14957,45 ,2,14958,43745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43735 ,2,14963,267095 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563680 ,2,14970,75 ,2,14971,45 ,2,14956,293000 ,2,14957,45 ,2,14958,114575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114565 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,584770 ,2,14967,45 ,2,14968,75 ,2,14969,585155 ,2,14970,114515 ,2,14971,45 ,2,14956,293010 ,2,14957,45 ,2,14958,114645 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114635 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,584870 ,2,14967,45 ,2,14968,75 ,2,14969,585160 ,2,14970,114615 ,2,14971,45 ,2,14956,293020 ,2,14957,45 ,2,14958,114715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114705 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585000 ,2,14967,45 ,2,14968,75 ,2,14969,585175 ,2,14970,114685 ,2,14971,45 ,2,14956,293090 ,2,14957,45 ,2,14958,114845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114835 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585190 ,2,14967,45 ,2,14968,75 ,2,14969,585185 ,2,14970,114785 ,2,14971,45 ,2,14956,293130 ,2,14957,45 ,2,14958,115050 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115025 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585245 ,2,14967,45 ,2,14968,75 ,2,14969,585215 ,2,14970,114950 ,2,14971,45 ,2,14956,293195 ,2,14957,45 ,2,14958,115240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115230 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585280 ,2,14967,45 ,2,14968,75 ,2,14969,585275 ,2,14970,115135 ,2,14971,45 ,2,14956,293245 ,2,14957,45 ,2,14958,115420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115405 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585345 ,2,14967,45 ,2,14968,75 ,2,14969,585330 ,2,14970,115350 ,2,14971,45 ,2,14956,293265 ,2,14957,45 ,2,14958,115470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115450 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585320 ,2,14967,45 ,2,14968,75 ,2,14969,585350 ,2,14970,115430 ,2,14971,45 ,2,14956,293305 ,2,14957,45 ,2,14958,115660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115650 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585410 ,2,14967,45 ,2,14968,75 ,2,14969,585405 ,2,14970,115575 ,2,14971,45 ,2,14956,293315 ,2,14957,45 ,2,14958,115700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115690 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585355 ,2,14967,45 ,2,14968,75 ,2,14969,585415 ,2,14970,115670 ,2,14971,45 ,2,14956,293350 ,2,14957,45 ,2,14958,115865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115820 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585430 ,2,14967,45 ,2,14968,75 ,2,14969,585425 ,2,14970,115770 ,2,14971,45 ,2,14956,295655 ,2,14957,45 ,2,14958,118135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118125 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,584825 ,2,14967,45 ,2,14968,75 ,2,14969,585960 ,2,14970,118105 ,2,14971,45 ,2,14956,295705 ,2,14957,45 ,2,14958,118220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118210 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,584955 ,2,14967,45 ,2,14968,75 ,2,14969,585965 ,2,14970,118165 ,2,14971,45 ,2,14956,295735 ,2,14957,45 ,2,14958,118270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118260 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585065 ,2,14967,45 ,2,14968,75 ,2,14969,585970 ,2,14970,118240 ,2,14971,45 ,2,14956,295765 ,2,14957,45 ,2,14958,118345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118335 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585180 ,2,14967,45 ,2,14968,75 ,2,14969,585975 ,2,14970,118315 ,2,14971,45 ,2,14956,295820 ,2,14957,45 ,2,14958,118425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118375 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585205 ,2,14967,45 ,2,14968,75 ,2,14969,585985 ,2,14970,118355 ,2,14971,45 ,2,14956,296585 ,2,14957,45 ,2,14958,119080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119070 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,584825 ,2,14967,45 ,2,14968,75 ,2,14969,586125 ,2,14970,119010 ,2,14971,45 ,2,14956,296595 ,2,14957,45 ,2,14958,119165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119135 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,584955 ,2,14967,45 ,2,14968,75 ,2,14969,586165 ,2,14970,119115 ,2,14971,45 ,2,14956,296605 ,2,14957,45 ,2,14958,119225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119215 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585065 ,2,14967,45 ,2,14968,75 ,2,14969,586170 ,2,14970,119195 ,2,14971,45 ,2,14956,296615 ,2,14957,45 ,2,14958,119300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119285 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585180 ,2,14967,45 ,2,14968,75 ,2,14969,586175 ,2,14970,119265 ,2,14971,45 ,2,14956,296640 ,2,14957,45 ,2,14958,119385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119375 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585205 ,2,14967,45 ,2,14968,75 ,2,14969,586180 ,2,14970,119330 ,2,14971,45 ,2,14956,296660 ,2,14957,45 ,2,14958,119440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119430 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585255 ,2,14967,45 ,2,14968,75 ,2,14969,586190 ,2,14970,119410 ,2,14971,45 ,2,14956,296680 ,2,14957,45 ,2,14958,119515 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119500 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585255 ,2,14967,45 ,2,14968,75 ,2,14969,586195 ,2,14970,119480 ,2,14971,45 ,2,14956,296700 ,2,14957,45 ,2,14958,119585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119575 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585260 ,2,14967,45 ,2,14968,75 ,2,14969,586200 ,2,14970,119535 ,2,14971,45 ,2,14956,296750 ,2,14957,45 ,2,14958,119635 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119625 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585260 ,2,14967,45 ,2,14968,75 ,2,14969,586205 ,2,14970,119605 ,2,14971,45 ,2,14956,296770 ,2,14957,45 ,2,14958,119715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119705 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585290 ,2,14967,45 ,2,14968,75 ,2,14969,586235 ,2,14970,119685 ,2,14971,45 ,2,14956,296795 ,2,14957,45 ,2,14958,119805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119795 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585290 ,2,14967,45 ,2,14968,75 ,2,14969,586240 ,2,14970,119745 ,2,14971,45 ,2,14956,296815 ,2,14957,45 ,2,14958,119860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119850 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585315 ,2,14967,45 ,2,14968,75 ,2,14969,586245 ,2,14970,119825 ,2,14971,45 ,2,14956,296875 ,2,14957,45 ,2,14958,119935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,119920 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585315 ,2,14967,45 ,2,14968,75 ,2,14969,586250 ,2,14970,119900 ,2,14971,45 ,2,14956,296895 ,2,14957,45 ,2,14958,120015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120005 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585320 ,2,14967,45 ,2,14968,75 ,2,14969,586260 ,2,14970,119955 ,2,14971,45 ,2,14956,296925 ,2,14957,45 ,2,14958,120075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120065 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585355 ,2,14967,45 ,2,14968,75 ,2,14969,586265 ,2,14970,120045 ,2,14971,45 ,2,14956,296945 ,2,14957,45 ,2,14958,120155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120145 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585450 ,2,14967,45 ,2,14968,75 ,2,14969,586270 ,2,14970,120125 ,2,14971,45 ,2,14956,296960 ,2,14957,45 ,2,14958,120220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120210 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585450 ,2,14967,45 ,2,14968,75 ,2,14969,586275 ,2,14970,120165 ,2,14971,45 ,2,14956,296970 ,2,14957,45 ,2,14958,120270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120260 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585455 ,2,14967,45 ,2,14968,75 ,2,14969,586300 ,2,14970,120240 ,2,14971,45 ,2,14956,296980 ,2,14957,45 ,2,14958,120340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120330 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585455 ,2,14967,45 ,2,14968,75 ,2,14969,586305 ,2,14970,120280 ,2,14971,45 ,2,14956,296990 ,2,14957,45 ,2,14958,120385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120375 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585460 ,2,14967,45 ,2,14968,75 ,2,14969,586310 ,2,14970,120350 ,2,14971,45 ,2,14956,297000 ,2,14957,45 ,2,14958,120460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120450 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585460 ,2,14967,45 ,2,14968,75 ,2,14969,586315 ,2,14970,120430 ,2,14971,45 ,2,14956,12675 ,2,14957,45 ,2,14958,132975 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132945 ,2,14963,273345 ,2,14964,280600 ,2,14965,553905 ,2,14966,589575 ,2,14967,45 ,2,14968,75 ,2,14969,589565 ,2,14970,132915 ,2,14971,383030 ,2,14956,5740 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132935 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589575 ,2,14970,75 ,2,14971,45 ,2,14956,4470 ,2,14957,45 ,2,14958,136420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136395 ,2,14963,273645 ,2,14964,280600 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590055 ,2,14970,75 ,2,14971,45 ,2,14956,308815 ,2,14957,45 ,2,14958,136475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136450 ,2,14963,267095 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590060 ,2,14970,75 ,2,14971,45 ,2,14956,308920 ,2,14957,45 ,2,14958,136605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136595 ,2,14963,273655 ,2,14964,280665 ,2,14965,45 ,2,14966,590075 ,2,14967,45 ,2,14968,75 ,2,14969,590065 ,2,14970,75 ,2,14971,45 ,2,14956,312515 ,2,14957,45 ,2,14958,140590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,140580 ,2,14963,273895 ,2,14964,280560 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590655 ,2,14970,75 ,2,14971,45 ,2,14956,6605 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150895 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596905 ,2,14970,75 ,2,14971,45 ,2,14956,5420 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150905 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596910 ,2,14970,75 ,2,14971,45 ,2,14956,11805 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150915 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596945 ,2,14970,75 ,2,14971,45 ,2,14956,6470 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150925 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596950 ,2,14970,75 ,2,14971,45 ,2,14956,8625 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150950 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596955 ,2,14970,75 ,2,14971,45 ,2,14956,348060 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151285 ,2,14963,267095 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596960 ,2,14970,75 ,2,14971,45 ,2,14956,11305 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151435 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,596980 ,2,14970,75 ,2,14971,45 ,2,14956,6605 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151445 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,597010 ,2,14967,45 ,2,14968,75 ,2,14969,597005 ,2,14970,75 ,2,14971,45 ,2,14956,11805 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151465 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597015 ,2,14970,75 ,2,14971,45 ,2,14956,9740 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151505 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597020 ,2,14970,75 ,2,14971,45 ,2,14956,7850 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151515 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597035 ,2,14970,75 ,2,14971,45 ,2,14956,4450 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151525 ,2,14963,273335 ,2,14964,280600 ,2,14965,557555 ,2,14966,589575 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,9750 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151535 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597040 ,2,14970,75 ,2,14971,45 ,2,14956,4130 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151545 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597045 ,2,14970,75 ,2,14971,45 ,2,14956,6470 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151555 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597050 ,2,14970,75 ,2,14971,45 ,2,14956,4350 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151575 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597085 ,2,14970,75 ,2,14971,45 ,2,14956,5420 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151610 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,597010 ,2,14967,45 ,2,14968,75 ,2,14969,597090 ,2,14970,75 ,2,14971,45 ,2,14956,10315 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151620 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,596985 ,2,14967,45 ,2,14968,75 ,2,14969,597095 ,2,14970,75 ,2,14971,45 ,2,14956,8625 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151630 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,589575 ,2,14967,45 ,2,14968,75 ,2,14969,597100 ,2,14970,75 ,2,14971,45 ,2,14956,348275 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151680 ,2,14963,274250 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597110 ,2,14970,75 ,2,14971,45 ,2,14956,348495 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151840 ,2,14963,274375 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597115 ,2,14970,75 ,2,14971,45 ,2,14956,348505 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151860 ,2,14963,273655 ,2,14964,280665 ,2,14965,45 ,2,14966,590075 ,2,14967,45 ,2,14968,75 ,2,14969,597135 ,2,14970,75 ,2,14971,45 ,2,14956,348515 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151870 ,2,14963,274365 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597140 ,2,14970,75 ,2,14971,45 ,2,14956,348545 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151880 ,2,14963,273655 ,2,14964,280665 ,2,14965,45 ,2,14966,590075 ,2,14967,45 ,2,14968,75 ,2,14969,597145 ,2,14970,75 ,2,14971,45 ,2,14956,350965 ,2,14957,45 ,2,14958,159405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159395 ,2,14963,274355 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,566130 ,2,14970,159345 ,2,14971,45 ,2,14956,349000 ,2,14957,45 ,2,14958,159470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159460 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599680 ,2,14970,159415 ,2,14971,356300 ,2,14956,351650 ,2,14957,45 ,2,14958,159540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159525 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597815 ,2,14970,159495 ,2,14971,358920 ,2,14956,351325 ,2,14957,45 ,2,14958,159605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159595 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599350 ,2,14970,159550 ,2,14971,356400 ,2,14956,350840 ,2,14957,45 ,2,14958,159705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159655 ,2,14963,265735 ,2,14964,280655 ,2,14965,557655 ,2,14966,598910 ,2,14967,45 ,2,14968,75 ,2,14969,559750 ,2,14970,75 ,2,14971,284810 ,2,14956,348690 ,2,14957,45 ,2,14958,159780 ,2,14959,159770 ,2,14960,159760 ,2,14961,45 ,2,14962,159735 ,2,14963,265570 ,2,14964,280665 ,2,14965,557680 ,2,14966,596660 ,2,14967,45 ,2,14968,75 ,2,14969,558295 ,2,14970,159715 ,2,14971,45 ,2,14956,351335 ,2,14957,45 ,2,14958,159840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159830 ,2,14963,269410 ,2,14964,280665 ,2,14965,557685 ,2,14966,598455 ,2,14967,45 ,2,14968,159820 ,2,14969,590200 ,2,14970,159790 ,2,14971,45 ,2,14956,349935 ,2,14957,45 ,2,14958,159925 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159885 ,2,14963,269410 ,2,14964,280665 ,2,14965,557690 ,2,14966,599705 ,2,14967,45 ,2,14968,75 ,2,14969,558290 ,2,14970,159855 ,2,14971,45 ,2,14956,6430 ,2,14957,45 ,2,14958,159945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159935 ,2,14963,274295 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599875 ,2,14970,75 ,2,14971,45 ,2,14956,351150 ,2,14957,45 ,2,14958,159965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159955 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,558300 ,2,14967,45 ,2,14968,75 ,2,14969,599280 ,2,14970,75 ,2,14971,45 ,2,14956,351135 ,2,14957,45 ,2,14958,159985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159975 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,558300 ,2,14967,45 ,2,14968,75 ,2,14969,597475 ,2,14970,75 ,2,14971,45 ,2,14956,351555 ,2,14957,45 ,2,14958,160035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,159995 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,558300 ,2,14967,45 ,2,14968,75 ,2,14969,598845 ,2,14970,75 ,2,14971,45 ,2,14956,349975 ,2,14957,45 ,2,14958,160065 ,2,14959,160055 ,2,14960,75 ,2,14961,45 ,2,14962,160045 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,558300 ,2,14967,45 ,2,14968,75 ,2,14969,558285 ,2,14970,75 ,2,14971,45 ,2,14956,350300 ,2,14957,45 ,2,14958,160210 ,2,14959,160200 ,2,14960,160190 ,2,14961,45 ,2,14962,160180 ,2,14963,273840 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,160160 ,2,14969,558540 ,2,14970,160110 ,2,14971,281405 ,2,14956,351180 ,2,14957,45 ,2,14958,160250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,160240 ,2,14963,274385 ,2,14964,280665 ,2,14965,45 ,2,14966,598755 ,2,14967,45 ,2,14968,160230 ,2,14969,599950 ,2,14970,75 ,2,14971,282460 ,2,14956,350070 ,2,14957,45 ,2,14958,160290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,160280 ,2,14963,274385 ,2,14964,280665 ,2,14965,45 ,2,14966,598755 ,2,14967,45 ,2,14968,75 ,2,14969,599955 ,2,14970,160260 ,2,14971,45 ,2,14956,349475 ,2,14957,45 ,2,14958,160575 ,2,14959,160565 ,2,14960,75 ,2,14961,45 ,2,14962,160555 ,2,14963,274385 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,598755 ,2,14970,160300 ,2,14971,45 ,2,14956,351280 ,2,14957,45 ,2,14958,160630 ,2,14959,160620 ,2,14960,160610 ,2,14961,45 ,2,14962,160600 ,2,14963,274395 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597855 ,2,14970,160585 ,2,14971,281735 ,2,14956,4215 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,45 ,2,14964,45 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,600025 ,2,14970,75 ,2,14971,45 ,2,14956,3905 ,2,14957,45 ,2,14958,160685 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,160675 ,2,14963,274285 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600030 ,2,14970,75 ,2,14971,45 ,2,14956,11395 ,2,14957,45 ,2,14958,160730 ,2,14959,45 ,2,14960,160720 ,2,14961,45 ,2,14962,160705 ,2,14963,274275 ,2,14964,280665 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,160695 ,2,14969,600065 ,2,14970,75 ,2,14971,294905 ,2,14956,171995 ,2,14957,45 ,2,14958,26540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26530 ,2,14963,265800 ,2,14964,280590 ,2,14965,544300 ,2,14966,558885 ,2,14967,45 ,2,14968,75 ,2,14969,558880 ,2,14970,23015 ,2,14971,280705 ,2,14956,171950 ,2,14957,45 ,2,14958,26520 ,2,14959,23110 ,2,14960,75 ,2,14961,45 ,2,14962,23095 ,2,14963,265205 ,2,14964,280665 ,2,14965,543460 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,557825 ,2,14970,23085 ,2,14971,45 ,2,14956,3465 ,2,14957,45 ,2,14958,23190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23170 ,2,14963,265215 ,2,14964,280665 ,2,14965,543480 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,557835 ,2,14970,75 ,2,14971,45 ,2,14956,166600 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23180 ,2,14963,265235 ,2,14964,280590 ,2,14965,543490 ,2,14966,557845 ,2,14967,45 ,2,14968,75 ,2,14969,600070 ,2,14970,75 ,2,14971,45 ,2,14956,171755 ,2,14957,45 ,2,14958,26450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26440 ,2,14963,265800 ,2,14964,280590 ,2,14965,544235 ,2,14966,557860 ,2,14967,45 ,2,14968,75 ,2,14969,557855 ,2,14970,23200 ,2,14971,280740 ,2,14956,171745 ,2,14957,45 ,2,14958,26430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26420 ,2,14963,265800 ,2,14964,280590 ,2,14965,544230 ,2,14966,557900 ,2,14967,45 ,2,14968,75 ,2,14969,557895 ,2,14970,23220 ,2,14971,45 ,2,14956,171660 ,2,14957,45 ,2,14958,26410 ,2,14959,23460 ,2,14960,75 ,2,14961,45 ,2,14962,23310 ,2,14963,265800 ,2,14964,280590 ,2,14965,543605 ,2,14966,557915 ,2,14967,45 ,2,14968,75 ,2,14969,557910 ,2,14970,23250 ,2,14971,45 ,2,14956,166750 ,2,14957,45 ,2,14958,23290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23280 ,2,14963,265800 ,2,14964,280590 ,2,14965,543590 ,2,14966,557925 ,2,14967,45 ,2,14968,75 ,2,14969,557920 ,2,14970,75 ,2,14971,45 ,2,14956,166730 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23300 ,2,14963,265255 ,2,14964,280665 ,2,14965,543600 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600085 ,2,14970,75 ,2,14971,45 ,2,14956,166840 ,2,14957,45 ,2,14958,23350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23340 ,2,14963,265245 ,2,14964,280655 ,2,14965,543630 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600090 ,2,14970,75 ,2,14971,45 ,2,14956,166775 ,2,14957,45 ,2,14958,23440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23430 ,2,14963,265265 ,2,14964,280665 ,2,14965,543640 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600100 ,2,14970,75 ,2,14971,45 ,2,14956,171615 ,2,14957,45 ,2,14958,23490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23480 ,2,14963,265280 ,2,14964,280665 ,2,14965,543660 ,2,14966,557995 ,2,14967,45 ,2,14968,75 ,2,14969,600120 ,2,14970,75 ,2,14971,45 ,2,14956,171595 ,2,14957,45 ,2,14958,23535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23525 ,2,14963,265800 ,2,14964,280590 ,2,14965,543700 ,2,14966,558035 ,2,14967,45 ,2,14968,75 ,2,14969,558030 ,2,14970,23500 ,2,14971,280870 ,2,14956,8220 ,2,14957,45 ,2,14958,25860 ,2,14959,23645 ,2,14960,23570 ,2,14961,45 ,2,14962,75 ,2,14963,265300 ,2,14964,280590 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,9180 ,2,14957,45 ,2,14958,24070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24060 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558060 ,2,14967,45 ,2,14968,75 ,2,14969,558055 ,2,14970,75 ,2,14971,282870 ,2,14956,12545 ,2,14957,45 ,2,14958,24000 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23990 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,558060 ,2,14970,75 ,2,14971,281020 ,2,14956,12465 ,2,14957,45 ,2,14958,23730 ,2,14959,45 ,2,14960,23695 ,2,14961,45 ,2,14962,23685 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558080 ,2,14970,75 ,2,14971,45 ,2,14956,167175 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23705 ,2,14963,265335 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558090 ,2,14970,75 ,2,14971,45 ,2,14956,167600 ,2,14957,45 ,2,14958,23805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23795 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,558105 ,2,14967,45 ,2,14968,23760 ,2,14969,558095 ,2,14970,75 ,2,14971,45 ,2,14956,167310 ,2,14957,45 ,2,14958,23785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23775 ,2,14963,265395 ,2,14964,280645 ,2,14965,543725 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558110 ,2,14970,75 ,2,14971,45 ,2,14956,167525 ,2,14957,45 ,2,14958,23970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23960 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,558120 ,2,14967,45 ,2,14968,23840 ,2,14969,558115 ,2,14970,75 ,2,14971,45 ,2,14956,167500 ,2,14957,45 ,2,14958,23890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23880 ,2,14963,265425 ,2,14964,280645 ,2,14965,543775 ,2,14966,558150 ,2,14967,45 ,2,14968,75 ,2,14969,558145 ,2,14970,23850 ,2,14971,45 ,2,14956,167385 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23860 ,2,14963,265415 ,2,14964,280675 ,2,14965,543765 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600140 ,2,14970,75 ,2,14971,45 ,2,14956,167375 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23870 ,2,14963,265415 ,2,14964,280675 ,2,14965,543770 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,167490 ,2,14957,45 ,2,14958,23950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,23910 ,2,14963,265445 ,2,14964,280590 ,2,14965,543830 ,2,14966,558175 ,2,14967,45 ,2,14968,75 ,2,14969,558170 ,2,14970,23900 ,2,14971,281110 ,2,14956,167830 ,2,14957,45 ,2,14958,24090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24080 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558060 ,2,14967,45 ,2,14968,75 ,2,14969,558210 ,2,14970,75 ,2,14971,281250 ,2,14956,3330 ,2,14957,45 ,2,14958,24185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24175 ,2,14963,265505 ,2,14964,280665 ,2,14965,45 ,2,14966,600005 ,2,14967,45 ,2,14968,75 ,2,14969,599945 ,2,14970,75 ,2,14971,45 ,2,14956,10835 ,2,14957,45 ,2,14958,24295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24210 ,2,14963,265515 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,24195 ,2,14969,558225 ,2,14970,75 ,2,14971,281355 ,2,14956,168065 ,2,14957,45 ,2,14958,24230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24220 ,2,14963,265515 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558235 ,2,14970,75 ,2,14971,45 ,2,14956,168045 ,2,14957,45 ,2,14958,24285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24240 ,2,14963,265515 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558240 ,2,14970,75 ,2,14971,281375 ,2,14956,7130 ,2,14957,45 ,2,14958,24420 ,2,14959,45 ,2,14960,24315 ,2,14961,45 ,2,14962,24305 ,2,14963,265535 ,2,14964,280665 ,2,14965,45 ,2,14966,600005 ,2,14967,45 ,2,14968,75 ,2,14969,599975 ,2,14970,75 ,2,14971,45 ,2,14956,3000 ,2,14957,45 ,2,14958,24410 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24345 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558280 ,2,14970,75 ,2,14971,45 ,2,14956,168205 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24365 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,558250 ,2,14967,45 ,2,14968,75 ,2,14969,558245 ,2,14970,75 ,2,14971,45 ,2,14956,168190 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24355 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558250 ,2,14970,75 ,2,14971,45 ,2,14956,170155 ,2,14957,45 ,2,14958,25490 ,2,14959,24670 ,2,14960,75 ,2,14961,45 ,2,14962,24660 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558300 ,2,14970,24465 ,2,14971,45 ,2,14956,168750 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24775 ,2,14963,265610 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558305 ,2,14970,75 ,2,14971,45 ,2,14956,168870 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24805 ,2,14963,265610 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558310 ,2,14970,75 ,2,14971,45 ,2,14956,168965 ,2,14957,45 ,2,14958,24860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24815 ,2,14963,265620 ,2,14964,280665 ,2,14965,45 ,2,14966,558345 ,2,14967,45 ,2,14968,75 ,2,14969,558370 ,2,14970,75 ,2,14971,281985 ,2,14956,168955 ,2,14957,45 ,2,14958,24890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24870 ,2,14963,265620 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558350 ,2,14970,75 ,2,14971,282000 ,2,14956,168910 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24880 ,2,14963,265205 ,2,14964,280665 ,2,14965,543910 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,169345 ,2,14957,45 ,2,14958,24970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24925 ,2,14963,265640 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558380 ,2,14970,75 ,2,14971,282360 ,2,14956,169115 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,24935 ,2,14963,265650 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558385 ,2,14970,75 ,2,14971,45 ,2,14956,7650 ,2,14957,45 ,2,14958,25015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25000 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558415 ,2,14970,75 ,2,14971,45 ,2,14956,169520 ,2,14957,45 ,2,14958,25145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25115 ,2,14963,265660 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558430 ,2,14970,25045 ,2,14971,282180 ,2,14956,10915 ,2,14957,45 ,2,14958,25105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25095 ,2,14963,265620 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599885 ,2,14970,75 ,2,14971,45 ,2,14956,169445 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25135 ,2,14963,265670 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558435 ,2,14970,75 ,2,14971,45 ,2,14956,169550 ,2,14957,45 ,2,14958,25210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25165 ,2,14963,265660 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558440 ,2,14970,75 ,2,14971,282340 ,2,14956,169785 ,2,14957,45 ,2,14958,25430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25420 ,2,14963,265660 ,2,14964,280665 ,2,14965,45 ,2,14966,558475 ,2,14967,45 ,2,14968,75 ,2,14969,558450 ,2,14970,75 ,2,14971,282370 ,2,14956,169775 ,2,14957,45 ,2,14958,25240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25230 ,2,14963,265680 ,2,14964,280655 ,2,14965,543930 ,2,14966,558480 ,2,14967,45 ,2,14968,75 ,2,14969,600175 ,2,14970,75 ,2,14971,45 ,2,14956,8220 ,2,14957,45 ,2,14958,25275 ,2,14959,45 ,2,14960,25265 ,2,14961,45 ,2,14962,75 ,2,14963,265705 ,2,14964,280655 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,7420 ,2,14957,45 ,2,14958,25825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25815 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,558555 ,2,14970,75 ,2,14971,283030 ,2,14956,170945 ,2,14957,45 ,2,14958,25910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25870 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558570 ,2,14970,75 ,2,14971,45 ,2,14956,170850 ,2,14957,45 ,2,14958,25890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25880 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558575 ,2,14970,75 ,2,14971,45 ,2,14956,8010 ,2,14957,45 ,2,14958,25970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25930 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558580 ,2,14970,75 ,2,14971,45 ,2,14956,171000 ,2,14957,45 ,2,14958,26000 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,25990 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558585 ,2,14970,75 ,2,14971,45 ,2,14956,171055 ,2,14957,45 ,2,14958,26030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26020 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,558585 ,2,14967,45 ,2,14968,75 ,2,14969,558625 ,2,14970,75 ,2,14971,45 ,2,14956,171110 ,2,14957,45 ,2,14958,26080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26040 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,558625 ,2,14967,45 ,2,14968,75 ,2,14969,558630 ,2,14970,75 ,2,14971,45 ,2,14956,171080 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26070 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558635 ,2,14970,75 ,2,14971,45 ,2,14956,171420 ,2,14957,45 ,2,14958,26110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26090 ,2,14963,265735 ,2,14964,280655 ,2,14965,544010 ,2,14966,558630 ,2,14967,45 ,2,14968,75 ,2,14969,558640 ,2,14970,75 ,2,14971,45 ,2,14956,171185 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26100 ,2,14963,265750 ,2,14964,280655 ,2,14965,544025 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600205 ,2,14970,75 ,2,14971,45 ,2,14956,171285 ,2,14957,45 ,2,14958,26180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26170 ,2,14963,265735 ,2,14964,280655 ,2,14965,544085 ,2,14966,558710 ,2,14967,45 ,2,14968,75 ,2,14969,558705 ,2,14970,26120 ,2,14971,283130 ,2,14956,171225 ,2,14957,45 ,2,14958,26160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26130 ,2,14963,265735 ,2,14964,280655 ,2,14965,544080 ,2,14966,558720 ,2,14967,45 ,2,14968,75 ,2,14969,558715 ,2,14970,75 ,2,14971,45 ,2,14956,171205 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26140 ,2,14963,265735 ,2,14964,280655 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558725 ,2,14970,75 ,2,14971,45 ,2,14956,171320 ,2,14957,45 ,2,14958,26210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26200 ,2,14963,265760 ,2,14964,280655 ,2,14965,544105 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558770 ,2,14970,75 ,2,14971,283170 ,2,14956,171340 ,2,14957,45 ,2,14958,26280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26270 ,2,14963,265735 ,2,14964,280655 ,2,14965,544145 ,2,14966,558785 ,2,14967,45 ,2,14968,75 ,2,14969,558775 ,2,14970,26260 ,2,14971,283220 ,2,14956,171545 ,2,14957,45 ,2,14958,26390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26340 ,2,14963,265770 ,2,14964,280655 ,2,14965,544155 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558810 ,2,14970,75 ,2,14971,45 ,2,14956,172035 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26550 ,2,14963,265800 ,2,14964,280590 ,2,14965,544310 ,2,14966,558890 ,2,14967,45 ,2,14968,75 ,2,14969,600270 ,2,14970,75 ,2,14971,283350 ,2,14956,173685 ,2,14957,45 ,2,14958,28230 ,2,14959,28180 ,2,14960,75 ,2,14961,45 ,2,14962,28170 ,2,14963,265810 ,2,14964,274405 ,2,14965,544625 ,2,14966,558910 ,2,14967,45 ,2,14968,75 ,2,14969,558905 ,2,14970,26560 ,2,14971,45 ,2,14956,173525 ,2,14957,45 ,2,14958,28125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28115 ,2,14963,265245 ,2,14964,280655 ,2,14965,544620 ,2,14966,558925 ,2,14967,45 ,2,14968,75 ,2,14969,600285 ,2,14970,75 ,2,14971,45 ,2,14956,173505 ,2,14957,45 ,2,14958,28090 ,2,14959,26655 ,2,14960,75 ,2,14961,45 ,2,14962,26640 ,2,14963,265245 ,2,14964,280655 ,2,14965,544365 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558940 ,2,14970,26620 ,2,14971,45 ,2,14956,172085 ,2,14957,45 ,2,14958,26675 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26665 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,558965 ,2,14970,75 ,2,14971,283455 ,2,14956,8380 ,2,14957,45 ,2,14958,26720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26710 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,558990 ,2,14970,75 ,2,14971,45 ,2,14956,173205 ,2,14957,45 ,2,14958,27845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27835 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,559000 ,2,14970,75 ,2,14971,45 ,2,14956,173195 ,2,14957,45 ,2,14958,27825 ,2,14959,27810 ,2,14960,75 ,2,14961,45 ,2,14962,27800 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559020 ,2,14967,45 ,2,14968,75 ,2,14969,559010 ,2,14970,26765 ,2,14971,45 ,2,14956,173185 ,2,14957,45 ,2,14958,26830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26820 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559025 ,2,14967,45 ,2,14968,75 ,2,14969,559020 ,2,14970,75 ,2,14971,45 ,2,14956,172170 ,2,14957,45 ,2,14958,26785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26775 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559025 ,2,14970,75 ,2,14971,45 ,2,14956,172245 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26870 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559075 ,2,14970,75 ,2,14971,45 ,2,14956,172305 ,2,14957,45 ,2,14958,27060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27040 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559090 ,2,14967,45 ,2,14968,75 ,2,14969,559085 ,2,14970,75 ,2,14971,45 ,2,14956,172265 ,2,14957,45 ,2,14958,26990 ,2,14959,26980 ,2,14960,75 ,2,14961,45 ,2,14962,26960 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559020 ,2,14967,45 ,2,14968,75 ,2,14969,559090 ,2,14970,26945 ,2,14971,45 ,2,14956,172255 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,26970 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559105 ,2,14970,75 ,2,14971,45 ,2,14956,172295 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27050 ,2,14963,265550 ,2,14964,280500 ,2,14965,544460 ,2,14966,559105 ,2,14967,45 ,2,14968,75 ,2,14969,600320 ,2,14970,75 ,2,14971,45 ,2,14956,8220 ,2,14957,45 ,2,14958,27125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,11745 ,2,14957,45 ,2,14958,27170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27145 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559165 ,2,14970,75 ,2,14971,45 ,2,14956,172570 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27155 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,558250 ,2,14967,45 ,2,14968,75 ,2,14969,559170 ,2,14970,75 ,2,14971,45 ,2,14956,172620 ,2,14957,45 ,2,14958,27275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27240 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,559180 ,2,14970,75 ,2,14971,45 ,2,14956,172610 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27260 ,2,14963,265550 ,2,14964,280500 ,2,14965,544475 ,2,14966,559190 ,2,14967,45 ,2,14968,75 ,2,14969,600325 ,2,14970,75 ,2,14971,45 ,2,14956,172600 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27250 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559190 ,2,14970,75 ,2,14971,45 ,2,14956,172700 ,2,14957,45 ,2,14958,27405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27395 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,559200 ,2,14970,75 ,2,14971,45 ,2,14956,3070 ,2,14957,45 ,2,14958,27495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27485 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559210 ,2,14970,75 ,2,14971,45 ,2,14956,172775 ,2,14957,45 ,2,14958,27580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27570 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,559245 ,2,14970,75 ,2,14971,45 ,2,14956,5925 ,2,14957,45 ,2,14958,27650 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27640 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559255 ,2,14970,75 ,2,14971,45 ,2,14956,6690 ,2,14957,45 ,2,14958,27790 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27780 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559265 ,2,14970,75 ,2,14971,45 ,2,14956,173350 ,2,14957,45 ,2,14958,27965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27955 ,2,14963,265810 ,2,14964,274405 ,2,14965,45 ,2,14966,559360 ,2,14967,45 ,2,14968,75 ,2,14969,559355 ,2,14970,75 ,2,14971,284035 ,2,14956,173310 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,27945 ,2,14963,265810 ,2,14964,274405 ,2,14965,45 ,2,14966,559370 ,2,14967,45 ,2,14968,75 ,2,14969,559365 ,2,14970,75 ,2,14971,45 ,2,14956,173380 ,2,14957,45 ,2,14958,28035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28025 ,2,14963,265235 ,2,14964,280590 ,2,14965,544580 ,2,14966,559390 ,2,14967,45 ,2,14968,75 ,2,14969,559385 ,2,14970,75 ,2,14971,284070 ,2,14956,173400 ,2,14957,45 ,2,14958,28060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28045 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,559410 ,2,14970,75 ,2,14971,284100 ,2,14956,173465 ,2,14957,45 ,2,14958,28080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28070 ,2,14963,265235 ,2,14964,280590 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559415 ,2,14970,75 ,2,14971,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,265810 ,2,14964,274405 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,173805 ,2,14957,45 ,2,14958,28275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28240 ,2,14963,265345 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,559465 ,2,14970,75 ,2,14971,45 ,2,14956,173705 ,2,14957,45 ,2,14958,28260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28250 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,559470 ,2,14970,75 ,2,14971,284250 ,2,14956,173815 ,2,14957,45 ,2,14958,28305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28295 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,559480 ,2,14970,75 ,2,14971,284355 ,2,14956,192900 ,2,14957,45 ,2,14958,39660 ,2,14959,45 ,2,14960,39625 ,2,14961,45 ,2,14962,39615 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,559490 ,2,14967,45 ,2,14968,75 ,2,14969,559485 ,2,14970,75 ,2,14971,284375 ,2,14956,174370 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28345 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,559515 ,2,14967,45 ,2,14968,75 ,2,14969,559495 ,2,14970,75 ,2,14971,45 ,2,14956,174360 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28780 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,559525 ,2,14970,75 ,2,14971,45 ,2,14956,8220 ,2,14957,45 ,2,14958,28375 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,173955 ,2,14957,45 ,2,14958,28420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28410 ,2,14963,265820 ,2,14964,274415 ,2,14965,544635 ,2,14966,559540 ,2,14967,45 ,2,14968,75 ,2,14969,559530 ,2,14970,75 ,2,14971,45 ,2,14956,174000 ,2,14957,45 ,2,14958,28465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28455 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,559545 ,2,14970,75 ,2,14971,45 ,2,14956,174035 ,2,14957,45 ,2,14958,28505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28485 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,559550 ,2,14970,75 ,2,14971,45 ,2,14956,174045 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28525 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,28515 ,2,14969,559575 ,2,14970,75 ,2,14971,45 ,2,14956,174065 ,2,14957,45 ,2,14958,28570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28535 ,2,14963,265820 ,2,14964,274415 ,2,14965,544645 ,2,14966,559540 ,2,14967,45 ,2,14968,75 ,2,14969,559580 ,2,14970,75 ,2,14971,284510 ,2,14956,174140 ,2,14957,45 ,2,14958,28615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28600 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,559585 ,2,14970,75 ,2,14971,45 ,2,14956,174150 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28645 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,559595 ,2,14970,75 ,2,14971,45 ,2,14956,174160 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28680 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,559600 ,2,14970,75 ,2,14971,45 ,2,14956,174250 ,2,14957,45 ,2,14958,28710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28700 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,28690 ,2,14969,559605 ,2,14970,75 ,2,14971,45 ,2,14956,174310 ,2,14957,45 ,2,14958,28740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28730 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,28720 ,2,14969,559610 ,2,14970,75 ,2,14971,45 ,2,14956,174320 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28750 ,2,14963,265820 ,2,14964,274415 ,2,14965,45 ,2,14966,559655 ,2,14967,45 ,2,14968,75 ,2,14969,559645 ,2,14970,75 ,2,14971,284540 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,174395 ,2,14957,45 ,2,14958,28830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,28820 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,559670 ,2,14967,45 ,2,14968,75 ,2,14969,559660 ,2,14970,75 ,2,14971,284580 ,2,14956,189075 ,2,14957,45 ,2,14958,28895 ,2,14959,45 ,2,14960,28850 ,2,14961,45 ,2,14962,28840 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,559675 ,2,14970,75 ,2,14971,284590 ,2,14956,188590 ,2,14957,45 ,2,14958,39280 ,2,14959,45 ,2,14960,39230 ,2,14961,45 ,2,14962,39220 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,28925 ,2,14969,559730 ,2,14970,75 ,2,14971,284685 ,2,14956,8220 ,2,14957,45 ,2,14958,35450 ,2,14959,33280 ,2,14960,28985 ,2,14961,45 ,2,14962,75 ,2,14963,265960 ,2,14964,274465 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,175400 ,2,14957,45 ,2,14958,29350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29035 ,2,14963,266010 ,2,14964,280655 ,2,14965,544715 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559755 ,2,14970,75 ,2,14971,45 ,2,14956,3150 ,2,14957,45 ,2,14958,29055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29045 ,2,14963,266020 ,2,14964,280665 ,2,14965,544725 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559770 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,28145 ,2,14956,174945 ,2,14957,45 ,2,14958,29210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29175 ,2,14963,265800 ,2,14964,280590 ,2,14965,544805 ,2,14966,559785 ,2,14967,45 ,2,14968,75 ,2,14969,559780 ,2,14970,29065 ,2,14971,284835 ,2,829,45 ,2,15024,613640 ,2,14978,28365 ,2,14956,174880 ,2,14957,45 ,2,14958,29145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29130 ,2,14963,266030 ,2,14964,280655 ,2,14965,544795 ,2,14966,559790 ,2,14967,45 ,2,14968,75 ,2,14969,600355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,28800 ,2,14956,174840 ,2,14957,45 ,2,14958,29120 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29110 ,2,14963,266030 ,2,14964,280655 ,2,14965,544770 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559800 ,2,14970,29100 ,2,14971,45 ,2,829,45 ,2,15024,616545 ,2,14978,28945 ,2,14956,175035 ,2,14957,45 ,2,14958,29340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29330 ,2,14963,266030 ,2,14964,280655 ,2,14965,544900 ,2,14966,559870 ,2,14967,45 ,2,14968,75 ,2,14969,559865 ,2,14970,29230 ,2,14971,284900 ,2,829,45 ,2,15024,613640 ,2,14978,33505 ,2,14956,175025 ,2,14957,45 ,2,14958,29320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29275 ,2,14963,266030 ,2,14964,280655 ,2,14965,544875 ,2,14966,559880 ,2,14967,45 ,2,14968,75 ,2,14969,559875 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,39740 ,2,14956,174985 ,2,14957,45 ,2,14958,29265 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29255 ,2,14963,266030 ,2,14964,280655 ,2,14965,544865 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,559895 ,2,14970,29240 ,2,14971,45 ,2,829,45 ,2,15024,618495 ,2,14978,41695 ,2,14956,174995 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29285 ,2,14963,266030 ,2,14964,280655 ,2,14965,544880 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,42140 ,2,14956,175380 ,2,14957,45 ,2,14958,29610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29595 ,2,14963,265735 ,2,14964,280655 ,2,14965,545045 ,2,14966,559930 ,2,14967,45 ,2,14968,75 ,2,14969,559925 ,2,14970,75 ,2,14971,284945 ,2,829,45 ,2,15024,613640 ,2,14978,44170 ,2,14956,175360 ,2,14957,45 ,2,14958,29585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29575 ,2,14963,265735 ,2,14964,280655 ,2,14965,545010 ,2,14966,559965 ,2,14967,45 ,2,14968,75 ,2,14969,559935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,44305 ,2,14956,175330 ,2,14957,45 ,2,14958,29565 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29525 ,2,14963,265735 ,2,14964,280655 ,2,14965,545005 ,2,14966,559975 ,2,14967,45 ,2,14968,75 ,2,14969,559970 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,44485 ,2,14956,175310 ,2,14957,45 ,2,14958,29515 ,2,14959,29465 ,2,14960,75 ,2,14961,45 ,2,14962,29445 ,2,14963,265735 ,2,14964,280655 ,2,14965,544980 ,2,14966,559990 ,2,14967,45 ,2,14968,75 ,2,14969,559980 ,2,14970,29375 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,44590 ,2,14956,175170 ,2,14957,45 ,2,14958,29405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29395 ,2,14963,265735 ,2,14964,280655 ,2,14965,544975 ,2,14966,558585 ,2,14967,45 ,2,14968,75 ,2,14969,560000 ,2,14970,29385 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,44630 ,2,14956,175180 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29455 ,2,14963,265735 ,2,14964,280655 ,2,14965,544990 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600360 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,45225 ,2,14956,179335 ,2,14957,45 ,2,14958,29640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29630 ,2,14963,265950 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,560095 ,2,14970,75 ,2,14971,285030 ,2,829,45 ,2,15024,613640 ,2,14978,45515 ,2,14956,175430 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29685 ,2,14963,265950 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,560105 ,2,14970,75 ,2,14971,285060 ,2,829,45 ,2,15024,613640 ,2,14978,45980 ,2,14956,175530 ,2,14957,45 ,2,14958,29725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29705 ,2,14963,265870 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,560110 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,46520 ,2,14956,175740 ,2,14957,45 ,2,14958,29915 ,2,14959,29855 ,2,14960,75 ,2,14961,45 ,2,14962,29845 ,2,14963,266050 ,2,14964,280655 ,2,14965,545185 ,2,14966,560190 ,2,14967,45 ,2,14968,75 ,2,14969,560170 ,2,14970,29745 ,2,14971,285205 ,2,829,45 ,2,15024,614705 ,2,14978,46725 ,2,14956,175570 ,2,14957,45 ,2,14958,29780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29755 ,2,14963,266050 ,2,14964,280655 ,2,14965,545070 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600370 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,46755 ,2,14956,175550 ,2,14957,45 ,2,14958,29810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29800 ,2,14963,265800 ,2,14964,280590 ,2,14965,545110 ,2,14966,560155 ,2,14967,45 ,2,14968,75 ,2,14969,560150 ,2,14970,29790 ,2,14971,285225 ,2,829,45 ,2,15024,613640 ,2,14978,46955 ,2,14956,175580 ,2,14957,45 ,2,14958,29835 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29825 ,2,14963,265235 ,2,14964,280590 ,2,14965,545155 ,2,14966,560200 ,2,14967,45 ,2,14968,75 ,2,14969,560195 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,47310 ,2,14956,175825 ,2,14957,45 ,2,14958,29935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,29925 ,2,14963,265950 ,2,14964,274465 ,2,14965,545200 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,560265 ,2,14970,75 ,2,14971,285390 ,2,829,45 ,2,15024,613640 ,2,14978,47520 ,2,14956,176010 ,2,14957,45 ,2,14958,30165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30155 ,2,14963,265735 ,2,14964,280655 ,2,14965,545320 ,2,14966,560275 ,2,14967,45 ,2,14968,75 ,2,14969,560270 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,47750 ,2,14956,176000 ,2,14957,45 ,2,14958,30145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30135 ,2,14963,265735 ,2,14964,280655 ,2,14965,545315 ,2,14966,560285 ,2,14967,45 ,2,14968,75 ,2,14969,560280 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,47990 ,2,14956,175965 ,2,14957,45 ,2,14958,30125 ,2,14959,30060 ,2,14960,75 ,2,14961,45 ,2,14962,30050 ,2,14963,265735 ,2,14964,280655 ,2,14965,545300 ,2,14966,560330 ,2,14967,45 ,2,14968,75 ,2,14969,560290 ,2,14970,29965 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,48050 ,2,14956,175945 ,2,14957,45 ,2,14958,30015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30005 ,2,14963,265735 ,2,14964,280655 ,2,14965,545265 ,2,14966,558575 ,2,14967,45 ,2,14968,75 ,2,14969,560340 ,2,14970,29995 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,48325 ,2,14956,175920 ,2,14957,45 ,2,14958,30040 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30025 ,2,14963,266020 ,2,14964,280665 ,2,14965,545280 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560360 ,2,14970,75 ,2,14971,285515 ,2,829,45 ,2,15024,613640 ,2,14978,49670 ,2,14956,176110 ,2,14957,45 ,2,14958,30255 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30245 ,2,14963,266070 ,2,14964,280645 ,2,14965,45 ,2,14966,560400 ,2,14967,45 ,2,14968,30225 ,2,14969,560395 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,49755 ,2,14956,176060 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30235 ,2,14963,266060 ,2,14964,280645 ,2,14965,45 ,2,14966,560410 ,2,14967,45 ,2,14968,75 ,2,14969,560400 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,49925 ,2,14956,176080 ,2,14957,45 ,2,14958,30285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30275 ,2,14963,266070 ,2,14964,280645 ,2,14965,45 ,2,14966,560420 ,2,14967,45 ,2,14968,30265 ,2,14969,560415 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,50100 ,2,14956,8220 ,2,14957,45 ,2,14958,33110 ,2,14959,30435 ,2,14960,30365 ,2,14961,45 ,2,14962,75 ,2,14963,266120 ,2,14964,280675 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,50515 ,2,14956,176240 ,2,14957,45 ,2,14958,30385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30375 ,2,14963,266130 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560455 ,2,14970,75 ,2,14971,285690 ,2,829,45 ,2,15024,613640 ,2,14978,50590 ,2,14956,177725 ,2,14957,45 ,2,14958,30465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30455 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560460 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,50920 ,2,14956,177705 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,32125 ,2,14963,266140 ,2,14964,280675 ,2,14965,545750 ,2,14966,600065 ,2,14967,45 ,2,14968,30475 ,2,14969,600440 ,2,14970,75 ,2,14971,285760 ,2,829,45 ,2,15024,613640 ,2,14978,51210 ,2,14956,176355 ,2,14957,45 ,2,14958,30495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30485 ,2,14963,266130 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560475 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,51565 ,2,14956,176390 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30535 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560510 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,51645 ,2,14956,177550 ,2,14957,45 ,2,14958,31570 ,2,14959,30850 ,2,14960,30575 ,2,14961,45 ,2,14962,30565 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,560460 ,2,14967,45 ,2,14968,30555 ,2,14969,560520 ,2,14970,30545 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,51810 ,2,14956,176575 ,2,14957,45 ,2,14958,30770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30760 ,2,14963,265760 ,2,14964,280655 ,2,14965,545420 ,2,14966,560535 ,2,14967,45 ,2,14968,75 ,2,14969,560525 ,2,14970,30595 ,2,14971,285950 ,2,829,45 ,2,15024,613640 ,2,14978,51985 ,2,14956,176565 ,2,14957,45 ,2,14958,30750 ,2,14959,30670 ,2,14960,75 ,2,14961,45 ,2,14962,30640 ,2,14963,265760 ,2,14964,280655 ,2,14965,545360 ,2,14966,560545 ,2,14967,45 ,2,14968,75 ,2,14969,560540 ,2,14970,30605 ,2,14971,285980 ,2,829,45 ,2,15024,613975 ,2,14978,52395 ,2,14956,176460 ,2,14957,45 ,2,14958,30660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30650 ,2,14963,265725 ,2,14964,280655 ,2,14965,545370 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560560 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,52860 ,2,14956,176490 ,2,14957,45 ,2,14958,30715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30705 ,2,14963,265760 ,2,14964,280655 ,2,14965,545380 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560575 ,2,14970,30695 ,2,14971,285900 ,2,829,45 ,2,15024,613640 ,2,14978,53015 ,2,14956,176620 ,2,14957,45 ,2,14958,30805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,30795 ,2,14963,265760 ,2,14964,280655 ,2,14965,545430 ,2,14966,560595 ,2,14967,45 ,2,14968,75 ,2,14969,560590 ,2,14970,30785 ,2,14971,285960 ,2,829,45 ,2,15024,613640 ,2,14978,53185 ,2,14956,177000 ,2,14957,45 ,2,14958,31080 ,2,14959,31025 ,2,14960,75 ,2,14961,45 ,2,14962,31015 ,2,14963,266150 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,31005 ,2,14969,560655 ,2,14970,30950 ,2,14971,285990 ,2,829,45 ,2,15024,613640 ,2,14978,53280 ,2,14956,177095 ,2,14957,45 ,2,14958,31100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,31090 ,2,14963,266165 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560665 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,53365 ,2,14956,177260 ,2,14957,45 ,2,14958,31290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,31255 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560750 ,2,14970,75 ,2,14971,286115 ,2,829,45 ,2,15024,613640 ,2,14978,53905 ,2,14956,177450 ,2,14957,45 ,2,14958,31340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,31320 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560770 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,53965 ,2,14956,177315 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,31360 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,31350 ,2,14969,560775 ,2,14970,75 ,2,14971,286175 ,2,829,45 ,2,15024,613640 ,2,14978,54140 ,2,14956,177600 ,2,14957,45 ,2,14958,31825 ,2,14959,31670 ,2,14960,75 ,2,14961,45 ,2,14962,31660 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,560460 ,2,14967,45 ,2,14968,75 ,2,14969,560890 ,2,14970,31640 ,2,14971,286260 ,2,829,45 ,2,15024,613640 ,2,14978,55915 ,2,14956,177770 ,2,14957,45 ,2,14958,32175 ,2,14959,45 ,2,14960,32165 ,2,14961,45 ,2,14962,32155 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,560465 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,56195 ,2,14956,178705 ,2,14957,45 ,2,14958,32725 ,2,14959,32460 ,2,14960,32450 ,2,14961,45 ,2,14962,32440 ,2,14963,266230 ,2,14964,280675 ,2,14965,545790 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561095 ,2,14970,75 ,2,14971,287130 ,2,829,45 ,2,15024,614705 ,2,14978,56420 ,2,14956,178595 ,2,14957,45 ,2,14958,32585 ,2,14959,45 ,2,14960,32560 ,2,14961,45 ,2,14962,32550 ,2,14963,266230 ,2,14964,280675 ,2,14965,545810 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561120 ,2,14970,75 ,2,14971,287060 ,2,829,45 ,2,15024,613640 ,2,14978,56580 ,2,14956,8240 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,32575 ,2,14963,266240 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,57345 ,2,14956,178790 ,2,14957,45 ,2,14958,32765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,32745 ,2,14963,265345 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,561180 ,2,14970,75 ,2,14971,287080 ,2,829,45 ,2,15024,613640 ,2,14978,57475 ,2,14956,178745 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,32755 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,561185 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,57705 ,2,14956,179230 ,2,14957,45 ,2,14958,33230 ,2,14959,45 ,2,14960,33220 ,2,14961,45 ,2,14962,33120 ,2,14963,266195 ,2,14964,280675 ,2,14965,545885 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561250 ,2,14970,75 ,2,14971,287445 ,2,829,45 ,2,15024,613640 ,2,14978,57800 ,2,14956,12335 ,2,14957,45 ,2,14958,33160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33130 ,2,14963,266250 ,2,14964,280675 ,2,14965,545905 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561295 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,57850 ,2,14956,179070 ,2,14957,45 ,2,14958,33180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33170 ,2,14963,266230 ,2,14964,280675 ,2,14965,545915 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561300 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,57920 ,2,14956,179140 ,2,14957,45 ,2,14958,33200 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33190 ,2,14963,266230 ,2,14964,280675 ,2,14965,545925 ,2,14966,561325 ,2,14967,45 ,2,14968,75 ,2,14969,561310 ,2,14970,75 ,2,14971,287330 ,2,829,45 ,2,15024,613640 ,2,14978,58180 ,2,14956,179860 ,2,14957,45 ,2,14958,33545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33535 ,2,14963,266260 ,2,14964,274475 ,2,14965,45 ,2,14966,561385 ,2,14967,45 ,2,14968,33300 ,2,14969,561370 ,2,14970,75 ,2,14971,287560 ,2,829,45 ,2,15024,613640 ,2,14978,58710 ,2,14956,179620 ,2,14957,45 ,2,14958,33475 ,2,14959,33335 ,2,14960,75 ,2,14961,45 ,2,14962,33325 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,33315 ,2,14969,561375 ,2,14970,75 ,2,14971,287575 ,2,829,45 ,2,15024,616170 ,2,14978,59385 ,2,14956,179690 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33485 ,2,14963,266260 ,2,14964,274475 ,2,14965,45 ,2,14966,561380 ,2,14967,45 ,2,14968,75 ,2,14969,561390 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,59750 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,266260 ,2,14964,274475 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,59890 ,2,14956,180065 ,2,14957,45 ,2,14958,33745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33730 ,2,14963,265890 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561440 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,59940 ,2,14956,13130 ,2,14957,45 ,2,14958,33820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33810 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616170 ,2,14978,60170 ,2,14956,180915 ,2,14957,45 ,2,14958,34350 ,2,14959,33945 ,2,14960,75 ,2,14961,45 ,2,14962,33930 ,2,14963,265900 ,2,14964,274465 ,2,14965,45 ,2,14966,561490 ,2,14967,45 ,2,14968,33900 ,2,14969,561465 ,2,14970,33840 ,2,14971,288210 ,2,829,45 ,2,15024,613640 ,2,14978,60230 ,2,14956,180220 ,2,14957,45 ,2,14958,33920 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,33910 ,2,14963,265900 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561495 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,60350 ,2,14956,180845 ,2,14957,45 ,2,14958,34340 ,2,14959,33975 ,2,14960,75 ,2,14961,45 ,2,14962,33965 ,2,14963,265900 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,33955 ,2,14969,561505 ,2,14970,75 ,2,14971,288280 ,2,829,45 ,2,15024,614705 ,2,14978,60910 ,2,14956,8220 ,2,14957,45 ,2,14958,34045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,266280 ,2,14964,280570 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,61110 ,2,14956,180755 ,2,14957,45 ,2,14958,34300 ,2,14959,34280 ,2,14960,75 ,2,14961,45 ,2,14962,34270 ,2,14963,265900 ,2,14964,274465 ,2,14965,45 ,2,14966,561490 ,2,14967,45 ,2,14968,34260 ,2,14969,561510 ,2,14970,34170 ,2,14971,288615 ,2,829,45 ,2,15024,614705 ,2,14978,61695 ,2,14956,180960 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,34360 ,2,14963,265860 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561525 ,2,14970,75 ,2,14971,288875 ,2,829,45 ,2,15024,613640 ,2,14978,61810 ,2,14956,180980 ,2,14957,45 ,2,14958,34380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,34370 ,2,14963,265860 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561555 ,2,14970,75 ,2,14971,288890 ,2,829,45 ,2,15024,613640 ,2,14978,61970 ,2,14956,181090 ,2,14957,45 ,2,14958,34440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,34430 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561565 ,2,14970,75 ,2,14971,288910 ,2,829,45 ,2,15024,613640 ,2,14978,62045 ,2,14956,181510 ,2,14957,45 ,2,14958,34745 ,2,14959,34515 ,2,14960,75 ,2,14961,45 ,2,14962,34500 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559025 ,2,14967,45 ,2,14968,75 ,2,14969,561575 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,62240 ,2,14956,181590 ,2,14957,45 ,2,14958,34800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,34790 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,34780 ,2,14969,561580 ,2,14970,75 ,2,14971,289225 ,2,829,45 ,2,15024,613640 ,2,14978,62360 ,2,14956,181615 ,2,14957,45 ,2,14958,34890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,34880 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,34870 ,2,14969,561585 ,2,14970,75 ,2,14971,289275 ,2,829,45 ,2,15024,614705 ,2,14978,62690 ,2,14956,167310 ,2,14957,45 ,2,14958,35025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35000 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561630 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,62870 ,2,14956,181665 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,266325 ,2,14964,280550 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,561640 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,62910 ,2,14956,181825 ,2,14957,45 ,2,14958,35100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35090 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561655 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,63095 ,2,14956,181725 ,2,14957,45 ,2,14958,35135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35120 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561670 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,63265 ,2,14956,182360 ,2,14957,45 ,2,14958,35490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35480 ,2,14963,265860 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,35470 ,2,14969,561680 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,63365 ,2,14956,182575 ,2,14957,45 ,2,14958,35510 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35500 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561685 ,2,14970,75 ,2,14971,289725 ,2,829,45 ,2,15024,616170 ,2,14978,63440 ,2,14956,182585 ,2,14957,45 ,2,14958,35660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35650 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561705 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,63565 ,2,14956,182675 ,2,14957,45 ,2,14958,35695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35685 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,35670 ,2,14969,561710 ,2,14970,75 ,2,14971,289845 ,2,829,45 ,2,15024,613640 ,2,14978,64170 ,2,14956,182705 ,2,14957,45 ,2,14958,35740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35715 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,35705 ,2,14969,561715 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,64225 ,2,14956,182735 ,2,14957,45 ,2,14958,35770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35760 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,35750 ,2,14969,561760 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,64325 ,2,14956,182915 ,2,14957,45 ,2,14958,35800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35790 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561765 ,2,14970,75 ,2,14971,289920 ,2,829,45 ,2,15024,613640 ,2,14978,64545 ,2,14956,183015 ,2,14957,45 ,2,14958,35880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35870 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,35860 ,2,14969,561770 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,64640 ,2,14956,183095 ,2,14957,45 ,2,14958,35920 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35910 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,35890 ,2,14969,561775 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,64845 ,2,14956,183105 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35930 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561785 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,64920 ,2,14956,183115 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35940 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561795 ,2,14967,45 ,2,14968,75 ,2,14969,561790 ,2,14970,75 ,2,14971,289940 ,2,829,45 ,2,15024,614705 ,2,14978,65410 ,2,14956,183145 ,2,14957,45 ,2,14958,35980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,35970 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561800 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,65485 ,2,14956,183155 ,2,14957,45 ,2,14958,36020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36010 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36000 ,2,14969,561825 ,2,14970,75 ,2,14971,289990 ,2,829,45 ,2,15024,613640 ,2,14978,66365 ,2,14956,184055 ,2,14957,45 ,2,14958,36430 ,2,14959,36040 ,2,14960,75 ,2,14961,45 ,2,14962,36030 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561830 ,2,14970,75 ,2,14971,290000 ,2,829,45 ,2,15024,613640 ,2,14978,66615 ,2,14956,184075 ,2,14957,45 ,2,14958,36470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36460 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36450 ,2,14969,561835 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,66730 ,2,14956,184085 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36480 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561840 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,66790 ,2,14956,184105 ,2,14957,45 ,2,14958,36530 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36520 ,2,14963,265850 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36510 ,2,14969,561860 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,67025 ,2,14956,184115 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36550 ,2,14963,265890 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36540 ,2,14969,561865 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,67060 ,2,14956,184185 ,2,14957,45 ,2,14958,36570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36560 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561870 ,2,14970,75 ,2,14971,290460 ,2,829,45 ,2,15024,614705 ,2,14978,67345 ,2,14956,184250 ,2,14957,45 ,2,14958,36625 ,2,14959,45 ,2,14960,36615 ,2,14961,45 ,2,14962,36605 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561875 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,67535 ,2,14956,184295 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36635 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561795 ,2,14967,45 ,2,14968,75 ,2,14969,561905 ,2,14970,75 ,2,14971,290515 ,2,829,45 ,2,15024,613640 ,2,14978,67680 ,2,14956,184325 ,2,14957,45 ,2,14958,36670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36660 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36650 ,2,14969,561910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,67875 ,2,14956,184340 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36680 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561915 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,68025 ,2,14956,184350 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36720 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561795 ,2,14967,45 ,2,14968,75 ,2,14969,561920 ,2,14970,75 ,2,14971,290525 ,2,829,45 ,2,15024,613640 ,2,14978,68790 ,2,14956,184370 ,2,14957,45 ,2,14958,36740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36730 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561925 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,69015 ,2,14956,184515 ,2,14957,45 ,2,14958,36760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36750 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561930 ,2,14970,75 ,2,14971,290535 ,2,829,45 ,2,15024,613640 ,2,14978,69460 ,2,14956,184570 ,2,14957,45 ,2,14958,36840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36830 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561940 ,2,14970,75 ,2,14971,290580 ,2,829,45 ,2,15024,613640 ,2,14978,69720 ,2,14956,184620 ,2,14957,45 ,2,14958,36880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36870 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36860 ,2,14969,561965 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,69800 ,2,14956,184640 ,2,14957,45 ,2,14958,36900 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36890 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561970 ,2,14970,75 ,2,14971,290625 ,2,829,45 ,2,15024,613640 ,2,14978,70075 ,2,14956,184670 ,2,14957,45 ,2,14958,36945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36935 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,36925 ,2,14969,561975 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616170 ,2,14978,70200 ,2,14956,184725 ,2,14957,45 ,2,14958,36965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,36955 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561980 ,2,14970,75 ,2,14971,290655 ,2,829,45 ,2,15024,613640 ,2,14978,70275 ,2,14956,185015 ,2,14957,45 ,2,14958,37095 ,2,14959,36995 ,2,14960,36985 ,2,14961,45 ,2,14962,36975 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,561985 ,2,14970,75 ,2,14971,290665 ,2,829,45 ,2,15024,614705 ,2,14978,70515 ,2,14956,185495 ,2,14957,45 ,2,14958,37335 ,2,14959,37145 ,2,14960,75 ,2,14961,45 ,2,14962,37105 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,561995 ,2,14970,75 ,2,14971,290825 ,2,829,45 ,2,15024,614705 ,2,14978,70685 ,2,14956,185505 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37345 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561795 ,2,14967,45 ,2,14968,75 ,2,14969,562060 ,2,14970,75 ,2,14971,291100 ,2,829,45 ,2,15024,613640 ,2,14978,70880 ,2,14956,185515 ,2,14957,45 ,2,14958,37375 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37365 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,37355 ,2,14969,562065 ,2,14970,75 ,2,14971,291110 ,2,829,45 ,2,15024,614705 ,2,14978,71135 ,2,14956,185535 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37385 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562070 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,71280 ,2,14956,185635 ,2,14957,45 ,2,14958,37405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37395 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,562115 ,2,14967,45 ,2,14968,75 ,2,14969,562075 ,2,14970,75 ,2,14971,291120 ,2,829,45 ,2,15024,613640 ,2,14978,71430 ,2,14956,185840 ,2,14957,45 ,2,14958,37490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37480 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562120 ,2,14970,75 ,2,14971,291175 ,2,829,45 ,2,15024,613640 ,2,14978,71590 ,2,14956,185905 ,2,14957,45 ,2,14958,37520 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37510 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,562115 ,2,14967,45 ,2,14968,75 ,2,14969,562125 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,71860 ,2,14956,185990 ,2,14957,45 ,2,14958,37575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,37565 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,37555 ,2,14969,562130 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,72045 ,2,14956,186685 ,2,14957,45 ,2,14958,37920 ,2,14959,37600 ,2,14960,75 ,2,14961,45 ,2,14962,37590 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,562135 ,2,14970,75 ,2,14971,291240 ,2,829,45 ,2,15024,613640 ,2,14978,72185 ,2,14956,186695 ,2,14957,45 ,2,14958,38015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38005 ,2,14963,265900 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,37995 ,2,14969,562210 ,2,14970,37930 ,2,14971,291640 ,2,829,45 ,2,15024,613640 ,2,14978,72525 ,2,14956,186705 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38025 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562215 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,72635 ,2,14956,186785 ,2,14957,45 ,2,14958,38075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38045 ,2,14963,265860 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38035 ,2,14969,562225 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,72715 ,2,14956,186805 ,2,14957,45 ,2,14958,38095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38085 ,2,14963,265850 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,562230 ,2,14970,75 ,2,14971,291700 ,2,829,45 ,2,15024,613640 ,2,14978,72890 ,2,14956,186875 ,2,14957,45 ,2,14958,38125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38115 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38105 ,2,14969,562235 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,73255 ,2,14956,187320 ,2,14957,45 ,2,14958,38145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38135 ,2,14963,265850 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,562240 ,2,14970,75 ,2,14971,291710 ,2,829,45 ,2,15024,613640 ,2,14978,73470 ,2,14956,187340 ,2,14957,45 ,2,14958,38310 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38300 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,562250 ,2,14970,75 ,2,14971,291425 ,2,829,45 ,2,15024,613640 ,2,14978,73745 ,2,14956,187350 ,2,14957,45 ,2,14958,38335 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38320 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562255 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,73810 ,2,14956,187725 ,2,14957,45 ,2,14958,38550 ,2,14959,38355 ,2,14960,75 ,2,14961,45 ,2,14962,38345 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,562260 ,2,14970,75 ,2,14971,291795 ,2,829,45 ,2,15024,613640 ,2,14978,73905 ,2,14956,187750 ,2,14957,45 ,2,14958,38580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38570 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38560 ,2,14969,562305 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,73970 ,2,14956,187770 ,2,14957,45 ,2,14958,38630 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38620 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38610 ,2,14969,562310 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,74045 ,2,14956,187830 ,2,14957,45 ,2,14958,38660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38650 ,2,14963,265860 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38640 ,2,14969,562315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,74185 ,2,14956,187850 ,2,14957,45 ,2,14958,38725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38680 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38670 ,2,14969,562325 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,74255 ,2,14956,187935 ,2,14957,45 ,2,14958,38755 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38745 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38735 ,2,14969,562330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,74500 ,2,14956,187945 ,2,14957,45 ,2,14958,38780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38770 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562335 ,2,14970,75 ,2,14971,290990 ,2,829,45 ,2,15024,613640 ,2,14978,76725 ,2,14956,187960 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38790 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,76845 ,2,14956,187980 ,2,14957,45 ,2,14958,38830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38820 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38800 ,2,14969,562365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,77130 ,2,14956,187990 ,2,14957,45 ,2,14958,38860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38850 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38840 ,2,14969,562370 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,77260 ,2,14956,188020 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38870 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562380 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,77490 ,2,14956,188030 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38880 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561795 ,2,14967,45 ,2,14968,75 ,2,14969,562395 ,2,14970,75 ,2,14971,291455 ,2,829,45 ,2,15024,613640 ,2,14978,77650 ,2,14956,188175 ,2,14957,45 ,2,14958,38965 ,2,14959,38945 ,2,14960,75 ,2,14961,45 ,2,14962,38935 ,2,14963,265900 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38890 ,2,14969,562400 ,2,14970,75 ,2,14971,292065 ,2,829,45 ,2,15024,613640 ,2,14978,77705 ,2,14956,188195 ,2,14957,45 ,2,14958,38995 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,38985 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,38975 ,2,14969,562410 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,77785 ,2,14956,188305 ,2,14957,45 ,2,14958,39055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39045 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,39005 ,2,14969,562440 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,77895 ,2,14956,188315 ,2,14957,45 ,2,14958,39090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39075 ,2,14963,265850 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,39065 ,2,14969,562445 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,78325 ,2,14956,188355 ,2,14957,45 ,2,14958,39120 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39110 ,2,14963,265840 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,39100 ,2,14969,562450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,78720 ,2,14956,188365 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39155 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,562455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,78950 ,2,14956,188440 ,2,14957,45 ,2,14958,39175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39165 ,2,14963,265930 ,2,14964,274465 ,2,14965,45 ,2,14966,561635 ,2,14967,45 ,2,14968,75 ,2,14969,562460 ,2,14970,75 ,2,14971,292240 ,2,829,45 ,2,15024,613640 ,2,14978,79055 ,2,14956,188450 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39210 ,2,14963,265910 ,2,14964,274465 ,2,14965,45 ,2,14966,561795 ,2,14967,45 ,2,14968,75 ,2,14969,562470 ,2,14970,75 ,2,14971,291630 ,2,829,45 ,2,15024,613640 ,2,14978,79180 ,2,14956,188945 ,2,14957,45 ,2,14958,39430 ,2,14959,39300 ,2,14960,75 ,2,14961,45 ,2,14962,39290 ,2,14963,266335 ,2,14964,274465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,559740 ,2,14970,75 ,2,14971,284740 ,2,829,45 ,2,15024,613640 ,2,14978,79250 ,2,14956,189115 ,2,14957,45 ,2,14958,39460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39450 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,559670 ,2,14967,45 ,2,14968,75 ,2,14969,562505 ,2,14970,75 ,2,14971,292620 ,2,829,45 ,2,15024,613640 ,2,14978,79305 ,2,14956,189145 ,2,14957,45 ,2,14958,39495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39485 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,562515 ,2,14967,45 ,2,14968,75 ,2,14969,562510 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614045 ,2,14978,79385 ,2,14956,189155 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39535 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,562530 ,2,14967,45 ,2,14968,75 ,2,14969,562525 ,2,14970,75 ,2,14971,292650 ,2,829,45 ,2,15024,613640 ,2,14978,79465 ,2,14956,189175 ,2,14957,45 ,2,14958,39555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39545 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,559670 ,2,14967,45 ,2,14968,75 ,2,14969,562535 ,2,14970,75 ,2,14971,292665 ,2,829,45 ,2,15024,613640 ,2,14978,79865 ,2,14956,189185 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39605 ,2,14963,266345 ,2,14964,274425 ,2,14965,45 ,2,14966,562580 ,2,14967,45 ,2,14968,75 ,2,14969,562540 ,2,14970,75 ,2,14971,292675 ,2,829,45 ,2,15024,613640 ,2,14978,79980 ,2,14956,8220 ,2,14957,45 ,2,14958,41565 ,2,14959,45 ,2,14960,41555 ,2,14961,45 ,2,14962,75 ,2,14963,266355 ,2,14964,274485 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,80050 ,2,14956,189575 ,2,14957,45 ,2,14958,39815 ,2,14959,45 ,2,14960,39775 ,2,14961,45 ,2,14962,39765 ,2,14963,266370 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562615 ,2,14970,75 ,2,14971,292765 ,2,829,45 ,2,15024,613640 ,2,14978,80130 ,2,14956,189655 ,2,14957,45 ,2,14958,39855 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,39845 ,2,14963,266230 ,2,14964,280675 ,2,14965,546050 ,2,14966,562655 ,2,14967,45 ,2,14968,75 ,2,14969,562650 ,2,14970,75 ,2,14971,292940 ,2,829,45 ,2,15024,613640 ,2,14978,80205 ,2,14956,8220 ,2,14957,45 ,2,14958,41360 ,2,14959,45 ,2,14960,39875 ,2,14961,45 ,2,14962,75 ,2,14963,266400 ,2,14964,280665 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,80340 ,2,14956,192375 ,2,14957,45 ,2,14958,40045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40015 ,2,14963,266430 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562685 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,80415 ,2,14956,191640 ,2,14957,45 ,2,14958,40845 ,2,14959,40205 ,2,14960,40175 ,2,14961,45 ,2,14962,40165 ,2,14963,266430 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562715 ,2,14970,40145 ,2,14971,293115 ,2,829,45 ,2,15024,613640 ,2,14978,80510 ,2,14956,190230 ,2,14957,45 ,2,14958,40435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40415 ,2,14963,266450 ,2,14964,280655 ,2,14965,546060 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,80570 ,2,14956,190300 ,2,14957,45 ,2,14958,40465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40455 ,2,14963,266450 ,2,14964,280655 ,2,14965,546085 ,2,14966,562750 ,2,14967,45 ,2,14968,75 ,2,14969,562730 ,2,14970,40445 ,2,14971,293590 ,2,829,45 ,2,15024,613640 ,2,14978,80670 ,2,14956,6460 ,2,14957,45 ,2,14958,40625 ,2,14959,45 ,2,14960,40555 ,2,14961,45 ,2,14962,40545 ,2,14963,265670 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562775 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,80750 ,2,14956,190460 ,2,14957,45 ,2,14958,40595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40565 ,2,14963,265660 ,2,14964,280665 ,2,14965,45 ,2,14966,562790 ,2,14967,45 ,2,14968,75 ,2,14969,562785 ,2,14970,75 ,2,14971,293800 ,2,829,45 ,2,15024,613640 ,2,14978,80845 ,2,14956,190520 ,2,14957,45 ,2,14958,40615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40605 ,2,14963,265660 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562815 ,2,14970,75 ,2,14971,293790 ,2,829,45 ,2,15024,613640 ,2,14978,80925 ,2,14956,190760 ,2,14957,45 ,2,14958,40755 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40745 ,2,14963,265235 ,2,14964,280590 ,2,14965,546115 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562855 ,2,14970,75 ,2,14971,293810 ,2,829,45 ,2,15024,613640 ,2,14978,81015 ,2,14956,191840 ,2,14957,45 ,2,14958,40950 ,2,14959,40910 ,2,14960,75 ,2,14961,45 ,2,14962,40900 ,2,14963,266430 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562865 ,2,14970,40855 ,2,14971,294050 ,2,829,45 ,2,15024,613640 ,2,14978,81115 ,2,14956,192010 ,2,14957,45 ,2,14958,41010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,40970 ,2,14963,266430 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562875 ,2,14970,75 ,2,14971,294230 ,2,829,45 ,2,15024,613640 ,2,14978,81200 ,2,14956,191880 ,2,14957,45 ,2,14958,41030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41020 ,2,14963,266430 ,2,14964,280665 ,2,14965,45 ,2,14966,562715 ,2,14967,45 ,2,14968,75 ,2,14969,562880 ,2,14970,75 ,2,14971,294290 ,2,829,45 ,2,15024,613640 ,2,14978,81315 ,2,14956,191990 ,2,14957,45 ,2,14958,41065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41055 ,2,14963,266460 ,2,14964,280645 ,2,14965,45 ,2,14966,560400 ,2,14967,45 ,2,14968,41040 ,2,14969,562885 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,81405 ,2,14956,191980 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41125 ,2,14963,266460 ,2,14964,280645 ,2,14965,45 ,2,14966,562910 ,2,14967,45 ,2,14968,41075 ,2,14969,562890 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,81505 ,2,14956,191965 ,2,14957,45 ,2,14958,41115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41085 ,2,14963,266460 ,2,14964,280645 ,2,14965,45 ,2,14966,560420 ,2,14967,45 ,2,14968,75 ,2,14969,562910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,81580 ,2,14956,192085 ,2,14957,45 ,2,14958,41190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41180 ,2,14963,266485 ,2,14964,280645 ,2,14965,45 ,2,14966,562935 ,2,14967,45 ,2,14968,41135 ,2,14969,562915 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,81665 ,2,14956,192065 ,2,14957,45 ,2,14958,41170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41160 ,2,14963,266485 ,2,14964,280645 ,2,14965,45 ,2,14966,562925 ,2,14967,45 ,2,14968,41145 ,2,14969,562920 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,82030 ,2,14956,192210 ,2,14957,45 ,2,14958,41265 ,2,14959,45 ,2,14960,41255 ,2,14961,45 ,2,14962,41245 ,2,14963,266485 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,562940 ,2,14970,75 ,2,14971,294395 ,2,829,45 ,2,15024,613640 ,2,14978,82180 ,2,14956,192640 ,2,14957,45 ,2,14958,41500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41490 ,2,14963,266355 ,2,14964,274485 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,41480 ,2,14969,562995 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,82460 ,2,14956,192730 ,2,14957,45 ,2,14958,41530 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41520 ,2,14963,266515 ,2,14964,280665 ,2,14965,546165 ,2,14966,563005 ,2,14967,45 ,2,14968,75 ,2,14969,563000 ,2,14970,75 ,2,14971,294775 ,2,829,45 ,2,15024,613640 ,2,14978,82885 ,2,14956,192920 ,2,14957,45 ,2,14958,41655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41645 ,2,14963,266550 ,2,14964,280590 ,2,14965,546175 ,2,14966,563040 ,2,14967,45 ,2,14968,75 ,2,14969,563025 ,2,14970,75 ,2,14971,294835 ,2,829,45 ,2,15024,613640 ,2,14978,83135 ,2,14956,6135 ,2,14957,45 ,2,14958,41675 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41665 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563045 ,2,14970,75 ,2,14971,294870 ,2,829,45 ,2,15024,613640 ,2,14978,83825 ,2,14956,197185 ,2,14957,45 ,2,14958,44120 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44110 ,2,14963,267120 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563050 ,2,14970,75 ,2,14971,294880 ,2,829,45 ,2,15024,614705 ,2,14978,84220 ,2,14956,8220 ,2,14957,45 ,2,14958,42240 ,2,14959,41770 ,2,14960,41705 ,2,14961,45 ,2,14962,75 ,2,14963,266980 ,2,14964,274495 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,84500 ,2,14956,193435 ,2,14957,45 ,2,14958,41760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41715 ,2,14963,266920 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563075 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,84575 ,2,14956,193530 ,2,14957,45 ,2,14958,41800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41780 ,2,14963,266790 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563080 ,2,14970,75 ,2,14971,294995 ,2,829,45 ,2,15024,613640 ,2,14978,84730 ,2,14956,193485 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41790 ,2,14963,267120 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563085 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,84810 ,2,14956,193695 ,2,14957,45 ,2,14958,41975 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41885 ,2,14963,266865 ,2,14964,274495 ,2,14965,45 ,2,14966,563110 ,2,14967,45 ,2,14968,75 ,2,14969,563105 ,2,14970,75 ,2,14971,295025 ,2,829,45 ,2,15024,613640 ,2,14978,84900 ,2,14956,193580 ,2,14957,45 ,2,14958,41830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41820 ,2,14963,266770 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563110 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,85320 ,2,14956,193685 ,2,14957,45 ,2,14958,41905 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41895 ,2,14963,266875 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563115 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,85430 ,2,14956,193650 ,2,14957,45 ,2,14958,41940 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,41930 ,2,14963,266695 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563125 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616170 ,2,14978,85680 ,2,14956,193855 ,2,14957,45 ,2,14958,42045 ,2,14959,45 ,2,14960,42035 ,2,14961,45 ,2,14962,41995 ,2,14963,266930 ,2,14964,274495 ,2,14965,45 ,2,14966,563135 ,2,14967,45 ,2,14968,75 ,2,14969,563130 ,2,14970,75 ,2,14971,295245 ,2,829,45 ,2,15024,614045 ,2,14978,85925 ,2,14956,193740 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,266325 ,2,14964,280550 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,86025 ,2,14956,193790 ,2,14957,45 ,2,14958,42015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42005 ,2,14963,266715 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563140 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,86140 ,2,14956,193965 ,2,14957,45 ,2,14958,42105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42095 ,2,14963,266590 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,42085 ,2,14969,563165 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,86515 ,2,14956,193985 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42120 ,2,14963,266590 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563170 ,2,14970,75 ,2,14971,295345 ,2,829,45 ,2,15024,613640 ,2,14978,86920 ,2,14956,194190 ,2,14957,45 ,2,14958,42215 ,2,14959,45 ,2,14960,42205 ,2,14961,45 ,2,14962,42195 ,2,14963,267000 ,2,14964,274505 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563175 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,87020 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,42150 ,2,14961,45 ,2,14962,75 ,2,14963,267000 ,2,14964,274505 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,87095 ,2,14956,194240 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42260 ,2,14963,266610 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563180 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,87305 ,2,14956,194275 ,2,14957,45 ,2,14958,42310 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42300 ,2,14963,266610 ,2,14964,274495 ,2,14965,45 ,2,14966,563190 ,2,14967,45 ,2,14968,75 ,2,14969,563185 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,87855 ,2,14956,194380 ,2,14957,45 ,2,14958,42340 ,2,14959,45 ,2,14960,42330 ,2,14961,45 ,2,14962,42320 ,2,14963,266895 ,2,14964,274495 ,2,14965,45 ,2,14966,563135 ,2,14967,45 ,2,14968,75 ,2,14969,563195 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,88100 ,2,14956,194480 ,2,14957,45 ,2,14958,42415 ,2,14959,45 ,2,14960,42360 ,2,14961,45 ,2,14962,42350 ,2,14963,266675 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563240 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,88185 ,2,14956,194535 ,2,14957,45 ,2,14958,42450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42435 ,2,14963,266790 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563255 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,88250 ,2,14956,194555 ,2,14957,45 ,2,14958,42470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42460 ,2,14963,266610 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563265 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,88405 ,2,14956,194690 ,2,14957,45 ,2,14958,42520 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42480 ,2,14963,266940 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563270 ,2,14970,75 ,2,14971,295640 ,2,829,45 ,2,15024,613640 ,2,14978,88465 ,2,14956,194620 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42540 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563290 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,88550 ,2,14956,194610 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42550 ,2,14963,267015 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563295 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616170 ,2,14978,88935 ,2,14956,194700 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42575 ,2,14963,266590 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563300 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,89250 ,2,14956,194710 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42585 ,2,14963,266600 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563305 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,89490 ,2,14956,194835 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,42615 ,2,14961,45 ,2,14962,42595 ,2,14963,266825 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,89660 ,2,14956,194915 ,2,14957,45 ,2,14958,42635 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42625 ,2,14963,266725 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,89940 ,2,14956,194925 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42665 ,2,14963,266910 ,2,14964,274495 ,2,14965,45 ,2,14966,563135 ,2,14967,45 ,2,14968,75 ,2,14969,563330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,91035 ,2,14956,194935 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42675 ,2,14963,266895 ,2,14964,274495 ,2,14965,45 ,2,14966,563135 ,2,14967,45 ,2,14968,75 ,2,14969,563355 ,2,14970,75 ,2,14971,295630 ,2,829,45 ,2,15024,613640 ,2,14978,91625 ,2,14956,195145 ,2,14957,45 ,2,14958,42865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42850 ,2,14963,266910 ,2,14964,274495 ,2,14965,45 ,2,14966,563365 ,2,14967,45 ,2,14968,75 ,2,14969,563360 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,91680 ,2,14956,195095 ,2,14957,45 ,2,14958,42730 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42720 ,2,14963,265415 ,2,14964,280675 ,2,14965,546260 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563375 ,2,14970,42685 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,91800 ,2,14956,195035 ,2,14957,45 ,2,14958,42760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42750 ,2,14963,265445 ,2,14964,280590 ,2,14965,546310 ,2,14966,563425 ,2,14967,45 ,2,14968,75 ,2,14969,563420 ,2,14970,42740 ,2,14971,295770 ,2,829,45 ,2,15024,613640 ,2,14978,92210 ,2,14956,194980 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42780 ,2,14963,265415 ,2,14964,280675 ,2,14965,546320 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600960 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,93570 ,2,14956,195065 ,2,14957,45 ,2,14958,42840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42830 ,2,14963,266210 ,2,14964,280675 ,2,14965,546370 ,2,14966,563450 ,2,14967,45 ,2,14968,75 ,2,14969,563445 ,2,14970,75 ,2,14971,295815 ,2,829,45 ,2,15024,614705 ,2,14978,94845 ,2,14956,195045 ,2,14957,45 ,2,14958,42820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42790 ,2,14963,266210 ,2,14964,280675 ,2,14965,546365 ,2,14966,563460 ,2,14967,45 ,2,14968,75 ,2,14969,563455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,94960 ,2,14956,195200 ,2,14957,45 ,2,14958,42895 ,2,14959,45 ,2,14960,42885 ,2,14961,45 ,2,14962,42875 ,2,14963,266610 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563235 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,95065 ,2,14956,195210 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42930 ,2,14963,266620 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563505 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616170 ,2,14978,95370 ,2,14956,195300 ,2,14957,45 ,2,14958,42950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,42940 ,2,14963,266815 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563510 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,95485 ,2,14956,195345 ,2,14957,45 ,2,14958,43010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43000 ,2,14963,266610 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563190 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,95600 ,2,14956,195380 ,2,14957,45 ,2,14958,43065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43055 ,2,14963,266620 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563515 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,95880 ,2,14956,195855 ,2,14957,45 ,2,14958,43115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43105 ,2,14963,266705 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,96350 ,2,14956,195430 ,2,14957,45 ,2,14958,43135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43125 ,2,14963,267025 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563555 ,2,14970,75 ,2,14971,296020 ,2,829,45 ,2,15024,613640 ,2,14978,97635 ,2,14956,8220 ,2,14957,45 ,2,14958,43235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267045 ,2,14964,280610 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614025 ,2,14978,98080 ,2,14956,195865 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43365 ,2,14963,266705 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563570 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616170 ,2,14978,98530 ,2,14956,195915 ,2,14957,45 ,2,14958,43395 ,2,14959,45 ,2,14960,43385 ,2,14961,45 ,2,14962,43375 ,2,14963,266920 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563590 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,98840 ,2,14956,195935 ,2,14957,45 ,2,14958,43415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43405 ,2,14963,266910 ,2,14964,274495 ,2,14965,45 ,2,14966,563610 ,2,14967,45 ,2,14968,75 ,2,14969,563605 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,98995 ,2,14956,195950 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43425 ,2,14963,266910 ,2,14964,274495 ,2,14965,45 ,2,14966,563330 ,2,14967,45 ,2,14968,75 ,2,14969,563610 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,99185 ,2,14956,195960 ,2,14957,45 ,2,14958,43485 ,2,14959,45 ,2,14960,43475 ,2,14961,45 ,2,14962,43435 ,2,14963,266705 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563615 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,99235 ,2,14956,195980 ,2,14957,45 ,2,14958,43505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43495 ,2,14963,266970 ,2,14964,274495 ,2,14965,45 ,2,14966,563135 ,2,14967,45 ,2,14968,75 ,2,14969,563620 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,99550 ,2,14956,196030 ,2,14957,45 ,2,14958,43540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43530 ,2,14963,266610 ,2,14964,274495 ,2,14965,45 ,2,14966,563190 ,2,14967,45 ,2,14968,75 ,2,14969,563630 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,99610 ,2,14956,196730 ,2,14957,45 ,2,14958,43870 ,2,14959,45 ,2,14960,43590 ,2,14961,45 ,2,14962,43550 ,2,14963,266735 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563635 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,99810 ,2,14956,196585 ,2,14957,45 ,2,14958,43610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43600 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563660 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,99915 ,2,14956,8220 ,2,14957,45 ,2,14958,43705 ,2,14959,45 ,2,14960,43675 ,2,14961,45 ,2,14962,75 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,100250 ,2,14956,196800 ,2,14957,45 ,2,14958,43975 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,43965 ,2,14963,266780 ,2,14964,274495 ,2,14965,45 ,2,14966,563110 ,2,14967,45 ,2,14968,75 ,2,14969,563260 ,2,14970,75 ,2,14971,295570 ,2,829,45 ,2,15024,613640 ,2,14978,100375 ,2,14956,197075 ,2,14957,45 ,2,14958,44045 ,2,14959,45 ,2,14960,43995 ,2,14961,45 ,2,14962,43985 ,2,14963,266685 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563685 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,100480 ,2,14956,197085 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44055 ,2,14963,266590 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563500 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,100740 ,2,14956,197095 ,2,14957,45 ,2,14958,44090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44065 ,2,14963,266725 ,2,14964,274495 ,2,14965,45 ,2,14966,563110 ,2,14967,45 ,2,14968,75 ,2,14969,563325 ,2,14970,75 ,2,14971,295740 ,2,829,45 ,2,15024,613640 ,2,14978,100805 ,2,14956,197130 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44100 ,2,14963,266780 ,2,14964,274495 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563625 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613975 ,2,14978,101025 ,2,14956,269350 ,2,14957,45 ,2,14958,98485 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98475 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,563725 ,2,14967,45 ,2,14968,75 ,2,14969,563720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,622995 ,2,14978,101195 ,2,14956,199435 ,2,14957,45 ,2,14958,46700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46690 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,563735 ,2,14967,45 ,2,14968,75 ,2,14969,563730 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,101250 ,2,14956,199425 ,2,14957,45 ,2,14958,44545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44535 ,2,14963,267180 ,2,14964,274535 ,2,14965,546500 ,2,14966,563745 ,2,14967,45 ,2,14968,75 ,2,14969,563740 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,101540 ,2,14956,197495 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44440 ,2,14963,267150 ,2,14964,274515 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,563750 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,101600 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267150 ,2,14964,274515 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,101700 ,2,14956,197235 ,2,14957,45 ,2,14958,44210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44200 ,2,14963,267150 ,2,14964,274515 ,2,14965,546440 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,563755 ,2,14970,44190 ,2,14971,296930 ,2,829,45 ,2,15024,613640 ,2,14978,101945 ,2,14956,197425 ,2,14957,45 ,2,14958,44230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44220 ,2,14963,267150 ,2,14964,274515 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,563780 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,102175 ,2,14956,197405 ,2,14957,45 ,2,14958,44400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44390 ,2,14963,267140 ,2,14964,274525 ,2,14965,546455 ,2,14966,563800 ,2,14967,45 ,2,14968,75 ,2,14969,563795 ,2,14970,44280 ,2,14971,296985 ,2,829,45 ,2,15024,613640 ,2,14978,102270 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267140 ,2,14964,274525 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,102330 ,2,14956,197360 ,2,14957,45 ,2,14958,44380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44370 ,2,14963,267140 ,2,14964,274525 ,2,14965,546465 ,2,14966,563810 ,2,14967,45 ,2,14968,75 ,2,14969,563805 ,2,14970,44325 ,2,14971,297005 ,2,829,45 ,2,15024,613640 ,2,14978,102395 ,2,14956,197450 ,2,14957,45 ,2,14958,44420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44410 ,2,14963,267150 ,2,14964,274515 ,2,14965,45 ,2,14966,563745 ,2,14967,45 ,2,14968,75 ,2,14969,563850 ,2,14970,75 ,2,14971,297045 ,2,829,45 ,2,15024,613640 ,2,14978,102495 ,2,14956,197460 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44430 ,2,14963,267150 ,2,14964,274515 ,2,14965,546495 ,2,14966,563745 ,2,14967,45 ,2,14968,75 ,2,14969,601120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267180 ,2,14964,274535 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103160 ,2,14956,197570 ,2,14957,45 ,2,14958,44525 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44515 ,2,14963,267180 ,2,14964,274535 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,44505 ,2,14969,563855 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103315 ,2,14956,199365 ,2,14957,45 ,2,14958,46680 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46650 ,2,14963,267230 ,2,14964,274605 ,2,14965,546715 ,2,14966,563875 ,2,14967,45 ,2,14968,75 ,2,14969,563870 ,2,14970,75 ,2,14971,297100 ,2,829,45 ,2,15024,613640 ,2,14978,103375 ,2,14956,199245 ,2,14957,45 ,2,14958,46500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44570 ,2,14963,267230 ,2,14964,274605 ,2,14965,546515 ,2,14966,563920 ,2,14967,45 ,2,14968,75 ,2,14969,563880 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103455 ,2,14956,199235 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46490 ,2,14963,267220 ,2,14964,274555 ,2,14965,546565 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,601135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103645 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103685 ,2,14956,197900 ,2,14957,45 ,2,14958,44800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44790 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,563935 ,2,14967,45 ,2,14968,75 ,2,14969,563930 ,2,14970,75 ,2,14971,297110 ,2,829,45 ,2,15024,613640 ,2,14978,103795 ,2,14956,197740 ,2,14957,45 ,2,14958,44735 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44610 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,563945 ,2,14967,45 ,2,14968,75 ,2,14969,563940 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,103900 ,2,14956,197680 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44725 ,2,14963,267130 ,2,14964,274565 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,563955 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104025 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267130 ,2,14964,274565 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104075 ,2,14956,197610 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44695 ,2,14963,267130 ,2,14964,274565 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,563985 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104150 ,2,14956,197620 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44705 ,2,14963,267130 ,2,14964,274565 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,563990 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104240 ,2,14956,197630 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44715 ,2,14963,267130 ,2,14964,274565 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,563995 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104320 ,2,14956,197990 ,2,14957,45 ,2,14958,44905 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44865 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,564015 ,2,14967,45 ,2,14968,75 ,2,14969,564010 ,2,14970,75 ,2,14971,297260 ,2,829,45 ,2,15024,613640 ,2,14978,104425 ,2,14956,198010 ,2,14957,45 ,2,14958,44980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,44970 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,564055 ,2,14967,45 ,2,14968,75 ,2,14969,564025 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104515 ,2,14956,198035 ,2,14957,45 ,2,14958,45025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45015 ,2,14963,267220 ,2,14964,274555 ,2,14965,546575 ,2,14966,564065 ,2,14967,45 ,2,14968,75 ,2,14969,564060 ,2,14970,75 ,2,14971,297330 ,2,829,45 ,2,15024,613640 ,2,14978,104585 ,2,14956,198065 ,2,14957,45 ,2,14958,45055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45045 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,45035 ,2,14969,564070 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104645 ,2,14956,198095 ,2,14957,45 ,2,14958,45075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45065 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,564080 ,2,14967,45 ,2,14968,75 ,2,14969,564075 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104730 ,2,14956,198115 ,2,14957,45 ,2,14958,45135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45125 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,564090 ,2,14967,45 ,2,14968,75 ,2,14969,564085 ,2,14970,75 ,2,14971,297360 ,2,829,45 ,2,15024,613640 ,2,14978,104840 ,2,14956,198130 ,2,14957,45 ,2,14958,45175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45165 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,563735 ,2,14967,45 ,2,14968,45155 ,2,14969,564115 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,104885 ,2,14956,198320 ,2,14957,45 ,2,14958,45285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45275 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,564125 ,2,14967,45 ,2,14968,75 ,2,14969,564120 ,2,14970,75 ,2,14971,297430 ,2,829,45 ,2,15024,613640 ,2,14978,105020 ,2,14956,198215 ,2,14957,45 ,2,14958,45265 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45255 ,2,14963,267190 ,2,14964,274575 ,2,14965,45 ,2,14966,563735 ,2,14967,45 ,2,14968,75 ,2,14969,564130 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105110 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267190 ,2,14964,274575 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105520 ,2,14956,198140 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45245 ,2,14963,267190 ,2,14964,274575 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105610 ,2,14956,198350 ,2,14957,45 ,2,14958,45330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45320 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,563735 ,2,14967,45 ,2,14968,75 ,2,14969,564140 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105655 ,2,14956,198365 ,2,14957,45 ,2,14958,45370 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45360 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,564080 ,2,14967,45 ,2,14968,75 ,2,14969,564020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105725 ,2,14956,198375 ,2,14957,45 ,2,14958,45390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45380 ,2,14963,267220 ,2,14964,274555 ,2,14965,546585 ,2,14966,564175 ,2,14967,45 ,2,14968,75 ,2,14969,564170 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105820 ,2,14956,199130 ,2,14957,45 ,2,14958,45450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45440 ,2,14963,267220 ,2,14964,274555 ,2,14965,546595 ,2,14966,564185 ,2,14967,45 ,2,14968,75 ,2,14969,564180 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,105880 ,2,14956,199045 ,2,14957,45 ,2,14958,46305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46295 ,2,14963,267210 ,2,14964,274585 ,2,14965,546625 ,2,14966,564195 ,2,14967,45 ,2,14968,75 ,2,14969,564190 ,2,14970,75 ,2,14971,297620 ,2,829,45 ,2,15024,613640 ,2,14978,105965 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106040 ,2,14956,198385 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45540 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564205 ,2,14967,45 ,2,14968,75 ,2,14969,564200 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106120 ,2,14956,198435 ,2,14957,45 ,2,14958,45560 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45550 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564240 ,2,14967,45 ,2,14968,75 ,2,14969,564235 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106190 ,2,14956,198445 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45570 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564205 ,2,14967,45 ,2,14968,75 ,2,14969,564245 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106290 ,2,14956,198470 ,2,14957,45 ,2,14958,45595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45585 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564260 ,2,14967,45 ,2,14968,75 ,2,14969,564250 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106360 ,2,14956,198480 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45605 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564270 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106440 ,2,14956,198540 ,2,14957,45 ,2,14958,45640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45615 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564205 ,2,14967,45 ,2,14968,75 ,2,14969,564275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106500 ,2,14956,198550 ,2,14957,45 ,2,14958,45670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45660 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564290 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106590 ,2,14956,198560 ,2,14957,45 ,2,14958,45700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45690 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564300 ,2,14967,45 ,2,14968,45680 ,2,14969,564295 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106685 ,2,14956,199015 ,2,14957,45 ,2,14958,45870 ,2,14959,45 ,2,14960,45760 ,2,14961,45 ,2,14962,45750 ,2,14963,267210 ,2,14964,274585 ,2,14965,45 ,2,14966,564315 ,2,14967,45 ,2,14968,45710 ,2,14969,564310 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106770 ,2,14956,198570 ,2,14957,45 ,2,14958,45780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45770 ,2,14963,267230 ,2,14964,274605 ,2,14965,45 ,2,14966,564325 ,2,14967,45 ,2,14968,75 ,2,14969,564320 ,2,14970,75 ,2,14971,297695 ,2,829,45 ,2,15024,613640 ,2,14978,106835 ,2,14956,198645 ,2,14957,45 ,2,14958,45800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45790 ,2,14963,267230 ,2,14964,274605 ,2,14965,546635 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564350 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,106930 ,2,14956,198595 ,2,14957,45 ,2,14958,45820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45810 ,2,14963,267230 ,2,14964,274605 ,2,14965,546650 ,2,14966,564360 ,2,14967,45 ,2,14968,75 ,2,14969,564355 ,2,14970,75 ,2,14971,297715 ,2,829,45 ,2,15024,613640 ,2,14978,107020 ,2,14956,198685 ,2,14957,45 ,2,14958,45860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45850 ,2,14963,267230 ,2,14964,274605 ,2,14965,546660 ,2,14966,564375 ,2,14967,45 ,2,14968,75 ,2,14969,564370 ,2,14970,75 ,2,14971,297745 ,2,829,45 ,2,15024,613640 ,2,14978,107110 ,2,14956,198935 ,2,14957,45 ,2,14958,46265 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46220 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,75 ,2,14969,564430 ,2,14970,75 ,2,14971,297810 ,2,829,45 ,2,15024,613640 ,2,14978,107170 ,2,14956,198795 ,2,14957,45 ,2,14958,45960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45950 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564445 ,2,14967,45 ,2,14968,75 ,2,14969,564440 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107275 ,2,14956,198765 ,2,14957,45 ,2,14958,45920 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,45910 ,2,14963,267200 ,2,14964,274595 ,2,14965,546685 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107360 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107430 ,2,14956,198815 ,2,14957,45 ,2,14958,46020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46010 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,46000 ,2,14969,564455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107515 ,2,14956,198860 ,2,14957,45 ,2,14958,46070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46060 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,46050 ,2,14969,564460 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107600 ,2,14956,198870 ,2,14957,45 ,2,14958,46100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46090 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,46080 ,2,14969,564465 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107690 ,2,14956,198880 ,2,14957,45 ,2,14958,46145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46120 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,46110 ,2,14969,564480 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107785 ,2,14956,198890 ,2,14957,45 ,2,14958,46175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46165 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,46155 ,2,14969,564485 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,107850 ,2,14956,198905 ,2,14957,45 ,2,14958,46210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46200 ,2,14963,267200 ,2,14964,274595 ,2,14965,45 ,2,14966,564435 ,2,14967,45 ,2,14968,46190 ,2,14969,564490 ,2,14970,75 ,2,14971,297835 ,2,829,45 ,2,15024,613640 ,2,14978,107935 ,2,14956,199140 ,2,14957,45 ,2,14958,46385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46375 ,2,14963,267220 ,2,14964,274555 ,2,14965,45 ,2,14966,563735 ,2,14967,45 ,2,14968,46335 ,2,14969,564510 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,108005 ,2,14956,199180 ,2,14957,45 ,2,14958,46405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46395 ,2,14963,267220 ,2,14964,274555 ,2,14965,546700 ,2,14966,564520 ,2,14967,45 ,2,14968,75 ,2,14969,564515 ,2,14970,75 ,2,14971,297905 ,2,829,45 ,2,15024,613640 ,2,14978,108095 ,2,14956,199190 ,2,14957,45 ,2,14958,46435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46425 ,2,14963,267220 ,2,14964,274555 ,2,14965,546705 ,2,14966,564525 ,2,14967,45 ,2,14968,75 ,2,14969,564385 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,108160 ,2,14956,199200 ,2,14957,45 ,2,14958,46455 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46445 ,2,14963,267220 ,2,14964,274555 ,2,14965,546710 ,2,14966,564560 ,2,14967,45 ,2,14968,75 ,2,14969,564380 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,108245 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267230 ,2,14964,274605 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,108320 ,2,14956,199255 ,2,14957,45 ,2,14958,46550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46540 ,2,14963,267230 ,2,14964,274605 ,2,14965,45 ,2,14966,564570 ,2,14967,45 ,2,14968,75 ,2,14969,564565 ,2,14970,75 ,2,14971,297945 ,2,829,45 ,2,15024,613640 ,2,14978,108415 ,2,14956,199295 ,2,14957,45 ,2,14958,46575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46560 ,2,14963,267230 ,2,14964,274605 ,2,14965,45 ,2,14966,564580 ,2,14967,45 ,2,14968,75 ,2,14969,564575 ,2,14970,75 ,2,14971,297955 ,2,829,45 ,2,15024,613640 ,2,14978,108485 ,2,14956,199315 ,2,14957,45 ,2,14958,46595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46585 ,2,14963,267230 ,2,14964,274605 ,2,14965,546775 ,2,14966,564590 ,2,14967,45 ,2,14968,75 ,2,14969,564585 ,2,14970,75 ,2,14971,297985 ,2,829,45 ,2,15024,613640 ,2,14978,108575 ,2,14956,199325 ,2,14957,45 ,2,14958,46620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46605 ,2,14963,267230 ,2,14964,274605 ,2,14965,45 ,2,14966,564630 ,2,14967,45 ,2,14968,75 ,2,14969,564595 ,2,14970,75 ,2,14971,298005 ,2,829,45 ,2,15024,613640 ,2,14978,108660 ,2,14956,199335 ,2,14957,45 ,2,14958,46640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46630 ,2,14963,267230 ,2,14964,274605 ,2,14965,45 ,2,14966,564640 ,2,14967,45 ,2,14968,75 ,2,14969,564635 ,2,14970,75 ,2,14971,298015 ,2,829,45 ,2,15024,613640 ,2,14978,108740 ,2,14956,8220 ,2,14957,45 ,2,14958,47120 ,2,14959,45 ,2,14960,46735 ,2,14961,45 ,2,14962,75 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,108800 ,2,14956,199760 ,2,14957,45 ,2,14958,47105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47095 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564660 ,2,14970,75 ,2,14971,298055 ,2,829,45 ,2,15024,613640 ,2,14978,108905 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,108975 ,2,14956,199500 ,2,14957,45 ,2,14958,46810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46800 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,564685 ,2,14967,45 ,2,14968,75 ,2,14969,564665 ,2,14970,75 ,2,14971,298080 ,2,829,45 ,2,15024,613640 ,2,14978,109040 ,2,14956,199520 ,2,14957,45 ,2,14958,46850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46840 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564690 ,2,14970,75 ,2,14971,298090 ,2,829,45 ,2,15024,613640 ,2,14978,109140 ,2,14956,199565 ,2,14957,45 ,2,14958,46915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46870 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,46860 ,2,14969,564715 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,109320 ,2,14956,199615 ,2,14957,45 ,2,14958,46935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46925 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,109410 ,2,14956,199710 ,2,14957,45 ,2,14958,47035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47025 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,564755 ,2,14967,45 ,2,14968,75 ,2,14969,564750 ,2,14970,75 ,2,14971,298180 ,2,829,45 ,2,15024,613640 ,2,14978,109480 ,2,14956,199650 ,2,14957,45 ,2,14958,46985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,46975 ,2,14963,267240 ,2,14964,274655 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564760 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,109550 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267240 ,2,14964,274655 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,109670 ,2,14956,199720 ,2,14957,45 ,2,14958,47055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47045 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564765 ,2,14970,75 ,2,14971,298155 ,2,829,45 ,2,15024,613640 ,2,14978,109755 ,2,14956,199730 ,2,14957,45 ,2,14958,47085 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47075 ,2,14963,267250 ,2,14964,274625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564770 ,2,14970,75 ,2,14971,298135 ,2,829,45 ,2,15024,613640 ,2,14978,109845 ,2,14956,199845 ,2,14957,45 ,2,14958,47150 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47140 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,564755 ,2,14967,45 ,2,14968,75 ,2,14969,564780 ,2,14970,75 ,2,14971,298200 ,2,829,45 ,2,15024,613640 ,2,14978,109960 ,2,14956,199875 ,2,14957,45 ,2,14958,47180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47170 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,47160 ,2,14969,564805 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110025 ,2,14956,199925 ,2,14957,45 ,2,14958,47220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47190 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,564755 ,2,14967,45 ,2,14968,75 ,2,14969,564810 ,2,14970,75 ,2,14971,298225 ,2,829,45 ,2,15024,613640 ,2,14978,110120 ,2,14956,269285 ,2,14957,45 ,2,14958,98415 ,2,14959,47275 ,2,14960,75 ,2,14961,45 ,2,14962,47265 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,563935 ,2,14967,45 ,2,14968,75 ,2,14969,564815 ,2,14970,47240 ,2,14971,298245 ,2,829,45 ,2,15024,613640 ,2,14978,110205 ,2,14956,200250 ,2,14957,45 ,2,14958,47485 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47475 ,2,14963,267270 ,2,14964,274665 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,47285 ,2,14969,564820 ,2,14970,75 ,2,14971,298320 ,2,829,45 ,2,15024,613640 ,2,14978,110280 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267270 ,2,14964,274665 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110345 ,2,14956,200030 ,2,14957,45 ,2,14958,47340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47330 ,2,14963,267270 ,2,14964,274665 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564840 ,2,14970,75 ,2,14971,298330 ,2,829,45 ,2,15024,613640 ,2,14978,110440 ,2,14956,200040 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47370 ,2,14963,267270 ,2,14964,274665 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564850 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110525 ,2,14956,200195 ,2,14957,45 ,2,14958,47415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47380 ,2,14963,267270 ,2,14964,274665 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564855 ,2,14970,75 ,2,14971,298390 ,2,829,45 ,2,15024,613640 ,2,14978,110600 ,2,14956,268985 ,2,14957,45 ,2,14958,98260 ,2,14959,98175 ,2,14960,75 ,2,14961,45 ,2,14962,98165 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,564905 ,2,14967,45 ,2,14968,75 ,2,14969,564900 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110725 ,2,14956,268790 ,2,14957,45 ,2,14958,98035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97990 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,564915 ,2,14967,45 ,2,14968,75 ,2,14969,564910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110815 ,2,14956,268725 ,2,14957,45 ,2,14958,47550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47540 ,2,14963,267290 ,2,14964,274675 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,564920 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110875 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267290 ,2,14964,274675 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,110960 ,2,14956,200330 ,2,14957,45 ,2,14958,47570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47560 ,2,14963,267085 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,564935 ,2,14970,75 ,2,14971,298560 ,2,829,45 ,2,15024,613640 ,2,14978,111055 ,2,14956,200460 ,2,14957,45 ,2,14958,47635 ,2,14959,45 ,2,14960,47625 ,2,14961,45 ,2,14962,47615 ,2,14963,267085 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,564950 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,111155 ,2,14956,268700 ,2,14957,45 ,2,14958,48430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47720 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,564965 ,2,14967,45 ,2,14968,75 ,2,14969,564960 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,111225 ,2,14956,201170 ,2,14957,45 ,2,14958,48295 ,2,14959,45 ,2,14960,48285 ,2,14961,45 ,2,14962,48275 ,2,14963,267300 ,2,14964,274695 ,2,14965,45 ,2,14966,565005 ,2,14967,45 ,2,14968,75 ,2,14969,564975 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,111310 ,2,14956,200800 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47730 ,2,14963,267300 ,2,14964,274695 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,111385 ,2,14956,200790 ,2,14957,45 ,2,14958,47960 ,2,14959,45 ,2,14960,47950 ,2,14961,45 ,2,14962,47940 ,2,14963,267280 ,2,14964,274685 ,2,14965,45 ,2,14966,564915 ,2,14967,45 ,2,14968,75 ,2,14969,565020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,111475 ,2,14956,8220 ,2,14957,45 ,2,14958,47775 ,2,14959,45 ,2,14960,47765 ,2,14961,45 ,2,14962,75 ,2,14963,267280 ,2,14964,274685 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,111540 ,2,14956,200690 ,2,14957,45 ,2,14958,47875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47865 ,2,14963,267280 ,2,14964,274685 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,47855 ,2,14969,565030 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,112130 ,2,14956,200715 ,2,14957,45 ,2,14958,47895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47885 ,2,14963,267280 ,2,14964,274685 ,2,14965,546850 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565035 ,2,14970,75 ,2,14971,298755 ,2,829,45 ,2,15024,613640 ,2,14978,112190 ,2,14956,200735 ,2,14957,45 ,2,14958,47930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,47905 ,2,14963,267280 ,2,14964,274685 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565040 ,2,14970,75 ,2,14971,298775 ,2,829,45 ,2,15024,613640 ,2,14978,112355 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267300 ,2,14964,274695 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,112560 ,2,14956,201025 ,2,14957,45 ,2,14958,48180 ,2,14959,45 ,2,14960,48150 ,2,14961,45 ,2,14962,48105 ,2,14963,267300 ,2,14964,274695 ,2,14965,45 ,2,14966,565075 ,2,14967,45 ,2,14968,48030 ,2,14969,565070 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,114340 ,2,14956,200905 ,2,14957,45 ,2,14958,48095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48085 ,2,14963,267315 ,2,14964,274705 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565080 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,115985 ,2,14956,8220 ,2,14957,45 ,2,14958,48060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267315 ,2,14964,274705 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,116360 ,2,14956,201150 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48410 ,2,14963,267325 ,2,14964,274715 ,2,14965,45 ,2,14966,565130 ,2,14967,45 ,2,14968,75 ,2,14969,565110 ,2,14970,75 ,2,14971,298945 ,2,829,45 ,2,15024,613640 ,2,14978,116605 ,2,14956,201070 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48305 ,2,14963,267325 ,2,14964,274715 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614045 ,2,14978,116720 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267325 ,2,14964,274715 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,116915 ,2,14956,201120 ,2,14957,45 ,2,14958,48400 ,2,14959,45 ,2,14960,48370 ,2,14961,45 ,2,14962,48345 ,2,14963,267325 ,2,14964,274715 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565140 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,117005 ,2,14956,202780 ,2,14957,45 ,2,14958,49385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49345 ,2,14963,266220 ,2,14964,280675 ,2,14965,547260 ,2,14966,565200 ,2,14967,45 ,2,14968,75 ,2,14969,565165 ,2,14970,75 ,2,14971,299070 ,2,829,45 ,2,15024,613640 ,2,14978,117570 ,2,14956,202760 ,2,14957,45 ,2,14958,49335 ,2,14959,49200 ,2,14960,49190 ,2,14961,45 ,2,14962,48460 ,2,14963,266220 ,2,14964,280675 ,2,14965,546900 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565205 ,2,14970,48440 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,117855 ,2,14956,202455 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48470 ,2,14963,266220 ,2,14964,280675 ,2,14965,546905 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,118030 ,2,14956,201235 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48480 ,2,14963,266210 ,2,14964,280675 ,2,14965,546915 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,601310 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,118445 ,2,14956,201255 ,2,14957,45 ,2,14958,48515 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48490 ,2,14963,266210 ,2,14964,280675 ,2,14965,546950 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565225 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,118530 ,2,14956,201270 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48525 ,2,14963,266220 ,2,14964,280675 ,2,14965,546965 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,601315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,118590 ,2,14956,4500 ,2,14957,45 ,2,14958,48600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48535 ,2,14963,266220 ,2,14964,280675 ,2,14965,546975 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565260 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,118770 ,2,14956,201355 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48545 ,2,14963,265415 ,2,14964,280675 ,2,14965,546980 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,118945 ,2,14956,201280 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48570 ,2,14963,265415 ,2,14964,280675 ,2,14965,546995 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,120520 ,2,14956,201345 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48580 ,2,14963,265415 ,2,14964,280675 ,2,14965,547005 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,121110 ,2,14956,201300 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48590 ,2,14963,267335 ,2,14964,280665 ,2,14965,547010 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,121270 ,2,14956,202390 ,2,14957,45 ,2,14958,49160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49150 ,2,14963,267345 ,2,14964,280675 ,2,14965,547195 ,2,14966,565295 ,2,14967,45 ,2,14968,75 ,2,14969,565290 ,2,14970,75 ,2,14971,299105 ,2,829,45 ,2,15024,614705 ,2,14978,121525 ,2,14956,202370 ,2,14957,45 ,2,14958,49140 ,2,14959,48635 ,2,14960,75 ,2,14961,45 ,2,14962,48625 ,2,14963,267345 ,2,14964,280675 ,2,14965,547030 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565300 ,2,14970,48615 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,121715 ,2,14956,202145 ,2,14957,45 ,2,14958,49100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49090 ,2,14963,267345 ,2,14964,280675 ,2,14965,547190 ,2,14966,565355 ,2,14967,45 ,2,14968,75 ,2,14969,565350 ,2,14970,75 ,2,14971,299180 ,2,829,45 ,2,15024,614705 ,2,14978,121980 ,2,14956,202115 ,2,14957,45 ,2,14958,49075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49065 ,2,14963,266220 ,2,14964,280675 ,2,14965,547185 ,2,14966,565385 ,2,14967,45 ,2,14968,75 ,2,14969,565360 ,2,14970,75 ,2,14971,299190 ,2,829,45 ,2,15024,614705 ,2,14978,122110 ,2,14956,202080 ,2,14957,45 ,2,14958,49055 ,2,14959,48730 ,2,14960,48700 ,2,14961,45 ,2,14962,48690 ,2,14963,266210 ,2,14964,280675 ,2,14965,547065 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565390 ,2,14970,75 ,2,14971,299200 ,2,829,45 ,2,15024,613640 ,2,14978,122530 ,2,14956,201625 ,2,14957,45 ,2,14958,48750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48740 ,2,14963,266210 ,2,14964,280675 ,2,14965,547075 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565425 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,122595 ,2,14956,201820 ,2,14957,45 ,2,14958,48910 ,2,14959,48795 ,2,14960,75 ,2,14961,45 ,2,14962,48785 ,2,14963,266185 ,2,14964,280675 ,2,14965,547125 ,2,14966,565450 ,2,14967,45 ,2,14968,75 ,2,14969,565430 ,2,14970,75 ,2,14971,299355 ,2,829,45 ,2,15024,613640 ,2,14978,122720 ,2,14956,201685 ,2,14957,45 ,2,14958,48815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48805 ,2,14963,266185 ,2,14964,280675 ,2,14965,547140 ,2,14966,565460 ,2,14967,45 ,2,14968,75 ,2,14969,565455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,122940 ,2,14956,201715 ,2,14957,45 ,2,14958,48890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,48855 ,2,14963,266185 ,2,14964,280675 ,2,14965,547150 ,2,14966,565480 ,2,14967,45 ,2,14968,75 ,2,14969,565475 ,2,14970,75 ,2,14971,299475 ,2,829,45 ,2,15024,613640 ,2,14978,123105 ,2,14956,201960 ,2,14957,45 ,2,14958,49030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49020 ,2,14963,266210 ,2,14964,280675 ,2,14965,547180 ,2,14966,565535 ,2,14967,45 ,2,14968,75 ,2,14969,565530 ,2,14970,48945 ,2,14971,299675 ,2,829,45 ,2,15024,613640 ,2,14978,123205 ,2,14956,201940 ,2,14957,45 ,2,14958,49010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49000 ,2,14963,266210 ,2,14964,280675 ,2,14965,547170 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565520 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,123260 ,2,14956,202585 ,2,14957,45 ,2,14958,49285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49235 ,2,14963,266220 ,2,14964,280675 ,2,14965,547205 ,2,14966,565585 ,2,14967,45 ,2,14968,75 ,2,14969,565580 ,2,14970,75 ,2,14971,299990 ,2,829,45 ,2,15024,613640 ,2,14978,123335 ,2,14956,202575 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49245 ,2,14963,266220 ,2,14964,280675 ,2,14965,547220 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,618550 ,2,14978,123430 ,2,14956,202565 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49255 ,2,14963,266220 ,2,14964,280675 ,2,14965,547225 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,123565 ,2,14956,202770 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49355 ,2,14963,266220 ,2,14964,280675 ,2,14965,547265 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,123650 ,2,14956,202900 ,2,14957,45 ,2,14958,49500 ,2,14959,49460 ,2,14960,49450 ,2,14961,45 ,2,14962,49440 ,2,14963,266195 ,2,14964,280675 ,2,14965,547300 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,565685 ,2,14970,49430 ,2,14971,300145 ,2,829,45 ,2,15024,613640 ,2,14978,123740 ,2,14956,268600 ,2,14957,45 ,2,14958,97960 ,2,14959,97855 ,2,14960,75 ,2,14961,45 ,2,14962,97765 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,565730 ,2,14967,45 ,2,14968,75 ,2,14969,565725 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,123845 ,2,14956,268300 ,2,14957,45 ,2,14958,97755 ,2,14959,53250 ,2,14960,75 ,2,14961,45 ,2,14962,53110 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,565745 ,2,14967,45 ,2,14968,75 ,2,14969,565735 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,123930 ,2,14956,206870 ,2,14957,45 ,2,14958,53090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52995 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,565755 ,2,14967,45 ,2,14968,75 ,2,14969,565750 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,124070 ,2,14956,206750 ,2,14957,45 ,2,14958,49855 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49635 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,565780 ,2,14967,45 ,2,14968,75 ,2,14969,565760 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,124305 ,2,14956,203335 ,2,14957,45 ,2,14958,49840 ,2,14959,45 ,2,14960,49735 ,2,14961,45 ,2,14962,49725 ,2,14963,267370 ,2,14964,274725 ,2,14965,45 ,2,14966,565795 ,2,14967,45 ,2,14968,75 ,2,14969,565790 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,124380 ,2,14956,203125 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49645 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565810 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,124425 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267370 ,2,14964,274725 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,124570 ,2,14956,203145 ,2,14957,45 ,2,14958,49715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49690 ,2,14963,267370 ,2,14964,274725 ,2,14965,45 ,2,14966,563745 ,2,14967,45 ,2,14968,75 ,2,14969,565815 ,2,14970,75 ,2,14971,300350 ,2,829,45 ,2,15024,613640 ,2,14978,124620 ,2,14956,203285 ,2,14957,45 ,2,14958,49830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49820 ,2,14963,267380 ,2,14964,274765 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565825 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614025 ,2,14978,124925 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267380 ,2,14964,274765 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,125120 ,2,14956,203235 ,2,14957,45 ,2,14958,49810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49785 ,2,14963,267380 ,2,14964,274765 ,2,14965,45 ,2,14966,565820 ,2,14967,45 ,2,14968,49775 ,2,14969,565845 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,125235 ,2,14956,204000 ,2,14957,45 ,2,14958,50035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50025 ,2,14963,267390 ,2,14964,274775 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565850 ,2,14970,75 ,2,14971,300990 ,2,829,45 ,2,15024,613640 ,2,14978,125285 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267390 ,2,14964,274775 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,125380 ,2,14956,203435 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49945 ,2,14963,267390 ,2,14964,274775 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565855 ,2,14970,75 ,2,14971,300555 ,2,829,45 ,2,15024,613640 ,2,14978,125470 ,2,14956,203445 ,2,14957,45 ,2,14958,49965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49955 ,2,14963,267390 ,2,14964,274775 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565860 ,2,14970,75 ,2,14971,300575 ,2,829,45 ,2,15024,613640 ,2,14978,125585 ,2,14956,203455 ,2,14957,45 ,2,14958,49985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,49975 ,2,14963,267390 ,2,14964,274775 ,2,14965,45 ,2,14966,565875 ,2,14967,45 ,2,14968,75 ,2,14969,565870 ,2,14970,75 ,2,14971,300585 ,2,829,45 ,2,15024,613640 ,2,14978,125650 ,2,14956,203490 ,2,14957,45 ,2,14958,50055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50045 ,2,14963,265735 ,2,14964,280655 ,2,14965,547310 ,2,14966,565885 ,2,14967,45 ,2,14968,75 ,2,14969,565880 ,2,14970,75 ,2,14971,300640 ,2,829,45 ,2,15024,613640 ,2,14978,125815 ,2,14956,203915 ,2,14957,45 ,2,14958,50445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50430 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,565945 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,125990 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,126040 ,2,14956,203785 ,2,14957,45 ,2,14958,50150 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50140 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,565940 ,2,14967,45 ,2,14968,75 ,2,14969,565950 ,2,14970,75 ,2,14971,300650 ,2,829,45 ,2,15024,613640 ,2,14978,126130 ,2,14956,203810 ,2,14957,45 ,2,14958,50360 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50300 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,565965 ,2,14970,75 ,2,14971,300875 ,2,829,45 ,2,15024,614705 ,2,14978,126310 ,2,14956,203820 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50380 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,565970 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,126570 ,2,14956,203830 ,2,14957,45 ,2,14958,50400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50390 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565975 ,2,14970,75 ,2,14971,300760 ,2,829,45 ,2,15024,613640 ,2,14978,126940 ,2,14956,203860 ,2,14957,45 ,2,14958,50420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50410 ,2,14963,267400 ,2,14964,274785 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,565990 ,2,14970,75 ,2,14971,300910 ,2,829,45 ,2,15024,613640 ,2,14978,127050 ,2,14956,205320 ,2,14957,45 ,2,14958,51500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51490 ,2,14963,267480 ,2,14964,274825 ,2,14965,547330 ,2,14966,600040 ,2,14967,45 ,2,14968,50475 ,2,14969,566000 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,127200 ,2,14956,204730 ,2,14957,45 ,2,14958,50880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50870 ,2,14963,267420 ,2,14964,274795 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,50495 ,2,14969,566005 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,127265 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267420 ,2,14964,274795 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,127355 ,2,14956,204215 ,2,14957,45 ,2,14958,50720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50570 ,2,14963,267420 ,2,14964,274795 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,50560 ,2,14969,566015 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,127435 ,2,14956,204115 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50710 ,2,14963,267410 ,2,14964,274805 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566025 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,129210 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267410 ,2,14964,274805 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,129310 ,2,14956,204035 ,2,14957,45 ,2,14958,50620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50610 ,2,14963,267410 ,2,14964,274805 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566030 ,2,14970,75 ,2,14971,301070 ,2,829,45 ,2,15024,613640 ,2,14978,129380 ,2,14956,204045 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50630 ,2,14963,267410 ,2,14964,274805 ,2,14965,547325 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,601610 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,129495 ,2,14956,204055 ,2,14957,45 ,2,14958,50680 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50670 ,2,14963,267410 ,2,14964,274805 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566055 ,2,14970,75 ,2,14971,301080 ,2,829,45 ,2,15024,613640 ,2,14978,129560 ,2,14956,204085 ,2,14957,45 ,2,14958,50700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50690 ,2,14963,267410 ,2,14964,274805 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566060 ,2,14970,75 ,2,14971,301090 ,2,829,45 ,2,15024,613640 ,2,14978,129630 ,2,14956,204245 ,2,14957,45 ,2,14958,50785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50775 ,2,14963,267420 ,2,14964,274795 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,50740 ,2,14969,566070 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,129710 ,2,14956,204255 ,2,14957,45 ,2,14958,50815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50805 ,2,14963,267420 ,2,14964,274795 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,50795 ,2,14969,566080 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,129820 ,2,14956,204265 ,2,14957,45 ,2,14958,50845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50835 ,2,14963,267420 ,2,14964,274795 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,50825 ,2,14969,566090 ,2,14970,75 ,2,14971,301100 ,2,829,45 ,2,15024,613640 ,2,14978,130065 ,2,14956,204640 ,2,14957,45 ,2,14958,51100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51090 ,2,14963,267430 ,2,14964,274815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566095 ,2,14970,75 ,2,14971,301130 ,2,829,45 ,2,15024,613640 ,2,14978,130660 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267430 ,2,14964,274815 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,130790 ,2,14956,204505 ,2,14957,45 ,2,14958,50990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,50940 ,2,14963,267430 ,2,14964,274815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566100 ,2,14970,75 ,2,14971,301140 ,2,829,45 ,2,15024,613640 ,2,14978,131030 ,2,14956,8220 ,2,14957,45 ,2,14958,51355 ,2,14959,45 ,2,14960,51220 ,2,14961,45 ,2,14962,75 ,2,14963,267480 ,2,14964,274825 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,131125 ,2,14956,204970 ,2,14957,45 ,2,14958,51315 ,2,14959,45 ,2,14960,51250 ,2,14961,45 ,2,14962,51240 ,2,14963,267470 ,2,14964,280665 ,2,14965,547365 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,566125 ,2,14970,51230 ,2,14971,301510 ,2,829,45 ,2,15024,613640 ,2,14978,131670 ,2,14956,205215 ,2,14957,45 ,2,14958,51430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51385 ,2,14963,267480 ,2,14964,274825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,51375 ,2,14969,566140 ,2,14970,75 ,2,14971,301620 ,2,829,45 ,2,15024,613640 ,2,14978,131975 ,2,14956,205260 ,2,14957,45 ,2,14958,51480 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51470 ,2,14963,267480 ,2,14964,274825 ,2,14965,45 ,2,14966,566215 ,2,14967,45 ,2,14968,51460 ,2,14969,566210 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,132070 ,2,14956,205545 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51790 ,2,14963,267500 ,2,14964,274835 ,2,14965,45 ,2,14966,562575 ,2,14967,45 ,2,14968,75 ,2,14969,566255 ,2,14970,75 ,2,14971,301850 ,2,829,45 ,2,15024,613640 ,2,14978,132415 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267500 ,2,14964,274835 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,132530 ,2,14956,205515 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,51780 ,2,14961,45 ,2,14962,51585 ,2,14963,267500 ,2,14964,274835 ,2,14965,45 ,2,14966,564915 ,2,14967,45 ,2,14968,75 ,2,14969,566260 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,133115 ,2,14956,205475 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51770 ,2,14963,267490 ,2,14964,274855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566270 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,133385 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267490 ,2,14964,274855 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,133500 ,2,14956,205340 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51665 ,2,14963,267490 ,2,14964,274855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,133625 ,2,14956,205350 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51675 ,2,14963,267490 ,2,14964,274855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566280 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,133690 ,2,14956,205415 ,2,14957,45 ,2,14958,51740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51715 ,2,14963,267490 ,2,14964,274855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566290 ,2,14970,51685 ,2,14971,302080 ,2,829,45 ,2,15024,613640 ,2,14978,133835 ,2,14956,205445 ,2,14957,45 ,2,14958,51760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51750 ,2,14963,267490 ,2,14964,274855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566325 ,2,14970,75 ,2,14971,301930 ,2,829,45 ,2,15024,613640 ,2,14978,133885 ,2,14956,205680 ,2,14957,45 ,2,14958,51865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51855 ,2,14963,267510 ,2,14964,274865 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566355 ,2,14970,75 ,2,14971,301960 ,2,829,45 ,2,15024,613640 ,2,14978,133975 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267510 ,2,14964,274865 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,134050 ,2,14956,205565 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,51845 ,2,14963,267510 ,2,14964,274865 ,2,14965,45 ,2,14966,562575 ,2,14967,45 ,2,14968,75 ,2,14969,566360 ,2,14970,75 ,2,14971,301970 ,2,829,45 ,2,15024,613640 ,2,14978,134175 ,2,14956,206610 ,2,14957,45 ,2,14958,52290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52280 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,566375 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,134490 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,134705 ,2,14956,205755 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52005 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566380 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,135190 ,2,14956,205790 ,2,14957,45 ,2,14958,52025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52015 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566385 ,2,14970,75 ,2,14971,302130 ,2,829,45 ,2,15024,613640 ,2,14978,135590 ,2,14956,205800 ,2,14957,45 ,2,14958,52075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52065 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566395 ,2,14970,75 ,2,14971,302140 ,2,829,45 ,2,15024,613640 ,2,14978,136130 ,2,14956,205835 ,2,14957,45 ,2,14958,52095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52085 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566445 ,2,14967,45 ,2,14968,75 ,2,14969,566405 ,2,14970,75 ,2,14971,302150 ,2,829,45 ,2,15024,613640 ,2,14978,136205 ,2,14956,205845 ,2,14957,45 ,2,14958,52115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52105 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566455 ,2,14970,75 ,2,14971,302165 ,2,829,45 ,2,15024,614705 ,2,14978,136275 ,2,14956,205865 ,2,14957,45 ,2,14958,52135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52125 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566470 ,2,14970,75 ,2,14971,302175 ,2,829,45 ,2,15024,613640 ,2,14978,136350 ,2,14956,205875 ,2,14957,45 ,2,14958,52165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52155 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566480 ,2,14970,75 ,2,14971,302185 ,2,829,45 ,2,15024,613640 ,2,14978,137350 ,2,14956,205885 ,2,14957,45 ,2,14958,52185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52175 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566505 ,2,14970,75 ,2,14971,302195 ,2,829,45 ,2,15024,613640 ,2,14978,137445 ,2,14956,205895 ,2,14957,45 ,2,14958,52215 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52205 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566515 ,2,14970,75 ,2,14971,302245 ,2,829,45 ,2,15024,613640 ,2,14978,137675 ,2,14956,205905 ,2,14957,45 ,2,14958,52235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52225 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566530 ,2,14970,75 ,2,14971,302255 ,2,829,45 ,2,15024,613640 ,2,14978,137770 ,2,14956,205950 ,2,14957,45 ,2,14958,52270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52260 ,2,14963,267520 ,2,14964,274875 ,2,14965,45 ,2,14966,566370 ,2,14967,45 ,2,14968,75 ,2,14969,566540 ,2,14970,75 ,2,14971,302265 ,2,829,45 ,2,15024,613640 ,2,14978,137890 ,2,14956,206505 ,2,14957,45 ,2,14958,52830 ,2,14959,52795 ,2,14960,75 ,2,14961,45 ,2,14962,52785 ,2,14963,267590 ,2,14964,274885 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566580 ,2,14970,52300 ,2,14971,302305 ,2,829,45 ,2,15024,613640 ,2,14978,137985 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267580 ,2,14964,274885 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,138210 ,2,14956,206010 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52420 ,2,14963,267570 ,2,14964,274885 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566585 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,138400 ,2,14956,206115 ,2,14957,45 ,2,14958,52615 ,2,14959,52555 ,2,14960,75 ,2,14961,45 ,2,14962,52545 ,2,14963,267540 ,2,14964,274885 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566595 ,2,14970,52430 ,2,14971,302390 ,2,829,45 ,2,15024,613640 ,2,14978,138515 ,2,14956,206175 ,2,14957,45 ,2,14958,52775 ,2,14959,52740 ,2,14960,75 ,2,14961,45 ,2,14962,52730 ,2,14963,267530 ,2,14964,274885 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566610 ,2,14970,52625 ,2,14971,302530 ,2,829,45 ,2,15024,613640 ,2,14978,138575 ,2,14956,206700 ,2,14957,45 ,2,14958,52945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,52890 ,2,14963,267600 ,2,14964,274900 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566635 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,138785 ,2,14956,8220 ,2,14957,45 ,2,14958,52870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267600 ,2,14964,274900 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,140295 ,2,14956,206835 ,2,14957,45 ,2,14958,53080 ,2,14959,45 ,2,14960,53070 ,2,14961,45 ,2,14962,53060 ,2,14963,267610 ,2,14964,274910 ,2,14965,45 ,2,14966,564915 ,2,14967,45 ,2,14968,75 ,2,14969,566645 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,140440 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267610 ,2,14964,274910 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,140490 ,2,14956,206955 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,53215 ,2,14961,45 ,2,14962,53205 ,2,14963,267620 ,2,14964,274920 ,2,14965,45 ,2,14966,566660 ,2,14967,45 ,2,14968,75 ,2,14969,566655 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,140815 ,2,14956,206915 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53120 ,2,14963,267620 ,2,14964,274920 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566665 ,2,14970,75 ,2,14971,45 ,2,14956,206905 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53140 ,2,14963,267620 ,2,14964,274920 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566690 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613975 ,2,14978,141240 ,2,829,45 ,2,15024,613640 ,2,14978,144245 ,2,14956,206890 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53150 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566700 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,144880 ,2,14956,206880 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53160 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566710 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,145390 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267620 ,2,14964,274920 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,145795 ,2,14956,212085 ,2,14957,45 ,2,14958,56345 ,2,14959,56120 ,2,14960,56110 ,2,14961,45 ,2,14962,56100 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,566725 ,2,14967,45 ,2,14968,75 ,2,14969,566720 ,2,14970,75 ,2,14971,303245 ,2,829,45 ,2,15024,613640 ,2,14978,145880 ,2,14956,211565 ,2,14957,45 ,2,14958,55895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55885 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566755 ,2,14967,45 ,2,14968,75 ,2,14969,566750 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,145985 ,2,14956,207150 ,2,14957,45 ,2,14958,53315 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53305 ,2,14963,267630 ,2,14964,274930 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566760 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,146080 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267630 ,2,14964,274930 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,146130 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,146660 ,2,14956,208090 ,2,14957,45 ,2,14958,53395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53385 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566770 ,2,14967,45 ,2,14968,75 ,2,14969,566765 ,2,14970,75 ,2,14971,303300 ,2,829,45 ,2,15024,613640 ,2,14978,147865 ,2,14956,207980 ,2,14957,45 ,2,14958,53575 ,2,14959,53470 ,2,14960,75 ,2,14961,45 ,2,14962,53425 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566780 ,2,14970,53405 ,2,14971,303335 ,2,829,45 ,2,15024,613640 ,2,14978,149360 ,2,14956,8220 ,2,14957,45 ,2,14958,53480 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,14956,207900 ,2,14957,45 ,2,14958,53500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53490 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,566820 ,2,14967,45 ,2,14968,75 ,2,14969,566785 ,2,14970,75 ,2,14971,303995 ,2,829,45 ,2,15024,615295 ,2,14978,75 ,2,14956,207910 ,2,14957,45 ,2,14958,53540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53530 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566825 ,2,14970,75 ,2,14971,304025 ,2,829,45 ,2,15024,634470 ,2,14978,150340 ,2,829,45 ,2,15024,613640 ,2,14978,150370 ,2,14956,208120 ,2,14957,45 ,2,14958,53625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53615 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566770 ,2,14967,45 ,2,14968,75 ,2,14969,566910 ,2,14970,75 ,2,14971,304110 ,2,829,45 ,2,15024,613640 ,2,14978,150435 ,2,14956,208175 ,2,14957,45 ,2,14958,53645 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53635 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566770 ,2,14967,45 ,2,14968,75 ,2,14969,566915 ,2,14970,75 ,2,14971,304120 ,2,829,45 ,2,15024,613640 ,2,14978,150485 ,2,14956,208225 ,2,14957,45 ,2,14958,53685 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53675 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566920 ,2,14967,45 ,2,14968,75 ,2,14969,566905 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614705 ,2,14978,150625 ,2,14956,208235 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53695 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,566935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,150750 ,2,14956,208245 ,2,14957,45 ,2,14958,53715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53705 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566940 ,2,14970,75 ,2,14971,304195 ,2,829,45 ,2,15024,613640 ,2,14978,150790 ,2,14956,208300 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53725 ,2,14963,267720 ,2,14964,274955 ,2,14965,547490 ,2,14966,566950 ,2,14967,45 ,2,14968,75 ,2,14969,601700 ,2,14970,75 ,2,14971,45 ,2,14956,208320 ,2,14957,45 ,2,14958,53745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53735 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566920 ,2,14967,45 ,2,14968,75 ,2,14969,566955 ,2,14970,75 ,2,14971,304210 ,2,829,45 ,2,15024,629095 ,2,14978,150855 ,2,829,45 ,2,15024,614705 ,2,14978,150875 ,2,14956,208340 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53795 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566960 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,150970 ,2,14956,208350 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53805 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,562575 ,2,14967,45 ,2,14968,75 ,2,14969,566965 ,2,14970,75 ,2,14971,304220 ,2,829,45 ,2,15024,614705 ,2,14978,151005 ,2,14956,208360 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53815 ,2,14963,267720 ,2,14964,274955 ,2,14965,547505 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,601715 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,151085 ,2,14956,208415 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53825 ,2,14963,267720 ,2,14964,274955 ,2,14965,547545 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,601720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,613640 ,2,14978,151120 ,2,14956,208425 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53840 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566985 ,2,14967,45 ,2,14968,75 ,2,14969,566980 ,2,14970,75 ,2,14971,304230 ,2,829,45 ,2,15024,614705 ,2,14978,151170 ,2,14956,208445 ,2,14957,45 ,2,14958,53860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53850 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,566990 ,2,14970,75 ,2,14971,304240 ,2,829,45 ,2,15024,616170 ,2,14978,151210 ,2,14956,209980 ,2,14957,45 ,2,14958,55095 ,2,14959,54955 ,2,14960,75 ,2,14961,45 ,2,14962,54945 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,567015 ,2,14967,45 ,2,14968,75 ,2,14969,567010 ,2,14970,75 ,2,14971,304280 ,2,829,45 ,2,15024,614045 ,2,14978,151240 ,2,14956,209715 ,2,14957,45 ,2,14958,53935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,53925 ,2,14963,267640 ,2,14964,274965 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,616545 ,2,14978,151315 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267640 ,2,14964,274965 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614025 ,2,14978,151415 ,2,14956,209610 ,2,14957,45 ,2,14958,54880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54870 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,566725 ,2,14967,45 ,2,14968,75 ,2,14969,567025 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,614025 ,2,14978,151650 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,15024,621000 ,2,14978,151730 ,2,14956,208525 ,2,14957,45 ,2,14958,54045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54035 ,2,14963,267700 ,2,14964,274975 ,2,14965,547555 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567030 ,2,14970,53985 ,2,14971,304355 ,2,829,45 ,2,15024,616545 ,2,14978,151760 ,2,14956,208575 ,2,14957,45 ,2,14958,54070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54055 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567040 ,2,14970,75 ,2,14971,304385 ,2,829,45 ,2,15024,621765 ,2,14978,151790 ,2,14956,208835 ,2,14957,45 ,2,14958,54090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54080 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567065 ,2,14967,45 ,2,14968,75 ,2,14969,567060 ,2,14970,75 ,2,14971,304430 ,2,829,45 ,2,15024,616230 ,2,14978,151900 ,2,14956,208775 ,2,14957,45 ,2,14958,54185 ,2,14959,45 ,2,14960,54175 ,2,14961,45 ,2,14962,54160 ,2,14963,267680 ,2,14964,274985 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567070 ,2,14970,75 ,2,14971,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267680 ,2,14964,274985 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,56150 ,2,14956,209155 ,2,14957,45 ,2,14958,54250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54205 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567075 ,2,14970,75 ,2,14971,304620 ,2,829,45 ,1,0,6400 ,2,14956,209060 ,2,14957,45 ,2,14958,54520 ,2,14959,54385 ,2,14960,75 ,2,14961,45 ,2,14962,54310 ,2,14963,265760 ,2,14964,280655 ,2,14965,547615 ,2,14966,567090 ,2,14967,45 ,2,14968,75 ,2,14969,567085 ,2,14970,54260 ,2,14971,304655 ,2,829,45 ,1,0,100 ,2,14956,208855 ,2,14957,45 ,2,14958,54300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54280 ,2,14963,265750 ,2,14964,280655 ,2,14965,547600 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,567100 ,2,14970,54270 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,56160 ,2,14956,208935 ,2,14957,45 ,2,14958,54330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54320 ,2,14963,267690 ,2,14964,280655 ,2,14965,547625 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,567160 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,208955 ,2,14957,45 ,2,14958,54420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54410 ,2,14963,265760 ,2,14964,280655 ,2,14965,547635 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,567210 ,2,14970,75 ,2,14971,304735 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,60975 ,1,3,65 ,1,4,56160 ,1,5,65 ,1,6,60965 ,1,7,65 ,1,8,60955 ,1,9,60935 ,1,10,60925 ,1,11,65 ,1,12,65 ,1,13,60915 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,60905 ,1,19,60895 ,1,20,60885 ,1,21,65 ,1,22,60875 ,1,23,65 ,1,24,60865 ,1,25,60820 ,1,26,60800 ,1,27,56220 ,1,28,56210 ,1,29,56200 ,1,30,56190 ,1,31,56180 ,1,32,56170 ,1,33,65 ,2,14956,209000 ,2,14957,45 ,2,14958,54440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54430 ,2,14963,265760 ,2,14964,280655 ,2,14965,547680 ,2,14966,567220 ,2,14967,45 ,2,14968,75 ,2,14969,567215 ,2,14970,75 ,2,14971,304745 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,209040 ,2,14957,45 ,2,14958,54490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54480 ,2,14963,265760 ,2,14964,280655 ,2,14965,547705 ,2,14966,567240 ,2,14967,45 ,2,14968,75 ,2,14969,567235 ,2,14970,75 ,2,14971,304820 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,209165 ,2,14957,45 ,2,14958,54565 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54540 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567270 ,2,14970,75 ,2,14971,304995 ,2,829,45 ,1,0,3010 ,1,1,166540 ,2,14956,209185 ,2,14957,45 ,2,14958,54585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54575 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567285 ,2,14967,45 ,2,14968,75 ,2,14969,567280 ,2,14970,75 ,2,14971,305040 ,2,829,45 ,1,0,557840 ,2,14956,209215 ,2,14957,45 ,2,14958,54610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54595 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567290 ,2,14970,75 ,2,14971,305070 ,2,829,45 ,2,14956,209265 ,2,14957,45 ,2,14958,54630 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54620 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567285 ,2,14967,45 ,2,14968,75 ,2,14969,567295 ,2,14970,75 ,2,14971,305395 ,2,829,45 ,1,0,60790 ,1,1,60775 ,1,2,60765 ,1,3,60755 ,1,4,60745 ,1,5,60695 ,1,6,60685 ,1,7,56260 ,2,14956,209275 ,2,14957,45 ,2,14958,54665 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54640 ,2,14963,267700 ,2,14964,274975 ,2,14965,547800 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567315 ,2,14970,75 ,2,14971,305140 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,56270 ,2,14956,209380 ,2,14957,45 ,2,14958,54685 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54675 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567285 ,2,14967,45 ,2,14968,75 ,2,14969,567320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,56310 ,1,3,166610 ,1,4,45 ,1,5,56280 ,2,14956,209430 ,2,14957,45 ,2,14958,54725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54715 ,2,14963,267700 ,2,14964,274975 ,2,14965,547825 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567325 ,2,14970,75 ,2,14971,305205 ,2,829,45 ,1,0,100 ,1,1,600035 ,2,14956,209440 ,2,14957,45 ,2,14958,54780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54770 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567330 ,2,14970,75 ,2,14971,305240 ,2,829,45 ,1,0,56320 ,2,14956,209475 ,2,14957,45 ,2,14958,54800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54790 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567335 ,2,14970,75 ,2,14971,305250 ,2,829,45 ,1,0,166650 ,1,1,45 ,1,2,56330 ,2,14956,209495 ,2,14957,45 ,2,14958,54820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54810 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567340 ,2,14970,75 ,2,14971,305270 ,2,829,45 ,2,14956,209505 ,2,14957,45 ,2,14958,54840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,54830 ,2,14963,267700 ,2,14964,274975 ,2,14965,45 ,2,14966,567045 ,2,14967,45 ,2,14968,75 ,2,14969,567345 ,2,14970,75 ,2,14971,305350 ,2,829,45 ,1,0,56425 ,1,1,56415 ,1,2,56405 ,1,3,56395 ,1,4,56385 ,1,5,56375 ,1,6,56340 ,2,14956,209990 ,2,14957,45 ,2,14958,55115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55105 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567420 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,210810 ,2,14957,45 ,2,14958,55135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55125 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567425 ,2,14970,75 ,2,14971,305625 ,2,829,45 ,1,0,557960 ,2,14956,210000 ,2,14957,45 ,2,14958,55155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55145 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567435 ,2,14970,75 ,2,14971,305700 ,2,829,45 ,1,0,557965 ,2,14956,210035 ,2,14957,45 ,2,14958,55215 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55205 ,2,14963,267710 ,2,14964,280590 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,567450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,56435 ,2,14956,210165 ,2,14957,45 ,2,14958,55255 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55245 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,567460 ,2,14970,75 ,2,14971,305820 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,2,14956,210270 ,2,14957,45 ,2,14958,55320 ,2,14959,45 ,2,14960,55310 ,2,14961,45 ,2,14962,55275 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567475 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,557970 ,1,2,557970 ,2,14956,210500 ,2,14957,45 ,2,14958,55365 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55340 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,567530 ,2,14970,75 ,2,14971,305935 ,2,829,45 ,2,14956,210510 ,2,14957,45 ,2,14958,55395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55385 ,2,14963,265235 ,2,14964,280590 ,2,14965,547950 ,2,14966,567540 ,2,14967,45 ,2,14968,75 ,2,14969,567535 ,2,14970,75 ,2,14971,305975 ,2,829,45 ,1,0,56470 ,2,14956,211395 ,2,14957,45 ,2,14958,55795 ,2,14959,55605 ,2,14960,75 ,2,14961,45 ,2,14962,55595 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,566725 ,2,14967,45 ,2,14968,75 ,2,14969,567595 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,2,14956,211535 ,2,14957,45 ,2,14958,55855 ,2,14959,45 ,2,14960,55815 ,2,14961,45 ,2,14962,55805 ,2,14963,267720 ,2,14964,274955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567610 ,2,14970,75 ,2,14971,306560 ,2,829,45 ,1,0,615220 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,60565 ,1,9,65 ,1,10,60550 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,60540 ,1,19,60530 ,1,20,56750 ,1,21,56740 ,1,22,56730 ,1,23,56715 ,1,24,65 ,1,25,56705 ,1,26,56695 ,1,27,65 ,1,28,56685 ,1,29,65 ,1,30,65 ,1,31,56655 ,1,32,56645 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,56635 ,1,42,56625 ,1,43,65 ,1,44,65 ,1,45,56605 ,1,46,56595 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,56575 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,56540 ,1,57,56330 ,1,58,56530 ,1,59,65 ,1,60,56520 ,1,61,56510 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,56500 ,2,14956,211575 ,2,14957,45 ,2,14958,55970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55960 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,567615 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,166955 ,1,2,166945 ,2,14956,211610 ,2,14957,45 ,2,14958,55990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,55980 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,567625 ,2,14967,45 ,2,14968,75 ,2,14969,567645 ,2,14970,75 ,2,14971,306635 ,2,829,45 ,2,14956,211620 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56000 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567650 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,56760 ,2,14956,211630 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56010 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,559650 ,2,14967,45 ,2,14968,75 ,2,14969,567655 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,56815 ,1,3,166610 ,1,4,45 ,1,5,56795 ,2,14956,211660 ,2,14957,45 ,2,14958,56060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56030 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,56020 ,2,14969,567660 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558040 ,2,14956,211670 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56070 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,567670 ,2,14967,45 ,2,14968,75 ,2,14969,567665 ,2,14970,75 ,2,14971,306660 ,2,829,45 ,1,0,56815 ,1,1,56795 ,1,2,60520 ,1,3,56840 ,1,4,56825 ,2,14956,211700 ,2,14957,45 ,2,14958,56090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56080 ,2,14963,267730 ,2,14964,275010 ,2,14965,45 ,2,14966,559650 ,2,14967,45 ,2,14968,75 ,2,14969,567675 ,2,14970,75 ,2,14971,306670 ,2,829,45 ,1,0,56850 ,2,14956,211950 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56315 ,2,14963,267750 ,2,14964,275020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567710 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166995 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267750 ,2,14964,275020 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,255735 ,1,1,255770 ,1,2,255745 ,2,14956,211875 ,2,14957,45 ,2,14958,56225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56215 ,2,14963,267750 ,2,14964,275020 ,2,14965,548000 ,2,14966,567720 ,2,14967,45 ,2,14968,75 ,2,14969,567715 ,2,14970,75 ,2,14971,306785 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211885 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56265 ,2,14963,267750 ,2,14964,275020 ,2,14965,45 ,2,14966,567680 ,2,14967,45 ,2,14968,75 ,2,14969,567725 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,211920 ,2,14957,45 ,2,14958,56285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56275 ,2,14963,267750 ,2,14964,275020 ,2,14965,548010 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567735 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,5430 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56295 ,2,14963,267740 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,600010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,215030 ,2,14957,45 ,2,14958,58660 ,2,14959,57415 ,2,14960,75 ,2,14961,45 ,2,14962,57405 ,2,14963,267785 ,2,14964,275075 ,2,14965,45 ,2,14966,567790 ,2,14967,45 ,2,14968,75 ,2,14969,567785 ,2,14970,75 ,2,14971,306925 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,59745 ,1,3,59735 ,1,4,59725 ,1,5,65 ,1,6,56850 ,1,7,56870 ,1,8,59715 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,59705 ,1,14,59695 ,1,15,59665 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,59655 ,1,22,59645 ,1,23,59635 ,1,24,65 ,1,25,65 ,1,26,59620 ,1,27,59610 ,1,28,65 ,1,29,65 ,1,30,59600 ,1,31,56960 ,1,32,56945 ,1,33,65 ,2,14956,213610 ,2,14957,45 ,2,14958,57305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56400 ,2,14963,267785 ,2,14964,275075 ,2,14965,45 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,567795 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59645 ,2,14956,213550 ,2,14957,45 ,2,14958,57295 ,2,14959,57185 ,2,14960,75 ,2,14961,45 ,2,14962,57175 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,567810 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,2,14956,212185 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56440 ,2,14963,267775 ,2,14964,275030 ,2,14965,548040 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,601870 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,212820 ,2,14957,45 ,2,14958,56965 ,2,14959,56495 ,2,14960,75 ,2,14961,45 ,2,14962,56485 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,567600 ,2,14967,45 ,2,14968,56475 ,2,14969,567845 ,2,14970,75 ,2,14971,306935 ,2,829,45 ,1,0,255780 ,2,14956,212490 ,2,14957,45 ,2,14958,56920 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56875 ,2,14963,267765 ,2,14964,275040 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,567860 ,2,14970,56515 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267765 ,2,14964,275040 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57160 ,1,1,57150 ,1,2,57140 ,1,3,57035 ,1,4,56990 ,1,5,56980 ,2,14956,212375 ,2,14957,45 ,2,14958,56700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56690 ,2,14963,267765 ,2,14964,275040 ,2,14965,45 ,2,14966,567855 ,2,14967,45 ,2,14968,56660 ,2,14969,567870 ,2,14970,56600 ,2,14971,307035 ,2,829,45 ,1,0,167215 ,1,1,45 ,2,14956,212385 ,2,14957,45 ,2,14958,56830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56820 ,2,14963,267765 ,2,14964,275040 ,2,14965,45 ,2,14966,567855 ,2,14967,45 ,2,14968,56810 ,2,14969,567915 ,2,14970,56735 ,2,14971,307140 ,2,829,45 ,1,0,3010 ,1,1,11510 ,1,2,167285 ,2,14956,212410 ,2,14957,45 ,2,14958,56865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56855 ,2,14963,267765 ,2,14964,275040 ,2,14965,45 ,2,14966,567855 ,2,14967,45 ,2,14968,56845 ,2,14969,567920 ,2,14970,75 ,2,14971,307240 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373835 ,2,14956,212870 ,2,14957,45 ,2,14958,56995 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,56985 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,56975 ,2,14969,567930 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,212965 ,2,14957,45 ,2,14958,57040 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57030 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,566715 ,2,14967,45 ,2,14968,75 ,2,14969,567935 ,2,14970,75 ,2,14971,307430 ,2,829,45 ,1,0,57055 ,2,14956,213045 ,2,14957,45 ,2,14958,57080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57070 ,2,14963,267775 ,2,14964,275030 ,2,14965,548050 ,2,14966,567945 ,2,14967,45 ,2,14968,75 ,2,14969,567940 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,213055 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57090 ,2,14963,267775 ,2,14964,275030 ,2,14965,548060 ,2,14966,567985 ,2,14967,45 ,2,14968,75 ,2,14969,601890 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57130 ,1,1,57045 ,1,2,57065 ,2,14956,213065 ,2,14957,45 ,2,14958,57125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57100 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,566285 ,2,14967,45 ,2,14968,75 ,2,14969,567990 ,2,14970,75 ,2,14971,307480 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,374160 ,2,14956,213085 ,2,14957,45 ,2,14958,57145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57135 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,566950 ,2,14967,45 ,2,14968,75 ,2,14969,567995 ,2,14970,75 ,2,14971,307490 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,57075 ,2,14956,213095 ,2,14957,45 ,2,14958,57165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57155 ,2,14963,267775 ,2,14964,275030 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568000 ,2,14970,75 ,2,14971,307500 ,2,829,45 ,1,0,558155 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267785 ,2,14964,275075 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,213635 ,2,14957,45 ,2,14958,57375 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57365 ,2,14963,267785 ,2,14964,275075 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568010 ,2,14970,75 ,2,14971,307745 ,2,829,45 ,2,14956,213885 ,2,14957,45 ,2,14958,57635 ,2,14959,45 ,2,14960,57625 ,2,14961,45 ,2,14962,57615 ,2,14963,267795 ,2,14964,275085 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568015 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57085 ,1,1,57075 ,2,14956,8220 ,2,14957,45 ,2,14958,57485 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267795 ,2,14964,275085 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,57095 ,2,14956,213735 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57515 ,2,14963,267795 ,2,14964,275085 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568020 ,2,14970,75 ,2,14971,307855 ,2,829,45 ,2,14956,213755 ,2,14957,45 ,2,14958,57575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57535 ,2,14963,267795 ,2,14964,275085 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,57525 ,2,14969,568025 ,2,14970,75 ,2,14971,307910 ,2,829,45 ,1,0,57095 ,2,14956,213805 ,2,14957,45 ,2,14958,57605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57595 ,2,14963,267795 ,2,14964,275085 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,57585 ,2,14969,568035 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,214040 ,2,14957,45 ,2,14958,57750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57740 ,2,14963,267805 ,2,14964,275095 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,57685 ,2,14969,568050 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57120 ,2,14956,8220 ,2,14957,45 ,2,14958,57715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267805 ,2,14964,275095 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,167555 ,1,2,167545 ,2,14956,8220 ,2,14957,45 ,2,14958,57820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267815 ,2,14964,275105 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,214935 ,2,14957,45 ,2,14958,58565 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58555 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,568090 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57270 ,1,1,57260 ,1,2,57250 ,1,3,57240 ,1,4,57190 ,1,5,57180 ,1,6,57170 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,2,14956,214550 ,2,14957,45 ,2,14958,58145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57870 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,568100 ,2,14967,45 ,2,14968,75 ,2,14969,568095 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,2,14956,214315 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58135 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,568100 ,2,14967,45 ,2,14968,75 ,2,14969,568115 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59540 ,1,1,57410 ,1,2,57400 ,1,3,57370 ,1,4,56970 ,1,5,57360 ,1,6,57300 ,1,7,57290 ,1,8,59590 ,1,9,57280 ,2,14956,214195 ,2,14957,45 ,2,14958,57965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57955 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,568125 ,2,14967,45 ,2,14968,57940 ,2,14969,568120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558055 ,2,14956,214215 ,2,14957,45 ,2,14958,57985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,57975 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,568160 ,2,14967,45 ,2,14968,75 ,2,14969,568155 ,2,14970,75 ,2,14971,307970 ,2,829,45 ,1,0,57350 ,1,1,57310 ,1,2,57340 ,2,14956,214270 ,2,14957,45 ,2,14958,58045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58035 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,568125 ,2,14967,45 ,2,14968,58025 ,2,14969,568165 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,2,14956,214225 ,2,14957,45 ,2,14958,58080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58070 ,2,14963,265235 ,2,14964,280590 ,2,14965,548100 ,2,14966,568180 ,2,14967,45 ,2,14968,75 ,2,14969,568170 ,2,14970,75 ,2,14971,308005 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,2,14956,214280 ,2,14957,45 ,2,14958,58100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58090 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,568185 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558220 ,2,14956,214290 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58125 ,2,14963,267825 ,2,14964,275125 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568190 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59530 ,1,1,57420 ,2,14956,214480 ,2,14957,45 ,2,14958,58340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58315 ,2,14963,267835 ,2,14964,275135 ,2,14965,45 ,2,14966,568125 ,2,14967,45 ,2,14968,75 ,2,14969,568195 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167940 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267835 ,2,14964,275135 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,214385 ,2,14957,45 ,2,14958,58250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58240 ,2,14963,267835 ,2,14964,275135 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,58200 ,2,14969,568205 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57430 ,1,1,57530 ,1,2,59510 ,1,3,57460 ,1,4,59520 ,2,14956,214395 ,2,14957,45 ,2,14958,58285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58270 ,2,14963,267835 ,2,14964,275135 ,2,14965,45 ,2,14966,568215 ,2,14967,45 ,2,14968,58260 ,2,14969,568210 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,374270 ,1,4,374265 ,1,5,65 ,1,6,374255 ,1,7,374230 ,1,8,65 ,1,9,65 ,2,14956,214420 ,2,14957,45 ,2,14958,58305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58295 ,2,14963,267835 ,2,14964,275135 ,2,14965,548110 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,601960 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558235 ,2,14956,214615 ,2,14957,45 ,2,14958,58360 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58350 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568235 ,2,14970,75 ,2,14971,308100 ,2,829,45 ,2,14956,214645 ,2,14957,45 ,2,14958,58380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58370 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,568280 ,2,14967,45 ,2,14968,75 ,2,14969,568245 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57470 ,2,14956,214655 ,2,14957,45 ,2,14958,58410 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58400 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,568100 ,2,14967,45 ,2,14968,75 ,2,14969,568290 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558235 ,2,14956,214815 ,2,14957,45 ,2,14958,58450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58440 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,568230 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57490 ,1,1,57480 ,2,14956,214840 ,2,14957,45 ,2,14958,58500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58490 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,568310 ,2,14967,45 ,2,14968,75 ,2,14969,568295 ,2,14970,75 ,2,14971,308295 ,2,829,45 ,1,0,57520 ,1,1,57510 ,1,2,57500 ,2,14956,214850 ,2,14957,45 ,2,14958,58545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58510 ,2,14963,267860 ,2,14964,275115 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,568315 ,2,14970,75 ,2,14971,308305 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,97415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,255845 ,2,14956,215085 ,2,14957,45 ,2,14958,58780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58770 ,2,14963,269965 ,2,14964,275145 ,2,14965,548135 ,2,14966,568380 ,2,14967,45 ,2,14968,75 ,2,14969,568355 ,2,14970,75 ,2,14971,308500 ,2,829,45 ,1,0,168170 ,1,1,45 ,2,14956,215095 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58790 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568385 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,215255 ,2,14957,45 ,2,14958,58825 ,2,14959,45 ,2,14960,58815 ,2,14961,45 ,2,14962,58805 ,2,14963,269965 ,2,14964,275145 ,2,14965,548155 ,2,14966,567680 ,2,14967,45 ,2,14968,75 ,2,14969,568390 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,215340 ,2,14957,45 ,2,14958,58920 ,2,14959,45 ,2,14960,58890 ,2,14961,45 ,2,14962,58880 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568450 ,2,14967,45 ,2,14968,75 ,2,14969,568445 ,2,14970,75 ,2,14971,308630 ,2,829,45 ,2,14956,215360 ,2,14957,45 ,2,14958,58970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58960 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568460 ,2,14967,45 ,2,14968,75 ,2,14969,568480 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57590 ,2,14956,215675 ,2,14957,45 ,2,14958,58990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,58980 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568420 ,2,14967,45 ,2,14968,75 ,2,14969,568490 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59480 ,1,1,57570 ,1,2,59470 ,1,3,59440 ,1,4,59430 ,1,5,59420 ,1,6,59400 ,1,7,59390 ,1,8,57610 ,1,9,57600 ,2,14956,215735 ,2,14957,45 ,2,14958,59060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59050 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,568550 ,2,14970,75 ,2,14971,308800 ,2,829,45 ,1,0,167555 ,1,1,168235 ,2,14956,215745 ,2,14957,45 ,2,14958,59080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59070 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568560 ,2,14967,45 ,2,14968,75 ,2,14969,568555 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57620 ,2,14956,215815 ,2,14957,45 ,2,14958,59105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59095 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568580 ,2,14967,45 ,2,14968,75 ,2,14969,568575 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,168290 ,1,1,45 ,2,14956,216220 ,2,14957,45 ,2,14958,59225 ,2,14959,59170 ,2,14960,59125 ,2,14961,45 ,2,14962,59115 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,559650 ,2,14967,45 ,2,14968,75 ,2,14969,568585 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,57935 ,1,3,166650 ,1,4,45 ,1,5,57915 ,1,6,168555 ,1,7,45 ,1,8,57680 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,216250 ,2,14957,45 ,2,14958,59245 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59235 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,568620 ,2,14970,75 ,2,14971,309195 ,2,829,45 ,1,0,57690 ,2,14956,216335 ,2,14957,45 ,2,14958,59290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59280 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568580 ,2,14967,45 ,2,14968,75 ,2,14969,568635 ,2,14970,75 ,2,14971,309245 ,2,829,45 ,1,0,168300 ,1,1,45 ,2,14956,267305 ,2,14957,45 ,2,14958,59320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59310 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568655 ,2,14970,75 ,2,14971,309265 ,2,829,45 ,1,0,57725 ,1,1,57710 ,2,14956,267235 ,2,14957,45 ,2,14958,96680 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96670 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,568665 ,2,14967,45 ,2,14968,75 ,2,14969,568660 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,168325 ,1,1,45 ,2,14956,216365 ,2,14957,45 ,2,14958,59350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59340 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568685 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57795 ,2,14956,8220 ,2,14957,45 ,2,14958,59395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,168450 ,1,1,45 ,2,14956,267110 ,2,14957,45 ,2,14958,96555 ,2,14959,59435 ,2,14960,75 ,2,14961,45 ,2,14962,59425 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,568700 ,2,14967,45 ,2,14968,75 ,2,14969,568695 ,2,14970,75 ,2,14971,341685 ,2,829,45 ,1,0,57845 ,2,14956,216430 ,2,14957,45 ,2,14958,59545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59535 ,2,14963,265235 ,2,14964,280590 ,2,14965,548260 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,568705 ,2,14970,75 ,2,14971,309490 ,2,829,45 ,1,0,57865 ,1,1,57620 ,1,2,57795 ,2,14956,266935 ,2,14957,45 ,2,14958,96525 ,2,14959,59605 ,2,14960,75 ,2,14961,45 ,2,14962,59595 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,568700 ,2,14967,45 ,2,14968,75 ,2,14969,568715 ,2,14970,75 ,2,14971,309500 ,2,829,45 ,1,0,57925 ,2,14956,266710 ,2,14957,45 ,2,14958,59660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59650 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568780 ,2,14970,75 ,2,14971,309615 ,2,829,45 ,1,0,168565 ,1,1,45 ,2,14956,266490 ,2,14957,45 ,2,14958,96245 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96235 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,568790 ,2,14967,45 ,2,14968,75 ,2,14969,568785 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57950 ,2,14956,266045 ,2,14957,45 ,2,14958,59710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59700 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,568800 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,168620 ,1,1,45 ,2,14956,216590 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59720 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,568805 ,2,14970,75 ,2,14971,309700 ,2,829,45 ,1,0,599885 ,2,14956,216655 ,2,14957,45 ,2,14958,59815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59770 ,2,14963,267870 ,2,14964,275175 ,2,14965,548315 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,568815 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614195 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,59285 ,1,9,59275 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,57865 ,1,16,59240 ,1,17,59230 ,1,18,65 ,1,19,59220 ,1,20,59210 ,1,21,65 ,1,22,59195 ,1,23,59185 ,1,24,65 ,1,25,59175 ,1,26,59165 ,1,27,59120 ,1,28,59110 ,1,29,59100 ,1,30,65 ,1,31,65 ,1,32,57640 ,1,33,59090 ,1,34,59075 ,1,35,65 ,1,36,59065 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,59055 ,1,46,65 ,1,47,59045 ,1,48,59305 ,1,49,59015 ,1,50,57690 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,57925 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,59005 ,1,62,65 ,1,63,65 ,1,64,58995 ,1,65,65 ,1,66,65 ,1,67,58985 ,1,68,65 ,1,69,65 ,1,70,65 ,1,71,65 ,1,72,58375 ,1,73,65 ,1,74,65 ,1,75,65 ,1,76,65 ,1,77,65 ,1,78,57815 ,1,79,58365 ,1,80,58355 ,1,81,58345 ,1,82,58335 ,1,83,58310 ,1,84,65 ,1,85,58300 ,1,86,58255 ,1,87,65 ,1,88,65 ,1,89,65 ,1,90,58245 ,1,91,65 ,1,92,65 ,1,93,65 ,1,94,58195 ,1,95,65 ,1,96,58185 ,1,97,65 ,1,98,65 ,1,99,65 ,1,100,65 ,1,101,65 ,1,102,65 ,1,103,58175 ,1,104,58165 ,1,105,58150 ,1,106,57700 ,1,107,65 ,1,108,65 ,1,109,58140 ,1,110,58130 ,1,111,58120 ,1,112,58095 ,1,113,65 ,1,114,57905 ,1,115,58085 ,1,116,58075 ,1,117,65 ,1,118,58050 ,1,119,58040 ,1,120,58030 ,1,121,57960 ,1,122,65 ,1,123,65 ,1,124,65 ,1,125,65 ,1,126,65 ,1,127,65 ,1,128,65 ,1,129,57950 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267870 ,2,14964,275175 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57620 ,1,1,57845 ,2,14956,216730 ,2,14957,45 ,2,14958,59835 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59825 ,2,14963,267870 ,2,14964,275175 ,2,14965,548325 ,2,14966,568565 ,2,14967,45 ,2,14968,75 ,2,14969,568835 ,2,14970,75 ,2,14971,309765 ,2,829,45 ,1,0,168640 ,1,1,45 ,2,14956,265730 ,2,14957,45 ,2,14958,59870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59860 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,568855 ,2,14970,75 ,2,14971,340685 ,2,829,45 ,1,0,168660 ,1,1,45 ,2,14956,265530 ,2,14957,45 ,2,14958,95465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95455 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,568870 ,2,14970,75 ,2,14971,309820 ,2,829,45 ,1,0,59715 ,2,14956,8220 ,2,14957,45 ,2,14958,59910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57710 ,1,1,57795 ,2,14956,216985 ,2,14957,45 ,2,14958,60085 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60075 ,2,14963,267880 ,2,14964,275195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,59920 ,2,14969,568905 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,168720 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267880 ,2,14964,275195 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,558305 ,1,2,599975 ,2,14956,216865 ,2,14957,45 ,2,14958,59980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,59970 ,2,14963,267880 ,2,14964,275195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,59960 ,2,14969,568910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,216895 ,2,14957,45 ,2,14958,60035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60025 ,2,14963,267880 ,2,14964,275195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,60015 ,2,14969,568915 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,168775 ,1,1,45 ,2,14956,216915 ,2,14957,45 ,2,14958,60065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60055 ,2,14963,267880 ,2,14964,275195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,60045 ,2,14969,568920 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,558310 ,2,14956,218475 ,2,14957,45 ,2,14958,60140 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60130 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,568925 ,2,14970,75 ,2,14971,309860 ,2,829,45 ,2,14956,218465 ,2,14957,45 ,2,14958,61520 ,2,14959,61030 ,2,14960,75 ,2,14961,45 ,2,14962,61020 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,568970 ,2,14967,45 ,2,14968,75 ,2,14969,568935 ,2,14970,75 ,2,14971,309870 ,2,829,45 ,2,14956,217920 ,2,14957,45 ,2,14958,60880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60870 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,568980 ,2,14967,45 ,2,14968,75 ,2,14969,568975 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58265 ,2,14956,217840 ,2,14957,45 ,2,14958,60805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60770 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,568985 ,2,14970,60150 ,2,14971,45 ,2,829,45 ,1,0,558355 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558360 ,2,14956,217220 ,2,14957,45 ,2,14958,60210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60190 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,569005 ,2,14967,45 ,2,14968,75 ,2,14969,568995 ,2,14970,75 ,2,14971,309890 ,2,829,45 ,1,0,58290 ,1,1,58280 ,2,14956,8220 ,2,14957,45 ,2,14958,60260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267900 ,2,14964,275215 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,169005 ,1,1,45 ,2,14956,217355 ,2,14957,45 ,2,14958,60475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60330 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,569035 ,2,14967,45 ,2,14968,75 ,2,14969,569010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,169060 ,1,1,45 ,2,14956,217325 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60465 ,2,14963,267890 ,2,14964,275225 ,2,14965,548370 ,2,14966,569045 ,2,14967,45 ,2,14968,75 ,2,14969,602025 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558385 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267890 ,2,14964,275225 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,217230 ,2,14957,45 ,2,14958,60380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60370 ,2,14963,267890 ,2,14964,275225 ,2,14965,45 ,2,14966,569060 ,2,14967,45 ,2,14968,75 ,2,14969,569050 ,2,14970,75 ,2,14971,310015 ,2,829,45 ,1,0,58595 ,1,1,58585 ,1,2,58570 ,1,3,58560 ,1,4,58550 ,1,5,58495 ,1,6,58485 ,1,7,58475 ,1,8,58385 ,1,9,58455 ,1,10,58445 ,1,11,58435 ,1,12,58405 ,1,13,58395 ,2,14956,217275 ,2,14957,45 ,2,14958,60415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60390 ,2,14963,267890 ,2,14964,275225 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,569065 ,2,14970,75 ,2,14971,310025 ,2,829,45 ,1,0,58385 ,2,14956,217285 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60425 ,2,14963,267890 ,2,14964,275225 ,2,14965,548380 ,2,14966,569075 ,2,14967,45 ,2,14968,75 ,2,14969,602030 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,169185 ,1,1,45 ,2,14956,217295 ,2,14957,45 ,2,14958,60445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60435 ,2,14963,267890 ,2,14964,275225 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,569115 ,2,14970,75 ,2,14971,310045 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,217395 ,2,14957,45 ,2,14958,60495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60485 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,569135 ,2,14967,45 ,2,14968,75 ,2,14969,569120 ,2,14970,75 ,2,14971,310065 ,2,829,45 ,1,0,58465 ,2,14956,217445 ,2,14957,45 ,2,14958,60535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60525 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569140 ,2,14970,75 ,2,14971,310095 ,2,829,45 ,1,0,58595 ,2,14956,217510 ,2,14957,45 ,2,14958,60570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60555 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,569145 ,2,14970,75 ,2,14971,310125 ,2,829,45 ,1,0,169205 ,1,1,45 ,2,14956,217535 ,2,14957,45 ,2,14958,60600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60590 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,569205 ,2,14967,45 ,2,14968,75 ,2,14969,569200 ,2,14970,75 ,2,14971,310170 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,58615 ,2,14956,217705 ,2,14957,45 ,2,14958,60680 ,2,14959,60635 ,2,14960,75 ,2,14961,45 ,2,14962,60625 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,568980 ,2,14967,45 ,2,14968,75 ,2,14969,569225 ,2,14970,75 ,2,14971,310180 ,2,829,45 ,1,0,58625 ,2,14956,217715 ,2,14957,45 ,2,14958,60700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60690 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,569230 ,2,14970,75 ,2,14971,310425 ,2,829,45 ,1,0,558425 ,1,1,558305 ,2,14956,217725 ,2,14957,45 ,2,14958,60760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60750 ,2,14963,267910 ,2,14964,275205 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,569240 ,2,14970,75 ,2,14971,310435 ,2,829,45 ,1,0,58645 ,1,1,58635 ,2,14956,217760 ,2,14957,45 ,2,14958,60795 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60780 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,569270 ,2,14967,45 ,2,14968,75 ,2,14969,569265 ,2,14970,75 ,2,14971,310445 ,2,829,45 ,1,0,558435 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558310 ,2,14956,217940 ,2,14957,45 ,2,14958,60960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60940 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,60930 ,2,14969,569280 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58705 ,1,1,58695 ,1,2,58685 ,1,3,58605 ,1,4,58675 ,1,5,58625 ,1,6,58655 ,2,14956,217985 ,2,14957,45 ,2,14958,60990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,60980 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,60970 ,2,14969,569285 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57745 ,1,1,57710 ,2,14956,218030 ,2,14957,45 ,2,14958,61010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61000 ,2,14963,267920 ,2,14964,275235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569305 ,2,14970,75 ,2,14971,310525 ,2,829,45 ,1,0,558445 ,2,14956,218300 ,2,14957,45 ,2,14958,61445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61435 ,2,14963,267930 ,2,14964,275270 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569320 ,2,14970,61065 ,2,14971,45 ,2,829,45 ,1,0,58775 ,1,1,58765 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267930 ,2,14964,275270 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58785 ,1,1,58775 ,1,2,58705 ,1,3,58385 ,1,4,58695 ,2,14956,218080 ,2,14957,45 ,2,14958,61175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61140 ,2,14963,267930 ,2,14964,275270 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,61130 ,2,14969,569330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,218230 ,2,14957,45 ,2,14958,61295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61255 ,2,14963,267930 ,2,14964,275270 ,2,14965,45 ,2,14966,569315 ,2,14967,45 ,2,14968,61245 ,2,14969,569340 ,2,14970,61185 ,2,14971,310690 ,2,829,45 ,1,0,58975 ,1,1,58800 ,2,14956,218250 ,2,14957,45 ,2,14958,61325 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61315 ,2,14963,267930 ,2,14964,275270 ,2,14965,45 ,2,14966,569315 ,2,14967,45 ,2,14968,75 ,2,14969,569345 ,2,14970,75 ,2,14971,310855 ,2,829,45 ,1,0,58810 ,2,14956,218260 ,2,14957,45 ,2,14958,61425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61415 ,2,14963,267930 ,2,14964,275270 ,2,14965,45 ,2,14966,569315 ,2,14967,45 ,2,14968,61405 ,2,14969,569380 ,2,14970,61335 ,2,14971,310865 ,2,829,45 ,1,0,255885 ,2,14956,222140 ,2,14957,45 ,2,14958,61540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61530 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,569385 ,2,14970,75 ,2,14971,311125 ,2,829,45 ,1,0,58810 ,1,1,58955 ,1,2,58925 ,1,3,58905 ,1,4,58965 ,1,5,58885 ,1,6,58865 ,1,7,58830 ,2,14956,222110 ,2,14957,45 ,2,14958,62615 ,2,14959,61755 ,2,14960,75 ,2,14961,45 ,2,14962,61745 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,569415 ,2,14967,45 ,2,14968,75 ,2,14969,569410 ,2,14970,75 ,2,14971,311135 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,218605 ,2,14957,45 ,2,14958,61655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61645 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,569445 ,2,14967,45 ,2,14968,75 ,2,14969,569420 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,606530 ,1,2,606530 ,2,14956,218575 ,2,14957,45 ,2,14958,61635 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61625 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,569455 ,2,14967,45 ,2,14968,75 ,2,14969,569450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59100 ,1,1,57795 ,1,2,58895 ,2,14956,218550 ,2,14957,45 ,2,14958,61615 ,2,14959,61605 ,2,14960,75 ,2,14961,45 ,2,14962,61560 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,569460 ,2,14970,61550 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,600035 ,1,2,600035 ,2,14956,218485 ,2,14957,45 ,2,14958,61595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61570 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,569270 ,2,14967,45 ,2,14968,75 ,2,14969,569475 ,2,14970,75 ,2,14971,311160 ,2,829,45 ,1,0,58810 ,1,1,57795 ,1,2,58895 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,25365 ,2,14956,218700 ,2,14957,45 ,2,14958,61735 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61725 ,2,14963,267965 ,2,14964,275280 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,61715 ,2,14969,569520 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,221815 ,2,14957,45 ,2,14958,62510 ,2,14959,61920 ,2,14960,75 ,2,14961,45 ,2,14962,61910 ,2,14963,267975 ,2,14964,275290 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569525 ,2,14970,75 ,2,14971,311365 ,2,829,45 ,1,0,25385 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267975 ,2,14964,275290 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,218755 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61830 ,2,14963,267975 ,2,14964,275290 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569530 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,218785 ,2,14957,45 ,2,14958,61865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61855 ,2,14963,267975 ,2,14964,275290 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,61845 ,2,14969,569540 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58785 ,2,14956,218795 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61875 ,2,14963,267975 ,2,14964,275290 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569545 ,2,14970,75 ,2,14971,311375 ,2,829,45 ,1,0,3010 ,1,1,169850 ,1,2,169805 ,1,3,169795 ,2,14956,185840 ,2,14957,45 ,2,14958,62015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,61990 ,2,14963,267985 ,2,14964,275300 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,61940 ,2,14969,569550 ,2,14970,75 ,2,14971,311415 ,2,829,45 ,1,0,168720 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267985 ,2,14964,275300 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170095 ,1,1,45 ,2,14956,184640 ,2,14957,45 ,2,14958,62075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62065 ,2,14963,267995 ,2,14964,275310 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,569570 ,2,14970,75 ,2,14971,311435 ,2,829,45 ,1,0,170115 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,267995 ,2,14964,275310 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,221515 ,2,14957,45 ,2,14958,62390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62380 ,2,14963,268015 ,2,14964,275330 ,2,14965,45 ,2,14966,569615 ,2,14967,45 ,2,14968,75 ,2,14969,569610 ,2,14970,75 ,2,14971,311570 ,2,829,45 ,1,0,59045 ,1,1,58040 ,1,2,57865 ,1,3,59110 ,1,4,59220 ,1,5,57960 ,1,6,59175 ,1,7,59240 ,1,8,57950 ,1,9,58085 ,1,10,58140 ,1,11,58310 ,1,12,57925 ,1,13,58150 ,1,14,59195 ,1,15,59090 ,1,16,58075 ,1,17,59075 ,1,18,58985 ,1,19,58995 ,1,20,58130 ,1,21,58120 ,1,22,58185 ,1,23,58345 ,1,24,58355 ,1,25,58175 ,1,26,59210 ,1,27,59120 ,1,28,58095 ,1,29,58165 ,1,30,59065 ,1,31,59055 ,1,32,58245 ,1,33,57690 ,1,34,57905 ,1,35,57815 ,1,36,59185 ,1,37,59165 ,1,38,57700 ,1,39,58195 ,1,40,59285 ,1,41,58300 ,1,42,58375 ,1,43,59100 ,1,44,59305 ,1,45,59230 ,1,46,59015 ,1,47,58335 ,1,48,58030 ,1,49,58255 ,1,50,59275 ,1,51,58365 ,1,52,59005 ,1,53,57640 ,1,54,58050 ,2,14956,221450 ,2,14957,45 ,2,14958,62330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62305 ,2,14963,268005 ,2,14964,275320 ,2,14965,45 ,2,14966,559650 ,2,14967,45 ,2,14968,75 ,2,14969,569620 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59315 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268005 ,2,14964,275320 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170210 ,1,1,45 ,2,14956,221305 ,2,14957,45 ,2,14958,62275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62260 ,2,14963,268005 ,2,14964,275320 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569625 ,2,14970,75 ,2,14971,311580 ,2,829,45 ,1,0,59480 ,2,14956,221355 ,2,14957,45 ,2,14958,62295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62285 ,2,14963,268005 ,2,14964,275320 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569650 ,2,14970,75 ,2,14971,311590 ,2,829,45 ,1,0,56850 ,1,1,59480 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268015 ,2,14964,275330 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167555 ,1,1,168235 ,1,2,170230 ,2,14956,263815 ,2,14957,45 ,2,14958,62665 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62655 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,569675 ,2,14970,75 ,2,14971,312585 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,2,14956,263805 ,2,14957,45 ,2,14958,93475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93465 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,569690 ,2,14970,75 ,2,14971,312595 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,2,14956,261655 ,2,14957,45 ,2,14958,92185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92175 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569725 ,2,14967,45 ,2,14968,75 ,2,14969,569720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170395 ,1,1,45 ,2,14956,261645 ,2,14957,45 ,2,14958,92165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92125 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569745 ,2,14967,45 ,2,14968,75 ,2,14969,569730 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59500 ,2,14956,261635 ,2,14957,45 ,2,14958,92115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92105 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,569750 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,25665 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,600065 ,2,14956,222210 ,2,14957,45 ,2,14958,62720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62710 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,569760 ,2,14967,45 ,2,14968,75 ,2,14969,569755 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170485 ,1,1,45 ,2,14956,222255 ,2,14957,45 ,2,14958,62765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62755 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,569760 ,2,14967,45 ,2,14968,75 ,2,14969,569795 ,2,14970,75 ,2,14971,312665 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,2,14956,261480 ,2,14957,45 ,2,14958,62800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62785 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,569760 ,2,14967,45 ,2,14968,75 ,2,14969,569800 ,2,14970,75 ,2,14971,312850 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,2,14956,250875 ,2,14957,45 ,2,14958,85660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85650 ,2,14963,269480 ,2,14964,275365 ,2,14965,45 ,2,14966,569810 ,2,14967,45 ,2,14968,62830 ,2,14969,569805 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170505 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269480 ,2,14964,275365 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170525 ,1,1,45 ,2,14956,222565 ,2,14957,45 ,2,14958,62970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62890 ,2,14963,269480 ,2,14964,275365 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,569820 ,2,14970,75 ,2,14971,312955 ,2,829,45 ,1,0,170545 ,1,1,45 ,2,14956,222320 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,62930 ,2,14963,268025 ,2,14964,275375 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569830 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170590 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268025 ,2,14964,275375 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170610 ,1,1,45 ,2,14956,250845 ,2,14957,45 ,2,14958,63010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63000 ,2,14963,269480 ,2,14964,275365 ,2,14965,45 ,2,14966,569865 ,2,14967,45 ,2,14968,75 ,2,14969,569860 ,2,14970,75 ,2,14971,313025 ,2,829,45 ,1,0,170635 ,1,1,45 ,2,14956,222690 ,2,14957,45 ,2,14958,63135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63125 ,2,14963,268035 ,2,14964,275385 ,2,14965,45 ,2,14966,569895 ,2,14967,45 ,2,14968,75 ,2,14969,569870 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170655 ,1,1,45 ,2,14956,222575 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63030 ,2,14963,268035 ,2,14964,275385 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,569890 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170730 ,1,1,45 ,2,14956,222585 ,2,14957,45 ,2,14958,63075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63040 ,2,14963,268035 ,2,14964,275385 ,2,14965,45 ,2,14966,569950 ,2,14967,45 ,2,14968,75 ,2,14969,569900 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268035 ,2,14964,275385 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59810 ,1,1,59765 ,1,2,59755 ,2,14956,222595 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63115 ,2,14963,268035 ,2,14964,275385 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,569960 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,56850 ,1,1,59645 ,1,2,59620 ,1,3,59610 ,1,4,59635 ,1,5,59735 ,1,6,56870 ,1,7,59715 ,1,8,59695 ,1,9,59655 ,1,10,59600 ,1,11,59745 ,1,12,59725 ,1,13,56960 ,1,14,59665 ,1,15,59705 ,1,16,56945 ,2,14956,250780 ,2,14957,45 ,2,14958,85610 ,2,14959,64115 ,2,14960,75 ,2,14961,45 ,2,14962,64105 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,569985 ,2,14967,45 ,2,14968,75 ,2,14969,569965 ,2,14970,75 ,2,14971,313140 ,2,829,45 ,1,0,558575 ,2,14956,222710 ,2,14957,45 ,2,14958,63195 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63145 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,569975 ,2,14970,75 ,2,14971,313150 ,2,829,45 ,2,14956,222735 ,2,14957,45 ,2,14958,63225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63215 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,570025 ,2,14967,45 ,2,14968,75 ,2,14969,570020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59840 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,170830 ,1,1,45 ,2,14956,222745 ,2,14957,45 ,2,14958,63320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63310 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,570035 ,2,14970,75 ,2,14971,313180 ,2,829,45 ,1,0,59830 ,1,1,59885 ,1,2,59875 ,1,3,59865 ,1,4,59855 ,2,14956,222755 ,2,14957,45 ,2,14958,63340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63330 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,570040 ,2,14970,75 ,2,14971,313190 ,2,829,45 ,1,0,170965 ,1,1,45 ,2,14956,223120 ,2,14957,45 ,2,14958,63780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63770 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,570070 ,2,14967,45 ,2,14968,75 ,2,14969,570055 ,2,14970,75 ,2,14971,313245 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,223100 ,2,14957,45 ,2,14958,63740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63730 ,2,14963,268095 ,2,14964,275410 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570075 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59905 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268095 ,2,14964,275410 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57710 ,2,14956,222990 ,2,14957,45 ,2,14958,63685 ,2,14959,63525 ,2,14960,75 ,2,14961,45 ,2,14962,63485 ,2,14963,268095 ,2,14964,275410 ,2,14965,45 ,2,14966,570085 ,2,14967,45 ,2,14968,75 ,2,14969,570080 ,2,14970,75 ,2,14971,313255 ,2,829,45 ,2,14956,222835 ,2,14957,45 ,2,14958,63475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63465 ,2,14963,268075 ,2,14964,275420 ,2,14965,45 ,2,14966,570095 ,2,14967,45 ,2,14968,75 ,2,14969,570090 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59925 ,1,1,59915 ,2,14956,222775 ,2,14957,45 ,2,14958,63420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63410 ,2,14963,268075 ,2,14964,275420 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,570100 ,2,14970,63385 ,2,14971,45 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268075 ,2,14964,275420 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558570 ,2,14956,222980 ,2,14957,45 ,2,14958,63675 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63665 ,2,14963,268085 ,2,14964,275430 ,2,14965,45 ,2,14966,570070 ,2,14967,45 ,2,14968,75 ,2,14969,570140 ,2,14970,75 ,2,14971,313470 ,2,829,45 ,1,0,59935 ,1,1,59955 ,1,2,59945 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268085 ,2,14964,275430 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558635 ,2,14956,222875 ,2,14957,45 ,2,14958,63595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63585 ,2,14963,268085 ,2,14964,275430 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,570145 ,2,14970,75 ,2,14971,313480 ,2,829,45 ,2,14956,222950 ,2,14957,45 ,2,14958,63655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63645 ,2,14963,268085 ,2,14964,275430 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,63635 ,2,14969,570150 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59965 ,1,1,60010 ,1,2,59975 ,2,14956,223000 ,2,14957,45 ,2,14958,63705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63695 ,2,14963,268095 ,2,14964,275410 ,2,14965,45 ,2,14966,569270 ,2,14967,45 ,2,14968,75 ,2,14969,570155 ,2,14970,75 ,2,14971,313490 ,2,829,45 ,1,0,558645 ,2,14956,223185 ,2,14957,45 ,2,14958,63830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63800 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,63790 ,2,14969,570160 ,2,14970,75 ,2,14971,313570 ,2,829,45 ,1,0,558650 ,2,14956,223195 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63850 ,2,14963,268105 ,2,14964,275395 ,2,14965,548460 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,602365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60020 ,1,1,60440 ,1,2,60430 ,1,3,60420 ,1,4,60410 ,1,5,60385 ,1,6,60125 ,1,7,60115 ,1,8,60080 ,1,9,60070 ,1,10,60060 ,1,11,60050 ,1,12,60040 ,1,13,60030 ,2,14956,223205 ,2,14957,45 ,2,14958,63870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63860 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,570195 ,2,14970,75 ,2,14971,313590 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,60135 ,2,14956,223385 ,2,14957,45 ,2,14958,63900 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63890 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,63880 ,2,14969,570200 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558725 ,2,14956,223395 ,2,14957,45 ,2,14958,63945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63935 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,570210 ,2,14967,45 ,2,14968,75 ,2,14969,570205 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,223405 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63955 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570230 ,2,14970,75 ,2,14971,313600 ,2,829,45 ,1,0,60165 ,1,1,60155 ,1,2,60145 ,2,14956,223430 ,2,14957,45 ,2,14958,63980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63965 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,567850 ,2,14967,45 ,2,14968,75 ,2,14969,570235 ,2,14970,75 ,2,14971,313610 ,2,829,45 ,2,14956,223440 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,63990 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,570240 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60215 ,1,1,60205 ,1,2,60175 ,1,3,60135 ,2,14956,223645 ,2,14957,45 ,2,14958,64055 ,2,14959,45 ,2,14960,64010 ,2,14961,45 ,2,14962,64000 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,570260 ,2,14967,45 ,2,14968,75 ,2,14969,570255 ,2,14970,75 ,2,14971,313620 ,2,829,45 ,1,0,60215 ,1,1,60165 ,1,2,60460 ,1,3,60020 ,1,4,59965 ,1,5,59935 ,2,14956,223665 ,2,14957,45 ,2,14958,64095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64085 ,2,14963,268105 ,2,14964,275395 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,570265 ,2,14970,75 ,2,14971,313740 ,2,829,45 ,2,14956,250550 ,2,14957,45 ,2,14958,64205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64190 ,2,14963,268115 ,2,14964,275440 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,570275 ,2,14970,75 ,2,14971,329485 ,2,829,45 ,1,0,60245 ,1,1,60225 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268115 ,2,14964,275440 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60245 ,2,14956,250510 ,2,14957,45 ,2,14958,85545 ,2,14959,85535 ,2,14960,75 ,2,14961,45 ,2,14962,85480 ,2,14963,269450 ,2,14964,276780 ,2,14965,45 ,2,14966,570290 ,2,14967,45 ,2,14968,75 ,2,14969,570285 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60225 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,2,14956,250385 ,2,14957,45 ,2,14958,85410 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85395 ,2,14963,269450 ,2,14964,276780 ,2,14965,45 ,2,14966,570340 ,2,14967,45 ,2,14968,75 ,2,14969,570335 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,60265 ,2,14956,250335 ,2,14957,45 ,2,14958,64305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64285 ,2,14963,268125 ,2,14964,275480 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,570345 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268125 ,2,14964,275480 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60255 ,1,1,60365 ,1,2,60355 ,1,3,60345 ,1,4,60335 ,1,5,60265 ,1,6,60325 ,1,7,60275 ,2,14956,223870 ,2,14957,45 ,2,14958,64275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64265 ,2,14963,268125 ,2,14964,275480 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,64255 ,2,14969,570350 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60375 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,60325 ,1,6,60205 ,1,7,60215 ,1,8,60165 ,2,14956,224015 ,2,14957,45 ,2,14958,64430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64415 ,2,14963,268135 ,2,14964,275490 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60335 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268135 ,2,14964,275490 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60460 ,1,1,60020 ,1,2,59965 ,1,3,59935 ,2,14956,223910 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64385 ,2,14963,268135 ,2,14964,275490 ,2,14965,45 ,2,14966,570365 ,2,14967,45 ,2,14968,75 ,2,14969,570360 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,12445 ,1,1,171505 ,1,2,171495 ,1,3,171450 ,2,14956,223960 ,2,14957,45 ,2,14958,64405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64395 ,2,14963,268135 ,2,14964,275490 ,2,14965,548490 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,570370 ,2,14970,75 ,2,14971,313935 ,2,829,45 ,1,0,558815 ,2,14956,224635 ,2,14957,45 ,2,14958,65290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65280 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570385 ,2,14967,45 ,2,14968,75 ,2,14969,570380 ,2,14970,75 ,2,14971,313985 ,2,829,45 ,1,0,60470 ,1,1,60490 ,1,2,60480 ,2,14956,224090 ,2,14957,45 ,2,14958,64520 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64510 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570400 ,2,14967,45 ,2,14968,75 ,2,14969,570390 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167555 ,1,1,171605 ,2,14956,224080 ,2,14957,45 ,2,14958,64490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64450 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570410 ,2,14967,45 ,2,14968,75 ,2,14969,570405 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,56645 ,1,1,56500 ,1,2,56730 ,1,3,56605 ,1,4,60530 ,1,5,56655 ,1,6,56685 ,1,7,56695 ,1,8,56740 ,1,9,56705 ,1,10,56530 ,1,11,60550 ,1,12,56510 ,1,13,60540 ,1,14,56520 ,1,15,60565 ,1,16,56540 ,1,17,56750 ,1,18,56330 ,1,19,56715 ,1,20,56635 ,1,21,56595 ,1,22,56625 ,1,23,56575 ,2,14956,224035 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64460 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570365 ,2,14967,45 ,2,14968,75 ,2,14969,570450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,64555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,56320 ,1,1,60675 ,1,2,56280 ,1,3,60665 ,1,4,60650 ,1,5,60640 ,1,6,60630 ,1,7,60620 ,1,8,60595 ,1,9,60995 ,1,10,60585 ,1,11,60575 ,2,14956,224555 ,2,14957,45 ,2,14958,64615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64605 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570385 ,2,14967,45 ,2,14968,75 ,2,14969,570455 ,2,14970,75 ,2,14971,314100 ,2,829,45 ,2,14956,224535 ,2,14957,45 ,2,14958,64755 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64745 ,2,14963,268145 ,2,14964,275510 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570465 ,2,14970,75 ,2,14971,314110 ,2,829,45 ,1,0,56270 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268145 ,2,14964,275510 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,12445 ,1,1,6145 ,1,2,171815 ,1,3,166540 ,2,14956,224125 ,2,14957,45 ,2,14958,64670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64660 ,2,14963,268145 ,2,14964,275510 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570475 ,2,14970,75 ,2,14971,314120 ,2,829,45 ,1,0,12445 ,1,1,171855 ,1,2,166540 ,2,14956,224135 ,2,14957,45 ,2,14958,64715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64705 ,2,14963,268145 ,2,14964,275510 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570480 ,2,14970,75 ,2,14971,314130 ,2,829,45 ,1,0,12445 ,1,1,6145 ,1,2,171885 ,1,3,166540 ,2,14956,224145 ,2,14957,45 ,2,14958,64735 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64725 ,2,14963,268145 ,2,14964,275510 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570485 ,2,14970,75 ,2,14971,314140 ,2,829,45 ,1,0,60865 ,1,1,56160 ,1,2,60925 ,1,3,60820 ,1,4,60800 ,1,5,60875 ,1,6,60905 ,1,7,56210 ,1,8,56220 ,1,9,60895 ,1,10,60885 ,1,11,60915 ,1,12,56200 ,1,13,56180 ,1,14,56190 ,1,15,56170 ,1,16,60975 ,1,17,60965 ,1,18,60935 ,1,19,60955 ,2,14956,224515 ,2,14957,45 ,2,14958,65205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65190 ,2,14963,268170 ,2,14964,275520 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,64825 ,2,14969,570505 ,2,14970,64765 ,2,14971,314150 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268170 ,2,14964,275520 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,60985 ,1,1,56150 ,2,14956,224410 ,2,14957,45 ,2,14958,64875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64865 ,2,14963,268170 ,2,14964,275520 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570510 ,2,14970,75 ,2,14971,314190 ,2,829,45 ,1,0,558895 ,2,14956,224315 ,2,14957,45 ,2,14958,65090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65075 ,2,14963,268160 ,2,14964,275530 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570515 ,2,14970,75 ,2,14971,314330 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,61060 ,1,3,166610 ,1,4,45 ,1,5,61015 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268160 ,2,14964,275530 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,600040 ,2,14956,224215 ,2,14957,45 ,2,14958,64985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64975 ,2,14963,268160 ,2,14964,275530 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570520 ,2,14970,64940 ,2,14971,314290 ,2,829,45 ,1,0,61070 ,2,14956,224225 ,2,14957,45 ,2,14958,65045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,64995 ,2,14963,268160 ,2,14964,275530 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570525 ,2,14970,75 ,2,14971,314350 ,2,829,45 ,1,0,172075 ,1,1,45 ,1,2,61105 ,1,3,171975 ,1,4,45 ,1,5,61090 ,1,6,166650 ,1,7,45 ,1,8,61080 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,224245 ,2,14957,45 ,2,14958,65065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65055 ,2,14963,268160 ,2,14964,275530 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570530 ,2,14970,75 ,2,14971,314340 ,2,829,45 ,1,0,61115 ,2,14956,224440 ,2,14957,45 ,2,14958,65160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65120 ,2,14963,268170 ,2,14964,275520 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570590 ,2,14970,75 ,2,14971,314210 ,2,829,45 ,1,0,558950 ,2,14956,224450 ,2,14957,45 ,2,14958,65180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65170 ,2,14963,268170 ,2,14964,275520 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570595 ,2,14970,75 ,2,14971,314400 ,2,829,45 ,1,0,616130 ,1,1,615295 ,1,2,65 ,1,3,61115 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,63885 ,1,9,63875 ,1,10,63865 ,1,11,65 ,1,12,63855 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,63845 ,1,19,63835 ,1,20,63825 ,1,21,63795 ,1,22,63785 ,1,23,63775 ,1,24,65 ,1,25,63765 ,1,26,63755 ,1,27,65 ,1,28,63745 ,1,29,65 ,1,30,65 ,1,31,63735 ,1,32,63725 ,1,33,63700 ,1,34,65 ,1,35,63690 ,1,36,61090 ,1,37,63630 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,63590 ,1,42,63580 ,1,43,65 ,1,44,65 ,1,45,63570 ,1,46,63560 ,1,47,65 ,1,48,65 ,1,49,63540 ,1,50,65 ,1,51,63520 ,1,52,65 ,1,53,61290 ,1,54,61250 ,1,55,61230 ,1,56,61220 ,1,57,61200 ,1,58,61080 ,1,59,61190 ,1,60,61180 ,1,61,61170 ,1,62,65 ,1,63,61135 ,1,64,65 ,1,65,61125 ,2,14956,224565 ,2,14957,45 ,2,14958,65225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65215 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570385 ,2,14967,45 ,2,14968,75 ,2,14969,570600 ,2,14970,75 ,2,14971,314420 ,2,829,45 ,2,14956,224575 ,2,14957,45 ,2,14958,65250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65235 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570385 ,2,14967,45 ,2,14968,75 ,2,14969,570625 ,2,14970,75 ,2,14971,314430 ,2,829,45 ,1,0,61240 ,2,14956,224605 ,2,14957,45 ,2,14958,65270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65260 ,2,14963,268180 ,2,14964,275500 ,2,14965,45 ,2,14966,570385 ,2,14967,45 ,2,14968,75 ,2,14969,570635 ,2,14970,75 ,2,14971,314445 ,2,829,45 ,1,0,172140 ,1,1,45 ,2,14956,250195 ,2,14957,45 ,2,14958,85225 ,2,14959,84530 ,2,14960,75 ,2,14961,45 ,2,14962,84475 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,576920 ,2,14967,45 ,2,14968,75 ,2,14969,570660 ,2,14970,75 ,2,14971,314465 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,248945 ,2,14957,45 ,2,14958,65320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65310 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,570670 ,2,14970,75 ,2,14971,314475 ,2,829,45 ,1,0,61310 ,1,1,63435 ,1,2,61320 ,2,14956,226020 ,2,14957,45 ,2,14958,66300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66290 ,2,14963,268205 ,2,14964,275540 ,2,14965,45 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,570690 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,61330 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268205 ,2,14964,275540 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61340 ,2,14956,224735 ,2,14957,45 ,2,14958,65465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65455 ,2,14963,268205 ,2,14964,275540 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,65430 ,2,14969,570695 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61340 ,2,14956,225725 ,2,14957,45 ,2,14958,66095 ,2,14959,65970 ,2,14960,75 ,2,14961,45 ,2,14962,65960 ,2,14963,268205 ,2,14964,275540 ,2,14965,548550 ,2,14966,570920 ,2,14967,45 ,2,14968,75 ,2,14969,570740 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,61390 ,1,3,171975 ,1,4,45 ,1,5,61360 ,1,6,166650 ,1,7,45 ,1,8,61350 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,225380 ,2,14957,45 ,2,14958,65875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65865 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,570755 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,65495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61450 ,1,1,61440 ,1,2,61430 ,1,3,61420 ,1,4,61410 ,2,14956,224770 ,2,14957,45 ,2,14958,65565 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65525 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,65515 ,2,14969,570765 ,2,14970,75 ,2,14971,314580 ,2,829,45 ,1,0,172150 ,1,1,45 ,2,14956,224885 ,2,14957,45 ,2,14958,65585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65575 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,566715 ,2,14967,45 ,2,14968,75 ,2,14969,570770 ,2,14970,75 ,2,14971,314610 ,2,829,45 ,1,0,558250 ,2,14956,224895 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65605 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,570785 ,2,14967,45 ,2,14968,75 ,2,14969,570775 ,2,14970,75 ,2,14971,314630 ,2,829,45 ,1,0,62925 ,1,1,61505 ,1,2,61495 ,1,3,61460 ,2,14956,224920 ,2,14957,45 ,2,14958,65625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65615 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,570795 ,2,14967,45 ,2,14968,75 ,2,14969,570790 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,172180 ,1,1,45 ,2,14956,224930 ,2,14957,45 ,2,14958,65670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65635 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,566950 ,2,14967,45 ,2,14968,75 ,2,14969,570800 ,2,14970,75 ,2,14971,314640 ,2,829,45 ,1,0,172190 ,1,1,45 ,2,14956,224940 ,2,14957,45 ,2,14958,65690 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65680 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,570815 ,2,14967,45 ,2,14968,75 ,2,14969,570810 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559075 ,2,14956,224950 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65700 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,570820 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,224960 ,2,14957,45 ,2,14958,65725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65715 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,566285 ,2,14967,45 ,2,14968,75 ,2,14969,570825 ,2,14970,75 ,2,14971,314650 ,2,829,45 ,1,0,62915 ,1,1,62905 ,1,2,62895 ,1,3,62885 ,1,4,62600 ,1,5,62475 ,1,6,63425 ,1,7,62335 ,1,8,62225 ,1,9,61515 ,2,14956,224970 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65735 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,570865 ,2,14967,45 ,2,14968,75 ,2,14969,570860 ,2,14970,75 ,2,14971,314660 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,61525 ,2,14956,225180 ,2,14957,45 ,2,14958,65760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65745 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,567600 ,2,14967,45 ,2,14968,75 ,2,14969,570870 ,2,14970,75 ,2,14971,314670 ,2,829,45 ,1,0,61535 ,2,14956,225250 ,2,14957,45 ,2,14958,65810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65800 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,65790 ,2,14969,570890 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61535 ,2,14956,225260 ,2,14957,45 ,2,14958,65830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,65820 ,2,14963,268190 ,2,14964,275550 ,2,14965,45 ,2,14966,566950 ,2,14967,45 ,2,14968,75 ,2,14969,570895 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,61565 ,1,3,171975 ,1,4,45 ,1,5,61555 ,1,6,166650 ,1,7,45 ,1,8,61545 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,225595 ,2,14957,45 ,2,14958,66030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66020 ,2,14963,266515 ,2,14964,280665 ,2,14965,548565 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,570930 ,2,14970,75 ,2,14971,314935 ,2,829,45 ,1,0,559105 ,2,14956,225880 ,2,14957,45 ,2,14958,66115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66105 ,2,14963,268205 ,2,14964,275540 ,2,14965,45 ,2,14966,570970 ,2,14967,45 ,2,14968,75 ,2,14969,570960 ,2,14970,75 ,2,14971,315025 ,2,829,45 ,1,0,559095 ,2,14956,225955 ,2,14957,45 ,2,14958,66195 ,2,14959,66165 ,2,14960,75 ,2,14961,45 ,2,14962,66145 ,2,14963,268205 ,2,14964,275540 ,2,14965,45 ,2,14966,570990 ,2,14967,45 ,2,14968,75 ,2,14969,570975 ,2,14970,75 ,2,14971,315075 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,61935 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,61925 ,1,9,61915 ,1,10,61905 ,1,11,65 ,1,12,61870 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,61860 ,1,19,61850 ,1,20,65 ,1,21,61840 ,1,22,61825 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,61815 ,1,27,65 ,1,28,61805 ,1,29,65 ,1,30,65 ,1,31,61795 ,1,32,61760 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,61555 ,1,37,61565 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,61750 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,61740 ,1,46,65 ,1,47,61730 ,1,48,61720 ,1,49,65 ,1,50,65 ,1,51,61700 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,61690 ,1,57,61545 ,1,58,61660 ,1,59,61650 ,1,60,61640 ,1,61,61630 ,1,62,61620 ,1,63,61610 ,1,64,65 ,1,65,61600 ,2,14956,225975 ,2,14957,45 ,2,14958,66235 ,2,14959,66225 ,2,14960,75 ,2,14961,45 ,2,14962,66215 ,2,14963,268205 ,2,14964,275540 ,2,14965,548580 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,570925 ,2,14970,66205 ,2,14971,45 ,2,829,45 ,1,0,61555 ,1,1,61750 ,1,2,61545 ,1,3,61815 ,1,4,61660 ,1,5,61925 ,1,6,61640 ,1,7,61740 ,1,8,61915 ,1,9,61760 ,1,10,61690 ,1,11,61850 ,1,12,61825 ,1,13,61860 ,1,14,61905 ,1,15,61630 ,1,16,61840 ,1,17,61600 ,1,18,61565 ,1,19,61730 ,1,20,61935 ,1,21,61720 ,1,22,61650 ,1,23,61610 ,1,24,61870 ,1,25,61795 ,1,26,61805 ,1,27,61700 ,1,28,61620 ,2,14956,225985 ,2,14957,45 ,2,14958,66280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66270 ,2,14963,268205 ,2,14964,275540 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571000 ,2,14970,75 ,2,14971,315265 ,2,829,45 ,1,0,559160 ,2,14956,226545 ,2,14957,45 ,2,14958,66700 ,2,14959,66665 ,2,14960,66585 ,2,14961,45 ,2,14962,66555 ,2,14963,268215 ,2,14964,275585 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571035 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559095 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268215 ,2,14964,275585 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61965 ,1,1,61955 ,2,14956,226115 ,2,14957,45 ,2,14958,66415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66395 ,2,14963,268215 ,2,14964,275585 ,2,14965,45 ,2,14966,571045 ,2,14967,45 ,2,14968,66385 ,2,14969,571040 ,2,14970,75 ,2,14971,315330 ,2,829,45 ,1,0,559165 ,2,14956,226190 ,2,14957,45 ,2,14958,66445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66435 ,2,14963,268215 ,2,14964,275585 ,2,14965,45 ,2,14966,571045 ,2,14967,45 ,2,14968,66425 ,2,14969,571060 ,2,14970,75 ,2,14971,315340 ,2,829,45 ,1,0,62020 ,1,1,61535 ,1,2,62010 ,1,3,61985 ,1,4,61975 ,2,14956,226255 ,2,14957,45 ,2,14958,66505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66495 ,2,14963,268215 ,2,14964,275585 ,2,14965,45 ,2,14966,571045 ,2,14967,45 ,2,14968,66485 ,2,14969,571070 ,2,14970,75 ,2,14971,315350 ,2,829,45 ,1,0,172355 ,1,1,45 ,2,14956,226300 ,2,14957,45 ,2,14958,66545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66535 ,2,14963,268215 ,2,14964,275585 ,2,14965,45 ,2,14966,571045 ,2,14967,45 ,2,14968,66525 ,2,14969,571090 ,2,14970,75 ,2,14971,315360 ,2,829,45 ,1,0,172385 ,1,1,45 ,2,14956,226365 ,2,14957,45 ,2,14958,66655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66645 ,2,14963,268225 ,2,14964,275595 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,66595 ,2,14969,571100 ,2,14970,75 ,2,14971,315380 ,2,829,45 ,1,0,62040 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268225 ,2,14964,275595 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62185 ,1,1,62175 ,1,2,62165 ,1,3,62155 ,1,4,62145 ,1,5,62135 ,1,6,62125 ,1,7,62080 ,1,8,62070 ,1,9,62060 ,1,10,62050 ,2,14956,231010 ,2,14957,45 ,2,14958,69635 ,2,14959,69550 ,2,14960,75 ,2,14961,45 ,2,14962,66750 ,2,14963,268235 ,2,14964,275605 ,2,14965,45 ,2,14966,570280 ,2,14967,45 ,2,14968,75 ,2,14969,571110 ,2,14970,75 ,2,14971,315470 ,2,829,45 ,1,0,62020 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268235 ,2,14964,275605 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559095 ,1,1,559170 ,2,14956,230720 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69540 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62195 ,2,14956,226665 ,2,14957,45 ,2,14958,66820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66810 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,571140 ,2,14967,45 ,2,14968,75 ,2,14969,571125 ,2,14970,75 ,2,14971,315480 ,2,829,45 ,1,0,172580 ,1,1,45 ,2,14956,226675 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66830 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571145 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,62235 ,2,14956,230465 ,2,14957,45 ,2,14958,66850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66840 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,571140 ,2,14967,45 ,2,14968,75 ,2,14969,571150 ,2,14970,75 ,2,14971,315495 ,2,829,45 ,1,0,62245 ,2,14956,226955 ,2,14957,45 ,2,14958,66930 ,2,14959,66910 ,2,14960,75 ,2,14961,45 ,2,14962,66900 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,571155 ,2,14970,75 ,2,14971,315760 ,2,829,45 ,1,0,62245 ,2,14956,230305 ,2,14957,45 ,2,14958,69285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69260 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,571225 ,2,14967,45 ,2,14968,75 ,2,14969,571165 ,2,14970,75 ,2,14971,315930 ,2,829,45 ,1,0,559185 ,2,14956,227060 ,2,14957,45 ,2,14958,66965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66955 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,571175 ,2,14970,75 ,2,14971,315940 ,2,829,45 ,1,0,558275 ,2,14956,227040 ,2,14957,45 ,2,14958,67005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,66985 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,66975 ,2,14969,571220 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558275 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62270 ,1,1,62255 ,2,14956,228900 ,2,14957,45 ,2,14958,68665 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68635 ,2,14963,268350 ,2,14964,275630 ,2,14965,548690 ,2,14966,571790 ,2,14967,45 ,2,14968,75 ,2,14969,571230 ,2,14970,75 ,2,14971,315960 ,2,829,45 ,1,0,558280 ,2,14956,228890 ,2,14957,45 ,2,14958,68625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68615 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,571245 ,2,14967,45 ,2,14968,75 ,2,14969,571240 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62325 ,1,1,62245 ,1,2,62300 ,1,3,62290 ,1,4,62280 ,2,14956,227330 ,2,14957,45 ,2,14958,67325 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67315 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,571305 ,2,14967,45 ,2,14968,75 ,2,14969,571250 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,172630 ,1,1,45 ,2,14956,227320 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67285 ,2,14963,268255 ,2,14964,275640 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571310 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62325 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268255 ,2,14964,275640 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,62345 ,2,14956,227070 ,2,14957,45 ,2,14958,67100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67080 ,2,14963,268255 ,2,14964,275640 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571315 ,2,14970,75 ,2,14971,315970 ,2,829,45 ,1,0,62355 ,2,14956,227100 ,2,14957,45 ,2,14958,67130 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67120 ,2,14963,268255 ,2,14964,275640 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,67110 ,2,14969,571320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62355 ,2,14956,227150 ,2,14957,45 ,2,14958,67220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67210 ,2,14963,268255 ,2,14964,275640 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571325 ,2,14970,67145 ,2,14971,315995 ,2,829,45 ,1,0,559205 ,2,14956,227285 ,2,14957,45 ,2,14958,67275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67265 ,2,14963,268255 ,2,14964,275640 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571335 ,2,14970,67230 ,2,14971,316025 ,2,829,45 ,1,0,62375 ,1,1,62365 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559210 ,2,14956,227370 ,2,14957,45 ,2,14958,67390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67380 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,67370 ,2,14969,571340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62455 ,1,1,62355 ,1,2,62445 ,1,3,62395 ,1,4,62385 ,2,14956,227410 ,2,14957,45 ,2,14958,67435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67425 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,67415 ,2,14969,571365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,172710 ,1,1,45 ,2,14956,228730 ,2,14957,45 ,2,14958,67455 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67445 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,571375 ,2,14967,45 ,2,14968,75 ,2,14969,571370 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62455 ,2,14956,227730 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67655 ,2,14963,268265 ,2,14964,275660 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,67515 ,2,14969,571380 ,2,14970,75 ,2,14971,316275 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268265 ,2,14964,275660 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62465 ,2,14956,227535 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67555 ,2,14963,268265 ,2,14964,275660 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571400 ,2,14970,75 ,2,14971,316285 ,2,829,45 ,1,0,172750 ,1,1,45 ,2,14956,227685 ,2,14957,45 ,2,14958,67575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67565 ,2,14963,268265 ,2,14964,275660 ,2,14965,45 ,2,14966,571410 ,2,14967,45 ,2,14968,75 ,2,14969,571405 ,2,14970,75 ,2,14971,316325 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,62485 ,2,14956,227695 ,2,14957,45 ,2,14958,67645 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67635 ,2,14963,268265 ,2,14964,275660 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,67625 ,2,14969,571415 ,2,14970,75 ,2,14971,316355 ,2,829,45 ,1,0,62495 ,2,14956,228620 ,2,14957,45 ,2,14958,67835 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67825 ,2,14963,268275 ,2,14964,275690 ,2,14965,45 ,2,14966,571410 ,2,14967,45 ,2,14968,75 ,2,14969,571430 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62495 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268275 ,2,14964,275690 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559250 ,2,14956,227865 ,2,14957,45 ,2,14958,67730 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67700 ,2,14963,268275 ,2,14964,275690 ,2,14965,45 ,2,14966,571440 ,2,14967,45 ,2,14968,75 ,2,14969,571435 ,2,14970,75 ,2,14971,316385 ,2,829,45 ,1,0,62515 ,1,1,62505 ,2,14956,227895 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67790 ,2,14963,268275 ,2,14964,275690 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571460 ,2,14970,75 ,2,14971,316395 ,2,829,45 ,1,0,559255 ,2,14956,227905 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67800 ,2,14963,268275 ,2,14964,275690 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571465 ,2,14970,75 ,2,14971,316430 ,2,829,45 ,1,0,62570 ,1,1,62495 ,1,2,62560 ,1,3,62550 ,1,4,62540 ,2,14956,228570 ,2,14957,45 ,2,14958,68460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68440 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,571440 ,2,14967,45 ,2,14968,75 ,2,14969,571470 ,2,14970,75 ,2,14971,316475 ,2,829,45 ,1,0,172785 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62570 ,2,14956,228025 ,2,14957,45 ,2,14958,67905 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67895 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,571525 ,2,14967,45 ,2,14968,75 ,2,14969,571515 ,2,14970,75 ,2,14971,316485 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,228035 ,2,14957,45 ,2,14958,67960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67950 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,571530 ,2,14970,75 ,2,14971,316495 ,2,829,45 ,1,0,62590 ,1,1,62580 ,2,14956,228055 ,2,14957,45 ,2,14958,67980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67970 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,571540 ,2,14967,45 ,2,14968,75 ,2,14969,571535 ,2,14970,75 ,2,14971,316505 ,2,829,45 ,1,0,172830 ,1,1,45 ,2,14956,228065 ,2,14957,45 ,2,14958,68005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,67995 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,571545 ,2,14970,75 ,2,14971,316530 ,2,829,45 ,1,0,559265 ,2,14956,228510 ,2,14957,45 ,2,14958,68430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68420 ,2,14963,268295 ,2,14964,275700 ,2,14965,45 ,2,14966,571560 ,2,14967,45 ,2,14968,75 ,2,14969,571550 ,2,14970,75 ,2,14971,316540 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,62825 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,62815 ,1,7,65 ,1,8,62805 ,1,9,62795 ,1,10,62780 ,1,11,62770 ,1,12,62760 ,1,13,65 ,1,14,62750 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,62715 ,1,20,62705 ,1,21,65 ,1,22,62695 ,1,23,62685 ,1,24,65 ,1,25,62670 ,1,26,65 ,1,27,62660 ,1,28,65 ,1,29,62650 ,1,30,62640 ,1,31,65 ,1,32,65 ,1,33,62610 ,2,14956,228500 ,2,14957,45 ,2,14958,68410 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68400 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,571565 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,172850 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,172180 ,1,1,45 ,2,14956,228305 ,2,14957,45 ,2,14958,68065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68055 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,571570 ,2,14970,75 ,2,14971,316550 ,2,829,45 ,1,0,172190 ,1,1,45 ,2,14956,228295 ,2,14957,45 ,2,14958,68185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68175 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,571590 ,2,14967,45 ,2,14968,75 ,2,14969,571585 ,2,14970,75 ,2,14971,316560 ,2,829,45 ,1,0,62610 ,1,1,62795 ,1,2,62815 ,1,3,62650 ,1,4,62715 ,1,5,62805 ,1,6,62670 ,1,7,62780 ,1,8,62640 ,1,9,62660 ,1,10,62770 ,1,11,62695 ,1,12,62685 ,1,13,62760 ,1,14,62750 ,1,15,62825 ,1,16,62705 ,2,14956,228205 ,2,14957,45 ,2,14958,68155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68115 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,571600 ,2,14967,45 ,2,14968,75 ,2,14969,571595 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62610 ,2,14956,228130 ,2,14957,45 ,2,14958,68105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68075 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,571620 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558250 ,2,14956,228085 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68095 ,2,14963,269825 ,2,14964,277110 ,2,14965,548665 ,2,14966,571630 ,2,14967,45 ,2,14968,75 ,2,14969,602590 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62875 ,1,1,62865 ,1,2,62855 ,2,14956,228075 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68085 ,2,14963,269825 ,2,14964,277110 ,2,14965,548635 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559190 ,2,14956,228140 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68145 ,2,14963,269825 ,2,14964,277110 ,2,14965,548675 ,2,14966,571650 ,2,14967,45 ,2,14968,75 ,2,14969,602625 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,615940 ,1,1,615295 ,1,2,65 ,1,3,63335 ,1,4,63325 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,63315 ,1,9,63305 ,1,10,63270 ,1,11,65 ,1,12,63260 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,63250 ,1,19,63240 ,1,20,65 ,1,21,63220 ,1,22,63210 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,63200 ,1,27,65 ,1,28,63190 ,1,29,65 ,1,30,65 ,1,31,63140 ,1,32,63130 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,61360 ,1,37,61390 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,63120 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,63110 ,1,46,65 ,1,47,63100 ,1,48,63090 ,1,49,65 ,1,50,65 ,1,51,63070 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,63035 ,1,57,61350 ,1,58,63025 ,1,59,63015 ,1,60,63005 ,1,61,62995 ,1,62,62985 ,1,63,62975 ,1,64,65 ,1,65,62965 ,2,14956,228345 ,2,14957,45 ,2,14958,68260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68215 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,571560 ,2,14967,45 ,2,14968,75 ,2,14969,571655 ,2,14970,75 ,2,14971,316790 ,2,829,45 ,1,0,61360 ,1,1,63120 ,1,2,61350 ,1,3,63200 ,1,4,63025 ,1,5,63315 ,1,6,63005 ,1,7,63110 ,1,8,63305 ,1,9,63130 ,1,10,63035 ,1,11,63240 ,1,12,63210 ,1,13,63250 ,1,14,63270 ,1,15,62995 ,1,16,63220 ,1,17,62965 ,1,18,61390 ,1,19,63100 ,1,20,63325 ,1,21,63090 ,1,22,63015 ,1,23,62975 ,1,24,63260 ,1,25,63140 ,1,26,63190 ,1,27,63335 ,1,28,63070 ,1,29,62985 ,2,14956,228355 ,2,14957,45 ,2,14958,68280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68270 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,571560 ,2,14967,45 ,2,14968,75 ,2,14969,571660 ,2,14970,75 ,2,14971,316810 ,2,829,45 ,1,0,559340 ,2,14956,228365 ,2,14957,45 ,2,14958,68310 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68290 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,571560 ,2,14967,45 ,2,14968,75 ,2,14969,571695 ,2,14970,75 ,2,14971,316820 ,2,829,45 ,1,0,63360 ,1,1,63350 ,2,14956,228400 ,2,14957,45 ,2,14958,68330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68320 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,571705 ,2,14967,45 ,2,14968,75 ,2,14969,571700 ,2,14970,75 ,2,14971,316830 ,2,829,45 ,1,0,558990 ,2,14956,228445 ,2,14957,45 ,2,14958,68370 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68340 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,571560 ,2,14967,45 ,2,14968,75 ,2,14969,571710 ,2,14970,75 ,2,14971,316870 ,2,829,45 ,1,0,63415 ,1,1,61340 ,1,2,63405 ,1,3,63380 ,1,4,63370 ,2,14956,228465 ,2,14957,45 ,2,14958,68390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68380 ,2,14963,268285 ,2,14964,275710 ,2,14965,45 ,2,14966,571560 ,2,14967,45 ,2,14968,75 ,2,14969,571720 ,2,14970,75 ,2,14971,316890 ,2,829,45 ,1,0,173250 ,1,1,45 ,2,14956,228760 ,2,14957,45 ,2,14958,68580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68570 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,68560 ,2,14969,571770 ,2,14970,68515 ,2,14971,316955 ,2,829,45 ,1,0,57370 ,1,1,57250 ,2,14956,228820 ,2,14957,45 ,2,14958,68605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68590 ,2,14963,268305 ,2,14964,275650 ,2,14965,45 ,2,14966,571235 ,2,14967,45 ,2,14968,75 ,2,14969,571760 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62905 ,1,1,63415 ,2,14956,228910 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68675 ,2,14963,268350 ,2,14964,275630 ,2,14965,548700 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,602645 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,63450 ,2,14956,228920 ,2,14957,45 ,2,14958,68695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68685 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,571795 ,2,14970,75 ,2,14971,317090 ,2,829,45 ,2,14956,229670 ,2,14957,45 ,2,14958,68720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68710 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,571805 ,2,14970,75 ,2,14971,317100 ,2,829,45 ,2,14956,229555 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68870 ,2,14963,268315 ,2,14964,275720 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571845 ,2,14970,75 ,2,14971,317120 ,2,829,45 ,1,0,63460 ,1,1,63450 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268315 ,2,14964,275720 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61070 ,1,1,63480 ,2,14956,229525 ,2,14957,45 ,2,14958,68840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68830 ,2,14963,268315 ,2,14964,275720 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,68820 ,2,14969,571850 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,229620 ,2,14957,45 ,2,14958,68890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68880 ,2,14963,268315 ,2,14964,275720 ,2,14965,45 ,2,14966,571375 ,2,14967,45 ,2,14968,75 ,2,14969,571860 ,2,14970,75 ,2,14971,317155 ,2,829,45 ,1,0,63550 ,2,14956,229680 ,2,14957,45 ,2,14958,68935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68925 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571865 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,230180 ,2,14957,45 ,2,14958,68975 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,68945 ,2,14963,268350 ,2,14964,275630 ,2,14965,45 ,2,14966,571540 ,2,14967,45 ,2,14968,75 ,2,14969,571870 ,2,14970,75 ,2,14971,317220 ,2,829,45 ,1,0,63650 ,1,1,63640 ,2,14956,230090 ,2,14957,45 ,2,14958,69250 ,2,14959,69195 ,2,14960,75 ,2,14961,45 ,2,14962,69185 ,2,14963,268325 ,2,14964,275735 ,2,14965,45 ,2,14966,571375 ,2,14967,45 ,2,14968,75 ,2,14969,571885 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268325 ,2,14964,275735 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,63660 ,1,1,63680 ,1,2,63670 ,2,14956,229740 ,2,14957,45 ,2,14958,69045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69035 ,2,14963,268325 ,2,14964,275735 ,2,14965,45 ,2,14966,571895 ,2,14967,45 ,2,14968,75 ,2,14969,571890 ,2,14970,75 ,2,14971,317240 ,2,829,45 ,1,0,63725 ,1,1,61125 ,1,2,63785 ,1,3,63570 ,1,4,63835 ,1,5,63735 ,1,6,63745 ,1,7,63755 ,1,8,61230 ,1,9,63795 ,1,10,63630 ,1,11,63765 ,1,12,61200 ,1,13,63540 ,1,14,63865 ,1,15,61170 ,1,16,63845 ,1,17,61180 ,1,18,63885 ,1,19,61220 ,1,20,63825 ,1,21,61290 ,1,22,61250 ,1,23,63700 ,1,24,61090 ,1,25,61135 ,1,26,61190 ,1,27,61080 ,1,28,63775 ,1,29,63875 ,1,30,61115 ,1,31,63690 ,1,32,63590 ,1,33,63855 ,1,34,63560 ,1,35,63580 ,1,36,63520 ,2,14956,229800 ,2,14957,45 ,2,14958,69100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69090 ,2,14963,268325 ,2,14964,275735 ,2,14965,45 ,2,14966,571895 ,2,14967,45 ,2,14968,75 ,2,14969,571900 ,2,14970,75 ,2,14971,317270 ,2,829,45 ,2,14956,229820 ,2,14957,45 ,2,14958,69120 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69110 ,2,14963,268325 ,2,14964,275735 ,2,14965,45 ,2,14966,571895 ,2,14967,45 ,2,14968,75 ,2,14969,571905 ,2,14970,75 ,2,14971,317280 ,2,829,45 ,1,0,63895 ,2,14956,229865 ,2,14957,45 ,2,14958,69150 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69140 ,2,14963,268325 ,2,14964,275735 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,69130 ,2,14969,571910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,230495 ,2,14957,45 ,2,14958,69345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69335 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,571140 ,2,14967,45 ,2,14968,75 ,2,14969,571915 ,2,14970,75 ,2,14971,329255 ,2,829,45 ,1,0,265810 ,1,1,45 ,1,2,45 ,2,14956,230560 ,2,14957,45 ,2,14958,69390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69355 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571920 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,15590 ,1,2,45 ,1,3,15900 ,1,4,15910 ,1,5,616170 ,2,14956,230570 ,2,14957,45 ,2,14958,69410 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69400 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,571140 ,2,14967,45 ,2,14968,75 ,2,14969,571945 ,2,14970,75 ,2,14971,317590 ,2,829,45 ,2,14956,230580 ,2,14957,45 ,2,14958,69430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69420 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,571140 ,2,14967,45 ,2,14968,75 ,2,14969,571955 ,2,14970,75 ,2,14971,317600 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,64090 ,1,5,61015 ,1,6,64080 ,1,7,64070 ,1,8,63480 ,1,9,64060 ,1,10,64050 ,1,11,65 ,1,12,65 ,1,13,64005 ,1,14,65 ,1,15,63995 ,1,16,63985 ,1,17,65 ,1,18,63470 ,1,19,63975 ,1,20,63960 ,1,21,61005 ,1,22,63950 ,1,23,65 ,1,24,63940 ,1,25,64100 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,61300 ,1,31,65 ,1,32,63930 ,1,33,61070 ,2,14956,230685 ,2,14957,45 ,2,14958,69510 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69440 ,2,14963,268370 ,2,14964,275615 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571960 ,2,14970,75 ,2,14971,317610 ,2,829,45 ,1,0,61015 ,2,14956,230610 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69500 ,2,14963,268360 ,2,14964,275745 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,571970 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,63975 ,1,1,61070 ,1,2,63480 ,1,3,63470 ,1,4,64090 ,1,5,61015 ,1,6,63995 ,1,7,63985 ,1,8,63930 ,1,9,64005 ,1,10,63960 ,1,11,64070 ,1,12,64050 ,1,13,61300 ,1,14,63950 ,1,15,64100 ,1,16,61005 ,1,17,64080 ,1,18,64060 ,1,19,63940 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268360 ,2,14964,275745 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559470 ,2,14956,230885 ,2,14957,45 ,2,14958,69590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69580 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,571975 ,2,14970,75 ,2,14971,317815 ,2,829,45 ,2,14956,248825 ,2,14957,45 ,2,14958,84150 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84110 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,572025 ,2,14967,45 ,2,14968,75 ,2,14969,572020 ,2,14970,75 ,2,14971,329155 ,2,829,45 ,1,0,64155 ,1,1,64120 ,2,14956,231160 ,2,14957,45 ,2,14958,69750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69740 ,2,14963,268380 ,2,14964,275755 ,2,14965,45 ,2,14966,572035 ,2,14967,45 ,2,14968,75 ,2,14969,572030 ,2,14970,75 ,2,14971,329205 ,2,829,45 ,1,0,64110 ,1,1,64220 ,1,2,64210 ,1,3,64200 ,1,4,64185 ,1,5,64175 ,1,6,64165 ,2,14956,231130 ,2,14957,45 ,2,14958,69700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69690 ,2,14963,268380 ,2,14964,275755 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572055 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,173735 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268380 ,2,14964,275755 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558555 ,2,14956,8220 ,2,14957,45 ,2,14958,69940 ,2,14959,45 ,2,14960,69810 ,2,14961,45 ,2,14962,75 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64230 ,1,1,64250 ,2,14956,231335 ,2,14957,45 ,2,14958,69830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69820 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,572065 ,2,14967,45 ,2,14968,75 ,2,14969,572060 ,2,14970,75 ,2,14971,317910 ,2,829,45 ,1,0,559520 ,2,14956,231440 ,2,14957,45 ,2,14958,69990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,69980 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,571045 ,2,14967,45 ,2,14968,69970 ,2,14969,572090 ,2,14970,75 ,2,14971,318020 ,2,829,45 ,2,14956,248755 ,2,14957,45 ,2,14958,70020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70010 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,572100 ,2,14970,75 ,2,14971,318060 ,2,829,45 ,1,0,265820 ,1,1,45 ,1,2,45 ,2,14956,248650 ,2,14957,45 ,2,14958,84030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84000 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,572125 ,2,14967,45 ,2,14968,75 ,2,14969,572120 ,2,14970,75 ,2,14971,318115 ,2,829,45 ,1,0,64380 ,1,1,64280 ,1,2,64270 ,2,14956,231460 ,2,14957,45 ,2,14958,70040 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70030 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572130 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59325 ,1,1,59315 ,1,2,57795 ,1,3,57620 ,1,4,57845 ,2,14956,8220 ,2,14957,45 ,2,14958,70085 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45 ,1,3,16190 ,1,4,16180 ,1,5,16170 ,1,6,16055 ,1,7,16160 ,1,8,64380 ,1,9,16150 ,1,10,16125 ,1,11,16115 ,1,12,16105 ,1,13,45 ,1,14,64270 ,1,15,64280 ,1,16,45 ,1,17,45 ,1,18,16095 ,1,19,16080 ,1,20,16070 ,1,21,616230 ,2,14956,231600 ,2,14957,45 ,2,14958,70160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70150 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,572125 ,2,14967,45 ,2,14968,75 ,2,14969,572150 ,2,14970,75 ,2,14971,318145 ,2,829,45 ,2,14956,248385 ,2,14957,45 ,2,14958,83755 ,2,14959,83580 ,2,14960,75 ,2,14961,45 ,2,14962,70180 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,572155 ,2,14970,75 ,2,14971,318175 ,2,829,45 ,1,0,64390 ,2,14956,248105 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83570 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572165 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559535 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64425 ,1,1,64410 ,1,2,64400 ,2,14956,247835 ,2,14957,45 ,2,14958,70235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70225 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,572175 ,2,14967,45 ,2,14968,75 ,2,14969,572170 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,173965 ,2,14956,247775 ,2,14957,45 ,2,14958,70460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70450 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,572210 ,2,14967,45 ,2,14968,75 ,2,14969,572185 ,2,14970,75 ,2,14971,318250 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64445 ,1,1,64435 ,2,14956,231740 ,2,14957,45 ,2,14958,70320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70310 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,572220 ,2,14967,45 ,2,14968,75 ,2,14969,572215 ,2,14970,75 ,2,14971,318270 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359520 ,1,3,65 ,2,14956,231765 ,2,14957,45 ,2,14958,70370 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70360 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572235 ,2,14970,75 ,2,14971,318290 ,2,829,45 ,2,14956,231775 ,2,14957,45 ,2,14958,70420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70380 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,572245 ,2,14967,45 ,2,14968,75 ,2,14969,572240 ,2,14970,75 ,2,14971,318385 ,2,829,45 ,2,14956,231785 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70430 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572250 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64485 ,1,1,64455 ,2,14956,231795 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70440 ,2,14963,268395 ,2,14964,275825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572285 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,28590 ,2,14956,247690 ,2,14957,45 ,2,14958,83205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83195 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,572295 ,2,14967,45 ,2,14968,70480 ,2,14969,572290 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,231880 ,2,14957,45 ,2,14958,70560 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70545 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,572295 ,2,14967,45 ,2,14968,70535 ,2,14969,572300 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64505 ,1,1,64495 ,2,14956,246895 ,2,14957,45 ,2,14958,70580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70570 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,572315 ,2,14967,45 ,2,14968,75 ,2,14969,572305 ,2,14970,75 ,2,14971,318405 ,2,829,45 ,1,0,3010 ,1,1,174080 ,1,2,173965 ,2,14956,241750 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78655 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,572340 ,2,14967,45 ,2,14968,75 ,2,14969,572320 ,2,14970,75 ,2,14971,318465 ,2,829,45 ,1,0,12445 ,1,1,167770 ,1,2,174110 ,1,3,174100 ,1,4,174090 ,2,14956,239670 ,2,14957,45 ,2,14958,70625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70590 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,572345 ,2,14970,75 ,2,14971,318475 ,2,829,45 ,2,14956,239635 ,2,14957,45 ,2,14958,77110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77090 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,572365 ,2,14967,45 ,2,14968,75 ,2,14969,572355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,239625 ,2,14957,45 ,2,14958,77070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77060 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572370 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,359555 ,1,3,359545 ,1,4,359540 ,1,5,65 ,1,6,65 ,1,7,359525 ,1,8,65 ,1,9,65 ,2,14956,8220 ,2,14957,45 ,2,14958,71000 ,2,14959,45 ,2,14960,70695 ,2,14961,45 ,2,14962,75 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,232100 ,2,14957,45 ,2,14958,70960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70950 ,2,14963,268405 ,2,14964,275855 ,2,14965,45 ,2,14966,572425 ,2,14967,45 ,2,14968,70800 ,2,14969,572375 ,2,14970,70740 ,2,14971,325255 ,2,829,45 ,1,0,64515 ,2,14956,232000 ,2,14957,45 ,2,14958,70850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70840 ,2,14963,268405 ,2,14964,275855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572430 ,2,14970,70820 ,2,14971,45 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,359625 ,1,3,65 ,1,4,359615 ,1,5,359575 ,1,6,65 ,1,7,359570 ,1,8,65 ,1,9,65 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268405 ,2,14964,275855 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,232030 ,2,14957,45 ,2,14958,70940 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70930 ,2,14963,268405 ,2,14964,275855 ,2,14965,45 ,2,14966,572425 ,2,14967,45 ,2,14968,75 ,2,14969,572435 ,2,14970,75 ,2,14971,318650 ,2,829,45 ,1,0,64530 ,2,14956,232205 ,2,14957,45 ,2,14958,70990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,70980 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,70970 ,2,14969,572455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,232310 ,2,14957,45 ,2,14958,71040 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71030 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,572460 ,2,14970,75 ,2,14971,318690 ,2,829,45 ,1,0,559650 ,2,14956,232335 ,2,14957,45 ,2,14958,71070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71060 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,572490 ,2,14970,75 ,2,14971,318750 ,2,829,45 ,2,14956,232345 ,2,14957,45 ,2,14958,71090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71080 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,572515 ,2,14967,45 ,2,14968,75 ,2,14969,572510 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,266345 ,1,1,45 ,1,2,45 ,2,14956,239075 ,2,14957,45 ,2,14958,76545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76535 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,572540 ,2,14967,45 ,2,14968,75 ,2,14969,572525 ,2,14970,75 ,2,14971,318780 ,2,829,45 ,1,0,45 ,1,1,18375 ,1,2,16025 ,1,3,45 ,1,4,45 ,1,5,18350 ,1,6,18340 ,1,7,18330 ,1,8,18320 ,1,9,45 ,1,10,16015 ,1,11,16220 ,1,12,16210 ,1,13,614390 ,2,14956,239065 ,2,14957,45 ,2,14958,76525 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76515 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,572545 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64540 ,2,14956,232400 ,2,14957,45 ,2,14958,71165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71155 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,572565 ,2,14967,45 ,2,14968,75 ,2,14969,572550 ,2,14970,75 ,2,14971,318795 ,2,829,45 ,2,14956,232410 ,2,14957,45 ,2,14958,71185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71175 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,572575 ,2,14967,45 ,2,14968,75 ,2,14969,572570 ,2,14970,75 ,2,14971,318815 ,2,829,45 ,1,0,256020 ,2,14956,232420 ,2,14957,45 ,2,14958,71220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71195 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,572540 ,2,14967,45 ,2,14968,75 ,2,14969,572580 ,2,14970,75 ,2,14971,318825 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,232470 ,2,14957,45 ,2,14958,71240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71230 ,2,14963,268710 ,2,14964,275865 ,2,14965,548780 ,2,14966,572630 ,2,14967,45 ,2,14968,75 ,2,14969,572625 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,600340 ,2,14956,232495 ,2,14957,45 ,2,14958,71260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71250 ,2,14963,268710 ,2,14964,275865 ,2,14965,548790 ,2,14966,572645 ,2,14967,45 ,2,14968,75 ,2,14969,572640 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77890 ,1,1,77880 ,1,2,77870 ,1,3,64620 ,1,4,64610 ,1,5,64600 ,1,6,64590 ,2,14956,238895 ,2,14957,45 ,2,14958,76255 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76245 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,574545 ,2,14967,45 ,2,14968,75 ,2,14969,572655 ,2,14970,75 ,2,14971,318910 ,2,829,45 ,1,0,3010 ,1,1,3825 ,1,2,174110 ,2,14956,238870 ,2,14957,45 ,2,14958,71350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71340 ,2,14963,268415 ,2,14964,275875 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,572685 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64635 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268415 ,2,14964,275875 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370700 ,1,3,65 ,2,14956,232505 ,2,14957,45 ,2,14958,71330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71320 ,2,14963,268415 ,2,14964,275875 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572690 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,232570 ,2,14957,45 ,2,14958,71460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71450 ,2,14963,268425 ,2,14964,275905 ,2,14965,45 ,2,14966,572700 ,2,14967,45 ,2,14968,75 ,2,14969,572695 ,2,14970,75 ,2,14971,318975 ,2,829,45 ,1,0,265960 ,1,1,265950 ,1,2,265940 ,1,3,265930 ,1,4,266335 ,1,5,265920 ,1,6,265910 ,1,7,265900 ,1,8,265890 ,1,9,265870 ,1,10,265860 ,1,11,265850 ,1,12,265840 ,1,13,265830 ,1,14,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268425 ,2,14964,275905 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256050 ,1,1,256040 ,2,14956,232945 ,2,14957,45 ,2,14958,71990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71980 ,2,14963,268460 ,2,14964,275925 ,2,14965,45 ,2,14966,572750 ,2,14967,45 ,2,14968,75 ,2,14969,572745 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64700 ,2,14956,232815 ,2,14957,45 ,2,14958,71785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71770 ,2,14963,268460 ,2,14964,275925 ,2,14965,45 ,2,14966,572770 ,2,14967,45 ,2,14968,75 ,2,14969,572755 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,174640 ,1,1,64710 ,2,14956,232745 ,2,14957,45 ,2,14958,71760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71750 ,2,14963,268450 ,2,14964,275915 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572775 ,2,14970,71495 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599870 ,2,14956,8220 ,2,14957,45 ,2,14958,71600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268450 ,2,14964,275915 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559765 ,2,14956,232655 ,2,14957,45 ,2,14958,71675 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71665 ,2,14963,268450 ,2,14964,275915 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,71655 ,2,14969,572780 ,2,14970,75 ,2,14971,319090 ,2,829,45 ,2,14956,232665 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71695 ,2,14963,268450 ,2,14964,275915 ,2,14965,45 ,2,14966,572770 ,2,14967,45 ,2,14968,75 ,2,14969,572825 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65590 ,1,1,65185 ,1,2,64980 ,1,3,64770 ,2,14956,232690 ,2,14957,45 ,2,14958,71740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71715 ,2,14963,268450 ,2,14964,275915 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,71705 ,2,14969,572830 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,64820 ,1,3,166620 ,1,4,45 ,1,5,64810 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268460 ,2,14964,275925 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,64830 ,2,14956,232845 ,2,14957,45 ,2,14958,71900 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71890 ,2,14963,268460 ,2,14964,275925 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,71880 ,2,14969,572835 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559845 ,2,14956,232910 ,2,14957,45 ,2,14958,71950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,71930 ,2,14963,268460 ,2,14964,275925 ,2,14965,45 ,2,14966,572750 ,2,14967,45 ,2,14968,75 ,2,14969,572845 ,2,14970,71910 ,2,14971,319220 ,2,829,45 ,1,0,64830 ,1,1,64840 ,2,14956,233125 ,2,14957,45 ,2,14958,72105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72095 ,2,14963,268470 ,2,14964,275935 ,2,14965,45 ,2,14966,572680 ,2,14967,45 ,2,14968,72010 ,2,14969,572855 ,2,14970,75 ,2,14971,325265 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268470 ,2,14964,275935 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64860 ,1,1,64850 ,2,14956,233025 ,2,14957,45 ,2,14958,72075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72065 ,2,14963,268470 ,2,14964,275935 ,2,14965,45 ,2,14966,572895 ,2,14967,45 ,2,14968,75 ,2,14969,572860 ,2,14970,75 ,2,14971,319290 ,2,829,45 ,1,0,29165 ,2,14956,238860 ,2,14957,45 ,2,14958,76220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76210 ,2,14963,268695 ,2,14964,275960 ,2,14965,45 ,2,14966,572680 ,2,14967,45 ,2,14968,72145 ,2,14969,572905 ,2,14970,75 ,2,14971,319415 ,2,829,45 ,1,0,100 ,2,14956,233495 ,2,14957,45 ,2,14958,72505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72495 ,2,14963,268480 ,2,14964,275950 ,2,14965,45 ,2,14966,572930 ,2,14967,45 ,2,14968,72155 ,2,14969,572910 ,2,14970,75 ,2,14971,319425 ,2,829,45 ,2,14956,185635 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72165 ,2,14963,268480 ,2,14964,275950 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64820 ,1,1,64970 ,1,2,64810 ,1,3,64960 ,1,4,64945 ,1,5,64935 ,1,6,64925 ,1,7,64915 ,1,8,64880 ,1,9,64870 ,2,14956,8220 ,2,14957,45 ,2,14958,72195 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268480 ,2,14964,275950 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64760 ,2,14956,233135 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72205 ,2,14963,268480 ,2,14964,275950 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,572940 ,2,14970,75 ,2,14971,319460 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,65040 ,2,14956,233190 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72280 ,2,14963,265715 ,2,14964,280655 ,2,14965,548850 ,2,14966,572985 ,2,14967,45 ,2,14968,75 ,2,14969,602800 ,2,14970,75 ,2,14971,319480 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,65050 ,2,14956,233180 ,2,14957,45 ,2,14958,72270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72260 ,2,14963,265715 ,2,14964,280655 ,2,14965,548840 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,572990 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559900 ,2,14956,233405 ,2,14957,45 ,2,14958,72450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72440 ,2,14963,265715 ,2,14964,280655 ,2,14965,549025 ,2,14966,573010 ,2,14967,45 ,2,14968,75 ,2,14969,572945 ,2,14970,72290 ,2,14971,319615 ,2,829,45 ,1,0,65050 ,1,1,65155 ,1,2,65115 ,1,3,65105 ,1,4,65095 ,1,5,65085 ,1,6,65070 ,1,7,65060 ,2,14956,233360 ,2,14957,45 ,2,14958,72430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72420 ,2,14963,265715 ,2,14964,280655 ,2,14965,548985 ,2,14966,573035 ,2,14967,45 ,2,14968,75 ,2,14969,573015 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559910 ,2,14956,233295 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72400 ,2,14963,265715 ,2,14964,280655 ,2,14965,548965 ,2,14966,573060 ,2,14967,45 ,2,14968,75 ,2,14969,602810 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,559920 ,2,14956,233275 ,2,14957,45 ,2,14958,72315 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72305 ,2,14963,265715 ,2,14964,280655 ,2,14965,548940 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,573065 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65175 ,1,1,65165 ,2,14956,233285 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72410 ,2,14963,265680 ,2,14964,280655 ,2,14965,548970 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,72545 ,2,14959,45 ,2,14960,72535 ,2,14961,45 ,2,14962,75 ,2,14963,268695 ,2,14964,275960 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65040 ,2,14956,238485 ,2,14957,45 ,2,14958,72595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72585 ,2,14963,268695 ,2,14964,275960 ,2,14965,549050 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573210 ,2,14970,75 ,2,14971,319685 ,2,829,45 ,1,0,64760 ,1,1,65210 ,1,2,64990 ,1,3,65200 ,2,14956,238345 ,2,14957,45 ,2,14958,75955 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75945 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,573265 ,2,14967,45 ,2,14968,75 ,2,14969,573215 ,2,14970,75 ,2,14971,319800 ,2,829,45 ,1,0,175105 ,1,1,45 ,1,2,65230 ,1,3,166620 ,1,4,45 ,1,5,65220 ,2,14956,233620 ,2,14957,45 ,2,14958,72615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72605 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,573245 ,2,14970,75 ,2,14971,319810 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,65245 ,2,14956,8220 ,2,14957,45 ,2,14958,72645 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,560005 ,2,14956,233685 ,2,14957,45 ,2,14958,72695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72685 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,72675 ,2,14969,573270 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65275 ,1,1,65245 ,1,2,65265 ,1,3,65255 ,2,14956,238205 ,2,14957,45 ,2,14958,75855 ,2,14959,45 ,2,14960,75845 ,2,14961,45 ,2,14962,75810 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,573280 ,2,14967,45 ,2,14968,75 ,2,14969,573275 ,2,14970,75 ,2,14971,319860 ,2,829,45 ,1,0,560065 ,2,14956,238175 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75800 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573305 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558570 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,65 ,1,3,65490 ,1,4,65480 ,1,5,65470 ,1,6,65460 ,1,7,65 ,1,8,65450 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65425 ,1,13,65415 ,1,14,65230 ,1,15,65405 ,1,16,65395 ,1,17,65 ,1,18,65385 ,1,19,65375 ,1,20,65365 ,1,21,65 ,1,22,65355 ,1,23,65315 ,1,24,65 ,1,25,65305 ,1,26,65 ,1,27,65295 ,1,28,65285 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65220 ,2,14956,233715 ,2,14957,45 ,2,14958,72745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72735 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,573315 ,2,14967,45 ,2,14968,75 ,2,14969,573310 ,2,14970,75 ,2,14971,319890 ,2,829,45 ,1,0,59925 ,2,14956,233725 ,2,14957,45 ,2,14958,72805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72795 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,573315 ,2,14967,45 ,2,14968,75 ,2,14969,573320 ,2,14970,75 ,2,14971,319930 ,2,829,45 ,1,0,59885 ,1,1,59865 ,2,14956,233735 ,2,14957,45 ,2,14958,72840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72830 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,72815 ,2,14969,573325 ,2,14970,75 ,2,14971,319960 ,2,829,45 ,1,0,59875 ,1,1,59865 ,2,14956,237580 ,2,14957,45 ,2,14958,75365 ,2,14959,72860 ,2,14960,75 ,2,14961,45 ,2,14962,72850 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,573340 ,2,14967,45 ,2,14968,75 ,2,14969,573330 ,2,14970,75 ,2,14971,319990 ,2,829,45 ,1,0,65425 ,1,1,65375 ,1,2,65415 ,1,3,65365 ,1,4,65480 ,1,5,65460 ,1,6,65395 ,1,7,65230 ,1,8,65295 ,1,9,65385 ,1,10,65450 ,1,11,65305 ,1,12,65490 ,1,13,65315 ,1,14,65285 ,1,15,65220 ,1,16,65355 ,1,17,65470 ,1,18,65405 ,2,14956,233795 ,2,14957,45 ,2,14958,72920 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,72910 ,2,14963,268495 ,2,14964,276010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558570 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268495 ,2,14964,276010 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65520 ,1,1,65510 ,1,2,65500 ,2,14956,233935 ,2,14957,45 ,2,14958,73025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73010 ,2,14963,265290 ,2,14964,280590 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,573375 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558725 ,2,14956,234625 ,2,14957,45 ,2,14958,73190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73180 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,580980 ,2,14967,45 ,2,14968,75 ,2,14969,573495 ,2,14970,75 ,2,14971,341650 ,2,829,45 ,1,0,65570 ,1,1,65560 ,2,14956,237240 ,2,14957,45 ,2,14958,75240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75205 ,2,14963,268665 ,2,14964,276020 ,2,14965,549245 ,2,14966,573530 ,2,14967,45 ,2,14968,75 ,2,14969,573505 ,2,14970,75 ,2,14971,320625 ,2,829,45 ,1,0,560080 ,2,14956,234645 ,2,14957,45 ,2,14958,73235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73225 ,2,14963,268665 ,2,14964,276020 ,2,14965,549220 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,573515 ,2,14970,75 ,2,14971,320635 ,2,829,45 ,1,0,65580 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268665 ,2,14964,276020 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65580 ,1,1,65570 ,1,2,65520 ,1,3,65425 ,1,4,65275 ,2,14956,234705 ,2,14957,45 ,2,14958,73330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73320 ,2,14963,268665 ,2,14964,276020 ,2,14965,549290 ,2,14966,573560 ,2,14967,45 ,2,14968,75 ,2,14969,573555 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,234735 ,2,14957,45 ,2,14958,73350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73340 ,2,14963,268665 ,2,14964,276020 ,2,14965,549305 ,2,14966,573585 ,2,14967,45 ,2,14968,75 ,2,14969,573580 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70965 ,1,1,70955 ,1,2,70945 ,1,3,70925 ,1,4,70885 ,1,5,70875 ,1,6,70865 ,1,7,66815 ,1,8,66805 ,1,9,65620 ,1,10,65600 ,2,14956,234755 ,2,14957,45 ,2,14958,73380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73370 ,2,14963,268665 ,2,14964,276020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573590 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560100 ,2,14956,235195 ,2,14957,45 ,2,14958,73625 ,2,14959,73420 ,2,14960,75 ,2,14961,45 ,2,14962,73410 ,2,14963,268665 ,2,14964,276020 ,2,14965,549320 ,2,14966,573615 ,2,14967,45 ,2,14968,75 ,2,14969,573610 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,235125 ,2,14957,45 ,2,14958,73570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73560 ,2,14963,268505 ,2,14964,276030 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573635 ,2,14970,75 ,2,14971,320795 ,2,829,45 ,1,0,175500 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268505 ,2,14964,276030 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,234960 ,2,14957,45 ,2,14958,73515 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73505 ,2,14963,268505 ,2,14964,276030 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,573640 ,2,14970,75 ,2,14971,320820 ,2,829,45 ,1,0,65630 ,1,1,65665 ,2,14956,234980 ,2,14957,45 ,2,14958,73535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73525 ,2,14963,268505 ,2,14964,276030 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573650 ,2,14970,75 ,2,14971,320840 ,2,829,45 ,1,0,175510 ,1,1,45 ,2,14956,234990 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73550 ,2,14963,268505 ,2,14964,276030 ,2,14965,549355 ,2,14966,573680 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,65755 ,1,3,171975 ,1,4,45 ,1,5,65685 ,2,14956,235240 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73635 ,2,14963,268665 ,2,14964,276020 ,2,14965,549375 ,2,14966,573695 ,2,14967,45 ,2,14968,75 ,2,14969,602905 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,560140 ,2,14956,235300 ,2,14957,45 ,2,14958,73655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73645 ,2,14963,268665 ,2,14964,276020 ,2,14965,549380 ,2,14966,573700 ,2,14967,45 ,2,14968,75 ,2,14969,573620 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65695 ,2,14956,237155 ,2,14957,45 ,2,14958,75175 ,2,14959,73705 ,2,14960,75 ,2,14961,45 ,2,14962,73675 ,2,14963,268665 ,2,14964,276020 ,2,14965,549400 ,2,14966,573755 ,2,14967,45 ,2,14968,75 ,2,14969,573625 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,65730 ,1,3,166610 ,1,4,45 ,1,5,65710 ,2,14956,235505 ,2,14957,45 ,2,14958,73850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73830 ,2,14963,268525 ,2,14964,276055 ,2,14965,549430 ,2,14966,573770 ,2,14967,45 ,2,14968,75 ,2,14969,573765 ,2,14970,75 ,2,14971,321180 ,2,829,45 ,1,0,560160 ,2,14956,235415 ,2,14957,45 ,2,14958,73775 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,73765 ,2,14963,268515 ,2,14964,276040 ,2,14965,549415 ,2,14966,573785 ,2,14967,45 ,2,14968,75 ,2,14969,573780 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65730 ,1,1,65710 ,1,2,65740 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268515 ,2,14964,276040 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268525 ,2,14964,276055 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65920 ,1,1,65910 ,1,2,65900 ,1,3,65890 ,1,4,65880 ,1,5,65870 ,1,6,65860 ,1,7,65825 ,1,8,65815 ,1,9,65805 ,1,10,65795 ,1,11,65775 ,2,14956,237100 ,2,14957,45 ,2,14958,75155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75145 ,2,14963,268625 ,2,14964,276065 ,2,14965,549440 ,2,14966,573795 ,2,14967,45 ,2,14968,75 ,2,14969,573790 ,2,14970,75 ,2,14971,321190 ,2,829,45 ,1,0,560225 ,2,14956,8220 ,2,14957,45 ,2,14958,73915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268625 ,2,14964,276065 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,617450 ,1,1,615295 ,1,2,65 ,1,3,66220 ,1,4,65 ,1,5,65 ,1,6,66210 ,1,7,65 ,1,8,66200 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,66190 ,1,13,65 ,1,14,66180 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,66170 ,1,23,65 ,1,24,66160 ,1,25,65 ,1,26,66140 ,1,27,66130 ,1,28,66120 ,1,29,65 ,1,30,65 ,1,31,66110 ,1,32,66100 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65685 ,1,37,65755 ,1,38,66090 ,1,39,65 ,1,40,65 ,1,41,66080 ,1,42,65675 ,1,43,65 ,1,44,65 ,1,45,66070 ,1,46,65 ,1,47,66035 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,66025 ,1,52,65 ,1,53,65 ,1,54,66015 ,1,55,65 ,1,56,66005 ,1,57,65985 ,1,58,65975 ,1,59,65965 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65955 ,1,64,65 ,1,65,65930 ,2,14956,235595 ,2,14957,45 ,2,14958,74025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74015 ,2,14963,268550 ,2,14964,276075 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,73950 ,2,14969,573820 ,2,14970,75 ,2,14971,321245 ,2,829,45 ,1,0,66130 ,1,1,57710 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268550 ,2,14964,276075 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66130 ,2,14956,235695 ,2,14957,45 ,2,14958,74130 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74120 ,2,14963,268550 ,2,14964,276075 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,75 ,2,14969,573825 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,65975 ,1,1,66160 ,1,2,66180 ,1,3,65685 ,1,4,66100 ,1,5,66170 ,1,6,66070 ,1,7,66025 ,1,8,66110 ,1,9,66120 ,1,10,65930 ,1,11,66005 ,1,12,65755 ,1,13,66035 ,1,14,66210 ,1,15,66080 ,1,16,66200 ,1,17,66090 ,1,18,65675 ,1,19,65955 ,1,20,66130 ,1,21,66190 ,1,22,65985 ,1,23,66140 ,1,24,66220 ,1,25,66015 ,1,26,65965 ,2,14956,235685 ,2,14957,45 ,2,14958,74110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74085 ,2,14963,268560 ,2,14964,276085 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,573840 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268560 ,2,14964,276085 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66315 ,1,1,66305 ,1,2,66295 ,1,3,66285 ,1,4,66275 ,1,5,66265 ,1,6,66230 ,1,7,66325 ,2,14956,235625 ,2,14957,45 ,2,14958,74075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74065 ,2,14963,268560 ,2,14964,276085 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,573845 ,2,14970,75 ,2,14971,321275 ,2,829,45 ,1,0,65600 ,2,14956,235975 ,2,14957,45 ,2,14958,74480 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74470 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,573905 ,2,14967,45 ,2,14968,75 ,2,14969,573855 ,2,14970,75 ,2,14971,321365 ,2,829,45 ,1,0,59885 ,1,1,66335 ,2,14956,235730 ,2,14957,45 ,2,14958,74165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74155 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,573895 ,2,14970,75 ,2,14971,321375 ,2,829,45 ,1,0,175890 ,1,1,45 ,1,2,66380 ,1,3,175105 ,1,4,45 ,1,5,66370 ,1,6,166620 ,1,7,45 ,1,8,66360 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,8220 ,2,14957,45 ,2,14958,74225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,66390 ,2,14956,235740 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74235 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573910 ,2,14970,75 ,2,14971,321440 ,2,829,45 ,1,0,560345 ,2,14956,235800 ,2,14957,45 ,2,14958,74300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74290 ,2,14963,268570 ,2,14964,276130 ,2,14965,549490 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573915 ,2,14970,75 ,2,14971,321450 ,2,829,45 ,1,0,66390 ,1,1,66490 ,1,2,66480 ,1,3,66420 ,1,4,66410 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268570 ,2,14964,276130 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,235810 ,2,14957,45 ,2,14958,74345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74335 ,2,14963,268580 ,2,14964,276120 ,2,14965,549515 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573950 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66470 ,1,1,66440 ,1,2,66430 ,2,14956,235830 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74365 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573965 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,560365 ,2,14956,235840 ,2,14957,45 ,2,14958,74385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74375 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,573975 ,2,14970,75 ,2,14971,321460 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,65 ,1,3,66705 ,1,4,66695 ,1,5,66685 ,1,6,66660 ,1,7,65 ,1,8,66380 ,1,9,66640 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,66630 ,1,14,66370 ,1,15,66610 ,1,16,66600 ,1,17,65 ,1,18,66590 ,1,19,66580 ,1,20,66550 ,1,21,65 ,1,22,66540 ,1,23,66745 ,1,24,65 ,1,25,66530 ,1,26,65 ,1,27,66520 ,1,28,66500 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,66360 ,2,14956,235860 ,2,14957,45 ,2,14958,74425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74405 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,74395 ,2,14969,573980 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59840 ,1,1,57710 ,2,14956,235910 ,2,14957,45 ,2,14958,74455 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74445 ,2,14963,268580 ,2,14964,276120 ,2,14965,45 ,2,14966,574025 ,2,14967,45 ,2,14968,74435 ,2,14969,574020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,59875 ,1,1,66335 ,2,14956,236705 ,2,14957,45 ,2,14958,74860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74850 ,2,14963,268615 ,2,14964,276140 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574035 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66580 ,1,1,66630 ,1,2,66550 ,1,3,66695 ,1,4,66660 ,1,5,66600 ,1,6,66370 ,1,7,66520 ,1,8,66590 ,1,9,66380 ,1,10,66530 ,1,11,66705 ,1,12,66745 ,1,13,66500 ,1,14,66360 ,1,15,66540 ,1,16,66685 ,1,17,66610 ,1,18,66640 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268615 ,2,14964,276140 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558570 ,2,14956,236000 ,2,14957,45 ,2,14958,74550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74540 ,2,14963,268615 ,2,14964,276140 ,2,14965,45 ,2,14966,574055 ,2,14967,45 ,2,14968,74530 ,2,14969,574050 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66725 ,1,1,66715 ,2,14956,236675 ,2,14957,45 ,2,14958,74580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74570 ,2,14963,268615 ,2,14964,276140 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,74560 ,2,14969,574065 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558635 ,2,14956,236620 ,2,14957,45 ,2,14958,74820 ,2,14959,74665 ,2,14960,75 ,2,14961,45 ,2,14962,74655 ,2,14963,268605 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,574085 ,2,14970,74625 ,2,14971,321595 ,2,829,45 ,1,0,66735 ,1,1,66335 ,2,14956,236805 ,2,14957,45 ,2,14958,74930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74920 ,2,14963,268625 ,2,14964,276065 ,2,14965,45 ,2,14966,569760 ,2,14967,45 ,2,14968,75 ,2,14969,574100 ,2,14970,75 ,2,14971,322040 ,2,829,45 ,1,0,66360 ,2,14956,236880 ,2,14957,45 ,2,14958,74950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74940 ,2,14963,268625 ,2,14964,276065 ,2,14965,549610 ,2,14966,574120 ,2,14967,45 ,2,14968,75 ,2,14969,574110 ,2,14970,75 ,2,14971,322080 ,2,829,45 ,1,0,3010 ,1,1,176030 ,1,2,176020 ,2,14956,236890 ,2,14957,45 ,2,14958,74970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74960 ,2,14963,268625 ,2,14964,276065 ,2,14965,549635 ,2,14966,574155 ,2,14967,45 ,2,14968,75 ,2,14969,574125 ,2,14970,75 ,2,14971,322110 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373855 ,2,14956,236900 ,2,14957,45 ,2,14958,74990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,74980 ,2,14963,268625 ,2,14964,276065 ,2,14965,549650 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,574170 ,2,14970,75 ,2,14971,322130 ,2,829,45 ,2,14956,236930 ,2,14957,45 ,2,14958,75030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75020 ,2,14963,268625 ,2,14964,276065 ,2,14965,45 ,2,14966,569810 ,2,14967,45 ,2,14968,75 ,2,14969,574185 ,2,14970,75 ,2,14971,322140 ,2,829,45 ,2,14956,236970 ,2,14957,45 ,2,14958,75050 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75040 ,2,14963,268625 ,2,14964,276065 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,574190 ,2,14970,75 ,2,14971,322150 ,2,829,45 ,1,0,66755 ,1,1,66785 ,2,14956,236980 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75065 ,2,14963,268625 ,2,14964,276065 ,2,14965,549685 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,602945 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,374125 ,2,14956,236990 ,2,14957,45 ,2,14958,75085 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75075 ,2,14963,268625 ,2,14964,276065 ,2,14965,549700 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,574225 ,2,14970,75 ,2,14971,322160 ,2,829,45 ,2,14956,237050 ,2,14957,45 ,2,14958,75135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75095 ,2,14963,268625 ,2,14964,276065 ,2,14965,549755 ,2,14966,574240 ,2,14967,45 ,2,14968,75 ,2,14969,574230 ,2,14970,75 ,2,14971,322190 ,2,829,45 ,1,0,66795 ,2,14956,237165 ,2,14957,45 ,2,14958,75195 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75185 ,2,14963,268665 ,2,14964,276020 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,574250 ,2,14970,75 ,2,14971,322290 ,2,829,45 ,1,0,62795 ,2,14956,237605 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75375 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574295 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560425 ,2,14956,237615 ,2,14957,45 ,2,14958,75395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75385 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,574300 ,2,14967,45 ,2,14968,75 ,2,14969,573435 ,2,14970,75 ,2,14971,320445 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,237655 ,2,14957,45 ,2,14958,75435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75415 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75405 ,2,14969,574310 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560425 ,2,14956,237665 ,2,14957,45 ,2,14958,75455 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75445 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,574315 ,2,14970,75 ,2,14971,322565 ,2,829,45 ,1,0,167060 ,2,14956,237675 ,2,14957,45 ,2,14958,75475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75465 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,573315 ,2,14967,45 ,2,14968,75 ,2,14969,574325 ,2,14970,75 ,2,14971,320145 ,2,829,45 ,1,0,100 ,2,14956,237750 ,2,14957,45 ,2,14958,75505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75495 ,2,14963,268675 ,2,14964,275980 ,2,14965,549770 ,2,14966,574345 ,2,14967,45 ,2,14968,75485 ,2,14969,574340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256150 ,1,1,256140 ,1,2,256115 ,1,3,256105 ,2,14956,237760 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75555 ,2,14963,268675 ,2,14964,275980 ,2,14965,549785 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,603000 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,237770 ,2,14957,45 ,2,14958,75575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75565 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,573315 ,2,14967,45 ,2,14968,75 ,2,14969,574360 ,2,14970,75 ,2,14971,320155 ,2,829,45 ,1,0,66925 ,1,1,66915 ,2,14956,237820 ,2,14957,45 ,2,14958,75605 ,2,14959,75595 ,2,14960,75 ,2,14961,45 ,2,14962,75585 ,2,14963,268675 ,2,14964,275980 ,2,14965,549790 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,573430 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,619075 ,1,1,615295 ,1,2,70640 ,1,3,65 ,1,4,70620 ,1,5,65 ,1,6,65 ,1,7,70585 ,1,8,70565 ,1,9,70540 ,1,10,70520 ,1,11,70510 ,1,12,70485 ,1,13,70475 ,1,14,70445 ,1,15,70435 ,1,16,70425 ,1,17,70365 ,1,18,65 ,1,19,70355 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,70345 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,70315 ,1,28,65 ,1,29,69620 ,1,30,65 ,1,31,69585 ,1,32,69555 ,1,33,65 ,1,34,69545 ,1,35,69535 ,1,36,69525 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,69515 ,1,41,224185 ,1,42,69505 ,1,43,69495 ,1,44,69485 ,1,45,65 ,1,46,69455 ,1,47,69425 ,1,48,69415 ,1,49,69405 ,1,50,66895 ,1,51,65 ,1,52,69395 ,1,53,69385 ,1,54,65 ,1,55,69340 ,1,56,65 ,1,57,65 ,1,58,69310 ,1,59,65 ,1,60,65 ,1,61,69290 ,1,62,69280 ,1,63,65 ,1,64,66950 ,1,65,65 ,2,14956,237830 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75615 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,69255 ,1,1,66960 ,2,14956,237885 ,2,14957,45 ,2,14958,75695 ,2,14959,75675 ,2,14960,75665 ,2,14961,45 ,2,14962,75655 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,574355 ,2,14967,45 ,2,14968,75 ,2,14969,573445 ,2,14970,75 ,2,14971,320465 ,2,829,45 ,1,0,560465 ,2,14956,238070 ,2,14957,45 ,2,14958,75725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75715 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75705 ,2,14969,574370 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,69235 ,1,1,69225 ,1,2,69210 ,1,3,69200 ,1,4,69190 ,1,5,69180 ,1,6,67000 ,1,7,66980 ,2,14956,238080 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75740 ,2,14963,268675 ,2,14964,275980 ,2,14965,549825 ,2,14966,573360 ,2,14967,45 ,2,14968,75 ,2,14969,603010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614025 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,374085 ,1,5,374075 ,1,6,374065 ,1,7,374055 ,1,8,374010 ,1,9,374000 ,1,10,373990 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,2,14956,238090 ,2,14957,45 ,2,14958,75760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75750 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,574405 ,2,14967,45 ,2,14968,75 ,2,14969,574375 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,238140 ,2,14957,45 ,2,14958,75780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75770 ,2,14963,268675 ,2,14964,275980 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,574415 ,2,14970,75 ,2,14971,322735 ,2,829,45 ,1,0,67020 ,2,14956,238270 ,2,14957,45 ,2,14958,75895 ,2,14959,45 ,2,14960,75885 ,2,14961,45 ,2,14962,75875 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574255 ,2,14970,75 ,2,14971,322425 ,2,829,45 ,1,0,100 ,1,1,560515 ,1,2,560480 ,1,3,560465 ,1,4,600065 ,1,5,558090 ,2,14956,238280 ,2,14957,45 ,2,14958,75915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75905 ,2,14963,268685 ,2,14964,275970 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574425 ,2,14970,75 ,2,14971,322465 ,2,829,45 ,2,14956,238600 ,2,14957,45 ,2,14958,76010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76000 ,2,14963,268695 ,2,14964,275960 ,2,14965,549845 ,2,14966,574430 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,67030 ,2,14956,238610 ,2,14957,45 ,2,14958,76085 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76075 ,2,14963,268695 ,2,14964,275960 ,2,14965,549895 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,574480 ,2,14970,75 ,2,14971,322930 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373880 ,1,3,65 ,2,14956,238620 ,2,14957,45 ,2,14958,76110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76100 ,2,14963,268695 ,2,14964,275960 ,2,14965,45 ,2,14966,572895 ,2,14967,45 ,2,14968,75 ,2,14969,574495 ,2,14970,75 ,2,14971,322975 ,2,829,45 ,2,14956,238820 ,2,14957,45 ,2,14958,76130 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76120 ,2,14963,268695 ,2,14964,275960 ,2,14965,549930 ,2,14966,574510 ,2,14967,45 ,2,14968,75 ,2,14969,574500 ,2,14970,75 ,2,14971,322985 ,2,829,45 ,1,0,256190 ,1,1,256170 ,2,14956,238830 ,2,14957,45 ,2,14958,76200 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76175 ,2,14963,268695 ,2,14964,275960 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,574435 ,2,14970,75 ,2,14971,322920 ,2,829,45 ,1,0,60225 ,2,14956,238905 ,2,14957,45 ,2,14958,76275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76265 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,572540 ,2,14967,45 ,2,14968,75 ,2,14969,574550 ,2,14970,75 ,2,14971,323190 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,67065 ,2,14956,238915 ,2,14957,45 ,2,14958,76295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76285 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,574575 ,2,14967,45 ,2,14968,75 ,2,14969,574570 ,2,14970,75 ,2,14971,323210 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,67075 ,2,14956,238925 ,2,14957,45 ,2,14958,76315 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76305 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,574595 ,2,14967,45 ,2,14968,75 ,2,14969,574580 ,2,14970,75 ,2,14971,323240 ,2,829,45 ,1,0,560550 ,2,14956,238960 ,2,14957,45 ,2,14958,76355 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76345 ,2,14963,268710 ,2,14964,275865 ,2,14965,549955 ,2,14966,574605 ,2,14967,45 ,2,14968,75 ,2,14969,574600 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,560565 ,2,14956,238970 ,2,14957,45 ,2,14958,76375 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76365 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,574620 ,2,14967,45 ,2,14968,75 ,2,14969,574615 ,2,14970,75 ,2,14971,323280 ,2,829,45 ,1,0,67520 ,1,1,67095 ,2,14956,239005 ,2,14957,45 ,2,14958,76400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76390 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,574630 ,2,14967,45 ,2,14968,75 ,2,14969,574625 ,2,14970,75 ,2,14971,323290 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,67375 ,1,3,67365 ,1,4,67355 ,1,5,67340 ,1,6,67330 ,1,7,65 ,1,8,67320 ,1,9,67310 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,67280 ,1,14,67270 ,1,15,67260 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,67250 ,1,20,67235 ,1,21,65 ,1,22,67225 ,1,23,67215 ,1,24,67115 ,1,25,67105 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,67075 ,2,14956,239015 ,2,14957,45 ,2,14958,76420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76410 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,572540 ,2,14967,45 ,2,14968,75 ,2,14969,574675 ,2,14970,75 ,2,14971,323300 ,2,829,45 ,1,0,57710 ,1,1,67125 ,2,14956,239025 ,2,14957,45 ,2,14958,76485 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76475 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,574690 ,2,14967,45 ,2,14968,75 ,2,14969,574685 ,2,14970,75 ,2,14971,323310 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,67140 ,2,14956,239035 ,2,14957,45 ,2,14958,76505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76495 ,2,14963,268710 ,2,14964,275865 ,2,14965,45 ,2,14966,572540 ,2,14967,45 ,2,14968,75 ,2,14969,574695 ,2,14970,75 ,2,14971,323345 ,2,829,45 ,2,14956,239120 ,2,14957,45 ,2,14958,76585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76575 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,574740 ,2,14967,45 ,2,14968,75 ,2,14969,574735 ,2,14970,75 ,2,14971,323365 ,2,829,45 ,1,0,67205 ,1,1,67170 ,1,2,67140 ,1,3,67160 ,1,4,67150 ,1,5,67125 ,2,14956,239130 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76595 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574745 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67125 ,2,14956,239140 ,2,14957,45 ,2,14958,76620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76605 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,574750 ,2,14970,75 ,2,14971,323375 ,2,829,45 ,1,0,67215 ,1,1,67250 ,1,2,67280 ,1,3,67235 ,1,4,67340 ,1,5,67260 ,1,6,67270 ,1,7,67375 ,1,8,67075 ,1,9,67320 ,1,10,67105 ,1,11,67225 ,1,12,67365 ,1,13,67330 ,1,14,67355 ,1,15,67310 ,1,16,67115 ,2,14956,239150 ,2,14957,45 ,2,14958,76640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76630 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,574755 ,2,14970,75 ,2,14971,323395 ,2,829,45 ,2,14956,239160 ,2,14957,45 ,2,14958,76670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76650 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,574770 ,2,14967,45 ,2,14968,75 ,2,14969,574765 ,2,14970,75 ,2,14971,323405 ,2,829,45 ,1,0,67055 ,1,1,67430 ,1,2,67065 ,1,3,67420 ,1,4,67410 ,1,5,67385 ,2,14956,239275 ,2,14957,45 ,2,14958,76690 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76680 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,574800 ,2,14967,45 ,2,14968,75 ,2,14969,574795 ,2,14970,75 ,2,14971,323415 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,67440 ,2,14956,239225 ,2,14957,45 ,2,14958,76805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76795 ,2,14963,268720 ,2,14964,276150 ,2,14965,45 ,2,14966,574810 ,2,14967,45 ,2,14968,76700 ,2,14969,574805 ,2,14970,75 ,2,14971,323450 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268720 ,2,14964,276150 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67510 ,1,1,67480 ,1,2,67440 ,1,3,67470 ,1,4,67460 ,1,5,67450 ,2,14956,239190 ,2,14957,45 ,2,14958,76775 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76745 ,2,14963,268720 ,2,14964,276150 ,2,14965,45 ,2,14966,574810 ,2,14967,45 ,2,14968,75 ,2,14969,574815 ,2,14970,75 ,2,14971,323460 ,2,829,45 ,1,0,67510 ,2,14956,239570 ,2,14957,45 ,2,14958,77045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77035 ,2,14963,268740 ,2,14964,275845 ,2,14965,45 ,2,14966,574825 ,2,14967,45 ,2,14968,75 ,2,14969,574820 ,2,14970,75 ,2,14971,323515 ,2,829,45 ,1,0,618495 ,1,1,615295 ,1,2,68510 ,1,3,68475 ,1,4,68455 ,1,5,68435 ,1,6,68425 ,1,7,65 ,1,8,68415 ,1,9,68405 ,1,10,65 ,1,11,68395 ,1,12,65 ,1,13,65 ,1,14,68375 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,68335 ,1,19,68325 ,1,20,68315 ,1,21,68305 ,1,22,65 ,1,23,68285 ,1,24,68265 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,68200 ,1,33,65 ,1,34,68190 ,1,35,68110 ,1,36,68100 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,68080 ,1,44,68050 ,1,45,68040 ,1,46,68020 ,1,47,68000 ,1,48,65 ,1,49,67990 ,1,50,65 ,1,51,67975 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,67620 ,1,58,67570 ,1,59,67560 ,1,60,67550 ,1,61,65 ,1,62,65 ,1,63,67540 ,1,64,67530 ,1,65,67030 ,2,14956,239540 ,2,14957,45 ,2,14958,77025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77015 ,2,14963,268730 ,2,14964,276160 ,2,14965,45 ,2,14966,563745 ,2,14967,45 ,2,14968,75 ,2,14969,574830 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,176730 ,1,2,176720 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268730 ,2,14964,276160 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,239300 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,76900 ,2,14963,268730 ,2,14964,276160 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574855 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,599885 ,2,14956,239470 ,2,14957,45 ,2,14958,76975 ,2,14959,76920 ,2,14960,75 ,2,14961,45 ,2,14962,76910 ,2,14963,268730 ,2,14964,276160 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,574860 ,2,14970,75 ,2,14971,323525 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560655 ,1,5,600450 ,2,14956,239750 ,2,14957,45 ,2,14958,77170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77160 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,77150 ,2,14969,574865 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,239760 ,2,14957,45 ,2,14958,77205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77180 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,574870 ,2,14970,75 ,2,14971,323705 ,2,829,45 ,1,0,100 ,2,14956,239770 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77215 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574885 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,67695 ,1,3,166650 ,1,4,45 ,1,5,67675 ,1,6,176795 ,1,7,45 ,1,8,67650 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,239780 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77225 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,574890 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67665 ,2,14956,240060 ,2,14957,45 ,2,14958,77440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77235 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,574925 ,2,14967,45 ,2,14968,75 ,2,14969,574920 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67685 ,2,14956,239975 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77430 ,2,14963,268765 ,2,14964,276180 ,2,14965,550020 ,2,14966,574935 ,2,14967,45 ,2,14968,75 ,2,14969,603085 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67725 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268765 ,2,14964,276180 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67725 ,2,14956,239800 ,2,14957,45 ,2,14958,77320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77280 ,2,14963,268765 ,2,14964,276180 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,574940 ,2,14970,75 ,2,14971,323725 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,374565 ,1,3,65 ,1,4,65 ,1,5,374550 ,1,6,374535 ,1,7,374525 ,1,8,374515 ,1,9,65 ,1,10,374500 ,1,11,374495 ,1,12,374480 ,1,13,65 ,1,14,374470 ,1,15,374430 ,1,16,65 ,1,17,374420 ,1,18,374415 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,374400 ,1,26,374395 ,1,27,374380 ,1,28,374370 ,1,29,65 ,1,30,374360 ,1,31,374320 ,1,32,374310 ,1,33,374300 ,2,14956,239810 ,2,14957,45 ,2,14958,77340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77330 ,2,14963,268765 ,2,14964,276180 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,574945 ,2,14970,75 ,2,14971,323780 ,2,829,45 ,1,0,560660 ,2,14956,239845 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77350 ,2,14963,268765 ,2,14964,276180 ,2,14965,45 ,2,14966,570365 ,2,14967,45 ,2,14968,75 ,2,14969,574985 ,2,14970,75 ,2,14971,323800 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,67880 ,1,3,67870 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,67665 ,1,8,67850 ,1,9,67840 ,1,10,67725 ,1,11,65 ,1,12,65 ,1,13,67830 ,1,14,67820 ,1,15,67795 ,1,16,65 ,1,17,65 ,1,18,67785 ,1,19,67775 ,1,20,67765 ,1,21,65 ,1,22,65 ,1,23,67755 ,1,24,65 ,1,25,67685 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,67745 ,1,33,67735 ,2,14956,239955 ,2,14957,45 ,2,14958,77370 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77360 ,2,14963,268765 ,2,14964,276180 ,2,14965,45 ,2,14966,574995 ,2,14967,45 ,2,14968,75 ,2,14969,574990 ,2,14970,75 ,2,14971,323810 ,2,829,45 ,1,0,3010 ,1,1,176955 ,1,2,176945 ,1,3,176935 ,1,4,176915 ,1,5,176905 ,1,6,176895 ,2,14956,241680 ,2,14957,45 ,2,14958,78620 ,2,14959,77470 ,2,14960,75 ,2,14961,45 ,2,14962,77460 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,575020 ,2,14967,45 ,2,14968,75 ,2,14969,575015 ,2,14970,75 ,2,14971,324030 ,2,829,45 ,1,0,67880 ,1,1,67685 ,1,2,67725 ,1,3,67665 ,1,4,67755 ,1,5,67785 ,1,6,67870 ,1,7,67765 ,1,8,67850 ,1,9,67830 ,1,10,67820 ,1,11,67775 ,1,12,67795 ,1,13,67735 ,1,14,67840 ,1,15,67745 ,2,14956,8220 ,2,14957,45 ,2,14958,77585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268775 ,2,14964,276190 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,240070 ,2,14957,45 ,2,14958,77550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77540 ,2,14963,268775 ,2,14964,276190 ,2,14965,45 ,2,14966,575055 ,2,14967,45 ,2,14968,77530 ,2,14969,575050 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67965 ,1,1,67955 ,1,2,67945 ,1,3,67900 ,1,4,67890 ,2,14956,240120 ,2,14957,45 ,2,14958,77575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77565 ,2,14963,268775 ,2,14964,276190 ,2,14965,45 ,2,14966,575070 ,2,14967,45 ,2,14968,75 ,2,14969,575060 ,2,14970,75 ,2,14971,324160 ,2,829,45 ,1,0,67830 ,2,14956,240395 ,2,14957,45 ,2,14958,77685 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77675 ,2,14963,268785 ,2,14964,276205 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575075 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268785 ,2,14964,276205 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,607730 ,1,2,607725 ,2,14956,240360 ,2,14957,45 ,2,14958,77745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77735 ,2,14963,268795 ,2,14964,276215 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575080 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268795 ,2,14964,276215 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560655 ,1,5,600465 ,2,14956,240460 ,2,14957,45 ,2,14958,77835 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77805 ,2,14963,268810 ,2,14964,276225 ,2,14965,45 ,2,14966,575070 ,2,14967,45 ,2,14968,75 ,2,14969,575085 ,2,14970,75 ,2,14971,324320 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268810 ,2,14964,276225 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560665 ,2,14956,240880 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78215 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,77865 ,2,14969,575130 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,240495 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77875 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,575140 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,607765 ,2,14956,8220 ,2,14957,45 ,2,14958,77905 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,240580 ,2,14957,45 ,2,14958,77970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77960 ,2,14963,268820 ,2,14964,276235 ,2,14965,550060 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,575155 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600065 ,1,5,558085 ,2,14956,240680 ,2,14957,45 ,2,14958,77990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,77980 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,575160 ,2,14970,75 ,2,14971,324435 ,2,829,45 ,1,0,558080 ,2,14956,240690 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78020 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,75 ,2,14969,575185 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,68180 ,1,1,68170 ,1,2,68160 ,1,3,68150 ,2,14956,240700 ,2,14957,45 ,2,14958,78055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78045 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,575190 ,2,14970,75 ,2,14971,324520 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,240725 ,2,14957,45 ,2,14958,78075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78065 ,2,14963,268820 ,2,14964,276235 ,2,14965,550080 ,2,14966,575200 ,2,14967,45 ,2,14968,75 ,2,14969,575195 ,2,14970,75 ,2,14971,324530 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560765 ,1,5,600470 ,2,14956,240745 ,2,14957,45 ,2,14958,78100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78090 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,575210 ,2,14967,45 ,2,14968,75 ,2,14969,575205 ,2,14970,75 ,2,14971,324540 ,2,829,45 ,2,14956,240755 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78110 ,2,14963,268820 ,2,14964,276235 ,2,14965,550125 ,2,14966,575215 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,68255 ,2,14956,240830 ,2,14957,45 ,2,14958,78155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78120 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,575165 ,2,14967,45 ,2,14968,75 ,2,14969,575255 ,2,14970,75 ,2,14971,324570 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373890 ,1,3,65 ,2,14956,240840 ,2,14957,45 ,2,14958,78205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78195 ,2,14963,268820 ,2,14964,276235 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,78185 ,2,14969,575260 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,560770 ,2,14956,241360 ,2,14957,45 ,2,14958,78415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78405 ,2,14963,268830 ,2,14964,276255 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575275 ,2,14970,75 ,2,14971,324805 ,2,829,45 ,1,0,12445 ,1,1,9435 ,1,2,177160 ,1,3,177055 ,1,4,176690 ,1,5,177390 ,1,6,177380 ,1,7,177370 ,1,8,177150 ,1,9,177360 ,1,10,177345 ,1,11,177335 ,1,12,177325 ,1,13,10540 ,1,14,176740 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268830 ,2,14964,276255 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,2,14956,241065 ,2,14957,45 ,2,14958,78395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78385 ,2,14963,268830 ,2,14964,276255 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,78375 ,2,14969,575280 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,241430 ,2,14957,45 ,2,14958,78510 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78500 ,2,14963,268830 ,2,14964,276255 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,575285 ,2,14970,75 ,2,14971,324855 ,2,829,45 ,1,0,100 ,2,14956,241555 ,2,14957,45 ,2,14958,78600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78565 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,78555 ,2,14969,575315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,241720 ,2,14957,45 ,2,14958,78645 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78630 ,2,14963,268840 ,2,14964,276170 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,575320 ,2,14970,75 ,2,14971,325000 ,2,829,45 ,1,0,100 ,1,1,607790 ,2,14956,241950 ,2,14957,45 ,2,14958,78870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78860 ,2,14963,268865 ,2,14964,276265 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,575325 ,2,14970,75 ,2,14971,325230 ,2,829,45 ,1,0,167060 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268865 ,2,14964,276265 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,241835 ,2,14957,45 ,2,14958,78775 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78765 ,2,14963,268865 ,2,14964,276265 ,2,14965,45 ,2,14966,575345 ,2,14967,45 ,2,14968,75 ,2,14969,575340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,241790 ,2,14957,45 ,2,14958,78750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78740 ,2,14963,269825 ,2,14964,277110 ,2,14965,550140 ,2,14966,563745 ,2,14967,45 ,2,14968,75 ,2,14969,575350 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,607840 ,2,14956,241890 ,2,14957,45 ,2,14958,78795 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78785 ,2,14963,268865 ,2,14964,276265 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,575355 ,2,14970,75 ,2,14971,325065 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,241880 ,2,14957,45 ,2,14958,78840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78830 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,575390 ,2,14970,75 ,2,14971,325075 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600475 ,2,14956,242595 ,2,14957,45 ,2,14958,79035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79000 ,2,14963,268875 ,2,14964,276275 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,78930 ,2,14969,575400 ,2,14970,75 ,2,14971,325185 ,2,829,45 ,1,0,167060 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268875 ,2,14964,276275 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,242565 ,2,14957,45 ,2,14958,78990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,78980 ,2,14963,268875 ,2,14964,276275 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,78970 ,2,14969,575415 ,2,14970,75 ,2,14971,325210 ,2,829,45 ,1,0,68415 ,1,1,68110 ,1,2,68475 ,1,3,67620 ,1,4,68050 ,1,5,67570 ,1,6,68200 ,1,7,68020 ,1,8,68100 ,1,9,67550 ,1,10,67540 ,1,11,68305 ,1,12,68510 ,1,13,68190 ,1,14,68285 ,1,15,68375 ,1,16,68455 ,1,17,67975 ,1,18,68080 ,1,19,67030 ,1,20,68040 ,1,21,67560 ,1,22,67990 ,1,23,67530 ,1,24,68425 ,1,25,68265 ,1,26,68335 ,1,27,68000 ,1,28,68405 ,1,29,68325 ,1,30,68435 ,1,31,68315 ,1,32,68395 ,2,14956,246685 ,2,14957,45 ,2,14958,82420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82410 ,2,14963,269235 ,2,14964,276285 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575425 ,2,14970,75 ,2,14971,325330 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269235 ,2,14964,276285 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,600040 ,1,5,560850 ,2,14956,242625 ,2,14957,45 ,2,14958,79100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79090 ,2,14963,269235 ,2,14964,276285 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,79080 ,2,14969,575430 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,599885 ,2,14956,246265 ,2,14957,45 ,2,14958,79150 ,2,14959,45 ,2,14960,79140 ,2,14961,45 ,2,14962,79110 ,2,14963,269235 ,2,14964,276285 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,575450 ,2,14970,75 ,2,14971,325340 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,242730 ,2,14957,45 ,2,14958,79210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79200 ,2,14963,268885 ,2,14964,276310 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,79160 ,2,14969,575475 ,2,14970,75 ,2,14971,325435 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,599880 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268885 ,2,14964,276310 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,68585 ,2,14956,242720 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79270 ,2,14963,268895 ,2,14964,276320 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575485 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268895 ,2,14964,276320 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,617450 ,1,1,615295 ,1,2,68990 ,1,3,68980 ,1,4,68940 ,1,5,68930 ,1,6,68920 ,1,7,65 ,1,8,68910 ,1,9,68895 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,68875 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,68835 ,1,19,68825 ,1,20,68815 ,1,21,68805 ,1,22,65 ,1,23,68785 ,1,24,68765 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,68755 ,1,35,65 ,1,36,65 ,1,37,68575 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,68725 ,1,44,68715 ,1,45,68705 ,1,46,68690 ,1,47,68670 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,68660 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,68630 ,1,58,65 ,1,59,68620 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,68610 ,1,64,68600 ,1,65,68585 ,2,14956,243540 ,2,14957,45 ,2,14958,79350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79340 ,2,14963,268910 ,2,14964,276330 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,79285 ,2,14969,575510 ,2,14970,75 ,2,14971,325460 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268910 ,2,14964,276330 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,607890 ,1,2,607885 ,2,14956,243530 ,2,14957,45 ,2,14958,79820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79810 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,79360 ,2,14969,575520 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,79395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,607905 ,2,14956,242960 ,2,14957,45 ,2,14958,79505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79415 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,575530 ,2,14967,45 ,2,14968,75 ,2,14969,575525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,242915 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79495 ,2,14963,268920 ,2,14964,276350 ,2,14965,45 ,2,14966,566930 ,2,14967,45 ,2,14968,75 ,2,14969,575540 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268920 ,2,14964,276350 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,242890 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79485 ,2,14963,268920 ,2,14964,276350 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575570 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,607955 ,2,14956,242990 ,2,14957,45 ,2,14958,79555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79545 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,79525 ,2,14969,575585 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,243005 ,2,14957,45 ,2,14958,79575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79565 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,569270 ,2,14967,45 ,2,14968,75 ,2,14969,575600 ,2,14970,75 ,2,14971,325515 ,2,829,45 ,1,0,100 ,2,14956,243035 ,2,14957,45 ,2,14958,79605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79595 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,79585 ,2,14969,575605 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,243330 ,2,14957,45 ,2,14958,79690 ,2,14959,79650 ,2,14960,75 ,2,14961,45 ,2,14962,79615 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,575615 ,2,14967,45 ,2,14968,75 ,2,14969,575610 ,2,14970,75 ,2,14971,325525 ,2,829,45 ,1,0,100 ,1,1,607985 ,2,14956,243425 ,2,14957,45 ,2,14958,79720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79710 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,79700 ,2,14969,575635 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,68980 ,1,1,68705 ,1,2,68575 ,1,3,68630 ,1,4,68610 ,1,5,68805 ,1,6,68990 ,1,7,68755 ,1,8,68785 ,1,9,68875 ,1,10,68940 ,1,11,68660 ,1,12,68725 ,1,13,68585 ,1,14,68690 ,1,15,68620 ,1,16,68715 ,1,17,68600 ,1,18,68920 ,1,19,68765 ,1,20,68835 ,1,21,68670 ,1,22,68895 ,1,23,68825 ,1,24,68930 ,1,25,68815 ,1,26,68910 ,2,14956,243460 ,2,14957,45 ,2,14958,79770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79760 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,575640 ,2,14967,45 ,2,14968,75 ,2,14969,575580 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,68100 ,1,1,68415 ,2,14956,243470 ,2,14957,45 ,2,14958,79800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79790 ,2,14963,268930 ,2,14964,276340 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,575575 ,2,14970,79780 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560515 ,1,2,560480 ,1,3,560465 ,1,4,560765 ,1,5,560945 ,2,14956,243580 ,2,14957,45 ,2,14958,79915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79905 ,2,14963,268940 ,2,14964,276360 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,79830 ,2,14969,575670 ,2,14970,75 ,2,14971,325845 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268940 ,2,14964,276360 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,560960 ,1,5,560955 ,2,14956,243550 ,2,14957,45 ,2,14958,79895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,79885 ,2,14963,268940 ,2,14964,276360 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,75 ,2,14969,575675 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560655 ,1,5,560425 ,2,14956,243640 ,2,14957,45 ,2,14958,80020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80000 ,2,14963,268970 ,2,14964,276370 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,79925 ,2,14969,575695 ,2,14970,75 ,2,14971,325880 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268970 ,2,14964,276370 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,560980 ,1,5,560975 ,2,14956,243685 ,2,14957,45 ,2,14958,80095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80085 ,2,14963,268980 ,2,14964,276380 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80030 ,2,14969,575705 ,2,14970,75 ,2,14971,325900 ,2,829,45 ,1,0,167060 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268980 ,2,14964,276380 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,243760 ,2,14957,45 ,2,14958,80185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80175 ,2,14963,268990 ,2,14964,276400 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80105 ,2,14969,575715 ,2,14970,75 ,2,14971,325935 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560655 ,1,5,561020 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,268990 ,2,14964,276400 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,243695 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80150 ,2,14963,268990 ,2,14964,276400 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560665 ,2,14956,243930 ,2,14957,45 ,2,14958,80295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80285 ,2,14963,269000 ,2,14964,276410 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,575770 ,2,14970,75 ,2,14971,325955 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269000 ,2,14964,276410 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,560980 ,1,5,561030 ,2,14956,243780 ,2,14957,45 ,2,14958,80245 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80235 ,2,14963,269000 ,2,14964,276410 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,80225 ,2,14969,575775 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,243970 ,2,14957,45 ,2,14958,80385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80360 ,2,14963,269015 ,2,14964,276420 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80315 ,2,14969,575790 ,2,14970,75 ,2,14971,325995 ,2,829,45 ,1,0,100 ,1,1,560985 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269015 ,2,14964,276420 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560515 ,1,2,560480 ,1,3,560465 ,1,4,560425 ,2,14956,244000 ,2,14957,45 ,2,14958,80450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80440 ,2,14963,269025 ,2,14964,276430 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80395 ,2,14969,575800 ,2,14970,75 ,2,14971,326040 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269025 ,2,14964,276430 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,560975 ,2,14956,244035 ,2,14957,45 ,2,14958,80550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80530 ,2,14963,269035 ,2,14964,276445 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80460 ,2,14969,575830 ,2,14970,75 ,2,14971,326060 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600065 ,1,5,558085 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269035 ,2,14964,276445 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,244205 ,2,14957,45 ,2,14958,80625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80615 ,2,14963,269045 ,2,14964,276455 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,575840 ,2,14970,75 ,2,14971,326090 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,600040 ,1,5,560850 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269045 ,2,14964,276455 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,244240 ,2,14957,45 ,2,14958,80720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80690 ,2,14963,269080 ,2,14964,276465 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80645 ,2,14969,575855 ,2,14970,75 ,2,14971,326155 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269080 ,2,14964,276465 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600065 ,1,5,558090 ,2,14956,244295 ,2,14957,45 ,2,14958,80795 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80785 ,2,14963,269090 ,2,14964,276475 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80730 ,2,14969,575865 ,2,14970,75 ,2,14971,326175 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269090 ,2,14964,276475 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256160 ,2,14956,244370 ,2,14957,45 ,2,14958,80875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80865 ,2,14963,269100 ,2,14964,276495 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,575900 ,2,14970,75 ,2,14971,326240 ,2,829,45 ,1,0,66960 ,1,1,69255 ,1,2,69245 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269100 ,2,14964,276495 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66960 ,2,14956,244400 ,2,14957,45 ,2,14958,80985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,80975 ,2,14963,269110 ,2,14964,276505 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80905 ,2,14969,575910 ,2,14970,75 ,2,14971,326270 ,2,829,45 ,1,0,32220 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269110 ,2,14964,276505 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,244440 ,2,14957,45 ,2,14958,81080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81070 ,2,14963,269120 ,2,14964,276515 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,80995 ,2,14969,575920 ,2,14970,75 ,2,14971,326290 ,2,829,45 ,1,0,100 ,1,1,560515 ,1,2,560480 ,1,3,560465 ,1,4,561060 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269120 ,2,14964,276515 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,244410 ,2,14957,45 ,2,14958,81060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81035 ,2,14963,269120 ,2,14964,276515 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,75 ,2,14969,575925 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,244490 ,2,14957,45 ,2,14958,81170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81135 ,2,14963,269130 ,2,14964,276525 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,81090 ,2,14969,575950 ,2,14970,75 ,2,14971,326325 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,561085 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269130 ,2,14964,276525 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,244545 ,2,14957,45 ,2,14958,81285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81245 ,2,14963,269140 ,2,14964,276545 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,81180 ,2,14969,575960 ,2,14970,75 ,2,14971,326345 ,2,829,45 ,1,0,100 ,1,1,608030 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269140 ,2,14964,276545 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,32340 ,2,14956,244500 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81225 ,2,14963,269140 ,2,14964,276545 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575965 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,600065 ,2,14956,244515 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81235 ,2,14963,269140 ,2,14964,276545 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575980 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,177945 ,1,1,45 ,2,14956,244660 ,2,14957,45 ,2,14958,81345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81335 ,2,14963,269150 ,2,14964,276555 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,81295 ,2,14969,575990 ,2,14970,75 ,2,14971,326440 ,2,829,45 ,1,0,100 ,1,1,600065 ,1,2,558090 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269150 ,2,14964,276555 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,32380 ,2,14956,244650 ,2,14957,45 ,2,14958,81435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81425 ,2,14963,269170 ,2,14964,276565 ,2,14965,45 ,2,14966,576030 ,2,14967,45 ,2,14968,75 ,2,14969,576025 ,2,14970,75 ,2,14971,326400 ,2,829,45 ,1,0,100 ,2,14956,244620 ,2,14957,45 ,2,14958,81385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81355 ,2,14963,269170 ,2,14964,276565 ,2,14965,45 ,2,14966,575995 ,2,14967,45 ,2,14968,75 ,2,14969,576035 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560515 ,1,2,560480 ,1,3,560465 ,1,4,561090 ,1,5,608050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269170 ,2,14964,276565 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,244980 ,2,14957,45 ,2,14958,81535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81525 ,2,14963,269180 ,2,14964,276575 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,81485 ,2,14969,576050 ,2,14970,75 ,2,14971,326460 ,2,829,45 ,1,0,100 ,1,1,608050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269180 ,2,14964,276575 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,561100 ,2,14956,245055 ,2,14957,45 ,2,14958,81610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81600 ,2,14963,269190 ,2,14964,276600 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,81555 ,2,14969,576060 ,2,14970,75 ,2,14971,326495 ,2,829,45 ,1,0,256295 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269190 ,2,14964,276600 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,618890 ,1,1,615295 ,1,2,70230 ,1,3,65 ,1,4,65 ,1,5,70220 ,1,6,70210 ,1,7,70195 ,1,8,65 ,1,9,70185 ,1,10,65 ,1,11,70175 ,1,12,69985 ,1,13,69975 ,1,14,69965 ,1,15,69955 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,69935 ,1,21,69925 ,1,22,65 ,1,23,69915 ,1,24,65 ,1,25,69905 ,1,26,65 ,1,27,65 ,1,28,70250 ,1,29,69865 ,1,30,65 ,1,31,69855 ,1,32,69845 ,1,33,65 ,1,34,69835 ,1,35,69825 ,1,36,65 ,1,37,70240 ,1,38,69815 ,1,39,65 ,1,40,69805 ,1,41,69755 ,1,42,65 ,1,43,69745 ,1,44,65 ,1,45,65 ,1,46,69735 ,1,47,69725 ,1,48,69715 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,69705 ,1,53,69695 ,1,54,65 ,1,55,65 ,1,56,69685 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,69630 ,1,62,69650 ,1,63,65 ,1,64,65 ,1,65,69640 ,2,14956,246165 ,2,14957,45 ,2,14958,81815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81805 ,2,14963,269200 ,2,14964,276610 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,576095 ,2,14970,75 ,2,14971,326555 ,2,829,45 ,1,0,3010 ,1,1,2820 ,1,2,170230 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269200 ,2,14964,276610 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66960 ,1,1,68765 ,2,14956,245920 ,2,14957,45 ,2,14958,81695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81685 ,2,14963,269200 ,2,14964,276610 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,75 ,2,14969,576100 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,32500 ,2,14956,245940 ,2,14957,45 ,2,14958,81725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81715 ,2,14963,269200 ,2,14964,276610 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,81705 ,2,14969,576110 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,600065 ,2,14956,245980 ,2,14957,45 ,2,14958,81795 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81785 ,2,14963,269200 ,2,14964,276610 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,81735 ,2,14969,576115 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,66980 ,1,1,66960 ,1,2,69985 ,1,3,69905 ,2,14956,246275 ,2,14957,45 ,2,14958,81910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81900 ,2,14963,269235 ,2,14964,276285 ,2,14965,550165 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,575455 ,2,14970,75 ,2,14971,325370 ,2,829,45 ,1,0,3010 ,1,1,170230 ,1,2,166955 ,2,14956,246600 ,2,14957,45 ,2,14958,82355 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82340 ,2,14963,269235 ,2,14964,276285 ,2,14965,45 ,2,14966,576125 ,2,14967,45 ,2,14968,75 ,2,14969,576120 ,2,14970,75 ,2,14971,326685 ,2,829,45 ,2,14956,246580 ,2,14957,45 ,2,14958,82320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82310 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,81920 ,2,14969,576165 ,2,14970,75 ,2,14971,326695 ,2,829,45 ,1,0,256305 ,2,14956,246385 ,2,14957,45 ,2,14958,81950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81940 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,81930 ,2,14969,576170 ,2,14970,75 ,2,14971,326705 ,2,829,45 ,2,14956,246365 ,2,14957,45 ,2,14958,82000 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,81960 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,576195 ,2,14967,45 ,2,14968,75 ,2,14969,576175 ,2,14970,75 ,2,14971,326750 ,2,829,45 ,1,0,70165 ,1,1,70155 ,1,2,70135 ,1,3,70090 ,1,4,70070 ,1,5,70060 ,1,6,70035 ,1,7,70025 ,1,8,70015 ,1,9,70005 ,2,14956,246330 ,2,14957,45 ,2,14958,82105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82075 ,2,14963,269215 ,2,14964,276620 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,82010 ,2,14969,576180 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70070 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269215 ,2,14964,276620 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,246285 ,2,14957,45 ,2,14958,82065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82055 ,2,14963,269215 ,2,14964,276620 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,576190 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70090 ,2,14956,246425 ,2,14957,45 ,2,14958,82150 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82135 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,82125 ,2,14969,576205 ,2,14970,75 ,2,14971,326810 ,2,829,45 ,1,0,70135 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,246435 ,2,14957,45 ,2,14958,82230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82220 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,576230 ,2,14970,75 ,2,14971,326820 ,2,829,45 ,1,0,100 ,2,14956,246445 ,2,14957,45 ,2,14958,82250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82240 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,576125 ,2,14967,45 ,2,14968,75 ,2,14969,576235 ,2,14970,75 ,2,14971,326865 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,246490 ,2,14957,45 ,2,14958,82270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82260 ,2,14963,269225 ,2,14964,276630 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,576255 ,2,14970,75 ,2,14971,326875 ,2,829,45 ,1,0,100 ,1,1,600065 ,2,14956,246650 ,2,14957,45 ,2,14958,82385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82375 ,2,14963,269235 ,2,14964,276285 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,82365 ,2,14969,576260 ,2,14970,75 ,2,14971,326515 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,246805 ,2,14957,45 ,2,14958,82645 ,2,14959,45 ,2,14960,82635 ,2,14961,45 ,2,14962,82615 ,2,14963,269245 ,2,14964,276645 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,576265 ,2,14970,75 ,2,14971,326980 ,2,829,45 ,1,0,100 ,1,1,608115 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269245 ,2,14964,276645 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70220 ,1,1,69715 ,1,2,70175 ,1,3,70210 ,1,4,69965 ,1,5,69640 ,1,6,69845 ,1,7,69650 ,1,8,70250 ,1,9,69815 ,1,10,69855 ,1,11,69735 ,1,12,69835 ,1,13,69955 ,1,14,69685 ,1,15,69905 ,1,16,69705 ,1,17,69865 ,1,18,69630 ,1,19,70240 ,1,20,69825 ,1,21,69985 ,1,22,70195 ,1,23,70185 ,1,24,69695 ,1,25,70230 ,1,26,69805 ,1,27,69755 ,1,28,69725 ,1,29,69935 ,1,30,69915 ,1,31,69975 ,1,32,69745 ,1,33,69925 ,2,14956,246755 ,2,14957,45 ,2,14958,82540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82480 ,2,14963,269245 ,2,14964,276645 ,2,14965,45 ,2,14966,572540 ,2,14967,45 ,2,14968,75 ,2,14969,576270 ,2,14970,75 ,2,14971,326995 ,2,829,45 ,1,0,69685 ,2,14956,246765 ,2,14957,45 ,2,14958,82560 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82550 ,2,14963,269245 ,2,14964,276645 ,2,14965,45 ,2,14966,576295 ,2,14967,45 ,2,14968,75 ,2,14969,576290 ,2,14970,75 ,2,14971,327015 ,2,829,45 ,1,0,561185 ,2,14956,246775 ,2,14957,45 ,2,14958,82585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82570 ,2,14963,269245 ,2,14964,276645 ,2,14965,45 ,2,14966,576305 ,2,14967,45 ,2,14968,75 ,2,14969,576300 ,2,14970,75 ,2,14971,327025 ,2,829,45 ,2,14956,246785 ,2,14957,45 ,2,14958,82605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82595 ,2,14963,269245 ,2,14964,276645 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,75 ,2,14969,576310 ,2,14970,75 ,2,14971,327060 ,2,829,45 ,1,0,70270 ,1,1,70280 ,1,2,70260 ,2,14956,246905 ,2,14957,45 ,2,14958,82700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82690 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,576315 ,2,14970,75 ,2,14971,327070 ,2,829,45 ,1,0,70175 ,1,1,66960 ,2,14956,246915 ,2,14957,45 ,2,14958,82745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82710 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,576335 ,2,14970,75 ,2,14971,327080 ,2,829,45 ,1,0,32795 ,2,14956,246975 ,2,14957,45 ,2,14958,82765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82755 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,576350 ,2,14967,45 ,2,14968,75 ,2,14969,576340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,246995 ,2,14957,45 ,2,14958,82785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82775 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,576360 ,2,14970,75 ,2,14971,327110 ,2,829,45 ,1,0,100 ,1,1,560515 ,1,2,560480 ,1,3,560465 ,1,4,561225 ,1,5,608150 ,1,6,608145 ,2,14956,247005 ,2,14957,45 ,2,14958,82815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82805 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,576410 ,2,14967,45 ,2,14968,75 ,2,14969,576365 ,2,14970,75 ,2,14971,327130 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,247245 ,2,14957,45 ,2,14958,82865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82855 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,576415 ,2,14970,75 ,2,14971,327140 ,2,829,45 ,1,0,100 ,1,1,608150 ,1,2,608145 ,2,14956,8220 ,2,14957,45 ,2,14958,82935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269280 ,2,14964,276655 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,561230 ,2,14956,247415 ,2,14957,45 ,2,14958,83005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,82995 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,576440 ,2,14967,45 ,2,14968,75 ,2,14969,576435 ,2,14970,75 ,2,14971,327230 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,247425 ,2,14957,45 ,2,14958,83055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83045 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,576445 ,2,14970,75 ,2,14971,327385 ,2,829,45 ,1,0,100 ,1,1,608185 ,1,2,608180 ,2,14956,247435 ,2,14957,45 ,2,14958,83095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83085 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,576470 ,2,14970,75 ,2,14971,327395 ,2,829,45 ,1,0,32920 ,2,14956,247660 ,2,14957,45 ,2,14958,83115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83105 ,2,14963,269300 ,2,14964,275835 ,2,14965,45 ,2,14966,576490 ,2,14967,45 ,2,14968,75 ,2,14969,576480 ,2,14970,75 ,2,14971,327410 ,2,829,45 ,1,0,600065 ,2,14956,247540 ,2,14957,45 ,2,14958,83185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83155 ,2,14963,269290 ,2,14964,276665 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,576495 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,178850 ,1,1,170230 ,1,2,176720 ,1,3,178840 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269290 ,2,14964,276665 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,561235 ,2,14956,247845 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83245 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,576530 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,247855 ,2,14957,45 ,2,14958,83295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83255 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,576535 ,2,14967,45 ,2,14968,75 ,2,14969,576505 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,247885 ,2,14957,45 ,2,14958,83325 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83315 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,570750 ,2,14967,45 ,2,14968,75 ,2,14969,576500 ,2,14970,83305 ,2,14971,45 ,2,829,45 ,1,0,178915 ,1,1,45 ,2,14956,247895 ,2,14957,45 ,2,14958,83355 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83345 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,576555 ,2,14967,45 ,2,14968,75 ,2,14969,576550 ,2,14970,75 ,2,14971,327805 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,247905 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83365 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,576590 ,2,14967,45 ,2,14968,75 ,2,14969,576560 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,248055 ,2,14957,45 ,2,14958,83530 ,2,14959,83400 ,2,14960,75 ,2,14961,45 ,2,14962,83390 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,576595 ,2,14967,45 ,2,14968,75 ,2,14969,576525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,33055 ,2,14956,248065 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83540 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,576605 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,248075 ,2,14957,45 ,2,14958,83560 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83550 ,2,14963,269310 ,2,14964,275815 ,2,14965,45 ,2,14966,570795 ,2,14967,45 ,2,14968,75 ,2,14969,576610 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,179000 ,1,1,45 ,2,14956,248190 ,2,14957,45 ,2,14958,83625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83615 ,2,14963,265715 ,2,14964,280655 ,2,14965,550275 ,2,14966,576665 ,2,14967,45 ,2,14968,75 ,2,14969,576655 ,2,14970,83605 ,2,14971,328010 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,248280 ,2,14957,45 ,2,14958,83720 ,2,14959,83710 ,2,14960,75 ,2,14961,45 ,2,14962,83675 ,2,14963,265715 ,2,14964,280655 ,2,14965,550340 ,2,14966,576680 ,2,14967,45 ,2,14968,75 ,2,14969,576625 ,2,14970,83635 ,2,14971,328065 ,2,829,45 ,1,0,100 ,1,1,600065 ,1,2,558090 ,2,14956,248200 ,2,14957,45 ,2,14958,83665 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83655 ,2,14963,265715 ,2,14964,280655 ,2,14965,550330 ,2,14966,576725 ,2,14967,45 ,2,14968,75 ,2,14969,576690 ,2,14970,83645 ,2,14971,45 ,2,829,45 ,1,0,179030 ,1,1,45 ,2,14956,248480 ,2,14957,45 ,2,14958,83775 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83765 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,576620 ,2,14967,45 ,2,14968,75 ,2,14969,576755 ,2,14970,75 ,2,14971,328100 ,2,829,45 ,1,0,70585 ,1,1,70520 ,1,2,70620 ,1,3,69620 ,1,4,69535 ,1,5,69280 ,1,6,224185 ,1,7,69485 ,1,8,70640 ,1,9,66895 ,1,10,70485 ,1,11,70345 ,1,12,69545 ,1,13,70565 ,1,14,69515 ,1,15,69505 ,1,16,70355 ,1,17,69455 ,1,18,70540 ,1,19,69555 ,1,20,69290 ,1,21,66950 ,1,22,70475 ,1,23,70510 ,1,24,69310 ,1,25,69585 ,1,26,70315 ,1,27,70445 ,1,28,69425 ,1,29,70365 ,1,30,70425 ,1,31,69415 ,1,32,69385 ,1,33,69395 ,1,34,69495 ,1,35,69340 ,1,36,69525 ,1,37,70435 ,1,38,69405 ,2,14956,248425 ,2,14957,45 ,2,14958,83855 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83845 ,2,14963,269325 ,2,14964,276675 ,2,14965,45 ,2,14966,572210 ,2,14967,45 ,2,14968,75 ,2,14969,576790 ,2,14970,75 ,2,14971,328110 ,2,829,45 ,1,0,561255 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269325 ,2,14964,276675 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,248500 ,2,14957,45 ,2,14958,83885 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83875 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,576800 ,2,14967,45 ,2,14968,75 ,2,14969,576795 ,2,14970,75 ,2,14971,328120 ,2,829,45 ,1,0,70765 ,1,1,70650 ,2,14956,248530 ,2,14957,45 ,2,14958,83920 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83895 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,576810 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,561305 ,2,14956,248540 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83930 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,576820 ,2,14967,45 ,2,14968,75 ,2,14969,576815 ,2,14970,75 ,2,14971,328150 ,2,829,45 ,1,0,70660 ,1,1,70680 ,1,2,70670 ,2,14956,248560 ,2,14957,45 ,2,14958,83950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83940 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,576850 ,2,14967,45 ,2,14968,75 ,2,14969,576825 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,248610 ,2,14957,45 ,2,14958,83980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,83970 ,2,14963,269335 ,2,14964,275805 ,2,14965,45 ,2,14966,576620 ,2,14967,45 ,2,14968,75 ,2,14969,576860 ,2,14970,75 ,2,14971,328160 ,2,829,45 ,1,0,70755 ,1,1,70745 ,1,2,70735 ,1,3,70690 ,2,14956,248775 ,2,14957,45 ,2,14958,84080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84060 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,576875 ,2,14967,45 ,2,14968,75 ,2,14969,576870 ,2,14970,75 ,2,14971,328170 ,2,829,45 ,1,0,70755 ,2,14956,248795 ,2,14957,45 ,2,14958,84100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84090 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,571045 ,2,14967,45 ,2,14968,75 ,2,14969,576880 ,2,14970,75 ,2,14971,328205 ,2,829,45 ,1,0,256325 ,1,1,256315 ,2,14956,248925 ,2,14957,45 ,2,14958,84170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84160 ,2,14963,269345 ,2,14964,275765 ,2,14965,45 ,2,14966,576910 ,2,14967,45 ,2,14968,75 ,2,14969,576905 ,2,14970,75 ,2,14971,328225 ,2,829,45 ,1,0,70855 ,1,1,70845 ,1,2,70835 ,1,3,70825 ,1,4,70815 ,1,5,70795 ,1,6,66825 ,1,7,70775 ,2,14956,248955 ,2,14957,45 ,2,14958,84200 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84190 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,576935 ,2,14967,45 ,2,14968,75 ,2,14969,576930 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70965 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,619705 ,1,1,615295 ,1,2,73965 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,73945 ,1,11,65 ,1,12,65 ,1,13,73930 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,73920 ,1,18,65 ,1,19,65 ,1,20,73900 ,1,21,65 ,1,22,73875 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,73865 ,1,28,73845 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,73825 ,1,51,73815 ,1,52,73795 ,1,53,73770 ,1,54,73740 ,1,55,65 ,1,56,73720 ,1,57,65 ,1,58,65 ,1,59,77860 ,1,60,73510 ,1,61,65 ,1,62,73475 ,1,63,65 ,1,64,65 ,1,65,73455 ,1,66,65 ,1,67,73425 ,1,68,73325 ,1,69,73040 ,1,70,72935 ,1,71,65 ,1,72,65 ,1,73,65 ,1,74,65 ,1,75,72905 ,1,76,65 ,1,77,71780 ,1,78,65 ,1,79,65 ,1,80,71755 ,1,81,65 ,1,82,71745 ,1,83,65 ,1,84,65 ,1,85,65 ,1,86,65 ,1,87,65 ,1,88,65 ,1,89,65 ,1,90,65 ,1,91,65 ,1,92,71735 ,1,93,65 ,1,94,71700 ,1,95,71690 ,1,96,70935 ,1,97,71680 ,1,98,65 ,1,99,71670 ,1,100,65 ,1,101,71650 ,1,102,65 ,1,103,65 ,1,104,65 ,1,105,71605 ,1,106,65 ,1,107,71585 ,1,108,65 ,1,109,65 ,1,110,65 ,1,111,71555 ,1,112,71545 ,1,113,65 ,1,114,65 ,1,115,71535 ,1,116,71500 ,1,117,71480 ,1,118,65 ,1,119,71470 ,1,120,71455 ,1,121,65 ,1,122,65 ,1,123,71445 ,1,124,71435 ,1,125,71375 ,1,126,71355 ,1,127,65 ,1,128,65 ,1,129,70975 ,2,14956,249015 ,2,14957,45 ,2,14958,84275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84265 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,84255 ,2,14969,576945 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70985 ,2,14956,249065 ,2,14957,45 ,2,14958,84295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84285 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,576970 ,2,14970,75 ,2,14971,328330 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,373345 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,373335 ,1,7,373325 ,1,8,373300 ,1,9,373290 ,1,10,65 ,1,11,373285 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,2,14956,249075 ,2,14957,45 ,2,14958,84360 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84350 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,576975 ,2,14970,75 ,2,14971,328380 ,2,829,45 ,1,0,619270 ,1,1,615295 ,1,2,373185 ,1,3,373170 ,1,4,65 ,1,5,373165 ,1,6,65 ,1,7,373150 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,373145 ,1,12,65 ,1,13,65 ,1,14,373135 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,373125 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,373100 ,1,25,65 ,1,26,373090 ,1,27,65 ,1,28,373075 ,1,29,373065 ,1,30,373060 ,1,31,373240 ,1,32,373050 ,1,33,373040 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,373030 ,1,38,373000 ,1,39,372995 ,1,40,372985 ,1,41,372975 ,1,42,372955 ,1,43,65 ,1,44,372945 ,1,45,372935 ,1,46,372925 ,1,47,372890 ,1,48,372880 ,1,49,372865 ,1,50,372860 ,1,51,372840 ,1,52,65 ,1,53,372830 ,1,54,372820 ,1,55,373195 ,1,56,65 ,1,57,372810 ,1,58,65 ,1,59,372780 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,372775 ,1,64,65 ,1,65,65 ,1,66,65 ,1,67,65 ,1,68,65 ,1,69,372765 ,1,70,65 ,1,71,65 ,1,72,65 ,1,73,372755 ,1,74,372740 ,1,75,65 ,1,76,372725 ,1,77,372715 ,1,78,372705 ,1,79,372675 ,1,80,65 ,1,81,65 ,1,82,65 ,1,83,65 ,1,84,372665 ,1,85,372650 ,1,86,373230 ,1,87,65 ,1,88,372645 ,1,89,372635 ,1,90,65 ,1,91,65 ,1,92,372625 ,1,93,372615 ,1,94,372605 ,1,95,65 ,1,96,372565 ,1,97,65 ,1,98,65 ,1,99,372555 ,1,100,372220 ,1,101,372540 ,1,102,372530 ,1,103,65 ,1,104,372520 ,1,105,372505 ,1,106,372495 ,1,107,372490 ,1,108,372460 ,1,109,372455 ,1,110,372445 ,1,111,65 ,1,112,372435 ,1,113,372425 ,1,114,372410 ,1,115,372405 ,1,116,65 ,1,117,372390 ,1,118,372355 ,1,119,372345 ,1,120,372335 ,1,121,372320 ,1,122,372305 ,1,123,65 ,1,124,372295 ,1,125,372290 ,1,126,372280 ,1,127,372250 ,1,128,372240 ,1,129,372230 ,2,14956,249145 ,2,14957,45 ,2,14958,84380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84370 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,576990 ,2,14967,45 ,2,14968,75 ,2,14969,576980 ,2,14970,75 ,2,14971,328390 ,2,829,45 ,2,14956,249155 ,2,14957,45 ,2,14958,84425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84415 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,84405 ,2,14969,576995 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,71245 ,1,7,71235 ,1,8,71225 ,1,9,71215 ,1,10,71190 ,1,11,71180 ,1,12,71170 ,1,13,71160 ,1,14,65 ,1,15,71150 ,1,16,71085 ,1,17,71075 ,1,18,65 ,1,19,71065 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,71055 ,1,28,71045 ,1,29,65 ,1,30,71025 ,1,31,71015 ,1,32,65 ,1,33,70995 ,2,14956,249165 ,2,14957,45 ,2,14958,84465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84455 ,2,14963,269355 ,2,14964,276695 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,577000 ,2,14970,75 ,2,14971,328450 ,2,829,45 ,1,0,71245 ,1,1,70985 ,2,14956,249235 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84520 ,2,14963,269380 ,2,14964,276705 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577035 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71245 ,1,1,70985 ,1,2,71035 ,1,3,59500 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269380 ,2,14964,276705 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71225 ,2,14956,249325 ,2,14957,45 ,2,14958,84605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84595 ,2,14963,269390 ,2,14964,276715 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577040 ,2,14970,75 ,2,14971,328580 ,2,829,45 ,1,0,179455 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269390 ,2,14964,276715 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,179475 ,1,1,45 ,2,14956,250115 ,2,14957,45 ,2,14958,85205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85195 ,2,14963,269430 ,2,14964,276750 ,2,14965,45 ,2,14966,577060 ,2,14967,45 ,2,14968,75 ,2,14969,577055 ,2,14970,75 ,2,14971,328790 ,2,829,45 ,1,0,71140 ,2,14956,249655 ,2,14957,45 ,2,14958,84790 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84780 ,2,14963,269400 ,2,14964,276725 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,84690 ,2,14969,577065 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71245 ,1,1,70985 ,1,2,71140 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269400 ,2,14964,276725 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71245 ,1,1,70985 ,1,2,73920 ,2,14956,249580 ,2,14957,45 ,2,14958,84770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84750 ,2,14963,269400 ,2,14964,276725 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,577080 ,2,14970,75 ,2,14971,328800 ,2,829,45 ,1,0,71035 ,1,1,59500 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269430 ,2,14964,276750 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71235 ,1,1,71015 ,1,2,71225 ,1,3,71245 ,1,4,71025 ,1,5,71055 ,1,6,71075 ,1,7,71170 ,1,8,71045 ,1,9,71160 ,1,10,71190 ,1,11,71180 ,1,12,70995 ,1,13,71085 ,1,14,71065 ,1,15,71150 ,1,16,71215 ,2,14956,249665 ,2,14957,45 ,2,14958,84840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84830 ,2,14963,269430 ,2,14964,276750 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,577085 ,2,14970,75 ,2,14971,328810 ,2,829,45 ,1,0,559535 ,2,14956,250040 ,2,14957,45 ,2,14958,84880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84870 ,2,14963,269430 ,2,14964,276750 ,2,14965,45 ,2,14966,577110 ,2,14967,45 ,2,14968,75 ,2,14969,577105 ,2,14970,75 ,2,14971,328860 ,2,829,45 ,2,14956,249995 ,2,14957,45 ,2,14958,85095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85085 ,2,14963,269420 ,2,14964,276760 ,2,14965,45 ,2,14966,577195 ,2,14967,45 ,2,14968,75 ,2,14969,577115 ,2,14970,75 ,2,14971,328890 ,2,829,45 ,1,0,266260 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,84915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269420 ,2,14964,276760 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,17095 ,1,2,17075 ,1,3,614705 ,2,14956,249705 ,2,14957,45 ,2,14958,84945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84935 ,2,14963,269410 ,2,14964,280665 ,2,14965,550395 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,577120 ,2,14970,75 ,2,14971,328915 ,2,829,45 ,2,14956,249785 ,2,14957,45 ,2,14958,85000 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,84990 ,2,14963,269420 ,2,14964,276760 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,84980 ,2,14969,577155 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70985 ,1,1,71345 ,1,2,71335 ,1,3,71325 ,1,4,71315 ,1,5,71285 ,1,6,71275 ,1,7,71265 ,1,8,71255 ,2,14956,249875 ,2,14957,45 ,2,14958,85020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85010 ,2,14963,269420 ,2,14964,276760 ,2,14965,45 ,2,14966,577165 ,2,14967,45 ,2,14968,75 ,2,14969,577160 ,2,14970,75 ,2,14971,328935 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,179750 ,2,14956,249885 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85075 ,2,14963,269420 ,2,14964,276760 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,85040 ,2,14969,577185 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71065 ,2,14956,250085 ,2,14957,45 ,2,14958,85150 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85140 ,2,14963,269430 ,2,14964,276750 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,85130 ,2,14969,577230 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,179815 ,1,1,179760 ,1,2,179750 ,2,14956,8220 ,2,14957,45 ,2,14958,85340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269440 ,2,14964,276770 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,1,15,6400 ,1,16,6400 ,1,17,6400 ,1,18,6400 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269450 ,2,14964,276780 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,2,14956,250435 ,2,14957,45 ,2,14958,85470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85460 ,2,14963,269450 ,2,14964,276780 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,85450 ,2,14969,577235 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,261165 ,2,14957,45 ,2,14958,91780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91770 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,569810 ,2,14967,45 ,2,14968,75 ,2,14969,577245 ,2,14970,75 ,2,14971,329630 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,91355 ,2,14959,45 ,2,14960,85695 ,2,14961,45 ,2,14962,75 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,599970 ,1,3,561430 ,2,14956,260700 ,2,14957,45 ,2,14958,85715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85705 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,578995 ,2,14967,45 ,2,14968,75 ,2,14969,577250 ,2,14970,75 ,2,14971,329650 ,2,829,45 ,1,0,100 ,1,1,600015 ,1,2,600015 ,1,3,561435 ,2,14956,260605 ,2,14957,45 ,2,14958,91335 ,2,14959,88865 ,2,14960,75 ,2,14961,45 ,2,14962,88830 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,577305 ,2,14967,45 ,2,14968,75 ,2,14969,577255 ,2,14970,75 ,2,14971,329675 ,2,829,45 ,1,0,73770 ,1,1,57710 ,2,14956,251545 ,2,14957,45 ,2,14958,85760 ,2,14959,45 ,2,14960,85750 ,2,14961,45 ,2,14962,85725 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,577290 ,2,14970,75 ,2,14971,329685 ,2,829,45 ,1,0,100 ,1,1,561435 ,2,14956,251740 ,2,14957,45 ,2,14958,85900 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85890 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,577315 ,2,14967,45 ,2,14968,75 ,2,14969,577310 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71660 ,2,14956,251730 ,2,14957,45 ,2,14958,85880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85840 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,577330 ,2,14967,45 ,2,14968,75 ,2,14969,577320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,251555 ,2,14957,45 ,2,14958,85820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85810 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,577340 ,2,14967,45 ,2,14968,75 ,2,14969,577335 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71660 ,2,14956,251600 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85870 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57470 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,2,14956,251750 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,85985 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,85945 ,2,14969,577365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,2,14956,252980 ,2,14957,45 ,2,14958,86835 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86825 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,577630 ,2,14967,45 ,2,14968,75 ,2,14969,577410 ,2,14970,75 ,2,14971,329800 ,2,829,45 ,1,0,180195 ,1,1,45 ,2,14956,252865 ,2,14957,45 ,2,14958,86765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86755 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,85995 ,2,14969,577420 ,2,14970,75 ,2,14971,329835 ,2,829,45 ,1,0,559095 ,1,1,559170 ,2,14956,251885 ,2,14957,45 ,2,14958,86055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86045 ,2,14963,269490 ,2,14964,276825 ,2,14965,45 ,2,14966,562040 ,2,14967,45 ,2,14968,86005 ,2,14969,577425 ,2,14970,75 ,2,14971,329845 ,2,829,45 ,1,0,71790 ,1,1,71800 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269490 ,2,14964,276825 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72895 ,1,1,71810 ,2,14956,8220 ,2,14957,45 ,2,14958,86155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,71895 ,1,3,166650 ,1,4,45 ,1,5,71875 ,1,6,176795 ,1,7,45 ,1,8,71855 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,251895 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86165 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577435 ,2,14970,75 ,2,14971,329875 ,2,829,45 ,1,0,71865 ,2,14956,251970 ,2,14957,45 ,2,14958,86200 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86185 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,86175 ,2,14969,577455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71885 ,2,14956,252185 ,2,14957,45 ,2,14958,86230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86220 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,86210 ,2,14969,577465 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71905 ,2,14956,252515 ,2,14957,45 ,2,14958,86270 ,2,14959,45 ,2,14960,86260 ,2,14961,45 ,2,14962,86250 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577475 ,2,14970,75 ,2,14971,329905 ,2,829,45 ,1,0,616545 ,1,1,615295 ,1,2,373740 ,1,3,373730 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,373705 ,1,9,65 ,1,10,373695 ,1,11,65 ,1,12,65 ,1,13,373685 ,1,14,373675 ,1,15,373665 ,1,16,373660 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,373650 ,1,21,65 ,1,22,373640 ,1,23,373595 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,373585 ,1,31,65 ,1,32,373580 ,1,33,373565 ,2,14956,252535 ,2,14957,45 ,2,14958,86350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86340 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,86330 ,2,14969,577540 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,252545 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86360 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577545 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71925 ,1,1,71915 ,2,14956,252585 ,2,14957,45 ,2,14958,86425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86415 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,86405 ,2,14969,577550 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,252605 ,2,14957,45 ,2,14958,86455 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86445 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,86435 ,2,14969,577555 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,72885 ,1,4,65 ,1,5,65 ,1,6,72895 ,1,7,71865 ,1,8,65 ,1,9,72875 ,1,10,71905 ,1,11,72855 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,72845 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,72835 ,1,20,65 ,1,21,65 ,1,22,71810 ,1,23,65 ,1,24,65 ,1,25,72825 ,1,26,71885 ,1,27,72810 ,1,28,72800 ,1,29,72790 ,1,30,71955 ,1,31,65 ,1,32,71945 ,1,33,65 ,2,14956,252715 ,2,14957,45 ,2,14958,86615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86605 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577605 ,2,14970,86465 ,2,14971,330170 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,373505 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,373495 ,1,8,373485 ,1,9,65 ,2,14956,252695 ,2,14957,45 ,2,14958,86595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86570 ,2,14963,269500 ,2,14964,276845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577560 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269500 ,2,14964,276845 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,619445 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,72780 ,1,9,72740 ,1,10,65 ,1,11,72730 ,1,12,65 ,1,13,72720 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,72710 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,72700 ,1,24,72435 ,1,25,65 ,1,26,72425 ,1,27,72415 ,1,28,72405 ,1,29,72395 ,1,30,72385 ,1,31,65 ,1,32,72375 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,72330 ,1,42,72320 ,1,43,72310 ,1,44,72300 ,1,45,72285 ,1,46,72080 ,1,47,72070 ,1,48,72060 ,1,49,72050 ,1,50,72040 ,1,51,72005 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,71995 ,1,58,71985 ,1,59,71975 ,1,60,71965 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,252625 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86540 ,2,14963,269500 ,2,14964,276845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577565 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,561460 ,2,14956,252635 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86550 ,2,14963,269500 ,2,14964,276845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577570 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72330 ,2,14956,252645 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86560 ,2,14963,269500 ,2,14964,276845 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577595 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72265 ,1,1,72090 ,2,14956,252730 ,2,14957,45 ,2,14958,86665 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86655 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,86645 ,2,14969,577610 ,2,14970,86625 ,2,14971,45 ,2,829,45 ,1,0,72255 ,1,1,72210 ,1,2,72200 ,1,3,72190 ,1,4,72180 ,1,5,72090 ,1,6,72265 ,1,7,72170 ,1,8,72160 ,1,9,72150 ,1,10,72140 ,1,11,72110 ,1,12,72100 ,2,14956,252740 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86675 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577620 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,180440 ,1,1,45 ,2,14956,252810 ,2,14957,45 ,2,14958,86730 ,2,14959,45 ,2,14960,86720 ,2,14961,45 ,2,14962,86710 ,2,14963,269510 ,2,14964,276835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577490 ,2,14970,75 ,2,14971,330005 ,2,829,45 ,1,0,180460 ,1,1,45 ,2,14956,253090 ,2,14957,45 ,2,14958,86960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86950 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,577660 ,2,14967,45 ,2,14968,75 ,2,14969,577655 ,2,14970,75 ,2,14971,330410 ,2,829,45 ,1,0,180490 ,1,1,45 ,2,14956,253035 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86940 ,2,14963,269525 ,2,14964,276855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577665 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,180510 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269525 ,2,14964,276855 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,180530 ,1,1,45 ,2,14956,256240 ,2,14957,45 ,2,14958,86980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,86970 ,2,14963,269660 ,2,14964,276815 ,2,14965,45 ,2,14966,568450 ,2,14967,45 ,2,14968,75 ,2,14969,577670 ,2,14970,75 ,2,14971,330470 ,2,829,45 ,1,0,72265 ,2,14956,256225 ,2,14957,45 ,2,14958,88820 ,2,14959,87430 ,2,14960,87215 ,2,14961,45 ,2,14962,87205 ,2,14963,269545 ,2,14964,276875 ,2,14965,45 ,2,14966,577700 ,2,14967,45 ,2,14968,75 ,2,14969,577695 ,2,14970,75 ,2,14971,330480 ,2,829,45 ,1,0,100 ,1,1,608290 ,1,2,608290 ,2,14956,253145 ,2,14957,45 ,2,14958,87050 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87040 ,2,14963,269535 ,2,14964,276865 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,577705 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72070 ,1,1,72330 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269535 ,2,14964,276865 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72090 ,2,14956,8220 ,2,14957,45 ,2,14958,87105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269545 ,2,14964,276875 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72090 ,1,1,72265 ,2,14956,253265 ,2,14957,45 ,2,14958,87175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87165 ,2,14963,269545 ,2,14964,276875 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,87155 ,2,14969,577730 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,72510 ,1,3,166650 ,1,4,45 ,1,5,72490 ,1,6,176795 ,1,7,45 ,1,8,72445 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,253275 ,2,14957,45 ,2,14958,87195 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87185 ,2,14963,269545 ,2,14964,276875 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577735 ,2,14970,75 ,2,14971,330540 ,2,829,45 ,1,0,72480 ,2,14956,253510 ,2,14957,45 ,2,14958,87390 ,2,14959,45 ,2,14960,87380 ,2,14961,45 ,2,14962,87370 ,2,14963,269555 ,2,14964,276900 ,2,14965,45 ,2,14966,577765 ,2,14967,45 ,2,14968,87270 ,2,14969,577760 ,2,14970,75 ,2,14971,330590 ,2,829,45 ,1,0,72500 ,2,14956,253370 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87280 ,2,14963,269555 ,2,14964,276900 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,577770 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72520 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269555 ,2,14964,276900 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,373555 ,1,4,65 ,1,5,373545 ,1,6,373540 ,1,7,65 ,1,8,65 ,1,9,373530 ,2,14956,253380 ,2,14957,45 ,2,14958,87360 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87335 ,2,14963,269555 ,2,14964,276900 ,2,14965,45 ,2,14966,577765 ,2,14967,45 ,2,14968,87325 ,2,14969,577775 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,255275 ,2,14957,45 ,2,14958,88070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88060 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,577830 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,72690 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,72480 ,1,8,72680 ,1,9,72670 ,1,10,72520 ,1,11,72650 ,1,12,72640 ,1,13,72630 ,1,14,65 ,1,15,72620 ,1,16,72610 ,1,17,65 ,1,18,65 ,1,19,72600 ,1,20,72590 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,72580 ,1,25,72500 ,1,26,72540 ,1,27,65 ,1,28,65 ,1,29,72530 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71535 ,2,14956,254345 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87875 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,577825 ,2,14967,45 ,2,14968,75 ,2,14969,577835 ,2,14970,75 ,2,14971,331635 ,2,829,45 ,1,0,72630 ,1,1,72520 ,1,2,72500 ,1,3,72480 ,1,4,72690 ,1,5,72530 ,1,6,72580 ,1,7,72670 ,1,8,72680 ,1,9,72610 ,1,10,72540 ,1,11,72650 ,1,12,72600 ,1,13,72620 ,1,14,72640 ,1,15,72590 ,2,14956,254355 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87885 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,577825 ,2,14967,45 ,2,14968,75 ,2,14969,577840 ,2,14970,75 ,2,14971,331645 ,2,829,45 ,1,0,72070 ,1,1,72330 ,1,2,72090 ,2,14956,254455 ,2,14957,45 ,2,14958,87935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87925 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,87915 ,2,14969,577865 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72425 ,1,1,72780 ,1,2,71965 ,1,3,72700 ,1,4,72320 ,1,5,72070 ,1,6,72330 ,1,7,72435 ,1,8,72285 ,1,9,72385 ,1,10,72395 ,1,11,72375 ,1,12,72050 ,1,13,72080 ,1,14,72405 ,1,15,72720 ,1,16,72740 ,1,17,71985 ,1,18,72060 ,1,19,72310 ,1,20,71995 ,1,21,71975 ,1,22,72415 ,1,23,72730 ,1,24,72710 ,1,25,72040 ,1,26,72300 ,1,27,72005 ,2,14956,254475 ,2,14957,45 ,2,14958,87960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87945 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577870 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,72895 ,1,1,71810 ,1,2,72810 ,1,3,72825 ,1,4,72800 ,1,5,72790 ,1,6,71945 ,1,7,71905 ,1,8,71885 ,1,9,71865 ,1,10,72885 ,1,11,71955 ,1,12,72855 ,1,13,72835 ,1,14,72845 ,1,15,72875 ,2,14956,254585 ,2,14957,45 ,2,14958,87990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,87980 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,87970 ,2,14969,577900 ,2,14970,75 ,2,14971,331695 ,2,829,45 ,2,14956,254640 ,2,14957,45 ,2,14958,88050 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88040 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,88030 ,2,14969,577905 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,254870 ,2,14957,45 ,2,14958,88155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88145 ,2,14963,269600 ,2,14964,276920 ,2,14965,45 ,2,14966,577945 ,2,14967,45 ,2,14968,75 ,2,14969,577940 ,2,14970,75 ,2,14971,331840 ,2,829,45 ,1,0,72925 ,1,1,72915 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269600 ,2,14964,276920 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,1,15,6400 ,1,16,6400 ,1,17,6400 ,1,18,6400 ,1,19,6400 ,1,20,6400 ,1,21,6400 ,1,22,6400 ,1,23,6400 ,1,24,6400 ,1,25,6400 ,1,26,6400 ,1,27,6400 ,1,28,6400 ,2,14956,254905 ,2,14957,45 ,2,14958,88230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88205 ,2,14963,269610 ,2,14964,276930 ,2,14965,45 ,2,14966,577945 ,2,14967,45 ,2,14968,75 ,2,14969,577950 ,2,14970,75 ,2,14971,331870 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269610 ,2,14964,276930 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57710 ,1,1,62770 ,1,2,62760 ,1,3,72925 ,2,14956,255080 ,2,14957,45 ,2,14958,88385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88370 ,2,14963,269620 ,2,14964,276940 ,2,14965,45 ,2,14966,577945 ,2,14967,45 ,2,14968,75 ,2,14969,577955 ,2,14970,75 ,2,14971,331885 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269620 ,2,14964,276940 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,73020 ,1,1,73005 ,1,2,72995 ,1,3,72985 ,1,4,72975 ,1,5,72945 ,2,14956,254990 ,2,14957,45 ,2,14958,88280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88270 ,2,14963,269620 ,2,14964,276940 ,2,14965,45 ,2,14966,577965 ,2,14967,45 ,2,14968,75 ,2,14969,577960 ,2,14970,75 ,2,14971,331895 ,2,829,45 ,1,0,67820 ,2,14956,255010 ,2,14957,45 ,2,14958,88350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88340 ,2,14963,269620 ,2,14964,276940 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577970 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67880 ,2,14956,255050 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88360 ,2,14963,269620 ,2,14964,276940 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,577990 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57795 ,1,1,73770 ,2,14956,255150 ,2,14957,45 ,2,14958,88445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88435 ,2,14963,269630 ,2,14964,276950 ,2,14965,45 ,2,14966,577945 ,2,14967,45 ,2,14968,75 ,2,14969,577995 ,2,14970,75 ,2,14971,331970 ,2,829,45 ,1,0,100 ,1,1,561570 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269630 ,2,14964,276950 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62795 ,1,1,73050 ,1,2,62685 ,2,14956,255190 ,2,14957,45 ,2,14958,88505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88495 ,2,14963,269640 ,2,14964,276960 ,2,14965,45 ,2,14966,577945 ,2,14967,45 ,2,14968,75 ,2,14969,578000 ,2,14970,75 ,2,14971,332015 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269640 ,2,14964,276960 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,73315 ,1,3,65 ,1,4,73305 ,1,5,65 ,1,6,73250 ,1,7,65 ,1,8,73240 ,1,9,73050 ,1,10,73230 ,1,11,65 ,1,12,73220 ,1,13,73205 ,1,14,73195 ,1,15,73185 ,1,16,73175 ,1,17,73145 ,1,18,65 ,1,19,73135 ,1,20,65 ,1,21,65 ,1,22,73125 ,1,23,73115 ,1,24,65 ,1,25,65 ,1,26,73105 ,1,27,73095 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,73085 ,1,33,73075 ,2,14956,255255 ,2,14957,45 ,2,14958,88580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88570 ,2,14963,269650 ,2,14964,276970 ,2,14965,45 ,2,14966,577945 ,2,14967,45 ,2,14968,75 ,2,14969,578005 ,2,14970,75 ,2,14971,332035 ,2,829,45 ,1,0,181110 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269650 ,2,14964,276970 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181145 ,1,1,45 ,2,14956,255475 ,2,14957,45 ,2,14958,88645 ,2,14959,45 ,2,14960,88600 ,2,14961,45 ,2,14962,88590 ,2,14963,269590 ,2,14964,276910 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578025 ,2,14970,75 ,2,14971,332090 ,2,829,45 ,1,0,181165 ,1,1,45 ,2,14956,259930 ,2,14957,45 ,2,14958,91100 ,2,14959,90985 ,2,14960,75 ,2,14961,45 ,2,14962,90975 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578085 ,2,14970,75 ,2,14971,335725 ,2,829,45 ,1,0,181185 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58085 ,2,14956,256340 ,2,14957,45 ,2,14958,88980 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88970 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,88960 ,2,14969,578090 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181245 ,1,1,45 ,2,14956,256350 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,88990 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578110 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181255 ,1,1,45 ,2,14956,256360 ,2,14957,45 ,2,14958,89010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89000 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,569270 ,2,14967,45 ,2,14968,75 ,2,14969,578115 ,2,14970,75 ,2,14971,332795 ,2,829,45 ,1,0,181275 ,1,1,45 ,2,14956,256410 ,2,14957,45 ,2,14958,89060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89020 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,578140 ,2,14967,45 ,2,14968,75 ,2,14969,578120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181300 ,1,1,45 ,2,14956,256750 ,2,14957,45 ,2,14958,89200 ,2,14959,89080 ,2,14960,75 ,2,14961,45 ,2,14962,89070 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,578155 ,2,14967,45 ,2,14968,75 ,2,14969,578145 ,2,14970,75 ,2,14971,332865 ,2,829,45 ,1,0,181320 ,1,1,45 ,2,14956,256935 ,2,14957,45 ,2,14958,89220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89210 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578230 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181360 ,1,1,45 ,2,14956,256835 ,2,14957,45 ,2,14958,89305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89295 ,2,14963,269680 ,2,14964,277000 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578235 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181380 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269680 ,2,14964,277000 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181405 ,1,1,45 ,2,14956,256795 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89285 ,2,14963,269680 ,2,14964,277000 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578240 ,2,14970,75 ,2,14971,333350 ,2,829,45 ,1,0,181425 ,1,1,45 ,2,14956,256975 ,2,14957,45 ,2,14958,89345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89335 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,89325 ,2,14969,578270 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181470 ,1,1,45 ,2,14956,259420 ,2,14957,45 ,2,14958,90580 ,2,14959,89385 ,2,14960,75 ,2,14961,45 ,2,14962,89375 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181490 ,1,1,45 ,2,14956,259275 ,2,14957,45 ,2,14958,90550 ,2,14959,89590 ,2,14960,75 ,2,14961,45 ,2,14962,89565 ,2,14963,269690 ,2,14964,277010 ,2,14965,45 ,2,14966,578315 ,2,14967,45 ,2,14968,75 ,2,14969,578285 ,2,14970,75 ,2,14971,333630 ,2,829,45 ,1,0,73075 ,1,1,73250 ,1,2,73050 ,1,3,73135 ,1,4,73230 ,1,5,73175 ,1,6,73185 ,1,7,73115 ,1,8,73240 ,1,9,73105 ,1,10,73315 ,1,11,73205 ,1,12,73195 ,1,13,73085 ,1,14,73305 ,1,15,73095 ,1,16,73220 ,1,17,73145 ,1,18,73125 ,2,14956,257140 ,2,14957,45 ,2,14958,89440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89430 ,2,14963,269690 ,2,14964,277010 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,578295 ,2,14970,75 ,2,14971,333645 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269690 ,2,14964,277010 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,2,14956,257255 ,2,14957,45 ,2,14958,89520 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89510 ,2,14963,269690 ,2,14964,277010 ,2,14965,45 ,2,14966,578325 ,2,14967,45 ,2,14968,75 ,2,14969,578320 ,2,14970,75 ,2,14971,333665 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370685 ,2,14956,259195 ,2,14957,45 ,2,14958,90520 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90485 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578345 ,2,14970,75 ,2,14971,334075 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,73405 ,1,1,73375 ,1,2,73365 ,1,3,73355 ,1,4,73345 ,1,5,73335 ,2,14956,257400 ,2,14957,45 ,2,14958,89710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89700 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578350 ,2,14970,75 ,2,14971,334085 ,2,829,45 ,1,0,73770 ,1,1,73345 ,2,14956,257440 ,2,14957,45 ,2,14958,89740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89730 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,89720 ,2,14969,578385 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599970 ,2,14956,257785 ,2,14957,45 ,2,14958,89825 ,2,14959,89760 ,2,14960,75 ,2,14961,45 ,2,14962,89750 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,578390 ,2,14970,75 ,2,14971,334095 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370705 ,2,14956,257800 ,2,14957,45 ,2,14958,89845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89835 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,578405 ,2,14970,75 ,2,14971,334610 ,2,829,45 ,2,14956,257810 ,2,14957,45 ,2,14958,89865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89855 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,578420 ,2,14970,75 ,2,14971,334620 ,2,829,45 ,1,0,73435 ,2,14956,258210 ,2,14957,45 ,2,14958,90110 ,2,14959,89895 ,2,14960,75 ,2,14961,45 ,2,14962,89885 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578480 ,2,14967,45 ,2,14968,75 ,2,14969,578470 ,2,14970,75 ,2,14971,334640 ,2,829,45 ,1,0,73770 ,1,1,72265 ,2,14956,258105 ,2,14957,45 ,2,14958,90040 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90030 ,2,14963,269700 ,2,14964,277035 ,2,14965,45 ,2,14966,578530 ,2,14967,45 ,2,14968,89915 ,2,14969,578485 ,2,14970,75 ,2,14971,334835 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,1,15,6400 ,1,16,6400 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269700 ,2,14964,277035 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599940 ,1,2,599940 ,1,3,599940 ,1,4,599940 ,1,5,599940 ,1,6,599940 ,1,7,599940 ,1,8,599940 ,1,9,599940 ,1,10,599940 ,1,11,599940 ,1,12,599940 ,1,13,599940 ,1,14,599940 ,1,15,599940 ,1,16,599940 ,2,14956,258040 ,2,14957,45 ,2,14958,90000 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,89990 ,2,14963,269700 ,2,14964,277035 ,2,14965,45 ,2,14966,578530 ,2,14967,45 ,2,14968,89960 ,2,14969,578490 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,1,15,6400 ,2,14956,258050 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90020 ,2,14963,269700 ,2,14964,277035 ,2,14965,45 ,2,14966,572770 ,2,14967,45 ,2,14968,75 ,2,14969,578520 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,2,14956,258220 ,2,14957,45 ,2,14958,90130 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90120 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578555 ,2,14967,45 ,2,14968,75 ,2,14969,578545 ,2,14970,75 ,2,14971,334910 ,2,829,45 ,1,0,100 ,1,1,561430 ,2,14956,258240 ,2,14957,45 ,2,14958,90155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90140 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578595 ,2,14967,45 ,2,14968,75 ,2,14969,578560 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599880 ,2,14956,258260 ,2,14957,45 ,2,14958,90175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90165 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,578605 ,2,14970,75 ,2,14971,334960 ,2,829,45 ,2,14956,258270 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90185 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,578625 ,2,14970,75 ,2,14971,334520 ,2,829,45 ,1,0,73710 ,1,1,73700 ,1,2,73670 ,1,3,73660 ,1,4,73650 ,1,5,73520 ,2,14956,258305 ,2,14957,45 ,2,14958,90215 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90205 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,578630 ,2,14970,75 ,2,14971,334970 ,2,829,45 ,1,0,100 ,1,1,561645 ,2,14956,258335 ,2,14957,45 ,2,14958,90235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90225 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,578640 ,2,14970,75 ,2,14971,334980 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,258345 ,2,14957,45 ,2,14958,90265 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90255 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578680 ,2,14967,45 ,2,14968,75 ,2,14969,578675 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,561650 ,2,14956,258355 ,2,14957,45 ,2,14958,90285 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90275 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578700 ,2,14967,45 ,2,14968,75 ,2,14969,578690 ,2,14970,75 ,2,14971,335040 ,2,829,45 ,2,14956,258365 ,2,14957,45 ,2,14958,90320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90310 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578710 ,2,14967,45 ,2,14968,75 ,2,14969,578705 ,2,14970,75 ,2,14971,335055 ,2,829,45 ,1,0,73640 ,1,1,73630 ,1,2,73620 ,1,3,73555 ,2,14956,258375 ,2,14957,45 ,2,14958,90350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90340 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,90330 ,2,14969,578715 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181675 ,1,1,45 ,2,14956,258445 ,2,14957,45 ,2,14958,90370 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90360 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,578735 ,2,14970,75 ,2,14971,335065 ,2,829,45 ,2,14956,258455 ,2,14957,45 ,2,14958,90425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90415 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,578750 ,2,14967,45 ,2,14968,75 ,2,14969,578745 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,73610 ,1,1,73600 ,1,2,73575 ,1,3,73565 ,2,14956,258485 ,2,14957,45 ,2,14958,90445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90435 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,574825 ,2,14967,45 ,2,14968,75 ,2,14969,578760 ,2,14970,75 ,2,14971,335140 ,2,829,45 ,1,0,181685 ,1,1,45 ,2,14956,258645 ,2,14957,45 ,2,14958,90475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90465 ,2,14963,269710 ,2,14964,277020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,90455 ,2,14969,578765 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181695 ,1,1,45 ,2,14956,259535 ,2,14957,45 ,2,14958,90610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90590 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,578820 ,2,14967,45 ,2,14968,75 ,2,14969,578810 ,2,14970,75 ,2,14971,335355 ,2,829,45 ,1,0,181745 ,1,1,45 ,2,14956,259575 ,2,14957,45 ,2,14958,90640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90630 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,578845 ,2,14970,75 ,2,14971,335305 ,2,829,45 ,1,0,181860 ,1,1,73530 ,2,14956,259595 ,2,14957,45 ,2,14958,90850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90840 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,578895 ,2,14967,45 ,2,14968,75 ,2,14969,578890 ,2,14970,75 ,2,14971,335530 ,2,829,45 ,1,0,73520 ,2,14956,259620 ,2,14957,45 ,2,14958,90870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90860 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,578900 ,2,14970,75 ,2,14971,335550 ,2,829,45 ,1,0,181900 ,1,1,45 ,2,14956,259650 ,2,14957,45 ,2,14958,90915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90890 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,90880 ,2,14969,578930 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,181920 ,1,1,45 ,2,14956,259695 ,2,14957,45 ,2,14958,90935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90925 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,578940 ,2,14967,45 ,2,14968,75 ,2,14969,578935 ,2,14970,75 ,2,14971,335590 ,2,829,45 ,1,0,181975 ,1,1,73730 ,2,14956,259705 ,2,14957,45 ,2,14958,90965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,90955 ,2,14963,269740 ,2,14964,276990 ,2,14965,45 ,2,14966,578955 ,2,14967,45 ,2,14968,75 ,2,14969,578950 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560975 ,2,14956,259780 ,2,14957,45 ,2,14958,91070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91055 ,2,14963,269750 ,2,14964,277045 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,578965 ,2,14970,75 ,2,14971,335620 ,2,829,45 ,1,0,182010 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269750 ,2,14964,277045 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,71435 ,1,1,73770 ,2,14956,260745 ,2,14957,45 ,2,14958,91385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91375 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,579000 ,2,14970,75 ,2,14971,336280 ,2,829,45 ,1,0,35360 ,1,1,35350 ,2,14956,260765 ,2,14957,45 ,2,14958,91405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91395 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,569205 ,2,14967,45 ,2,14968,75 ,2,14969,579020 ,2,14970,75 ,2,14971,336300 ,2,829,45 ,1,0,100 ,2,14956,260790 ,2,14957,45 ,2,14958,91445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91435 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,579030 ,2,14967,45 ,2,14968,75 ,2,14969,579025 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,260800 ,2,14957,45 ,2,14958,91465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91455 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579080 ,2,14970,75 ,2,14971,336320 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,561430 ,1,3,599970 ,2,14956,260810 ,2,14957,45 ,2,14958,91485 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91475 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,574825 ,2,14967,45 ,2,14968,75 ,2,14969,579090 ,2,14970,75 ,2,14971,336330 ,2,829,45 ,1,0,182120 ,1,1,45 ,2,14956,260845 ,2,14957,45 ,2,14958,91505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91495 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579095 ,2,14970,75 ,2,14971,336340 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,1,15,6400 ,1,16,6400 ,1,17,6400 ,1,18,6400 ,1,19,6400 ,2,14956,260865 ,2,14957,45 ,2,14958,91550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91540 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,579100 ,2,14970,91530 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,2,14956,260900 ,2,14957,45 ,2,14958,91575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91560 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,579120 ,2,14970,75 ,2,14971,336400 ,2,829,45 ,1,0,73770 ,1,1,67880 ,2,14956,261045 ,2,14957,45 ,2,14958,91595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91585 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,579145 ,2,14967,45 ,2,14968,75 ,2,14969,579135 ,2,14970,75 ,2,14971,336440 ,2,829,45 ,1,0,181965 ,1,1,45 ,2,14956,261010 ,2,14957,45 ,2,14958,91730 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91700 ,2,14963,269770 ,2,14964,277065 ,2,14965,45 ,2,14966,579155 ,2,14967,45 ,2,14968,75 ,2,14969,579150 ,2,14970,75 ,2,14971,336495 ,2,829,45 ,1,0,71435 ,1,1,73770 ,1,2,73875 ,1,3,71650 ,1,4,73425 ,1,5,77860 ,1,6,71375 ,1,7,71555 ,1,8,73845 ,1,9,73475 ,1,10,73945 ,1,11,71545 ,1,12,71455 ,1,13,73965 ,1,14,71585 ,1,15,73325 ,1,16,73740 ,1,17,73455 ,1,18,71480 ,1,19,73900 ,1,20,72935 ,1,21,73795 ,1,22,71500 ,1,23,73825 ,1,24,71690 ,1,25,71445 ,1,26,73815 ,1,27,72905 ,1,28,71680 ,1,29,71535 ,1,30,73920 ,1,31,71355 ,1,32,70935 ,1,33,71755 ,1,34,73720 ,1,35,71700 ,1,36,71605 ,1,37,71470 ,1,38,73510 ,1,39,73930 ,1,40,71735 ,1,41,71780 ,1,42,71670 ,1,43,73865 ,1,44,70975 ,1,45,71745 ,1,46,73040 ,2,14956,260970 ,2,14957,45 ,2,14958,91655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91645 ,2,14963,269760 ,2,14964,277055 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,579160 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,18275 ,1,1,73325 ,1,2,18265 ,1,3,71700 ,1,4,45 ,1,5,71755 ,1,6,73920 ,1,7,18255 ,1,8,18240 ,1,9,73845 ,1,10,18230 ,1,11,17160 ,1,12,18220 ,1,13,18210 ,1,14,17270 ,1,15,71650 ,1,16,18185 ,1,17,17250 ,1,18,71780 ,1,19,18175 ,1,20,71480 ,1,21,17315 ,1,22,18165 ,1,23,18155 ,1,24,18145 ,1,25,18135 ,1,26,18125 ,1,27,73475 ,1,28,18115 ,1,29,18285 ,1,30,73795 ,1,31,17260 ,1,32,71375 ,1,33,73815 ,1,34,45 ,1,35,18060 ,1,36,45 ,1,37,18050 ,1,38,45 ,1,39,45 ,1,40,18040 ,1,41,18030 ,1,42,73900 ,1,43,71470 ,1,44,18015 ,1,45,45 ,1,46,17185 ,1,47,16610 ,1,48,256040 ,1,49,17295 ,1,50,18005 ,1,51,17995 ,1,52,16505 ,1,53,17985 ,1,54,71545 ,1,55,45 ,1,56,45 ,1,57,73720 ,1,58,17950 ,1,59,77860 ,1,60,256050 ,1,61,45 ,1,62,17940 ,1,63,73770 ,1,64,17930 ,1,65,45 ,1,66,71455 ,1,67,73965 ,1,68,17920 ,1,69,71355 ,1,70,16485 ,1,71,17905 ,1,72,17895 ,1,73,17885 ,1,74,17875 ,1,75,45 ,1,76,45 ,1,77,45 ,1,78,17850 ,1,79,71535 ,1,80,73875 ,1,81,17840 ,1,82,70935 ,1,83,17830 ,1,84,17820 ,1,85,45 ,1,86,72935 ,1,87,17810 ,1,88,45 ,1,89,45 ,1,90,17350 ,1,91,17140 ,1,92,17800 ,1,93,71680 ,1,94,73040 ,1,95,17195 ,1,96,17790 ,1,97,45 ,1,98,17780 ,1,99,45 ,1,100,45 ,1,101,17720 ,1,102,17710 ,1,103,45 ,1,104,17360 ,1,105,16275 ,1,106,45 ,1,107,45 ,1,108,71670 ,1,109,45 ,1,110,45 ,1,111,45 ,1,112,17700 ,1,113,73865 ,1,114,17085 ,1,115,17690 ,1,116,17675 ,1,117,17215 ,1,118,73425 ,1,119,17665 ,1,120,71435 ,1,121,17655 ,1,122,17645 ,1,123,17625 ,1,124,17615 ,1,125,16495 ,1,126,73825 ,1,127,45 ,1,128,17605 ,1,129,71745 ,1,130,17595 ,1,131,17580 ,1,132,71585 ,1,133,17570 ,1,134,45 ,1,135,17560 ,1,136,70975 ,1,137,17550 ,1,138,71445 ,1,139,45 ,1,140,71735 ,1,141,45 ,1,142,45 ,1,143,17525 ,1,144,45 ,1,145,71690 ,1,146,17515 ,1,147,17505 ,1,148,45 ,1,149,45 ,1,150,71605 ,1,151,45 ,1,152,73740 ,1,153,71500 ,1,154,72905 ,1,155,17495 ,1,156,45 ,1,157,45 ,1,158,45 ,1,159,45 ,1,160,45 ,1,161,17305 ,1,162,17480 ,1,163,73510 ,1,164,45 ,1,165,17470 ,1,166,17460 ,1,167,17450 ,1,168,17420 ,1,169,17410 ,1,170,45 ,1,171,73945 ,1,172,45 ,1,173,45 ,1,174,45 ,1,175,71555 ,1,176,45 ,1,177,17400 ,1,178,45 ,1,179,73930 ,1,180,17390 ,1,181,73455 ,1,182,45 ,1,183,17380 ,1,184,17370 ,1,185,619710 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269760 ,2,14964,277055 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614025 ,1,1,615295 ,1,2,372085 ,1,3,65 ,1,4,372075 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,372055 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,372045 ,1,14,65 ,1,15,372035 ,1,16,372025 ,1,17,372015 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269770 ,2,14964,277065 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,261125 ,2,14957,45 ,2,14958,91750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91740 ,2,14963,269795 ,2,14964,276805 ,2,14965,45 ,2,14966,579195 ,2,14967,45 ,2,14968,75 ,2,14969,579190 ,2,14970,75 ,2,14971,336505 ,2,829,45 ,1,0,73975 ,2,14956,261450 ,2,14957,45 ,2,14958,91990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91975 ,2,14963,269805 ,2,14964,277100 ,2,14965,45 ,2,14966,569810 ,2,14967,45 ,2,14968,75 ,2,14969,579200 ,2,14970,75 ,2,14971,336635 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269805 ,2,14964,277100 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,74125 ,1,1,74115 ,1,2,74080 ,1,3,74070 ,1,4,74060 ,1,5,74050 ,1,6,74040 ,1,7,74030 ,1,8,74020 ,1,9,74010 ,2,14956,261175 ,2,14957,45 ,2,14958,91860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91850 ,2,14963,269805 ,2,14964,277100 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,579215 ,2,14970,75 ,2,14971,336645 ,2,829,45 ,1,0,182370 ,1,1,45 ,2,14956,261390 ,2,14957,45 ,2,14958,91900 ,2,14959,91880 ,2,14960,75 ,2,14961,45 ,2,14962,91870 ,2,14963,269805 ,2,14964,277100 ,2,14965,45 ,2,14966,579265 ,2,14967,45 ,2,14968,75 ,2,14969,579230 ,2,14970,75 ,2,14971,336680 ,2,829,45 ,1,0,182400 ,1,1,45 ,2,14956,261410 ,2,14957,45 ,2,14958,91945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91910 ,2,14963,269805 ,2,14964,277100 ,2,14965,45 ,2,14966,579280 ,2,14967,45 ,2,14968,75 ,2,14969,579275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,182455 ,1,1,45 ,2,14956,261420 ,2,14957,45 ,2,14958,91965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,91955 ,2,14963,269805 ,2,14964,277100 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,579290 ,2,14970,75 ,2,14971,336735 ,2,829,45 ,1,0,182475 ,1,1,45 ,2,14956,261555 ,2,14957,45 ,2,14958,92020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92010 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,579300 ,2,14967,45 ,2,14968,75 ,2,14969,579295 ,2,14970,75 ,2,14971,336915 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,2,14956,261575 ,2,14957,45 ,2,14958,92075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92065 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,569745 ,2,14967,45 ,2,14968,75 ,2,14969,579320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57795 ,1,1,74105 ,2,14956,261585 ,2,14957,45 ,2,14958,92095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92085 ,2,14963,269815 ,2,14964,275340 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,579325 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,182520 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,2,14956,261675 ,2,14957,45 ,2,14958,92240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92230 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,2,14956,261720 ,2,14957,45 ,2,14958,92310 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92300 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579335 ,2,14970,75 ,2,14971,337125 ,2,829,45 ,2,14956,262365 ,2,14957,45 ,2,14958,92380 ,2,14959,92350 ,2,14960,75 ,2,14961,45 ,2,14962,92340 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579350 ,2,14970,92320 ,2,14971,337165 ,2,829,45 ,1,0,74135 ,2,14956,262485 ,2,14957,45 ,2,14958,92400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92390 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579355 ,2,14970,75 ,2,14971,337635 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370950 ,1,3,65 ,2,14956,262505 ,2,14957,45 ,2,14958,92485 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92455 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579360 ,2,14970,75 ,2,14971,337815 ,2,829,45 ,2,14956,262540 ,2,14957,45 ,2,14958,92515 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92505 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,579390 ,2,14967,45 ,2,14968,75 ,2,14969,579365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,74275 ,1,1,74250 ,1,2,74240 ,1,3,74230 ,1,4,74220 ,1,5,74180 ,1,6,74170 ,1,7,74160 ,1,8,74150 ,2,14956,262550 ,2,14957,45 ,2,14958,92535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92525 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,575345 ,2,14967,45 ,2,14968,75 ,2,14969,579395 ,2,14970,75 ,2,14971,337825 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,371365 ,1,4,371355 ,1,5,65 ,2,14956,262590 ,2,14957,45 ,2,14958,92555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92545 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579400 ,2,14970,75 ,2,14971,337835 ,2,829,45 ,2,14956,262665 ,2,14957,45 ,2,14958,92615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92605 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579405 ,2,14970,75 ,2,14971,337855 ,2,829,45 ,1,0,74285 ,2,14956,262700 ,2,14957,45 ,2,14958,92680 ,2,14959,92655 ,2,14960,75 ,2,14961,45 ,2,14962,92645 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579420 ,2,14970,75 ,2,14971,337935 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,372185 ,1,3,372175 ,1,4,65 ,1,5,65 ,2,14956,262775 ,2,14957,45 ,2,14958,92710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92700 ,2,14963,269825 ,2,14964,277110 ,2,14965,550585 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579425 ,2,14970,92690 ,2,14971,338070 ,2,829,45 ,2,14956,262850 ,2,14957,45 ,2,14958,92745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92735 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579430 ,2,14970,75 ,2,14971,338090 ,2,829,45 ,1,0,74295 ,2,14956,262910 ,2,14957,45 ,2,14958,92795 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92785 ,2,14963,269825 ,2,14964,277110 ,2,14965,550635 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579435 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,262975 ,2,14957,45 ,2,14958,92855 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92845 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,579475 ,2,14967,45 ,2,14968,75 ,2,14969,579470 ,2,14970,75 ,2,14971,338255 ,2,829,45 ,1,0,74350 ,1,1,74340 ,1,2,74330 ,1,3,74305 ,2,14956,263020 ,2,14957,45 ,2,14958,92925 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92915 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,579500 ,2,14967,45 ,2,14968,75 ,2,14969,579495 ,2,14970,75 ,2,14971,338315 ,2,829,45 ,1,0,3010 ,1,1,182890 ,1,2,182880 ,1,3,182870 ,1,4,182835 ,1,5,182825 ,1,6,182815 ,1,7,182805 ,1,8,182790 ,1,9,182780 ,1,10,182770 ,1,11,182760 ,1,12,182745 ,2,14956,263120 ,2,14957,45 ,2,14958,92955 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,92945 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,579510 ,2,14967,45 ,2,14968,75 ,2,14969,579505 ,2,14970,75 ,2,14971,338390 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,2,14956,263190 ,2,14957,45 ,2,14958,93025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93015 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579540 ,2,14970,75 ,2,14971,338420 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,370900 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,370860 ,1,12,65 ,1,13,370850 ,1,14,370840 ,1,15,370830 ,1,16,370820 ,1,17,65 ,2,14956,263210 ,2,14957,45 ,2,14958,93075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93065 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579545 ,2,14970,75 ,2,14971,338590 ,2,829,45 ,2,14956,263220 ,2,14957,45 ,2,14958,93145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93135 ,2,14963,269825 ,2,14964,277110 ,2,14965,550650 ,2,14966,579550 ,2,14967,45 ,2,14968,75 ,2,14969,579485 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,74360 ,2,14956,263285 ,2,14957,45 ,2,14958,93165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93155 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579555 ,2,14970,75 ,2,14971,338650 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,370810 ,1,4,65 ,1,5,65 ,1,6,370800 ,1,7,65 ,1,8,370790 ,1,9,370755 ,2,14956,263325 ,2,14957,45 ,2,14958,93210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93195 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579565 ,2,14970,75 ,2,14971,338750 ,2,829,45 ,2,14956,263530 ,2,14957,45 ,2,14958,93240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93230 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579570 ,2,14970,75 ,2,14971,338815 ,2,829,45 ,1,0,74370 ,2,14956,263550 ,2,14957,45 ,2,14958,93280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93270 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,579600 ,2,14967,45 ,2,14968,75 ,2,14969,579575 ,2,14970,75 ,2,14971,338945 ,2,829,45 ,2,14956,263600 ,2,14957,45 ,2,14958,93345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93335 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,93325 ,2,14969,579605 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,263640 ,2,14957,45 ,2,14958,93370 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93360 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579610 ,2,14970,75 ,2,14971,338965 ,2,829,45 ,2,14956,263690 ,2,14957,45 ,2,14958,93425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93390 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579615 ,2,14970,75 ,2,14971,338985 ,2,829,45 ,1,0,74390 ,1,1,74380 ,1,2,74105 ,2,14956,263730 ,2,14957,45 ,2,14958,93445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93435 ,2,14963,269825 ,2,14964,277110 ,2,14965,45 ,2,14966,569715 ,2,14967,45 ,2,14968,75 ,2,14969,579620 ,2,14970,75 ,2,14971,339020 ,2,829,45 ,1,0,74390 ,2,14956,263825 ,2,14957,45 ,2,14958,93520 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93495 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579625 ,2,14970,75 ,2,14971,339050 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,370945 ,1,3,65 ,1,4,65 ,1,5,370930 ,2,14956,264050 ,2,14957,45 ,2,14958,93540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93530 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,579635 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,263970 ,2,14957,45 ,2,14958,93685 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93675 ,2,14963,269840 ,2,14964,277120 ,2,14965,45 ,2,14966,579710 ,2,14967,45 ,2,14968,75 ,2,14969,579680 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,74430 ,1,1,74420 ,1,2,74400 ,2,14956,263845 ,2,14957,45 ,2,14958,93625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93590 ,2,14963,269840 ,2,14964,277120 ,2,14965,45 ,2,14966,579690 ,2,14967,45 ,2,14968,75 ,2,14969,579685 ,2,14970,75 ,2,14971,339180 ,2,829,45 ,2,14956,263920 ,2,14957,45 ,2,14958,93645 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93635 ,2,14963,269840 ,2,14964,277120 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,579695 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,616130 ,1,1,615295 ,1,2,74925 ,1,3,74915 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,74875 ,1,8,65 ,1,9,74865 ,1,10,74855 ,1,11,74845 ,1,12,74835 ,1,13,65 ,1,14,74825 ,1,15,65 ,1,16,74815 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,74805 ,1,22,74785 ,1,23,74765 ,1,24,74755 ,1,25,74740 ,1,26,65 ,1,27,74730 ,1,28,65 ,1,29,74720 ,1,30,74710 ,1,31,74680 ,1,32,74670 ,1,33,74660 ,1,34,65 ,1,35,74650 ,1,36,65 ,1,37,74640 ,1,38,74630 ,1,39,74620 ,1,40,65 ,1,41,65 ,1,42,74610 ,1,43,74585 ,1,44,74565 ,1,45,74555 ,1,46,74545 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,74535 ,1,51,74525 ,1,52,74515 ,1,53,74495 ,1,54,74485 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,74475 ,1,63,74450 ,1,64,74440 ,1,65,65 ,2,14956,8220 ,2,14957,45 ,2,14958,93745 ,2,14959,45 ,2,14960,93735 ,2,14961,45 ,2,14962,75 ,2,14963,269840 ,2,14964,277120 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,183195 ,1,2,183165 ,2,14956,264060 ,2,14957,45 ,2,14958,93765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93755 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,579715 ,2,14970,75 ,2,14971,339190 ,2,829,45 ,1,0,3010 ,1,1,183245 ,1,2,183235 ,1,3,183165 ,2,14956,264070 ,2,14957,45 ,2,14958,93790 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93780 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579720 ,2,14970,75 ,2,14971,339200 ,2,829,45 ,1,0,183330 ,1,1,45 ,2,14956,264080 ,2,14957,45 ,2,14958,93810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93800 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,579745 ,2,14970,75 ,2,14971,339245 ,2,829,45 ,1,0,183375 ,1,1,45 ,2,14956,264125 ,2,14957,45 ,2,14958,93860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93850 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579755 ,2,14970,75 ,2,14971,339255 ,2,829,45 ,1,0,183450 ,1,1,45 ,2,14956,264145 ,2,14957,45 ,2,14958,93880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93870 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,579770 ,2,14967,45 ,2,14968,75 ,2,14969,579765 ,2,14970,75 ,2,14971,339265 ,2,829,45 ,1,0,183470 ,1,1,45 ,2,14956,264155 ,2,14957,45 ,2,14958,93910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93900 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,579775 ,2,14967,45 ,2,14968,75 ,2,14969,577240 ,2,14970,75 ,2,14971,329545 ,2,829,45 ,1,0,183490 ,1,1,45 ,2,14956,264165 ,2,14957,45 ,2,14958,93950 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93920 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579795 ,2,14970,75 ,2,14971,320735 ,2,829,45 ,1,0,183545 ,1,1,45 ,2,14956,264185 ,2,14957,45 ,2,14958,93970 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93960 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579805 ,2,14970,75 ,2,14971,339285 ,2,829,45 ,1,0,183565 ,1,1,45 ,2,14956,264195 ,2,14957,45 ,2,14958,93995 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,93980 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579815 ,2,14970,75 ,2,14971,339295 ,2,829,45 ,1,0,183585 ,1,1,45 ,2,14956,264225 ,2,14957,45 ,2,14958,94015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94005 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,579825 ,2,14970,75 ,2,14971,339305 ,2,829,45 ,1,0,3010 ,1,1,183605 ,1,2,183165 ,2,14956,264235 ,2,14957,45 ,2,14958,94060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94025 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,579865 ,2,14970,75 ,2,14971,339340 ,2,829,45 ,1,0,183650 ,1,1,45 ,2,14956,264245 ,2,14957,45 ,2,14958,94080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94070 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579870 ,2,14970,75 ,2,14971,339350 ,2,829,45 ,1,0,183680 ,1,1,45 ,2,14956,264255 ,2,14957,45 ,2,14958,94105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94090 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579880 ,2,14970,75 ,2,14971,327365 ,2,829,45 ,1,0,183690 ,1,1,45 ,2,14956,264265 ,2,14957,45 ,2,14958,94125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94115 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579890 ,2,14970,75 ,2,14971,339360 ,2,829,45 ,1,0,183745 ,1,1,45 ,2,14956,264295 ,2,14957,45 ,2,14958,94180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94135 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579930 ,2,14970,75 ,2,14971,339370 ,2,829,45 ,1,0,183775 ,1,1,45 ,2,14956,264325 ,2,14957,45 ,2,14958,94210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94200 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,579940 ,2,14970,75 ,2,14971,339395 ,2,829,45 ,1,0,183795 ,1,1,45 ,2,14956,264345 ,2,14957,45 ,2,14958,94230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94220 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,579510 ,2,14967,45 ,2,14968,75 ,2,14969,579955 ,2,14970,75 ,2,14971,339405 ,2,829,45 ,1,0,183860 ,1,1,45 ,2,14956,264365 ,2,14957,45 ,2,14958,94250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94240 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,579965 ,2,14967,45 ,2,14968,75 ,2,14969,579960 ,2,14970,75 ,2,14971,339440 ,2,829,45 ,1,0,183870 ,1,1,45 ,2,14956,264385 ,2,14957,45 ,2,14958,94300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94290 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580015 ,2,14970,75 ,2,14971,339460 ,2,829,45 ,1,0,183890 ,1,1,45 ,2,14956,264395 ,2,14957,45 ,2,14958,94320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94310 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580025 ,2,14970,75 ,2,14971,339470 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,2,14956,264425 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94330 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,580040 ,2,14967,45 ,2,14968,75 ,2,14969,580035 ,2,14970,75 ,2,14971,339490 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,2,14956,264435 ,2,14957,45 ,2,14958,94350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94340 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580045 ,2,14970,75 ,2,14971,339500 ,2,829,45 ,1,0,183920 ,1,1,45 ,2,14956,264455 ,2,14957,45 ,2,14958,94395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94385 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580065 ,2,14970,75 ,2,14971,339510 ,2,829,45 ,1,0,183940 ,1,1,45 ,2,14956,264465 ,2,14957,45 ,2,14958,94415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94405 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580075 ,2,14970,75 ,2,14971,339545 ,2,829,45 ,1,0,183965 ,1,1,45 ,2,14956,264485 ,2,14957,45 ,2,14958,94445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94435 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,94425 ,2,14969,580090 ,2,14970,75 ,2,14971,339555 ,2,829,45 ,1,0,183985 ,1,1,45 ,2,14956,264550 ,2,14957,45 ,2,14958,94490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94455 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,575395 ,2,14970,75 ,2,14971,325175 ,2,829,45 ,1,0,184015 ,1,1,45 ,2,14956,264570 ,2,14957,45 ,2,14958,94510 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94500 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,580135 ,2,14967,45 ,2,14968,75 ,2,14969,580105 ,2,14970,75 ,2,14971,339595 ,2,829,45 ,1,0,74565 ,1,1,74815 ,1,2,74855 ,1,3,74755 ,1,4,74865 ,1,5,74875 ,1,6,74720 ,1,7,74680 ,1,8,74805 ,1,9,74730 ,1,10,74515 ,1,11,74535 ,1,12,74475 ,1,13,74650 ,1,14,74670 ,1,15,74640 ,1,16,74440 ,1,17,74710 ,1,18,74555 ,1,19,74845 ,1,20,74495 ,1,21,74825 ,1,22,74450 ,1,23,74660 ,1,24,74915 ,1,25,74620 ,1,26,74545 ,1,27,74630 ,1,28,74525 ,1,29,74835 ,1,30,74740 ,1,31,74925 ,1,32,74485 ,1,33,74610 ,1,34,74765 ,1,35,74585 ,1,36,74785 ,2,14956,264580 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94520 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,579770 ,2,14967,45 ,2,14968,75 ,2,14969,580145 ,2,14970,75 ,2,14971,339605 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370910 ,2,14956,264590 ,2,14957,45 ,2,14958,94540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94530 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580150 ,2,14970,75 ,2,14971,333610 ,2,829,45 ,2,14956,264600 ,2,14957,45 ,2,14958,94560 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94550 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580160 ,2,14970,75 ,2,14971,339615 ,2,829,45 ,1,0,74935 ,2,14956,264615 ,2,14957,45 ,2,14958,94605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94595 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580170 ,2,14970,75 ,2,14971,339625 ,2,829,45 ,2,14956,264625 ,2,14957,45 ,2,14958,94625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94615 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,580200 ,2,14970,75 ,2,14971,339655 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,371605 ,1,3,371595 ,1,4,371580 ,1,5,65 ,1,6,371570 ,1,7,65 ,1,8,371560 ,1,9,371550 ,1,10,371510 ,1,11,65 ,1,12,371500 ,1,13,371490 ,1,14,371480 ,1,15,371460 ,1,16,371450 ,1,17,371440 ,1,18,371430 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,371390 ,1,25,371380 ,1,26,65 ,1,27,65 ,1,28,371370 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,264635 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94635 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,580215 ,2,14967,45 ,2,14968,75 ,2,14969,580205 ,2,14970,75 ,2,14971,325155 ,2,829,45 ,2,14956,264645 ,2,14957,45 ,2,14958,94655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94645 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580220 ,2,14970,75 ,2,14971,339665 ,2,829,45 ,1,0,74945 ,2,14956,264660 ,2,14957,45 ,2,14958,94700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94665 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,580230 ,2,14970,75 ,2,14971,339675 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373350 ,1,3,65 ,2,14956,264670 ,2,14957,45 ,2,14958,94720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94710 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580255 ,2,14970,75 ,2,14971,339685 ,2,829,45 ,2,14956,264725 ,2,14957,45 ,2,14958,94740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94730 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,580270 ,2,14967,45 ,2,14968,75 ,2,14969,580265 ,2,14970,75 ,2,14971,339700 ,2,829,45 ,2,14956,264735 ,2,14957,45 ,2,14958,94770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94760 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580285 ,2,14970,75 ,2,14971,339765 ,2,829,45 ,1,0,74965 ,1,1,74955 ,2,14956,264745 ,2,14957,45 ,2,14958,94805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94795 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580295 ,2,14970,75 ,2,14971,339775 ,2,829,45 ,1,0,184125 ,1,1,45 ,2,14956,264995 ,2,14957,45 ,2,14958,94825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94815 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580345 ,2,14970,75 ,2,14971,339785 ,2,829,45 ,2,14956,264985 ,2,14957,45 ,2,14958,95025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95015 ,2,14963,269860 ,2,14964,277140 ,2,14965,45 ,2,14966,580360 ,2,14967,45 ,2,14968,75 ,2,14969,580355 ,2,14970,75 ,2,14971,339795 ,2,829,45 ,1,0,256415 ,1,1,256405 ,1,2,256395 ,1,3,256365 ,2,14956,264900 ,2,14957,45 ,2,14958,94910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94900 ,2,14963,269860 ,2,14964,277140 ,2,14965,45 ,2,14966,580370 ,2,14967,45 ,2,14968,75 ,2,14969,580365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75025 ,1,1,75015 ,1,2,74985 ,1,3,74975 ,2,14956,264790 ,2,14957,45 ,2,14958,94890 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,94865 ,2,14963,269850 ,2,14964,277130 ,2,14965,45 ,2,14966,570750 ,2,14967,45 ,2,14968,75 ,2,14969,580375 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269850 ,2,14964,277130 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,371030 ,1,3,371020 ,1,4,65 ,1,5,65 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269860 ,2,14964,277140 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,265240 ,2,14957,45 ,2,14958,95045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95035 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568450 ,2,14967,45 ,2,14968,75 ,2,14969,580400 ,2,14970,75 ,2,14971,339925 ,2,829,45 ,1,0,75035 ,2,14956,265220 ,2,14957,45 ,2,14958,95135 ,2,14959,95125 ,2,14960,75 ,2,14961,45 ,2,14962,95085 ,2,14963,269870 ,2,14964,277150 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,580410 ,2,14970,75 ,2,14971,339935 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269870 ,2,14964,277150 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,265250 ,2,14957,45 ,2,14958,95155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95145 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580420 ,2,14970,75 ,2,14971,340225 ,2,829,45 ,2,14956,265260 ,2,14957,45 ,2,14958,95175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95165 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,580430 ,2,14970,75 ,2,14971,325020 ,2,829,45 ,1,0,75045 ,2,14956,265285 ,2,14957,45 ,2,14958,95195 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95185 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,580445 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,265295 ,2,14957,45 ,2,14958,95240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95230 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,580460 ,2,14967,45 ,2,14968,75 ,2,14969,580455 ,2,14970,75 ,2,14971,340245 ,2,829,45 ,1,0,75140 ,1,1,75130 ,1,2,75090 ,1,3,75080 ,1,4,75070 ,1,5,75060 ,2,14956,265480 ,2,14957,45 ,2,14958,95260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95250 ,2,14963,269900 ,2,14964,275185 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,580465 ,2,14970,75 ,2,14971,340255 ,2,829,45 ,1,0,184385 ,1,1,45 ,2,14956,265460 ,2,14957,45 ,2,14958,95445 ,2,14959,95405 ,2,14960,75 ,2,14961,45 ,2,14962,95395 ,2,14963,269890 ,2,14964,277160 ,2,14965,45 ,2,14966,580480 ,2,14967,45 ,2,14968,75 ,2,14969,580475 ,2,14970,75 ,2,14971,340290 ,2,829,45 ,1,0,184405 ,1,1,45 ,2,14956,265350 ,2,14957,45 ,2,14958,95350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95340 ,2,14963,269890 ,2,14964,277160 ,2,14965,45 ,2,14966,580530 ,2,14967,45 ,2,14968,75 ,2,14969,580525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,184430 ,1,1,45 ,2,14956,265330 ,2,14957,45 ,2,14958,95315 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95295 ,2,14963,269890 ,2,14964,277160 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,580535 ,2,14970,95285 ,2,14971,45 ,2,829,45 ,2,14956,265305 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95305 ,2,14963,269890 ,2,14964,277160 ,2,14965,45 ,2,14966,569270 ,2,14967,45 ,2,14968,75 ,2,14969,580550 ,2,14970,75 ,2,14971,340310 ,2,829,45 ,1,0,75170 ,1,1,75160 ,1,2,75150 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269890 ,2,14964,277160 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,184525 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,95505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269910 ,2,14964,277170 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,370670 ,1,4,370660 ,1,5,65 ,2,14956,8220 ,2,14957,45 ,2,14958,95620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269920 ,2,14964,277185 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,265775 ,2,14957,45 ,2,14958,95680 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95670 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,580580 ,2,14970,75 ,2,14971,340745 ,2,829,45 ,1,0,75180 ,2,14956,265805 ,2,14957,45 ,2,14958,95710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95700 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,580600 ,2,14967,45 ,2,14968,75 ,2,14969,580595 ,2,14970,75 ,2,14971,340795 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,95780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75235 ,1,1,75200 ,1,2,75190 ,2,14956,265955 ,2,14957,45 ,2,14958,95830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95820 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,580655 ,2,14970,75 ,2,14971,340900 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,371010 ,1,3,370970 ,1,4,65 ,1,5,65 ,2,14956,266055 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95900 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,568790 ,2,14967,45 ,2,14968,75 ,2,14969,580665 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,266065 ,2,14957,45 ,2,14958,95925 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95915 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,580670 ,2,14970,75 ,2,14971,340960 ,2,829,45 ,1,0,75245 ,2,14956,266085 ,2,14957,45 ,2,14958,95945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95935 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,580715 ,2,14967,45 ,2,14968,75 ,2,14969,580705 ,2,14970,75 ,2,14971,340980 ,2,829,45 ,2,14956,266125 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95985 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,580720 ,2,14970,75 ,2,14971,341005 ,2,829,45 ,1,0,75340 ,1,1,75305 ,1,2,75295 ,1,3,75285 ,1,4,75275 ,1,5,75265 ,1,6,75255 ,2,14956,266145 ,2,14957,45 ,2,14958,96005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,95995 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,580735 ,2,14967,45 ,2,14968,75 ,2,14969,580725 ,2,14970,75 ,2,14971,341015 ,2,829,45 ,2,14956,266170 ,2,14957,45 ,2,14958,96025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96015 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,580790 ,2,14967,45 ,2,14968,75 ,2,14969,580740 ,2,14970,75 ,2,14971,341050 ,2,829,45 ,1,0,256445 ,1,1,256435 ,2,14956,266190 ,2,14957,45 ,2,14958,96045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96035 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,580815 ,2,14967,45 ,2,14968,75 ,2,14969,580795 ,2,14970,75 ,2,14971,341070 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,75570 ,1,3,75560 ,1,4,75550 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,75540 ,1,10,75500 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,75490 ,1,16,75480 ,1,17,65 ,1,18,75460 ,1,19,65 ,1,20,75450 ,1,21,75440 ,1,22,65 ,1,23,75430 ,1,24,75410 ,1,25,75400 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,75390 ,1,30,75380 ,1,31,65 ,1,32,75370 ,1,33,65 ,2,14956,266245 ,2,14957,45 ,2,14958,96105 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96095 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,96055 ,2,14969,580820 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62685 ,2,14956,266255 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96115 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,580825 ,2,14970,75 ,2,14971,341090 ,2,829,45 ,1,0,62780 ,2,14956,266265 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96135 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,96125 ,2,14969,580830 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,62670 ,2,14956,266275 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96155 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,96145 ,2,14969,580840 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75130 ,1,1,75090 ,2,14956,266285 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96195 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,96165 ,2,14969,580845 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75550 ,1,1,62780 ,2,14956,266330 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96205 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,575135 ,2,14967,45 ,2,14968,75 ,2,14969,580850 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75400 ,1,1,62780 ,2,14956,266340 ,2,14957,45 ,2,14958,96225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96215 ,2,14963,269935 ,2,14964,277195 ,2,14965,45 ,2,14966,580860 ,2,14967,45 ,2,14968,75 ,2,14969,580855 ,2,14970,75 ,2,14971,341100 ,2,829,45 ,1,0,75400 ,1,1,75490 ,1,2,75390 ,1,3,75440 ,1,4,75450 ,1,5,75560 ,1,6,75480 ,1,7,75380 ,1,8,75430 ,1,9,75570 ,1,10,75500 ,1,11,75370 ,1,12,75460 ,1,13,75410 ,1,14,75550 ,1,15,75540 ,2,14956,266690 ,2,14957,45 ,2,14958,96495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96470 ,2,14963,269945 ,2,14964,277205 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,580870 ,2,14970,75 ,2,14971,341270 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,269945 ,2,14964,277205 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,620270 ,1,1,615295 ,1,2,74775 ,1,3,75840 ,1,4,75805 ,1,5,75795 ,1,6,75785 ,1,7,65 ,1,8,65 ,1,9,75775 ,1,10,75765 ,1,11,75755 ,1,12,75745 ,1,13,65 ,1,14,75735 ,1,15,75720 ,1,16,75710 ,1,17,75700 ,1,18,75690 ,1,19,65 ,1,20,75680 ,1,21,75670 ,1,22,65 ,1,23,75660 ,1,24,75650 ,1,25,75610 ,1,26,75600 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,75590 ,1,33,75580 ,2,14956,266595 ,2,14957,45 ,2,14958,96380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96370 ,2,14963,269945 ,2,14964,277205 ,2,14965,45 ,2,14966,580900 ,2,14967,45 ,2,14968,75 ,2,14969,580875 ,2,14970,75 ,2,14971,341280 ,2,829,45 ,1,0,57710 ,1,1,75340 ,2,14956,266605 ,2,14957,45 ,2,14958,96430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96420 ,2,14963,269945 ,2,14964,277205 ,2,14965,45 ,2,14966,580895 ,2,14967,45 ,2,14968,75 ,2,14969,580905 ,2,14970,75 ,2,14971,341420 ,2,829,45 ,1,0,185075 ,1,1,45 ,2,14956,266615 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96440 ,2,14963,269945 ,2,14964,277205 ,2,14965,45 ,2,14966,580920 ,2,14967,45 ,2,14968,75 ,2,14969,580915 ,2,14970,75 ,2,14971,341430 ,2,829,45 ,1,0,185110 ,1,1,45 ,2,14956,266625 ,2,14957,45 ,2,14958,96460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96450 ,2,14963,269945 ,2,14964,277205 ,2,14965,45 ,2,14966,580930 ,2,14967,45 ,2,14968,75 ,2,14969,580925 ,2,14970,75 ,2,14971,341440 ,2,829,45 ,1,0,185130 ,1,1,45 ,2,14956,267185 ,2,14957,45 ,2,14958,96630 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96620 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,96610 ,2,14969,580985 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185175 ,1,1,45 ,2,14956,267205 ,2,14957,45 ,2,14958,96660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96650 ,2,14963,269955 ,2,14964,275165 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,96640 ,2,14969,580990 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185195 ,1,1,45 ,2,14956,267320 ,2,14957,45 ,2,14958,96765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96750 ,2,14963,269965 ,2,14964,275145 ,2,14965,550825 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581005 ,2,14970,75 ,2,14971,308740 ,2,829,45 ,1,0,185225 ,1,1,45 ,2,14956,267330 ,2,14957,45 ,2,14958,96785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96775 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568460 ,2,14967,45 ,2,14968,75 ,2,14969,581010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185245 ,1,1,45 ,2,14956,267340 ,2,14957,45 ,2,14958,96825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96795 ,2,14963,269965 ,2,14964,275145 ,2,14965,550835 ,2,14966,581020 ,2,14967,45 ,2,14968,75 ,2,14969,581015 ,2,14970,75 ,2,14971,308620 ,2,829,45 ,1,0,185300 ,1,1,45 ,2,14956,267350 ,2,14957,45 ,2,14958,96845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96835 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,581030 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185320 ,1,1,45 ,2,14956,267385 ,2,14957,45 ,2,14958,96865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96855 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,559650 ,2,14967,45 ,2,14968,75 ,2,14969,581035 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185355 ,1,1,45 ,2,14956,267405 ,2,14957,45 ,2,14958,96895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96885 ,2,14963,269965 ,2,14964,275145 ,2,14965,550850 ,2,14966,581045 ,2,14967,45 ,2,14968,75 ,2,14969,581040 ,2,14970,75 ,2,14971,341705 ,2,829,45 ,1,0,185380 ,1,1,45 ,2,14956,267415 ,2,14957,45 ,2,14958,96930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96920 ,2,14963,269965 ,2,14964,275145 ,2,14965,550860 ,2,14966,559570 ,2,14967,45 ,2,14968,75 ,2,14969,581060 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,3770 ,1,2,167895 ,1,3,185400 ,1,4,185390 ,2,14956,267425 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96940 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581065 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185420 ,1,1,45 ,2,14956,267435 ,2,14957,45 ,2,14958,96960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96950 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568420 ,2,14967,45 ,2,14968,75 ,2,14969,568650 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185440 ,1,1,45 ,2,14956,267505 ,2,14957,45 ,2,14958,97055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,96990 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,580995 ,2,14970,96970 ,2,14971,341695 ,2,829,45 ,1,0,75840 ,1,1,75720 ,1,2,75775 ,1,3,75795 ,1,4,75680 ,1,5,75765 ,1,6,75700 ,1,7,75670 ,1,8,75755 ,1,9,75610 ,1,10,75735 ,1,11,75785 ,1,12,75660 ,1,13,75580 ,1,14,75710 ,1,15,75690 ,1,16,75805 ,1,17,75590 ,1,18,75650 ,1,19,75600 ,1,20,75745 ,1,21,74775 ,2,14956,267535 ,2,14957,45 ,2,14958,97110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97100 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,581070 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,267575 ,2,14957,45 ,2,14958,97130 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97120 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568580 ,2,14967,45 ,2,14968,75 ,2,14969,581100 ,2,14970,75 ,2,14971,341875 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,371120 ,1,5,371110 ,2,14956,267585 ,2,14957,45 ,2,14958,97170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97160 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568460 ,2,14967,45 ,2,14968,75 ,2,14969,581105 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,267605 ,2,14957,45 ,2,14958,97190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97180 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568460 ,2,14967,45 ,2,14968,75 ,2,14969,581115 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75870 ,1,1,75860 ,1,2,75850 ,2,14956,267615 ,2,14957,45 ,2,14958,97210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97200 ,2,14963,269965 ,2,14964,275145 ,2,14965,550900 ,2,14966,568560 ,2,14967,45 ,2,14968,75 ,2,14969,581120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,267685 ,2,14957,45 ,2,14958,97230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97220 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,581045 ,2,14967,45 ,2,14968,75 ,2,14969,568840 ,2,14970,75 ,2,14971,341885 ,2,829,45 ,2,14956,267695 ,2,14957,45 ,2,14958,97260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97250 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,567720 ,2,14967,45 ,2,14968,75 ,2,14969,581130 ,2,14970,75 ,2,14971,308700 ,2,829,45 ,1,0,75910 ,1,1,75900 ,1,2,75890 ,1,3,75880 ,2,14956,267705 ,2,14957,45 ,2,14958,97280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97270 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581135 ,2,14970,75 ,2,14971,341930 ,2,829,45 ,1,0,185555 ,1,1,45 ,2,14956,267715 ,2,14957,45 ,2,14958,97305 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97295 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581160 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185615 ,1,1,45 ,2,14956,267725 ,2,14957,45 ,2,14958,97325 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97315 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,581165 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,267745 ,2,14957,45 ,2,14958,97380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97370 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,581170 ,2,14970,75 ,2,14971,341940 ,2,829,45 ,1,0,75970 ,1,1,75960 ,1,2,75950 ,1,3,75940 ,2,14956,267755 ,2,14957,45 ,2,14958,97400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97390 ,2,14963,269965 ,2,14964,275145 ,2,14965,45 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,581175 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,185785 ,1,2,185775 ,1,3,185765 ,1,4,185755 ,1,5,185740 ,1,6,182790 ,1,7,182780 ,1,8,185730 ,1,9,182835 ,1,10,185720 ,1,11,182825 ,1,12,185710 ,1,13,185690 ,1,14,182815 ,1,15,182745 ,1,16,185680 ,1,17,185670 ,1,18,185660 ,1,19,185645 ,2,14956,268140 ,2,14957,45 ,2,14958,97700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97690 ,2,14963,270000 ,2,14964,277215 ,2,14965,550925 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581225 ,2,14970,97610 ,2,14971,342160 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270000 ,2,14964,277215 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76005 ,1,1,75995 ,1,2,75985 ,2,14956,268020 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97655 ,2,14963,270000 ,2,14964,277215 ,2,14965,550935 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,604600 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185850 ,1,1,45 ,2,14956,268355 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,97835 ,2,14961,45 ,2,14962,97825 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,581250 ,2,14967,45 ,2,14968,75 ,2,14969,581240 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,185885 ,1,1,45 ,2,14956,268320 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97805 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581255 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,372140 ,1,4,372130 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,372125 ,1,9,372110 ,2,14956,268310 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97815 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581265 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,268475 ,2,14957,45 ,2,14958,97875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97865 ,2,14963,270010 ,2,14964,277225 ,2,14965,550955 ,2,14966,581315 ,2,14967,45 ,2,14968,75 ,2,14969,581310 ,2,14970,75 ,2,14971,342585 ,2,829,45 ,1,0,76015 ,2,14956,268500 ,2,14957,45 ,2,14958,97930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,97920 ,2,14963,270010 ,2,14964,277225 ,2,14965,550965 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,581340 ,2,14970,75 ,2,14971,342665 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,98090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,617450 ,1,1,615295 ,1,2,65 ,1,3,76360 ,1,4,76350 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,76340 ,1,9,65 ,1,10,65 ,1,11,76310 ,1,12,65 ,1,13,65 ,1,14,76300 ,1,15,65 ,1,16,76290 ,1,17,76280 ,1,18,65 ,1,19,76270 ,1,20,76260 ,1,21,65 ,1,22,76250 ,1,23,65 ,1,24,65 ,1,25,76240 ,1,26,76225 ,1,27,76215 ,1,28,76205 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,76195 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,76170 ,1,39,76160 ,1,40,65 ,1,41,76150 ,1,42,76140 ,1,43,76125 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,76115 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,76105 ,1,57,76095 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,76080 ,1,62,76070 ,1,63,65 ,1,64,76060 ,1,65,76050 ,2,14956,268815 ,2,14957,45 ,2,14958,98110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98100 ,2,14963,270010 ,2,14964,277225 ,2,14965,45 ,2,14966,581375 ,2,14967,45 ,2,14968,75 ,2,14969,581350 ,2,14970,75 ,2,14971,342860 ,2,829,45 ,1,0,3010 ,1,1,186035 ,1,2,186025 ,1,3,186015 ,1,4,186005 ,2,14956,269315 ,2,14957,45 ,2,14958,98465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98435 ,2,14963,270020 ,2,14964,274615 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,98425 ,2,14969,581390 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58895 ,2,14956,269385 ,2,14957,45 ,2,14958,98510 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98495 ,2,14963,265235 ,2,14964,280590 ,2,14965,550990 ,2,14966,581405 ,2,14967,45 ,2,14968,75 ,2,14969,581400 ,2,14970,75 ,2,14971,343300 ,2,829,45 ,1,0,186075 ,1,1,45 ,2,14956,269915 ,2,14957,45 ,2,14958,98940 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98930 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581415 ,2,14970,75 ,2,14971,343395 ,2,829,45 ,1,0,186110 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,98540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270050 ,2,14964,277235 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186120 ,1,1,45 ,2,14956,269405 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98570 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581430 ,2,14970,75 ,2,14971,343415 ,2,829,45 ,1,0,186140 ,1,1,45 ,2,14956,269425 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98580 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581440 ,2,14970,75 ,2,14971,343435 ,2,829,45 ,1,0,3010 ,1,1,186190 ,1,2,186180 ,2,14956,269445 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98600 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,581450 ,2,14967,45 ,2,14968,75 ,2,14969,581445 ,2,14970,75 ,2,14971,343455 ,2,829,45 ,1,0,186220 ,1,1,45 ,2,14956,269435 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98590 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581455 ,2,14970,75 ,2,14971,343485 ,2,829,45 ,1,0,3010 ,1,1,186250 ,1,2,186240 ,1,3,186180 ,2,14956,269515 ,2,14957,45 ,2,14958,98640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98630 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,581505 ,2,14967,45 ,2,14968,75 ,2,14969,581500 ,2,14970,75 ,2,14971,343550 ,2,829,45 ,1,0,186300 ,1,1,45 ,2,14956,269530 ,2,14957,45 ,2,14958,98675 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98665 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,581505 ,2,14967,45 ,2,14968,75 ,2,14969,581520 ,2,14970,75 ,2,14971,343560 ,2,829,45 ,1,0,186320 ,1,1,45 ,2,14956,269550 ,2,14957,45 ,2,14958,98695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98685 ,2,14963,270030 ,2,14964,277235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,183195 ,1,2,186360 ,1,3,185785 ,1,4,186350 ,1,5,186340 ,1,6,186180 ,2,14956,269715 ,2,14957,45 ,2,14958,98745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98735 ,2,14963,270030 ,2,14964,277235 ,2,14965,45 ,2,14966,581560 ,2,14967,45 ,2,14968,75 ,2,14969,581535 ,2,14970,75 ,2,14971,343575 ,2,829,45 ,1,0,186415 ,1,1,45 ,2,14956,269745 ,2,14957,45 ,2,14958,98815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98805 ,2,14963,270070 ,2,14964,277235 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581585 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186435 ,1,1,45 ,2,14956,269855 ,2,14957,45 ,2,14958,98910 ,2,14959,45 ,2,14960,98900 ,2,14961,45 ,2,14962,98890 ,2,14963,270050 ,2,14964,277235 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,581575 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186475 ,1,1,45 ,2,14956,269810 ,2,14957,45 ,2,14958,98870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,98860 ,2,14963,270060 ,2,14964,277245 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581595 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186520 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270060 ,2,14964,277245 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186540 ,1,1,45 ,2,14956,269950 ,2,14957,45 ,2,14958,99025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99015 ,2,14963,270080 ,2,14964,277255 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,581600 ,2,14970,75 ,2,14971,343915 ,2,829,45 ,1,0,186565 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270080 ,2,14964,277255 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,183195 ,1,2,186340 ,1,3,186180 ,2,14956,270005 ,2,14957,45 ,2,14958,99125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99115 ,2,14963,265235 ,2,14964,280590 ,2,14965,551030 ,2,14966,581635 ,2,14967,45 ,2,14968,75 ,2,14969,581630 ,2,14970,75 ,2,14971,344020 ,2,829,45 ,1,0,3010 ,1,1,186585 ,1,2,186035 ,1,3,186180 ,2,14956,270025 ,2,14957,45 ,2,14958,99155 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99135 ,2,14963,265235 ,2,14964,280590 ,2,14965,551045 ,2,14966,581655 ,2,14967,45 ,2,14968,75 ,2,14969,581650 ,2,14970,75 ,2,14971,344060 ,2,829,45 ,1,0,186620 ,1,1,45 ,2,14956,181725 ,2,14957,45 ,2,14958,99710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99700 ,2,14963,270130 ,2,14964,277285 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,581660 ,2,14970,75 ,2,14971,344125 ,2,829,45 ,1,0,186640 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,99215 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270130 ,2,14964,277285 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,183245 ,1,2,186340 ,1,3,186180 ,2,14956,270225 ,2,14957,45 ,2,14958,99375 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99365 ,2,14963,270100 ,2,14964,277295 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581665 ,2,14970,75 ,2,14971,344150 ,2,829,45 ,1,0,76080 ,1,1,76290 ,1,2,76150 ,1,3,76225 ,1,4,76170 ,1,5,76240 ,1,6,76360 ,1,7,76195 ,1,8,76300 ,1,9,76160 ,1,10,76310 ,1,11,76340 ,1,12,76215 ,1,13,76280 ,1,14,76060 ,1,15,76070 ,1,16,76095 ,1,17,76205 ,1,18,76250 ,1,19,76270 ,1,20,76050 ,1,21,76260 ,1,22,76140 ,1,23,76125 ,1,24,76350 ,1,25,76105 ,1,26,76115 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270100 ,2,14964,277295 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,76415 ,1,3,166650 ,1,4,45 ,1,5,76395 ,1,6,176795 ,1,7,45 ,1,8,76370 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,270055 ,2,14957,45 ,2,14958,99275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99265 ,2,14963,270100 ,2,14964,277295 ,2,14965,45 ,2,14966,581690 ,2,14967,45 ,2,14968,75 ,2,14969,581680 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76385 ,2,14956,270105 ,2,14957,45 ,2,14958,99295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99285 ,2,14963,270100 ,2,14964,277295 ,2,14965,551075 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581695 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76405 ,2,14956,270115 ,2,14957,45 ,2,14958,99330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99320 ,2,14963,270100 ,2,14964,277295 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581705 ,2,14970,75 ,2,14971,344235 ,2,829,45 ,1,0,76470 ,2,14956,270145 ,2,14957,45 ,2,14958,99350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99340 ,2,14963,270100 ,2,14964,277295 ,2,14965,45 ,2,14966,565940 ,2,14967,45 ,2,14968,75 ,2,14969,581710 ,2,14970,75 ,2,14971,344245 ,2,829,45 ,1,0,618550 ,1,1,615295 ,1,2,373475 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,373470 ,1,7,65 ,1,8,373460 ,1,9,373445 ,1,10,373435 ,1,11,373400 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,373385 ,1,16,65 ,1,17,373375 ,2,14956,270245 ,2,14957,45 ,2,14958,99445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99435 ,2,14963,270130 ,2,14964,277285 ,2,14965,45 ,2,14966,581755 ,2,14967,45 ,2,14968,75 ,2,14969,581745 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,270570 ,2,14957,45 ,2,14958,99465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99455 ,2,14963,270130 ,2,14964,277285 ,2,14965,45 ,2,14966,581770 ,2,14967,45 ,2,14968,75 ,2,14969,581760 ,2,14970,75 ,2,14971,344280 ,2,829,45 ,1,0,76470 ,1,1,76405 ,1,2,76385 ,1,3,76510 ,1,4,76500 ,1,5,76490 ,1,6,76480 ,2,14956,270540 ,2,14957,45 ,2,14958,99580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99570 ,2,14963,270110 ,2,14964,277305 ,2,14965,551090 ,2,14966,581820 ,2,14967,45 ,2,14968,75 ,2,14969,581785 ,2,14970,75 ,2,14971,344390 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270110 ,2,14964,277305 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,372000 ,1,5,371990 ,1,6,371980 ,1,7,65 ,1,8,371940 ,1,9,371930 ,2,14956,270500 ,2,14957,45 ,2,14958,99665 ,2,14959,45 ,2,14960,99655 ,2,14961,45 ,2,14962,99645 ,2,14963,270120 ,2,14964,277315 ,2,14965,45 ,2,14966,581835 ,2,14967,45 ,2,14968,75 ,2,14969,581830 ,2,14970,75 ,2,14971,344445 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270120 ,2,14964,277315 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76520 ,2,14956,290565 ,2,14957,45 ,2,14958,112110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112070 ,2,14963,271940 ,2,14964,280665 ,2,14965,551655 ,2,14966,600065 ,2,14967,45 ,2,14968,99770 ,2,14969,581900 ,2,14970,99760 ,2,14971,45 ,2,829,45 ,2,14956,272485 ,2,14957,45 ,2,14958,99840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99830 ,2,14963,270140 ,2,14964,277325 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,99780 ,2,14969,581905 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76530 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270140 ,2,14964,277325 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,370750 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,370740 ,1,7,370730 ,1,8,370720 ,1,9,65 ,2,14956,276650 ,2,14957,45 ,2,14958,100125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100115 ,2,14963,270150 ,2,14964,277335 ,2,14965,45 ,2,14966,581930 ,2,14967,45 ,2,14968,99885 ,2,14969,581925 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,276425 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99895 ,2,14963,270150 ,2,14964,277335 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,581935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76540 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270150 ,2,14964,277335 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,276435 ,2,14957,45 ,2,14958,99975 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,99965 ,2,14963,270150 ,2,14964,277335 ,2,14965,45 ,2,14966,581930 ,2,14967,45 ,2,14968,99955 ,2,14969,581960 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76645 ,1,1,76635 ,1,2,76625 ,1,3,76615 ,1,4,76600 ,1,5,76590 ,1,6,76580 ,1,7,76570 ,2,14956,276580 ,2,14957,45 ,2,14958,100025 ,2,14959,45 ,2,14960,100015 ,2,14961,45 ,2,14962,100005 ,2,14963,270150 ,2,14964,277335 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,581965 ,2,14970,75 ,2,14971,344590 ,2,829,45 ,1,0,186885 ,1,1,45 ,2,14956,276615 ,2,14957,45 ,2,14958,100080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100070 ,2,14963,270150 ,2,14964,277335 ,2,14965,45 ,2,14966,559570 ,2,14967,45 ,2,14968,100060 ,2,14969,581970 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186895 ,1,1,45 ,2,14956,277200 ,2,14957,45 ,2,14958,100695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100685 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,581995 ,2,14967,45 ,2,14968,75 ,2,14969,581990 ,2,14970,75 ,2,14971,344680 ,2,829,45 ,1,0,3010 ,1,1,186970 ,1,2,179640 ,1,3,186960 ,1,4,186950 ,2,14956,276810 ,2,14957,45 ,2,14958,100190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100180 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,582025 ,2,14967,45 ,2,14968,75 ,2,14969,582000 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,186995 ,1,1,45 ,2,14956,276765 ,2,14957,45 ,2,14958,100170 ,2,14959,45 ,2,14960,100145 ,2,14961,45 ,2,14962,100135 ,2,14963,270220 ,2,14964,277345 ,2,14965,551280 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582030 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,1,13,6400 ,1,14,6400 ,1,15,6400 ,1,16,6400 ,1,17,6400 ,1,18,6400 ,1,19,6400 ,1,20,6400 ,1,21,6400 ,1,22,6400 ,1,23,6400 ,1,24,6400 ,1,25,6400 ,1,26,6400 ,1,27,6400 ,1,28,6400 ,1,29,6400 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,2,14956,277050 ,2,14957,45 ,2,14958,100280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100270 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,582055 ,2,14967,45 ,2,14968,75 ,2,14969,582040 ,2,14970,75 ,2,14971,344725 ,2,829,45 ,1,0,3010 ,1,1,186970 ,1,2,187250 ,1,3,187240 ,1,4,187230 ,1,5,187220 ,1,6,187200 ,1,7,187190 ,1,8,187180 ,1,9,187170 ,1,10,187135 ,1,11,187125 ,1,12,187115 ,1,13,187105 ,1,14,186360 ,1,15,187085 ,1,16,183245 ,1,17,179640 ,1,18,186960 ,1,19,11510 ,1,20,187075 ,1,21,187065 ,1,22,182890 ,1,23,183310 ,1,24,187055 ,1,25,187025 ,1,26,187015 ,2,14956,276945 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100500 ,2,14963,270170 ,2,14964,277385 ,2,14965,551395 ,2,14966,582060 ,2,14967,45 ,2,14968,75 ,2,14969,604775 ,2,14970,75 ,2,14971,344775 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,2,14956,276915 ,2,14957,45 ,2,14958,100460 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100415 ,2,14963,270170 ,2,14964,277385 ,2,14965,551360 ,2,14966,582070 ,2,14967,45 ,2,14968,75 ,2,14969,582065 ,2,14970,100290 ,2,14971,45 ,2,829,45 ,1,0,187300 ,1,1,45 ,2,14956,276870 ,2,14957,45 ,2,14958,100405 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100395 ,2,14963,270160 ,2,14964,277355 ,2,14965,551355 ,2,14966,582120 ,2,14967,45 ,2,14968,75 ,2,14969,582115 ,2,14970,100300 ,2,14971,45 ,2,829,45 ,2,14956,276830 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100355 ,2,14963,270160 ,2,14964,277355 ,2,14965,551350 ,2,14966,582125 ,2,14967,45 ,2,14968,75 ,2,14969,604795 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76665 ,2,14956,276820 ,2,14957,45 ,2,14958,100320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100310 ,2,14963,270160 ,2,14964,277355 ,2,14965,551335 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270160 ,2,14964,277355 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,75470 ,2,14956,276905 ,2,14957,45 ,2,14958,100450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100425 ,2,14963,270170 ,2,14964,277385 ,2,14965,551365 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270170 ,2,14964,277385 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,65 ,1,3,76950 ,1,4,76940 ,1,5,76925 ,1,6,65 ,1,7,76915 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,76905 ,1,12,76895 ,1,13,76850 ,1,14,76840 ,1,15,76830 ,1,16,76820 ,1,17,65 ,1,18,65 ,1,19,76800 ,1,20,76790 ,1,21,76780 ,1,22,65 ,1,23,76770 ,1,24,76740 ,1,25,65 ,1,26,76730 ,1,27,76710 ,1,28,76695 ,1,29,76685 ,1,30,76675 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,277060 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100570 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,582210 ,2,14967,45 ,2,14968,75 ,2,14969,582195 ,2,14970,75 ,2,14971,344835 ,2,829,45 ,1,0,187360 ,1,1,45 ,2,14956,277070 ,2,14957,45 ,2,14958,100590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100580 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,582215 ,2,14970,75 ,2,14971,344845 ,2,829,45 ,1,0,187400 ,1,1,45 ,2,14956,277115 ,2,14957,45 ,2,14958,100615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100605 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,582250 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76770 ,2,14956,277155 ,2,14957,45 ,2,14958,100635 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100625 ,2,14963,270220 ,2,14964,277345 ,2,14965,45 ,2,14966,582260 ,2,14967,45 ,2,14968,75 ,2,14969,582255 ,2,14970,75 ,2,14971,344870 ,2,829,45 ,1,0,187460 ,1,1,45 ,2,14956,277590 ,2,14957,45 ,2,14958,100985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100975 ,2,14963,270240 ,2,14964,277395 ,2,14965,551450 ,2,14966,582285 ,2,14967,45 ,2,14968,75 ,2,14969,582280 ,2,14970,75 ,2,14971,344920 ,2,829,45 ,1,0,187490 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,100760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270240 ,2,14964,277395 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187510 ,1,1,45 ,2,14956,277465 ,2,14957,45 ,2,14958,100880 ,2,14959,45 ,2,14960,100835 ,2,14961,45 ,2,14962,100825 ,2,14963,270230 ,2,14964,277405 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,582290 ,2,14970,75 ,2,14971,345005 ,2,829,45 ,1,0,187530 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270230 ,2,14964,277405 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187550 ,1,1,45 ,2,14956,277520 ,2,14957,45 ,2,14958,100935 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100925 ,2,14963,270230 ,2,14964,277405 ,2,14965,45 ,2,14966,582310 ,2,14967,45 ,2,14968,100900 ,2,14969,582305 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187600 ,1,1,45 ,2,14956,277510 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100910 ,2,14963,270240 ,2,14964,277395 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187620 ,1,1,45 ,2,14956,9235 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,100995 ,2,14963,270250 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,582335 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187650 ,1,1,45 ,2,14956,290350 ,2,14957,45 ,2,14958,112060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112050 ,2,14963,271930 ,2,14964,277415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,101005 ,2,14969,582340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187670 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270290 ,2,14964,277415 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,187705 ,1,1,45 ,2,14956,277660 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101045 ,2,14963,270280 ,2,14964,277415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582345 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76770 ,1,1,76820 ,1,2,76840 ,1,3,76925 ,1,4,76950 ,1,5,76780 ,1,6,76940 ,1,7,76730 ,1,8,76895 ,1,9,76740 ,1,10,76695 ,1,11,76905 ,1,12,76850 ,1,13,76710 ,1,14,76685 ,1,15,76675 ,1,16,76830 ,1,17,76790 ,1,18,76915 ,1,19,76800 ,2,14956,211950 ,2,14957,45 ,2,14958,101090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101080 ,2,14963,270270 ,2,14964,277415 ,2,14965,45 ,2,14966,582375 ,2,14967,45 ,2,14968,75 ,2,14969,582370 ,2,14970,75 ,2,14971,345055 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,372100 ,2,14956,277735 ,2,14957,45 ,2,14958,101110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101100 ,2,14963,270270 ,2,14964,277415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582380 ,2,14970,75 ,2,14971,345095 ,2,829,45 ,2,14956,290215 ,2,14957,45 ,2,14958,101140 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101130 ,2,14963,271930 ,2,14964,277415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582385 ,2,14970,75 ,2,14971,345115 ,2,829,45 ,1,0,76960 ,2,14956,290125 ,2,14957,45 ,2,14958,111930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111920 ,2,14963,271920 ,2,14964,277430 ,2,14965,45 ,2,14966,582405 ,2,14967,45 ,2,14968,75 ,2,14969,582400 ,2,14970,75 ,2,14971,345135 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370920 ,1,3,65 ,2,14956,277755 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101150 ,2,14963,270315 ,2,14964,277430 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582410 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270535 ,2,14964,277430 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,76970 ,2,14956,289800 ,2,14957,45 ,2,14958,101225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101215 ,2,14963,270495 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,582450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,371925 ,1,6,371915 ,1,7,65 ,1,8,371900 ,1,9,65 ,2,14956,278220 ,2,14957,45 ,2,14958,101495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101485 ,2,14963,270545 ,2,14964,277440 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582465 ,2,14970,75 ,2,14971,345325 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,101315 ,2,14959,45 ,2,14960,101260 ,2,14961,45 ,2,14962,75 ,2,14963,270545 ,2,14964,277440 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77010 ,2,14956,278035 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101305 ,2,14963,270545 ,2,14964,277440 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582475 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,372200 ,1,3,65 ,2,14956,278130 ,2,14957,45 ,2,14958,101365 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101355 ,2,14963,270545 ,2,14964,277440 ,2,14965,45 ,2,14966,582485 ,2,14967,45 ,2,14968,75 ,2,14969,582480 ,2,14970,75 ,2,14971,345380 ,2,829,45 ,2,14956,278145 ,2,14957,45 ,2,14958,101440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101430 ,2,14963,270545 ,2,14964,277440 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582510 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77020 ,2,14956,278155 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101450 ,2,14963,270545 ,2,14964,277440 ,2,14965,45 ,2,14966,582485 ,2,14967,45 ,2,14968,75 ,2,14969,582515 ,2,14970,75 ,2,14971,345430 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,371085 ,1,3,371075 ,1,4,65 ,1,5,371065 ,1,6,65 ,1,7,65 ,1,8,371055 ,1,9,371045 ,2,14956,278445 ,2,14957,45 ,2,14958,101680 ,2,14959,45 ,2,14960,101670 ,2,14961,45 ,2,14962,101620 ,2,14963,270555 ,2,14964,277460 ,2,14965,45 ,2,14966,582525 ,2,14967,45 ,2,14968,75 ,2,14969,582520 ,2,14970,75 ,2,14971,345460 ,2,829,45 ,2,14956,278330 ,2,14957,45 ,2,14958,101570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101560 ,2,14963,270565 ,2,14964,277450 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582530 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77030 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270565 ,2,14964,277450 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270555 ,2,14964,277460 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77065 ,1,1,77055 ,1,2,77040 ,2,14956,279045 ,2,14957,45 ,2,14958,101905 ,2,14959,45 ,2,14960,101730 ,2,14961,45 ,2,14962,101720 ,2,14963,270575 ,2,14964,277485 ,2,14965,45 ,2,14966,582525 ,2,14967,45 ,2,14968,75 ,2,14969,582540 ,2,14970,75 ,2,14971,345550 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270575 ,2,14964,277485 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,372090 ,2,14956,278535 ,2,14957,45 ,2,14958,101860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101850 ,2,14963,265300 ,2,14964,280590 ,2,14965,45 ,2,14966,582565 ,2,14967,45 ,2,14968,75 ,2,14969,582560 ,2,14970,101740 ,2,14971,345570 ,2,829,45 ,2,14956,278525 ,2,14957,45 ,2,14958,101840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101800 ,2,14963,266550 ,2,14964,280590 ,2,14965,551505 ,2,14966,582575 ,2,14967,45 ,2,14968,75 ,2,14969,582570 ,2,14970,101790 ,2,14971,45 ,2,829,45 ,1,0,77075 ,2,14956,278515 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,101830 ,2,14963,266550 ,2,14964,280590 ,2,14965,551510 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614390 ,1,1,615295 ,1,2,65 ,1,3,371345 ,1,4,371335 ,1,5,65 ,1,6,371325 ,1,7,371290 ,1,8,371280 ,1,9,371270 ,1,10,371255 ,1,11,371250 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,371240 ,2,14956,8220 ,2,14957,45 ,2,14958,102125 ,2,14959,45 ,2,14960,102095 ,2,14961,45 ,2,14962,75 ,2,14963,270585 ,2,14964,277495 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,278655 ,2,14957,45 ,2,14958,102045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,102035 ,2,14963,270585 ,2,14964,277495 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582595 ,2,14970,101965 ,2,14971,345690 ,2,829,45 ,1,0,77105 ,1,1,77085 ,2,14956,278900 ,2,14957,45 ,2,14958,102085 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,102075 ,2,14963,270585 ,2,14964,277495 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582655 ,2,14970,75 ,2,14971,345765 ,2,829,45 ,1,0,562180 ,2,14956,279105 ,2,14957,45 ,2,14958,102250 ,2,14959,45 ,2,14960,102240 ,2,14961,45 ,2,14962,102195 ,2,14963,270595 ,2,14964,277505 ,2,14965,45 ,2,14966,582665 ,2,14967,45 ,2,14968,75 ,2,14969,582660 ,2,14970,75 ,2,14971,345970 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270595 ,2,14964,277505 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373370 ,1,3,65 ,2,14956,8220 ,2,14957,45 ,2,14958,102290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270605 ,2,14964,277515 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,279415 ,2,14957,45 ,2,14958,102375 ,2,14959,45 ,2,14960,102360 ,2,14961,45 ,2,14962,102350 ,2,14963,270630 ,2,14964,277530 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582670 ,2,14970,75 ,2,14971,346005 ,2,829,45 ,1,0,620685 ,1,1,615295 ,1,2,77365 ,1,3,77355 ,1,4,77345 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,77335 ,1,10,77325 ,1,11,77315 ,1,12,77275 ,1,13,74465 ,1,14,65 ,1,15,77265 ,1,16,77255 ,1,17,77245 ,1,18,77230 ,1,19,77220 ,1,20,77210 ,1,21,77200 ,1,22,65 ,1,23,65 ,1,24,77175 ,1,25,77165 ,1,26,77145 ,1,27,65 ,1,28,65 ,1,29,77135 ,1,30,65 ,1,31,65 ,1,32,77125 ,1,33,77115 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270630 ,2,14964,277530 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77325 ,1,1,77165 ,1,2,72090 ,1,3,77230 ,2,14956,279460 ,2,14957,45 ,2,14958,102460 ,2,14959,45 ,2,14960,102450 ,2,14961,45 ,2,14962,102440 ,2,14963,270640 ,2,14964,277540 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582680 ,2,14970,75 ,2,14971,346075 ,2,829,45 ,1,0,77335 ,1,1,77255 ,1,2,77265 ,1,3,74465 ,1,4,77365 ,1,5,77355 ,1,6,77315 ,1,7,77115 ,1,8,77135 ,1,9,77125 ,1,10,77245 ,1,11,77230 ,1,12,77325 ,1,13,77175 ,1,14,77165 ,1,15,77345 ,1,16,77145 ,1,17,77220 ,1,18,77200 ,1,19,77275 ,1,20,77210 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270640 ,2,14964,277540 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,372190 ,1,3,65 ,2,14956,281725 ,2,14957,45 ,2,14958,102565 ,2,14959,45 ,2,14960,102555 ,2,14961,45 ,2,14962,102515 ,2,14963,270650 ,2,14964,277550 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582685 ,2,14970,75 ,2,14971,346115 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270650 ,2,14964,277550 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77375 ,2,14956,280775 ,2,14957,45 ,2,14958,102585 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,102575 ,2,14963,270660 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,582715 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,65 ,1,3,371225 ,1,4,371215 ,1,5,371185 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,371175 ,1,12,371165 ,1,13,65 ,1,14,65 ,1,15,371155 ,1,16,65 ,1,17,65 ,2,14956,280710 ,2,14957,45 ,2,14958,103035 ,2,14959,102820 ,2,14960,102810 ,2,14961,45 ,2,14962,102795 ,2,14963,266505 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,582725 ,2,14970,102595 ,2,14971,347095 ,2,829,45 ,2,14956,280305 ,2,14957,45 ,2,14958,102875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,102840 ,2,14963,266505 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,582750 ,2,14970,75 ,2,14971,346735 ,2,829,45 ,1,0,77385 ,2,14956,280175 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,102865 ,2,14963,266505 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,582755 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,620685 ,1,1,615295 ,1,2,371885 ,1,3,371875 ,1,4,371865 ,1,5,65 ,1,6,371835 ,1,7,371825 ,1,8,371815 ,1,9,371810 ,1,10,371785 ,1,11,65 ,1,12,371775 ,1,13,371765 ,1,14,371755 ,1,15,371715 ,1,16,371710 ,1,17,371695 ,1,18,371685 ,1,19,371680 ,1,20,65 ,1,21,371670 ,1,22,65 ,1,23,371655 ,1,24,371650 ,1,25,371625 ,1,26,65 ,1,27,65 ,1,28,371615 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,280365 ,2,14957,45 ,2,14958,102905 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,102895 ,2,14963,266505 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,582760 ,2,14970,75 ,2,14971,346835 ,2,829,45 ,2,14956,280975 ,2,14957,45 ,2,14958,103230 ,2,14959,45 ,2,14960,103220 ,2,14961,45 ,2,14962,103210 ,2,14963,270690 ,2,14964,277585 ,2,14965,45 ,2,14966,582815 ,2,14967,45 ,2,14968,75 ,2,14969,582810 ,2,14970,75 ,2,14971,347285 ,2,829,45 ,1,0,77415 ,2,14956,280895 ,2,14957,45 ,2,14958,103130 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,103120 ,2,14963,270680 ,2,14964,277560 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582820 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,371135 ,1,4,371125 ,1,5,65 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270680 ,2,14964,277560 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270690 ,2,14964,277585 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77425 ,2,14956,280955 ,2,14957,45 ,2,14958,103275 ,2,14959,103265 ,2,14960,75 ,2,14961,45 ,2,14962,103255 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,561575 ,2,14967,45 ,2,14968,75 ,2,14969,582835 ,2,14970,103245 ,2,14971,45 ,2,829,45 ,2,14956,281070 ,2,14957,45 ,2,14958,103355 ,2,14959,45 ,2,14960,103345 ,2,14961,45 ,2,14962,103335 ,2,14963,270700 ,2,14964,277595 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582865 ,2,14970,75 ,2,14971,347295 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270700 ,2,14964,277595 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77465 ,1,1,77455 ,1,2,74575 ,1,3,77445 ,1,4,77435 ,2,14956,281705 ,2,14957,45 ,2,14958,103530 ,2,14959,45 ,2,14960,103520 ,2,14961,45 ,2,14962,103510 ,2,14963,270750 ,2,14964,277615 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,582870 ,2,14970,75 ,2,14971,347380 ,2,829,45 ,1,0,188375 ,1,1,45 ,2,14956,281115 ,2,14957,45 ,2,14958,103435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,103425 ,2,14963,270740 ,2,14964,277605 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582880 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,188405 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270740 ,2,14964,277605 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,103475 ,2,14959,45 ,2,14960,103465 ,2,14961,45 ,2,14962,75 ,2,14963,270750 ,2,14964,277615 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,281845 ,2,14957,45 ,2,14958,103770 ,2,14959,45 ,2,14960,103760 ,2,14961,45 ,2,14962,103750 ,2,14963,270760 ,2,14964,277635 ,2,14965,45 ,2,14966,582905 ,2,14967,45 ,2,14968,75 ,2,14969,582900 ,2,14970,75 ,2,14971,347685 ,2,829,45 ,1,0,256465 ,1,1,256455 ,2,14956,281780 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,103665 ,2,14963,270770 ,2,14964,277625 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77545 ,1,1,77535 ,1,2,77525 ,1,3,77515 ,1,4,77485 ,1,5,77475 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270770 ,2,14964,277625 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270760 ,2,14964,277635 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,620805 ,1,1,615295 ,1,2,77850 ,1,3,65 ,1,4,77840 ,1,5,77830 ,1,6,65 ,1,7,77800 ,1,8,64655 ,1,9,65 ,1,10,77790 ,1,11,77780 ,1,12,65 ,1,13,77740 ,1,14,64730 ,1,15,77730 ,1,16,65 ,1,17,77720 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,77700 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,77690 ,1,29,77680 ,1,30,65 ,1,31,77670 ,1,32,65 ,1,33,77655 ,1,34,65 ,1,35,65 ,1,36,64700 ,1,37,65 ,1,38,77645 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,77635 ,1,43,65 ,1,44,77625 ,1,45,77590 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,77580 ,1,56,77570 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,73750 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,77560 ,1,65,64720 ,2,14956,281885 ,2,14957,45 ,2,14958,103865 ,2,14959,45 ,2,14960,103855 ,2,14961,45 ,2,14962,103815 ,2,14963,270780 ,2,14964,277645 ,2,14965,45 ,2,14966,582905 ,2,14967,45 ,2,14968,75 ,2,14969,582940 ,2,14970,75 ,2,14971,347705 ,2,829,45 ,1,0,188635 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270780 ,2,14964,277645 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,188705 ,1,1,45 ,2,14956,281980 ,2,14957,45 ,2,14958,103985 ,2,14959,45 ,2,14960,103930 ,2,14961,45 ,2,14962,103920 ,2,14963,270790 ,2,14964,277655 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582945 ,2,14970,75 ,2,14971,347745 ,2,829,45 ,1,0,188770 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270790 ,2,14964,277655 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,188790 ,1,1,45 ,2,14956,282220 ,2,14957,45 ,2,14958,104120 ,2,14959,45 ,2,14960,104105 ,2,14961,45 ,2,14962,104095 ,2,14963,270800 ,2,14964,277700 ,2,14965,45 ,2,14966,582970 ,2,14967,45 ,2,14968,75 ,2,14969,582965 ,2,14970,75 ,2,14971,347810 ,2,829,45 ,1,0,188810 ,1,1,45 ,2,14956,282035 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104045 ,2,14963,270810 ,2,14964,277690 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582975 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270810 ,2,14964,277690 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,561430 ,1,3,562475 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270800 ,2,14964,277700 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,282165 ,2,14957,45 ,2,14958,104220 ,2,14959,45 ,2,14960,104210 ,2,14961,45 ,2,14962,104200 ,2,14963,270835 ,2,14964,277710 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,583020 ,2,14970,75 ,2,14971,347860 ,2,829,45 ,1,0,100 ,1,1,561430 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270835 ,2,14964,277710 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64730 ,1,1,77580 ,1,2,64655 ,1,3,77850 ,1,4,77830 ,1,5,77730 ,1,6,77840 ,1,7,77780 ,1,8,77625 ,1,9,77670 ,1,10,64720 ,1,11,77635 ,1,12,77560 ,1,13,77690 ,1,14,77590 ,1,15,77720 ,1,16,77680 ,1,17,77645 ,1,18,77570 ,1,19,77700 ,1,20,77800 ,1,21,77655 ,1,22,77790 ,1,23,73750 ,1,24,77740 ,1,25,64700 ,2,14956,282330 ,2,14957,45 ,2,14958,104300 ,2,14959,45 ,2,14960,104290 ,2,14961,45 ,2,14962,104260 ,2,14963,270845 ,2,14964,277720 ,2,14965,45 ,2,14966,582970 ,2,14967,45 ,2,14968,75 ,2,14969,583025 ,2,14970,75 ,2,14971,347920 ,2,829,45 ,1,0,73770 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270845 ,2,14964,277720 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,282435 ,2,14957,45 ,2,14958,104365 ,2,14959,45 ,2,14960,104355 ,2,14961,45 ,2,14962,104345 ,2,14963,270855 ,2,14964,277730 ,2,14965,45 ,2,14966,582970 ,2,14967,45 ,2,14968,75 ,2,14969,583030 ,2,14970,75 ,2,14971,347975 ,2,829,45 ,1,0,77900 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270855 ,2,14964,277730 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,282475 ,2,14957,45 ,2,14958,104475 ,2,14959,45 ,2,14960,104465 ,2,14961,45 ,2,14962,104455 ,2,14963,270865 ,2,14964,277740 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583045 ,2,14970,75 ,2,14971,348040 ,2,829,45 ,1,0,77955 ,1,1,77945 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270865 ,2,14964,277740 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,64485 ,2,14956,282525 ,2,14957,45 ,2,14958,104555 ,2,14959,45 ,2,14960,104545 ,2,14961,45 ,2,14962,104535 ,2,14963,270880 ,2,14964,277750 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583055 ,2,14970,75 ,2,14971,348065 ,2,829,45 ,1,0,3010 ,1,1,174080 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270880 ,2,14964,277750 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,167770 ,1,2,174100 ,1,3,174110 ,2,14956,282640 ,2,14957,45 ,2,14958,104685 ,2,14959,45 ,2,14960,104675 ,2,14961,45 ,2,14962,104665 ,2,14963,270890 ,2,14964,277795 ,2,14965,45 ,2,14966,583075 ,2,14967,45 ,2,14968,75 ,2,14969,583060 ,2,14970,75 ,2,14971,348120 ,2,829,45 ,2,14956,282610 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104625 ,2,14963,270900 ,2,14964,277760 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583080 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270900 ,2,14964,277760 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77965 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270890 ,2,14964,277795 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,282710 ,2,14957,45 ,2,14958,104780 ,2,14959,45 ,2,14960,104770 ,2,14961,45 ,2,14962,104750 ,2,14963,270910 ,2,14964,277805 ,2,14965,45 ,2,14966,583075 ,2,14967,45 ,2,14968,75 ,2,14969,583090 ,2,14970,75 ,2,14971,348140 ,2,829,45 ,1,0,562585 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270910 ,2,14964,277805 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256535 ,1,1,256525 ,1,2,256515 ,2,14956,283470 ,2,14957,45 ,2,14958,105560 ,2,14959,45 ,2,14960,105550 ,2,14961,45 ,2,14962,105540 ,2,14963,270935 ,2,14964,277870 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583100 ,2,14970,75 ,2,14971,348175 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,283335 ,2,14957,45 ,2,14958,105465 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105455 ,2,14963,270975 ,2,14964,277815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583110 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,562575 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270975 ,2,14964,277815 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81440 ,1,1,81430 ,1,2,81420 ,1,3,64260 ,1,4,78060 ,1,5,78050 ,1,6,78040 ,1,7,78015 ,2,14956,282815 ,2,14957,45 ,2,14958,104960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104860 ,2,14963,270975 ,2,14964,277815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583115 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81440 ,2,14956,282805 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104950 ,2,14963,270945 ,2,14964,277825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583150 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78070 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270945 ,2,14964,277825 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,189355 ,2,14956,282730 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104905 ,2,14963,270945 ,2,14964,277825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583155 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,599970 ,2,14956,282740 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104915 ,2,14963,270945 ,2,14964,277825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583160 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,282750 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104940 ,2,14963,270945 ,2,14964,277825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583170 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,266355 ,1,1,45 ,1,2,45 ,2,14956,283245 ,2,14957,45 ,2,14958,104990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,104970 ,2,14963,270975 ,2,14964,277815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583175 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,81390 ,1,2,81380 ,1,3,256820 ,1,4,81330 ,1,5,81320 ,1,6,18665 ,1,7,256810 ,1,8,45 ,1,9,45 ,1,10,256545 ,1,11,45 ,1,12,45 ,1,13,256800 ,1,14,256790 ,1,15,78070 ,1,16,78290 ,1,17,45 ,1,18,256575 ,1,19,78105 ,1,20,256555 ,1,21,616230 ,2,14956,8220 ,2,14957,45 ,2,14958,105080 ,2,14959,45 ,2,14960,105070 ,2,14961,45 ,2,14962,75 ,2,14963,270955 ,2,14964,277850 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,282740 ,2,14957,45 ,2,14958,105395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105360 ,2,14963,270965 ,2,14964,277860 ,2,14965,45 ,2,14966,583280 ,2,14967,45 ,2,14968,75 ,2,14969,583185 ,2,14970,105090 ,2,14971,348550 ,2,829,45 ,1,0,256565 ,2,14956,8220 ,2,14957,45 ,2,14958,105120 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270965 ,2,14964,277860 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,189390 ,1,1,45 ,2,14956,282805 ,2,14957,45 ,2,14958,105195 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105185 ,2,14963,270965 ,2,14964,277860 ,2,14965,45 ,2,14966,583235 ,2,14967,45 ,2,14968,75 ,2,14969,583225 ,2,14970,105175 ,2,14971,348445 ,2,829,45 ,1,0,78270 ,1,1,78260 ,1,2,78150 ,1,3,78250 ,1,4,78220 ,1,5,78210 ,1,6,78200 ,1,7,78190 ,1,8,78180 ,1,9,78160 ,1,10,78170 ,2,14956,283045 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105295 ,2,14963,270965 ,2,14964,277860 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583250 ,2,14970,75 ,2,14971,348465 ,2,829,45 ,1,0,189465 ,1,1,45 ,2,14956,282730 ,2,14957,45 ,2,14958,105350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105340 ,2,14963,270965 ,2,14964,277860 ,2,14965,45 ,2,14966,583275 ,2,14967,45 ,2,14968,75 ,2,14969,583260 ,2,14970,75 ,2,14971,348490 ,2,829,45 ,1,0,78270 ,2,14956,283255 ,2,14957,45 ,2,14958,105435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105425 ,2,14963,270975 ,2,14964,277815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583285 ,2,14970,105405 ,2,14971,45 ,2,829,45 ,2,14956,283265 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,105445 ,2,14963,270975 ,2,14964,277815 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,583315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78390 ,1,1,78380 ,1,2,78370 ,1,3,78320 ,1,4,78300 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270935 ,2,14964,277870 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78105 ,1,1,81320 ,1,2,78400 ,1,3,70765 ,1,4,78390 ,2,14956,8220 ,2,14957,45 ,2,14958,105630 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270985 ,2,14964,277880 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256610 ,1,1,256600 ,2,14956,283565 ,2,14957,45 ,2,14958,105705 ,2,14959,45 ,2,14960,105685 ,2,14961,45 ,2,14962,105675 ,2,14963,270995 ,2,14964,277905 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583330 ,2,14970,75 ,2,14971,348685 ,2,829,45 ,1,0,78485 ,1,1,78475 ,1,2,78420 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,270995 ,2,14964,277905 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,283655 ,2,14957,45 ,2,14958,105770 ,2,14959,45 ,2,14960,105760 ,2,14961,45 ,2,14962,105750 ,2,14963,271005 ,2,14964,277915 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583365 ,2,14970,75 ,2,14971,348765 ,2,829,45 ,1,0,100 ,1,1,558990 ,1,2,599885 ,1,3,599975 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271005 ,2,14964,277915 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,558990 ,1,2,599885 ,1,3,599975 ,2,14956,283750 ,2,14957,45 ,2,14958,105860 ,2,14959,45 ,2,14960,105850 ,2,14961,45 ,2,14962,105840 ,2,14963,271040 ,2,14964,277925 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583375 ,2,14970,75 ,2,14971,348825 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271040 ,2,14964,277925 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,2,14956,283820 ,2,14957,45 ,2,14958,105945 ,2,14959,45 ,2,14960,105935 ,2,14961,45 ,2,14962,105925 ,2,14963,271050 ,2,14964,277935 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583385 ,2,14970,75 ,2,14971,348910 ,2,829,45 ,1,0,167060 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271050 ,2,14964,277935 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,283915 ,2,14957,45 ,2,14958,106020 ,2,14959,45 ,2,14960,105995 ,2,14961,45 ,2,14962,105985 ,2,14963,271060 ,2,14964,277950 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583395 ,2,14970,75 ,2,14971,348985 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271060 ,2,14964,277950 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81085 ,1,1,81075 ,1,2,80200 ,1,3,80180 ,1,4,78650 ,1,5,78640 ,1,6,78550 ,2,14956,284030 ,2,14957,45 ,2,14958,106080 ,2,14959,45 ,2,14960,106070 ,2,14961,45 ,2,14962,106060 ,2,14963,271070 ,2,14964,277960 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583435 ,2,14970,75 ,2,14971,349080 ,2,829,45 ,1,0,78560 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271070 ,2,14964,277960 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,284105 ,2,14957,45 ,2,14958,106170 ,2,14959,45 ,2,14960,106150 ,2,14961,45 ,2,14962,106140 ,2,14963,271080 ,2,14964,277970 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583445 ,2,14970,75 ,2,14971,349145 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,599975 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271080 ,2,14964,277970 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,599975 ,2,14956,284185 ,2,14957,45 ,2,14958,106265 ,2,14959,45 ,2,14960,106255 ,2,14961,45 ,2,14962,106245 ,2,14963,271090 ,2,14964,277980 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583455 ,2,14970,75 ,2,14971,349235 ,2,829,45 ,1,0,189770 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271090 ,2,14964,277980 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,189790 ,1,1,45 ,2,14956,284275 ,2,14957,45 ,2,14958,106340 ,2,14959,45 ,2,14960,106320 ,2,14961,45 ,2,14962,106310 ,2,14963,271100 ,2,14964,278000 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583465 ,2,14970,75 ,2,14971,349330 ,2,829,45 ,1,0,57795 ,1,1,78625 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271100 ,2,14964,278000 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,73135 ,2,14956,284370 ,2,14957,45 ,2,14958,106400 ,2,14959,45 ,2,14960,106390 ,2,14961,45 ,2,14962,106380 ,2,14963,271110 ,2,14964,278010 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583490 ,2,14970,75 ,2,14971,349400 ,2,829,45 ,1,0,189885 ,1,1,45 ,1,2,78670 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271110 ,2,14964,278010 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78725 ,2,14956,284475 ,2,14957,45 ,2,14958,106480 ,2,14959,45 ,2,14960,106470 ,2,14961,45 ,2,14962,106460 ,2,14963,271140 ,2,14964,278020 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583500 ,2,14970,75 ,2,14971,349470 ,2,829,45 ,1,0,562685 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271140 ,2,14964,278020 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256650 ,1,1,256640 ,1,2,256630 ,1,3,256620 ,2,14956,284545 ,2,14957,45 ,2,14958,106565 ,2,14959,45 ,2,14960,106555 ,2,14961,45 ,2,14962,106545 ,2,14963,271150 ,2,14964,278030 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583515 ,2,14970,75 ,2,14971,349545 ,2,829,45 ,1,0,78745 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271150 ,2,14964,278030 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,190030 ,1,1,45 ,2,14956,284650 ,2,14957,45 ,2,14958,106665 ,2,14959,45 ,2,14960,106620 ,2,14961,45 ,2,14962,106610 ,2,14963,271160 ,2,14964,278040 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583525 ,2,14970,75 ,2,14971,349625 ,2,829,45 ,1,0,616615 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,80170 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,80145 ,1,11,80135 ,1,12,80125 ,1,13,80115 ,1,14,80100 ,1,15,65 ,1,16,80090 ,1,17,80080 ,1,18,80070 ,1,19,80045 ,1,20,80035 ,1,21,78660 ,1,22,80025 ,1,23,80015 ,1,24,65 ,1,25,65 ,1,26,79995 ,1,27,65 ,1,28,79985 ,1,29,79975 ,1,30,65 ,1,31,78845 ,1,32,78770 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,79965 ,1,37,65 ,1,38,79920 ,1,39,78725 ,1,40,79910 ,1,41,79900 ,1,42,65 ,1,43,65 ,1,44,79890 ,1,45,65 ,1,46,79880 ,1,47,79870 ,1,48,65 ,1,49,79860 ,1,50,65 ,1,51,65 ,1,52,79850 ,1,53,65 ,1,54,65 ,1,55,79825 ,1,56,79815 ,1,57,65 ,1,58,65 ,1,59,79805 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,79795 ,1,64,79785 ,1,65,79775 ,1,66,79765 ,1,67,78745 ,1,68,79755 ,1,69,79715 ,1,70,79705 ,1,71,79695 ,1,72,79685 ,1,73,65 ,1,74,65 ,1,75,79675 ,1,76,65 ,1,77,79665 ,1,78,79655 ,1,79,65 ,1,80,79645 ,1,81,79610 ,1,82,65 ,1,83,78790 ,1,84,65 ,1,85,79600 ,1,86,79590 ,1,87,65 ,1,88,79580 ,1,89,65 ,1,90,65 ,1,91,65 ,1,92,78825 ,1,93,78715 ,1,94,79570 ,1,95,79560 ,1,96,65 ,1,97,65 ,1,98,79550 ,1,99,65 ,1,100,65 ,1,101,79540 ,1,102,79520 ,1,103,65 ,1,104,65 ,1,105,79510 ,1,106,65 ,1,107,65 ,1,108,79500 ,1,109,65 ,1,110,65 ,1,111,65 ,1,112,79490 ,1,113,79480 ,1,114,79470 ,1,115,79460 ,1,116,79450 ,1,117,65 ,1,118,79410 ,1,119,65 ,1,120,79400 ,1,121,65 ,1,122,65 ,1,123,65 ,1,124,79390 ,1,125,79380 ,1,126,65 ,1,127,79365 ,1,128,78875 ,1,129,78855 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271160 ,2,14964,278040 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58895 ,1,1,57795 ,2,14956,284745 ,2,14957,45 ,2,14958,106735 ,2,14959,45 ,2,14960,106725 ,2,14961,45 ,2,14962,106715 ,2,14963,271170 ,2,14964,278050 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583545 ,2,14970,75 ,2,14971,349705 ,2,829,45 ,1,0,58895 ,1,1,57795 ,1,2,78865 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271170 ,2,14964,278050 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57510 ,2,14956,284840 ,2,14957,45 ,2,14958,106815 ,2,14959,45 ,2,14960,106800 ,2,14961,45 ,2,14962,106790 ,2,14963,271180 ,2,14964,278060 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583555 ,2,14970,75 ,2,14971,349765 ,2,829,45 ,1,0,58645 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271180 ,2,14964,278060 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79365 ,2,14956,284925 ,2,14957,45 ,2,14958,106910 ,2,14959,45 ,2,14960,106900 ,2,14961,45 ,2,14962,106890 ,2,14963,271190 ,2,14964,278070 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583565 ,2,14970,75 ,2,14971,349850 ,2,829,45 ,1,0,79890 ,1,1,58585 ,1,2,58385 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271190 ,2,14964,278070 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58585 ,1,1,58385 ,1,2,79645 ,1,3,79890 ,1,4,79600 ,1,5,57510 ,2,14956,285015 ,2,14957,45 ,2,14958,107000 ,2,14959,45 ,2,14960,106960 ,2,14961,45 ,2,14962,106950 ,2,14963,271200 ,2,14964,278095 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583575 ,2,14970,75 ,2,14971,349930 ,2,829,45 ,1,0,58385 ,1,1,79460 ,1,2,79600 ,1,3,57510 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271200 ,2,14964,278095 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79390 ,1,1,79600 ,1,2,57510 ,2,14956,285115 ,2,14957,45 ,2,14958,107065 ,2,14959,45 ,2,14960,107055 ,2,14961,45 ,2,14962,107045 ,2,14963,271210 ,2,14964,278105 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583605 ,2,14970,75 ,2,14971,350015 ,2,829,45 ,1,0,12445 ,1,1,190145 ,1,2,190135 ,1,3,190125 ,1,4,190115 ,1,5,183195 ,1,6,189970 ,1,7,190105 ,1,8,190095 ,1,9,190085 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271210 ,2,14964,278105 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78935 ,1,1,78925 ,1,2,78885 ,2,14956,285210 ,2,14957,45 ,2,14958,107150 ,2,14959,45 ,2,14960,107140 ,2,14961,45 ,2,14962,107130 ,2,14963,271230 ,2,14964,278115 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583615 ,2,14970,75 ,2,14971,350075 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271230 ,2,14964,278115 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78935 ,1,1,78925 ,1,2,78885 ,1,3,78895 ,2,14956,285280 ,2,14957,45 ,2,14958,107255 ,2,14959,45 ,2,14960,107245 ,2,14961,45 ,2,14962,107235 ,2,14963,271240 ,2,14964,278125 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583625 ,2,14970,75 ,2,14971,350150 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,78945 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271240 ,2,14964,278125 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,285385 ,2,14957,45 ,2,14958,107340 ,2,14959,45 ,2,14960,107305 ,2,14961,45 ,2,14962,107295 ,2,14963,271250 ,2,14964,278140 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583635 ,2,14970,75 ,2,14971,350250 ,2,829,45 ,1,0,79095 ,1,1,78945 ,1,2,79075 ,1,3,79060 ,1,4,79050 ,1,5,79040 ,1,6,79030 ,1,7,78995 ,1,8,78985 ,1,9,79085 ,1,10,78975 ,1,11,78965 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271250 ,2,14964,278140 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78885 ,1,1,78925 ,2,14956,285465 ,2,14957,45 ,2,14958,107400 ,2,14959,45 ,2,14960,107390 ,2,14961,45 ,2,14962,107380 ,2,14963,271260 ,2,14964,278150 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583660 ,2,14970,75 ,2,14971,350330 ,2,829,45 ,1,0,3010 ,1,1,190350 ,1,2,190340 ,1,3,190330 ,1,4,613640 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271260 ,2,14964,278150 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,190400 ,1,1,45 ,2,14956,285575 ,2,14957,45 ,2,14958,107495 ,2,14959,45 ,2,14960,107460 ,2,14961,45 ,2,14962,107450 ,2,14963,271270 ,2,14964,278160 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583670 ,2,14970,75 ,2,14971,350395 ,2,829,45 ,1,0,12445 ,1,1,169850 ,1,2,190440 ,1,3,190430 ,1,4,190420 ,1,5,190410 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271270 ,2,14964,278160 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,562775 ,2,14956,285665 ,2,14957,45 ,2,14958,107580 ,2,14959,45 ,2,14960,107570 ,2,14961,45 ,2,14962,107560 ,2,14963,271280 ,2,14964,278170 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583680 ,2,14970,75 ,2,14971,350500 ,2,829,45 ,1,0,558305 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271280 ,2,14964,278170 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256715 ,1,1,256705 ,2,14956,285775 ,2,14957,45 ,2,14958,107670 ,2,14959,45 ,2,14960,107630 ,2,14961,45 ,2,14962,107620 ,2,14963,271290 ,2,14964,278195 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583690 ,2,14970,75 ,2,14971,350585 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271290 ,2,14964,278195 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79155 ,1,1,79145 ,2,14956,285865 ,2,14957,45 ,2,14958,107735 ,2,14959,45 ,2,14960,107725 ,2,14961,45 ,2,14962,107715 ,2,14963,271300 ,2,14964,278205 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583750 ,2,14970,75 ,2,14971,350665 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271300 ,2,14964,278205 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79175 ,2,14956,285945 ,2,14957,45 ,2,14958,107830 ,2,14959,45 ,2,14960,107815 ,2,14961,45 ,2,14962,107805 ,2,14963,271330 ,2,14964,278215 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583760 ,2,14970,75 ,2,14971,350730 ,2,829,45 ,1,0,79195 ,1,1,79185 ,1,2,79310 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271330 ,2,14964,278215 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79105 ,1,1,79300 ,1,2,79290 ,1,3,79280 ,1,4,79265 ,1,5,79255 ,1,6,79245 ,1,7,79235 ,1,8,79205 ,2,14956,286015 ,2,14957,45 ,2,14958,107915 ,2,14959,45 ,2,14960,107905 ,2,14961,45 ,2,14962,107895 ,2,14963,271340 ,2,14964,278225 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583770 ,2,14970,75 ,2,14971,350835 ,2,829,45 ,1,0,190565 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271340 ,2,14964,278225 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,190585 ,1,1,45 ,2,14956,286110 ,2,14957,45 ,2,14958,107985 ,2,14959,45 ,2,14960,107965 ,2,14961,45 ,2,14962,107955 ,2,14963,271350 ,2,14964,278245 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583780 ,2,14970,75 ,2,14971,350925 ,2,829,45 ,1,0,190620 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271350 ,2,14964,278245 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,190640 ,1,1,45 ,2,14956,286215 ,2,14957,45 ,2,14958,108045 ,2,14959,45 ,2,14960,108035 ,2,14961,45 ,2,14962,108025 ,2,14963,271360 ,2,14964,278255 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583810 ,2,14970,75 ,2,14971,350995 ,2,829,45 ,1,0,79195 ,1,1,79185 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271360 ,2,14964,278255 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,12445 ,1,1,167555 ,1,2,190440 ,1,3,190430 ,1,4,190420 ,1,5,190410 ,2,14956,286300 ,2,14957,45 ,2,14958,108140 ,2,14959,45 ,2,14960,108125 ,2,14961,45 ,2,14962,108115 ,2,14963,271375 ,2,14964,278265 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583820 ,2,14970,75 ,2,14971,351055 ,2,829,45 ,1,0,79335 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271375 ,2,14964,278265 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,562860 ,2,14956,286400 ,2,14957,45 ,2,14958,108220 ,2,14959,45 ,2,14960,108210 ,2,14961,45 ,2,14962,108200 ,2,14963,271385 ,2,14964,278275 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583840 ,2,14970,75 ,2,14971,351155 ,2,829,45 ,1,0,79355 ,1,1,79345 ,1,2,79335 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271385 ,2,14964,278275 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80070 ,1,1,79500 ,2,14956,286505 ,2,14957,45 ,2,14958,108300 ,2,14959,45 ,2,14960,108275 ,2,14961,45 ,2,14962,108265 ,2,14963,271395 ,2,14964,278295 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583850 ,2,14970,75 ,2,14971,351230 ,2,829,45 ,1,0,12445 ,1,1,183195 ,1,2,190770 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271395 ,2,14964,278295 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,58985 ,2,14956,286615 ,2,14957,45 ,2,14958,108365 ,2,14959,45 ,2,14960,108355 ,2,14961,45 ,2,14962,108345 ,2,14963,271405 ,2,14964,278305 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583880 ,2,14970,75 ,2,14971,351330 ,2,829,45 ,1,0,3010 ,1,1,190770 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271405 ,2,14964,278305 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79500 ,2,14956,286710 ,2,14957,45 ,2,14958,108465 ,2,14959,45 ,2,14960,108445 ,2,14961,45 ,2,14962,108435 ,2,14963,271435 ,2,14964,278315 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583890 ,2,14970,75 ,2,14971,351390 ,2,829,45 ,1,0,191570 ,1,1,3770 ,1,2,167895 ,1,3,191560 ,1,4,191550 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271435 ,2,14964,278315 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,79520 ,2,14956,286780 ,2,14957,45 ,2,14958,108545 ,2,14959,45 ,2,14960,108535 ,2,14961,45 ,2,14962,108525 ,2,14963,271445 ,2,14964,278325 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583900 ,2,14970,75 ,2,14971,351495 ,2,829,45 ,1,0,79500 ,1,1,79400 ,1,2,79410 ,1,3,78745 ,1,4,79520 ,1,5,79870 ,1,6,78845 ,1,7,79910 ,1,8,78855 ,1,9,79965 ,1,10,79900 ,1,11,80090 ,1,12,79715 ,1,13,79675 ,1,14,80080 ,1,15,78725 ,1,16,78715 ,1,17,79600 ,1,18,78875 ,1,19,79995 ,1,20,80070 ,1,21,79795 ,1,22,79380 ,1,23,79550 ,1,24,79480 ,1,25,79590 ,1,26,78770 ,1,27,79665 ,1,28,79755 ,1,29,79985 ,1,30,79460 ,1,31,79580 ,1,32,79645 ,1,33,79815 ,1,34,79880 ,1,35,80035 ,1,36,79775 ,1,37,79470 ,1,38,79765 ,1,39,80125 ,1,40,79685 ,1,41,80015 ,1,42,79825 ,1,43,80135 ,1,44,80145 ,1,45,79390 ,1,46,79890 ,1,47,79570 ,1,48,79560 ,1,49,79860 ,1,50,79920 ,1,51,79705 ,1,52,79695 ,1,53,79850 ,1,54,80100 ,1,55,79655 ,1,56,79540 ,1,57,79450 ,1,58,79805 ,1,59,80025 ,1,60,79610 ,1,61,79785 ,1,62,80170 ,1,63,80115 ,1,64,78790 ,1,65,79510 ,1,66,78825 ,1,67,80045 ,1,68,78660 ,1,69,79490 ,1,70,79975 ,1,71,79365 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271445 ,2,14964,278325 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,189885 ,1,1,45 ,1,2,80210 ,2,14956,286855 ,2,14957,45 ,2,14958,108640 ,2,14959,45 ,2,14960,108605 ,2,14961,45 ,2,14962,108595 ,2,14963,271455 ,2,14964,278335 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583910 ,2,14970,75 ,2,14971,351570 ,2,829,45 ,1,0,80220 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271455 ,2,14964,278335 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,562685 ,2,14956,286955 ,2,14957,45 ,2,14958,108700 ,2,14959,45 ,2,14960,108690 ,2,14961,45 ,2,14962,108680 ,2,14963,271465 ,2,14964,278345 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583945 ,2,14970,75 ,2,14971,351655 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,80640 ,1,4,65 ,1,5,80630 ,1,6,80620 ,1,7,80610 ,1,8,80575 ,1,9,65 ,1,10,65 ,1,11,80565 ,1,12,65 ,1,13,80555 ,1,14,65 ,1,15,65 ,1,16,80545 ,1,17,80525 ,1,18,65 ,1,19,80515 ,1,20,80505 ,1,21,65 ,1,22,80495 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,80455 ,1,37,80445 ,1,38,80435 ,1,39,80220 ,1,40,65 ,1,41,80425 ,1,42,80410 ,1,43,65 ,1,44,80400 ,1,45,80390 ,1,46,80380 ,1,47,80355 ,1,48,80345 ,1,49,80335 ,1,50,65 ,1,51,65 ,1,52,80325 ,1,53,80310 ,1,54,80300 ,1,55,65 ,1,56,80290 ,1,57,65 ,1,58,65 ,1,59,80280 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,80240 ,1,65,80230 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271465 ,2,14964,278345 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80280 ,2,14956,287055 ,2,14957,45 ,2,14958,108780 ,2,14959,45 ,2,14960,108770 ,2,14961,45 ,2,14962,108760 ,2,14963,271480 ,2,14964,278355 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583955 ,2,14970,75 ,2,14971,351715 ,2,829,45 ,1,0,80445 ,1,1,80325 ,1,2,80280 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271480 ,2,14964,278355 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80515 ,1,1,80325 ,1,2,80280 ,1,3,80525 ,1,4,58985 ,2,14956,287145 ,2,14957,45 ,2,14958,108875 ,2,14959,45 ,2,14960,108865 ,2,14961,45 ,2,14962,108855 ,2,14963,271490 ,2,14964,278365 ,2,14965,45 ,2,14966,583105 ,2,14967,45 ,2,14968,75 ,2,14969,583965 ,2,14970,75 ,2,14971,351805 ,2,829,45 ,1,0,80515 ,1,1,80555 ,1,2,80445 ,1,3,80325 ,1,4,80280 ,1,5,80620 ,1,6,80575 ,1,7,80230 ,1,8,80345 ,1,9,80525 ,1,10,80220 ,1,11,80290 ,1,12,80380 ,1,13,80455 ,1,14,80425 ,1,15,80545 ,1,16,80300 ,1,17,80565 ,1,18,80495 ,1,19,80435 ,1,20,80335 ,1,21,80640 ,1,22,80610 ,1,23,80310 ,1,24,80390 ,1,25,80240 ,1,26,80630 ,1,27,80355 ,1,28,80505 ,1,29,80410 ,1,30,80400 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271490 ,2,14964,278365 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80655 ,2,14956,287275 ,2,14957,45 ,2,14958,109020 ,2,14959,45 ,2,14960,109010 ,2,14961,45 ,2,14962,108995 ,2,14963,271500 ,2,14964,278400 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,583975 ,2,14970,75 ,2,14971,351895 ,2,829,45 ,2,14956,287210 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,108925 ,2,14963,271510 ,2,14964,278390 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,584010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80770 ,1,1,80745 ,1,2,80735 ,1,3,80715 ,1,4,81055 ,1,5,80685 ,1,6,80675 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271510 ,2,14964,278390 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271500 ,2,14964,278400 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80725 ,2,14956,287355 ,2,14957,45 ,2,14958,109090 ,2,14959,45 ,2,14960,109080 ,2,14961,45 ,2,14962,109070 ,2,14963,271570 ,2,14964,278410 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,584020 ,2,14970,75 ,2,14971,351925 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373870 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271570 ,2,14964,278410 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,287805 ,2,14957,45 ,2,14958,109365 ,2,14959,45 ,2,14960,109355 ,2,14961,45 ,2,14962,109345 ,2,14963,271580 ,2,14964,278430 ,2,14965,45 ,2,14966,584035 ,2,14967,45 ,2,14968,75 ,2,14969,584030 ,2,14970,75 ,2,14971,351985 ,2,829,45 ,1,0,80780 ,1,1,80790 ,2,14956,287700 ,2,14957,45 ,2,14958,109300 ,2,14959,109200 ,2,14960,109190 ,2,14961,45 ,2,14962,109180 ,2,14963,271590 ,2,14964,278420 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,584040 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,374195 ,1,3,65 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271590 ,2,14964,278420 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271580 ,2,14964,278430 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80800 ,2,14956,287890 ,2,14957,45 ,2,14958,109460 ,2,14959,45 ,2,14960,109450 ,2,14961,45 ,2,14962,109430 ,2,14963,271600 ,2,14964,278440 ,2,14965,45 ,2,14966,584035 ,2,14967,45 ,2,14968,75 ,2,14969,584065 ,2,14970,75 ,2,14971,352250 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271600 ,2,14964,278440 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373845 ,1,3,65 ,2,14956,287945 ,2,14957,45 ,2,14958,109525 ,2,14959,45 ,2,14960,109515 ,2,14961,45 ,2,14962,109505 ,2,14963,271610 ,2,14964,278450 ,2,14965,45 ,2,14966,584035 ,2,14967,45 ,2,14968,75 ,2,14969,584070 ,2,14970,75 ,2,14971,352285 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,374185 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271610 ,2,14964,278450 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,288165 ,2,14957,45 ,2,14958,109730 ,2,14959,45 ,2,14960,109720 ,2,14961,45 ,2,14962,109710 ,2,14963,271620 ,2,14964,278490 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584075 ,2,14970,75 ,2,14971,352305 ,2,829,45 ,1,0,80850 ,2,14956,288095 ,2,14957,45 ,2,14958,109605 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,109570 ,2,14963,271630 ,2,14964,278460 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,584090 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271630 ,2,14964,278460 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80870 ,1,1,80860 ,1,2,81020 ,1,3,80840 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271620 ,2,14964,278490 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,80890 ,1,1,59725 ,1,2,58475 ,1,3,58585 ,1,4,58385 ,2,14956,288215 ,2,14957,45 ,2,14958,109815 ,2,14959,45 ,2,14960,109785 ,2,14961,45 ,2,14962,109775 ,2,14963,271640 ,2,14964,278500 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584095 ,2,14970,75 ,2,14971,352455 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271640 ,2,14964,278500 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256755 ,1,1,256765 ,2,14956,288350 ,2,14957,45 ,2,14958,109895 ,2,14959,45 ,2,14960,109885 ,2,14961,45 ,2,14962,109875 ,2,14963,271670 ,2,14964,278510 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,584100 ,2,14970,75 ,2,14971,352540 ,2,829,45 ,1,0,80890 ,1,1,81010 ,1,2,81000 ,1,3,80990 ,1,4,80980 ,1,5,80970 ,1,6,80960 ,1,7,80920 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271670 ,2,14964,278510 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81010 ,2,14956,288445 ,2,14957,45 ,2,14958,110005 ,2,14959,45 ,2,14960,109995 ,2,14961,45 ,2,14962,109980 ,2,14963,271680 ,2,14964,278520 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584105 ,2,14970,75 ,2,14971,352605 ,2,829,45 ,1,0,80890 ,1,1,57510 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271680 ,2,14964,278520 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57795 ,1,1,57510 ,2,14956,288505 ,2,14957,45 ,2,14958,110080 ,2,14959,45 ,2,14960,110070 ,2,14961,45 ,2,14962,110060 ,2,14963,271690 ,2,14964,278530 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584135 ,2,14970,75 ,2,14971,352635 ,2,829,45 ,1,0,80735 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271690 ,2,14964,278530 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,12445 ,1,1,192320 ,1,2,192310 ,1,3,192300 ,1,4,192290 ,1,5,192280 ,2,14956,288580 ,2,14957,45 ,2,14958,110185 ,2,14959,45 ,2,14960,110175 ,2,14961,45 ,2,14962,110140 ,2,14963,271700 ,2,14964,278540 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584140 ,2,14970,75 ,2,14971,352665 ,2,829,45 ,1,0,81100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271700 ,2,14964,278540 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81100 ,1,1,80655 ,1,2,81230 ,1,3,81220 ,1,4,81210 ,1,5,81195 ,1,6,81175 ,1,7,81130 ,1,8,81110 ,1,9,78400 ,1,10,78505 ,1,11,80665 ,1,12,81065 ,2,14956,288645 ,2,14957,45 ,2,14958,110250 ,2,14959,45 ,2,14960,110240 ,2,14961,45 ,2,14962,110230 ,2,14963,271720 ,2,14964,278550 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584145 ,2,14970,75 ,2,14971,352700 ,2,829,45 ,1,0,192405 ,1,1,81165 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271720 ,2,14964,278550 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,192425 ,1,1,45 ,2,14956,288695 ,2,14957,45 ,2,14958,110325 ,2,14959,45 ,2,14960,110315 ,2,14961,45 ,2,14962,110300 ,2,14963,271730 ,2,14964,278560 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584150 ,2,14970,75 ,2,14971,352740 ,2,829,45 ,1,0,192475 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271730 ,2,14964,278560 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81320 ,2,14956,288770 ,2,14957,45 ,2,14958,110415 ,2,14959,45 ,2,14960,110405 ,2,14961,45 ,2,14962,110395 ,2,14963,271740 ,2,14964,278575 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584160 ,2,14970,75 ,2,14971,352770 ,2,829,45 ,1,0,9255 ,1,1,167770 ,1,2,189355 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271740 ,2,14964,278575 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,599970 ,2,14956,288825 ,2,14957,45 ,2,14958,110505 ,2,14959,45 ,2,14960,110495 ,2,14961,45 ,2,14962,110460 ,2,14963,271750 ,2,14964,278585 ,2,14965,45 ,2,14966,584080 ,2,14967,45 ,2,14968,75 ,2,14969,584165 ,2,14970,75 ,2,14971,352840 ,2,829,45 ,1,0,167770 ,1,1,189355 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271750 ,2,14964,278585 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,359430 ,1,6,65 ,1,7,359420 ,1,8,359410 ,1,9,65 ,2,14956,288895 ,2,14957,45 ,2,14958,110565 ,2,14959,45 ,2,14960,110555 ,2,14961,45 ,2,14962,110545 ,2,14963,271770 ,2,14964,278595 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,584170 ,2,14970,75 ,2,14971,352865 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271770 ,2,14964,278595 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81310 ,2,14956,289035 ,2,14957,45 ,2,14958,110660 ,2,14959,45 ,2,14960,110650 ,2,14961,45 ,2,14962,110640 ,2,14963,271780 ,2,14964,278605 ,2,14965,45 ,2,14966,584005 ,2,14967,45 ,2,14968,75 ,2,14969,584175 ,2,14970,75 ,2,14971,352895 ,2,829,45 ,1,0,78260 ,1,1,78270 ,2,14956,8220 ,2,14957,45 ,2,14958,110620 ,2,14959,45 ,2,14960,110610 ,2,14961,45 ,2,14962,75 ,2,14963,271780 ,2,14964,278605 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,289140 ,2,14957,45 ,2,14958,110855 ,2,14959,45 ,2,14960,110845 ,2,14961,45 ,2,14962,110835 ,2,14963,271790 ,2,14964,278630 ,2,14965,45 ,2,14966,584210 ,2,14967,45 ,2,14968,75 ,2,14969,584205 ,2,14970,75 ,2,14971,352970 ,2,829,45 ,1,0,81400 ,2,14956,289110 ,2,14957,45 ,2,14958,110770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,110760 ,2,14963,271800 ,2,14964,278620 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,584215 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167770 ,1,1,184220 ,1,2,192740 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271800 ,2,14964,278620 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256545 ,1,1,256800 ,1,2,256790 ,1,3,256820 ,1,4,256555 ,1,5,256575 ,1,6,256810 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271790 ,2,14964,278630 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,78070 ,1,1,81320 ,1,2,78105 ,1,3,81380 ,1,4,78290 ,1,5,81330 ,1,6,81390 ,2,14956,289200 ,2,14957,45 ,2,14958,110940 ,2,14959,45 ,2,14960,110930 ,2,14961,45 ,2,14962,110920 ,2,14963,271815 ,2,14964,278640 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,584225 ,2,14970,75 ,2,14971,352990 ,2,829,45 ,1,0,9255 ,1,1,192820 ,1,2,192805 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271815 ,2,14964,278640 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,562575 ,1,2,599870 ,2,14956,289290 ,2,14957,45 ,2,14958,111025 ,2,14959,45 ,2,14960,110990 ,2,14961,45 ,2,14962,110980 ,2,14963,271825 ,2,14964,278650 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,584230 ,2,14970,75 ,2,14971,353070 ,2,829,45 ,1,0,192820 ,1,1,192805 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271825 ,2,14964,278650 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,77900 ,1,1,57795 ,1,2,79335 ,2,14956,289330 ,2,14957,45 ,2,14958,111100 ,2,14959,45 ,2,14960,111090 ,2,14961,45 ,2,14962,111080 ,2,14963,271835 ,2,14964,278680 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,584235 ,2,14970,75 ,2,14971,353125 ,2,829,45 ,1,0,56320 ,1,1,56415 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271835 ,2,14964,278680 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,289395 ,2,14957,45 ,2,14958,111205 ,2,14959,45 ,2,14960,111195 ,2,14961,45 ,2,14962,111175 ,2,14963,271845 ,2,14964,278690 ,2,14965,45 ,2,14966,584210 ,2,14967,45 ,2,14968,75 ,2,14969,584240 ,2,14970,75 ,2,14971,353160 ,2,829,45 ,1,0,81480 ,1,1,81450 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271845 ,2,14964,278690 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558235 ,2,14956,289485 ,2,14957,45 ,2,14958,111275 ,2,14959,45 ,2,14960,111265 ,2,14961,45 ,2,14962,111255 ,2,14963,271870 ,2,14964,278700 ,2,14965,45 ,2,14966,582875 ,2,14967,45 ,2,14968,75 ,2,14969,584260 ,2,14970,75 ,2,14971,353180 ,2,829,45 ,1,0,81490 ,1,1,81510 ,1,2,81500 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271870 ,2,14964,278700 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,289590 ,2,14957,45 ,2,14958,111425 ,2,14959,45 ,2,14960,111415 ,2,14961,45 ,2,14962,111405 ,2,14963,271880 ,2,14964,278725 ,2,14965,45 ,2,14966,584270 ,2,14967,45 ,2,14968,75 ,2,14969,584265 ,2,14970,75 ,2,14971,353235 ,2,829,45 ,1,0,266980 ,1,1,266970 ,1,2,266940 ,1,3,266930 ,1,4,266920 ,1,5,266910 ,1,6,266895 ,1,7,266885 ,1,8,267120 ,1,9,266875 ,1,10,266865 ,1,11,266835 ,1,12,266825 ,1,13,266815 ,1,14,266805 ,1,15,266790 ,1,16,266780 ,1,17,266770 ,1,18,266760 ,1,19,266735 ,1,20,266725 ,1,21,266715 ,1,22,266705 ,1,23,266695 ,1,24,266685 ,1,25,266675 ,1,26,266665 ,1,27,266620 ,1,28,266610 ,1,29,266600 ,1,30,266590 ,1,31,266580 ,1,32,266570 ,1,33,45 ,1,34,45 ,1,35,45 ,1,36,45 ,1,37,45 ,1,38,45 ,1,39,45 ,1,40,45 ,1,41,45 ,1,42,45 ,1,43,45 ,1,44,45 ,1,45,45 ,1,46,45 ,1,47,45 ,1,48,45 ,1,49,45 ,1,50,45 ,1,51,45 ,1,52,45 ,1,53,45 ,1,54,45 ,1,55,45 ,1,56,45 ,1,57,45 ,1,58,45 ,1,59,45 ,1,60,45 ,1,61,45 ,1,62,45 ,2,14956,289535 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111365 ,2,14963,271890 ,2,14964,278710 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,584275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256860 ,1,1,256850 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271890 ,2,14964,278710 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271880 ,2,14964,278725 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81565 ,1,1,81550 ,2,14956,289635 ,2,14957,45 ,2,14958,111520 ,2,14959,45 ,2,14960,111505 ,2,14961,45 ,2,14962,111495 ,2,14963,271900 ,2,14964,278735 ,2,14965,45 ,2,14966,584270 ,2,14967,45 ,2,14968,75 ,2,14969,584280 ,2,14970,75 ,2,14971,353275 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,82205 ,1,4,65 ,1,5,82175 ,1,6,82130 ,1,7,65 ,1,8,65 ,1,9,82120 ,1,10,82110 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,82100 ,1,15,65 ,1,16,82070 ,1,17,65 ,1,18,65 ,1,19,82060 ,1,20,82015 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,82005 ,1,27,81995 ,1,28,65 ,1,29,81955 ,1,30,81605 ,1,31,81595 ,1,32,81585 ,1,33,81575 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271900 ,2,14964,278735 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563085 ,2,14956,289705 ,2,14957,45 ,2,14958,111580 ,2,14959,45 ,2,14960,111570 ,2,14961,45 ,2,14962,111560 ,2,14963,271910 ,2,14964,278745 ,2,14965,45 ,2,14966,584270 ,2,14967,45 ,2,14968,75 ,2,14969,584285 ,2,14970,75 ,2,14971,353295 ,2,829,45 ,1,0,558235 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271910 ,2,14964,278745 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81660 ,1,1,81635 ,1,2,81625 ,1,3,81615 ,2,14956,289830 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111620 ,2,14963,270395 ,2,14964,277430 ,2,14965,551620 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,605200 ,2,14970,75 ,2,14971,353410 ,2,829,45 ,1,0,193540 ,1,1,45 ,2,14956,289850 ,2,14957,45 ,2,14958,111640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111630 ,2,14963,270365 ,2,14964,277430 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,582460 ,2,14970,75 ,2,14971,345230 ,2,829,45 ,2,14956,289905 ,2,14957,45 ,2,14958,111695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111685 ,2,14963,270475 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584295 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81700 ,1,1,81690 ,1,2,81680 ,2,14956,289915 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111705 ,2,14963,270325 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,61320 ,2,14956,289935 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111715 ,2,14963,270375 ,2,14964,277430 ,2,14965,551630 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,605205 ,2,14970,75 ,2,14971,353400 ,2,829,45 ,1,0,563115 ,2,14956,289955 ,2,14957,45 ,2,14958,111740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111730 ,2,14963,270485 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584325 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563110 ,2,14956,289965 ,2,14957,45 ,2,14958,111760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111750 ,2,14963,270345 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81780 ,1,1,81710 ,2,14956,289995 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111795 ,2,14963,270335 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584335 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,69255 ,1,1,66960 ,1,2,82060 ,2,14956,277660 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111805 ,2,14963,270505 ,2,14964,277430 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,584340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,264255 ,2,14957,45 ,2,14958,111825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111815 ,2,14963,270385 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584345 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81790 ,2,14956,290015 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111845 ,2,14963,270460 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584350 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81800 ,2,14956,290040 ,2,14957,45 ,2,14958,111865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111855 ,2,14963,270430 ,2,14964,277430 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,584355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81800 ,1,1,81730 ,1,2,81825 ,1,3,81670 ,1,4,81810 ,1,5,81720 ,2,14956,290050 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111875 ,2,14963,270450 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584395 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,193715 ,1,1,45 ,2,14956,290070 ,2,14957,45 ,2,14958,111910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111900 ,2,14963,270440 ,2,14964,277430 ,2,14965,45 ,2,14966,582455 ,2,14967,45 ,2,14968,75 ,2,14969,584400 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563140 ,2,14956,290260 ,2,14957,45 ,2,14958,112005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,111995 ,2,14963,270260 ,2,14964,277415 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,584420 ,2,14970,75 ,2,14971,353495 ,2,829,45 ,2,14956,290300 ,2,14957,45 ,2,14958,112040 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112025 ,2,14963,270270 ,2,14964,277415 ,2,14965,45 ,2,14966,582375 ,2,14967,45 ,2,14968,75 ,2,14969,584425 ,2,14970,75 ,2,14971,353555 ,2,829,45 ,1,0,81935 ,1,1,81885 ,1,2,81845 ,2,14956,290850 ,2,14957,45 ,2,14958,112170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112160 ,2,14963,271975 ,2,14964,278755 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,584475 ,2,14970,75 ,2,14971,353600 ,2,829,45 ,1,0,193760 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271975 ,2,14964,278755 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256920 ,2,14956,290840 ,2,14957,45 ,2,14958,112275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112265 ,2,14963,271985 ,2,14964,278795 ,2,14965,45 ,2,14966,579300 ,2,14967,45 ,2,14968,75 ,2,14969,584495 ,2,14970,75 ,2,14971,353610 ,2,829,45 ,1,0,81835 ,1,1,81895 ,1,2,81915 ,1,3,81855 ,1,4,81925 ,1,5,81905 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271985 ,2,14964,278795 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,193810 ,1,1,45 ,2,14956,290660 ,2,14957,45 ,2,14958,112245 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112235 ,2,14963,271985 ,2,14964,278795 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,112225 ,2,14969,584500 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,373780 ,1,7,373760 ,1,8,373750 ,1,9,65 ,2,14956,290925 ,2,14957,45 ,2,14958,112480 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,112470 ,2,14963,271995 ,2,14964,278805 ,2,14965,551715 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,584505 ,2,14970,75 ,2,14971,353925 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,112365 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,271995 ,2,14964,278805 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82025 ,1,1,82050 ,1,2,82040 ,2,14956,291025 ,2,14957,45 ,2,14958,112600 ,2,14959,45 ,2,14960,112590 ,2,14961,45 ,2,14962,112580 ,2,14963,272005 ,2,14964,278815 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,584570 ,2,14970,75 ,2,14971,354230 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272005 ,2,14964,278815 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,291745 ,2,14957,45 ,2,14958,113045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113035 ,2,14963,267105 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584620 ,2,14970,112645 ,2,14971,354365 ,2,829,45 ,1,0,267000 ,1,1,266990 ,1,2,45 ,2,14956,291680 ,2,14957,45 ,2,14958,113025 ,2,14959,112920 ,2,14960,112910 ,2,14961,45 ,2,14962,112900 ,2,14963,267105 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584575 ,2,14970,112680 ,2,14971,354405 ,2,829,45 ,1,0,256930 ,2,14956,291775 ,2,14957,45 ,2,14958,113145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113135 ,2,14963,267345 ,2,14964,280675 ,2,14965,551770 ,2,14966,584630 ,2,14967,45 ,2,14968,75 ,2,14969,584625 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,18900 ,1,2,256930 ,1,3,614705 ,2,14956,291850 ,2,14957,45 ,2,14958,113235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113155 ,2,14963,267095 ,2,14964,280580 ,2,14965,45 ,2,14966,584645 ,2,14967,45 ,2,14968,75 ,2,14969,584640 ,2,14970,75 ,2,14971,354805 ,2,829,45 ,2,14956,291840 ,2,14957,45 ,2,14958,113205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113165 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584675 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256940 ,2,14956,291870 ,2,14957,45 ,2,14958,113270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113260 ,2,14963,266210 ,2,14964,280675 ,2,14965,551780 ,2,14966,584690 ,2,14967,45 ,2,14968,75 ,2,14969,584685 ,2,14970,75 ,2,14971,354910 ,2,829,45 ,1,0,82145 ,2,14956,292645 ,2,14957,45 ,2,14958,113595 ,2,14959,113315 ,2,14960,75 ,2,14961,45 ,2,14962,113280 ,2,14963,272020 ,2,14964,280645 ,2,14965,551795 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584695 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82205 ,1,1,81575 ,2,14956,292370 ,2,14957,45 ,2,14958,113335 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113325 ,2,14963,272020 ,2,14964,280645 ,2,14965,45 ,2,14966,584705 ,2,14967,45 ,2,14968,75 ,2,14969,584700 ,2,14970,75 ,2,14971,355005 ,2,829,45 ,1,0,81595 ,1,1,82060 ,1,2,82110 ,1,3,81605 ,1,4,81955 ,1,5,81585 ,1,6,82005 ,1,7,82015 ,1,8,81995 ,1,9,82175 ,1,10,82120 ,1,11,81575 ,1,12,82205 ,1,13,82070 ,1,14,82130 ,1,15,82100 ,2,14956,8220 ,2,14957,45 ,2,14958,113355 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272030 ,2,14964,280645 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,19525 ,1,1,18805 ,1,2,18855 ,1,3,19515 ,1,4,45 ,1,5,19475 ,1,6,81955 ,1,7,19465 ,1,8,19455 ,1,9,45 ,1,10,45 ,1,11,19420 ,1,12,45 ,1,13,45 ,1,14,81605 ,1,15,19410 ,1,16,18775 ,1,17,82175 ,1,18,19400 ,1,19,82100 ,1,20,45 ,1,21,45 ,1,22,18705 ,1,23,45 ,1,24,45 ,1,25,82120 ,1,26,45 ,1,27,45 ,1,28,45 ,1,29,45 ,1,30,45 ,1,31,18815 ,1,32,19365 ,1,33,18865 ,1,34,45 ,1,35,19355 ,1,36,19345 ,1,37,19335 ,1,38,19325 ,1,39,19295 ,1,40,19255 ,1,41,18755 ,1,42,256860 ,1,43,19245 ,1,44,18785 ,1,45,18875 ,1,46,19235 ,1,47,45 ,1,48,82130 ,1,49,81575 ,1,50,19225 ,1,51,82005 ,1,52,19210 ,1,53,45 ,1,54,45 ,1,55,18795 ,1,56,45 ,1,57,45 ,1,58,81595 ,1,59,19130 ,1,60,45 ,1,61,82070 ,1,62,19120 ,1,63,19110 ,1,64,18765 ,1,65,19100 ,1,66,18825 ,1,67,45 ,1,68,19090 ,1,69,82060 ,1,70,81995 ,1,71,82205 ,1,72,256850 ,1,73,19080 ,1,74,19050 ,1,75,19020 ,1,76,19010 ,1,77,19000 ,1,78,81585 ,1,79,82015 ,1,80,18990 ,1,81,82110 ,1,82,18980 ,1,83,18930 ,1,84,18920 ,1,85,621765 ,2,14956,292155 ,2,14957,45 ,2,14958,113455 ,2,14959,113445 ,2,14960,75 ,2,14961,45 ,2,14962,113435 ,2,14963,272020 ,2,14964,280645 ,2,14965,45 ,2,14966,584745 ,2,14967,45 ,2,14968,75 ,2,14969,584710 ,2,14970,113365 ,2,14971,355545 ,2,829,45 ,2,14956,291970 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113425 ,2,14963,272020 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584745 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,292235 ,2,14957,45 ,2,14958,113540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113530 ,2,14963,272020 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584750 ,2,14970,75 ,2,14971,355570 ,2,829,45 ,1,0,82215 ,2,14956,292690 ,2,14957,45 ,2,14958,113765 ,2,14959,113700 ,2,14960,75 ,2,14961,45 ,2,14962,113675 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559020 ,2,14967,45 ,2,14968,75 ,2,14969,584770 ,2,14970,113665 ,2,14971,45 ,2,829,45 ,1,0,563180 ,2,14956,292670 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113690 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584775 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,256970 ,1,1,256960 ,1,2,256950 ,2,14956,13030 ,2,14957,45 ,2,14958,113720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113710 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584805 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82265 ,1,1,82255 ,1,2,82245 ,2,14956,292700 ,2,14957,45 ,2,14958,113815 ,2,14959,113805 ,2,14960,75 ,2,14961,45 ,2,14962,113785 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,561575 ,2,14967,45 ,2,14968,75 ,2,14969,584825 ,2,14970,113775 ,2,14971,45 ,2,829,45 ,2,14956,292750 ,2,14957,45 ,2,14958,113940 ,2,14959,113875 ,2,14960,75 ,2,14961,45 ,2,14962,113835 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559020 ,2,14967,45 ,2,14968,75 ,2,14969,584870 ,2,14970,113825 ,2,14971,45 ,2,829,45 ,1,0,257010 ,2,14956,292730 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113865 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584880 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,4340 ,2,14957,45 ,2,14958,113895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,113885 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,584895 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,292760 ,2,14957,45 ,2,14958,113995 ,2,14959,113985 ,2,14960,75 ,2,14961,45 ,2,14962,113960 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,561575 ,2,14967,45 ,2,14968,75 ,2,14969,584955 ,2,14970,113950 ,2,14971,45 ,2,829,45 ,1,0,82325 ,1,1,82315 ,1,2,82305 ,2,14956,292790 ,2,14957,45 ,2,14958,114120 ,2,14959,114040 ,2,14960,75 ,2,14961,45 ,2,14962,114015 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559020 ,2,14967,45 ,2,14968,75 ,2,14969,585000 ,2,14970,114005 ,2,14971,45 ,2,829,45 ,1,0,194410 ,1,1,45 ,2,14956,292770 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114030 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,585005 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563110 ,2,14956,10180 ,2,14957,45 ,2,14958,114060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114050 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,585020 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82370 ,1,1,82335 ,2,14956,292800 ,2,14957,45 ,2,14958,114165 ,2,14959,114155 ,2,14960,75 ,2,14961,45 ,2,14962,114140 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,561575 ,2,14967,45 ,2,14968,75 ,2,14969,585065 ,2,14970,114130 ,2,14971,45 ,2,829,45 ,2,14956,292845 ,2,14957,45 ,2,14958,114235 ,2,14959,114225 ,2,14960,75 ,2,14961,45 ,2,14962,114185 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,561575 ,2,14967,45 ,2,14968,75 ,2,14969,585085 ,2,14970,114175 ,2,14971,45 ,2,829,45 ,1,0,82405 ,2,14956,292990 ,2,14957,45 ,2,14958,114495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114485 ,2,14963,272040 ,2,14964,278825 ,2,14965,45 ,2,14966,585130 ,2,14967,45 ,2,14968,75 ,2,14969,585125 ,2,14970,75 ,2,14971,356170 ,2,829,45 ,2,14956,292875 ,2,14957,45 ,2,14958,114290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114280 ,2,14963,272040 ,2,14964,278825 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82445 ,1,1,82435 ,1,2,82425 ,1,3,82415 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272040 ,2,14964,278825 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,194590 ,1,1,45 ,2,14956,292905 ,2,14957,45 ,2,14958,114380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114370 ,2,14963,272040 ,2,14964,278825 ,2,14965,45 ,2,14966,585130 ,2,14967,45 ,2,14968,114360 ,2,14969,585140 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563295 ,2,14956,292915 ,2,14957,45 ,2,14958,114400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114390 ,2,14963,272040 ,2,14964,278825 ,2,14965,45 ,2,14966,585130 ,2,14967,45 ,2,14968,75 ,2,14969,585145 ,2,14970,75 ,2,14971,356180 ,2,829,45 ,2,14956,292955 ,2,14957,45 ,2,14958,114475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114465 ,2,14963,272040 ,2,14964,278825 ,2,14965,45 ,2,14966,585130 ,2,14967,45 ,2,14968,114455 ,2,14969,585150 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,57795 ,1,1,58895 ,2,14956,293070 ,2,14957,45 ,2,14958,114745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114735 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585085 ,2,14967,45 ,2,14968,75 ,2,14969,585180 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293080 ,2,14957,45 ,2,14958,114825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114815 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559090 ,2,14967,45 ,2,14968,75 ,2,14969,585190 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293100 ,2,14957,45 ,2,14958,114895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114885 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,585085 ,2,14967,45 ,2,14968,75 ,2,14969,585205 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,2865 ,2,14957,45 ,2,14958,114930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,114915 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,585210 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257060 ,1,1,257040 ,1,2,257030 ,1,3,257020 ,2,14956,293120 ,2,14957,45 ,2,14958,115015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115005 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,585245 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563110 ,2,14956,293140 ,2,14957,45 ,2,14958,115070 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115060 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585255 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82565 ,1,1,82545 ,2,14956,293175 ,2,14957,45 ,2,14958,115115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115105 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585260 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82555 ,2,14956,293185 ,2,14957,45 ,2,14958,115175 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115165 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,585280 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82580 ,2,14956,293205 ,2,14957,45 ,2,14958,115260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115250 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585290 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293215 ,2,14957,45 ,2,14958,115290 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115280 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585315 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563265 ,2,14956,293225 ,2,14957,45 ,2,14958,115330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115300 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585320 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,82590 ,2,14956,293235 ,2,14957,45 ,2,14958,115395 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115385 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,585345 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293285 ,2,14957,45 ,2,14958,115555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115480 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585355 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82660 ,1,1,82630 ,1,2,82610 ,1,3,82600 ,1,4,82590 ,2,14956,12585 ,2,14957,45 ,2,14958,115500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115490 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,585400 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,82640 ,2,14956,293295 ,2,14957,45 ,2,14958,115625 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115615 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,585410 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8075 ,2,14957,45 ,2,14958,115750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115720 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,585420 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82650 ,1,1,82640 ,2,14956,293335 ,2,14957,45 ,2,14958,115810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115800 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,559010 ,2,14967,45 ,2,14968,75 ,2,14969,585430 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,194970 ,1,2,170230 ,1,3,194960 ,1,4,194945 ,2,14956,293360 ,2,14957,45 ,2,14958,115885 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115875 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585450 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293370 ,2,14957,45 ,2,14958,115915 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115905 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585455 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293380 ,2,14957,45 ,2,14958,115965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,115935 ,2,14963,265550 ,2,14964,280500 ,2,14965,45 ,2,14966,582835 ,2,14967,45 ,2,14968,75 ,2,14969,585460 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82675 ,2,14956,293595 ,2,14957,45 ,2,14958,116255 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116245 ,2,14963,272050 ,2,14964,278835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585465 ,2,14970,75 ,2,14971,356940 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272050 ,2,14964,278835 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82685 ,2,14956,293410 ,2,14957,45 ,2,14958,116020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116010 ,2,14963,272050 ,2,14964,278835 ,2,14965,552255 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585475 ,2,14970,75 ,2,14971,356950 ,2,829,45 ,1,0,563500 ,2,14956,293480 ,2,14957,45 ,2,14958,116065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116040 ,2,14963,272050 ,2,14964,278835 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,116030 ,2,14969,585490 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82705 ,1,1,82695 ,2,14956,293490 ,2,14957,45 ,2,14958,116095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116085 ,2,14963,272050 ,2,14964,278835 ,2,14965,552285 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585510 ,2,14970,75 ,2,14971,357040 ,2,829,45 ,2,14956,293500 ,2,14957,45 ,2,14958,116115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116105 ,2,14963,272050 ,2,14964,278835 ,2,14965,552335 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257090 ,1,1,257080 ,1,2,257070 ,2,14956,293515 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116125 ,2,14963,272050 ,2,14964,278835 ,2,14965,552360 ,2,14966,585575 ,2,14967,45 ,2,14968,75 ,2,14969,605415 ,2,14970,75 ,2,14971,357050 ,2,829,45 ,1,0,82780 ,1,1,82770 ,1,2,82760 ,1,3,82750 ,1,4,82740 ,2,14956,293525 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116135 ,2,14963,272050 ,2,14964,278835 ,2,14965,552370 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,605420 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293535 ,2,14957,45 ,2,14958,116190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116180 ,2,14963,272050 ,2,14964,278835 ,2,14965,552395 ,2,14966,600040 ,2,14967,45 ,2,14968,116170 ,2,14969,585580 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,293545 ,2,14957,45 ,2,14958,116235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116225 ,2,14963,272050 ,2,14964,278835 ,2,14965,552405 ,2,14966,600040 ,2,14967,45 ,2,14968,116200 ,2,14969,585590 ,2,14970,75 ,2,14971,357060 ,2,829,45 ,1,0,82810 ,1,1,82790 ,2,14956,293910 ,2,14957,45 ,2,14958,116550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116540 ,2,14963,272070 ,2,14964,278845 ,2,14965,45 ,2,14966,574825 ,2,14967,45 ,2,14968,75 ,2,14969,585605 ,2,14970,75 ,2,14971,357255 ,2,829,45 ,1,0,195220 ,1,1,82800 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272070 ,2,14964,278845 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,600035 ,1,2,563290 ,1,3,599975 ,2,14956,293825 ,2,14957,45 ,2,14958,116420 ,2,14959,45 ,2,14960,116410 ,2,14961,45 ,2,14962,116380 ,2,14963,272070 ,2,14964,278845 ,2,14965,45 ,2,14966,585645 ,2,14967,45 ,2,14968,75 ,2,14969,585610 ,2,14970,75 ,2,14971,357265 ,2,829,45 ,1,0,195280 ,1,1,82850 ,2,14956,293835 ,2,14957,45 ,2,14958,116450 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116440 ,2,14963,272070 ,2,14964,278845 ,2,14965,45 ,2,14966,585655 ,2,14967,45 ,2,14968,75 ,2,14969,585650 ,2,14970,75 ,2,14971,357410 ,2,829,45 ,1,0,563085 ,2,14956,293845 ,2,14957,45 ,2,14958,116470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116460 ,2,14963,272070 ,2,14964,278845 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,585670 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82900 ,1,1,82880 ,1,2,82870 ,1,3,82860 ,2,14956,293880 ,2,14957,45 ,2,14958,116530 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116480 ,2,14963,272070 ,2,14964,278845 ,2,14965,45 ,2,14966,585680 ,2,14967,45 ,2,14968,75 ,2,14969,585675 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,295450 ,2,14957,45 ,2,14958,116700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116690 ,2,14963,272080 ,2,14964,278855 ,2,14965,552425 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585710 ,2,14970,116560 ,2,14971,357435 ,2,829,45 ,1,0,82910 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272080 ,2,14964,278855 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,81595 ,2,14956,293930 ,2,14957,45 ,2,14958,116660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116650 ,2,14963,272080 ,2,14964,278855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585715 ,2,14970,75 ,2,14971,357455 ,2,829,45 ,1,0,100 ,1,1,563505 ,2,14956,293940 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116670 ,2,14963,272080 ,2,14964,278855 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585720 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,295370 ,2,14957,45 ,2,14958,117540 ,2,14959,45 ,2,14960,117530 ,2,14961,45 ,2,14962,117520 ,2,14963,272140 ,2,14964,278865 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585730 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83120 ,1,1,82970 ,1,2,82930 ,2,14956,8220 ,2,14957,45 ,2,14958,116755 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272140 ,2,14964,278865 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,294115 ,2,14957,45 ,2,14958,116795 ,2,14959,45 ,2,14960,116785 ,2,14961,45 ,2,14962,116775 ,2,14963,272100 ,2,14964,278865 ,2,14965,45 ,2,14966,585740 ,2,14967,45 ,2,14968,75 ,2,14969,585735 ,2,14970,75 ,2,14971,357595 ,2,829,45 ,1,0,83000 ,1,1,82990 ,1,2,82980 ,2,14956,294160 ,2,14957,45 ,2,14958,116825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116815 ,2,14963,272100 ,2,14964,278865 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585765 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70210 ,1,1,66960 ,2,14956,294940 ,2,14957,45 ,2,14958,117310 ,2,14959,116875 ,2,14960,75 ,2,14961,45 ,2,14962,116865 ,2,14963,272100 ,2,14964,278865 ,2,14965,45 ,2,14966,585740 ,2,14967,45 ,2,14968,75 ,2,14969,585770 ,2,14970,75 ,2,14971,357640 ,2,829,45 ,1,0,83030 ,2,14956,294235 ,2,14957,45 ,2,14958,116955 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,116935 ,2,14963,272120 ,2,14964,278895 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585775 ,2,14970,75 ,2,14971,357725 ,2,829,45 ,1,0,83000 ,1,1,82990 ,2,14956,8220 ,2,14957,45 ,2,14958,116975 ,2,14959,45 ,2,14960,116965 ,2,14961,45 ,2,14962,75 ,2,14963,272120 ,2,14964,278895 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,43205 ,2,14956,8220 ,2,14957,45 ,2,14958,117050 ,2,14959,45 ,2,14960,117035 ,2,14961,45 ,2,14962,75 ,2,14963,272130 ,2,14964,278905 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,295230 ,2,14957,45 ,2,14958,117485 ,2,14959,117360 ,2,14960,117330 ,2,14961,45 ,2,14962,117320 ,2,14963,272110 ,2,14964,278865 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585790 ,2,14970,75 ,2,14971,358160 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,563575 ,2,14956,295250 ,2,14957,45 ,2,14958,117505 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,117495 ,2,14963,272100 ,2,14964,278865 ,2,14965,45 ,2,14966,585740 ,2,14967,45 ,2,14968,75 ,2,14969,585840 ,2,14970,75 ,2,14971,358400 ,2,829,45 ,1,0,195550 ,1,1,45 ,2,14956,295505 ,2,14957,45 ,2,14958,117600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,117590 ,2,14963,272175 ,2,14964,278915 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,585850 ,2,14970,75 ,2,14971,358450 ,2,829,45 ,1,0,83250 ,1,1,83240 ,1,2,83230 ,1,3,83210 ,1,4,83130 ,1,5,83200 ,1,6,83190 ,1,7,83180 ,1,8,83150 ,1,9,83140 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272175 ,2,14964,278915 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,195575 ,1,1,45 ,2,14956,295565 ,2,14957,45 ,2,14958,117900 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,117890 ,2,14963,272185 ,2,14964,278925 ,2,14965,552500 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,585905 ,2,14970,75 ,2,14971,358950 ,2,829,45 ,1,0,195605 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272185 ,2,14964,278925 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,195625 ,1,1,45 ,2,14956,295605 ,2,14957,45 ,2,14958,117945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,117925 ,2,14963,266550 ,2,14964,280590 ,2,14965,552540 ,2,14966,585920 ,2,14967,45 ,2,14968,75 ,2,14969,585910 ,2,14970,117910 ,2,14971,45 ,2,829,45 ,1,0,195645 ,1,1,45 ,2,14956,295575 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,117935 ,2,14963,266550 ,2,14964,280590 ,2,14965,552545 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,195725 ,1,1,45 ,2,14956,295635 ,2,14957,45 ,2,14958,118060 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118050 ,2,14963,272195 ,2,14964,278935 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,118000 ,2,14969,585935 ,2,14970,117955 ,2,14971,359965 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272195 ,2,14964,278935 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,563575 ,2,14956,295970 ,2,14957,45 ,2,14958,118570 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118550 ,2,14963,272220 ,2,14964,278955 ,2,14965,45 ,2,14966,585995 ,2,14967,45 ,2,14968,75 ,2,14969,585990 ,2,14970,75 ,2,14971,360285 ,2,829,45 ,1,0,195750 ,1,1,45 ,2,14956,295915 ,2,14957,45 ,2,14958,118495 ,2,14959,45 ,2,14960,118485 ,2,14961,45 ,2,14962,118475 ,2,14963,272205 ,2,14964,278945 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,586000 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272205 ,2,14964,278945 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272220 ,2,14964,278955 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257170 ,1,1,257155 ,2,14956,296265 ,2,14957,45 ,2,14958,118750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118740 ,2,14963,272230 ,2,14964,278965 ,2,14965,45 ,2,14966,569760 ,2,14967,45 ,2,14968,75 ,2,14969,586050 ,2,14970,75 ,2,14971,360475 ,2,829,45 ,1,0,83310 ,1,1,83300 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272230 ,2,14964,278965 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,295990 ,2,14957,45 ,2,14958,118640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118630 ,2,14963,272230 ,2,14964,278965 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586055 ,2,14970,75 ,2,14971,360485 ,2,829,45 ,1,0,83320 ,2,14956,296180 ,2,14957,45 ,2,14958,118680 ,2,14959,118660 ,2,14960,75 ,2,14961,45 ,2,14962,118650 ,2,14963,272230 ,2,14964,278965 ,2,14965,45 ,2,14966,586080 ,2,14967,45 ,2,14968,75 ,2,14969,586075 ,2,14970,75 ,2,14971,360505 ,2,829,45 ,1,0,563305 ,2,14956,296190 ,2,14957,45 ,2,14958,118700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118690 ,2,14963,272230 ,2,14964,278965 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,586090 ,2,14970,75 ,2,14971,360670 ,2,829,45 ,2,14956,296450 ,2,14957,45 ,2,14958,118915 ,2,14959,118865 ,2,14960,75 ,2,14961,45 ,2,14962,118855 ,2,14963,272240 ,2,14964,278990 ,2,14965,45 ,2,14966,569745 ,2,14967,45 ,2,14968,75 ,2,14969,586095 ,2,14970,75 ,2,14971,360900 ,2,829,45 ,1,0,257145 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272240 ,2,14964,278990 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83030 ,1,1,83100 ,1,2,83090 ,1,3,83080 ,1,4,83050 ,2,14956,296275 ,2,14957,45 ,2,14958,118805 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118795 ,2,14963,272240 ,2,14964,278990 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,586100 ,2,14970,75 ,2,14971,360910 ,2,829,45 ,1,0,563625 ,2,14956,296295 ,2,14957,45 ,2,14958,118845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118815 ,2,14963,272240 ,2,14964,278990 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,586110 ,2,14970,75 ,2,14971,360925 ,2,829,45 ,1,0,83350 ,1,1,83330 ,2,14956,296555 ,2,14957,45 ,2,14958,118990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118980 ,2,14963,272250 ,2,14964,279000 ,2,14965,45 ,2,14966,567805 ,2,14967,45 ,2,14968,75 ,2,14969,586115 ,2,14970,75 ,2,14971,361260 ,2,829,45 ,1,0,195970 ,1,1,83340 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272250 ,2,14964,279000 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,296460 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,118965 ,2,14963,272250 ,2,14964,279000 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,586120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83360 ,2,14956,297605 ,2,14957,45 ,2,14958,121005 ,2,14959,120980 ,2,14960,75 ,2,14961,45 ,2,14962,120970 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,586325 ,2,14967,45 ,2,14968,75 ,2,14969,586320 ,2,14970,75 ,2,14971,363600 ,2,829,45 ,2,14956,297020 ,2,14957,45 ,2,14958,120490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120480 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,579195 ,2,14967,45 ,2,14968,75 ,2,14969,586330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257260 ,1,1,257230 ,1,2,257200 ,1,3,257190 ,1,4,257180 ,2,14956,8220 ,2,14957,45 ,2,14958,120560 ,2,14959,45 ,2,14960,120530 ,2,14961,45 ,2,14962,75 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,297030 ,2,14957,45 ,2,14958,120550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120540 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,578995 ,2,14967,45 ,2,14968,75 ,2,14969,586380 ,2,14970,75 ,2,14971,363620 ,2,829,45 ,1,0,83405 ,2,14956,297165 ,2,14957,45 ,2,14958,120590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120580 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,569760 ,2,14967,45 ,2,14968,75 ,2,14969,586385 ,2,14970,75 ,2,14971,363660 ,2,829,45 ,1,0,196100 ,1,1,45 ,2,14956,297175 ,2,14957,45 ,2,14958,120620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120610 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,568520 ,2,14967,45 ,2,14968,75 ,2,14969,586390 ,2,14970,75 ,2,14971,363715 ,2,829,45 ,1,0,563660 ,2,14956,297185 ,2,14957,45 ,2,14958,120640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120630 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,586405 ,2,14970,75 ,2,14971,363725 ,2,829,45 ,1,0,257240 ,2,14956,297225 ,2,14957,45 ,2,14958,120670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120660 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,120650 ,2,14969,586415 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83820 ,1,1,83780 ,1,2,83770 ,1,3,83760 ,1,4,83750 ,1,5,83735 ,1,6,83415 ,1,7,83725 ,1,8,83715 ,1,9,83515 ,1,10,83455 ,1,11,83445 ,1,12,83435 ,2,14956,297235 ,2,14957,45 ,2,14958,120705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120680 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586440 ,2,14970,75 ,2,14971,363735 ,2,829,45 ,1,0,196190 ,1,1,45 ,2,14956,297335 ,2,14957,45 ,2,14958,120725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120715 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,568515 ,2,14967,45 ,2,14968,75 ,2,14969,586455 ,2,14970,75 ,2,14971,363775 ,2,829,45 ,1,0,257250 ,2,14956,297355 ,2,14957,45 ,2,14958,120770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120760 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,567945 ,2,14967,45 ,2,14968,75 ,2,14969,586465 ,2,14970,75 ,2,14971,363905 ,2,829,45 ,1,0,167060 ,2,14956,297365 ,2,14957,45 ,2,14958,120830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120780 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,574825 ,2,14967,45 ,2,14968,75 ,2,14969,586470 ,2,14970,75 ,2,14971,363915 ,2,829,45 ,1,0,100 ,2,14956,297405 ,2,14957,45 ,2,14958,120850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120840 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,586510 ,2,14967,45 ,2,14968,75 ,2,14969,586475 ,2,14970,75 ,2,14971,363925 ,2,829,45 ,1,0,83670 ,1,1,83525 ,1,2,83660 ,1,3,83640 ,1,4,83630 ,1,5,83555 ,1,6,83545 ,2,14956,297415 ,2,14957,45 ,2,14958,120875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120860 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,586520 ,2,14967,45 ,2,14968,75 ,2,14969,586515 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,196260 ,1,1,45 ,2,14956,297515 ,2,14957,45 ,2,14958,120895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120885 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,586535 ,2,14967,45 ,2,14968,75 ,2,14969,586530 ,2,14970,75 ,2,14971,363970 ,2,829,45 ,1,0,563290 ,2,14956,297525 ,2,14957,45 ,2,14958,120960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,120950 ,2,14963,272270 ,2,14964,279010 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586540 ,2,14970,75 ,2,14971,364070 ,2,829,45 ,1,0,83620 ,1,1,83610 ,1,2,83600 ,1,3,83585 ,1,4,83575 ,1,5,83565 ,2,14956,297730 ,2,14957,45 ,2,14958,121165 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121155 ,2,14963,272280 ,2,14964,279020 ,2,14965,45 ,2,14966,586600 ,2,14967,45 ,2,14968,75 ,2,14969,586575 ,2,14970,75 ,2,14971,364495 ,2,829,45 ,1,0,196270 ,1,1,45 ,2,14956,297625 ,2,14957,45 ,2,14958,121090 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121075 ,2,14963,272280 ,2,14964,279020 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586585 ,2,14970,75 ,2,14971,364505 ,2,829,45 ,1,0,196295 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272280 ,2,14964,279020 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83445 ,1,1,83820 ,1,2,83760 ,2,14956,297920 ,2,14957,45 ,2,14958,121300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121290 ,2,14963,272290 ,2,14964,279030 ,2,14965,45 ,2,14966,586640 ,2,14967,45 ,2,14968,75 ,2,14969,586605 ,2,14970,75 ,2,14971,364585 ,2,829,45 ,1,0,100 ,1,1,600020 ,1,2,558375 ,2,14956,297750 ,2,14957,45 ,2,14958,121205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121195 ,2,14963,272290 ,2,14964,279030 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586615 ,2,14970,75 ,2,14971,364595 ,2,829,45 ,1,0,83820 ,2,14956,297785 ,2,14957,45 ,2,14958,121225 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121215 ,2,14963,272290 ,2,14964,279030 ,2,14965,45 ,2,14966,586650 ,2,14967,45 ,2,14968,75 ,2,14969,586645 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,196475 ,1,1,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272290 ,2,14964,279030 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,196510 ,1,1,45 ,2,14956,298575 ,2,14957,45 ,2,14958,121640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121630 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,586720 ,2,14967,45 ,2,14968,75 ,2,14969,586660 ,2,14970,75 ,2,14971,364980 ,2,829,45 ,1,0,83445 ,1,1,83820 ,2,14956,298365 ,2,14957,45 ,2,14958,121435 ,2,14959,45 ,2,14960,121405 ,2,14961,45 ,2,14962,121395 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586670 ,2,14970,75 ,2,14971,364990 ,2,829,45 ,1,0,83915 ,1,1,83890 ,1,2,83880 ,1,3,83870 ,1,4,83860 ,1,5,83850 ,1,6,83840 ,2,14956,298395 ,2,14957,45 ,2,14958,121495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121485 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,586735 ,2,14967,45 ,2,14968,75 ,2,14969,586730 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83760 ,1,1,83445 ,1,2,83820 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,83850 ,1,1,83880 ,1,2,83915 ,1,3,70765 ,1,4,78390 ,1,5,83890 ,2,14956,298405 ,2,14957,45 ,2,14958,121580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121545 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,586770 ,2,14967,45 ,2,14968,75 ,2,14969,586740 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,43945 ,2,14956,298415 ,2,14957,45 ,2,14958,121600 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121590 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586775 ,2,14970,75 ,2,14971,365095 ,2,829,45 ,1,0,600065 ,2,14956,298425 ,2,14957,45 ,2,14958,121620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121610 ,2,14963,272300 ,2,14964,279040 ,2,14965,45 ,2,14966,586790 ,2,14967,45 ,2,14968,75 ,2,14969,586785 ,2,14970,75 ,2,14971,365105 ,2,829,45 ,1,0,563255 ,2,14956,298845 ,2,14957,45 ,2,14958,121925 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121915 ,2,14963,272310 ,2,14964,279050 ,2,14965,552625 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,586795 ,2,14970,75 ,2,14971,365255 ,2,829,45 ,1,0,82380 ,1,1,82360 ,1,2,83995 ,1,3,83985 ,1,4,83975 ,1,5,83965 ,1,6,83945 ,1,7,82350 ,1,8,83925 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272310 ,2,14964,279050 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,298625 ,2,14957,45 ,2,14958,121750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121740 ,2,14963,272310 ,2,14964,279050 ,2,14965,552670 ,2,14966,586840 ,2,14967,45 ,2,14968,75 ,2,14969,586800 ,2,14970,75 ,2,14971,365320 ,2,829,45 ,1,0,257350 ,1,1,257340 ,1,2,257330 ,1,3,257305 ,1,4,257295 ,1,5,257285 ,1,6,257275 ,2,14956,298635 ,2,14957,45 ,2,14958,121770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121760 ,2,14963,272310 ,2,14964,279050 ,2,14965,552680 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586845 ,2,14970,75 ,2,14971,365340 ,2,829,45 ,1,0,84035 ,2,14956,298695 ,2,14957,45 ,2,14958,121810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121800 ,2,14963,272310 ,2,14964,279050 ,2,14965,552725 ,2,14966,586870 ,2,14967,45 ,2,14968,75 ,2,14969,586860 ,2,14970,75 ,2,14971,365350 ,2,829,45 ,1,0,84035 ,1,1,84205 ,1,2,84195 ,1,3,84185 ,1,4,84175 ,1,5,84165 ,1,6,84155 ,1,7,84145 ,2,14956,298730 ,2,14957,45 ,2,14958,121830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121820 ,2,14963,272310 ,2,14964,279050 ,2,14965,552735 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,586875 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563365 ,2,14956,298750 ,2,14957,45 ,2,14958,121860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121850 ,2,14963,272310 ,2,14964,279050 ,2,14965,552805 ,2,14966,586930 ,2,14967,45 ,2,14968,75 ,2,14969,586920 ,2,14970,75 ,2,14971,365435 ,2,829,45 ,1,0,563320 ,2,14956,298800 ,2,14957,45 ,2,14958,121905 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,121880 ,2,14963,272310 ,2,14964,279050 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,121870 ,2,14969,586935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,82580 ,1,1,82555 ,1,2,84240 ,1,3,84215 ,2,14956,299300 ,2,14957,45 ,2,14958,122370 ,2,14959,45 ,2,14960,122360 ,2,14961,45 ,2,14962,122325 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,586980 ,2,14970,75 ,2,14971,365640 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,558235 ,2,14956,298980 ,2,14957,45 ,2,14958,122045 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122035 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,586995 ,2,14967,45 ,2,14968,75 ,2,14969,586985 ,2,14970,75 ,2,14971,365650 ,2,829,45 ,1,0,81520 ,1,1,84260 ,1,2,84250 ,2,14956,299045 ,2,14957,45 ,2,14958,122185 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122175 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,587010 ,2,14967,45 ,2,14968,75 ,2,14969,587005 ,2,14970,75 ,2,14971,365750 ,2,829,45 ,2,14956,299010 ,2,14957,45 ,2,14958,122145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122135 ,2,14963,272320 ,2,14964,279080 ,2,14965,45 ,2,14966,570365 ,2,14967,45 ,2,14968,75 ,2,14969,587015 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267150 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272320 ,2,14964,279080 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,19565 ,1,1,45 ,1,2,45 ,1,3,19660 ,1,4,19650 ,1,5,19610 ,1,6,19585 ,1,7,613975 ,2,14956,299055 ,2,14957,45 ,2,14958,122205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122195 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,587035 ,2,14967,45 ,2,14968,75 ,2,14969,587030 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,84290 ,2,14956,299065 ,2,14957,45 ,2,14958,122260 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122250 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,587045 ,2,14970,75 ,2,14971,365785 ,2,829,45 ,1,0,563775 ,2,14956,299120 ,2,14957,45 ,2,14958,122295 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122280 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,122270 ,2,14969,587060 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84345 ,1,1,84310 ,1,2,84290 ,1,3,84300 ,2,14956,299155 ,2,14957,45 ,2,14958,122315 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122305 ,2,14963,272330 ,2,14964,279060 ,2,14965,45 ,2,14966,574825 ,2,14967,45 ,2,14968,75 ,2,14969,587065 ,2,14970,75 ,2,14971,365795 ,2,829,45 ,1,0,563745 ,2,14956,303190 ,2,14957,45 ,2,14958,122575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122550 ,2,14963,272340 ,2,14964,279090 ,2,14965,45 ,2,14966,587110 ,2,14967,45 ,2,14968,75 ,2,14969,587070 ,2,14970,75 ,2,14971,366520 ,2,829,45 ,1,0,84480 ,1,1,84470 ,1,2,84460 ,1,3,84450 ,1,4,84420 ,1,5,84410 ,1,6,84400 ,1,7,84375 ,1,8,84355 ,2,14956,299320 ,2,14957,45 ,2,14958,122500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122490 ,2,14963,272340 ,2,14964,279090 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,587100 ,2,14970,75 ,2,14971,366530 ,2,829,45 ,1,0,77965 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272340 ,2,14964,279090 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,44270 ,2,14956,299430 ,2,14957,45 ,2,14958,122650 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122640 ,2,14963,272380 ,2,14964,279100 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,587120 ,2,14970,75 ,2,14971,366610 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272380 ,2,14964,279100 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,84495 ,2,14956,299400 ,2,14957,45 ,2,14958,122630 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122620 ,2,14963,272380 ,2,14964,279100 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,587125 ,2,14970,75 ,2,14971,366620 ,2,829,45 ,2,14956,299735 ,2,14957,45 ,2,14958,123010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123000 ,2,14963,272400 ,2,14964,279120 ,2,14965,45 ,2,14966,587160 ,2,14967,45 ,2,14968,75 ,2,14969,587155 ,2,14970,75 ,2,14971,366815 ,2,829,45 ,1,0,267140 ,1,1,45 ,1,2,45 ,2,14956,299680 ,2,14957,45 ,2,14958,122840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122830 ,2,14963,272400 ,2,14964,279120 ,2,14965,45 ,2,14966,587170 ,2,14967,45 ,2,14968,75 ,2,14969,587165 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,19620 ,1,1,19640 ,1,2,45 ,1,3,614705 ,2,14956,299615 ,2,14957,45 ,2,14958,122700 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122690 ,2,14963,272400 ,2,14964,279120 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,587190 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,84515 ,2,14956,299595 ,2,14957,45 ,2,14958,122820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122805 ,2,14963,272390 ,2,14964,279110 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,587195 ,2,14970,75 ,2,14971,366680 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272390 ,2,14964,279110 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84630 ,1,1,84515 ,1,2,84620 ,1,3,84610 ,1,4,84600 ,1,5,84590 ,1,6,84580 ,1,7,84560 ,2,14956,299510 ,2,14957,45 ,2,14958,122750 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122740 ,2,14963,272390 ,2,14964,279110 ,2,14965,45 ,2,14966,568630 ,2,14967,45 ,2,14968,75 ,2,14969,587200 ,2,14970,75 ,2,14971,366720 ,2,829,45 ,2,14956,299540 ,2,14957,45 ,2,14958,122785 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122775 ,2,14963,272390 ,2,14964,279110 ,2,14965,45 ,2,14966,569205 ,2,14967,45 ,2,14968,75 ,2,14969,587250 ,2,14970,75 ,2,14971,366690 ,2,829,45 ,1,0,84765 ,1,1,84495 ,1,2,84745 ,1,3,84735 ,1,4,84725 ,1,5,84715 ,1,6,84685 ,1,7,84675 ,1,8,84655 ,2,14956,299660 ,2,14957,45 ,2,14958,122910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122900 ,2,14963,272400 ,2,14964,279120 ,2,14965,45 ,2,14966,587160 ,2,14967,45 ,2,14968,75 ,2,14969,587270 ,2,14970,75 ,2,14971,366790 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272400 ,2,14964,279120 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84815 ,1,1,84805 ,1,2,84795 ,1,3,84775 ,2,14956,299705 ,2,14957,45 ,2,14958,122990 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,122970 ,2,14963,272400 ,2,14964,279120 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,122960 ,2,14969,587275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,299795 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123045 ,2,14963,267345 ,2,14964,280675 ,2,14965,552840 ,2,14966,587285 ,2,14967,45 ,2,14968,75 ,2,14969,605715 ,2,14970,75 ,2,14971,366865 ,2,829,45 ,2,14956,299785 ,2,14957,45 ,2,14958,123035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123020 ,2,14963,266220 ,2,14964,280675 ,2,14965,552835 ,2,14966,587315 ,2,14967,45 ,2,14968,75 ,2,14969,587310 ,2,14970,75 ,2,14971,366890 ,2,829,45 ,2,14956,299985 ,2,14957,45 ,2,14958,123145 ,2,14959,45 ,2,14960,123135 ,2,14961,45 ,2,14962,123125 ,2,14963,272410 ,2,14964,279130 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,587335 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267180 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272410 ,2,14964,279130 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,19555 ,1,2,19680 ,1,3,614705 ,2,14956,299930 ,2,14957,45 ,2,14958,123240 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123230 ,2,14963,272420 ,2,14964,279140 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587380 ,2,14970,123165 ,2,14971,366905 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,370350 ,1,4,65 ,1,5,370340 ,1,6,370330 ,1,7,65 ,1,8,65 ,1,9,370320 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272420 ,2,14964,279140 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,300160 ,2,14957,45 ,2,14958,123400 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123390 ,2,14963,272440 ,2,14964,279180 ,2,14965,45 ,2,14966,587390 ,2,14967,45 ,2,14968,75 ,2,14969,587385 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84825 ,2,14956,300085 ,2,14957,45 ,2,14958,123305 ,2,14959,45 ,2,14960,123295 ,2,14961,45 ,2,14962,123285 ,2,14963,272430 ,2,14964,279150 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,587395 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563865 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272430 ,2,14964,279150 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87435 ,1,1,87425 ,1,2,87415 ,1,3,84875 ,1,4,84865 ,1,5,84835 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272440 ,2,14964,279180 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563925 ,2,14956,301865 ,2,14957,45 ,2,14958,124830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124820 ,2,14963,272715 ,2,14964,279190 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587410 ,2,14970,75 ,2,14971,366960 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272530 ,2,14964,279190 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267130 ,1,1,267220 ,1,2,45 ,2,14956,300295 ,2,14957,45 ,2,14958,123515 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123505 ,2,14963,272520 ,2,14964,279190 ,2,14965,45 ,2,14966,587450 ,2,14967,45 ,2,14968,75 ,2,14969,587445 ,2,14970,123450 ,2,14971,367005 ,2,829,45 ,1,0,20420 ,1,1,20410 ,1,2,45 ,1,3,20400 ,1,4,45 ,1,5,20390 ,1,6,20055 ,1,7,20045 ,1,8,19725 ,1,9,20015 ,1,10,45 ,1,11,45 ,1,12,20005 ,1,13,19960 ,1,14,19950 ,1,15,19940 ,1,16,19895 ,1,17,45 ,1,18,45 ,1,19,19885 ,1,20,19875 ,1,21,19865 ,1,22,19840 ,1,23,19745 ,1,24,45 ,1,25,622995 ,2,14956,301625 ,2,14957,45 ,2,14958,123535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123525 ,2,14963,272490 ,2,14964,279190 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587455 ,2,14970,75 ,2,14971,367040 ,2,829,45 ,1,0,563950 ,2,14956,300335 ,2,14957,45 ,2,14958,123620 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123610 ,2,14963,272540 ,2,14964,279200 ,2,14965,45 ,2,14966,587480 ,2,14967,45 ,2,14968,75 ,2,14969,587475 ,2,14970,75 ,2,14971,367115 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272540 ,2,14964,279200 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267130 ,1,1,45 ,1,2,45 ,2,14956,301275 ,2,14957,45 ,2,14958,123825 ,2,14959,45 ,2,14960,123680 ,2,14961,45 ,2,14962,123670 ,2,14963,272550 ,2,14964,279210 ,2,14965,45 ,2,14966,587730 ,2,14967,45 ,2,14968,75 ,2,14969,587510 ,2,14970,75 ,2,14971,367570 ,2,829,45 ,1,0,19765 ,1,1,19830 ,1,2,19820 ,1,3,45 ,1,4,45 ,1,5,19810 ,1,6,614045 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272550 ,2,14964,279210 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,300530 ,2,14957,45 ,2,14958,123785 ,2,14959,45 ,2,14960,123775 ,2,14961,45 ,2,14962,123765 ,2,14963,272580 ,2,14964,279220 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,587530 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272580 ,2,14964,279220 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,300785 ,2,14957,45 ,2,14958,123880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,123870 ,2,14963,272590 ,2,14964,279230 ,2,14965,45 ,2,14966,587605 ,2,14967,45 ,2,14968,75 ,2,14969,587580 ,2,14970,75 ,2,14971,367180 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272590 ,2,14964,279230 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84920 ,1,1,84910 ,1,2,84895 ,1,3,84885 ,2,14956,300745 ,2,14957,45 ,2,14958,123970 ,2,14959,45 ,2,14960,123960 ,2,14961,45 ,2,14962,123950 ,2,14963,272600 ,2,14964,279240 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,587585 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,44755 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272600 ,2,14964,279240 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,301180 ,2,14957,45 ,2,14958,124135 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124090 ,2,14963,272610 ,2,14964,279250 ,2,14965,45 ,2,14966,587620 ,2,14967,45 ,2,14968,75 ,2,14969,587615 ,2,14970,124035 ,2,14971,367295 ,2,829,45 ,1,0,84765 ,1,1,84930 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272610 ,2,14964,279250 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,301005 ,2,14957,45 ,2,14958,124270 ,2,14959,45 ,2,14960,124260 ,2,14961,45 ,2,14962,124155 ,2,14963,266270 ,2,14964,280570 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,587650 ,2,14970,75 ,2,14971,367390 ,2,829,45 ,1,0,85090 ,1,1,85080 ,1,2,85070 ,1,3,85035 ,1,4,85025 ,1,5,85015 ,1,6,85005 ,1,7,84985 ,1,8,84940 ,2,14956,300970 ,2,14957,45 ,2,14958,124180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124165 ,2,14963,272620 ,2,14964,280570 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,587655 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,44820 ,2,14956,301115 ,2,14957,45 ,2,14958,124350 ,2,14959,45 ,2,14960,124335 ,2,14961,45 ,2,14962,124325 ,2,14963,272630 ,2,14964,279280 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587665 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272630 ,2,14964,279280 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84985 ,1,1,84940 ,2,14956,301210 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124405 ,2,14963,272640 ,2,14964,279290 ,2,14965,45 ,2,14966,587390 ,2,14967,45 ,2,14968,75 ,2,14969,587675 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,564000 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272640 ,2,14964,279290 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,197870 ,1,2,197860 ,1,3,197850 ,2,14956,301385 ,2,14957,45 ,2,14958,124500 ,2,14959,45 ,2,14960,124490 ,2,14961,45 ,2,14962,124480 ,2,14963,272650 ,2,14964,279300 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,587680 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272650 ,2,14964,279300 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85250 ,1,1,85190 ,1,2,85145 ,1,3,85135 ,1,4,85125 ,1,5,85115 ,1,6,85100 ,2,14956,8220 ,2,14957,45 ,2,14958,124600 ,2,14959,45 ,2,14960,124590 ,2,14961,45 ,2,14962,75 ,2,14963,272695 ,2,14964,279310 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,44925 ,2,14956,301555 ,2,14957,45 ,2,14958,124675 ,2,14959,45 ,2,14960,124665 ,2,14961,45 ,2,14962,124640 ,2,14963,272705 ,2,14964,279325 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587725 ,2,14970,75 ,2,14971,367540 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272705 ,2,14964,279325 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,44950 ,2,14956,301655 ,2,14957,45 ,2,14958,124705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124695 ,2,14963,272510 ,2,14964,279190 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587735 ,2,14970,75 ,2,14971,367585 ,2,829,45 ,1,0,100 ,2,14956,301740 ,2,14957,45 ,2,14958,124725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124715 ,2,14963,272450 ,2,14964,279190 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587750 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85270 ,1,1,84765 ,1,2,85260 ,2,14956,301770 ,2,14957,45 ,2,14958,124800 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124790 ,2,14963,272500 ,2,14964,279190 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587760 ,2,14970,124770 ,2,14971,367765 ,2,829,45 ,1,0,563950 ,2,14956,301875 ,2,14957,45 ,2,14958,124850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124840 ,2,14963,272480 ,2,14964,279190 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587790 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85270 ,1,1,85335 ,1,2,85325 ,1,3,85200 ,1,4,85315 ,2,14956,302125 ,2,14957,45 ,2,14958,125100 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125090 ,2,14963,272800 ,2,14964,279335 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587795 ,2,14970,75 ,2,14971,367870 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272790 ,2,14964,279335 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85360 ,1,1,85345 ,2,14956,301965 ,2,14957,45 ,2,14958,124955 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124945 ,2,14963,272765 ,2,14964,279335 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587800 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,370225 ,1,5,370215 ,2,14956,301985 ,2,14957,45 ,2,14958,125000 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,124965 ,2,14963,272735 ,2,14964,279335 ,2,14965,45 ,2,14966,587815 ,2,14967,45 ,2,14968,75 ,2,14969,587810 ,2,14970,75 ,2,14971,367890 ,2,829,45 ,2,14956,302035 ,2,14957,45 ,2,14958,125020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125010 ,2,14963,272755 ,2,14964,279335 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587820 ,2,14970,75 ,2,14971,367915 ,2,829,45 ,1,0,85370 ,2,14956,302055 ,2,14957,45 ,2,14958,125060 ,2,14959,45 ,2,14960,125040 ,2,14961,45 ,2,14962,125030 ,2,14963,272745 ,2,14964,279335 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587825 ,2,14970,75 ,2,14971,367935 ,2,829,45 ,1,0,563950 ,2,14956,302260 ,2,14957,45 ,2,14958,125160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125150 ,2,14963,272810 ,2,14964,279345 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587895 ,2,14970,75 ,2,14971,368065 ,2,829,45 ,1,0,85415 ,1,1,85405 ,1,2,85390 ,1,3,85380 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272810 ,2,14964,279345 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45115 ,2,14956,302385 ,2,14957,45 ,2,14958,125335 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125325 ,2,14963,272835 ,2,14964,279390 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,125170 ,2,14969,587930 ,2,14970,75 ,2,14971,368130 ,2,829,45 ,1,0,100 ,2,14956,302330 ,2,14957,45 ,2,14958,125265 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125255 ,2,14963,272820 ,2,14964,279355 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,125215 ,2,14969,587935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272820 ,2,14964,279355 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85595 ,1,1,85585 ,1,2,85575 ,1,3,85560 ,1,4,85550 ,1,5,85540 ,1,6,85530 ,1,7,85475 ,1,8,85465 ,1,9,85445 ,1,10,85425 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272835 ,2,14964,279390 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85415 ,1,1,84765 ,2,14956,303020 ,2,14957,45 ,2,14958,125550 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125540 ,2,14963,272855 ,2,14964,279400 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587960 ,2,14970,75 ,2,14971,368230 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370310 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272855 ,2,14964,279400 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,302485 ,2,14957,45 ,2,14958,125425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125415 ,2,14963,272855 ,2,14964,279400 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587965 ,2,14970,75 ,2,14971,368245 ,2,829,45 ,1,0,85720 ,1,1,85710 ,1,2,85700 ,1,3,85690 ,1,4,85675 ,1,5,85665 ,1,6,85655 ,1,7,85605 ,2,14956,302535 ,2,14957,45 ,2,14958,125500 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125435 ,2,14963,272855 ,2,14964,279400 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,587970 ,2,14970,75 ,2,14971,368250 ,2,829,45 ,2,14956,302515 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125490 ,2,14963,272845 ,2,14964,279410 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267220 ,1,1,267190 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272845 ,2,14964,279410 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,19995 ,1,1,45 ,1,2,19970 ,1,3,614705 ,2,14956,302820 ,2,14957,45 ,2,14958,125615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125605 ,2,14963,272865 ,2,14964,279420 ,2,14965,45 ,2,14966,588095 ,2,14967,45 ,2,14968,75 ,2,14969,588025 ,2,14970,75 ,2,14971,368345 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272865 ,2,14964,279420 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563925 ,2,14956,302705 ,2,14957,45 ,2,14958,125770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125760 ,2,14963,272890 ,2,14964,279435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588070 ,2,14970,75 ,2,14971,368405 ,2,829,45 ,1,0,85825 ,1,1,85815 ,1,2,85805 ,1,3,85775 ,1,4,85765 ,1,5,85745 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272890 ,2,14964,279435 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,302620 ,2,14957,45 ,2,14958,125695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125685 ,2,14963,272890 ,2,14964,279435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,125670 ,2,14969,588075 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85920 ,1,1,85910 ,1,2,85895 ,1,3,85885 ,1,4,85875 ,1,5,85835 ,2,14956,302630 ,2,14957,45 ,2,14958,125715 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,125705 ,2,14963,272890 ,2,14964,279435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588080 ,2,14970,75 ,2,14971,368415 ,2,829,45 ,1,0,3010 ,1,1,198280 ,1,2,198270 ,1,3,198260 ,2,14956,302895 ,2,14957,45 ,2,14958,125885 ,2,14959,45 ,2,14960,125875 ,2,14961,45 ,2,14962,125835 ,2,14963,272900 ,2,14964,279445 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588100 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,564145 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272900 ,2,14964,279445 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85980 ,1,1,85930 ,2,14956,303060 ,2,14957,45 ,2,14958,126020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126010 ,2,14963,272910 ,2,14964,279455 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588155 ,2,14970,75 ,2,14971,368625 ,2,829,45 ,1,0,85550 ,1,1,85425 ,1,2,85135 ,1,3,85940 ,1,4,85315 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272910 ,2,14964,279455 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85560 ,1,1,85425 ,1,2,85145 ,1,3,85940 ,1,4,85315 ,2,14956,303170 ,2,14957,45 ,2,14958,126080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126060 ,2,14963,272920 ,2,14964,279465 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588160 ,2,14970,75 ,2,14971,368635 ,2,829,45 ,1,0,564150 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272920 ,2,14964,279465 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,85260 ,1,1,86020 ,1,2,86010 ,1,3,85220 ,1,4,85990 ,1,5,85940 ,2,14956,303350 ,2,14957,45 ,2,14958,126210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126200 ,2,14963,272935 ,2,14964,279495 ,2,14965,45 ,2,14966,588185 ,2,14967,45 ,2,14968,75 ,2,14969,588165 ,2,14970,75 ,2,14971,368715 ,2,829,45 ,1,0,564145 ,2,14956,303200 ,2,14957,45 ,2,14958,126110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126100 ,2,14963,272935 ,2,14964,279495 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,588175 ,2,14970,75 ,2,14971,368725 ,2,829,45 ,1,0,86040 ,1,1,86030 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272935 ,2,14964,279495 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,303260 ,2,14957,45 ,2,14958,126190 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126180 ,2,14963,272935 ,2,14964,279495 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,126150 ,2,14969,588200 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86850 ,1,1,86840 ,1,2,86830 ,1,3,86820 ,1,4,86780 ,1,5,86770 ,1,6,86760 ,1,7,86750 ,1,8,86735 ,1,9,86705 ,1,10,86050 ,2,14956,303585 ,2,14957,45 ,2,14958,126340 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126330 ,2,14963,272945 ,2,14964,279505 ,2,14965,45 ,2,14966,588235 ,2,14967,45 ,2,14968,75 ,2,14969,588215 ,2,14970,75 ,2,14971,368820 ,2,829,45 ,1,0,45470 ,2,14956,303370 ,2,14957,45 ,2,14958,126230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126220 ,2,14963,272945 ,2,14964,279505 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,588225 ,2,14970,75 ,2,14971,368835 ,2,829,45 ,1,0,100 ,2,14956,303380 ,2,14957,45 ,2,14958,126250 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126240 ,2,14963,272945 ,2,14964,279505 ,2,14965,45 ,2,14966,588270 ,2,14967,45 ,2,14968,75 ,2,14969,588265 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86125 ,1,1,85345 ,1,2,72090 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272945 ,2,14964,279505 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,303640 ,2,14957,45 ,2,14958,126615 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126605 ,2,14963,272955 ,2,14964,279515 ,2,14965,553025 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,588290 ,2,14970,75 ,2,14971,369505 ,2,829,45 ,1,0,267210 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272955 ,2,14964,279515 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,20200 ,1,1,20190 ,1,2,20180 ,1,3,20170 ,1,4,45 ,1,5,45 ,1,6,20160 ,1,7,20125 ,1,8,20065 ,1,9,45 ,1,10,45 ,1,11,20115 ,1,12,20105 ,1,13,20095 ,1,14,621000 ,2,14956,303650 ,2,14957,45 ,2,14958,126870 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,126855 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588295 ,2,14970,126835 ,2,14971,370220 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,126965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272965 ,2,14964,279525 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,303755 ,2,14957,45 ,2,14958,127080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127070 ,2,14963,272990 ,2,14964,279540 ,2,14965,45 ,2,14966,580450 ,2,14967,45 ,2,14968,75 ,2,14969,588300 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86160 ,1,1,86150 ,1,2,86135 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,272990 ,2,14964,279540 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,303790 ,2,14957,45 ,2,14958,127230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127220 ,2,14963,273000 ,2,14964,279550 ,2,14965,553035 ,2,14966,561380 ,2,14967,45 ,2,14968,75 ,2,14969,588335 ,2,14970,127170 ,2,14971,45 ,2,829,45 ,1,0,564265 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273000 ,2,14964,279550 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86170 ,2,14956,303895 ,2,14957,45 ,2,14958,127300 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127285 ,2,14963,273010 ,2,14964,279560 ,2,14965,45 ,2,14966,572210 ,2,14967,45 ,2,14968,75 ,2,14969,588340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273010 ,2,14964,279560 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,564285 ,2,14956,303935 ,2,14957,45 ,2,14958,127385 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127375 ,2,14963,273020 ,2,14964,279570 ,2,14965,45 ,2,14966,588350 ,2,14967,45 ,2,14968,75 ,2,14969,588345 ,2,14970,75 ,2,14971,371050 ,2,829,45 ,1,0,86180 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273020 ,2,14964,279570 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86150 ,2,14956,304065 ,2,14957,45 ,2,14958,127595 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127555 ,2,14963,273035 ,2,14964,279600 ,2,14965,45 ,2,14966,580360 ,2,14967,45 ,2,14968,75 ,2,14969,588360 ,2,14970,75 ,2,14971,371140 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273035 ,2,14964,279600 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86195 ,2,14956,303980 ,2,14957,45 ,2,14958,127495 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127485 ,2,14963,273035 ,2,14964,279600 ,2,14965,45 ,2,14966,569680 ,2,14967,45 ,2,14968,75 ,2,14969,588365 ,2,14970,75 ,2,14971,371160 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358915 ,1,3,65 ,2,14956,303990 ,2,14957,45 ,2,14958,127525 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127505 ,2,14963,273035 ,2,14964,279600 ,2,14965,45 ,2,14966,576620 ,2,14967,45 ,2,14968,75 ,2,14969,588370 ,2,14970,75 ,2,14971,371170 ,2,829,45 ,2,14956,304000 ,2,14957,45 ,2,14958,127545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127535 ,2,14963,273035 ,2,14964,279600 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,588400 ,2,14970,75 ,2,14971,371180 ,2,829,45 ,1,0,86205 ,2,14956,304085 ,2,14957,45 ,2,14958,127680 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127665 ,2,14963,265235 ,2,14964,280590 ,2,14965,553045 ,2,14966,588410 ,2,14967,45 ,2,14968,75 ,2,14969,588405 ,2,14970,75 ,2,14971,371610 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358900 ,1,3,65 ,2,14956,304095 ,2,14957,45 ,2,14958,127710 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,127700 ,2,14963,265235 ,2,14964,280590 ,2,14965,553060 ,2,14966,588425 ,2,14967,45 ,2,14968,75 ,2,14969,588415 ,2,14970,75 ,2,14971,371805 ,2,829,45 ,2,14956,304125 ,2,14957,45 ,2,14958,128280 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128270 ,2,14963,265235 ,2,14964,280590 ,2,14965,553070 ,2,14966,588465 ,2,14967,45 ,2,14968,75 ,2,14969,588440 ,2,14970,75 ,2,14971,374305 ,2,829,45 ,1,0,257385 ,1,1,257375 ,2,14956,304135 ,2,14957,45 ,2,14958,128350 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128340 ,2,14963,265760 ,2,14964,280655 ,2,14965,553095 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588490 ,2,14970,75 ,2,14971,374780 ,2,829,45 ,2,14956,304170 ,2,14957,45 ,2,14958,128380 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128370 ,2,14963,265715 ,2,14964,280655 ,2,14965,553120 ,2,14966,588530 ,2,14967,45 ,2,14968,75 ,2,14969,588505 ,2,14970,75 ,2,14971,375050 ,2,829,45 ,1,0,86235 ,1,1,86225 ,2,14956,304235 ,2,14957,45 ,2,14958,128440 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128430 ,2,14963,265235 ,2,14964,280590 ,2,14965,553150 ,2,14966,588545 ,2,14967,45 ,2,14968,75 ,2,14969,588540 ,2,14970,75 ,2,14971,375165 ,2,829,45 ,2,14956,304215 ,2,14957,45 ,2,14958,128420 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128400 ,2,14963,265235 ,2,14964,280590 ,2,14965,553145 ,2,14966,588555 ,2,14967,45 ,2,14968,75 ,2,14969,588550 ,2,14970,75 ,2,14971,375205 ,2,829,45 ,1,0,86285 ,1,1,87405 ,1,2,86245 ,2,14956,304245 ,2,14957,45 ,2,14958,128490 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128480 ,2,14963,271940 ,2,14964,280665 ,2,14965,553160 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588590 ,2,14970,75 ,2,14971,375390 ,2,829,45 ,2,14956,304275 ,2,14957,45 ,2,14958,128545 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128535 ,2,14963,271940 ,2,14964,280665 ,2,14965,553200 ,2,14966,588610 ,2,14967,45 ,2,14968,75 ,2,14969,588605 ,2,14970,75 ,2,14971,375395 ,2,829,45 ,1,0,86265 ,1,1,86255 ,2,14956,304285 ,2,14957,45 ,2,14958,128565 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128555 ,2,14963,271940 ,2,14964,280665 ,2,14965,553210 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588615 ,2,14970,75 ,2,14971,375405 ,2,829,45 ,2,14956,304295 ,2,14957,45 ,2,14958,128590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128580 ,2,14963,271940 ,2,14964,280665 ,2,14965,553225 ,2,14966,588665 ,2,14967,45 ,2,14968,75 ,2,14969,588660 ,2,14970,75 ,2,14971,375410 ,2,829,45 ,1,0,86355 ,1,1,86345 ,1,2,86335 ,1,3,86325 ,1,4,86315 ,1,5,86305 ,2,14956,304315 ,2,14957,45 ,2,14958,128660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128650 ,2,14963,265760 ,2,14964,280655 ,2,14965,553285 ,2,14966,588685 ,2,14967,45 ,2,14968,75 ,2,14969,588670 ,2,14970,75 ,2,14971,375420 ,2,829,45 ,1,0,86670 ,1,1,86660 ,1,2,86650 ,1,3,86440 ,1,4,86400 ,2,14956,304305 ,2,14957,45 ,2,14958,128610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128600 ,2,14963,265760 ,2,14964,280655 ,2,14965,553270 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588690 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,84765 ,1,1,86410 ,2,14956,304335 ,2,14957,45 ,2,14958,128705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128695 ,2,14963,265760 ,2,14964,280655 ,2,14965,553355 ,2,14966,588750 ,2,14967,45 ,2,14968,75 ,2,14969,588745 ,2,14970,75 ,2,14971,375425 ,2,829,45 ,1,0,86670 ,1,1,86660 ,1,2,86430 ,1,3,86830 ,2,14956,304325 ,2,14957,45 ,2,14958,128680 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128670 ,2,14963,265760 ,2,14964,280655 ,2,14965,553345 ,2,14966,588760 ,2,14967,45 ,2,14968,75 ,2,14969,588755 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,198270 ,2,14956,304345 ,2,14957,45 ,2,14958,128725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128715 ,2,14963,265760 ,2,14964,280655 ,2,14965,553375 ,2,14966,588775 ,2,14967,45 ,2,14968,75 ,2,14969,588770 ,2,14970,75 ,2,14971,375475 ,2,829,45 ,2,14956,304360 ,2,14957,45 ,2,14958,128760 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128750 ,2,14963,265760 ,2,14964,280655 ,2,14965,553420 ,2,14966,588795 ,2,14967,45 ,2,14968,75 ,2,14969,588785 ,2,14970,75 ,2,14971,375480 ,2,829,45 ,1,0,86460 ,1,1,86450 ,2,14956,304370 ,2,14957,45 ,2,14958,128780 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128770 ,2,14963,266050 ,2,14964,280655 ,2,14965,553430 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588800 ,2,14970,75 ,2,14971,375500 ,2,829,45 ,2,14956,304390 ,2,14957,45 ,2,14958,128820 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128810 ,2,14963,265715 ,2,14964,280655 ,2,14965,553445 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588810 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86490 ,1,1,86470 ,2,14956,304435 ,2,14957,45 ,2,14958,128840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128830 ,2,14963,265715 ,2,14964,280655 ,2,14965,553495 ,2,14966,588865 ,2,14967,45 ,2,14968,75 ,2,14969,588830 ,2,14970,75 ,2,14971,375540 ,2,829,45 ,2,14956,304495 ,2,14957,45 ,2,14958,128875 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128860 ,2,14963,265715 ,2,14964,280655 ,2,14965,553510 ,2,14966,588900 ,2,14967,45 ,2,14968,75 ,2,14969,588875 ,2,14970,75 ,2,14971,375545 ,2,829,45 ,1,0,267200 ,1,1,45 ,1,2,45 ,2,14956,304515 ,2,14957,45 ,2,14958,128895 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128885 ,2,14963,265715 ,2,14964,280655 ,2,14965,553560 ,2,14966,588950 ,2,14967,45 ,2,14968,75 ,2,14969,588905 ,2,14970,75 ,2,14971,375555 ,2,829,45 ,1,0,20380 ,1,1,20265 ,1,2,20370 ,1,3,20275 ,1,4,45 ,1,5,20360 ,1,6,20320 ,1,7,20310 ,1,8,20255 ,1,9,20300 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,614390 ,2,14956,304525 ,2,14957,45 ,2,14958,128965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128955 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588955 ,2,14970,75 ,2,14971,375580 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370060 ,1,3,65 ,2,14956,304535 ,2,14957,45 ,2,14958,128985 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,128975 ,2,14963,265580 ,2,14964,280665 ,2,14965,45 ,2,14966,558505 ,2,14967,45 ,2,14968,75 ,2,14969,588965 ,2,14970,75 ,2,14971,375585 ,2,829,45 ,2,14956,304555 ,2,14957,45 ,2,14958,129010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129000 ,2,14963,265735 ,2,14964,280655 ,2,14965,553570 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588980 ,2,14970,75 ,2,14971,375605 ,2,829,45 ,1,0,86500 ,2,14956,304595 ,2,14957,45 ,2,14958,129030 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129020 ,2,14963,266450 ,2,14964,280655 ,2,14965,553580 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,588990 ,2,14970,75 ,2,14971,375635 ,2,829,45 ,1,0,614390 ,1,1,615295 ,1,2,65 ,1,3,370045 ,1,4,370035 ,1,5,65 ,1,6,370025 ,1,7,65 ,1,8,370015 ,1,9,65 ,1,10,370005 ,1,11,369995 ,1,12,369985 ,1,13,65 ,1,14,65 ,1,15,369975 ,1,16,369930 ,1,17,65 ,2,14956,304605 ,2,14957,45 ,2,14958,129075 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129065 ,2,14963,265800 ,2,14964,280590 ,2,14965,553615 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589015 ,2,14970,75 ,2,14971,375650 ,2,829,45 ,2,14956,304640 ,2,14957,45 ,2,14958,129095 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129085 ,2,14963,265235 ,2,14964,280590 ,2,14965,553640 ,2,14966,589040 ,2,14967,45 ,2,14968,75 ,2,14969,589035 ,2,14970,75 ,2,14971,375665 ,2,829,45 ,1,0,86520 ,1,1,86510 ,2,14956,304615 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129105 ,2,14963,265235 ,2,14964,280590 ,2,14965,553650 ,2,14966,589045 ,2,14967,45 ,2,14968,75 ,2,14969,605810 ,2,14970,75 ,2,14971,375675 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369920 ,2,14956,304650 ,2,14957,45 ,2,14958,129125 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129115 ,2,14963,265235 ,2,14964,280590 ,2,14965,553690 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589070 ,2,14970,75 ,2,14971,375710 ,2,829,45 ,2,14956,304660 ,2,14957,45 ,2,14958,129160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129150 ,2,14963,265235 ,2,14964,280590 ,2,14965,553710 ,2,14966,589085 ,2,14967,45 ,2,14968,75 ,2,14969,589080 ,2,14970,75 ,2,14971,375720 ,2,829,45 ,1,0,86535 ,2,14956,304670 ,2,14957,45 ,2,14958,129180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129170 ,2,14963,265235 ,2,14964,280590 ,2,14965,553720 ,2,14966,589095 ,2,14967,45 ,2,14968,75 ,2,14969,589090 ,2,14970,75 ,2,14971,375730 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370210 ,2,14956,304750 ,2,14957,45 ,2,14958,129270 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129260 ,2,14963,273045 ,2,14964,279610 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589105 ,2,14970,75 ,2,14971,375850 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,129220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273045 ,2,14964,279610 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86545 ,2,14956,8335 ,2,14957,45 ,2,14958,129975 ,2,14959,129790 ,2,14960,75 ,2,14961,45 ,2,14962,129780 ,2,14963,273135 ,2,14964,279620 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589135 ,2,14970,75 ,2,14971,376075 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,370195 ,1,4,370185 ,1,5,65 ,2,14956,8220 ,2,14957,45 ,2,14958,129320 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273135 ,2,14964,279620 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,305165 ,2,14957,45 ,2,14958,129660 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129650 ,2,14963,273115 ,2,14964,279660 ,2,14965,45 ,2,14966,589160 ,2,14967,45 ,2,14968,75 ,2,14969,589155 ,2,14970,75 ,2,14971,376160 ,2,829,45 ,1,0,86565 ,1,1,86555 ,2,14956,305120 ,2,14957,45 ,2,14958,129425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129415 ,2,14963,273055 ,2,14964,279630 ,2,14965,45 ,2,14966,589205 ,2,14967,45 ,2,14968,75 ,2,14969,589165 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,618550 ,1,1,615295 ,1,2,370175 ,1,3,370130 ,1,4,370120 ,1,5,370110 ,1,6,370100 ,1,7,65 ,1,8,370090 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,370080 ,1,13,65 ,1,14,370070 ,1,15,65 ,1,16,65 ,1,17,65 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273055 ,2,14964,279630 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,305045 ,2,14957,45 ,2,14958,129525 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129515 ,2,14963,273065 ,2,14964,279640 ,2,14965,45 ,2,14966,589160 ,2,14967,45 ,2,14968,75 ,2,14969,589170 ,2,14970,75 ,2,14971,376140 ,2,829,45 ,1,0,86610 ,1,1,86600 ,1,2,86590 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273065 ,2,14964,279640 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,305100 ,2,14957,45 ,2,14958,129610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129600 ,2,14963,273105 ,2,14964,279650 ,2,14965,45 ,2,14966,589160 ,2,14967,45 ,2,14968,75 ,2,14969,589200 ,2,14970,75 ,2,14971,376150 ,2,829,45 ,1,0,86640 ,1,1,86620 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273105 ,2,14964,279650 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86470 ,1,1,86430 ,1,2,86830 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273115 ,2,14964,279660 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,198665 ,1,2,167895 ,1,3,198985 ,2,14956,305355 ,2,14957,45 ,2,14958,129760 ,2,14959,45 ,2,14960,129740 ,2,14961,45 ,2,14962,129730 ,2,14963,273125 ,2,14964,279670 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589210 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273125 ,2,14964,279670 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86430 ,1,1,86125 ,2,14956,305480 ,2,14957,45 ,2,14958,129860 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,129840 ,2,14963,273155 ,2,14964,279690 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589220 ,2,14970,75 ,2,14971,376210 ,2,829,45 ,1,0,46325 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273155 ,2,14964,279690 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,130115 ,2,14959,45 ,2,14960,130105 ,2,14961,45 ,2,14962,75 ,2,14963,273165 ,2,14964,279700 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370300 ,2,14956,305825 ,2,14957,45 ,2,14958,130435 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,130420 ,2,14963,266210 ,2,14964,280675 ,2,14965,553735 ,2,14966,589235 ,2,14967,45 ,2,14968,75 ,2,14969,589230 ,2,14970,75 ,2,14971,377560 ,2,829,45 ,2,14956,305980 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,130730 ,2,14963,273175 ,2,14964,279710 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,130625 ,2,14969,589270 ,2,14970,75 ,2,14971,378130 ,2,829,45 ,1,0,86955 ,1,1,86945 ,1,2,86935 ,1,3,86925 ,1,4,86915 ,1,5,86890 ,1,6,86880 ,1,7,86860 ,2,14956,8220 ,2,14957,45 ,2,14958,130670 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273175 ,2,14964,279710 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,305940 ,2,14957,45 ,2,14958,130720 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,130710 ,2,14963,273175 ,2,14964,279710 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,130700 ,2,14969,589275 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87080 ,1,1,87070 ,1,2,87045 ,1,3,87035 ,1,4,87025 ,1,5,87015 ,1,6,86985 ,1,7,86965 ,2,14956,8220 ,2,14957,45 ,2,14958,130850 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273185 ,2,14964,279720 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,563950 ,2,14956,306010 ,2,14957,45 ,2,14958,130840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,130830 ,2,14963,273185 ,2,14964,279720 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,130820 ,2,14969,589285 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,86420 ,1,1,87100 ,1,2,87090 ,1,3,86725 ,2,14956,306070 ,2,14957,45 ,2,14958,130960 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,130950 ,2,14963,265550 ,2,14964,280500 ,2,14965,553750 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589290 ,2,14970,75 ,2,14971,378225 ,2,829,45 ,1,0,564150 ,2,14956,306105 ,2,14957,45 ,2,14958,131065 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131055 ,2,14963,273225 ,2,14964,279735 ,2,14965,45 ,2,14966,574810 ,2,14967,45 ,2,14968,131010 ,2,14969,589325 ,2,14970,75 ,2,14971,378330 ,2,829,45 ,1,0,86410 ,1,1,87170 ,1,2,87160 ,1,3,86115 ,1,4,87140 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273225 ,2,14964,279735 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,306210 ,2,14957,45 ,2,14958,131215 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131190 ,2,14963,273235 ,2,14964,279745 ,2,14965,45 ,2,14966,574810 ,2,14967,45 ,2,14968,131075 ,2,14969,589330 ,2,14970,75 ,2,14971,378380 ,2,829,45 ,1,0,87275 ,1,1,87265 ,1,2,87255 ,1,3,87210 ,1,4,87200 ,1,5,87180 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273235 ,2,14964,279745 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,306125 ,2,14957,45 ,2,14958,131160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131145 ,2,14963,273235 ,2,14964,279745 ,2,14965,45 ,2,14966,574810 ,2,14967,45 ,2,14968,75 ,2,14969,589335 ,2,14970,75 ,2,14971,378385 ,2,829,45 ,1,0,267220 ,1,1,267230 ,1,2,45 ,2,14956,306180 ,2,14957,45 ,2,14958,131180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131170 ,2,14963,273235 ,2,14964,279745 ,2,14965,45 ,2,14966,574810 ,2,14967,45 ,2,14968,75 ,2,14969,589340 ,2,14970,75 ,2,14971,378405 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,20245 ,1,3,20210 ,1,4,20220 ,1,5,20505 ,1,6,45 ,1,7,20490 ,1,8,20480 ,1,9,19715 ,1,10,20470 ,1,11,20230 ,1,12,20460 ,1,13,19705 ,1,14,45 ,1,15,623955 ,2,14956,306260 ,2,14957,45 ,2,14958,131705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131695 ,2,14963,273245 ,2,14964,279755 ,2,14965,45 ,2,14966,568450 ,2,14967,45 ,2,14968,75 ,2,14969,589355 ,2,14970,75 ,2,14971,379245 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273245 ,2,14964,279755 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87285 ,2,14956,306305 ,2,14957,45 ,2,14958,131795 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131785 ,2,14963,265750 ,2,14964,280655 ,2,14965,553760 ,2,14966,589395 ,2,14967,45 ,2,14968,75 ,2,14969,589365 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,306325 ,2,14957,45 ,2,14958,131815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131805 ,2,14963,265715 ,2,14964,280655 ,2,14965,553820 ,2,14966,589430 ,2,14967,45 ,2,14968,75 ,2,14969,589410 ,2,14970,75 ,2,14971,379530 ,2,829,45 ,1,0,87300 ,2,14956,306575 ,2,14957,45 ,2,14958,132200 ,2,14959,45 ,2,14960,132190 ,2,14961,45 ,2,14962,132180 ,2,14963,273265 ,2,14964,279765 ,2,14965,45 ,2,14966,564755 ,2,14967,45 ,2,14968,75 ,2,14969,589440 ,2,14970,75 ,2,14971,380410 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273265 ,2,14964,279765 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87320 ,1,1,87310 ,2,14956,306455 ,2,14957,45 ,2,14958,132005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,131995 ,2,14963,273265 ,2,14964,279765 ,2,14965,45 ,2,14966,564755 ,2,14967,45 ,2,14968,75 ,2,14969,589480 ,2,14970,75 ,2,14971,380415 ,2,829,45 ,2,14956,306410 ,2,14957,45 ,2,14958,132110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132090 ,2,14963,273255 ,2,14964,279790 ,2,14965,45 ,2,14966,564755 ,2,14967,45 ,2,14968,75 ,2,14969,589485 ,2,14970,75 ,2,14971,380480 ,2,829,45 ,1,0,87330 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273255 ,2,14964,279790 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,306620 ,2,14957,45 ,2,14958,132445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132435 ,2,14963,273275 ,2,14964,279800 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,132365 ,2,14969,589490 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87355 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273275 ,2,14964,279800 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,306750 ,2,14957,45 ,2,14958,132590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132580 ,2,14963,273285 ,2,14964,279810 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589500 ,2,14970,75 ,2,14971,381180 ,2,829,45 ,1,0,87385 ,1,1,87375 ,1,2,87365 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273285 ,2,14964,279810 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,564655 ,2,14956,306665 ,2,14957,45 ,2,14958,132560 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132550 ,2,14963,273285 ,2,14964,279810 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589505 ,2,14970,75 ,2,14971,381185 ,2,829,45 ,1,0,87460 ,2,14956,306940 ,2,14957,45 ,2,14958,132675 ,2,14959,132630 ,2,14960,75 ,2,14961,45 ,2,14962,132620 ,2,14963,273285 ,2,14964,279810 ,2,14965,45 ,2,14966,571235 ,2,14967,45 ,2,14968,75 ,2,14969,589510 ,2,14970,75 ,2,14971,381270 ,2,829,45 ,2,14956,307020 ,2,14957,45 ,2,14958,132825 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132795 ,2,14963,266220 ,2,14964,280675 ,2,14965,553875 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589515 ,2,14970,75 ,2,14971,382225 ,2,829,45 ,1,0,270020 ,1,1,267130 ,1,2,45 ,2,14956,307060 ,2,14957,45 ,2,14958,132845 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,132835 ,2,14963,266210 ,2,14964,280675 ,2,14965,553885 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589550 ,2,14970,75 ,2,14971,382275 ,2,829,45 ,1,0,257475 ,2,14956,8220 ,2,14957,45 ,2,14958,133005 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273345 ,2,14964,280600 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307445 ,2,14957,45 ,2,14958,133345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133335 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589590 ,2,14970,133085 ,2,14971,383910 ,2,829,45 ,1,0,267250 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,133145 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,20675 ,1,1,20645 ,1,2,20615 ,1,3,20605 ,1,4,20595 ,1,5,45 ,1,6,45 ,1,7,20525 ,1,8,20585 ,1,9,20575 ,1,10,45 ,1,11,618550 ,2,14956,307160 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133155 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589615 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307300 ,2,14957,45 ,2,14958,133235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133165 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589620 ,2,14970,75 ,2,14971,383960 ,2,829,45 ,1,0,87490 ,1,1,87480 ,2,14956,307290 ,2,14957,45 ,2,14958,133225 ,2,14959,45 ,2,14960,133185 ,2,14961,45 ,2,14962,133175 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589635 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,199465 ,1,2,3770 ,1,3,167895 ,1,4,199455 ,1,5,199445 ,2,14956,307235 ,2,14957,45 ,2,14958,133205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133195 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589640 ,2,14970,75 ,2,14971,384005 ,2,829,45 ,1,0,564695 ,2,14956,307380 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133285 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589650 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87535 ,1,1,87525 ,1,2,87515 ,1,3,87505 ,2,14956,307390 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133295 ,2,14963,273355 ,2,14964,279820 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589705 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,357145 ,1,3,357105 ,1,4,65 ,1,5,357095 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,2,14956,307465 ,2,14957,45 ,2,14958,133365 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133355 ,2,14963,273365 ,2,14964,280540 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,589710 ,2,14970,75 ,2,14971,384040 ,2,829,45 ,2,14956,307515 ,2,14957,45 ,2,14958,133445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133405 ,2,14963,273375 ,2,14964,279840 ,2,14965,45 ,2,14966,573830 ,2,14967,45 ,2,14968,75 ,2,14969,589715 ,2,14970,75 ,2,14971,384095 ,2,829,45 ,1,0,87570 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273375 ,2,14964,279840 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307575 ,2,14957,45 ,2,14958,133575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133565 ,2,14963,273385 ,2,14964,279850 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,133475 ,2,14969,589730 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87580 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273385 ,2,14964,279850 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307545 ,2,14957,45 ,2,14958,133555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133545 ,2,14963,273385 ,2,14964,279850 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,133520 ,2,14969,589735 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267240 ,1,1,45 ,1,2,45 ,2,14956,307615 ,2,14957,45 ,2,14958,133665 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133655 ,2,14963,273395 ,2,14964,279860 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,133605 ,2,14969,589740 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,45 ,1,1,20625 ,1,2,613640 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273395 ,2,14964,279860 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307680 ,2,14957,45 ,2,14958,133765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133755 ,2,14963,273405 ,2,14964,279870 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,589745 ,2,14970,75 ,2,14971,384210 ,2,829,45 ,1,0,87620 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273405 ,2,14964,279870 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307650 ,2,14957,45 ,2,14958,133745 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133720 ,2,14963,273405 ,2,14964,279870 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,133710 ,2,14969,589780 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87715 ,1,1,87705 ,1,2,87695 ,1,3,87650 ,1,4,87640 ,1,5,87630 ,2,14956,307710 ,2,14957,45 ,2,14958,133865 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133855 ,2,14963,273435 ,2,14964,279900 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,589785 ,2,14970,75 ,2,14971,384395 ,2,829,45 ,1,0,564695 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273435 ,2,14964,279900 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87600 ,1,1,87755 ,1,2,87745 ,1,3,87725 ,2,14956,307760 ,2,14957,45 ,2,14958,133945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,133905 ,2,14963,273445 ,2,14964,279910 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,589790 ,2,14970,75 ,2,14971,384405 ,2,829,45 ,1,0,564695 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273445 ,2,14964,279910 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87590 ,1,1,87800 ,1,2,87775 ,1,3,87765 ,2,14956,307790 ,2,14957,45 ,2,14958,134010 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134000 ,2,14963,273455 ,2,14964,279920 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,133955 ,2,14969,589795 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273455 ,2,14964,279920 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87810 ,2,14956,307850 ,2,14957,45 ,2,14958,134080 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134070 ,2,14963,273465 ,2,14964,279930 ,2,14965,45 ,2,14966,569070 ,2,14967,45 ,2,14968,75 ,2,14969,589805 ,2,14970,75 ,2,14971,384465 ,2,829,45 ,1,0,87820 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273465 ,2,14964,279930 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,37615 ,1,1,19535 ,1,2,87820 ,1,3,20715 ,1,4,19755 ,1,5,20705 ,1,6,20695 ,1,7,45 ,1,8,45 ,1,9,45 ,1,10,45 ,1,11,20685 ,1,12,19545 ,1,13,257475 ,1,14,621000 ,2,14956,307880 ,2,14957,45 ,2,14958,134210 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134200 ,2,14963,273475 ,2,14964,279945 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,589820 ,2,14970,75 ,2,14971,384560 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273475 ,2,14964,279945 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87870 ,1,1,87860 ,1,2,87850 ,1,3,87830 ,2,14956,307925 ,2,14957,45 ,2,14958,134230 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134220 ,2,14963,273475 ,2,14964,279945 ,2,14965,45 ,2,14966,589865 ,2,14967,45 ,2,14968,75 ,2,14969,589810 ,2,14970,75 ,2,14971,384590 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,370290 ,1,3,65 ,1,4,370280 ,1,5,65 ,2,14956,308000 ,2,14957,45 ,2,14958,134610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134600 ,2,14963,273485 ,2,14964,279955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589880 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273485 ,2,14964,279955 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87880 ,2,14956,307955 ,2,14957,45 ,2,14958,134535 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134525 ,2,14963,273485 ,2,14964,279955 ,2,14965,45 ,2,14966,589890 ,2,14967,45 ,2,14968,134510 ,2,14969,589885 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,307965 ,2,14957,45 ,2,14958,134590 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134555 ,2,14963,273485 ,2,14964,279955 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,134545 ,2,14969,589900 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87955 ,1,1,87940 ,1,2,87930 ,1,3,87920 ,1,4,87910 ,2,14956,308050 ,2,14957,45 ,2,14958,134740 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,134725 ,2,14963,273495 ,2,14964,279965 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,589910 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,67820 ,1,1,71035 ,1,2,59500 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273495 ,2,14964,279965 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,87965 ,2,14956,308165 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,135225 ,2,14963,273505 ,2,14964,279975 ,2,14965,45 ,2,14966,589925 ,2,14967,45 ,2,14968,75 ,2,14969,589920 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,87975 ,2,14956,308095 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,135170 ,2,14963,273505 ,2,14964,279975 ,2,14965,45 ,2,14966,589940 ,2,14967,45 ,2,14968,75 ,2,14969,589935 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273505 ,2,14964,279975 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,617450 ,1,1,615295 ,1,2,165750 ,1,3,65 ,1,4,165740 ,1,5,65 ,1,6,165730 ,1,7,65 ,1,8,165720 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,165700 ,1,13,165690 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,165680 ,1,20,65 ,1,21,165670 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,165660 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,165650 ,1,32,65 ,1,33,165640 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,165630 ,1,39,165600 ,1,40,165590 ,1,41,165570 ,1,42,65 ,1,43,165560 ,1,44,65 ,1,45,165550 ,1,46,165530 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,165500 ,1,52,165490 ,1,53,65 ,1,54,165480 ,1,55,165470 ,1,56,165450 ,1,57,165430 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,87975 ,1,62,65 ,1,63,88025 ,1,64,87985 ,1,65,65 ,2,14956,308105 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,135215 ,2,14963,273505 ,2,14964,279975 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,589950 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356195 ,1,3,65 ,2,14956,308175 ,2,14957,45 ,2,14958,135245 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,135235 ,2,14963,273505 ,2,14964,279975 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,589990 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,135610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273540 ,2,14964,280000 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267270 ,1,1,45 ,1,2,45 ,2,14956,308290 ,2,14957,45 ,2,14958,135840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,135830 ,2,14963,265445 ,2,14964,280590 ,2,14965,553975 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,589995 ,2,14970,75 ,2,14971,387420 ,2,829,45 ,1,0,45 ,1,1,20780 ,1,2,20770 ,1,3,45 ,1,4,20725 ,1,5,20745 ,1,6,614045 ,2,14956,9235 ,2,14957,45 ,2,14958,136035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136015 ,2,14963,273570 ,2,14964,280590 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,136005 ,2,14969,590020 ,2,14970,75 ,2,14971,388275 ,2,829,45 ,1,0,561335 ,2,14956,308505 ,2,14957,45 ,2,14958,136160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136150 ,2,14963,273580 ,2,14964,280010 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590025 ,2,14970,75 ,2,14971,388515 ,2,829,45 ,1,0,88140 ,1,1,88130 ,1,2,88095 ,1,3,88295 ,1,4,88085 ,1,5,88075 ,1,6,88065 ,1,7,88055 ,1,8,88045 ,1,9,88035 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273580 ,2,14964,280010 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,199935 ,1,2,170230 ,2,14956,308545 ,2,14957,45 ,2,14958,136235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136225 ,2,14963,273590 ,2,14964,280020 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590050 ,2,14970,75 ,2,14971,388520 ,2,829,45 ,1,0,70765 ,1,1,78390 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273590 ,2,14964,280020 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,136330 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273610 ,2,14964,280030 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,136375 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273625 ,2,14964,280045 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88275 ,1,1,88265 ,1,2,88255 ,1,3,88245 ,1,4,88235 ,1,5,88225 ,1,6,88200 ,1,7,88190 ,1,8,165420 ,1,9,88180 ,1,10,88170 ,1,11,88150 ,2,14956,308870 ,2,14957,45 ,2,14958,136575 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136565 ,2,14963,273655 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590075 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,560980 ,2,14956,308975 ,2,14957,45 ,2,14958,136695 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136665 ,2,14963,265345 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590080 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,200075 ,2,14956,308930 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136675 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590085 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,200095 ,2,14956,308940 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136685 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590090 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,200160 ,2,14956,309025 ,2,14957,45 ,2,14958,136725 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136715 ,2,14963,265345 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590130 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88140 ,1,1,70765 ,1,2,78390 ,2,14956,309035 ,2,14957,45 ,2,14958,136770 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136760 ,2,14963,265345 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590135 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,564895 ,2,14956,10740 ,2,14957,45 ,2,14958,136790 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136780 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590140 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88285 ,2,14956,8400 ,2,14957,45 ,2,14958,136830 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136820 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590145 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8865 ,2,14957,45 ,2,14958,136880 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136840 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590150 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267290 ,1,1,45 ,1,2,45 ,2,14956,309285 ,2,14957,45 ,2,14958,136910 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136890 ,2,14963,273670 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590155 ,2,14970,75 ,2,14971,389575 ,2,829,45 ,1,0,45 ,1,1,20825 ,1,2,613640 ,2,14956,309100 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136900 ,2,14963,273680 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590160 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,6375 ,2,14957,45 ,2,14958,136945 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,136935 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590195 ,2,14970,75 ,2,14971,389620 ,2,829,45 ,1,0,88480 ,1,1,88460 ,1,2,88355 ,1,3,88345 ,2,14956,12275 ,2,14957,45 ,2,14958,137015 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137005 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590205 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,309450 ,2,14957,45 ,2,14958,137055 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137045 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,590215 ,2,14967,45 ,2,14968,75 ,2,14969,590210 ,2,14970,75 ,2,14971,389785 ,2,829,45 ,1,0,88365 ,1,1,88390 ,1,2,88380 ,2,14956,309410 ,2,14957,45 ,2,14958,137035 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137025 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,558080 ,2,14967,45 ,2,14968,75 ,2,14969,590215 ,2,14970,75 ,2,14971,389790 ,2,829,45 ,1,0,88400 ,1,1,57795 ,2,14956,309470 ,2,14957,45 ,2,14958,137115 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137105 ,2,14963,265345 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590220 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,12050 ,2,14957,45 ,2,14958,137160 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137150 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590250 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257495 ,2,14956,10100 ,2,14957,45 ,2,14958,137180 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137170 ,2,14963,265455 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590255 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88400 ,1,1,88450 ,1,2,88440 ,1,3,88430 ,2,14956,10935 ,2,14957,45 ,2,14958,137235 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137225 ,2,14963,265515 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,137215 ,2,14969,590260 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88400 ,1,1,58895 ,2,14956,309550 ,2,14957,45 ,2,14958,137275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137265 ,2,14963,265335 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,137245 ,2,14969,590265 ,2,14970,75 ,2,14971,389935 ,2,829,45 ,1,0,47665 ,2,14956,310235 ,2,14957,45 ,2,14958,137540 ,2,14959,137425 ,2,14960,137400 ,2,14961,45 ,2,14962,137390 ,2,14963,273690 ,2,14964,280055 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590275 ,2,14970,75 ,2,14971,390230 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,137370 ,2,14959,45 ,2,14960,137360 ,2,14961,45 ,2,14962,75 ,2,14963,273690 ,2,14964,280055 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3825 ,1,1,200415 ,1,2,200405 ,1,3,200390 ,2,14956,310110 ,2,14957,45 ,2,14958,137475 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137465 ,2,14963,273700 ,2,14964,280065 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590280 ,2,14970,75 ,2,14971,390325 ,2,829,45 ,1,0,3825 ,1,1,200390 ,1,2,200405 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273700 ,2,14964,280065 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,564970 ,2,14956,310305 ,2,14957,45 ,2,14958,137705 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137695 ,2,14963,273725 ,2,14964,280075 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590320 ,2,14970,75 ,2,14971,390810 ,2,829,45 ,1,0,564915 ,1,1,565015 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273725 ,2,14964,280075 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,310440 ,2,14957,45 ,2,14958,137835 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137825 ,2,14963,273735 ,2,14964,280105 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,137715 ,2,14969,590330 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267280 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273735 ,2,14964,280105 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257505 ,2,14956,310400 ,2,14957,45 ,2,14958,137815 ,2,14959,45 ,2,14960,137805 ,2,14961,45 ,2,14962,137790 ,2,14963,273735 ,2,14964,280105 ,2,14965,45 ,2,14966,581590 ,2,14967,45 ,2,14968,75 ,2,14969,590335 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88575 ,1,1,88545 ,2,14956,310495 ,2,14957,45 ,2,14958,137930 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,137920 ,2,14963,273745 ,2,14964,280115 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,137870 ,2,14969,590340 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,9255 ,1,1,200590 ,1,2,200580 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273745 ,2,14964,280115 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,565015 ,2,14956,310530 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138005 ,2,14963,273755 ,2,14964,280125 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590350 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,200590 ,1,1,200580 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273755 ,2,14964,280125 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,20920 ,1,1,88575 ,1,2,20960 ,1,3,45 ,1,4,20950 ,1,5,257505 ,1,6,45 ,1,7,45 ,1,8,88545 ,1,9,20940 ,1,10,614025 ,2,14956,310540 ,2,14957,45 ,2,14958,138025 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138015 ,2,14963,273755 ,2,14964,280125 ,2,14965,45 ,2,14966,568590 ,2,14967,45 ,2,14968,75 ,2,14969,590375 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,65 ,1,3,356285 ,1,4,65 ,1,5,356275 ,1,6,65 ,1,7,356265 ,1,8,356225 ,1,9,356215 ,2,14956,310620 ,2,14957,45 ,2,14958,138245 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138235 ,2,14963,273770 ,2,14964,280135 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,138190 ,2,14969,590385 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273770 ,2,14964,280135 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88585 ,2,14956,310715 ,2,14957,45 ,2,14958,138455 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138445 ,2,14963,273780 ,2,14964,280150 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,138355 ,2,14969,590400 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273780 ,2,14964,280150 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88605 ,1,1,88595 ,2,14956,310665 ,2,14957,45 ,2,14958,138430 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138420 ,2,14963,273780 ,2,14964,280150 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590405 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,311295 ,2,14957,45 ,2,14958,138555 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138535 ,2,14963,273790 ,2,14964,280160 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590410 ,2,14970,75 ,2,14971,392605 ,2,829,45 ,1,0,88615 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273790 ,2,14964,280160 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,311250 ,2,14957,45 ,2,14958,138655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138645 ,2,14963,273800 ,2,14964,280170 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590415 ,2,14970,75 ,2,14971,392615 ,2,829,45 ,1,0,257545 ,2,14956,8220 ,2,14957,45 ,2,14958,138625 ,2,14959,45 ,2,14960,138585 ,2,14961,45 ,2,14962,75 ,2,14963,273800 ,2,14964,280170 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88640 ,2,14956,311120 ,2,14957,45 ,2,14958,138815 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138805 ,2,14963,273830 ,2,14964,280180 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590435 ,2,14970,75 ,2,14971,392735 ,2,829,45 ,1,0,100 ,1,1,565045 ,1,2,565045 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273830 ,2,14964,280180 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,311410 ,2,14957,45 ,2,14958,138965 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138955 ,2,14963,266210 ,2,14964,280675 ,2,14965,45 ,2,14966,565490 ,2,14967,45 ,2,14968,75 ,2,14969,590450 ,2,14970,75 ,2,14971,393275 ,2,829,45 ,1,0,267300 ,1,1,45 ,1,2,45 ,2,14956,311420 ,2,14957,45 ,2,14958,138995 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,138985 ,2,14963,266220 ,2,14964,280675 ,2,14965,554040 ,2,14966,590460 ,2,14967,45 ,2,14968,75 ,2,14969,590455 ,2,14970,75 ,2,14971,393350 ,2,829,45 ,1,0,20910 ,1,1,21005 ,1,2,45 ,1,3,20900 ,1,4,45 ,1,5,616170 ,2,14956,311440 ,2,14957,45 ,2,14958,139110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139100 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590465 ,2,14970,75 ,2,14971,393675 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356120 ,1,3,65 ,2,14956,311495 ,2,14957,45 ,2,14958,139170 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139160 ,2,14963,266485 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590510 ,2,14970,75 ,2,14971,393790 ,2,829,45 ,2,14956,311530 ,2,14957,45 ,2,14958,139220 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139210 ,2,14963,266485 ,2,14964,280645 ,2,14965,45 ,2,14966,560420 ,2,14967,45 ,2,14968,139200 ,2,14969,590515 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267315 ,1,1,45 ,1,2,45 ,2,14956,311700 ,2,14957,45 ,2,14958,139310 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139295 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,590525 ,2,14967,45 ,2,14968,75 ,2,14969,590520 ,2,14970,75 ,2,14971,393875 ,2,829,45 ,1,0,88660 ,2,14956,311655 ,2,14957,45 ,2,14958,139275 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139265 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590525 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88660 ,1,1,21015 ,1,2,45 ,1,3,614705 ,2,14956,311750 ,2,14957,45 ,2,14958,139415 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139395 ,2,14963,265405 ,2,14964,280645 ,2,14965,45 ,2,14966,590535 ,2,14967,45 ,2,14968,139385 ,2,14969,590530 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,311865 ,2,14957,45 ,2,14958,139445 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139435 ,2,14963,266070 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590540 ,2,14970,75 ,2,14971,393940 ,2,829,45 ,1,0,88670 ,2,14956,312040 ,2,14957,45 ,2,14958,139510 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139500 ,2,14963,266070 ,2,14964,280645 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,590545 ,2,14970,75 ,2,14971,394005 ,2,829,45 ,2,14956,312085 ,2,14957,45 ,2,14958,139580 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139550 ,2,14963,266070 ,2,14964,280645 ,2,14965,45 ,2,14966,562925 ,2,14967,45 ,2,14968,139540 ,2,14969,590560 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257565 ,1,1,257555 ,2,14956,312095 ,2,14957,45 ,2,14958,139610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139600 ,2,14963,266210 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,139590 ,2,14969,590565 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,312105 ,2,14957,45 ,2,14958,139810 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,139800 ,2,14963,265235 ,2,14964,280590 ,2,14965,554055 ,2,14966,600065 ,2,14967,45 ,2,14968,139765 ,2,14969,590570 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,561430 ,2,14956,312290 ,2,14957,45 ,2,14958,140360 ,2,14959,45 ,2,14960,140350 ,2,14961,45 ,2,14962,140315 ,2,14963,273860 ,2,14964,280220 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590585 ,2,14970,75 ,2,14971,397175 ,2,829,45 ,1,0,88815 ,1,1,88805 ,1,2,88795 ,1,3,88780 ,1,4,88770 ,1,5,88760 ,1,6,88715 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273850 ,2,14964,280220 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,561430 ,1,3,562475 ,2,14956,312330 ,2,14957,45 ,2,14958,140470 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,140460 ,2,14963,273875 ,2,14964,280230 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590630 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88815 ,1,1,71435 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273875 ,2,14964,280230 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,70765 ,1,1,78390 ,1,2,73770 ,2,14956,312485 ,2,14957,45 ,2,14958,140550 ,2,14959,45 ,2,14960,140540 ,2,14961,45 ,2,14962,140510 ,2,14963,273885 ,2,14964,280240 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,590635 ,2,14970,75 ,2,14971,397545 ,2,829,45 ,1,0,88805 ,1,1,66360 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273885 ,2,14964,280240 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,140855 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273905 ,2,14964,280250 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257575 ,2,14956,318935 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,142925 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,142915 ,2,14969,592610 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88860 ,1,1,88825 ,2,14956,328005 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,144285 ,2,14963,273935 ,2,14964,280270 ,2,14965,45 ,2,14966,569615 ,2,14967,45 ,2,14968,75 ,2,14969,594290 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273935 ,2,14964,280270 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,329110 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,144925 ,2,14963,273945 ,2,14964,280280 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,594610 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,267325 ,1,1,45 ,1,2,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273945 ,2,14964,280280 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,21050 ,1,1,21070 ,1,2,45 ,1,3,45 ,1,4,21040 ,1,5,616170 ,2,14956,329050 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,144900 ,2,14963,273945 ,2,14964,280280 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,594615 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,145425 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273955 ,2,14964,280290 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257585 ,2,14956,8220 ,2,14957,45 ,2,14958,145840 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273965 ,2,14964,280300 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,2,14956,330965 ,2,14957,45 ,2,14958,145955 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,145900 ,2,14963,273975 ,2,14964,280330 ,2,14965,45 ,2,14966,595015 ,2,14967,45 ,2,14968,75 ,2,14969,595010 ,2,14970,75 ,2,14971,405520 ,2,829,45 ,1,0,100 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273975 ,2,14964,280330 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88880 ,2,14956,331020 ,2,14957,45 ,2,14958,146020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146010 ,2,14963,273985 ,2,14964,280340 ,2,14965,45 ,2,14966,587330 ,2,14967,45 ,2,14968,75 ,2,14969,595025 ,2,14970,75 ,2,14971,405560 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273985 ,2,14964,280340 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88890 ,1,1,57620 ,1,2,57795 ,2,14956,331150 ,2,14957,45 ,2,14958,146110 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146100 ,2,14963,273995 ,2,14964,280350 ,2,14965,45 ,2,14966,587525 ,2,14967,45 ,2,14968,75 ,2,14969,595070 ,2,14970,75 ,2,14971,405605 ,2,829,45 ,1,0,165065 ,1,1,165055 ,1,2,165045 ,1,3,165030 ,1,4,165020 ,1,5,88500 ,1,6,91600 ,1,7,91590 ,1,8,88930 ,1,9,88910 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273995 ,2,14964,280350 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,88955 ,2,14956,331210 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146160 ,2,14963,274005 ,2,14964,280360 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,595075 ,2,14970,75 ,2,14971,405610 ,2,829,45 ,1,0,565210 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274005 ,2,14964,280360 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,565235 ,1,1,565230 ,1,2,565220 ,1,3,565215 ,2,14956,332085 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146680 ,2,14963,274030 ,2,14964,280375 ,2,14965,45 ,2,14966,595230 ,2,14967,45 ,2,14968,146635 ,2,14969,595225 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274030 ,2,14964,280375 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,337190 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146930 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,146920 ,2,14969,595460 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,88975 ,2,14956,337200 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146950 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,146940 ,2,14969,595480 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,337210 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,146985 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,146975 ,2,14969,595485 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,565265 ,2,14956,337220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,147005 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,146995 ,2,14969,595490 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,565275 ,1,1,565270 ,2,14956,337265 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,147040 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,147030 ,2,14969,595495 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,337275 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,147060 ,2,14963,266140 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,147050 ,2,14969,595505 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,565285 ,2,14956,8220 ,2,14957,45 ,2,14958,147925 ,2,14959,45 ,2,14960,147915 ,2,14961,45 ,2,14962,75 ,2,14963,274040 ,2,14964,280385 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,341435 ,2,14957,45 ,2,14958,148020 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,148010 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,595960 ,2,14970,75 ,2,14971,406790 ,2,829,45 ,1,0,91285 ,1,1,88985 ,2,14956,341535 ,2,14957,45 ,2,14958,148110 ,2,14959,45 ,2,14960,148085 ,2,14961,45 ,2,14962,148075 ,2,14963,265290 ,2,14964,280590 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,595990 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,88995 ,2,14956,341690 ,2,14957,45 ,2,14958,148205 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,148195 ,2,14963,267085 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596015 ,2,14970,75 ,2,14971,406930 ,2,829,45 ,1,0,565325 ,2,14956,341955 ,2,14957,45 ,2,14958,148610 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,148600 ,2,14963,267085 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596085 ,2,14970,75 ,2,14971,407060 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,90645 ,1,9,65 ,1,10,90635 ,1,11,90625 ,1,12,90615 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,90605 ,1,18,90585 ,1,19,90575 ,1,20,90565 ,1,21,90555 ,1,22,65 ,1,23,65 ,1,24,90545 ,1,25,90535 ,1,26,65 ,1,27,65 ,1,28,90525 ,1,29,65 ,1,30,90480 ,1,31,90470 ,1,32,65 ,1,33,65 ,1,34,89235 ,1,35,65 ,1,36,88995 ,1,37,89225 ,1,38,65 ,1,39,65 ,1,40,89215 ,1,41,89205 ,1,42,89195 ,1,43,89185 ,1,44,65 ,1,45,89175 ,1,46,89135 ,1,47,89125 ,1,48,65 ,1,49,89115 ,1,50,65 ,1,51,65 ,1,52,89085 ,1,53,65 ,1,54,65 ,1,55,89065 ,1,56,89055 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,89015 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,341990 ,2,14957,45 ,2,14958,148640 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,148630 ,2,14963,267085 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596090 ,2,14970,75 ,2,14971,407110 ,2,829,45 ,1,0,90460 ,1,1,89245 ,2,14956,343355 ,2,14957,45 ,2,14958,149390 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,149380 ,2,14963,274050 ,2,14964,280395 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596350 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,565415 ,1,1,565400 ,1,2,565395 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274050 ,2,14964,280395 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257605 ,2,14956,8220 ,2,14957,45 ,2,14958,149765 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,273365 ,2,14964,280540 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,344385 ,2,14957,45 ,2,14958,150020 ,2,14959,45 ,2,14960,150010 ,2,14961,45 ,2,14962,150000 ,2,14963,273345 ,2,14964,280600 ,2,14965,45 ,2,14966,596590 ,2,14967,45 ,2,14968,75 ,2,14969,596555 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,608850 ,2,14956,6660 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,149990 ,2,14963,274060 ,2,14964,280600 ,2,14965,45 ,2,14966,589575 ,2,14967,45 ,2,14968,75 ,2,14969,596590 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,625360 ,1,1,615295 ,1,2,90315 ,1,3,90305 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,90270 ,1,9,90260 ,1,10,90250 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,90230 ,1,18,65 ,1,19,65 ,1,20,90220 ,1,21,90210 ,1,22,65 ,1,23,90105 ,1,24,90045 ,1,25,90035 ,1,26,90025 ,1,27,65 ,1,28,65 ,1,29,90015 ,1,30,89995 ,1,31,89985 ,1,32,89955 ,1,33,89945 ,1,34,89935 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,89925 ,1,39,65 ,1,40,89910 ,1,41,89900 ,1,42,89890 ,1,43,89880 ,1,44,89425 ,1,45,89400 ,1,46,89380 ,1,47,89370 ,1,48,65 ,1,49,65 ,1,50,89340 ,1,51,65 ,1,52,89320 ,1,53,65 ,1,54,65 ,1,55,89300 ,1,56,89290 ,1,57,65 ,1,58,89280 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,344470 ,2,14957,45 ,2,14958,150050 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150030 ,2,14963,274070 ,2,14964,280480 ,2,14965,45 ,2,14966,563135 ,2,14967,45 ,2,14968,75 ,2,14969,596595 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,344450 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150040 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596600 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89435 ,1,1,89445 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274090 ,2,14964,280405 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89860 ,1,1,89840 ,1,2,89505 ,1,3,89485 ,2,14956,347270 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150415 ,2,14963,274090 ,2,14964,280405 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596760 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274100 ,2,14964,280425 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,89505 ,1,10,89830 ,1,11,89820 ,1,12,89810 ,1,13,89790 ,1,14,89755 ,1,15,65 ,1,16,65 ,1,17,89745 ,1,18,65 ,1,19,65 ,1,20,89735 ,1,21,89715 ,1,22,89705 ,1,23,89685 ,1,24,65 ,1,25,89655 ,1,26,65 ,1,27,89625 ,1,28,65 ,1,29,65 ,1,30,89605 ,1,31,89530 ,1,32,89860 ,1,33,65 ,2,14956,347300 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150465 ,2,14963,274100 ,2,14964,280425 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596790 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274130 ,2,14964,280435 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89585 ,1,1,89560 ,1,2,89540 ,1,3,89550 ,2,14956,347365 ,2,14957,45 ,2,14958,150540 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150530 ,2,14963,274130 ,2,14964,280435 ,2,14965,45 ,2,14966,571375 ,2,14967,45 ,2,14968,75 ,2,14969,596795 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,558090 ,2,14956,347375 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150550 ,2,14963,274130 ,2,14964,280435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596800 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,48845 ,2,14956,347385 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150565 ,2,14963,274130 ,2,14964,280435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596805 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,600065 ,2,14956,347395 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150575 ,2,14963,274130 ,2,14964,280435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596820 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,347410 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150585 ,2,14963,274130 ,2,14964,280435 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596825 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89635 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274140 ,2,14964,280445 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89745 ,1,1,89735 ,1,2,89715 ,2,14956,347455 ,2,14957,45 ,2,14958,150655 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150645 ,2,14963,274140 ,2,14964,280445 ,2,14965,45 ,2,14966,563770 ,2,14967,45 ,2,14968,75 ,2,14969,596830 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89830 ,1,1,89685 ,1,2,89605 ,1,3,89860 ,1,4,89505 ,1,5,89705 ,1,6,89625 ,1,7,89530 ,1,8,89820 ,1,9,89810 ,1,10,89655 ,1,11,89790 ,1,12,89755 ,1,13,89745 ,1,14,89735 ,1,15,89715 ,2,14956,347465 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150670 ,2,14963,274140 ,2,14964,280445 ,2,14965,45 ,2,14966,596870 ,2,14967,45 ,2,14968,75 ,2,14969,596835 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,347510 ,2,14957,45 ,2,14958,150690 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150680 ,2,14963,274140 ,2,14964,280445 ,2,14965,45 ,2,14966,596880 ,2,14967,45 ,2,14968,75 ,2,14969,596875 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,608910 ,2,14956,347520 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150700 ,2,14963,274140 ,2,14964,280445 ,2,14965,45 ,2,14966,568365 ,2,14967,45 ,2,14968,75 ,2,14969,596895 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,90115 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274150 ,2,14964,280455 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90125 ,2,14956,347595 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,150770 ,2,14963,274150 ,2,14964,280455 ,2,14965,45 ,2,14966,600040 ,2,14967,45 ,2,14968,75 ,2,14969,596900 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,100 ,1,1,565490 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,150800 ,2,14961,45 ,2,14962,75 ,2,14963,274160 ,2,14964,280470 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274080 ,2,14964,280480 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90160 ,1,1,90150 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274185 ,2,14964,280490 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,5610 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151025 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599895 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90200 ,1,1,90125 ,1,2,90180 ,1,3,90170 ,2,14956,3350 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151055 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599905 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90280 ,1,1,89705 ,2,14956,12565 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151065 ,2,14963,265560 ,2,14964,280500 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,599900 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89910 ,1,1,89290 ,1,2,89880 ,1,3,90305 ,1,4,89925 ,1,5,89890 ,1,6,90045 ,1,7,90220 ,1,8,90025 ,1,9,89985 ,1,10,90250 ,1,11,89340 ,1,12,89955 ,1,13,90210 ,1,14,90270 ,1,15,89935 ,1,16,89300 ,1,17,89995 ,1,18,89320 ,1,19,89945 ,1,20,89900 ,1,21,90105 ,1,22,89280 ,1,23,90015 ,1,24,90315 ,1,25,89425 ,1,26,90230 ,1,27,89370 ,1,28,90035 ,1,29,90260 ,1,30,89400 ,1,31,89380 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,266325 ,2,14964,280550 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,8220 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,75 ,2,14963,274195 ,2,14964,280560 ,2,14965,45 ,2,14966,45 ,2,14967,45 ,2,14968,75 ,2,14969,45 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90345 ,1,1,90280 ,1,2,89840 ,1,3,89485 ,1,4,90335 ,1,5,90325 ,2,14956,6255 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151295 ,2,14963,266560 ,2,14964,280580 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596970 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,12225 ,2,14957,45 ,2,14958,151345 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151335 ,2,14963,274215 ,2,14964,280590 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,596975 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89245 ,1,1,90460 ,1,2,90450 ,1,3,90440 ,1,4,90430 ,1,5,90420 ,1,6,90375 ,1,7,90355 ,2,14956,348180 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151455 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,589575 ,2,14967,45 ,2,14968,75 ,2,14969,596985 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90345 ,2,14956,348190 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151565 ,2,14963,273335 ,2,14964,280600 ,2,14965,45 ,2,14966,589575 ,2,14967,45 ,2,14968,75 ,2,14969,597010 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,3010 ,1,1,8855 ,1,2,194945 ,2,14956,348265 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151670 ,2,14963,274240 ,2,14964,280610 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597105 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,89245 ,1,1,90460 ,2,14956,4520 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,75 ,2,14961,45 ,2,14962,151850 ,2,14963,274305 ,2,14964,280665 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597120 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90470 ,1,1,90605 ,1,2,90575 ,1,3,89115 ,1,4,90615 ,1,5,89175 ,1,6,89125 ,1,7,90585 ,1,8,90555 ,1,9,89235 ,1,10,90635 ,1,11,89215 ,1,12,89205 ,1,13,90565 ,1,14,89015 ,1,15,89135 ,1,16,88995 ,1,17,89225 ,1,18,89185 ,1,19,90545 ,1,20,89065 ,1,21,90480 ,1,22,89085 ,1,23,90625 ,1,24,90525 ,1,25,89055 ,1,26,89195 ,1,27,90535 ,1,28,90645 ,2,14956,348590 ,2,14957,45 ,2,14958,75 ,2,14959,45 ,2,14960,151955 ,2,14961,45 ,2,14962,151945 ,2,14963,266080 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597150 ,2,14970,75 ,2,14971,45 ,2,829,45 ,2,14956,348660 ,2,14957,45 ,2,14958,152010 ,2,14959,45 ,2,14960,152000 ,2,14961,45 ,2,14962,151990 ,2,14963,266210 ,2,14964,280675 ,2,14965,45 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,597160 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,90675 ,1,1,90665 ,1,2,90655 ,2,14956,351660 ,2,14957,45 ,2,14958,159645 ,2,14959,159635 ,2,14960,75 ,2,14961,45 ,2,14962,159625 ,2,14963,265735 ,2,14964,280655 ,2,14965,557650 ,2,14966,597925 ,2,14967,45 ,2,14968,75 ,2,14969,558805 ,2,14970,159615 ,2,14971,283070 ,2,829,45 ,1,0,12445 ,1,1,202200 ,1,2,202295 ,1,3,202435 ,2,14956,7210 ,2,14957,45 ,2,14958,160100 ,2,14959,45 ,2,14960,160090 ,2,14961,45 ,2,14962,160080 ,2,14963,266250 ,2,14964,280675 ,2,14965,557695 ,2,14966,600065 ,2,14967,45 ,2,14968,75 ,2,14969,563560 ,2,14970,75 ,2,14971,45 ,2,829,45 ,1,0,257695 ,1,1,257685 ,2,14973,14730 ,2,14974,14730 ,2,14963,265245 ,2,829,45 ,1,0,625595 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,91250 ,1,9,91240 ,1,10,65 ,1,11,91230 ,1,12,91220 ,1,13,91190 ,1,14,91180 ,1,15,65 ,1,16,65 ,1,17,91170 ,1,18,91160 ,1,19,91150 ,1,20,91140 ,1,21,91095 ,1,22,65 ,1,23,91085 ,1,24,65 ,1,25,91075 ,1,26,91065 ,1,27,91050 ,1,28,65 ,1,29,65 ,1,30,91040 ,1,31,91030 ,1,32,65 ,1,33,90980 ,1,34,65 ,1,35,65 ,1,36,88955 ,1,37,90970 ,1,38,90920 ,1,39,65 ,1,40,90910 ,1,41,90885 ,1,42,90875 ,1,43,90865 ,1,44,90855 ,1,45,90845 ,1,46,65 ,1,47,90835 ,1,48,65 ,1,49,90825 ,1,50,90815 ,1,51,65 ,1,52,90775 ,1,53,65 ,1,54,65 ,1,55,90765 ,1,56,90740 ,1,57,90730 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,90720 ,1,62,90710 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14973,14820 ,2,14974,14820 ,2,14963,265290 ,2,829,45 ,1,0,91240 ,2,14973,14820 ,2,14974,14820 ,2,14963,265310 ,2,829,45 ,1,0,90940 ,1,1,90930 ,2,14973,14820 ,2,14974,14820 ,2,14963,265325 ,2,829,45 ,1,0,565590 ,2,14973,14820 ,2,14974,14820 ,2,14963,265325 ,2,829,45 ,1,0,565610 ,1,1,565595 ,2,14973,14875 ,2,14974,14875 ,2,14963,265345 ,2,829,45 ,1,0,565605 ,2,14973,14655 ,2,14974,14655 ,2,14963,265355 ,2,829,45 ,1,0,90960 ,1,1,90950 ,1,2,90940 ,2,14973,15015 ,2,14974,15015 ,2,14963,265475 ,2,829,45 ,1,0,91220 ,2,14973,15065 ,2,14974,15065 ,2,14963,265525 ,2,829,45 ,1,0,90885 ,1,1,91120 ,1,2,70175 ,1,3,66960 ,2,14973,15090 ,2,14974,15090 ,2,14963,265550 ,2,829,45 ,1,0,69965 ,2,14973,15065 ,2,14974,15065 ,2,14963,265525 ,2,829,45 ,1,0,3010 ,1,1,167555 ,1,2,194945 ,2,14973,14470 ,2,14974,14470 ,2,14963,265570 ,2,829,45 ,1,0,90815 ,1,1,91040 ,1,2,91230 ,1,3,91140 ,1,4,91030 ,1,5,91150 ,1,6,91170 ,1,7,90825 ,1,8,90885 ,1,9,90835 ,1,10,90720 ,1,11,91220 ,1,12,90845 ,1,13,91240 ,1,14,91085 ,1,15,91180 ,1,16,90765 ,1,17,91190 ,1,18,91075 ,1,19,91160 ,1,20,91095 ,1,21,88955 ,1,22,90970 ,1,23,90865 ,1,24,90920 ,1,25,90740 ,1,26,90980 ,1,27,90775 ,1,28,90910 ,1,29,90875 ,1,30,91050 ,1,31,90710 ,1,32,90730 ,1,33,90855 ,1,34,91065 ,1,35,91250 ,2,14973,15215 ,2,14974,15215 ,2,14963,265630 ,2,829,45 ,1,0,565670 ,2,14973,15240 ,2,14974,15240 ,2,14963,265550 ,2,829,45 ,1,0,565675 ,2,14973,15260 ,2,14974,15260 ,2,14963,265580 ,2,829,45 ,1,0,91275 ,1,1,91265 ,1,2,90930 ,2,14973,15330 ,2,14974,15330 ,2,14963,265680 ,2,829,45 ,1,0,12445 ,1,1,202200 ,1,2,202790 ,1,3,202690 ,1,4,202295 ,1,5,202435 ,2,14973,15330 ,2,14974,15330 ,2,14963,265715 ,2,829,45 ,1,0,91570 ,1,1,91555 ,1,2,91295 ,2,14973,15330 ,2,14974,15330 ,2,14963,265725 ,2,829,45 ,1,0,91340 ,2,14973,15330 ,2,14974,15330 ,2,14963,265735 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,91390 ,2,14973,15330 ,2,14974,15330 ,2,14963,265680 ,2,829,45 ,2,14973,14820 ,2,14974,14820 ,2,14963,265235 ,2,829,45 ,1,0,257760 ,2,14973,14820 ,2,14974,14820 ,2,14963,265290 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,91390 ,1,5,91545 ,1,6,91535 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,91525 ,1,12,65 ,1,13,65 ,1,14,91580 ,1,15,91360 ,1,16,91490 ,1,17,91480 ,1,18,91470 ,1,19,91460 ,1,20,91370 ,1,21,91340 ,1,22,91295 ,1,23,65 ,1,24,91380 ,1,25,91450 ,1,26,91555 ,1,27,65 ,1,28,91430 ,1,29,65 ,1,30,65 ,1,31,91570 ,1,32,65 ,1,33,65 ,2,14973,15380 ,2,14974,15380 ,2,14963,265550 ,2,829,45 ,1,0,91545 ,1,1,91460 ,1,2,91580 ,1,3,91480 ,1,4,91360 ,1,5,91370 ,1,6,91390 ,1,7,91470 ,1,8,91535 ,1,9,91525 ,1,10,91490 ,1,11,91430 ,1,12,91380 ,1,13,91340 ,1,14,91450 ,1,15,91570 ,1,16,91555 ,1,17,91295 ,2,14973,15450 ,2,14974,15450 ,2,14963,265750 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,91685 ,1,3,91620 ,2,14973,15565 ,2,14974,15565 ,2,14963,265760 ,2,829,45 ,1,0,49530 ,2,14973,14685 ,2,14974,14685 ,2,14963,265780 ,2,829,45 ,1,0,100 ,2,14973,15780 ,2,14974,15780 ,2,14963,265550 ,2,829,45 ,1,0,91650 ,1,1,79335 ,2,14973,15790 ,2,14974,15790 ,2,14963,265550 ,2,829,45 ,1,0,49570 ,2,14973,15855 ,2,14974,15855 ,2,14963,265550 ,2,829,45 ,1,0,100 ,2,14973,15875 ,2,14974,15875 ,2,14963,265550 ,2,829,45 ,1,0,88575 ,1,1,71140 ,2,14973,15890 ,2,14974,15890 ,2,14963,265550 ,2,829,45 ,1,0,49625 ,2,14973,15635 ,2,14974,15635 ,2,14963,265550 ,2,829,45 ,1,0,100 ,2,14973,16220 ,2,14974,16220 ,2,14963,266345 ,2,829,45 ,1,0,565785 ,2,14973,16285 ,2,14974,16285 ,2,14963,266335 ,2,829,45 ,1,0,564915 ,1,1,564970 ,2,14973,16285 ,2,14974,16285 ,2,14963,266335 ,2,829,45 ,2,14973,16310 ,2,14974,16310 ,2,14963,266040 ,2,829,45 ,1,0,267370 ,1,1,45 ,1,2,45 ,2,14973,16455 ,2,14974,16455 ,2,14963,266030 ,2,829,45 ,1,0,21550 ,1,1,21485 ,1,2,45 ,1,3,614705 ,2,14973,16300 ,2,14974,16300 ,2,14963,265760 ,2,829,45 ,2,14973,16655 ,2,14974,16655 ,2,14963,266030 ,2,829,45 ,1,0,91855 ,1,1,91845 ,1,2,91835 ,1,3,91795 ,1,4,91775 ,2,14973,16720 ,2,14974,16720 ,2,14963,266080 ,2,829,45 ,2,14973,16720 ,2,14974,16720 ,2,14963,266130 ,2,829,45 ,1,0,257780 ,1,1,257770 ,2,14973,16720 ,2,14974,16720 ,2,14963,266130 ,2,829,45 ,2,14973,16950 ,2,14974,16950 ,2,14963,266140 ,2,829,45 ,1,0,267380 ,1,1,45 ,1,2,45 ,2,14973,16765 ,2,14974,16765 ,2,14963,266080 ,2,829,45 ,1,0,21585 ,1,1,21560 ,1,2,45 ,1,3,614705 ,2,14973,16720 ,2,14974,16720 ,2,14963,266140 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,357165 ,2,14973,16840 ,2,14974,16840 ,2,14963,265760 ,2,829,45 ,2,14973,16785 ,2,14974,16785 ,2,14963,266140 ,2,829,45 ,1,0,91875 ,2,14973,16885 ,2,14974,16885 ,2,14963,266175 ,2,829,45 ,2,14973,16720 ,2,14974,16720 ,2,14963,266185 ,2,829,45 ,1,0,91885 ,2,14973,16720 ,2,14974,16720 ,2,14963,266195 ,2,829,45 ,1,0,91895 ,2,14973,16720 ,2,14974,16720 ,2,14963,266210 ,2,829,45 ,1,0,95500 ,1,1,92695 ,1,2,92005 ,1,3,91995 ,1,4,91985 ,1,5,91970 ,1,6,91950 ,1,7,91905 ,2,14973,16720 ,2,14974,16720 ,2,14963,266220 ,2,829,45 ,1,0,9255 ,1,1,203385 ,1,2,203375 ,1,3,203365 ,2,14973,16720 ,2,14974,16720 ,2,14963,266230 ,2,829,45 ,1,0,100 ,1,1,559345 ,1,2,599970 ,1,3,599970 ,2,14973,16285 ,2,14974,16285 ,2,14963,265870 ,2,829,45 ,1,0,3010 ,1,1,203385 ,1,2,203375 ,1,3,203365 ,2,14973,16285 ,2,14974,16285 ,2,14963,265950 ,2,829,45 ,2,14973,16285 ,2,14974,16285 ,2,14963,265950 ,2,829,45 ,1,0,267390 ,1,1,45 ,1,2,45 ,2,14973,16285 ,2,14974,16285 ,2,14963,265840 ,2,829,45 ,1,0,21660 ,1,1,21595 ,1,2,45 ,1,3,21650 ,1,4,45 ,1,5,21640 ,1,6,614045 ,2,14973,16285 ,2,14974,16285 ,2,14963,265930 ,2,829,45 ,2,14973,16285 ,2,14974,16285 ,2,14963,265830 ,2,829,45 ,2,14973,16285 ,2,14974,16285 ,2,14963,265890 ,2,829,45 ,1,0,92050 ,2,14973,17150 ,2,14974,17150 ,2,14963,265550 ,2,829,45 ,2,14973,17205 ,2,14974,17205 ,2,14963,266270 ,2,829,45 ,1,0,92060 ,2,14973,17790 ,2,14974,17790 ,2,14963,265930 ,2,829,45 ,2,14973,17790 ,2,14974,17790 ,2,14963,265930 ,2,829,45 ,1,0,92015 ,1,1,92685 ,1,2,92675 ,1,3,92660 ,1,4,92650 ,1,5,92120 ,1,6,92110 ,1,7,92070 ,2,14973,16285 ,2,14974,16285 ,2,14963,265940 ,2,829,45 ,2,14973,16015 ,2,14974,16015 ,2,14963,266345 ,2,829,45 ,1,0,92100 ,1,1,92090 ,1,2,92080 ,2,14973,16015 ,2,14974,16015 ,2,14963,266345 ,2,829,45 ,1,0,66685 ,1,1,56170 ,1,2,66360 ,2,14973,16015 ,2,14974,16015 ,2,14963,266345 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,203550 ,1,3,170230 ,2,14973,18385 ,2,14974,18385 ,2,14963,266355 ,2,829,45 ,2,14973,18395 ,2,14974,18395 ,2,14963,266380 ,2,829,45 ,1,0,267400 ,1,1,45 ,1,2,45 ,2,14973,18395 ,2,14974,18395 ,2,14963,266370 ,2,829,45 ,1,0,45 ,1,1,21780 ,1,2,45 ,1,3,21770 ,1,4,45 ,1,5,21760 ,1,6,21685 ,1,7,21715 ,1,8,21705 ,1,9,614020 ,2,14973,18385 ,2,14974,18385 ,2,14963,266355 ,2,829,45 ,2,14973,18440 ,2,14974,18440 ,2,14963,266390 ,2,829,45 ,1,0,92395 ,1,1,92385 ,1,2,92375 ,1,3,92355 ,1,4,92345 ,1,5,92325 ,1,6,92315 ,1,7,92305 ,1,8,92295 ,1,9,92225 ,1,10,92180 ,1,11,92160 ,2,14973,18440 ,2,14974,18440 ,2,14963,266430 ,2,829,45 ,1,0,100 ,1,1,565960 ,2,14973,18440 ,2,14974,18440 ,2,14963,266430 ,2,829,45 ,1,0,50180 ,2,14973,18440 ,2,14974,18440 ,2,14963,266440 ,2,829,45 ,1,0,100 ,2,14973,18460 ,2,14974,18460 ,2,14963,266440 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,203595 ,1,3,203580 ,1,4,203570 ,1,5,203560 ,2,14973,18460 ,2,14974,18460 ,2,14963,266430 ,2,829,45 ,1,0,50230 ,2,14973,18460 ,2,14974,18460 ,2,14963,266430 ,2,829,45 ,1,0,100 ,2,14973,18460 ,2,14974,18460 ,2,14963,266430 ,2,829,45 ,1,0,67725 ,1,1,67785 ,2,14973,18460 ,2,14974,18460 ,2,14963,266440 ,2,829,45 ,1,0,100 ,1,1,561625 ,2,14973,18495 ,2,14974,18495 ,2,14963,265660 ,2,829,45 ,1,0,88615 ,2,14973,18495 ,2,14974,18495 ,2,14963,265660 ,2,829,45 ,1,0,3010 ,1,1,5080 ,1,2,200095 ,2,14973,18495 ,2,14974,18495 ,2,14963,265660 ,2,829,45 ,1,0,92180 ,2,14973,18655 ,2,14974,18655 ,2,14963,266485 ,2,829,45 ,1,0,3010 ,1,1,203765 ,1,2,203570 ,1,3,183640 ,1,4,203755 ,2,14973,18655 ,2,14974,18655 ,2,14963,266485 ,2,829,45 ,2,14973,18450 ,2,14974,18450 ,2,14963,266440 ,2,829,45 ,1,0,92490 ,1,1,92480 ,1,2,92450 ,1,3,92440 ,1,4,92420 ,2,14973,18440 ,2,14974,18440 ,2,14963,266440 ,2,829,45 ,1,0,92500 ,2,14973,18440 ,2,14974,18440 ,2,14963,266495 ,2,829,45 ,2,14973,18440 ,2,14974,18440 ,2,14963,265355 ,2,829,45 ,2,14973,18440 ,2,14974,18440 ,2,14963,266505 ,2,829,45 ,1,0,92530 ,1,1,92520 ,1,2,92510 ,2,14973,18385 ,2,14974,18385 ,2,14963,266355 ,2,829,45 ,2,14973,18385 ,2,14974,18385 ,2,14963,266355 ,2,829,45 ,1,0,92550 ,1,1,92540 ,2,14973,18385 ,2,14974,18385 ,2,14963,266355 ,2,829,45 ,2,14973,18385 ,2,14974,18385 ,2,14963,266355 ,2,829,45 ,1,0,92405 ,1,1,92285 ,1,2,92640 ,1,3,92630 ,1,4,92620 ,1,5,92610 ,1,6,92215 ,1,7,92205 ,1,8,92590 ,2,14973,18715 ,2,14974,18715 ,2,14963,266695 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,203980 ,2,14973,18715 ,2,14974,18715 ,2,14963,266695 ,2,829,45 ,1,0,88660 ,2,14973,18715 ,2,14974,18715 ,2,14963,266920 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,356070 ,1,6,356060 ,1,7,356050 ,1,8,356020 ,1,9,65 ,2,14973,18715 ,2,14974,18715 ,2,14963,266920 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370560 ,1,3,65 ,2,14973,18715 ,2,14974,18715 ,2,14963,266705 ,2,829,45 ,2,14973,18715 ,2,14974,18715 ,2,14963,266970 ,2,829,45 ,1,0,267420 ,1,1,45 ,1,2,45 ,2,14973,18785 ,2,14974,18785 ,2,14963,266835 ,2,829,45 ,1,0,21800 ,1,1,21940 ,1,2,45 ,1,3,45 ,1,4,21930 ,1,5,21920 ,1,6,21820 ,1,7,613975 ,2,14973,18855 ,2,14974,18855 ,2,14963,266930 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356095 ,1,3,65 ,2,14973,18715 ,2,14974,18715 ,2,14963,266835 ,2,829,45 ,1,0,566020 ,2,14973,18715 ,2,14974,18715 ,2,14963,267120 ,2,829,45 ,2,14973,18715 ,2,14974,18715 ,2,14963,266910 ,2,829,45 ,1,0,267410 ,1,1,45 ,1,2,45 ,2,14973,18715 ,2,14974,18715 ,2,14963,266570 ,2,829,45 ,1,0,21910 ,1,1,21900 ,1,2,45 ,1,3,45 ,1,4,21890 ,1,5,21880 ,1,6,21830 ,1,7,613975 ,2,14973,18715 ,2,14974,18715 ,2,14963,266580 ,2,829,45 ,1,0,564895 ,2,14973,18910 ,2,14974,18910 ,2,14963,266990 ,2,829,45 ,1,0,92730 ,1,1,92720 ,2,14973,18910 ,2,14974,18910 ,2,14963,266990 ,2,829,45 ,2,14973,18900 ,2,14974,18900 ,2,14963,267000 ,2,829,45 ,2,14973,18980 ,2,14974,18980 ,2,14963,266895 ,2,829,45 ,1,0,92740 ,2,14973,18980 ,2,14974,18980 ,2,14963,266895 ,2,829,45 ,1,0,564895 ,2,14973,18990 ,2,14974,18990 ,2,14963,266665 ,2,829,45 ,1,0,92780 ,1,1,92750 ,2,14973,19010 ,2,14974,19010 ,2,14963,266895 ,2,829,45 ,2,14973,19090 ,2,14974,19090 ,2,14963,266825 ,2,829,45 ,1,0,92850 ,1,1,92840 ,1,2,92810 ,1,3,92800 ,1,4,92790 ,2,14973,19090 ,2,14974,19090 ,2,14963,266825 ,2,829,45 ,1,0,3010 ,1,1,204135 ,1,2,167770 ,1,3,192820 ,2,14973,19090 ,2,14974,19090 ,2,14963,266825 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356105 ,1,3,65 ,2,14973,19090 ,2,14974,19090 ,2,14963,266825 ,2,829,45 ,1,0,566075 ,2,14973,19235 ,2,14974,19235 ,2,14963,266805 ,2,829,45 ,1,0,92870 ,1,1,92860 ,2,14973,19255 ,2,14974,19255 ,2,14963,266920 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356110 ,1,3,65 ,2,14973,19365 ,2,14974,19365 ,2,14963,266705 ,2,829,45 ,1,0,566085 ,2,14973,19315 ,2,14974,19315 ,2,14963,267035 ,2,829,45 ,1,0,92910 ,1,1,92900 ,2,14973,19315 ,2,14974,19315 ,2,14963,267075 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,356085 ,2,14973,19315 ,2,14974,19315 ,2,14963,267085 ,2,829,45 ,1,0,566020 ,2,14973,19315 ,2,14974,19315 ,2,14963,267025 ,2,829,45 ,1,0,92960 ,1,1,92950 ,1,2,92940 ,1,3,92930 ,1,4,92920 ,2,14973,19420 ,2,14974,19420 ,2,14963,266940 ,2,829,45 ,1,0,566075 ,2,14973,19420 ,2,14974,19420 ,2,14963,266940 ,2,829,45 ,1,0,93385 ,1,1,93375 ,1,2,93365 ,1,3,93355 ,1,4,93340 ,1,5,93330 ,1,6,92970 ,2,14973,19420 ,2,14974,19420 ,2,14963,266940 ,2,829,45 ,1,0,62640 ,1,1,62705 ,2,14973,13455 ,2,14974,13455 ,2,14963,267095 ,2,829,45 ,1,0,3010 ,1,1,204310 ,2,14973,19445 ,2,14974,19445 ,2,14963,267095 ,2,829,45 ,2,14973,19445 ,2,14974,19445 ,2,14963,267105 ,2,829,45 ,1,0,267430 ,1,1,45 ,1,2,45 ,2,14973,19430 ,2,14974,19430 ,2,14963,267095 ,2,829,45 ,1,0,21965 ,1,1,21985 ,1,2,45 ,1,3,614705 ,2,14973,19420 ,2,14974,19420 ,2,14963,266940 ,2,829,45 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,93170 ,1,1,93160 ,1,2,93150 ,1,3,93140 ,1,4,93130 ,1,5,93120 ,1,6,93080 ,1,7,93070 ,1,8,93060 ,1,9,93050 ,1,10,93040 ,1,11,93030 ,1,12,93020 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,62040 ,1,1,61015 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,62750 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,3010 ,1,1,11510 ,1,2,204310 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,62695 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,62660 ,2,14973,19465 ,2,14974,19465 ,2,14963,266685 ,2,829,45 ,1,0,62805 ,2,14973,19535 ,2,14974,19535 ,2,14963,267130 ,2,829,45 ,1,0,63460 ,1,1,62795 ,1,2,73050 ,2,14973,19755 ,2,14974,19755 ,2,14963,267130 ,2,829,45 ,2,14973,19865 ,2,14974,19865 ,2,14963,267130 ,2,829,45 ,1,0,93320 ,1,1,93310 ,1,2,93275 ,1,3,93265 ,1,4,93010 ,1,5,93255 ,1,6,93245 ,1,7,93235 ,1,8,93225 ,1,9,93215 ,1,10,93205 ,1,11,93190 ,1,12,93180 ,2,14973,20015 ,2,14974,20015 ,2,14963,267130 ,2,829,45 ,1,0,62795 ,1,1,73050 ,2,14973,19895 ,2,14974,19895 ,2,14963,267130 ,2,829,45 ,1,0,62760 ,1,1,62705 ,2,14973,19970 ,2,14974,19970 ,2,14963,267220 ,2,829,45 ,1,0,62770 ,1,1,93320 ,1,2,62705 ,2,14973,20005 ,2,14974,20005 ,2,14963,267130 ,2,829,45 ,1,0,62670 ,1,1,62705 ,2,14973,20045 ,2,14974,20045 ,2,14963,267130 ,2,829,45 ,1,0,62715 ,1,1,62705 ,2,14973,20420 ,2,14974,20420 ,2,14963,267130 ,2,829,45 ,1,0,62650 ,2,14973,20200 ,2,14974,20200 ,2,14963,267210 ,2,829,45 ,1,0,93310 ,2,14973,20200 ,2,14974,20200 ,2,14963,267210 ,2,829,45 ,2,14973,20410 ,2,14974,20410 ,2,14963,267130 ,2,829,45 ,1,0,267480 ,1,1,45 ,1,2,45 ,2,14973,19715 ,2,14974,19715 ,2,14963,267220 ,2,829,45 ,1,0,257825 ,2,14973,19545 ,2,14974,19545 ,2,14963,267130 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,93430 ,2,14973,20515 ,2,14974,20515 ,2,14963,270020 ,2,829,45 ,2,14973,20790 ,2,14974,20790 ,2,14963,267280 ,2,829,45 ,1,0,257860 ,2,14973,20855 ,2,14974,20855 ,2,14963,267085 ,2,829,45 ,1,0,204805 ,1,1,45 ,2,14973,20890 ,2,14974,20890 ,2,14963,267300 ,2,829,45 ,1,0,93460 ,2,14973,20930 ,2,14974,20930 ,2,14963,267280 ,2,829,45 ,1,0,93555 ,1,1,93545 ,1,2,93535 ,1,3,93525 ,1,4,93490 ,1,5,93480 ,1,6,93430 ,1,7,93470 ,2,14973,21005 ,2,14974,21005 ,2,14963,267300 ,2,829,45 ,1,0,59345 ,2,14973,21005 ,2,14974,21005 ,2,14963,267300 ,2,829,45 ,1,0,93545 ,2,14973,49185 ,2,14974,49185 ,2,14963,266250 ,2,829,45 ,1,0,93565 ,2,14973,21485 ,2,14974,21485 ,2,14963,267370 ,2,829,45 ,1,0,93565 ,1,1,45 ,1,2,257825 ,1,3,22025 ,1,4,45 ,1,5,21790 ,1,6,22015 ,1,7,613975 ,2,14973,21475 ,2,14974,21475 ,2,14963,267370 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,65 ,1,3,355975 ,1,4,355965 ,1,5,65 ,1,6,355955 ,1,7,355950 ,1,8,65 ,1,9,355910 ,2,14973,22005 ,2,14974,22005 ,2,14963,267440 ,2,829,45 ,2,14973,22005 ,2,14974,22005 ,2,14963,267440 ,2,829,45 ,1,0,93650 ,1,1,93640 ,1,2,93630 ,1,3,93620 ,1,4,93585 ,1,5,93575 ,2,14973,21995 ,2,14974,21995 ,2,14963,267480 ,2,829,45 ,1,0,93565 ,1,1,93650 ,1,2,88660 ,2,14973,20800 ,2,14974,20800 ,2,14963,267500 ,2,829,45 ,1,0,3010 ,1,1,205195 ,1,2,205150 ,1,3,200390 ,2,14973,21465 ,2,14974,21465 ,2,14963,267610 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,356005 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,356000 ,1,8,355985 ,1,9,65 ,2,14973,21455 ,2,14974,21455 ,2,14963,267620 ,2,829,45 ,2,14973,23090 ,2,14974,23090 ,2,14963,265760 ,2,829,45 ,1,0,93670 ,2,14973,23365 ,2,14974,23365 ,2,14963,267730 ,2,829,45 ,2,14973,23365 ,2,14974,23365 ,2,14963,267730 ,2,829,45 ,1,0,92705 ,1,1,93680 ,1,2,93690 ,2,14973,23365 ,2,14974,23365 ,2,14963,267730 ,2,829,45 ,1,0,92705 ,1,1,88660 ,2,14973,22590 ,2,14974,22590 ,2,14963,267730 ,2,829,45 ,1,0,88930 ,2,14973,22590 ,2,14974,22590 ,2,14963,267730 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,93700 ,2,14973,22590 ,2,14974,22590 ,2,14963,267730 ,2,829,45 ,2,14973,23455 ,2,14974,23455 ,2,14963,267720 ,2,829,45 ,1,0,267500 ,1,1,45 ,1,2,45 ,2,14973,22620 ,2,14974,22620 ,2,14963,265820 ,2,829,45 ,1,0,22095 ,1,1,45 ,1,2,22035 ,1,3,614705 ,2,14973,22590 ,2,14974,22590 ,2,14963,267730 ,2,829,45 ,1,0,566335 ,1,1,566330 ,1,2,566265 ,2,14973,22590 ,2,14974,22590 ,2,14963,267730 ,2,829,45 ,2,14973,23790 ,2,14974,23790 ,2,14963,267720 ,2,829,45 ,1,0,267490 ,1,1,45 ,1,2,45 ,2,14973,23650 ,2,14974,23650 ,2,14963,267720 ,2,829,45 ,1,0,22155 ,1,1,45 ,1,2,22145 ,1,3,22135 ,1,4,45 ,1,5,22125 ,1,6,22105 ,1,7,613975 ,2,14973,24015 ,2,14974,24015 ,2,14963,267825 ,2,829,45 ,2,14973,24350 ,2,14974,24350 ,2,14963,269965 ,2,829,45 ,2,14973,24360 ,2,14974,24360 ,2,14963,269965 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,93740 ,2,14973,24460 ,2,14974,24460 ,2,14963,269965 ,2,829,45 ,1,0,93750 ,2,14973,24540 ,2,14974,24540 ,2,14963,265820 ,2,829,45 ,1,0,100 ,1,1,566285 ,2,14973,24530 ,2,14974,24530 ,2,14963,267150 ,2,829,45 ,2,14973,24865 ,2,14974,24865 ,2,14963,267720 ,2,829,45 ,1,0,93865 ,1,1,93855 ,1,2,93845 ,1,3,93750 ,1,4,93805 ,1,5,93795 ,1,6,93785 ,1,7,93775 ,2,14973,24910 ,2,14974,24910 ,2,14963,267890 ,2,829,45 ,2,14973,24855 ,2,14974,24855 ,2,14963,267775 ,2,829,45 ,1,0,93885 ,1,1,93875 ,2,14973,25330 ,2,14974,25330 ,2,14963,267720 ,2,829,45 ,2,14973,25310 ,2,14974,25310 ,2,14963,267720 ,2,829,45 ,1,0,257880 ,2,14973,25810 ,2,14974,25810 ,2,14963,267890 ,2,829,45 ,2,14973,25885 ,2,14974,25885 ,2,14963,267890 ,2,829,45 ,2,14973,26005 ,2,14974,26005 ,2,14963,267720 ,2,829,45 ,1,0,267510 ,1,1,45 ,1,2,45 ,2,14973,25995 ,2,14974,25995 ,2,14963,267775 ,2,829,45 ,1,0,45 ,1,1,22175 ,1,2,22195 ,1,3,614705 ,2,14973,26135 ,2,14974,26135 ,2,14963,267890 ,2,829,45 ,2,14973,26185 ,2,14974,26185 ,2,14963,268105 ,2,829,45 ,2,14973,26835 ,2,14974,26835 ,2,14963,267720 ,2,829,45 ,1,0,93975 ,1,1,93965 ,1,2,93955 ,1,3,93945 ,1,4,93915 ,1,5,93905 ,1,6,93990 ,1,7,93895 ,2,14973,26855 ,2,14974,26855 ,2,14963,267720 ,2,829,45 ,1,0,51890 ,2,14973,26985 ,2,14974,26985 ,2,14963,267720 ,2,829,45 ,1,0,100 ,2,14973,27045 ,2,14974,27045 ,2,14963,268215 ,2,829,45 ,1,0,91650 ,1,1,77965 ,1,2,79335 ,2,14973,27045 ,2,14974,27045 ,2,14963,268215 ,2,829,45 ,1,0,51965 ,1,1,51955 ,2,14973,27300 ,2,14974,27300 ,2,14963,265820 ,2,829,45 ,1,0,100 ,2,14973,28300 ,2,14974,28300 ,2,14963,269345 ,2,829,45 ,1,0,100 ,2,14973,28695 ,2,14974,28695 ,2,14963,268740 ,2,829,45 ,2,14973,28795 ,2,14974,28795 ,2,14963,267890 ,2,829,45 ,1,0,267520 ,1,1,45 ,1,2,45 ,2,14973,28890 ,2,14974,28890 ,2,14963,267890 ,2,829,45 ,1,0,22360 ,1,1,22350 ,1,2,22340 ,1,3,22330 ,1,4,22320 ,1,5,22310 ,1,6,22205 ,1,7,22300 ,1,8,45 ,1,9,22290 ,1,10,45 ,1,11,22245 ,1,12,45 ,1,13,22235 ,1,14,45 ,1,15,22225 ,1,16,45 ,1,17,626560 ,2,14973,29270 ,2,14974,29270 ,2,14963,265750 ,2,829,45 ,2,14973,29335 ,2,14974,29335 ,2,14963,268695 ,2,829,45 ,2,14973,29335 ,2,14974,29335 ,2,14963,268695 ,2,829,45 ,1,0,94085 ,1,1,94075 ,2,14973,29335 ,2,14974,29335 ,2,14963,268695 ,2,829,45 ,2,14973,30450 ,2,14974,30450 ,2,14963,268675 ,2,829,45 ,1,0,94100 ,2,14973,30450 ,2,14974,30450 ,2,14963,268675 ,2,829,45 ,2,14973,30450 ,2,14974,30450 ,2,14963,268675 ,2,829,45 ,1,0,94110 ,2,14973,30450 ,2,14974,30450 ,2,14963,268675 ,2,829,45 ,2,14973,30160 ,2,14974,30160 ,2,14963,268595 ,2,829,45 ,1,0,94120 ,2,14973,29440 ,2,14974,29440 ,2,14963,268685 ,2,829,45 ,2,14973,30480 ,2,14974,30480 ,2,14963,267890 ,2,829,45 ,1,0,94175 ,1,1,94130 ,2,14973,30500 ,2,14974,30500 ,2,14963,268685 ,2,829,45 ,2,14973,30965 ,2,14974,30965 ,2,14963,268765 ,2,829,45 ,1,0,94185 ,2,14973,31615 ,2,14974,31615 ,2,14963,269235 ,2,829,45 ,2,14973,31830 ,2,14974,31830 ,2,14963,267775 ,2,829,45 ,1,0,94195 ,2,14973,31840 ,2,14974,31840 ,2,14963,267720 ,2,829,45 ,2,14973,32385 ,2,14974,32385 ,2,14963,265820 ,2,829,45 ,1,0,94205 ,2,14973,32695 ,2,14974,32695 ,2,14963,269245 ,2,829,45 ,2,14973,32790 ,2,14974,32790 ,2,14963,267890 ,2,829,45 ,1,0,94215 ,2,14973,28470 ,2,14974,28470 ,2,14963,268190 ,2,829,45 ,2,14973,32985 ,2,14974,32985 ,2,14963,267720 ,2,829,45 ,1,0,94225 ,2,14973,33060 ,2,14974,33060 ,2,14963,267720 ,2,829,45 ,2,14973,33095 ,2,14974,33095 ,2,14963,266030 ,2,829,45 ,1,0,95440 ,1,1,95410 ,1,2,94235 ,2,14973,26255 ,2,14974,26255 ,2,14963,268380 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,94380 ,1,3,176805 ,1,4,45 ,1,5,94335 ,1,6,166610 ,1,7,45 ,1,8,94305 ,1,9,176795 ,1,10,45 ,1,11,94295 ,1,12,166650 ,1,13,45 ,1,14,94275 ,1,15,45 ,1,16,45 ,1,17,45 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,2,14973,33265 ,2,14974,33265 ,2,14963,267890 ,2,829,45 ,1,0,94285 ,2,14973,33705 ,2,14974,33705 ,2,14963,269660 ,2,829,45 ,1,0,94315 ,2,14973,33740 ,2,14974,33740 ,2,14963,268765 ,2,829,45 ,1,0,100 ,1,1,566615 ,2,14973,33725 ,2,14974,33725 ,2,14963,270010 ,2,829,45 ,1,0,94345 ,2,14973,33715 ,2,14974,33715 ,2,14963,267890 ,2,829,45 ,1,0,94390 ,2,14973,33895 ,2,14974,33895 ,2,14963,269510 ,2,829,45 ,2,14973,34060 ,2,14974,34060 ,2,14963,269510 ,2,829,45 ,1,0,267580 ,1,1,267590 ,1,2,267570 ,1,3,267540 ,1,4,267530 ,1,5,45 ,1,6,45 ,2,14973,34125 ,2,14974,34125 ,2,14963,267720 ,2,829,45 ,1,0,22400 ,1,1,45 ,1,2,22445 ,1,3,22430 ,1,4,45 ,1,5,22420 ,1,6,614045 ,2,14973,34115 ,2,14974,34115 ,2,14963,269545 ,2,829,45 ,2,14973,34235 ,2,14974,34235 ,2,14963,269555 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,94515 ,1,3,166620 ,1,4,45 ,1,5,94495 ,1,6,166610 ,1,7,45 ,1,8,94440 ,1,9,166650 ,1,10,45 ,1,11,94420 ,1,12,176795 ,1,13,45 ,1,14,94400 ,1,15,45 ,1,16,45 ,1,17,45 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,2,14973,34115 ,2,14974,34115 ,2,14963,269545 ,2,829,45 ,1,0,94410 ,2,14973,34115 ,2,14974,34115 ,2,14963,269545 ,2,829,45 ,1,0,94430 ,2,14973,34115 ,2,14974,34115 ,2,14963,269545 ,2,829,45 ,1,0,94450 ,2,14973,34115 ,2,14974,34115 ,2,14963,269545 ,2,829,45 ,1,0,100 ,1,1,566590 ,2,14973,34115 ,2,14974,34115 ,2,14963,269545 ,2,829,45 ,1,0,94450 ,2,14973,34540 ,2,14974,34540 ,2,14963,269590 ,2,829,45 ,1,0,94505 ,2,14973,34540 ,2,14974,34540 ,2,14963,269590 ,2,829,45 ,1,0,94525 ,2,14973,34540 ,2,14974,34540 ,2,14963,269590 ,2,829,45 ,1,0,566600 ,2,14973,34540 ,2,14974,34540 ,2,14963,269590 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,94705 ,1,3,94695 ,1,4,94450 ,1,5,65 ,1,6,65 ,1,7,94410 ,1,8,65 ,1,9,94660 ,1,10,94525 ,1,11,65 ,1,12,94650 ,1,13,94640 ,1,14,65 ,1,15,94630 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,94620 ,1,20,94610 ,1,21,65 ,1,22,94600 ,1,23,94590 ,1,24,94555 ,1,25,94430 ,1,26,65 ,1,27,65 ,1,28,94545 ,1,29,65 ,1,30,94535 ,1,31,65 ,1,32,65 ,1,33,94505 ,2,14973,34635 ,2,14974,34635 ,2,14963,270010 ,2,829,45 ,1,0,94650 ,2,14973,34985 ,2,14974,34985 ,2,14963,267890 ,2,829,45 ,1,0,94535 ,2,14973,35050 ,2,14974,35050 ,2,14963,267890 ,2,829,45 ,1,0,94650 ,1,1,94695 ,1,2,94705 ,1,3,94620 ,1,4,94660 ,1,5,94610 ,1,6,94630 ,1,7,94525 ,1,8,94430 ,1,9,94410 ,1,10,94505 ,1,11,94600 ,1,12,94450 ,1,13,94545 ,1,14,94535 ,1,15,94590 ,1,16,94640 ,1,17,94555 ,2,14973,35130 ,2,14974,35130 ,2,14963,267890 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,94820 ,1,3,166620 ,1,4,45 ,1,5,94800 ,1,6,166610 ,1,7,45 ,1,8,94755 ,1,9,166650 ,1,10,45 ,1,11,94735 ,1,12,176795 ,1,13,45 ,1,14,94715 ,1,15,45 ,1,16,45 ,1,17,45 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,2,14973,35260 ,2,14974,35260 ,2,14963,267890 ,2,829,45 ,1,0,94725 ,2,14973,33655 ,2,14974,33655 ,2,14963,269795 ,2,829,45 ,1,0,94745 ,2,14973,35355 ,2,14974,35355 ,2,14963,267890 ,2,829,45 ,1,0,94765 ,2,14973,35405 ,2,14974,35405 ,2,14963,267720 ,2,829,45 ,1,0,100 ,1,1,566605 ,2,14973,35560 ,2,14974,35560 ,2,14963,267890 ,2,829,45 ,1,0,94810 ,2,14973,25650 ,2,14974,25650 ,2,14963,267720 ,2,829,45 ,1,0,94830 ,2,14973,36060 ,2,14974,36060 ,2,14963,269840 ,2,829,45 ,1,0,566600 ,2,14973,36630 ,2,14974,36630 ,2,14963,267720 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,95010 ,1,5,94765 ,1,6,65 ,1,7,94725 ,1,8,65 ,1,9,94965 ,1,10,94955 ,1,11,94830 ,1,12,94945 ,1,13,65 ,1,14,94935 ,1,15,94915 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,94905 ,1,20,94895 ,1,21,65 ,1,22,94885 ,1,23,65 ,1,24,94860 ,1,25,94745 ,1,26,65 ,1,27,65 ,1,28,94850 ,1,29,65 ,1,30,94840 ,1,31,65 ,1,32,65 ,1,33,94810 ,2,14973,36825 ,2,14974,36825 ,2,14963,267720 ,2,829,45 ,1,0,95010 ,2,14973,36785 ,2,14974,36785 ,2,14963,267775 ,2,829,45 ,1,0,95010 ,1,1,94955 ,1,2,94935 ,1,3,94905 ,1,4,94965 ,1,5,94895 ,1,6,94915 ,1,7,94830 ,1,8,94745 ,1,9,94725 ,1,10,94810 ,1,11,94885 ,1,12,94765 ,1,13,94850 ,1,14,94840 ,1,15,94945 ,1,16,94860 ,2,14973,37665 ,2,14974,37665 ,2,14963,270030 ,2,829,45 ,2,14973,37795 ,2,14974,37795 ,2,14963,270050 ,2,829,45 ,1,0,625595 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,95400 ,1,5,95390 ,1,6,95380 ,1,7,95365 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,95355 ,1,13,65 ,1,14,65 ,1,15,95345 ,1,16,65 ,1,17,65 ,1,18,95335 ,1,19,95310 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,95300 ,1,28,65 ,1,29,95290 ,1,30,95280 ,1,31,65 ,1,32,95255 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,95245 ,1,37,95235 ,1,38,65 ,1,39,94295 ,1,40,95225 ,1,41,95190 ,1,42,94345 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,94315 ,1,47,95180 ,1,48,94245 ,1,49,95170 ,1,50,65 ,1,51,95160 ,1,52,95150 ,1,53,95140 ,1,54,95130 ,1,55,95120 ,1,56,95080 ,1,57,94285 ,1,58,95070 ,1,59,95060 ,1,60,95050 ,1,61,95040 ,1,62,95030 ,1,63,95020 ,1,64,65 ,1,65,94390 ,2,14973,37795 ,2,14974,37795 ,2,14963,270050 ,2,829,45 ,1,0,95030 ,2,14973,38000 ,2,14974,38000 ,2,14963,270010 ,2,829,45 ,1,0,95030 ,1,1,95070 ,1,2,95225 ,1,3,95235 ,1,4,95160 ,1,5,95290 ,1,6,95400 ,1,7,95335 ,1,8,95190 ,1,9,94390 ,1,10,95310 ,1,11,95180 ,1,12,94245 ,1,13,95150 ,1,14,95355 ,1,15,94295 ,1,16,94285 ,1,17,94345 ,1,18,95255 ,1,19,95120 ,1,20,95280 ,1,21,95080 ,1,22,95300 ,1,23,95040 ,1,24,95345 ,1,25,95170 ,1,26,95245 ,1,27,94315 ,1,28,95050 ,1,29,95380 ,1,30,95390 ,1,31,95020 ,1,32,95140 ,1,33,95130 ,1,34,95365 ,1,35,95060 ,2,14973,38040 ,2,14974,38040 ,2,14963,270120 ,2,829,45 ,1,0,183310 ,1,1,206580 ,1,2,206545 ,1,3,206535 ,2,14973,38170 ,2,14974,38170 ,2,14963,270150 ,2,829,45 ,2,14973,38170 ,2,14974,38170 ,2,14963,270150 ,2,829,45 ,1,0,267600 ,1,1,45 ,1,2,45 ,2,14973,38170 ,2,14974,38170 ,2,14963,270150 ,2,829,45 ,1,0,95450 ,2,14973,38215 ,2,14974,38215 ,2,14963,270220 ,2,829,45 ,1,0,45 ,1,1,22455 ,1,2,95450 ,1,3,614705 ,2,14973,38215 ,2,14974,38215 ,2,14963,270220 ,2,829,45 ,2,14973,38200 ,2,14974,38200 ,2,14963,265820 ,2,829,45 ,1,0,94065 ,1,1,95460 ,2,14973,38410 ,2,14974,38410 ,2,14963,265820 ,2,829,45 ,1,0,88460 ,1,1,73770 ,2,14973,38450 ,2,14974,38450 ,2,14963,270230 ,2,829,45 ,1,0,100 ,1,1,561560 ,2,14973,38450 ,2,14974,38450 ,2,14963,270230 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,91905 ,1,3,88910 ,2,14973,38450 ,2,14974,38450 ,2,14963,270230 ,2,829,45 ,1,0,91895 ,2,14973,38655 ,2,14974,38655 ,2,14963,270545 ,2,829,45 ,1,0,566640 ,2,14973,38655 ,2,14974,38655 ,2,14963,270545 ,2,829,45 ,2,14973,38740 ,2,14974,38740 ,2,14963,270555 ,2,829,45 ,1,0,267610 ,1,1,45 ,1,2,45 ,2,14973,38785 ,2,14974,38785 ,2,14963,270575 ,2,829,45 ,1,0,45 ,1,1,22475 ,1,2,613640 ,2,14973,38785 ,2,14974,38785 ,2,14963,270575 ,2,829,45 ,2,14973,38785 ,2,14974,38785 ,2,14963,270575 ,2,829,45 ,1,0,257890 ,2,14973,38845 ,2,14974,38845 ,2,14963,270585 ,2,829,45 ,1,0,95510 ,2,14973,38875 ,2,14974,38875 ,2,14963,270595 ,2,829,45 ,1,0,95595 ,1,1,95585 ,1,2,95575 ,1,3,95565 ,2,14973,38940 ,2,14974,38940 ,2,14963,270630 ,2,829,45 ,1,0,73365 ,2,14973,38940 ,2,14974,38940 ,2,14963,270630 ,2,829,45 ,1,0,566650 ,2,14973,38960 ,2,14974,38960 ,2,14963,270640 ,2,829,45 ,1,0,566670 ,1,1,566335 ,2,14973,38980 ,2,14974,38980 ,2,14963,270650 ,2,829,45 ,1,0,566695 ,1,1,566640 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,1,0,566705 ,1,1,566350 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,1,0,565795 ,1,1,565015 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,2,14973,14500 ,2,14974,14500 ,2,14963,270670 ,2,829,45 ,1,0,267620 ,1,1,45 ,1,2,45 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,1,0,22545 ,1,1,45 ,1,2,22530 ,1,3,22540 ,1,4,45 ,1,5,616170 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,1,0,257905 ,2,14973,39040 ,2,14974,39040 ,2,14963,266505 ,2,829,45 ,1,0,617450 ,1,1,615295 ,1,2,164425 ,1,3,164415 ,1,4,65 ,1,5,164405 ,1,6,65 ,1,7,65 ,1,8,164390 ,1,9,65 ,1,10,65 ,1,11,164195 ,1,12,65 ,1,13,164175 ,1,14,65 ,1,15,163940 ,1,16,65 ,1,17,65 ,1,18,163930 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,163880 ,1,25,65 ,1,26,65 ,1,27,163870 ,1,28,163850 ,1,29,65 ,1,30,163825 ,1,31,65 ,1,32,163815 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,165075 ,1,39,65 ,1,40,163805 ,1,41,163780 ,1,42,163770 ,1,43,163760 ,1,44,163740 ,1,45,163730 ,1,46,104650 ,1,47,65 ,1,48,65 ,1,49,104630 ,1,50,101565 ,1,51,65 ,1,52,95665 ,1,53,65 ,1,54,95635 ,1,55,95615 ,1,56,65 ,1,57,95605 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14973,39000 ,2,14974,39000 ,2,14963,266505 ,2,829,45 ,1,0,100 ,1,1,566715 ,1,2,561460 ,2,14973,39085 ,2,14974,39085 ,2,14963,270690 ,2,829,45 ,2,14973,39160 ,2,14974,39160 ,2,14963,270700 ,2,829,45 ,1,0,267630 ,1,1,45 ,1,2,45 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,22630 ,1,1,45 ,1,2,613640 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,95775 ,1,1,95765 ,1,2,95755 ,1,3,95735 ,1,4,95725 ,1,5,95715 ,1,6,95695 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,100 ,1,1,566755 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,267720 ,1,1,265820 ,1,2,45 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,23455 ,1,1,45 ,1,2,23445 ,1,3,23305 ,1,4,23295 ,1,5,22900 ,1,6,45 ,1,7,22890 ,1,8,22880 ,1,9,45 ,1,10,45 ,1,11,22870 ,1,12,22860 ,1,13,22850 ,1,14,22840 ,1,15,22800 ,1,16,45 ,1,17,45 ,1,18,22795 ,1,19,22785 ,1,20,22775 ,1,21,22620 ,1,22,22765 ,1,23,45 ,1,24,22755 ,1,25,22745 ,1,26,22660 ,1,27,615300 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,96715 ,1,1,96675 ,1,2,95815 ,1,3,95805 ,1,4,95785 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,95825 ,2,14973,39215 ,2,14974,39215 ,2,14963,270750 ,2,829,45 ,1,0,95835 ,2,14973,39180 ,2,14974,39180 ,2,14963,270750 ,2,829,45 ,2,14973,39225 ,2,14974,39225 ,2,14963,270760 ,2,829,45 ,1,0,627185 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,96665 ,1,5,96655 ,1,6,96530 ,1,7,96520 ,1,8,65 ,1,9,96510 ,1,10,96500 ,1,11,65 ,1,12,96490 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,96465 ,1,18,96455 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,96445 ,1,24,96435 ,1,25,96425 ,1,26,96415 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,96405 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,96395 ,1,36,96375 ,1,37,65 ,1,38,65 ,1,39,96365 ,1,40,65 ,1,41,65 ,1,42,96355 ,1,43,65 ,1,44,65 ,1,45,96345 ,1,46,96330 ,1,47,96320 ,1,48,65 ,1,49,96310 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,96300 ,1,55,96260 ,1,56,65 ,1,57,96250 ,1,58,96240 ,1,59,96230 ,1,60,96220 ,1,61,95835 ,1,62,96210 ,1,63,65 ,1,64,65 ,1,65,96200 ,1,66,65 ,1,67,65 ,1,68,65 ,1,69,96190 ,1,70,65 ,1,71,96160 ,1,72,65 ,1,73,65 ,1,74,96150 ,1,75,65 ,1,76,65 ,1,77,96140 ,1,78,65 ,1,79,65 ,1,80,65 ,1,81,96130 ,1,82,65 ,1,83,96120 ,1,84,96110 ,1,85,96100 ,1,86,96090 ,1,87,65 ,1,88,65 ,1,89,65 ,1,90,65 ,1,91,65 ,1,92,65 ,1,93,96050 ,1,94,65 ,1,95,65 ,1,96,96040 ,1,97,96030 ,1,98,65 ,1,99,96020 ,1,100,96010 ,1,101,65 ,1,102,65 ,1,103,96000 ,1,104,95990 ,1,105,65 ,1,106,65 ,1,107,65 ,1,108,95980 ,1,109,95940 ,1,110,65 ,1,111,65 ,1,112,65 ,1,113,65 ,1,114,65 ,1,115,65 ,1,116,65 ,1,117,95930 ,1,118,95920 ,1,119,95910 ,1,120,65 ,1,121,65 ,1,122,95895 ,1,123,65 ,1,124,95885 ,1,125,95875 ,1,126,65 ,1,127,95865 ,1,128,65 ,1,129,65 ,2,14973,39305 ,2,14974,39305 ,2,14963,270780 ,2,829,45 ,1,0,96645 ,1,1,96550 ,1,2,96540 ,2,14973,39330 ,2,14974,39330 ,2,14963,270790 ,2,829,45 ,2,14973,39350 ,2,14974,39350 ,2,14963,270800 ,2,829,45 ,1,0,96625 ,1,1,96615 ,1,2,96605 ,1,3,96560 ,2,14973,39410 ,2,14974,39410 ,2,14963,270835 ,2,829,45 ,1,0,79335 ,1,1,72310 ,1,2,72070 ,1,3,72330 ,1,4,66360 ,1,5,71905 ,1,6,72800 ,2,14973,39435 ,2,14974,39435 ,2,14963,270845 ,2,829,45 ,1,0,79335 ,1,1,91650 ,1,2,79355 ,1,3,96625 ,1,4,57795 ,1,5,72050 ,1,6,72740 ,1,7,71975 ,2,14973,39455 ,2,14974,39455 ,2,14963,270855 ,2,829,45 ,1,0,566830 ,2,14973,39455 ,2,14974,39455 ,2,14963,270855 ,2,829,45 ,1,0,96635 ,2,14973,39490 ,2,14974,39490 ,2,14963,270865 ,2,829,45 ,1,0,72050 ,1,1,72740 ,1,2,57795 ,1,3,71975 ,1,4,91650 ,1,5,79355 ,1,6,79335 ,1,7,96625 ,2,14973,39510 ,2,14974,39510 ,2,14963,270880 ,2,829,45 ,1,0,95980 ,1,1,96250 ,1,2,95875 ,1,3,96455 ,1,4,96435 ,1,5,96000 ,1,6,96030 ,1,7,96130 ,1,8,96040 ,1,9,96110 ,1,10,96230 ,1,11,96010 ,1,12,96300 ,1,13,96510 ,1,14,96050 ,1,15,96345 ,1,16,96140 ,1,17,96365 ,1,18,96500 ,1,19,96655 ,1,20,96330 ,1,21,96405 ,1,22,96490 ,1,23,96220 ,1,24,96465 ,1,25,96120 ,1,26,95990 ,1,27,95835 ,1,28,95920 ,1,29,96665 ,1,30,95865 ,1,31,96520 ,1,32,96445 ,1,33,96425 ,1,34,96240 ,1,35,95930 ,1,36,95885 ,1,37,96090 ,1,38,95910 ,1,39,96355 ,1,40,96310 ,1,41,96415 ,1,42,96200 ,1,43,96210 ,1,44,95895 ,1,45,96375 ,1,46,95940 ,1,47,96320 ,1,48,96260 ,1,49,96100 ,1,50,96190 ,1,51,96160 ,1,52,96395 ,1,53,96020 ,1,54,96530 ,1,55,96150 ,2,14973,39530 ,2,14974,39530 ,2,14963,270890 ,2,829,45 ,1,0,3010 ,1,1,208025 ,1,2,208015 ,1,3,208005 ,2,14973,39610 ,2,14974,39610 ,2,14963,270910 ,2,829,45 ,1,0,96725 ,2,14973,39630 ,2,14974,39630 ,2,14963,270935 ,2,829,45 ,2,14973,39760 ,2,14974,39760 ,2,14963,270955 ,2,829,45 ,1,0,96780 ,1,1,96770 ,1,2,96760 ,1,3,96745 ,1,4,96735 ,2,14973,39880 ,2,14974,39880 ,2,14963,270995 ,2,829,45 ,2,14973,39950 ,2,14974,39950 ,2,14963,271005 ,2,829,45 ,1,0,96860 ,1,1,96850 ,1,2,96840 ,1,3,96830 ,1,4,96820 ,1,5,96790 ,2,14973,39970 ,2,14974,39970 ,2,14963,271040 ,2,829,45 ,2,14973,39990 ,2,14974,39990 ,2,14963,271050 ,2,829,45 ,1,0,96725 ,1,1,96915 ,1,2,96890 ,1,3,96880 ,1,4,96870 ,2,14973,40010 ,2,14974,40010 ,2,14963,271060 ,2,829,45 ,2,14973,40050 ,2,14974,40050 ,2,14963,271070 ,2,829,45 ,2,14973,40070 ,2,14974,40070 ,2,14963,271080 ,2,829,45 ,1,0,96935 ,1,1,96925 ,2,14973,40090 ,2,14974,40090 ,2,14963,271090 ,2,829,45 ,2,14973,40110 ,2,14974,40110 ,2,14963,271100 ,2,829,45 ,2,14973,40140 ,2,14974,40140 ,2,14963,271110 ,2,829,45 ,1,0,96955 ,1,1,96945 ,2,14973,40160 ,2,14974,40160 ,2,14963,271140 ,2,829,45 ,2,14973,40180 ,2,14974,40180 ,2,14963,271150 ,2,829,45 ,2,14973,40200 ,2,14974,40200 ,2,14963,271160 ,2,829,45 ,2,14973,40265 ,2,14974,40265 ,2,14963,271170 ,2,829,45 ,2,14973,40285 ,2,14974,40285 ,2,14963,271180 ,2,829,45 ,2,14973,40310 ,2,14974,40310 ,2,14963,271190 ,2,829,45 ,2,14973,40330 ,2,14974,40330 ,2,14963,271200 ,2,829,45 ,1,0,96975 ,1,1,96965 ,2,14973,40390 ,2,14974,40390 ,2,14963,271210 ,2,829,45 ,2,14973,40410 ,2,14974,40410 ,2,14963,271230 ,2,829,45 ,1,0,267640 ,1,1,45 ,1,2,45 ,2,14973,40440 ,2,14974,40440 ,2,14963,271240 ,2,829,45 ,1,0,45 ,1,1,22910 ,1,2,613640 ,2,14973,40460 ,2,14974,40460 ,2,14963,271250 ,2,829,45 ,2,14973,40500 ,2,14974,40500 ,2,14963,271260 ,2,829,45 ,1,0,99150 ,1,1,99130 ,1,2,96985 ,2,14973,40520 ,2,14974,40520 ,2,14963,271270 ,2,829,45 ,2,14973,40540 ,2,14974,40540 ,2,14963,271280 ,2,829,45 ,1,0,267700 ,1,1,45 ,1,2,45 ,2,14973,40560 ,2,14974,40560 ,2,14963,271290 ,2,829,45 ,1,0,23285 ,1,1,23275 ,1,2,23245 ,1,3,23235 ,1,4,45 ,1,5,45 ,1,6,45 ,1,7,45 ,1,8,23225 ,1,9,45 ,1,10,23215 ,1,11,23195 ,1,12,23185 ,1,13,23175 ,1,14,23165 ,1,15,23135 ,1,16,23060 ,1,17,22995 ,1,18,22985 ,1,19,22975 ,1,20,45 ,1,21,22955 ,1,22,618130 ,2,14973,40600 ,2,14974,40600 ,2,14963,271300 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,97060 ,2,14973,40620 ,2,14974,40620 ,2,14963,271330 ,2,829,45 ,1,0,97060 ,1,1,57795 ,2,14973,40640 ,2,14974,40640 ,2,14963,271340 ,2,829,45 ,2,14973,40660 ,2,14974,40660 ,2,14963,271350 ,2,829,45 ,1,0,97105 ,1,1,97060 ,1,2,97095 ,1,3,97080 ,2,14973,40710 ,2,14974,40710 ,2,14963,271360 ,2,829,45 ,2,14973,40730 ,2,14974,40730 ,2,14963,271375 ,2,829,45 ,1,0,97165 ,1,1,97155 ,1,2,97125 ,1,3,97115 ,2,14973,40750 ,2,14974,40750 ,2,14963,271385 ,2,829,45 ,2,14973,40770 ,2,14974,40770 ,2,14963,271395 ,2,829,45 ,1,0,97320 ,1,1,97310 ,1,2,97195 ,1,3,97185 ,1,4,97175 ,2,14973,40800 ,2,14974,40800 ,2,14963,271405 ,2,829,45 ,1,0,3010 ,1,1,208615 ,1,2,208595 ,1,3,208585 ,2,14973,40820 ,2,14974,40820 ,2,14963,271435 ,2,829,45 ,2,14973,40840 ,2,14974,40840 ,2,14963,271445 ,2,829,45 ,1,0,267680 ,1,1,45 ,1,2,45 ,2,14973,40860 ,2,14974,40860 ,2,14963,271455 ,2,829,45 ,1,0,23005 ,1,1,45 ,1,2,613640 ,2,14973,40905 ,2,14974,40905 ,2,14963,271465 ,2,829,45 ,2,14973,40925 ,2,14974,40925 ,2,14963,271480 ,2,829,45 ,1,0,257915 ,2,14973,40945 ,2,14974,40945 ,2,14963,271490 ,2,829,45 ,1,0,97300 ,1,1,97290 ,1,2,97275 ,1,3,97205 ,1,4,97265 ,1,5,97255 ,1,6,97245 ,1,7,97225 ,1,8,97215 ,2,14973,40965 ,2,14974,40965 ,2,14963,271500 ,2,829,45 ,1,0,95225 ,1,1,95030 ,2,14973,41035 ,2,14974,41035 ,2,14963,271570 ,2,829,45 ,2,14973,41060 ,2,14974,41060 ,2,14963,271580 ,2,829,45 ,1,0,98275 ,1,1,98265 ,1,2,98255 ,1,3,98245 ,1,4,98215 ,1,5,97395 ,1,6,97385 ,1,7,97375 ,1,8,97365 ,2,14973,41060 ,2,14974,41060 ,2,14963,271580 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,97410 ,2,14973,41070 ,2,14974,41070 ,2,14963,271590 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,97430 ,2,14973,41070 ,2,14974,41070 ,2,14963,271590 ,2,829,45 ,1,0,567135 ,2,14973,41060 ,2,14974,41060 ,2,14963,271580 ,2,829,45 ,1,0,97430 ,1,1,97535 ,1,2,97525 ,1,3,97515 ,1,4,97505 ,1,5,97495 ,1,6,97485 ,1,7,97475 ,1,8,97465 ,1,9,97440 ,2,14973,41120 ,2,14974,41120 ,2,14963,271600 ,2,829,45 ,1,0,567155 ,2,14973,41140 ,2,14974,41140 ,2,14963,271610 ,2,829,45 ,1,0,567165 ,2,14973,41165 ,2,14974,41165 ,2,14963,271620 ,2,829,45 ,1,0,97595 ,1,1,97575 ,2,14973,41240 ,2,14974,41240 ,2,14963,271640 ,2,829,45 ,1,0,97595 ,1,1,97585 ,2,14973,41260 ,2,14974,41260 ,2,14963,271670 ,2,829,45 ,1,0,97585 ,2,14973,41260 ,2,14974,41260 ,2,14963,271670 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,65 ,1,3,98195 ,1,4,97410 ,1,5,65 ,1,6,98185 ,1,7,65 ,1,8,65 ,1,9,98170 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,98160 ,1,14,65 ,1,15,98150 ,1,16,98140 ,1,17,98105 ,1,18,65 ,1,19,98095 ,1,20,98085 ,1,21,97585 ,1,22,98075 ,1,23,65 ,1,24,98060 ,1,25,98050 ,1,26,98040 ,1,27,97985 ,1,28,65 ,1,29,97965 ,1,30,65 ,1,31,97630 ,1,32,97620 ,1,33,97605 ,2,14973,41280 ,2,14974,41280 ,2,14963,271680 ,2,829,45 ,1,0,98105 ,1,1,97820 ,1,2,97715 ,1,3,97640 ,2,14973,41300 ,2,14974,41300 ,2,14963,271690 ,2,829,45 ,2,14973,41345 ,2,14974,41345 ,2,14963,271700 ,2,829,45 ,1,0,97705 ,1,1,97695 ,1,2,97685 ,1,3,97640 ,1,4,97650 ,2,14973,41365 ,2,14974,41365 ,2,14963,271720 ,2,829,45 ,2,14973,41390 ,2,14974,41390 ,2,14963,271730 ,2,829,45 ,1,0,97810 ,1,1,97800 ,1,2,97715 ,1,3,97760 ,1,4,97750 ,1,5,97730 ,2,14973,41410 ,2,14974,41410 ,2,14963,271740 ,2,829,45 ,1,0,97810 ,1,1,97585 ,2,14973,41465 ,2,14974,41465 ,2,14963,271750 ,2,829,45 ,2,14973,41485 ,2,14974,41485 ,2,14963,271770 ,2,829,45 ,1,0,97955 ,1,1,97935 ,1,2,97925 ,1,3,97820 ,1,4,97915 ,1,5,97905 ,1,6,97880 ,1,7,97860 ,1,8,97830 ,2,14973,41505 ,2,14974,41505 ,2,14963,271780 ,2,829,45 ,1,0,60225 ,1,1,97585 ,2,14973,41515 ,2,14974,41515 ,2,14963,271780 ,2,829,45 ,1,0,57710 ,1,1,97640 ,2,14973,41525 ,2,14974,41525 ,2,14963,271790 ,2,829,45 ,1,0,97585 ,1,1,98105 ,1,2,98040 ,1,3,97620 ,1,4,98095 ,1,5,98160 ,1,6,98085 ,1,7,97985 ,1,8,97410 ,1,9,98150 ,1,10,97630 ,1,11,98195 ,1,12,98185 ,1,13,98170 ,1,14,98060 ,1,15,97605 ,1,16,98140 ,1,17,98075 ,1,18,98050 ,1,19,97965 ,2,14973,41570 ,2,14974,41570 ,2,14963,271815 ,2,829,45 ,1,0,97595 ,1,1,97585 ,1,2,98205 ,1,3,57795 ,2,14973,41590 ,2,14974,41590 ,2,14963,271825 ,2,829,45 ,2,14973,41610 ,2,14974,41610 ,2,14963,271835 ,2,829,45 ,1,0,98315 ,1,1,98305 ,1,2,98295 ,1,3,98285 ,2,14973,41650 ,2,14974,41650 ,2,14963,271845 ,2,829,45 ,2,14973,41670 ,2,14974,41670 ,2,14963,271870 ,2,829,45 ,1,0,98370 ,1,1,98360 ,1,2,98350 ,2,14973,41690 ,2,14974,41690 ,2,14963,271880 ,2,829,45 ,2,14973,41765 ,2,14974,41765 ,2,14963,271900 ,2,829,45 ,1,0,98420 ,1,1,98410 ,1,2,98400 ,1,3,98380 ,2,14973,41785 ,2,14974,41785 ,2,14963,271910 ,2,829,45 ,2,14973,42115 ,2,14974,42115 ,2,14963,272005 ,2,829,45 ,1,0,98480 ,1,1,98470 ,1,2,98460 ,1,3,98430 ,2,14973,42115 ,2,14974,42115 ,2,14963,272005 ,2,829,45 ,2,14973,42115 ,2,14974,42115 ,2,14963,272005 ,2,829,45 ,1,0,98490 ,2,14973,42145 ,2,14974,42145 ,2,14963,267105 ,2,829,45 ,2,14973,42145 ,2,14974,42145 ,2,14963,267105 ,2,829,45 ,1,0,98635 ,1,1,98625 ,1,2,98615 ,1,3,98605 ,1,4,98595 ,1,5,99100 ,1,6,98585 ,1,7,98565 ,1,8,98535 ,1,9,98515 ,1,10,98505 ,2,14973,42145 ,2,14974,42145 ,2,14963,267105 ,2,829,45 ,1,0,98525 ,2,14973,42145 ,2,14974,42145 ,2,14963,267105 ,2,829,45 ,1,0,98575 ,2,14973,42145 ,2,14974,42145 ,2,14963,267105 ,2,829,45 ,2,14973,42145 ,2,14974,42145 ,2,14963,267105 ,2,829,45 ,1,0,98680 ,1,1,98670 ,1,2,98660 ,2,14973,42200 ,2,14974,42200 ,2,14963,267095 ,2,829,45 ,1,0,3010 ,1,1,11510 ,1,2,186035 ,1,3,209400 ,1,4,209390 ,2,14973,42245 ,2,14974,42245 ,2,14963,272020 ,2,829,45 ,2,14973,42245 ,2,14974,42245 ,2,14963,265405 ,2,829,45 ,1,0,98690 ,2,14973,42335 ,2,14974,42335 ,2,14963,265550 ,2,829,45 ,2,14973,42400 ,2,14974,42400 ,2,14963,265550 ,2,829,45 ,1,0,98740 ,1,1,98730 ,1,2,98720 ,1,3,98710 ,2,14973,42445 ,2,14974,42445 ,2,14963,265550 ,2,829,45 ,2,14973,42610 ,2,14974,42610 ,2,14963,265550 ,2,829,45 ,1,0,98855 ,1,1,98845 ,1,2,98835 ,1,3,98820 ,1,4,98810 ,1,5,98800 ,1,6,98790 ,2,14973,42735 ,2,14974,42735 ,2,14963,265550 ,2,829,45 ,2,14973,42755 ,2,14974,42755 ,2,14963,265550 ,2,829,45 ,1,0,98935 ,1,1,98925 ,1,2,98915 ,1,3,98905 ,1,4,98895 ,1,5,98885 ,1,6,98865 ,2,14973,42985 ,2,14974,42985 ,2,14963,272070 ,2,829,45 ,2,14973,42985 ,2,14974,42985 ,2,14963,272070 ,2,829,45 ,1,0,98205 ,1,1,97050 ,1,2,99055 ,1,3,99045 ,1,4,99035 ,1,5,99020 ,1,6,99010 ,1,7,98575 ,1,8,99065 ,1,9,99000 ,1,10,98990 ,1,11,98955 ,1,12,98525 ,1,13,98945 ,2,14973,42985 ,2,14974,42985 ,2,14963,272070 ,2,829,45 ,1,0,97105 ,2,14973,42985 ,2,14974,42985 ,2,14963,272070 ,2,829,45 ,1,0,98205 ,2,14973,43050 ,2,14974,43050 ,2,14963,267890 ,2,829,45 ,1,0,77465 ,2,14973,43120 ,2,14974,43120 ,2,14963,272090 ,2,829,45 ,1,0,99120 ,2,14973,43130 ,2,14974,43130 ,2,14963,272100 ,2,829,45 ,2,14973,43190 ,2,14974,43190 ,2,14963,272120 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,99370 ,1,4,99360 ,1,5,99345 ,1,6,99335 ,1,7,65 ,1,8,99325 ,1,9,99315 ,1,10,99290 ,1,11,99280 ,1,12,99270 ,1,13,65 ,1,14,99260 ,1,15,65 ,1,16,99120 ,1,17,65 ,1,18,99240 ,1,19,99110 ,1,20,65 ,1,21,99230 ,1,22,99220 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,99170 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,99160 ,1,33,65 ,2,14973,43190 ,2,14974,43190 ,2,14963,272120 ,2,829,45 ,1,0,54995 ,2,14973,43200 ,2,14974,43200 ,2,14963,272130 ,2,829,45 ,1,0,100 ,2,14973,43200 ,2,14974,43200 ,2,14963,272130 ,2,829,45 ,1,0,209800 ,1,1,209790 ,1,2,209755 ,2,14973,43210 ,2,14974,43210 ,2,14963,272110 ,2,829,45 ,1,0,3010 ,1,1,209880 ,1,2,186035 ,1,3,209860 ,1,4,183205 ,1,5,209850 ,1,6,186340 ,1,7,186180 ,2,14973,43210 ,2,14974,43210 ,2,14963,272110 ,2,829,45 ,1,0,3010 ,1,1,186035 ,1,2,186585 ,1,3,209850 ,1,4,186180 ,2,14973,43210 ,2,14974,43210 ,2,14963,272110 ,2,829,45 ,1,0,3010 ,1,1,209880 ,1,2,186035 ,1,3,183310 ,1,4,209850 ,1,5,186180 ,2,14973,43110 ,2,14974,43110 ,2,14963,272140 ,2,829,45 ,1,0,3010 ,1,1,209880 ,1,2,186035 ,1,3,183255 ,1,4,209850 ,1,5,186340 ,1,6,186180 ,2,14973,43360 ,2,14974,43360 ,2,14963,272205 ,2,829,45 ,1,0,3010 ,1,1,209930 ,1,2,209850 ,1,3,186035 ,1,4,209910 ,2,14973,43595 ,2,14974,43595 ,2,14963,272270 ,2,829,45 ,1,0,209800 ,1,1,209790 ,2,14973,43720 ,2,14974,43720 ,2,14963,267890 ,2,829,45 ,1,0,99360 ,1,1,99170 ,1,2,99240 ,1,3,99325 ,1,4,99160 ,1,5,99120 ,1,6,99110 ,1,7,99230 ,1,8,99290 ,1,9,99220 ,1,10,99345 ,1,11,99370 ,1,12,99335 ,1,13,99260 ,1,14,99315 ,1,15,99280 ,1,16,99270 ,2,14973,43835 ,2,14974,43835 ,2,14963,267890 ,2,829,45 ,2,14973,43865 ,2,14974,43865 ,2,14963,272300 ,2,829,45 ,1,0,99380 ,2,14973,43865 ,2,14974,43865 ,2,14963,272300 ,2,829,45 ,2,14973,43865 ,2,14974,43865 ,2,14963,272300 ,2,829,45 ,1,0,100285 ,1,1,100275 ,1,2,100265 ,1,3,100185 ,1,4,100175 ,1,5,100120 ,1,6,100075 ,1,7,100065 ,1,8,100055 ,1,9,99390 ,2,14973,43865 ,2,14974,43865 ,2,14963,272300 ,2,829,45 ,1,0,567440 ,2,14973,43910 ,2,14974,43910 ,2,14963,270010 ,2,829,45 ,1,0,99420 ,2,14973,43930 ,2,14974,43930 ,2,14963,270010 ,2,829,45 ,2,14973,44165 ,2,14974,44165 ,2,14963,268180 ,2,829,45 ,1,0,99460 ,1,1,99450 ,1,2,99440 ,1,3,99430 ,2,14973,44185 ,2,14974,44185 ,2,14963,267890 ,2,829,45 ,1,0,210110 ,1,1,45 ,2,14973,44095 ,2,14974,44095 ,2,14963,272330 ,2,829,45 ,1,0,99490 ,1,1,61190 ,1,2,99480 ,1,3,57795 ,2,14973,44480 ,2,14974,44480 ,2,14963,272410 ,2,829,45 ,2,14973,44530 ,2,14974,44530 ,2,14963,272430 ,2,829,45 ,1,0,99605 ,1,1,99595 ,1,2,99585 ,1,3,99575 ,1,4,99565 ,2,14973,44635 ,2,14974,44635 ,2,14963,272550 ,2,829,45 ,1,0,99695 ,1,1,99685 ,1,2,66360 ,1,3,99615 ,2,14973,44635 ,2,14974,44635 ,2,14963,272550 ,2,829,45 ,2,14973,44700 ,2,14974,44700 ,2,14963,272580 ,2,829,45 ,1,0,258035 ,1,1,258005 ,1,2,258025 ,2,14973,44635 ,2,14974,44635 ,2,14963,272550 ,2,829,45 ,1,0,99615 ,1,1,99685 ,1,2,99695 ,1,3,99670 ,2,14973,44635 ,2,14974,44635 ,2,14963,272550 ,2,829,45 ,1,0,99805 ,1,1,99765 ,1,2,99715 ,2,14973,44635 ,2,14974,44635 ,2,14963,272550 ,2,829,45 ,2,14973,44740 ,2,14974,44740 ,2,14963,272600 ,2,829,45 ,1,0,99900 ,1,1,99890 ,1,2,100000 ,1,3,101535 ,1,4,101555 ,1,5,99880 ,2,14973,44795 ,2,14974,44795 ,2,14963,266270 ,2,829,45 ,1,0,84470 ,1,1,84765 ,2,14973,44805 ,2,14974,44805 ,2,14963,266270 ,2,829,45 ,2,14973,44815 ,2,14974,44815 ,2,14963,272630 ,2,829,45 ,1,0,99950 ,1,1,99940 ,2,14973,44860 ,2,14974,44860 ,2,14963,272650 ,2,829,45 ,1,0,60060 ,1,1,56220 ,1,2,60745 ,1,3,99970 ,1,4,99490 ,1,5,99960 ,1,6,76645 ,1,7,91650 ,1,8,79355 ,1,9,79335 ,1,10,99670 ,1,11,99615 ,1,12,66360 ,1,13,76600 ,1,14,88460 ,1,15,73770 ,2,14973,44910 ,2,14974,44910 ,2,14963,272695 ,2,829,45 ,1,0,99835 ,2,14973,44920 ,2,14974,44920 ,2,14963,272705 ,2,829,45 ,1,0,96780 ,1,1,96725 ,1,2,96955 ,2,14973,44920 ,2,14974,44920 ,2,14963,272705 ,2,829,45 ,1,0,3010 ,1,1,210560 ,2,14973,45060 ,2,14974,45060 ,2,14963,272745 ,2,829,45 ,1,0,99490 ,2,14973,45315 ,2,14974,45315 ,2,14963,272900 ,2,829,45 ,1,0,100045 ,2,14973,45490 ,2,14974,45490 ,2,14963,267890 ,2,829,45 ,1,0,3010 ,1,1,210655 ,2,14973,46290 ,2,14974,46290 ,2,14963,273125 ,2,829,45 ,1,0,79335 ,1,1,100045 ,1,2,99360 ,2,14973,46290 ,2,14974,46290 ,2,14963,273125 ,2,829,45 ,1,0,100045 ,1,1,57795 ,2,14973,46290 ,2,14974,46290 ,2,14963,273125 ,2,829,45 ,1,0,79335 ,1,1,100045 ,2,14973,46290 ,2,14974,46290 ,2,14963,273125 ,2,829,45 ,1,0,100045 ,1,1,100010 ,2,14973,46330 ,2,14974,46330 ,2,14963,273165 ,2,829,45 ,1,0,55575 ,2,14973,46330 ,2,14974,46330 ,2,14963,273165 ,2,829,45 ,1,0,100 ,2,14973,46580 ,2,14974,46580 ,2,14963,273265 ,2,829,45 ,1,0,60790 ,1,1,61190 ,1,2,79335 ,1,3,100045 ,2,14973,13990 ,2,14974,13990 ,2,14963,273295 ,2,829,45 ,1,0,566265 ,2,14973,46740 ,2,14974,46740 ,2,14963,273295 ,2,829,45 ,1,0,628415 ,1,1,615295 ,1,2,65 ,1,3,100030 ,1,4,65 ,1,5,100920 ,1,6,99210 ,1,7,100165 ,1,8,100905 ,1,9,65 ,1,10,65 ,1,11,100895 ,1,12,100885 ,1,13,65 ,1,14,100875 ,1,15,65 ,1,16,65 ,1,17,100130 ,1,18,100830 ,1,19,100820 ,1,20,100810 ,1,21,100800 ,1,22,100785 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,100775 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,100255 ,1,32,65 ,1,33,100765 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,100755 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,100735 ,1,47,100725 ,1,48,65 ,1,49,65 ,1,50,100195 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,100715 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,100705 ,1,63,100690 ,1,64,100680 ,1,65,100670 ,1,66,65 ,1,67,65 ,1,68,65 ,1,69,65 ,1,70,100020 ,1,71,65 ,1,72,100660 ,1,73,65 ,1,74,100630 ,1,75,65 ,1,76,65 ,1,77,65 ,1,78,65 ,1,79,100610 ,1,80,100010 ,1,81,100600 ,1,82,65 ,1,83,65 ,1,84,100585 ,1,85,65 ,1,86,100575 ,1,87,100565 ,1,88,65 ,1,89,65 ,1,90,100515 ,1,91,100495 ,1,92,65 ,1,93,65 ,1,94,100485 ,1,95,100475 ,1,96,100455 ,1,97,100445 ,1,98,100420 ,1,99,100410 ,1,100,100390 ,1,101,65 ,1,102,65 ,1,103,100110 ,1,104,100380 ,1,105,100370 ,1,106,65 ,1,107,65 ,1,108,65 ,1,109,65 ,1,110,65 ,1,111,100360 ,1,112,65 ,1,113,65 ,1,114,65 ,1,115,65 ,1,116,100350 ,1,117,65 ,1,118,65 ,1,119,99180 ,1,120,65 ,1,121,65 ,1,122,100315 ,1,123,100305 ,1,124,65 ,1,125,100045 ,1,126,65 ,1,127,65 ,1,128,65 ,1,129,100295 ,2,14973,46815 ,2,14974,46815 ,2,14963,273355 ,2,829,45 ,1,0,100045 ,1,1,57795 ,1,2,95225 ,1,3,95030 ,2,14973,14630 ,2,14974,14630 ,2,14963,273550 ,2,829,45 ,1,0,9255 ,1,1,210915 ,1,2,183245 ,1,3,210905 ,1,4,198280 ,2,14973,14655 ,2,14974,14655 ,2,14963,265355 ,2,829,45 ,1,0,100 ,1,1,566930 ,1,2,561500 ,1,3,560980 ,1,4,564435 ,2,14973,47325 ,2,14974,47325 ,2,14963,273560 ,2,829,45 ,1,0,3010 ,1,1,210915 ,1,2,183245 ,1,3,210905 ,1,4,198280 ,2,14973,47375 ,2,14974,47375 ,2,14963,273600 ,2,829,45 ,1,0,100 ,1,1,566930 ,2,14973,14035 ,2,14974,14035 ,2,14963,273635 ,2,829,45 ,1,0,100 ,1,1,567415 ,1,2,561460 ,2,14973,47505 ,2,14974,47505 ,2,14963,265345 ,2,829,45 ,1,0,100 ,1,1,566370 ,1,2,600040 ,2,14973,47515 ,2,14974,47515 ,2,14963,265345 ,2,829,45 ,1,0,55745 ,2,14973,47545 ,2,14974,47545 ,2,14963,265345 ,2,829,45 ,1,0,100 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,55775 ,1,1,55765 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,100 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,100 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,3010 ,1,1,211340 ,1,2,211330 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,100295 ,1,1,100920 ,1,2,100660 ,1,3,100715 ,1,4,100585 ,1,5,99180 ,1,6,100045 ,1,7,100725 ,1,8,100765 ,1,9,100875 ,1,10,100895 ,1,11,100800 ,1,12,100705 ,1,13,100455 ,1,14,100785 ,1,15,100255 ,1,16,100885 ,1,17,100475 ,1,18,100565 ,1,19,100755 ,1,20,100810 ,1,21,100360 ,1,22,100630 ,1,23,100445 ,1,24,100165 ,1,25,100130 ,1,26,100110 ,1,27,100600 ,1,28,100775 ,1,29,99210 ,1,30,100495 ,1,31,100410 ,1,32,100315 ,1,33,100350 ,1,34,100690 ,1,35,100485 ,1,36,100735 ,1,37,100610 ,1,38,100010 ,1,39,100680 ,1,40,100195 ,1,41,100030 ,1,42,100020 ,1,43,100905 ,1,44,100380 ,1,45,100515 ,1,46,100305 ,1,47,100370 ,1,48,100390 ,1,49,100420 ,1,50,100830 ,1,51,100670 ,1,52,100820 ,1,53,100575 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,258090 ,2,14973,47670 ,2,14974,47670 ,2,14963,273690 ,2,829,45 ,1,0,101010 ,1,1,101000 ,1,2,100990 ,1,3,100980 ,1,4,100970 ,1,5,100950 ,1,6,100940 ,2,14973,47660 ,2,14974,47660 ,2,14963,273690 ,2,829,45 ,1,0,72285 ,2,14973,47660 ,2,14974,47660 ,2,14963,273690 ,2,829,45 ,1,0,95225 ,1,1,95030 ,1,2,100950 ,1,3,101010 ,1,4,100980 ,1,5,72285 ,2,14973,47770 ,2,14974,47770 ,2,14963,273735 ,2,829,45 ,1,0,559520 ,2,14973,47955 ,2,14974,47955 ,2,14963,273800 ,2,829,45 ,1,0,101040 ,1,1,101030 ,1,2,101020 ,2,14973,47955 ,2,14974,47955 ,2,14963,273800 ,2,829,45 ,2,14973,47955 ,2,14974,47955 ,2,14963,273800 ,2,829,45 ,1,0,267730 ,1,1,45 ,1,2,45 ,2,14973,47955 ,2,14974,47955 ,2,14963,273800 ,2,829,45 ,1,0,23335 ,1,1,23540 ,1,2,22590 ,1,3,23355 ,1,4,96645 ,1,5,96550 ,1,6,23365 ,1,7,23530 ,1,8,23520 ,1,9,23495 ,1,10,23485 ,1,11,23425 ,1,12,96540 ,1,13,23475 ,1,14,22685 ,1,15,22670 ,1,16,45 ,1,17,45 ,1,18,22730 ,1,19,23465 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,1,24,45 ,1,25,622995 ,2,14973,47955 ,2,14974,47955 ,2,14963,273800 ,2,829,45 ,1,0,567620 ,2,14973,14570 ,2,14974,14570 ,2,14963,273840 ,2,829,45 ,1,0,101075 ,2,14973,48100 ,2,14974,48100 ,2,14963,272020 ,2,829,45 ,2,14973,48175 ,2,14974,48175 ,2,14963,273860 ,2,829,45 ,1,0,101085 ,2,14973,48595 ,2,14974,48595 ,2,14963,267095 ,2,829,45 ,2,14973,48585 ,2,14974,48585 ,2,14963,274040 ,2,829,45 ,2,14973,48715 ,2,14974,48715 ,2,14963,273345 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,356185 ,1,5,356175 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,1,0,101095 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,1,0,101125 ,1,1,101105 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,1,0,258120 ,1,1,258110 ,1,2,258080 ,1,3,258045 ,1,4,258055 ,2,14973,48995 ,2,14974,48995 ,2,14963,274160 ,2,829,45 ,1,0,618495 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,95685 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,101510 ,1,11,99825 ,1,12,101500 ,1,13,101490 ,1,14,99715 ,1,15,99960 ,1,16,65 ,1,17,65 ,1,18,99805 ,1,19,65 ,1,20,101480 ,1,21,99705 ,1,22,101445 ,1,23,101435 ,1,24,99545 ,1,25,65 ,1,26,65 ,1,27,101425 ,1,28,99555 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,101415 ,1,34,99490 ,1,35,101380 ,1,36,101370 ,1,37,99765 ,1,38,101360 ,1,39,101350 ,1,40,65 ,1,41,99785 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,101330 ,1,46,65 ,1,47,101320 ,1,48,100620 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,101235 ,1,56,65 ,1,57,101220 ,1,58,101210 ,1,59,101200 ,1,60,65 ,1,61,101190 ,1,62,99835 ,1,63,65 ,1,64,101155 ,1,65,65 ,2,14973,14570 ,2,14974,14570 ,2,14963,273840 ,2,829,45 ,1,0,99490 ,1,1,95715 ,1,2,95725 ,2,14956,171965 ,2,822,14665 ,2,14975,557795 ,2,14976,23075 ,2,14977,23065 ,2,14965,543440 ,2,14978,45 ,2,14979,379995 ,2,829,45 ,1,0,101200 ,2,14956,171965 ,2,822,14675 ,2,14975,557800 ,2,14976,23075 ,2,14977,23065 ,2,14965,543445 ,2,14978,45 ,2,14979,380030 ,2,829,45 ,1,0,3010 ,1,1,211820 ,1,2,211775 ,2,14956,166485 ,2,822,14675 ,2,14975,606160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374130 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,210925 ,2,14956,166495 ,2,822,14675 ,2,14975,557825 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375230 ,2,829,45 ,2,14956,166505 ,2,822,14675 ,2,14975,557825 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371790 ,2,829,45 ,1,0,267750 ,1,1,45 ,1,2,45 ,2,14956,166515 ,2,822,14675 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377300 ,2,829,45 ,1,0,23595 ,1,1,23550 ,1,2,45 ,1,3,45 ,1,4,23585 ,1,5,23575 ,1,6,614045 ,2,14956,166530 ,2,822,14675 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375830 ,2,829,45 ,2,14956,171930 ,2,822,14675 ,2,14975,557830 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374365 ,2,829,45 ,1,0,101300 ,1,1,101265 ,1,2,101255 ,1,3,101245 ,2,14956,171765 ,2,822,14685 ,2,14975,558840 ,2,14976,23075 ,2,14977,23065 ,2,14965,544240 ,2,14978,45 ,2,14979,280715 ,2,829,45 ,2,14956,171965 ,2,822,14710 ,2,14975,557850 ,2,14976,23075 ,2,14977,23065 ,2,14965,543505 ,2,14978,45 ,2,14979,380000 ,2,829,45 ,2,14956,10080 ,2,822,14720 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56290 ,2,14979,381400 ,2,829,45 ,1,0,101310 ,2,14956,10080 ,2,822,14720 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,228855 ,2,14979,280750 ,2,829,45 ,2,14956,166620 ,2,822,14720 ,2,14975,606225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,23240 ,2,14979,280760 ,2,829,45 ,2,14956,6550 ,2,822,14720 ,2,14975,606225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370240 ,2,829,45 ,1,0,3010 ,1,1,211985 ,1,2,210925 ,1,3,175900 ,2,14956,8315 ,2,822,49195 ,2,14975,557905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374595 ,2,829,45 ,1,0,3010 ,1,1,3825 ,1,2,174110 ,1,3,212040 ,2,14956,166670 ,2,822,14755 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,56365 ,2,14979,376515 ,2,829,45 ,1,0,101235 ,1,1,101200 ,1,2,99805 ,1,3,99715 ,1,4,99765 ,1,5,101190 ,1,6,101370 ,1,7,101445 ,1,8,101500 ,1,9,101510 ,1,10,101220 ,1,11,101490 ,1,12,99555 ,1,13,101480 ,1,14,95685 ,1,15,99835 ,1,16,99490 ,1,17,101380 ,1,18,101320 ,1,19,101360 ,1,20,99960 ,1,21,101415 ,1,22,101425 ,1,23,101350 ,1,24,101330 ,1,25,101155 ,1,26,99705 ,1,27,99785 ,1,28,99825 ,1,29,99545 ,1,30,100620 ,1,31,101210 ,1,32,101435 ,2,14956,166660 ,2,822,14755 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,228865 ,2,14979,280770 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,2855 ,2,822,14755 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389855 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,166660 ,2,822,14755 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56365 ,2,14979,376945 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,567750 ,1,3,561430 ,2,14956,166495 ,2,822,14755 ,2,14975,557925 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375155 ,2,829,45 ,1,0,567800 ,2,14956,166680 ,2,822,14755 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377440 ,2,829,45 ,2,14956,10665 ,2,822,14755 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382465 ,2,829,45 ,1,0,267720 ,1,1,267775 ,1,2,45 ,2,14956,166740 ,2,822,14755 ,2,14975,557930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375645 ,2,829,45 ,1,0,23660 ,1,1,23855 ,1,2,45 ,1,3,23845 ,1,4,23835 ,1,5,23800 ,1,6,23790 ,1,7,23780 ,1,8,23770 ,1,9,23690 ,1,10,45 ,1,11,45 ,1,12,23680 ,1,13,45 ,1,14,621000 ,2,14956,166795 ,2,822,14775 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56490 ,2,14979,280780 ,2,829,45 ,1,0,567840 ,2,14956,166785 ,2,822,14785 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56480 ,2,14979,280790 ,2,829,45 ,1,0,614390 ,1,1,615295 ,1,2,65 ,1,3,356995 ,1,4,65 ,1,5,65 ,1,6,356980 ,1,7,65 ,1,8,65 ,1,9,356970 ,1,10,356960 ,1,11,356945 ,1,12,356935 ,1,13,65 ,1,14,356925 ,1,15,356915 ,1,16,65 ,1,17,356900 ,2,14956,166785 ,2,822,14785 ,2,14975,599975 ,2,14976,23370 ,2,14977,23360 ,2,14965,45 ,2,14978,228875 ,2,14979,280800 ,2,829,45 ,2,14956,166795 ,2,822,14775 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,228885 ,2,14979,280840 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,102620 ,1,10,102610 ,1,11,102600 ,1,12,65 ,1,13,65 ,1,14,102590 ,1,15,65 ,1,16,102580 ,1,17,102570 ,1,18,102560 ,1,19,102550 ,1,20,102510 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,102500 ,1,25,65 ,1,26,102490 ,1,27,65 ,1,28,65 ,1,29,102480 ,1,30,65 ,1,31,102465 ,1,32,102455 ,1,33,65 ,1,34,102445 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,102435 ,1,39,102400 ,1,40,65 ,1,41,102390 ,1,42,102380 ,1,43,102370 ,1,44,102355 ,1,45,65 ,1,46,65 ,1,47,102345 ,1,48,102335 ,1,49,101675 ,1,50,101665 ,1,51,65 ,1,52,65 ,1,53,101615 ,1,54,65 ,1,55,101605 ,1,56,65 ,1,57,101595 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,101585 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,166850 ,2,822,49195 ,2,14975,606235 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344105 ,2,829,45 ,1,0,3010 ,1,1,184220 ,1,2,182815 ,2,14956,166860 ,2,822,49195 ,2,14975,557975 ,2,14976,23130 ,2,14977,23120 ,2,14965,543645 ,2,14978,45 ,2,14979,343290 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,101695 ,2,14956,166495 ,2,822,49195 ,2,14975,557980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411780 ,2,829,45 ,1,0,101705 ,2,14956,166870 ,2,822,49195 ,2,14975,557980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375095 ,2,829,45 ,1,0,100 ,1,1,567855 ,2,14956,171930 ,2,822,49195 ,2,14975,557905 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374325 ,2,829,45 ,2,14956,166670 ,2,822,14730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,56585 ,2,14979,376510 ,2,829,45 ,1,0,267765 ,1,1,45 ,1,2,45 ,2,14956,166660 ,2,822,49195 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,228895 ,2,14979,280850 ,2,829,45 ,1,0,23755 ,1,1,45 ,1,2,45 ,1,3,23745 ,1,4,23700 ,1,5,23735 ,1,6,614045 ,2,14956,166880 ,2,822,49195 ,2,14975,557980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294825 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,101825 ,1,3,176805 ,1,4,45 ,1,5,101785 ,1,6,166650 ,1,7,45 ,1,8,101765 ,1,9,176795 ,1,10,45 ,1,11,101725 ,2,14956,166680 ,2,822,49195 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377435 ,2,829,45 ,1,0,101735 ,2,14956,2855 ,2,822,49195 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414625 ,2,829,45 ,1,0,101775 ,2,14956,166890 ,2,822,49195 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,369660 ,2,829,45 ,1,0,101795 ,2,14956,166740 ,2,822,49195 ,2,14975,557985 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375640 ,2,829,45 ,1,0,101835 ,2,14956,166485 ,2,822,49195 ,2,14975,606235 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374120 ,2,829,45 ,1,0,619445 ,1,1,615295 ,1,2,357600 ,1,3,357590 ,1,4,65 ,1,5,65 ,1,6,357565 ,1,7,357555 ,1,8,357545 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,357535 ,1,15,357520 ,1,16,357510 ,1,17,357500 ,1,18,65 ,1,19,357490 ,1,20,65 ,1,21,65 ,1,22,357450 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,357440 ,1,27,65 ,1,28,357430 ,1,29,65 ,1,30,357420 ,1,31,65 ,1,32,65 ,1,33,357405 ,1,34,357395 ,1,35,357385 ,1,36,65 ,1,37,65 ,1,38,65 ,1,39,357375 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,357325 ,1,44,357320 ,1,45,357305 ,1,46,357295 ,1,47,357280 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,357270 ,1,54,65 ,1,55,357260 ,1,56,65 ,1,57,65 ,1,58,357250 ,1,59,357220 ,1,60,65 ,1,61,357215 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,166900 ,2,822,49195 ,2,14975,606235 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371585 ,2,829,45 ,2,14956,166660 ,2,822,49195 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56585 ,2,14979,376890 ,2,829,45 ,1,0,101960 ,1,1,101950 ,1,2,101940 ,1,3,101835 ,1,4,101920 ,1,5,101795 ,1,6,101775 ,1,7,101735 ,1,8,101910 ,1,9,101900 ,1,10,101890 ,1,11,101855 ,2,14956,166530 ,2,822,49195 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375825 ,2,829,45 ,1,0,3010 ,1,1,212300 ,1,2,212290 ,1,3,212280 ,1,4,212270 ,2,14956,166910 ,2,822,49195 ,2,14975,557905 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,284215 ,2,829,45 ,1,0,71680 ,2,14956,166935 ,2,822,49195 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379320 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,102070 ,1,3,176805 ,1,4,45 ,1,5,102050 ,1,6,166650 ,1,7,45 ,1,8,102030 ,1,9,176795 ,1,10,45 ,1,11,101970 ,2,14956,166965 ,2,822,49195 ,2,14975,606235 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,294805 ,2,829,45 ,1,0,102020 ,2,14956,171625 ,2,822,49195 ,2,14975,557990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371890 ,2,829,45 ,1,0,102040 ,2,14956,171765 ,2,822,14800 ,2,14975,558820 ,2,14976,23130 ,2,14977,26400 ,2,14965,544180 ,2,14978,45 ,2,14979,280860 ,2,829,45 ,1,0,102060 ,2,14956,10080 ,2,822,14810 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56805 ,2,14979,381420 ,2,829,45 ,1,0,102080 ,2,14956,10080 ,2,822,14810 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,228905 ,2,14979,280890 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,357200 ,1,3,65 ,2,14956,171965 ,2,822,14810 ,2,14975,558025 ,2,14976,23075 ,2,14977,23065 ,2,14965,543685 ,2,14978,45 ,2,14979,380005 ,2,829,45 ,2,14956,166985 ,2,822,14810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,56805 ,2,14979,380905 ,2,829,45 ,1,0,102170 ,1,1,102160 ,1,2,102150 ,1,3,102080 ,1,4,102060 ,1,5,102040 ,1,6,102020 ,1,7,102140 ,1,8,102130 ,1,9,102120 ,2,14956,171565 ,2,822,14810 ,2,14975,558040 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,280900 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,357190 ,2,14956,170820 ,2,822,49455 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255735 ,2,14979,2415 ,2,829,45 ,2,14956,170775 ,2,822,49205 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255735 ,2,14979,280950 ,2,829,45 ,1,0,102235 ,1,1,102190 ,1,2,102180 ,2,14956,167005 ,2,822,49455 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,23555 ,2,14979,280960 ,2,829,45 ,2,14956,4490 ,2,822,14820 ,2,14975,110 ,2,14976,23590 ,2,14977,23580 ,2,14965,45 ,2,14978,249690 ,2,14979,2415 ,2,829,45 ,1,0,102325 ,1,1,101685 ,1,2,102305 ,1,3,101705 ,1,4,102295 ,1,5,102285 ,1,6,102275 ,1,7,102265 ,1,8,102255 ,1,9,102245 ,2,14956,167105 ,2,822,49230 ,2,14975,558050 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255770 ,2,14979,280970 ,2,829,45 ,1,0,102190 ,1,1,102020 ,1,2,101735 ,1,3,71680 ,2,14956,4490 ,2,822,14820 ,2,14975,110 ,2,14976,23635 ,2,14977,23600 ,2,14965,45 ,2,14978,249700 ,2,14979,2415 ,2,829,45 ,1,0,101685 ,2,14956,167155 ,2,822,49240 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,280980 ,2,829,45 ,1,0,3010 ,1,1,212710 ,1,2,212700 ,1,3,212660 ,1,4,212650 ,2,14956,170465 ,2,822,49445 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,280990 ,2,829,45 ,1,0,101605 ,1,1,102445 ,1,2,102500 ,1,3,101675 ,1,4,102570 ,1,5,101615 ,1,6,101585 ,1,7,101665 ,1,8,102480 ,1,9,102335 ,1,10,102380 ,1,11,102620 ,1,12,102465 ,1,13,102490 ,1,14,102560 ,1,15,102590 ,1,16,102455 ,1,17,102580 ,1,18,102370 ,1,19,102435 ,1,20,102610 ,1,21,102345 ,1,22,102510 ,1,23,102400 ,1,24,102600 ,1,25,102390 ,1,26,102550 ,1,27,101595 ,1,28,102355 ,2,14956,170445 ,2,822,14830 ,2,14975,558055 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,281010 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,356890 ,1,4,65 ,1,5,65 ,1,6,356880 ,1,7,65 ,1,8,356870 ,1,9,356860 ,2,14956,167205 ,2,822,49250 ,2,14975,558085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415760 ,2,829,45 ,2,14956,167275 ,2,822,49250 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281045 ,2,829,45 ,1,0,102645 ,2,14956,167265 ,2,822,49280 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,23740 ,2,14979,281055 ,2,829,45 ,2,14956,167620 ,2,822,49250 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281065 ,2,829,45 ,1,0,102700 ,1,1,102675 ,1,2,102665 ,1,3,102655 ,2,14956,167610 ,2,822,14900 ,2,14975,599885 ,2,14976,23450 ,2,14977,23750 ,2,14965,45 ,2,14978,45 ,2,14979,281075 ,2,829,45 ,1,0,3010 ,1,1,183310 ,1,2,212880 ,1,3,206975 ,2,14956,167610 ,2,822,14910 ,2,14975,606330 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281090 ,2,829,45 ,1,0,3010 ,1,1,186035 ,1,2,212880 ,1,3,206975 ,2,14956,167535 ,2,822,14900 ,2,14975,558115 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394550 ,2,829,45 ,1,0,567950 ,2,14956,171965 ,2,822,14925 ,2,14975,558140 ,2,14976,23075 ,2,14977,23065 ,2,14965,543745 ,2,14978,45 ,2,14979,380055 ,2,829,45 ,1,0,102770 ,1,1,102760 ,1,2,102730 ,1,3,102720 ,1,4,102710 ,2,14956,171765 ,2,822,14925 ,2,14975,558180 ,2,14976,23075 ,2,14977,23065 ,2,14965,543850 ,2,14978,45 ,2,14979,281100 ,2,829,45 ,2,14956,171965 ,2,822,15000 ,2,14975,558165 ,2,14976,23075 ,2,14977,23065 ,2,14965,543780 ,2,14978,45 ,2,14979,380060 ,2,829,45 ,2,14956,167510 ,2,822,14915 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393800 ,2,829,45 ,1,0,102790 ,1,1,102780 ,2,14956,167590 ,2,822,14900 ,2,14975,100 ,2,14976,23450 ,2,14977,23980 ,2,14965,45 ,2,14978,45 ,2,14979,281120 ,2,829,45 ,2,14956,167640 ,2,822,14875 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281140 ,2,829,45 ,1,0,102805 ,2,14956,167650 ,2,822,49250 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,255780 ,2,14979,281150 ,2,829,45 ,2,14956,167660 ,2,822,49250 ,2,14975,558085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255780 ,2,14979,281160 ,2,829,45 ,1,0,102825 ,1,1,102815 ,2,14956,2855 ,2,822,14865 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389525 ,2,829,45 ,2,14956,167670 ,2,822,14865 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395525 ,2,829,45 ,1,0,628950 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,103410 ,1,6,103370 ,1,7,103360 ,1,8,103350 ,1,9,103340 ,1,10,103330 ,1,11,103320 ,1,12,103300 ,1,13,103270 ,1,14,103260 ,1,15,103250 ,1,16,65 ,1,17,65 ,1,18,103240 ,1,19,103225 ,1,20,103205 ,1,21,103195 ,1,22,65 ,1,23,103155 ,1,24,103145 ,1,25,103135 ,1,26,103115 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,103105 ,1,33,103095 ,1,34,103085 ,1,35,103060 ,1,36,103050 ,1,37,103040 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,103015 ,1,45,65 ,1,46,103005 ,1,47,102985 ,1,48,102920 ,1,49,65 ,1,50,65 ,1,51,102910 ,1,52,65 ,1,53,65 ,1,54,102900 ,1,55,102880 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,102870 ,1,60,102860 ,1,61,102835 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,167720 ,2,822,14865 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,213165 ,1,2,213155 ,2,14956,167730 ,2,822,14865 ,2,14975,606485 ,2,14976,23130 ,2,14977,23120 ,2,14965,543860 ,2,14978,45 ,2,14979,282880 ,2,829,45 ,1,0,9255 ,1,1,208615 ,1,2,212880 ,2,14956,167740 ,2,822,14865 ,2,14975,558060 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,281170 ,2,829,45 ,1,0,100 ,1,1,568005 ,1,2,561460 ,2,14956,167750 ,2,822,14865 ,2,14975,558060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281180 ,2,829,45 ,1,0,3010 ,1,1,208615 ,1,2,212880 ,2,14956,167780 ,2,822,14865 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255790 ,2,14979,284325 ,2,829,45 ,1,0,100 ,1,1,599940 ,2,14956,167670 ,2,822,14830 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395495 ,2,829,45 ,1,0,3010 ,1,1,213270 ,1,2,213260 ,2,14956,167800 ,2,822,14830 ,2,14975,599975 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,281190 ,2,829,45 ,1,0,103320 ,1,1,103410 ,1,2,103135 ,1,3,103225 ,1,4,103205 ,1,5,103105 ,1,6,103360 ,1,7,103370 ,1,8,103085 ,1,9,102910 ,1,10,102985 ,1,11,102835 ,1,12,103340 ,1,13,103005 ,1,14,103270 ,1,15,103350 ,1,16,103095 ,1,17,103260 ,1,18,103250 ,1,19,103050 ,1,20,102880 ,1,21,103240 ,1,22,103155 ,1,23,103060 ,1,24,102870 ,1,25,102860 ,1,26,103040 ,1,27,103115 ,1,28,103330 ,1,29,103300 ,1,30,103015 ,1,31,103145 ,1,32,102920 ,1,33,102900 ,1,34,103195 ,2,14956,167850 ,2,822,14830 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,281200 ,2,829,45 ,1,0,103480 ,1,1,103470 ,1,2,103460 ,1,3,103450 ,1,4,103440 ,1,5,103430 ,1,6,103420 ,2,14956,167840 ,2,822,15005 ,2,14975,558210 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,281210 ,2,829,45 ,2,14956,167670 ,2,822,15005 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395500 ,2,829,45 ,1,0,267720 ,1,1,267785 ,1,2,45 ,2,14956,10665 ,2,822,15005 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255800 ,2,14979,412480 ,2,829,45 ,1,0,45 ,1,1,23650 ,1,2,23875 ,1,3,23640 ,1,4,45 ,1,5,616170 ,2,14956,167860 ,2,822,14830 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,281260 ,2,829,45 ,2,14956,167875 ,2,822,14830 ,2,14975,558055 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,103505 ,1,1,103495 ,2,14956,167885 ,2,822,14830 ,2,14975,558055 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281270 ,2,829,45 ,2,14956,170435 ,2,822,14830 ,2,14975,558215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255815 ,2,14979,382150 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,104620 ,1,4,104610 ,1,5,104580 ,1,6,104570 ,1,7,65 ,1,8,65 ,1,9,104560 ,1,10,104550 ,1,11,65 ,1,12,104540 ,1,13,104530 ,1,14,103800 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,103620 ,1,22,103610 ,1,23,103565 ,1,24,65 ,1,25,103545 ,1,26,65 ,1,27,103535 ,1,28,103525 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,103515 ,1,33,65 ,2,14956,170425 ,2,822,13330 ,2,14975,558215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281280 ,2,829,45 ,1,0,103480 ,2,14956,168115 ,2,822,49290 ,2,14975,599910 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,24165 ,2,14979,281315 ,2,829,45 ,1,0,3010 ,1,1,213700 ,1,2,174740 ,1,3,209800 ,2,14956,168095 ,2,822,49290 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281325 ,2,829,45 ,2,14956,168055 ,2,822,15040 ,2,14975,558235 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281365 ,2,829,45 ,1,0,267795 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,15055 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389890 ,2,829,45 ,1,0,103640 ,2,14956,167780 ,2,822,15055 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255825 ,2,14979,294815 ,2,829,45 ,1,0,79335 ,1,1,57795 ,2,14956,2855 ,2,822,15030 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389910 ,2,829,45 ,1,0,23955 ,1,1,23885 ,1,2,103640 ,1,3,23945 ,1,4,45 ,1,5,45 ,1,6,23905 ,1,7,613975 ,2,14956,168075 ,2,822,15030 ,2,14975,558225 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,281385 ,2,829,45 ,2,14956,167780 ,2,822,15030 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255835 ,2,14979,408680 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,355445 ,1,3,65 ,1,4,65 ,1,5,355430 ,2,14956,168105 ,2,822,49290 ,2,14975,599910 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281395 ,2,829,45 ,2,14956,170345 ,2,822,49300 ,2,14975,599965 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281415 ,2,829,45 ,1,0,103680 ,1,1,103670 ,1,2,103660 ,1,3,103650 ,2,14956,168215 ,2,822,49320 ,2,14975,558280 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255845 ,2,14979,281425 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,355460 ,1,3,65 ,2,14956,4185 ,2,822,49310 ,2,14975,558280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24335 ,2,14979,281445 ,2,829,45 ,2,14956,170425 ,2,822,49300 ,2,14975,599965 ,2,14976,23130 ,2,14977,24430 ,2,14965,45 ,2,14978,45 ,2,14979,282830 ,2,829,45 ,1,0,103735 ,2,14956,168095 ,2,822,49300 ,2,14975,599975 ,2,14976,23450 ,2,14977,25580 ,2,14965,45 ,2,14978,45 ,2,14979,281455 ,2,829,45 ,2,14956,168270 ,2,822,14560 ,2,14975,558285 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,258245 ,1,1,258235 ,2,14956,168280 ,2,822,14560 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281475 ,2,829,45 ,1,0,103755 ,1,1,103745 ,1,2,103630 ,2,14956,170165 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,24455 ,2,14979,281500 ,2,829,45 ,1,0,84175 ,1,1,84165 ,1,2,84155 ,1,3,84205 ,1,4,84195 ,1,5,84185 ,2,14956,168555 ,2,822,15125 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,24475 ,2,14979,2415 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,359505 ,1,5,359475 ,1,6,65 ,1,7,359465 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,359455 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,359445 ,1,17,359435 ,2,14956,168545 ,2,822,15125 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,281510 ,2,829,45 ,2,14956,168315 ,2,822,15125 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,24485 ,2,14979,281545 ,2,829,45 ,1,0,267805 ,1,1,45 ,1,2,45 ,2,14956,168335 ,2,822,14490 ,2,14975,558290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24535 ,2,14979,2415 ,2,829,45 ,1,0,103780 ,2,14956,168400 ,2,822,14470 ,2,14975,599855 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255865 ,2,14979,2415 ,2,829,45 ,1,0,103780 ,1,1,23965 ,1,2,45 ,1,3,614705 ,2,14956,168380 ,2,822,49330 ,2,14975,599855 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255865 ,2,14979,281575 ,2,829,45 ,2,14956,168410 ,2,822,14470 ,2,14975,599855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281565 ,2,829,45 ,1,0,103790 ,2,14956,168430 ,2,822,14470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281555 ,2,829,45 ,2,14956,10080 ,2,822,14470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,57805 ,2,14979,385975 ,2,829,45 ,1,0,267815 ,1,1,45 ,1,2,45 ,2,14956,10080 ,2,822,14470 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,228915 ,2,14979,281595 ,2,829,45 ,1,0,45 ,1,1,103765 ,1,2,613640 ,2,14956,168440 ,2,822,15125 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281585 ,2,829,45 ,1,0,103765 ,2,14956,168460 ,2,822,14470 ,2,14975,558295 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24555 ,2,14979,281615 ,2,829,45 ,1,0,103780 ,2,14956,168485 ,2,822,14470 ,2,14975,558295 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281660 ,2,829,45 ,2,14956,168495 ,2,822,14560 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,267825 ,1,1,267860 ,1,2,45 ,2,14956,168505 ,2,822,14560 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,281670 ,2,829,45 ,1,0,24300 ,1,1,24290 ,1,2,45 ,1,3,24280 ,1,4,24235 ,1,5,23995 ,1,6,24225 ,1,7,45 ,1,8,45 ,1,9,24215 ,1,10,24015 ,1,11,618550 ,2,14956,168515 ,2,822,15125 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,568105 ,2,14956,168535 ,2,822,15125 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,281520 ,2,829,45 ,2,14956,166650 ,2,822,15125 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24585 ,2,14979,281680 ,2,829,45 ,1,0,267825 ,1,1,45 ,1,2,45 ,2,14956,8315 ,2,822,15125 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24595 ,2,14979,377190 ,2,829,45 ,1,0,45 ,1,1,24135 ,1,2,24055 ,1,3,45 ,1,4,24125 ,1,5,24105 ,1,6,24085 ,1,7,24075 ,1,8,45 ,1,9,614020 ,2,14956,166620 ,2,822,15125 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24640 ,2,14979,281690 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,369365 ,1,5,65 ,1,6,369355 ,1,7,369345 ,1,8,65 ,1,9,65 ,2,14956,6550 ,2,822,15125 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24650 ,2,14979,373275 ,2,829,45 ,2,14956,168680 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281700 ,2,829,45 ,1,0,103880 ,1,1,103870 ,1,2,103860 ,1,3,103850 ,2,14956,168650 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24695 ,2,14979,281765 ,2,829,45 ,2,14956,3255 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281755 ,2,829,45 ,1,0,103905 ,1,1,103895 ,2,14956,168670 ,2,822,14530 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,24705 ,2,14979,281795 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369375 ,1,3,65 ,2,14956,168690 ,2,822,15125 ,2,14975,558275 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,168730 ,2,822,15125 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,24755 ,2,14979,387470 ,2,829,45 ,1,0,104000 ,1,1,103990 ,1,2,103915 ,2,14956,166670 ,2,822,15125 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,58065 ,2,14979,379425 ,2,829,45 ,1,0,103925 ,2,14956,166660 ,2,822,15125 ,2,14975,599875 ,2,14976,24765 ,2,14977,23360 ,2,14965,45 ,2,14978,228955 ,2,14979,281840 ,2,829,45 ,2,14956,168765 ,2,822,15125 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281850 ,2,829,45 ,1,0,103925 ,1,1,103980 ,2,14956,10665 ,2,822,15125 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,24785 ,2,14979,386360 ,2,829,45 ,2,14956,168785 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281860 ,2,829,45 ,1,0,104010 ,2,14956,168795 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281880 ,2,829,45 ,2,14956,168840 ,2,822,15125 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281890 ,2,829,45 ,2,14956,166680 ,2,822,15125 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380505 ,2,829,45 ,1,0,104125 ,1,1,104115 ,1,2,104100 ,1,3,104020 ,2,14956,2855 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415745 ,2,829,45 ,1,0,104090 ,1,1,66360 ,1,2,103870 ,1,3,104030 ,1,4,104000 ,2,14956,4685 ,2,822,15125 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385910 ,2,829,45 ,2,14956,168850 ,2,822,15125 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282810 ,2,829,45 ,1,0,267835 ,1,1,45 ,1,2,45 ,2,14956,168860 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281870 ,2,829,45 ,1,0,45 ,1,1,24205 ,1,2,24190 ,1,3,24180 ,1,4,45 ,1,5,24160 ,1,6,614045 ,2,14956,168890 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,58235 ,2,14979,281900 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,358505 ,1,3,65 ,1,4,65 ,1,5,358495 ,1,6,65 ,1,7,65 ,1,8,358485 ,1,9,358470 ,2,14956,168890 ,2,822,15125 ,2,14975,599885 ,2,14976,24795 ,2,14977,23120 ,2,14965,45 ,2,14978,228965 ,2,14979,281955 ,2,829,45 ,2,14956,166660 ,2,822,15125 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,58065 ,2,14979,380185 ,2,829,45 ,1,0,104040 ,2,14956,168975 ,2,822,15125 ,2,14975,558370 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281975 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369385 ,1,3,65 ,2,14956,166740 ,2,822,15165 ,2,14975,558350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375590 ,2,829,45 ,2,14956,13175 ,2,822,15170 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394430 ,2,829,45 ,1,0,104070 ,1,1,104050 ,2,14956,168920 ,2,822,15170 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394220 ,2,829,45 ,2,14956,168985 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,104080 ,2,14956,166515 ,2,822,15125 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380360 ,2,829,45 ,1,0,568220 ,2,14956,168995 ,2,822,15125 ,2,14975,558375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400090 ,2,829,45 ,1,0,104030 ,2,14956,169015 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,24905 ,2,14979,399090 ,2,829,45 ,2,14956,169025 ,2,822,15125 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282820 ,2,829,45 ,1,0,104215 ,1,1,104205 ,1,2,104195 ,1,3,104185 ,1,4,104145 ,2,14956,169070 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,24915 ,2,14979,400035 ,2,829,45 ,1,0,568285 ,2,14956,169860 ,2,822,15125 ,2,14975,599885 ,2,14976,24020 ,2,14977,25440 ,2,14965,45 ,2,14978,45 ,2,14979,282010 ,2,829,45 ,1,0,104245 ,1,1,104225 ,2,14956,169355 ,2,822,49340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282020 ,2,829,45 ,1,0,94175 ,1,1,79335 ,1,2,94085 ,2,14956,2855 ,2,822,49340 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389940 ,2,829,45 ,2,14956,5700 ,2,822,49340 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381575 ,2,829,45 ,1,0,104235 ,2,14956,169125 ,2,822,49340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282030 ,2,829,45 ,2,14956,169135 ,2,822,49340 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282060 ,2,829,45 ,1,0,104135 ,1,1,104420 ,1,2,104400 ,1,3,104360 ,1,4,104350 ,1,5,104340 ,1,6,104330 ,1,7,104315 ,1,8,104305 ,1,9,104295 ,1,10,104255 ,2,14956,169195 ,2,822,49340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282070 ,2,829,45 ,1,0,104360 ,1,1,66550 ,2,14956,12740 ,2,822,49350 ,2,14975,558415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,24990 ,2,14979,282090 ,2,829,45 ,1,0,100 ,1,1,566370 ,2,14956,10665 ,2,822,49340 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382515 ,2,829,45 ,1,0,104360 ,1,1,66550 ,1,2,104410 ,1,3,57795 ,2,14956,169215 ,2,822,49340 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,25035 ,2,14979,282105 ,2,829,45 ,2,14956,169245 ,2,822,49340 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282115 ,2,829,45 ,1,0,104430 ,2,14956,169225 ,2,822,14470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282135 ,2,829,45 ,2,14956,169235 ,2,822,14470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282125 ,2,829,45 ,1,0,104090 ,2,14956,169255 ,2,822,49340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282295 ,2,829,45 ,2,14956,169290 ,2,822,49340 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282315 ,2,829,45 ,1,0,104510 ,1,1,104470 ,1,2,104450 ,2,14956,169300 ,2,822,49340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282080 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,169310 ,2,822,49340 ,2,14975,558380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282350 ,2,829,45 ,1,0,100 ,1,1,566545 ,2,14956,169335 ,2,822,49340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,255875 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,169530 ,2,822,15250 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282170 ,2,829,45 ,1,0,100 ,1,1,566390 ,2,14956,166620 ,2,822,15250 ,2,14975,558420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,25085 ,2,14979,282190 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,6550 ,2,822,15250 ,2,14975,558420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370200 ,2,829,45 ,1,0,100 ,1,1,566475 ,2,14956,169365 ,2,822,49380 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282215 ,2,829,45 ,1,0,58650 ,2,14956,169415 ,2,822,49380 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,282225 ,2,829,45 ,1,0,100 ,2,14956,169460 ,2,822,15250 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396200 ,2,829,45 ,1,0,103610 ,1,1,104530 ,1,2,104560 ,1,3,103525 ,1,4,104610 ,1,5,103565 ,1,6,104540 ,1,7,104550 ,1,8,103535 ,1,9,103515 ,1,10,104620 ,1,11,103620 ,1,12,104580 ,1,13,104570 ,1,14,103545 ,1,15,103800 ,2,14956,169470 ,2,822,15250 ,2,14975,558420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396305 ,2,829,45 ,1,0,101565 ,2,14956,169480 ,2,822,15250 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282325 ,2,829,45 ,1,0,179760 ,1,1,203595 ,1,2,203580 ,1,3,203570 ,2,14956,170435 ,2,822,15250 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382200 ,2,829,45 ,2,14956,169490 ,2,822,15250 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380320 ,2,829,45 ,1,0,269965 ,1,1,45 ,1,2,45 ,2,14956,169540 ,2,822,14470 ,2,14975,558295 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282305 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45 ,1,3,37495 ,1,4,37485 ,1,5,37475 ,1,6,37465 ,1,7,45 ,1,8,37455 ,1,9,37400 ,1,10,45 ,1,11,37390 ,1,12,37380 ,1,13,37370 ,1,14,104680 ,1,15,37360 ,1,16,37350 ,1,17,37340 ,1,18,37330 ,1,19,37300 ,1,20,37290 ,1,21,37280 ,1,22,45 ,1,23,45 ,1,24,37270 ,1,25,37260 ,1,26,37250 ,1,27,37240 ,1,28,37230 ,1,29,37210 ,1,30,24520 ,1,31,24480 ,1,32,24470 ,1,33,24460 ,1,34,45 ,1,35,24450 ,1,36,24435 ,1,37,24425 ,1,38,24415 ,1,39,24405 ,1,40,45 ,1,41,45 ,1,42,24360 ,1,43,24350 ,1,44,24340 ,1,45,24330 ,1,46,45 ,1,47,45 ,1,48,45 ,1,49,625595 ,2,14956,13175 ,2,822,15275 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394285 ,2,829,45 ,2,14956,168920 ,2,822,15275 ,2,14975,558435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394135 ,2,829,45 ,1,0,104745 ,1,1,104735 ,1,2,104725 ,1,3,104715 ,2,14956,166740 ,2,822,15315 ,2,14975,558445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375370 ,2,829,45 ,2,14956,169755 ,2,822,15325 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282400 ,2,829,45 ,2,14956,169735 ,2,822,49435 ,2,14975,558490 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255885 ,2,14979,2415 ,2,829,45 ,1,0,258265 ,2,14956,169700 ,2,822,49390 ,2,14975,558490 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255885 ,2,14979,282420 ,2,829,45 ,1,0,104865 ,1,1,104855 ,1,2,104845 ,1,3,104835 ,1,4,104795 ,1,5,104785 ,1,6,104775 ,2,14956,169585 ,2,822,49400 ,2,14975,558485 ,2,14976,75 ,2,14977,75 ,2,14965,543935 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,104865 ,1,1,66360 ,2,14956,4490 ,2,822,15330 ,2,14975,599975 ,2,14976,25315 ,2,14977,25285 ,2,14965,45 ,2,14978,249710 ,2,14979,2415 ,2,829,45 ,1,0,104865 ,2,14956,169595 ,2,822,49400 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,58875 ,2,14979,282430 ,2,829,45 ,1,0,12445 ,1,1,215195 ,2,14956,169595 ,2,822,49400 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,228975 ,2,14979,282440 ,2,829,45 ,2,14956,169630 ,2,822,49435 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282450 ,2,829,45 ,1,0,258300 ,2,14956,10580 ,2,822,14470 ,2,14975,606515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360005 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,169650 ,2,822,49410 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,58915 ,2,14979,282490 ,2,829,45 ,1,0,100 ,1,1,562575 ,2,14956,169650 ,2,822,49410 ,2,14975,599975 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,228985 ,2,14979,282500 ,2,829,45 ,1,0,104965 ,1,1,104955 ,1,2,104945 ,1,3,104910 ,1,4,104900 ,2,14956,169660 ,2,822,49410 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,58945 ,2,14979,282510 ,2,829,45 ,1,0,104945 ,2,14956,169660 ,2,822,49410 ,2,14975,599875 ,2,14976,25335 ,2,14977,23360 ,2,14965,45 ,2,14978,229000 ,2,14979,282520 ,2,829,45 ,1,0,100 ,1,1,562575 ,2,14956,169690 ,2,822,49425 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282530 ,2,829,45 ,2,14956,169745 ,2,822,49435 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282410 ,2,829,45 ,1,0,104985 ,2,14956,169765 ,2,822,15325 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282540 ,2,829,45 ,2,14956,169870 ,2,822,15125 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282800 ,2,829,45 ,1,0,105230 ,1,1,105220 ,1,2,105210 ,1,3,105190 ,1,4,105180 ,1,5,105170 ,1,6,105160 ,1,7,105115 ,1,8,105075 ,1,9,105065 ,1,10,105055 ,1,11,105045 ,1,12,105015 ,1,13,105005 ,1,14,104995 ,2,14956,169880 ,2,822,15125 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399960 ,2,829,45 ,1,0,57710 ,1,1,105105 ,1,2,105095 ,1,3,105085 ,1,4,66360 ,1,5,66550 ,2,14956,169890 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282160 ,2,829,45 ,1,0,100 ,1,1,568420 ,2,14956,169900 ,2,822,15125 ,2,14975,558500 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393475 ,2,829,45 ,1,0,3010 ,1,1,215525 ,1,2,215515 ,1,3,215505 ,2,14956,6245 ,2,822,15125 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,25450 ,2,14979,389310 ,2,829,45 ,2,14956,169910 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399845 ,2,829,45 ,1,0,105300 ,1,1,105290 ,1,2,105280 ,1,3,105240 ,2,14956,169920 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399905 ,2,829,45 ,2,14956,169960 ,2,822,15125 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282550 ,2,829,45 ,1,0,105310 ,2,14956,169970 ,2,822,15125 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377760 ,2,829,45 ,2,14956,169980 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282470 ,2,829,45 ,1,0,105390 ,1,1,105355 ,1,2,105345 ,1,3,105335 ,1,4,105325 ,2,14956,169990 ,2,822,15125 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,281775 ,2,829,45 ,1,0,568430 ,2,14956,170010 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282560 ,2,829,45 ,1,0,258320 ,2,14956,170020 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282605 ,2,829,45 ,1,0,629995 ,1,1,615295 ,1,2,105980 ,1,3,65 ,1,4,105970 ,1,5,65 ,1,6,105960 ,1,7,105940 ,1,8,65 ,1,9,105930 ,1,10,65 ,1,11,105920 ,1,12,105885 ,1,13,105875 ,1,14,65 ,1,15,65 ,1,16,105865 ,1,17,65 ,1,18,65 ,1,19,105855 ,1,20,105845 ,1,21,105835 ,1,22,105815 ,1,23,105775 ,1,24,105765 ,1,25,105755 ,1,26,105745 ,1,27,105730 ,1,28,105720 ,1,29,65 ,1,30,105710 ,1,31,105700 ,1,32,105680 ,1,33,65 ,1,34,65 ,1,35,105660 ,1,36,105650 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,105635 ,1,41,105625 ,1,42,105615 ,1,43,105605 ,1,44,65 ,1,45,65 ,1,46,105085 ,1,47,105575 ,1,48,65 ,1,49,65 ,1,50,105565 ,1,51,65 ,1,52,65 ,1,53,105555 ,1,54,105545 ,1,55,105535 ,1,56,105525 ,1,57,105515 ,1,58,105505 ,1,59,105460 ,1,60,105450 ,1,61,105440 ,1,62,105430 ,1,63,105420 ,1,64,105410 ,1,65,65 ,2,14956,170030 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281710 ,2,829,45 ,1,0,3010 ,1,1,215900 ,2,14956,170040 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282615 ,2,829,45 ,1,0,105970 ,1,1,57795 ,2,14956,13210 ,2,822,15125 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282625 ,2,829,45 ,1,0,3010 ,1,1,213155 ,1,2,215900 ,2,14956,170065 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,282850 ,2,829,45 ,1,0,100 ,1,1,568420 ,1,2,568420 ,2,14956,170075 ,2,822,15125 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281805 ,2,829,45 ,1,0,105920 ,1,1,105845 ,1,2,105575 ,1,3,105815 ,1,4,105775 ,1,5,105565 ,1,6,105450 ,1,7,105835 ,1,8,105960 ,1,9,105440 ,1,10,105755 ,1,11,105410 ,1,12,105535 ,1,13,105855 ,1,14,105615 ,1,15,105555 ,1,16,105745 ,1,17,105650 ,1,18,105430 ,1,19,105085 ,1,20,105545 ,1,21,105625 ,1,22,105940 ,1,23,105930 ,1,24,105635 ,1,25,105680 ,1,26,105515 ,1,27,105765 ,1,28,105720 ,1,29,105505 ,1,30,105420 ,1,31,105875 ,1,32,105525 ,1,33,105460 ,1,34,105885 ,1,35,105980 ,1,36,105865 ,1,37,105700 ,1,38,105710 ,1,39,105970 ,1,40,105605 ,1,41,105660 ,1,42,105730 ,2,14956,170085 ,2,822,15125 ,2,14975,558505 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399925 ,2,829,45 ,2,14956,170105 ,2,822,15125 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,25460 ,2,14979,281785 ,2,829,45 ,1,0,106115 ,1,1,106085 ,1,2,106075 ,1,3,106065 ,1,4,106055 ,1,5,106045 ,1,6,106035 ,1,7,106025 ,1,8,106015 ,1,9,105990 ,2,14956,170125 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,25470 ,2,14979,399855 ,2,829,45 ,2,14956,170135 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,59295 ,2,14979,2415 ,2,829,45 ,1,0,106260 ,1,1,106250 ,1,2,106240 ,1,3,106195 ,1,4,106185 ,1,5,106175 ,1,6,106165 ,1,7,106145 ,1,8,106135 ,1,9,106125 ,2,14956,170135 ,2,822,15125 ,2,14975,599885 ,2,14976,25480 ,2,14977,23120 ,2,14965,45 ,2,14978,229010 ,2,14979,282635 ,2,829,45 ,1,0,106285 ,1,1,106270 ,2,14956,170175 ,2,822,15125 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281465 ,2,829,45 ,2,14956,170185 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,106315 ,1,1,105670 ,1,2,106305 ,1,3,106295 ,1,4,163640 ,2,14956,170200 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282675 ,2,829,45 ,1,0,84765 ,2,14956,170220 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,25550 ,2,14979,282715 ,2,829,45 ,1,0,559520 ,2,14956,4195 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282705 ,2,829,45 ,1,0,106365 ,1,1,106355 ,1,2,106345 ,2,14956,6450 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282725 ,2,829,45 ,2,14956,12785 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282745 ,2,829,45 ,1,0,265820 ,1,1,267150 ,1,2,269955 ,2,14956,170265 ,2,822,49300 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282665 ,2,829,45 ,1,0,106375 ,2,14956,170275 ,2,822,49300 ,2,14975,558510 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,282735 ,2,829,45 ,1,0,106385 ,2,14956,170285 ,2,822,49300 ,2,14975,599975 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,282655 ,2,829,45 ,2,14956,170295 ,2,822,49300 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,282755 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,65 ,1,3,162580 ,1,4,65 ,1,5,162555 ,1,6,162545 ,1,7,65 ,1,8,162535 ,1,9,162525 ,1,10,162495 ,1,11,162695 ,1,12,65 ,1,13,162485 ,1,14,162475 ,1,15,162445 ,1,16,162435 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,162425 ,1,23,106475 ,1,24,106465 ,1,25,65 ,1,26,106455 ,1,27,65 ,1,28,106445 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,106435 ,1,33,106395 ,2,14956,170315 ,2,822,49300 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,59450 ,2,14979,2415 ,2,829,45 ,1,0,77965 ,1,1,162425 ,2,14956,170315 ,2,822,49300 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,229020 ,2,14979,282765 ,2,829,45 ,1,0,59475 ,2,14956,170325 ,2,822,49300 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282645 ,2,829,45 ,1,0,100 ,2,14956,170335 ,2,822,49300 ,2,14975,558280 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255845 ,2,14979,2415 ,2,829,45 ,1,0,162425 ,2,14956,170405 ,2,822,14570 ,2,14975,558540 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,25610 ,2,14979,282775 ,2,829,45 ,1,0,162555 ,2,14956,170415 ,2,822,14600 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400150 ,2,829,45 ,1,0,59515 ,2,14956,170325 ,2,822,49290 ,2,14975,599910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281305 ,2,829,45 ,1,0,100 ,2,14956,170425 ,2,822,49290 ,2,14975,599910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,281295 ,2,829,45 ,1,0,106505 ,1,1,79335 ,1,2,106495 ,1,3,57795 ,2,14956,168095 ,2,822,13330 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,282860 ,2,829,45 ,1,0,568710 ,2,14956,169490 ,2,822,14830 ,2,14975,558215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255895 ,2,14979,412155 ,2,829,45 ,1,0,106505 ,1,1,106540 ,2,14956,170455 ,2,822,14830 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,281000 ,2,829,45 ,2,14956,170495 ,2,822,49455 ,2,14975,110 ,2,14976,25700 ,2,14977,25690 ,2,14965,45 ,2,14978,25675 ,2,14979,282910 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,162385 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,162375 ,1,9,162365 ,1,10,65 ,1,11,65 ,1,12,162355 ,1,13,65 ,1,14,65 ,1,15,162345 ,1,16,162335 ,1,17,162325 ,1,18,162315 ,1,19,65 ,1,20,65 ,1,21,162280 ,1,22,65 ,1,23,162270 ,1,24,162260 ,1,25,162250 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,162230 ,1,31,65 ,1,32,162220 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,162210 ,1,37,65 ,1,38,162200 ,1,39,65 ,1,40,162170 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,162160 ,1,45,162150 ,1,46,65 ,1,47,106680 ,1,48,106670 ,1,49,65 ,1,50,65 ,1,51,106660 ,1,52,106615 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,106605 ,1,57,106595 ,1,58,106585 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,106570 ,1,64,106560 ,1,65,106550 ,2,14956,170515 ,2,822,49455 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,25710 ,2,14979,282920 ,2,829,45 ,1,0,162355 ,1,1,106495 ,2,14956,170535 ,2,822,49455 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,25720 ,2,14979,281490 ,2,829,45 ,1,0,3010 ,1,1,216455 ,2,14956,170555 ,2,822,49455 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,25755 ,2,14979,282930 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,216560 ,2,14956,170580 ,2,822,49240 ,2,14975,558050 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,255770 ,2,14979,282940 ,2,829,45 ,2,14956,170600 ,2,822,49455 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,25765 ,2,14979,282955 ,2,829,45 ,1,0,162140 ,1,1,106690 ,2,14956,170625 ,2,822,49455 ,2,14975,558545 ,2,14976,23075 ,2,14977,23065 ,2,14965,543975 ,2,14978,25775 ,2,14979,281745 ,2,829,45 ,1,0,3010 ,1,1,216580 ,1,2,216570 ,2,14956,170645 ,2,822,49455 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,25785 ,2,14979,282965 ,2,829,45 ,2,14956,170700 ,2,822,49455 ,2,14975,558550 ,2,14976,23075 ,2,14977,23065 ,2,14965,543995 ,2,14978,25795 ,2,14979,282975 ,2,829,45 ,1,0,161550 ,1,1,161540 ,1,2,161510 ,1,3,161500 ,1,4,161490 ,1,5,161470 ,1,6,161460 ,1,7,106720 ,2,14956,170710 ,2,822,49455 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,282985 ,2,829,45 ,2,14956,170720 ,2,822,14820 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,106905 ,1,1,105355 ,1,2,106730 ,2,14956,170745 ,2,822,49455 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,25805 ,2,14979,283010 ,2,829,45 ,2,14956,170765 ,2,822,49240 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,59820 ,2,14979,283020 ,2,829,45 ,1,0,267870 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,15340 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389730 ,2,829,45 ,1,0,24665 ,1,1,45 ,1,2,24690 ,1,3,614705 ,2,14956,170755 ,2,822,15340 ,2,14975,558555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283040 ,2,829,45 ,2,14956,167780 ,2,822,15340 ,2,14975,558420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255905 ,2,14979,408485 ,2,829,45 ,1,0,106765 ,1,1,106740 ,2,14956,170765 ,2,822,49240 ,2,14975,110 ,2,14976,25480 ,2,14977,23120 ,2,14965,45 ,2,14978,229030 ,2,14979,283050 ,2,829,45 ,2,14956,170955 ,2,822,15360 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,280920 ,2,829,45 ,1,0,106885 ,1,1,106730 ,1,2,106840 ,1,3,106830 ,1,4,106820 ,1,5,106810 ,1,6,106795 ,1,7,106775 ,2,14956,170840 ,2,822,15370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,25900 ,2,14979,2415 ,2,829,45 ,1,0,106895 ,1,1,105390 ,1,2,106285 ,1,3,106775 ,2,14956,170860 ,2,822,15360 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,170870 ,2,822,15360 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,161290 ,1,1,106915 ,1,2,161280 ,1,3,161165 ,1,4,106925 ,2,14956,170880 ,2,822,15360 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,170935 ,2,822,15360 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,269900 ,1,1,45 ,1,2,45 ,2,14956,7775 ,2,822,49495 ,2,14975,558580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,25920 ,2,14979,283060 ,2,829,45 ,1,0,106935 ,2,14956,171010 ,2,822,15385 ,2,14975,558585 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,280910 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,357940 ,1,5,65 ,1,6,357930 ,1,7,357920 ,1,8,357890 ,1,9,65 ,2,14956,170990 ,2,822,15385 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,255915 ,2,14979,2415 ,2,829,45 ,2,14956,171065 ,2,822,15420 ,2,14975,558625 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283080 ,2,829,45 ,1,0,267880 ,1,1,45 ,1,2,45 ,2,14956,171035 ,2,822,15420 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,415880 ,2,829,45 ,1,0,24790 ,1,1,45 ,1,2,24780 ,1,3,45 ,1,4,24770 ,1,5,24750 ,1,6,614045 ,2,14956,171045 ,2,822,15420 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415875 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,358050 ,1,5,65 ,1,6,358040 ,1,7,65 ,1,8,357995 ,1,9,357985 ,2,14956,171165 ,2,822,15435 ,2,14975,558630 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,171090 ,2,822,15435 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,106945 ,2,14956,171100 ,2,822,15435 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,357975 ,1,4,357965 ,1,5,65 ,2,14956,171430 ,2,822,15450 ,2,14975,558640 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,166495 ,2,822,49505 ,2,14975,558655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375350 ,2,829,45 ,1,0,106955 ,2,14956,166530 ,2,822,49505 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375965 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,357950 ,1,3,65 ,2,14956,166935 ,2,822,49505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379485 ,2,829,45 ,2,14956,166870 ,2,822,49505 ,2,14975,558655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375130 ,2,829,45 ,1,0,106995 ,2,14956,2855 ,2,822,49505 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414685 ,2,829,45 ,2,14956,171195 ,2,822,49505 ,2,14975,558660 ,2,14976,23130 ,2,14977,23120 ,2,14965,544030 ,2,14978,45 ,2,14979,376025 ,2,829,45 ,1,0,107005 ,2,14956,171930 ,2,822,49505 ,2,14975,558695 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374615 ,2,829,45 ,1,0,36765 ,1,1,36755 ,1,2,36745 ,1,3,36735 ,1,4,36725 ,1,5,36665 ,1,6,36600 ,1,7,36575 ,1,8,45 ,1,9,45 ,1,10,36565 ,1,11,45 ,1,12,45 ,1,13,45 ,1,14,36555 ,1,15,36545 ,1,16,36535 ,1,17,36525 ,1,18,36515 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,36505 ,1,23,36475 ,1,24,45 ,1,25,36465 ,1,26,36455 ,1,27,36445 ,1,28,45 ,1,29,36425 ,1,30,36415 ,1,31,45 ,1,32,45 ,1,33,106935 ,1,34,36405 ,1,35,36395 ,1,36,24710 ,1,37,36375 ,1,38,36365 ,1,39,36355 ,1,40,36345 ,1,41,36320 ,1,42,36310 ,1,43,36300 ,1,44,36290 ,1,45,36245 ,1,46,36235 ,1,47,36225 ,1,48,45 ,1,49,36215 ,1,50,45 ,1,51,45 ,1,52,36200 ,1,53,36190 ,1,54,45 ,1,55,45 ,1,56,45 ,1,57,36180 ,1,58,36170 ,1,59,36135 ,1,60,36125 ,1,61,36115 ,1,62,36105 ,1,63,36090 ,1,64,36080 ,1,65,36070 ,1,66,36005 ,1,67,35995 ,1,68,25585 ,1,69,25270 ,1,70,24800 ,1,71,614635 ,2,14956,171380 ,2,822,49505 ,2,14975,558800 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283120 ,2,829,45 ,2,14956,171965 ,2,822,15475 ,2,14975,558700 ,2,14976,23075 ,2,14977,23065 ,2,14965,544045 ,2,14978,45 ,2,14979,380170 ,2,829,45 ,1,0,109415 ,1,1,107025 ,1,2,107015 ,2,14956,171090 ,2,822,15490 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,107040 ,2,14956,171100 ,2,822,15490 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,171215 ,2,822,15490 ,2,14975,558715 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,267890 ,1,1,267720 ,1,2,267910 ,2,14956,171235 ,2,822,15475 ,2,14975,558730 ,2,14976,75 ,2,14977,75 ,2,14965,544090 ,2,14978,60185 ,2,14979,283140 ,2,829,45 ,1,0,25100 ,1,1,25090 ,1,2,25080 ,1,3,25040 ,1,4,24865 ,1,5,25030 ,1,6,25020 ,1,7,25010 ,1,8,24910 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,24885 ,1,14,621000 ,2,14956,171235 ,2,822,15475 ,2,14975,558730 ,2,14976,23075 ,2,14977,23065 ,2,14965,544090 ,2,14978,229055 ,2,14979,283150 ,2,829,45 ,2,14956,171625 ,2,822,15475 ,2,14975,558765 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,372070 ,2,829,45 ,1,0,107240 ,1,1,107230 ,1,2,107175 ,1,3,107165 ,1,4,107125 ,1,5,107115 ,1,6,107070 ,1,7,107060 ,2,14956,171275 ,2,822,15475 ,2,14975,558705 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,171305 ,2,822,15545 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,60235 ,2,14979,2415 ,2,829,45 ,1,0,267900 ,1,1,45 ,1,2,45 ,2,14956,166955 ,2,822,15545 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,229065 ,2,14979,283180 ,2,829,45 ,1,0,107155 ,1,1,45 ,1,2,45 ,1,3,107135 ,1,4,107145 ,1,5,616170 ,2,14956,166955 ,2,822,15545 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,60235 ,2,14979,2415 ,2,829,45 ,1,0,66500 ,1,1,66360 ,2,14956,171350 ,2,822,15555 ,2,14975,558775 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,283160 ,2,829,45 ,1,0,107145 ,1,1,107135 ,1,2,107155 ,2,14956,171965 ,2,822,15555 ,2,14975,558780 ,2,14976,23075 ,2,14977,23065 ,2,14965,544115 ,2,14978,45 ,2,14979,380175 ,2,829,45 ,1,0,3010 ,1,1,217165 ,1,2,217130 ,1,3,217120 ,2,14956,166670 ,2,822,15555 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,60315 ,2,14979,376680 ,2,829,45 ,1,0,3010 ,1,1,217185 ,1,2,217130 ,1,3,217120 ,2,14956,166660 ,2,822,15555 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229075 ,2,14979,283190 ,2,829,45 ,1,0,3010 ,1,1,190350 ,1,2,217130 ,1,3,217120 ,2,14956,171625 ,2,822,15555 ,2,14975,558790 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,372080 ,2,829,45 ,1,0,569040 ,2,14956,171330 ,2,822,15555 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354055 ,2,829,45 ,2,14956,166660 ,2,822,15555 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,60315 ,2,14979,377195 ,2,829,45 ,1,0,267890 ,1,1,45 ,1,2,45 ,2,14956,171090 ,2,822,15555 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,24995 ,1,1,45 ,1,2,45 ,1,3,24985 ,1,4,24920 ,1,5,24975 ,1,6,24965 ,1,7,613975 ,2,14956,171100 ,2,822,15555 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,171625 ,2,822,49175 ,2,14975,558795 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,372095 ,2,829,45 ,1,0,107250 ,2,14956,171390 ,2,822,49505 ,2,14975,558800 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393470 ,2,829,45 ,2,14956,171400 ,2,822,49505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283230 ,2,829,45 ,1,0,107280 ,1,1,107270 ,1,2,107260 ,2,14956,171410 ,2,822,49505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370050 ,2,829,45 ,1,0,569110 ,2,14956,166515 ,2,822,49505 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377480 ,2,829,45 ,2,14956,166680 ,2,822,49505 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377610 ,2,829,45 ,1,0,107290 ,2,14956,171440 ,2,822,49175 ,2,14975,558805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,569110 ,2,14956,171555 ,2,822,49515 ,2,14975,558810 ,2,14976,24020 ,2,14977,26330 ,2,14965,45 ,2,14978,45 ,2,14979,283240 ,2,829,45 ,1,0,107355 ,1,1,107345 ,1,2,107335 ,1,3,107300 ,2,14956,171525 ,2,822,15565 ,2,14975,558810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283250 ,2,829,45 ,2,14956,171535 ,2,822,15565 ,2,14975,558810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283260 ,2,829,45 ,1,0,107375 ,1,1,107365 ,2,14956,171390 ,2,822,14810 ,2,14975,558040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393140 ,2,829,45 ,2,14956,166515 ,2,822,49195 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377265 ,2,829,45 ,1,0,107445 ,1,1,107435 ,1,2,107425 ,1,3,107405 ,1,4,107395 ,1,5,107385 ,2,14956,171640 ,2,822,49195 ,2,14975,606650 ,2,14976,23450 ,2,14977,23360 ,2,14965,544190 ,2,14978,45 ,2,14979,371340 ,2,829,45 ,1,0,3010 ,1,1,215275 ,1,2,209390 ,1,3,217425 ,2,14956,171195 ,2,822,49195 ,2,14975,558835 ,2,14976,23130 ,2,14977,23120 ,2,14965,544220 ,2,14978,45 ,2,14979,375940 ,2,829,45 ,2,14956,171650 ,2,822,49195 ,2,14975,557980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380240 ,2,829,45 ,1,0,107490 ,1,1,107455 ,2,14956,166985 ,2,822,14720 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,56290 ,2,14979,380890 ,2,829,45 ,1,0,179760 ,1,1,217500 ,1,2,217490 ,2,14956,171670 ,2,822,14720 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,283365 ,2,829,45 ,2,14956,10580 ,2,822,14720 ,2,14975,606225 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,343905 ,2,829,45 ,1,0,107520 ,1,1,107510 ,1,2,107500 ,2,14956,171705 ,2,822,14720 ,2,14975,606225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343725 ,2,829,45 ,2,14956,171715 ,2,822,14720 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,343735 ,2,829,45 ,1,0,620805 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,107960 ,1,5,107950 ,1,6,107940 ,1,7,107930 ,1,8,107920 ,1,9,107910 ,1,10,107900 ,1,11,65 ,1,12,107855 ,1,13,107845 ,1,14,65 ,1,15,107835 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,107810 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,107800 ,1,24,65 ,1,25,107790 ,1,26,65 ,1,27,107780 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,107740 ,1,32,65 ,1,33,107730 ,1,34,65 ,1,35,107720 ,1,36,107710 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,107695 ,1,42,107685 ,1,43,65 ,1,44,107665 ,1,45,107625 ,1,46,65 ,1,47,107595 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,107585 ,1,52,107575 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,107555 ,1,65,65 ,2,14956,171725 ,2,822,14720 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355660 ,2,829,45 ,1,0,71885 ,1,1,99240 ,2,14956,171735 ,2,822,14720 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294860 ,2,829,45 ,1,0,107980 ,1,1,103320 ,2,14956,171410 ,2,822,14720 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369935 ,2,829,45 ,1,0,3010 ,1,1,217660 ,1,2,182890 ,1,3,217650 ,2,14956,6870 ,2,822,14720 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354930 ,2,829,45 ,1,0,107960 ,1,1,107950 ,1,2,107685 ,1,3,107625 ,1,4,107790 ,1,5,107585 ,1,6,107695 ,1,7,107900 ,1,8,107810 ,1,9,107930 ,1,10,107730 ,1,11,107595 ,1,12,107920 ,1,13,107740 ,1,14,107835 ,1,15,107710 ,1,16,107910 ,1,17,107555 ,1,18,107780 ,1,19,107940 ,1,20,107575 ,1,21,107845 ,1,22,107855 ,1,23,107665 ,1,24,107800 ,1,25,107720 ,2,14956,171805 ,2,822,49525 ,2,14975,557835 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283270 ,2,829,45 ,2,14956,171825 ,2,822,49525 ,2,14975,557835 ,2,14976,24020 ,2,14977,26460 ,2,14965,45 ,2,14978,45 ,2,14979,281720 ,2,829,45 ,1,0,108010 ,1,1,108000 ,1,2,107990 ,2,14956,171835 ,2,822,49525 ,2,14975,557835 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283280 ,2,829,45 ,2,14956,171865 ,2,822,49525 ,2,14975,557835 ,2,14976,23450 ,2,14977,26500 ,2,14965,45 ,2,14978,45 ,2,14979,281830 ,2,829,45 ,1,0,108020 ,2,14956,171875 ,2,822,49525 ,2,14975,557835 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283290 ,2,829,45 ,1,0,569255 ,2,14956,7595 ,2,822,49525 ,2,14975,557835 ,2,14976,24020 ,2,14977,26510 ,2,14965,45 ,2,14978,45 ,2,14979,283320 ,2,829,45 ,2,14956,171920 ,2,822,49525 ,2,14975,557835 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,281605 ,2,829,45 ,1,0,108030 ,2,14956,166660 ,2,822,14675 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,60810 ,2,14979,376950 ,2,829,45 ,1,0,107980 ,1,1,108195 ,1,2,108165 ,1,3,107040 ,1,4,108155 ,1,5,108145 ,1,6,108135 ,1,7,108120 ,1,8,108110 ,1,9,108100 ,1,10,108090 ,1,11,108050 ,1,12,108040 ,2,14956,166660 ,2,822,14675 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229085 ,2,14979,283330 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,217770 ,2,14956,166870 ,2,822,14675 ,2,14975,557825 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411765 ,2,829,45 ,1,0,102720 ,1,1,102760 ,2,14956,171765 ,2,822,14675 ,2,14975,558845 ,2,14976,23075 ,2,14977,23065 ,2,14965,544250 ,2,14978,45 ,2,14979,283340 ,2,829,45 ,1,0,569275 ,2,14956,166935 ,2,822,14675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379325 ,2,829,45 ,1,0,108240 ,1,1,108225 ,1,2,108215 ,1,3,108205 ,2,14956,10665 ,2,822,14675 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382475 ,2,829,45 ,1,0,102665 ,2,14956,171625 ,2,822,14675 ,2,14975,558850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371895 ,2,829,45 ,2,14956,171640 ,2,822,14675 ,2,14975,606685 ,2,14976,23450 ,2,14977,23360 ,2,14965,544275 ,2,14978,45 ,2,14979,371350 ,2,829,45 ,1,0,267775 ,1,1,267920 ,1,2,45 ,2,14956,166680 ,2,822,14675 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377450 ,2,829,45 ,1,0,25160 ,1,1,25110 ,1,2,45 ,1,3,45 ,1,4,25150 ,1,5,45 ,1,6,25140 ,1,7,24810 ,1,8,24855 ,1,9,614020 ,2,14956,171195 ,2,822,14675 ,2,14975,558875 ,2,14976,23130 ,2,14977,23120 ,2,14965,544280 ,2,14978,45 ,2,14979,375955 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356375 ,1,3,65 ,2,14956,2855 ,2,822,14675 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389860 ,2,829,45 ,2,14956,166670 ,2,822,14675 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,60810 ,2,14979,376530 ,2,829,45 ,1,0,108250 ,2,14956,171940 ,2,822,14675 ,2,14975,606160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370405 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,356405 ,1,5,65 ,1,6,356395 ,1,7,65 ,1,8,356385 ,1,9,65 ,2,14956,166900 ,2,822,14675 ,2,14975,606160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371600 ,2,829,45 ,2,14956,172045 ,2,822,14665 ,2,14975,558880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,280695 ,2,829,45 ,1,0,108260 ,2,14956,172055 ,2,822,14720 ,2,14975,558900 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,280685 ,2,829,45 ,2,14956,173695 ,2,822,15590 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,283385 ,2,829,45 ,1,0,108325 ,1,1,108315 ,1,2,108305 ,1,3,108295 ,1,4,108270 ,2,14956,10080 ,2,822,15590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61025 ,2,14979,381800 ,2,829,45 ,2,14956,10080 ,2,822,15590 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,229100 ,2,14979,283395 ,2,829,45 ,1,0,620805 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,109405 ,1,6,65 ,1,7,109395 ,1,8,109370 ,1,9,109360 ,1,10,109350 ,1,11,109340 ,1,12,109315 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,107605 ,1,20,109295 ,1,21,65 ,1,22,65 ,1,23,109240 ,1,24,65 ,1,25,109230 ,1,26,65 ,1,27,109220 ,1,28,109210 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,109195 ,1,33,109185 ,1,34,109175 ,1,35,109165 ,1,36,109135 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,109125 ,1,42,108470 ,1,43,65 ,1,44,108440 ,1,45,65 ,1,46,65 ,1,47,108420 ,1,48,65 ,1,49,108410 ,1,50,65 ,1,51,65 ,1,52,108370 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,108350 ,1,65,108340 ,2,14956,166620 ,2,822,15590 ,2,14975,606760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,26610 ,2,14979,283435 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,108480 ,2,14956,6550 ,2,822,15590 ,2,14975,606760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370380 ,2,829,45 ,1,0,108490 ,2,14956,8315 ,2,822,15615 ,2,14975,558930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377235 ,2,829,45 ,1,0,100 ,1,1,569315 ,2,14956,171965 ,2,822,15615 ,2,14975,558935 ,2,14976,23075 ,2,14977,23065 ,2,14965,544355 ,2,14978,45 ,2,14979,383115 ,2,829,45 ,2,14956,172075 ,2,822,15615 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,26630 ,2,14979,2415 ,2,829,45 ,1,0,267930 ,1,1,45 ,1,2,45 ,2,14956,172065 ,2,822,15615 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,380315 ,2,829,45 ,1,0,25260 ,1,1,45 ,1,2,45 ,1,3,25250 ,1,4,25235 ,1,5,25205 ,1,6,25225 ,1,7,613975 ,2,14956,166850 ,2,822,15615 ,2,14975,606770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410925 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358060 ,1,3,65 ,2,14956,10580 ,2,822,15615 ,2,14975,606770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353590 ,2,829,45 ,2,14956,166860 ,2,822,15615 ,2,14975,558955 ,2,14976,23130 ,2,14977,23120 ,2,14965,544400 ,2,14978,45 ,2,14979,359535 ,2,829,45 ,1,0,108530 ,2,14956,166495 ,2,822,15615 ,2,14975,558960 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412035 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,108635 ,1,3,176805 ,1,4,45 ,1,5,108590 ,1,6,166650 ,1,7,45 ,1,8,108570 ,1,9,176795 ,1,10,45 ,1,11,108540 ,2,14956,171735 ,2,822,15615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359265 ,2,829,45 ,1,0,108550 ,2,14956,166870 ,2,822,15615 ,2,14975,558960 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377705 ,2,829,45 ,1,0,108580 ,2,14956,171930 ,2,822,15615 ,2,14975,558930 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374675 ,2,829,45 ,1,0,108600 ,2,14956,172095 ,2,822,15615 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283445 ,2,829,45 ,1,0,108645 ,2,14956,2855 ,2,822,15625 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389745 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,358180 ,1,3,358165 ,1,4,65 ,1,5,358155 ,1,6,358145 ,1,7,65 ,1,8,65 ,1,9,358135 ,2,14956,172105 ,2,822,15615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283465 ,2,829,45 ,2,14956,173370 ,2,822,15615 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283485 ,2,829,45 ,1,0,108785 ,1,1,108645 ,1,2,108600 ,1,3,108580 ,1,4,108550 ,1,5,108775 ,1,6,108765 ,1,7,108755 ,1,8,108745 ,1,9,108735 ,1,10,108685 ,1,11,108675 ,1,12,108665 ,2,14956,172130 ,2,822,15590 ,2,14975,558985 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283505 ,2,829,45 ,1,0,218090 ,1,1,45 ,2,14956,13080 ,2,822,49620 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,26685 ,2,14979,283540 ,2,829,45 ,2,14956,173290 ,2,822,15635 ,2,14975,558990 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,283550 ,2,829,45 ,1,0,108850 ,1,1,108805 ,1,2,108795 ,2,14956,166620 ,2,822,13340 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,26755 ,2,14979,283585 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,108920 ,1,3,176805 ,1,4,45 ,1,5,108900 ,1,6,166650 ,1,7,45 ,1,8,108880 ,1,9,176795 ,1,10,45 ,1,11,108860 ,2,14956,6550 ,2,822,13340 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411655 ,2,829,45 ,1,0,108870 ,2,14956,8315 ,2,822,15660 ,2,14975,558275 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377145 ,2,829,45 ,1,0,108890 ,2,14956,171965 ,2,822,15660 ,2,14975,559015 ,2,14976,23075 ,2,14977,23065 ,2,14965,544410 ,2,14978,45 ,2,14979,382945 ,2,829,45 ,1,0,108910 ,2,14956,10080 ,2,822,15660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61400 ,2,14979,385895 ,2,829,45 ,1,0,108960 ,2,14956,10080 ,2,822,15660 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229110 ,2,14979,283595 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,358115 ,1,3,358110 ,1,4,65 ,1,5,358100 ,1,6,358090 ,1,7,65 ,1,8,65 ,1,9,358070 ,2,14956,172160 ,2,822,15680 ,2,14975,599875 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,26810 ,2,14979,283605 ,2,829,45 ,2,14956,2855 ,2,822,15680 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392805 ,2,829,45 ,1,0,109055 ,1,1,109035 ,1,2,108960 ,1,3,108910 ,1,4,108890 ,1,5,108870 ,1,6,109025 ,1,7,109015 ,1,8,109005 ,1,9,108990 ,1,10,108980 ,2,14956,166515 ,2,822,15680 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380350 ,2,829,45 ,2,14956,166680 ,2,822,15680 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380500 ,2,829,45 ,1,0,108490 ,1,1,109115 ,1,2,109105 ,1,3,109085 ,1,4,109075 ,1,5,109065 ,2,14956,166530 ,2,822,15680 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378450 ,2,829,45 ,1,0,108805 ,1,1,108870 ,1,2,108550 ,1,3,71680 ,2,14956,10665 ,2,822,15670 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,26840 ,2,14979,413600 ,2,829,45 ,1,0,109015 ,2,14956,172200 ,2,822,15670 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,26850 ,2,14979,414205 ,2,829,45 ,1,0,108240 ,1,1,107980 ,1,2,103320 ,2,14956,173175 ,2,822,15670 ,2,14975,559070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399535 ,2,829,45 ,1,0,3010 ,1,1,218370 ,1,2,218360 ,1,3,218350 ,1,4,182890 ,1,5,217650 ,2,14956,172590 ,2,822,13350 ,2,14975,559165 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283640 ,2,829,45 ,1,0,109175 ,1,1,109405 ,1,2,109125 ,1,3,108410 ,1,4,108470 ,1,5,109195 ,1,6,109230 ,1,7,109370 ,1,8,108340 ,1,9,107605 ,1,10,109295 ,1,11,109395 ,1,12,109185 ,1,13,108420 ,1,14,109360 ,1,15,109210 ,1,16,109135 ,1,17,109340 ,1,18,108350 ,1,19,109220 ,1,20,108370 ,1,21,109350 ,1,22,109315 ,1,23,108440 ,1,24,109240 ,1,25,109165 ,2,14956,166620 ,2,822,13380 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,26935 ,2,14979,283660 ,2,829,45 ,2,14956,6550 ,2,822,13380 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372920 ,2,829,45 ,1,0,111545 ,1,1,111535 ,1,2,109445 ,1,3,109425 ,2,14956,8315 ,2,822,15705 ,2,14975,559095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377135 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,109455 ,2,14956,171965 ,2,822,15705 ,2,14975,559100 ,2,14976,23075 ,2,14977,23065 ,2,14965,544420 ,2,14978,45 ,2,14979,382935 ,2,829,45 ,1,0,569465 ,2,14956,10080 ,2,822,15705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61590 ,2,14979,385865 ,2,829,45 ,2,14956,10080 ,2,822,15705 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229120 ,2,14979,283670 ,2,829,45 ,1,0,109475 ,2,14956,166850 ,2,822,15705 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360195 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,109665 ,1,4,109655 ,1,5,109455 ,1,6,109645 ,1,7,109630 ,1,8,65 ,1,9,109620 ,1,10,109610 ,1,11,65 ,1,12,65 ,1,13,109600 ,1,14,109565 ,1,15,109555 ,1,16,109545 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,109535 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,109520 ,1,25,109510 ,1,26,65 ,1,27,109500 ,1,28,65 ,1,29,109490 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,10580 ,2,822,15705 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410840 ,2,829,45 ,1,0,109520 ,1,1,109500 ,1,2,109490 ,1,3,109655 ,1,4,109455 ,1,5,109555 ,1,6,109630 ,1,7,109665 ,1,8,109610 ,1,9,109545 ,1,10,109645 ,1,11,109620 ,1,12,109535 ,1,13,109600 ,1,14,109565 ,1,15,109510 ,2,14956,166985 ,2,822,15705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,61590 ,2,14979,385135 ,2,829,45 ,1,0,569480 ,2,14956,166860 ,2,822,15705 ,2,14975,559135 ,2,14976,23130 ,2,14977,23120 ,2,14965,544430 ,2,14978,45 ,2,14979,359450 ,2,829,45 ,1,0,109675 ,2,14956,166495 ,2,822,15705 ,2,14975,559140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377815 ,2,829,45 ,1,0,569515 ,2,14956,171735 ,2,822,15705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359120 ,2,829,45 ,1,0,109735 ,1,1,109725 ,1,2,109715 ,1,3,109705 ,2,14956,166870 ,2,822,15705 ,2,14975,559140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377690 ,2,829,45 ,2,14956,171930 ,2,822,15705 ,2,14975,559095 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376865 ,2,829,45 ,1,0,267720 ,1,1,267965 ,1,2,45 ,2,14956,166670 ,2,822,15705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,61710 ,2,14979,379380 ,2,829,45 ,1,0,25320 ,1,1,45 ,1,2,45 ,1,3,45 ,1,4,25360 ,1,5,25280 ,1,6,25340 ,1,7,25310 ,1,8,25330 ,1,9,614020 ,2,14956,166660 ,2,822,15705 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229130 ,2,14979,283690 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,356560 ,1,6,65 ,1,7,356550 ,1,8,356540 ,1,9,356530 ,2,14956,171715 ,2,822,15705 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359725 ,2,829,45 ,2,14956,171410 ,2,822,15705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372020 ,2,829,45 ,1,0,109750 ,2,14956,166880 ,2,822,15705 ,2,14975,559140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359025 ,2,829,45 ,2,14956,166890 ,2,822,15705 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411545 ,2,829,45 ,1,0,614645 ,1,1,615295 ,1,2,111525 ,1,3,65 ,1,4,65 ,1,5,111515 ,1,6,65 ,1,7,111500 ,1,8,111490 ,1,9,111480 ,1,10,65 ,1,11,111470 ,1,12,111420 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,111410 ,1,19,111400 ,1,20,65 ,1,21,111390 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,111380 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,111370 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,111360 ,1,46,111315 ,1,47,111305 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,111295 ,1,60,111285 ,1,61,111270 ,1,62,65 ,1,63,65 ,1,64,111260 ,1,65,111250 ,1,66,111240 ,1,67,111220 ,1,68,111200 ,1,69,65 ,1,70,65 ,1,71,111170 ,1,72,111160 ,1,73,111150 ,1,74,65 ,1,75,111140 ,1,76,65 ,1,77,65 ,1,78,111095 ,1,79,65 ,1,80,111085 ,1,81,111075 ,1,82,111065 ,1,83,65 ,1,84,65 ,1,85,65 ,1,86,111050 ,1,87,111040 ,1,88,111030 ,1,89,111020 ,1,90,110975 ,1,91,110965 ,1,92,65 ,1,93,65 ,1,94,65 ,1,95,110955 ,1,96,65 ,1,97,65 ,1,98,65 ,1,99,110945 ,1,100,110935 ,1,101,65 ,1,102,65 ,1,103,110925 ,1,104,65 ,1,105,65 ,1,106,65 ,1,107,110915 ,1,108,110880 ,1,109,110860 ,1,110,110850 ,1,111,110830 ,1,112,65 ,1,113,65 ,1,114,65 ,1,115,65 ,1,116,65 ,1,117,65 ,1,118,110820 ,1,119,110810 ,1,120,65 ,1,121,65 ,1,122,65 ,1,123,65 ,1,124,65 ,1,125,65 ,1,126,65 ,1,127,65 ,1,128,65 ,1,129,109760 ,2,14956,166740 ,2,822,15705 ,2,14975,559145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378270 ,2,829,45 ,1,0,218735 ,1,1,45 ,2,14956,166485 ,2,822,15705 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376770 ,2,829,45 ,2,14956,166900 ,2,822,15705 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374540 ,2,829,45 ,1,0,267975 ,1,1,45 ,1,2,45 ,2,14956,166660 ,2,822,15705 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61710 ,2,14979,380130 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,25435 ,1,3,25425 ,1,4,25415 ,1,5,25370 ,1,6,614045 ,2,14956,166935 ,2,822,15705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382600 ,2,829,45 ,2,14956,166965 ,2,822,15705 ,2,14975,599945 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,410555 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,357155 ,1,3,65 ,2,14956,171625 ,2,822,15705 ,2,14975,559150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374900 ,2,829,45 ,2,14956,171640 ,2,822,15705 ,2,14975,606825 ,2,14976,23450 ,2,14977,23360 ,2,14965,544440 ,2,14978,45 ,2,14979,374220 ,2,829,45 ,1,0,109810 ,2,14956,171705 ,2,822,15705 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410770 ,2,829,45 ,2,14956,171195 ,2,822,15705 ,2,14975,559155 ,2,14976,23130 ,2,14977,23120 ,2,14965,544445 ,2,14978,45 ,2,14979,378530 ,2,829,45 ,2,14956,172055 ,2,822,15705 ,2,14975,559140 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355945 ,2,829,45 ,1,0,618890 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,110765 ,1,6,110755 ,1,7,65 ,1,8,110745 ,1,9,110720 ,1,10,65 ,1,11,110710 ,1,12,110775 ,1,13,65 ,1,14,110700 ,1,15,110690 ,1,16,110655 ,1,17,110645 ,1,18,110635 ,1,19,110625 ,1,20,110615 ,1,21,110605 ,1,22,65 ,1,23,110595 ,1,24,65 ,1,25,110585 ,1,26,65 ,1,27,110560 ,1,28,110550 ,1,29,65 ,1,30,110540 ,1,31,65 ,1,32,65 ,1,33,110530 ,1,34,65 ,1,35,110520 ,1,36,65 ,1,37,110510 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,110500 ,1,42,65 ,1,43,110490 ,1,44,110455 ,1,45,110445 ,1,46,110435 ,1,47,110425 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,110410 ,1,52,109780 ,1,53,110400 ,1,54,110075 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,109830 ,1,62,65 ,1,63,65 ,1,64,109820 ,1,65,65 ,2,14956,171650 ,2,822,15705 ,2,14975,559140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383270 ,2,829,45 ,1,0,109840 ,2,14956,171725 ,2,822,15705 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363345 ,2,829,45 ,1,0,631085 ,1,1,615295 ,1,2,369070 ,1,3,369060 ,1,4,369050 ,1,5,369040 ,1,6,368995 ,1,7,65 ,1,8,368990 ,1,9,368980 ,1,10,368970 ,1,11,368955 ,1,12,368945 ,1,13,65 ,1,14,368935 ,1,15,368925 ,1,16,65 ,1,17,368870 ,1,18,368860 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,368850 ,1,23,368840 ,1,24,65 ,1,25,368825 ,1,26,65 ,1,27,368815 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,368805 ,1,38,368795 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,368775 ,1,43,368765 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,368755 ,1,48,65 ,1,49,368745 ,1,50,368730 ,1,51,368720 ,1,52,368710 ,1,53,368700 ,1,54,65 ,1,55,368670 ,1,56,368660 ,1,57,368650 ,1,58,65 ,1,59,368640 ,1,60,368630 ,1,61,368620 ,1,62,368610 ,1,63,368600 ,1,64,368565 ,1,65,368555 ,1,66,65 ,1,67,65 ,1,68,65 ,1,69,65 ,1,70,65 ,1,71,368545 ,1,72,65 ,1,73,65 ,1,74,65 ,1,75,65 ,1,76,368535 ,1,77,368525 ,1,78,368515 ,1,79,368505 ,1,80,65 ,1,81,368495 ,1,82,65 ,1,83,65 ,1,84,368445 ,1,85,368440 ,1,86,368430 ,1,87,368420 ,1,88,368410 ,1,89,368400 ,1,90,65 ,1,91,65 ,1,92,65 ,1,93,368390 ,1,94,368380 ,1,95,65 ,1,96,368360 ,1,97,65 ,1,98,65 ,1,99,368350 ,1,100,368340 ,1,101,65 ,1,102,65 ,1,103,65 ,1,104,65 ,1,105,65 ,1,106,368330 ,1,107,368320 ,1,108,368310 ,1,109,368300 ,1,110,65 ,1,111,65 ,1,112,65 ,1,113,65 ,1,114,368290 ,1,115,65 ,1,116,65 ,1,117,368255 ,1,118,368240 ,1,119,368235 ,1,120,368225 ,1,121,368215 ,1,122,65 ,1,123,368205 ,1,124,368195 ,1,125,65 ,1,126,65 ,1,127,368185 ,1,128,368155 ,1,129,368145 ,1,130,368135 ,1,131,368125 ,1,132,368115 ,1,133,65 ,1,134,368105 ,1,135,65 ,1,136,65 ,1,137,368095 ,1,138,65 ,1,139,65 ,1,140,65 ,1,141,65 ,1,142,368085 ,1,143,65 ,1,144,65 ,1,145,368070 ,1,146,368060 ,1,147,65 ,1,148,368050 ,1,149,65 ,1,150,368040 ,1,151,368015 ,1,152,65 ,1,153,368005 ,1,154,367995 ,1,155,367985 ,1,156,367940 ,1,157,65 ,1,158,367930 ,1,159,367920 ,1,160,65 ,1,161,367910 ,1,162,367895 ,1,163,367885 ,1,164,367875 ,1,165,367865 ,1,166,367835 ,1,167,65 ,1,168,367825 ,1,169,367815 ,1,170,367805 ,1,171,367790 ,1,172,367780 ,1,173,367770 ,1,174,367760 ,1,175,367730 ,1,176,367720 ,1,177,367710 ,1,178,367700 ,1,179,367680 ,1,180,367670 ,1,181,65 ,1,182,65 ,1,183,65 ,1,184,367660 ,1,185,367650 ,1,186,367620 ,1,187,367610 ,1,188,65 ,1,189,65 ,1,190,65 ,1,191,367595 ,1,192,65 ,1,193,367590 ,1,194,65 ,1,195,65 ,1,196,65 ,1,197,367575 ,1,198,367565 ,1,199,65 ,1,200,65 ,1,201,65 ,1,202,367555 ,1,203,367545 ,1,204,367510 ,1,205,65 ,1,206,65 ,1,207,367500 ,1,208,367490 ,1,209,65 ,1,210,367480 ,1,211,367465 ,1,212,65 ,1,213,65 ,1,214,65 ,1,215,367455 ,1,216,367445 ,1,217,367435 ,1,218,367405 ,1,219,367395 ,1,220,65 ,1,221,367385 ,1,222,367375 ,1,223,65 ,1,224,65 ,1,225,367360 ,1,226,367350 ,1,227,65 ,1,228,65 ,1,229,65 ,1,230,367340 ,1,231,65 ,1,232,367330 ,1,233,65 ,1,234,367300 ,1,235,367290 ,1,236,367280 ,1,237,65 ,1,238,65 ,1,239,65 ,1,240,367270 ,1,241,367260 ,1,242,367250 ,1,243,367240 ,1,244,367230 ,1,245,367185 ,1,246,367175 ,1,247,65 ,1,248,65 ,1,249,367165 ,1,250,367155 ,1,251,367140 ,1,252,367130 ,1,253,367120 ,1,254,367110 ,1,255,65 ,1,256,367075 ,1,257,367065 ,2,14956,166910 ,2,822,15700 ,2,14975,559165 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358525 ,2,829,45 ,2,14956,171670 ,2,822,15700 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356440 ,2,829,45 ,1,0,267985 ,1,1,45 ,1,2,45 ,2,14956,172315 ,2,822,13380 ,2,14975,559165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413980 ,2,829,45 ,1,0,25445 ,1,1,45 ,1,2,613640 ,2,14956,172325 ,2,822,13380 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417285 ,2,829,45 ,2,14956,6870 ,2,822,13380 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362515 ,2,829,45 ,1,0,109840 ,1,1,110055 ,1,2,110045 ,1,3,110020 ,1,4,110010 ,1,5,110065 ,1,6,109945 ,1,7,109890 ,1,8,109880 ,1,9,109870 ,1,10,109860 ,2,14956,172365 ,2,822,13380 ,2,14975,559080 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,27090 ,2,14979,2415 ,2,829,45 ,1,0,109955 ,2,14956,172395 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27100 ,2,14979,283710 ,2,829,45 ,2,14956,9585 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,267995 ,1,1,45 ,1,2,45 ,2,14956,172535 ,2,822,49545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283700 ,2,829,45 ,1,0,25465 ,1,1,45 ,1,2,613640 ,2,14956,172405 ,2,822,49545 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283995 ,2,829,45 ,2,14956,172415 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,110000 ,1,1,109955 ,1,2,109990 ,1,3,109975 ,1,4,109965 ,2,14956,172425 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,220990 ,1,2,220980 ,1,3,182835 ,1,4,185720 ,1,5,182825 ,1,6,182815 ,1,7,220970 ,1,8,182790 ,1,9,182780 ,1,10,215195 ,1,11,220955 ,2,14956,172460 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,182880 ,1,2,182890 ,1,3,221020 ,1,4,182760 ,1,5,182870 ,1,6,182805 ,1,7,182745 ,1,8,182835 ,1,9,182825 ,1,10,182790 ,1,11,182780 ,1,12,182815 ,1,13,182770 ,2,14956,172470 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,2,14956,172480 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,185785 ,1,2,221200 ,1,3,185775 ,1,4,185765 ,1,5,185755 ,1,6,221190 ,1,7,221180 ,1,8,182835 ,1,9,185720 ,1,10,221160 ,1,11,221150 ,1,12,221140 ,1,13,182780 ,1,14,221130 ,1,15,221090 ,1,16,221080 ,1,17,221070 ,1,18,221060 ,1,19,221050 ,1,20,185730 ,1,21,182745 ,1,22,185660 ,1,23,185645 ,2,14956,172490 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,2,14956,172505 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,221230 ,1,2,185785 ,1,3,221200 ,1,4,182835 ,1,5,185720 ,1,6,182825 ,1,7,182790 ,1,8,182780 ,1,9,185710 ,1,10,185690 ,1,11,185730 ,1,12,182815 ,1,13,182745 ,1,14,185670 ,1,15,185680 ,1,16,185660 ,1,17,185645 ,1,18,185775 ,1,19,185765 ,1,20,185755 ,1,21,185740 ,1,22,215195 ,2,14956,172515 ,2,822,49545 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,2,14956,172525 ,2,822,49545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,221020 ,2,14956,7450 ,2,822,49555 ,2,14975,559165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27180 ,2,14979,283720 ,2,829,45 ,1,0,3010 ,1,1,221295 ,1,2,221285 ,1,3,221275 ,2,14956,172690 ,2,822,13350 ,2,14975,558280 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283745 ,2,829,45 ,2,14956,166620 ,2,822,13390 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27230 ,2,14979,283765 ,2,829,45 ,1,0,268005 ,1,1,45 ,1,2,45 ,2,14956,6550 ,2,822,13390 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373035 ,2,829,45 ,1,0,25565 ,1,1,45 ,1,2,45 ,1,3,25535 ,1,4,25555 ,1,5,616170 ,2,14956,166910 ,2,822,15810 ,2,14975,558280 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358610 ,2,829,45 ,2,14956,171670 ,2,822,15810 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356565 ,2,829,45 ,1,0,110135 ,1,1,110125 ,1,2,110115 ,2,14956,172315 ,2,822,13390 ,2,14975,558280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414035 ,2,829,45 ,2,14956,172325 ,2,822,13390 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417365 ,2,829,45 ,1,0,110180 ,1,1,110170 ,2,14956,6870 ,2,822,13390 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362695 ,2,829,45 ,2,14956,172640 ,2,822,13390 ,2,14975,559175 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,27305 ,2,14979,2415 ,2,829,45 ,1,0,110265 ,1,1,110245 ,1,2,110390 ,1,3,110225 ,1,4,110215 ,1,5,110200 ,1,6,110190 ,2,14956,172760 ,2,822,13350 ,2,14975,559210 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283775 ,2,829,45 ,1,0,57795 ,1,1,79335 ,2,14956,166620 ,2,822,13400 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27375 ,2,14979,283795 ,2,829,45 ,2,14956,6550 ,2,822,13400 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373085 ,2,829,45 ,1,0,268015 ,1,1,45 ,1,2,45 ,2,14956,166910 ,2,822,15845 ,2,14975,559210 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358675 ,2,829,45 ,1,0,25485 ,1,1,45 ,1,2,613640 ,2,14956,171670 ,2,822,15845 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356640 ,2,829,45 ,2,14956,172315 ,2,822,13400 ,2,14975,559210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387825 ,2,829,45 ,1,0,110380 ,1,1,110340 ,1,2,110330 ,1,3,110105 ,1,4,110235 ,1,5,110320 ,1,6,110310 ,1,7,110295 ,1,8,110285 ,1,9,110275 ,2,14956,172325 ,2,822,13400 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417400 ,2,829,45 ,1,0,3010 ,1,1,215275 ,1,2,221020 ,1,3,221505 ,2,14956,6870 ,2,822,13400 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362825 ,2,829,45 ,1,0,3010 ,1,1,221285 ,1,2,221275 ,2,14956,172730 ,2,822,13400 ,2,14975,559195 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,27465 ,2,14979,2415 ,2,829,45 ,1,0,72090 ,1,1,75785 ,1,2,72070 ,2,14956,13165 ,2,822,49565 ,2,14975,559210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27510 ,2,14979,283805 ,2,829,45 ,1,0,110425 ,1,1,110765 ,2,14956,172840 ,2,822,13350 ,2,14975,559255 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283815 ,2,829,45 ,1,0,72265 ,1,1,75785 ,1,2,72070 ,1,3,72090 ,2,14956,166620 ,2,822,13410 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27540 ,2,14979,283855 ,2,829,45 ,1,0,3010 ,1,1,221620 ,1,2,185400 ,1,3,185390 ,2,14956,6550 ,2,822,13410 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373250 ,2,829,45 ,1,0,110425 ,1,1,110765 ,1,2,110500 ,2,14956,166910 ,2,822,15865 ,2,14975,559255 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358810 ,2,829,45 ,1,0,110700 ,1,1,110520 ,1,2,110655 ,1,3,110585 ,1,4,110710 ,1,5,110645 ,1,6,110445 ,1,7,110720 ,1,8,110690 ,1,9,110510 ,1,10,110560 ,1,11,109830 ,1,12,110765 ,1,13,110755 ,1,14,109780 ,1,15,110425 ,1,16,110500 ,1,17,110595 ,1,18,110745 ,1,19,110400 ,1,20,110775 ,1,21,110550 ,1,22,110455 ,1,23,110410 ,1,24,110605 ,1,25,110075 ,1,26,110540 ,1,27,110435 ,1,28,110530 ,1,29,110625 ,1,30,110490 ,1,31,110635 ,1,32,109820 ,1,33,110615 ,2,14956,171670 ,2,822,15865 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356920 ,2,829,45 ,1,0,110765 ,2,14956,172315 ,2,822,13410 ,2,14975,559255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414095 ,2,829,45 ,1,0,3010 ,1,1,212710 ,1,2,212700 ,2,14956,172325 ,2,822,13410 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417510 ,2,829,45 ,1,0,109500 ,1,1,57710 ,2,14956,6870 ,2,822,13410 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363160 ,2,829,45 ,1,0,110500 ,1,1,110765 ,2,14956,172795 ,2,822,13410 ,2,14975,559240 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,27620 ,2,14979,2415 ,2,829,45 ,1,0,109735 ,1,1,109675 ,1,2,109520 ,1,3,103320 ,2,14956,172820 ,2,822,49575 ,2,14975,559255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283865 ,2,829,45 ,1,0,3010 ,1,1,214155 ,1,2,182745 ,1,3,182870 ,1,4,218350 ,1,5,221855 ,1,6,182770 ,1,7,182880 ,1,8,182890 ,1,9,182805 ,1,10,221020 ,1,11,221835 ,1,12,217650 ,2,14956,4815 ,2,822,49575 ,2,14975,559255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,27680 ,2,14979,283875 ,2,829,45 ,1,0,109600 ,1,1,57710 ,2,14956,173145 ,2,822,13350 ,2,14975,559265 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283890 ,2,829,45 ,1,0,109780 ,1,1,110765 ,2,14956,172895 ,2,822,13425 ,2,14975,559260 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,27710 ,2,14979,2415 ,2,829,45 ,1,0,110810 ,1,1,111515 ,1,2,110850 ,1,3,110945 ,1,4,111295 ,1,5,111085 ,1,6,111050 ,1,7,111380 ,1,8,111075 ,1,9,111250 ,1,10,111315 ,1,11,111140 ,1,12,111160 ,1,13,111150 ,1,14,111360 ,1,15,111095 ,1,16,110955 ,1,17,111285 ,1,18,111400 ,1,19,111500 ,1,20,109760 ,1,21,111370 ,1,22,110830 ,1,23,111480 ,1,24,111220 ,1,25,110820 ,1,26,111065 ,1,27,110915 ,1,28,111410 ,1,29,111470 ,1,30,110975 ,1,31,111240 ,1,32,111200 ,1,33,111020 ,1,34,111040 ,1,35,111525 ,1,36,110935 ,1,37,110965 ,1,38,110880 ,1,39,111490 ,1,40,111305 ,1,41,110925 ,1,42,111260 ,1,43,111170 ,1,44,111420 ,1,45,110860 ,1,46,111030 ,1,47,111390 ,1,48,111270 ,2,14956,172905 ,2,822,13425 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,218350 ,1,2,214155 ,1,3,182890 ,1,4,175900 ,1,5,182880 ,1,6,221855 ,1,7,221020 ,1,8,182870 ,1,9,182745 ,1,10,182770 ,1,11,221835 ,1,12,182805 ,2,14956,172915 ,2,822,13425 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,172925 ,2,822,13425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,111565 ,1,1,111555 ,2,14956,172945 ,2,822,13425 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,172955 ,2,822,13425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,267720 ,1,1,269815 ,1,2,45 ,2,14956,172965 ,2,822,13425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,35600 ,1,3,35590 ,1,4,35580 ,1,5,25695 ,1,6,25650 ,1,7,25685 ,1,8,25670 ,1,9,45 ,1,10,614025 ,2,14956,10665 ,2,822,13425 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,27720 ,2,14979,386355 ,2,829,45 ,2,14956,172975 ,2,822,13425 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,111680 ,1,1,111635 ,1,2,111625 ,1,3,111615 ,1,4,111605 ,1,5,111585 ,1,6,111575 ,2,14956,173025 ,2,822,13425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,173035 ,2,822,13425 ,2,14975,599945 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,111915 ,1,1,111905 ,1,2,111895 ,1,3,111870 ,1,4,111860 ,1,5,111850 ,1,6,111840 ,1,7,111820 ,1,8,111810 ,1,9,111800 ,1,10,111755 ,1,11,111735 ,1,12,111710 ,1,13,111690 ,2,14956,173045 ,2,822,13425 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,222235 ,1,2,182890 ,1,3,209800 ,2,14956,173055 ,2,822,13425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,173175 ,2,822,13425 ,2,14975,559070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399530 ,2,829,45 ,1,0,153770 ,1,1,112135 ,1,2,112125 ,1,3,112115 ,1,4,112105 ,1,5,112065 ,1,6,112055 ,1,7,112045 ,1,8,112035 ,1,9,112020 ,1,10,112000 ,1,11,111965 ,1,12,111945 ,1,13,111925 ,2,14956,173065 ,2,822,13425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,101605 ,2,14956,173075 ,2,822,13425 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414725 ,2,829,45 ,1,0,153290 ,1,1,141760 ,1,2,112155 ,2,14956,172200 ,2,822,13425 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,27730 ,2,14979,388330 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359095 ,1,3,65 ,2,14956,173095 ,2,822,15890 ,2,14975,559265 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,283910 ,2,829,45 ,2,14956,5795 ,2,822,49610 ,2,14975,559265 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283920 ,2,829,45 ,1,0,269480 ,1,1,45 ,1,2,45 ,2,14956,173135 ,2,822,49610 ,2,14975,559265 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,283965 ,2,829,45 ,1,0,25705 ,1,1,45 ,1,2,25780 ,1,3,45 ,1,4,25750 ,1,5,616170 ,2,14956,13210 ,2,822,13350 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397920 ,2,829,45 ,1,0,569825 ,2,14956,6245 ,2,822,13350 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414545 ,2,829,45 ,2,14956,173075 ,2,822,13350 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390460 ,2,829,45 ,1,0,268025 ,1,1,45 ,1,2,45 ,2,14956,173155 ,2,822,13350 ,2,14975,559070 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283975 ,2,829,45 ,1,0,45 ,1,1,25760 ,1,2,613640 ,2,14956,173075 ,2,822,15670 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390465 ,2,829,45 ,1,0,568460 ,2,14956,166850 ,2,822,15660 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360255 ,2,829,45 ,1,0,112185 ,1,1,112175 ,1,2,112165 ,2,14956,10580 ,2,822,15660 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410885 ,2,829,45 ,1,0,3010 ,1,1,187240 ,1,2,221200 ,1,3,186360 ,1,4,175900 ,1,5,220970 ,1,6,222540 ,1,7,222530 ,1,8,222520 ,1,9,212270 ,1,10,222480 ,1,11,222470 ,1,12,222460 ,1,13,222450 ,1,14,222420 ,1,15,222410 ,1,16,222400 ,1,17,222390 ,1,18,222360 ,1,19,222350 ,1,20,222340 ,2,14956,166985 ,2,822,15660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,61400 ,2,14979,385145 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,2,14956,166860 ,2,822,15660 ,2,14975,559270 ,2,14976,23130 ,2,14977,23120 ,2,14965,544510 ,2,14978,45 ,2,14979,359470 ,2,829,45 ,2,14956,166495 ,2,822,15660 ,2,14975,558345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377850 ,2,829,45 ,1,0,141715 ,1,1,141705 ,1,2,141695 ,1,3,141665 ,1,4,112210 ,2,14956,171735 ,2,822,15660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359130 ,2,829,45 ,1,0,87820 ,2,14956,166870 ,2,822,15660 ,2,14975,558345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377700 ,2,829,45 ,2,14956,171930 ,2,822,15660 ,2,14975,558275 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376870 ,2,829,45 ,1,0,569955 ,2,14956,166670 ,2,822,15660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,63080 ,2,14979,379415 ,2,829,45 ,1,0,112240 ,2,14956,166660 ,2,822,15660 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229155 ,2,14979,283985 ,2,829,45 ,2,14956,171715 ,2,822,15660 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359745 ,2,829,45 ,1,0,267890 ,1,1,268035 ,1,2,45 ,2,14956,171410 ,2,822,15660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372040 ,2,829,45 ,1,0,25855 ,1,1,25810 ,1,2,25790 ,1,3,45 ,1,4,45 ,1,5,25800 ,1,6,614045 ,2,14956,166880 ,2,822,15660 ,2,14975,558345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359035 ,2,829,45 ,2,14956,166890 ,2,822,15660 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411555 ,2,829,45 ,2,14956,166740 ,2,822,15660 ,2,14975,559275 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378275 ,2,829,45 ,1,0,112320 ,1,1,112290 ,1,2,112280 ,1,3,112270 ,1,4,112230 ,1,5,112260 ,2,14956,166485 ,2,822,15660 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376805 ,2,829,45 ,2,14956,166900 ,2,822,15660 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374570 ,2,829,45 ,1,0,112350 ,1,1,112340 ,2,14956,166660 ,2,822,15660 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,63080 ,2,14979,380155 ,2,829,45 ,1,0,179760 ,1,1,179750 ,2,14956,166935 ,2,822,15660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382630 ,2,829,45 ,1,0,570030 ,2,14956,166965 ,2,822,15660 ,2,14975,599975 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,410570 ,2,829,45 ,1,0,112390 ,1,1,112380 ,1,2,112370 ,1,3,112360 ,2,14956,171625 ,2,822,15660 ,2,14975,559330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374920 ,2,829,45 ,1,0,88275 ,2,14956,171640 ,2,822,15660 ,2,14975,606855 ,2,14976,23450 ,2,14977,23360 ,2,14965,544525 ,2,14978,45 ,2,14979,374250 ,2,829,45 ,2,14956,171705 ,2,822,15660 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410780 ,2,829,45 ,1,0,267890 ,1,1,268105 ,1,2,45 ,2,14956,171195 ,2,822,15660 ,2,14975,559335 ,2,14976,23130 ,2,14977,23120 ,2,14965,544530 ,2,14978,45 ,2,14979,378540 ,2,829,45 ,1,0,45 ,1,1,25885 ,1,2,26195 ,1,3,26185 ,1,4,26175 ,1,5,25875 ,1,6,45 ,1,7,26165 ,1,8,25865 ,1,9,26155 ,1,10,26135 ,1,11,45 ,1,12,26125 ,1,13,26115 ,1,14,45 ,1,15,26105 ,1,16,26095 ,1,17,45 ,1,18,25925 ,1,19,45 ,1,20,25915 ,1,21,25905 ,1,22,618130 ,2,14956,172055 ,2,822,15660 ,2,14975,558345 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355980 ,2,829,45 ,2,14956,171650 ,2,822,15660 ,2,14975,558345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383280 ,2,829,45 ,1,0,112415 ,2,14956,171725 ,2,822,15660 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363380 ,2,829,45 ,2,14956,172065 ,2,822,15660 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,380285 ,2,829,45 ,1,0,112435 ,1,1,112425 ,2,14956,166910 ,2,822,15650 ,2,14975,558990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358790 ,2,829,45 ,2,14956,171670 ,2,822,15650 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356895 ,2,829,45 ,1,0,268095 ,1,1,45 ,1,2,45 ,2,14956,172315 ,2,822,13340 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387880 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,26085 ,1,3,25965 ,1,4,25985 ,1,5,616170 ,2,14956,172325 ,2,822,13340 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417490 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,112445 ,2,14956,6870 ,2,822,13340 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363110 ,2,829,45 ,1,0,570105 ,2,14956,173260 ,2,822,13340 ,2,14975,558995 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,27900 ,2,14979,2415 ,2,829,45 ,1,0,112630 ,1,1,112605 ,1,2,112595 ,1,3,112445 ,1,4,112585 ,1,5,112575 ,1,6,112565 ,1,7,112555 ,1,8,112545 ,1,9,112535 ,1,10,112495 ,1,11,112485 ,1,12,112475 ,2,14956,173280 ,2,822,13350 ,2,14975,558990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283560 ,2,829,45 ,2,14956,173300 ,2,822,49620 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284015 ,2,829,45 ,1,0,268075 ,1,1,267720 ,1,2,267775 ,2,14956,173360 ,2,822,15900 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,25995 ,1,1,26005 ,1,2,45 ,1,3,614705 ,2,14956,173320 ,2,822,15900 ,2,14975,559355 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,570135 ,2,14956,169235 ,2,822,15590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,283495 ,2,829,45 ,1,0,112660 ,1,1,112650 ,1,2,112640 ,2,14956,6870 ,2,822,15590 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356080 ,2,829,45 ,2,14956,166670 ,2,822,15615 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,63530 ,2,14979,379440 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,113010 ,1,5,112985 ,1,6,112975 ,1,7,112965 ,1,8,112955 ,1,9,65 ,1,10,112880 ,1,11,65 ,1,12,112860 ,1,13,112850 ,1,14,65 ,1,15,112810 ,1,16,112800 ,1,17,65 ,1,18,112790 ,1,19,112770 ,1,20,65 ,1,21,112760 ,1,22,65 ,1,23,112740 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,112705 ,1,28,65 ,1,29,65 ,1,30,112695 ,1,31,65 ,1,32,65 ,1,33,112675 ,2,14956,166660 ,2,822,15615 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229165 ,2,14979,284045 ,2,829,45 ,1,0,3010 ,1,1,222855 ,1,2,217650 ,2,14956,173390 ,2,822,15615 ,2,14975,559400 ,2,14976,23075 ,2,14977,23065 ,2,14965,544585 ,2,14978,45 ,2,14979,284060 ,2,829,45 ,1,0,112895 ,2,14956,166740 ,2,822,15920 ,2,14975,559395 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375735 ,2,829,45 ,2,14956,166880 ,2,822,15615 ,2,14975,558960 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410655 ,2,829,45 ,1,0,268085 ,1,1,45 ,1,2,45 ,2,14956,166680 ,2,822,15615 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380510 ,2,829,45 ,1,0,26025 ,1,1,26075 ,1,2,26065 ,1,3,45 ,1,4,45 ,1,5,616170 ,2,14956,2855 ,2,822,15615 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415750 ,2,829,45 ,2,14956,166890 ,2,822,15615 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371760 ,2,829,45 ,1,0,112905 ,2,14956,173485 ,2,822,15615 ,2,14975,606770 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,284080 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,354705 ,1,5,354695 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,354685 ,2,14956,2855 ,2,822,15955 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389740 ,2,829,45 ,2,14956,167780 ,2,822,15955 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255925 ,2,14979,408515 ,2,829,45 ,1,0,112915 ,2,14956,173475 ,2,822,15965 ,2,14975,559410 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,284090 ,2,829,45 ,2,14956,173410 ,2,822,15965 ,2,14975,559410 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,284110 ,2,829,45 ,1,0,112925 ,1,1,112895 ,2,14956,173420 ,2,822,15965 ,2,14975,559410 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,284120 ,2,829,45 ,1,0,112760 ,1,1,112985 ,1,2,112880 ,1,3,112810 ,1,4,112975 ,1,5,112695 ,1,6,112770 ,1,7,112965 ,1,8,112675 ,1,9,112800 ,1,10,113010 ,1,11,112705 ,1,12,112955 ,1,13,112850 ,1,14,112860 ,1,15,112790 ,1,16,112740 ,2,14956,171670 ,2,822,15615 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,357175 ,2,829,45 ,2,14956,173495 ,2,822,15615 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,283475 ,2,829,45 ,1,0,113020 ,2,14956,166740 ,2,822,15615 ,2,14975,559420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375915 ,2,829,45 ,2,14956,166485 ,2,822,15615 ,2,14975,606770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374435 ,2,829,45 ,1,0,113120 ,1,1,113110 ,1,2,113100 ,1,3,113090 ,1,4,113040 ,1,5,113030 ,2,14956,166900 ,2,822,15615 ,2,14975,606770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371820 ,2,829,45 ,1,0,63760 ,2,14956,166660 ,2,822,15615 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,63530 ,2,14979,380245 ,2,829,45 ,1,0,100 ,2,14956,166530 ,2,822,15615 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378455 ,2,829,45 ,2,14956,166910 ,2,822,15615 ,2,14975,558930 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294845 ,2,829,45 ,1,0,113150 ,1,1,113140 ,1,2,113130 ,2,14956,166935 ,2,822,15615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379505 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,358250 ,2,14956,166965 ,2,822,15615 ,2,14975,606770 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,358990 ,2,829,45 ,2,14956,171625 ,2,822,15615 ,2,14975,559425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374970 ,2,829,45 ,1,0,113200 ,1,1,113160 ,2,14956,166515 ,2,822,15615 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380365 ,2,829,45 ,1,0,3010 ,1,1,223165 ,1,2,223155 ,2,14956,171640 ,2,822,15615 ,2,14975,606895 ,2,14976,23450 ,2,14977,23360 ,2,14965,544600 ,2,14978,45 ,2,14979,374375 ,2,829,45 ,2,14956,171705 ,2,822,15615 ,2,14975,606770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343850 ,2,829,45 ,2,14956,171195 ,2,822,15615 ,2,14975,559455 ,2,14976,23130 ,2,14977,23120 ,2,14965,544605 ,2,14978,45 ,2,14979,378570 ,2,829,45 ,1,0,113210 ,2,14956,172055 ,2,822,15615 ,2,14975,558960 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356090 ,2,829,45 ,1,0,623955 ,1,1,615295 ,1,2,65 ,1,3,358380 ,1,4,358370 ,1,5,358360 ,1,6,358350 ,1,7,358325 ,1,8,358315 ,1,9,65 ,1,10,358305 ,1,11,65 ,1,12,65 ,1,13,358295 ,1,14,358280 ,1,15,358270 ,1,16,358260 ,1,17,65 ,2,14956,171650 ,2,822,15615 ,2,14975,558960 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412690 ,2,829,45 ,2,14956,173515 ,2,822,15600 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284130 ,2,829,45 ,1,0,113220 ,2,14956,173590 ,2,822,15590 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,284150 ,2,829,45 ,1,0,570225 ,2,14956,166985 ,2,822,15590 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,61025 ,2,14979,381115 ,2,829,45 ,1,0,113265 ,1,1,113255 ,1,2,113245 ,1,3,113230 ,2,14956,173600 ,2,822,15590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284160 ,2,829,45 ,2,14956,173620 ,2,822,15590 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,284170 ,2,829,45 ,2,14956,10665 ,2,822,15590 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412585 ,2,829,45 ,1,0,113310 ,1,1,113275 ,2,14956,171715 ,2,822,15590 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,343925 ,2,829,45 ,2,14956,171410 ,2,822,15590 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,370065 ,2,829,45 ,2,14956,173630 ,2,822,15590 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,284195 ,2,829,45 ,1,0,258420 ,2,14956,173640 ,2,822,15590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284180 ,2,829,45 ,1,0,113480 ,1,1,113470 ,1,2,113460 ,1,3,113450 ,1,4,113440 ,1,5,113430 ,1,6,113420 ,1,7,113410 ,1,8,113380 ,1,9,113360 ,1,10,113330 ,2,14956,173175 ,2,822,15590 ,2,14975,559460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396265 ,2,829,45 ,1,0,3010 ,1,1,223165 ,1,2,223155 ,1,3,223505 ,2,14956,171725 ,2,822,15590 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356280 ,2,829,45 ,1,0,113480 ,1,1,85360 ,1,2,86830 ,1,3,113330 ,2,14956,173075 ,2,822,15590 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388530 ,2,829,45 ,1,0,570270 ,2,14956,173650 ,2,822,15590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284205 ,2,829,45 ,1,0,113535 ,1,1,113525 ,1,2,113350 ,2,14956,171670 ,2,822,15590 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,283375 ,2,829,45 ,2,14956,167780 ,2,822,15980 ,2,14975,600035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255935 ,2,14979,284225 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,141655 ,1,5,141645 ,1,6,65 ,1,7,65 ,1,8,141625 ,1,9,141615 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,141595 ,1,14,65 ,1,15,65 ,1,16,141555 ,1,17,65 ,1,18,141545 ,1,19,141535 ,1,20,65 ,1,21,65 ,1,22,113650 ,1,23,112330 ,1,24,113640 ,1,25,113600 ,1,26,113590 ,1,27,113580 ,1,28,65 ,1,29,65 ,1,30,113570 ,1,31,113555 ,1,32,65 ,1,33,113545 ,2,14956,2855 ,2,822,15995 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389515 ,2,829,45 ,1,0,3010 ,1,1,223775 ,1,2,223765 ,1,3,215195 ,2,14956,167780 ,2,822,15995 ,2,14975,600035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,255990 ,2,14979,284315 ,2,829,45 ,2,14956,2855 ,2,822,15980 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389495 ,2,829,45 ,1,0,268115 ,1,1,45 ,1,2,45 ,2,14956,173715 ,2,822,15980 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284260 ,2,829,45 ,1,0,45 ,1,1,26205 ,1,2,613640 ,2,14956,173725 ,2,822,15980 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284270 ,2,829,45 ,2,14956,173745 ,2,822,15980 ,2,14975,100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,28285 ,2,14979,284280 ,2,829,45 ,1,0,113660 ,1,1,141525 ,1,2,141510 ,1,3,141500 ,1,4,141490 ,1,5,141480 ,1,6,141460 ,1,7,141450 ,1,8,141440 ,1,9,113695 ,1,10,113685 ,1,11,113670 ,2,14956,173755 ,2,822,15980 ,2,14975,100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,284295 ,2,829,45 ,2,14956,173795 ,2,822,15980 ,2,14975,559465 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,284305 ,2,829,45 ,1,0,268125 ,1,1,45 ,1,2,45 ,2,14956,167780 ,2,822,16005 ,2,14975,558420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256000 ,2,14979,408510 ,2,829,45 ,1,0,26285 ,1,1,26265 ,1,2,45 ,1,3,614705 ,2,14956,2855 ,2,822,16005 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389735 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,356315 ,1,4,356305 ,1,5,65 ,1,6,356295 ,1,7,65 ,1,8,65 ,1,9,65 ,2,14956,167780 ,2,822,16015 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284365 ,2,829,45 ,2,14956,173825 ,2,822,16060 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284385 ,2,829,45 ,1,0,113705 ,2,14956,173870 ,2,822,16060 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284400 ,2,829,45 ,2,14956,173840 ,2,822,14600 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284470 ,2,829,45 ,1,0,141235 ,1,1,113760 ,1,2,113750 ,1,3,113715 ,2,14956,10815 ,2,822,14600 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284480 ,2,829,45 ,2,14956,173850 ,2,822,14600 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284430 ,2,829,45 ,1,0,268135 ,1,1,45 ,1,2,45 ,2,14956,173860 ,2,822,14600 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284420 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,26335 ,1,3,26305 ,1,4,26325 ,1,5,616170 ,2,14956,173935 ,2,822,16060 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284410 ,2,829,45 ,2,14956,173945 ,2,822,16070 ,2,14975,606920 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256010 ,2,14979,410725 ,2,829,45 ,2,14956,2855 ,2,822,16080 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391270 ,2,829,45 ,1,0,113810 ,1,1,113800 ,1,2,113780 ,2,14956,173980 ,2,822,16080 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386895 ,2,829,45 ,2,14956,173990 ,2,822,16080 ,2,14975,559545 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284500 ,2,829,45 ,1,0,113890 ,1,1,113770 ,1,2,113880 ,1,3,113870 ,1,4,113820 ,2,14956,173980 ,2,822,16095 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413695 ,2,829,45 ,1,0,113860 ,2,14956,174010 ,2,822,16095 ,2,14975,559550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,570415 ,2,14956,174055 ,2,822,16115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284520 ,2,829,45 ,2,14956,173945 ,2,822,16115 ,2,14975,606925 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359315 ,2,829,45 ,1,0,113980 ,1,1,113955 ,1,2,113945 ,1,3,113925 ,2,14956,2855 ,2,822,16125 ,2,14975,599880 ,2,14976,23450 ,2,14977,28625 ,2,14965,45 ,2,14978,45 ,2,14979,391345 ,2,829,45 ,1,0,113980 ,1,1,57795 ,2,14956,174130 ,2,822,16125 ,2,14975,559540 ,2,14976,24120 ,2,14977,28635 ,2,14965,45 ,2,14978,45 ,2,14979,284530 ,2,829,45 ,2,14956,2855 ,2,822,16170 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415090 ,2,829,45 ,1,0,113990 ,2,14956,2855 ,2,822,16180 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415085 ,2,829,45 ,2,14956,174380 ,2,822,16210 ,2,14975,559660 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,268180 ,1,1,45 ,1,2,45 ,2,14956,174405 ,2,822,49630 ,2,14975,559680 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256020 ,2,14979,284600 ,2,829,45 ,1,0,114000 ,2,14956,4490 ,2,822,16220 ,2,14975,600345 ,2,14976,28885 ,2,14977,28875 ,2,14965,45 ,2,14978,249735 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,570385 ,2,14956,174425 ,2,822,16220 ,2,14975,559540 ,2,14976,23450 ,2,14977,28905 ,2,14965,45 ,2,14978,45 ,2,14979,382540 ,2,829,45 ,1,0,26415 ,1,1,26680 ,1,2,26395 ,1,3,45 ,1,4,45 ,1,5,114000 ,1,6,45 ,1,7,26670 ,1,8,26385 ,1,9,26660 ,1,10,26435 ,1,11,26405 ,1,12,45 ,1,13,614390 ,2,14956,2855 ,2,822,16220 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391260 ,2,829,45 ,2,14956,173980 ,2,822,16220 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386835 ,2,829,45 ,1,0,114035 ,1,1,114025 ,2,14956,189025 ,2,822,16220 ,2,14975,559540 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284610 ,2,829,45 ,2,14956,189015 ,2,822,16220 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229175 ,2,14979,2415 ,2,829,45 ,1,0,268145 ,1,1,45 ,1,2,45 ,2,14956,189005 ,2,822,50040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229920 ,2,14979,284635 ,2,829,45 ,1,0,26515 ,1,1,26505 ,1,2,26445 ,1,3,45 ,1,4,26495 ,1,5,45 ,1,6,614045 ,2,14956,188955 ,2,822,18285 ,2,14975,559725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284655 ,2,829,45 ,2,14956,174730 ,2,822,49640 ,2,14975,559745 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256040 ,2,14979,284695 ,2,829,45 ,1,0,114045 ,2,14956,174710 ,2,822,18285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,64710 ,2,14979,2415 ,2,829,45 ,2,14956,174650 ,2,822,18285 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,229185 ,2,14979,284715 ,2,829,45 ,1,0,114055 ,2,14956,174650 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,29005 ,2,14979,284730 ,2,829,45 ,2,14956,174720 ,2,822,18285 ,2,14975,559740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284705 ,2,829,45 ,1,0,114105 ,2,14956,179350 ,2,822,49910 ,2,14975,561365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256050 ,2,14979,284750 ,2,829,45 ,2,14956,174760 ,2,822,14460 ,2,14975,559750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284800 ,2,829,45 ,1,0,114125 ,1,1,114115 ,2,14956,175410 ,2,822,49685 ,2,14975,559755 ,2,14976,24020 ,2,14977,26330 ,2,14965,45 ,2,14978,45 ,2,14979,284790 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,114160 ,1,3,166650 ,1,4,45 ,1,5,114135 ,2,14956,171765 ,2,822,16310 ,2,14975,559855 ,2,14976,23075 ,2,14977,23065 ,2,14965,544815 ,2,14978,45 ,2,14979,284820 ,2,829,45 ,1,0,114150 ,2,14956,6550 ,2,822,16330 ,2,14975,606975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370345 ,2,829,45 ,1,0,114170 ,2,14956,171965 ,2,822,16330 ,2,14975,559775 ,2,14976,23075 ,2,14977,23065 ,2,14965,544735 ,2,14978,45 ,2,14979,380230 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359125 ,2,14956,171965 ,2,822,16350 ,2,14975,559795 ,2,14976,23075 ,2,14977,23065 ,2,14965,544755 ,2,14978,45 ,2,14979,380225 ,2,829,45 ,2,14956,2855 ,2,822,16350 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414705 ,2,829,45 ,1,0,268170 ,1,1,45 ,1,2,45 ,2,14956,174860 ,2,822,16340 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,284845 ,2,829,45 ,1,0,45 ,1,1,26650 ,1,2,26635 ,1,3,26545 ,1,4,26525 ,1,5,45 ,1,6,614045 ,2,14956,174870 ,2,822,16340 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284855 ,2,829,45 ,2,14956,166515 ,2,822,16330 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377505 ,2,829,45 ,1,0,114385 ,1,1,114375 ,1,2,114180 ,2,14956,166680 ,2,822,16330 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411920 ,2,829,45 ,2,14956,10665 ,2,822,16330 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382725 ,2,829,45 ,1,0,268160 ,1,1,45 ,1,2,45 ,2,14956,174925 ,2,822,16330 ,2,14975,559850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381665 ,2,829,45 ,1,0,26555 ,1,1,26625 ,1,2,26615 ,1,3,45 ,1,4,45 ,1,5,26605 ,1,6,614045 ,2,14956,166935 ,2,822,16330 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379500 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,114230 ,2,14956,171330 ,2,822,16330 ,2,14975,607015 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354115 ,2,829,45 ,1,0,114240 ,2,14956,6870 ,2,822,16330 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356075 ,2,829,45 ,1,0,114240 ,2,14956,174935 ,2,822,16330 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416210 ,2,829,45 ,2,14956,175055 ,2,822,49665 ,2,14975,559770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284865 ,2,829,45 ,1,0,114285 ,1,1,114240 ,1,2,114275 ,1,3,114265 ,1,4,114250 ,2,14956,174975 ,2,822,16300 ,2,14975,559755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284890 ,2,829,45 ,2,14956,171965 ,2,822,16360 ,2,14975,559860 ,2,14976,23075 ,2,14977,23065 ,2,14965,544825 ,2,14978,45 ,2,14979,380250 ,2,829,45 ,1,0,114355 ,2,14956,6550 ,2,822,16395 ,2,14975,607165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370385 ,2,829,45 ,2,14956,2855 ,2,822,16395 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390205 ,2,829,45 ,1,0,114295 ,2,14956,174925 ,2,822,16395 ,2,14975,559905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381710 ,2,829,45 ,2,14956,10665 ,2,822,16395 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412590 ,2,829,45 ,1,0,114345 ,1,1,114220 ,1,2,114335 ,1,3,114325 ,2,14956,166515 ,2,822,16395 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411915 ,2,829,45 ,1,0,114295 ,1,1,114345 ,1,2,114220 ,1,3,114335 ,1,4,114265 ,1,5,114240 ,2,14956,166680 ,2,822,16395 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411925 ,2,829,45 ,1,0,67725 ,1,1,67830 ,1,2,59500 ,1,3,114365 ,1,4,57795 ,2,14956,166935 ,2,822,16395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379510 ,2,829,45 ,2,14956,174935 ,2,822,16395 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416225 ,2,829,45 ,1,0,114460 ,1,1,114450 ,1,2,114395 ,2,14956,171330 ,2,822,16385 ,2,14975,607155 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354130 ,2,829,45 ,2,14956,6870 ,2,822,16385 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356100 ,2,829,45 ,1,0,114470 ,2,14956,175075 ,2,822,49665 ,2,14975,559770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284910 ,2,829,45 ,2,14956,175085 ,2,822,16300 ,2,14975,559755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,284920 ,2,829,45 ,1,0,114520 ,1,1,114170 ,1,2,114150 ,1,3,114510 ,1,4,114500 ,1,5,114490 ,1,6,114480 ,2,14956,175390 ,2,822,49685 ,2,14975,559755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284935 ,2,829,45 ,2,14956,6550 ,2,822,16445 ,2,14975,607230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370305 ,2,829,45 ,1,0,114570 ,1,1,114560 ,2,14956,175095 ,2,822,16445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284955 ,2,829,45 ,2,14956,171965 ,2,822,49675 ,2,14975,559995 ,2,14976,23075 ,2,14977,23065 ,2,14965,544940 ,2,14978,45 ,2,14979,380165 ,2,829,45 ,1,0,114590 ,1,1,114580 ,2,14956,2855 ,2,822,49675 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390060 ,2,829,45 ,2,14956,175150 ,2,822,49675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396750 ,2,829,45 ,1,0,114630 ,1,1,114620 ,1,2,114610 ,2,14956,175160 ,2,822,16455 ,2,14975,560000 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,174935 ,2,822,16445 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394765 ,2,829,45 ,1,0,114640 ,2,14956,175195 ,2,822,16445 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,284965 ,2,829,45 ,1,0,104785 ,2,14956,175205 ,2,822,16445 ,2,14975,607235 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,381775 ,2,829,45 ,2,14956,175215 ,2,822,16445 ,2,14975,600035 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285010 ,2,829,45 ,1,0,139720 ,1,1,139710 ,1,2,139700 ,1,3,116645 ,1,4,114680 ,2,14956,166935 ,2,822,16445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379480 ,2,829,45 ,1,0,70175 ,1,1,66960 ,1,2,57710 ,2,14956,166515 ,2,822,16445 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377475 ,2,829,45 ,1,0,65380 ,2,14956,10665 ,2,822,16445 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382655 ,2,829,45 ,1,0,600065 ,2,14956,175225 ,2,822,16445 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,285020 ,2,829,45 ,1,0,224675 ,1,1,224665 ,1,2,224655 ,2,14956,175255 ,2,822,16445 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,285000 ,2,829,45 ,2,14956,175265 ,2,822,16445 ,2,14975,560070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393465 ,2,829,45 ,1,0,267720 ,1,1,268205 ,1,2,45 ,2,14956,166680 ,2,822,16445 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377605 ,2,829,45 ,1,0,27035 ,1,1,26985 ,1,2,45 ,1,3,45 ,1,4,45 ,1,5,26975 ,1,6,26965 ,1,7,26725 ,1,8,26760 ,1,9,26750 ,1,10,614025 ,2,14956,175275 ,2,822,16445 ,2,14975,559980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,356335 ,1,3,356325 ,1,4,65 ,1,5,65 ,2,14956,6870 ,2,822,16445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355995 ,2,829,45 ,2,14956,5700 ,2,822,16445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381785 ,2,829,45 ,1,0,114720 ,2,14956,174925 ,2,822,16445 ,2,14975,560075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381580 ,2,829,45 ,2,14956,175285 ,2,822,16445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284990 ,2,829,45 ,1,0,267720 ,1,1,268190 ,1,2,45 ,2,14956,171330 ,2,822,16445 ,2,14975,607300 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354040 ,2,829,45 ,1,0,114740 ,1,1,114730 ,2,14956,171035 ,2,822,16435 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393155 ,2,829,45 ,1,0,114740 ,1,1,26940 ,1,2,114730 ,1,3,26930 ,1,4,45 ,1,5,45 ,1,6,45 ,1,7,26920 ,1,8,45 ,1,9,26770 ,1,10,26910 ,1,11,26875 ,1,12,26865 ,1,13,26855 ,1,14,45 ,1,15,45 ,1,16,26845 ,1,17,26835 ,1,18,26825 ,1,19,26815 ,1,20,26805 ,1,21,616230 ,2,14956,171045 ,2,822,16435 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393130 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,367050 ,1,3,65 ,2,14956,175320 ,2,822,16435 ,2,14975,559970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,171100 ,2,822,16425 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394095 ,2,829,45 ,1,0,114770 ,2,14956,175340 ,2,822,16425 ,2,14975,559935 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,175370 ,2,822,16415 ,2,14975,559925 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,114790 ,1,1,114780 ,2,14956,175420 ,2,822,49665 ,2,14975,559770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,284760 ,2,829,45 ,1,0,3010 ,1,1,224855 ,1,2,224845 ,1,3,224835 ,1,4,224825 ,1,5,224780 ,1,6,206975 ,2,14956,175490 ,2,822,16485 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,65610 ,2,14979,2415 ,2,829,45 ,2,14956,175480 ,2,822,16485 ,2,14975,110 ,2,14976,29675 ,2,14977,23120 ,2,14965,45 ,2,14978,229200 ,2,14979,285040 ,2,829,45 ,1,0,570745 ,2,14956,176120 ,2,822,16485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285110 ,2,829,45 ,1,0,114840 ,1,1,114830 ,1,2,114820 ,1,3,114810 ,1,4,114800 ,2,14956,175540 ,2,822,16505 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,29695 ,2,14979,285130 ,2,829,45 ,2,14956,175520 ,2,822,16505 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,29735 ,2,14979,285145 ,2,829,45 ,1,0,114890 ,1,1,114880 ,2,14956,175775 ,2,822,16520 ,2,14975,607325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285175 ,2,829,45 ,1,0,570745 ,2,14956,171965 ,2,822,16520 ,2,14975,560135 ,2,14976,23075 ,2,14977,23065 ,2,14965,545055 ,2,14978,45 ,2,14979,379990 ,2,829,45 ,1,0,114945 ,1,1,114935 ,1,2,114925 ,1,3,114910 ,1,4,114900 ,2,14956,171765 ,2,822,16530 ,2,14975,560165 ,2,14976,23075 ,2,14977,23065 ,2,14965,545120 ,2,14978,45 ,2,14979,285215 ,2,829,45 ,1,0,570750 ,2,14956,10080 ,2,822,16540 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,65720 ,2,14979,381425 ,2,829,45 ,2,14956,10080 ,2,822,16540 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229210 ,2,14979,285235 ,2,829,45 ,1,0,114990 ,1,1,114955 ,2,14956,171965 ,2,822,16540 ,2,14975,560145 ,2,14976,23075 ,2,14977,23065 ,2,14965,545075 ,2,14978,45 ,2,14979,380025 ,2,829,45 ,2,14956,166985 ,2,822,16540 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,65720 ,2,14979,380910 ,2,829,45 ,2,14956,10080 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,65765 ,2,14979,381385 ,2,829,45 ,1,0,115075 ,1,1,115065 ,1,2,115055 ,1,3,115045 ,1,4,115020 ,1,5,115010 ,1,6,115000 ,2,14956,10080 ,2,822,16520 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229220 ,2,14979,285245 ,2,829,45 ,1,0,3010 ,1,1,225025 ,1,2,224990 ,1,3,224980 ,2,14956,166670 ,2,822,16550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,65785 ,2,14979,376500 ,2,829,45 ,1,0,3010 ,1,1,225170 ,1,2,225160 ,1,3,225150 ,1,4,225140 ,1,5,225130 ,1,6,225120 ,1,7,225095 ,1,8,224980 ,1,9,225085 ,1,10,225075 ,1,11,225065 ,1,12,225055 ,2,14956,166660 ,2,822,16550 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229230 ,2,14979,285255 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,356435 ,1,3,65 ,1,4,65 ,1,5,356425 ,2,14956,171930 ,2,822,16550 ,2,14975,560205 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374280 ,2,829,45 ,2,14956,166505 ,2,822,16550 ,2,14975,560210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371780 ,2,829,45 ,1,0,115100 ,2,14956,166495 ,2,822,16550 ,2,14975,560210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375145 ,2,829,45 ,2,14956,171640 ,2,822,16550 ,2,14975,607390 ,2,14976,23450 ,2,14977,23360 ,2,14965,545170 ,2,14978,45 ,2,14979,371330 ,2,829,45 ,1,0,115110 ,2,14956,171195 ,2,822,16550 ,2,14975,560215 ,2,14976,23130 ,2,14977,23120 ,2,14965,545175 ,2,14978,45 ,2,14979,375930 ,2,829,45 ,2,14956,166870 ,2,822,16550 ,2,14975,560210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375085 ,2,829,45 ,1,0,115335 ,1,1,115325 ,1,2,115295 ,1,3,115285 ,1,4,115275 ,1,5,115265 ,1,6,115255 ,1,7,115245 ,1,8,115235 ,1,9,115225 ,1,10,115170 ,1,11,115160 ,1,12,115140 ,1,13,115120 ,2,14956,166530 ,2,822,16550 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375815 ,2,829,45 ,1,0,115160 ,2,14956,166660 ,2,822,16550 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,65785 ,2,14979,376885 ,2,829,45 ,1,0,9255 ,1,1,208615 ,1,2,224825 ,1,3,224780 ,2,14956,166680 ,2,822,16550 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377395 ,2,829,45 ,1,0,100 ,1,1,570900 ,1,2,599940 ,1,3,599940 ,2,14956,166935 ,2,822,16550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379310 ,2,829,45 ,1,0,3010 ,1,1,211340 ,1,2,225320 ,1,3,225310 ,2,14956,166740 ,2,822,16550 ,2,14975,560220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375505 ,2,829,45 ,1,0,3010 ,1,1,224825 ,1,2,224780 ,2,14956,166850 ,2,822,16520 ,2,14975,607325 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343970 ,2,829,45 ,1,0,3010 ,1,1,208615 ,1,2,224825 ,1,3,224780 ,2,14956,10580 ,2,822,16520 ,2,14975,607325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,343895 ,2,829,45 ,1,0,570685 ,2,14956,166985 ,2,822,16520 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,65765 ,2,14979,380880 ,2,829,45 ,1,0,625360 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,115970 ,1,6,65 ,1,7,115960 ,1,8,115930 ,1,9,115920 ,1,10,115910 ,1,11,65 ,1,12,115900 ,1,13,115880 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,115870 ,1,18,65 ,1,19,115815 ,1,20,65 ,1,21,115805 ,1,22,115795 ,1,23,115785 ,1,24,115775 ,1,25,115655 ,1,26,65 ,1,27,115645 ,1,28,115620 ,1,29,65 ,1,30,115600 ,1,31,65 ,1,32,65 ,1,33,115590 ,1,34,65 ,1,35,115560 ,1,36,65 ,1,37,65 ,1,38,115550 ,1,39,65 ,1,40,115540 ,1,41,115495 ,1,42,65 ,1,43,65 ,1,44,115475 ,1,45,115465 ,1,46,115445 ,1,47,115435 ,1,48,115415 ,1,49,65 ,1,50,115390 ,1,51,115380 ,1,52,115370 ,1,53,115355 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,115345 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,175610 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256060 ,2,14979,2415 ,2,829,45 ,1,0,115400 ,1,1,103320 ,2,14956,175620 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285265 ,2,829,45 ,1,0,3010 ,1,1,225170 ,1,2,225085 ,1,3,186035 ,1,4,225470 ,1,5,225460 ,2,14956,171930 ,2,822,16520 ,2,14975,560255 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374260 ,2,829,45 ,1,0,115755 ,1,1,115745 ,1,2,115685 ,1,3,115675 ,1,4,115665 ,1,5,71885 ,1,6,99240 ,2,14956,175630 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285315 ,2,829,45 ,1,0,570935 ,2,14956,10665 ,2,822,16520 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382410 ,2,829,45 ,1,0,115715 ,1,1,115705 ,1,2,115685 ,1,3,115695 ,2,14956,171410 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369925 ,2,829,45 ,1,0,102920 ,2,14956,166680 ,2,822,16520 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377390 ,2,829,45 ,1,0,3010 ,1,1,205425 ,1,2,218370 ,1,3,183245 ,2,14956,2855 ,2,822,16520 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389815 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,225140 ,1,3,225120 ,1,4,225680 ,1,5,225095 ,1,6,225670 ,1,7,224980 ,1,8,225160 ,1,9,225660 ,1,10,225065 ,1,11,225055 ,2,14956,175640 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285335 ,2,829,45 ,1,0,115390 ,1,1,115445 ,1,2,115970 ,1,3,115540 ,1,4,115370 ,1,5,115645 ,1,6,115775 ,1,7,115960 ,1,8,115380 ,1,9,115435 ,1,10,115550 ,1,11,115815 ,1,12,115930 ,1,13,115590 ,1,14,115415 ,1,15,115495 ,1,16,115900 ,1,17,115355 ,1,18,115345 ,1,19,115620 ,1,20,115655 ,1,21,115920 ,1,22,115870 ,1,23,115465 ,1,24,115560 ,1,25,115600 ,1,26,115910 ,1,27,115880 ,1,28,115475 ,1,29,115785 ,1,30,115805 ,1,31,115795 ,2,14956,166740 ,2,822,16520 ,2,14975,560260 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375495 ,2,829,45 ,2,14956,166485 ,2,822,16520 ,2,14975,607325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374100 ,2,829,45 ,1,0,116130 ,1,1,116120 ,1,2,116110 ,1,3,116070 ,1,4,116060 ,1,5,116035 ,1,6,115675 ,1,7,116025 ,1,8,116015 ,1,9,116005 ,1,10,115990 ,1,11,115755 ,1,12,115980 ,2,14956,166900 ,2,822,16520 ,2,14975,607325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371565 ,2,829,45 ,1,0,72265 ,1,1,72090 ,1,2,116080 ,2,14956,175670 ,2,822,16520 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,225170 ,1,2,225085 ,1,3,186035 ,1,4,217650 ,2,14956,175680 ,2,822,16520 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285275 ,2,829,45 ,2,14956,175690 ,2,822,16520 ,2,14975,560170 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285345 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,116415 ,1,3,115745 ,1,4,116405 ,1,5,116375 ,1,6,65 ,1,7,116365 ,1,8,116355 ,1,9,65 ,1,10,65 ,1,11,116345 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,116320 ,1,16,116310 ,1,17,116300 ,1,18,65 ,1,19,116290 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,116250 ,1,26,115665 ,1,27,116195 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,116185 ,1,32,116175 ,1,33,116165 ,2,14956,166935 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379305 ,2,829,45 ,1,0,116240 ,1,1,72090 ,1,2,116080 ,2,14956,175700 ,2,822,16520 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285360 ,2,829,45 ,1,0,3010 ,1,1,225910 ,1,2,225170 ,1,3,225470 ,1,4,225460 ,1,5,225085 ,1,6,186035 ,1,7,217650 ,1,8,180735 ,2,14956,175710 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285370 ,2,829,45 ,1,0,116250 ,1,1,116375 ,1,2,116300 ,1,3,116310 ,1,4,116175 ,1,5,116320 ,1,6,116405 ,1,7,116195 ,1,8,116185 ,1,9,116365 ,1,10,115665 ,1,11,116290 ,1,12,116355 ,1,13,116165 ,1,14,116415 ,1,15,115745 ,1,16,116345 ,2,14956,175720 ,2,822,16520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285380 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,116425 ,2,14956,5700 ,2,822,16520 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381430 ,2,829,45 ,1,0,570995 ,2,14956,175730 ,2,822,16520 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285325 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,116240 ,1,3,116590 ,1,4,116580 ,1,5,116425 ,1,6,116570 ,1,7,116555 ,1,8,65 ,1,9,116545 ,1,10,116535 ,1,11,65 ,1,12,65 ,1,13,116080 ,1,14,116100 ,1,15,116525 ,1,16,116475 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,116465 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,115400 ,1,25,116455 ,1,26,65 ,1,27,65 ,1,28,116220 ,1,29,116445 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,175835 ,2,822,16610 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285165 ,2,829,45 ,1,0,115400 ,1,1,116445 ,1,2,116580 ,1,3,116425 ,1,4,116525 ,1,5,116555 ,1,6,116590 ,1,7,116535 ,1,8,116475 ,1,9,116570 ,1,10,116545 ,1,11,116465 ,1,12,116220 ,1,13,116100 ,1,14,116455 ,1,15,116240 ,1,16,116080 ,2,14956,175785 ,2,822,16610 ,2,14975,607400 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285410 ,2,829,45 ,2,14956,175795 ,2,822,16610 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285420 ,2,829,45 ,1,0,116600 ,2,14956,175805 ,2,822,16610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285430 ,2,829,45 ,2,14956,166680 ,2,822,16610 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377740 ,2,829,45 ,1,0,114710 ,2,14956,10665 ,2,822,16610 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382875 ,2,829,45 ,1,0,3010 ,1,1,226040 ,1,2,218370 ,1,3,210905 ,1,4,198280 ,1,5,226030 ,2,14956,175815 ,2,822,16610 ,2,14975,560265 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285440 ,2,829,45 ,1,0,105515 ,1,1,57795 ,1,2,139700 ,2,14956,175845 ,2,822,16610 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285155 ,2,829,45 ,1,0,179760 ,1,1,218370 ,1,2,226030 ,1,3,210905 ,1,4,198280 ,2,14956,171090 ,2,822,16620 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,6550 ,2,822,16640 ,2,14975,607490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373305 ,2,829,45 ,1,0,268215 ,1,1,45 ,1,2,45 ,2,14956,175095 ,2,822,16640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285470 ,2,829,45 ,1,0,27095 ,1,1,27085 ,1,2,27045 ,1,3,27075 ,1,4,27065 ,1,5,45 ,1,6,45 ,1,7,613975 ,2,14956,6870 ,2,822,16640 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363245 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,354340 ,1,3,354305 ,1,4,65 ,1,5,65 ,2,14956,171965 ,2,822,49710 ,2,14975,560335 ,2,14976,23075 ,2,14977,23065 ,2,14965,545250 ,2,14978,45 ,2,14979,383070 ,2,829,45 ,2,14956,2855 ,2,822,49710 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415755 ,2,829,45 ,1,0,116695 ,1,1,116685 ,1,2,116665 ,2,14956,175935 ,2,822,49710 ,2,14975,560350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285480 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354375 ,1,3,65 ,2,14956,2855 ,2,822,16665 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389925 ,2,829,45 ,2,14956,173945 ,2,822,16665 ,2,14975,607530 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256070 ,2,14979,410315 ,2,829,45 ,1,0,116715 ,1,1,116705 ,2,14956,175910 ,2,822,16665 ,2,14975,607550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256095 ,2,14979,413455 ,2,829,45 ,1,0,3010 ,1,1,226145 ,1,2,226135 ,1,3,226125 ,1,4,199455 ,2,14956,175150 ,2,822,49710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400145 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,354360 ,1,3,354350 ,1,4,65 ,1,5,65 ,2,14956,171410 ,2,822,49710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372120 ,2,829,45 ,2,14956,174935 ,2,822,16640 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397695 ,2,829,45 ,1,0,116820 ,1,1,116810 ,1,2,116800 ,1,3,116790 ,1,4,116780 ,1,5,116770 ,1,6,116760 ,1,7,116750 ,2,14956,175195 ,2,822,16640 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,285525 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354295 ,1,3,65 ,2,14956,175205 ,2,822,16640 ,2,14975,607495 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,385995 ,2,829,45 ,2,14956,166935 ,2,822,16640 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382695 ,2,829,45 ,1,0,116870 ,1,1,116860 ,2,14956,166515 ,2,822,16640 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380370 ,2,829,45 ,2,14956,10665 ,2,822,16640 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386365 ,2,829,45 ,1,0,258650 ,1,1,258630 ,2,14956,175225 ,2,822,16640 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,285570 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,357085 ,1,5,357075 ,2,14956,175255 ,2,822,16640 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,285545 ,2,829,45 ,2,14956,175265 ,2,822,16640 ,2,14975,560385 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396945 ,2,829,45 ,1,0,268225 ,1,1,45 ,1,2,45 ,2,14956,166680 ,2,822,16640 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380555 ,2,829,45 ,1,0,45 ,1,1,27105 ,1,2,613640 ,2,14956,175955 ,2,822,16640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,66650 ,2,14979,361215 ,2,829,45 ,2,14956,171330 ,2,822,16640 ,2,14975,607555 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229245 ,2,14979,285580 ,2,829,45 ,1,0,116900 ,1,1,116890 ,2,14956,5700 ,2,822,16640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386000 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,117105 ,1,3,65 ,1,4,65 ,1,5,117095 ,1,6,117085 ,1,7,65 ,1,8,117075 ,1,9,117065 ,1,10,117055 ,1,11,117045 ,1,12,117030 ,1,13,117020 ,1,14,65 ,1,15,117010 ,1,16,65 ,1,17,65 ,1,18,117000 ,1,19,116980 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,116970 ,1,25,65 ,1,26,116960 ,1,27,116950 ,1,28,116655 ,1,29,116930 ,1,30,65 ,1,31,65 ,1,32,116920 ,1,33,65 ,2,14956,174925 ,2,822,16640 ,2,14975,560390 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385815 ,2,829,45 ,1,0,117055 ,2,14956,175285 ,2,822,16640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285535 ,2,829,45 ,1,0,117055 ,1,1,116950 ,1,2,117020 ,1,3,116930 ,1,4,116920 ,1,5,116655 ,1,6,117085 ,1,7,117010 ,1,8,117065 ,1,9,116960 ,1,10,117030 ,1,11,117075 ,1,12,116980 ,1,13,117000 ,1,14,117105 ,1,15,117045 ,1,16,117095 ,1,17,116970 ,2,14956,171330 ,2,822,16640 ,2,14975,607555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,66650 ,2,14979,360385 ,2,829,45 ,1,0,117115 ,2,14956,171035 ,2,822,16630 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,396795 ,2,829,45 ,2,14956,171045 ,2,822,16630 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396790 ,2,829,45 ,1,0,268235 ,1,1,45 ,1,2,45 ,2,14956,171100 ,2,822,16620 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416640 ,2,829,45 ,1,0,45 ,1,1,27130 ,1,2,613640 ,2,14956,175215 ,2,822,16640 ,2,14975,600035 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285460 ,2,829,45 ,1,0,571115 ,2,14956,167590 ,2,822,16675 ,2,14975,599885 ,2,14976,23450 ,2,14977,30185 ,2,14965,45 ,2,14978,45 ,2,14979,285600 ,2,829,45 ,2,14956,167535 ,2,822,16675 ,2,14975,560415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394530 ,2,829,45 ,1,0,268370 ,1,1,45 ,1,2,45 ,2,14956,167510 ,2,822,16710 ,2,14975,558990 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393885 ,2,829,45 ,1,0,45 ,1,1,28185 ,1,2,28175 ,1,3,45 ,1,4,28165 ,1,5,45 ,1,6,27150 ,1,7,28155 ,1,8,28140 ,1,9,45 ,1,10,27195 ,1,11,27185 ,1,12,27175 ,1,13,614390 ,2,14956,176130 ,2,822,16485 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285590 ,2,829,45 ,2,14956,179245 ,2,822,16485 ,2,14975,561335 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,285630 ,2,829,45 ,1,0,117195 ,1,1,117180 ,1,2,117170 ,1,3,117160 ,2,14956,3770 ,2,822,17035 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,66835 ,2,14979,285640 ,2,829,45 ,2,14956,3770 ,2,822,17035 ,2,14975,110 ,2,14976,30315 ,2,14977,23120 ,2,14965,45 ,2,14978,229255 ,2,14979,285650 ,2,829,45 ,2,14956,4490 ,2,822,16720 ,2,14975,110 ,2,14976,30355 ,2,14977,30345 ,2,14965,45 ,2,14978,249745 ,2,14979,2415 ,2,829,45 ,1,0,120955 ,1,1,120945 ,1,2,120900 ,1,3,120890 ,1,4,120880 ,1,5,120870 ,1,6,120855 ,1,7,120845 ,1,8,120835 ,1,9,120825 ,1,10,120775 ,1,11,120765 ,1,12,117255 ,1,13,117205 ,2,14956,4490 ,2,822,16720 ,2,14975,110 ,2,14976,30335 ,2,14977,30325 ,2,14965,45 ,2,14978,249755 ,2,14979,2415 ,2,829,45 ,1,0,117255 ,1,1,117205 ,2,14956,176155 ,2,822,49720 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285660 ,2,829,45 ,2,14956,176175 ,2,822,49730 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256105 ,2,14979,285680 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,117565 ,1,8,65 ,1,9,117545 ,1,10,117525 ,1,11,117515 ,1,12,65 ,1,13,65 ,1,14,117500 ,1,15,117490 ,1,16,117480 ,1,17,117425 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,117405 ,1,22,117395 ,1,23,117385 ,1,24,117375 ,1,25,117365 ,1,26,65 ,1,27,65 ,1,28,117325 ,1,29,117315 ,1,30,65 ,1,31,117305 ,1,32,65 ,1,33,65 ,2,14956,176220 ,2,822,16730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256125 ,2,14979,416130 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,226800 ,1,3,226790 ,1,4,226780 ,1,5,226770 ,1,6,226760 ,2,14956,176230 ,2,822,16730 ,2,14975,560450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256125 ,2,14979,416025 ,2,829,45 ,1,0,117315 ,1,1,117305 ,1,2,117375 ,1,3,117565 ,1,4,117395 ,1,5,117385 ,1,6,117500 ,1,7,117480 ,1,8,117545 ,1,9,117365 ,1,10,117405 ,1,11,117515 ,1,12,117525 ,1,13,117325 ,1,14,117490 ,1,15,117425 ,2,14956,177800 ,2,822,49825 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,285700 ,2,829,45 ,2,14956,177780 ,2,822,16950 ,2,14975,560460 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256160 ,2,14979,2415 ,2,829,45 ,1,0,117620 ,1,1,117595 ,1,2,117585 ,2,14956,176325 ,2,822,49750 ,2,14975,560460 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256160 ,2,14979,285710 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,356520 ,1,8,356510 ,1,9,356500 ,2,14956,176345 ,2,822,16740 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285750 ,2,829,45 ,2,14956,177715 ,2,822,16740 ,2,14975,560470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,117610 ,2,14956,176400 ,2,822,49770 ,2,14975,110 ,2,14976,30505 ,2,14977,23665 ,2,14965,45 ,2,14978,229265 ,2,14979,285770 ,2,829,45 ,2,14956,176380 ,2,822,49760 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285815 ,2,829,45 ,1,0,268350 ,1,1,45 ,1,2,45 ,2,14956,6550 ,2,822,16785 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370295 ,2,829,45 ,1,0,28055 ,1,1,28040 ,1,2,27950 ,1,3,27940 ,1,4,45 ,1,5,45 ,1,6,45 ,1,7,27235 ,1,8,27930 ,1,9,27280 ,1,10,27245 ,1,11,618550 ,2,14956,176670 ,2,822,49805 ,2,14975,560625 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256190 ,2,14979,285825 ,2,829,45 ,2,14956,176600 ,2,822,16820 ,2,14975,560525 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,285860 ,2,829,45 ,1,0,268255 ,1,1,45 ,1,2,45 ,2,14956,6550 ,2,822,16820 ,2,14975,607580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370315 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,27400 ,1,3,27340 ,1,4,27390 ,1,5,27370 ,1,6,27360 ,1,7,613975 ,2,14956,6550 ,2,822,16830 ,2,14975,607585 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370335 ,2,829,45 ,2,14956,176450 ,2,822,16840 ,2,14975,560560 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285870 ,2,829,45 ,1,0,117630 ,2,14956,175205 ,2,822,16830 ,2,14975,607590 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,381830 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,359360 ,1,4,359350 ,1,5,65 ,2,14956,176500 ,2,822,16830 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285880 ,2,829,45 ,2,14956,176220 ,2,822,16850 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256200 ,2,14979,394425 ,2,829,45 ,1,0,117640 ,2,14956,176470 ,2,822,16850 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256210 ,2,14979,380565 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,117665 ,2,14956,176230 ,2,822,16850 ,2,14975,560570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256200 ,2,14979,416080 ,2,829,45 ,1,0,117675 ,1,1,57795 ,2,14956,6245 ,2,822,16850 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256220 ,2,14979,388115 ,2,829,45 ,1,0,100 ,1,1,571305 ,2,14956,173945 ,2,822,16850 ,2,14975,607630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256210 ,2,14979,410365 ,2,829,45 ,1,0,117675 ,2,14956,175910 ,2,822,16850 ,2,14975,607635 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256235 ,2,14979,413590 ,2,829,45 ,2,14956,176510 ,2,822,16830 ,2,14975,560540 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285970 ,2,829,45 ,1,0,117720 ,1,1,117675 ,1,2,117710 ,1,3,117695 ,2,14956,166935 ,2,822,16830 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379490 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,117730 ,2,14956,166515 ,2,822,16830 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377500 ,2,829,45 ,1,0,117740 ,2,14956,10665 ,2,822,16830 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382720 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,571305 ,2,14956,175265 ,2,822,16830 ,2,14975,560580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393480 ,2,829,45 ,2,14956,174935 ,2,822,16830 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394830 ,2,829,45 ,1,0,117895 ,1,1,117740 ,1,2,117885 ,1,3,117875 ,1,4,117850 ,1,5,117840 ,1,6,117830 ,1,7,117820 ,1,8,117810 ,1,9,117800 ,1,10,117790 ,2,14956,166680 ,2,822,16830 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377625 ,2,829,45 ,2,14956,176520 ,2,822,16830 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,285910 ,2,829,45 ,1,0,559520 ,2,14956,6870 ,2,822,16830 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356065 ,2,829,45 ,1,0,117930 ,1,1,117920 ,1,2,117905 ,2,14956,5700 ,2,822,16830 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381835 ,2,829,45 ,2,14956,174925 ,2,822,16830 ,2,14975,560585 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381660 ,2,829,45 ,1,0,265820 ,1,1,268305 ,1,2,45 ,2,14956,176545 ,2,822,16830 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,285920 ,2,829,45 ,1,0,45 ,1,1,27290 ,1,2,27300 ,1,3,27915 ,1,4,27905 ,1,5,27470 ,1,6,45 ,1,7,45 ,1,8,27460 ,1,9,27420 ,1,10,614025 ,2,14956,171330 ,2,822,16830 ,2,14975,607640 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354105 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,359220 ,1,3,359210 ,1,4,65 ,1,5,65 ,2,14956,176555 ,2,822,16830 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285940 ,2,829,45 ,2,14956,171330 ,2,822,16820 ,2,14975,607645 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354075 ,2,829,45 ,1,0,117940 ,2,14956,175205 ,2,822,16820 ,2,14975,607565 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,381805 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,359205 ,1,6,359195 ,1,7,65 ,1,8,65 ,1,9,359145 ,2,14956,6870 ,2,822,16820 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356015 ,2,829,45 ,2,14956,174935 ,2,822,16820 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394795 ,2,829,45 ,1,0,117950 ,2,14956,6550 ,2,822,16865 ,2,14975,607650 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370325 ,2,829,45 ,2,14956,171330 ,2,822,16865 ,2,14975,607700 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354090 ,2,829,45 ,1,0,119495 ,1,1,119485 ,1,2,119475 ,1,3,118100 ,1,4,118055 ,1,5,118045 ,1,6,118035 ,1,7,118025 ,1,8,118005 ,1,9,117995 ,1,10,117975 ,2,14956,175205 ,2,822,16865 ,2,14975,607690 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,381810 ,2,829,45 ,1,0,67475 ,2,14956,6870 ,2,822,16865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356055 ,2,829,45 ,1,0,100 ,2,14956,174935 ,2,822,16865 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394825 ,2,829,45 ,1,0,3010 ,1,1,3825 ,1,2,5080 ,1,3,227515 ,2,14956,176610 ,2,822,16865 ,2,14975,560590 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359295 ,2,14956,176630 ,2,822,49780 ,2,14975,560560 ,2,14976,24020 ,2,14977,26330 ,2,14965,45 ,2,14978,45 ,2,14979,285850 ,2,829,45 ,2,14956,176690 ,2,822,16785 ,2,14975,607715 ,2,14976,23450 ,2,14977,23360 ,2,14965,545435 ,2,14978,45 ,2,14979,396215 ,2,829,45 ,1,0,268265 ,1,1,45 ,1,2,45 ,2,14956,176700 ,2,822,16785 ,2,14975,560510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396715 ,2,829,45 ,1,0,27525 ,1,1,45 ,1,2,27480 ,1,3,45 ,1,4,27515 ,1,5,27505 ,1,6,614045 ,2,14956,176710 ,2,822,16785 ,2,14975,560510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395640 ,2,829,45 ,2,14956,176740 ,2,822,16785 ,2,14975,560465 ,2,14976,23450 ,2,14977,30860 ,2,14965,45 ,2,14978,45 ,2,14979,396055 ,2,829,45 ,2,14956,176785 ,2,822,16785 ,2,14975,560630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,118225 ,1,1,118215 ,1,2,118205 ,1,3,118170 ,1,4,118245 ,1,5,118160 ,1,6,118150 ,1,7,118140 ,1,8,118130 ,1,9,118120 ,2,14956,4490 ,2,822,16740 ,2,14975,110 ,2,14976,30880 ,2,14977,30870 ,2,14965,45 ,2,14978,249765 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,227640 ,1,2,210905 ,1,3,227630 ,1,4,227620 ,2,14956,177105 ,2,822,16785 ,2,14975,560640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359275 ,2,14956,4490 ,2,822,16740 ,2,14975,560665 ,2,14976,30900 ,2,14977,30890 ,2,14965,45 ,2,14978,249780 ,2,14979,2415 ,2,829,45 ,2,14956,4490 ,2,822,16740 ,2,14975,110 ,2,14976,30920 ,2,14977,30910 ,2,14965,45 ,2,14978,249790 ,2,14979,2415 ,2,829,45 ,1,0,118235 ,2,14956,176795 ,2,822,16875 ,2,14975,560655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,30960 ,2,14979,286000 ,2,829,45 ,2,14956,4685 ,2,822,16875 ,2,14975,560655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381450 ,2,829,45 ,2,14956,166650 ,2,822,16875 ,2,14975,560655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,30970 ,2,14979,286010 ,2,829,45 ,1,0,268275 ,1,1,45 ,1,2,45 ,2,14956,8315 ,2,822,16875 ,2,14975,560655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374645 ,2,829,45 ,1,0,27595 ,1,1,27535 ,1,2,27585 ,1,3,45 ,1,4,45 ,1,5,27575 ,1,6,614045 ,2,14956,176805 ,2,822,16875 ,2,14975,560655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,30995 ,2,14979,286040 ,2,829,45 ,2,14956,5060 ,2,822,16875 ,2,14975,560655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373735 ,2,829,45 ,1,0,118330 ,1,1,118320 ,1,2,118310 ,1,3,118300 ,1,4,118275 ,1,5,118265 ,2,14956,169970 ,2,822,16875 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375115 ,2,829,45 ,1,0,3010 ,1,1,227760 ,1,2,10825 ,1,3,227750 ,2,14956,10815 ,2,822,16875 ,2,14975,560655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286050 ,2,829,45 ,1,0,3010 ,1,1,227760 ,1,2,227795 ,2,14956,8170 ,2,822,16875 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395760 ,2,829,45 ,1,0,3010 ,1,1,227760 ,2,14956,176825 ,2,822,16875 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,13210 ,2,822,16875 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395170 ,2,829,45 ,1,0,100 ,1,1,571455 ,2,14956,6450 ,2,822,16875 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,6245 ,2,822,16875 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388030 ,2,829,45 ,2,14956,176835 ,2,822,16875 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,176845 ,2,822,16875 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,119465 ,1,1,119435 ,1,2,119425 ,1,3,119415 ,1,4,119405 ,1,5,119390 ,1,6,119380 ,1,7,119370 ,1,8,118255 ,1,9,118370 ,1,10,118360 ,1,11,118350 ,2,14956,2855 ,2,822,16875 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389870 ,2,829,45 ,1,0,118420 ,2,14956,176855 ,2,822,16875 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,176885 ,2,822,16875 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,268295 ,1,1,45 ,1,2,45 ,2,14956,176965 ,2,822,16875 ,2,14975,560655 ,2,14976,25600 ,2,14977,31070 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,27695 ,1,3,27685 ,1,4,27675 ,1,5,45 ,1,6,27645 ,1,7,27615 ,1,8,27635 ,1,9,614020 ,2,14956,177030 ,2,822,49815 ,2,14975,560665 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286060 ,2,829,45 ,2,14956,177045 ,2,822,49815 ,2,14975,560665 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286070 ,2,829,45 ,1,0,118440 ,1,1,118430 ,2,14956,177055 ,2,822,16885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286085 ,2,829,45 ,2,14956,177065 ,2,822,16885 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,286105 ,2,829,45 ,1,0,118470 ,1,1,118450 ,2,14956,177075 ,2,822,16885 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,286095 ,2,829,45 ,2,14956,177115 ,2,822,16785 ,2,14975,560425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396075 ,2,829,45 ,1,0,118480 ,2,14956,177055 ,2,822,16785 ,2,14975,607720 ,2,14976,23130 ,2,14977,23120 ,2,14965,545455 ,2,14978,45 ,2,14979,393725 ,2,829,45 ,2,14956,177150 ,2,822,16785 ,2,14975,560690 ,2,14976,23130 ,2,14977,23120 ,2,14965,545480 ,2,14978,45 ,2,14979,416555 ,2,829,45 ,1,0,118490 ,2,14956,4490 ,2,822,16785 ,2,14975,607760 ,2,14976,31140 ,2,14977,31130 ,2,14965,45 ,2,14978,249800 ,2,14979,2415 ,2,829,45 ,2,14956,177715 ,2,822,16785 ,2,14975,560470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396705 ,2,829,45 ,1,0,268285 ,1,1,45 ,1,2,45 ,2,14956,177160 ,2,822,16785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,396140 ,2,829,45 ,1,0,27895 ,1,1,27885 ,1,2,27705 ,1,3,27850 ,1,4,27840 ,1,5,27830 ,1,6,45 ,1,7,45 ,1,8,45 ,1,9,27820 ,1,10,27725 ,1,11,618550 ,2,14956,177170 ,2,822,16785 ,2,14975,560695 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,4490 ,2,822,16740 ,2,14975,560665 ,2,14976,31185 ,2,14977,31150 ,2,14965,45 ,2,14978,249810 ,2,14979,2415 ,2,829,45 ,1,0,118515 ,1,1,118500 ,2,14956,4490 ,2,822,16740 ,2,14975,110 ,2,14976,31205 ,2,14977,31195 ,2,14965,45 ,2,14978,249850 ,2,14979,2415 ,2,829,45 ,1,0,571625 ,2,14956,177200 ,2,822,16785 ,2,14975,560705 ,2,14976,23130 ,2,14977,23120 ,2,14965,545490 ,2,14978,45 ,2,14979,395475 ,2,829,45 ,1,0,567805 ,1,1,571635 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,31225 ,2,14977,31215 ,2,14965,45 ,2,14978,249860 ,2,14979,2415 ,2,829,45 ,2,14956,177210 ,2,822,16785 ,2,14975,560710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,118780 ,1,1,118765 ,1,2,118755 ,1,3,118745 ,1,4,118735 ,1,5,118695 ,1,6,118685 ,1,7,118675 ,1,8,118665 ,1,9,118655 ,1,10,118635 ,1,11,118595 ,1,12,118575 ,1,13,118545 ,1,14,118525 ,2,14956,177270 ,2,822,16785 ,2,14975,560715 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,571645 ,2,14956,4490 ,2,822,16740 ,2,14975,560725 ,2,14976,31245 ,2,14977,31235 ,2,14965,45 ,2,14978,249870 ,2,14979,2415 ,2,829,45 ,2,14956,2855 ,2,822,16895 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390055 ,2,829,45 ,1,0,118910 ,1,1,118900 ,1,2,118890 ,1,3,118880 ,1,4,118870 ,1,5,118860 ,1,6,118850 ,1,7,118840 ,1,8,118810 ,1,9,118790 ,2,14956,177220 ,2,822,16895 ,2,14975,558090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286145 ,2,829,45 ,1,0,118790 ,2,14956,177230 ,2,822,16895 ,2,14975,560750 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,286155 ,2,829,45 ,2,14956,167205 ,2,822,16895 ,2,14975,558090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256245 ,2,14979,415950 ,2,829,45 ,1,0,118930 ,2,14956,177280 ,2,822,16785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,545510 ,2,14978,45 ,2,14979,396670 ,2,829,45 ,1,0,118910 ,1,1,118780 ,1,2,118960 ,1,3,118950 ,1,4,118940 ,1,5,103320 ,1,6,118880 ,2,14956,177460 ,2,822,16785 ,2,14975,560755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,228275 ,1,2,228260 ,1,3,209800 ,2,14956,4490 ,2,822,16740 ,2,14975,560465 ,2,14976,31310 ,2,14977,31300 ,2,14965,45 ,2,14978,249880 ,2,14979,2415 ,2,829,45 ,2,14956,177440 ,2,822,16920 ,2,14975,560770 ,2,14976,31400 ,2,14977,31370 ,2,14965,45 ,2,14978,45 ,2,14979,286165 ,2,829,45 ,1,0,119005 ,1,1,118995 ,1,2,118985 ,1,3,118975 ,2,14956,177380 ,2,822,16785 ,2,14975,560780 ,2,14976,23130 ,2,14977,23120 ,2,14965,545550 ,2,14978,45 ,2,14979,416455 ,2,829,45 ,2,14956,4490 ,2,822,16785 ,2,14975,607775 ,2,14976,31420 ,2,14977,31410 ,2,14965,45 ,2,14978,249895 ,2,14979,2415 ,2,829,45 ,1,0,119065 ,1,1,119055 ,2,14956,177470 ,2,822,16785 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,545555 ,2,14978,45 ,2,14979,395675 ,2,829,45 ,2,14956,177485 ,2,822,16785 ,2,14975,560465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416410 ,2,829,45 ,1,0,119085 ,1,1,119075 ,2,14956,177325 ,2,822,16785 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395720 ,2,829,45 ,2,14956,177345 ,2,822,16785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396680 ,2,829,45 ,1,0,119180 ,1,1,119170 ,1,2,119160 ,1,3,119130 ,1,4,119120 ,1,5,119100 ,2,14956,177370 ,2,822,16785 ,2,14975,560785 ,2,14976,23130 ,2,14977,23120 ,2,14965,545560 ,2,14978,45 ,2,14979,416565 ,2,829,45 ,2,14956,4490 ,2,822,16785 ,2,14975,607795 ,2,14976,31440 ,2,14977,31430 ,2,14965,45 ,2,14978,249905 ,2,14979,2415 ,2,829,45 ,1,0,119210 ,1,1,119200 ,1,2,119190 ,2,14956,177495 ,2,822,16785 ,2,14975,560820 ,2,14976,23130 ,2,14977,23120 ,2,14965,545565 ,2,14978,45 ,2,14979,395960 ,2,829,45 ,2,14956,4490 ,2,822,16785 ,2,14975,607815 ,2,14976,31460 ,2,14977,31450 ,2,14965,45 ,2,14978,249915 ,2,14979,2415 ,2,829,45 ,1,0,119260 ,1,1,119250 ,1,2,119230 ,1,3,119220 ,2,14956,10540 ,2,822,16785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395410 ,2,829,45 ,2,14956,177360 ,2,822,16785 ,2,14975,560725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,416560 ,2,829,45 ,1,0,119270 ,2,14956,177505 ,2,822,16785 ,2,14975,560625 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256190 ,2,14979,2415 ,2,829,45 ,2,14956,177390 ,2,822,16785 ,2,14975,607830 ,2,14976,24020 ,2,14977,24010 ,2,14965,545570 ,2,14978,45 ,2,14979,395665 ,2,829,45 ,1,0,119295 ,1,1,119280 ,2,14956,177335 ,2,822,16785 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395710 ,2,829,45 ,2,14956,177515 ,2,822,16785 ,2,14975,560825 ,2,14976,23130 ,2,14977,23120 ,2,14965,545575 ,2,14978,45 ,2,14979,395490 ,2,829,45 ,1,0,119360 ,1,1,119325 ,1,2,119315 ,1,3,118420 ,1,4,119305 ,2,14956,4490 ,2,822,16785 ,2,14975,607845 ,2,14976,31510 ,2,14977,31470 ,2,14965,45 ,2,14978,249925 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,227640 ,2,14956,177530 ,2,822,16785 ,2,14975,560830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396000 ,2,829,45 ,1,0,119390 ,1,1,118205 ,2,14956,4490 ,2,822,16740 ,2,14975,110 ,2,14976,31530 ,2,14977,31520 ,2,14965,45 ,2,14978,249970 ,2,14979,2415 ,2,829,45 ,1,0,97595 ,1,1,97585 ,1,2,119510 ,2,14956,4490 ,2,822,16740 ,2,14975,110 ,2,14976,31560 ,2,14977,31540 ,2,14965,45 ,2,14978,249980 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,228710 ,1,2,227640 ,1,3,228700 ,1,4,227630 ,1,5,227620 ,2,14956,177540 ,2,822,16785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396650 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,119570 ,1,3,166650 ,1,4,45 ,1,5,119530 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,31590 ,2,14977,31580 ,2,14965,45 ,2,14978,249990 ,2,14979,2415 ,2,829,45 ,1,0,119540 ,2,14956,177560 ,2,822,49770 ,2,14975,110 ,2,14976,31610 ,2,14977,24110 ,2,14965,45 ,2,14978,229275 ,2,14979,286200 ,2,829,45 ,1,0,119580 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,31630 ,2,14977,31620 ,2,14965,45 ,2,14978,250000 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359135 ,2,14956,177655 ,2,822,49770 ,2,14975,560465 ,2,14976,31845 ,2,14977,23665 ,2,14965,45 ,2,14978,229290 ,2,14979,286220 ,2,829,45 ,2,14956,177610 ,2,822,16940 ,2,14975,560890 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,286250 ,2,829,45 ,1,0,119600 ,1,1,119540 ,1,2,119580 ,1,3,119590 ,2,14956,6550 ,2,822,16940 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370285 ,2,829,45 ,2,14956,176690 ,2,822,16940 ,2,14975,607855 ,2,14976,23450 ,2,14977,23360 ,2,14965,545615 ,2,14978,45 ,2,14979,396210 ,2,829,45 ,1,0,119520 ,1,1,119710 ,1,2,119700 ,1,3,119690 ,1,4,119680 ,1,5,119640 ,1,6,119630 ,1,7,119620 ,1,8,119610 ,2,14956,176700 ,2,822,16940 ,2,14975,560510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396710 ,2,829,45 ,2,14956,176740 ,2,822,16940 ,2,14975,560465 ,2,14976,23450 ,2,14977,30860 ,2,14965,45 ,2,14978,45 ,2,14979,396035 ,2,829,45 ,1,0,119510 ,1,1,119790 ,1,2,119750 ,1,3,119740 ,1,4,119730 ,1,5,119720 ,1,6,118110 ,2,14956,176710 ,2,822,16940 ,2,14975,560510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395615 ,2,829,45 ,2,14956,177115 ,2,822,16940 ,2,14975,560425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396070 ,2,829,45 ,1,0,119810 ,1,1,119800 ,2,14956,177150 ,2,822,16940 ,2,14975,560895 ,2,14976,23130 ,2,14977,23120 ,2,14965,545620 ,2,14978,45 ,2,14979,396595 ,2,829,45 ,2,14956,4490 ,2,822,16940 ,2,14975,607895 ,2,14976,31690 ,2,14977,31680 ,2,14965,45 ,2,14978,250015 ,2,14979,2415 ,2,829,45 ,2,14956,177160 ,2,822,16940 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,396130 ,2,829,45 ,1,0,119835 ,1,1,119820 ,2,14956,177715 ,2,822,16940 ,2,14975,560470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256255 ,2,14979,416570 ,2,829,45 ,2,14956,177055 ,2,822,16940 ,2,14975,607900 ,2,14976,23130 ,2,14977,23120 ,2,14965,545625 ,2,14978,45 ,2,14979,393670 ,2,829,45 ,1,0,120070 ,1,1,120060 ,1,2,120050 ,1,3,119885 ,1,4,119865 ,1,5,119855 ,1,6,119845 ,2,14956,177200 ,2,822,16940 ,2,14975,560900 ,2,14976,23130 ,2,14977,23120 ,2,14965,545630 ,2,14978,45 ,2,14979,395470 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,209800 ,1,3,227845 ,1,4,229410 ,1,5,226800 ,1,6,229400 ,1,7,229385 ,1,8,229375 ,1,9,229365 ,1,10,229355 ,1,11,229325 ,1,12,226790 ,1,13,229315 ,1,14,229305 ,1,15,229295 ,1,16,229280 ,1,17,229270 ,1,18,229260 ,1,19,229250 ,1,20,229235 ,1,21,229225 ,1,22,229215 ,1,23,229205 ,1,24,226770 ,1,25,229190 ,1,26,229180 ,1,27,229170 ,1,28,229160 ,1,29,226780 ,1,30,229135 ,1,31,229125 ,1,32,229115 ,1,33,229105 ,1,34,229090 ,1,35,229080 ,1,36,229070 ,1,37,229060 ,1,38,229035 ,1,39,229025 ,1,40,229015 ,1,41,229005 ,1,42,228990 ,1,43,228980 ,1,44,226975 ,1,45,228970 ,1,46,228960 ,2,14956,4490 ,2,822,16940 ,2,14975,110 ,2,14976,31725 ,2,14977,31715 ,2,14965,45 ,2,14978,250025 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,1,40,100 ,1,41,100 ,1,42,100 ,1,43,100 ,1,44,100 ,1,45,100 ,1,46,100 ,2,14956,177280 ,2,822,16940 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,545635 ,2,14978,45 ,2,14979,396665 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,177380 ,2,822,16940 ,2,14975,560915 ,2,14976,23130 ,2,14977,23120 ,2,14965,545640 ,2,14978,45 ,2,14979,396090 ,2,829,45 ,1,0,100 ,1,1,571840 ,2,14956,4490 ,2,822,16940 ,2,14975,607915 ,2,14976,31745 ,2,14977,31735 ,2,14965,45 ,2,14978,250035 ,2,14979,2415 ,2,829,45 ,2,14956,177470 ,2,822,16940 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,545645 ,2,14978,45 ,2,14979,395670 ,2,829,45 ,1,0,268315 ,1,1,45 ,1,2,45 ,2,14956,177485 ,2,822,16940 ,2,14975,560465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395945 ,2,829,45 ,1,0,45 ,1,1,28030 ,1,2,27960 ,1,3,28020 ,1,4,45 ,1,5,616170 ,2,14956,177325 ,2,822,16940 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395715 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,359340 ,1,3,65 ,1,4,65 ,1,5,359330 ,1,6,359320 ,1,7,359310 ,1,8,65 ,1,9,359300 ,2,14956,177345 ,2,822,16940 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396675 ,2,829,45 ,2,14956,177370 ,2,822,16940 ,2,14975,560920 ,2,14976,23130 ,2,14977,23120 ,2,14965,545670 ,2,14978,45 ,2,14979,396685 ,2,829,45 ,1,0,119905 ,2,14956,4490 ,2,822,16940 ,2,14975,607960 ,2,14976,31765 ,2,14977,31755 ,2,14965,45 ,2,14978,250045 ,2,14979,2415 ,2,829,45 ,2,14956,177495 ,2,822,16940 ,2,14975,560925 ,2,14976,23130 ,2,14977,23120 ,2,14965,545675 ,2,14978,45 ,2,14979,395955 ,2,829,45 ,2,14956,4490 ,2,822,16940 ,2,14975,607965 ,2,14976,31785 ,2,14977,31775 ,2,14965,45 ,2,14978,250080 ,2,14979,2415 ,2,829,45 ,1,0,120040 ,1,1,120030 ,1,2,120020 ,1,3,120010 ,1,4,120000 ,1,5,119960 ,1,6,119940 ,1,7,119915 ,2,14956,177360 ,2,822,16940 ,2,14975,560725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,396655 ,2,829,45 ,1,0,100 ,1,1,599940 ,1,2,599940 ,1,3,599940 ,2,14956,10540 ,2,822,16940 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395405 ,2,829,45 ,1,0,3010 ,1,1,227640 ,1,2,229600 ,1,3,229590 ,1,4,229580 ,1,5,227620 ,2,14956,177390 ,2,822,16940 ,2,14975,607980 ,2,14976,24020 ,2,14977,24010 ,2,14965,545680 ,2,14978,45 ,2,14979,395655 ,2,829,45 ,2,14956,177335 ,2,822,16940 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395705 ,2,829,45 ,1,0,120100 ,2,14956,177515 ,2,822,16940 ,2,14975,560930 ,2,14976,23130 ,2,14977,23120 ,2,14965,545685 ,2,14978,45 ,2,14979,395485 ,2,829,45 ,2,14956,4490 ,2,822,16940 ,2,14975,608015 ,2,14976,31815 ,2,14977,31805 ,2,14965,45 ,2,14978,250090 ,2,14979,2415 ,2,829,45 ,1,0,120545 ,1,1,120535 ,1,2,120525 ,1,3,120515 ,1,4,120110 ,2,14956,177530 ,2,822,16940 ,2,14975,560830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256265 ,2,14979,416415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,177540 ,2,822,16940 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396625 ,2,829,45 ,1,0,100 ,1,1,570630 ,2,14956,4490 ,2,822,16785 ,2,14975,560860 ,2,14976,31865 ,2,14977,31855 ,2,14965,45 ,2,14978,250100 ,2,14979,2415 ,2,829,45 ,2,14956,177665 ,2,822,49770 ,2,14975,560665 ,2,14976,31875 ,2,14977,23665 ,2,14965,45 ,2,14978,229300 ,2,14979,286280 ,2,829,45 ,1,0,268325 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,16785 ,2,14975,560985 ,2,14976,31935 ,2,14977,31925 ,2,14965,45 ,2,14978,250110 ,2,14979,2415 ,2,829,45 ,1,0,28130 ,1,1,28120 ,1,2,28110 ,1,3,28085 ,1,4,28065 ,1,5,45 ,1,6,45 ,1,7,613975 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,31955 ,2,14977,31945 ,2,14965,45 ,2,14978,250125 ,2,14979,2415 ,2,829,45 ,2,14956,177675 ,2,822,49770 ,2,14975,560665 ,2,14976,31970 ,2,14977,23665 ,2,14965,45 ,2,14978,229310 ,2,14979,286305 ,2,829,45 ,1,0,120160 ,1,1,120150 ,1,2,120140 ,1,3,120130 ,2,14956,4490 ,2,822,16720 ,2,14975,110 ,2,14976,31990 ,2,14977,31980 ,2,14965,45 ,2,14978,250135 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,227640 ,1,2,227620 ,2,14956,4490 ,2,822,16785 ,2,14975,560985 ,2,14976,32030 ,2,14977,32000 ,2,14965,45 ,2,14978,250145 ,2,14979,2415 ,2,829,45 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,32050 ,2,14977,32040 ,2,14965,45 ,2,14978,250155 ,2,14979,2415 ,2,829,45 ,1,0,120205 ,1,1,120170 ,2,14956,177685 ,2,822,49770 ,2,14975,110 ,2,14976,32060 ,2,14977,24110 ,2,14965,45 ,2,14978,229320 ,2,14979,286325 ,2,829,45 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,32080 ,2,14977,32070 ,2,14965,45 ,2,14978,250190 ,2,14979,2415 ,2,829,45 ,1,0,120245 ,1,1,120235 ,1,2,120225 ,1,3,120215 ,2,14956,177695 ,2,822,49770 ,2,14975,560725 ,2,14976,32090 ,2,14977,23665 ,2,14965,45 ,2,14978,229350 ,2,14979,286375 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,359260 ,1,4,65 ,1,5,65 ,1,6,359250 ,1,7,359240 ,1,8,65 ,1,9,65 ,2,14956,4490 ,2,822,16785 ,2,14975,561050 ,2,14976,32115 ,2,14977,32100 ,2,14965,45 ,2,14978,250200 ,2,14979,2415 ,2,829,45 ,2,14956,4490 ,2,822,16740 ,2,14975,110 ,2,14976,32145 ,2,14977,32135 ,2,14965,45 ,2,14978,250210 ,2,14979,2415 ,2,829,45 ,1,0,120255 ,2,14956,177460 ,2,822,16740 ,2,14975,560755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,176785 ,2,822,16740 ,2,14975,560630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,120495 ,1,6,120485 ,1,7,65 ,1,8,120475 ,1,9,120465 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,120455 ,1,18,120445 ,1,19,120435 ,1,20,120425 ,1,21,120390 ,1,22,120380 ,1,23,120370 ,1,24,120360 ,1,25,120345 ,1,26,120325 ,1,27,65 ,1,28,120315 ,1,29,120275 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,120265 ,2,14956,177170 ,2,822,16740 ,2,14975,560695 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,227640 ,1,2,227620 ,1,3,228960 ,2,14956,177105 ,2,822,16740 ,2,14975,560640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,229965 ,1,2,229955 ,2,14956,177530 ,2,822,16740 ,2,14975,560830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,230060 ,1,2,230035 ,1,3,230025 ,1,4,230015 ,1,5,208595 ,2,14956,177270 ,2,822,16740 ,2,14975,560715 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,66360 ,1,1,120170 ,2,14956,177760 ,2,822,16950 ,2,14975,560460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286385 ,2,829,45 ,1,0,120455 ,1,1,120435 ,1,2,120380 ,1,3,120345 ,1,4,120445 ,1,5,120325 ,1,6,120265 ,1,7,120315 ,1,8,120495 ,1,9,120425 ,1,10,120275 ,1,11,120370 ,1,12,120475 ,1,13,120485 ,1,14,120390 ,1,15,120465 ,1,16,120360 ,2,14956,168920 ,2,822,16950 ,2,14975,560465 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,177820 ,2,822,49835 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286395 ,2,829,45 ,1,0,120700 ,1,1,120675 ,1,2,120665 ,1,3,117575 ,1,4,120655 ,1,5,120645 ,1,6,120635 ,1,7,120625 ,1,8,120615 ,1,9,120605 ,1,10,120575 ,1,11,120555 ,2,14956,177870 ,2,822,49850 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,69300 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,571800 ,2,14956,177870 ,2,822,49850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229360 ,2,14979,286415 ,2,829,45 ,1,0,119790 ,2,14956,177880 ,2,822,49770 ,2,14975,608020 ,2,14976,24020 ,2,14977,24010 ,2,14965,545760 ,2,14978,69320 ,2,14979,286425 ,2,829,45 ,1,0,100 ,1,1,566535 ,2,14956,177880 ,2,822,49770 ,2,14975,608020 ,2,14976,32230 ,2,14977,24110 ,2,14965,545760 ,2,14978,229370 ,2,14979,286435 ,2,829,45 ,1,0,117150 ,1,1,117115 ,1,2,60470 ,1,3,60460 ,1,4,60020 ,1,5,59965 ,1,6,59935 ,2,14956,4490 ,2,822,16720 ,2,14975,608020 ,2,14976,32255 ,2,14977,32240 ,2,14965,45 ,2,14978,250220 ,2,14979,2415 ,2,829,45 ,2,14956,177890 ,2,822,49770 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,69350 ,2,14979,286445 ,2,829,45 ,1,0,121115 ,1,1,121105 ,1,2,121095 ,1,3,121085 ,1,4,121070 ,1,5,121060 ,1,6,121050 ,1,7,121040 ,1,8,121020 ,1,9,121010 ,1,10,120990 ,1,11,120965 ,2,14956,177890 ,2,822,49770 ,2,14975,110 ,2,14976,25480 ,2,14977,23120 ,2,14965,45 ,2,14978,229380 ,2,14979,286480 ,2,829,45 ,2,14956,177665 ,2,822,49770 ,2,14975,560665 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,69010 ,2,14979,286295 ,2,829,45 ,1,0,121255 ,1,1,121220 ,1,2,121210 ,1,3,121200 ,1,4,121190 ,1,5,121180 ,1,6,121170 ,1,7,121160 ,1,8,121150 ,2,14956,177675 ,2,822,49770 ,2,14975,560665 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,69040 ,2,14979,286315 ,2,829,45 ,1,0,571950 ,2,14956,177900 ,2,822,49770 ,2,14975,608025 ,2,14976,23450 ,2,14977,23360 ,2,14965,545765 ,2,14978,45 ,2,14979,286490 ,2,829,45 ,1,0,121305 ,1,1,121295 ,1,2,121285 ,1,3,121275 ,1,4,121265 ,2,14956,177685 ,2,822,49770 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,69105 ,2,14979,286365 ,2,829,45 ,2,14956,177915 ,2,822,49770 ,2,14975,561085 ,2,14976,24020 ,2,14977,24010 ,2,14965,545770 ,2,14978,69435 ,2,14979,2415 ,2,829,45 ,1,0,121420 ,1,1,121410 ,1,2,121400 ,1,3,121390 ,1,4,121380 ,1,5,121370 ,1,6,121360 ,1,7,121325 ,1,8,121315 ,2,14956,177915 ,2,822,49770 ,2,14975,561085 ,2,14976,32265 ,2,14977,24110 ,2,14965,545770 ,2,14978,229395 ,2,14979,286500 ,2,829,45 ,1,0,571965 ,2,14956,4490 ,2,822,16720 ,2,14975,608045 ,2,14976,32285 ,2,14977,32275 ,2,14965,45 ,2,14978,250230 ,2,14979,2415 ,2,829,45 ,2,14956,177935 ,2,822,49860 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286510 ,2,829,45 ,1,0,268360 ,1,1,45 ,1,2,45 ,2,14956,177980 ,2,822,49835 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,32350 ,2,14979,286520 ,2,829,45 ,1,0,45 ,1,1,28225 ,1,2,613640 ,2,14956,177560 ,2,822,49770 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,68530 ,2,14979,286210 ,2,829,45 ,2,14956,177990 ,2,822,49740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285795 ,2,829,45 ,1,0,121575 ,1,1,121540 ,1,2,121530 ,1,3,121520 ,1,4,121510 ,1,5,121490 ,1,6,121480 ,1,7,121470 ,1,8,121460 ,1,9,121430 ,2,14956,178000 ,2,822,49740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,285805 ,2,829,45 ,1,0,117150 ,1,1,117115 ,2,14956,177655 ,2,822,49770 ,2,14975,560465 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,68565 ,2,14979,286230 ,2,829,45 ,1,0,67725 ,1,1,72090 ,2,14956,178010 ,2,822,49835 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286530 ,2,829,45 ,2,14956,178025 ,2,822,49740 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,286550 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,141120 ,1,4,65 ,1,5,121900 ,1,6,121875 ,1,7,65 ,1,8,121700 ,1,9,121690 ,1,10,65 ,1,11,117150 ,1,12,121645 ,1,13,121635 ,1,14,121625 ,1,15,117225 ,1,16,141225 ,1,17,121615 ,1,18,65 ,1,19,121595 ,1,20,65 ,1,21,65 ,1,22,117245 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,120755 ,1,29,141195 ,1,30,121585 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,178035 ,2,822,49850 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,69575 ,2,14979,286600 ,2,829,45 ,1,0,121575 ,2,14956,178035 ,2,822,49850 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,229405 ,2,14979,286610 ,2,829,45 ,2,14956,178045 ,2,822,49770 ,2,14975,608055 ,2,14976,24120 ,2,14977,24110 ,2,14965,545775 ,2,14978,69595 ,2,14979,286620 ,2,829,45 ,1,0,121815 ,1,1,121720 ,1,2,121805 ,1,3,121795 ,1,4,121765 ,1,5,121755 ,1,6,121735 ,2,14956,178045 ,2,822,49770 ,2,14975,608055 ,2,14976,32390 ,2,14977,23665 ,2,14965,545775 ,2,14978,229415 ,2,14979,286630 ,2,829,45 ,1,0,3010 ,1,1,230835 ,1,2,230825 ,1,3,209800 ,2,14956,4490 ,2,822,16720 ,2,14975,608055 ,2,14976,32430 ,2,14977,32400 ,2,14965,45 ,2,14978,250240 ,2,14979,2415 ,2,829,45 ,1,0,84345 ,1,1,84470 ,1,2,84765 ,1,3,121855 ,2,14956,178800 ,2,822,49835 ,2,14975,561220 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,286645 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,226145 ,1,3,230950 ,1,4,230940 ,1,5,223765 ,1,6,215195 ,2,14956,178715 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286675 ,2,829,45 ,1,0,121700 ,1,1,117150 ,1,2,120755 ,1,3,121875 ,1,4,121635 ,1,5,141195 ,1,6,121625 ,1,7,117225 ,1,8,117245 ,1,9,141120 ,1,10,141225 ,1,11,121900 ,1,12,121585 ,1,13,121615 ,1,14,121690 ,1,15,121645 ,1,16,121595 ,2,14956,178115 ,2,822,16960 ,2,14975,561095 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,286705 ,2,829,45 ,1,0,139650 ,1,1,121910 ,1,2,117150 ,2,14956,12355 ,2,822,16960 ,2,14975,561105 ,2,14976,23450 ,2,14977,32470 ,2,14965,545795 ,2,14978,45 ,2,14979,396380 ,2,829,45 ,1,0,3010 ,1,1,231065 ,1,2,231055 ,1,3,231045 ,1,4,231030 ,1,5,225170 ,1,6,231020 ,2,14956,178125 ,2,822,16960 ,2,14975,561110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,178135 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286735 ,2,829,45 ,1,0,121955 ,1,1,121945 ,1,2,121930 ,1,3,121920 ,2,14956,178150 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286830 ,2,829,45 ,2,14956,178160 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256295 ,2,14979,286840 ,2,829,45 ,1,0,268380 ,1,1,45 ,1,2,45 ,2,14956,178170 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286850 ,2,829,45 ,1,0,28280 ,1,1,45 ,1,2,28270 ,1,3,614705 ,2,14956,178180 ,2,822,16960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286725 ,2,829,45 ,2,14956,178230 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286775 ,2,829,45 ,1,0,121965 ,2,14956,178240 ,2,822,16960 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,69795 ,2,14979,395350 ,2,829,45 ,2,14956,178240 ,2,822,16960 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,229425 ,2,14979,286910 ,2,829,45 ,1,0,269345 ,1,1,45 ,1,2,45 ,2,14956,178250 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286920 ,2,829,45 ,1,0,258915 ,2,14956,10760 ,2,822,16960 ,2,14975,561100 ,2,14976,23450 ,2,14977,32540 ,2,14965,45 ,2,14978,45 ,2,14979,396370 ,2,829,45 ,2,14956,178260 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286745 ,2,829,45 ,1,0,122140 ,1,1,122130 ,1,2,122120 ,1,3,122105 ,1,4,122040 ,1,5,122030 ,1,6,122020 ,2,14956,178275 ,2,822,16960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286930 ,2,829,45 ,1,0,141510 ,1,1,59500 ,2,14956,178285 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286765 ,2,829,45 ,1,0,122130 ,1,1,141510 ,1,2,71140 ,2,14956,178295 ,2,822,16960 ,2,14975,561100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396375 ,2,829,45 ,1,0,3010 ,1,1,210905 ,1,2,198280 ,2,14956,178305 ,2,822,16960 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,286940 ,2,829,45 ,1,0,141510 ,2,14956,178350 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287120 ,2,829,45 ,1,0,3010 ,1,1,231275 ,1,2,210905 ,1,3,198280 ,2,14956,178360 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286900 ,2,829,45 ,1,0,3010 ,1,1,231305 ,1,2,231295 ,1,3,231020 ,2,14956,178370 ,2,822,16960 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,69795 ,2,14979,395480 ,2,829,45 ,1,0,122140 ,2,14956,178380 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286860 ,2,829,45 ,1,0,122150 ,2,14956,178395 ,2,822,16960 ,2,14975,560750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286810 ,2,829,45 ,1,0,45 ,1,1,122150 ,1,2,45 ,1,3,45 ,1,4,45 ,1,5,33215 ,1,6,28255 ,1,7,33225 ,1,8,33205 ,1,9,28360 ,1,10,28340 ,1,11,258915 ,1,12,28350 ,1,13,614390 ,2,14956,178405 ,2,822,16960 ,2,14975,561095 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354390 ,1,3,65 ,2,14956,178415 ,2,822,16960 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,286715 ,2,829,45 ,2,14956,178610 ,2,822,16960 ,2,14975,561115 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286820 ,2,829,45 ,1,0,122245 ,1,1,122200 ,1,2,122190 ,1,3,122180 ,1,4,122170 ,2,14956,178450 ,2,822,16970 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286950 ,2,829,45 ,2,14956,178470 ,2,822,16970 ,2,14975,561155 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286960 ,2,829,45 ,1,0,139485 ,1,1,139475 ,1,2,122265 ,1,3,122255 ,2,14956,178480 ,2,822,16970 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286970 ,2,829,45 ,2,14956,178500 ,2,822,16970 ,2,14975,561155 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287000 ,2,829,45 ,1,0,122300 ,1,1,122290 ,1,2,122275 ,2,14956,178510 ,2,822,16970 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287010 ,2,829,45 ,2,14956,178520 ,2,822,16970 ,2,14975,561160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,269335 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,16970 ,2,14975,100 ,2,14976,32660 ,2,14977,32650 ,2,14965,45 ,2,14978,250250 ,2,14979,2415 ,2,829,45 ,1,0,122320 ,1,1,122310 ,2,14956,178530 ,2,822,16970 ,2,14975,561165 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,77965 ,1,1,104965 ,2,14956,4490 ,2,822,16970 ,2,14975,599875 ,2,14976,32680 ,2,14977,32670 ,2,14965,45 ,2,14978,250260 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,568460 ,1,2,599970 ,2,14956,178565 ,2,822,16970 ,2,14975,561170 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,122320 ,1,1,45 ,1,2,122310 ,1,3,33195 ,1,4,28385 ,1,5,33185 ,1,6,33175 ,1,7,33165 ,1,8,45 ,1,9,45 ,1,10,28370 ,1,11,33155 ,1,12,45 ,1,13,45 ,1,14,33105 ,1,15,28415 ,1,16,28405 ,1,17,626560 ,2,14956,4490 ,2,822,16970 ,2,14975,561155 ,2,14976,32700 ,2,14977,32690 ,2,14965,45 ,2,14978,250280 ,2,14979,2415 ,2,829,45 ,2,14956,178575 ,2,822,16970 ,2,14975,561120 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,122435 ,1,1,122425 ,1,2,122415 ,1,3,122385 ,1,4,122375 ,1,5,122365 ,2,14956,178585 ,2,822,16970 ,2,14975,561150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256305 ,2,14979,287020 ,2,829,45 ,1,0,3010 ,1,1,217650 ,1,2,231580 ,1,3,231570 ,1,4,231560 ,1,5,231550 ,1,6,231540 ,2,14956,178620 ,2,822,16960 ,2,14975,561095 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,572160 ,2,14956,178630 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286790 ,2,829,45 ,2,14956,178640 ,2,822,16960 ,2,14975,561115 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286755 ,2,829,45 ,1,0,267720 ,1,1,268190 ,1,2,269310 ,2,14956,178675 ,2,822,16960 ,2,14975,561095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,33060 ,1,1,33050 ,1,2,33015 ,1,3,45 ,1,4,33005 ,1,5,32995 ,1,6,45 ,1,7,32985 ,1,8,32970 ,1,9,28450 ,1,10,32960 ,1,11,45 ,1,12,45 ,1,13,28470 ,1,14,621000 ,2,14956,178685 ,2,822,16960 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256295 ,2,14979,287030 ,2,829,45 ,1,0,572180 ,2,14956,178695 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287050 ,2,829,45 ,1,0,138070 ,1,1,138040 ,1,2,138030 ,1,3,122445 ,2,14956,178725 ,2,822,16960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,286665 ,2,829,45 ,1,0,122465 ,1,1,115325 ,2,14956,178735 ,2,822,16960 ,2,14975,561175 ,2,14976,23450 ,2,14977,23360 ,2,14965,545850 ,2,14978,45 ,2,14979,286655 ,2,829,45 ,1,0,115325 ,1,1,122485 ,2,14956,2855 ,2,822,16990 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389510 ,2,829,45 ,2,14956,178780 ,2,822,16990 ,2,14975,561180 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408520 ,2,829,45 ,1,0,268395 ,1,1,45 ,1,2,45 ,2,14956,173755 ,2,822,16990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,70305 ,2,14979,287070 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,28575 ,1,3,28565 ,1,4,28530 ,1,5,28520 ,1,6,28510 ,1,7,45 ,1,8,28480 ,1,9,614020 ,2,14956,173755 ,2,822,16990 ,2,14975,110 ,2,14976,25480 ,2,14977,23120 ,2,14965,45 ,2,14978,229470 ,2,14979,287110 ,2,829,45 ,2,14956,178810 ,2,822,49770 ,2,14975,608155 ,2,14976,23675 ,2,14977,23665 ,2,14965,545860 ,2,14978,70325 ,2,14979,287140 ,2,829,45 ,1,0,122570 ,1,1,122535 ,1,2,122525 ,1,3,122515 ,1,4,122495 ,2,14956,178810 ,2,822,49770 ,2,14975,608155 ,2,14976,32845 ,2,14977,25590 ,2,14965,545860 ,2,14978,229480 ,2,14979,287150 ,2,829,45 ,1,0,62040 ,1,1,122525 ,2,14956,4490 ,2,822,16720 ,2,14975,608155 ,2,14976,32865 ,2,14977,32855 ,2,14965,45 ,2,14978,250290 ,2,14979,2415 ,2,829,45 ,1,0,122545 ,1,1,72265 ,2,14956,178820 ,2,822,49870 ,2,14975,600020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287160 ,2,829,45 ,1,0,231690 ,1,1,45 ,2,14956,177345 ,2,822,49740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,286800 ,2,829,45 ,2,14956,178830 ,2,822,49770 ,2,14975,561230 ,2,14976,24020 ,2,14977,24010 ,2,14965,545865 ,2,14978,70375 ,2,14979,2415 ,2,829,45 ,1,0,122615 ,1,1,122600 ,2,14956,178830 ,2,822,49770 ,2,14975,561230 ,2,14976,32875 ,2,14977,24110 ,2,14965,545865 ,2,14978,229490 ,2,14979,287170 ,2,829,45 ,2,14956,4490 ,2,822,16720 ,2,14975,608190 ,2,14976,32900 ,2,14977,32890 ,2,14965,45 ,2,14978,250300 ,2,14979,2415 ,2,829,45 ,1,0,122625 ,2,14956,177695 ,2,822,49770 ,2,14975,560725 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,69125 ,2,14979,2415 ,2,829,45 ,2,14956,178885 ,2,822,49770 ,2,14975,608205 ,2,14976,24020 ,2,14977,32945 ,2,14965,545870 ,2,14978,45 ,2,14979,287180 ,2,829,45 ,2,14956,178895 ,2,822,49770 ,2,14975,561235 ,2,14976,24020 ,2,14977,24010 ,2,14965,545875 ,2,14978,70455 ,2,14979,2415 ,2,829,45 ,2,14956,178895 ,2,822,49770 ,2,14975,561235 ,2,14976,32955 ,2,14977,24110 ,2,14965,545875 ,2,14978,229500 ,2,14979,287205 ,2,829,45 ,1,0,137990 ,1,1,137980 ,1,2,122645 ,1,3,122485 ,1,4,122635 ,2,14956,4490 ,2,822,16720 ,2,14975,608210 ,2,14976,32975 ,2,14977,32965 ,2,14965,45 ,2,14978,250310 ,2,14979,2415 ,2,829,45 ,1,0,137970 ,1,1,122675 ,2,14956,176400 ,2,822,49770 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,67010 ,2,14979,285780 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358425 ,1,3,65 ,2,14956,178905 ,2,822,49720 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,287215 ,2,829,45 ,2,14956,178935 ,2,822,49835 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,32990 ,2,14979,287225 ,2,829,45 ,1,0,267890 ,1,1,269300 ,1,2,45 ,2,14956,178945 ,2,822,49835 ,2,14975,561240 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287425 ,2,829,45 ,1,0,28585 ,1,1,32915 ,1,2,45 ,1,3,45 ,1,4,32905 ,1,5,32895 ,1,6,45 ,1,7,32885 ,1,8,32860 ,1,9,32850 ,1,10,45 ,1,11,32840 ,1,12,32790 ,1,13,32780 ,1,14,32770 ,1,15,45 ,1,16,28620 ,1,17,28610 ,1,18,618545 ,2,14956,4490 ,2,822,16720 ,2,14975,100 ,2,14976,33010 ,2,14977,33000 ,2,14965,45 ,2,14978,250320 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358415 ,1,3,65 ,2,14956,178955 ,2,822,49850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,70555 ,2,14979,2415 ,2,829,45 ,2,14956,178955 ,2,822,49850 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,229520 ,2,14979,408525 ,2,829,45 ,1,0,122685 ,1,1,137970 ,2,14956,178965 ,2,822,49740 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,70575 ,2,14979,287235 ,2,829,45 ,2,14956,178965 ,2,822,49740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229530 ,2,14979,287250 ,2,829,45 ,1,0,137155 ,1,1,137145 ,1,2,137130 ,1,3,137120 ,1,4,122695 ,2,14956,179010 ,2,822,49835 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,33065 ,2,14979,287260 ,2,829,45 ,2,14956,179020 ,2,822,49835 ,2,14975,561245 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287415 ,2,829,45 ,1,0,131885 ,1,1,131875 ,1,2,131865 ,1,3,131855 ,1,4,122725 ,1,5,122715 ,2,14956,4490 ,2,822,16720 ,2,14975,100 ,2,14976,33085 ,2,14977,33075 ,2,14965,45 ,2,14978,250330 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,567805 ,2,14956,179040 ,2,822,49835 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,33100 ,2,14979,286540 ,2,829,45 ,1,0,3010 ,1,1,231955 ,1,2,183310 ,1,3,211025 ,1,4,180735 ,1,5,231945 ,1,6,182890 ,1,7,231925 ,1,8,231915 ,1,9,231905 ,2,14956,9555 ,2,822,17045 ,2,14975,561295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287270 ,2,829,45 ,1,0,167060 ,2,14956,179110 ,2,822,17055 ,2,14975,561300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287280 ,2,829,45 ,1,0,100 ,2,14956,179050 ,2,822,17055 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381060 ,2,829,45 ,2,14956,179060 ,2,822,17055 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,287320 ,2,829,45 ,1,0,267890 ,1,1,268740 ,1,2,45 ,2,14956,178370 ,2,822,17065 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,70725 ,2,14979,395465 ,2,829,45 ,1,0,258925 ,2,14956,178240 ,2,822,17065 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,229540 ,2,14979,287340 ,2,829,45 ,1,0,122790 ,2,14956,178240 ,2,822,17065 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,70725 ,2,14979,395345 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,122905 ,1,3,176805 ,1,4,45 ,1,5,122845 ,1,6,166650 ,1,7,45 ,1,8,122825 ,1,9,176795 ,1,10,45 ,1,11,122800 ,2,14956,179120 ,2,822,17065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393250 ,2,829,45 ,1,0,122815 ,2,14956,179130 ,2,822,17065 ,2,14975,561310 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,122835 ,2,14956,179150 ,2,822,17045 ,2,14975,561295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,122895 ,2,14956,179170 ,2,822,17035 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,70785 ,2,14979,2415 ,2,829,45 ,1,0,122915 ,2,14956,179120 ,2,822,17035 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229550 ,2,14979,287350 ,2,829,45 ,1,0,100 ,1,1,572425 ,2,14956,179060 ,2,822,17035 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,287360 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,357880 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,357870 ,1,12,357860 ,1,13,65 ,1,14,357850 ,1,15,65 ,1,16,357840 ,1,17,357835 ,2,14956,179120 ,2,822,17035 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70785 ,2,14979,393230 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,122935 ,2,14956,179180 ,2,822,17035 ,2,14975,561250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287435 ,2,829,45 ,1,0,122945 ,2,14956,179200 ,2,822,17035 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256315 ,2,14979,287370 ,2,829,45 ,2,14956,179210 ,2,822,17035 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256315 ,2,14979,287380 ,2,829,45 ,1,0,123040 ,1,1,122945 ,1,2,123015 ,1,3,123005 ,1,4,122995 ,1,5,122985 ,1,6,122965 ,2,14956,179220 ,2,822,17035 ,2,14975,561330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256325 ,2,14979,287390 ,2,829,45 ,1,0,123030 ,1,1,122915 ,2,14956,179255 ,2,822,16485 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,285120 ,2,829,45 ,2,14956,179265 ,2,822,16485 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287470 ,2,829,45 ,1,0,268405 ,1,1,45 ,1,2,45 ,2,14956,179275 ,2,822,16485 ,2,14975,560100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287480 ,2,829,45 ,1,0,28735 ,1,1,28705 ,1,2,45 ,1,3,45 ,1,4,28715 ,1,5,616170 ,2,14956,175795 ,2,822,16485 ,2,14975,599870 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,287490 ,2,829,45 ,2,14956,179305 ,2,822,49880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287530 ,2,829,45 ,1,0,123090 ,1,1,123060 ,1,2,123050 ,2,14956,175480 ,2,822,16485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,65610 ,2,14979,285050 ,2,829,45 ,2,14956,179315 ,2,822,16485 ,2,14975,561340 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,285450 ,2,829,45 ,1,0,122790 ,1,1,123140 ,1,2,123130 ,1,3,123030 ,1,4,122915 ,1,5,122895 ,1,6,122835 ,1,7,122815 ,1,8,123120 ,1,9,123110 ,1,10,123100 ,2,14956,179325 ,2,822,16485 ,2,14975,560095 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,358585 ,1,3,65 ,1,4,358575 ,1,5,358565 ,1,6,65 ,1,7,358555 ,1,8,65 ,1,9,358520 ,2,14956,179870 ,2,822,49930 ,2,14975,561400 ,2,14976,33630 ,2,14977,33620 ,2,14965,45 ,2,14978,45 ,2,14979,287550 ,2,829,45 ,2,14956,173945 ,2,822,17075 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,356190 ,2,829,45 ,1,0,123150 ,2,14956,179370 ,2,822,17085 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287585 ,2,829,45 ,1,0,123160 ,2,14956,179380 ,2,822,17085 ,2,14975,561375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287645 ,2,829,45 ,1,0,28745 ,1,1,30845 ,1,2,123160 ,1,3,30780 ,1,4,30765 ,1,5,30755 ,1,6,30745 ,1,7,45 ,1,8,45 ,1,9,45 ,1,10,45 ,1,11,30735 ,1,12,30710 ,1,13,45 ,1,14,28685 ,1,15,28805 ,1,16,28795 ,1,17,258925 ,1,18,28785 ,1,19,45 ,1,20,28775 ,1,21,616230 ,2,14956,179415 ,2,822,17085 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287655 ,2,829,45 ,1,0,572485 ,2,14956,6530 ,2,822,14600 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387910 ,2,829,45 ,1,0,123235 ,1,1,123225 ,1,2,123210 ,1,3,123200 ,1,4,123190 ,1,5,123180 ,2,14956,179425 ,2,822,17085 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287665 ,2,829,45 ,1,0,3010 ,1,1,185785 ,1,2,232290 ,1,3,209800 ,2,14956,179435 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287625 ,2,829,45 ,2,14956,13210 ,2,822,17085 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395830 ,2,829,45 ,1,0,123280 ,1,1,123270 ,1,2,123255 ,1,3,123245 ,2,14956,179445 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287605 ,2,829,45 ,1,0,572520 ,2,14956,179520 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287675 ,2,829,45 ,1,0,123320 ,1,1,123310 ,1,2,123300 ,1,3,123290 ,2,14956,179465 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,33400 ,2,14979,287685 ,2,829,45 ,2,14956,179485 ,2,822,14570 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,33410 ,2,14979,287695 ,2,829,45 ,1,0,267890 ,1,1,268710 ,1,2,45 ,2,14956,179510 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400160 ,2,829,45 ,1,0,30700 ,1,1,30690 ,1,2,30680 ,1,3,30665 ,1,4,30655 ,1,5,30645 ,1,6,28815 ,1,7,30635 ,1,8,30600 ,1,9,30590 ,1,10,28900 ,1,11,45 ,1,12,28890 ,1,13,28880 ,1,14,45 ,1,15,45 ,1,16,28870 ,1,17,28845 ,1,18,28835 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,618130 ,2,14956,6245 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388420 ,2,829,45 ,2,14956,179530 ,2,822,17085 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287730 ,2,829,45 ,1,0,123385 ,1,1,123340 ,1,2,123330 ,2,14956,179540 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287595 ,2,829,45 ,2,14956,179555 ,2,822,17085 ,2,14975,561380 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,287740 ,2,829,45 ,1,0,123395 ,2,14956,179565 ,2,822,17085 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287760 ,2,829,45 ,2,14956,2855 ,2,822,17085 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390635 ,2,829,45 ,1,0,123415 ,1,1,123405 ,2,14956,179575 ,2,822,17085 ,2,14975,561375 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,173945 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256335 ,2,14979,356200 ,2,829,45 ,1,0,123530 ,1,1,123520 ,1,2,123510 ,1,3,123500 ,1,4,123490 ,1,5,123455 ,1,6,123445 ,1,7,123435 ,1,8,123425 ,2,14956,179585 ,2,822,17085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,572650 ,2,14956,2855 ,2,822,17075 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,390615 ,2,829,45 ,1,0,123560 ,1,1,123550 ,1,2,123540 ,2,14956,6245 ,2,822,17075 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388410 ,2,829,45 ,2,14956,13210 ,2,822,17075 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395815 ,2,829,45 ,1,0,268415 ,1,1,45 ,1,2,45 ,2,14956,179770 ,2,822,17075 ,2,14975,561395 ,2,14976,23450 ,2,14977,33555 ,2,14965,45 ,2,14978,45 ,2,14979,391185 ,2,829,45 ,1,0,45 ,1,1,28930 ,1,2,28910 ,1,3,614705 ,2,14956,179785 ,2,822,17075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287770 ,2,829,45 ,2,14956,179795 ,2,822,17075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287780 ,2,829,45 ,1,0,123595 ,2,14956,179805 ,2,822,17075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287790 ,2,829,45 ,2,14956,179850 ,2,822,17075 ,2,14975,561380 ,2,14976,23450 ,2,14977,33610 ,2,14965,45 ,2,14978,45 ,2,14979,287800 ,2,829,45 ,1,0,130655 ,1,1,130645 ,1,2,130620 ,1,3,130610 ,1,4,123645 ,1,5,123625 ,1,6,123605 ,2,14956,179880 ,2,822,49880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,71365 ,2,14979,287840 ,2,829,45 ,1,0,9255 ,1,1,209400 ,1,2,212880 ,1,3,182890 ,2,14956,179880 ,2,822,49880 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,229565 ,2,14979,287850 ,2,829,45 ,1,0,100 ,1,1,561515 ,1,2,561460 ,1,3,568845 ,2,14956,179900 ,2,822,50040 ,2,14975,561425 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,71385 ,2,14979,287860 ,2,829,45 ,1,0,3010 ,1,1,209400 ,1,2,212880 ,1,3,182890 ,2,14956,179900 ,2,822,50040 ,2,14975,561425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229575 ,2,14979,287870 ,2,829,45 ,2,14956,4490 ,2,822,16285 ,2,14975,599880 ,2,14976,33650 ,2,14977,33640 ,2,14965,45 ,2,14978,250340 ,2,14979,2415 ,2,829,45 ,1,0,268425 ,1,1,45 ,1,2,45 ,2,14956,179910 ,2,822,49920 ,2,14975,561365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256050 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,28940 ,1,2,613640 ,2,14956,179920 ,2,822,50040 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,545965 ,2,14978,45 ,2,14979,287885 ,2,829,45 ,2,14956,179930 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287895 ,2,829,45 ,1,0,123725 ,1,1,123715 ,1,2,123705 ,1,3,123735 ,1,4,123675 ,1,5,123665 ,1,6,123655 ,2,14956,179975 ,2,822,49940 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287750 ,2,829,45 ,1,0,57795 ,1,1,123715 ,2,14956,179985 ,2,822,50040 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,71490 ,2,14979,287905 ,2,829,45 ,1,0,123750 ,2,14956,179985 ,2,822,50040 ,2,14975,110 ,2,14976,33660 ,2,14977,24010 ,2,14965,45 ,2,14978,229585 ,2,14979,287930 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,123780 ,1,3,166650 ,1,4,45 ,1,5,123760 ,2,14956,179995 ,2,822,50040 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,71525 ,2,14979,287950 ,2,829,45 ,1,0,123770 ,2,14956,179995 ,2,822,50040 ,2,14975,110 ,2,14976,33670 ,2,14977,24010 ,2,14965,45 ,2,14978,229595 ,2,14979,287960 ,2,829,45 ,1,0,123820 ,2,14956,180005 ,2,822,49950 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,9255 ,1,1,9435 ,1,2,232600 ,2,14956,180015 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,287975 ,2,829,45 ,1,0,100 ,1,1,572770 ,1,2,599870 ,2,14956,180025 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,71575 ,2,14979,287995 ,2,829,45 ,1,0,3010 ,1,1,9435 ,1,2,232600 ,2,14956,180025 ,2,822,50040 ,2,14975,110 ,2,14976,33710 ,2,14977,23120 ,2,14965,45 ,2,14978,229605 ,2,14979,288005 ,2,829,45 ,2,14956,180035 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,71595 ,2,14979,288040 ,2,829,45 ,1,0,268450 ,1,1,45 ,1,2,45 ,2,14956,180035 ,2,822,50040 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,229615 ,2,14979,288050 ,2,829,45 ,1,0,123840 ,2,14956,180045 ,2,822,49880 ,2,14975,600015 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,71640 ,2,14979,288060 ,2,829,45 ,1,0,76770 ,1,1,75380 ,1,2,62685 ,1,3,75480 ,1,4,62780 ,2,14956,180045 ,2,822,49880 ,2,14975,600015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229625 ,2,14979,288070 ,2,829,45 ,1,0,29060 ,1,1,45 ,1,2,45 ,1,3,29050 ,1,4,29010 ,1,5,29040 ,1,6,123840 ,1,7,613975 ,2,14956,180085 ,2,822,49960 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288080 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,357770 ,1,3,357765 ,1,4,65 ,1,5,65 ,2,14956,180075 ,2,822,17140 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288090 ,2,829,45 ,2,14956,180095 ,2,822,49940 ,2,14975,561450 ,2,14976,23075 ,2,14977,23065 ,2,14965,545970 ,2,14978,45 ,2,14979,288100 ,2,829,45 ,1,0,123945 ,1,1,123935 ,1,2,123925 ,1,3,123895 ,1,4,123885 ,1,5,123875 ,1,6,123865 ,1,7,123850 ,2,14956,180115 ,2,822,49950 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288110 ,2,829,45 ,1,0,75380 ,1,1,62685 ,1,2,75480 ,1,3,62780 ,1,4,75450 ,2,14956,180125 ,2,822,50040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,287985 ,2,829,45 ,2,14956,180135 ,2,822,49880 ,2,14975,600015 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,71710 ,2,14979,288140 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,357780 ,1,3,65 ,1,4,65 ,1,5,357820 ,2,14956,180135 ,2,822,49880 ,2,14975,600015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229635 ,2,14979,288150 ,2,829,45 ,2,14956,180145 ,2,822,49940 ,2,14975,561400 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288160 ,2,829,45 ,1,0,123955 ,2,14956,180175 ,2,822,49930 ,2,14975,561400 ,2,14976,33775 ,2,14977,33765 ,2,14965,45 ,2,14978,45 ,2,14979,288170 ,2,829,45 ,2,14956,180185 ,2,822,49880 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,71765 ,2,14979,408530 ,2,829,45 ,1,0,123820 ,1,1,123770 ,1,2,124010 ,1,3,123995 ,1,4,123985 ,1,5,123975 ,1,6,123965 ,2,14956,180185 ,2,822,49880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229665 ,2,14979,408535 ,2,829,45 ,2,14956,180945 ,2,822,49940 ,2,14975,561520 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288180 ,2,829,45 ,1,0,124365 ,1,1,124055 ,1,2,124040 ,1,3,124030 ,1,4,124020 ,2,14956,9640 ,2,822,49970 ,2,14975,561455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,33800 ,2,14979,288190 ,2,829,45 ,1,0,75480 ,1,1,62780 ,1,2,75380 ,1,3,62685 ,2,14956,180205 ,2,822,49970 ,2,14975,561455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288200 ,2,829,45 ,1,0,3010 ,1,1,183245 ,1,2,182890 ,2,14956,180925 ,2,822,17160 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,176795 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,33850 ,2,14979,288230 ,2,829,45 ,1,0,268460 ,1,1,45 ,1,2,45 ,2,14956,4685 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382105 ,2,829,45 ,1,0,29115 ,1,1,45 ,1,2,45 ,1,3,29105 ,1,4,29000 ,1,5,28990 ,1,6,614045 ,2,14956,166650 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,33860 ,2,14979,288250 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,357750 ,1,5,357740 ,2,14956,8315 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374945 ,2,829,45 ,2,14956,176805 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,33870 ,2,14979,288260 ,2,829,45 ,1,0,124065 ,2,14956,5060 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374385 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,124075 ,2,14956,8170 ,2,822,17185 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396170 ,2,829,45 ,1,0,124085 ,2,14956,9535 ,2,822,17185 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396955 ,2,829,45 ,2,14956,10815 ,2,822,17160 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288270 ,2,829,45 ,1,0,124310 ,1,1,124300 ,1,2,124285 ,1,3,124275 ,1,4,124085 ,1,5,124265 ,1,6,124255 ,1,7,124205 ,1,8,124195 ,1,9,124185 ,1,10,124175 ,1,11,124160 ,1,12,124150 ,1,13,124140 ,2,14956,6680 ,2,822,17160 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396995 ,2,829,45 ,1,0,3010 ,1,1,231955 ,1,2,183245 ,1,3,182890 ,1,4,222480 ,1,5,231915 ,2,14956,180230 ,2,822,17195 ,2,14975,561505 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288290 ,2,829,45 ,1,0,12445 ,1,1,185785 ,1,2,184220 ,1,3,174110 ,2,14956,180240 ,2,822,17195 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,180250 ,2,822,17195 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288335 ,2,829,45 ,1,0,124345 ,1,1,124330 ,1,2,123750 ,1,3,124355 ,1,4,124320 ,2,14956,180295 ,2,822,17195 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288345 ,2,829,45 ,1,0,77900 ,1,1,77965 ,1,2,64540 ,2,14956,166670 ,2,822,17195 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,72015 ,2,14979,376995 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369560 ,2,14956,166660 ,2,822,17195 ,2,14975,599870 ,2,14976,34015 ,2,14977,23120 ,2,14965,45 ,2,14978,229675 ,2,14979,288355 ,2,829,45 ,2,14956,6245 ,2,822,17195 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388395 ,2,829,45 ,1,0,268470 ,1,1,45 ,1,2,45 ,2,14956,180305 ,2,822,17195 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288365 ,2,829,45 ,1,0,29125 ,1,1,45 ,1,2,29150 ,1,3,614705 ,2,14956,180315 ,2,822,17195 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288385 ,2,829,45 ,2,14956,180325 ,2,822,17195 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,124485 ,1,1,124475 ,1,2,124465 ,1,3,124420 ,1,4,124410 ,1,5,124400 ,1,6,124390 ,2,14956,180585 ,2,822,17195 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288395 ,2,829,45 ,1,0,79335 ,1,1,123725 ,1,2,72375 ,1,3,75570 ,1,4,62780 ,1,5,62685 ,2,14956,180550 ,2,822,49980 ,2,14975,608285 ,2,14976,23130 ,2,14977,23120 ,2,14965,545980 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,180360 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,124625 ,1,1,124615 ,1,2,124605 ,1,3,124595 ,1,4,124585 ,1,5,124575 ,1,6,124375 ,1,7,124565 ,1,8,124535 ,1,9,124525 ,1,10,124515 ,1,11,124495 ,2,14956,180370 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,124285 ,1,1,124345 ,2,14956,180400 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288405 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,369580 ,1,3,65 ,1,4,369570 ,1,5,65 ,2,14956,180410 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288440 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,357180 ,1,3,65 ,2,14956,180420 ,2,822,49980 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,180430 ,2,822,49980 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288460 ,2,829,45 ,2,14956,180450 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,34055 ,2,14979,288490 ,2,829,45 ,1,0,268480 ,1,1,45 ,1,2,45 ,2,14956,180470 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,34065 ,2,14979,288500 ,2,829,45 ,1,0,125105 ,1,1,124635 ,2,14956,180500 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,34075 ,2,14979,288430 ,2,829,45 ,2,14956,180520 ,2,822,49980 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,34085 ,2,14979,288450 ,2,829,45 ,1,0,58830 ,2,14956,180540 ,2,822,49980 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,34100 ,2,14979,288480 ,2,829,45 ,2,14956,180560 ,2,822,49980 ,2,14975,608290 ,2,14976,23130 ,2,14977,23120 ,2,14965,545985 ,2,14978,72275 ,2,14979,2415 ,2,829,45 ,1,0,124690 ,1,1,124680 ,1,2,124670 ,2,14956,180560 ,2,822,49980 ,2,14975,608290 ,2,14976,34120 ,2,14977,23360 ,2,14965,545985 ,2,14978,229685 ,2,14979,288510 ,2,829,45 ,2,14956,166680 ,2,822,17195 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377750 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,124720 ,1,3,166610 ,1,4,45 ,1,5,124700 ,2,14956,2855 ,2,822,17195 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390570 ,2,829,45 ,2,14956,180595 ,2,822,17195 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288545 ,2,829,45 ,1,0,124825 ,1,1,124815 ,1,2,124795 ,1,3,124785 ,1,4,124775 ,1,5,124765 ,1,6,124730 ,2,14956,180605 ,2,822,17195 ,2,14975,561505 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288555 ,2,829,45 ,1,0,124680 ,2,14956,180615 ,2,822,17195 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,124670 ,2,14956,180635 ,2,822,17195 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288375 ,2,829,45 ,1,0,124680 ,1,1,124670 ,2,14956,180645 ,2,822,17195 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288565 ,2,829,45 ,1,0,124670 ,1,1,124680 ,2,14956,180655 ,2,822,17195 ,2,14975,561500 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288575 ,2,829,45 ,1,0,573110 ,2,14956,180665 ,2,822,17195 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288585 ,2,829,45 ,1,0,573115 ,2,14956,166660 ,2,822,17195 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,72015 ,2,14979,377490 ,2,829,45 ,1,0,573120 ,2,14956,180695 ,2,822,17195 ,2,14975,561505 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,288595 ,2,829,45 ,1,0,124920 ,1,1,124910 ,1,2,124900 ,1,3,124890 ,1,4,124845 ,1,5,124835 ,2,14956,180765 ,2,822,17195 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288605 ,2,829,45 ,2,14956,176795 ,2,822,17215 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,34180 ,2,14979,288640 ,2,829,45 ,1,0,125095 ,1,1,124660 ,1,2,125085 ,1,3,124720 ,1,4,125065 ,1,5,125055 ,1,6,125045 ,1,7,125035 ,1,8,124700 ,1,9,125025 ,1,10,125015 ,1,11,125005 ,1,12,124960 ,1,13,124940 ,1,14,124930 ,2,14956,4685 ,2,822,17215 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382110 ,2,829,45 ,1,0,125105 ,1,1,45 ,1,2,29170 ,1,3,29225 ,1,4,124635 ,1,5,45 ,1,6,29205 ,1,7,613975 ,2,14956,166650 ,2,822,17215 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,34240 ,2,14979,288650 ,2,829,45 ,2,14956,8315 ,2,822,17215 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374955 ,2,829,45 ,1,0,125220 ,1,1,125210 ,1,2,125165 ,1,3,125155 ,1,4,125145 ,1,5,125135 ,1,6,125115 ,2,14956,176805 ,2,822,17215 ,2,14975,561490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,34250 ,2,14979,288660 ,2,829,45 ,2,14956,5060 ,2,822,17215 ,2,14975,561490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374390 ,2,829,45 ,1,0,268695 ,1,1,45 ,1,2,45 ,2,14956,180705 ,2,822,17215 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288670 ,2,829,45 ,1,0,259070 ,1,1,259060 ,1,2,259050 ,2,14956,166660 ,2,822,17215 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,72550 ,2,14979,377485 ,2,829,45 ,1,0,125280 ,1,1,125270 ,1,2,125260 ,2,14956,166660 ,2,822,17215 ,2,14975,599870 ,2,14976,34015 ,2,14977,23120 ,2,14965,45 ,2,14978,229695 ,2,14979,288680 ,2,829,45 ,1,0,45 ,1,1,29160 ,1,2,259060 ,1,3,259070 ,1,4,259050 ,1,5,30580 ,1,6,125260 ,1,7,30570 ,1,8,30560 ,1,9,30550 ,1,10,45 ,1,11,45 ,1,12,30540 ,1,13,125270 ,1,14,29345 ,1,15,45 ,1,16,125280 ,1,17,45 ,1,18,618545 ,2,14956,180715 ,2,822,17215 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288690 ,2,829,45 ,2,14956,166670 ,2,822,17215 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,72550 ,2,14979,376990 ,2,829,45 ,1,0,130145 ,1,1,130135 ,1,2,125310 ,2,14956,13210 ,2,822,17215 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395785 ,2,829,45 ,2,14956,180725 ,2,822,17215 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288700 ,2,829,45 ,1,0,125355 ,1,1,125340 ,1,2,125330 ,2,14956,6245 ,2,822,17215 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414225 ,2,829,45 ,2,14956,166680 ,2,822,17215 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377745 ,2,829,45 ,1,0,268685 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,17215 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390565 ,2,829,45 ,1,0,125365 ,2,14956,179555 ,2,822,17215 ,2,14975,561515 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288710 ,2,829,45 ,1,0,30530 ,1,1,30500 ,1,2,125365 ,1,3,29370 ,1,4,29440 ,1,5,45 ,1,6,29400 ,1,7,45 ,1,8,29380 ,1,9,45 ,1,10,614025 ,2,14956,180735 ,2,822,17215 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288745 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,354925 ,1,3,65 ,1,4,65 ,1,5,354915 ,2,14956,180745 ,2,822,17215 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288755 ,2,829,45 ,2,14956,6530 ,2,822,17215 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387375 ,2,829,45 ,1,0,125375 ,2,14956,180800 ,2,822,17195 ,2,14975,561505 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,288300 ,2,829,45 ,2,14956,13210 ,2,822,17195 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395790 ,2,829,45 ,1,0,267890 ,1,1,268675 ,1,2,45 ,2,14956,180810 ,2,822,17195 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288775 ,2,829,45 ,1,0,30490 ,1,1,30480 ,1,2,30470 ,1,3,30460 ,1,4,30450 ,1,5,30440 ,1,6,30430 ,1,7,30380 ,1,8,30370 ,1,9,30360 ,1,10,30350 ,1,11,30340 ,1,12,30330 ,1,13,30320 ,1,14,45 ,1,15,45 ,1,16,45 ,1,17,29450 ,1,18,30310 ,1,19,29510 ,1,20,45 ,1,21,29500 ,1,22,45 ,1,23,29490 ,1,24,45 ,1,25,45 ,1,26,29470 ,1,27,615300 ,2,14956,179555 ,2,822,17195 ,2,14975,561500 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288790 ,2,829,45 ,2,14956,180820 ,2,822,17195 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,125420 ,1,1,125385 ,2,14956,180830 ,2,822,17195 ,2,14975,561505 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,573280 ,2,14956,180655 ,2,822,17160 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288810 ,2,829,45 ,2,14956,180855 ,2,822,17160 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,125465 ,1,1,125430 ,2,14956,180865 ,2,822,17160 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288820 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,354645 ,2,14956,180875 ,2,822,17160 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288845 ,2,829,45 ,2,14956,13210 ,2,822,17160 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395770 ,2,829,45 ,1,0,125475 ,2,14956,6245 ,2,822,17160 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388390 ,2,829,45 ,2,14956,179555 ,2,822,17160 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,288855 ,2,829,45 ,1,0,618495 ,1,1,615295 ,1,2,129325 ,1,3,129315 ,1,4,65 ,1,5,129305 ,1,6,129295 ,1,7,65 ,1,8,129275 ,1,9,65 ,1,10,129265 ,1,11,65 ,1,12,126185 ,1,13,126175 ,1,14,65 ,1,15,65 ,1,16,126145 ,1,17,65 ,1,18,126135 ,1,19,126125 ,1,20,126115 ,1,21,126105 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,126095 ,1,26,126085 ,1,27,126015 ,1,28,126005 ,1,29,65 ,1,30,125995 ,1,31,125985 ,1,32,65 ,1,33,125945 ,1,34,125925 ,1,35,65 ,1,36,125915 ,1,37,125900 ,1,38,125880 ,1,39,125870 ,1,40,65 ,1,41,65 ,1,42,130090 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,125830 ,1,50,125820 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,125810 ,1,57,65 ,1,58,65 ,1,59,125800 ,1,60,65 ,1,61,125785 ,1,62,65 ,1,63,65 ,1,64,125775 ,1,65,125485 ,2,14956,2855 ,2,822,17160 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390560 ,2,829,45 ,2,14956,6530 ,2,822,17160 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387370 ,2,829,45 ,1,0,268495 ,1,1,45 ,1,2,45 ,2,14956,180935 ,2,822,17160 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,29520 ,1,1,45 ,1,2,613640 ,2,14956,180990 ,2,822,50040 ,2,14975,561560 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288865 ,2,829,45 ,2,14956,2855 ,2,822,17260 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390675 ,2,829,45 ,1,0,125495 ,2,14956,180970 ,2,822,17260 ,2,14975,561555 ,2,14976,34400 ,2,14977,34390 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,125555 ,1,1,125545 ,1,2,125900 ,2,14956,181100 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73030 ,2,14979,288900 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,2855 ,2,822,17270 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390755 ,2,829,45 ,1,0,100 ,1,1,573370 ,2,14956,181030 ,2,822,17270 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288920 ,2,829,45 ,1,0,65955 ,1,1,65975 ,2,14956,181040 ,2,822,17270 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288965 ,2,829,45 ,1,0,3010 ,1,1,233915 ,1,2,233905 ,1,3,233895 ,1,4,233885 ,2,14956,181050 ,2,822,17270 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288985 ,2,829,45 ,1,0,125755 ,1,1,125900 ,1,2,125710 ,1,3,125700 ,1,4,125690 ,1,5,125665 ,1,6,125655 ,1,7,125645 ,1,8,125635 ,1,9,125610 ,1,10,57795 ,1,11,91650 ,1,12,79355 ,1,13,79335 ,1,14,125600 ,2,14956,181060 ,2,822,17270 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,288995 ,2,829,45 ,2,14956,181080 ,2,822,17270 ,2,14975,560980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,288975 ,2,829,45 ,1,0,125610 ,2,14956,181100 ,2,822,50040 ,2,14975,110 ,2,14976,34480 ,2,14977,23120 ,2,14965,45 ,2,14978,229715 ,2,14979,289010 ,2,829,45 ,1,0,3010 ,1,1,233915 ,1,2,233885 ,2,14956,181520 ,2,822,49930 ,2,14975,561430 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,289020 ,2,829,45 ,1,0,3010 ,1,1,233915 ,1,2,233905 ,2,14956,173175 ,2,822,17280 ,2,14975,559070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399540 ,2,829,45 ,1,0,3010 ,1,1,234095 ,2,14956,172200 ,2,822,17280 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414210 ,2,829,45 ,1,0,3010 ,1,1,3825 ,1,2,200390 ,1,3,234135 ,2,14956,181135 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34525 ,2,14979,289040 ,2,829,45 ,1,0,104855 ,1,1,84345 ,1,2,84470 ,1,3,84765 ,1,4,60470 ,1,5,60460 ,1,6,60020 ,1,7,59965 ,1,8,59935 ,2,14956,181155 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34535 ,2,14979,289060 ,2,829,45 ,1,0,126025 ,2,14956,181175 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34545 ,2,14979,289070 ,2,829,45 ,1,0,3010 ,1,1,234335 ,2,14956,181195 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34555 ,2,14979,289080 ,2,829,45 ,1,0,126055 ,2,14956,181205 ,2,822,17280 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,289090 ,2,829,45 ,1,0,3010 ,1,1,234455 ,1,2,200390 ,2,14956,10665 ,2,822,17280 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,34575 ,2,14979,413605 ,2,829,45 ,1,0,125755 ,1,1,57795 ,2,14956,181265 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34585 ,2,14979,289105 ,2,829,45 ,1,0,3010 ,1,1,234510 ,1,2,208615 ,2,14956,181290 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34630 ,2,14979,289115 ,2,829,45 ,2,14956,181310 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34640 ,2,14979,289125 ,2,829,45 ,1,0,126245 ,1,1,126235 ,1,2,126225 ,1,3,126195 ,1,4,126215 ,1,5,126205 ,2,14956,181350 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34650 ,2,14979,289135 ,2,829,45 ,1,0,3010 ,1,1,234530 ,2,14956,181370 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34660 ,2,14979,289155 ,2,829,45 ,1,0,3010 ,1,1,215195 ,1,2,216560 ,1,3,234605 ,1,4,234595 ,2,14956,181395 ,2,822,17280 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,34680 ,2,14979,289165 ,2,829,45 ,2,14956,181415 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34690 ,2,14979,289175 ,2,829,45 ,1,0,126305 ,2,14956,181460 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34700 ,2,14979,289185 ,2,829,45 ,2,14956,173075 ,2,822,17280 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390470 ,2,829,45 ,1,0,268665 ,1,1,45 ,1,2,45 ,2,14956,181480 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34710 ,2,14979,289195 ,2,829,45 ,1,0,30290 ,1,1,29785 ,1,2,29775 ,1,3,29750 ,1,4,45 ,1,5,29680 ,1,6,29670 ,1,7,29635 ,1,8,29625 ,1,9,29590 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,29605 ,1,14,621000 ,2,14956,181500 ,2,822,17280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,34735 ,2,14979,289205 ,2,829,45 ,1,0,573565 ,2,14956,181600 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73415 ,2,14979,289215 ,2,829,45 ,1,0,126345 ,1,1,126335 ,1,2,126325 ,1,3,126315 ,2,14956,6245 ,2,822,17295 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414275 ,2,829,45 ,2,14956,13210 ,2,822,17295 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395915 ,2,829,45 ,1,0,126365 ,1,1,126355 ,2,14956,2855 ,2,822,17295 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390790 ,2,829,45 ,1,0,3010 ,1,1,234335 ,1,2,234715 ,2,14956,181530 ,2,822,17295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,181570 ,2,822,17295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,126415 ,1,1,126405 ,2,14956,181580 ,2,822,17295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,181600 ,2,822,50040 ,2,14975,110 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,229725 ,2,14979,289255 ,2,829,45 ,1,0,620685 ,1,1,615295 ,1,2,126885 ,1,3,65 ,1,4,126875 ,1,5,126865 ,1,6,65 ,1,7,126850 ,1,8,126840 ,1,9,126830 ,1,10,65 ,1,11,126795 ,1,12,126785 ,1,13,126775 ,1,14,126555 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,126545 ,1,20,126520 ,1,21,126510 ,1,22,126500 ,1,23,128995 ,1,24,126480 ,1,25,65 ,1,26,126470 ,1,27,65 ,1,28,65 ,1,29,126450 ,1,30,126435 ,1,31,65 ,1,32,128980 ,1,33,126425 ,2,14956,181625 ,2,822,50040 ,2,14975,110 ,2,14976,34970 ,2,14977,34935 ,2,14965,45 ,2,14978,73445 ,2,14979,289265 ,2,829,45 ,1,0,100 ,1,1,568430 ,2,14956,2855 ,2,822,17305 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390780 ,2,829,45 ,1,0,125755 ,2,14956,181625 ,2,822,50040 ,2,14975,110 ,2,14976,34925 ,2,14977,34915 ,2,14965,45 ,2,14978,229735 ,2,14979,289285 ,2,829,45 ,1,0,70765 ,1,1,78390 ,1,2,126565 ,2,14956,181635 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73465 ,2,14979,289295 ,2,829,45 ,2,14956,181635 ,2,822,50040 ,2,14975,110 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,229745 ,2,14979,289305 ,2,829,45 ,1,0,268505 ,1,1,45 ,1,2,45 ,2,14956,181645 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73500 ,2,14979,289315 ,2,829,45 ,1,0,45 ,1,1,29690 ,1,2,29740 ,1,3,29730 ,1,4,45 ,1,5,29720 ,1,6,614045 ,2,14956,181645 ,2,822,50040 ,2,14975,110 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,229795 ,2,14979,289360 ,2,829,45 ,2,14956,181965 ,2,822,49940 ,2,14975,561590 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,289370 ,2,829,45 ,1,0,126620 ,1,1,126610 ,1,2,126600 ,2,14956,181850 ,2,822,17315 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,73530 ,2,14979,2415 ,2,829,45 ,2,14956,181840 ,2,822,17315 ,2,14975,599880 ,2,14976,35035 ,2,14977,23120 ,2,14965,45 ,2,14978,229805 ,2,14979,289380 ,2,829,45 ,1,0,126675 ,1,1,126665 ,1,2,126655 ,1,3,126645 ,1,4,126630 ,2,14956,4490 ,2,822,17315 ,2,14975,110 ,2,14976,35055 ,2,14977,35045 ,2,14965,45 ,2,14978,250350 ,2,14979,2415 ,2,829,45 ,2,14956,181735 ,2,822,17350 ,2,14975,561660 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35110 ,2,14979,289400 ,2,829,45 ,2,14956,2855 ,2,822,17360 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389455 ,2,829,45 ,1,0,126765 ,1,1,126755 ,1,2,126745 ,1,3,126735 ,1,4,126725 ,2,14956,180615 ,2,822,17360 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35145 ,2,14979,289410 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,235045 ,2,14956,180325 ,2,822,17360 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35155 ,2,14979,289420 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,195155 ,1,3,235045 ,2,14956,181715 ,2,822,17360 ,2,14975,561670 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408540 ,2,829,45 ,1,0,126345 ,2,14956,181795 ,2,822,17350 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35165 ,2,14979,289430 ,2,829,45 ,1,0,126555 ,1,1,126865 ,1,2,128980 ,1,3,126425 ,1,4,126510 ,1,5,126470 ,1,6,126775 ,1,7,128995 ,1,8,126850 ,1,9,126840 ,1,10,126480 ,1,11,126875 ,1,12,126785 ,1,13,126545 ,1,14,126520 ,1,15,126500 ,1,16,126885 ,1,17,126435 ,1,18,126830 ,1,19,126450 ,1,20,126795 ,2,14956,181805 ,2,822,17350 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382135 ,2,829,45 ,2,14956,181815 ,2,822,17350 ,2,14975,561655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408545 ,2,829,45 ,2,14956,181840 ,2,822,17315 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,35205 ,2,14979,289390 ,2,829,45 ,1,0,126565 ,1,1,126970 ,1,2,126960 ,1,3,126915 ,1,4,126895 ,2,14956,181870 ,2,822,17315 ,2,14975,561675 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,289460 ,2,829,45 ,1,0,126935 ,2,14956,181910 ,2,822,17315 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35225 ,2,14979,289470 ,2,829,45 ,2,14956,181930 ,2,822,17315 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35235 ,2,14979,289480 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,126575 ,1,4,128825 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,126945 ,1,9,128815 ,1,10,65 ,1,11,128805 ,1,12,65 ,1,13,128795 ,1,14,65 ,1,15,128785 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,128775 ,1,20,128765 ,1,21,127095 ,1,22,65 ,1,23,127085 ,1,24,127075 ,1,25,65 ,1,26,127055 ,1,27,127045 ,1,28,127035 ,1,29,126990 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,126980 ,2,14956,181955 ,2,822,17315 ,2,14975,561630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408565 ,2,829,45 ,1,0,88130 ,1,1,70765 ,1,2,78390 ,2,14956,181985 ,2,822,49880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35255 ,2,14979,289500 ,2,829,45 ,1,0,127105 ,2,14956,181985 ,2,822,49880 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,229815 ,2,14979,289510 ,2,829,45 ,2,14956,182030 ,2,822,50040 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,73760 ,2,14979,289520 ,2,829,45 ,1,0,268515 ,1,1,45 ,1,2,45 ,2,14956,182020 ,2,822,18285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,35275 ,2,14979,289530 ,2,829,45 ,1,0,45 ,1,1,29805 ,1,2,613640 ,2,14956,182030 ,2,822,50040 ,2,14975,110 ,2,14976,35370 ,2,14977,24010 ,2,14965,45 ,2,14978,229825 ,2,14979,289565 ,2,829,45 ,2,14956,182040 ,2,822,49655 ,2,14975,559745 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256040 ,2,14979,2415 ,2,829,45 ,1,0,127155 ,1,1,127145 ,2,14956,182055 ,2,822,50040 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,73805 ,2,14979,289575 ,2,829,45 ,2,14956,182055 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,229840 ,2,14979,289585 ,2,829,45 ,1,0,268525 ,1,1,45 ,1,2,45 ,2,14956,182110 ,2,822,50040 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,546000 ,2,14978,45 ,2,14979,287915 ,2,829,45 ,1,0,45 ,1,1,29795 ,1,2,613640 ,2,14956,182130 ,2,822,50040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,35390 ,2,14979,289595 ,2,829,45 ,2,14956,182140 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73855 ,2,14979,289610 ,2,829,45 ,1,0,127215 ,1,1,127205 ,1,2,127195 ,1,3,127175 ,1,4,127165 ,1,5,127105 ,2,14956,182140 ,2,822,50040 ,2,14975,110 ,2,14976,33710 ,2,14977,23120 ,2,14965,45 ,2,14978,229850 ,2,14979,289620 ,2,829,45 ,1,0,3010 ,1,1,215275 ,1,2,234335 ,1,3,217425 ,1,4,235485 ,2,14956,182155 ,2,822,49930 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,546025 ,2,14978,45 ,2,14979,289630 ,2,829,45 ,1,0,127225 ,1,1,127075 ,1,2,87415 ,2,14956,182165 ,2,822,49960 ,2,14975,599970 ,2,14976,35410 ,2,14977,35400 ,2,14965,45 ,2,14978,45 ,2,14979,289640 ,2,829,45 ,2,14956,182175 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73910 ,2,14979,289670 ,2,829,45 ,1,0,268625 ,1,1,45 ,1,2,45 ,2,14956,182175 ,2,822,50040 ,2,14975,110 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,229860 ,2,14979,289680 ,2,829,45 ,1,0,127250 ,2,14956,182185 ,2,822,49950 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,57710 ,1,1,126365 ,2,14956,182225 ,2,822,49940 ,2,14975,599880 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,35440 ,2,14979,289690 ,2,829,45 ,1,0,6400 ,1,1,6400 ,1,2,6400 ,1,3,6400 ,1,4,6400 ,1,5,6400 ,1,6,6400 ,1,7,6400 ,1,8,6400 ,1,9,6400 ,1,10,6400 ,1,11,6400 ,1,12,6400 ,2,14956,182235 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,73955 ,2,14979,289700 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369290 ,1,3,65 ,2,14956,182235 ,2,822,50040 ,2,14975,110 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,229870 ,2,14979,289715 ,2,829,45 ,2,14956,182245 ,2,822,50040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,289325 ,2,829,45 ,1,0,268550 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,17370 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414795 ,2,829,45 ,1,0,29910 ,1,1,29890 ,1,2,45 ,1,3,614705 ,2,14956,182380 ,2,822,17380 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,35545 ,2,14979,289735 ,2,829,45 ,2,14956,182390 ,2,822,17380 ,2,14975,561700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382840 ,2,829,45 ,1,0,127305 ,1,1,127295 ,1,2,127280 ,2,14956,182410 ,2,822,17380 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,35555 ,2,14979,289745 ,2,829,45 ,2,14956,182445 ,2,822,17380 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,289775 ,2,829,45 ,1,0,268560 ,1,1,45 ,1,2,45 ,2,14956,175785 ,2,822,17380 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,35565 ,2,14979,289785 ,2,829,45 ,1,0,29920 ,1,1,45 ,1,2,29940 ,1,3,614705 ,2,14956,182465 ,2,822,17380 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,289795 ,2,829,45 ,2,14956,182490 ,2,822,17380 ,2,14975,110 ,2,14976,31400 ,2,14977,35585 ,2,14965,45 ,2,14978,35575 ,2,14979,289805 ,2,829,45 ,1,0,127325 ,1,1,127315 ,2,14956,182510 ,2,822,17380 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,289815 ,2,829,45 ,2,14956,182500 ,2,822,17505 ,2,14975,561430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,127350 ,2,14956,182555 ,2,822,17380 ,2,14975,110 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,35605 ,2,14979,289825 ,2,829,45 ,2,14956,182565 ,2,822,17380 ,2,14975,561685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,289835 ,2,829,45 ,1,0,127270 ,2,14956,2855 ,2,822,17390 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,179760 ,1,1,235705 ,1,2,179750 ,2,14956,2855 ,2,822,17400 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390740 ,2,829,45 ,2,14956,6245 ,2,822,17400 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388465 ,2,829,45 ,1,0,127410 ,1,1,127400 ,1,2,127675 ,1,3,127380 ,2,14956,13210 ,2,822,17400 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395900 ,2,829,45 ,2,14956,182595 ,2,822,17400 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,289890 ,2,829,45 ,1,0,268580 ,1,1,45 ,1,2,45 ,2,14956,182605 ,2,822,17400 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,289900 ,2,829,45 ,1,0,127420 ,2,14956,182615 ,2,822,17400 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,289910 ,2,829,45 ,2,14956,182625 ,2,822,17400 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,170435 ,2,822,17400 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256345 ,2,14979,412615 ,2,829,45 ,1,0,268570 ,1,1,45 ,1,2,45 ,2,14956,169490 ,2,822,17400 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256355 ,2,14979,412220 ,2,829,45 ,1,0,30010 ,1,1,45 ,1,2,613640 ,2,14956,2855 ,2,822,17410 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414815 ,2,829,45 ,1,0,573920 ,2,14956,2855 ,2,822,17420 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414785 ,2,829,45 ,1,0,127480 ,1,1,127470 ,1,2,127430 ,2,14956,2855 ,2,822,17450 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390715 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,127490 ,1,6,57795 ,1,7,91650 ,1,8,79355 ,1,9,79335 ,1,10,127470 ,1,11,60790 ,2,14956,6245 ,2,822,17450 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388445 ,2,829,45 ,2,14956,13210 ,2,822,17450 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395850 ,2,829,45 ,1,0,127490 ,2,14956,182900 ,2,822,17450 ,2,14975,561765 ,2,14976,35820 ,2,14977,35810 ,2,14965,45 ,2,14978,45 ,2,14979,289930 ,2,829,45 ,1,0,29960 ,1,1,30110 ,1,2,45 ,1,3,45 ,1,4,45 ,1,5,29950 ,1,6,30035 ,1,7,127420 ,1,8,30065 ,1,9,45 ,1,10,30055 ,1,11,30000 ,1,12,30045 ,1,13,614390 ,2,14956,2855 ,2,822,17460 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414880 ,2,829,45 ,2,14956,2855 ,2,822,17470 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414885 ,2,829,45 ,2,14956,183125 ,2,822,17505 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,289960 ,2,829,45 ,1,0,127500 ,2,14956,183135 ,2,822,17505 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354755 ,1,3,65 ,2,14956,2855 ,2,822,17515 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390745 ,2,829,45 ,1,0,573985 ,2,14956,6245 ,2,822,17515 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414270 ,2,829,45 ,1,0,127520 ,2,14956,13210 ,2,822,17515 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395905 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369895 ,2,14956,183205 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,36065 ,2,14965,45 ,2,14978,45 ,2,14979,290010 ,2,829,45 ,2,14956,183225 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290035 ,2,829,45 ,1,0,127590 ,1,1,127550 ,1,2,127540 ,1,3,127530 ,2,14956,183215 ,2,822,18185 ,2,14975,561520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,290055 ,2,829,45 ,2,14956,183255 ,2,822,17525 ,2,14975,110 ,2,14976,24020 ,2,14977,36075 ,2,14965,45 ,2,14978,45 ,2,14979,290065 ,2,829,45 ,1,0,127660 ,1,1,127650 ,1,2,127640 ,1,3,127630 ,1,4,127620 ,1,5,127370 ,1,6,127610 ,1,7,127600 ,2,14956,183265 ,2,822,17525 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,290090 ,2,829,45 ,2,14956,183300 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290110 ,2,829,45 ,1,0,268615 ,1,1,45 ,1,2,45 ,2,14956,183310 ,2,822,17525 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386900 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,30150 ,1,3,30140 ,1,4,30120 ,1,5,616170 ,2,14956,183320 ,2,822,17525 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,290130 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369905 ,2,14956,183345 ,2,822,17525 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,36085 ,2,14979,290150 ,2,829,45 ,2,14956,183355 ,2,822,17525 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,290180 ,2,829,45 ,1,0,127725 ,1,1,127715 ,1,2,127705 ,1,3,127695 ,2,14956,183365 ,2,822,17525 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,290200 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358510 ,1,3,65 ,2,14956,183430 ,2,822,17525 ,2,14975,561830 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290225 ,2,829,45 ,1,0,574030 ,2,14956,183420 ,2,822,18265 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36095 ,2,14979,290245 ,2,829,45 ,1,0,128425 ,1,1,128415 ,1,2,127775 ,1,3,127745 ,1,4,127735 ,2,14956,183440 ,2,822,17525 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,290255 ,2,829,45 ,1,0,114365 ,1,1,58385 ,1,2,62040 ,2,14956,183460 ,2,822,17525 ,2,14975,110 ,2,14976,33775 ,2,14977,33765 ,2,14965,45 ,2,14978,36110 ,2,14979,290100 ,2,829,45 ,1,0,127785 ,2,14956,183480 ,2,822,17525 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,36120 ,2,14979,290295 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,127795 ,2,14956,183535 ,2,822,17525 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,36130 ,2,14979,290190 ,2,829,45 ,1,0,127805 ,2,14956,183555 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,36140 ,2,14979,290305 ,2,829,45 ,1,0,100 ,1,1,560655 ,2,14956,183575 ,2,822,17525 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,36175 ,2,14979,290080 ,2,829,45 ,1,0,574090 ,2,14956,183595 ,2,822,17525 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,36185 ,2,14979,290045 ,2,829,45 ,1,0,633960 ,1,1,615295 ,1,2,65 ,1,3,128395 ,1,4,128385 ,1,5,65 ,1,6,65 ,1,7,128375 ,1,8,65 ,1,9,128365 ,1,10,128355 ,1,11,128345 ,1,12,128335 ,1,13,128325 ,1,14,128285 ,1,15,128275 ,1,16,128265 ,1,17,128255 ,1,18,65 ,1,19,128235 ,1,20,128225 ,1,21,128215 ,1,22,128205 ,1,23,128175 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,128165 ,1,29,128155 ,1,30,65 ,1,31,128145 ,1,32,65 ,1,33,128135 ,1,34,128125 ,1,35,128115 ,1,36,127805 ,1,37,128105 ,1,38,128080 ,1,39,128070 ,1,40,65 ,1,41,128060 ,1,42,128050 ,1,43,128040 ,1,44,127785 ,1,45,128030 ,1,46,65 ,1,47,128020 ,1,48,128010 ,1,49,127970 ,1,50,127960 ,1,51,127940 ,1,52,65 ,1,53,65 ,1,54,127920 ,1,55,127910 ,1,56,127900 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,127890 ,1,61,127855 ,1,62,127845 ,1,63,65 ,1,64,127835 ,1,65,65 ,2,14956,183630 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,36195 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,236050 ,1,1,45 ,2,14956,183640 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,380345 ,2,829,45 ,1,0,127950 ,1,1,62040 ,2,14956,183660 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,36205 ,2,14979,290020 ,2,829,45 ,1,0,62040 ,2,14956,180655 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,36220 ,2,14979,290315 ,2,829,45 ,1,0,128345 ,2,14956,183700 ,2,822,17525 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,36230 ,2,14979,290325 ,2,829,45 ,1,0,128345 ,1,1,62040 ,2,14956,183710 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290335 ,2,829,45 ,1,0,128345 ,1,1,114365 ,2,14956,183735 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290355 ,2,829,45 ,1,0,114365 ,2,14956,183765 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290400 ,2,829,45 ,1,0,236175 ,1,1,45 ,2,14956,183755 ,2,822,17800 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,36240 ,2,14979,290410 ,2,829,45 ,1,0,236345 ,1,1,45 ,2,14956,183785 ,2,822,17525 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,36250 ,2,14979,290285 ,2,829,45 ,1,0,127835 ,1,1,114365 ,1,2,128030 ,2,14956,183805 ,2,822,17525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,36295 ,2,14979,290420 ,2,829,45 ,1,0,3010 ,1,1,236480 ,1,2,236470 ,2,14956,182555 ,2,822,17525 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,36305 ,2,14979,290235 ,2,829,45 ,1,0,128225 ,1,1,128070 ,1,2,127890 ,1,3,128325 ,1,4,128275 ,1,5,128375 ,1,6,128145 ,1,7,127970 ,1,8,127855 ,1,9,128165 ,1,10,128285 ,1,11,128105 ,1,12,127940 ,1,13,128345 ,1,14,128125 ,1,15,128215 ,1,16,128175 ,1,17,128205 ,1,18,128265 ,1,19,128395 ,1,20,128020 ,1,21,128235 ,1,22,128115 ,1,23,128040 ,1,24,128135 ,1,25,128010 ,1,26,127960 ,1,27,127920 ,1,28,128385 ,1,29,128060 ,1,30,127805 ,1,31,127845 ,1,32,128080 ,1,33,127835 ,1,34,127785 ,1,35,128365 ,1,36,128355 ,1,37,128335 ,1,38,128155 ,1,39,128050 ,1,40,128255 ,1,41,128030 ,1,42,127910 ,1,43,127900 ,2,14956,183880 ,2,822,17525 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,36315 ,2,14979,290120 ,2,829,45 ,1,0,128365 ,2,14956,183910 ,2,822,17525 ,2,14975,110 ,2,14976,36360 ,2,14977,36350 ,2,14965,45 ,2,14978,36325 ,2,14979,290140 ,2,829,45 ,1,0,128365 ,1,1,127910 ,1,2,128355 ,1,3,127785 ,2,14956,183930 ,2,822,17525 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,36370 ,2,14979,290210 ,2,829,45 ,2,14956,183955 ,2,822,17525 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36380 ,2,14979,290430 ,2,829,45 ,1,0,127685 ,2,14956,183975 ,2,822,17525 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,36400 ,2,14979,290390 ,2,829,45 ,1,0,236775 ,1,1,185785 ,1,2,179760 ,1,3,186360 ,1,4,236765 ,1,5,236755 ,1,6,212880 ,1,7,222480 ,1,8,236745 ,1,9,236735 ,2,14956,183995 ,2,822,17525 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36410 ,2,14979,290440 ,2,829,45 ,1,0,45 ,1,1,30280 ,1,2,45 ,1,3,29840 ,1,4,30270 ,1,5,30260 ,1,6,30250 ,1,7,127250 ,1,8,30240 ,1,9,30230 ,1,10,30220 ,1,11,45 ,1,12,30180 ,1,13,45 ,1,14,30170 ,1,15,623955 ,2,14956,184005 ,2,822,17525 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,290450 ,2,829,45 ,2,14956,184025 ,2,822,17525 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,36420 ,2,14979,290345 ,2,829,45 ,1,0,128445 ,1,1,128435 ,2,14956,2855 ,2,822,17550 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390750 ,2,829,45 ,2,14956,2855 ,2,822,17570 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390685 ,2,829,45 ,1,0,128485 ,1,1,128475 ,1,2,128455 ,2,14956,184135 ,2,822,17595 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36580 ,2,14979,379140 ,2,829,45 ,2,14956,184175 ,2,822,17595 ,2,14975,561870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408570 ,2,829,45 ,1,0,128550 ,1,1,128540 ,1,2,128530 ,2,14956,184230 ,2,822,17605 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256365 ,2,14979,290505 ,2,829,45 ,2,14956,184240 ,2,822,17605 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256395 ,2,14979,408575 ,2,829,45 ,1,0,128575 ,1,1,128560 ,2,14956,180615 ,2,822,17605 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256405 ,2,14979,408580 ,2,829,45 ,2,14956,180325 ,2,822,17605 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256415 ,2,14979,408595 ,2,829,45 ,1,0,128605 ,1,1,128595 ,1,2,128585 ,2,14956,2855 ,2,822,17625 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414865 ,2,829,45 ,2,14956,184360 ,2,822,17665 ,2,14975,561925 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408600 ,2,829,45 ,1,0,128655 ,1,1,128645 ,2,14956,184395 ,2,822,17675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36770 ,2,14979,290550 ,2,829,45 ,2,14956,184415 ,2,822,17675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36780 ,2,14979,290560 ,2,829,45 ,2,14956,182555 ,2,822,17675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,36790 ,2,14979,290570 ,2,829,45 ,1,0,128665 ,2,14956,184440 ,2,822,17675 ,2,14975,561930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,184450 ,2,822,17675 ,2,14975,561930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,128745 ,1,1,128720 ,1,2,128710 ,1,3,128675 ,2,14956,184505 ,2,822,17675 ,2,14975,561935 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256425 ,2,14979,408605 ,2,829,45 ,2,14956,184535 ,2,822,17690 ,2,14975,599880 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,36850 ,2,14979,290605 ,2,829,45 ,1,0,127260 ,1,1,127225 ,1,2,128755 ,2,14956,184550 ,2,822,17690 ,2,14975,561960 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,290615 ,2,829,45 ,1,0,127195 ,2,14956,184560 ,2,822,17690 ,2,14975,561940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408610 ,2,829,45 ,1,0,126575 ,1,1,126945 ,1,2,128785 ,1,3,128775 ,1,4,127055 ,1,5,127095 ,1,6,127045 ,1,7,128795 ,1,8,128815 ,1,9,128765 ,1,10,127035 ,1,11,126990 ,1,12,128825 ,1,13,127085 ,1,14,126980 ,1,15,128805 ,1,16,127075 ,2,14956,2855 ,2,822,17700 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414930 ,2,829,45 ,2,14956,6245 ,2,822,17710 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388450 ,2,829,45 ,1,0,128835 ,2,14956,13210 ,2,822,17710 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395875 ,2,829,45 ,2,14956,184630 ,2,822,17710 ,2,14975,561970 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,290635 ,2,829,45 ,1,0,128950 ,1,1,128900 ,1,2,128890 ,1,3,128880 ,1,4,128870 ,1,5,128855 ,1,6,126295 ,1,7,128970 ,1,8,128845 ,2,14956,2855 ,2,822,17720 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414870 ,2,829,45 ,1,0,3010 ,1,1,237320 ,2,14956,2855 ,2,822,17780 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390720 ,2,829,45 ,1,0,126850 ,1,1,104785 ,1,2,129050 ,1,3,107445 ,1,4,104855 ,2,14956,6245 ,2,822,17780 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388455 ,2,829,45 ,1,0,126850 ,1,1,104785 ,2,14956,13210 ,2,822,17780 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395880 ,2,829,45 ,1,0,126850 ,1,1,104785 ,1,2,66360 ,1,3,129315 ,1,4,129185 ,1,5,129145 ,1,6,129120 ,1,7,129100 ,1,8,125320 ,2,14956,170435 ,2,822,17780 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382870 ,2,829,45 ,1,0,100 ,1,1,574260 ,2,14956,169490 ,2,822,17780 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380855 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,184680 ,2,822,17780 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,563735 ,1,3,574290 ,1,4,568430 ,1,5,568430 ,2,14956,184715 ,2,822,17780 ,2,14975,561980 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,85115 ,1,1,104410 ,1,2,57795 ,2,14956,184735 ,2,822,50020 ,2,14975,599870 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256435 ,2,14979,408640 ,2,829,45 ,1,0,125665 ,1,1,129255 ,2,14956,184760 ,2,822,50030 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256445 ,2,14979,290675 ,2,829,45 ,1,0,125995 ,1,1,126005 ,1,2,126095 ,1,3,125945 ,1,4,125800 ,1,5,129305 ,1,6,129275 ,1,7,129315 ,1,8,125785 ,1,9,125485 ,1,10,126115 ,1,11,126085 ,1,12,125900 ,1,13,129295 ,1,14,125870 ,1,15,125820 ,1,16,126135 ,1,17,126015 ,1,18,125830 ,1,19,126175 ,1,20,125985 ,1,21,125775 ,1,22,129265 ,1,23,126125 ,1,24,125915 ,1,25,126185 ,1,26,130090 ,1,27,129325 ,1,28,126105 ,1,29,126145 ,1,30,125810 ,1,31,125925 ,1,32,125880 ,2,14956,184780 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290685 ,2,829,45 ,2,14956,184790 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290705 ,2,829,45 ,2,14956,184840 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290715 ,2,829,45 ,1,0,126055 ,2,14956,184850 ,2,822,17790 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256445 ,2,14979,2415 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,354680 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,354670 ,1,9,354660 ,2,14956,184860 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,184870 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,129355 ,2,14956,184880 ,2,822,17790 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,290725 ,2,829,45 ,2,14956,184890 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290735 ,2,829,45 ,1,0,129375 ,1,1,129365 ,2,14956,184910 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290745 ,2,829,45 ,2,14956,184900 ,2,822,18005 ,2,14975,561990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,290755 ,2,829,45 ,1,0,129420 ,1,1,129385 ,2,14956,184950 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290765 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354630 ,1,3,65 ,2,14956,184960 ,2,822,17790 ,2,14975,561985 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,290775 ,2,829,45 ,2,14956,184970 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,129430 ,2,14956,2855 ,2,822,17790 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390640 ,2,829,45 ,1,0,3010 ,1,1,237740 ,1,2,237730 ,1,3,237720 ,2,14956,184980 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,184995 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290815 ,2,829,45 ,2,14956,185005 ,2,822,17790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,129500 ,1,1,129440 ,2,14956,185025 ,2,822,17800 ,2,14975,562030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,290835 ,2,829,45 ,2,14956,185055 ,2,822,17800 ,2,14975,562040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290875 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,129705 ,1,3,65 ,1,4,129665 ,1,5,65 ,1,6,65 ,1,7,126530 ,1,8,129655 ,1,9,129645 ,1,10,129635 ,1,11,129625 ,1,12,65 ,1,13,129615 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,129605 ,1,20,129595 ,1,21,129565 ,1,22,128960 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,129555 ,1,27,129545 ,1,28,129535 ,1,29,129520 ,1,30,125535 ,1,31,65 ,1,32,129510 ,1,33,126045 ,2,14956,185065 ,2,822,17800 ,2,14975,562040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290920 ,2,829,45 ,1,0,126045 ,1,1,125535 ,1,2,129545 ,1,3,129565 ,1,4,129555 ,1,5,129615 ,1,6,129645 ,1,7,129655 ,1,8,129705 ,1,9,129605 ,1,10,129635 ,1,11,129535 ,1,12,129520 ,1,13,129665 ,1,14,129595 ,1,15,129625 ,1,16,128960 ,1,17,126530 ,1,18,129510 ,2,14956,185085 ,2,822,17800 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37165 ,2,14979,290940 ,2,829,45 ,2,14956,185120 ,2,822,17800 ,2,14975,561570 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37175 ,2,14979,290885 ,2,829,45 ,2,14956,185140 ,2,822,17800 ,2,14975,561520 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,37185 ,2,14979,290950 ,2,829,45 ,1,0,259155 ,1,1,259145 ,1,2,259090 ,1,3,259135 ,2,14956,185185 ,2,822,17800 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37195 ,2,14979,290960 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,125665 ,1,3,65 ,1,4,126925 ,1,5,126935 ,1,6,65 ,1,7,65 ,1,8,125755 ,1,9,125600 ,1,10,125645 ,1,11,65 ,1,12,125555 ,1,13,125700 ,1,14,129765 ,1,15,65 ,1,16,125655 ,1,17,65 ,1,18,129755 ,1,19,125710 ,1,20,65 ,1,21,126075 ,1,22,125690 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,129735 ,1,27,126025 ,1,28,65 ,1,29,125590 ,1,30,65 ,1,31,125545 ,1,32,129725 ,1,33,129715 ,2,14956,185205 ,2,822,17800 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37205 ,2,14979,290970 ,2,829,45 ,1,0,3010 ,1,1,208615 ,1,2,237840 ,2,14956,185215 ,2,822,17800 ,2,14975,562045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290980 ,2,829,45 ,1,0,126025 ,1,1,125755 ,1,2,125555 ,1,3,125665 ,1,4,126075 ,1,5,129735 ,1,6,125710 ,1,7,125590 ,1,8,125690 ,1,9,125655 ,1,10,125645 ,1,11,125700 ,1,12,129725 ,1,13,129715 ,1,14,126925 ,1,15,125600 ,1,16,125545 ,1,17,126935 ,1,18,129755 ,1,19,129765 ,2,14956,185235 ,2,822,17800 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37215 ,2,14979,291020 ,2,829,45 ,1,0,616545 ,1,1,615295 ,1,2,65 ,1,3,354625 ,1,4,65 ,1,5,354610 ,1,6,65 ,1,7,354600 ,1,8,65 ,1,9,354590 ,1,10,65 ,1,11,65 ,1,12,354580 ,1,13,354570 ,1,14,65 ,1,15,354560 ,1,16,65 ,1,17,354520 ,1,18,354510 ,1,19,354500 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,354490 ,1,26,65 ,1,27,354475 ,1,28,65 ,1,29,354465 ,1,30,354455 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,185290 ,2,822,17800 ,2,14975,561520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37235 ,2,14979,290855 ,2,829,45 ,2,14956,180325 ,2,822,17800 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37245 ,2,14979,291030 ,2,829,45 ,1,0,129775 ,2,14956,185310 ,2,822,17800 ,2,14975,562030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,290845 ,2,829,45 ,2,14956,185335 ,2,822,17800 ,2,14975,561570 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37255 ,2,14979,290930 ,2,829,45 ,1,0,574410 ,2,14956,185345 ,2,822,17800 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291040 ,2,829,45 ,1,0,129825 ,1,1,129815 ,1,2,129805 ,1,3,129785 ,2,14956,185365 ,2,822,17800 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37265 ,2,14979,291055 ,2,829,45 ,2,14956,180615 ,2,822,17800 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37275 ,2,14979,291065 ,2,829,45 ,1,0,129875 ,1,1,128700 ,1,2,127360 ,1,3,129855 ,1,4,129835 ,2,14956,185410 ,2,822,17800 ,2,14975,562030 ,2,14976,24120 ,2,14977,37285 ,2,14965,45 ,2,14978,45 ,2,14979,291075 ,2,829,45 ,1,0,100 ,1,1,573850 ,1,2,599880 ,2,14956,185430 ,2,822,17800 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37295 ,2,14979,291085 ,2,829,45 ,2,14956,185450 ,2,822,17800 ,2,14975,561570 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,37305 ,2,14979,291010 ,2,829,45 ,2,14956,185485 ,2,822,17800 ,2,14975,561995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408645 ,2,829,45 ,1,0,259270 ,2,14956,2855 ,2,822,17820 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390695 ,2,829,45 ,1,0,129185 ,1,1,129935 ,1,2,129925 ,1,3,129915 ,1,4,129885 ,1,5,129255 ,1,6,130080 ,1,7,129245 ,1,8,129215 ,1,9,129175 ,1,10,129145 ,2,14956,6245 ,2,822,17820 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388435 ,2,829,45 ,1,0,3010 ,1,1,234510 ,1,2,238185 ,2,14956,13210 ,2,822,17820 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395840 ,2,829,45 ,2,14956,185545 ,2,822,17840 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291130 ,2,829,45 ,1,0,259285 ,2,14956,185565 ,2,822,17840 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,37460 ,2,14979,291145 ,2,829,45 ,1,0,129970 ,1,1,129120 ,1,2,129005 ,1,3,129070 ,1,4,130070 ,1,5,129080 ,1,6,129090 ,1,7,129960 ,1,8,129050 ,1,9,129100 ,2,14956,182555 ,2,822,17840 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37470 ,2,14979,291155 ,2,829,45 ,2,14956,185625 ,2,822,17840 ,2,14975,562075 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,291165 ,2,829,45 ,1,0,129990 ,1,1,129165 ,1,2,129025 ,1,3,129980 ,2,14956,2855 ,2,822,17850 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390700 ,2,829,45 ,2,14956,6245 ,2,822,17850 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388440 ,2,829,45 ,1,0,130050 ,1,1,129015 ,1,2,125320 ,1,3,130060 ,1,4,130040 ,2,14956,13210 ,2,822,17850 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395845 ,2,829,45 ,1,0,3010 ,1,1,238365 ,2,14956,185830 ,2,822,17850 ,2,14975,562120 ,2,14976,35410 ,2,14977,37500 ,2,14965,45 ,2,14978,45 ,2,14979,291195 ,2,829,45 ,1,0,238400 ,1,1,45 ,2,14956,185860 ,2,822,17875 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,37530 ,2,14979,291205 ,2,829,45 ,1,0,130110 ,2,14956,182555 ,2,822,17875 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37545 ,2,14979,291215 ,2,829,45 ,2,14956,185895 ,2,822,17875 ,2,14975,562125 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,291225 ,2,829,45 ,1,0,130200 ,1,1,130190 ,1,2,130180 ,1,3,130155 ,2,14956,2855 ,2,822,17885 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414790 ,2,829,45 ,1,0,125280 ,1,1,125270 ,1,2,125260 ,2,14956,186065 ,2,822,17895 ,2,14975,110 ,2,14976,24120 ,2,14977,37610 ,2,14965,45 ,2,14978,45 ,2,14979,291250 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,238530 ,1,3,238520 ,1,4,238510 ,1,5,175900 ,2,14956,175785 ,2,822,17895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,291270 ,2,829,45 ,1,0,130145 ,2,14956,179275 ,2,822,17895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37650 ,2,14979,291310 ,2,829,45 ,2,14956,186085 ,2,822,17895 ,2,14975,562135 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,291320 ,2,829,45 ,1,0,130235 ,1,1,130210 ,2,14956,186095 ,2,822,17895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291340 ,2,829,45 ,2,14956,182390 ,2,822,17895 ,2,14975,562140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382825 ,2,829,45 ,1,0,130245 ,2,14956,182380 ,2,822,17895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37660 ,2,14979,291360 ,2,829,45 ,2,14956,186130 ,2,822,17895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37670 ,2,14979,291370 ,2,829,45 ,1,0,130485 ,1,1,130475 ,1,2,130460 ,1,3,130450 ,1,4,130440 ,1,5,130430 ,1,6,130415 ,1,7,130405 ,1,8,130395 ,1,9,130370 ,1,10,130350 ,1,11,130305 ,1,12,130285 ,1,13,130255 ,2,14956,186170 ,2,822,17895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37680 ,2,14979,291380 ,2,829,45 ,1,0,100 ,1,1,570460 ,2,14956,186200 ,2,822,17895 ,2,14975,562145 ,2,14976,23450 ,2,14977,37695 ,2,14965,45 ,2,14978,45 ,2,14979,291405 ,2,829,45 ,1,0,100 ,1,1,570630 ,2,14956,186230 ,2,822,17895 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,37705 ,2,14979,291435 ,2,829,45 ,1,0,100 ,1,1,570620 ,2,14956,186290 ,2,822,17895 ,2,14975,562150 ,2,14976,24020 ,2,14977,37715 ,2,14965,45 ,2,14978,45 ,2,14979,291445 ,2,829,45 ,2,14956,186310 ,2,822,17895 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,37725 ,2,14979,291475 ,2,829,45 ,1,0,130505 ,1,1,130165 ,1,2,130495 ,2,14956,186330 ,2,822,17895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37750 ,2,14979,291350 ,2,829,45 ,2,14956,186405 ,2,822,17895 ,2,14975,562175 ,2,14976,25600 ,2,14977,37760 ,2,14965,45 ,2,14978,45 ,2,14979,291500 ,2,829,45 ,1,0,130600 ,1,1,130590 ,1,2,130575 ,1,3,130565 ,1,4,130555 ,1,5,130545 ,2,14956,186425 ,2,822,17895 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,37770 ,2,14979,291415 ,2,829,45 ,1,0,124575 ,1,1,130575 ,1,2,124585 ,1,3,130590 ,2,14956,186455 ,2,822,17895 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,37780 ,2,14979,291465 ,2,829,45 ,2,14956,186465 ,2,822,17895 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,291520 ,2,829,45 ,1,0,130665 ,2,14956,186485 ,2,822,17895 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,37800 ,2,14979,291260 ,2,829,45 ,2,14956,186530 ,2,822,17895 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,37810 ,2,14979,291530 ,2,829,45 ,1,0,130695 ,1,1,130675 ,2,14956,186550 ,2,822,17895 ,2,14975,562180 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,37820 ,2,14979,291510 ,2,829,45 ,2,14956,182555 ,2,822,17895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,37830 ,2,14979,291330 ,2,829,45 ,1,0,130715 ,1,1,130705 ,2,14956,186575 ,2,822,17895 ,2,14975,562185 ,2,14976,24020 ,2,14977,37865 ,2,14965,45 ,2,14978,45 ,2,14979,291550 ,2,829,45 ,2,14956,186595 ,2,822,17895 ,2,14975,562190 ,2,14976,24020 ,2,14977,37875 ,2,14965,45 ,2,14978,45 ,2,14979,291560 ,2,829,45 ,1,0,130765 ,1,1,130725 ,2,14956,186630 ,2,822,17895 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,37885 ,2,14979,291570 ,2,829,45 ,2,14956,186650 ,2,822,17895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37895 ,2,14979,291610 ,2,829,45 ,1,0,130815 ,1,1,130795 ,1,2,130775 ,2,14956,186675 ,2,822,17895 ,2,14975,562200 ,2,14976,24020 ,2,14977,37910 ,2,14965,45 ,2,14978,45 ,2,14979,291620 ,2,829,45 ,2,14956,176795 ,2,822,17905 ,2,14975,562205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37940 ,2,14979,291655 ,2,829,45 ,1,0,130825 ,2,14956,4685 ,2,822,17905 ,2,14975,562205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382115 ,2,829,45 ,2,14956,166650 ,2,822,17905 ,2,14975,562205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37975 ,2,14979,291665 ,2,829,45 ,1,0,130845 ,1,1,130835 ,2,14956,8315 ,2,822,17905 ,2,14975,562205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374960 ,2,829,45 ,2,14956,176805 ,2,822,17905 ,2,14975,562205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,37985 ,2,14979,291675 ,2,829,45 ,1,0,130890 ,1,1,130880 ,2,14956,5060 ,2,822,17905 ,2,14975,562205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374405 ,2,829,45 ,2,14956,2855 ,2,822,17905 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390605 ,2,829,45 ,1,0,130900 ,2,14956,6245 ,2,822,17905 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388400 ,2,829,45 ,2,14956,13210 ,2,822,17905 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395795 ,2,829,45 ,1,0,130925 ,1,1,130910 ,2,14956,179555 ,2,822,17905 ,2,14975,562205 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,291685 ,2,829,45 ,2,14956,2855 ,2,822,17930 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414805 ,2,829,45 ,1,0,130935 ,2,14956,186795 ,2,822,17940 ,2,14975,562230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408650 ,2,829,45 ,2,14956,2855 ,2,822,17950 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414890 ,2,829,45 ,1,0,130955 ,1,1,130945 ,2,14956,182380 ,2,822,17985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,38175 ,2,14979,291720 ,2,829,45 ,2,14956,182390 ,2,822,17985 ,2,14975,562245 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382835 ,2,829,45 ,1,0,130995 ,2,14956,186905 ,2,822,17985 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,38185 ,2,14979,291730 ,2,829,45 ,2,14956,186980 ,2,822,17985 ,2,14975,110 ,2,14976,24120 ,2,14977,38195 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,187005 ,2,822,17985 ,2,14975,110 ,2,14976,38230 ,2,14977,38220 ,2,14965,45 ,2,14978,38205 ,2,14979,291740 ,2,829,45 ,1,0,131015 ,1,1,131005 ,2,14956,187290 ,2,822,17985 ,2,14975,110 ,2,14976,38250 ,2,14977,38240 ,2,14965,45 ,2,14978,45 ,2,14979,291750 ,2,829,45 ,2,14956,182555 ,2,822,17985 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,38290 ,2,14979,291760 ,2,829,45 ,1,0,131040 ,1,1,131025 ,2,14956,187310 ,2,822,17985 ,2,14975,562240 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,291770 ,2,829,45 ,2,14956,187330 ,2,822,17995 ,2,14975,562250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408655 ,2,829,45 ,1,0,131060 ,1,1,131050 ,2,14956,180645 ,2,822,18015 ,2,14975,562300 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291805 ,2,829,45 ,2,14956,187390 ,2,822,18015 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,38365 ,2,14979,291835 ,2,829,45 ,1,0,131385 ,1,1,131375 ,1,2,131360 ,1,3,131350 ,1,4,131070 ,2,14956,187410 ,2,822,18015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,38405 ,2,14979,291845 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,358805 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,358795 ,1,9,358785 ,2,14956,166660 ,2,822,18015 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,76720 ,2,14979,376815 ,2,829,45 ,2,14956,166660 ,2,822,18015 ,2,14975,599870 ,2,14976,34015 ,2,14977,23120 ,2,14965,45 ,2,14978,229900 ,2,14979,291855 ,2,829,45 ,1,0,268720 ,1,1,45 ,1,2,45 ,2,14956,187420 ,2,822,18015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291865 ,2,829,45 ,1,0,30790 ,1,1,45 ,1,2,30810 ,1,3,614705 ,2,14956,187430 ,2,822,18015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291915 ,2,829,45 ,2,14956,187440 ,2,822,18015 ,2,14975,562260 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,291925 ,2,829,45 ,1,0,131220 ,1,1,131210 ,1,2,131185 ,1,3,131175 ,1,4,131165 ,1,5,131155 ,1,6,131140 ,1,7,131130 ,1,8,131120 ,1,9,131110 ,2,14956,187450 ,2,822,18015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,291955 ,2,829,45 ,1,0,3010 ,1,1,231955 ,1,2,183245 ,1,3,182890 ,2,14956,180075 ,2,822,18015 ,2,14975,562300 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,291975 ,2,829,45 ,2,14956,166670 ,2,822,18015 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,76720 ,2,14979,376400 ,2,829,45 ,1,0,131340 ,1,1,131330 ,1,2,131285 ,1,3,131275 ,1,4,131265 ,1,5,131255 ,1,6,131240 ,1,7,131230 ,2,14956,182555 ,2,822,18015 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,38425 ,2,14979,291935 ,2,829,45 ,1,0,123160 ,1,1,66360 ,2,14956,187500 ,2,822,18015 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,38435 ,2,14979,291815 ,2,829,45 ,2,14956,187520 ,2,822,18015 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,38445 ,2,14979,292025 ,2,829,45 ,1,0,268730 ,1,1,45 ,1,2,45 ,2,14956,187540 ,2,822,18015 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,38455 ,2,14979,378560 ,2,829,45 ,1,0,45 ,1,1,30855 ,1,2,30885 ,1,3,45 ,1,4,30875 ,1,5,616170 ,2,14956,187560 ,2,822,18015 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,38465 ,2,14979,291905 ,2,829,45 ,2,14956,187610 ,2,822,18015 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,38475 ,2,14979,353985 ,2,829,45 ,2,14956,187630 ,2,822,18015 ,2,14975,599870 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,38510 ,2,14979,291985 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,131655 ,1,5,131645 ,1,6,131620 ,1,7,131610 ,1,8,131600 ,1,9,131590 ,1,10,131580 ,1,11,65 ,1,12,131570 ,1,13,65 ,1,14,131560 ,1,15,131550 ,1,16,131505 ,1,17,65 ,1,18,131495 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,131485 ,1,23,65 ,1,24,65 ,1,25,131455 ,1,26,131445 ,1,27,131435 ,1,28,65 ,1,29,131425 ,1,30,131405 ,1,31,65 ,1,32,131395 ,1,33,65 ,2,14956,187660 ,2,822,18015 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,38520 ,2,14979,292035 ,2,829,45 ,1,0,118960 ,1,1,118950 ,1,2,118940 ,1,3,103320 ,2,14956,187680 ,2,822,18015 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,38530 ,2,14979,291965 ,2,829,45 ,1,0,3010 ,1,1,239350 ,1,2,239340 ,1,3,209850 ,1,4,239330 ,1,5,239320 ,1,6,209800 ,2,14956,187715 ,2,822,18015 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,38540 ,2,14979,292045 ,2,829,45 ,1,0,57710 ,1,1,131485 ,1,2,131570 ,2,14956,2855 ,2,822,18030 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390645 ,2,829,45 ,1,0,100830 ,2,14956,2855 ,2,822,18040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414875 ,2,829,45 ,1,0,131600 ,1,1,131425 ,1,2,131620 ,1,3,131645 ,1,4,131455 ,1,5,131655 ,1,6,131550 ,1,7,131610 ,1,8,131590 ,1,9,131495 ,1,10,131505 ,1,11,131405 ,1,12,131435 ,1,13,131560 ,1,14,131580 ,1,15,131395 ,1,16,131445 ,1,17,131485 ,1,18,131570 ,2,14956,2855 ,2,822,18050 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414810 ,2,829,45 ,2,14956,2855 ,2,822,18060 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414740 ,2,829,45 ,1,0,131770 ,1,1,131760 ,1,2,131475 ,1,3,131720 ,1,4,131710 ,1,5,131690 ,1,6,131665 ,2,14956,2855 ,2,822,18115 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414860 ,2,829,45 ,2,14956,2855 ,2,822,18125 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390725 ,2,829,45 ,1,0,131790 ,1,1,131780 ,2,14956,6245 ,2,822,18125 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414265 ,2,829,45 ,2,14956,13210 ,2,822,18125 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395885 ,2,829,45 ,1,0,131820 ,1,1,131810 ,1,2,131800 ,2,14956,2855 ,2,822,18145 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390665 ,2,829,45 ,1,0,57795 ,1,1,95225 ,1,2,95030 ,2,14956,2855 ,2,822,18155 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390690 ,2,829,45 ,2,14956,179555 ,2,822,18155 ,2,14975,562375 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,292055 ,2,829,45 ,1,0,131830 ,1,1,122770 ,2,14956,188040 ,2,822,18185 ,2,14975,562205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292075 ,2,829,45 ,2,14956,180635 ,2,822,18185 ,2,14975,562405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292085 ,2,829,45 ,1,0,268840 ,1,1,268765 ,1,2,45 ,2,14956,180645 ,2,822,18185 ,2,14975,562405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292095 ,2,829,45 ,1,0,28630 ,1,1,28675 ,1,2,45 ,1,3,31435 ,1,4,31075 ,1,5,28640 ,1,6,30965 ,1,7,45 ,1,8,30955 ,1,9,45 ,1,10,45 ,1,11,30945 ,1,12,30915 ,1,13,30905 ,1,14,621000 ,2,14956,166660 ,2,822,18185 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,77155 ,2,14979,377495 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,358880 ,1,5,358870 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,358845 ,2,14956,166660 ,2,822,18185 ,2,14975,599870 ,2,14976,34015 ,2,14977,23120 ,2,14965,45 ,2,14978,229910 ,2,14979,292120 ,2,829,45 ,2,14956,188050 ,2,822,18185 ,2,14975,599940 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,131900 ,2,14956,188060 ,2,822,18185 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292130 ,2,829,45 ,2,14956,6245 ,2,822,18185 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388405 ,2,829,45 ,1,0,131930 ,1,1,131920 ,1,2,131910 ,2,14956,166670 ,2,822,18185 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,77155 ,2,14979,377000 ,2,829,45 ,2,14956,13210 ,2,822,18185 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395800 ,2,829,45 ,2,14956,180325 ,2,822,18185 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,574930 ,2,14956,180305 ,2,822,18185 ,2,14975,562405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292140 ,2,829,45 ,2,14956,188070 ,2,822,18185 ,2,14975,562400 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,292150 ,2,829,45 ,1,0,268765 ,1,1,45 ,1,2,45 ,2,14956,188080 ,2,822,18185 ,2,14975,562400 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,292160 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,31065 ,1,3,31020 ,1,4,31010 ,1,5,30975 ,1,6,31000 ,1,7,613975 ,2,14956,2855 ,2,822,18185 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390610 ,2,829,45 ,2,14956,188090 ,2,822,18185 ,2,14975,562205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292170 ,2,829,45 ,1,0,131960 ,1,1,131950 ,2,14956,180615 ,2,822,18185 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,188135 ,2,822,18185 ,2,14975,562400 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,292180 ,2,829,45 ,1,0,131980 ,1,1,131970 ,2,14956,188145 ,2,822,18185 ,2,14975,562405 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292190 ,2,829,45 ,2,14956,188155 ,2,822,18185 ,2,14975,562205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292220 ,2,829,45 ,2,14956,188165 ,2,822,18185 ,2,14975,562205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292230 ,2,829,45 ,1,0,132175 ,1,1,132135 ,1,2,132125 ,1,3,132115 ,1,4,132105 ,1,5,132085 ,1,6,132075 ,1,7,132065 ,1,8,132055 ,1,9,131990 ,2,14956,2855 ,2,822,18210 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414780 ,2,829,45 ,1,0,132065 ,1,1,66360 ,1,2,104410 ,1,3,57795 ,2,14956,2855 ,2,822,18220 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414820 ,2,829,45 ,1,0,100 ,1,1,575000 ,2,14956,2855 ,2,822,18230 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390680 ,2,829,45 ,1,0,131990 ,2,14956,2855 ,2,822,18240 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414855 ,2,829,45 ,2,14956,188385 ,2,822,18265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,39185 ,2,14979,292250 ,2,829,45 ,1,0,132290 ,1,1,132275 ,1,2,132265 ,1,3,132255 ,1,4,132245 ,1,5,132185 ,2,14956,188395 ,2,822,18265 ,2,14975,562465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292265 ,2,829,45 ,1,0,56200 ,2,14956,182555 ,2,822,18265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,39200 ,2,14979,292275 ,2,829,45 ,1,0,575045 ,2,14956,188415 ,2,822,18265 ,2,14975,562460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292285 ,2,829,45 ,1,0,625595 ,1,1,615295 ,1,2,133660 ,1,3,133650 ,1,4,65 ,1,5,133640 ,1,6,133620 ,1,7,65 ,1,8,132195 ,1,9,133610 ,1,10,133600 ,1,11,132205 ,1,12,133590 ,1,13,65 ,1,14,133570 ,1,15,65 ,1,16,133550 ,1,17,133505 ,1,18,65 ,1,19,65 ,1,20,133495 ,1,21,133485 ,1,22,133470 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,133460 ,1,27,133450 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,133440 ,1,33,133400 ,1,34,65 ,1,35,133390 ,1,36,133200 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,133190 ,1,41,65 ,1,42,65 ,1,43,133180 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,133170 ,1,48,65 ,1,49,133160 ,1,50,133150 ,1,51,133140 ,1,52,133100 ,1,53,65 ,1,54,133090 ,1,55,65 ,1,56,133080 ,1,57,133070 ,1,58,65 ,1,59,133050 ,1,60,133000 ,1,61,132470 ,1,62,132460 ,1,63,65 ,1,64,132300 ,1,65,65 ,2,14956,188560 ,2,822,16275 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292295 ,2,829,45 ,2,14956,2855 ,2,822,16275 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390785 ,2,829,45 ,1,0,268775 ,1,1,45 ,1,2,45 ,2,14956,6245 ,2,822,16275 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388470 ,2,829,45 ,1,0,45 ,1,1,132420 ,1,2,31115 ,1,3,45 ,1,4,31095 ,1,5,132310 ,1,6,132430 ,1,7,613975 ,2,14956,13210 ,2,822,16275 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395910 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358890 ,1,3,65 ,2,14956,188570 ,2,822,16275 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292325 ,2,829,45 ,2,14956,188580 ,2,822,16275 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292335 ,2,829,45 ,1,0,132450 ,2,14956,188605 ,2,822,18285 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292355 ,2,829,45 ,2,14956,188615 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292375 ,2,829,45 ,1,0,132440 ,1,1,132410 ,1,2,132400 ,1,3,132360 ,1,4,132350 ,1,5,132340 ,1,6,132320 ,2,14956,188625 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292385 ,2,829,45 ,1,0,132420 ,1,1,132430 ,1,2,132310 ,2,14956,188665 ,2,822,18285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,39310 ,2,14979,292395 ,2,829,45 ,1,0,132420 ,1,1,100830 ,1,2,132320 ,2,14956,188675 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292420 ,2,829,45 ,1,0,3010 ,1,1,5845 ,1,2,240265 ,1,3,212880 ,1,4,185785 ,1,5,182890 ,1,6,240255 ,1,7,240220 ,1,8,231915 ,1,9,231925 ,1,10,231945 ,1,11,240210 ,2,14956,188685 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292430 ,2,829,45 ,2,14956,188695 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292440 ,2,829,45 ,1,0,268785 ,1,1,45 ,1,2,45 ,2,14956,188715 ,2,822,18285 ,2,14975,599880 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,39325 ,2,14979,292450 ,2,829,45 ,1,0,31125 ,1,1,45 ,1,2,613640 ,2,14956,188725 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292460 ,2,829,45 ,2,14956,188735 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292470 ,2,829,45 ,1,0,132515 ,1,1,132535 ,1,2,132525 ,2,14956,188780 ,2,822,18285 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,39335 ,2,14979,292365 ,2,829,45 ,2,14956,188800 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,39345 ,2,14979,292480 ,2,829,45 ,1,0,268795 ,1,1,45 ,1,2,45 ,2,14956,188820 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,39355 ,2,14979,292490 ,2,829,45 ,1,0,31145 ,1,1,45 ,1,2,613640 ,2,14956,188830 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292515 ,2,829,45 ,2,14956,188840 ,2,822,18285 ,2,14975,562475 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292525 ,2,829,45 ,1,0,132545 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,39415 ,2,14977,39405 ,2,14965,45 ,2,14978,250380 ,2,14979,2415 ,2,829,45 ,1,0,100830 ,1,1,132555 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,39395 ,2,14977,39385 ,2,14965,45 ,2,14978,250390 ,2,14979,2415 ,2,829,45 ,2,14956,188880 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292535 ,2,829,45 ,1,0,268810 ,1,1,45 ,1,2,45 ,2,14956,188890 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292545 ,2,829,45 ,1,0,45 ,1,1,31190 ,1,2,613640 ,2,14956,188900 ,2,822,18285 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,292555 ,2,829,45 ,2,14956,188910 ,2,822,18285 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292565 ,2,829,45 ,1,0,132660 ,1,1,132645 ,1,2,132635 ,1,3,132575 ,1,4,132625 ,1,5,132615 ,1,6,132585 ,1,7,132555 ,2,14956,188925 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292575 ,2,829,45 ,1,0,103040 ,1,1,97595 ,1,2,97585 ,2,14956,188935 ,2,822,18285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,292585 ,2,829,45 ,1,0,100 ,1,1,575125 ,2,14956,189005 ,2,822,50040 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,64645 ,2,14979,284645 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359835 ,1,3,65 ,2,14956,189035 ,2,822,16220 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,284625 ,2,829,45 ,2,14956,189055 ,2,822,16220 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256505 ,2,14979,414440 ,2,829,45 ,2,14956,189065 ,2,822,16220 ,2,14975,559680 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256020 ,2,14979,2415 ,2,829,45 ,1,0,268820 ,1,1,45 ,1,2,45 ,2,14956,189085 ,2,822,18320 ,2,14975,562505 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,132680 ,2,14956,189125 ,2,822,18330 ,2,14975,599880 ,2,14976,23130 ,2,14977,39515 ,2,14965,45 ,2,14978,45 ,2,14979,292630 ,2,829,45 ,1,0,45 ,1,1,31355 ,1,2,31345 ,1,3,31335 ,1,4,31315 ,1,5,31305 ,1,6,31295 ,1,7,31285 ,1,8,45 ,1,9,45 ,1,10,31210 ,1,11,31220 ,1,12,132680 ,1,13,45 ,1,14,31250 ,1,15,45 ,1,16,31240 ,1,17,626560 ,2,14956,189135 ,2,822,18330 ,2,14975,562510 ,2,14976,24020 ,2,14977,39525 ,2,14965,45 ,2,14978,45 ,2,14979,292640 ,2,829,45 ,2,14956,189165 ,2,822,18350 ,2,14975,562535 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,132735 ,1,1,132725 ,1,2,132715 ,1,3,132690 ,2,14956,189230 ,2,822,50050 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256515 ,2,14979,292685 ,2,829,45 ,2,14956,189250 ,2,822,50065 ,2,14975,562590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256525 ,2,14979,292695 ,2,829,45 ,1,0,132820 ,1,1,132790 ,1,2,132780 ,1,3,132760 ,1,4,132745 ,2,14956,4490 ,2,822,16015 ,2,14975,110 ,2,14976,39650 ,2,14977,39635 ,2,14965,45 ,2,14978,250400 ,2,14979,2415 ,2,829,45 ,1,0,106375 ,1,1,106385 ,2,14956,189270 ,2,822,50075 ,2,14975,562590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256535 ,2,14979,292725 ,2,829,45 ,1,0,132680 ,1,1,105420 ,2,14956,189280 ,2,822,16015 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292735 ,2,829,45 ,2,14956,2855 ,2,822,16015 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,389800 ,2,829,45 ,2,14956,173980 ,2,822,16015 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386395 ,2,829,45 ,1,0,132830 ,2,14956,192830 ,2,822,16015 ,2,14975,110 ,2,14976,23130 ,2,14977,41595 ,2,14965,45 ,2,14978,81410 ,2,14979,292745 ,2,829,45 ,2,14956,192795 ,2,822,18385 ,2,14975,562600 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256545 ,2,14979,2415 ,2,829,45 ,1,0,132850 ,1,1,132840 ,2,14956,189335 ,2,822,50085 ,2,14975,562600 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256545 ,2,14979,292755 ,2,829,45 ,2,14956,4490 ,2,822,18385 ,2,14975,110 ,2,14976,39720 ,2,14977,39710 ,2,14965,45 ,2,14978,250410 ,2,14979,2415 ,2,829,45 ,1,0,132875 ,1,1,132865 ,2,14956,189585 ,2,822,18385 ,2,14975,562610 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256820 ,2,14979,2415 ,2,829,45 ,2,14956,189445 ,2,822,50125 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256565 ,2,14979,292775 ,2,829,45 ,2,14956,189425 ,2,822,50095 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,39785 ,2,14979,292795 ,2,829,45 ,1,0,132990 ,1,1,132980 ,1,2,132970 ,1,3,132940 ,1,4,132930 ,1,5,132920 ,1,6,132910 ,1,7,132885 ,2,14956,189435 ,2,822,50095 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,292785 ,2,829,45 ,1,0,100 ,1,1,575210 ,2,14956,189475 ,2,822,50095 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,39825 ,2,14979,292840 ,2,829,45 ,1,0,132885 ,1,1,132690 ,1,2,132715 ,2,14956,189485 ,2,822,50095 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292850 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359675 ,1,3,65 ,2,14956,189495 ,2,822,18395 ,2,14975,560655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292870 ,2,829,45 ,2,14956,189525 ,2,822,18395 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292860 ,2,829,45 ,1,0,132770 ,2,14956,187540 ,2,822,18395 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378745 ,2,829,45 ,2,14956,189535 ,2,822,18395 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292880 ,2,829,45 ,1,0,133150 ,1,1,133470 ,2,14956,3770 ,2,822,18395 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292890 ,2,829,45 ,1,0,100 ,1,1,566475 ,2,14956,189545 ,2,822,18395 ,2,14975,562615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,566390 ,2,14956,189555 ,2,822,18395 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256565 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,195325 ,1,2,11510 ,2,14956,189595 ,2,822,50135 ,2,14975,599870 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256575 ,2,14979,408670 ,2,829,45 ,1,0,3010 ,1,1,192820 ,1,2,179760 ,2,14956,192525 ,2,822,18385 ,2,14975,110 ,2,14976,23130 ,2,14977,41470 ,2,14965,45 ,2,14978,81240 ,2,14979,292900 ,2,829,45 ,1,0,133470 ,2,14956,178370 ,2,822,18405 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,78310 ,2,14979,395450 ,2,829,45 ,1,0,77900 ,1,1,77965 ,2,14956,178240 ,2,822,18405 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,229930 ,2,14979,292950 ,2,829,45 ,2,14956,179170 ,2,822,18405 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,78360 ,2,14979,2415 ,2,829,45 ,1,0,268830 ,1,1,45 ,1,2,45 ,2,14956,179120 ,2,822,18405 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,229940 ,2,14979,292960 ,2,829,45 ,1,0,31415 ,1,1,31405 ,1,2,45 ,1,3,45 ,1,4,31365 ,1,5,616170 ,2,14956,178240 ,2,822,18405 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,78310 ,2,14979,395340 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,354745 ,1,4,65 ,1,5,354715 ,2,14956,179120 ,2,822,18405 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,78360 ,2,14979,393245 ,2,829,45 ,2,14956,189645 ,2,822,18405 ,2,14975,562650 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,133230 ,2,14956,10540 ,2,822,50145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,292970 ,2,829,45 ,2,14956,189705 ,2,822,50155 ,2,14975,562675 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256600 ,2,14979,292985 ,2,829,45 ,1,0,133330 ,1,1,133290 ,1,2,133280 ,1,3,133270 ,1,4,133260 ,1,5,133250 ,1,6,133240 ,2,14956,171670 ,2,822,50165 ,2,14975,110 ,2,14976,39965 ,2,14977,24010 ,2,14965,45 ,2,14978,229950 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,241130 ,1,2,241120 ,1,3,241110 ,1,4,241100 ,2,14956,4490 ,2,822,18440 ,2,14975,110 ,2,14976,39955 ,2,14977,39945 ,2,14965,45 ,2,14978,250430 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,209400 ,1,2,241340 ,1,3,221020 ,1,4,241325 ,1,5,222235 ,1,6,241315 ,1,7,241305 ,1,8,241295 ,1,9,241265 ,1,10,241255 ,1,11,241245 ,1,12,241235 ,1,13,241220 ,1,14,241210 ,1,15,241200 ,1,16,241190 ,2,14956,189675 ,2,822,50165 ,2,14975,110 ,2,14976,39965 ,2,14977,24010 ,2,14965,45 ,2,14978,229960 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,2,14956,182390 ,2,822,50165 ,2,14975,558990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,229970 ,2,14979,2415 ,2,829,45 ,1,0,73405 ,2,14956,4490 ,2,822,18440 ,2,14975,558990 ,2,14976,39985 ,2,14977,39975 ,2,14965,45 ,2,14978,250440 ,2,14979,2415 ,2,829,45 ,2,14956,189685 ,2,822,50165 ,2,14975,562675 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,292995 ,2,829,45 ,1,0,133380 ,1,1,133370 ,1,2,133220 ,1,3,133360 ,1,4,133350 ,1,5,133340 ,2,14956,189750 ,2,822,50175 ,2,14975,562680 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256610 ,2,14979,293005 ,2,829,45 ,1,0,12445 ,1,1,209800 ,1,2,179760 ,1,3,241100 ,1,4,241130 ,1,5,241110 ,1,6,241120 ,1,7,175900 ,2,14956,4490 ,2,822,18440 ,2,14975,562685 ,2,14976,40005 ,2,14977,39995 ,2,14965,45 ,2,14978,250450 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,575310 ,2,14956,189810 ,2,822,18450 ,2,14975,558275 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293015 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,355010 ,1,3,65 ,1,4,65 ,1,5,355000 ,2,14956,189760 ,2,822,18450 ,2,14975,110 ,2,14976,40085 ,2,14977,23360 ,2,14965,45 ,2,14978,230000 ,2,14979,2415 ,2,829,45 ,2,14956,4490 ,2,822,18450 ,2,14975,110 ,2,14976,40075 ,2,14977,40065 ,2,14965,45 ,2,14978,250460 ,2,14979,2415 ,2,829,45 ,1,0,133540 ,2,14956,189780 ,2,822,14470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,40095 ,2,14979,293075 ,2,829,45 ,1,0,100 ,1,1,571455 ,2,14956,189800 ,2,822,14470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,40105 ,2,14979,293085 ,2,829,45 ,1,0,133400 ,1,1,132195 ,1,2,133485 ,1,3,133080 ,1,4,132470 ,1,5,133450 ,1,6,133640 ,1,7,133610 ,1,8,132205 ,1,9,133460 ,1,10,133090 ,1,11,132300 ,1,12,133590 ,1,13,133440 ,1,14,133570 ,1,15,133495 ,1,16,133660 ,1,17,133140 ,1,18,133070 ,1,19,133160 ,1,20,133620 ,1,21,133190 ,1,22,133470 ,1,23,133150 ,1,24,133050 ,1,25,133180 ,1,26,133390 ,1,27,133650 ,1,28,132460 ,1,29,133600 ,1,30,133505 ,1,31,133200 ,1,32,133550 ,1,33,133100 ,1,34,133170 ,1,35,133000 ,2,14956,6870 ,2,822,14470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363255 ,2,829,45 ,2,14956,189855 ,2,822,18450 ,2,14975,558275 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293065 ,2,829,45 ,1,0,133685 ,1,1,133670 ,2,14956,191675 ,2,822,18450 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293095 ,2,829,45 ,2,14956,191665 ,2,822,50185 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,293105 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,218370 ,1,3,222235 ,1,4,185785 ,1,5,185775 ,1,6,241770 ,1,7,184220 ,1,8,182815 ,1,9,211340 ,1,10,241760 ,1,11,183310 ,1,12,209800 ,1,13,186340 ,2,14956,189885 ,2,822,18460 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,40155 ,2,14979,293125 ,2,829,45 ,2,14956,189865 ,2,822,18460 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293170 ,2,829,45 ,1,0,268865 ,1,1,45 ,1,2,45 ,2,14956,189875 ,2,822,18460 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293135 ,2,829,45 ,1,0,31445 ,1,1,31515 ,1,2,45 ,1,3,45 ,1,4,31465 ,1,5,616170 ,2,14956,189910 ,2,822,50195 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256620 ,2,14979,293180 ,2,829,45 ,2,14956,189900 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256640 ,2,14979,2415 ,2,829,45 ,1,0,133770 ,1,1,133760 ,1,2,133750 ,1,3,133740 ,1,4,133705 ,2,14956,189930 ,2,822,50225 ,2,14975,558375 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256630 ,2,14979,293190 ,2,829,45 ,2,14956,189920 ,2,822,18460 ,2,14975,558375 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293200 ,2,829,45 ,1,0,133790 ,1,1,133780 ,2,14956,190000 ,2,822,50235 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256640 ,2,14979,293210 ,2,829,45 ,2,14956,189980 ,2,822,18460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293230 ,2,829,45 ,1,0,133810 ,1,1,133800 ,2,14956,189990 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293220 ,2,829,45 ,2,14956,190050 ,2,822,50245 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256650 ,2,14979,293240 ,2,829,45 ,1,0,133890 ,1,1,133880 ,1,2,133870 ,1,3,133860 ,1,4,133850 ,1,5,133840 ,1,6,133830 ,2,14956,190040 ,2,822,50185 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,40195 ,2,14979,293260 ,2,829,45 ,1,0,3010 ,1,1,213700 ,1,2,185775 ,1,3,212880 ,1,4,209800 ,2,14956,190185 ,2,822,18460 ,2,14975,562715 ,2,14976,36360 ,2,14977,40395 ,2,14965,45 ,2,14978,45 ,2,14979,293270 ,2,829,45 ,2,14956,166900 ,2,822,14470 ,2,14975,606515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374690 ,2,829,45 ,1,0,133970 ,1,1,133960 ,1,2,133950 ,1,3,133695 ,1,4,133940 ,1,5,133900 ,2,14956,190780 ,2,822,18460 ,2,14975,562715 ,2,14976,23450 ,2,14977,40775 ,2,14965,45 ,2,14978,45 ,2,14979,293495 ,2,829,45 ,1,0,124625 ,1,1,124345 ,2,14956,190240 ,2,822,18470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256660 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,175900 ,1,3,242505 ,1,4,242495 ,1,5,242480 ,1,6,242470 ,1,7,242460 ,1,8,242450 ,1,9,242420 ,1,10,242410 ,1,11,242400 ,1,12,242390 ,1,13,242370 ,1,14,242360 ,1,15,242350 ,1,16,242340 ,1,17,242315 ,1,18,242305 ,1,19,242295 ,1,20,242285 ,1,21,242275 ,1,22,242265 ,1,23,242255 ,1,24,242245 ,1,25,187230 ,1,26,187220 ,1,27,179640 ,1,28,11510 ,1,29,187075 ,1,30,187065 ,1,31,186960 ,1,32,242205 ,1,33,242195 ,1,34,182890 ,1,35,242185 ,1,36,226800 ,1,37,226790 ,1,38,242175 ,1,39,242165 ,1,40,242155 ,1,41,242145 ,1,42,242135 ,1,43,242100 ,1,44,242090 ,1,45,242080 ,1,46,242070 ,1,47,242055 ,1,48,242045 ,1,49,242035 ,1,50,242025 ,1,51,241995 ,1,52,241985 ,1,53,241975 ,2,14956,190215 ,2,822,18470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293630 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,1,40,100 ,1,41,100 ,1,42,100 ,1,43,100 ,1,44,100 ,1,45,100 ,1,46,100 ,1,47,100 ,1,48,100 ,1,49,100 ,1,50,100 ,1,51,100 ,1,52,100 ,1,53,100 ,2,14956,190260 ,2,822,18470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256670 ,2,14979,2415 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,369705 ,1,6,369695 ,1,7,369685 ,1,8,65 ,1,9,65 ,2,14956,190320 ,2,822,18470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,256695 ,2,14979,2415 ,2,829,45 ,2,14956,10080 ,2,822,18485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,78955 ,2,14979,381395 ,2,829,45 ,1,0,268875 ,1,1,45 ,1,2,45 ,2,14956,10080 ,2,822,18485 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230010 ,2,14979,293600 ,2,829,45 ,1,0,45 ,1,1,31535 ,1,2,31565 ,1,3,614705 ,2,14956,166985 ,2,822,18485 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,78955 ,2,14979,380885 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369675 ,1,3,65 ,2,14956,190290 ,2,822,18485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293610 ,2,829,45 ,2,14956,166680 ,2,822,18485 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377430 ,2,829,45 ,1,0,134015 ,1,1,134005 ,1,2,133995 ,2,14956,166935 ,2,822,18485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379315 ,2,829,45 ,2,14956,166900 ,2,822,18485 ,2,14975,608350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371575 ,2,829,45 ,1,0,134045 ,2,14956,166485 ,2,822,18485 ,2,14975,608350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374110 ,2,829,45 ,2,14956,10665 ,2,822,18485 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382460 ,2,829,45 ,1,0,269235 ,1,1,45 ,1,2,45 ,2,14956,166740 ,2,822,18485 ,2,14975,562755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375610 ,2,829,45 ,1,0,45 ,1,1,32685 ,1,2,32545 ,1,3,32535 ,1,4,31615 ,1,5,31575 ,1,6,45 ,1,7,45 ,1,8,31605 ,1,9,614020 ,2,14956,171330 ,2,822,18485 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353755 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,358210 ,1,3,65 ,1,4,65 ,1,5,358200 ,2,14956,190360 ,2,822,18485 ,2,14975,110 ,2,14976,24020 ,2,14977,40505 ,2,14965,45 ,2,14978,45 ,2,14979,293580 ,2,829,45 ,2,14956,175640 ,2,822,18485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293570 ,2,829,45 ,1,0,134055 ,2,14956,190730 ,2,822,13445 ,2,14975,562760 ,2,14976,23675 ,2,14977,40525 ,2,14965,45 ,2,14978,40515 ,2,14979,293640 ,2,829,45 ,2,14956,190450 ,2,822,50255 ,2,14975,562780 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256705 ,2,14979,293660 ,2,829,45 ,1,0,259570 ,2,14956,13210 ,2,822,18505 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395145 ,2,829,45 ,1,0,136470 ,1,1,136445 ,1,2,136435 ,1,3,136165 ,1,4,136155 ,1,5,136930 ,1,6,136145 ,1,7,134115 ,1,8,134105 ,1,9,134095 ,2,14956,6245 ,2,822,18505 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388020 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369490 ,1,3,65 ,2,14956,190510 ,2,822,50275 ,2,14975,562810 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256715 ,2,14979,293680 ,2,829,45 ,2,14956,175910 ,2,822,18515 ,2,14975,562785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256725 ,2,14979,413405 ,2,829,45 ,1,0,268885 ,1,1,45 ,1,2,45 ,2,14956,190540 ,2,822,50265 ,2,14975,562780 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256705 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,31625 ,1,2,613640 ,2,14956,190555 ,2,822,50265 ,2,14975,562810 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256715 ,2,14979,2415 ,2,829,45 ,2,14956,190575 ,2,822,13445 ,2,14975,562820 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,40645 ,2,14979,293705 ,2,829,45 ,1,0,134160 ,1,1,134170 ,1,2,134150 ,1,3,134125 ,2,14956,190610 ,2,822,13445 ,2,14975,562820 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,40655 ,2,14979,293715 ,2,829,45 ,2,14956,190630 ,2,822,13445 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,40665 ,2,14979,293725 ,2,829,45 ,1,0,268895 ,1,1,45 ,1,2,45 ,2,14956,190650 ,2,822,13445 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,40705 ,2,14979,293735 ,2,829,45 ,1,0,45 ,1,1,31655 ,1,2,613640 ,2,14956,190660 ,2,822,13445 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293770 ,2,829,45 ,2,14956,169900 ,2,822,13445 ,2,14975,562825 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393485 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369470 ,1,3,65 ,2,14956,170085 ,2,822,13445 ,2,14975,562850 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399955 ,2,829,45 ,2,14956,190670 ,2,822,13445 ,2,14975,562825 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293780 ,2,829,45 ,1,0,268910 ,1,1,45 ,1,2,45 ,2,14956,190740 ,2,822,50265 ,2,14975,562775 ,2,14976,23675 ,2,14977,40725 ,2,14965,45 ,2,14978,45 ,2,14979,293540 ,2,829,45 ,1,0,31675 ,1,1,45 ,1,2,613640 ,2,14956,13175 ,2,822,18545 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395085 ,2,829,45 ,2,14956,168920 ,2,822,18545 ,2,14975,608355 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416215 ,2,829,45 ,1,0,134205 ,1,1,135030 ,1,2,134195 ,1,3,134180 ,2,14956,190750 ,2,822,18545 ,2,14975,562855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,356750 ,1,3,356740 ,1,4,65 ,1,5,65 ,1,6,356685 ,1,7,356675 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,356665 ,1,15,65 ,1,16,356655 ,1,17,65 ,2,14956,190790 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,190800 ,2,822,18460 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293530 ,2,829,45 ,1,0,267720 ,1,1,267775 ,1,2,268920 ,1,3,268930 ,1,4,45 ,1,5,45 ,1,6,45 ,2,14956,190845 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,134215 ,2,14956,190855 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256735 ,2,14979,416535 ,2,829,45 ,1,0,31840 ,1,1,45 ,1,2,31830 ,1,3,31820 ,1,4,31810 ,1,5,45 ,1,6,31800 ,1,7,31780 ,1,8,31710 ,1,9,134215 ,1,10,31770 ,1,11,45 ,1,12,45 ,1,13,31730 ,1,14,621000 ,2,14956,190865 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256745 ,2,14979,415885 ,2,829,45 ,1,0,575535 ,2,14956,190875 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416475 ,2,829,45 ,2,14956,190885 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,268920 ,1,1,45 ,1,2,45 ,2,14956,190895 ,2,822,18460 ,2,14975,599885 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,293320 ,2,829,45 ,1,0,31740 ,1,1,45 ,1,2,31760 ,1,3,614705 ,2,14956,190905 ,2,822,18460 ,2,14975,562685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293510 ,2,829,45 ,2,14956,190915 ,2,822,18460 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293830 ,2,829,45 ,2,14956,190945 ,2,822,50185 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256650 ,2,14979,2415 ,2,829,45 ,1,0,134225 ,2,14956,2855 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389945 ,2,829,45 ,1,0,134265 ,1,1,134255 ,1,2,103320 ,2,14956,190955 ,2,822,18460 ,2,14975,558375 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256630 ,2,14979,396315 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,356770 ,1,4,65 ,1,5,356760 ,2,14956,190965 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395740 ,2,829,45 ,2,14956,190975 ,2,822,18460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293820 ,2,829,45 ,1,0,134275 ,2,14956,190985 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293290 ,2,829,45 ,2,14956,190995 ,2,822,18460 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293840 ,2,829,45 ,1,0,134285 ,2,14956,191005 ,2,822,18460 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,293425 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,356795 ,1,4,356785 ,1,5,65 ,2,14956,191015 ,2,822,18460 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293520 ,2,829,45 ,2,14956,191055 ,2,822,18460 ,2,14975,600025 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293365 ,2,829,45 ,1,0,134295 ,2,14956,191065 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395730 ,2,829,45 ,2,14956,191075 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,619445 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,134735 ,1,6,65 ,1,7,134720 ,1,8,134710 ,1,9,134700 ,1,10,134690 ,1,11,65 ,1,12,134665 ,1,13,65 ,1,14,134655 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,134645 ,1,19,134615 ,1,20,134595 ,1,21,134585 ,1,22,65 ,1,23,134550 ,1,24,134540 ,1,25,134530 ,1,26,134520 ,1,27,134505 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,134495 ,1,34,134485 ,1,35,65 ,1,36,134475 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,134440 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,134420 ,1,45,65 ,1,46,65 ,1,47,134385 ,1,48,65 ,1,49,134375 ,1,50,134365 ,1,51,65 ,1,52,134355 ,1,53,65 ,1,54,65 ,1,55,134325 ,1,56,65 ,1,57,134315 ,1,58,134305 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,191085 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396080 ,2,829,45 ,1,0,134325 ,1,1,103105 ,1,2,102910 ,1,3,72265 ,2,14956,191095 ,2,822,18460 ,2,14975,599965 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293875 ,2,829,45 ,1,0,3010 ,1,1,243230 ,1,2,243205 ,1,3,243195 ,1,4,243185 ,1,5,185730 ,1,6,182890 ,1,7,243175 ,1,8,217650 ,2,14956,191105 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396175 ,2,829,45 ,1,0,3010 ,1,1,243285 ,1,2,243260 ,1,3,243250 ,2,14956,191115 ,2,822,18460 ,2,14975,558420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293895 ,2,829,45 ,1,0,134585 ,1,1,134655 ,1,2,134485 ,1,3,134440 ,1,4,134550 ,1,5,134530 ,1,6,134540 ,1,7,134645 ,1,8,134375 ,1,9,134735 ,1,10,134615 ,1,11,134595 ,1,12,134720 ,1,13,134495 ,1,14,134385 ,1,15,134710 ,1,16,134325 ,1,17,134365 ,1,18,134315 ,1,19,134475 ,1,20,134700 ,1,21,134505 ,1,22,134355 ,1,23,134305 ,1,24,134690 ,1,25,134665 ,1,26,134420 ,1,27,134520 ,2,14956,179850 ,2,822,18460 ,2,14975,562685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380035 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,356635 ,1,3,356625 ,1,4,356615 ,1,5,356605 ,1,6,65 ,1,7,65 ,1,8,356570 ,1,9,65 ,2,14956,191125 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293310 ,2,829,45 ,2,14956,191160 ,2,822,18460 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293885 ,2,829,45 ,1,0,134745 ,2,14956,191170 ,2,822,18460 ,2,14975,558420 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,293405 ,2,829,45 ,1,0,575645 ,2,14956,191180 ,2,822,18460 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293330 ,2,829,45 ,1,0,134265 ,1,1,134840 ,1,2,134830 ,1,3,134820 ,1,4,134810 ,1,5,134755 ,2,14956,191190 ,2,822,18460 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293905 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,134855 ,2,14956,191200 ,2,822,18460 ,2,14975,599885 ,2,14976,23130 ,2,14977,40805 ,2,14965,45 ,2,14978,45 ,2,14979,393425 ,2,829,45 ,1,0,575660 ,2,14956,191210 ,2,822,18460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293915 ,2,829,45 ,1,0,134255 ,1,1,135010 ,1,2,134990 ,1,3,134855 ,1,4,134980 ,1,5,134970 ,1,6,134960 ,1,7,134950 ,1,8,134940 ,1,9,134930 ,1,10,134920 ,1,11,134885 ,1,12,134875 ,2,14956,191220 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416405 ,2,829,45 ,2,14956,191230 ,2,822,18460 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293415 ,2,829,45 ,1,0,135020 ,2,14956,191265 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293375 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369415 ,2,14956,191275 ,2,822,18460 ,2,14975,562685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393730 ,2,829,45 ,2,14956,191285 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293280 ,2,829,45 ,1,0,268940 ,1,1,45 ,1,2,45 ,2,14956,6245 ,2,822,18460 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256620 ,2,14979,388045 ,2,829,45 ,1,0,45 ,1,1,31850 ,1,2,31870 ,1,3,614705 ,2,14956,191295 ,2,822,18460 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293475 ,2,829,45 ,2,14956,191320 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,135040 ,2,14956,191330 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396250 ,2,829,45 ,2,14956,191340 ,2,822,18460 ,2,14975,562715 ,2,14976,25700 ,2,14977,25690 ,2,14965,45 ,2,14978,45 ,2,14979,293925 ,2,829,45 ,1,0,135070 ,1,1,135060 ,1,2,135050 ,2,14956,191350 ,2,822,18460 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,293300 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369510 ,1,3,65 ,2,14956,191405 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416450 ,2,829,45 ,2,14956,191415 ,2,822,18460 ,2,14975,599885 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,293945 ,2,829,45 ,1,0,268970 ,1,1,45 ,1,2,45 ,2,14956,191425 ,2,822,18460 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293465 ,2,829,45 ,1,0,45 ,1,1,31920 ,1,2,613640 ,2,14956,191435 ,2,822,18460 ,2,14975,562715 ,2,14976,23450 ,2,14977,40775 ,2,14965,45 ,2,14978,45 ,2,14979,293960 ,2,829,45 ,2,14956,191445 ,2,822,18460 ,2,14975,558420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,293395 ,2,829,45 ,1,0,135135 ,1,1,135125 ,1,2,135080 ,2,14956,191455 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369480 ,1,3,65 ,2,14956,191465 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293485 ,2,829,45 ,2,14956,13210 ,2,822,18460 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395210 ,2,829,45 ,1,0,268980 ,1,1,45 ,1,2,45 ,2,14956,191475 ,2,822,50185 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,293970 ,2,829,45 ,1,0,31940 ,1,1,45 ,1,2,613640 ,2,14956,191500 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396015 ,2,829,45 ,2,14956,191510 ,2,822,18460 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395645 ,2,829,45 ,1,0,135165 ,1,1,135155 ,1,2,135145 ,2,14956,191520 ,2,822,18460 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293980 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369270 ,2,14956,191530 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,293990 ,2,829,45 ,2,14956,191540 ,2,822,18460 ,2,14975,558420 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,293935 ,2,829,45 ,1,0,268990 ,1,1,45 ,1,2,45 ,2,14956,191610 ,2,822,18460 ,2,14975,599885 ,2,14976,24120 ,2,14977,40825 ,2,14965,45 ,2,14978,45 ,2,14979,293345 ,2,829,45 ,1,0,45 ,1,1,31965 ,1,2,31985 ,1,3,614705 ,2,14956,191620 ,2,822,18460 ,2,14975,558420 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,293355 ,2,829,45 ,2,14956,191630 ,2,822,18460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294000 ,2,829,45 ,2,14956,191685 ,2,822,18450 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,80190 ,2,14979,294010 ,2,829,45 ,1,0,135195 ,1,1,135210 ,1,2,135185 ,1,3,135175 ,2,14956,191685 ,2,822,18450 ,2,14975,599885 ,2,14976,25480 ,2,14977,23120 ,2,14965,45 ,2,14978,230020 ,2,14979,294020 ,2,829,45 ,2,14956,168095 ,2,822,18450 ,2,14975,562685 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294030 ,2,829,45 ,1,0,269000 ,1,1,45 ,1,2,45 ,2,14956,189885 ,2,822,18555 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,40865 ,2,14979,294060 ,2,829,45 ,1,0,32035 ,1,1,45 ,1,2,31995 ,1,3,614705 ,2,14956,189875 ,2,822,18555 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294070 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358190 ,1,3,65 ,2,14956,191695 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294080 ,2,829,45 ,2,14956,191200 ,2,822,18555 ,2,14975,599885 ,2,14976,23130 ,2,14977,40805 ,2,14965,45 ,2,14978,45 ,2,14979,393430 ,2,829,45 ,1,0,135220 ,2,14956,191220 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395820 ,2,829,45 ,2,14956,190855 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396335 ,2,829,45 ,1,0,135275 ,1,1,135265 ,1,2,135285 ,1,3,135240 ,1,4,135230 ,2,14956,190865 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393190 ,2,829,45 ,1,0,12445 ,1,1,243905 ,1,2,243895 ,1,3,243885 ,1,4,243875 ,1,5,243835 ,1,6,243825 ,2,14956,191275 ,2,822,18555 ,2,14975,562685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393740 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369310 ,1,3,65 ,2,14956,190875 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396120 ,2,829,45 ,2,14956,191730 ,2,822,18555 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294090 ,2,829,45 ,1,0,269015 ,1,1,45 ,1,2,45 ,2,14956,191740 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294100 ,2,829,45 ,1,0,45 ,1,1,32045 ,1,2,613640 ,2,14956,6245 ,2,822,18555 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388050 ,2,829,45 ,2,14956,191750 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294110 ,2,829,45 ,1,0,135355 ,1,1,135345 ,1,2,135295 ,2,14956,191760 ,2,822,18555 ,2,14975,562685 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294165 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369405 ,1,3,65 ,2,14956,2855 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414670 ,2,829,45 ,2,14956,191770 ,2,822,18555 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294185 ,2,829,45 ,1,0,269025 ,1,1,45 ,1,2,45 ,2,14956,191330 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396260 ,2,829,45 ,1,0,45 ,1,1,32065 ,1,2,613640 ,2,14956,190955 ,2,822,18555 ,2,14975,558375 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396325 ,2,829,45 ,2,14956,190965 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395755 ,2,829,45 ,1,0,135390 ,1,1,135375 ,1,2,135365 ,2,14956,191405 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396065 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369450 ,2,14956,191500 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396020 ,2,829,45 ,2,14956,13210 ,2,822,18555 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395215 ,2,829,45 ,1,0,269035 ,1,1,45 ,1,2,45 ,2,14956,191780 ,2,822,18555 ,2,14975,562865 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,32085 ,1,1,45 ,1,2,613640 ,2,14956,191065 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395735 ,2,829,45 ,2,14956,191510 ,2,822,18555 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395650 ,2,829,45 ,1,0,135420 ,1,1,135470 ,1,2,135410 ,1,3,135400 ,2,14956,191085 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396085 ,2,829,45 ,2,14956,191105 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396180 ,2,829,45 ,1,0,269045 ,1,1,45 ,1,2,45 ,2,14956,191790 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294155 ,2,829,45 ,1,0,45 ,1,1,32110 ,1,2,613640 ,2,14956,179850 ,2,822,18555 ,2,14975,562685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380040 ,2,829,45 ,2,14956,191800 ,2,822,18555 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294120 ,2,829,45 ,1,0,135520 ,1,1,135510 ,1,2,135500 ,1,3,135530 ,1,4,135490 ,1,5,135480 ,2,14956,191630 ,2,822,18555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294200 ,2,829,45 ,1,0,3010 ,1,1,222410 ,1,2,244175 ,1,3,244145 ,1,4,244135 ,1,5,244125 ,1,6,185680 ,1,7,189760 ,1,8,244115 ,1,9,244105 ,1,10,244095 ,1,11,244085 ,1,12,170230 ,1,13,222470 ,2,14956,191830 ,2,822,18555 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294175 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369500 ,2,14956,191850 ,2,822,50165 ,2,14975,562675 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256600 ,2,14979,2415 ,2,829,45 ,2,14956,191860 ,2,822,50165 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,294210 ,2,829,45 ,1,0,269080 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,18565 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389970 ,2,829,45 ,1,0,45 ,1,1,32130 ,1,2,613640 ,2,14956,191870 ,2,822,18565 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294260 ,2,829,45 ,2,14956,191900 ,2,822,18565 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294270 ,2,829,45 ,1,0,135565 ,1,1,135555 ,1,2,135540 ,2,14956,191890 ,2,822,18575 ,2,14975,562880 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,294280 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369520 ,2,14956,191935 ,2,822,18565 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395370 ,2,829,45 ,2,14956,191945 ,2,822,18565 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,294305 ,2,829,45 ,1,0,269090 ,1,1,45 ,1,2,45 ,2,14956,192000 ,2,822,18565 ,2,14975,562875 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,294315 ,2,829,45 ,1,0,32150 ,1,1,45 ,1,2,613640 ,2,14956,167610 ,2,822,18585 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294325 ,2,829,45 ,2,14956,167535 ,2,822,18585 ,2,14975,562890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394520 ,2,829,45 ,1,0,135595 ,1,1,135605 ,1,2,135585 ,1,3,135575 ,2,14956,167510 ,2,822,18605 ,2,14975,558990 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393735 ,2,829,45 ,2,14956,192095 ,2,822,18615 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,294365 ,2,829,45 ,1,0,269100 ,1,1,45 ,1,2,45 ,2,14956,167510 ,2,822,18645 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393745 ,2,829,45 ,1,0,45 ,1,1,32170 ,1,2,613640 ,2,14956,167590 ,2,822,18615 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294375 ,2,829,45 ,2,14956,167535 ,2,822,18615 ,2,14975,562920 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394535 ,2,829,45 ,1,0,135660 ,1,1,135670 ,1,2,135625 ,1,3,135615 ,2,14956,192220 ,2,822,18655 ,2,14975,558275 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256755 ,2,14979,2415 ,2,829,45 ,1,0,12445 ,1,1,222470 ,1,2,244345 ,1,3,244335 ,1,4,244325 ,2,14956,192105 ,2,822,50285 ,2,14975,558275 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256755 ,2,14979,294385 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369460 ,1,3,65 ,2,14956,192125 ,2,822,50295 ,2,14975,558990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256765 ,2,14979,294410 ,2,829,45 ,2,14956,192095 ,2,822,18655 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,294420 ,2,829,45 ,1,0,269110 ,1,1,45 ,1,2,45 ,2,14956,192170 ,2,822,18655 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294430 ,2,829,45 ,1,0,32205 ,1,1,45 ,1,2,613640 ,2,14956,192180 ,2,822,18655 ,2,14975,558990 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,294440 ,2,829,45 ,2,14956,192190 ,2,822,18655 ,2,14975,599975 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,294465 ,2,829,45 ,1,0,135700 ,1,1,135690 ,1,2,135680 ,2,14956,187610 ,2,822,18655 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355640 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369075 ,1,3,65 ,2,14956,167590 ,2,822,18655 ,2,14975,562945 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,294475 ,2,829,45 ,2,14956,192200 ,2,822,18655 ,2,14975,558990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256765 ,2,14979,2415 ,2,829,45 ,1,0,269120 ,1,1,45 ,1,2,45 ,2,14956,192230 ,2,822,18615 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,294335 ,2,829,45 ,1,0,32250 ,1,1,45 ,1,2,32225 ,1,3,614705 ,2,14956,192240 ,2,822,14600 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294485 ,2,829,45 ,2,14956,170325 ,2,822,18565 ,2,14975,562875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294220 ,2,829,45 ,1,0,135710 ,2,14956,192270 ,2,822,50165 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294495 ,2,829,45 ,2,14956,192330 ,2,822,18450 ,2,14975,562685 ,2,14976,23675 ,2,14977,41340 ,2,14965,45 ,2,14978,45 ,2,14979,294505 ,2,829,45 ,1,0,135780 ,1,1,135730 ,1,2,135720 ,2,14956,192365 ,2,822,50355 ,2,14975,562685 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,294515 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369260 ,2,14956,192340 ,2,822,50365 ,2,14975,562680 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256610 ,2,14979,294525 ,2,829,45 ,2,14956,6740 ,2,822,50375 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,81120 ,2,14979,294535 ,2,829,45 ,1,0,269130 ,1,1,45 ,1,2,45 ,2,14956,6740 ,2,822,50375 ,2,14975,599975 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230030 ,2,14979,294565 ,2,829,45 ,1,0,45 ,1,1,32260 ,1,2,613640 ,2,14956,6790 ,2,822,50375 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,41370 ,2,14979,294575 ,2,829,45 ,2,14956,6790 ,2,822,50375 ,2,14975,599875 ,2,14976,25335 ,2,14977,23360 ,2,14965,45 ,2,14978,230055 ,2,14979,294585 ,2,829,45 ,1,0,135810 ,1,1,135800 ,1,2,135790 ,2,14956,192415 ,2,822,50365 ,2,14975,562685 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,81185 ,2,14979,294595 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369280 ,1,3,65 ,2,14956,192415 ,2,822,50365 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230065 ,2,14979,294605 ,2,829,45 ,2,14956,192435 ,2,822,50385 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,41385 ,2,14979,294615 ,2,829,45 ,1,0,269140 ,1,1,45 ,1,2,45 ,2,14956,192485 ,2,822,50385 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,41395 ,2,14979,294625 ,2,829,45 ,1,0,32345 ,1,1,45 ,1,2,32335 ,1,3,45 ,1,4,32280 ,1,5,616170 ,2,14956,192505 ,2,822,50395 ,2,14975,558580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,294635 ,2,829,45 ,2,14956,192515 ,2,822,50395 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294660 ,2,829,45 ,2,14956,192525 ,2,822,18385 ,2,14975,110 ,2,14976,41460 ,2,14977,41415 ,2,14965,45 ,2,14978,230075 ,2,14979,294670 ,2,829,45 ,2,14956,192535 ,2,822,50405 ,2,14975,562950 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256790 ,2,14979,294680 ,2,829,45 ,1,0,135845 ,1,1,135835 ,1,2,135825 ,2,14956,192570 ,2,822,50415 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256800 ,2,14979,408675 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,369620 ,1,5,369610 ,1,6,65 ,1,7,369600 ,1,8,369590 ,1,9,65 ,2,14956,192590 ,2,822,50425 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256810 ,2,14979,294690 ,2,829,45 ,2,14956,2855 ,2,822,18665 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415140 ,2,829,45 ,1,0,269150 ,1,1,45 ,1,2,45 ,2,14956,192670 ,2,822,18385 ,2,14975,562950 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256790 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,32355 ,1,2,613640 ,2,14956,192680 ,2,822,18385 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,81340 ,2,14979,292910 ,2,829,45 ,2,14956,192680 ,2,822,18385 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230085 ,2,14979,294715 ,2,829,45 ,1,0,135990 ,1,1,135920 ,1,2,135910 ,1,3,135900 ,1,4,135855 ,1,5,136000 ,1,6,135890 ,1,7,135880 ,2,14956,192690 ,2,822,50440 ,2,14975,562610 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256820 ,2,14979,294725 ,2,829,45 ,1,0,559535 ,2,14956,192710 ,2,822,18385 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256810 ,2,14979,2415 ,2,829,45 ,1,0,135940 ,1,1,135930 ,2,14956,192775 ,2,822,18385 ,2,14975,563015 ,2,14976,23450 ,2,14977,41545 ,2,14965,45 ,2,14978,45 ,2,14979,294735 ,2,829,45 ,2,14956,166740 ,2,822,18675 ,2,14975,563010 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375365 ,2,829,45 ,1,0,269170 ,1,1,265820 ,1,2,45 ,2,14956,192830 ,2,822,16015 ,2,14975,110 ,2,14976,41585 ,2,14977,41575 ,2,14965,45 ,2,14978,230125 ,2,14979,294785 ,2,829,45 ,1,0,45 ,1,1,32385 ,1,2,32375 ,1,3,614705 ,2,14956,192840 ,2,822,16015 ,2,14975,563020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,294795 ,2,829,45 ,2,14956,192850 ,2,822,16015 ,2,14975,562590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256525 ,2,14979,2415 ,2,829,45 ,1,0,135980 ,1,1,135950 ,2,14956,192890 ,2,822,16015 ,2,14975,562590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256535 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,185785 ,1,2,228260 ,1,3,209400 ,2,14956,166850 ,2,822,18685 ,2,14975,608390 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344070 ,2,829,45 ,1,0,135990 ,1,1,135950 ,2,14956,10665 ,2,822,18685 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412490 ,2,829,45 ,1,0,623955 ,1,1,615295 ,1,2,369250 ,1,3,65 ,1,4,369240 ,1,5,369210 ,1,6,65 ,1,7,369200 ,1,8,369190 ,1,9,369180 ,1,10,369170 ,1,11,369160 ,1,12,65 ,1,13,65 ,1,14,369150 ,1,15,369140 ,1,16,369105 ,1,17,65 ,2,14956,167780 ,2,822,18695 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256830 ,2,14979,408685 ,2,829,45 ,2,14956,2855 ,2,822,18695 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390445 ,2,829,45 ,1,0,269180 ,1,1,45 ,1,2,45 ,2,14956,192930 ,2,822,18695 ,2,14975,563045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408710 ,2,829,45 ,1,0,45 ,1,1,32425 ,1,2,613640 ,2,14956,167780 ,2,822,18705 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256840 ,2,14979,408715 ,2,829,45 ,2,14956,193370 ,2,822,50450 ,2,14975,600065 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256850 ,2,14979,294890 ,2,829,45 ,1,0,136050 ,1,1,136040 ,1,2,136060 ,1,3,136030 ,1,4,136010 ,2,14956,193390 ,2,822,50470 ,2,14975,563055 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256860 ,2,14979,294915 ,2,829,45 ,1,0,3010 ,1,1,244970 ,1,2,244960 ,1,3,244950 ,1,4,244930 ,1,5,244920 ,1,6,244910 ,1,7,244900 ,1,8,244885 ,1,9,244875 ,1,10,244865 ,1,11,244855 ,1,12,242410 ,1,13,244840 ,1,14,244830 ,1,15,244820 ,1,16,244810 ,1,17,244765 ,1,18,244755 ,1,19,222530 ,1,20,244745 ,1,21,244735 ,1,22,244725 ,1,23,244715 ,2,14956,193400 ,2,822,18755 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369085 ,2,14956,193425 ,2,822,18755 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,193455 ,2,822,50500 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,269190 ,1,1,45 ,1,2,45 ,2,14956,193465 ,2,822,50510 ,2,14975,558990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,294935 ,2,829,45 ,1,0,32445 ,1,1,45 ,1,2,613640 ,2,14956,193475 ,2,822,50490 ,2,14975,563055 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256860 ,2,14979,2415 ,2,829,45 ,2,14956,193890 ,2,822,50565 ,2,14975,562685 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,81945 ,2,14979,294985 ,2,829,45 ,1,0,136115 ,1,1,136125 ,1,2,136105 ,1,3,136095 ,2,14956,2855 ,2,822,18765 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390530 ,2,829,45 ,1,0,3010 ,1,1,222470 ,1,2,245885 ,1,3,244325 ,1,4,245875 ,1,5,245865 ,1,6,245855 ,1,7,245840 ,1,8,245830 ,1,9,245820 ,1,10,245810 ,1,11,245775 ,1,12,245765 ,1,13,245755 ,1,14,245745 ,1,15,245725 ,1,16,245715 ,1,17,245705 ,1,18,245695 ,1,19,245655 ,1,20,245645 ,1,21,245635 ,1,22,245625 ,1,23,245615 ,1,24,245605 ,1,25,245595 ,1,26,245585 ,1,27,245540 ,1,28,245530 ,1,29,221200 ,1,30,245520 ,1,31,245510 ,1,32,245495 ,1,33,245485 ,1,34,245475 ,1,35,222420 ,1,36,245465 ,1,37,245425 ,1,38,245415 ,1,39,222460 ,1,40,245405 ,1,41,245395 ,1,42,245385 ,1,43,245375 ,1,44,245365 ,1,45,245355 ,1,46,245320 ,1,47,243905 ,1,48,245310 ,1,49,245300 ,1,50,245290 ,1,51,245280 ,1,52,245270 ,1,53,245260 ,1,54,245250 ,1,55,245230 ,1,56,245220 ,1,57,245210 ,1,58,245200 ,1,59,245180 ,1,60,245170 ,1,61,245160 ,1,62,245150 ,1,63,245110 ,1,64,245100 ,1,65,245090 ,1,66,245080 ,2,14956,193495 ,2,822,18765 ,2,14975,563080 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,295005 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,1,40,100 ,1,41,100 ,1,42,100 ,1,43,100 ,1,44,100 ,1,45,100 ,1,46,100 ,1,47,100 ,1,48,100 ,1,49,100 ,1,50,100 ,1,51,100 ,1,52,100 ,1,53,100 ,1,54,100 ,1,55,100 ,1,56,100 ,1,57,100 ,1,58,100 ,1,59,100 ,1,60,100 ,1,61,100 ,1,62,100 ,1,63,100 ,1,64,100 ,1,65,100 ,1,66,100 ,2,14956,190865 ,2,822,18765 ,2,14975,558420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256900 ,2,14979,416125 ,2,829,45 ,2,14956,167780 ,2,822,18765 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256910 ,2,14979,408845 ,2,829,45 ,1,0,269200 ,1,1,45 ,1,2,45 ,2,14956,193705 ,2,822,50520 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,41810 ,2,14979,295015 ,2,829,45 ,1,0,32525 ,1,1,32495 ,1,2,45 ,1,3,45 ,1,4,32465 ,1,5,32485 ,1,6,614045 ,2,14956,193550 ,2,822,18795 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295035 ,2,829,45 ,2,14956,193560 ,2,822,18795 ,2,14975,558990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295045 ,2,829,45 ,1,0,136200 ,2,14956,193570 ,2,822,18795 ,2,14975,558990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295055 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358935 ,1,3,65 ,2,14956,193640 ,2,822,18805 ,2,14975,563115 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295080 ,2,829,45 ,2,14956,193590 ,2,822,18785 ,2,14975,608395 ,2,14976,23130 ,2,14977,23120 ,2,14965,546195 ,2,14978,45 ,2,14979,295100 ,2,829,45 ,1,0,136210 ,2,14956,193600 ,2,822,18785 ,2,14975,563105 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295090 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,358995 ,1,4,65 ,1,5,358985 ,1,6,358945 ,1,7,65 ,1,8,65 ,1,9,65 ,2,14956,193670 ,2,822,18805 ,2,14975,563115 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295110 ,2,829,45 ,2,14956,168920 ,2,822,18815 ,2,14975,563120 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295125 ,2,829,45 ,1,0,136220 ,2,14956,193660 ,2,822,18785 ,2,14975,563105 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,2855 ,2,822,18785 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390490 ,2,829,45 ,1,0,136425 ,1,1,136415 ,1,2,136390 ,1,3,136380 ,1,4,136370 ,1,5,136360 ,1,6,136345 ,1,7,136335 ,1,8,136325 ,1,9,136315 ,1,10,136270 ,1,11,136260 ,1,12,136250 ,1,13,136240 ,1,14,136230 ,2,14956,190865 ,2,822,18785 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416095 ,2,829,45 ,1,0,3010 ,1,1,222420 ,1,2,246035 ,1,3,212710 ,1,4,182815 ,1,5,222235 ,1,6,222480 ,1,7,246025 ,1,8,245605 ,1,9,245635 ,1,10,245745 ,1,11,245725 ,1,12,245715 ,1,13,245705 ,1,14,245260 ,1,15,245310 ,2,14956,193865 ,2,822,18825 ,2,14975,563130 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,41985 ,2,14979,295155 ,2,829,45 ,1,0,136415 ,2,14956,193750 ,2,822,50555 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295180 ,2,829,45 ,1,0,136435 ,2,14956,193750 ,2,822,18825 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295190 ,2,829,45 ,1,0,12445 ,1,1,222470 ,1,2,245885 ,1,3,246235 ,1,4,244325 ,1,5,245875 ,1,6,245865 ,1,7,245855 ,1,8,245840 ,1,9,245830 ,1,10,245820 ,1,11,245810 ,1,12,245775 ,1,13,245765 ,1,14,245755 ,1,15,245745 ,1,16,245725 ,1,17,245715 ,1,18,245705 ,1,19,245695 ,1,20,245655 ,1,21,245645 ,1,22,245635 ,1,23,245605 ,1,24,245625 ,1,25,245615 ,1,26,245595 ,1,27,245585 ,1,28,245540 ,1,29,245530 ,1,30,221200 ,1,31,245520 ,1,32,245510 ,1,33,245495 ,1,34,245485 ,1,35,245475 ,1,36,182835 ,1,37,222420 ,1,38,245465 ,1,39,245425 ,1,40,245415 ,1,41,222460 ,1,42,245405 ,1,43,245395 ,1,44,245385 ,1,45,245375 ,1,46,245365 ,1,47,245355 ,1,48,245320 ,1,49,243905 ,1,50,245310 ,1,51,245300 ,1,52,245290 ,1,53,245280 ,1,54,245270 ,1,55,245260 ,1,56,245250 ,1,57,245230 ,1,58,245220 ,1,59,245210 ,1,60,245200 ,1,61,245180 ,1,62,245170 ,1,63,245160 ,1,64,245150 ,1,65,245110 ,1,66,245100 ,1,67,245090 ,1,68,245080 ,2,14956,193780 ,2,822,50555 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295200 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,1,40,100 ,1,41,100 ,1,42,100 ,1,43,100 ,1,44,100 ,1,45,100 ,1,46,100 ,1,47,100 ,1,48,100 ,1,49,100 ,1,50,100 ,1,51,100 ,1,52,100 ,1,53,100 ,1,54,100 ,1,55,100 ,1,56,100 ,1,57,100 ,1,58,100 ,1,59,100 ,1,60,100 ,1,61,100 ,1,62,100 ,1,63,100 ,1,64,100 ,1,65,100 ,1,66,100 ,1,67,100 ,1,68,100 ,2,14956,193770 ,2,822,18825 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,42025 ,2,14979,295225 ,2,829,45 ,2,14956,193780 ,2,822,18825 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295210 ,2,829,45 ,1,0,134075 ,1,1,136480 ,2,14956,193845 ,2,822,18825 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,42075 ,2,14979,295235 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369550 ,2,14956,193875 ,2,822,18825 ,2,14975,563130 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295145 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359640 ,2,14956,193875 ,2,822,50555 ,2,14975,563140 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295135 ,2,829,45 ,2,14956,193890 ,2,822,50565 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230135 ,2,14979,295255 ,2,829,45 ,1,0,136570 ,1,1,136490 ,2,14956,193900 ,2,822,50565 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295295 ,2,829,45 ,2,14956,193910 ,2,822,50575 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295305 ,2,829,45 ,1,0,136500 ,2,14956,193920 ,2,822,50490 ,2,14975,600020 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295315 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359665 ,2,14956,193995 ,2,822,50585 ,2,14975,563170 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,295325 ,2,829,45 ,2,14956,193975 ,2,822,18865 ,2,14975,563165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295335 ,2,829,45 ,1,0,269215 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,18865 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390555 ,2,829,45 ,1,0,32590 ,1,1,45 ,1,2,32625 ,1,3,614705 ,2,14956,193955 ,2,822,18865 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,356155 ,2,829,45 ,2,14956,194005 ,2,822,50460 ,2,14975,600065 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256850 ,2,14979,2415 ,2,829,45 ,1,0,136560 ,2,14956,194015 ,2,822,50500 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295355 ,2,829,45 ,2,14956,194025 ,2,822,50595 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,408720 ,2,829,45 ,1,0,136540 ,1,1,136550 ,2,14956,194050 ,2,822,50605 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295365 ,2,829,45 ,1,0,3010 ,1,1,244325 ,2,14956,194060 ,2,822,50500 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295390 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359645 ,2,14956,194210 ,2,822,50500 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295400 ,2,829,45 ,2,14956,194200 ,2,822,18900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295410 ,2,829,45 ,1,0,136580 ,2,14956,194080 ,2,822,50615 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256930 ,2,14979,295420 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,246395 ,1,3,179750 ,2,14956,194170 ,2,822,50665 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256940 ,2,14979,408725 ,2,829,45 ,2,14956,194220 ,2,822,50575 ,2,14975,100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,295435 ,2,829,45 ,1,0,269225 ,1,1,45 ,1,2,45 ,2,14956,194230 ,2,822,50500 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,32570 ,1,2,32675 ,1,3,32580 ,1,4,32665 ,1,5,32555 ,1,6,32635 ,1,7,45 ,1,8,45 ,1,9,32655 ,1,10,614025 ,2,14956,194265 ,2,822,18930 ,2,14975,563185 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,295445 ,2,829,45 ,2,14956,194295 ,2,822,50675 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256960 ,2,14979,295455 ,2,829,45 ,1,0,136590 ,2,14956,194320 ,2,822,50685 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256970 ,2,14979,295465 ,2,829,45 ,2,14956,194340 ,2,822,18980 ,2,14975,563230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,256950 ,2,14979,408730 ,2,829,45 ,1,0,136600 ,2,14956,194360 ,2,822,18980 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256960 ,2,14979,295500 ,2,829,45 ,2,14956,194370 ,2,822,18980 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,256970 ,2,14979,295510 ,2,829,45 ,1,0,136700 ,1,1,136670 ,1,2,136650 ,1,3,136610 ,2,14956,4490 ,2,822,18990 ,2,14975,599885 ,2,14976,42405 ,2,14977,42370 ,2,14965,45 ,2,14978,250495 ,2,14979,2415 ,2,829,45 ,1,0,136690 ,2,14956,194400 ,2,822,18990 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295520 ,2,829,45 ,2,14956,194420 ,2,822,50695 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,42425 ,2,14979,295530 ,2,829,45 ,1,0,136785 ,1,1,136775 ,1,2,136755 ,1,3,136720 ,1,4,136710 ,2,14956,194430 ,2,822,50695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295540 ,2,829,45 ,1,0,136765 ,2,14956,194500 ,2,822,19000 ,2,14975,563255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295550 ,2,829,45 ,2,14956,193590 ,2,822,19455 ,2,14975,608400 ,2,14976,23130 ,2,14977,23120 ,2,14965,546205 ,2,14978,45 ,2,14979,408735 ,2,829,45 ,1,0,136815 ,1,1,136680 ,1,2,136660 ,1,3,136765 ,1,4,136805 ,1,5,136690 ,2,14956,194490 ,2,822,19455 ,2,14975,563260 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295560 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369095 ,2,14956,194525 ,2,822,19000 ,2,14975,563255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295600 ,2,829,45 ,2,14956,194510 ,2,822,19455 ,2,14975,563260 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295610 ,2,829,45 ,1,0,136895 ,1,1,136135 ,1,2,136885 ,1,3,136875 ,1,4,136835 ,1,5,136825 ,2,14956,194545 ,2,822,50705 ,2,14975,563265 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295620 ,2,829,45 ,2,14956,194630 ,2,822,19020 ,2,14975,563290 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,42530 ,2,14979,295650 ,2,829,45 ,1,0,136920 ,1,1,136905 ,2,14956,194640 ,2,822,19020 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295670 ,2,829,45 ,1,0,136470 ,2,14956,194650 ,2,822,19020 ,2,14975,563290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295700 ,2,829,45 ,1,0,136940 ,2,14956,194660 ,2,822,19020 ,2,14975,563270 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295710 ,2,829,45 ,2,14956,194720 ,2,822,50715 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257020 ,2,14979,408740 ,2,829,45 ,1,0,269245 ,1,1,45 ,1,2,45 ,2,14956,194745 ,2,822,50725 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257030 ,2,14979,408745 ,2,829,45 ,1,0,45 ,1,1,32760 ,1,2,45 ,1,3,32750 ,1,4,32740 ,1,5,32695 ,1,6,32730 ,1,7,613975 ,2,14956,194765 ,2,822,50735 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257040 ,2,14979,408780 ,2,829,45 ,2,14956,194815 ,2,822,50770 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257060 ,2,14979,408785 ,2,829,45 ,1,0,136990 ,1,1,136980 ,2,14956,194870 ,2,822,19100 ,2,14975,563320 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295730 ,2,829,45 ,2,14956,194860 ,2,822,19515 ,2,14975,563325 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,137000 ,2,14956,194890 ,2,822,19100 ,2,14975,563320 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295750 ,2,829,45 ,2,14956,194880 ,2,822,19515 ,2,14975,563325 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,137020 ,1,1,137010 ,2,14956,171965 ,2,822,19140 ,2,14975,563370 ,2,14976,23075 ,2,14977,23065 ,2,14965,546240 ,2,14978,45 ,2,14979,380050 ,2,829,45 ,2,14956,10665 ,2,822,19140 ,2,14975,563380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382565 ,2,829,45 ,1,0,137040 ,1,1,137030 ,2,14956,171195 ,2,822,19140 ,2,14975,563385 ,2,14976,23130 ,2,14977,23120 ,2,14965,546265 ,2,14978,45 ,2,14979,375975 ,2,829,45 ,2,14956,171765 ,2,822,19140 ,2,14975,563435 ,2,14976,23075 ,2,14977,23065 ,2,14965,546325 ,2,14978,45 ,2,14979,295760 ,2,829,45 ,1,0,259635 ,2,14956,171965 ,2,822,19150 ,2,14975,563390 ,2,14976,23075 ,2,14977,23065 ,2,14965,546275 ,2,14978,45 ,2,14979,380045 ,2,829,45 ,1,0,137100 ,1,1,136940 ,1,2,137110 ,1,3,137050 ,2,14956,194990 ,2,822,19150 ,2,14975,563430 ,2,14976,24120 ,2,14977,42770 ,2,14965,45 ,2,14978,45 ,2,14979,394745 ,2,829,45 ,1,0,179760 ,1,1,246850 ,2,14956,195085 ,2,822,19140 ,2,14975,563375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,295805 ,2,829,45 ,1,0,127785 ,1,1,122790 ,2,14956,194990 ,2,822,19200 ,2,14975,563490 ,2,14976,24120 ,2,14977,42770 ,2,14965,45 ,2,14978,45 ,2,14979,394735 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,599970 ,2,14956,195055 ,2,822,19190 ,2,14975,563495 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,395285 ,2,829,45 ,2,14956,195105 ,2,822,19130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,137165 ,2,14956,195115 ,2,822,19130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,195165 ,2,822,19210 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257070 ,2,14979,295825 ,2,829,45 ,1,0,137175 ,2,14956,170435 ,2,822,19210 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257070 ,2,14979,408790 ,2,829,45 ,1,0,576355 ,2,14956,195175 ,2,822,19210 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257080 ,2,14979,295835 ,2,829,45 ,1,0,137230 ,1,1,137220 ,1,2,137210 ,2,14956,169490 ,2,822,19210 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257080 ,2,14979,408795 ,2,829,45 ,2,14956,195190 ,2,822,19210 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257090 ,2,14979,408805 ,2,829,45 ,1,0,137260 ,1,1,137240 ,2,14956,195270 ,2,822,50780 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,42960 ,2,14979,295855 ,2,829,45 ,1,0,57795 ,1,1,62040 ,2,14956,195270 ,2,822,50780 ,2,14975,110 ,2,14976,42980 ,2,14977,24010 ,2,14965,45 ,2,14978,230145 ,2,14979,295865 ,2,829,45 ,2,14956,195290 ,2,822,50780 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,42990 ,2,14979,295875 ,2,829,45 ,1,0,137325 ,1,1,137290 ,1,2,137280 ,1,3,137270 ,2,14956,195290 ,2,822,50780 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230155 ,2,14979,295910 ,2,829,45 ,2,14956,2855 ,2,822,19245 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390540 ,2,829,45 ,1,0,137345 ,1,1,137335 ,2,14956,195315 ,2,822,19245 ,2,14975,563190 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,295920 ,2,829,45 ,2,14956,167780 ,2,822,19245 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257125 ,2,14979,408850 ,2,829,45 ,1,0,269280 ,1,1,45 ,1,2,45 ,2,14956,195335 ,2,822,19245 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257135 ,2,14979,412315 ,2,829,45 ,1,0,137420 ,1,1,45 ,1,2,45 ,1,3,45 ,1,4,137395 ,1,5,137355 ,1,6,137385 ,1,7,137375 ,1,8,137365 ,1,9,614020 ,2,14956,195370 ,2,822,50790 ,2,14975,563520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,82920 ,2,14979,295930 ,2,829,45 ,1,0,127785 ,1,1,128365 ,2,14956,195370 ,2,822,50790 ,2,14975,563520 ,2,14976,43085 ,2,14977,23120 ,2,14965,45 ,2,14978,230175 ,2,14979,295940 ,2,829,45 ,1,0,127910 ,1,1,62040 ,2,14956,195390 ,2,822,19295 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,295955 ,2,829,45 ,1,0,137355 ,1,1,137385 ,1,2,137365 ,1,3,137395 ,1,4,137420 ,1,5,137375 ,2,14956,195540 ,2,822,19295 ,2,14975,563580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,83110 ,2,14979,295965 ,2,829,45 ,1,0,127890 ,1,1,128145 ,2,14956,195440 ,2,822,19305 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,295975 ,2,829,45 ,1,0,3010 ,1,1,247215 ,1,2,247205 ,1,3,247195 ,1,4,247185 ,1,5,175900 ,1,6,247160 ,1,7,247150 ,1,8,247140 ,1,9,247130 ,2,14956,195410 ,2,822,19305 ,2,14975,563555 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,195420 ,2,822,19305 ,2,14975,563555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,137640 ,1,1,137605 ,1,2,137595 ,1,3,137585 ,1,4,137575 ,1,5,137555 ,1,6,137545 ,1,7,137535 ,1,8,137525 ,1,9,137490 ,1,10,137470 ,1,11,137450 ,1,12,137430 ,2,14956,5210 ,2,822,49185 ,2,14975,563560 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296010 ,2,829,45 ,1,0,100 ,1,1,576430 ,2,14956,195505 ,2,822,19365 ,2,14975,563565 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257145 ,2,14979,2415 ,2,829,45 ,1,0,137430 ,1,1,137470 ,1,2,137450 ,2,14956,195485 ,2,822,50800 ,2,14975,563565 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257145 ,2,14979,296040 ,2,829,45 ,2,14956,5700 ,2,822,19365 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296030 ,2,829,45 ,1,0,137650 ,2,14956,195515 ,2,822,19365 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296060 ,2,829,45 ,2,14956,3770 ,2,822,19365 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,408810 ,2,829,45 ,1,0,137660 ,2,14956,195530 ,2,822,19365 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296070 ,2,829,45 ,2,14956,195540 ,2,822,19295 ,2,14975,563580 ,2,14976,43215 ,2,14977,23360 ,2,14965,45 ,2,14978,230185 ,2,14979,296080 ,2,829,45 ,1,0,137935 ,1,1,137925 ,1,2,137915 ,1,3,137895 ,1,4,137885 ,1,5,137875 ,1,6,137865 ,1,7,137830 ,1,8,137820 ,1,9,137810 ,1,10,137785 ,1,11,137765 ,1,12,137690 ,1,13,137670 ,2,14956,195845 ,2,822,19295 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,83290 ,2,14979,296120 ,2,829,45 ,2,14956,195825 ,2,822,50810 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,43225 ,2,14979,296140 ,2,829,45 ,1,0,269290 ,1,1,45 ,1,2,45 ,2,14956,195595 ,2,822,50820 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,43260 ,2,14979,296150 ,2,829,45 ,1,0,32940 ,1,1,45 ,1,2,613640 ,2,14956,195615 ,2,822,50820 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,43270 ,2,14979,296165 ,2,829,45 ,2,14956,195635 ,2,822,50820 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,43280 ,2,14979,296175 ,2,829,45 ,1,0,137710 ,1,1,137755 ,2,14956,195695 ,2,822,50820 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,43290 ,2,14979,296185 ,2,829,45 ,2,14956,195715 ,2,822,50830 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,296195 ,2,829,45 ,1,0,137945 ,1,1,122675 ,2,14956,195740 ,2,822,50810 ,2,14975,563585 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43300 ,2,14979,296250 ,2,829,45 ,1,0,138010 ,1,1,138070 ,1,2,138000 ,1,3,115335 ,2,14956,4490 ,2,822,19315 ,2,14975,563580 ,2,14976,43320 ,2,14977,43310 ,2,14965,45 ,2,14978,250505 ,2,14979,2415 ,2,829,45 ,1,0,115325 ,2,14956,195760 ,2,822,50810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,43330 ,2,14979,296230 ,2,829,45 ,1,0,3010 ,1,1,208615 ,1,2,209800 ,1,3,224825 ,1,4,224780 ,2,14956,195770 ,2,822,50840 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296240 ,2,829,45 ,1,0,566950 ,2,14956,195835 ,2,822,50840 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296130 ,2,829,45 ,1,0,576540 ,2,14956,195845 ,2,822,19295 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230195 ,2,14979,296260 ,2,829,45 ,1,0,138010 ,2,14956,195895 ,2,822,19335 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257155 ,2,14979,408815 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,138080 ,2,14956,195905 ,2,822,19335 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257170 ,2,14979,296270 ,2,829,45 ,1,0,576545 ,2,14956,195925 ,2,822,19345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,138000 ,1,1,138295 ,1,2,138285 ,1,3,138230 ,1,4,138080 ,1,5,138220 ,1,6,138205 ,1,7,138195 ,1,8,138185 ,1,9,138175 ,1,10,138140 ,1,11,138130 ,1,12,138120 ,1,13,138110 ,1,14,138100 ,2,14956,10665 ,2,822,19400 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,83340 ,2,14979,296280 ,2,829,45 ,1,0,95775 ,2,14956,6145 ,2,822,19400 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230205 ,2,14979,296290 ,2,829,45 ,2,14956,6145 ,2,822,19400 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43520 ,2,14979,296300 ,2,829,45 ,1,0,138305 ,2,14956,196020 ,2,822,19410 ,2,14975,563630 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,296325 ,2,829,45 ,1,0,575010 ,2,14956,196040 ,2,822,50865 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257180 ,2,14979,408820 ,2,829,45 ,2,14956,196070 ,2,822,50885 ,2,14975,563640 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257190 ,2,14979,296335 ,2,829,45 ,1,0,615220 ,1,1,615295 ,1,2,138640 ,1,3,138630 ,1,4,138620 ,1,5,138580 ,1,6,138570 ,1,7,65 ,1,8,138250 ,1,9,138560 ,1,10,65 ,1,11,138550 ,1,12,65 ,1,13,65 ,1,14,138530 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,138520 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,138510 ,1,25,65 ,1,26,65 ,1,27,122465 ,1,28,138500 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,138470 ,1,33,138425 ,1,34,65 ,1,35,138415 ,1,36,65 ,1,37,65 ,1,38,138405 ,1,39,138360 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,138350 ,1,48,122475 ,1,49,65 ,1,50,65 ,1,51,138340 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,138020 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,138330 ,1,65,138315 ,2,14956,196575 ,2,822,50925 ,2,14975,563660 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296355 ,2,829,45 ,1,0,3010 ,1,1,11690 ,1,2,217770 ,2,14956,196565 ,2,822,13455 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43620 ,2,14979,296375 ,2,829,45 ,1,0,3010 ,1,1,11690 ,1,2,225680 ,2,14956,196160 ,2,822,50895 ,2,14975,563670 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257240 ,2,14979,296385 ,2,829,45 ,1,0,138440 ,1,1,138330 ,2,14956,196150 ,2,822,13455 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296395 ,2,829,45 ,1,0,138330 ,1,1,138110 ,2,14956,196180 ,2,822,13455 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,248000 ,1,2,217770 ,1,3,211330 ,2,14956,196200 ,2,822,13455 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43660 ,2,14979,296425 ,2,829,45 ,1,0,138330 ,2,14956,196415 ,2,822,13455 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296435 ,2,829,45 ,1,0,3010 ,1,1,248000 ,1,2,211330 ,2,14956,196405 ,2,822,50905 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296445 ,2,829,45 ,1,0,138020 ,1,1,138570 ,1,2,138250 ,1,3,138580 ,1,4,138620 ,1,5,138630 ,1,6,138340 ,1,7,138425 ,1,8,138350 ,1,9,138405 ,1,10,138415 ,1,11,138520 ,1,12,138550 ,1,13,138360 ,1,14,138640 ,1,15,138510 ,1,16,138315 ,1,17,138330 ,1,18,138530 ,1,19,138560 ,1,20,122475 ,1,21,122465 ,1,22,138470 ,1,23,138500 ,2,14956,4490 ,2,822,16720 ,2,14975,110 ,2,14976,43695 ,2,14977,43685 ,2,14965,45 ,2,14978,250515 ,2,14979,2415 ,2,829,45 ,1,0,570750 ,2,14956,196250 ,2,822,50915 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296455 ,2,829,45 ,1,0,576615 ,2,14956,196355 ,2,822,50905 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,296475 ,2,829,45 ,1,0,138700 ,1,1,138690 ,1,2,138680 ,1,3,138670 ,1,4,138650 ,2,14956,196315 ,2,822,13505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,43725 ,2,14979,296495 ,2,829,45 ,2,14956,196285 ,2,822,13505 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43755 ,2,14979,296505 ,2,829,45 ,1,0,620270 ,1,1,615295 ,1,2,65 ,1,3,139205 ,1,4,139195 ,1,5,65 ,1,6,138240 ,1,7,139185 ,1,8,138895 ,1,9,138885 ,1,10,138875 ,1,11,138865 ,1,12,65 ,1,13,138395 ,1,14,138855 ,1,15,138845 ,1,16,65 ,1,17,138835 ,1,18,138440 ,1,19,138450 ,1,20,138810 ,1,21,65 ,1,22,138800 ,1,23,138790 ,1,24,65 ,1,25,138780 ,1,26,65 ,1,27,138765 ,1,28,65 ,1,29,138755 ,1,30,65 ,1,31,138745 ,1,32,138735 ,1,33,65 ,2,14956,196565 ,2,822,13505 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43795 ,2,14979,296540 ,2,829,45 ,1,0,138800 ,1,1,105220 ,2,14956,6245 ,2,822,13505 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389330 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,138930 ,2,14956,13210 ,2,822,13505 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397980 ,2,829,45 ,2,14956,196345 ,2,822,13505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296485 ,2,829,45 ,1,0,138940 ,1,1,138930 ,2,14956,196365 ,2,822,50905 ,2,14975,600020 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296560 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,138950 ,2,14956,196375 ,2,822,50905 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,83650 ,2,14979,296570 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,138960 ,2,14956,196375 ,2,822,50905 ,2,14975,110 ,2,14976,43815 ,2,14977,23360 ,2,14965,45 ,2,14978,230235 ,2,14979,296580 ,2,829,45 ,1,0,576730 ,2,14956,196385 ,2,822,50905 ,2,14975,600020 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296590 ,2,829,45 ,1,0,138960 ,1,1,138970 ,2,14956,196395 ,2,822,50905 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,83705 ,2,14979,2415 ,2,829,45 ,2,14956,196395 ,2,822,50905 ,2,14975,110 ,2,14976,30315 ,2,14977,23120 ,2,14965,45 ,2,14978,230245 ,2,14979,296600 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,139175 ,1,4,65 ,1,5,138905 ,1,6,139165 ,1,7,65 ,1,8,139155 ,1,9,65 ,1,10,65 ,1,11,139145 ,1,12,65 ,1,13,139115 ,1,14,139105 ,1,15,139095 ,1,16,139085 ,1,17,65 ,1,18,65 ,1,19,139075 ,1,20,139065 ,1,21,65 ,1,22,139055 ,1,23,139045 ,1,24,65 ,1,25,139000 ,1,26,138990 ,1,27,65 ,1,28,65 ,1,29,138980 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,138950 ,2,14956,196465 ,2,822,13455 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,296610 ,2,829,45 ,1,0,138980 ,1,1,138905 ,1,2,138950 ,1,3,139175 ,1,4,139155 ,1,5,139000 ,1,6,139115 ,1,7,139065 ,1,8,139055 ,1,9,139075 ,1,10,139105 ,1,11,139165 ,1,12,139095 ,1,13,139145 ,1,14,139085 ,1,15,139045 ,1,16,138990 ,2,14956,196485 ,2,822,13455 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43840 ,2,14979,296550 ,2,829,45 ,1,0,105230 ,2,14956,6245 ,2,822,13455 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389335 ,2,829,45 ,1,0,3010 ,1,1,211340 ,1,2,248365 ,1,3,248330 ,1,4,248320 ,1,5,248310 ,2,14956,13210 ,2,822,13455 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398005 ,2,829,45 ,1,0,138895 ,1,1,138800 ,1,2,138440 ,1,3,138735 ,1,4,138875 ,1,5,138855 ,1,6,138745 ,1,7,138755 ,1,8,138790 ,1,9,138450 ,1,10,138865 ,1,11,139185 ,1,12,138765 ,1,13,138845 ,1,14,139205 ,1,15,138240 ,1,16,138395 ,1,17,138780 ,1,18,139195 ,1,19,138835 ,1,20,138810 ,1,21,138885 ,2,14956,196495 ,2,822,13455 ,2,14975,563290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,296635 ,2,829,45 ,2,14956,187610 ,2,822,13455 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,361870 ,2,829,45 ,1,0,139280 ,1,1,139215 ,2,14956,196520 ,2,822,13455 ,2,14975,563665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,43850 ,2,14979,296645 ,2,829,45 ,2,14956,196530 ,2,822,13455 ,2,14975,563670 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257240 ,2,14979,2415 ,2,829,45 ,1,0,269325 ,1,1,45 ,1,2,45 ,2,14956,196605 ,2,822,50935 ,2,14975,563270 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257260 ,2,14979,296655 ,2,829,45 ,1,0,33115 ,1,1,45 ,1,2,613640 ,2,14956,196625 ,2,822,50875 ,2,14975,561220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296665 ,2,829,45 ,2,14956,196635 ,2,822,50875 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,139270 ,1,1,139260 ,2,14956,196680 ,2,822,50875 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296675 ,2,829,45 ,1,0,3010 ,1,1,222855 ,1,2,175900 ,2,14956,196690 ,2,822,50875 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296685 ,2,829,45 ,2,14956,196700 ,2,822,50875 ,2,14975,563640 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257190 ,2,14979,2415 ,2,829,45 ,1,0,139290 ,2,14956,196710 ,2,822,50875 ,2,14975,563290 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257200 ,2,14979,2415 ,2,829,45 ,2,14956,196720 ,2,822,50875 ,2,14975,563270 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257260 ,2,14979,2415 ,2,829,45 ,1,0,139305 ,2,14956,10665 ,2,822,19455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,83935 ,2,14979,296695 ,2,829,45 ,2,14956,6145 ,2,822,19455 ,2,14975,563380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230255 ,2,14979,296705 ,2,829,45 ,2,14956,2855 ,2,822,19455 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390495 ,2,829,45 ,1,0,139335 ,1,1,139325 ,1,2,139315 ,2,14956,6145 ,2,822,19455 ,2,14975,563380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,83935 ,2,14979,296745 ,2,829,45 ,2,14956,196740 ,2,822,19455 ,2,14975,561220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,296755 ,2,829,45 ,1,0,139390 ,1,1,139380 ,1,2,139370 ,1,3,139360 ,2,14956,196750 ,2,822,19455 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296765 ,2,829,45 ,1,0,3010 ,1,1,222855 ,1,2,248590 ,1,3,175900 ,2,14956,190865 ,2,822,19455 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416115 ,2,829,45 ,2,14956,196820 ,2,822,50985 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257275 ,2,14979,296775 ,2,829,45 ,1,0,139440 ,1,1,139430 ,1,2,139420 ,1,3,139410 ,2,14956,196810 ,2,822,19465 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257350 ,2,14979,2415 ,2,829,45 ,1,0,122150 ,2,14956,196850 ,2,822,50995 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257285 ,2,14979,296790 ,2,829,45 ,1,0,3010 ,1,1,5845 ,1,2,248725 ,1,3,248715 ,1,4,248705 ,1,5,248695 ,1,6,175900 ,1,7,199905 ,1,8,230950 ,1,9,248670 ,1,10,228960 ,1,11,248660 ,2,14956,196870 ,2,822,51005 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257295 ,2,14979,296800 ,2,829,45 ,2,14956,196905 ,2,822,51015 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257305 ,2,14979,296810 ,2,829,45 ,1,0,139515 ,1,1,139505 ,1,2,139495 ,2,14956,196925 ,2,822,51035 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257330 ,2,14979,296820 ,2,829,45 ,2,14956,196950 ,2,822,51045 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257340 ,2,14979,296870 ,2,829,45 ,1,0,139535 ,1,1,139525 ,2,14956,196970 ,2,822,51055 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257350 ,2,14979,296880 ,2,829,45 ,2,14956,194400 ,2,822,19465 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,296890 ,2,829,45 ,1,0,139545 ,2,14956,196980 ,2,822,19465 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257275 ,2,14979,2415 ,2,829,45 ,1,0,571980 ,2,14956,197025 ,2,822,19465 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257285 ,2,14979,2415 ,2,829,45 ,1,0,139640 ,1,1,139620 ,1,2,122050 ,1,3,122085 ,1,4,122075 ,1,5,122095 ,1,6,139605 ,1,7,139595 ,1,8,139585 ,1,9,139575 ,1,10,121910 ,2,14956,197035 ,2,822,19465 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257295 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,231065 ,1,2,231055 ,1,3,231045 ,1,4,231030 ,1,5,225170 ,2,14956,197045 ,2,822,19465 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257305 ,2,14979,2415 ,2,829,45 ,1,0,576940 ,2,14956,197055 ,2,822,19465 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257330 ,2,14979,2415 ,2,829,45 ,1,0,139760 ,1,1,139750 ,1,2,139740 ,1,3,139730 ,2,14956,197065 ,2,822,19465 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257340 ,2,14979,2415 ,2,829,45 ,2,14956,2855 ,2,822,19515 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390500 ,2,829,45 ,1,0,267890 ,1,1,269355 ,1,2,45 ,2,14956,190865 ,2,822,19515 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416120 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45 ,1,3,33340 ,1,4,26705 ,1,5,33265 ,1,6,33330 ,1,7,33320 ,1,8,33310 ,1,9,33295 ,1,10,33285 ,1,11,26715 ,1,12,45 ,1,13,614390 ,2,14956,2855 ,2,822,18705 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390485 ,2,829,45 ,1,0,614020 ,1,1,615295 ,1,2,359740 ,1,3,359730 ,1,4,65 ,1,5,359720 ,1,6,65 ,1,7,65 ,1,8,359710 ,1,9,359695 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,359685 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,2,14956,197175 ,2,822,18705 ,2,14975,563050 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,296900 ,2,829,45 ,2,14956,269360 ,2,822,51065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84280 ,2,14979,296910 ,2,829,45 ,1,0,139795 ,2,14956,269360 ,2,822,51065 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230265 ,2,14979,296920 ,2,829,45 ,2,14956,176470 ,2,822,19585 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382355 ,2,829,45 ,1,0,139900 ,1,1,139870 ,1,2,139860 ,1,3,139850 ,1,4,139840 ,1,5,139825 ,1,6,139815 ,1,7,139805 ,2,14956,2855 ,2,822,19585 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391305 ,2,829,45 ,1,0,100670 ,2,14956,173945 ,2,822,19585 ,2,14975,608520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359290 ,2,829,45 ,1,0,3010 ,1,1,248660 ,1,2,212880 ,1,3,249045 ,1,4,209800 ,2,14956,197205 ,2,822,19585 ,2,14975,563755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,197255 ,2,822,19610 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84365 ,2,14979,2415 ,2,829,45 ,1,0,139910 ,2,14956,197245 ,2,822,19610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230280 ,2,14979,296940 ,2,829,45 ,2,14956,197265 ,2,822,19610 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84390 ,2,14979,353870 ,2,829,45 ,1,0,139960 ,1,1,139950 ,1,2,139940 ,1,3,139930 ,1,4,139920 ,2,14956,269360 ,2,822,19610 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230290 ,2,14979,296965 ,2,829,45 ,1,0,3010 ,1,1,249115 ,1,2,195325 ,2,14956,197245 ,2,822,19610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,84365 ,2,14979,296955 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,354225 ,1,4,354235 ,1,5,65 ,2,14956,184135 ,2,822,19610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381025 ,2,829,45 ,2,14956,197280 ,2,822,19610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354880 ,2,829,45 ,1,0,139970 ,2,14956,269360 ,2,822,19610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84390 ,2,14979,353580 ,2,829,45 ,2,14956,197290 ,2,822,19610 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,296975 ,2,829,45 ,1,0,140025 ,1,1,140015 ,1,2,140005 ,2,14956,197300 ,2,822,19610 ,2,14975,563780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,577030 ,2,14956,197415 ,2,822,19610 ,2,14975,563785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257360 ,2,14979,413725 ,2,829,45 ,2,14956,10080 ,2,822,19620 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84505 ,2,14979,381435 ,2,829,45 ,1,0,269380 ,1,1,45 ,1,2,45 ,2,14956,10080 ,2,822,19620 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,230300 ,2,14979,296995 ,2,829,45 ,1,0,33375 ,1,1,45 ,1,2,613640 ,2,14956,10080 ,2,822,19640 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84525 ,2,14979,381445 ,2,829,45 ,2,14956,10080 ,2,822,19640 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,230310 ,2,14979,297015 ,2,829,45 ,1,0,625360 ,1,1,615295 ,1,2,141100 ,1,3,65 ,1,4,65 ,1,5,140535 ,1,6,140505 ,1,7,140495 ,1,8,140485 ,1,9,140475 ,1,10,140465 ,1,11,65 ,1,12,140455 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,140445 ,1,17,140435 ,1,18,65 ,1,19,65 ,1,20,140420 ,1,21,65 ,1,22,140410 ,1,23,65 ,1,24,65 ,1,25,140400 ,1,26,65 ,1,27,140390 ,1,28,121825 ,1,29,140365 ,1,30,140355 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,140310 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,117115 ,1,44,65 ,1,45,140290 ,1,46,140260 ,1,47,140250 ,1,48,65 ,1,49,65 ,1,50,140240 ,1,51,65 ,1,52,140230 ,1,53,114670 ,1,54,65 ,1,55,120710 ,1,56,140205 ,1,57,140185 ,1,58,65 ,1,59,140160 ,1,60,140080 ,1,61,140060 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,140035 ,2,14956,166670 ,2,822,19640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84570 ,2,14979,376540 ,2,829,45 ,2,14956,166660 ,2,822,19640 ,2,14975,599870 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,230340 ,2,14979,297025 ,2,829,45 ,1,0,269390 ,1,1,45 ,1,2,45 ,2,14956,166985 ,2,822,19640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84525 ,2,14979,380925 ,2,829,45 ,1,0,45 ,1,1,33395 ,1,2,613640 ,2,14956,166680 ,2,822,19640 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377460 ,2,829,45 ,2,14956,166740 ,2,822,19640 ,2,14975,563840 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375760 ,2,829,45 ,1,0,140140 ,1,1,140150 ,2,14956,166660 ,2,822,19640 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84570 ,2,14979,376960 ,2,829,45 ,1,0,140410 ,2,14956,171330 ,2,822,19640 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353840 ,2,829,45 ,1,0,100 ,1,1,566445 ,2,14956,197350 ,2,822,19640 ,2,14975,563805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,140435 ,2,14956,166670 ,2,822,19620 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84665 ,2,14979,376535 ,2,829,45 ,1,0,140260 ,2,14956,166660 ,2,822,19620 ,2,14975,599870 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,230350 ,2,14979,297035 ,2,829,45 ,1,0,100 ,1,1,577050 ,2,14956,166985 ,2,822,19620 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84505 ,2,14979,380920 ,2,829,45 ,1,0,141075 ,1,1,103780 ,1,2,140545 ,2,14956,166515 ,2,822,19620 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377295 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359105 ,1,3,65 ,2,14956,166680 ,2,822,19620 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377455 ,2,829,45 ,2,14956,166740 ,2,822,19620 ,2,14975,563845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375755 ,2,829,45 ,1,0,269400 ,1,1,45 ,1,2,45 ,2,14956,166660 ,2,822,19620 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84665 ,2,14979,376955 ,2,829,45 ,1,0,33425 ,1,1,45 ,1,2,33445 ,1,3,614705 ,2,14956,171330 ,2,822,19620 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353825 ,2,829,45 ,2,14956,197395 ,2,822,19620 ,2,14975,563795 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,140575 ,1,1,140565 ,1,2,140555 ,2,14956,197265 ,2,822,19650 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84785 ,2,14979,343350 ,2,829,45 ,2,14956,269360 ,2,822,19650 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230360 ,2,14979,297055 ,2,829,45 ,1,0,141075 ,1,1,140595 ,1,2,141085 ,1,3,140585 ,2,14956,2855 ,2,822,19650 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391005 ,2,829,45 ,2,14956,197280 ,2,822,19650 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343830 ,2,829,45 ,1,0,269430 ,1,1,45 ,1,2,45 ,2,14956,269360 ,2,822,19650 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84785 ,2,14979,343165 ,2,829,45 ,1,0,33605 ,1,1,33490 ,1,2,33480 ,1,3,33415 ,1,4,45 ,1,5,45 ,1,6,614045 ,2,14956,2855 ,2,822,19680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414960 ,2,829,45 ,2,14956,197600 ,2,822,19555 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391405 ,2,829,45 ,1,0,140605 ,2,14956,2855 ,2,822,19555 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390955 ,2,829,45 ,2,14956,199405 ,2,822,19555 ,2,14975,564650 ,2,14976,23130 ,2,14977,23120 ,2,14965,546785 ,2,14978,45 ,2,14979,297080 ,2,829,45 ,1,0,141025 ,1,1,141015 ,1,2,141005 ,1,3,140995 ,1,4,140985 ,1,5,140635 ,2,14956,197690 ,2,822,51085 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297160 ,2,829,45 ,2,14956,197700 ,2,822,51085 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394585 ,2,829,45 ,1,0,269420 ,1,1,45 ,1,2,45 ,2,14956,197710 ,2,822,51085 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394915 ,2,829,45 ,1,0,140655 ,2,14956,197730 ,2,822,19755 ,2,14975,563940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297170 ,2,829,45 ,1,0,140665 ,2,14956,197720 ,2,822,19535 ,2,14975,563720 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,577150 ,2,14956,197810 ,2,822,19745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84965 ,2,14979,397435 ,2,829,45 ,1,0,140685 ,1,1,140675 ,1,2,140665 ,2,14956,197800 ,2,822,19745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230370 ,2,14979,297180 ,2,829,45 ,1,0,33595 ,1,1,33550 ,1,2,45 ,1,3,33540 ,1,4,33500 ,1,5,140655 ,1,6,45 ,1,7,613975 ,2,14956,197245 ,2,822,51065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297200 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,359085 ,1,3,65 ,1,4,65 ,1,5,359075 ,1,6,65 ,1,7,359055 ,1,8,65 ,1,9,359045 ,2,14956,197830 ,2,822,19745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84995 ,2,14979,397310 ,2,829,45 ,2,14956,197820 ,2,822,19745 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,230395 ,2,14979,297220 ,2,829,45 ,1,0,140695 ,2,14956,2855 ,2,822,19745 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390940 ,2,829,45 ,2,14956,184135 ,2,822,19745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380310 ,2,829,45 ,1,0,140850 ,1,1,140840 ,1,2,140810 ,1,3,140800 ,1,4,140770 ,1,5,140760 ,1,6,140750 ,1,7,140740 ,1,8,140705 ,2,14956,173945 ,2,822,19745 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357100 ,2,829,45 ,1,0,140780 ,2,14956,197800 ,2,822,19745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,84965 ,2,14979,297190 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,359040 ,1,4,359030 ,1,5,359020 ,1,6,359010 ,1,7,65 ,1,8,65 ,1,9,65 ,2,14956,197840 ,2,822,19745 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396840 ,2,829,45 ,2,14956,197820 ,2,822,19745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,84995 ,2,14979,297210 ,2,829,45 ,2,14956,197890 ,2,822,19745 ,2,14975,563930 ,2,14976,24020 ,2,14977,44855 ,2,14965,45 ,2,14978,45 ,2,14979,297230 ,2,829,45 ,1,0,140975 ,1,1,140965 ,1,2,140955 ,1,3,140925 ,1,4,140915 ,1,5,140905 ,1,6,140895 ,1,7,140870 ,1,8,140860 ,2,14956,2855 ,2,822,19840 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390960 ,2,829,45 ,1,0,72740 ,1,1,71975 ,2,14956,173945 ,2,822,19840 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357160 ,2,829,45 ,1,0,100 ,1,1,561500 ,1,2,561500 ,2,14956,197840 ,2,822,19840 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396875 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,359115 ,2,14956,197910 ,2,822,19840 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394650 ,2,829,45 ,2,14956,197920 ,2,822,19840 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395175 ,2,829,45 ,1,0,141055 ,2,14956,197930 ,2,822,19840 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297270 ,2,829,45 ,2,14956,197690 ,2,822,51095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,85210 ,2,14979,297280 ,2,829,45 ,1,0,140545 ,1,1,141065 ,2,14956,197690 ,2,822,51095 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,230405 ,2,14979,297290 ,2,829,45 ,1,0,121595 ,1,1,113695 ,1,2,122030 ,1,3,122020 ,2,14956,197245 ,2,822,51105 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,85240 ,2,14979,297300 ,2,829,45 ,1,0,141100 ,1,1,117115 ,1,2,140535 ,1,3,140400 ,1,4,140230 ,1,5,140505 ,1,6,140485 ,1,7,120710 ,1,8,140420 ,1,9,121825 ,1,10,114670 ,1,11,140455 ,1,12,140365 ,1,13,140310 ,1,14,140185 ,1,15,140290 ,1,16,140240 ,1,17,140495 ,1,18,140060 ,1,19,140390 ,1,20,140250 ,1,21,140035 ,1,22,140205 ,1,23,140445 ,1,24,140465 ,1,25,140475 ,1,26,140355 ,1,27,140160 ,1,28,140260 ,1,29,140435 ,1,30,140080 ,1,31,140410 ,2,14956,197245 ,2,822,51105 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230415 ,2,14979,297310 ,2,829,45 ,1,0,139650 ,1,1,117150 ,1,2,117115 ,1,3,121910 ,1,4,114670 ,1,5,104785 ,2,14956,197960 ,2,822,19840 ,2,14975,564010 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297320 ,2,829,45 ,1,0,139650 ,1,1,117150 ,1,2,117115 ,1,3,121910 ,1,4,114670 ,1,5,104785 ,1,6,141165 ,1,7,139605 ,2,14956,197940 ,2,822,20015 ,2,14975,564020 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,70765 ,1,1,78390 ,1,2,120990 ,1,3,120965 ,2,14956,197950 ,2,822,19865 ,2,14975,564025 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,198000 ,2,822,19865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85210 ,2,14979,2415 ,2,829,45 ,1,0,269440 ,1,1,45 ,1,2,45 ,2,14956,197700 ,2,822,51095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394590 ,2,829,45 ,1,0,45 ,1,1,141215 ,1,2,141205 ,1,3,614705 ,2,14956,197710 ,2,822,51095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394925 ,2,829,45 ,1,0,141205 ,1,1,141215 ,2,14956,173945 ,2,822,19875 ,2,14975,608605 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357205 ,2,829,45 ,1,0,116950 ,2,14956,198020 ,2,822,19875 ,2,14975,564060 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,121105 ,2,14956,2855 ,2,822,19885 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414995 ,2,829,45 ,1,0,3010 ,1,1,225310 ,1,2,210905 ,1,3,198280 ,2,14956,197690 ,2,822,51115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297350 ,2,829,45 ,1,0,3010 ,1,1,225310 ,1,2,210905 ,1,3,198280 ,1,4,212320 ,2,14956,197700 ,2,822,51115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416195 ,2,829,45 ,1,0,572035 ,2,14956,197710 ,2,822,51115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416255 ,2,829,45 ,1,0,121855 ,1,1,139650 ,1,2,141285 ,1,3,141275 ,2,14956,198085 ,2,822,19895 ,2,14975,564075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,197830 ,2,822,19940 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85435 ,2,14979,397330 ,2,829,45 ,1,0,268380 ,1,1,269450 ,1,2,45 ,2,14956,197820 ,2,822,19940 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,230425 ,2,14979,297370 ,2,829,45 ,1,0,45 ,1,1,26255 ,1,2,26225 ,1,3,33635 ,1,4,45 ,1,5,616170 ,2,14956,197265 ,2,822,19940 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85455 ,2,14979,343235 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,354285 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,354275 ,1,9,354255 ,2,14956,269360 ,2,822,19940 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230450 ,2,14979,297400 ,2,829,45 ,2,14956,2855 ,2,822,19940 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390980 ,2,829,45 ,1,0,141295 ,2,14956,173945 ,2,822,19940 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357170 ,2,829,45 ,2,14956,197840 ,2,822,19940 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396915 ,2,829,45 ,1,0,617450 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,141430 ,1,6,121845 ,1,7,65 ,1,8,141420 ,1,9,141410 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,141400 ,1,14,141390 ,1,15,139630 ,1,16,65 ,1,17,65 ,1,18,141130 ,1,19,65 ,1,20,117295 ,1,21,121710 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,139690 ,1,28,120745 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,141350 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,121865 ,1,39,141340 ,1,40,141175 ,1,41,117275 ,1,42,65 ,1,43,120730 ,1,44,141330 ,1,45,120720 ,1,46,115610 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,141165 ,1,51,141320 ,1,52,65 ,1,53,65 ,1,54,116635 ,1,55,141305 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,141185 ,1,62,141110 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,197820 ,2,822,19940 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,85435 ,2,14979,297380 ,2,829,45 ,1,0,121865 ,1,1,121845 ,1,2,120745 ,1,3,121710 ,1,4,141320 ,1,5,139630 ,1,6,141165 ,1,7,141430 ,1,8,141340 ,1,9,141400 ,1,10,120720 ,1,11,141350 ,1,12,141305 ,1,13,141390 ,1,14,116635 ,1,15,115610 ,1,16,141420 ,1,17,141185 ,1,18,141130 ,1,19,117295 ,1,20,141175 ,1,21,117275 ,1,22,141110 ,1,23,139690 ,1,24,141410 ,1,25,120730 ,1,26,141330 ,2,14956,197910 ,2,822,19940 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,186035 ,1,2,210905 ,1,3,198280 ,2,14956,197920 ,2,822,19940 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,104855 ,2,14956,197280 ,2,822,19940 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343775 ,2,829,45 ,1,0,141605 ,1,1,57795 ,2,14956,269360 ,2,822,19940 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,85455 ,2,14979,343100 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,186970 ,1,3,175900 ,2,14956,198105 ,2,822,19940 ,2,14975,564085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297410 ,2,829,45 ,1,0,3010 ,1,1,217650 ,1,2,209800 ,1,3,250735 ,1,4,250725 ,1,5,250715 ,1,6,250680 ,1,7,250670 ,1,8,250660 ,1,9,250650 ,2,14956,197265 ,2,822,19950 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85645 ,2,14979,343195 ,2,829,45 ,1,0,113650 ,1,1,141545 ,1,2,113600 ,1,3,113570 ,1,4,112330 ,1,5,113555 ,1,6,141625 ,1,7,113545 ,1,8,113580 ,1,9,141645 ,1,10,113590 ,1,11,141615 ,1,12,141595 ,1,13,141535 ,1,14,141555 ,1,15,113640 ,1,16,141655 ,2,14956,269360 ,2,822,19950 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230460 ,2,14979,297420 ,2,829,45 ,2,14956,2855 ,2,822,19950 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390945 ,2,829,45 ,1,0,141750 ,1,1,141740 ,1,2,141730 ,1,3,112155 ,2,14956,173945 ,2,822,19950 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357110 ,2,829,45 ,2,14956,197840 ,2,822,19950 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396860 ,2,829,45 ,1,0,267890 ,1,1,267720 ,1,2,269795 ,2,14956,197700 ,2,822,19950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416155 ,2,829,45 ,1,0,259805 ,2,14956,197710 ,2,822,19950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416240 ,2,829,45 ,2,14956,197280 ,2,822,19950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410105 ,2,829,45 ,1,0,152480 ,1,1,152470 ,1,2,152450 ,1,3,152440 ,1,4,141800 ,2,14956,269360 ,2,822,19950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,85645 ,2,14979,410035 ,2,829,45 ,2,14956,197265 ,2,822,19970 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85755 ,2,14979,343280 ,2,829,45 ,1,0,259815 ,2,14956,269360 ,2,822,51130 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230470 ,2,14979,297470 ,2,829,45 ,1,0,141850 ,1,1,141840 ,1,2,141830 ,2,14956,197840 ,2,822,51130 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396920 ,2,829,45 ,1,0,3010 ,1,1,251525 ,1,2,251515 ,1,3,251505 ,1,4,234550 ,1,5,251495 ,1,6,5845 ,1,7,245540 ,1,8,251485 ,1,9,251460 ,1,10,251450 ,1,11,251440 ,1,12,228960 ,1,13,251430 ,1,14,251420 ,1,15,251410 ,1,16,251400 ,1,17,251390 ,1,18,175900 ,1,19,251350 ,1,20,251340 ,1,21,182870 ,1,22,251330 ,1,23,251320 ,1,24,251305 ,1,25,251295 ,1,26,251285 ,1,27,251275 ,1,28,251235 ,1,29,251225 ,1,30,251215 ,1,31,251205 ,1,32,242360 ,1,33,251190 ,1,34,251180 ,1,35,251170 ,1,36,251160 ,1,37,251120 ,1,38,251110 ,1,39,251100 ,1,40,251090 ,1,41,251065 ,1,42,251055 ,1,43,251045 ,1,44,251035 ,1,45,182770 ,1,46,174110 ,1,47,182880 ,1,48,251000 ,1,49,182890 ,1,50,250990 ,1,51,250980 ,1,52,182745 ,1,53,221020 ,1,54,250970 ,1,55,182805 ,1,56,221835 ,2,14956,197700 ,2,822,51130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394595 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,1,40,100 ,1,41,100 ,1,42,100 ,1,43,100 ,1,44,100 ,1,45,100 ,1,46,100 ,1,47,100 ,1,48,100 ,1,49,100 ,1,50,100 ,1,51,100 ,1,52,100 ,1,53,100 ,1,54,100 ,1,55,100 ,1,56,100 ,2,14956,197710 ,2,822,51130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394950 ,2,829,45 ,1,0,577345 ,2,14956,197280 ,2,822,51130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343785 ,2,829,45 ,1,0,141945 ,1,1,141935 ,1,2,141925 ,1,3,141915 ,1,4,141905 ,1,5,141860 ,2,14956,269360 ,2,822,51130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,85755 ,2,14979,343110 ,2,829,45 ,1,0,141895 ,2,14956,198235 ,2,822,19960 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85865 ,2,14979,397460 ,2,829,45 ,1,0,577350 ,2,14956,198225 ,2,822,19960 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,230480 ,2,14979,297480 ,2,829,45 ,2,14956,2855 ,2,822,19960 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390985 ,2,829,45 ,1,0,142040 ,1,1,142030 ,1,2,142015 ,1,3,142005 ,1,4,141995 ,1,5,141985 ,1,6,141965 ,1,7,141955 ,2,14956,173945 ,2,822,19960 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357195 ,2,829,45 ,1,0,577360 ,2,14956,198245 ,2,822,19960 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297500 ,2,829,45 ,1,0,142095 ,1,1,142085 ,1,2,142060 ,1,3,142050 ,2,14956,198225 ,2,822,19960 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,85865 ,2,14979,297490 ,2,829,45 ,2,14956,198290 ,2,822,19960 ,2,14975,564120 ,2,14976,24020 ,2,14977,45295 ,2,14965,45 ,2,14978,45 ,2,14979,297510 ,2,829,45 ,1,0,267890 ,1,1,268765 ,1,2,270010 ,1,3,269660 ,1,4,45 ,1,5,45 ,1,6,45 ,2,14956,198330 ,2,822,51140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297520 ,2,829,45 ,1,0,33705 ,1,1,45 ,1,2,34105 ,1,3,45 ,1,4,34070 ,1,5,33725 ,1,6,33795 ,1,7,33715 ,1,8,33740 ,1,9,45 ,1,10,33695 ,1,11,45 ,1,12,33770 ,1,13,614390 ,2,14956,197255 ,2,822,20015 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,85240 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,355065 ,1,3,65 ,2,14956,198340 ,2,822,51140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297530 ,2,829,45 ,2,14956,197265 ,2,822,20015 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,86000 ,2,14979,343225 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,355125 ,1,3,65 ,2,14956,269360 ,2,822,51105 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230490 ,2,14979,297540 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370960 ,2,14956,197280 ,2,822,51105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343755 ,2,829,45 ,2,14956,269360 ,2,822,51105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,86000 ,2,14979,343090 ,2,829,45 ,1,0,269490 ,1,1,45 ,1,2,45 ,2,14956,198330 ,2,822,51150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297570 ,2,829,45 ,1,0,33815 ,1,1,45 ,1,2,613640 ,2,14956,198340 ,2,822,51150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297580 ,2,829,45 ,2,14956,199075 ,2,822,20055 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,86105 ,2,14979,2415 ,2,829,45 ,1,0,142205 ,1,1,142195 ,1,2,142160 ,1,3,142150 ,1,4,142140 ,1,5,142130 ,1,6,142115 ,1,7,142105 ,2,14956,199065 ,2,822,20055 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230500 ,2,14979,297590 ,2,829,45 ,1,0,3010 ,1,1,251825 ,1,2,251815 ,1,3,251790 ,1,4,251780 ,2,14956,197245 ,2,822,51160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297610 ,2,829,45 ,1,0,3010 ,1,1,186035 ,1,2,251790 ,2,14956,173945 ,2,822,20065 ,2,14975,608620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357210 ,2,829,45 ,2,14956,198395 ,2,822,20105 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297630 ,2,829,45 ,1,0,269510 ,1,1,45 ,1,2,45 ,2,14956,198415 ,2,822,20105 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,142270 ,1,1,142250 ,1,2,142225 ,1,3,142215 ,2,14956,198425 ,2,822,20105 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398450 ,2,829,45 ,2,14956,198460 ,2,822,20125 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,297640 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,355190 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,355145 ,1,8,355135 ,1,9,65 ,2,14956,198490 ,2,822,20170 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,297675 ,2,829,45 ,2,14956,2855 ,2,822,20180 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391610 ,2,829,45 ,1,0,142240 ,2,14956,2855 ,2,822,20190 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391605 ,2,829,45 ,1,0,618545 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,355350 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,355340 ,1,14,355330 ,1,15,65 ,1,16,355310 ,1,17,355300 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,355290 ,1,23,355280 ,1,24,355260 ,1,25,355250 ,1,26,65 ,1,27,355240 ,1,28,355230 ,1,29,65 ,1,30,355220 ,1,31,65 ,1,32,65 ,1,33,355210 ,2,14956,198585 ,2,822,51185 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257375 ,2,14979,297685 ,2,829,45 ,2,14956,2855 ,2,822,20210 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391115 ,2,829,45 ,1,0,142260 ,2,14956,183310 ,2,822,20210 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387280 ,2,829,45 ,1,0,34060 ,1,1,45 ,1,2,45 ,1,3,45 ,1,4,45 ,1,5,34050 ,1,6,33855 ,1,7,34040 ,1,8,33865 ,1,9,33950 ,1,10,33940 ,1,11,33925 ,1,12,33915 ,1,13,142225 ,1,14,33905 ,1,15,33895 ,1,16,142215 ,1,17,33805 ,1,18,142250 ,1,19,45 ,1,20,33845 ,1,21,142270 ,1,22,45 ,1,23,614710 ,2,14956,198605 ,2,822,20220 ,2,14975,564365 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297705 ,2,829,45 ,2,14956,2855 ,2,822,20230 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391070 ,2,829,45 ,1,0,259825 ,2,14956,183310 ,2,822,20230 ,2,14975,608640 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387270 ,2,829,45 ,1,0,142555 ,1,1,142545 ,1,2,142525 ,1,3,142505 ,1,4,142460 ,1,5,142440 ,1,6,142420 ,1,7,142410 ,1,8,142325 ,2,14956,198615 ,2,822,20220 ,2,14975,608635 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297725 ,2,829,45 ,1,0,142335 ,2,14956,198695 ,2,822,51195 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257385 ,2,14979,297735 ,2,829,45 ,1,0,142360 ,2,14956,2855 ,2,822,20245 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391110 ,2,829,45 ,1,0,100 ,1,1,566065 ,2,14956,183310 ,2,822,20245 ,2,14975,608645 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387275 ,2,829,45 ,1,0,3010 ,1,1,182835 ,1,2,182825 ,1,3,182790 ,1,4,182890 ,1,5,182880 ,2,14956,179555 ,2,822,20245 ,2,14975,608645 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387725 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,355410 ,1,3,65 ,2,14956,195165 ,2,822,20245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257395 ,2,14979,386675 ,2,829,45 ,2,14956,170435 ,2,822,20245 ,2,14975,608645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257395 ,2,14979,412640 ,2,829,45 ,1,0,142565 ,2,14956,198675 ,2,822,20245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257405 ,2,14979,386925 ,2,829,45 ,2,14956,198755 ,2,822,20200 ,2,14975,563735 ,2,14976,23130 ,2,14977,45900 ,2,14965,45 ,2,14978,45 ,2,14979,297780 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,355200 ,2,14956,198715 ,2,822,20420 ,2,14975,564380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,198735 ,2,822,20410 ,2,14975,564385 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297790 ,2,829,45 ,1,0,142575 ,2,14956,198745 ,2,822,20065 ,2,14975,564190 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,355400 ,2,14956,198975 ,2,822,20200 ,2,14975,563735 ,2,14976,23130 ,2,14977,45900 ,2,14965,45 ,2,14978,45 ,2,14979,297800 ,2,829,45 ,2,14956,2855 ,2,822,20275 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391065 ,2,829,45 ,1,0,142610 ,2,14956,183310 ,2,822,20275 ,2,14975,608675 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387250 ,2,829,45 ,1,0,252705 ,1,1,45 ,1,2,142620 ,2,14956,198785 ,2,822,20265 ,2,14975,564435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,297825 ,2,829,45 ,1,0,142630 ,2,14956,183310 ,2,822,20265 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387245 ,2,829,45 ,1,0,142655 ,2,14956,198805 ,2,822,20300 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388915 ,2,829,45 ,2,14956,2855 ,2,822,20310 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391055 ,2,829,45 ,1,0,269500 ,1,1,45 ,1,2,45 ,2,14956,198805 ,2,822,20310 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388920 ,2,829,45 ,1,0,34030 ,1,1,45 ,1,2,45 ,1,3,34020 ,1,4,34010 ,1,5,33960 ,1,6,614045 ,2,14956,198805 ,2,822,20320 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388930 ,2,829,45 ,2,14956,198805 ,2,822,20360 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414360 ,2,829,45 ,2,14956,2855 ,2,822,20370 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391040 ,2,829,45 ,1,0,577600 ,2,14956,198805 ,2,822,20370 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388890 ,2,829,45 ,2,14956,2855 ,2,822,20380 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391045 ,2,829,45 ,1,0,142655 ,2,14956,198805 ,2,822,20380 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388895 ,2,829,45 ,2,14956,170435 ,2,822,20380 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257435 ,2,14979,383135 ,2,829,45 ,1,0,142620 ,2,14956,2855 ,2,822,20255 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391060 ,2,829,45 ,1,0,252705 ,1,1,45 ,1,2,142640 ,2,14956,198805 ,2,822,20255 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388925 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,355360 ,1,3,65 ,2,14956,198425 ,2,822,20200 ,2,14975,561460 ,2,14976,24020 ,2,14977,46285 ,2,14965,45 ,2,14978,45 ,2,14979,398475 ,2,829,45 ,2,14956,198995 ,2,822,20200 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257375 ,2,14979,2415 ,2,829,45 ,1,0,142630 ,1,1,142640 ,1,2,142685 ,1,3,142675 ,1,4,142665 ,2,14956,199005 ,2,822,20200 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257385 ,2,14979,2415 ,2,829,45 ,2,14956,199095 ,2,822,20055 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,86715 ,2,14979,2415 ,2,829,45 ,2,14956,199085 ,2,822,20055 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,230510 ,2,14979,297845 ,2,829,45 ,1,0,259835 ,2,14956,197690 ,2,822,51205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297885 ,2,829,45 ,1,0,142335 ,1,1,142390 ,1,2,142735 ,1,3,142725 ,1,4,142380 ,1,5,142715 ,1,6,142705 ,1,7,142480 ,1,8,142535 ,1,9,142515 ,1,10,142450 ,1,11,142430 ,1,12,142360 ,2,14956,199065 ,2,822,20055 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,86105 ,2,14979,297600 ,2,829,45 ,1,0,142555 ,1,1,142335 ,2,14956,199085 ,2,822,20055 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,86715 ,2,14979,297855 ,2,829,45 ,2,14956,2855 ,2,822,20055 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390990 ,2,829,45 ,1,0,142805 ,1,1,142470 ,1,2,142775 ,1,3,142765 ,1,4,142755 ,1,5,142745 ,2,14956,197840 ,2,822,20055 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396925 ,2,829,45 ,1,0,3010 ,1,1,214155 ,1,2,221620 ,1,3,252845 ,2,14956,197910 ,2,822,20055 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394655 ,2,829,45 ,1,0,142270 ,2,14956,197920 ,2,822,20055 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395205 ,2,829,45 ,2,14956,199110 ,2,822,20055 ,2,14975,564180 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,142910 ,1,1,142900 ,1,2,142875 ,1,3,142865 ,1,4,142855 ,1,5,142845 ,1,6,142835 ,1,7,142825 ,1,8,142815 ,2,14956,176230 ,2,822,20055 ,2,14975,564495 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257445 ,2,14979,416325 ,2,829,45 ,1,0,142875 ,2,14956,166485 ,2,822,20055 ,2,14975,564495 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257455 ,2,14979,411725 ,2,829,45 ,1,0,74240 ,2,14956,197265 ,2,822,20390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,86870 ,2,14979,343205 ,2,829,45 ,1,0,3010 ,1,1,174110 ,1,2,252940 ,2,14956,269360 ,2,822,20390 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230520 ,2,14979,297895 ,2,829,45 ,1,0,84345 ,1,1,84470 ,1,2,84765 ,2,14956,2855 ,2,822,20390 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390950 ,2,829,45 ,1,0,3010 ,1,1,214155 ,2,14956,173945 ,2,822,20390 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357150 ,2,829,45 ,2,14956,197840 ,2,822,20390 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396865 ,2,829,45 ,1,0,269525 ,1,1,45 ,1,2,45 ,2,14956,197700 ,2,822,20390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416185 ,2,829,45 ,1,0,45 ,1,1,34080 ,1,2,613640 ,2,14956,197710 ,2,822,20390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416245 ,2,829,45 ,2,14956,197280 ,2,822,20390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410120 ,2,829,45 ,2,14956,269360 ,2,822,20390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,86870 ,2,14979,410040 ,2,829,45 ,1,0,142955 ,1,1,142945 ,1,2,142930 ,1,3,142920 ,2,14956,197265 ,2,822,20400 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,86975 ,2,14979,343215 ,2,829,45 ,2,14956,269360 ,2,822,20400 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230545 ,2,14979,297915 ,2,829,45 ,1,0,146380 ,1,1,142975 ,1,2,142965 ,2,14956,197600 ,2,822,20400 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391400 ,2,829,45 ,2,14956,197840 ,2,822,20400 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396870 ,2,829,45 ,1,0,267720 ,1,1,269535 ,1,2,45 ,2,14956,197700 ,2,822,20400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416190 ,2,829,45 ,1,0,34125 ,1,1,45 ,1,2,613640 ,2,14956,197710 ,2,822,20400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416250 ,2,829,45 ,1,0,569515 ,2,14956,197280 ,2,822,20400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410125 ,2,829,45 ,1,0,143055 ,1,1,143045 ,1,2,143035 ,1,3,142990 ,2,14956,269360 ,2,822,20400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,86975 ,2,14979,410045 ,2,829,45 ,1,0,143000 ,2,14956,173945 ,2,822,20400 ,2,14975,608680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257465 ,2,14979,410450 ,2,829,45 ,2,14956,197700 ,2,822,51205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394600 ,2,829,45 ,1,0,269545 ,1,1,45 ,1,2,45 ,2,14956,197710 ,2,822,51205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394955 ,2,829,45 ,1,0,143100 ,1,1,143065 ,2,14956,197265 ,2,822,20420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,87150 ,2,14979,343310 ,2,829,45 ,1,0,45 ,1,1,34175 ,1,2,34115 ,1,3,34165 ,1,4,143100 ,1,5,143065 ,1,6,45 ,1,7,613975 ,2,14956,269360 ,2,822,51160 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230555 ,2,14979,297925 ,2,829,45 ,1,0,613975 ,1,1,615295 ,1,2,356850 ,1,3,65 ,1,4,356840 ,1,5,356830 ,1,6,356815 ,1,7,65 ,1,8,356805 ,1,9,65 ,2,14956,197280 ,2,822,51160 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343795 ,2,829,45 ,2,14956,269360 ,2,822,51160 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,87150 ,2,14979,343120 ,2,829,45 ,1,0,143110 ,2,14956,197265 ,2,822,19715 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,87190 ,2,14979,343330 ,2,829,45 ,2,14956,269360 ,2,822,51215 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,230565 ,2,14979,297935 ,2,829,45 ,1,0,143120 ,2,14956,197840 ,2,822,51215 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416600 ,2,829,45 ,2,14956,197700 ,2,822,51215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394610 ,2,829,45 ,1,0,259925 ,1,1,259915 ,1,2,259900 ,1,3,259890 ,1,4,259880 ,1,5,259845 ,2,14956,197710 ,2,822,51215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394965 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,143160 ,1,6,143150 ,1,7,143140 ,2,14956,197280 ,2,822,51215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343805 ,2,829,45 ,1,0,641775 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,367045 ,1,5,367035 ,1,6,367025 ,1,7,367015 ,1,8,65 ,1,9,367000 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,366955 ,1,15,366950 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,366940 ,1,26,366930 ,1,27,366920 ,1,28,366910 ,1,29,366900 ,1,30,366885 ,1,31,366870 ,1,32,366860 ,1,33,366850 ,1,34,366840 ,1,35,366825 ,1,36,65 ,1,37,65 ,1,38,366810 ,1,39,366805 ,1,40,366795 ,1,41,65 ,1,42,65 ,1,43,366740 ,1,44,366735 ,1,45,366725 ,1,46,65 ,1,47,65 ,1,48,366715 ,1,49,366705 ,1,50,366695 ,1,51,366685 ,1,52,366675 ,1,53,366645 ,1,54,366635 ,1,55,65 ,1,56,366625 ,1,57,366615 ,1,58,366600 ,1,59,366595 ,1,60,65 ,1,61,366585 ,1,62,65 ,1,63,65 ,1,64,366575 ,1,65,65 ,1,66,65 ,1,67,65 ,1,68,366545 ,1,69,366535 ,1,70,366525 ,1,71,366515 ,1,72,65 ,1,73,65 ,1,74,366500 ,1,75,366490 ,1,76,366480 ,1,77,65 ,1,78,366470 ,1,79,366440 ,1,80,366425 ,1,81,366420 ,1,82,366410 ,1,83,65 ,1,84,366395 ,1,85,366390 ,1,86,65 ,1,87,65 ,1,88,65 ,1,89,366380 ,1,90,65 ,1,91,366370 ,1,92,366345 ,1,93,366335 ,1,94,366325 ,1,95,366310 ,1,96,366300 ,1,97,65 ,1,98,366290 ,1,99,366275 ,1,100,65 ,1,101,366270 ,1,102,366235 ,1,103,65 ,1,104,65 ,1,105,366225 ,1,106,65 ,1,107,366215 ,1,108,366205 ,1,109,366190 ,1,110,366185 ,1,111,65 ,1,112,366175 ,1,113,65 ,1,114,65 ,1,115,366165 ,1,116,366125 ,1,117,65 ,1,118,366115 ,1,119,65 ,1,120,65 ,1,121,65 ,1,122,65 ,1,123,366105 ,1,124,366095 ,1,125,366080 ,1,126,65 ,1,127,366070 ,1,128,366060 ,1,129,366050 ,1,130,366035 ,1,131,366025 ,1,132,65 ,1,133,65 ,1,134,366015 ,1,135,366005 ,1,136,65 ,1,137,365995 ,1,138,65 ,1,139,65 ,1,140,65 ,1,141,65 ,1,142,65 ,1,143,365985 ,1,144,65 ,1,145,65 ,1,146,65 ,1,147,65 ,1,148,365975 ,1,149,65 ,1,150,65 ,1,151,65 ,1,152,65 ,1,153,65 ,1,154,65 ,1,155,65 ,1,156,65 ,1,157,65 ,1,158,365965 ,1,159,365925 ,1,160,365915 ,1,161,65 ,1,162,65 ,1,163,365905 ,1,164,65 ,1,165,65 ,1,166,365895 ,1,167,65 ,1,168,65 ,1,169,65 ,1,170,365885 ,1,171,65 ,1,172,65 ,1,173,65 ,1,174,65 ,1,175,65 ,1,176,365875 ,1,177,65 ,1,178,365860 ,1,179,365855 ,1,180,65 ,1,181,65 ,1,182,365815 ,1,183,365810 ,1,184,65 ,1,185,365800 ,1,186,365790 ,1,187,65 ,1,188,65 ,1,189,65 ,1,190,65 ,1,191,65 ,1,192,65 ,1,193,365775 ,1,194,65 ,1,195,65 ,1,196,365765 ,1,197,365755 ,1,198,365745 ,1,199,65 ,1,200,65 ,1,201,65 ,1,202,365715 ,1,203,65 ,1,204,65 ,1,205,65 ,1,206,365705 ,1,207,65 ,1,208,65 ,1,209,365695 ,1,210,365685 ,1,211,365670 ,1,212,365665 ,1,213,65 ,1,214,365655 ,1,215,65 ,1,216,365645 ,1,217,65 ,1,218,65 ,1,219,365620 ,1,220,365610 ,1,221,365600 ,1,222,65 ,1,223,365590 ,1,224,65 ,1,225,365570 ,1,226,365560 ,1,227,365550 ,1,228,65 ,1,229,365540 ,1,230,65 ,1,231,365505 ,1,232,365495 ,1,233,365485 ,1,234,365475 ,1,235,65 ,1,236,65 ,1,237,365460 ,1,238,65 ,1,239,365450 ,1,240,65 ,1,241,365440 ,1,242,65 ,1,243,65 ,1,244,65 ,1,245,365430 ,1,246,65 ,1,247,65 ,1,248,365405 ,1,249,365395 ,1,250,365385 ,1,251,365375 ,1,252,65 ,1,253,365355 ,1,254,365345 ,1,255,65 ,1,256,65 ,1,257,365335 ,1,258,65 ,1,259,65 ,1,260,65 ,1,261,65 ,1,262,365325 ,1,263,365260 ,1,264,365250 ,1,265,365240 ,1,266,365230 ,1,267,365220 ,1,268,365210 ,1,269,65 ,1,270,65 ,1,271,365200 ,1,272,365190 ,1,273,365165 ,1,274,65 ,1,275,365155 ,1,276,365145 ,1,277,65 ,1,278,365135 ,1,279,65 ,1,280,365120 ,1,281,65 ,1,282,365110 ,1,283,365100 ,1,284,365090 ,1,285,365055 ,1,286,365045 ,1,287,365030 ,1,288,65 ,1,289,65 ,1,290,365025 ,1,291,365015 ,1,292,365005 ,1,293,364995 ,1,294,364985 ,1,295,65 ,1,296,364935 ,1,297,364930 ,1,298,364920 ,1,299,364910 ,1,300,364900 ,1,301,364890 ,1,302,65 ,1,303,364880 ,1,304,65 ,1,305,65 ,1,306,65 ,1,307,65 ,1,308,364870 ,1,309,364820 ,1,310,364815 ,1,311,65 ,1,312,364805 ,1,313,65 ,1,314,364795 ,1,315,364785 ,1,316,364775 ,1,317,364765 ,1,318,65 ,1,319,65 ,1,320,364755 ,1,321,65 ,1,322,65 ,1,323,364730 ,1,324,364720 ,1,325,65 ,1,326,364710 ,1,327,364700 ,1,328,65 ,1,329,65 ,1,330,364685 ,1,331,65 ,1,332,364675 ,1,333,65 ,1,334,65 ,1,335,364665 ,1,336,65 ,1,337,364655 ,1,338,364610 ,1,339,364600 ,1,340,364590 ,1,341,364580 ,1,342,65 ,1,343,364570 ,1,344,364560 ,1,345,65 ,1,346,364550 ,1,347,364540 ,1,348,65 ,1,349,364520 ,1,350,65 ,1,351,364510 ,1,352,364500 ,1,353,65 ,1,354,364490 ,1,355,65 ,1,356,364470 ,1,357,65 ,1,358,65 ,1,359,364465 ,1,360,65 ,1,361,364455 ,1,362,65 ,1,363,364445 ,1,364,364410 ,1,365,364400 ,1,366,65 ,1,367,364390 ,1,368,65 ,1,369,364380 ,1,370,65 ,1,371,65 ,1,372,65 ,1,373,65 ,1,374,364360 ,1,375,364355 ,1,376,65 ,1,377,364345 ,1,378,364335 ,1,379,65 ,1,380,65 ,1,381,65 ,1,382,364300 ,1,383,364290 ,1,384,65 ,1,385,364280 ,1,386,364270 ,1,387,65 ,1,388,65 ,1,389,364260 ,1,390,364250 ,1,391,65 ,1,392,364240 ,1,393,364230 ,1,394,65 ,1,395,364185 ,1,396,65 ,1,397,65 ,1,398,65 ,1,399,65 ,1,400,65 ,1,401,65 ,1,402,65 ,1,403,364175 ,1,404,65 ,1,405,65 ,1,406,65 ,1,407,364165 ,1,408,65 ,1,409,65 ,1,410,364155 ,1,411,65 ,1,412,65 ,1,413,65 ,1,414,364140 ,1,415,65 ,1,416,364130 ,1,417,364120 ,1,418,364110 ,1,419,65 ,1,420,65 ,1,421,65 ,1,422,65 ,1,423,65 ,1,424,65 ,1,425,364085 ,1,426,364075 ,1,427,364065 ,1,428,364055 ,1,429,364035 ,1,430,65 ,1,431,364030 ,1,432,364020 ,1,433,65 ,1,434,65 ,1,435,65 ,1,436,364010 ,1,437,65 ,1,438,65 ,1,439,363965 ,1,440,363960 ,1,441,65 ,1,442,363950 ,1,443,65 ,1,444,65 ,1,445,363940 ,1,446,363930 ,1,447,65 ,1,448,65 ,1,449,65 ,1,450,65 ,1,451,363920 ,1,452,65 ,1,453,363910 ,1,454,65 ,1,455,65 ,1,456,363900 ,1,457,363845 ,1,458,65 ,1,459,363835 ,1,460,65 ,1,461,363825 ,1,462,363810 ,1,463,363800 ,1,464,65 ,1,465,363790 ,1,466,363780 ,1,467,65 ,1,468,363770 ,1,469,363740 ,1,470,363730 ,1,471,363720 ,1,472,65 ,1,473,65 ,1,474,363710 ,1,475,363695 ,1,476,363685 ,1,477,363675 ,1,478,363665 ,1,479,363625 ,1,480,65 ,1,481,363615 ,1,482,363605 ,1,483,363595 ,1,484,65 ,1,485,363575 ,1,486,363565 ,1,487,65 ,1,488,363555 ,1,489,65 ,1,490,65 ,1,491,65 ,1,492,363545 ,1,493,65 ,1,494,363510 ,1,495,363500 ,1,496,363490 ,1,497,65 ,1,498,363480 ,1,499,65 ,1,500,363465 ,1,501,65 ,1,502,65 ,1,503,65 ,1,504,65 ,1,505,363455 ,1,506,363445 ,1,507,363435 ,1,508,65 ,1,509,65 ,1,510,363405 ,1,511,363395 ,1,512,65 ,1,513,65 ,2,14956,269360 ,2,822,51215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,87190 ,2,14979,343130 ,2,829,45 ,2,14956,179555 ,2,822,20460 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387625 ,2,829,45 ,2,14956,179555 ,2,822,20470 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387650 ,2,829,45 ,1,0,269555 ,1,1,45 ,1,2,45 ,2,14956,179555 ,2,822,20480 ,2,14975,608685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387615 ,2,829,45 ,1,0,45 ,1,1,34245 ,1,2,45 ,1,3,34265 ,1,4,34235 ,1,5,616170 ,2,14956,199305 ,2,822,20480 ,2,14975,564585 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297995 ,2,829,45 ,1,0,641800 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,363385 ,1,6,65 ,1,7,65 ,1,8,363375 ,1,9,363350 ,1,10,363340 ,1,11,363330 ,1,12,363320 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,363290 ,1,18,363280 ,1,19,65 ,1,20,363270 ,1,21,65 ,1,22,363260 ,1,23,65 ,1,24,363250 ,1,25,363240 ,1,26,65 ,1,27,363230 ,1,28,65 ,1,29,363220 ,1,30,363175 ,1,31,363165 ,1,32,363155 ,1,33,65 ,1,34,363145 ,1,35,65 ,1,36,65 ,1,37,363135 ,1,38,65 ,1,39,363125 ,1,40,363115 ,1,41,363105 ,1,42,65 ,1,43,363080 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,363070 ,1,51,363060 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,363050 ,1,57,65 ,1,58,65 ,1,59,363030 ,1,60,65 ,1,61,363020 ,1,62,65 ,1,63,65 ,1,64,363010 ,1,65,65 ,1,66,65 ,1,67,65 ,1,68,363000 ,1,69,65 ,1,70,362945 ,1,71,65 ,1,72,65 ,1,73,362935 ,1,74,362925 ,1,75,362915 ,1,76,65 ,1,77,362895 ,1,78,362885 ,1,79,362875 ,1,80,362865 ,1,81,362830 ,1,82,65 ,1,83,65 ,1,84,362820 ,1,85,65 ,1,86,362810 ,1,87,362800 ,1,88,362785 ,1,89,362775 ,1,90,362765 ,1,91,65 ,1,92,362755 ,1,93,362720 ,1,94,362710 ,1,95,65 ,1,96,65 ,1,97,65 ,1,98,65 ,1,99,362700 ,1,100,362690 ,1,101,362680 ,1,102,65 ,1,103,362670 ,1,104,65 ,1,105,65 ,1,106,362660 ,1,107,65 ,1,108,65 ,1,109,65 ,1,110,65 ,1,111,362650 ,1,112,362605 ,1,113,65 ,1,114,65 ,1,115,65 ,1,116,362595 ,1,117,65 ,1,118,362585 ,1,119,362575 ,1,120,65 ,1,121,362565 ,1,122,362555 ,1,123,362545 ,1,124,362535 ,1,125,65 ,1,126,65 ,1,127,65 ,1,128,362510 ,1,129,362505 ,1,130,65 ,1,131,362495 ,1,132,65 ,1,133,65 ,1,134,362485 ,1,135,65 ,1,136,65 ,1,137,65 ,1,138,65 ,1,139,362465 ,1,140,65 ,1,141,362455 ,1,142,65 ,1,143,362445 ,1,144,65 ,1,145,65 ,1,146,65 ,1,147,65 ,1,148,65 ,1,149,362435 ,1,150,362415 ,1,151,362405 ,1,152,362395 ,1,153,362385 ,1,154,65 ,1,155,362375 ,1,156,65 ,1,157,362365 ,1,158,65 ,1,159,362355 ,1,160,65 ,1,161,65 ,1,162,65 ,1,163,362345 ,1,164,362325 ,1,165,362315 ,1,166,65 ,1,167,65 ,1,168,65 ,1,169,362305 ,1,170,65 ,1,171,362295 ,1,172,362275 ,1,173,362265 ,1,174,65 ,1,175,362255 ,1,176,362245 ,1,177,362210 ,1,178,65 ,1,179,65 ,1,180,65 ,1,181,65 ,1,182,65 ,1,183,362200 ,1,184,65 ,1,185,65 ,1,186,65 ,1,187,65 ,1,188,65 ,1,189,362190 ,1,190,362180 ,1,191,362170 ,1,192,65 ,1,193,65 ,1,194,65 ,1,195,65 ,1,196,65 ,1,197,362155 ,1,198,362150 ,1,199,362140 ,1,200,362120 ,1,201,362110 ,1,202,65 ,1,203,362100 ,1,204,362090 ,1,205,362065 ,1,206,65 ,1,207,362060 ,1,208,65 ,1,209,65 ,1,210,65 ,1,211,65 ,1,212,65 ,1,213,362050 ,1,214,362040 ,1,215,65 ,1,216,65 ,1,217,65 ,1,218,65 ,1,219,65 ,1,220,65 ,1,221,362005 ,1,222,361995 ,1,223,65 ,1,224,65 ,1,225,65 ,1,226,65 ,1,227,361985 ,1,228,361975 ,1,229,65 ,1,230,361960 ,1,231,361950 ,1,232,65 ,1,233,361940 ,1,234,361930 ,1,235,361895 ,1,236,361885 ,1,237,361875 ,1,238,65 ,1,239,361865 ,1,240,361850 ,1,241,361840 ,1,242,361830 ,1,243,361820 ,1,244,361785 ,1,245,361780 ,1,246,361770 ,1,247,65 ,1,248,65 ,1,249,361760 ,1,250,361750 ,1,251,65 ,1,252,65 ,1,253,361740 ,1,254,361730 ,1,255,361720 ,1,256,361690 ,1,257,361680 ,1,258,65 ,1,259,65 ,1,260,361670 ,1,261,65 ,1,262,65 ,1,263,361660 ,1,264,361645 ,1,265,361635 ,1,266,65 ,1,267,65 ,1,268,65 ,1,269,65 ,1,270,65 ,1,271,361625 ,1,272,65 ,1,273,361615 ,1,274,65 ,1,275,65 ,1,276,361580 ,1,277,361570 ,1,278,65 ,1,279,361560 ,1,280,65 ,1,281,65 ,1,282,65 ,1,283,65 ,1,284,65 ,1,285,65 ,1,286,361550 ,1,287,65 ,1,288,361540 ,1,289,361525 ,1,290,361520 ,1,291,361510 ,1,292,361485 ,1,293,65 ,1,294,361475 ,1,295,361465 ,1,296,361455 ,1,297,361440 ,1,298,65 ,1,299,361430 ,1,300,361420 ,1,301,65 ,1,302,65 ,1,303,65 ,1,304,65 ,1,305,65 ,1,306,361410 ,1,307,361360 ,1,308,361350 ,1,309,65 ,1,310,65 ,1,311,65 ,1,312,65 ,1,313,361340 ,1,314,361330 ,1,315,361315 ,1,316,65 ,1,317,361305 ,1,318,361295 ,1,319,361285 ,1,320,361265 ,1,321,65 ,1,322,361255 ,1,323,65 ,1,324,65 ,1,325,65 ,1,326,65 ,1,327,361245 ,1,328,65 ,1,329,65 ,1,330,361235 ,1,331,65 ,1,332,361220 ,1,333,361210 ,1,334,65 ,1,335,65 ,1,336,65 ,1,337,65 ,1,338,65 ,1,339,361200 ,1,340,65 ,1,341,65 ,1,342,361190 ,1,343,65 ,1,344,361175 ,1,345,361165 ,1,346,361155 ,1,347,361145 ,1,348,361130 ,1,349,361120 ,1,350,361110 ,1,351,65 ,1,352,361100 ,1,353,361065 ,1,354,361055 ,1,355,65 ,1,356,361045 ,1,357,65 ,1,358,361035 ,1,359,361025 ,1,360,361015 ,1,361,65 ,1,362,65 ,1,363,361005 ,1,364,65 ,1,365,360995 ,1,366,360960 ,1,367,360950 ,1,368,65 ,1,369,65 ,1,370,65 ,1,371,65 ,1,372,65 ,1,373,65 ,1,374,360940 ,1,375,65 ,1,376,65 ,1,377,360930 ,1,378,65 ,1,379,360915 ,1,380,360905 ,1,381,360895 ,1,382,360885 ,1,383,65 ,1,384,360855 ,1,385,360845 ,1,386,360835 ,1,387,360825 ,1,388,65 ,1,389,360805 ,1,390,65 ,1,391,65 ,1,392,360790 ,1,393,360785 ,1,394,65 ,1,395,360775 ,1,396,360745 ,1,397,360735 ,1,398,360725 ,1,399,65 ,1,400,360715 ,1,401,360705 ,1,402,360695 ,1,403,360685 ,1,404,360675 ,1,405,360650 ,1,406,65 ,1,407,65 ,1,408,65 ,1,409,65 ,1,410,360640 ,1,411,360625 ,1,412,360620 ,1,413,360610 ,1,414,360600 ,1,415,65 ,1,416,360585 ,1,417,360580 ,1,418,65 ,1,419,360550 ,1,420,65 ,1,421,65 ,1,422,360540 ,1,423,360530 ,1,424,360520 ,1,425,360510 ,1,426,360500 ,1,427,360490 ,1,428,360480 ,1,429,360450 ,1,430,360440 ,1,431,360430 ,1,432,65 ,1,433,65 ,1,434,360415 ,1,435,360400 ,1,436,360390 ,1,437,360380 ,1,438,65 ,1,439,65 ,1,440,65 ,1,441,360370 ,1,442,65 ,1,443,360340 ,1,444,65 ,1,445,65 ,1,446,65 ,1,447,360330 ,1,448,360320 ,1,449,360310 ,1,450,360290 ,1,451,65 ,1,452,360280 ,1,453,65 ,1,454,65 ,1,455,360270 ,1,456,65 ,1,457,65 ,1,458,360260 ,1,459,360230 ,1,460,65 ,1,461,65 ,1,462,65 ,1,463,360220 ,1,464,360210 ,1,465,65 ,1,466,65 ,1,467,360200 ,1,468,360185 ,1,469,65 ,1,470,65 ,1,471,360175 ,1,472,360165 ,1,473,65 ,1,474,65 ,1,475,65 ,1,476,65 ,1,477,65 ,1,478,65 ,1,479,360155 ,1,480,360115 ,1,481,360105 ,1,482,65 ,1,483,360090 ,1,484,65 ,1,485,65 ,1,486,360085 ,1,487,360070 ,1,488,65 ,1,489,360055 ,1,490,360050 ,1,491,360040 ,1,492,360010 ,1,493,360000 ,1,494,359990 ,1,495,65 ,1,496,359980 ,1,497,359970 ,1,498,359960 ,1,499,65 ,1,500,65 ,1,501,359945 ,1,502,359940 ,1,503,65 ,1,504,359905 ,1,505,359895 ,1,506,65 ,1,507,65 ,1,508,359885 ,1,509,65 ,1,510,359875 ,1,511,65 ,1,512,359850 ,1,513,65 ,2,14956,179555 ,2,822,20490 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387620 ,2,829,45 ,2,14956,179555 ,2,822,20505 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387655 ,2,829,45 ,1,0,143215 ,1,1,143170 ,2,14956,197600 ,2,822,19705 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391410 ,2,829,45 ,2,14956,2855 ,2,822,19705 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390995 ,2,829,45 ,1,0,259870 ,2,14956,173945 ,2,822,19705 ,2,14975,608545 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357225 ,2,829,45 ,1,0,143320 ,1,1,143295 ,1,2,143285 ,1,3,143275 ,1,4,143265 ,1,5,143245 ,1,6,143235 ,2,14956,199395 ,2,822,20220 ,2,14975,564645 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,297090 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,143320 ,1,6,66360 ,2,14956,179050 ,2,822,19555 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382080 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,143375 ,1,6,143365 ,2,14956,199415 ,2,822,19555 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298025 ,2,829,45 ,1,0,642225 ,1,1,615295 ,1,2,146370 ,1,3,146330 ,1,4,65 ,1,5,146320 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,146310 ,1,11,143140 ,1,12,143365 ,1,13,146300 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,146285 ,1,19,146275 ,1,20,146265 ,1,21,146255 ,1,22,146230 ,1,23,146220 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,146210 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,146200 ,1,37,146175 ,1,38,146165 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,146155 ,1,43,65 ,1,44,146145 ,1,45,146125 ,1,46,146115 ,1,47,146105 ,1,48,65 ,1,49,146095 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,146085 ,1,55,146075 ,1,56,65 ,1,57,146065 ,1,58,146055 ,1,59,65 ,1,60,146025 ,1,61,146015 ,1,62,146005 ,1,63,145995 ,1,64,65 ,1,65,65 ,1,66,145980 ,1,67,145970 ,1,68,145960 ,1,69,65 ,1,70,145950 ,1,71,145895 ,1,72,145885 ,1,73,65 ,1,74,145865 ,1,75,145855 ,1,76,65 ,1,77,65 ,1,78,145845 ,1,79,65 ,1,80,65 ,1,81,65 ,1,82,145835 ,1,83,65 ,1,84,65 ,1,85,65 ,1,86,145825 ,1,87,145790 ,1,88,145780 ,1,89,145770 ,1,90,145740 ,1,91,145730 ,1,92,65 ,1,93,65 ,1,94,145710 ,1,95,65 ,1,96,145680 ,1,97,145660 ,1,98,65 ,1,99,145650 ,1,100,145615 ,1,101,145605 ,1,102,145560 ,1,103,65 ,1,104,65 ,1,105,65 ,1,106,65 ,1,107,145550 ,1,108,145540 ,1,109,145530 ,1,110,145515 ,1,111,145505 ,1,112,145495 ,1,113,143150 ,1,114,145450 ,1,115,145440 ,1,116,145430 ,1,117,145420 ,1,118,65 ,1,119,145395 ,1,120,65 ,1,121,144335 ,1,122,65 ,1,123,144325 ,1,124,144310 ,1,125,144290 ,1,126,144250 ,1,127,65 ,1,128,65 ,1,129,65 ,1,130,65 ,1,131,144240 ,1,132,65 ,1,133,65 ,1,134,143160 ,1,135,144230 ,1,136,144220 ,1,137,144210 ,1,138,144200 ,1,139,65 ,1,140,144190 ,1,141,144180 ,1,142,65 ,1,143,144120 ,1,144,65 ,1,145,144110 ,1,146,144100 ,1,147,65 ,1,148,65 ,1,149,144090 ,1,150,144080 ,1,151,65 ,1,152,144070 ,1,153,144060 ,1,154,65 ,1,155,143375 ,1,156,65 ,1,157,65 ,1,158,144040 ,1,159,143935 ,1,160,143925 ,1,161,143905 ,1,162,143895 ,1,163,143885 ,1,164,65 ,1,165,143875 ,1,166,65 ,1,167,65 ,1,168,65 ,1,169,65 ,1,170,65 ,1,171,65 ,1,172,65 ,1,173,65 ,1,174,65 ,1,175,65 ,1,176,65 ,1,177,65 ,1,178,143840 ,1,179,143830 ,1,180,65 ,1,181,65 ,1,182,143820 ,1,183,143810 ,1,184,65 ,1,185,65 ,1,186,65 ,1,187,143795 ,1,188,143785 ,1,189,143775 ,1,190,143000 ,1,191,65 ,1,192,143765 ,1,193,65 ,1,194,65 ,1,195,143020 ,1,196,143725 ,1,197,65 ,1,198,143715 ,1,199,65 ,1,200,65 ,1,201,65 ,1,202,65 ,1,203,143705 ,1,204,143695 ,1,205,65 ,1,206,65 ,1,207,65 ,1,208,143675 ,1,209,65 ,1,210,65 ,1,211,143655 ,1,212,65 ,1,213,65 ,1,214,65 ,1,215,65 ,1,216,65 ,1,217,65 ,1,218,65 ,1,219,143645 ,1,220,65 ,1,221,65 ,1,222,65 ,1,223,143615 ,1,224,143605 ,1,225,65 ,1,226,143595 ,1,227,65 ,1,228,143585 ,1,229,65 ,1,230,143570 ,1,231,65 ,1,232,65 ,1,233,65 ,1,234,65 ,1,235,143560 ,1,236,65 ,1,237,65 ,1,238,65 ,1,239,143550 ,1,240,143505 ,1,241,143485 ,1,242,65 ,1,243,65 ,1,244,65 ,1,245,65 ,1,246,65 ,1,247,65 ,1,248,65 ,1,249,143475 ,1,250,65 ,1,251,65 ,1,252,65 ,1,253,143460 ,1,254,143440 ,1,255,65 ,1,256,143430 ,1,257,65 ,2,14956,197710 ,2,822,19555 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,109820 ,1,1,74240 ,1,2,145495 ,1,3,110215 ,2,14956,184135 ,2,822,51225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408855 ,2,829,45 ,1,0,142150 ,1,1,142205 ,2,14956,199770 ,2,822,51235 ,2,14975,564775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257475 ,2,14979,298045 ,2,829,45 ,1,0,110500 ,1,1,110765 ,1,2,143430 ,1,3,72265 ,2,14956,5370 ,2,822,20575 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381495 ,2,829,45 ,1,0,103095 ,2,14956,199490 ,2,822,20575 ,2,14975,564665 ,2,14976,23675 ,2,14977,46820 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,253795 ,2,14956,195335 ,2,822,20585 ,2,14975,564700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383090 ,2,829,45 ,1,0,142205 ,2,14956,186250 ,2,822,20585 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383120 ,2,829,45 ,1,0,103095 ,1,1,142205 ,2,14956,5370 ,2,822,20585 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383010 ,2,829,45 ,1,0,110655 ,2,14956,199510 ,2,822,20585 ,2,14975,564710 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,298100 ,2,829,45 ,1,0,103095 ,1,1,72090 ,1,2,72265 ,1,3,142205 ,2,14956,2855 ,2,822,20595 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415350 ,2,829,45 ,1,0,143820 ,1,1,142205 ,1,2,140665 ,1,3,75305 ,1,4,74495 ,2,14956,199605 ,2,822,20605 ,2,14975,564695 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,298110 ,2,829,45 ,1,0,3010 ,1,1,225320 ,1,2,225310 ,1,3,253795 ,2,14956,199585 ,2,822,20675 ,2,14975,564725 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,298125 ,2,829,45 ,1,0,75450 ,1,1,62780 ,2,14956,199595 ,2,822,20645 ,2,14975,564745 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,298145 ,2,829,45 ,1,0,72740 ,1,1,71140 ,2,14956,2855 ,2,822,20625 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391035 ,2,829,45 ,1,0,103780 ,1,1,72330 ,1,2,72070 ,2,14956,2855 ,2,822,20615 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391015 ,2,829,45 ,1,0,143975 ,1,1,142545 ,1,2,142335 ,1,3,143965 ,2,14956,199660 ,2,822,20615 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394390 ,2,829,45 ,1,0,142545 ,1,1,142335 ,2,14956,186250 ,2,822,20615 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381635 ,2,829,45 ,1,0,144010 ,1,1,143965 ,1,2,79335 ,1,3,143995 ,2,14956,5370 ,2,822,20615 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381500 ,2,829,45 ,1,0,103095 ,1,1,142150 ,1,2,143430 ,2,14956,195335 ,2,822,20615 ,2,14975,564700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381560 ,2,829,45 ,1,0,110585 ,2,14956,199700 ,2,822,20615 ,2,14975,564750 ,2,14976,23675 ,2,14977,46820 ,2,14965,45 ,2,14978,45 ,2,14979,298190 ,2,829,45 ,1,0,103095 ,1,1,143430 ,1,2,72780 ,2,14956,195335 ,2,822,20645 ,2,14975,564700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383095 ,2,829,45 ,1,0,100 ,1,1,577430 ,2,14956,186250 ,2,822,20645 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383125 ,2,829,45 ,1,0,140665 ,1,1,75305 ,1,2,74495 ,2,14956,5370 ,2,822,20645 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383015 ,2,829,45 ,1,0,99120 ,1,1,142150 ,2,14956,195335 ,2,822,20675 ,2,14975,564700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383100 ,2,829,45 ,1,0,145385 ,1,1,146025 ,1,2,144345 ,1,3,57795 ,2,14956,186250 ,2,822,20675 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383130 ,2,829,45 ,1,0,144345 ,1,1,57795 ,2,14956,5370 ,2,822,20675 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383020 ,2,829,45 ,1,0,100 ,1,1,577820 ,2,14956,2855 ,2,822,20525 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391880 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,199825 ,2,822,20515 ,2,14975,564775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257475 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,577825 ,2,14956,199660 ,2,822,20685 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394380 ,2,829,45 ,2,14956,186250 ,2,822,20685 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381585 ,2,829,45 ,1,0,269590 ,1,1,45 ,1,2,45 ,2,14956,5370 ,2,822,20685 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381460 ,2,829,45 ,1,0,34365 ,1,1,34275 ,1,2,34355 ,1,3,34345 ,1,4,34335 ,1,5,34540 ,1,6,34305 ,1,7,34295 ,1,8,45 ,1,9,45 ,1,10,45 ,1,11,618550 ,2,14956,199835 ,2,822,20685 ,2,14975,564780 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,298210 ,2,829,45 ,2,14956,2855 ,2,822,20695 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414965 ,2,829,45 ,2,14956,199660 ,2,822,20705 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416145 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,355895 ,1,4,65 ,1,5,355885 ,1,6,355875 ,1,7,65 ,1,8,65 ,1,9,355860 ,2,14956,186250 ,2,822,20705 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381625 ,2,829,45 ,2,14956,5370 ,2,822,20705 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381475 ,2,829,45 ,1,0,144395 ,2,14956,199885 ,2,822,20705 ,2,14975,564810 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,298235 ,2,829,45 ,2,14956,199915 ,2,822,20705 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257485 ,2,14979,413920 ,2,829,45 ,1,0,144405 ,2,14956,176480 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,47250 ,2,14979,298255 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,65 ,1,3,355725 ,1,4,355715 ,1,5,355695 ,1,6,355685 ,1,7,355675 ,1,8,355665 ,1,9,355655 ,1,10,355645 ,1,11,65 ,1,12,355635 ,1,13,355625 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,355585 ,1,19,65 ,1,20,355575 ,1,21,355565 ,1,22,355555 ,1,23,65 ,1,24,355540 ,1,25,355530 ,1,26,355520 ,1,27,355510 ,1,28,355475 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,355465 ,1,33,65 ,2,14956,176470 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381075 ,2,829,45 ,2,14956,197840 ,2,822,20715 ,2,14975,564000 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396835 ,2,829,45 ,1,0,144435 ,1,1,144415 ,2,14956,269020 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298290 ,2,829,45 ,1,0,614390 ,1,1,615295 ,1,2,355830 ,1,3,355780 ,1,4,65 ,1,5,355760 ,1,6,355735 ,1,7,65 ,1,8,355850 ,1,9,355790 ,1,10,65 ,1,11,65 ,1,12,355770 ,1,13,355840 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,355745 ,2,14956,2855 ,2,822,20745 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392075 ,2,829,45 ,2,14956,178295 ,2,822,20745 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399085 ,2,829,45 ,1,0,144445 ,2,14956,12355 ,2,822,20745 ,2,14975,564845 ,2,14976,23450 ,2,14977,47350 ,2,14965,546795 ,2,14978,45 ,2,14979,399110 ,2,829,45 ,2,14956,10760 ,2,822,20745 ,2,14975,561335 ,2,14976,23450 ,2,14977,32540 ,2,14965,45 ,2,14978,45 ,2,14979,399065 ,2,829,45 ,1,0,144570 ,1,1,144560 ,1,2,144550 ,1,3,144530 ,1,4,144520 ,1,5,144500 ,1,6,144465 ,1,7,144455 ,2,14956,199955 ,2,822,20745 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298340 ,2,829,45 ,1,0,145385 ,1,1,144510 ,2,14956,199965 ,2,822,20745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298350 ,2,829,45 ,2,14956,199975 ,2,822,20745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298360 ,2,829,45 ,1,0,269600 ,1,1,45 ,1,2,45 ,2,14956,199985 ,2,822,20745 ,2,14975,564840 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,34375 ,1,1,45 ,1,2,613640 ,2,14956,200020 ,2,822,20745 ,2,14975,564840 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,200065 ,2,822,20780 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,88160 ,2,14979,399175 ,2,829,45 ,1,0,144645 ,1,1,144630 ,1,2,144620 ,1,3,144610 ,1,4,144600 ,1,5,144580 ,2,14956,200050 ,2,822,20780 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,230575 ,2,14979,298400 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,254825 ,2,14956,2855 ,2,822,20780 ,2,14975,599880 ,2,14976,23130 ,2,14977,47435 ,2,14965,45 ,2,14978,45 ,2,14979,392060 ,2,829,45 ,2,14956,184135 ,2,822,20780 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381960 ,2,829,45 ,1,0,269610 ,1,1,45 ,1,2,45 ,2,14956,200085 ,2,822,20780 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298450 ,2,829,45 ,1,0,45 ,1,1,34395 ,1,2,613640 ,2,14956,200140 ,2,822,20780 ,2,14975,110 ,2,14976,23130 ,2,14977,47445 ,2,14965,45 ,2,14978,45 ,2,14979,342965 ,2,829,45 ,2,14956,200050 ,2,822,20780 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,88160 ,2,14979,298410 ,2,829,45 ,1,0,144730 ,1,1,144720 ,1,2,144710 ,1,3,144675 ,1,4,144665 ,1,5,144655 ,2,14956,200150 ,2,822,20780 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342975 ,2,829,45 ,2,14956,189535 ,2,822,20780 ,2,14975,110 ,2,14976,23130 ,2,14977,47455 ,2,14965,45 ,2,14978,45 ,2,14979,298420 ,2,829,45 ,1,0,269620 ,1,1,45 ,1,2,45 ,2,14956,3770 ,2,822,20780 ,2,14975,564890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298430 ,2,829,45 ,1,0,34465 ,1,1,45 ,1,2,34425 ,1,3,34455 ,1,4,34445 ,1,5,45 ,1,6,614045 ,2,14956,200170 ,2,822,20780 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298440 ,2,829,45 ,2,14956,200185 ,2,822,20780 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398885 ,2,829,45 ,1,0,144785 ,1,1,144775 ,1,2,144765 ,1,3,144755 ,1,4,144740 ,2,14956,2855 ,2,822,20725 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392080 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,254970 ,1,3,254825 ,1,4,254960 ,1,5,254950 ,2,14956,200260 ,2,822,20745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298310 ,2,829,45 ,1,0,3010 ,1,1,254970 ,1,2,254960 ,1,3,254950 ,2,14956,268995 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298460 ,2,829,45 ,2,14956,2855 ,2,822,20825 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391290 ,2,829,45 ,1,0,144810 ,2,14956,200490 ,2,822,20825 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298505 ,2,829,45 ,1,0,577975 ,2,14956,200360 ,2,822,20845 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298525 ,2,829,45 ,2,14956,200310 ,2,822,20845 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298550 ,2,829,45 ,1,0,144885 ,1,1,144875 ,1,2,144865 ,1,3,144840 ,1,4,144830 ,1,5,144820 ,2,14956,200320 ,2,822,20845 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298535 ,2,829,45 ,2,14956,200470 ,2,822,20855 ,2,14975,564940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257495 ,2,14979,2415 ,2,829,45 ,1,0,269630 ,1,1,45 ,1,2,45 ,2,14956,200370 ,2,822,51255 ,2,14975,564940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257495 ,2,14979,298570 ,2,829,45 ,1,0,34475 ,1,1,45 ,1,2,613640 ,2,14956,200425 ,2,822,20855 ,2,14975,608705 ,2,14976,24020 ,2,14977,47675 ,2,14965,546840 ,2,14978,45 ,2,14979,298620 ,2,829,45 ,2,14956,200435 ,2,822,20855 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,298630 ,2,829,45 ,1,0,144985 ,1,1,144975 ,1,2,144950 ,1,3,144940 ,1,4,144930 ,1,5,144920 ,1,6,144895 ,2,14956,200480 ,2,822,20855 ,2,14975,110 ,2,14976,23450 ,2,14977,47685 ,2,14965,45 ,2,14978,45 ,2,14979,298515 ,2,829,45 ,2,14956,182040 ,2,822,20825 ,2,14975,559745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298640 ,2,829,45 ,1,0,269640 ,1,1,45 ,1,2,45 ,2,14956,268715 ,2,822,20825 ,2,14975,564920 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298650 ,2,829,45 ,1,0,34495 ,1,1,45 ,1,2,613640 ,2,14956,200500 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408860 ,2,829,45 ,2,14956,200500 ,2,822,51300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298680 ,2,829,45 ,1,0,145095 ,1,1,145075 ,1,2,145065 ,1,3,145055 ,1,4,145045 ,1,5,145005 ,1,6,144995 ,2,14956,200520 ,2,822,51310 ,2,14975,599940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257505 ,2,14979,298690 ,2,829,45 ,2,14956,200600 ,2,822,20930 ,2,14975,599870 ,2,14976,23130 ,2,14977,47835 ,2,14965,45 ,2,14978,88565 ,2,14979,298725 ,2,829,45 ,1,0,269650 ,1,1,45 ,1,2,45 ,2,14956,200570 ,2,822,51245 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298735 ,2,829,45 ,1,0,45 ,1,1,34520 ,1,2,613640 ,2,14956,200600 ,2,822,20930 ,2,14975,599870 ,2,14976,47795 ,2,14977,47785 ,2,14965,45 ,2,14978,230585 ,2,14979,298745 ,2,829,45 ,2,14956,200610 ,2,822,20930 ,2,14975,599940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,145185 ,1,1,145175 ,1,2,145165 ,1,3,145155 ,1,4,145125 ,1,5,145115 ,1,6,145105 ,2,14956,2855 ,2,822,20940 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415475 ,2,829,45 ,2,14956,177055 ,2,822,20950 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396300 ,2,829,45 ,1,0,259980 ,1,1,259970 ,1,2,259960 ,1,3,259945 ,2,14956,200700 ,2,822,20950 ,2,14975,565035 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,298765 ,2,829,45 ,1,0,145210 ,1,1,103925 ,2,14956,200725 ,2,822,20960 ,2,14975,565040 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,145270 ,2,14956,200780 ,2,822,20920 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,88650 ,2,14979,298785 ,2,829,45 ,1,0,145385 ,1,1,145375 ,1,2,145210 ,1,3,145365 ,1,4,145310 ,1,5,144345 ,1,6,145340 ,1,7,145290 ,1,8,145330 ,1,9,144510 ,1,10,145320 ,1,11,145270 ,2,14956,200780 ,2,822,20920 ,2,14975,599970 ,2,14976,47970 ,2,14977,23360 ,2,14965,45 ,2,14978,230595 ,2,14979,298795 ,2,829,45 ,1,0,145375 ,1,1,66360 ,1,2,145365 ,1,3,145210 ,2,14956,200810 ,2,822,21025 ,2,14975,565075 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,298830 ,2,829,45 ,1,0,143285 ,1,1,143100 ,1,2,143065 ,1,3,145625 ,1,4,143965 ,2,14956,200840 ,2,822,21015 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,143965 ,2,14956,200915 ,2,822,51320 ,2,14975,565085 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257555 ,2,14979,298840 ,2,829,45 ,1,0,145385 ,1,1,144510 ,1,2,144455 ,1,3,143140 ,1,4,143150 ,1,5,143160 ,1,6,146320 ,1,7,143365 ,1,8,143375 ,1,9,143285 ,2,14956,4490 ,2,822,21015 ,2,14975,565100 ,2,14976,48170 ,2,14977,48160 ,2,14965,45 ,2,14978,250525 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,577825 ,2,14956,200935 ,2,822,51330 ,2,14975,565085 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257565 ,2,14979,408865 ,2,829,45 ,1,0,103780 ,1,1,143430 ,2,14956,200975 ,2,822,21005 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,88750 ,2,14979,398990 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,255740 ,1,3,255730 ,1,4,180645 ,2,14956,200965 ,2,822,21005 ,2,14975,561335 ,2,14976,48190 ,2,14977,24010 ,2,14965,45 ,2,14978,230605 ,2,14979,298850 ,2,829,45 ,1,0,110755 ,1,1,110765 ,2,14956,200840 ,2,822,21005 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,298875 ,2,829,45 ,1,0,84345 ,1,1,84470 ,1,2,84765 ,1,3,143055 ,1,4,103320 ,2,14956,196345 ,2,822,21005 ,2,14975,565100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,298885 ,2,829,45 ,1,0,3010 ,1,1,251495 ,1,2,245540 ,1,3,251485 ,1,4,251450 ,1,5,251440 ,1,6,241340 ,1,7,251430 ,1,8,255930 ,1,9,251410 ,1,10,250970 ,1,11,255920 ,1,12,255910 ,1,13,182745 ,1,14,182870 ,1,15,251330 ,1,16,251305 ,1,17,251295 ,1,18,186035 ,1,19,255900 ,1,20,251235 ,1,21,251205 ,1,22,255890 ,1,23,255880 ,1,24,242360 ,1,25,221620 ,1,26,251120 ,1,27,251100 ,1,28,251090 ,1,29,251065 ,1,30,255870 ,1,31,182770 ,1,32,214155 ,1,33,182880 ,1,34,182890 ,1,35,182805 ,1,36,221020 ,1,37,255850 ,1,38,221835 ,1,39,255840 ,2,14956,200965 ,2,822,21005 ,2,14975,561335 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,88750 ,2,14979,298865 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,2,14956,200985 ,2,822,21005 ,2,14975,565100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,298895 ,2,829,45 ,1,0,110500 ,1,1,110765 ,1,2,110425 ,1,3,72090 ,2,14956,201005 ,2,822,21005 ,2,14975,565085 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257555 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,249115 ,1,2,256175 ,1,3,256165 ,1,4,256155 ,2,14956,201015 ,2,822,21005 ,2,14975,565085 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257565 ,2,14979,2415 ,2,829,45 ,1,0,143365 ,1,1,143375 ,1,2,143140 ,1,3,143160 ,1,4,143150 ,1,5,146320 ,1,6,146055 ,1,7,143795 ,1,8,143615 ,1,9,143460 ,1,10,145430 ,1,11,146145 ,1,12,143475 ,1,13,145615 ,1,14,145770 ,1,15,144090 ,1,16,143935 ,1,17,145835 ,1,18,143020 ,1,19,143725 ,1,20,145515 ,1,21,145650 ,1,22,143675 ,1,23,145825 ,1,24,144060 ,1,25,146125 ,1,26,145845 ,1,27,144070 ,1,28,146210 ,1,29,144335 ,1,30,146265 ,1,31,146275 ,1,32,145885 ,1,33,143875 ,1,34,143560 ,1,35,144110 ,1,36,143705 ,1,37,146370 ,1,38,145780 ,1,39,143695 ,1,40,144230 ,1,41,146085 ,1,42,143925 ,1,43,143585 ,1,44,146200 ,1,45,145970 ,1,46,145960 ,1,47,145550 ,1,48,143820 ,1,49,146255 ,1,50,144180 ,1,51,146330 ,1,52,146115 ,1,53,146300 ,1,54,145980 ,1,55,145995 ,1,56,143440 ,1,57,146015 ,1,58,144310 ,1,59,143605 ,1,60,145495 ,1,61,146105 ,1,62,143570 ,1,63,143550 ,1,64,145560 ,1,65,145895 ,1,66,144325 ,1,67,145540 ,1,68,146220 ,1,69,144040 ,1,70,146075 ,1,71,144220 ,1,72,146230 ,1,73,144200 ,1,74,143430 ,1,75,143830 ,1,76,143905 ,1,77,143505 ,1,78,144210 ,1,79,144100 ,1,80,145740 ,1,81,146165 ,1,82,144240 ,1,83,146005 ,1,84,145855 ,1,85,145505 ,1,86,143715 ,1,87,143765 ,1,88,143810 ,1,89,144080 ,1,90,144190 ,1,91,143595 ,1,92,146095 ,1,93,143785 ,1,94,145440 ,1,95,145730 ,1,96,145605 ,1,97,145950 ,1,98,143895 ,1,99,146310 ,1,100,143885 ,1,101,146175 ,1,102,145395 ,1,103,143775 ,1,104,145680 ,1,105,146155 ,1,106,143645 ,1,107,145420 ,1,108,146025 ,1,109,143000 ,1,110,144250 ,1,111,145660 ,1,112,145710 ,1,113,146065 ,1,114,145450 ,1,115,145865 ,1,116,144120 ,1,117,145530 ,1,118,145790 ,1,119,146285 ,1,120,143485 ,1,121,143840 ,1,122,143655 ,1,123,144290 ,2,14956,201060 ,2,822,20900 ,2,14975,565105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,578080 ,1,1,578075 ,1,2,578070 ,2,14956,201160 ,2,822,20900 ,2,14975,565155 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,88900 ,2,14979,298935 ,2,829,45 ,1,0,643140 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,152430 ,1,5,152420 ,1,6,65 ,1,7,152400 ,1,8,152390 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,152380 ,1,18,152370 ,1,19,152325 ,1,20,152315 ,1,21,144030 ,1,22,152305 ,1,23,65 ,1,24,65 ,1,25,152295 ,1,26,65 ,1,27,65 ,1,28,141810 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,152280 ,1,34,152270 ,1,35,65 ,1,36,152260 ,1,37,152250 ,1,38,145625 ,1,39,152225 ,1,40,65 ,1,41,144010 ,1,42,152215 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,152205 ,1,49,65 ,1,50,65 ,1,51,152195 ,1,52,65 ,1,53,152180 ,1,54,65 ,1,55,152170 ,1,56,152160 ,1,57,152150 ,1,58,152110 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,152100 ,1,64,152090 ,1,65,152080 ,1,66,65 ,1,67,152065 ,1,68,152045 ,1,69,152035 ,1,70,152005 ,1,71,151995 ,1,72,151985 ,1,73,151960 ,1,74,65 ,1,75,141895 ,1,76,65 ,1,77,65 ,1,78,65 ,1,79,151950 ,1,80,143995 ,1,81,151940 ,1,82,65 ,1,83,151930 ,1,84,65 ,1,85,65 ,1,86,151885 ,1,87,65 ,1,88,65 ,1,89,151875 ,1,90,151865 ,1,91,151855 ,1,92,151845 ,1,93,65 ,1,94,151835 ,1,95,151825 ,1,96,151785 ,1,97,151765 ,1,98,151755 ,1,99,143985 ,1,100,151745 ,1,101,151735 ,1,102,144020 ,1,103,143965 ,1,104,65 ,1,105,151725 ,1,106,151715 ,1,107,151675 ,1,108,151655 ,1,109,151635 ,1,110,65 ,1,111,65 ,1,112,65 ,1,113,151570 ,1,114,65 ,1,115,65 ,1,116,65 ,1,117,65 ,1,118,65 ,1,119,151560 ,1,120,65 ,1,121,65 ,1,122,65 ,1,123,151540 ,1,124,151520 ,1,125,143975 ,1,126,151510 ,1,127,146410 ,1,128,146400 ,1,129,146390 ,2,14956,4490 ,2,822,21070 ,2,14975,601285 ,2,14976,48390 ,2,14977,48380 ,2,14965,45 ,2,14978,250535 ,2,14979,2415 ,2,829,45 ,1,0,141510 ,1,1,141420 ,1,2,141500 ,1,3,152080 ,1,4,104785 ,1,5,72070 ,1,6,72330 ,1,7,143430 ,1,8,72265 ,2,14956,201110 ,2,822,21070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298965 ,2,829,45 ,1,0,152080 ,1,1,104785 ,2,14956,4685 ,2,822,14560 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385920 ,2,829,45 ,1,0,151635 ,1,1,152400 ,2,14956,201160 ,2,822,20900 ,2,14975,565155 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,230615 ,2,14979,298975 ,2,829,45 ,1,0,152080 ,1,1,104785 ,1,2,143430 ,2,14956,201225 ,2,822,20890 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,88920 ,2,14979,2415 ,2,829,45 ,1,0,107445 ,1,1,104855 ,2,14956,201180 ,2,822,51300 ,2,14975,565160 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,230650 ,2,14979,298985 ,2,829,45 ,2,14956,203000 ,2,822,20890 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,88945 ,2,14979,2415 ,2,829,45 ,1,0,267890 ,1,1,270010 ,1,2,269740 ,2,14956,202955 ,2,822,51300 ,2,14975,565700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231070 ,2,14979,299005 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45 ,1,3,35260 ,1,4,35250 ,1,5,34550 ,1,6,35230 ,1,7,35220 ,1,8,35210 ,1,9,45 ,1,10,35200 ,1,11,35160 ,1,12,34730 ,1,13,34705 ,1,14,34655 ,1,15,34645 ,1,16,34635 ,1,17,34625 ,1,18,45 ,1,19,34580 ,1,20,45 ,1,21,34570 ,1,22,618130 ,2,14956,10080 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,88965 ,2,14979,381670 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,354125 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,354120 ,1,7,65 ,1,8,354110 ,1,9,65 ,2,14956,10080 ,2,822,21105 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230660 ,2,14979,299085 ,2,829,45 ,2,14956,201245 ,2,822,21140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,146430 ,2,14956,202445 ,2,822,21160 ,2,14975,565260 ,2,14976,24020 ,2,14977,49180 ,2,14965,45 ,2,14978,45 ,2,14979,299095 ,2,829,45 ,2,14956,10080 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,89005 ,2,14979,381555 ,2,829,45 ,2,14956,10080 ,2,822,21255 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230670 ,2,14979,299115 ,2,829,45 ,1,0,146440 ,2,14956,201365 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394850 ,2,829,45 ,1,0,577350 ,2,14956,166985 ,2,822,21255 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89005 ,2,14979,380995 ,2,829,45 ,1,0,146610 ,1,1,146560 ,1,2,146550 ,1,3,146540 ,1,4,146530 ,1,5,146505 ,1,6,146495 ,1,7,146485 ,1,8,146475 ,2,14956,201375 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,89075 ,2,14979,392980 ,2,829,45 ,2,14956,201375 ,2,822,21255 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230680 ,2,14979,299140 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,147160 ,1,6,65 ,1,7,65 ,1,8,147150 ,1,9,147140 ,1,10,65 ,1,11,147100 ,1,12,147090 ,1,13,147080 ,1,14,147070 ,1,15,147055 ,1,16,65 ,1,17,147045 ,1,18,65 ,1,19,147025 ,1,20,146990 ,1,21,146980 ,1,22,65 ,1,23,146970 ,1,24,65 ,1,25,65 ,1,26,146935 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,146925 ,1,37,65 ,1,38,146875 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,146855 ,1,44,146830 ,1,45,146810 ,1,46,65 ,1,47,65 ,1,48,146800 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,146770 ,1,53,146760 ,1,54,65 ,1,55,146740 ,1,56,146730 ,1,57,65 ,1,58,65 ,1,59,146720 ,1,60,146685 ,1,61,65 ,1,62,146665 ,1,63,146640 ,1,64,146620 ,1,65,65 ,2,14956,201245 ,2,822,21255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89105 ,2,14979,393665 ,2,829,45 ,1,0,147025 ,2,14956,201245 ,2,822,21255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230695 ,2,14979,299150 ,2,829,45 ,1,0,100 ,1,1,578210 ,2,14956,201390 ,2,822,21255 ,2,14975,565330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392915 ,2,829,45 ,1,0,100 ,1,1,571840 ,2,14956,201400 ,2,822,21255 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395680 ,2,829,45 ,1,0,146620 ,2,14956,201410 ,2,822,21255 ,2,14975,558080 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396330 ,2,829,45 ,1,0,100 ,1,1,578215 ,2,14956,201420 ,2,822,21255 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415890 ,2,829,45 ,1,0,100 ,1,1,578220 ,2,14956,187610 ,2,822,21255 ,2,14975,561220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354765 ,2,829,45 ,1,0,100 ,1,1,578225 ,2,14956,201455 ,2,822,21255 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89075 ,2,14979,393455 ,2,829,45 ,1,0,147150 ,1,1,146980 ,1,2,146640 ,1,3,147140 ,1,4,146740 ,1,5,146770 ,1,6,147090 ,1,7,147160 ,1,8,147070 ,1,9,146665 ,1,10,146830 ,1,11,147080 ,1,12,146875 ,1,13,147055 ,1,14,147045 ,1,15,146730 ,1,16,146855 ,1,17,146720 ,1,18,146990 ,1,19,146925 ,1,20,146800 ,1,21,146620 ,1,22,146810 ,1,23,146685 ,1,24,146760 ,1,25,147100 ,1,26,146935 ,1,27,146970 ,1,28,147025 ,2,14956,201465 ,2,822,21255 ,2,14975,565335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394775 ,2,829,45 ,2,14956,201475 ,2,822,21255 ,2,14975,565340 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,394660 ,2,829,45 ,1,0,147295 ,1,1,147285 ,1,2,147275 ,1,3,147265 ,1,4,147255 ,1,5,147205 ,1,6,147195 ,1,7,147170 ,2,14956,201485 ,2,822,21255 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393225 ,2,829,45 ,1,0,145625 ,1,1,143965 ,1,2,142150 ,2,14956,178725 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299160 ,2,829,45 ,2,14956,202155 ,2,822,21265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257595 ,2,14979,2415 ,2,829,45 ,1,0,269680 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,21285 ,2,14975,110 ,2,14976,48720 ,2,14977,48710 ,2,14965,45 ,2,14978,250545 ,2,14979,2415 ,2,829,45 ,1,0,34695 ,1,1,34675 ,1,2,45 ,1,3,614705 ,2,14956,201520 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395255 ,2,829,45 ,2,14956,201530 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257605 ,2,14979,408870 ,2,829,45 ,2,14956,201375 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,89310 ,2,14979,393125 ,2,829,45 ,1,0,147215 ,1,1,147225 ,2,14956,201375 ,2,822,21285 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230705 ,2,14979,299210 ,2,829,45 ,1,0,141810 ,1,1,145625 ,1,2,143965 ,2,14956,201245 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89330 ,2,14979,394085 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,354180 ,1,3,354170 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,354160 ,2,14956,201245 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230715 ,2,14979,299255 ,2,829,45 ,2,14956,201560 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394340 ,2,829,45 ,1,0,147305 ,2,14956,201455 ,2,822,21285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89310 ,2,14979,393565 ,2,829,45 ,2,14956,201580 ,2,822,21285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89390 ,2,14979,2415 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,150470 ,1,3,150460 ,1,4,150450 ,1,5,65 ,1,6,150420 ,1,7,65 ,1,8,65 ,1,9,150410 ,1,10,150365 ,1,11,150355 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,150335 ,1,18,150325 ,1,19,65 ,1,20,150315 ,1,21,150295 ,1,22,150260 ,1,23,150250 ,1,24,150240 ,1,25,150215 ,1,26,65 ,1,27,147390 ,1,28,65 ,1,29,147370 ,1,30,65 ,1,31,65 ,1,32,147325 ,1,33,147315 ,2,14956,201570 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230725 ,2,14979,408875 ,2,829,45 ,1,0,100 ,1,1,570620 ,1,2,570630 ,2,14956,201605 ,2,822,21285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89415 ,2,14979,394715 ,2,829,45 ,1,0,147410 ,1,1,107445 ,1,2,104855 ,2,14956,201590 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230760 ,2,14979,299265 ,2,829,45 ,1,0,147480 ,1,1,143430 ,1,2,72070 ,1,3,72740 ,2,14956,201830 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299275 ,2,829,45 ,2,14956,201635 ,2,822,21315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299295 ,2,829,45 ,1,0,147525 ,2,14956,201615 ,2,822,21315 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299305 ,2,829,45 ,2,14956,201570 ,2,822,21275 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89495 ,2,14979,395070 ,2,829,45 ,1,0,269690 ,1,1,45 ,1,2,45 ,2,14956,201570 ,2,822,21275 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230770 ,2,14979,299325 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,34750 ,1,3,34775 ,1,4,34740 ,1,5,616170 ,2,14956,201570 ,2,822,21325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89515 ,2,14979,395075 ,2,829,45 ,2,14956,201570 ,2,822,21325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230780 ,2,14979,299345 ,2,829,45 ,1,0,147740 ,1,1,147730 ,1,2,147720 ,1,3,147710 ,1,4,147700 ,1,5,147655 ,1,6,147635 ,1,7,147615 ,1,8,147555 ,1,9,147535 ,2,14956,201695 ,2,822,21325 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,89595 ,2,14979,299365 ,2,829,45 ,1,0,147510 ,2,14956,201695 ,2,822,21335 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,299375 ,2,829,45 ,1,0,150315 ,1,1,147510 ,2,14956,201675 ,2,822,21335 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299395 ,2,829,45 ,1,0,147510 ,1,1,150315 ,2,14956,195055 ,2,822,21335 ,2,14975,565465 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,395290 ,2,829,45 ,1,0,578330 ,2,14956,194990 ,2,822,21335 ,2,14975,565465 ,2,14976,24120 ,2,14977,42770 ,2,14965,45 ,2,14978,45 ,2,14979,394740 ,2,829,45 ,1,0,620685 ,1,1,615295 ,1,2,150205 ,1,3,147605 ,1,4,150195 ,1,5,150185 ,1,6,150150 ,1,7,65 ,1,8,150140 ,1,9,65 ,1,10,150130 ,1,11,147510 ,1,12,65 ,1,13,65 ,1,14,147930 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,147920 ,1,19,147910 ,1,20,65 ,1,21,65 ,1,22,147900 ,1,23,147860 ,1,24,147850 ,1,25,147840 ,1,26,147820 ,1,27,147810 ,1,28,147595 ,1,29,147790 ,1,30,147760 ,1,31,65 ,1,32,65 ,1,33,147750 ,2,14956,201695 ,2,822,21325 ,2,14975,110 ,2,14976,48825 ,2,14977,23360 ,2,14965,45 ,2,14978,230790 ,2,14979,299405 ,2,829,45 ,1,0,150185 ,2,14956,201705 ,2,822,21325 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,89615 ,2,14979,394255 ,2,829,45 ,1,0,147760 ,1,1,142845 ,1,2,147595 ,2,14956,201705 ,2,822,21325 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,230810 ,2,14979,299415 ,2,829,45 ,1,0,147595 ,1,1,142160 ,2,14956,201725 ,2,822,21325 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,89645 ,2,14979,299425 ,2,829,45 ,1,0,100 ,1,1,577430 ,1,2,578340 ,2,14956,201725 ,2,822,21345 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,299465 ,2,829,45 ,1,0,147760 ,1,1,58255 ,2,14956,201725 ,2,822,21325 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230820 ,2,14979,299485 ,2,829,45 ,2,14956,201735 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89615 ,2,14979,394030 ,2,829,45 ,1,0,267890 ,1,1,269710 ,1,2,45 ,2,14956,201375 ,2,822,21325 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,89695 ,2,14979,393120 ,2,829,45 ,1,0,35150 ,1,1,35140 ,1,2,45 ,1,3,45 ,1,4,35130 ,1,5,35115 ,1,6,45 ,1,7,35105 ,1,8,34785 ,1,9,35095 ,1,10,35085 ,1,11,35050 ,1,12,35040 ,1,13,35030 ,1,14,35020 ,1,15,34995 ,1,16,45 ,1,17,34985 ,1,18,34975 ,1,19,45 ,1,20,34900 ,1,21,45 ,1,22,34885 ,1,23,34875 ,1,24,34865 ,1,25,45 ,1,26,34855 ,1,27,34805 ,1,28,45 ,1,29,620685 ,2,14956,201375 ,2,822,21325 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230830 ,2,14979,299495 ,2,829,45 ,2,14956,201745 ,2,822,21325 ,2,14975,565335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,147960 ,1,1,147950 ,2,14956,201780 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89725 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358735 ,1,3,65 ,2,14956,201675 ,2,822,21325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230840 ,2,14979,299505 ,2,829,45 ,2,14956,201790 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89595 ,2,14979,2415 ,2,829,45 ,1,0,147970 ,2,14956,201800 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89645 ,2,14979,2415 ,2,829,45 ,2,14956,201580 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89515 ,2,14979,2415 ,2,829,45 ,1,0,642630 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,148765 ,1,6,65 ,1,7,148730 ,1,8,148720 ,1,9,148710 ,1,10,65 ,1,11,65 ,1,12,148690 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,148680 ,1,19,148670 ,1,20,148660 ,1,21,65 ,1,22,148635 ,1,23,65 ,1,24,65 ,1,25,148625 ,1,26,148615 ,1,27,65 ,1,28,148605 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,148595 ,1,34,65 ,1,35,65 ,1,36,148585 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,148575 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,148565 ,1,45,148530 ,1,46,65 ,1,47,148520 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,148510 ,1,57,148500 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,1,66,65 ,1,67,65 ,1,68,65 ,1,69,148490 ,1,70,148480 ,1,71,148470 ,1,72,148415 ,1,73,65 ,1,74,148405 ,1,75,65 ,1,76,65 ,1,77,148395 ,1,78,148385 ,1,79,65 ,1,80,65 ,1,81,65 ,1,82,65 ,1,83,148370 ,1,84,148360 ,1,85,65 ,1,86,148350 ,1,87,148340 ,1,88,148305 ,1,89,148295 ,1,90,65 ,1,91,148285 ,1,92,65 ,1,93,65 ,1,94,148275 ,1,95,148260 ,1,96,148250 ,1,97,148240 ,1,98,65 ,1,99,148230 ,1,100,148200 ,1,101,148190 ,1,102,148180 ,1,103,148170 ,1,104,65 ,1,105,148125 ,1,106,65 ,1,107,148115 ,1,108,148105 ,1,109,148080 ,1,110,65 ,1,111,148060 ,1,112,65 ,1,113,65 ,1,114,148035 ,1,115,65 ,1,116,65 ,1,117,65 ,1,118,65 ,1,119,65 ,1,120,148025 ,1,121,148015 ,1,122,65 ,1,123,65 ,1,124,65 ,1,125,65 ,1,126,148005 ,1,127,65 ,1,128,65 ,1,129,65 ,2,14956,201605 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89800 ,2,14979,394710 ,2,829,45 ,1,0,79335 ,1,1,148250 ,1,2,72265 ,2,14956,201590 ,2,822,21325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230880 ,2,14979,299525 ,2,829,45 ,1,0,103320 ,2,14956,201455 ,2,822,21325 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89695 ,2,14979,393560 ,2,829,45 ,1,0,103095 ,1,1,71680 ,1,2,66360 ,1,3,72265 ,1,4,72090 ,2,14956,201675 ,2,822,21325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89725 ,2,14979,299515 ,2,829,45 ,1,0,148575 ,1,1,148230 ,1,2,148470 ,1,3,148530 ,1,4,148370 ,1,5,148340 ,1,6,148490 ,1,7,148275 ,1,8,148405 ,1,9,148350 ,1,10,148005 ,1,11,148660 ,1,12,148080 ,1,13,148480 ,1,14,148605 ,1,15,148625 ,1,16,148680 ,1,17,148500 ,1,18,148295 ,1,19,148115 ,1,20,148395 ,1,21,148520 ,1,22,148180 ,1,23,148200 ,1,24,148360 ,1,25,148765 ,1,26,148260 ,1,27,148025 ,1,28,148385 ,1,29,148250 ,1,30,148105 ,1,31,148170 ,1,32,148565 ,1,33,148015 ,1,34,148615 ,1,35,148635 ,1,36,148730 ,1,37,148510 ,1,38,148595 ,1,39,148060 ,1,40,148720 ,1,41,148190 ,1,42,148585 ,1,43,148285 ,1,44,148670 ,1,45,148710 ,1,46,148240 ,1,47,148415 ,1,48,148690 ,1,49,148035 ,1,50,148305 ,1,51,148125 ,2,14956,201810 ,2,822,21325 ,2,14975,565430 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,299535 ,2,829,45 ,2,14956,201590 ,2,822,21275 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89850 ,2,14979,394675 ,2,829,45 ,1,0,148795 ,1,1,148785 ,1,2,148775 ,2,14956,201590 ,2,822,21275 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230890 ,2,14979,299610 ,2,829,45 ,2,14956,201590 ,2,822,21325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89800 ,2,14979,394680 ,2,829,45 ,1,0,148820 ,1,1,148810 ,2,14956,201840 ,2,822,21285 ,2,14975,565390 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,299560 ,2,829,45 ,2,14956,194970 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387410 ,2,829,45 ,1,0,615220 ,1,1,615295 ,1,2,149345 ,1,3,65 ,1,4,65 ,1,5,149335 ,1,6,65 ,1,7,65 ,1,8,149325 ,1,9,149315 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,149275 ,1,17,149265 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,149255 ,1,26,65 ,1,27,149245 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,149230 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,149220 ,1,42,65 ,1,43,149030 ,1,44,149010 ,1,45,149000 ,1,46,148990 ,1,47,65 ,1,48,148980 ,1,49,148935 ,1,50,148925 ,1,51,65 ,1,52,65 ,1,53,148915 ,1,54,65 ,1,55,148905 ,1,56,148895 ,1,57,148885 ,1,58,148875 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,148840 ,1,63,148830 ,1,64,65 ,1,65,65 ,2,14956,201570 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89390 ,2,14979,2415 ,2,829,45 ,1,0,149000 ,2,14956,201850 ,2,822,21285 ,2,14975,565420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257605 ,2,14979,408880 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358825 ,1,3,65 ,2,14956,201885 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299620 ,2,829,45 ,2,14956,201895 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299630 ,2,829,45 ,1,0,269700 ,1,1,45 ,1,2,45 ,2,14956,201590 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,89415 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,34965 ,1,2,34910 ,1,3,34930 ,1,4,45 ,1,5,616170 ,2,14956,10825 ,2,822,21285 ,2,14975,561220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382215 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358835 ,1,3,65 ,2,14956,201905 ,2,822,21285 ,2,14975,560425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299580 ,2,829,45 ,2,14956,201705 ,2,822,21285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,90005 ,2,14979,394260 ,2,829,45 ,1,0,149090 ,1,1,149060 ,1,2,149050 ,1,3,149040 ,2,14956,201705 ,2,822,21285 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,230900 ,2,14979,299655 ,2,829,45 ,1,0,3010 ,1,1,231955 ,1,2,183245 ,1,3,258010 ,1,4,258000 ,1,5,257990 ,1,6,182890 ,2,14956,201915 ,2,822,21285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395045 ,2,829,45 ,2,14956,178820 ,2,822,21285 ,2,14975,600020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299590 ,2,829,45 ,2,14956,201735 ,2,822,21285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90005 ,2,14979,394035 ,2,829,45 ,1,0,149210 ,1,1,149200 ,1,2,149160 ,1,3,149150 ,1,4,149140 ,1,5,149130 ,1,6,149120 ,1,7,149110 ,1,8,149100 ,2,14956,201930 ,2,822,21285 ,2,14975,565485 ,2,14976,23130 ,2,14977,23120 ,2,14965,547155 ,2,14978,45 ,2,14979,299600 ,2,829,45 ,1,0,3010 ,1,1,258095 ,1,2,231915 ,2,14956,4490 ,2,822,21285 ,2,14975,110 ,2,14976,48935 ,2,14977,48920 ,2,14965,45 ,2,14978,250555 ,2,14979,2415 ,2,829,45 ,1,0,149000 ,1,1,149200 ,2,14956,202000 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299665 ,2,829,45 ,1,0,149345 ,1,1,149245 ,1,2,149255 ,1,3,149325 ,1,4,148935 ,1,5,149010 ,1,6,149275 ,1,7,149000 ,1,8,148925 ,1,9,148990 ,1,10,148840 ,1,11,149335 ,1,12,148885 ,1,13,148980 ,1,14,148875 ,1,15,149220 ,1,16,149230 ,1,17,148830 ,1,18,148905 ,1,19,148915 ,1,20,149315 ,1,21,149030 ,1,22,148895 ,1,23,149265 ,2,14956,166610 ,2,822,21355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,48955 ,2,14979,299685 ,2,829,45 ,2,14956,10080 ,2,822,21355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,90135 ,2,14979,381705 ,2,829,45 ,1,0,149435 ,1,1,149425 ,1,2,149415 ,1,3,149385 ,1,4,149375 ,1,5,149355 ,2,14956,10080 ,2,822,21355 ,2,14975,110 ,2,14976,48965 ,2,14977,23120 ,2,14965,45 ,2,14978,230910 ,2,14979,299700 ,2,829,45 ,1,0,578600 ,2,14956,176220 ,2,822,21365 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257615 ,2,14979,416140 ,2,829,45 ,1,0,149480 ,1,1,149470 ,1,2,149460 ,1,3,149445 ,2,14956,176230 ,2,822,21365 ,2,14975,565525 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257615 ,2,14979,416060 ,2,829,45 ,2,14956,166985 ,2,822,21355 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90135 ,2,14979,381055 ,2,829,45 ,1,0,149530 ,1,1,149520 ,1,2,149490 ,2,14956,201950 ,2,822,21355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396150 ,2,829,45 ,2,14956,166680 ,2,822,21355 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377575 ,2,829,45 ,2,14956,202010 ,2,822,21285 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299315 ,2,829,45 ,1,0,149540 ,2,14956,170230 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393265 ,2,829,45 ,2,14956,202020 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299285 ,2,829,45 ,1,0,149630 ,1,1,149595 ,1,2,149585 ,1,3,149575 ,1,4,149565 ,1,5,149550 ,2,14956,195515 ,2,822,21285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394290 ,2,829,45 ,1,0,578685 ,2,14956,202030 ,2,822,21285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89330 ,2,14979,394145 ,2,829,45 ,1,0,149670 ,1,1,149660 ,1,2,149650 ,1,3,149640 ,2,14956,202050 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299710 ,2,829,45 ,2,14956,201745 ,2,822,21275 ,2,14975,565335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,149680 ,2,14956,202060 ,2,822,21285 ,2,14975,565390 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,299570 ,2,829,45 ,2,14956,202070 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394440 ,2,829,45 ,1,0,149750 ,1,1,149740 ,1,2,149700 ,1,3,149690 ,2,14956,201580 ,2,822,21275 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89495 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369395 ,1,3,65 ,2,14956,201605 ,2,822,21275 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89850 ,2,14979,394705 ,2,829,45 ,2,14956,202105 ,2,822,21275 ,2,14975,565360 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,149770 ,1,1,149760 ,2,14956,201580 ,2,822,21265 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90365 ,2,14979,2415 ,2,829,45 ,2,14956,201570 ,2,822,21265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230925 ,2,14979,408905 ,2,829,45 ,1,0,149985 ,1,1,149930 ,1,2,149920 ,1,3,149910 ,1,4,149900 ,1,5,149880 ,1,6,149870 ,1,7,149860 ,1,8,149850 ,1,9,149815 ,1,10,149805 ,1,11,149795 ,1,12,149785 ,2,14956,201605 ,2,822,21265 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90410 ,2,14979,394685 ,2,829,45 ,1,0,149920 ,2,14956,201590 ,2,822,21265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230935 ,2,14979,408910 ,2,829,45 ,1,0,578755 ,2,14956,201570 ,2,822,21265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,90365 ,2,14979,2415 ,2,829,45 ,1,0,150015 ,1,1,150005 ,1,2,149995 ,2,14956,201590 ,2,822,21265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,90410 ,2,14979,2415 ,2,829,45 ,2,14956,202125 ,2,822,21265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299720 ,2,829,45 ,1,0,150055 ,1,1,150045 ,1,2,150035 ,1,3,150025 ,2,14956,202135 ,2,822,21265 ,2,14975,565350 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,299730 ,2,829,45 ,1,0,623955 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,358725 ,1,6,65 ,1,7,358715 ,1,8,358705 ,1,9,358690 ,1,10,358680 ,1,11,358670 ,1,12,358660 ,1,13,358625 ,1,14,358615 ,1,15,358605 ,1,16,65 ,1,17,358595 ,2,14956,202175 ,2,822,21265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257655 ,2,14979,2415 ,2,829,45 ,2,14956,202210 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257665 ,2,14979,415990 ,2,829,45 ,1,0,150075 ,2,14956,201705 ,2,822,21255 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,90515 ,2,14979,394150 ,2,829,45 ,2,14956,201705 ,2,822,21255 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,230945 ,2,14979,299760 ,2,829,45 ,1,0,150120 ,1,1,147940 ,1,2,150105 ,1,3,150095 ,1,4,150085 ,2,14956,202220 ,2,822,21255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299770 ,2,829,45 ,1,0,3010 ,1,1,259185 ,1,2,259170 ,1,3,244345 ,1,4,259160 ,1,5,259150 ,1,6,259140 ,1,7,259095 ,1,8,259085 ,1,9,259075 ,1,10,259065 ,1,11,259055 ,1,12,259045 ,1,13,259035 ,1,14,259025 ,1,15,258990 ,1,16,258980 ,1,17,258970 ,1,18,258960 ,1,19,258950 ,1,20,258940 ,1,21,258930 ,1,22,258920 ,1,23,258900 ,1,24,258890 ,1,25,258880 ,1,26,258870 ,1,27,258860 ,1,28,258850 ,1,29,258840 ,1,30,258830 ,1,31,258785 ,1,32,258775 ,1,33,245745 ,1,34,245725 ,1,35,258765 ,1,36,258755 ,1,37,258740 ,1,38,258730 ,1,39,258720 ,1,40,258710 ,1,41,242470 ,1,42,258685 ,1,43,258675 ,2,14956,201735 ,2,822,21255 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90515 ,2,14979,393570 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,100 ,1,4,100 ,1,5,100 ,1,6,100 ,1,7,100 ,1,8,100 ,1,9,100 ,1,10,100 ,1,11,100 ,1,12,100 ,1,13,100 ,1,14,100 ,1,15,100 ,1,16,100 ,1,17,100 ,1,18,100 ,1,19,100 ,1,20,100 ,1,21,100 ,1,22,100 ,1,23,100 ,1,24,100 ,1,25,100 ,1,26,100 ,1,27,100 ,1,28,100 ,1,29,100 ,1,30,100 ,1,31,100 ,1,32,100 ,1,33,100 ,1,34,100 ,1,35,100 ,1,36,100 ,1,37,100 ,1,38,100 ,1,39,100 ,1,40,100 ,1,41,100 ,1,42,100 ,1,43,100 ,2,14956,202230 ,2,822,21255 ,2,14975,561220 ,2,14976,23450 ,2,14977,49120 ,2,14965,45 ,2,14978,45 ,2,14979,393240 ,2,829,45 ,1,0,150205 ,1,1,147760 ,1,2,147920 ,1,3,147510 ,1,4,150185 ,1,5,147900 ,1,6,147930 ,1,7,147810 ,1,8,147750 ,1,9,147840 ,1,10,150150 ,1,11,150140 ,1,12,147595 ,1,13,147605 ,1,14,147860 ,1,15,150130 ,1,16,147790 ,1,17,147910 ,1,18,147850 ,1,19,147820 ,1,20,150195 ,2,14956,202240 ,2,822,21255 ,2,14975,565545 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299780 ,2,829,45 ,1,0,150315 ,2,14956,202250 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394785 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,226975 ,1,3,209800 ,2,14956,202260 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393270 ,2,829,45 ,1,0,150315 ,1,1,147315 ,1,2,150295 ,1,3,150460 ,1,4,147370 ,1,5,150450 ,1,6,150355 ,1,7,150470 ,1,8,150240 ,1,9,150260 ,1,10,150410 ,1,11,150325 ,1,12,150365 ,1,13,150250 ,1,14,150335 ,1,15,147390 ,1,16,150420 ,1,17,147325 ,1,18,150215 ,2,14956,202270 ,2,822,21255 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396060 ,2,829,45 ,2,14956,202305 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257675 ,2,14979,388935 ,2,829,45 ,1,0,150745 ,1,1,150735 ,1,2,150695 ,1,3,150685 ,1,4,150675 ,1,5,150665 ,1,6,150650 ,1,7,150640 ,1,8,150630 ,1,9,150620 ,1,10,150570 ,1,11,150545 ,1,12,150525 ,1,13,150480 ,2,14956,202315 ,2,822,21255 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393215 ,2,829,45 ,1,0,143430 ,2,14956,202325 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299790 ,2,829,45 ,2,14956,202360 ,2,822,21255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299805 ,2,829,45 ,1,0,151020 ,1,1,151010 ,1,2,151000 ,1,3,150975 ,1,4,150965 ,1,5,150945 ,1,6,150910 ,1,7,150890 ,1,8,150880 ,1,9,150860 ,1,10,150805 ,1,11,150785 ,1,12,150775 ,1,13,150765 ,1,14,150755 ,2,14956,202030 ,2,822,21255 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,89105 ,2,14979,394070 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,202070 ,2,822,21245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,570460 ,2,14956,201915 ,2,822,21245 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,394855 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,201520 ,2,822,21245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395240 ,2,829,45 ,1,0,100 ,1,1,570620 ,1,2,570630 ,2,14956,201365 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394970 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,202490 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,570620 ,2,14956,166985 ,2,822,21105 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,88965 ,2,14979,381050 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,201375 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,90755 ,2,14979,393115 ,2,829,45 ,1,0,100 ,1,1,578220 ,2,14956,201375 ,2,822,21105 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,230955 ,2,14979,299815 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,202500 ,2,822,21105 ,2,14975,565550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299825 ,2,829,45 ,1,0,100 ,1,1,578225 ,2,14956,201245 ,2,822,21105 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,90785 ,2,14979,394080 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,201245 ,2,822,21105 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,230995 ,2,14979,299860 ,2,829,45 ,1,0,100 ,1,1,578215 ,2,14956,202510 ,2,822,21105 ,2,14975,600035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257695 ,2,14979,408915 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,201390 ,2,822,21105 ,2,14975,565555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393110 ,2,829,45 ,1,0,100 ,1,1,578210 ,2,14956,201400 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395725 ,2,829,45 ,2,14956,201420 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393395 ,2,829,45 ,1,0,151060 ,1,1,151050 ,2,14956,201455 ,2,822,21105 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90755 ,2,14979,393535 ,2,829,45 ,2,14956,187610 ,2,822,21105 ,2,14975,561220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354895 ,2,829,45 ,1,0,151080 ,1,1,151070 ,1,2,150590 ,2,14956,201465 ,2,822,21105 ,2,14975,565335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394890 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,354145 ,1,3,65 ,1,4,354140 ,1,5,65 ,2,14956,202555 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,201475 ,2,822,21105 ,2,14975,565560 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,394790 ,2,829,45 ,1,0,151095 ,2,14956,202595 ,2,822,21105 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299870 ,2,829,45 ,2,14956,202070 ,2,822,21095 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,151205 ,1,1,151185 ,1,2,151175 ,1,3,151165 ,1,4,151155 ,1,5,151125 ,1,6,151105 ,2,14956,202070 ,2,822,21375 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,11510 ,2,14956,201915 ,2,822,21375 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395040 ,2,829,45 ,1,0,578960 ,2,14956,201520 ,2,822,21375 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395250 ,2,829,45 ,1,0,151235 ,1,1,151225 ,1,2,151215 ,2,14956,201485 ,2,822,21105 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393295 ,2,829,45 ,2,14956,201705 ,2,822,21105 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,91020 ,2,14979,394215 ,2,829,45 ,1,0,617155 ,1,1,615295 ,1,2,65 ,1,3,146420 ,1,4,147500 ,1,5,151500 ,1,6,65 ,1,7,147480 ,1,8,151460 ,1,9,151450 ,1,10,151440 ,1,11,65 ,1,12,151430 ,1,13,151410 ,1,14,65 ,1,15,147430 ,1,16,147410 ,1,17,65 ,1,18,151400 ,1,19,151390 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,151340 ,1,26,151330 ,1,27,151290 ,1,28,65 ,1,29,151280 ,1,30,147490 ,1,31,65 ,1,32,151270 ,1,33,65 ,2,14956,201705 ,2,822,21105 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,231005 ,2,14979,299890 ,2,829,45 ,2,14956,202210 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257705 ,2,14979,415995 ,2,829,45 ,1,0,269750 ,1,1,45 ,1,2,45 ,2,14956,202605 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257695 ,2,14979,408920 ,2,829,45 ,1,0,45 ,1,1,35270 ,1,2,613640 ,2,14956,202250 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394920 ,2,829,45 ,2,14956,201735 ,2,822,21105 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91020 ,2,14979,394025 ,2,829,45 ,1,0,151320 ,1,1,151310 ,1,2,151300 ,2,14956,202615 ,2,822,21105 ,2,14975,558080 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299905 ,2,829,45 ,1,0,147480 ,2,14956,202270 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396115 ,2,829,45 ,1,0,3010 ,1,1,259850 ,1,2,179760 ,1,3,217490 ,1,4,228960 ,1,5,255930 ,1,6,251225 ,1,7,259605 ,1,8,251110 ,1,9,259840 ,1,10,255870 ,1,11,259830 ,1,12,11510 ,1,13,259820 ,2,14956,202240 ,2,822,21105 ,2,14975,565620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299915 ,2,829,45 ,1,0,151400 ,1,1,151390 ,1,2,147430 ,1,3,151460 ,1,4,147480 ,1,5,151340 ,1,6,146420 ,1,7,147500 ,1,8,151270 ,1,9,151330 ,1,10,151430 ,1,11,151280 ,1,12,151500 ,1,13,151450 ,1,14,151290 ,1,15,147490 ,1,16,151440 ,1,17,151410 ,1,18,147410 ,2,14956,202670 ,2,822,49185 ,2,14975,565615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257715 ,2,14979,2415 ,2,829,45 ,1,0,151410 ,1,1,104410 ,1,2,57795 ,2,14956,202625 ,2,822,51350 ,2,14975,565615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257715 ,2,14979,299925 ,2,829,45 ,1,0,143975 ,1,1,142545 ,1,2,142335 ,1,3,152080 ,1,4,104785 ,1,5,104410 ,1,6,57795 ,2,14956,202680 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257685 ,2,14979,408925 ,2,829,45 ,1,0,152080 ,1,1,104785 ,1,2,71680 ,2,14956,202260 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257725 ,2,14979,415955 ,2,829,45 ,1,0,84345 ,1,1,84470 ,1,2,84765 ,1,3,104855 ,1,4,151205 ,2,14956,202230 ,2,822,21105 ,2,14975,561220 ,2,14976,23450 ,2,14977,49325 ,2,14965,45 ,2,14978,45 ,2,14979,393340 ,2,829,45 ,1,0,100 ,1,1,560985 ,2,14956,202305 ,2,822,21105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257750 ,2,14979,414405 ,2,829,45 ,1,0,100 ,1,1,577430 ,1,2,577690 ,1,3,578340 ,2,14956,202705 ,2,822,21105 ,2,14975,565660 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299935 ,2,829,45 ,1,0,104410 ,1,1,57795 ,2,14956,202715 ,2,822,21105 ,2,14975,565665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,299880 ,2,829,45 ,1,0,151825 ,1,1,143965 ,2,14956,202315 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393290 ,2,829,45 ,1,0,151825 ,2,14956,202725 ,2,822,21105 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257685 ,2,14979,408930 ,2,829,45 ,1,0,151825 ,1,1,151625 ,1,2,57795 ,1,3,88460 ,1,4,73770 ,1,5,143965 ,1,6,74240 ,1,7,152080 ,1,8,104785 ,1,9,143995 ,2,14956,202735 ,2,822,21105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,152400 ,2,14956,202030 ,2,822,21105 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,90785 ,2,14979,394140 ,2,829,45 ,1,0,143965 ,1,1,143975 ,1,2,142545 ,1,3,142335 ,2,14956,201915 ,2,822,21095 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395035 ,2,829,45 ,1,0,100 ,1,1,561500 ,2,14956,201520 ,2,822,21095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395245 ,2,829,45 ,1,0,3010 ,1,1,260350 ,2,14956,202810 ,2,822,21160 ,2,14975,565260 ,2,14976,23675 ,2,14977,49395 ,2,14965,45 ,2,14978,45 ,2,14979,299060 ,2,829,45 ,1,0,152260 ,2,14956,202910 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91330 ,2,14979,2415 ,2,829,45 ,1,0,143975 ,2,14956,202295 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231025 ,2,14979,300000 ,2,829,45 ,1,0,151510 ,1,1,141895 ,1,2,151845 ,1,3,152270 ,1,4,151950 ,1,5,152160 ,1,6,141810 ,1,7,152380 ,1,8,151855 ,1,9,151875 ,1,10,152035 ,1,11,151985 ,1,12,151930 ,1,13,151755 ,1,14,152280 ,1,15,152090 ,1,16,146410 ,1,17,151785 ,1,18,151835 ,1,19,143985 ,1,20,143965 ,1,21,143995 ,1,22,151825 ,1,23,152260 ,1,24,152100 ,1,25,143975 ,1,26,152225 ,1,27,151735 ,1,28,151725 ,1,29,152370 ,1,30,152215 ,1,31,152170 ,1,32,151540 ,1,33,152110 ,1,34,152005 ,1,35,151995 ,1,36,144020 ,1,37,151960 ,1,38,151520 ,1,39,151715 ,1,40,146400 ,1,41,152065 ,1,42,151865 ,1,43,152325 ,1,44,152315 ,1,45,151560 ,1,46,144010 ,1,47,152080 ,1,48,145625 ,1,49,151940 ,1,50,144030 ,1,51,146390 ,1,52,151745 ,1,53,152430 ,1,54,152305 ,1,55,152390 ,1,56,152420 ,1,57,152250 ,1,58,151675 ,1,59,152295 ,1,60,152150 ,1,61,152180 ,1,62,152045 ,1,63,151655 ,1,64,152195 ,1,65,151885 ,1,66,152205 ,1,67,152400 ,1,68,151635 ,1,69,151765 ,1,70,151570 ,2,14956,202830 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91350 ,2,14979,2415 ,2,829,45 ,1,0,145625 ,1,1,143965 ,2,14956,202820 ,2,822,21435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231015 ,2,14979,300030 ,2,829,45 ,1,0,152490 ,2,14956,202820 ,2,822,21435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,91350 ,2,14979,300040 ,2,829,45 ,1,0,35485 ,1,1,35435 ,1,2,33645 ,1,3,45 ,1,4,45 ,1,5,152490 ,1,6,35415 ,1,7,35405 ,1,8,35395 ,1,9,35385 ,1,10,259805 ,1,11,33665 ,1,12,35365 ,1,13,35355 ,1,14,45 ,1,15,45 ,1,16,35345 ,1,17,45 ,1,18,35335 ,1,19,616545 ,2,14956,202840 ,2,822,21435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300020 ,2,829,45 ,2,14956,202295 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,91330 ,2,14979,300010 ,2,829,45 ,1,0,152500 ,2,14956,10080 ,2,822,21435 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,91400 ,2,14979,381550 ,2,829,45 ,2,14956,10080 ,2,822,21435 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,231040 ,2,14979,300080 ,2,829,45 ,1,0,152510 ,2,14956,202690 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,91440 ,2,14979,300090 ,2,829,45 ,1,0,579075 ,2,14956,202690 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231050 ,2,14979,300100 ,2,829,45 ,1,0,152585 ,1,1,152540 ,1,2,152530 ,1,3,152520 ,2,14956,166985 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91400 ,2,14979,380985 ,2,829,45 ,2,14956,202880 ,2,822,21435 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257760 ,2,14979,300110 ,2,829,45 ,1,0,152605 ,1,1,152595 ,2,14956,202230 ,2,822,21435 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393235 ,2,829,45 ,2,14956,201390 ,2,822,21435 ,2,14975,565695 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392910 ,2,829,45 ,1,0,152630 ,1,1,152615 ,2,14956,202200 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,91500 ,2,14979,300125 ,2,829,45 ,2,14956,202200 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231060 ,2,14979,300135 ,2,829,45 ,1,0,152735 ,1,1,152725 ,1,2,152715 ,1,3,152705 ,1,4,152660 ,1,5,152650 ,1,6,152640 ,2,14956,187610 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354760 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,152745 ,2,14956,201485 ,2,822,21435 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393220 ,2,829,45 ,1,0,579105 ,2,14956,202890 ,2,822,21435 ,2,14975,565690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257760 ,2,14979,408935 ,2,829,45 ,1,0,152910 ,1,1,152875 ,1,2,152865 ,1,3,152745 ,1,4,152855 ,1,5,152845 ,1,6,152830 ,1,7,152820 ,1,8,152810 ,1,9,152800 ,1,10,152775 ,1,11,152765 ,2,14956,202925 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91440 ,2,14979,2415 ,2,829,45 ,2,14956,202935 ,2,822,21435 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91500 ,2,14979,2415 ,2,829,45 ,1,0,152940 ,1,1,152930 ,1,2,152920 ,2,14956,202945 ,2,822,21435 ,2,14975,565685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,299050 ,2,829,45 ,2,14956,201180 ,2,822,51300 ,2,14975,565160 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,88920 ,2,14979,298995 ,2,829,45 ,1,0,153095 ,1,1,153065 ,1,2,153050 ,1,3,153040 ,1,4,153030 ,1,5,153020 ,1,6,152980 ,1,7,152970 ,1,8,152950 ,2,14956,268670 ,2,822,51300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300155 ,2,829,45 ,2,14956,203045 ,2,822,20790 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91630 ,2,14979,2415 ,2,829,45 ,1,0,269760 ,1,1,45 ,1,2,45 ,2,14956,203030 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231105 ,2,14979,300225 ,2,829,45 ,1,0,45 ,1,1,35455 ,1,2,613640 ,2,14956,203010 ,2,822,51245 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,300290 ,2,829,45 ,2,14956,166740 ,2,822,14470 ,2,14975,565720 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378320 ,2,829,45 ,1,0,153075 ,2,14956,203020 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300245 ,2,829,45 ,2,14956,203030 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,91630 ,2,14979,300235 ,2,829,45 ,1,0,269770 ,1,1,45 ,1,2,45 ,2,14956,203105 ,2,822,20790 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91695 ,2,14979,2415 ,2,829,45 ,1,0,35445 ,1,1,45 ,1,2,613640 ,2,14956,203075 ,2,822,51245 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,231115 ,2,14979,300300 ,2,829,45 ,2,14956,203055 ,2,822,51245 ,2,14975,560980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300330 ,2,829,45 ,1,0,153085 ,2,14956,203065 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300320 ,2,829,45 ,2,14956,203075 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,91695 ,2,14979,300310 ,2,829,45 ,1,0,153240 ,1,1,153230 ,1,2,153220 ,1,3,153185 ,1,4,153175 ,1,5,153165 ,1,6,153155 ,1,7,153135 ,1,8,153125 ,1,9,153115 ,1,10,153105 ,2,14956,203115 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300215 ,2,829,45 ,1,0,152910 ,1,1,103320 ,2,14956,268610 ,2,822,21445 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300340 ,2,829,45 ,2,14956,197265 ,2,822,21550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91785 ,2,14979,343360 ,2,829,45 ,1,0,153280 ,1,1,153270 ,1,2,153250 ,1,3,141760 ,2,14956,269360 ,2,822,21550 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,231125 ,2,14979,300360 ,2,829,45 ,2,14956,197280 ,2,822,21550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343840 ,2,829,45 ,1,0,267890 ,1,1,269805 ,1,2,45 ,2,14956,269360 ,2,822,21550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,91785 ,2,14979,343175 ,2,829,45 ,1,0,35570 ,1,1,35560 ,1,2,35550 ,1,3,35495 ,1,4,35540 ,1,5,45 ,1,6,45 ,1,7,613975 ,2,14956,197245 ,2,822,21550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300410 ,2,829,45 ,2,14956,203135 ,2,822,21550 ,2,14975,565815 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,153360 ,1,1,153350 ,1,2,153300 ,2,14956,203175 ,2,822,51360 ,2,14975,565820 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257770 ,2,14979,300420 ,2,829,45 ,2,14956,203225 ,2,822,21585 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300430 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,153655 ,1,3,65 ,1,4,65 ,1,5,153625 ,1,6,153615 ,1,7,65 ,1,8,153605 ,1,9,153595 ,1,10,153575 ,1,11,65 ,1,12,153565 ,1,13,153555 ,1,14,153525 ,1,15,153505 ,1,16,153495 ,1,17,153485 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,153465 ,1,25,153455 ,1,26,65 ,1,27,153425 ,1,28,153405 ,1,29,65 ,1,30,153395 ,1,31,65 ,1,32,65 ,1,33,153370 ,2,14956,203275 ,2,822,21560 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300440 ,2,829,45 ,1,0,3010 ,1,1,261225 ,2,14956,203325 ,2,822,21485 ,2,14975,565820 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257770 ,2,14979,2415 ,2,829,45 ,1,0,153425 ,1,1,153465 ,1,2,153565 ,1,3,153525 ,1,4,153395 ,1,5,153495 ,1,6,153555 ,1,7,153655 ,1,8,153505 ,1,9,153595 ,1,10,153605 ,1,11,153625 ,1,12,153455 ,1,13,153485 ,1,14,153405 ,1,15,153370 ,1,16,153615 ,1,17,153575 ,2,14956,203355 ,2,822,21475 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91940 ,2,14979,2415 ,2,829,45 ,1,0,579285 ,2,14956,203345 ,2,822,51370 ,2,14975,561335 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,231135 ,2,14979,300455 ,2,829,45 ,1,0,153685 ,1,1,153675 ,1,2,153665 ,2,14956,203395 ,2,822,21475 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,91960 ,2,14979,397380 ,2,829,45 ,2,14956,181965 ,2,822,51370 ,2,14975,561590 ,2,14976,49875 ,2,14977,49865 ,2,14965,45 ,2,14978,231145 ,2,14979,300475 ,2,829,45 ,1,0,153715 ,1,1,153705 ,1,2,153695 ,2,14956,203345 ,2,822,51370 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,91940 ,2,14979,300465 ,2,829,45 ,2,14956,203425 ,2,822,51370 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300525 ,2,829,45 ,1,0,153760 ,1,1,153750 ,1,2,153725 ,1,3,153290 ,2,14956,181965 ,2,822,51370 ,2,14975,561590 ,2,14976,24020 ,2,14977,49885 ,2,14965,45 ,2,14978,91960 ,2,14979,300485 ,2,829,45 ,1,0,3010 ,1,1,222855 ,1,2,209800 ,2,14956,204025 ,2,822,51370 ,2,14975,565995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300535 ,2,829,45 ,2,14956,204010 ,2,822,21595 ,2,14975,565850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300545 ,2,829,45 ,1,0,153810 ,1,1,153800 ,1,2,153790 ,1,3,153780 ,2,14956,197280 ,2,822,21650 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,356230 ,2,829,45 ,1,0,3010 ,1,1,218370 ,1,2,221060 ,1,3,182890 ,1,4,261530 ,1,5,209800 ,2,14956,197280 ,2,822,21660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,356220 ,2,829,45 ,2,14956,203500 ,2,822,21595 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300605 ,2,829,45 ,1,0,154045 ,1,1,154035 ,1,2,154025 ,1,3,154015 ,1,4,154000 ,1,5,153990 ,1,6,153970 ,1,7,153920 ,1,8,153900 ,1,9,153880 ,1,10,153860 ,1,11,153820 ,2,14956,166680 ,2,822,21670 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377425 ,2,829,45 ,2,14956,10665 ,2,822,21670 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382455 ,2,829,45 ,1,0,154065 ,2,14956,166740 ,2,822,21670 ,2,14975,565935 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375595 ,2,829,45 ,1,0,567800 ,2,14956,174935 ,2,822,21595 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396745 ,2,829,45 ,1,0,118940 ,1,1,154135 ,1,2,154125 ,1,3,154115 ,1,4,154095 ,1,5,154085 ,1,6,154075 ,2,14956,175205 ,2,822,21595 ,2,14975,565940 ,2,14976,24020 ,2,14977,50080 ,2,14965,45 ,2,14978,45 ,2,14979,383875 ,2,829,45 ,1,0,571625 ,2,14956,197265 ,2,822,21705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,92170 ,2,14979,353805 ,2,829,45 ,1,0,118950 ,1,1,154415 ,1,2,154405 ,1,3,154370 ,1,4,154360 ,1,5,154350 ,1,6,154340 ,1,7,154330 ,1,8,154320 ,1,9,154310 ,1,10,154255 ,1,11,154235 ,1,12,154215 ,1,13,154195 ,1,14,154145 ,2,14956,269360 ,2,822,21705 ,2,14975,110 ,2,14976,50160 ,2,14977,23120 ,2,14965,45 ,2,14978,231155 ,2,14979,300660 ,2,829,45 ,2,14956,203625 ,2,822,21705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,92190 ,2,14979,2415 ,2,829,45 ,1,0,118960 ,2,14956,203615 ,2,822,21705 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,231165 ,2,14979,300680 ,2,829,45 ,2,14956,189280 ,2,822,21685 ,2,14975,110 ,2,14976,23675 ,2,14977,50190 ,2,14965,45 ,2,14978,45 ,2,14979,300750 ,2,829,45 ,1,0,269825 ,1,1,45 ,1,2,45 ,2,14956,203605 ,2,822,21685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300740 ,2,829,45 ,1,0,25605 ,1,1,35985 ,1,2,35975 ,1,3,35965 ,1,4,45 ,1,5,45 ,1,6,31525 ,1,7,35935 ,1,8,31505 ,1,9,25595 ,1,10,35925 ,1,11,27745 ,1,12,35915 ,1,13,35905 ,1,14,28245 ,1,15,35885 ,1,16,35875 ,1,17,35865 ,1,18,27785 ,1,19,27805 ,1,20,45 ,1,21,35855 ,1,22,35815 ,1,23,45 ,1,24,27775 ,1,25,35805 ,1,26,45 ,1,27,45 ,1,28,45 ,1,29,35795 ,1,30,35785 ,1,31,25640 ,1,32,35765 ,1,33,35755 ,1,34,35745 ,1,35,45 ,1,36,35735 ,1,37,27795 ,1,38,45 ,1,39,35710 ,1,40,35700 ,1,41,35690 ,1,42,27255 ,1,43,45 ,1,44,45 ,1,45,27735 ,1,46,35680 ,1,47,27225 ,1,48,35665 ,1,49,35655 ,1,50,35645 ,1,51,35635 ,1,52,45 ,1,53,45 ,1,54,45 ,1,55,643500 ,2,14956,203665 ,2,822,21705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,92235 ,2,14979,397940 ,2,829,45 ,2,14956,203655 ,2,822,21705 ,2,14975,110 ,2,14976,50250 ,2,14977,23120 ,2,14965,45 ,2,14978,231175 ,2,14979,300780 ,2,829,45 ,1,0,154475 ,1,1,154465 ,1,2,154455 ,1,3,154445 ,1,4,154425 ,2,14956,197290 ,2,822,21685 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300800 ,2,829,45 ,1,0,3010 ,1,1,226975 ,1,2,209800 ,2,14956,197280 ,2,822,21705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354155 ,2,829,45 ,2,14956,269360 ,2,822,21705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,92170 ,2,14979,343950 ,2,829,45 ,1,0,154560 ,1,1,154550 ,1,2,154540 ,1,3,154530 ,1,4,154520 ,1,5,154510 ,2,14956,203675 ,2,822,21705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300710 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,154570 ,2,14956,203700 ,2,822,21705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300810 ,2,829,45 ,1,0,154580 ,2,14956,203685 ,2,822,51245 ,2,14975,599970 ,2,14976,23450 ,2,14977,50270 ,2,14965,45 ,2,14978,45 ,2,14979,300845 ,2,829,45 ,2,14956,203710 ,2,822,21705 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300700 ,2,829,45 ,1,0,643550 ,1,1,615295 ,1,2,65 ,1,3,155660 ,1,4,155650 ,1,5,155640 ,1,6,155625 ,1,7,155615 ,1,8,155605 ,1,9,155595 ,1,10,155540 ,1,11,155530 ,1,12,155520 ,1,13,155510 ,1,14,65 ,1,15,155495 ,1,16,65 ,1,17,155485 ,1,18,65 ,1,19,155475 ,1,20,65 ,1,21,65 ,1,22,155465 ,1,23,155430 ,1,24,155420 ,1,25,155410 ,1,26,155400 ,1,27,155390 ,1,28,155380 ,1,29,65 ,1,30,65 ,1,31,155370 ,1,32,65 ,1,33,155360 ,1,34,65 ,1,35,65 ,1,36,155325 ,1,37,155315 ,1,38,65 ,1,39,155305 ,1,40,155295 ,1,41,65 ,1,42,155285 ,1,43,155275 ,1,44,65 ,1,45,155265 ,1,46,155255 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,155230 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,155220 ,1,60,155210 ,1,61,154580 ,1,62,65 ,1,63,155200 ,1,64,65 ,1,65,65 ,1,66,65 ,1,67,155190 ,1,68,65 ,1,69,155180 ,1,70,155170 ,1,71,65 ,1,72,65 ,1,73,65 ,1,74,155160 ,1,75,155110 ,1,76,155100 ,1,77,155090 ,1,78,155070 ,1,79,155060 ,1,80,155050 ,1,81,155040 ,1,82,65 ,1,83,155000 ,1,84,154990 ,1,85,154980 ,1,86,65 ,1,87,154970 ,1,88,154960 ,1,89,154950 ,1,90,65 ,1,91,154940 ,1,92,154930 ,1,93,154900 ,1,94,154890 ,1,95,65 ,1,96,154880 ,1,97,154870 ,1,98,154845 ,1,99,154825 ,1,100,154790 ,1,101,154780 ,1,102,65 ,1,103,154770 ,1,104,154760 ,1,105,154750 ,1,106,154730 ,1,107,65 ,1,108,154670 ,1,109,154660 ,1,110,154650 ,1,111,154640 ,1,112,65 ,1,113,65 ,1,114,65 ,1,115,65 ,1,116,65 ,1,117,65 ,1,118,65 ,1,119,65 ,1,120,65 ,1,121,65 ,1,122,65 ,1,123,65 ,1,124,154630 ,1,125,154620 ,1,126,154610 ,1,127,65 ,1,128,65 ,1,129,154600 ,2,14956,203720 ,2,822,21705 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300770 ,2,829,45 ,1,0,3010 ,1,1,242410 ,1,2,242460 ,1,3,242505 ,1,4,187220 ,1,5,241975 ,1,6,187065 ,1,7,242470 ,1,8,242480 ,1,9,242495 ,1,10,242350 ,1,11,242340 ,1,12,242390 ,1,13,242265 ,1,14,186960 ,1,15,261780 ,1,16,242255 ,1,17,242315 ,1,18,187075 ,1,19,179640 ,1,20,242400 ,1,21,242245 ,1,22,187230 ,1,23,242295 ,1,24,242275 ,1,25,242305 ,1,26,242090 ,1,27,242080 ,1,28,242100 ,1,29,241995 ,1,30,241985 ,1,31,242055 ,1,32,242135 ,1,33,226790 ,1,34,242035 ,1,35,261770 ,1,36,242045 ,1,37,261760 ,1,38,242070 ,1,39,242145 ,1,40,242175 ,1,41,242165 ,1,42,242155 ,1,43,242025 ,1,44,226800 ,1,45,242360 ,1,46,242285 ,1,47,242450 ,1,48,242185 ,1,49,182890 ,1,50,242370 ,1,51,242420 ,1,52,11510 ,1,53,209800 ,2,14956,203615 ,2,822,21705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,92190 ,2,14979,300690 ,2,829,45 ,1,0,154640 ,1,1,154660 ,1,2,155530 ,1,3,154790 ,1,4,155190 ,1,5,155050 ,1,6,155660 ,1,7,155390 ,1,8,154650 ,1,9,155420 ,1,10,155315 ,1,11,155475 ,1,12,155305 ,1,13,154620 ,1,14,155100 ,1,15,154930 ,1,16,155430 ,1,17,155650 ,1,18,154630 ,1,19,154600 ,1,20,155640 ,1,21,155400 ,1,22,155485 ,1,23,155595 ,1,24,155325 ,1,25,155000 ,1,26,154770 ,1,27,154580 ,1,28,155275 ,1,29,154950 ,1,30,154970 ,1,31,154960 ,1,32,155380 ,1,33,155090 ,1,34,155410 ,1,35,155040 ,1,36,154760 ,1,37,154880 ,1,38,154870 ,1,39,154990 ,1,40,155210 ,1,41,155160 ,1,42,155220 ,1,43,154780 ,1,44,155230 ,1,45,155540 ,1,46,154900 ,1,47,155265 ,1,48,155070 ,1,49,155295 ,1,50,155510 ,1,51,155285 ,1,52,154980 ,1,53,154610 ,1,54,155625 ,1,55,155255 ,1,56,154940 ,1,57,155060 ,1,58,154670 ,1,59,154750 ,1,60,155465 ,1,61,154890 ,1,62,155615 ,1,63,155180 ,1,64,155200 ,1,65,154845 ,1,66,155605 ,1,67,155520 ,1,68,155170 ,1,69,155495 ,1,70,154825 ,1,71,155370 ,1,72,155360 ,1,73,154730 ,1,74,155110 ,2,14956,203655 ,2,822,21705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,92235 ,2,14979,300790 ,2,829,45 ,2,14956,203775 ,2,822,21705 ,2,14975,565950 ,2,14976,24120 ,2,14977,50290 ,2,14965,45 ,2,14978,45 ,2,14979,300855 ,2,829,45 ,1,0,155905 ,1,1,155895 ,1,2,155860 ,1,3,155850 ,1,4,155840 ,1,5,155830 ,1,6,155820 ,1,7,155810 ,1,8,155800 ,1,9,155760 ,1,10,155740 ,1,11,155720 ,1,12,155670 ,2,14956,203730 ,2,822,21685 ,2,14975,565945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300865 ,2,829,45 ,1,0,122545 ,2,14956,197265 ,2,822,21715 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,92430 ,2,14979,353815 ,2,829,45 ,1,0,262375 ,1,1,45 ,2,14956,269360 ,2,822,21715 ,2,14975,110 ,2,14976,50160 ,2,14977,23120 ,2,14965,45 ,2,14978,231225 ,2,14979,300890 ,2,829,45 ,1,0,155710 ,2,14956,175910 ,2,822,21715 ,2,14975,600040 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386775 ,2,829,45 ,1,0,3010 ,1,1,262465 ,1,2,262455 ,1,3,209800 ,2,14956,197280 ,2,822,21715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354165 ,2,829,45 ,2,14956,269360 ,2,822,21715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,92430 ,2,14979,343960 ,2,829,45 ,1,0,155925 ,1,1,155915 ,2,14956,203800 ,2,822,21715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300900 ,2,829,45 ,1,0,3010 ,1,1,209800 ,2,14956,166935 ,2,822,14470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382710 ,2,829,45 ,2,14956,13210 ,2,822,21770 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397390 ,2,829,45 ,1,0,155945 ,2,14956,6245 ,2,822,21770 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414470 ,2,829,45 ,2,14956,2855 ,2,822,21770 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391840 ,2,829,45 ,1,0,155965 ,1,1,155955 ,2,14956,13210 ,2,822,21780 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397395 ,2,829,45 ,2,14956,6245 ,2,822,21780 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414475 ,2,829,45 ,1,0,156060 ,1,1,156050 ,1,2,156040 ,1,3,156030 ,1,4,156020 ,1,5,155975 ,2,14956,197265 ,2,822,21685 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,92600 ,2,14979,353795 ,2,829,45 ,1,0,3010 ,1,1,262570 ,1,2,230825 ,1,3,209800 ,2,14956,269360 ,2,822,21685 ,2,14975,110 ,2,14976,50160 ,2,14977,23120 ,2,14965,45 ,2,14978,231235 ,2,14979,300920 ,2,829,45 ,2,14956,203890 ,2,822,21685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300945 ,2,829,45 ,1,0,156150 ,1,1,156140 ,1,2,156130 ,1,3,156080 ,1,4,156070 ,2,14956,203905 ,2,822,21685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,102435 ,1,1,102610 ,2,14956,197280 ,2,822,21685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354150 ,2,829,45 ,1,0,3010 ,1,1,212650 ,1,2,212700 ,1,3,209800 ,2,14956,269360 ,2,822,21685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,92600 ,2,14979,343940 ,2,829,45 ,2,14956,203925 ,2,822,21595 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,300955 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,156445 ,1,5,156435 ,1,6,65 ,1,7,156405 ,1,8,156395 ,1,9,156385 ,1,10,156375 ,1,11,65 ,1,12,156350 ,1,13,156340 ,1,14,65 ,1,15,156330 ,1,16,156315 ,1,17,65 ,1,18,65 ,1,19,156295 ,1,20,65 ,1,21,65 ,1,22,156285 ,1,23,156270 ,1,24,156250 ,1,25,65 ,1,26,156200 ,1,27,156190 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,156180 ,1,32,65 ,1,33,156160 ,2,14956,203935 ,2,822,21595 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,300965 ,2,829,45 ,1,0,3010 ,1,1,262675 ,1,2,209800 ,2,14956,203990 ,2,822,21595 ,2,14975,599870 ,2,14976,23450 ,2,14977,50455 ,2,14965,45 ,2,14978,45 ,2,14979,300975 ,2,829,45 ,1,0,156395 ,1,1,156270 ,1,2,156295 ,1,3,156405 ,1,4,156160 ,1,5,156315 ,1,6,156385 ,1,7,156180 ,1,8,156330 ,1,9,156445 ,1,10,156250 ,1,11,156190 ,1,12,156435 ,1,13,156375 ,1,14,156350 ,1,15,156340 ,1,16,156200 ,1,17,156285 ,2,14956,5700 ,2,822,21595 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383880 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,156455 ,2,14956,206730 ,2,822,51370 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301000 ,2,829,45 ,2,14956,205330 ,2,822,21790 ,2,14975,565075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408940 ,2,829,45 ,1,0,156505 ,1,1,156495 ,1,2,156485 ,1,3,156455 ,1,4,156475 ,1,5,156465 ,2,14956,2855 ,2,822,21880 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392130 ,2,829,45 ,1,0,3010 ,1,1,262720 ,1,2,11510 ,1,3,209800 ,2,14956,167780 ,2,822,21880 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257795 ,2,14979,410440 ,2,829,45 ,2,14956,2855 ,2,822,21900 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392120 ,2,829,45 ,1,0,156685 ,1,1,156675 ,1,2,156665 ,1,3,156655 ,1,4,156645 ,1,5,156615 ,1,6,156605 ,1,7,156595 ,1,8,156585 ,1,9,156575 ,1,10,156565 ,1,11,156545 ,2,14956,2855 ,2,822,21910 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392125 ,2,829,45 ,1,0,3010 ,1,1,218370 ,1,2,262815 ,1,3,182890 ,1,4,183310 ,1,5,262805 ,1,6,209800 ,2,14956,167780 ,2,822,21910 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257805 ,2,14979,410430 ,2,829,45 ,2,14956,204145 ,2,822,21820 ,2,14975,561430 ,2,14976,24020 ,2,14977,50730 ,2,14965,45 ,2,14978,45 ,2,14979,399315 ,2,829,45 ,1,0,156870 ,1,1,156825 ,1,2,156815 ,1,3,156805 ,1,4,156795 ,1,5,156775 ,1,6,156765 ,1,7,156715 ,1,8,156705 ,1,9,156695 ,2,14956,204155 ,2,822,21820 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398995 ,2,829,45 ,1,0,133790 ,1,1,155965 ,1,2,156755 ,1,3,76770 ,1,4,155945 ,1,5,156745 ,2,14956,204165 ,2,822,21820 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399245 ,2,829,45 ,1,0,133780 ,1,1,155955 ,1,2,156695 ,2,14956,204195 ,2,822,21820 ,2,14975,566065 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399290 ,2,829,45 ,2,14956,204205 ,2,822,21820 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399300 ,2,829,45 ,1,0,156935 ,1,1,156925 ,1,2,156755 ,1,3,156915 ,1,4,156900 ,1,5,156880 ,2,14956,204225 ,2,822,21920 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391620 ,2,829,45 ,1,0,156870 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,204235 ,2,822,21920 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391440 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,186340 ,1,3,185785 ,1,4,186360 ,1,5,186350 ,1,6,262945 ,2,14956,204235 ,2,822,21930 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391435 ,2,829,45 ,1,0,3010 ,1,1,186340 ,1,2,262945 ,1,3,185785 ,1,4,186360 ,1,5,186350 ,1,6,209800 ,2,14956,204225 ,2,822,21930 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391615 ,2,829,45 ,2,14956,204165 ,2,822,21940 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399250 ,2,829,45 ,1,0,157065 ,1,1,157045 ,1,2,157035 ,1,3,157025 ,1,4,157015 ,1,5,157005 ,1,6,156995 ,1,7,156975 ,2,14956,204145 ,2,822,21940 ,2,14975,561430 ,2,14976,24020 ,2,14977,50730 ,2,14965,45 ,2,14978,45 ,2,14979,399320 ,2,829,45 ,1,0,3010 ,1,1,231915 ,1,2,186340 ,1,3,185785 ,1,4,186360 ,1,5,186350 ,1,6,222480 ,1,7,209800 ,2,14956,204155 ,2,822,21940 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399000 ,2,829,45 ,2,14956,204195 ,2,822,21940 ,2,14975,566065 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399295 ,2,829,45 ,1,0,157120 ,1,1,157110 ,1,2,157095 ,1,3,157075 ,2,14956,204205 ,2,822,21940 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399305 ,2,829,45 ,1,0,154465 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,204650 ,2,822,21800 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301110 ,2,829,45 ,1,0,3010 ,1,1,226975 ,1,2,263100 ,1,3,263085 ,1,4,263075 ,1,5,263065 ,1,6,263055 ,1,7,209800 ,2,14956,172905 ,2,822,21965 ,2,14975,599970 ,2,14976,23130 ,2,14977,50900 ,2,14965,45 ,2,14978,45 ,2,14979,301120 ,2,829,45 ,2,14956,204320 ,2,822,21985 ,2,14975,561430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301175 ,2,829,45 ,1,0,157335 ,1,1,157320 ,1,2,157310 ,1,3,157300 ,1,4,157290 ,1,5,157255 ,1,6,157245 ,1,7,157225 ,1,8,157200 ,1,9,157180 ,1,10,157130 ,2,14956,204335 ,2,822,21985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301185 ,2,829,45 ,1,0,102610 ,1,1,102580 ,1,2,102510 ,2,14956,204345 ,2,822,21985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301195 ,2,829,45 ,1,0,102435 ,1,1,102455 ,1,2,102345 ,2,14956,204355 ,2,822,21985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301205 ,2,829,45 ,1,0,3010 ,1,1,263170 ,1,2,209800 ,2,14956,204365 ,2,822,21985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301220 ,2,829,45 ,2,14956,204390 ,2,822,21985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301230 ,2,829,45 ,1,0,157385 ,1,1,157365 ,1,2,157355 ,1,3,157345 ,2,14956,204400 ,2,822,21985 ,2,14975,110 ,2,14976,23450 ,2,14977,51020 ,2,14965,45 ,2,14978,45 ,2,14979,301240 ,2,829,45 ,1,0,118960 ,1,1,118950 ,1,2,118940 ,1,3,103320 ,1,4,157365 ,2,14956,204410 ,2,822,21985 ,2,14975,110 ,2,14976,23450 ,2,14977,51020 ,2,14965,45 ,2,14978,45 ,2,14979,301250 ,2,829,45 ,1,0,3010 ,1,1,242400 ,1,2,209800 ,2,14956,204420 ,2,822,21985 ,2,14975,110 ,2,14976,23450 ,2,14977,51020 ,2,14965,45 ,2,14978,45 ,2,14979,301270 ,2,829,45 ,2,14956,204430 ,2,822,21985 ,2,14975,110 ,2,14976,23450 ,2,14977,51020 ,2,14965,45 ,2,14978,45 ,2,14979,301280 ,2,829,45 ,1,0,156945 ,1,1,157435 ,1,2,157425 ,1,3,157415 ,1,4,157405 ,1,5,157395 ,2,14956,204440 ,2,822,21985 ,2,14975,110 ,2,14976,23450 ,2,14977,51020 ,2,14965,45 ,2,14978,45 ,2,14979,301290 ,2,829,45 ,2,14956,204450 ,2,822,21985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301300 ,2,829,45 ,1,0,157610 ,1,1,157600 ,1,2,157590 ,1,3,157580 ,1,4,157550 ,1,5,157540 ,1,6,157530 ,1,7,157520 ,1,8,157510 ,1,9,157500 ,1,10,157490 ,1,11,157480 ,1,12,157445 ,2,14956,204460 ,2,822,21985 ,2,14975,566100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301315 ,2,829,45 ,1,0,118960 ,1,1,118950 ,1,2,118940 ,1,3,103320 ,1,4,157600 ,1,5,157590 ,2,14956,204335 ,2,822,21965 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301325 ,2,829,45 ,1,0,3010 ,1,1,242400 ,1,2,186035 ,1,3,263265 ,1,4,209800 ,2,14956,204535 ,2,822,21965 ,2,14975,566105 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301335 ,2,829,45 ,2,14956,204545 ,2,822,21965 ,2,14975,566110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301345 ,2,829,45 ,1,0,157640 ,1,1,157630 ,1,2,157620 ,2,14956,204555 ,2,822,21965 ,2,14975,561400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301370 ,2,829,45 ,1,0,3010 ,1,1,263305 ,1,2,209800 ,2,14956,204565 ,2,822,21965 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301380 ,2,829,45 ,1,0,568060 ,2,14956,173035 ,2,822,21965 ,2,14975,599940 ,2,14976,23130 ,2,14977,50900 ,2,14965,45 ,2,14978,45 ,2,14979,301390 ,2,829,45 ,1,0,157860 ,1,1,157850 ,1,2,157840 ,1,3,157825 ,1,4,157815 ,1,5,157805 ,1,6,157795 ,1,7,157760 ,1,8,157750 ,1,9,157740 ,1,10,157730 ,1,11,157715 ,1,12,157705 ,1,13,157695 ,1,14,157650 ,2,14956,173045 ,2,822,21965 ,2,14975,599970 ,2,14976,23130 ,2,14977,50900 ,2,14965,45 ,2,14978,45 ,2,14979,301400 ,2,829,45 ,1,0,3010 ,1,1,263400 ,2,14956,172945 ,2,822,21965 ,2,14975,599970 ,2,14976,23130 ,2,14977,50900 ,2,14965,45 ,2,14978,45 ,2,14979,301410 ,2,829,45 ,1,0,3010 ,1,1,263510 ,1,2,263500 ,1,3,263490 ,1,4,263480 ,1,5,209390 ,1,6,209800 ,2,14956,172975 ,2,822,21965 ,2,14975,599970 ,2,14976,23130 ,2,14977,50900 ,2,14965,45 ,2,14978,45 ,2,14979,301430 ,2,829,45 ,2,14956,172915 ,2,822,21965 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301440 ,2,829,45 ,1,0,157955 ,1,1,156745 ,1,2,157945 ,1,3,157935 ,1,4,157870 ,2,14956,204575 ,2,822,21965 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301420 ,2,829,45 ,1,0,3010 ,1,1,186340 ,1,2,262945 ,1,3,209800 ,2,14956,204630 ,2,822,21965 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257815 ,2,14979,2415 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,356455 ,1,5,356445 ,2,14956,204670 ,2,822,21800 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,301480 ,2,829,45 ,2,14956,204680 ,2,822,21800 ,2,14975,100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397025 ,2,829,45 ,1,0,157965 ,2,14956,204690 ,2,822,21800 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301490 ,2,829,45 ,2,14956,204700 ,2,822,21800 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397260 ,2,829,45 ,1,0,158015 ,1,1,157995 ,1,2,157985 ,1,3,157975 ,2,14956,204225 ,2,822,21800 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390380 ,2,829,45 ,1,0,3010 ,1,1,11690 ,1,2,209800 ,2,14956,204235 ,2,822,21800 ,2,14975,561430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390165 ,2,829,45 ,2,14956,204980 ,2,822,51435 ,2,14975,566135 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257825 ,2,14979,301500 ,2,829,45 ,1,0,158035 ,1,1,158025 ,2,14956,6550 ,2,822,51380 ,2,14975,609005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370250 ,2,829,45 ,2,14956,204855 ,2,822,51425 ,2,14975,566130 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257860 ,2,14979,301530 ,2,829,45 ,1,0,158140 ,1,1,158130 ,1,2,158120 ,1,3,158085 ,1,4,158075 ,1,5,158065 ,1,6,158045 ,2,14956,204835 ,2,822,14395 ,2,14975,566130 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,51260 ,2,14979,301540 ,2,829,45 ,1,0,3010 ,1,1,262805 ,1,2,263710 ,1,3,209800 ,2,14956,204845 ,2,822,14395 ,2,14975,566130 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,301550 ,2,829,45 ,2,14956,6870 ,2,822,51380 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355590 ,2,829,45 ,1,0,158175 ,1,1,158165 ,1,2,158150 ,2,14956,2855 ,2,822,22005 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389920 ,2,829,45 ,1,0,3010 ,1,1,263785 ,1,2,209800 ,2,14956,204885 ,2,822,51380 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301560 ,2,829,45 ,2,14956,204875 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,51325 ,2,14979,301590 ,2,829,45 ,1,0,158225 ,1,1,158195 ,1,2,158185 ,2,14956,204895 ,2,822,51380 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301600 ,2,829,45 ,2,14956,204905 ,2,822,51380 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301610 ,2,829,45 ,1,0,158235 ,2,14956,204950 ,2,822,51380 ,2,14975,566125 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,158245 ,2,14956,204960 ,2,822,51380 ,2,14975,566130 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257860 ,2,14979,2415 ,2,829,45 ,2,14956,205010 ,2,822,21995 ,2,14975,566135 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,257825 ,2,14979,2415 ,2,829,45 ,1,0,269840 ,1,1,45 ,1,2,45 ,2,14956,205100 ,2,822,22015 ,2,14975,565100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,301630 ,2,829,45 ,1,0,260395 ,1,1,36015 ,1,2,36035 ,1,3,158375 ,1,4,158245 ,1,5,45 ,1,6,45 ,1,7,36025 ,1,8,45 ,1,9,614020 ,2,14956,205120 ,2,822,22015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301640 ,2,829,45 ,2,14956,205130 ,2,822,22015 ,2,14975,566190 ,2,14976,23450 ,2,14977,23360 ,2,14965,547370 ,2,14978,45 ,2,14979,301650 ,2,829,45 ,1,0,158290 ,1,1,158280 ,2,14956,205140 ,2,822,22015 ,2,14975,566200 ,2,14976,23450 ,2,14977,23360 ,2,14965,547385 ,2,14978,45 ,2,14979,301660 ,2,829,45 ,2,14956,205205 ,2,822,22015 ,2,14975,566205 ,2,14976,24020 ,2,14977,51450 ,2,14965,547395 ,2,14978,45 ,2,14979,301690 ,2,829,45 ,1,0,158345 ,1,1,158325 ,1,2,158300 ,2,14956,205330 ,2,822,22015 ,2,14975,565075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301700 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,263900 ,2,14956,205140 ,2,822,22025 ,2,14975,566220 ,2,14976,23450 ,2,14977,23360 ,2,14965,547425 ,2,14978,45 ,2,14979,301710 ,2,829,45 ,2,14956,196345 ,2,822,21790 ,2,14975,566225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301720 ,2,829,45 ,1,0,158270 ,1,1,158365 ,1,2,158355 ,2,14956,200840 ,2,822,21790 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301020 ,2,829,45 ,1,0,66360 ,1,1,70765 ,1,2,78390 ,2,14956,206720 ,2,822,20800 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,93730 ,2,14979,2415 ,2,829,45 ,1,0,158290 ,2,14956,206710 ,2,822,51445 ,2,14975,110 ,2,14976,52965 ,2,14977,23120 ,2,14965,45 ,2,14978,231300 ,2,14979,301765 ,2,829,45 ,1,0,260395 ,2,14956,166610 ,2,822,22145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,51695 ,2,14979,301860 ,2,829,45 ,1,0,158245 ,1,1,158375 ,2,14956,10080 ,2,822,22145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,93760 ,2,14979,383575 ,2,829,45 ,2,14956,10080 ,2,822,22145 ,2,14975,110 ,2,14976,51705 ,2,14977,23120 ,2,14965,45 ,2,14978,231245 ,2,14979,301870 ,2,829,45 ,1,0,158395 ,1,1,158385 ,2,14956,166985 ,2,822,22145 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,93760 ,2,14979,383205 ,2,829,45 ,2,14956,2855 ,2,822,22145 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391510 ,2,829,45 ,1,0,158430 ,1,1,158420 ,2,14956,205360 ,2,822,22145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301910 ,2,829,45 ,2,14956,186200 ,2,822,22145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301920 ,2,829,45 ,1,0,158450 ,1,1,158440 ,2,14956,190865 ,2,822,22145 ,2,14975,566320 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416460 ,2,829,45 ,2,14956,205370 ,2,822,22145 ,2,14975,566290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,158485 ,1,1,158475 ,1,2,158465 ,2,14956,205380 ,2,822,22145 ,2,14975,566290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302070 ,2,829,45 ,2,14956,2855 ,2,822,22155 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391505 ,2,829,45 ,1,0,158495 ,2,14956,205435 ,2,822,22155 ,2,14975,566265 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257870 ,2,14979,414215 ,2,829,45 ,1,0,3010 ,1,1,217650 ,1,2,175900 ,1,3,243195 ,1,4,243185 ,1,5,243230 ,1,6,182890 ,1,7,243175 ,1,8,185730 ,2,14956,205690 ,2,822,22175 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,301950 ,2,829,45 ,2,14956,205595 ,2,822,22175 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,301980 ,2,829,45 ,1,0,141605 ,1,1,158525 ,2,14956,205625 ,2,822,22175 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302020 ,2,829,45 ,2,14956,205635 ,2,822,22175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,302030 ,2,829,45 ,1,0,158545 ,1,1,158535 ,2,14956,205645 ,2,822,22175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,302040 ,2,829,45 ,2,14956,205655 ,2,822,22175 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302050 ,2,829,45 ,1,0,158590 ,1,1,158580 ,1,2,158570 ,1,3,158555 ,2,14956,205670 ,2,822,22175 ,2,14975,566355 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302060 ,2,829,45 ,2,14956,205700 ,2,822,22175 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301940 ,2,829,45 ,1,0,158630 ,1,1,158600 ,2,14956,205725 ,2,822,51445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,301835 ,2,829,45 ,2,14956,205735 ,2,822,51445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,301825 ,2,829,45 ,1,0,158650 ,1,1,158640 ,2,14956,205745 ,2,822,51445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,94055 ,2,14979,301815 ,2,829,45 ,2,14956,205745 ,2,822,51445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231255 ,2,14979,302090 ,2,829,45 ,1,0,158675 ,1,1,158660 ,2,14956,166860 ,2,822,22455 ,2,14975,566365 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302120 ,2,829,45 ,2,14956,205770 ,2,822,22235 ,2,14975,566390 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387560 ,2,829,45 ,1,0,158695 ,1,1,158685 ,2,14956,205780 ,2,822,22235 ,2,14975,566385 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,205770 ,2,822,22245 ,2,14975,566400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387545 ,2,829,45 ,1,0,158745 ,1,1,158705 ,2,14956,205770 ,2,822,22290 ,2,14975,566450 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387600 ,2,829,45 ,2,14956,205770 ,2,822,22300 ,2,14975,566460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387605 ,2,829,45 ,1,0,158765 ,1,1,158755 ,2,14956,205770 ,2,822,22310 ,2,14975,566475 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387565 ,2,829,45 ,2,14956,205855 ,2,822,22310 ,2,14975,566470 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,158805 ,1,1,158795 ,1,2,158785 ,1,3,158775 ,2,14956,205770 ,2,822,22320 ,2,14975,566485 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387550 ,2,829,45 ,1,0,3010 ,1,1,264275 ,1,2,209800 ,1,3,175900 ,1,4,262815 ,1,5,218370 ,1,6,262805 ,2,14956,205770 ,2,822,22330 ,2,14975,566510 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387590 ,2,829,45 ,2,14956,205770 ,2,822,22340 ,2,14975,566520 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387595 ,2,829,45 ,1,0,158815 ,2,14956,205770 ,2,822,22350 ,2,14975,566535 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387570 ,2,829,45 ,2,14956,205770 ,2,822,22360 ,2,14975,566545 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387555 ,2,829,45 ,1,0,158845 ,1,1,158835 ,1,2,158825 ,2,14956,206525 ,2,822,22205 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302275 ,2,829,45 ,2,14956,206515 ,2,822,22400 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,302295 ,2,829,45 ,1,0,158870 ,1,1,158855 ,2,14956,166650 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52310 ,2,14979,302315 ,2,829,45 ,1,0,12445 ,1,1,212270 ,1,2,209800 ,1,3,167895 ,1,4,182815 ,1,5,3770 ,1,6,182890 ,1,7,212290 ,1,8,184220 ,1,9,175900 ,2,14956,8315 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377055 ,2,829,45 ,2,14956,4685 ,2,822,22400 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385785 ,2,829,45 ,1,0,158900 ,1,1,158890 ,1,2,158880 ,2,14956,166610 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52320 ,2,14979,302325 ,2,829,45 ,2,14956,10080 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,94325 ,2,14979,385800 ,2,829,45 ,1,0,158955 ,1,1,158945 ,1,2,158935 ,2,14956,10080 ,2,822,22400 ,2,14975,110 ,2,14976,52330 ,2,14977,23120 ,2,14965,45 ,2,14978,231270 ,2,14979,302360 ,2,829,45 ,2,14956,176805 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52365 ,2,14979,302370 ,2,829,45 ,2,14956,5060 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376420 ,2,829,45 ,1,0,158965 ,2,14956,166620 ,2,822,22400 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52375 ,2,14979,302380 ,2,829,45 ,2,14956,6550 ,2,822,22400 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372760 ,2,829,45 ,1,0,159000 ,1,1,158990 ,1,2,158980 ,2,14956,176795 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52440 ,2,14979,302400 ,2,829,45 ,2,14956,4685 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385790 ,2,829,45 ,1,0,159050 ,1,1,159010 ,2,14956,166650 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52480 ,2,14979,302410 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,369670 ,1,3,369655 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,369645 ,2,14956,8315 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377060 ,2,829,45 ,2,14956,166610 ,2,822,22430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52510 ,2,14979,302420 ,2,829,45 ,1,0,159090 ,1,1,159080 ,1,2,159070 ,1,3,159060 ,2,14956,10080 ,2,822,22430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,94485 ,2,14979,385805 ,2,829,45 ,2,14956,10080 ,2,822,22430 ,2,14975,110 ,2,14976,52500 ,2,14977,23120 ,2,14965,45 ,2,14978,231280 ,2,14979,302430 ,2,829,45 ,1,0,159155 ,1,1,133985 ,1,2,159120 ,1,3,159110 ,1,4,159100 ,2,14956,166620 ,2,822,22430 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52525 ,2,14979,302460 ,2,829,45 ,2,14956,6550 ,2,822,22430 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411635 ,2,829,45 ,1,0,159175 ,1,1,159165 ,2,14956,176805 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52535 ,2,14979,302470 ,2,829,45 ,2,14956,5060 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376445 ,2,829,45 ,2,14956,183640 ,2,822,22430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383515 ,2,829,45 ,1,0,159200 ,1,1,159185 ,2,14956,206020 ,2,822,22430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,166985 ,2,822,22430 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,94485 ,2,14979,385070 ,2,829,45 ,1,0,159220 ,1,1,159210 ,2,14956,206050 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302480 ,2,829,45 ,2,14956,10665 ,2,822,22430 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386345 ,2,829,45 ,1,0,159275 ,1,1,159265 ,1,2,159230 ,2,14956,13210 ,2,822,22430 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397910 ,2,829,45 ,2,14956,206060 ,2,822,22430 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302510 ,2,829,45 ,1,0,159285 ,2,14956,6245 ,2,822,22430 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414530 ,2,829,45 ,2,14956,206070 ,2,822,22430 ,2,14975,566590 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302490 ,2,829,45 ,2,14956,206080 ,2,822,22430 ,2,14975,566595 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,159310 ,1,1,159295 ,2,14956,2855 ,2,822,22430 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392785 ,2,829,45 ,2,14956,206095 ,2,822,22430 ,2,14975,566590 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302520 ,2,829,45 ,1,0,159390 ,1,1,159340 ,1,2,159330 ,1,3,159320 ,2,14956,206105 ,2,822,22430 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302500 ,2,829,45 ,2,14956,176795 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52645 ,2,14979,302565 ,2,829,45 ,1,0,159410 ,1,1,159400 ,2,14956,4685 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385795 ,2,829,45 ,2,14956,166650 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52655 ,2,14979,302575 ,2,829,45 ,1,0,159465 ,1,1,159455 ,1,2,159445 ,1,3,159420 ,2,14956,8315 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377065 ,2,829,45 ,1,0,159420 ,2,14956,166610 ,2,822,22445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52665 ,2,14979,302585 ,2,829,45 ,2,14956,10080 ,2,822,22445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,94790 ,2,14979,385810 ,2,829,45 ,1,0,159500 ,1,1,159490 ,2,14956,10080 ,2,822,22445 ,2,14975,110 ,2,14976,52675 ,2,14977,23120 ,2,14965,45 ,2,14978,231290 ,2,14979,302595 ,2,829,45 ,2,14956,166620 ,2,822,22445 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52710 ,2,14979,302605 ,2,829,45 ,1,0,159535 ,1,1,159520 ,1,2,159510 ,2,14956,6550 ,2,822,22445 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411640 ,2,829,45 ,2,14956,176805 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,52720 ,2,14979,302615 ,2,829,45 ,1,0,159555 ,1,1,159545 ,2,14956,5060 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376450 ,2,829,45 ,2,14956,183640 ,2,822,22445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383520 ,2,829,45 ,1,0,267720 ,1,1,269850 ,1,2,45 ,2,14956,206020 ,2,822,22445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302625 ,2,829,45 ,1,0,36630 ,1,1,45 ,1,2,613640 ,2,14956,166985 ,2,822,22445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,94790 ,2,14979,385075 ,2,829,45 ,1,0,580395 ,2,14956,10665 ,2,822,22445 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386350 ,2,829,45 ,1,0,159630 ,1,1,159620 ,1,2,159610 ,1,3,159600 ,1,4,159590 ,1,5,159580 ,1,6,159565 ,2,14956,13210 ,2,822,22445 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397915 ,2,829,45 ,2,14956,206060 ,2,822,22445 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,302635 ,2,829,45 ,1,0,159825 ,1,1,159815 ,1,2,159805 ,1,3,159785 ,1,4,159775 ,1,5,159765 ,1,6,159755 ,1,7,159730 ,1,8,159720 ,1,9,159710 ,1,10,159700 ,1,11,159650 ,1,12,159640 ,2,14956,6245 ,2,822,22445 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414535 ,2,829,45 ,1,0,115325 ,1,1,101685 ,2,14956,206125 ,2,822,22445 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302690 ,2,829,45 ,1,0,115325 ,1,1,72090 ,2,14956,206070 ,2,822,22445 ,2,14975,566605 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302700 ,2,829,45 ,2,14956,206155 ,2,822,22445 ,2,14975,566605 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,303015 ,2,829,45 ,1,0,269860 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,22445 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392790 ,2,829,45 ,1,0,36610 ,1,1,36620 ,1,2,45 ,1,3,614705 ,2,14956,206165 ,2,822,22445 ,2,14975,566610 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,206225 ,2,822,22400 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302710 ,2,829,45 ,1,0,159920 ,1,1,159880 ,1,2,159870 ,1,3,159860 ,1,4,159850 ,1,5,159835 ,2,14956,206260 ,2,822,22400 ,2,14975,566580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,206270 ,2,822,22400 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302720 ,2,829,45 ,1,0,160410 ,1,1,159940 ,1,2,159930 ,2,14956,206020 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302730 ,2,829,45 ,2,14956,166985 ,2,822,22400 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,94325 ,2,14979,385065 ,2,829,45 ,1,0,269870 ,1,1,45 ,1,2,45 ,2,14956,206280 ,2,822,22400 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302740 ,2,829,45 ,1,0,36675 ,1,1,45 ,1,2,613640 ,2,14956,206050 ,2,822,22400 ,2,14975,566615 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302785 ,2,829,45 ,2,14956,206290 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302795 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,160400 ,1,3,65 ,1,4,160390 ,1,5,65 ,1,6,65 ,1,7,160380 ,1,8,160370 ,1,9,65 ,1,10,160360 ,1,11,65 ,1,12,160295 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,160285 ,1,19,160265 ,1,20,65 ,1,21,160255 ,1,22,160245 ,1,23,160235 ,1,24,160225 ,1,25,160205 ,1,26,160195 ,1,27,160185 ,1,28,160175 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,160155 ,1,33,160145 ,1,34,65 ,1,35,65 ,1,36,160135 ,1,37,65 ,1,38,160125 ,1,39,160105 ,1,40,65 ,1,41,160095 ,1,42,160085 ,1,43,65 ,1,44,160075 ,1,45,160050 ,1,46,65 ,1,47,160030 ,1,48,65 ,1,49,65 ,1,50,159990 ,1,51,65 ,1,52,159980 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,159970 ,1,57,65 ,1,58,159960 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,159950 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,206305 ,2,822,22400 ,2,14975,566590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302805 ,2,829,45 ,1,0,160400 ,1,1,160095 ,1,2,160105 ,1,3,160390 ,1,4,159950 ,1,5,160125 ,1,6,159990 ,1,7,160255 ,1,8,159980 ,1,9,160085 ,1,10,160205 ,1,11,160370 ,1,12,160075 ,1,13,160155 ,1,14,160195 ,1,15,159960 ,1,16,159970 ,1,17,160245 ,1,18,160175 ,1,19,160225 ,1,20,160265 ,1,21,160380 ,1,22,160145 ,1,23,160030 ,1,24,160285 ,1,25,160135 ,1,26,160185 ,1,27,160360 ,1,28,160295 ,1,29,160050 ,1,30,160235 ,2,14956,183310 ,2,822,22400 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387460 ,2,829,45 ,2,14956,206315 ,2,822,22400 ,2,14975,566605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302815 ,2,829,45 ,1,0,160455 ,1,1,160420 ,2,14956,206325 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302830 ,2,829,45 ,2,14956,206335 ,2,822,22400 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302750 ,2,829,45 ,1,0,160475 ,1,1,160465 ,2,14956,6245 ,2,822,22400 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389250 ,2,829,45 ,2,14956,2855 ,2,822,22400 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392780 ,2,829,45 ,1,0,160505 ,1,1,160495 ,1,2,160485 ,2,14956,206375 ,2,822,22400 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302850 ,2,829,45 ,2,14956,206385 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302890 ,2,829,45 ,1,0,160515 ,2,14956,206395 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302840 ,2,829,45 ,2,14956,180655 ,2,822,22400 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302900 ,2,829,45 ,1,0,161145 ,1,1,161135 ,1,2,160550 ,1,3,160525 ,2,14956,183640 ,2,822,22400 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,383505 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,160560 ,2,14956,206405 ,2,822,22400 ,2,14975,566615 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302910 ,2,829,45 ,1,0,580540 ,2,14956,206415 ,2,822,22400 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302860 ,2,829,45 ,2,14956,13210 ,2,822,22400 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397905 ,2,829,45 ,1,0,160735 ,1,1,160725 ,1,2,160715 ,1,3,160560 ,1,4,160700 ,1,5,160690 ,1,6,160680 ,1,7,160670 ,1,8,160625 ,1,9,160615 ,1,10,160605 ,1,11,160595 ,1,12,160580 ,2,14956,206425 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302760 ,2,829,45 ,1,0,580555 ,2,14956,206435 ,2,822,22400 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302920 ,2,829,45 ,1,0,160800 ,1,1,160790 ,1,2,160780 ,1,3,160745 ,2,14956,206070 ,2,822,22400 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303005 ,2,829,45 ,2,14956,206445 ,2,822,22400 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,302935 ,2,829,45 ,1,0,267720 ,1,1,267775 ,1,2,269890 ,2,14956,206475 ,2,822,22400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302945 ,2,829,45 ,1,0,36825 ,1,1,36775 ,1,2,36785 ,1,3,45 ,1,4,45 ,1,5,36835 ,1,6,614045 ,2,14956,206485 ,2,822,22400 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,302955 ,2,829,45 ,2,14956,206495 ,2,822,22400 ,2,14975,566615 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,302965 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,161125 ,1,5,161085 ,1,6,65 ,1,7,161075 ,1,8,161065 ,1,9,161055 ,1,10,161040 ,1,11,161030 ,1,12,161010 ,1,13,160990 ,1,14,65 ,1,15,160980 ,1,16,160970 ,1,17,65 ,1,18,65 ,1,19,160960 ,1,20,160940 ,1,21,160930 ,1,22,65 ,1,23,160860 ,1,24,65 ,1,25,65 ,1,26,160850 ,1,27,160840 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,160810 ,2,14956,206590 ,2,822,22205 ,2,14975,561460 ,2,14976,24020 ,2,14977,52840 ,2,14965,45 ,2,14978,45 ,2,14979,303035 ,2,829,45 ,1,0,3010 ,1,1,225170 ,1,2,217650 ,2,14956,206600 ,2,822,22205 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303055 ,2,829,45 ,1,0,160850 ,1,1,161085 ,1,2,161065 ,1,3,160980 ,1,4,161125 ,1,5,160930 ,1,6,160960 ,1,7,160940 ,1,8,161075 ,1,9,160810 ,1,10,160970 ,1,11,161055 ,1,12,160840 ,1,13,161030 ,1,14,161040 ,1,15,161010 ,1,16,160990 ,1,17,160860 ,2,14956,206620 ,2,822,22465 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303075 ,2,829,45 ,2,14956,206650 ,2,822,22455 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,130340 ,1,1,161155 ,2,14956,206710 ,2,822,51445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,93730 ,2,14979,301805 ,2,829,45 ,2,14956,206730 ,2,822,51445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301755 ,2,829,45 ,1,0,269910 ,1,1,45 ,1,2,45 ,2,14956,206730 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301745 ,2,829,45 ,1,0,161175 ,1,1,161240 ,1,2,161270 ,1,3,45 ,1,4,45 ,1,5,161195 ,1,6,161185 ,1,7,613975 ,2,14956,206740 ,2,822,21475 ,2,14975,565760 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,161195 ,1,1,161270 ,1,2,161185 ,1,3,161240 ,1,4,161175 ,2,14956,206825 ,2,822,22475 ,2,14975,566640 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,303085 ,2,829,45 ,1,0,161250 ,2,14956,181530 ,2,822,51455 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303125 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,206845 ,2,822,51455 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303135 ,2,829,45 ,1,0,100 ,1,1,610505 ,1,2,610505 ,2,14956,206730 ,2,822,51455 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303145 ,2,829,45 ,2,14956,206860 ,2,822,21465 ,2,14975,565750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,269920 ,1,1,45 ,1,2,45 ,2,14956,206965 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,161250 ,1,2,613640 ,2,14956,206975 ,2,822,51465 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,95625 ,2,14979,372275 ,2,829,45 ,1,0,161250 ,2,14956,206975 ,2,822,51465 ,2,14975,110 ,2,14976,53260 ,2,14977,23360 ,2,14965,45 ,2,14978,231320 ,2,14979,303155 ,2,829,45 ,1,0,161250 ,1,1,57710 ,2,14956,207015 ,2,822,21455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,95625 ,2,14979,372510 ,2,829,45 ,1,0,265665 ,1,1,166785 ,1,2,3770 ,1,3,167895 ,2,14956,212175 ,2,822,21455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,95675 ,2,14979,2415 ,2,829,45 ,2,14956,212165 ,2,822,51465 ,2,14975,110 ,2,14976,56390 ,2,14977,24010 ,2,14965,45 ,2,14978,231505 ,2,14979,303175 ,2,829,45 ,1,0,161345 ,1,1,161310 ,1,2,161300 ,2,14956,212095 ,2,822,22590 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303235 ,2,829,45 ,1,0,57795 ,1,1,60790 ,1,2,91650 ,1,3,79355 ,1,4,79335 ,1,5,161345 ,1,6,161165 ,2,14956,207055 ,2,822,22630 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,95705 ,2,14979,2415 ,2,829,45 ,2,14956,207045 ,2,822,22630 ,2,14975,110 ,2,14976,53325 ,2,14977,23120 ,2,14965,45 ,2,14978,231330 ,2,14979,303255 ,2,829,45 ,1,0,161365 ,1,1,161355 ,1,2,161390 ,1,3,161400 ,2,14956,207065 ,2,822,22630 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303280 ,2,829,45 ,1,0,161375 ,2,14956,207075 ,2,822,22630 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303290 ,2,829,45 ,1,0,100 ,1,1,580615 ,1,2,580610 ,2,14956,207085 ,2,822,22630 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378765 ,2,829,45 ,1,0,79335 ,1,1,57795 ,1,2,106495 ,1,3,161290 ,2,14956,207130 ,2,822,22630 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411705 ,2,829,45 ,1,0,161365 ,1,1,161440 ,1,2,79335 ,1,3,66360 ,1,4,99480 ,1,5,161470 ,1,6,106905 ,1,7,105355 ,1,8,106730 ,1,9,161410 ,1,10,60790 ,1,11,57795 ,2,14956,207140 ,2,822,22630 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411700 ,2,829,45 ,1,0,179760 ,1,1,265855 ,2,14956,207045 ,2,822,22630 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,95705 ,2,14979,303270 ,2,829,45 ,1,0,161410 ,1,1,161420 ,2,14956,171410 ,2,822,22660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371700 ,2,829,45 ,1,0,63560 ,1,1,79335 ,2,14956,207160 ,2,822,22660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416770 ,2,829,45 ,1,0,3010 ,1,1,265925 ,1,2,265915 ,2,14956,207990 ,2,822,22660 ,2,14975,566775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416880 ,2,829,45 ,2,14956,176480 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,53415 ,2,14979,303345 ,2,829,45 ,1,0,161480 ,2,14956,176470 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382955 ,2,829,45 ,1,0,3010 ,1,1,265925 ,1,2,266015 ,2,14956,207175 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303355 ,2,829,45 ,2,14956,207185 ,2,822,22670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,303375 ,2,829,45 ,1,0,269935 ,1,1,45 ,1,2,45 ,2,14956,207195 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303385 ,2,829,45 ,1,0,37090 ,1,1,37080 ,1,2,37070 ,1,3,45 ,1,4,45 ,1,5,36920 ,1,6,36885 ,1,7,37060 ,1,8,37050 ,1,9,161410 ,1,10,45 ,1,11,37040 ,1,12,37030 ,1,13,36990 ,1,14,161420 ,1,15,45 ,1,16,36980 ,1,17,24700 ,1,18,45 ,1,19,24655 ,1,20,36970 ,1,21,45 ,1,22,45 ,1,23,45 ,1,24,36960 ,1,25,36875 ,1,26,36950 ,1,27,24645 ,1,28,24635 ,1,29,36940 ,1,30,36930 ,1,31,628550 ,2,14956,207205 ,2,822,22670 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303395 ,2,829,45 ,2,14956,207230 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303435 ,2,829,45 ,2,14956,207240 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303445 ,2,829,45 ,1,0,161585 ,1,1,161570 ,1,2,161560 ,2,14956,207250 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303455 ,2,829,45 ,2,14956,207260 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303465 ,2,829,45 ,1,0,161605 ,1,1,161595 ,2,14956,207275 ,2,822,22670 ,2,14975,566780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303475 ,2,829,45 ,2,14956,173945 ,2,822,22670 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359995 ,2,829,45 ,2,14956,207285 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,161645 ,1,1,161615 ,2,14956,207295 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303485 ,2,829,45 ,2,14956,207305 ,2,822,22670 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303505 ,2,829,45 ,1,0,161665 ,1,1,161655 ,2,14956,207340 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,207350 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,161690 ,1,1,161675 ,2,14956,207360 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303540 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,354980 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,354970 ,1,7,354960 ,1,8,354935 ,1,9,65 ,2,14956,207370 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303550 ,2,829,45 ,2,14956,207390 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303560 ,2,829,45 ,1,0,161700 ,2,14956,207400 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,207410 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303570 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359825 ,1,3,65 ,2,14956,207420 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303580 ,2,829,45 ,2,14956,207460 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303590 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,359780 ,1,3,65 ,1,4,359770 ,1,5,65 ,1,6,359760 ,1,7,359750 ,1,8,65 ,1,9,65 ,2,14956,207470 ,2,822,22670 ,2,14975,566775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,303600 ,2,829,45 ,2,14956,207480 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303610 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,359815 ,1,3,65 ,2,14956,207490 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303635 ,2,829,45 ,2,14956,207500 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303645 ,2,829,45 ,2,14956,207510 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303655 ,2,829,45 ,2,14956,207520 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303665 ,2,829,45 ,1,0,161755 ,1,1,161720 ,1,2,161710 ,2,14956,207530 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,580865 ,2,14956,207560 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303675 ,2,829,45 ,1,0,161440 ,1,1,161450 ,1,2,106710 ,1,3,161830 ,1,4,161820 ,1,5,161810 ,1,6,161800 ,1,7,161785 ,1,8,161775 ,1,9,161765 ,2,14956,207570 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303685 ,2,829,45 ,1,0,66360 ,1,1,57795 ,2,14956,207580 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303695 ,2,829,45 ,1,0,106605 ,2,14956,207590 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303705 ,2,829,45 ,1,0,162220 ,1,1,56200 ,2,14956,207610 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303740 ,2,829,45 ,1,0,3010 ,1,1,265925 ,1,2,266445 ,1,3,199120 ,2,14956,207620 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303750 ,2,829,45 ,1,0,162220 ,1,1,57795 ,1,2,79335 ,2,14956,207630 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303760 ,2,829,45 ,2,14956,207640 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303770 ,2,829,45 ,1,0,269945 ,1,1,45 ,1,2,45 ,2,14956,207670 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303785 ,2,829,45 ,1,0,37180 ,1,1,37170 ,1,2,37160 ,1,3,45 ,1,4,45 ,1,5,37100 ,1,6,37150 ,1,7,613975 ,2,14956,207680 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303795 ,2,829,45 ,2,14956,207690 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303805 ,2,829,45 ,1,0,162050 ,1,1,162040 ,1,2,162020 ,1,3,162010 ,1,4,162000 ,1,5,161990 ,1,6,161950 ,1,7,161940 ,1,8,161930 ,1,9,161920 ,1,10,161900 ,1,11,161880 ,2,14956,207700 ,2,822,22670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,303365 ,2,829,45 ,1,0,162050 ,2,14956,207710 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303815 ,2,829,45 ,1,0,162030 ,1,1,162050 ,1,2,161880 ,2,14956,207720 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303860 ,2,829,45 ,2,14956,207730 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303870 ,2,829,45 ,1,0,161980 ,1,1,162095 ,2,14956,207740 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303880 ,2,829,45 ,2,14956,207760 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303890 ,2,829,45 ,2,14956,207770 ,2,822,22670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,303495 ,2,829,45 ,1,0,162030 ,1,1,162105 ,2,14956,207780 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,207790 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303900 ,2,829,45 ,1,0,162125 ,1,1,161870 ,1,2,162115 ,2,14956,207800 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303910 ,2,829,45 ,1,0,3010 ,1,1,216580 ,1,2,266765 ,2,14956,207810 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303920 ,2,829,45 ,1,0,3010 ,1,1,215195 ,1,2,216560 ,1,3,234605 ,1,4,234595 ,1,5,266840 ,2,14956,207820 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303930 ,2,829,45 ,1,0,162325 ,1,1,106660 ,1,2,106615 ,1,3,162210 ,1,4,162260 ,1,5,106560 ,1,6,106605 ,1,7,106670 ,1,8,162345 ,1,9,162335 ,1,10,162220 ,1,11,162355 ,1,12,162230 ,1,13,106570 ,1,14,162270 ,1,15,162150 ,1,16,162200 ,1,17,162315 ,1,18,162375 ,1,19,106680 ,1,20,162365 ,1,21,162170 ,1,22,106595 ,1,23,162280 ,1,24,106550 ,1,25,162250 ,1,26,162160 ,1,27,162385 ,1,28,106585 ,2,14956,207950 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303965 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,162170 ,2,14956,207940 ,2,822,22680 ,2,14975,599880 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,303975 ,2,829,45 ,1,0,57795 ,1,1,79335 ,1,2,91650 ,1,3,79355 ,2,14956,207920 ,2,822,22680 ,2,14975,566850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,303985 ,2,829,45 ,1,0,162695 ,1,1,106445 ,1,2,162535 ,1,3,162425 ,1,4,162485 ,1,5,162525 ,1,6,162580 ,1,7,162495 ,1,8,106395 ,1,9,162475 ,1,10,106435 ,1,11,162545 ,1,12,162435 ,1,13,106465 ,1,14,106475 ,1,15,106455 ,1,16,162445 ,1,17,162555 ,2,14956,207830 ,2,822,22685 ,2,14975,566850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304005 ,2,829,45 ,1,0,37200 ,1,1,106375 ,1,2,45 ,1,3,31425 ,1,4,24540 ,1,5,24590 ,1,6,24560 ,1,7,37190 ,1,8,24580 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,24530 ,1,13,29580 ,1,14,621000 ,2,14956,207880 ,2,822,22685 ,2,14975,566850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304015 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,355030 ,1,3,355020 ,1,4,65 ,1,5,65 ,2,14956,169970 ,2,822,22685 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375105 ,2,829,45 ,2,14956,207890 ,2,822,22685 ,2,14975,566785 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,162590 ,2,14956,169970 ,2,822,22730 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377360 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354990 ,1,3,65 ,2,14956,207930 ,2,822,22680 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304060 ,2,829,45 ,2,14956,207960 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304080 ,2,829,45 ,1,0,162600 ,2,14956,207970 ,2,822,22670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304090 ,2,829,45 ,1,0,563770 ,2,14956,208035 ,2,822,22660 ,2,14975,566860 ,2,14976,24020 ,2,14977,53585 ,2,14965,45 ,2,14978,45 ,2,14979,398975 ,2,829,45 ,1,0,162685 ,1,1,106335 ,1,2,162675 ,1,3,162665 ,1,4,162655 ,1,5,106485 ,1,6,162610 ,2,14956,208080 ,2,822,22660 ,2,14975,566765 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,304100 ,2,829,45 ,1,0,84630 ,1,1,64760 ,1,2,145385 ,1,3,162445 ,1,4,144345 ,1,5,57795 ,1,6,106455 ,2,14956,208070 ,2,822,22765 ,2,14975,566905 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,162705 ,1,1,97595 ,1,2,97585 ,2,14956,207160 ,2,822,22745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416775 ,2,829,45 ,1,0,3010 ,1,1,267285 ,2,14956,208035 ,2,822,22745 ,2,14975,566860 ,2,14976,24020 ,2,14977,53585 ,2,14965,45 ,2,14978,45 ,2,14979,398985 ,2,829,45 ,2,14956,207990 ,2,822,22745 ,2,14975,566775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416890 ,2,829,45 ,1,0,162760 ,1,1,162750 ,1,2,162715 ,2,14956,208100 ,2,822,22745 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416660 ,2,829,45 ,2,14956,208110 ,2,822,22745 ,2,14975,566910 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,162770 ,2,14956,207160 ,2,822,22755 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398835 ,2,829,45 ,2,14956,208130 ,2,822,22755 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304130 ,2,829,45 ,1,0,162780 ,2,14956,171410 ,2,822,22755 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371705 ,2,829,45 ,2,14956,207990 ,2,822,22755 ,2,14975,566775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399040 ,2,829,45 ,1,0,162790 ,2,14956,208035 ,2,822,22755 ,2,14975,566860 ,2,14976,24020 ,2,14977,53585 ,2,14965,45 ,2,14978,45 ,2,14979,398980 ,2,829,45 ,2,14956,208140 ,2,822,22755 ,2,14975,566915 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,304165 ,2,829,45 ,1,0,162855 ,1,1,162845 ,1,2,162820 ,1,3,162810 ,1,4,162800 ,1,5,105095 ,2,14956,208185 ,2,822,22765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,175900 ,2,14956,208195 ,2,822,22765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,208205 ,2,822,22765 ,2,14975,566925 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,162885 ,1,1,162875 ,1,2,132010 ,1,3,132020 ,1,4,162865 ,2,14956,208215 ,2,822,22765 ,2,14975,566930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304175 ,2,829,45 ,2,14956,2855 ,2,822,22785 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392000 ,2,829,45 ,1,0,106270 ,1,1,162985 ,1,2,162975 ,1,3,162965 ,1,4,107105 ,1,5,162915 ,1,6,162905 ,1,7,162895 ,2,14956,207085 ,2,822,22785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412100 ,2,829,45 ,2,14956,171410 ,2,822,22800 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371690 ,2,829,45 ,2,14956,208310 ,2,822,22800 ,2,14975,566955 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,106285 ,1,1,163040 ,1,2,163030 ,1,3,163020 ,1,4,163010 ,1,5,162995 ,2,14956,184135 ,2,822,22890 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381900 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,163075 ,2,14956,208435 ,2,822,22890 ,2,14975,566990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,304270 ,2,829,45 ,1,0,163085 ,2,14956,209685 ,2,822,22910 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,304290 ,2,829,45 ,2,14956,209630 ,2,822,22955 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304340 ,2,829,45 ,1,0,162705 ,1,1,163200 ,1,2,163190 ,1,3,163150 ,1,4,163085 ,1,5,163140 ,1,6,163120 ,1,7,163105 ,2,14956,10080 ,2,822,22975 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,97070 ,2,14979,384180 ,2,829,45 ,1,0,163120 ,2,14956,10080 ,2,822,22975 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,231340 ,2,14979,304365 ,2,829,45 ,1,0,97085 ,2,14956,166985 ,2,822,22975 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,97070 ,2,14979,383495 ,2,829,45 ,1,0,100 ,2,14956,208475 ,2,822,22975 ,2,14975,567035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304375 ,2,829,45 ,2,14956,208485 ,2,822,22975 ,2,14975,567030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,163230 ,1,1,163220 ,1,2,163210 ,2,14956,208535 ,2,822,22985 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388190 ,2,829,45 ,2,14956,208545 ,2,822,22985 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393065 ,2,829,45 ,1,0,163285 ,1,1,113860 ,1,2,163250 ,1,3,163240 ,2,14956,208555 ,2,822,22985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304410 ,2,829,45 ,2,14956,208565 ,2,822,22985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304420 ,2,829,45 ,1,0,163295 ,2,14956,208545 ,2,822,22995 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393055 ,2,829,45 ,2,14956,208625 ,2,822,22995 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547560 ,2,14978,45 ,2,14979,390075 ,2,829,45 ,1,0,163330 ,1,1,163315 ,1,2,163305 ,2,14956,208795 ,2,822,22995 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304490 ,2,829,45 ,2,14956,208785 ,2,822,23005 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304500 ,2,829,45 ,1,0,163340 ,2,14956,208670 ,2,822,23005 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304510 ,2,829,45 ,2,14956,208680 ,2,822,23005 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304520 ,2,829,45 ,1,0,106895 ,1,1,106905 ,1,2,163415 ,1,3,163405 ,1,4,163395 ,1,5,163385 ,1,6,163360 ,1,7,163350 ,2,14956,208690 ,2,822,23005 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304530 ,2,829,45 ,2,14956,208715 ,2,822,23005 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,304550 ,2,829,45 ,1,0,163430 ,2,14956,208725 ,2,822,23005 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304540 ,2,829,45 ,2,14956,208735 ,2,822,23005 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304560 ,2,829,45 ,1,0,163440 ,2,14956,208745 ,2,822,23005 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304590 ,2,829,45 ,2,14956,208765 ,2,822,23005 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304600 ,2,829,45 ,1,0,163460 ,1,1,163450 ,2,14956,208535 ,2,822,22995 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388170 ,2,829,45 ,2,14956,208825 ,2,822,22995 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304610 ,2,829,45 ,1,0,163510 ,1,1,163500 ,2,14956,208545 ,2,822,23060 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393105 ,2,829,45 ,2,14956,208535 ,2,822,23060 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388215 ,2,829,45 ,1,0,163620 ,1,1,163610 ,1,2,163600 ,1,3,163570 ,1,4,163560 ,1,5,163550 ,1,6,163540 ,1,7,163530 ,1,8,163520 ,2,14956,208845 ,2,822,23060 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416715 ,2,829,45 ,2,14956,209095 ,2,822,23060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304635 ,2,829,45 ,1,0,163630 ,2,14956,10080 ,2,822,23070 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,97420 ,2,14979,381730 ,2,829,45 ,1,0,104680 ,2,14956,10080 ,2,822,23070 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,231350 ,2,14979,304665 ,2,829,45 ,1,0,77900 ,2,14956,171965 ,2,822,23080 ,2,14975,567095 ,2,14976,23075 ,2,14977,23065 ,2,14965,547570 ,2,14978,45 ,2,14979,380160 ,2,829,45 ,1,0,97470 ,1,1,97445 ,2,14956,166495 ,2,822,23080 ,2,14975,567140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411835 ,2,829,45 ,1,0,100 ,2,14956,166530 ,2,822,23080 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375960 ,2,829,45 ,1,0,100 ,2,14956,166935 ,2,822,23080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379445 ,2,829,45 ,1,0,77965 ,1,1,91650 ,1,2,79335 ,2,14956,166870 ,2,822,23080 ,2,14975,567140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411770 ,2,829,45 ,1,0,97510 ,1,1,97500 ,2,14956,2855 ,2,822,23080 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414680 ,2,829,45 ,1,0,100 ,2,14956,171195 ,2,822,23080 ,2,14975,567145 ,2,14976,23130 ,2,14977,23120 ,2,14965,547605 ,2,14978,45 ,2,14979,375985 ,2,829,45 ,1,0,100 ,2,14956,171930 ,2,822,23080 ,2,14975,567150 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374590 ,2,829,45 ,1,0,57795 ,1,1,88460 ,1,2,73770 ,1,3,163650 ,2,14956,166680 ,2,822,23080 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377590 ,2,829,45 ,1,0,97540 ,2,14956,171390 ,2,822,23080 ,2,14975,567135 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393460 ,2,829,45 ,1,0,100 ,2,14956,208885 ,2,822,23090 ,2,14975,567160 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304685 ,2,829,45 ,1,0,100 ,1,1,581185 ,2,14956,208875 ,2,822,23070 ,2,14975,567085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,101565 ,1,1,104430 ,1,2,104245 ,2,14956,208895 ,2,822,51475 ,2,14975,567160 ,2,14976,24020 ,2,14977,26330 ,2,14965,45 ,2,14978,45 ,2,14979,304695 ,2,829,45 ,1,0,117895 ,2,14956,208945 ,2,822,23070 ,2,14975,567155 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,163960 ,2,14956,166740 ,2,822,23070 ,2,14975,567170 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375835 ,2,829,45 ,2,14956,209050 ,2,822,23070 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,304705 ,2,829,45 ,1,0,270000 ,1,1,45 ,1,2,45 ,2,14956,176220 ,2,822,23105 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,257925 ,2,14979,394435 ,2,829,45 ,1,0,37505 ,1,1,37525 ,1,2,45 ,1,3,614705 ,2,14956,171330 ,2,822,23105 ,2,14975,567205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354030 ,2,829,45 ,2,14956,176230 ,2,822,23105 ,2,14975,567205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257925 ,2,14979,416085 ,2,829,45 ,1,0,581230 ,2,14956,6245 ,2,822,23105 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257935 ,2,14979,388120 ,2,829,45 ,1,0,164155 ,1,1,163960 ,1,2,164145 ,1,3,164120 ,1,4,164110 ,1,5,164100 ,1,6,164090 ,1,7,164075 ,1,8,164065 ,1,9,164055 ,1,10,164045 ,1,11,164010 ,1,12,164000 ,1,13,163990 ,2,14956,175910 ,2,822,23105 ,2,14975,609160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257975 ,2,14979,413595 ,2,829,45 ,1,0,164155 ,1,1,97595 ,1,2,97585 ,2,14956,171090 ,2,822,23115 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,95595 ,1,1,95500 ,1,2,91855 ,1,3,165065 ,2,14956,208980 ,2,822,23115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,97740 ,2,14979,2415 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,101565 ,2,14956,208965 ,2,822,23115 ,2,14975,567225 ,2,14976,23075 ,2,14977,23065 ,2,14965,547685 ,2,14978,231365 ,2,14979,304755 ,2,829,45 ,1,0,164360 ,1,1,163870 ,1,2,163740 ,1,3,88460 ,1,4,73770 ,1,5,164305 ,1,6,164270 ,1,7,164215 ,1,8,164175 ,1,9,95665 ,1,10,104650 ,1,11,164205 ,1,12,57795 ,2,14956,208965 ,2,822,23115 ,2,14975,567225 ,2,14976,23075 ,2,14977,23065 ,2,14965,547685 ,2,14978,97740 ,2,14979,304765 ,2,829,45 ,1,0,163940 ,1,1,164195 ,1,2,165075 ,1,3,164415 ,1,4,101565 ,1,5,163930 ,1,6,104630 ,1,7,164390 ,1,8,95605 ,1,9,163730 ,1,10,163770 ,1,11,164405 ,1,12,164425 ,1,13,163805 ,1,14,163825 ,1,15,163815 ,1,16,163760 ,1,17,163780 ,1,18,163850 ,1,19,163880 ,1,20,95615 ,1,21,164175 ,1,22,95665 ,1,23,163870 ,1,24,163740 ,1,25,104650 ,1,26,95635 ,2,14956,208945 ,2,822,23115 ,2,14975,567230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,581235 ,2,14956,171100 ,2,822,23115 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,581260 ,1,1,566640 ,2,14956,208990 ,2,822,23115 ,2,14975,567215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,566695 ,1,1,566650 ,2,14956,171090 ,2,822,23125 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,208980 ,2,822,23125 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,97850 ,2,14979,2415 ,2,829,45 ,1,0,260655 ,2,14956,208965 ,2,822,23125 ,2,14975,567255 ,2,14976,23075 ,2,14977,23065 ,2,14965,547710 ,2,14978,231375 ,2,14979,304830 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,65 ,1,3,164945 ,1,4,65 ,1,5,65 ,1,6,164935 ,1,7,65 ,1,8,164295 ,1,9,164915 ,1,10,164270 ,1,11,164905 ,1,12,164895 ,1,13,164215 ,1,14,65 ,1,15,164865 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,106385 ,1,24,163720 ,1,25,151625 ,1,26,91765 ,1,27,164845 ,1,28,164835 ,1,29,164575 ,1,30,65 ,1,31,164305 ,1,32,164550 ,1,33,164540 ,1,34,65 ,1,35,65 ,1,36,65 ,1,37,65 ,1,38,165100 ,1,39,164530 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,164500 ,1,44,65 ,1,45,164490 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,164325 ,1,50,164480 ,1,51,65 ,1,52,65 ,1,53,164435 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,164260 ,1,58,165010 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,151615 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,166670 ,2,822,23125 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,97870 ,2,14979,376650 ,2,829,45 ,2,14956,166660 ,2,822,23125 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,231385 ,2,14979,304850 ,2,829,45 ,1,0,164745 ,1,1,164735 ,1,2,164725 ,1,3,164715 ,1,4,164705 ,1,5,164695 ,1,6,164650 ,1,7,164640 ,1,8,164630 ,1,9,164620 ,1,10,164605 ,1,11,164595 ,2,14956,208965 ,2,822,23125 ,2,14975,567255 ,2,14976,23075 ,2,14977,23065 ,2,14965,547710 ,2,14978,97850 ,2,14979,304840 ,2,829,45 ,1,0,97910 ,2,14956,208945 ,2,822,23125 ,2,14975,567260 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,171100 ,2,822,23125 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,166660 ,2,822,23125 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,97870 ,2,14979,377175 ,2,829,45 ,1,0,164820 ,1,1,164810 ,1,2,164800 ,1,3,164790 ,1,4,164765 ,1,5,164585 ,1,6,164755 ,2,14956,171330 ,2,822,23125 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354010 ,2,829,45 ,1,0,101565 ,1,1,164810 ,2,14956,209010 ,2,822,23125 ,2,14975,567235 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,304865 ,2,829,45 ,1,0,164480 ,1,1,164905 ,1,2,165100 ,1,3,106385 ,1,4,151625 ,1,5,151615 ,1,6,164325 ,1,7,164295 ,1,8,164260 ,1,9,164845 ,1,10,164945 ,1,11,164490 ,1,12,164530 ,1,13,164540 ,1,14,164435 ,1,15,165010 ,1,16,164550 ,1,17,164915 ,1,18,163720 ,1,19,91765 ,1,20,164865 ,1,21,164575 ,1,22,164305 ,1,23,164270 ,1,24,164215 ,1,25,164895 ,1,26,164500 ,1,27,164835 ,1,28,164935 ,2,14956,208980 ,2,822,23070 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,97975 ,2,14979,2415 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,88825 ,2,14956,208965 ,2,822,23070 ,2,14975,567265 ,2,14976,23075 ,2,14977,23065 ,2,14965,547735 ,2,14978,231395 ,2,14979,304875 ,2,829,45 ,1,0,164935 ,1,1,88460 ,1,2,73770 ,1,3,164500 ,1,4,164895 ,1,5,164835 ,1,6,77890 ,1,7,57795 ,2,14956,166660 ,2,822,23070 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,98030 ,2,14979,377180 ,2,829,45 ,1,0,566350 ,2,14956,166660 ,2,822,23070 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,231435 ,2,14979,304895 ,2,829,45 ,1,0,163950 ,1,1,95480 ,1,2,165245 ,1,3,95470 ,1,4,165235 ,1,5,94020 ,1,6,94010 ,1,7,165225 ,1,8,94000 ,1,9,165215 ,1,10,93700 ,1,11,165165 ,1,12,165155 ,1,13,165130 ,1,14,165110 ,2,14956,171100 ,2,822,23070 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,566370 ,1,2,566285 ,2,14956,166985 ,2,822,23070 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,97420 ,2,14979,381065 ,2,829,45 ,1,0,165155 ,2,14956,176500 ,2,822,23070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304925 ,2,829,45 ,2,14956,166670 ,2,822,23070 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,98030 ,2,14979,376655 ,2,829,45 ,1,0,267500 ,1,1,267370 ,1,2,267620 ,1,3,267280 ,1,4,267610 ,1,5,267300 ,1,6,270010 ,2,14956,166515 ,2,822,23070 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377470 ,2,829,45 ,1,0,165255 ,2,14956,10665 ,2,822,23070 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382640 ,2,829,45 ,2,14956,171090 ,2,822,23070 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,165265 ,1,1,165275 ,2,14956,208965 ,2,822,23070 ,2,14975,567265 ,2,14976,23075 ,2,14977,23065 ,2,14965,547735 ,2,14978,97975 ,2,14979,304885 ,2,829,45 ,1,0,165265 ,2,14956,171410 ,2,822,23070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370030 ,2,829,45 ,1,0,37585 ,1,1,21475 ,1,2,37540 ,1,3,20800 ,1,4,37560 ,1,5,33750 ,1,6,20890 ,1,7,21445 ,1,8,45 ,1,9,21455 ,1,10,45 ,1,11,22560 ,1,12,37570 ,1,13,21465 ,1,14,20790 ,1,15,37550 ,1,16,45 ,1,17,37605 ,1,18,45 ,1,19,22570 ,1,20,21530 ,1,21,45 ,1,22,45 ,1,23,165255 ,1,24,45 ,1,25,622995 ,2,14956,166680 ,2,822,23070 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377585 ,2,829,45 ,1,0,565015 ,2,14956,176520 ,2,822,23070 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,304935 ,2,829,45 ,1,0,625595 ,1,1,615295 ,1,2,163860 ,1,3,91745 ,1,4,65 ,1,5,88555 ,1,6,165390 ,1,7,65 ,1,8,92335 ,1,9,65 ,1,10,65 ,1,11,95490 ,1,12,165380 ,1,13,165370 ,1,14,165345 ,1,15,65 ,1,16,65 ,1,17,163670 ,1,18,104640 ,1,19,91735 ,1,20,104670 ,1,21,65 ,1,22,65 ,1,23,164205 ,1,24,65 ,1,25,65 ,1,26,165335 ,1,27,65 ,1,28,65 ,1,29,91725 ,1,30,91640 ,1,31,163650 ,1,32,165325 ,1,33,65 ,1,34,65 ,1,35,165315 ,1,36,165285 ,1,37,65 ,1,38,88490 ,1,39,164360 ,1,40,65 ,1,41,91675 ,1,42,65 ,1,43,164965 ,1,44,164955 ,1,45,104410 ,1,46,65 ,1,47,65 ,1,48,164165 ,1,49,91620 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,88335 ,1,54,65 ,1,55,65 ,1,56,163710 ,1,57,65 ,1,58,165000 ,1,59,91685 ,1,60,65 ,1,61,91665 ,1,62,91755 ,1,63,65 ,1,64,65 ,1,65,164380 ,2,14956,5700 ,2,822,23070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381745 ,2,829,45 ,1,0,165370 ,2,14956,171330 ,2,822,23070 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354020 ,2,829,45 ,1,0,70765 ,1,1,78390 ,1,2,104410 ,1,3,57795 ,2,14956,209070 ,2,822,22955 ,2,14975,567045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304945 ,2,829,45 ,1,0,98220 ,2,14956,209105 ,2,822,23060 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304645 ,2,829,45 ,1,0,100 ,2,14956,209115 ,2,822,23060 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304955 ,2,829,45 ,1,0,3010 ,1,1,268945 ,1,2,200590 ,1,3,215195 ,1,4,200405 ,2,14956,208625 ,2,822,23060 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547745 ,2,14978,45 ,2,14979,390135 ,2,829,45 ,1,0,164165 ,1,1,95490 ,1,2,163710 ,1,3,104670 ,1,4,163670 ,1,5,88490 ,1,6,165000 ,1,7,165380 ,1,8,165390 ,1,9,165285 ,1,10,165345 ,1,11,165335 ,1,12,88555 ,1,13,92335 ,1,14,88335 ,1,15,164205 ,1,16,104410 ,1,17,165315 ,1,18,164965 ,1,19,91755 ,1,20,164380 ,1,21,164955 ,1,22,104640 ,1,23,163860 ,1,24,165325 ,1,25,91725 ,1,26,91745 ,1,27,91675 ,1,28,91735 ,1,29,91665 ,1,30,91640 ,1,31,163650 ,1,32,165370 ,1,33,164360 ,1,34,91685 ,1,35,91620 ,2,14956,208795 ,2,822,23060 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,547750 ,2,14978,45 ,2,14979,304975 ,2,829,45 ,1,0,88180 ,1,1,107250 ,2,14956,209125 ,2,822,23060 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304985 ,2,829,45 ,1,0,165560 ,2,14956,208535 ,2,822,23135 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388175 ,2,829,45 ,1,0,67820 ,1,1,59500 ,2,14956,208545 ,2,822,23135 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393060 ,2,829,45 ,1,0,3010 ,1,1,232290 ,1,2,11510 ,1,3,210905 ,1,4,269095 ,1,5,215195 ,1,6,269085 ,1,7,269050 ,1,8,269040 ,2,14956,208625 ,2,822,23135 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547755 ,2,14978,45 ,2,14979,390080 ,2,829,45 ,1,0,3010 ,1,1,205425 ,1,2,210905 ,1,3,198280 ,2,14956,208555 ,2,822,23135 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305005 ,2,829,45 ,1,0,100 ,1,1,581385 ,2,14956,208625 ,2,822,23165 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547760 ,2,14978,45 ,2,14979,414690 ,2,829,45 ,1,0,9255 ,1,1,225320 ,2,14956,208535 ,2,822,23165 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388165 ,2,829,45 ,1,0,3010 ,1,1,180550 ,1,2,180560 ,1,3,199905 ,1,4,269205 ,2,14956,209175 ,2,822,23165 ,2,14975,567280 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,305060 ,2,829,45 ,1,0,3010 ,1,1,225320 ,2,14956,208535 ,2,822,23175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388180 ,2,829,45 ,1,0,3010 ,1,1,215195 ,1,2,232290 ,1,3,11510 ,1,4,210905 ,1,5,269095 ,1,6,269040 ,2,14956,208625 ,2,822,23175 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547765 ,2,14978,45 ,2,14979,390105 ,2,829,45 ,1,0,3010 ,1,1,199455 ,1,2,269040 ,2,14956,209195 ,2,822,23175 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305085 ,2,829,45 ,1,0,165550 ,1,1,165450 ,1,2,165670 ,1,3,88025 ,1,4,165600 ,1,5,87975 ,1,6,165750 ,1,7,165590 ,1,8,87985 ,1,9,165730 ,1,10,165660 ,1,11,165690 ,1,12,165630 ,1,13,165500 ,1,14,165650 ,1,15,165700 ,1,16,165680 ,1,17,165740 ,1,18,165640 ,1,19,165490 ,1,20,165720 ,1,21,165480 ,1,22,165430 ,1,23,165470 ,1,24,165570 ,1,25,165530 ,1,26,165560 ,2,14956,209205 ,2,822,23175 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305095 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,370245 ,1,3,370235 ,1,4,65 ,1,5,65 ,2,14956,208625 ,2,822,23185 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547770 ,2,14978,45 ,2,14979,390070 ,2,829,45 ,2,14956,208535 ,2,822,23185 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388160 ,2,829,45 ,1,0,165770 ,2,14956,209225 ,2,822,23185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305105 ,2,829,45 ,1,0,564150 ,2,14956,209255 ,2,822,23185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305115 ,2,829,45 ,1,0,84930 ,1,1,84270 ,1,2,165790 ,1,3,84975 ,1,4,165780 ,2,14956,2855 ,2,822,23195 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392010 ,2,829,45 ,2,14956,208545 ,2,822,23215 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,415850 ,2,829,45 ,1,0,165800 ,2,14956,209295 ,2,822,23215 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,305150 ,2,829,45 ,2,14956,209285 ,2,822,22955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,270050 ,1,1,270070 ,1,2,270030 ,2,14956,208535 ,2,822,23215 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388220 ,2,829,45 ,1,0,165900 ,1,1,165880 ,1,2,165870 ,1,3,165860 ,2,14956,209305 ,2,822,23215 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305160 ,2,829,45 ,2,14956,207065 ,2,822,22955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305170 ,2,829,45 ,2,14956,209315 ,2,822,23215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305185 ,2,829,45 ,2,14956,207085 ,2,822,23215 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378775 ,2,829,45 ,2,14956,207130 ,2,822,23215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374080 ,2,829,45 ,1,0,100 ,1,1,581465 ,2,14956,208625 ,2,822,23215 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547805 ,2,14978,45 ,2,14979,390115 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,37795 ,1,3,45 ,1,4,45 ,1,5,37675 ,1,6,37775 ,1,7,37765 ,1,8,37755 ,1,9,37745 ,1,10,165870 ,1,11,37700 ,1,12,45 ,1,13,45 ,1,14,37710 ,1,15,37655 ,1,16,37720 ,1,17,165860 ,1,18,165900 ,1,19,165880 ,1,20,37690 ,1,21,616230 ,2,14956,209325 ,2,822,23215 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389230 ,2,829,45 ,2,14956,209370 ,2,822,23215 ,2,14975,562140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305195 ,2,829,45 ,1,0,165910 ,2,14956,208625 ,2,822,23225 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547830 ,2,14978,45 ,2,14979,390140 ,2,829,45 ,2,14956,209420 ,2,822,23225 ,2,14975,567325 ,2,14976,24120 ,2,14977,54735 ,2,14965,45 ,2,14978,45 ,2,14979,305215 ,2,829,45 ,1,0,165920 ,2,14956,173945 ,2,822,23225 ,2,14975,609265 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257985 ,2,14979,359510 ,2,829,45 ,2,14956,2855 ,2,822,23235 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392015 ,2,829,45 ,1,0,165940 ,2,14956,208535 ,2,822,23245 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388185 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,208625 ,2,822,23245 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547835 ,2,14978,45 ,2,14979,390110 ,2,829,45 ,1,0,100 ,1,1,599880 ,2,14956,209195 ,2,822,23245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408975 ,2,829,45 ,2,14956,209450 ,2,822,23245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305260 ,2,829,45 ,1,0,166090 ,1,1,166080 ,1,2,166070 ,1,3,166060 ,1,4,166015 ,1,5,166005 ,1,6,165985 ,1,7,165960 ,2,14956,208535 ,2,822,23275 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388195 ,2,829,45 ,1,0,166125 ,1,1,166105 ,1,2,165960 ,2,14956,208625 ,2,822,23275 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547840 ,2,14978,45 ,2,14979,390120 ,2,829,45 ,2,14956,209485 ,2,822,23275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305280 ,2,829,45 ,1,0,166135 ,2,14956,184890 ,2,822,23275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305290 ,2,829,45 ,2,14956,207240 ,2,822,23275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305300 ,2,829,45 ,1,0,270060 ,1,1,45 ,1,2,45 ,2,14956,209195 ,2,822,23275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408980 ,2,829,45 ,1,0,45 ,1,1,37805 ,1,2,613640 ,2,14956,209450 ,2,822,23275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305310 ,2,829,45 ,2,14956,208545 ,2,822,23285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393070 ,2,829,45 ,1,0,166165 ,2,14956,208535 ,2,822,23285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388210 ,2,829,45 ,2,14956,208625 ,2,822,23285 ,2,14975,599870 ,2,14976,24020 ,2,14977,54100 ,2,14965,547855 ,2,14978,45 ,2,14979,390130 ,2,829,45 ,1,0,260715 ,1,1,260730 ,2,14956,207085 ,2,822,23285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378770 ,2,829,45 ,1,0,166105 ,1,1,166195 ,1,2,166125 ,1,3,166185 ,2,14956,207130 ,2,822,23285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374070 ,2,829,45 ,1,0,166195 ,2,14956,208845 ,2,822,23285 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416710 ,2,829,45 ,1,0,564895 ,2,14956,209125 ,2,822,23285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408985 ,2,829,45 ,1,0,165850 ,2,14956,173980 ,2,822,22955 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387045 ,2,829,45 ,1,0,65975 ,2,14956,209540 ,2,822,22955 ,2,14975,567350 ,2,14976,23130 ,2,14977,23120 ,2,14965,547860 ,2,14978,45 ,2,14979,305360 ,2,829,45 ,2,14956,209550 ,2,822,22955 ,2,14975,609320 ,2,14976,23130 ,2,14977,23120 ,2,14965,547870 ,2,14978,45 ,2,14979,305370 ,2,829,45 ,1,0,270080 ,1,1,45 ,1,2,45 ,2,14956,171330 ,2,822,22955 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359270 ,2,829,45 ,1,0,37825 ,1,1,45 ,1,2,613640 ,2,14956,209580 ,2,822,22955 ,2,14975,567285 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383890 ,2,829,45 ,2,14956,209590 ,2,822,22955 ,2,14975,567285 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383330 ,2,829,45 ,1,0,166215 ,1,1,166235 ,1,2,166225 ,2,14956,209325 ,2,822,22955 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389225 ,2,829,45 ,1,0,63950 ,2,14956,209600 ,2,822,22955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305380 ,2,829,45 ,1,0,57795 ,1,1,77965 ,2,14956,208845 ,2,822,22955 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416720 ,2,829,45 ,1,0,99105 ,1,1,99070 ,2,14956,207075 ,2,822,22955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304330 ,2,829,45 ,1,0,100 ,2,14956,209640 ,2,822,23215 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,304320 ,2,829,45 ,1,0,100 ,2,14956,209650 ,2,822,22900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,304310 ,2,829,45 ,2,14956,209660 ,2,822,22900 ,2,14975,567390 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305405 ,2,829,45 ,1,0,166310 ,1,1,166245 ,1,2,166295 ,1,3,166285 ,1,4,166320 ,1,5,166275 ,1,6,166265 ,2,14956,209695 ,2,822,22910 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,305415 ,2,829,45 ,2,14956,209705 ,2,822,22910 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,304300 ,2,829,45 ,1,0,166340 ,1,1,166330 ,2,14956,209725 ,2,822,22900 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305425 ,2,829,45 ,1,0,56320 ,2,14956,209810 ,2,822,22900 ,2,14975,110 ,2,14976,23450 ,2,14977,55005 ,2,14965,45 ,2,14978,45 ,2,14979,305445 ,2,829,45 ,2,14956,209735 ,2,822,23445 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,305475 ,2,829,45 ,1,0,270010 ,1,1,270130 ,1,2,45 ,2,14956,209745 ,2,822,23445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,305465 ,2,829,45 ,1,0,166385 ,2,14956,209820 ,2,822,22900 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305490 ,2,829,45 ,2,14956,209830 ,2,822,22900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305455 ,2,829,45 ,1,0,270100 ,1,1,45 ,1,2,45 ,2,14956,209840 ,2,822,22900 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,305500 ,2,829,45 ,1,0,45 ,1,1,37990 ,1,2,37980 ,1,3,37970 ,1,4,37935 ,1,5,37915 ,1,6,45 ,1,7,613975 ,2,14956,186575 ,2,822,22900 ,2,14975,567395 ,2,14976,34765 ,2,14977,55015 ,2,14965,45 ,2,14978,45 ,2,14979,305545 ,2,829,45 ,2,14956,2855 ,2,822,22900 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391795 ,2,829,45 ,1,0,166405 ,1,1,166395 ,2,14956,186595 ,2,822,22900 ,2,14975,567400 ,2,14976,24120 ,2,14977,55030 ,2,14965,45 ,2,14978,45 ,2,14979,305575 ,2,829,45 ,2,14956,209890 ,2,822,22900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305595 ,2,829,45 ,1,0,166490 ,1,1,166480 ,1,2,166450 ,1,3,166440 ,1,4,166430 ,1,5,166420 ,2,14956,186200 ,2,822,22900 ,2,14975,567405 ,2,14976,23675 ,2,14977,55040 ,2,14965,45 ,2,14978,45 ,2,14979,305605 ,2,829,45 ,2,14956,209900 ,2,822,22900 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,305510 ,2,829,45 ,1,0,166525 ,1,1,166510 ,1,2,166500 ,2,14956,186675 ,2,822,22900 ,2,14975,567410 ,2,14976,25600 ,2,14977,55050 ,2,14965,45 ,2,14978,45 ,2,14979,305615 ,2,829,45 ,2,14956,209940 ,2,822,22900 ,2,14975,110 ,2,14976,24120 ,2,14977,55060 ,2,14965,45 ,2,14978,45 ,2,14979,305555 ,2,829,45 ,1,0,166545 ,1,1,166535 ,2,14956,209950 ,2,822,22900 ,2,14975,110 ,2,14976,23130 ,2,14977,55085 ,2,14965,45 ,2,14978,45 ,2,14979,305520 ,2,829,45 ,2,14956,209960 ,2,822,22900 ,2,14975,567415 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,305565 ,2,829,45 ,1,0,166615 ,1,1,166605 ,1,2,166595 ,1,3,166555 ,2,14956,208100 ,2,822,23295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416655 ,2,829,45 ,1,0,3010 ,1,1,270175 ,1,2,241340 ,1,3,182745 ,1,4,182890 ,1,5,209400 ,1,6,243905 ,2,14956,210595 ,2,822,23305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305660 ,2,829,45 ,1,0,179760 ,1,1,209400 ,2,14956,169970 ,2,822,23335 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377365 ,2,829,45 ,1,0,38010 ,1,1,166385 ,1,2,45 ,1,3,45 ,1,4,38000 ,1,5,37890 ,1,6,614045 ,2,14956,210045 ,2,822,23345 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,547880 ,2,14978,45 ,2,14979,305765 ,2,829,45 ,1,0,577350 ,2,14956,210025 ,2,822,23345 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,547885 ,2,14978,45 ,2,14979,305775 ,2,829,45 ,1,0,166745 ,1,1,166735 ,1,2,166725 ,1,3,166715 ,1,4,166675 ,1,5,166665 ,1,6,166655 ,1,7,166645 ,1,8,166625 ,2,14956,210055 ,2,822,23345 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,547890 ,2,14978,45 ,2,14979,305730 ,2,829,45 ,2,14956,171735 ,2,822,23345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,547930 ,2,14978,45 ,2,14979,305720 ,2,829,45 ,1,0,167150 ,1,1,167110 ,1,2,167100 ,1,3,167090 ,1,4,167080 ,1,5,167065 ,1,6,166875 ,1,7,166865 ,1,8,166855 ,1,9,166845 ,1,10,166835 ,1,11,166790 ,1,12,166780 ,1,13,166760 ,2,14956,210120 ,2,822,49280 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,55225 ,2,14979,305785 ,2,829,45 ,1,0,100 ,1,1,581780 ,1,2,599870 ,2,14956,5700 ,2,822,14470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386005 ,2,829,45 ,1,0,3010 ,1,1,270320 ,2,14956,209070 ,2,822,22590 ,2,14975,566855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,210130 ,2,822,22590 ,2,14975,566850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305690 ,2,829,45 ,1,0,270110 ,1,1,45 ,1,2,45 ,2,14956,210140 ,2,822,22590 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305795 ,2,829,45 ,1,0,45 ,1,1,38020 ,1,2,613640 ,2,14956,210155 ,2,822,23355 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,305830 ,2,829,45 ,2,14956,6245 ,2,822,23355 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388775 ,2,829,45 ,1,0,167055 ,1,1,166885 ,2,14956,13210 ,2,822,23355 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396610 ,2,829,45 ,1,0,158245 ,1,1,70765 ,1,2,78390 ,2,14956,173980 ,2,822,23355 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386890 ,2,829,45 ,2,14956,173945 ,2,822,23355 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,257995 ,2,14979,410720 ,2,829,45 ,1,0,270120 ,1,1,45 ,1,2,45 ,2,14956,210280 ,2,822,23365 ,2,14975,567465 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258005 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,38040 ,1,2,613640 ,2,14956,210175 ,2,822,51485 ,2,14975,567465 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258005 ,2,14979,305840 ,2,829,45 ,2,14956,210220 ,2,822,51495 ,2,14975,567515 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258025 ,2,14979,305875 ,2,829,45 ,1,0,260785 ,2,14956,210240 ,2,822,51520 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258035 ,2,14979,408990 ,2,829,45 ,1,0,167045 ,1,1,167035 ,1,2,166895 ,1,3,166990 ,1,4,166980 ,1,5,166970 ,1,6,166960 ,1,7,166950 ,1,8,166940 ,1,9,166930 ,2,14956,210260 ,2,822,23365 ,2,14975,567470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167035 ,2,14956,210290 ,2,822,23365 ,2,14975,567515 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258025 ,2,14979,2415 ,2,829,45 ,1,0,73375 ,2,14956,210320 ,2,822,23365 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,210330 ,2,822,22590 ,2,14975,567520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305810 ,2,829,45 ,1,0,166375 ,1,1,167160 ,2,14956,210370 ,2,822,22590 ,2,14975,561400 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258045 ,2,14979,2415 ,2,829,45 ,1,0,84460 ,1,1,151625 ,1,2,57795 ,2,14956,210340 ,2,822,51530 ,2,14975,561400 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258045 ,2,14979,305885 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,167190 ,1,3,171975 ,1,4,45 ,1,5,167180 ,2,14956,210435 ,2,822,22590 ,2,14975,566105 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258055 ,2,14979,2415 ,2,829,45 ,1,0,628950 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,375020 ,1,5,375010 ,1,6,375000 ,1,7,374990 ,1,8,65 ,1,9,374975 ,1,10,65 ,1,11,374965 ,1,12,374950 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,374940 ,1,17,65 ,1,18,374925 ,1,19,374915 ,1,20,374905 ,1,21,374895 ,1,22,374850 ,1,23,65 ,1,24,374840 ,1,25,65 ,1,26,65 ,1,27,374830 ,1,28,374820 ,1,29,65 ,1,30,374815 ,1,31,374805 ,1,32,65 ,1,33,374790 ,1,34,65 ,1,35,65 ,1,36,374785 ,1,37,374760 ,1,38,374750 ,1,39,65 ,1,40,374740 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,374730 ,1,46,65 ,1,47,374705 ,1,48,65 ,1,49,374700 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,374685 ,1,55,374680 ,1,56,374640 ,1,57,374630 ,1,58,374620 ,1,59,374610 ,1,60,374600 ,1,61,65 ,1,62,374585 ,1,63,65 ,1,64,374575 ,1,65,65 ,2,14956,210390 ,2,822,51540 ,2,14975,566105 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258055 ,2,14979,305895 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370595 ,2,14956,210380 ,2,822,22590 ,2,14975,566105 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,305905 ,2,829,45 ,2,14956,210465 ,2,822,22590 ,2,14975,561400 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258080 ,2,14979,2415 ,2,829,45 ,1,0,270140 ,1,1,45 ,1,2,45 ,2,14956,210445 ,2,822,51550 ,2,14975,561400 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258080 ,2,14979,305915 ,2,829,45 ,1,0,45 ,1,1,38090 ,1,2,613640 ,2,14956,210480 ,2,822,22590 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,305680 ,2,829,45 ,2,14956,208215 ,2,822,22590 ,2,14975,567525 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305925 ,2,829,45 ,1,0,167200 ,2,14956,2855 ,2,822,23425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415080 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358455 ,1,3,65 ,2,14956,184135 ,2,822,23425 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381010 ,2,829,45 ,2,14956,210490 ,2,822,23425 ,2,14975,567530 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305955 ,2,829,45 ,2,14956,175255 ,2,822,49175 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,305965 ,2,829,45 ,1,0,270150 ,1,1,45 ,1,2,45 ,2,14956,171195 ,2,822,23435 ,2,14975,567545 ,2,14976,23130 ,2,14977,23120 ,2,14965,547955 ,2,14978,45 ,2,14979,375950 ,2,829,45 ,1,0,45 ,1,1,38180 ,1,2,38170 ,1,3,38120 ,1,4,38110 ,1,5,38140 ,1,6,45 ,1,7,613975 ,2,14956,166740 ,2,822,23435 ,2,14975,567550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375700 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358460 ,1,3,65 ,2,14956,210530 ,2,822,22590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305985 ,2,829,45 ,2,14956,5700 ,2,822,49175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381795 ,2,829,45 ,1,0,167210 ,2,14956,210540 ,2,822,23425 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305670 ,2,829,45 ,2,14956,210550 ,2,822,23445 ,2,14975,566775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306015 ,2,829,45 ,1,0,260830 ,1,1,260815 ,1,2,260805 ,2,14956,210575 ,2,822,23445 ,2,14975,566920 ,2,14976,23130 ,2,14977,55450 ,2,14965,45 ,2,14978,45 ,2,14979,306005 ,2,829,45 ,1,0,167335 ,1,1,167325 ,1,2,167315 ,1,3,167305 ,1,4,167290 ,1,5,167280 ,2,14956,210585 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,305995 ,2,829,45 ,1,0,167335 ,1,1,167325 ,1,2,167315 ,2,14956,208215 ,2,822,23445 ,2,14975,567585 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,209800 ,1,2,276520 ,1,3,175900 ,2,14956,210605 ,2,822,23305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306025 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369300 ,1,3,65 ,2,14956,210665 ,2,822,23305 ,2,14975,567590 ,2,14976,23130 ,2,14977,55485 ,2,14965,45 ,2,14978,45 ,2,14979,306055 ,2,829,45 ,2,14956,210685 ,2,822,23305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306065 ,2,829,45 ,1,0,167390 ,1,1,167380 ,1,2,167370 ,1,3,167360 ,2,14956,210675 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306075 ,2,829,45 ,2,14956,210715 ,2,822,23305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306085 ,2,829,45 ,1,0,167415 ,2,14956,210695 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,100140 ,2,14979,306110 ,2,829,45 ,2,14956,210695 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231445 ,2,14979,306130 ,2,829,45 ,1,0,260860 ,1,1,260850 ,2,14956,210705 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306100 ,2,829,45 ,1,0,167530 ,1,1,167520 ,1,2,167505 ,1,3,167495 ,1,4,167485 ,1,5,167475 ,1,6,167445 ,2,14956,210725 ,2,822,23305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306175 ,2,829,45 ,1,0,559535 ,2,14956,210765 ,2,822,23305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306185 ,2,829,45 ,1,0,167595 ,1,1,167585 ,1,2,167550 ,1,3,167540 ,2,14956,210745 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,100245 ,2,14979,306205 ,2,829,45 ,2,14956,210745 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231455 ,2,14979,306225 ,2,829,45 ,1,0,265820 ,1,1,270220 ,1,2,45 ,2,14956,210755 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306195 ,2,829,45 ,1,0,45 ,1,1,38215 ,1,2,38420 ,1,3,45 ,1,4,38200 ,1,5,38410 ,1,6,45 ,1,7,38400 ,1,8,38360 ,1,9,38235 ,1,10,38190 ,1,11,618550 ,2,14956,210775 ,2,822,23305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306235 ,2,829,45 ,2,14956,210790 ,2,822,23305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306120 ,2,829,45 ,1,0,167945 ,1,1,167935 ,1,2,167605 ,2,14956,210800 ,2,822,23305 ,2,14975,567425 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,306245 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,167615 ,2,14956,210820 ,2,822,23445 ,2,14975,567595 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306255 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,167645 ,2,14956,173980 ,2,822,23445 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387040 ,2,829,45 ,1,0,582140 ,2,14956,210865 ,2,822,23445 ,2,14975,566615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306300 ,2,829,45 ,1,0,167835 ,1,1,167825 ,1,2,167795 ,1,3,167785 ,1,4,167775 ,1,5,167765 ,1,6,167745 ,1,7,167735 ,1,8,167725 ,1,9,167715 ,1,10,167655 ,2,14956,210875 ,2,822,23445 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411350 ,2,829,45 ,2,14956,210885 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408995 ,2,829,45 ,2,14956,2855 ,2,822,23445 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,415095 ,2,829,45 ,1,0,270160 ,1,1,45 ,1,2,45 ,2,14956,210895 ,2,822,23445 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,369900 ,2,829,45 ,1,0,38315 ,1,1,38295 ,1,2,38305 ,1,3,45 ,1,4,45 ,1,5,616170 ,2,14956,210925 ,2,822,23445 ,2,14975,110 ,2,14976,24120 ,2,14977,55670 ,2,14965,45 ,2,14978,100400 ,2,14979,369990 ,2,829,45 ,1,0,582180 ,2,14956,210925 ,2,822,23445 ,2,14975,110 ,2,14976,55660 ,2,14977,55650 ,2,14965,45 ,2,14978,231465 ,2,14979,306310 ,2,829,45 ,1,0,167855 ,1,1,167645 ,1,2,167845 ,2,14956,210935 ,2,822,23445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,409000 ,2,829,45 ,1,0,582185 ,2,14956,210975 ,2,822,23445 ,2,14975,559540 ,2,14976,23450 ,2,14977,28905 ,2,14965,45 ,2,14978,45 ,2,14979,306320 ,2,829,45 ,1,0,582190 ,2,14956,210985 ,2,822,23445 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369650 ,2,829,45 ,1,0,167870 ,2,14956,210995 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,100465 ,2,14979,306330 ,2,829,45 ,1,0,167615 ,1,1,167880 ,2,14956,210995 ,2,822,23445 ,2,14975,110 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,231475 ,2,14979,306350 ,2,829,45 ,2,14956,211005 ,2,822,23445 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411270 ,2,829,45 ,1,0,270170 ,1,1,45 ,1,2,45 ,2,14956,211015 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306360 ,2,829,45 ,1,0,38285 ,1,1,38245 ,1,2,45 ,1,3,45 ,1,4,38340 ,1,5,616170 ,2,14956,211025 ,2,822,23445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,100505 ,2,14979,412045 ,2,829,45 ,2,14956,211025 ,2,822,23445 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,231485 ,2,14979,306370 ,2,829,45 ,1,0,145385 ,1,1,167900 ,1,2,167585 ,1,3,167495 ,1,4,60470 ,1,5,60460 ,1,6,60020 ,1,7,59965 ,1,8,59935 ,1,9,167485 ,1,10,143245 ,1,11,143320 ,1,12,66360 ,1,13,167890 ,2,14956,211035 ,2,822,23445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,100555 ,2,14979,411620 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,276975 ,1,3,276965 ,2,14956,211035 ,2,822,23445 ,2,14975,110 ,2,14976,55700 ,2,14977,23360 ,2,14965,45 ,2,14978,231495 ,2,14979,306395 ,2,829,45 ,1,0,3010 ,1,1,277025 ,1,2,277015 ,2,14956,211045 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,547965 ,2,14978,45 ,2,14979,306405 ,2,829,45 ,2,14956,211070 ,2,822,23445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,100400 ,2,14979,369865 ,2,829,45 ,2,14956,211080 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411825 ,2,829,45 ,1,0,167965 ,1,1,167955 ,2,14956,211090 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306415 ,2,829,45 ,1,0,559535 ,2,14956,211125 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306425 ,2,829,45 ,1,0,167995 ,1,1,167985 ,1,2,167975 ,2,14956,211100 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306440 ,2,829,45 ,2,14956,211135 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306450 ,2,829,45 ,1,0,168110 ,1,1,168100 ,1,2,168090 ,1,3,168070 ,1,4,168060 ,1,5,168050 ,1,6,168005 ,2,14956,207075 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306460 ,2,829,45 ,1,0,168110 ,2,14956,211145 ,2,822,23445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,100245 ,2,14979,369665 ,2,829,45 ,1,0,100 ,1,1,580980 ,1,2,577825 ,2,14956,211155 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370040 ,2,829,45 ,2,14956,211190 ,2,822,23445 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411365 ,2,829,45 ,1,0,168120 ,1,1,167900 ,2,14956,211200 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306340 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207065 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306470 ,2,829,45 ,1,0,100 ,1,1,568430 ,2,14956,207130 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373975 ,2,829,45 ,2,14956,211210 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411360 ,2,829,45 ,1,0,270240 ,1,1,45 ,1,2,45 ,2,14956,211220 ,2,822,23445 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411430 ,2,829,45 ,1,0,168165 ,2,14956,211235 ,2,822,23445 ,2,14975,567600 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,372215 ,2,829,45 ,1,0,126365 ,2,14956,211245 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306505 ,2,829,45 ,1,0,168185 ,2,14956,211255 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306515 ,2,829,45 ,2,14956,211265 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306525 ,2,829,45 ,1,0,270230 ,1,1,45 ,1,2,45 ,2,14956,211290 ,2,822,23445 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411155 ,2,829,45 ,1,0,38470 ,1,1,38450 ,1,2,45 ,1,3,614705 ,2,14956,211300 ,2,822,23445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,100555 ,2,14979,376675 ,2,829,45 ,2,14956,211310 ,2,822,23445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,100140 ,2,14979,2415 ,2,829,45 ,1,0,260925 ,1,1,260915 ,1,2,260905 ,2,14956,211320 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371320 ,2,829,45 ,1,0,168310 ,1,1,168295 ,1,2,168285 ,1,3,168275 ,1,4,168265 ,2,14956,185345 ,2,822,23445 ,2,14975,110 ,2,14976,23450 ,2,14977,55785 ,2,14965,45 ,2,14978,45 ,2,14979,306550 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,563735 ,1,3,563735 ,1,4,568460 ,2,14956,211350 ,2,822,23445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306535 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370610 ,2,14956,211360 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411205 ,2,829,45 ,2,14956,211385 ,2,822,23445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411200 ,2,829,45 ,2,14956,211405 ,2,822,51560 ,2,14975,566615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258090 ,2,14979,306570 ,2,829,45 ,1,0,168320 ,1,1,168185 ,2,14956,211430 ,2,822,23455 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306580 ,2,829,45 ,1,0,215275 ,1,1,179760 ,1,2,213700 ,1,3,236735 ,2,14956,211440 ,2,822,23455 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,38505 ,1,1,45 ,1,2,45 ,1,3,38430 ,1,4,168165 ,1,5,616170 ,2,14956,211450 ,2,822,23455 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,306605 ,2,829,45 ,2,14956,211460 ,2,822,23455 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,168175 ,1,1,168340 ,1,2,168330 ,2,14956,211505 ,2,822,23455 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,306615 ,2,829,45 ,2,14956,211515 ,2,822,23455 ,2,14975,567610 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614025 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,370410 ,1,7,370390 ,1,8,370430 ,1,9,370400 ,1,10,65 ,1,11,370450 ,1,12,65 ,1,13,370375 ,1,14,65 ,1,15,370440 ,1,16,65 ,1,17,65 ,2,14956,211525 ,2,822,23455 ,2,14975,566615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258090 ,2,14979,2415 ,2,829,45 ,2,14956,174425 ,2,822,51570 ,2,14975,559540 ,2,14976,23450 ,2,14977,28905 ,2,14965,45 ,2,14978,45 ,2,14979,382845 ,2,829,45 ,1,0,270290 ,1,1,270280 ,1,2,271930 ,1,3,270270 ,1,4,270260 ,1,5,45 ,1,6,45 ,2,14956,173980 ,2,822,51570 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306625 ,2,829,45 ,1,0,38525 ,1,1,45 ,1,2,42010 ,1,3,42000 ,1,4,38575 ,1,5,45 ,1,6,45 ,1,7,38565 ,1,8,38555 ,1,9,38545 ,1,10,614025 ,2,14956,2855 ,2,822,51570 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391415 ,2,829,45 ,2,14956,169970 ,2,822,23465 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376645 ,2,829,45 ,2,14956,211600 ,2,822,23475 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306650 ,2,829,45 ,1,0,168375 ,2,14956,2855 ,2,822,23520 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392085 ,2,829,45 ,2,14956,173980 ,2,822,23540 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386825 ,2,829,45 ,1,0,168425 ,1,1,168405 ,1,2,168395 ,1,3,168385 ,2,14956,173945 ,2,822,23540 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258100 ,2,14979,359050 ,2,829,45 ,1,0,582395 ,2,14956,211730 ,2,822,51580 ,2,14975,566775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258110 ,2,14979,306680 ,2,829,45 ,1,0,180110 ,1,1,180090 ,1,2,180080 ,1,3,180070 ,1,4,180060 ,1,5,168435 ,2,14956,211755 ,2,822,51590 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258120 ,2,14979,409005 ,2,829,45 ,2,14956,211830 ,2,822,22590 ,2,14975,110 ,2,14976,23450 ,2,14977,56165 ,2,14965,45 ,2,14978,45 ,2,14979,306715 ,2,829,45 ,2,14956,211840 ,2,822,22590 ,2,14975,566720 ,2,14976,23450 ,2,14977,56175 ,2,14965,45 ,2,14978,45 ,2,14979,306745 ,2,829,45 ,1,0,270535 ,1,1,270505 ,1,2,270495 ,1,3,270485 ,1,4,270315 ,1,5,270475 ,1,6,270460 ,1,7,270450 ,1,8,271920 ,1,9,270440 ,1,10,270430 ,1,11,270395 ,1,12,270385 ,1,13,270375 ,1,14,270365 ,1,15,270345 ,1,16,270335 ,1,17,270325 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,1,24,45 ,1,25,45 ,1,26,45 ,1,27,45 ,1,28,45 ,1,29,45 ,1,30,45 ,2,14956,211850 ,2,822,22590 ,2,14975,566775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258110 ,2,14979,2415 ,2,829,45 ,1,0,41990 ,1,1,41980 ,1,2,41970 ,1,3,41945 ,1,4,41935 ,1,5,45 ,1,6,45 ,1,7,41925 ,1,8,45 ,1,9,41915 ,1,10,45 ,1,11,41900 ,1,12,45 ,1,13,38605 ,1,14,41890 ,1,15,41880 ,1,16,41870 ,1,17,41825 ,1,18,41815 ,1,19,41805 ,1,20,45 ,1,21,38635 ,1,22,38615 ,1,23,614710 ,2,14956,173980 ,2,822,22590 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387050 ,2,829,45 ,2,14956,211865 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306775 ,2,829,45 ,1,0,168445 ,2,14956,175910 ,2,822,22590 ,2,14975,567680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258130 ,2,14979,413720 ,2,829,45 ,2,14956,2855 ,2,822,23575 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391350 ,2,829,45 ,1,0,270545 ,1,1,45 ,1,2,45 ,2,14956,6245 ,2,822,23575 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388875 ,2,829,45 ,1,0,260965 ,1,1,260955 ,2,14956,13210 ,2,822,23575 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396775 ,2,829,45 ,1,0,65185 ,1,1,64760 ,2,14956,173945 ,2,822,23575 ,2,14975,609375 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258140 ,2,14979,410730 ,2,829,45 ,2,14956,195335 ,2,822,23595 ,2,14975,567740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,168550 ,1,1,168540 ,1,2,168530 ,2,14956,207130 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374090 ,2,829,45 ,1,0,168540 ,2,14956,211975 ,2,822,22590 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306870 ,2,829,45 ,1,0,38730 ,1,1,260965 ,1,2,168530 ,1,3,38720 ,1,4,168540 ,1,5,45 ,1,6,38665 ,1,7,38675 ,1,8,45 ,1,9,38645 ,1,10,168550 ,1,11,45 ,1,12,45 ,1,13,260955 ,1,14,621000 ,2,14956,173945 ,2,822,22590 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359515 ,2,829,45 ,2,14956,207085 ,2,822,22590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378795 ,2,829,45 ,1,0,168635 ,1,1,168625 ,1,2,168560 ,2,14956,211995 ,2,822,22590 ,2,14975,566720 ,2,14976,24020 ,2,14977,56325 ,2,14965,45 ,2,14978,45 ,2,14979,306830 ,2,829,45 ,1,0,167060 ,2,14956,207140 ,2,822,22590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373525 ,2,829,45 ,1,0,100 ,2,14956,212005 ,2,822,22590 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306735 ,2,829,45 ,1,0,168635 ,2,14956,212030 ,2,822,22590 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306840 ,2,829,45 ,2,14956,174425 ,2,822,22590 ,2,14975,559540 ,2,14976,24020 ,2,14977,56335 ,2,14965,45 ,2,14978,45 ,2,14979,382850 ,2,829,45 ,1,0,168645 ,2,14956,212050 ,2,822,22590 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,306765 ,2,829,45 ,2,14956,211080 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375340 ,2,829,45 ,1,0,582470 ,2,14956,212060 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306725 ,2,829,45 ,1,0,168510 ,1,1,179915 ,1,2,179905 ,1,3,179895 ,1,4,179875 ,1,5,168665 ,1,6,168655 ,1,7,168480 ,1,8,179865 ,2,14956,208825 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306850 ,2,829,45 ,1,0,169675 ,1,1,168845 ,1,2,168675 ,2,14956,212075 ,2,822,22590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306860 ,2,829,45 ,2,14956,212105 ,2,822,23425 ,2,14975,567745 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,303225 ,2,829,45 ,1,0,270565 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,23425 ,2,14975,110 ,2,14976,56380 ,2,14977,56370 ,2,14965,45 ,2,14978,250565 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,38750 ,1,2,613640 ,2,14956,212155 ,2,822,23425 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,303195 ,2,829,45 ,1,0,582535 ,2,14956,215040 ,2,822,51465 ,2,14975,567780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306890 ,2,829,45 ,1,0,168715 ,2,14956,212200 ,2,822,23690 ,2,14975,567850 ,2,14976,23450 ,2,14977,56505 ,2,14965,45 ,2,14978,45 ,2,14979,306945 ,2,829,45 ,2,14956,6245 ,2,822,23690 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414480 ,2,829,45 ,1,0,270555 ,1,1,45 ,1,2,45 ,2,14956,212210 ,2,822,23690 ,2,14975,567845 ,2,14976,23450 ,2,14977,56505 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,38740 ,1,1,45 ,1,2,613640 ,2,14956,212220 ,2,822,23690 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306955 ,2,829,45 ,2,14956,212230 ,2,822,23690 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306965 ,2,829,45 ,1,0,260995 ,2,14956,180305 ,2,822,23690 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,306975 ,2,829,45 ,1,0,168675 ,1,1,168835 ,1,2,168790 ,1,3,168780 ,1,4,168770 ,1,5,168760 ,1,6,168745 ,1,7,168735 ,1,8,168725 ,2,14956,212500 ,2,822,23700 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,306985 ,2,829,45 ,2,14956,166610 ,2,822,23700 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56525 ,2,14979,306995 ,2,829,45 ,1,0,270575 ,1,1,45 ,1,2,45 ,2,14956,10080 ,2,822,23700 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,101715 ,2,14979,383765 ,2,829,45 ,1,0,38785 ,1,1,45 ,1,2,613640 ,2,14956,10080 ,2,822,23700 ,2,14975,567855 ,2,14976,56535 ,2,14977,23120 ,2,14965,45 ,2,14978,231525 ,2,14979,307015 ,2,829,45 ,2,14956,176795 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56610 ,2,14979,307045 ,2,829,45 ,1,0,261005 ,1,1,261025 ,1,2,261015 ,2,14956,4685 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383730 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,168885 ,2,14956,166650 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56630 ,2,14979,307055 ,2,829,45 ,1,0,168895 ,2,14956,8315 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376455 ,2,829,45 ,1,0,168895 ,2,14956,176805 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56640 ,2,14979,307065 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,168905 ,2,14956,5060 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375785 ,2,829,45 ,1,0,582580 ,2,14956,166610 ,2,822,23735 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56650 ,2,14979,307075 ,2,829,45 ,1,0,582585 ,2,14956,10080 ,2,822,23735 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,101845 ,2,14979,383755 ,2,829,45 ,1,0,169055 ,1,1,168905 ,1,2,169020 ,1,3,169010 ,1,4,169000 ,1,5,168990 ,1,6,168980 ,1,7,168970 ,1,8,168960 ,1,9,168950 ,2,14956,10080 ,2,822,23735 ,2,14975,567855 ,2,14976,56535 ,2,14977,23120 ,2,14965,45 ,2,14978,231535 ,2,14979,307085 ,2,829,45 ,2,14956,166985 ,2,822,23735 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,101845 ,2,14979,383380 ,2,829,45 ,1,0,169065 ,1,1,168895 ,2,14956,212310 ,2,822,23735 ,2,14975,567865 ,2,14976,24120 ,2,14977,56710 ,2,14965,45 ,2,14978,45 ,2,14979,377615 ,2,829,45 ,1,0,58030 ,2,14956,179850 ,2,822,23735 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412430 ,2,829,45 ,1,0,168845 ,1,1,169655 ,1,2,169645 ,1,3,169635 ,1,4,169625 ,1,5,169590 ,1,6,169580 ,1,7,169570 ,1,8,169560 ,1,9,169085 ,2,14956,179555 ,2,822,23735 ,2,14975,567865 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,307110 ,2,829,45 ,1,0,169100 ,2,14956,212320 ,2,822,23735 ,2,14975,567855 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,392110 ,2,829,45 ,2,14956,212330 ,2,822,23735 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307120 ,2,829,45 ,1,0,270585 ,1,1,45 ,1,2,45 ,2,14956,212340 ,2,822,23735 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416815 ,2,829,45 ,1,0,38865 ,1,1,169525 ,1,2,169295 ,1,3,169285 ,1,4,169250 ,1,5,169100 ,1,6,261040 ,1,7,169240 ,1,8,169535 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,38855 ,1,14,169120 ,1,15,623955 ,2,14956,212365 ,2,822,23735 ,2,14975,567870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,307130 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,169130 ,2,14956,176795 ,2,822,23745 ,2,14975,567875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56745 ,2,14979,307155 ,2,829,45 ,1,0,169180 ,2,14956,4685 ,2,822,23745 ,2,14975,567875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383735 ,2,829,45 ,1,0,169180 ,2,14956,166650 ,2,822,23745 ,2,14975,567875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56755 ,2,14979,307165 ,2,829,45 ,2,14956,8315 ,2,822,23745 ,2,14975,567875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376460 ,2,829,45 ,1,0,169230 ,1,1,169220 ,1,2,169210 ,1,3,169180 ,1,4,169200 ,1,5,169190 ,2,14956,176805 ,2,822,23745 ,2,14975,567875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56765 ,2,14979,307175 ,2,829,45 ,1,0,62855 ,1,1,62640 ,1,2,62185 ,1,3,62705 ,2,14956,5060 ,2,822,23745 ,2,14975,567875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375790 ,2,829,45 ,1,0,62855 ,1,1,62660 ,1,2,62185 ,1,3,62705 ,2,14956,166610 ,2,822,23745 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,56800 ,2,14979,307185 ,2,829,45 ,2,14956,10080 ,2,822,23745 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102090 ,2,14979,383760 ,2,829,45 ,1,0,169515 ,1,1,169485 ,1,2,169475 ,1,3,169465 ,1,4,169455 ,1,5,169440 ,1,6,169430 ,1,7,169420 ,1,8,169410 ,1,9,169360 ,1,10,169350 ,1,11,169340 ,1,12,169330 ,1,13,169315 ,1,14,169305 ,2,14956,10080 ,2,822,23745 ,2,14975,567855 ,2,14976,56535 ,2,14977,23120 ,2,14965,45 ,2,14978,231545 ,2,14979,307220 ,2,829,45 ,1,0,261040 ,2,14956,166985 ,2,822,23745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,102090 ,2,14979,383390 ,2,829,45 ,1,0,169100 ,1,1,169285 ,1,2,169525 ,1,3,169250 ,1,4,169535 ,1,5,169120 ,1,6,169295 ,1,7,169240 ,2,14956,179850 ,2,822,23745 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382170 ,2,829,45 ,1,0,125610 ,2,14956,179555 ,2,822,23745 ,2,14975,567875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,307230 ,2,829,45 ,1,0,169250 ,1,1,169285 ,2,14956,212340 ,2,822,23745 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416825 ,2,829,45 ,1,0,169655 ,1,1,169645 ,2,14956,170435 ,2,822,23745 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258150 ,2,14979,412905 ,2,829,45 ,2,14956,169490 ,2,822,23745 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258185 ,2,14979,412610 ,2,829,45 ,1,0,270595 ,1,1,45 ,1,2,45 ,2,14956,179850 ,2,822,23755 ,2,14975,567865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382175 ,2,829,45 ,1,0,45 ,1,1,38875 ,1,2,613640 ,2,14956,4685 ,2,822,23755 ,2,14975,567925 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383740 ,2,829,45 ,2,14956,212340 ,2,822,23755 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258195 ,2,14979,416830 ,2,829,45 ,1,0,261060 ,2,14956,166985 ,2,822,23700 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,101715 ,2,14979,383395 ,2,829,45 ,1,0,169675 ,1,1,169695 ,2,14956,6245 ,2,822,23700 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389025 ,2,829,45 ,2,14956,13210 ,2,822,23700 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397335 ,2,829,45 ,1,0,270605 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,23700 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391810 ,2,829,45 ,1,0,169865 ,1,1,45 ,1,2,169855 ,1,3,45 ,1,4,45 ,1,5,169845 ,1,6,169800 ,1,7,169790 ,1,8,45 ,1,9,45 ,1,10,169780 ,1,11,179855 ,1,12,169705 ,1,13,169770 ,1,14,169760 ,1,15,169750 ,1,16,169740 ,1,17,169730 ,1,18,618545 ,2,14956,179555 ,2,822,23700 ,2,14975,567855 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,307250 ,2,829,45 ,1,0,179855 ,1,1,169770 ,1,2,169750 ,1,3,169800 ,1,4,169760 ,1,5,169865 ,1,6,169855 ,1,7,169780 ,1,8,169790 ,1,9,169740 ,1,10,169845 ,1,11,169730 ,1,12,169705 ,2,14956,212320 ,2,822,23700 ,2,14975,567855 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,392115 ,2,829,45 ,1,0,169965 ,1,1,169875 ,2,14956,212440 ,2,822,23700 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307265 ,2,829,45 ,2,14956,212480 ,2,822,23700 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307275 ,2,829,45 ,1,0,270630 ,1,1,45 ,1,2,45 ,2,14956,212510 ,2,822,23690 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307285 ,2,829,45 ,1,0,38940 ,1,1,45 ,1,2,613640 ,2,14956,212520 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,582675 ,2,14956,2855 ,2,822,23690 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391895 ,2,829,45 ,1,0,261070 ,1,1,261100 ,2,14956,212530 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398660 ,2,829,45 ,1,0,169875 ,1,1,169955 ,1,2,169915 ,1,3,169905 ,2,14956,212540 ,2,822,23690 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307295 ,2,829,45 ,2,14956,212550 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,270640 ,1,1,45 ,1,2,45 ,2,14956,4685 ,2,822,23690 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383885 ,2,829,45 ,1,0,38960 ,1,1,45 ,1,2,613640 ,2,14956,212585 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,582675 ,2,14956,212595 ,2,822,23690 ,2,14975,567845 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,261110 ,2,14956,212605 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,169965 ,2,14956,212615 ,2,822,23690 ,2,14975,561515 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,307320 ,2,829,45 ,1,0,172695 ,1,1,172685 ,1,2,169985 ,2,14956,212630 ,2,822,23690 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307330 ,2,829,45 ,2,14956,212640 ,2,822,23690 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307340 ,2,829,45 ,1,0,270650 ,1,1,45 ,1,2,45 ,2,14956,212310 ,2,822,23690 ,2,14975,567850 ,2,14976,24120 ,2,14977,56950 ,2,14965,45 ,2,14978,45 ,2,14979,377640 ,2,829,45 ,1,0,45 ,1,1,38980 ,1,2,613640 ,2,14956,212720 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,582690 ,2,14956,13210 ,2,822,23690 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397445 ,2,829,45 ,1,0,261120 ,2,14956,212730 ,2,822,23690 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307365 ,2,829,45 ,1,0,169985 ,1,1,171530 ,1,2,170015 ,2,14956,212745 ,2,822,23690 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307375 ,2,829,45 ,1,0,582720 ,2,14956,212755 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,171520 ,1,1,171510 ,1,2,171500 ,1,3,171490 ,1,4,170025 ,2,14956,212765 ,2,822,23690 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307350 ,2,829,45 ,1,0,176795 ,1,1,45 ,1,2,170520 ,1,3,236135 ,1,4,45 ,1,5,170270 ,1,6,166650 ,1,7,45 ,1,8,170225 ,1,9,279675 ,1,10,45 ,1,11,170100 ,1,12,279530 ,1,13,45 ,1,14,170080 ,1,15,176805 ,1,16,45 ,1,17,170060 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,2,14956,179555 ,2,822,23690 ,2,14975,567850 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,307385 ,2,829,45 ,1,0,170070 ,2,14956,212775 ,2,822,23690 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,170090 ,2,14956,212810 ,2,822,23690 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307395 ,2,829,45 ,1,0,170180 ,1,1,170150 ,1,2,81220 ,1,3,170120 ,2,14956,2855 ,2,822,23770 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415385 ,2,829,45 ,1,0,170120 ,2,14956,212925 ,2,822,23780 ,2,14975,599870 ,2,14976,24020 ,2,14977,57050 ,2,14965,45 ,2,14978,45 ,2,14979,307440 ,2,829,45 ,1,0,170150 ,1,1,170180 ,1,2,81220 ,1,3,170120 ,2,14956,212935 ,2,822,23780 ,2,14975,599870 ,2,14976,24020 ,2,14977,57060 ,2,14965,45 ,2,14978,45 ,2,14979,307450 ,2,829,45 ,1,0,170215 ,2,14956,212945 ,2,822,23780 ,2,14975,599870 ,2,14976,24020 ,2,14977,57050 ,2,14965,45 ,2,14978,45 ,2,14979,307460 ,2,829,45 ,1,0,170260 ,2,14956,212955 ,2,822,23780 ,2,14975,567935 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,170310 ,2,14956,207085 ,2,822,51640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412080 ,2,829,45 ,1,0,279715 ,1,1,45 ,2,14956,212985 ,2,822,51640 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258205 ,2,14979,398770 ,2,829,45 ,1,0,12445 ,1,1,3825 ,1,2,279725 ,2,14956,209590 ,2,822,51640 ,2,14975,609395 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258205 ,2,14979,412760 ,2,829,45 ,1,0,170410 ,2,14956,213035 ,2,822,51640 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258215 ,2,14979,398730 ,2,829,45 ,1,0,170480 ,1,1,170460 ,1,2,170450 ,2,14956,209580 ,2,822,51640 ,2,14975,609395 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258215 ,2,14979,412855 ,2,829,45 ,1,0,170510 ,2,14956,2855 ,2,822,23835 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391470 ,2,829,45 ,1,0,170530 ,2,14956,205435 ,2,822,23835 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388335 ,2,829,45 ,1,0,582715 ,2,14956,2855 ,2,822,23845 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391955 ,2,829,45 ,1,0,261150 ,1,1,261130 ,1,2,261325 ,1,3,261140 ,1,4,261315 ,1,5,261160 ,1,6,261275 ,1,7,261265 ,1,8,261255 ,1,9,261245 ,1,10,261210 ,1,11,261230 ,1,12,261200 ,1,13,261170 ,1,14,261220 ,2,14956,6245 ,2,822,23855 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414485 ,2,829,45 ,1,0,618860 ,1,1,615295 ,1,2,65 ,1,3,170180 ,1,4,170310 ,1,5,65 ,1,6,171415 ,1,7,171405 ,1,8,171395 ,1,9,65 ,1,10,170035 ,1,11,65 ,1,12,171385 ,1,13,65 ,1,14,171375 ,1,15,65 ,1,16,171345 ,1,17,65 ,1,18,171335 ,1,19,170290 ,1,20,171325 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,171315 ,1,26,65 ,1,27,65 ,1,28,170150 ,1,29,65 ,1,30,170205 ,1,31,65 ,1,32,171300 ,1,33,171290 ,1,34,65 ,1,35,171280 ,1,36,65 ,1,37,171270 ,1,38,171230 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,171220 ,1,43,170070 ,1,44,171210 ,1,45,170280 ,1,46,65 ,1,47,171200 ,1,48,65 ,1,49,171190 ,1,50,170410 ,1,51,65 ,1,52,65 ,1,53,171425 ,1,54,171180 ,1,55,170510 ,1,56,65 ,1,57,170260 ,1,58,65 ,1,59,65 ,1,60,171170 ,1,61,65 ,1,62,65 ,1,63,171160 ,1,64,171105 ,1,65,65 ,1,66,171095 ,1,67,170450 ,1,68,170110 ,1,69,65 ,1,70,65 ,1,71,65 ,1,72,65 ,1,73,65 ,1,74,170460 ,1,75,171445 ,1,76,170420 ,1,77,170400 ,1,78,171085 ,1,79,171075 ,1,80,65 ,1,81,171060 ,1,82,170390 ,1,83,65 ,1,84,171050 ,1,85,171040 ,1,86,170500 ,1,87,170490 ,1,88,65 ,1,89,65 ,1,90,171030 ,1,91,170120 ,1,92,171005 ,1,93,170090 ,1,94,170430 ,1,95,170995 ,1,96,170170 ,1,97,170985 ,1,98,65 ,1,99,170975 ,1,100,170340 ,1,101,170960 ,1,102,65 ,1,103,170530 ,1,104,170440 ,1,105,170950 ,1,106,65 ,1,107,170480 ,1,108,170940 ,1,109,170930 ,1,110,65 ,1,111,65 ,1,112,65 ,1,113,170630 ,1,114,65 ,1,115,65 ,1,116,170215 ,1,117,170620 ,1,118,65 ,1,119,65 ,1,120,65 ,1,121,170605 ,1,122,170595 ,1,123,65 ,1,124,171435 ,1,125,65 ,1,126,65 ,1,127,65 ,1,128,170585 ,1,129,65 ,2,14956,13210 ,2,822,23855 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397475 ,2,829,45 ,1,0,170120 ,1,1,57470 ,1,2,70280 ,2,14956,213145 ,2,822,23660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307510 ,2,829,45 ,1,0,582755 ,2,14956,213175 ,2,822,23660 ,2,14975,561460 ,2,14976,23450 ,2,14977,57195 ,2,14965,45 ,2,14978,45 ,2,14979,307540 ,2,829,45 ,2,14956,213195 ,2,822,23660 ,2,14975,561460 ,2,14976,23450 ,2,14977,57195 ,2,14965,45 ,2,14978,45 ,2,14979,307550 ,2,829,45 ,1,0,170750 ,1,1,170740 ,1,2,170725 ,1,3,170640 ,1,4,170715 ,1,5,170705 ,1,6,170760 ,1,7,170695 ,1,8,170650 ,2,14956,206975 ,2,822,23660 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,102890 ,2,14979,372515 ,2,829,45 ,1,0,280355 ,1,1,45 ,2,14956,206975 ,2,822,23660 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,231555 ,2,14979,307560 ,2,829,45 ,1,0,582755 ,2,14956,207015 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,102890 ,2,14979,372730 ,2,829,45 ,1,0,170855 ,1,1,170865 ,1,2,170845 ,1,3,170835 ,1,4,170825 ,1,5,170815 ,1,6,170805 ,2,14956,213205 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307570 ,2,829,45 ,1,0,170180 ,1,1,81220 ,2,14956,213215 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,102930 ,2,14979,2415 ,2,829,45 ,1,0,81220 ,1,1,170120 ,2,14956,211320 ,2,822,23660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231565 ,2,14979,307590 ,2,829,45 ,1,0,170180 ,1,1,170120 ,1,2,57710 ,1,3,170875 ,1,4,81220 ,1,5,170650 ,1,6,170695 ,1,7,70280 ,2,14956,213225 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102995 ,2,14979,2415 ,2,829,45 ,1,0,170180 ,2,14956,213225 ,2,822,23660 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231575 ,2,14979,307600 ,2,829,45 ,1,0,171375 ,1,1,58625 ,2,14956,213280 ,2,822,23660 ,2,14975,599940 ,2,14976,23450 ,2,14977,57285 ,2,14965,45 ,2,14978,45 ,2,14979,307610 ,2,829,45 ,1,0,170180 ,1,1,171210 ,1,2,170460 ,1,3,170480 ,2,14956,213305 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,103030 ,2,14979,361620 ,2,829,45 ,1,0,170180 ,1,1,170120 ,2,14956,213290 ,2,822,23660 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231585 ,2,14979,307645 ,2,829,45 ,1,0,170180 ,1,1,170120 ,1,2,171160 ,1,3,170150 ,1,4,170985 ,1,5,170310 ,1,6,170480 ,1,7,171210 ,1,8,170460 ,1,9,170450 ,1,10,171375 ,1,11,171425 ,1,12,171230 ,1,13,171005 ,1,14,171190 ,1,15,171030 ,1,16,170035 ,1,17,170280 ,1,18,171445 ,1,19,171435 ,1,20,170170 ,1,21,171315 ,1,22,171170 ,1,23,170410 ,1,24,170205 ,1,25,171405 ,1,26,170420 ,1,27,171075 ,1,28,170430 ,1,29,170110 ,1,30,170215 ,1,31,170585 ,1,32,170960 ,1,33,171290 ,1,34,170400 ,1,35,170995 ,1,36,170390 ,1,37,171180 ,1,38,171270 ,1,39,171300 ,1,40,170605 ,1,41,171345 ,1,42,170090 ,1,43,171220 ,1,44,170260 ,1,45,170070 ,1,46,170290 ,1,47,171085 ,1,48,170530 ,1,49,170940 ,1,50,171105 ,1,51,170340 ,1,52,171050 ,1,53,170490 ,1,54,170440 ,1,55,170930 ,1,56,171200 ,1,57,171325 ,1,58,171060 ,1,59,171095 ,1,60,171415 ,1,61,171040 ,1,62,171335 ,1,63,170510 ,1,64,170975 ,1,65,171280 ,1,66,171385 ,1,67,170630 ,1,68,170620 ,1,69,171395 ,1,70,170595 ,1,71,170950 ,1,72,170500 ,2,14956,213315 ,2,822,23660 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370085 ,2,829,45 ,1,0,81220 ,2,14956,213325 ,2,822,23660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411445 ,2,829,45 ,1,0,170180 ,1,1,170120 ,1,2,171160 ,1,3,114365 ,2,14956,210935 ,2,822,23660 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371455 ,2,829,45 ,1,0,171160 ,2,14956,213290 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,103030 ,2,14979,2415 ,2,829,45 ,2,14956,211235 ,2,822,23660 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,372170 ,2,829,45 ,1,0,270680 ,1,1,45 ,1,2,45 ,2,14956,213335 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307655 ,2,829,45 ,1,0,45 ,1,1,39095 ,1,2,613640 ,2,14956,211035 ,2,822,23660 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,103125 ,2,14979,372285 ,2,829,45 ,1,0,582690 ,2,14956,211035 ,2,822,23660 ,2,14975,110 ,2,14976,55700 ,2,14977,23360 ,2,14965,45 ,2,14978,231595 ,2,14979,307665 ,2,829,45 ,1,0,171610 ,1,1,171600 ,1,2,171550 ,2,14956,213365 ,2,822,23660 ,2,14975,599940 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,307580 ,2,829,45 ,1,0,171560 ,2,14956,213375 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,102995 ,2,14979,362195 ,2,829,45 ,2,14956,213385 ,2,822,23660 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364180 ,2,829,45 ,1,0,270690 ,1,1,45 ,1,2,45 ,2,14956,211300 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,103125 ,2,14979,376640 ,2,829,45 ,1,0,45 ,1,1,39085 ,1,2,613640 ,2,14956,213395 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,103215 ,2,14979,2415 ,2,829,45 ,1,0,582690 ,2,14956,213395 ,2,822,23660 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231610 ,2,14979,307675 ,2,829,45 ,1,0,261355 ,2,14956,213415 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307685 ,2,829,45 ,1,0,172685 ,1,1,171540 ,1,2,171635 ,1,3,171590 ,1,4,171560 ,2,14956,213425 ,2,822,23660 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411075 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,171700 ,1,3,171975 ,1,4,45 ,1,5,171665 ,1,6,166650 ,1,7,45 ,1,8,171655 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,213435 ,2,822,23660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364385 ,2,829,45 ,1,0,559190 ,2,14956,211320 ,2,822,23660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,102930 ,2,14979,371260 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,172080 ,1,4,172070 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,172060 ,1,9,172050 ,1,10,172040 ,1,11,65 ,1,12,172030 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,171990 ,1,19,171980 ,1,20,65 ,1,21,171970 ,1,22,171960 ,1,23,171645 ,1,24,65 ,1,25,65 ,1,26,171945 ,1,27,65 ,1,28,171935 ,1,29,65 ,1,30,65 ,1,31,171925 ,1,32,171915 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,171665 ,1,37,171700 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,171880 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,171870 ,1,46,65 ,1,47,171860 ,1,48,171850 ,1,49,65 ,1,50,65 ,1,51,171820 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,171810 ,1,57,171655 ,1,58,171800 ,1,59,171770 ,1,60,171760 ,1,61,171750 ,1,62,171740 ,1,63,171730 ,1,64,65 ,1,65,171720 ,2,14956,213445 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307635 ,2,829,45 ,1,0,171665 ,1,1,171880 ,1,2,171655 ,1,3,171945 ,1,4,171800 ,1,5,172060 ,1,6,171760 ,1,7,171870 ,1,8,172050 ,1,9,171915 ,1,10,171810 ,1,11,171980 ,1,12,171960 ,1,13,171990 ,1,14,172040 ,1,15,171750 ,1,16,171970 ,1,17,171720 ,1,18,171700 ,1,19,171860 ,1,20,172070 ,1,21,171850 ,1,22,171770 ,1,23,171730 ,1,24,172030 ,1,25,171925 ,1,26,171935 ,1,27,171645 ,1,28,172080 ,1,29,171820 ,1,30,171740 ,2,14956,213485 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,103310 ,2,14979,361860 ,2,829,45 ,2,14956,213475 ,2,822,23660 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231620 ,2,14979,307695 ,2,829,45 ,1,0,270700 ,1,1,45 ,1,2,45 ,2,14956,213495 ,2,822,23660 ,2,14975,567810 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,39160 ,1,1,45 ,1,2,613640 ,2,14956,213505 ,2,822,23660 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,103215 ,2,14979,361185 ,2,829,45 ,1,0,582690 ,2,14956,213520 ,2,822,23660 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411370 ,2,829,45 ,1,0,261365 ,2,14956,213530 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411440 ,2,829,45 ,1,0,172695 ,1,1,172155 ,1,2,172145 ,1,3,172135 ,1,4,172125 ,1,5,172100 ,2,14956,213475 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,103310 ,2,14979,2415 ,2,829,45 ,2,14956,213540 ,2,822,23660 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,307705 ,2,829,45 ,1,0,270740 ,1,1,45 ,1,2,45 ,2,14956,211385 ,2,822,23660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366160 ,2,829,45 ,1,0,39195 ,1,1,45 ,1,2,613640 ,2,14956,211080 ,2,822,51650 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411830 ,2,829,45 ,1,0,582895 ,2,14956,207140 ,2,822,51650 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373510 ,2,829,45 ,1,0,172165 ,2,14956,207085 ,2,822,51650 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378760 ,2,829,45 ,2,14956,207130 ,2,822,51650 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374060 ,2,829,45 ,1,0,270750 ,1,1,45 ,1,2,45 ,2,14956,213580 ,2,822,51650 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383645 ,2,829,45 ,1,0,261505 ,1,1,261475 ,1,2,261465 ,1,3,261455 ,1,4,261445 ,1,5,261435 ,1,6,261425 ,1,7,261415 ,1,8,261405 ,1,9,261385 ,1,10,261375 ,2,14956,213590 ,2,822,51650 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386550 ,2,829,45 ,1,0,172520 ,1,1,172510 ,1,2,172500 ,1,3,172485 ,1,4,172475 ,1,5,172465 ,1,6,172455 ,1,7,172420 ,1,8,172410 ,1,9,172400 ,1,10,172390 ,1,11,172380 ,1,12,172370 ,1,13,172360 ,1,14,172350 ,2,14956,213600 ,2,822,23650 ,2,14975,567795 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,172520 ,2,14956,2855 ,2,822,23875 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392050 ,2,829,45 ,1,0,45 ,1,1,261475 ,1,2,261415 ,1,3,261385 ,1,4,39180 ,1,5,45 ,1,6,45 ,1,7,261375 ,1,8,172475 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,172420 ,1,13,172360 ,1,14,45 ,1,15,45 ,1,16,172410 ,1,17,172520 ,1,18,261425 ,1,19,172400 ,1,20,172500 ,1,21,261405 ,1,22,172510 ,1,23,261505 ,1,24,172455 ,1,25,261465 ,1,26,172465 ,1,27,261435 ,1,28,172350 ,1,29,172370 ,1,30,45 ,1,31,172390 ,1,32,261455 ,1,33,172380 ,1,34,261445 ,1,35,172485 ,1,36,45 ,1,37,617450 ,2,14956,213625 ,2,822,23875 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307755 ,2,829,45 ,2,14956,210935 ,2,822,23640 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371515 ,2,829,45 ,1,0,261515 ,2,14956,213690 ,2,822,23640 ,2,14975,567405 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307765 ,2,829,45 ,1,0,172675 ,1,1,172635 ,1,2,172625 ,1,3,172615 ,1,4,172605 ,1,5,172595 ,1,6,172585 ,1,7,172575 ,1,8,172565 ,2,14956,211025 ,2,822,23640 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378210 ,2,829,45 ,1,0,169295 ,1,1,62660 ,1,2,62705 ,2,14956,207015 ,2,822,23640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,103555 ,2,14979,372750 ,2,829,45 ,1,0,169240 ,1,1,62640 ,1,2,62705 ,2,14956,206975 ,2,822,23640 ,2,14975,599870 ,2,14976,53260 ,2,14977,57245 ,2,14965,45 ,2,14978,231630 ,2,14979,307775 ,2,829,45 ,1,0,172420 ,1,1,172410 ,1,2,172400 ,1,3,172390 ,1,4,172510 ,2,14956,206975 ,2,822,23640 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,103555 ,2,14979,372545 ,2,829,45 ,1,0,172485 ,1,1,172475 ,1,2,172465 ,1,3,172455 ,1,4,172520 ,2,14956,213710 ,2,822,23640 ,2,14975,567785 ,2,14976,24020 ,2,14977,57435 ,2,14965,45 ,2,14978,45 ,2,14979,307785 ,2,829,45 ,1,0,172155 ,2,14956,214090 ,2,822,23640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307795 ,2,829,45 ,1,0,172770 ,1,1,172705 ,2,14956,213925 ,2,822,23885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307805 ,2,829,45 ,2,14956,213720 ,2,822,23895 ,2,14975,561435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307845 ,2,829,45 ,1,0,270770 ,1,1,45 ,1,2,45 ,2,14956,13210 ,2,822,23945 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397660 ,2,829,45 ,1,0,39275 ,1,1,45 ,1,2,613640 ,2,14956,6245 ,2,822,23945 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389100 ,2,829,45 ,1,0,582935 ,2,14956,2855 ,2,822,23945 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392220 ,2,829,45 ,2,14956,213745 ,2,822,23945 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307865 ,2,829,45 ,1,0,270760 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,23955 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392215 ,2,829,45 ,1,0,39225 ,1,1,45 ,1,2,613640 ,2,14956,213865 ,2,822,23885 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307890 ,2,829,45 ,2,14956,213875 ,2,822,23885 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307900 ,2,829,45 ,1,0,261525 ,2,14956,214080 ,2,822,23985 ,2,14975,568045 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,307920 ,2,829,45 ,1,0,172705 ,1,1,172755 ,1,2,172745 ,1,3,172735 ,2,14956,214080 ,2,822,23975 ,2,14975,568045 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,307940 ,2,829,45 ,2,14956,2855 ,2,822,23965 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415135 ,2,829,45 ,1,0,270780 ,1,1,45 ,1,2,45 ,2,14956,214960 ,2,822,23640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,103810 ,2,14979,398190 ,2,829,45 ,1,0,39305 ,1,1,45 ,1,2,613640 ,2,14956,214950 ,2,822,23640 ,2,14975,568055 ,2,14976,34015 ,2,14977,23120 ,2,14965,45 ,2,14978,231640 ,2,14979,307950 ,2,829,45 ,2,14956,6245 ,2,822,24075 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388685 ,2,829,45 ,1,0,261535 ,2,14956,13210 ,2,822,24075 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396500 ,2,829,45 ,1,0,172770 ,1,1,172815 ,1,2,172800 ,1,3,172790 ,2,14956,214175 ,2,822,24075 ,2,14975,568130 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395415 ,2,829,45 ,1,0,172825 ,2,14956,214185 ,2,822,24075 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395400 ,2,829,45 ,2,14956,184135 ,2,822,24085 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412360 ,2,829,45 ,1,0,270790 ,1,1,45 ,1,2,45 ,2,14956,214205 ,2,822,24085 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387350 ,2,829,45 ,1,0,45 ,1,1,39330 ,1,2,613640 ,2,14956,214260 ,2,822,24105 ,2,14975,568125 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,307995 ,2,829,45 ,1,0,582950 ,2,14956,13175 ,2,822,24115 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394165 ,2,829,45 ,1,0,261550 ,2,14956,168920 ,2,822,24115 ,2,14975,609410 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416010 ,2,829,45 ,1,0,172825 ,1,1,172940 ,1,2,172920 ,1,3,172910 ,1,4,172900 ,1,5,172890 ,1,6,172845 ,2,14956,214185 ,2,822,24105 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395380 ,2,829,45 ,1,0,172940 ,2,14956,214175 ,2,822,24105 ,2,14975,568160 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,173255 ,1,1,173160 ,1,2,172950 ,2,14956,2855 ,2,822,24125 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391265 ,2,829,45 ,2,14956,214500 ,2,822,51660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308015 ,2,829,45 ,1,0,270810 ,1,1,45 ,1,2,45 ,2,14956,214175 ,2,822,24160 ,2,14975,568160 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,39380 ,1,1,45 ,1,2,613640 ,2,14956,2855 ,2,822,24180 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415260 ,2,829,45 ,1,0,582980 ,2,14956,214185 ,2,822,24190 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395375 ,2,829,45 ,2,14956,179850 ,2,822,24190 ,2,14975,568125 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381135 ,2,829,45 ,1,0,270800 ,1,1,45 ,1,2,45 ,2,14956,214410 ,2,822,24205 ,2,14975,609450 ,2,14976,23130 ,2,14977,23120 ,2,14965,548115 ,2,14978,45 ,2,14979,308055 ,2,829,45 ,1,0,45 ,1,1,39350 ,1,2,613640 ,2,14956,214490 ,2,822,24300 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,214510 ,2,822,51660 ,2,14975,568125 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308045 ,2,829,45 ,1,0,261560 ,2,14956,214520 ,2,822,51660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308065 ,2,829,45 ,1,0,172950 ,1,1,173150 ,1,2,173020 ,1,3,172970 ,2,14956,214540 ,2,822,24015 ,2,14975,568095 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,308075 ,2,829,45 ,1,0,173030 ,2,14956,214530 ,2,822,24280 ,2,14975,568230 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,308090 ,2,829,45 ,2,14956,2855 ,2,822,24215 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392020 ,2,829,45 ,1,0,270835 ,1,1,45 ,1,2,45 ,2,14956,214490 ,2,822,24215 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308110 ,2,829,45 ,1,0,45 ,1,1,39410 ,1,2,613640 ,2,14956,214585 ,2,822,24215 ,2,14975,566370 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308120 ,2,829,45 ,2,14956,214595 ,2,822,24215 ,2,14975,568240 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308160 ,2,829,45 ,1,0,261570 ,2,14956,214605 ,2,822,24215 ,2,14975,568235 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,173130 ,1,1,173140 ,1,2,173030 ,1,3,173090 ,1,4,173080 ,1,5,173070 ,1,6,173060 ,1,7,173050 ,2,14956,214520 ,2,822,24225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308170 ,2,829,45 ,2,14956,214625 ,2,822,24235 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308180 ,2,829,45 ,1,0,270845 ,1,1,45 ,1,2,45 ,2,14956,214635 ,2,822,24225 ,2,14975,568245 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,39435 ,1,1,45 ,1,2,613640 ,2,14956,214705 ,2,822,24280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,104285 ,2,14979,398090 ,2,829,45 ,2,14956,214695 ,2,822,24280 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,231655 ,2,14979,308190 ,2,829,45 ,1,0,261580 ,2,14956,214715 ,2,822,24280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308230 ,2,829,45 ,1,0,173160 ,1,1,173245 ,1,2,173200 ,1,3,173190 ,1,4,173180 ,2,14956,214695 ,2,822,24280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,104285 ,2,14979,308200 ,2,829,45 ,2,14956,214725 ,2,822,24280 ,2,14975,568240 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308265 ,2,829,45 ,1,0,270855 ,1,1,45 ,1,2,45 ,2,14956,214745 ,2,822,24280 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308220 ,2,829,45 ,1,0,45 ,1,1,39455 ,1,2,613640 ,2,14956,214755 ,2,822,24280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409010 ,2,829,45 ,2,14956,214765 ,2,822,24280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308210 ,2,829,45 ,1,0,261610 ,1,1,261620 ,2,14956,214775 ,2,822,24280 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308275 ,2,829,45 ,1,0,173255 ,1,1,173305 ,1,2,173295 ,1,3,173285 ,2,14956,214805 ,2,822,24280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308285 ,2,829,45 ,1,0,173355 ,1,1,173315 ,2,14956,214795 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,184135 ,2,822,24280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380990 ,2,829,45 ,1,0,270865 ,1,1,45 ,1,2,45 ,2,14956,214825 ,2,822,24290 ,2,14975,568295 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,39490 ,1,1,45 ,1,2,613640 ,2,14956,214905 ,2,822,23995 ,2,14975,568320 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,583050 ,2,14956,4490 ,2,822,23995 ,2,14975,110 ,2,14976,58590 ,2,14977,58575 ,2,14965,45 ,2,14978,250605 ,2,14979,2415 ,2,829,45 ,1,0,261630 ,2,14956,214915 ,2,822,23995 ,2,14975,568325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,173315 ,2,14956,4490 ,2,822,23995 ,2,14975,110 ,2,14976,58610 ,2,14977,58600 ,2,14965,45 ,2,14978,250615 ,2,14979,2415 ,2,829,45 ,2,14956,214925 ,2,822,23995 ,2,14975,568350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,270880 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,23995 ,2,14975,110 ,2,14976,58630 ,2,14977,58620 ,2,14965,45 ,2,14978,250625 ,2,14979,2415 ,2,829,45 ,1,0,39510 ,1,1,45 ,1,2,613640 ,2,14956,214970 ,2,822,23640 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308325 ,2,829,45 ,1,0,583050 ,2,14956,214950 ,2,822,23640 ,2,14975,568055 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,103810 ,2,14979,307960 ,2,829,45 ,1,0,261640 ,2,14956,211220 ,2,822,23640 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411435 ,2,829,45 ,1,0,173355 ,2,14956,214980 ,2,822,23640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308335 ,2,829,45 ,1,0,173395 ,1,1,173375 ,2,14956,213520 ,2,822,23640 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370180 ,2,829,45 ,2,14956,213315 ,2,822,23640 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370105 ,2,829,45 ,1,0,270900 ,1,1,45 ,1,2,45 ,2,14956,213325 ,2,822,23640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371230 ,2,829,45 ,1,0,39540 ,1,1,45 ,1,2,613640 ,2,14956,215020 ,2,822,23640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308360 ,2,829,45 ,1,0,583085 ,2,14956,215065 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308370 ,2,829,45 ,2,14956,215050 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308380 ,2,829,45 ,1,0,270890 ,1,1,45 ,1,2,45 ,2,14956,267875 ,2,822,21455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,104660 ,2,14979,2415 ,2,829,45 ,1,0,39530 ,1,1,45 ,1,2,613640 ,2,14956,267865 ,2,822,51465 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,235590 ,2,14979,308410 ,2,829,45 ,2,14956,215075 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308440 ,2,829,45 ,1,0,261650 ,2,14956,267790 ,2,822,24310 ,2,14975,562575 ,2,14976,24020 ,2,14977,58690 ,2,14965,45 ,2,14978,45 ,2,14979,308490 ,2,829,45 ,1,0,173375 ,2,14956,2855 ,2,822,24330 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391390 ,2,829,45 ,2,14956,6245 ,2,822,24330 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388880 ,2,829,45 ,1,0,270910 ,1,1,45 ,1,2,45 ,2,14956,13210 ,2,822,24330 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396780 ,2,829,45 ,1,0,39610 ,1,1,45 ,1,2,613640 ,2,14956,173945 ,2,822,24330 ,2,14975,600040 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258255 ,2,14979,410735 ,2,829,45 ,2,14956,215120 ,2,822,51670 ,2,14975,568395 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258265 ,2,14979,308510 ,2,829,45 ,1,0,261660 ,2,14956,215140 ,2,822,24350 ,2,14975,609460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308540 ,2,829,45 ,1,0,173395 ,1,1,173415 ,2,14956,215150 ,2,822,24350 ,2,14975,568430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308560 ,2,829,45 ,1,0,177365 ,1,1,177275 ,1,2,177205 ,1,3,177120 ,1,4,177050 ,1,5,176960 ,1,6,176890 ,1,7,176810 ,1,8,176715 ,1,9,176625 ,1,10,176550 ,1,11,176475 ,1,12,176385 ,1,13,176280 ,1,14,176215 ,1,15,176135 ,1,16,176055 ,1,17,175960 ,1,18,175895 ,1,19,175800 ,1,20,175715 ,1,21,175635 ,1,22,175575 ,1,23,175505 ,1,24,175405 ,1,25,175335 ,1,26,175260 ,1,27,175175 ,1,28,175080 ,1,29,174990 ,1,30,174930 ,1,31,174835 ,1,32,174765 ,1,33,174645 ,1,34,174575 ,1,35,174490 ,1,36,174400 ,1,37,174325 ,1,38,174255 ,1,39,174155 ,1,40,173460 ,2,14956,215165 ,2,822,24350 ,2,14975,568420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308550 ,2,829,45 ,2,14956,215175 ,2,822,24350 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308590 ,2,829,45 ,1,0,270975 ,1,1,45 ,1,2,45 ,2,14956,215185 ,2,822,24350 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308600 ,2,829,45 ,1,0,45 ,1,1,39645 ,1,2,39850 ,1,3,39840 ,1,4,39750 ,1,5,45 ,1,6,39665 ,1,7,613975 ,2,14956,215235 ,2,822,24350 ,2,14975,568435 ,2,14976,23130 ,2,14977,58870 ,2,14965,45 ,2,14978,45 ,2,14979,308610 ,2,829,45 ,1,0,583145 ,2,14956,215245 ,2,822,24350 ,2,14975,568395 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258265 ,2,14979,2415 ,2,829,45 ,2,14956,215265 ,2,822,51680 ,2,14975,568455 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258300 ,2,14979,308640 ,2,829,45 ,1,0,270945 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,24360 ,2,14975,568460 ,2,14976,58910 ,2,14977,58900 ,2,14965,45 ,2,14978,250635 ,2,14979,2415 ,2,829,45 ,1,0,39735 ,1,1,45 ,1,2,45 ,1,3,39675 ,1,4,39725 ,1,5,39715 ,1,6,614045 ,2,14956,215285 ,2,822,24360 ,2,14975,567805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379235 ,2,829,45 ,2,14956,215295 ,2,822,24360 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,104935 ,2,14979,308660 ,2,829,45 ,2,14956,215295 ,2,822,24360 ,2,14975,568460 ,2,14976,58950 ,2,14977,23120 ,2,14965,45 ,2,14978,231665 ,2,14979,308710 ,2,829,45 ,2,14956,215305 ,2,822,24360 ,2,14975,568445 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,167780 ,2,822,24360 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258310 ,2,14979,410160 ,2,829,45 ,1,0,173480 ,2,14956,215330 ,2,822,24360 ,2,14975,568455 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258300 ,2,14979,2415 ,2,829,45 ,1,0,583180 ,2,14956,215350 ,2,822,24405 ,2,14975,568485 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386560 ,2,829,45 ,1,0,174005 ,1,1,173565 ,1,2,173490 ,2,14956,215385 ,2,822,24415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386760 ,2,829,45 ,1,0,170025 ,2,14956,215395 ,2,822,24415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386470 ,2,829,45 ,2,14956,215405 ,2,822,24415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387240 ,2,829,45 ,1,0,270955 ,1,1,45 ,1,2,45 ,2,14956,215415 ,2,822,24415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308720 ,2,829,45 ,1,0,173500 ,1,1,45 ,1,2,45 ,1,3,173530 ,1,4,261680 ,1,5,173510 ,1,6,614045 ,2,14956,215445 ,2,822,24415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386110 ,2,829,45 ,1,0,173530 ,2,14956,215455 ,2,822,24415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374735 ,2,829,45 ,1,0,261680 ,2,14956,215565 ,2,822,24415 ,2,14975,568505 ,2,14976,24020 ,2,14977,59020 ,2,14965,45 ,2,14978,45 ,2,14979,308730 ,2,829,45 ,1,0,173530 ,1,1,173500 ,1,2,173510 ,2,14956,215465 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308750 ,2,829,45 ,1,0,166650 ,1,1,45 ,1,2,173595 ,1,3,176805 ,1,4,45 ,1,5,173585 ,2,14956,215475 ,2,822,37260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308760 ,2,829,45 ,2,14956,215495 ,2,822,24415 ,2,14975,568420 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,231675 ,2,14979,2415 ,2,829,45 ,1,0,270965 ,1,1,45 ,1,2,45 ,2,14956,215575 ,2,822,24415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386085 ,2,829,45 ,1,0,173865 ,1,1,173855 ,1,2,173625 ,1,3,173615 ,2,14956,215585 ,2,822,24415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386960 ,2,829,45 ,1,0,57710 ,1,1,173855 ,1,2,171510 ,1,3,170120 ,1,4,171520 ,1,5,170180 ,1,6,170025 ,2,14956,215595 ,2,822,24415 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386750 ,2,829,45 ,1,0,166650 ,1,1,45 ,1,2,173700 ,1,3,176805 ,1,4,45 ,1,5,173690 ,1,6,176795 ,1,7,45 ,1,8,173680 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,215610 ,2,822,24415 ,2,14975,568510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,215620 ,2,822,24415 ,2,14975,568515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,173645 ,1,1,173700 ,1,2,173690 ,1,3,173680 ,1,4,173800 ,1,5,173810 ,1,6,173790 ,1,7,173740 ,1,8,173730 ,1,9,173720 ,1,10,173710 ,2,14956,215630 ,2,822,24415 ,2,14975,566930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395600 ,2,829,45 ,1,0,171520 ,1,1,170180 ,1,2,170025 ,1,3,171510 ,1,4,170120 ,2,14956,215640 ,2,822,24415 ,2,14975,568520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373645 ,2,829,45 ,1,0,171510 ,1,1,170120 ,1,2,171500 ,1,3,171160 ,1,4,173855 ,1,5,171520 ,1,6,170180 ,2,14956,215665 ,2,822,24415 ,2,14975,568490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,171510 ,1,1,170120 ,1,2,171520 ,1,3,170180 ,2,14956,215685 ,2,822,24425 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414200 ,2,829,45 ,1,0,171510 ,1,1,170120 ,1,2,171335 ,2,14956,215695 ,2,822,24425 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,415985 ,2,829,45 ,1,0,171500 ,1,1,171160 ,1,2,170025 ,2,14956,215715 ,2,822,24425 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,413675 ,2,829,45 ,1,0,583255 ,2,14956,215725 ,2,822,24425 ,2,14975,568550 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,57710 ,1,1,173585 ,2,14956,215350 ,2,822,24435 ,2,14975,568565 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386575 ,2,829,45 ,1,0,100 ,1,1,583280 ,1,2,582710 ,1,3,583255 ,2,14956,215795 ,2,822,24450 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396845 ,2,829,45 ,1,0,45 ,1,1,39770 ,1,2,39830 ,1,3,173615 ,1,4,45 ,1,5,45 ,1,6,39820 ,1,7,173625 ,1,8,173865 ,1,9,39810 ,1,10,173855 ,1,11,618550 ,2,14956,215585 ,2,822,24450 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387010 ,2,829,45 ,2,14956,182390 ,2,822,24450 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385200 ,2,829,45 ,1,0,173985 ,1,1,173975 ,1,2,173960 ,1,3,173995 ,1,4,173950 ,1,5,173940 ,1,6,173930 ,2,14956,215640 ,2,822,24450 ,2,14975,568560 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308820 ,2,829,45 ,2,14956,215805 ,2,822,24450 ,2,14975,568575 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,173575 ,1,1,173595 ,1,2,173835 ,1,3,173585 ,1,4,173820 ,2,14956,215825 ,2,822,51690 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258320 ,2,14979,308830 ,2,829,45 ,1,0,176795 ,1,1,45 ,1,2,174030 ,2,14956,215585 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308845 ,2,829,45 ,1,0,174040 ,2,14956,215845 ,2,822,24460 ,2,14975,568565 ,2,14976,23075 ,2,14977,23065 ,2,14965,548180 ,2,14978,45 ,2,14979,308855 ,2,829,45 ,1,0,583290 ,2,14956,215855 ,2,822,24460 ,2,14975,568420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,308865 ,2,829,45 ,1,0,173635 ,1,1,174075 ,1,2,174060 ,1,3,174050 ,1,4,174040 ,2,14956,215865 ,2,822,24460 ,2,14975,568420 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,386385 ,2,829,45 ,2,14956,215880 ,2,822,24460 ,2,14975,559540 ,2,14976,23450 ,2,14977,28905 ,2,14965,45 ,2,14978,45 ,2,14979,308935 ,2,829,45 ,1,0,583320 ,2,14956,215890 ,2,822,24460 ,2,14975,609470 ,2,14976,23075 ,2,14977,23065 ,2,14965,548185 ,2,14978,45 ,2,14979,308950 ,2,829,45 ,1,0,174085 ,2,14956,215910 ,2,822,24460 ,2,14975,609475 ,2,14976,23130 ,2,14977,59180 ,2,14965,548230 ,2,14978,45 ,2,14979,308960 ,2,829,45 ,2,14956,215925 ,2,822,24460 ,2,14975,566930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308970 ,2,829,45 ,1,0,270935 ,1,1,45 ,1,2,45 ,2,14956,215935 ,2,822,24460 ,2,14975,609480 ,2,14976,23075 ,2,14977,23065 ,2,14965,548235 ,2,14978,45 ,2,14979,308980 ,2,829,45 ,1,0,45 ,1,1,39630 ,1,2,613640 ,2,14956,215945 ,2,822,24460 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,309020 ,2,829,45 ,2,14956,215955 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413555 ,2,829,45 ,1,0,261670 ,2,14956,215385 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386770 ,2,829,45 ,1,0,173460 ,1,1,174145 ,1,2,174125 ,1,3,174095 ,2,14956,215630 ,2,822,24460 ,2,14975,566930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395610 ,2,829,45 ,1,0,174085 ,1,1,171510 ,1,2,170120 ,2,14956,6245 ,2,822,24460 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388545 ,2,829,45 ,2,14956,215975 ,2,822,24460 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409035 ,2,829,45 ,1,0,270985 ,1,1,45 ,1,2,45 ,2,14956,215985 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,308915 ,2,829,45 ,1,0,174135 ,1,1,45 ,1,2,613640 ,2,14956,215995 ,2,822,24460 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,308875 ,2,829,45 ,1,0,174135 ,2,14956,215455 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374755 ,2,829,45 ,2,14956,216005 ,2,822,24460 ,2,14975,568420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,308925 ,2,829,45 ,1,0,270995 ,1,1,45 ,1,2,45 ,2,14956,216025 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309030 ,2,829,45 ,1,0,45 ,1,1,39880 ,1,2,613640 ,2,14956,216015 ,2,822,24520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309040 ,2,829,45 ,2,14956,215445 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386125 ,2,829,45 ,1,0,261715 ,2,14956,216035 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386145 ,2,829,45 ,1,0,174155 ,1,1,174245 ,1,2,174200 ,1,3,174180 ,2,14956,216045 ,2,822,24460 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309050 ,2,829,45 ,2,14956,216090 ,2,822,24460 ,2,14975,568590 ,2,14976,23450 ,2,14977,59200 ,2,14965,45 ,2,14978,45 ,2,14979,386340 ,2,829,45 ,1,0,271005 ,1,1,45 ,1,2,45 ,2,14956,216100 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309065 ,2,829,45 ,1,0,39950 ,1,1,45 ,1,2,613640 ,2,14956,215395 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386475 ,2,829,45 ,2,14956,215595 ,2,822,24460 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,309075 ,2,829,45 ,1,0,261725 ,2,14956,180765 ,2,822,24460 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309085 ,2,829,45 ,1,0,174255 ,1,1,174315 ,1,2,174305 ,1,3,174275 ,2,14956,215640 ,2,822,24460 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373680 ,2,829,45 ,2,14956,216110 ,2,822,24460 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,105825 ,2,14979,309095 ,2,829,45 ,1,0,271040 ,1,1,45 ,1,2,45 ,2,14956,216110 ,2,822,24460 ,2,14975,599970 ,2,14976,59215 ,2,14977,23360 ,2,14965,45 ,2,14978,231685 ,2,14979,309120 ,2,829,45 ,1,0,45 ,1,1,39970 ,1,2,613640 ,2,14956,211080 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411760 ,2,829,45 ,2,14956,13210 ,2,822,24460 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416515 ,2,829,45 ,1,0,261735 ,2,14956,215405 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413795 ,2,829,45 ,1,0,174325 ,1,1,174390 ,1,2,174375 ,1,3,174355 ,2,14956,216120 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309130 ,2,829,45 ,2,14956,216135 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385760 ,2,829,45 ,1,0,271050 ,1,1,45 ,1,2,45 ,2,14956,216145 ,2,822,24460 ,2,14975,609515 ,2,14976,23075 ,2,14977,23065 ,2,14965,548240 ,2,14978,45 ,2,14979,309140 ,2,829,45 ,1,0,45 ,1,1,39990 ,1,2,613640 ,2,14956,216155 ,2,822,24460 ,2,14975,568585 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309150 ,2,829,45 ,2,14956,214205 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387070 ,2,829,45 ,1,0,261745 ,2,14956,216165 ,2,822,24460 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,105950 ,2,14979,308905 ,2,829,45 ,1,0,174400 ,1,1,174480 ,1,2,174470 ,1,3,174420 ,2,14956,216165 ,2,822,24460 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,231715 ,2,14979,309165 ,2,829,45 ,2,14956,216200 ,2,822,24460 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309175 ,2,829,45 ,1,0,271060 ,1,1,45 ,1,2,45 ,2,14956,173980 ,2,822,24460 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386815 ,2,829,45 ,1,0,40010 ,1,1,45 ,1,2,613640 ,2,14956,216210 ,2,822,24460 ,2,14975,609520 ,2,14976,23075 ,2,14977,23065 ,2,14965,548245 ,2,14978,45 ,2,14979,309185 ,2,829,45 ,2,14956,215585 ,2,822,24470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386945 ,2,829,45 ,1,0,261755 ,2,14956,215595 ,2,822,24470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386715 ,2,829,45 ,1,0,174490 ,1,1,174565 ,1,2,174530 ,1,3,174510 ,2,14956,215955 ,2,822,24470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386270 ,2,829,45 ,2,14956,211080 ,2,822,24470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375015 ,2,829,45 ,1,0,271070 ,1,1,45 ,1,2,45 ,2,14956,215685 ,2,822,24470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388310 ,2,829,45 ,1,0,45 ,1,1,40050 ,1,2,613640 ,2,14956,215695 ,2,822,24470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393405 ,2,829,45 ,2,14956,215715 ,2,822,24470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386515 ,2,829,45 ,1,0,261765 ,2,14956,216230 ,2,822,24470 ,2,14975,568625 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309235 ,2,829,45 ,1,0,174575 ,1,1,174635 ,1,2,174625 ,1,3,174595 ,2,14956,215640 ,2,822,24470 ,2,14975,568630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373575 ,2,829,45 ,2,14956,216240 ,2,822,24470 ,2,14975,568620 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,271080 ,1,1,45 ,1,2,45 ,2,14956,216035 ,2,822,24480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386140 ,2,829,45 ,1,0,45 ,1,1,40070 ,1,2,613640 ,2,14956,216090 ,2,822,24480 ,2,14975,568590 ,2,14976,23450 ,2,14977,59200 ,2,14965,45 ,2,14978,45 ,2,14979,386335 ,2,829,45 ,2,14956,215445 ,2,822,24480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386115 ,2,829,45 ,1,0,261775 ,2,14956,215455 ,2,822,24480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374745 ,2,829,45 ,1,0,174645 ,1,1,174755 ,1,2,174735 ,1,3,174715 ,2,14956,214205 ,2,822,24480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387065 ,2,829,45 ,2,14956,215585 ,2,822,24480 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387000 ,2,829,45 ,1,0,271090 ,1,1,45 ,1,2,45 ,2,14956,215575 ,2,822,24480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386095 ,2,829,45 ,1,0,45 ,1,1,40090 ,1,2,613640 ,2,14956,216260 ,2,822,24480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394325 ,2,829,45 ,2,14956,182390 ,2,822,24480 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385190 ,2,829,45 ,1,0,261785 ,2,14956,216325 ,2,822,24480 ,2,14975,568635 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309255 ,2,829,45 ,1,0,174765 ,1,1,174825 ,1,2,174815 ,1,3,174785 ,2,14956,216305 ,2,822,37280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258330 ,2,14979,2415 ,2,829,45 ,2,14956,216315 ,2,822,37300 ,2,14975,568650 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,271100 ,1,1,45 ,1,2,45 ,2,14956,216345 ,2,822,24520 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341965 ,2,829,45 ,1,0,45 ,1,1,40110 ,1,2,613640 ,2,14956,216355 ,2,822,24520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410020 ,2,829,45 ,2,14956,267295 ,2,822,24520 ,2,14975,568655 ,2,14976,23130 ,2,14977,96740 ,2,14965,45 ,2,14978,45 ,2,14979,309280 ,2,829,45 ,1,0,261815 ,2,14956,267245 ,2,822,24530 ,2,14975,568660 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309300 ,2,829,45 ,1,0,174835 ,1,1,174920 ,1,2,174875 ,1,3,174855 ,2,14956,174425 ,2,822,51700 ,2,14975,559540 ,2,14976,23450 ,2,14977,28905 ,2,14965,45 ,2,14978,45 ,2,14979,412715 ,2,829,45 ,2,14956,173980 ,2,822,51700 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413790 ,2,829,45 ,1,0,271110 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,51700 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,392310 ,2,829,45 ,1,0,45 ,1,1,40140 ,1,2,613640 ,2,14956,267135 ,2,822,24550 ,2,14975,580980 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,309310 ,2,829,45 ,2,14956,267125 ,2,822,21445 ,2,14975,568690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,261825 ,2,14956,216375 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,106405 ,2,14979,309330 ,2,829,45 ,1,0,174930 ,1,1,174980 ,1,2,174970 ,1,3,174950 ,2,14956,216375 ,2,822,24560 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,231725 ,2,14979,309385 ,2,829,45 ,2,14956,216400 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309395 ,2,829,45 ,1,0,271140 ,1,1,45 ,1,2,45 ,2,14956,206825 ,2,822,24560 ,2,14975,568690 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,309405 ,2,829,45 ,1,0,40160 ,1,1,45 ,1,2,613640 ,2,14956,216410 ,2,822,24560 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,106405 ,2,14979,2415 ,2,829,45 ,2,14956,216420 ,2,822,24560 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309445 ,2,829,45 ,1,0,261835 ,2,14956,266975 ,2,822,24560 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,162415 ,2,14979,309455 ,2,829,45 ,1,0,174990 ,1,1,175070 ,1,2,175050 ,1,3,175030 ,2,14956,197245 ,2,822,51710 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309465 ,2,829,45 ,2,14956,171330 ,2,822,14470 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360420 ,2,829,45 ,1,0,271150 ,1,1,45 ,1,2,45 ,2,14956,13175 ,2,822,24570 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395095 ,2,829,45 ,1,0,40180 ,1,1,45 ,1,2,613640 ,2,14956,168920 ,2,822,24570 ,2,14975,609530 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394845 ,2,829,45 ,2,14956,266945 ,2,822,24580 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309475 ,2,829,45 ,1,0,261845 ,2,14956,216445 ,2,822,24580 ,2,14975,568720 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309510 ,2,829,45 ,1,0,175080 ,1,1,175165 ,1,2,175155 ,1,3,175100 ,2,14956,216465 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,59625 ,2,14965,45 ,2,14978,45 ,2,14979,309520 ,2,829,45 ,2,14956,173980 ,2,822,24580 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387220 ,2,829,45 ,1,0,271160 ,1,1,45 ,1,2,45 ,2,14956,216475 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309575 ,2,829,45 ,1,0,45 ,1,1,40200 ,1,2,613640 ,2,14956,216515 ,2,822,24580 ,2,14975,568720 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309585 ,2,829,45 ,2,14956,216525 ,2,822,24580 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309545 ,2,829,45 ,1,0,261860 ,2,14956,216535 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309595 ,2,829,45 ,1,0,175175 ,1,1,175250 ,1,2,175220 ,1,3,175200 ,2,14956,216545 ,2,822,24580 ,2,14975,568720 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341540 ,2,829,45 ,2,14956,207130 ,2,822,24580 ,2,14975,568775 ,2,14976,23450 ,2,14977,59640 ,2,14965,45 ,2,14978,45 ,2,14979,374710 ,2,829,45 ,1,0,271170 ,1,1,45 ,1,2,45 ,2,14956,266700 ,2,822,24590 ,2,14975,110 ,2,14976,23130 ,2,14977,45900 ,2,14965,45 ,2,14978,45 ,2,14979,309645 ,2,829,45 ,1,0,45 ,1,1,40265 ,1,2,613640 ,2,14956,266500 ,2,822,24635 ,2,14975,110 ,2,14976,23450 ,2,14977,59670 ,2,14965,45 ,2,14978,45 ,2,14979,309665 ,2,829,45 ,2,14956,265935 ,2,822,24645 ,2,14975,599870 ,2,14976,23450 ,2,14977,95810 ,2,14965,45 ,2,14978,45 ,2,14979,309675 ,2,829,45 ,1,0,261870 ,2,14956,215640 ,2,822,24690 ,2,14975,568810 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373700 ,2,829,45 ,1,0,175260 ,1,1,175325 ,1,2,175315 ,1,3,175280 ,2,14956,215350 ,2,822,24665 ,2,14975,568830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386570 ,2,829,45 ,2,14956,216645 ,2,822,24665 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387155 ,2,829,45 ,1,0,271180 ,1,1,45 ,1,2,45 ,2,14956,216680 ,2,822,24690 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,106785 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,40285 ,1,2,613640 ,2,14956,216670 ,2,822,24690 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,231735 ,2,14979,309775 ,2,829,45 ,2,14956,215445 ,2,822,24690 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386120 ,2,829,45 ,1,0,261880 ,2,14956,216690 ,2,822,24690 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396805 ,2,829,45 ,1,0,175335 ,1,1,175395 ,1,2,175385 ,1,3,175365 ,2,14956,216670 ,2,822,24690 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,106785 ,2,14979,309785 ,2,829,45 ,2,14956,182390 ,2,822,24690 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385195 ,2,829,45 ,1,0,271190 ,1,1,45 ,1,2,45 ,2,14956,215585 ,2,822,24690 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387005 ,2,829,45 ,1,0,45 ,1,1,40310 ,1,2,613640 ,2,14956,216720 ,2,822,24690 ,2,14975,568835 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309800 ,2,829,45 ,2,14956,216700 ,2,822,37390 ,2,14975,568840 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,261890 ,2,14956,215640 ,2,822,37390 ,2,14975,568590 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373710 ,2,829,45 ,1,0,175405 ,1,1,175495 ,1,2,175485 ,1,3,175425 ,2,14956,265740 ,2,822,24700 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309720 ,2,829,45 ,2,14956,265540 ,2,822,24700 ,2,14975,568860 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309810 ,2,829,45 ,1,0,271200 ,1,1,45 ,1,2,45 ,2,14956,216995 ,2,822,24740 ,2,14975,568900 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,309830 ,2,829,45 ,1,0,45 ,1,1,40330 ,1,2,613640 ,2,14956,2855 ,2,822,24770 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415290 ,2,829,45 ,2,14956,2855 ,2,822,24780 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415295 ,2,829,45 ,1,0,261910 ,2,14956,2855 ,2,822,24790 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415300 ,2,829,45 ,1,0,175505 ,1,1,175565 ,1,2,175545 ,1,3,175525 ,2,14956,2855 ,2,822,24750 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415315 ,2,829,45 ,2,14956,217015 ,2,822,24800 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379860 ,2,829,45 ,1,0,271210 ,1,1,45 ,1,2,45 ,2,14956,215285 ,2,822,24800 ,2,14975,568930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379175 ,2,829,45 ,1,0,40390 ,1,1,45 ,1,2,613640 ,2,14956,10080 ,2,822,51735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,107050 ,2,14979,383460 ,2,829,45 ,2,14956,10080 ,2,822,51735 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,231745 ,2,14979,309880 ,2,829,45 ,1,0,261920 ,2,14956,182390 ,2,822,24885 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385660 ,2,829,45 ,1,0,175575 ,1,1,175625 ,1,2,175615 ,1,3,175595 ,2,14956,217045 ,2,822,24885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309910 ,2,829,45 ,2,14956,217035 ,2,822,37280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309920 ,2,829,45 ,1,0,271230 ,1,1,45 ,1,2,45 ,2,14956,217060 ,2,822,24885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309930 ,2,829,45 ,1,0,45 ,1,1,40410 ,1,2,613640 ,2,14956,217175 ,2,822,24885 ,2,14975,110 ,2,14976,24020 ,2,14977,60270 ,2,14965,45 ,2,14978,45 ,2,14979,309965 ,2,829,45 ,2,14956,217110 ,2,822,24900 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,548345 ,2,14978,45 ,2,14979,309975 ,2,829,45 ,1,0,261930 ,2,14956,217070 ,2,822,24900 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,548350 ,2,14978,45 ,2,14979,309985 ,2,829,45 ,1,0,175635 ,1,1,175705 ,1,2,175695 ,1,3,175675 ,2,14956,217080 ,2,822,24900 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,548355 ,2,14978,45 ,2,14979,309995 ,2,829,45 ,2,14956,171715 ,2,822,24885 ,2,14975,110 ,2,14976,24020 ,2,14977,60280 ,2,14965,45 ,2,14978,45 ,2,14979,356270 ,2,829,45 ,1,0,271240 ,1,1,45 ,1,2,45 ,2,14956,171725 ,2,822,24885 ,2,14975,110 ,2,14976,24020 ,2,14977,60320 ,2,14965,45 ,2,14978,45 ,2,14979,359345 ,2,829,45 ,1,0,45 ,1,1,40440 ,1,2,613640 ,2,14956,217195 ,2,822,24885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369555 ,2,829,45 ,2,14956,217210 ,2,822,24885 ,2,14975,568995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,261940 ,2,14956,184135 ,2,822,24965 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381955 ,2,829,45 ,1,0,175715 ,1,1,175790 ,1,2,175780 ,1,3,175735 ,2,14956,182390 ,2,822,24975 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384455 ,2,829,45 ,2,14956,217240 ,2,822,24975 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310035 ,2,829,45 ,1,0,271250 ,1,1,45 ,1,2,45 ,2,14956,213590 ,2,822,24975 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258340 ,2,14979,413085 ,2,829,45 ,1,0,40460 ,1,1,45 ,1,2,613640 ,2,14956,216645 ,2,822,24995 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387210 ,2,829,45 ,2,14956,216035 ,2,822,51745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413530 ,2,829,45 ,1,0,261965 ,2,14956,184135 ,2,822,51745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412185 ,2,829,45 ,1,0,175800 ,1,1,175885 ,1,2,175840 ,1,3,175820 ,2,14956,217335 ,2,822,51745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415060 ,2,829,45 ,2,14956,217345 ,2,822,51745 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412295 ,2,829,45 ,1,0,271260 ,1,1,45 ,1,2,45 ,2,14956,217385 ,2,822,25010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310085 ,2,829,45 ,1,0,45 ,1,1,40500 ,1,2,613640 ,2,14956,182390 ,2,822,25010 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385655 ,2,829,45 ,2,14956,2855 ,2,822,25020 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392415 ,2,829,45 ,1,0,261975 ,2,14956,216025 ,2,822,25020 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310105 ,2,829,45 ,1,0,175895 ,1,1,175950 ,1,2,175940 ,1,3,175915 ,2,14956,171330 ,2,822,25020 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359955 ,2,829,45 ,2,14956,217405 ,2,822,25020 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416315 ,2,829,45 ,1,0,271270 ,1,1,45 ,1,2,45 ,2,14956,217415 ,2,822,25020 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310115 ,2,829,45 ,1,0,40520 ,1,1,45 ,1,2,613640 ,2,14956,217435 ,2,822,25020 ,2,14975,569140 ,2,14976,24020 ,2,14977,60545 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,217455 ,2,822,25030 ,2,14975,569150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384995 ,2,829,45 ,1,0,261985 ,2,14956,217240 ,2,822,25030 ,2,14975,569150 ,2,14976,23450 ,2,14977,60580 ,2,14965,45 ,2,14978,45 ,2,14979,310135 ,2,829,45 ,1,0,175960 ,1,1,176045 ,1,2,176025 ,1,3,176005 ,2,14956,215630 ,2,822,25040 ,2,14975,569210 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395585 ,2,829,45 ,2,14956,215640 ,2,822,25040 ,2,14975,569215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373560 ,2,829,45 ,1,0,271280 ,1,1,45 ,1,2,45 ,2,14956,217520 ,2,822,25040 ,2,14975,569200 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,40540 ,1,2,613640 ,2,14956,217545 ,2,822,25080 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,107565 ,2,14979,310190 ,2,829,45 ,2,14956,217545 ,2,822,25080 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,231760 ,2,14979,310210 ,2,829,45 ,1,0,261995 ,2,14956,210875 ,2,822,25080 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366485 ,2,829,45 ,1,0,176055 ,1,1,176125 ,1,2,176115 ,1,3,176075 ,2,14956,217555 ,2,822,25080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310220 ,2,829,45 ,2,14956,213225 ,2,822,25080 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,107615 ,2,14979,310230 ,2,829,45 ,1,0,271290 ,1,1,45 ,1,2,45 ,2,14956,217565 ,2,822,24810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310240 ,2,829,45 ,1,0,45 ,1,1,40560 ,1,2,613640 ,2,14956,213225 ,2,822,25080 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231770 ,2,14979,310280 ,2,829,45 ,2,14956,217590 ,2,822,25080 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310290 ,2,829,45 ,1,0,262040 ,2,14956,213305 ,2,822,25080 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,107675 ,2,14979,361685 ,2,829,45 ,1,0,176135 ,1,1,176205 ,1,2,176180 ,1,3,176160 ,2,14956,213290 ,2,822,25080 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231780 ,2,14979,310300 ,2,829,45 ,2,14956,217600 ,2,822,25080 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310325 ,2,829,45 ,1,0,271300 ,1,1,45 ,1,2,45 ,2,14956,217610 ,2,822,25080 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310200 ,2,829,45 ,1,0,40600 ,1,1,45 ,1,2,613640 ,2,14956,213325 ,2,822,25080 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370925 ,2,829,45 ,2,14956,217620 ,2,822,25080 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,107565 ,2,14979,2415 ,2,829,45 ,1,0,262050 ,2,14956,213290 ,2,822,25080 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,107675 ,2,14979,310310 ,2,829,45 ,1,0,176215 ,1,1,176270 ,1,2,176260 ,1,3,176235 ,2,14956,211005 ,2,822,25080 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411230 ,2,829,45 ,2,14956,211025 ,2,822,25080 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378190 ,2,829,45 ,1,0,271330 ,1,1,45 ,1,2,45 ,2,14956,207730 ,2,822,25080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310335 ,2,829,45 ,1,0,40620 ,1,1,45 ,1,2,613640 ,2,14956,213375 ,2,822,25080 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,107615 ,2,14979,362340 ,2,829,45 ,2,14956,213395 ,2,822,25080 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,107825 ,2,14979,310345 ,2,829,45 ,1,0,262060 ,2,14956,213395 ,2,822,25080 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231790 ,2,14979,310355 ,2,829,45 ,1,0,176280 ,1,1,176375 ,1,2,176350 ,1,3,176330 ,2,14956,213435 ,2,822,25080 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364365 ,2,829,45 ,2,14956,213505 ,2,822,25080 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,107825 ,2,14979,361415 ,2,829,45 ,1,0,271340 ,1,1,45 ,1,2,45 ,2,14956,213485 ,2,822,25080 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,107890 ,2,14979,362045 ,2,829,45 ,1,0,40640 ,1,1,45 ,1,2,613640 ,2,14956,213475 ,2,822,25080 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231845 ,2,14979,310375 ,2,829,45 ,2,14956,217630 ,2,822,25080 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310395 ,2,829,45 ,1,0,262070 ,2,14956,213385 ,2,822,25080 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364235 ,2,829,45 ,1,0,176385 ,1,1,176465 ,1,2,176455 ,1,3,176405 ,2,14956,213530 ,2,822,25080 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370550 ,2,829,45 ,2,14956,213475 ,2,822,25080 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,107890 ,2,14979,310385 ,2,829,45 ,1,0,271350 ,1,1,45 ,1,2,45 ,2,14956,211360 ,2,822,25080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366375 ,2,829,45 ,1,0,45 ,1,1,40660 ,1,2,613640 ,2,14956,211385 ,2,822,25080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411195 ,2,829,45 ,2,14956,217695 ,2,822,25080 ,2,14975,569225 ,2,14976,24020 ,2,14977,60670 ,2,14965,45 ,2,14978,45 ,2,14979,310405 ,2,829,45 ,1,0,262080 ,2,14956,217640 ,2,822,24865 ,2,14975,568985 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,176475 ,1,1,176540 ,1,2,176515 ,1,3,176495 ,2,14956,217015 ,2,822,25090 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379890 ,2,829,45 ,2,14956,215285 ,2,822,25090 ,2,14975,569210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379185 ,2,829,45 ,1,0,271360 ,1,1,45 ,1,2,45 ,2,14956,215350 ,2,822,25090 ,2,14975,569235 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386620 ,2,829,45 ,1,0,45 ,1,1,40710 ,1,2,613640 ,2,14956,217455 ,2,822,25100 ,2,14975,569250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384990 ,2,829,45 ,2,14956,2855 ,2,822,25110 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391945 ,2,829,45 ,1,0,262090 ,2,14956,166985 ,2,822,24865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,107050 ,2,14979,383065 ,2,829,45 ,1,0,176550 ,1,1,176615 ,1,2,176605 ,1,3,176570 ,2,14956,211080 ,2,822,51735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375300 ,2,829,45 ,2,14956,207140 ,2,822,51735 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373465 ,2,829,45 ,1,0,271375 ,1,1,45 ,1,2,45 ,2,14956,207085 ,2,822,51735 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378725 ,2,829,45 ,1,0,45 ,1,1,40730 ,1,2,613640 ,2,14956,207130 ,2,822,51735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373985 ,2,829,45 ,2,14956,217810 ,2,822,51735 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383525 ,2,829,45 ,1,0,262100 ,2,14956,171330 ,2,822,51735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359225 ,2,829,45 ,1,0,176625 ,1,1,176705 ,1,2,176695 ,1,3,176675 ,2,14956,217820 ,2,822,51735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310455 ,2,829,45 ,2,14956,171410 ,2,822,51735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411495 ,2,829,45 ,1,0,271385 ,1,1,45 ,1,2,45 ,2,14956,171725 ,2,822,51735 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359870 ,2,829,45 ,1,0,45 ,1,1,40750 ,1,2,613640 ,2,14956,217830 ,2,822,51735 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,310480 ,2,829,45 ,2,14956,217860 ,2,822,51755 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,310490 ,2,829,45 ,1,0,262110 ,2,14956,217870 ,2,822,51755 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,310500 ,2,829,45 ,1,0,176715 ,1,1,176800 ,1,2,176790 ,1,3,176735 ,2,14956,217880 ,2,822,51755 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310510 ,2,829,45 ,2,14956,217890 ,2,822,24855 ,2,14975,568975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,271395 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,25140 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392045 ,2,829,45 ,1,0,40770 ,1,1,45 ,1,2,613640 ,2,14956,2855 ,2,822,25150 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415455 ,2,829,45 ,2,14956,2855 ,2,822,25160 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392030 ,2,829,45 ,1,0,262135 ,2,14956,6245 ,2,822,25160 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389085 ,2,829,45 ,1,0,176810 ,1,1,176880 ,1,2,176850 ,1,3,176830 ,2,14956,13210 ,2,822,25160 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397535 ,2,829,45 ,2,14956,217995 ,2,822,25160 ,2,14975,569310 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,310535 ,2,829,45 ,1,0,271405 ,1,1,45 ,1,2,45 ,2,14956,218020 ,2,822,25160 ,2,14975,569310 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,310545 ,2,829,45 ,1,0,45 ,1,1,40800 ,1,2,613640 ,2,14956,218060 ,2,822,24810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409040 ,2,829,45 ,2,14956,217545 ,2,822,24810 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,108360 ,2,14979,310555 ,2,829,45 ,1,0,262145 ,2,14956,217545 ,2,822,24810 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,231855 ,2,14979,310585 ,2,829,45 ,1,0,176890 ,1,1,176950 ,1,2,176940 ,1,3,176910 ,2,14956,210875 ,2,822,24810 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366475 ,2,829,45 ,2,14956,218070 ,2,822,24810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310595 ,2,829,45 ,1,0,271435 ,1,1,45 ,1,2,45 ,2,14956,213225 ,2,822,24810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,108430 ,2,14979,310605 ,2,829,45 ,1,0,40820 ,1,1,45 ,1,2,613640 ,2,14956,213225 ,2,822,24810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231865 ,2,14979,310615 ,2,829,45 ,2,14956,213305 ,2,822,24810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,108460 ,2,14979,361675 ,2,829,45 ,1,0,262155 ,2,14956,213290 ,2,822,24810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231875 ,2,14979,310630 ,2,829,45 ,1,0,176960 ,1,1,177040 ,1,2,177025 ,1,3,177005 ,2,14956,218310 ,2,822,24810 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355630 ,2,829,45 ,2,14956,166610 ,2,822,25205 ,2,14975,569315 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61075 ,2,14979,310650 ,2,829,45 ,1,0,271445 ,1,1,45 ,1,2,45 ,2,14956,10080 ,2,822,25205 ,2,14975,569315 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,108520 ,2,14979,383685 ,2,829,45 ,1,0,45 ,1,1,40840 ,1,2,613640 ,2,14956,10080 ,2,822,25205 ,2,14975,569315 ,2,14976,61085 ,2,14977,23120 ,2,14965,45 ,2,14978,231890 ,2,14979,310660 ,2,829,45 ,2,14956,2855 ,2,822,25225 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391770 ,2,829,45 ,1,0,262165 ,2,14956,176795 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61195 ,2,14979,310700 ,2,829,45 ,1,0,177050 ,1,1,177110 ,1,2,177100 ,1,3,177070 ,2,14956,4685 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383655 ,2,829,45 ,2,14956,166650 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61205 ,2,14979,310710 ,2,829,45 ,1,0,271455 ,1,1,45 ,1,2,45 ,2,14956,8315 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376405 ,2,829,45 ,1,0,45 ,1,1,40860 ,1,2,613640 ,2,14956,176805 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61225 ,2,14979,310720 ,2,829,45 ,2,14956,5060 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375765 ,2,829,45 ,1,0,262175 ,2,14956,166610 ,2,822,25235 ,2,14975,569315 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61235 ,2,14979,310735 ,2,829,45 ,1,0,177120 ,1,1,177195 ,1,2,177165 ,1,3,177145 ,2,14956,10080 ,2,822,25235 ,2,14975,569315 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,108655 ,2,14979,383675 ,2,829,45 ,2,14956,10080 ,2,822,25235 ,2,14975,569315 ,2,14976,61085 ,2,14977,23120 ,2,14965,45 ,2,14978,231900 ,2,14979,310745 ,2,829,45 ,1,0,271465 ,1,1,45 ,1,2,45 ,2,14956,166985 ,2,822,25235 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,108655 ,2,14979,383335 ,2,829,45 ,1,0,40905 ,1,1,45 ,1,2,613640 ,2,14956,2855 ,2,822,25235 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391750 ,2,829,45 ,2,14956,218130 ,2,822,25235 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310755 ,2,829,45 ,1,0,262185 ,2,14956,218110 ,2,822,14570 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61305 ,2,14979,310795 ,2,829,45 ,1,0,177205 ,1,1,177265 ,1,2,177255 ,1,3,177225 ,2,14956,218120 ,2,822,14570 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310765 ,2,829,45 ,2,14956,179850 ,2,822,25235 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412410 ,2,829,45 ,1,0,271480 ,1,1,45 ,1,2,45 ,2,14956,218140 ,2,822,25235 ,2,14975,561500 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,310805 ,2,829,45 ,1,0,45 ,1,1,40925 ,1,2,613640 ,2,14956,218160 ,2,822,25235 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310815 ,2,829,45 ,2,14956,218170 ,2,822,25235 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310825 ,2,829,45 ,1,0,262195 ,2,14956,218180 ,2,822,25235 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310845 ,2,829,45 ,1,0,177275 ,1,1,177355 ,1,2,177340 ,1,3,177320 ,2,14956,218190 ,2,822,25235 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416800 ,2,829,45 ,2,14956,179850 ,2,822,25250 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382100 ,2,829,45 ,1,0,271490 ,1,1,45 ,1,2,45 ,2,14956,4685 ,2,822,25250 ,2,14975,569370 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383670 ,2,829,45 ,1,0,45 ,1,1,40945 ,1,2,613640 ,2,14956,218190 ,2,822,25250 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258350 ,2,14979,416810 ,2,829,45 ,2,14956,176795 ,2,822,25260 ,2,14975,569375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61345 ,2,14979,310875 ,2,829,45 ,1,0,262205 ,2,14956,4685 ,2,822,25260 ,2,14975,569375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383660 ,2,829,45 ,1,0,177365 ,1,1,177455 ,1,2,177445 ,1,3,177385 ,2,14956,166650 ,2,822,25260 ,2,14975,569375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61355 ,2,14979,310905 ,2,829,45 ,1,0,179145 ,1,1,179105 ,1,2,179025 ,1,3,178950 ,1,4,178890 ,1,5,178815 ,1,6,178740 ,1,7,178690 ,1,8,178570 ,1,9,178455 ,1,10,178390 ,1,11,178145 ,1,12,178050 ,1,13,177995 ,1,14,177585 ,1,15,177525 ,1,16,177465 ,2,14956,8315 ,2,822,25260 ,2,14975,569375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376410 ,2,829,45 ,2,14956,176805 ,2,822,25260 ,2,14975,569375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61365 ,2,14979,310915 ,2,829,45 ,1,0,271510 ,1,1,45 ,1,2,45 ,2,14956,5060 ,2,822,25260 ,2,14975,569375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375770 ,2,829,45 ,1,0,41005 ,1,1,45 ,1,2,613640 ,2,14956,166610 ,2,822,25260 ,2,14975,569315 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,61395 ,2,14979,310925 ,2,829,45 ,1,0,584015 ,2,14956,10080 ,2,822,25260 ,2,14975,569315 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,108970 ,2,14979,383680 ,2,829,45 ,2,14956,10080 ,2,822,25260 ,2,14975,569315 ,2,14976,61085 ,2,14977,23120 ,2,14965,45 ,2,14978,231910 ,2,14979,310935 ,2,829,45 ,1,0,271500 ,1,1,45 ,1,2,45 ,2,14956,166985 ,2,822,25260 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,108970 ,2,14979,383340 ,2,829,45 ,1,0,45 ,1,1,40965 ,1,2,613640 ,2,14956,2855 ,2,822,25260 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391760 ,2,829,45 ,1,0,584015 ,2,14956,218130 ,2,822,25260 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,310955 ,2,829,45 ,1,0,262245 ,2,14956,179850 ,2,822,25260 ,2,14975,569335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382090 ,2,829,45 ,1,0,177465 ,1,1,177510 ,1,2,177500 ,1,3,177490 ,2,14956,179555 ,2,822,25260 ,2,14975,569375 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,310965 ,2,829,45 ,2,14956,218190 ,2,822,25260 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416805 ,2,829,45 ,1,0,271570 ,1,1,45 ,1,2,45 ,2,14956,169490 ,2,822,25260 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258360 ,2,14979,412595 ,2,829,45 ,1,0,45 ,1,1,41035 ,1,2,613640 ,2,14956,166985 ,2,822,25205 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,108520 ,2,14979,383365 ,2,829,45 ,1,0,584015 ,2,14956,6245 ,2,822,25205 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388990 ,2,829,45 ,1,0,262265 ,2,14956,13210 ,2,822,25205 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397270 ,2,829,45 ,1,0,177525 ,1,1,177575 ,1,2,177555 ,1,3,177545 ,2,14956,2855 ,2,822,25205 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391765 ,2,829,45 ,1,0,169485 ,2,14956,179555 ,2,822,25205 ,2,14975,569315 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,310975 ,2,829,45 ,1,0,177605 ,2,14956,218340 ,2,822,24810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,310985 ,2,829,45 ,2,14956,213325 ,2,822,24810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370915 ,2,829,45 ,1,0,271590 ,1,1,45 ,1,2,45 ,2,14956,217620 ,2,822,24810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,108360 ,2,14979,2415 ,2,829,45 ,1,0,41070 ,1,1,45 ,1,2,613640 ,2,14956,218380 ,2,822,24810 ,2,14975,568935 ,2,14976,23675 ,2,14977,61510 ,2,14965,45 ,2,14978,45 ,2,14979,311010 ,2,829,45 ,2,14956,213290 ,2,822,24810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,108460 ,2,14979,310640 ,2,829,45 ,1,0,262315 ,1,1,262305 ,2,14956,218390 ,2,822,24810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311020 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,177895 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,177885 ,1,10,177875 ,1,11,177865 ,1,12,177825 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,177815 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,177805 ,1,21,65 ,1,22,177795 ,1,23,177785 ,1,24,177775 ,1,25,177765 ,1,26,177755 ,1,27,65 ,1,28,177720 ,1,29,177710 ,1,30,177700 ,1,31,177690 ,1,32,65 ,1,33,177680 ,2,14956,218400 ,2,822,24810 ,2,14975,599870 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,311030 ,2,829,45 ,1,0,177885 ,1,1,169465 ,1,2,169485 ,2,14956,211025 ,2,822,24810 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378160 ,2,829,45 ,1,0,169180 ,1,1,169485 ,1,2,177720 ,1,3,177815 ,2,14956,207730 ,2,822,24810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311040 ,2,829,45 ,1,0,177785 ,2,14956,213375 ,2,822,24810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,108430 ,2,14979,362320 ,2,829,45 ,1,0,169210 ,2,14956,213395 ,2,822,24810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,109305 ,2,14979,311055 ,2,829,45 ,1,0,177885 ,1,1,177785 ,1,2,177815 ,1,3,177795 ,1,4,177825 ,1,5,177775 ,1,6,177895 ,1,7,177710 ,1,8,177700 ,1,9,177765 ,1,10,177875 ,1,11,177720 ,1,12,177865 ,1,13,177805 ,1,14,177680 ,1,15,177690 ,1,16,177755 ,2,14956,213395 ,2,822,24810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231920 ,2,14979,311065 ,2,829,45 ,2,14956,213485 ,2,822,24810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,109325 ,2,14979,362035 ,2,829,45 ,1,0,271580 ,1,1,45 ,1,2,45 ,2,14956,213475 ,2,822,24810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231940 ,2,14979,311075 ,2,829,45 ,1,0,41060 ,1,1,45 ,1,2,613640 ,2,14956,213385 ,2,822,24810 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364225 ,2,829,45 ,1,0,584015 ,2,14956,213505 ,2,822,24810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,109305 ,2,14979,361405 ,2,829,45 ,1,0,262295 ,1,1,262285 ,1,2,262350 ,2,14956,213530 ,2,822,24810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370540 ,2,829,45 ,1,0,177605 ,1,1,177585 ,1,2,177985 ,1,3,177975 ,1,4,177940 ,1,5,177930 ,1,6,177920 ,2,14956,218410 ,2,822,24810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311115 ,2,829,45 ,1,0,177985 ,1,1,62040 ,2,14956,213475 ,2,822,24810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,109325 ,2,14979,311085 ,2,829,45 ,2,14956,211385 ,2,822,24810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366170 ,2,829,45 ,1,0,271600 ,1,1,45 ,1,2,45 ,2,14956,218310 ,2,822,24800 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258370 ,2,14979,410280 ,2,829,45 ,1,0,45 ,1,1,41120 ,1,2,613640 ,2,14956,217015 ,2,822,25270 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379885 ,2,829,45 ,1,0,584015 ,2,14956,215285 ,2,822,25270 ,2,14975,569405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379180 ,2,829,45 ,1,0,262370 ,2,14956,10080 ,2,822,51765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,109465 ,2,14979,383455 ,2,829,45 ,1,0,177995 ,1,1,178040 ,1,2,178030 ,1,3,178020 ,2,14956,10080 ,2,822,51765 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,231950 ,2,14979,311145 ,2,829,45 ,2,14956,2855 ,2,822,25340 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391940 ,2,829,45 ,1,0,271610 ,1,1,45 ,1,2,45 ,2,14956,217830 ,2,822,51765 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,311170 ,2,829,45 ,1,0,45 ,1,1,41140 ,1,2,613640 ,2,14956,218495 ,2,822,51765 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,584015 ,2,14956,166985 ,2,822,25330 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,109465 ,2,14979,383060 ,2,829,45 ,1,0,262400 ,2,14956,218520 ,2,822,25330 ,2,14975,569460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,178050 ,1,1,178130 ,1,2,178120 ,1,3,178110 ,2,14956,211080 ,2,822,51765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375295 ,2,829,45 ,2,14956,207130 ,2,822,51765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311180 ,2,829,45 ,1,0,271630 ,1,1,45 ,1,2,45 ,2,14956,171410 ,2,822,51765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411490 ,2,829,45 ,1,0,45 ,1,1,41175 ,1,2,613640 ,2,14956,218530 ,2,822,51765 ,2,14975,567805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,218540 ,2,822,51765 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311190 ,2,829,45 ,1,0,178345 ,1,1,178300 ,1,2,178290 ,1,3,178280 ,1,4,178270 ,1,5,178255 ,1,6,178245 ,1,7,178235 ,1,8,178225 ,1,9,178175 ,1,10,178165 ,2,14956,217810 ,2,822,51765 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383510 ,2,829,45 ,1,0,169295 ,1,1,73050 ,1,2,62855 ,1,3,62660 ,1,4,62185 ,1,5,62705 ,2,14956,207140 ,2,822,51765 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373455 ,2,829,45 ,1,0,61105 ,2,14956,217820 ,2,822,51765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311225 ,2,829,45 ,1,0,178280 ,2,14956,207085 ,2,822,51765 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311235 ,2,829,45 ,1,0,169485 ,1,1,57710 ,2,14956,171725 ,2,822,51765 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359820 ,2,829,45 ,2,14956,171330 ,2,822,51765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359200 ,2,829,45 ,1,0,271620 ,1,1,45 ,1,2,45 ,2,14956,218565 ,2,822,25320 ,2,14975,569450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,41165 ,1,2,613640 ,2,14956,207085 ,2,822,51775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378720 ,2,829,45 ,1,0,584015 ,2,14956,207130 ,2,822,51775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373965 ,2,829,45 ,1,0,262420 ,2,14956,218585 ,2,822,51775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311245 ,2,829,45 ,1,0,178145 ,1,1,178375 ,1,2,178365 ,1,3,178355 ,2,14956,218595 ,2,822,25310 ,2,14975,569420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,2855 ,2,822,25360 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415415 ,2,829,45 ,1,0,271640 ,1,1,45 ,1,2,45 ,2,14956,221825 ,2,822,25280 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311255 ,2,829,45 ,1,0,45 ,1,1,41240 ,1,2,613640 ,2,14956,218745 ,2,822,14570 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,61765 ,2,14979,311270 ,2,829,45 ,1,0,584015 ,2,14956,185205 ,2,822,25370 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311300 ,2,829,45 ,1,0,262460 ,2,14956,2855 ,2,822,25425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415345 ,2,829,45 ,1,0,178390 ,1,1,178445 ,1,2,178420 ,1,3,178410 ,2,14956,185055 ,2,822,25370 ,2,14975,562040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311385 ,2,829,45 ,1,0,178475 ,2,14956,221260 ,2,822,25370 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311395 ,2,829,45 ,2,14956,221240 ,2,822,25445 ,2,14975,561435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,271670 ,1,1,45 ,1,2,45 ,2,14956,173980 ,2,822,25445 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386880 ,2,829,45 ,1,0,45 ,1,1,41260 ,1,2,613640 ,2,14956,6245 ,2,822,25445 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388770 ,2,829,45 ,1,0,584015 ,2,14956,13210 ,2,822,25445 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396605 ,2,829,45 ,1,0,262490 ,1,1,262480 ,2,14956,169970 ,2,822,25445 ,2,14975,569555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376635 ,2,829,45 ,1,0,178475 ,1,1,178455 ,1,2,178560 ,1,3,178525 ,1,4,178515 ,1,5,178505 ,2,14956,221030 ,2,822,25445 ,2,14975,569575 ,2,14976,62140 ,2,14977,62130 ,2,14965,45 ,2,14978,45 ,2,14979,311425 ,2,829,45 ,2,14956,221240 ,2,822,25465 ,2,14975,561435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,271680 ,1,1,45 ,1,2,45 ,2,14956,173980 ,2,822,25465 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386875 ,2,829,45 ,1,0,41280 ,1,1,45 ,1,2,613640 ,2,14956,6245 ,2,822,25465 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388765 ,2,829,45 ,1,0,584015 ,2,14956,13210 ,2,822,25465 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396600 ,2,829,45 ,1,0,262500 ,2,14956,221000 ,2,822,25465 ,2,14975,569570 ,2,14976,33775 ,2,14977,62085 ,2,14965,45 ,2,14978,45 ,2,14979,311470 ,2,829,45 ,1,0,178570 ,1,1,178680 ,1,2,178670 ,1,3,178635 ,1,4,178625 ,1,5,178615 ,1,6,178605 ,1,7,178590 ,2,14956,179555 ,2,822,25445 ,2,14975,569580 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311480 ,2,829,45 ,2,14956,221040 ,2,822,25445 ,2,14975,569580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311500 ,2,829,45 ,1,0,271690 ,1,1,45 ,1,2,45 ,2,14956,221210 ,2,822,25445 ,2,14975,569580 ,2,14976,62160 ,2,14977,62150 ,2,14965,45 ,2,14978,45 ,2,14979,311515 ,2,829,45 ,1,0,45 ,1,1,41300 ,1,2,613640 ,2,14956,212310 ,2,822,25445 ,2,14975,569580 ,2,14976,62180 ,2,14977,62170 ,2,14965,45 ,2,14978,45 ,2,14979,377070 ,2,829,45 ,1,0,584015 ,2,14956,221250 ,2,822,25445 ,2,14975,569585 ,2,14976,23130 ,2,14977,62190 ,2,14965,45 ,2,14978,45 ,2,14979,311405 ,2,829,45 ,1,0,262535 ,2,14956,221570 ,2,822,25370 ,2,14975,561500 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311525 ,2,829,45 ,1,0,178690 ,1,1,178730 ,1,2,178720 ,1,3,178710 ,2,14956,221525 ,2,822,25485 ,2,14975,110 ,2,14976,24020 ,2,14977,62200 ,2,14965,45 ,2,14978,45 ,2,14979,311545 ,2,829,45 ,2,14956,2855 ,2,822,25555 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391845 ,2,829,45 ,1,0,271700 ,1,1,45 ,1,2,45 ,2,14956,6245 ,2,822,25555 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389050 ,2,829,45 ,1,0,45 ,1,1,41345 ,1,2,613640 ,2,14956,13210 ,2,822,25555 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397400 ,2,829,45 ,1,0,584015 ,2,14956,221345 ,2,822,25565 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311600 ,2,829,45 ,1,0,262555 ,2,14956,173945 ,2,822,25565 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359845 ,2,829,45 ,1,0,178740 ,1,1,178805 ,1,2,178795 ,1,3,178785 ,2,14956,6245 ,2,822,25535 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311620 ,2,829,45 ,2,14956,13210 ,2,822,25535 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311630 ,2,829,45 ,1,0,271720 ,1,1,45 ,1,2,45 ,2,14956,221390 ,2,822,25535 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397820 ,2,829,45 ,1,0,45 ,1,1,41365 ,1,2,613640 ,2,14956,221410 ,2,822,25535 ,2,14975,569655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311640 ,2,829,45 ,1,0,584015 ,2,14956,221400 ,2,822,25485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311650 ,2,829,45 ,1,0,262575 ,2,14956,221420 ,2,822,25535 ,2,14975,569615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311685 ,2,829,45 ,1,0,178815 ,1,1,178880 ,1,2,178845 ,1,3,178835 ,2,14956,211080 ,2,822,25535 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,173980 ,2,822,25485 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386820 ,2,829,45 ,1,0,271730 ,1,1,45 ,1,2,45 ,2,14956,6245 ,2,822,25485 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388550 ,2,829,45 ,1,0,45 ,1,1,41390 ,1,2,613640 ,2,14956,13210 ,2,822,25485 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396255 ,2,829,45 ,1,0,584015 ,2,14956,169970 ,2,822,25485 ,2,14975,569555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376470 ,2,829,45 ,1,0,262595 ,2,14956,221480 ,2,822,25485 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311695 ,2,829,45 ,1,0,178890 ,1,1,178940 ,1,2,178930 ,1,3,178910 ,2,14956,221495 ,2,822,25485 ,2,14975,569615 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311705 ,2,829,45 ,2,14956,211080 ,2,822,25485 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375080 ,2,829,45 ,1,0,271740 ,1,1,45 ,1,2,45 ,2,14956,182390 ,2,822,25485 ,2,14975,110 ,2,14976,24020 ,2,14977,62400 ,2,14965,45 ,2,14978,45 ,2,14979,385220 ,2,829,45 ,1,0,41410 ,1,1,45 ,1,2,613640 ,2,14956,221560 ,2,822,25535 ,2,14975,599880 ,2,14976,23450 ,2,14977,62450 ,2,14965,45 ,2,14978,45 ,2,14979,311535 ,2,829,45 ,1,0,584015 ,2,14956,185185 ,2,822,25370 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311715 ,2,829,45 ,1,0,262640 ,2,14956,221580 ,2,822,25370 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311725 ,2,829,45 ,1,0,178950 ,1,1,179015 ,1,2,179005 ,1,3,178995 ,2,14956,180325 ,2,822,25370 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311735 ,2,829,45 ,2,14956,221590 ,2,822,25370 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311745 ,2,829,45 ,1,0,271750 ,1,1,45 ,1,2,45 ,2,14956,221600 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311830 ,2,829,45 ,1,0,45 ,1,1,41465 ,1,2,613640 ,2,14956,221610 ,2,822,25370 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311850 ,2,829,45 ,1,0,584015 ,2,14956,221630 ,2,822,25370 ,2,14975,562030 ,2,14976,24020 ,2,14977,62490 ,2,14965,45 ,2,14978,45 ,2,14979,311860 ,2,829,45 ,1,0,262660 ,2,14956,180615 ,2,822,25370 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311870 ,2,829,45 ,1,0,179025 ,1,1,179065 ,1,2,179055 ,1,3,179045 ,2,14956,221660 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311880 ,2,829,45 ,2,14956,221670 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311915 ,2,829,45 ,1,0,271770 ,1,1,45 ,1,2,45 ,2,14956,221680 ,2,822,25370 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311925 ,2,829,45 ,1,0,41485 ,1,1,45 ,1,2,613640 ,2,14956,221690 ,2,822,25370 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311810 ,2,829,45 ,2,14956,211025 ,2,822,25370 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378465 ,2,829,45 ,1,0,262685 ,2,14956,221705 ,2,822,25370 ,2,14975,569575 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312080 ,2,829,45 ,1,0,179105 ,1,1,179135 ,1,2,179125 ,2,14956,207730 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311935 ,2,829,45 ,2,14956,180765 ,2,822,25370 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,311945 ,2,829,45 ,1,0,271780 ,1,1,45 ,1,2,45 ,2,14956,221715 ,2,822,25370 ,2,14975,561500 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311820 ,2,829,45 ,1,0,262705 ,2,14956,185065 ,2,822,25370 ,2,14975,562040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311960 ,2,829,45 ,1,0,179175 ,2,14956,221725 ,2,822,25370 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,311800 ,2,829,45 ,1,0,41505 ,1,1,262705 ,1,2,179175 ,1,3,45 ,1,4,45 ,1,5,616170 ,2,14956,185215 ,2,822,25370 ,2,14975,562045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311970 ,2,829,45 ,1,0,584015 ,2,14956,221735 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311980 ,2,829,45 ,1,0,262695 ,2,14956,221765 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,311990 ,2,829,45 ,1,0,179145 ,1,1,179215 ,1,2,179205 ,1,3,179195 ,2,14956,221775 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312035 ,2,829,45 ,1,0,3010 ,1,1,287255 ,1,2,175900 ,1,3,289015 ,1,4,289000 ,2,14956,211320 ,2,822,25370 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371555 ,2,829,45 ,1,0,172675 ,1,1,173130 ,1,2,179625 ,1,3,179580 ,1,4,179515 ,1,5,179410 ,1,6,179310 ,1,7,179225 ,2,14956,221785 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312045 ,2,829,45 ,2,14956,221795 ,2,822,25370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312055 ,2,829,45 ,1,0,271800 ,1,1,45 ,1,2,45 ,2,14956,213530 ,2,822,25370 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371265 ,2,829,45 ,1,0,45 ,1,1,41540 ,1,2,613640 ,2,14956,185430 ,2,822,25370 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312065 ,2,829,45 ,2,14956,221805 ,2,822,25370 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,179300 ,1,1,179270 ,1,2,179260 ,1,3,179250 ,2,14956,185345 ,2,822,25370 ,2,14975,110 ,2,14976,23450 ,2,14977,62545 ,2,14965,45 ,2,14978,45 ,2,14979,311290 ,2,829,45 ,2,14956,221865 ,2,822,25280 ,2,14975,569410 ,2,14976,35820 ,2,14977,62585 ,2,14965,45 ,2,14978,45 ,2,14979,312110 ,2,829,45 ,1,0,271790 ,1,1,45 ,1,2,45 ,2,14956,221875 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312155 ,2,829,45 ,1,0,45 ,1,1,41525 ,1,2,613640 ,2,14956,213225 ,2,822,25280 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,110840 ,2,14979,312165 ,2,829,45 ,2,14956,213225 ,2,822,25280 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231960 ,2,14979,312175 ,2,829,45 ,1,0,262715 ,2,14956,221885 ,2,822,25280 ,2,14975,569615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312195 ,2,829,45 ,1,0,179225 ,2,14956,213305 ,2,822,25280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,110870 ,2,14979,361655 ,2,829,45 ,2,14956,213290 ,2,822,25280 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,231970 ,2,14979,312205 ,2,829,45 ,1,0,271815 ,1,1,45 ,1,2,45 ,2,14956,221630 ,2,822,25280 ,2,14975,562030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,41570 ,1,1,45 ,1,2,613640 ,2,14956,221900 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312090 ,2,829,45 ,2,14956,210895 ,2,822,25280 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,369890 ,2,829,45 ,1,0,262760 ,2,14956,213325 ,2,822,25280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370905 ,2,829,45 ,1,0,179310 ,1,1,179375 ,1,2,179365 ,1,3,179355 ,1,4,179345 ,1,5,179330 ,2,14956,221670 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312215 ,2,829,45 ,2,14956,221910 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409050 ,2,829,45 ,1,0,271825 ,1,1,45 ,1,2,45 ,2,14956,211025 ,2,822,25280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378150 ,2,829,45 ,1,0,41590 ,1,1,45 ,1,2,613640 ,2,14956,211035 ,2,822,25280 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,110985 ,2,14979,372245 ,2,829,45 ,2,14956,211035 ,2,822,25280 ,2,14975,110 ,2,14976,55700 ,2,14977,23360 ,2,14965,45 ,2,14978,231995 ,2,14979,312225 ,2,829,45 ,1,0,262780 ,2,14956,221920 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312265 ,2,829,45 ,1,0,179410 ,1,1,179505 ,1,2,179480 ,1,3,179470 ,1,4,179460 ,1,5,179450 ,1,6,179440 ,1,7,179430 ,2,14956,213375 ,2,822,25280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,110840 ,2,14979,362300 ,2,829,45 ,1,0,179480 ,2,14956,221930 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312275 ,2,829,45 ,2,14956,221980 ,2,822,25280 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312285 ,2,829,45 ,1,0,271835 ,1,1,45 ,1,2,45 ,2,14956,221990 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312295 ,2,829,45 ,1,0,41610 ,1,1,45 ,1,2,613640 ,2,14956,222000 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312305 ,2,829,45 ,2,14956,221765 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312315 ,2,829,45 ,1,0,262790 ,2,14956,221775 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312325 ,2,829,45 ,1,0,179515 ,1,1,179570 ,1,2,179560 ,1,3,179550 ,1,4,179535 ,2,14956,221785 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312335 ,2,829,45 ,2,14956,188955 ,2,822,25280 ,2,14975,559725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312370 ,2,829,45 ,1,0,271845 ,1,1,45 ,1,2,45 ,2,14956,221795 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312380 ,2,829,45 ,1,0,45 ,1,1,41650 ,1,2,613640 ,2,14956,213505 ,2,822,25280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111190 ,2,14979,361230 ,2,829,45 ,2,14956,213395 ,2,822,25280 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232005 ,2,14979,312390 ,2,829,45 ,1,0,262800 ,2,14956,218585 ,2,822,25280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,111210 ,2,14979,312410 ,2,829,45 ,1,0,179580 ,2,14956,218585 ,2,822,25280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232015 ,2,14979,312420 ,2,829,45 ,2,14956,222010 ,2,822,25280 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312100 ,2,829,45 ,1,0,271870 ,1,1,45 ,1,2,45 ,2,14956,222020 ,2,822,25280 ,2,14975,110 ,2,14976,23450 ,2,14977,62545 ,2,14965,45 ,2,14978,45 ,2,14979,311280 ,2,829,45 ,1,0,41670 ,1,1,45 ,1,2,613640 ,2,14956,218060 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312430 ,2,829,45 ,2,14956,211155 ,2,822,25280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370020 ,2,829,45 ,1,0,262810 ,2,14956,222030 ,2,822,25280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111210 ,2,14979,2415 ,2,829,45 ,1,0,179625 ,1,1,179745 ,1,2,179735 ,1,3,179695 ,1,4,179685 ,1,5,179675 ,1,6,179665 ,1,7,179645 ,2,14956,222040 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409055 ,2,829,45 ,1,0,179800 ,1,1,179780 ,1,2,179755 ,2,14956,222050 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312145 ,2,829,45 ,2,14956,211210 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369820 ,2,829,45 ,1,0,271890 ,1,1,45 ,1,2,45 ,2,14956,222080 ,2,822,25280 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312440 ,2,829,45 ,1,0,45 ,1,1,41700 ,1,2,613640 ,2,14956,221600 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312480 ,2,829,45 ,1,0,584290 ,2,14956,213290 ,2,822,25280 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,110870 ,2,14979,409045 ,2,829,45 ,2,14956,207730 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312490 ,2,829,45 ,1,0,271880 ,1,1,45 ,1,2,45 ,2,14956,211300 ,2,822,25280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,110985 ,2,14979,376630 ,2,829,45 ,1,0,41690 ,1,1,45 ,1,2,613640 ,2,14956,213395 ,2,822,25280 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111190 ,2,14979,312400 ,2,829,45 ,2,14956,213425 ,2,822,25280 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411070 ,2,829,45 ,1,0,262845 ,2,14956,213485 ,2,822,25280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111430 ,2,14979,361990 ,2,829,45 ,1,0,179755 ,2,14956,213475 ,2,822,25280 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232025 ,2,14979,312500 ,2,829,45 ,2,14956,213385 ,2,822,25280 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364170 ,2,829,45 ,1,0,271900 ,1,1,45 ,1,2,45 ,2,14956,213530 ,2,822,25280 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370530 ,2,829,45 ,1,0,45 ,1,1,41765 ,1,2,613640 ,2,14956,222090 ,2,822,25280 ,2,14975,569655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312525 ,2,829,45 ,2,14956,213475 ,2,822,25280 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111430 ,2,14979,312510 ,2,829,45 ,1,0,262855 ,2,14956,211385 ,2,822,25280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366120 ,2,829,45 ,1,0,179780 ,2,14956,222100 ,2,822,25280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312535 ,2,829,45 ,2,14956,222120 ,2,822,25270 ,2,14975,569665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312545 ,2,829,45 ,1,0,271910 ,1,1,45 ,1,2,45 ,2,14956,222130 ,2,822,25270 ,2,14975,569385 ,2,14976,35820 ,2,14977,62645 ,2,14965,45 ,2,14978,45 ,2,14979,312555 ,2,829,45 ,1,0,41785 ,1,1,45 ,1,2,613640 ,2,14956,217015 ,2,822,25585 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379765 ,2,829,45 ,2,14956,215285 ,2,822,25585 ,2,14975,569685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379060 ,2,829,45 ,1,0,262865 ,2,14956,222150 ,2,822,25670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312605 ,2,829,45 ,1,0,179800 ,1,1,179845 ,2,14956,207730 ,2,822,25670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312635 ,2,829,45 ,1,0,168560 ,2,14956,218390 ,2,822,25670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312655 ,2,829,45 ,1,0,168550 ,2,14956,218310 ,2,822,25670 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410360 ,2,829,45 ,1,0,582405 ,2,14956,222180 ,2,822,25670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312645 ,2,829,45 ,1,0,564895 ,2,14956,222190 ,2,822,25670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312615 ,2,829,45 ,1,0,179980 ,1,1,168455 ,1,2,179970 ,1,3,179925 ,2,14956,222200 ,2,822,25670 ,2,14975,569755 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,213375 ,2,822,25685 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111700 ,2,14979,362105 ,2,829,45 ,1,0,179990 ,2,14956,213225 ,2,822,25685 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232065 ,2,14979,312700 ,2,829,45 ,2,14956,213305 ,2,822,25685 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111725 ,2,14979,361470 ,2,829,45 ,1,0,582405 ,2,14956,213290 ,2,822,25685 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232075 ,2,14979,312730 ,2,829,45 ,2,14956,213485 ,2,822,25685 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111745 ,2,14979,361755 ,2,829,45 ,1,0,180000 ,2,14956,213475 ,2,822,25685 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232085 ,2,14979,312755 ,2,829,45 ,2,14956,213505 ,2,822,25685 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111790 ,2,14979,360780 ,2,829,45 ,1,0,173750 ,2,14956,213395 ,2,822,25685 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232095 ,2,14979,312775 ,2,829,45 ,2,14956,213325 ,2,822,25685 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370655 ,2,829,45 ,2,14956,213225 ,2,822,25685 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111700 ,2,14979,312710 ,2,829,45 ,2,14956,213290 ,2,822,25685 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111725 ,2,14979,312745 ,2,829,45 ,1,0,180010 ,2,14956,213475 ,2,822,25685 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111745 ,2,14979,312765 ,2,829,45 ,2,14956,213395 ,2,822,25685 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111790 ,2,14979,312820 ,2,829,45 ,1,0,582895 ,2,14956,207730 ,2,822,25685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312830 ,2,829,45 ,1,0,180020 ,2,14956,222225 ,2,822,25685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312840 ,2,829,45 ,2,14956,222180 ,2,822,25685 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409060 ,2,829,45 ,2,14956,222190 ,2,822,25685 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,312720 ,2,829,45 ,1,0,180030 ,2,14956,222245 ,2,822,25685 ,2,14975,569795 ,2,14976,24020 ,2,14977,62775 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,213375 ,2,822,25695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111935 ,2,14979,362115 ,2,829,45 ,1,0,180040 ,2,14956,213225 ,2,822,25695 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232110 ,2,14979,312870 ,2,829,45 ,1,0,3010 ,1,1,290185 ,1,2,290155 ,2,14956,213305 ,2,822,25695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111955 ,2,14979,361480 ,2,829,45 ,1,0,3010 ,1,1,203385 ,1,2,290155 ,2,14956,213290 ,2,822,25695 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232120 ,2,14979,312900 ,2,829,45 ,1,0,167190 ,2,14956,213485 ,2,822,25695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,111990 ,2,14979,361765 ,2,829,45 ,1,0,3010 ,1,1,175900 ,1,2,272495 ,1,3,222235 ,2,14956,213475 ,2,822,25695 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232130 ,2,14979,312915 ,2,829,45 ,2,14956,213505 ,2,822,25695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112010 ,2,14979,360795 ,2,829,45 ,1,0,180170 ,1,1,180140 ,1,2,180130 ,1,3,180120 ,2,14956,213395 ,2,822,25695 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232140 ,2,14979,312935 ,2,829,45 ,1,0,3010 ,1,1,290240 ,1,2,290155 ,2,14956,213325 ,2,822,25695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370665 ,2,829,45 ,2,14956,213225 ,2,822,25695 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111935 ,2,14979,312880 ,2,829,45 ,1,0,180180 ,2,14956,213290 ,2,822,25695 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111955 ,2,14979,409065 ,2,829,45 ,2,14956,213475 ,2,822,25695 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,111990 ,2,14979,312925 ,2,829,45 ,1,0,180190 ,2,14956,213395 ,2,822,25695 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112010 ,2,14979,409070 ,2,829,45 ,1,0,584435 ,2,14956,222290 ,2,822,25695 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312890 ,2,829,45 ,1,0,180335 ,1,1,167180 ,1,2,167190 ,1,3,180320 ,1,4,180310 ,1,5,180300 ,1,6,180290 ,1,7,180245 ,1,8,180235 ,1,9,180225 ,1,10,180215 ,1,11,167170 ,1,12,180200 ,2,14956,207085 ,2,822,25695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378585 ,2,829,45 ,2,14956,207130 ,2,822,25695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373795 ,2,829,45 ,1,0,271975 ,1,1,45 ,1,2,45 ,2,14956,261460 ,2,822,25695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312945 ,2,829,45 ,1,0,42020 ,1,1,45 ,1,2,613640 ,2,14956,250930 ,2,822,25705 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398515 ,2,829,45 ,2,14956,217455 ,2,822,25750 ,2,14975,569835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384655 ,2,829,45 ,1,0,180345 ,1,1,180555 ,1,2,180365 ,1,3,180355 ,2,14956,222330 ,2,822,25750 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,312975 ,2,829,45 ,2,14956,222550 ,2,822,25750 ,2,14975,569820 ,2,14976,62990 ,2,14977,62980 ,2,14965,45 ,2,14978,45 ,2,14979,312985 ,2,829,45 ,1,0,271985 ,1,1,45 ,1,2,45 ,2,14956,250810 ,2,822,25780 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112220 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,42040 ,1,2,42080 ,1,3,614705 ,2,14956,250800 ,2,822,25780 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233790 ,2,14979,313035 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,357065 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,357055 ,1,8,357045 ,1,9,357035 ,2,14956,222700 ,2,822,25790 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313070 ,2,829,45 ,2,14956,184135 ,2,822,51785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,180395 ,2,14956,187610 ,2,822,25790 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359060 ,2,829,45 ,2,14956,222655 ,2,822,25790 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,180545 ,1,1,180535 ,1,2,180525 ,1,3,180515 ,1,4,180505 ,1,5,180495 ,1,6,180485 ,1,7,180465 ,1,8,180455 ,1,9,180445 ,1,10,180435 ,1,11,180425 ,1,12,180415 ,1,13,180405 ,2,14956,222665 ,2,822,25790 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,86335 ,2,14956,222680 ,2,822,25790 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,86355 ,1,1,86335 ,2,14956,184135 ,2,822,25790 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,111680 ,1,1,154045 ,1,2,118940 ,1,3,103320 ,2,14956,250790 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313055 ,2,829,45 ,1,0,3010 ,1,1,218370 ,1,2,198280 ,1,3,210905 ,1,4,269095 ,1,5,182890 ,1,6,232290 ,1,7,209800 ,2,14956,217455 ,2,822,25875 ,2,14975,569980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384840 ,2,829,45 ,2,14956,217240 ,2,822,25875 ,2,14975,569980 ,2,14976,23130 ,2,14977,63205 ,2,14965,45 ,2,14978,45 ,2,14979,329575 ,2,829,45 ,1,0,271995 ,1,1,45 ,1,2,45 ,2,14956,216035 ,2,822,51795 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313170 ,2,829,45 ,1,0,180610 ,1,1,180590 ,2,14956,184135 ,2,822,51795 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409110 ,2,829,45 ,1,0,100 ,1,1,584510 ,2,14956,217335 ,2,822,51795 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415025 ,2,829,45 ,1,0,9255 ,1,1,5080 ,1,2,167770 ,1,3,215195 ,2,14956,217345 ,2,822,51795 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412280 ,2,829,45 ,1,0,100 ,1,1,584540 ,1,2,610995 ,1,3,599880 ,2,14956,216645 ,2,822,25905 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387130 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217455 ,2,822,25915 ,2,14975,570045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384825 ,2,829,45 ,1,0,100 ,1,1,610995 ,2,14956,213590 ,2,822,25915 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258410 ,2,14979,413280 ,2,829,45 ,1,0,5080 ,1,1,167770 ,1,2,215195 ,2,14956,10080 ,2,822,51805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112465 ,2,14979,383320 ,2,829,45 ,1,0,45 ,1,1,180610 ,1,2,180590 ,1,3,42090 ,1,4,45 ,1,5,616170 ,2,14956,10080 ,2,822,51805 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,232170 ,2,14979,313265 ,2,829,45 ,2,14956,166985 ,2,822,26005 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112465 ,2,14979,382880 ,2,829,45 ,1,0,180580 ,1,1,180650 ,2,14956,211080 ,2,822,51805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375235 ,2,829,45 ,1,0,98040 ,1,1,97915 ,1,2,97800 ,2,14956,207140 ,2,822,51805 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373330 ,2,829,45 ,1,0,59885 ,1,1,59855 ,1,2,59865 ,2,14956,207085 ,2,822,51805 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313275 ,2,829,45 ,1,0,60010 ,1,1,60365 ,1,2,60155 ,1,3,59885 ,1,4,59975 ,1,5,60355 ,1,6,60145 ,1,7,59855 ,2,14956,207130 ,2,822,51805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313290 ,2,829,45 ,2,14956,217810 ,2,822,51805 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383445 ,2,829,45 ,1,0,272005 ,1,1,45 ,1,2,45 ,2,14956,171330 ,2,822,51805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359080 ,2,829,45 ,1,0,45 ,1,1,42115 ,1,2,613640 ,2,14956,217820 ,2,822,51805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313300 ,2,829,45 ,2,14956,171410 ,2,822,51805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411450 ,2,829,45 ,1,0,262985 ,1,1,262970 ,1,2,262960 ,2,14956,171725 ,2,822,51805 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359630 ,2,829,45 ,1,0,180690 ,1,1,180910 ,1,2,180870 ,1,3,180860 ,1,4,180850 ,1,5,180840 ,1,6,180825 ,1,7,180815 ,1,8,180805 ,1,9,180795 ,1,10,180750 ,1,11,180730 ,2,14956,217830 ,2,822,51805 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,313310 ,2,829,45 ,1,0,112635 ,2,14956,222765 ,2,822,26005 ,2,14975,570100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,217860 ,2,822,51830 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,313320 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,180930 ,2,14956,217870 ,2,822,51830 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,313340 ,2,829,45 ,1,0,180940 ,2,14956,222805 ,2,822,25995 ,2,14975,570090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,584575 ,2,14956,213290 ,2,822,25985 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112685 ,2,14979,313350 ,2,829,45 ,1,0,291420 ,1,1,45 ,1,2,181260 ,1,3,291375 ,1,4,45 ,1,5,181240 ,1,6,291345 ,1,7,45 ,1,8,181190 ,1,9,291315 ,1,10,45 ,1,11,181170 ,1,12,291255 ,1,13,45 ,1,14,181160 ,1,15,291230 ,1,16,45 ,1,17,180965 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,2,14956,213290 ,2,822,25985 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232180 ,2,14979,313370 ,2,829,45 ,1,0,181045 ,2,14956,222845 ,2,822,25985 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313360 ,2,829,45 ,1,0,181075 ,2,14956,211025 ,2,822,25985 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377865 ,2,829,45 ,1,0,181140 ,1,1,181045 ,2,14956,213375 ,2,822,25985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112750 ,2,14979,362055 ,2,829,45 ,1,0,181180 ,2,14956,213225 ,2,822,25985 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232190 ,2,14979,313385 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,222865 ,2,822,25985 ,2,14975,570080 ,2,14976,23450 ,2,14977,63535 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,213395 ,2,822,25985 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112780 ,2,14979,313395 ,2,829,45 ,1,0,181200 ,2,14956,213395 ,2,822,25985 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232200 ,2,14979,313405 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,213305 ,2,822,25985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112685 ,2,14979,361425 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,213225 ,2,822,25985 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112750 ,2,14979,409115 ,2,829,45 ,1,0,181250 ,2,14956,207130 ,2,822,25985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373785 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,213505 ,2,822,25985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112780 ,2,14979,360395 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,213485 ,2,822,25985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,112870 ,2,14979,361715 ,2,829,45 ,1,0,181270 ,2,14956,213475 ,2,822,25985 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232215 ,2,14979,313415 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,261460 ,2,822,25985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313460 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,250930 ,2,822,26025 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398725 ,2,829,45 ,1,0,560665 ,2,14956,182390 ,2,822,26065 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384360 ,2,829,45 ,1,0,263005 ,1,1,262995 ,1,2,263175 ,1,3,263015 ,1,4,263165 ,1,5,263125 ,1,6,263115 ,1,7,263105 ,1,8,263095 ,2,14956,2855 ,2,822,26075 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415585 ,2,829,45 ,1,0,615220 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,181105 ,1,5,65 ,1,6,65 ,1,7,181515 ,1,8,65 ,1,9,181505 ,1,10,65 ,1,11,181495 ,1,12,181475 ,1,13,180975 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,181465 ,1,18,65 ,1,19,181455 ,1,20,65 ,1,21,65 ,1,22,181420 ,1,23,65 ,1,24,65 ,1,25,180965 ,1,26,181035 ,1,27,181390 ,1,28,65 ,1,29,181075 ,1,30,181375 ,1,31,181365 ,1,32,180985 ,1,33,65 ,1,34,65 ,1,35,181025 ,1,36,65 ,1,37,181045 ,1,38,65 ,1,39,65 ,1,40,181355 ,1,41,65 ,1,42,65 ,1,43,181160 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,181345 ,1,52,65 ,1,53,65 ,1,54,181130 ,1,55,65 ,1,56,181315 ,1,57,181140 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,213325 ,2,822,26025 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371285 ,2,829,45 ,1,0,181315 ,2,14956,213385 ,2,822,25985 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363400 ,2,829,45 ,1,0,181045 ,1,1,181410 ,1,2,181505 ,1,3,181400 ,1,4,57795 ,2,14956,213475 ,2,822,25985 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112870 ,2,14979,409120 ,2,829,45 ,1,0,181045 ,1,1,181160 ,1,2,181315 ,1,3,83525 ,2,14956,207085 ,2,822,25985 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378575 ,2,829,45 ,1,0,112990 ,2,14956,211385 ,2,822,25985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366045 ,2,829,45 ,1,0,100 ,2,14956,213325 ,2,822,25985 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370565 ,2,829,45 ,1,0,100 ,1,1,599975 ,1,2,561020 ,1,3,599875 ,2,14956,2855 ,2,822,26085 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391910 ,2,829,45 ,1,0,181075 ,1,1,181045 ,1,2,181140 ,1,3,181345 ,1,4,181465 ,1,5,181315 ,1,6,181355 ,1,7,181455 ,1,8,181375 ,1,9,181505 ,1,10,181365 ,1,11,181160 ,1,12,180965 ,1,13,181130 ,1,14,181390 ,1,15,181105 ,1,16,181420 ,1,17,181495 ,1,18,181475 ,1,19,180985 ,1,20,181035 ,1,21,180975 ,1,22,181025 ,1,23,181515 ,2,14956,2855 ,2,822,25965 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391715 ,2,829,45 ,2,14956,223045 ,2,822,25965 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416200 ,2,829,45 ,1,0,181095 ,1,1,181630 ,1,2,181410 ,1,3,180940 ,1,4,181400 ,1,5,181660 ,1,6,181620 ,1,7,181610 ,1,8,181640 ,1,9,180920 ,1,10,181595 ,1,11,181585 ,1,12,181575 ,1,13,181565 ,2,14956,223055 ,2,822,25965 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,313500 ,2,829,45 ,1,0,181575 ,1,1,181505 ,2,14956,223065 ,2,822,25965 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,313510 ,2,829,45 ,1,0,181595 ,1,1,181585 ,1,2,181505 ,2,14956,223075 ,2,822,25965 ,2,14975,561515 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,313520 ,2,829,45 ,1,0,181075 ,1,1,181505 ,2,14956,223090 ,2,822,25965 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313530 ,2,829,45 ,1,0,90655 ,1,1,181710 ,1,2,89135 ,1,3,181670 ,2,14956,250930 ,2,822,25925 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398720 ,2,829,45 ,1,0,584635 ,2,14956,213325 ,2,822,25925 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371275 ,2,829,45 ,1,0,181670 ,1,1,181690 ,1,2,181680 ,1,3,181710 ,2,14956,223110 ,2,822,25925 ,2,14975,570055 ,2,14976,25700 ,2,14977,25690 ,2,14965,45 ,2,14978,45 ,2,14979,313560 ,2,829,45 ,1,0,584675 ,2,14956,212310 ,2,822,26095 ,2,14975,570165 ,2,14976,23450 ,2,14977,63840 ,2,14965,45 ,2,14978,45 ,2,14979,377580 ,2,829,45 ,1,0,584645 ,2,14956,223175 ,2,822,26095 ,2,14975,570165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313580 ,2,829,45 ,1,0,181740 ,2,14956,182390 ,2,822,26115 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384265 ,2,829,45 ,1,0,181790 ,1,1,83445 ,1,2,83820 ,2,14956,2855 ,2,822,26125 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415270 ,2,829,45 ,1,0,181810 ,2,14956,216035 ,2,822,51840 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413485 ,2,829,45 ,1,0,181810 ,1,1,181800 ,1,2,181835 ,1,3,181820 ,1,4,181720 ,1,5,181790 ,2,14956,184135 ,2,822,51840 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409125 ,2,829,45 ,1,0,83760 ,2,14956,217335 ,2,822,51840 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415020 ,2,829,45 ,2,14956,217345 ,2,822,51840 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412255 ,2,829,45 ,1,0,181845 ,1,1,181855 ,2,14956,6245 ,2,822,26165 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389055 ,2,829,45 ,2,14956,13210 ,2,822,26165 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397440 ,2,829,45 ,1,0,620805 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,182720 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,182710 ,1,12,182700 ,1,13,182690 ,1,14,182680 ,1,15,65 ,1,16,182670 ,1,17,182620 ,1,18,65 ,1,19,182610 ,1,20,182600 ,1,21,182590 ,1,22,65 ,1,23,182580 ,1,24,182570 ,1,25,65 ,1,26,181865 ,1,27,65 ,1,28,182560 ,1,29,65 ,1,30,182550 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,182515 ,1,37,65 ,1,38,182505 ,1,39,65 ,1,40,65 ,1,41,182495 ,1,42,182485 ,1,43,182730 ,1,44,65 ,1,45,65 ,1,46,182470 ,1,47,65 ,1,48,65 ,1,49,182460 ,1,50,182450 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,181915 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,181905 ,1,63,65 ,1,64,181895 ,1,65,65 ,2,14956,223450 ,2,822,51850 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258420 ,2,14979,313630 ,2,829,45 ,2,14956,223535 ,2,822,26185 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,113340 ,2,14979,2415 ,2,829,45 ,1,0,182440 ,1,1,182405 ,1,2,182395 ,1,3,182385 ,1,4,182375 ,1,5,182365 ,1,6,182355 ,1,7,181925 ,1,8,181950 ,2,14956,223525 ,2,822,26185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232225 ,2,14979,313665 ,2,829,45 ,1,0,167940 ,1,1,45 ,2,14956,223515 ,2,822,26195 ,2,14975,110 ,2,14976,24020 ,2,14977,64065 ,2,14965,45 ,2,14978,45 ,2,14979,313695 ,2,829,45 ,1,0,181960 ,1,1,182005 ,1,2,181970 ,2,14956,223560 ,2,822,26185 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,113370 ,2,14979,2415 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,182025 ,2,14956,223550 ,2,822,26185 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,232235 ,2,14979,313710 ,2,829,45 ,1,0,182035 ,2,14956,223570 ,2,822,26185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313685 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,223525 ,2,822,26185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,113340 ,2,14979,313675 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,182390 ,2,822,26185 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385505 ,2,829,45 ,2,14956,223550 ,2,822,26185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,113370 ,2,14979,313720 ,2,829,45 ,2,14956,223580 ,2,822,26185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313730 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,182240 ,1,5,182230 ,1,6,182220 ,1,7,182180 ,1,8,65 ,1,9,182015 ,1,10,182170 ,1,11,65 ,1,12,182160 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,182150 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,182135 ,1,21,182125 ,1,22,65 ,1,23,182115 ,1,24,182105 ,1,25,65 ,1,26,182080 ,1,27,65 ,1,28,65 ,1,29,182070 ,1,30,65 ,1,31,182060 ,1,32,182050 ,1,33,65 ,2,14956,223625 ,2,822,26185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364885 ,2,829,45 ,1,0,182115 ,1,1,182180 ,1,2,182070 ,1,3,182170 ,1,4,182060 ,1,5,182240 ,1,6,182015 ,1,7,182105 ,1,8,182135 ,1,9,182230 ,1,10,182160 ,1,11,182080 ,1,12,182050 ,1,13,182220 ,1,14,182125 ,1,15,182150 ,2,14956,184135 ,2,822,26185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380670 ,2,829,45 ,1,0,182405 ,1,1,59500 ,2,14956,217195 ,2,822,26185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369295 ,2,829,45 ,1,0,182405 ,1,1,181865 ,1,2,57510 ,2,14956,223635 ,2,822,26185 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258420 ,2,14979,2415 ,2,829,45 ,1,0,182405 ,1,1,182375 ,1,2,181865 ,1,3,57510 ,2,14956,173945 ,2,822,26195 ,2,14975,570165 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359305 ,2,829,45 ,2,14956,223655 ,2,822,26195 ,2,14975,570265 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,313765 ,2,829,45 ,1,0,182345 ,1,1,182335 ,1,2,182295 ,1,3,182250 ,1,4,182285 ,1,5,182275 ,1,6,182265 ,2,14956,223695 ,2,822,25865 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313775 ,2,829,45 ,1,0,182405 ,2,14956,223735 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313785 ,2,829,45 ,1,0,182405 ,1,1,182220 ,1,2,182170 ,1,3,57795 ,1,4,181895 ,1,5,182230 ,1,6,182160 ,1,7,182150 ,1,8,181905 ,1,9,58895 ,1,10,182050 ,1,11,181865 ,2,14956,223745 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313795 ,2,829,45 ,1,0,182070 ,1,1,182440 ,2,14956,217195 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369305 ,2,829,45 ,1,0,182295 ,2,14956,216035 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386175 ,2,829,45 ,1,0,182495 ,1,1,182670 ,1,2,182550 ,1,3,181895 ,1,4,181905 ,1,5,182730 ,1,6,182680 ,1,7,182710 ,1,8,182690 ,1,9,182700 ,1,10,182505 ,1,11,182470 ,1,12,182610 ,1,13,182720 ,1,14,182600 ,1,15,182620 ,1,16,182515 ,1,17,182570 ,1,18,182560 ,1,19,182460 ,1,20,181915 ,1,21,182485 ,1,22,182580 ,1,23,182590 ,1,24,182450 ,1,25,181865 ,2,14956,223755 ,2,822,25865 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313805 ,2,829,45 ,1,0,182670 ,2,14956,182390 ,2,822,25865 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385510 ,2,829,45 ,1,0,93555 ,2,14956,250570 ,2,822,25865 ,2,14975,569965 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313815 ,2,829,45 ,1,0,61460 ,2,14956,250560 ,2,822,26205 ,2,14975,570275 ,2,14976,24020 ,2,14977,64125 ,2,14965,45 ,2,14978,45 ,2,14979,313825 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,182775 ,1,3,171975 ,1,4,45 ,1,5,182765 ,1,6,166650 ,1,7,45 ,1,8,182755 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,223805 ,2,822,26205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387060 ,2,829,45 ,1,0,584775 ,2,14956,2855 ,2,822,26205 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391325 ,2,829,45 ,1,0,584760 ,2,14956,250520 ,2,822,26205 ,2,14975,570280 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,183190 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,183160 ,1,9,182740 ,1,10,183150 ,1,11,65 ,1,12,183140 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,183130 ,1,19,183120 ,1,20,183100 ,1,21,183090 ,1,22,183050 ,1,23,65 ,1,24,65 ,1,25,183040 ,1,26,183030 ,1,27,65 ,1,28,183020 ,1,29,65 ,1,30,65 ,1,31,183010 ,1,32,183000 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,182765 ,1,37,182775 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,182990 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,182980 ,1,46,65 ,1,47,182940 ,1,48,182930 ,1,49,65 ,1,50,65 ,1,51,182910 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,182895 ,1,57,182885 ,1,58,182755 ,1,59,182875 ,1,60,182865 ,1,61,182830 ,1,62,182820 ,1,63,182810 ,1,64,65 ,1,65,182800 ,2,14956,2855 ,2,822,26285 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415470 ,2,829,45 ,1,0,584760 ,1,1,558250 ,2,14956,223805 ,2,822,26265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313835 ,2,829,45 ,1,0,183110 ,2,14956,2855 ,2,822,26265 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391310 ,2,829,45 ,1,0,292680 ,1,1,45 ,2,14956,187520 ,2,822,26265 ,2,14975,561335 ,2,14976,24120 ,2,14977,85385 ,2,14965,45 ,2,14978,45 ,2,14979,313875 ,2,829,45 ,1,0,182765 ,1,1,182990 ,1,2,182755 ,1,3,183030 ,1,4,183040 ,1,5,182885 ,1,6,183160 ,1,7,182865 ,1,8,182980 ,1,9,182740 ,1,10,183000 ,1,11,182895 ,1,12,183120 ,1,13,183050 ,1,14,183130 ,1,15,183150 ,1,16,182830 ,1,17,183090 ,1,18,182800 ,1,19,182775 ,1,20,182940 ,1,21,183190 ,1,22,182930 ,1,23,182875 ,1,24,182810 ,1,25,183140 ,1,26,183010 ,1,27,183020 ,1,28,183100 ,1,29,182910 ,1,30,182820 ,2,14956,224025 ,2,822,26305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313925 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,183230 ,1,3,171975 ,1,4,45 ,1,5,183220 ,1,6,166650 ,1,7,45 ,1,8,183210 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,182390 ,2,822,26335 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384365 ,2,829,45 ,1,0,584775 ,2,14956,223920 ,2,822,26335 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,313945 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,183635 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,183625 ,1,9,183200 ,1,10,183600 ,1,11,65 ,1,12,183590 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,183580 ,1,19,183570 ,1,20,183560 ,1,21,183550 ,1,22,183540 ,1,23,65 ,1,24,65 ,1,25,183530 ,1,26,183485 ,1,27,65 ,1,28,183475 ,1,29,65 ,1,30,65 ,1,31,183465 ,1,32,183455 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,183220 ,1,37,183230 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,183445 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,183435 ,1,46,65 ,1,47,183425 ,1,48,183415 ,1,49,65 ,1,50,65 ,1,51,183360 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,183350 ,1,57,183340 ,1,58,183210 ,1,59,183325 ,1,60,183315 ,1,61,183305 ,1,62,183295 ,1,63,183260 ,1,64,65 ,1,65,183250 ,2,14956,213590 ,2,822,26335 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258430 ,2,14979,413050 ,2,829,45 ,1,0,183220 ,1,1,183445 ,1,2,183210 ,1,3,183485 ,1,4,183530 ,1,5,183340 ,1,6,183625 ,1,7,183315 ,1,8,183435 ,1,9,183200 ,1,10,183455 ,1,11,183350 ,1,12,183570 ,1,13,183540 ,1,14,183580 ,1,15,183600 ,1,16,183305 ,1,17,183550 ,1,18,183250 ,1,19,183230 ,1,20,183425 ,1,21,183635 ,1,22,183415 ,1,23,183325 ,1,24,183260 ,1,25,183590 ,1,26,183465 ,1,27,183475 ,1,28,183560 ,1,29,183360 ,1,30,183295 ,2,14956,224005 ,2,822,26305 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,113830 ,2,14979,394190 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,183685 ,1,3,171975 ,1,4,45 ,1,5,183675 ,1,6,166650 ,1,7,45 ,1,8,183655 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,223990 ,2,822,26305 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,232245 ,2,14979,313965 ,2,829,45 ,1,0,584880 ,2,14956,215640 ,2,822,37350 ,2,14975,569070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373670 ,2,829,45 ,1,0,584860 ,2,14956,223805 ,2,822,26305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413805 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,184080 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,184070 ,1,9,183645 ,1,10,184060 ,1,11,65 ,1,12,184050 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,184020 ,1,19,184010 ,1,20,183990 ,1,21,183980 ,1,22,183970 ,1,23,65 ,1,24,65 ,1,25,183960 ,1,26,183950 ,1,27,65 ,1,28,183935 ,1,29,65 ,1,30,65 ,1,31,183925 ,1,32,183915 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,183675 ,1,37,183685 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,183905 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,183885 ,1,46,65 ,1,47,183875 ,1,48,183865 ,1,49,65 ,1,50,65 ,1,51,183800 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,183790 ,1,57,183780 ,1,58,183655 ,1,59,183770 ,1,60,183760 ,1,61,183750 ,1,62,183740 ,1,63,183730 ,1,64,65 ,1,65,183705 ,2,14956,2855 ,2,822,26305 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392250 ,2,829,45 ,1,0,584860 ,1,1,558250 ,2,14956,223990 ,2,822,26305 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,113830 ,2,14979,313975 ,2,829,45 ,1,0,184000 ,2,14956,224005 ,2,822,26405 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,113935 ,2,14979,394205 ,2,829,45 ,1,0,292740 ,1,1,45 ,2,14956,223990 ,2,822,26405 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,232275 ,2,14979,313995 ,2,829,45 ,1,0,183675 ,1,1,183905 ,1,2,183655 ,1,3,183950 ,1,4,183960 ,1,5,183780 ,1,6,184070 ,1,7,183760 ,1,8,183885 ,1,9,183645 ,1,10,183915 ,1,11,183790 ,1,12,184010 ,1,13,183970 ,1,14,184020 ,1,15,184060 ,1,16,183750 ,1,17,183980 ,1,18,183705 ,1,19,183685 ,1,20,183875 ,1,21,184080 ,1,22,183865 ,1,23,183770 ,1,24,183730 ,1,25,184050 ,1,26,183925 ,1,27,183935 ,1,28,183990 ,1,29,183800 ,1,30,183740 ,2,14956,223805 ,2,822,26405 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314020 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,184130 ,1,3,171975 ,1,4,45 ,1,5,184120 ,1,6,166650 ,1,7,45 ,1,8,184110 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,223990 ,2,822,26405 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,113935 ,2,14979,314010 ,2,829,45 ,1,0,584880 ,2,14956,224070 ,2,822,26405 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,184545 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,184530 ,1,9,184100 ,1,10,184520 ,1,11,65 ,1,12,184510 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,184500 ,1,19,184455 ,1,20,184445 ,1,21,184435 ,1,22,184425 ,1,23,65 ,1,24,65 ,1,25,184410 ,1,26,184400 ,1,27,65 ,1,28,184390 ,1,29,65 ,1,30,65 ,1,31,184380 ,1,32,184365 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,184120 ,1,37,184130 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,184355 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,184345 ,1,46,65 ,1,47,184335 ,1,48,184320 ,1,49,65 ,1,50,65 ,1,51,184300 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,184290 ,1,57,184245 ,1,58,184110 ,1,59,184235 ,1,60,184225 ,1,61,184215 ,1,62,184200 ,1,63,184190 ,1,64,65 ,1,65,184180 ,2,14956,223805 ,2,822,26395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314030 ,2,829,45 ,1,0,184120 ,1,1,184355 ,1,2,184110 ,1,3,184400 ,1,4,184410 ,1,5,184245 ,1,6,184530 ,1,7,184225 ,1,8,184345 ,1,9,184100 ,1,10,184365 ,1,11,184290 ,1,12,184455 ,1,13,184425 ,1,14,184500 ,1,15,184520 ,1,16,184215 ,1,17,184435 ,1,18,184180 ,1,19,184130 ,1,20,184335 ,1,21,184545 ,1,22,184320 ,1,23,184235 ,1,24,184190 ,1,25,184510 ,1,26,184380 ,1,27,184390 ,1,28,184445 ,1,29,184300 ,1,30,184200 ,2,14956,224100 ,2,822,26425 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,114010 ,2,14979,314040 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,184605 ,1,3,171975 ,1,4,45 ,1,5,184575 ,1,6,166650 ,1,7,45 ,1,8,184565 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,224100 ,2,822,26425 ,2,14975,599870 ,2,14976,64565 ,2,14977,23120 ,2,14965,45 ,2,14978,232285 ,2,14979,314090 ,2,829,45 ,1,0,585005 ,2,14956,223805 ,2,822,26435 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413810 ,2,829,45 ,1,0,584980 ,2,14956,224545 ,2,822,26435 ,2,14975,570460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258440 ,2,14979,409130 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,185010 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,185000 ,1,9,184555 ,1,10,184990 ,1,11,65 ,1,12,184975 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,184965 ,1,19,184955 ,1,20,184905 ,1,21,184895 ,1,22,184885 ,1,23,65 ,1,24,65 ,1,25,184875 ,1,26,184865 ,1,27,65 ,1,28,184855 ,1,29,65 ,1,30,65 ,1,31,184845 ,1,32,184835 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,184575 ,1,37,184605 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,184785 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,184775 ,1,46,65 ,1,47,184765 ,1,48,184755 ,1,49,65 ,1,50,65 ,1,51,184730 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,184720 ,1,57,184710 ,1,58,184565 ,1,59,184675 ,1,60,184665 ,1,61,184655 ,1,62,184645 ,1,63,184635 ,1,64,65 ,1,65,184625 ,2,14956,2855 ,2,822,26495 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391460 ,2,829,45 ,1,0,584980 ,1,1,558250 ,2,14956,2855 ,2,822,26505 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391445 ,2,829,45 ,1,0,184945 ,2,14956,2855 ,2,822,26515 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391450 ,2,829,45 ,1,0,292780 ,1,1,45 ,2,14956,2855 ,2,822,26445 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391465 ,2,829,45 ,1,0,184575 ,1,1,184785 ,1,2,184565 ,1,3,184865 ,1,4,184875 ,1,5,184710 ,1,6,185000 ,1,7,184665 ,1,8,184775 ,1,9,184555 ,1,10,184835 ,1,11,184720 ,1,12,184955 ,1,13,184885 ,1,14,184965 ,1,15,184990 ,1,16,184655 ,1,17,184895 ,1,18,184625 ,1,19,184605 ,1,20,184765 ,1,21,185010 ,1,22,184755 ,1,23,184675 ,1,24,184635 ,1,25,184975 ,1,26,184845 ,1,27,184855 ,1,28,184905 ,1,29,184730 ,1,30,184645 ,2,14956,224525 ,2,822,26445 ,2,14975,570490 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258450 ,2,14979,412345 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,185070 ,1,3,171975 ,1,4,45 ,1,5,185060 ,1,6,166650 ,1,7,45 ,1,8,185050 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,166650 ,2,822,26525 ,2,14975,570490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,64775 ,2,14979,314160 ,2,829,45 ,1,0,585005 ,2,14956,8315 ,2,822,26525 ,2,14975,570490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376045 ,2,829,45 ,1,0,621235 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,185445 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,185435 ,1,9,185020 ,1,10,185425 ,1,11,65 ,1,12,185415 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,185405 ,1,19,185395 ,1,20,185385 ,1,21,185375 ,1,22,185360 ,1,23,65 ,1,24,65 ,1,25,185350 ,1,26,185340 ,1,27,65 ,1,28,185330 ,1,29,65 ,1,30,65 ,1,31,185315 ,1,32,185305 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,185060 ,1,37,185070 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,185295 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,185285 ,1,46,65 ,1,47,185240 ,1,48,185230 ,1,49,65 ,1,50,65 ,1,51,185210 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,185200 ,1,57,185190 ,1,58,185050 ,1,59,185180 ,1,60,185170 ,1,61,185135 ,1,62,185125 ,1,63,185115 ,1,64,65 ,1,65,185105 ,2,14956,176805 ,2,822,26525 ,2,14975,570490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,64815 ,2,14979,314180 ,2,829,45 ,1,0,185060 ,1,1,185295 ,1,2,185050 ,1,3,185340 ,1,4,185350 ,1,5,185190 ,1,6,185435 ,1,7,185170 ,1,8,185285 ,1,9,185020 ,1,10,185305 ,1,11,185200 ,1,12,185395 ,1,13,185360 ,1,14,185405 ,1,15,185425 ,1,16,185135 ,1,17,185375 ,1,18,185105 ,1,19,185070 ,1,20,185240 ,1,21,185445 ,1,22,185230 ,1,23,185180 ,1,24,185115 ,1,25,185415 ,1,26,185315 ,1,27,185330 ,1,28,185385 ,1,29,185210 ,1,30,185125 ,2,14956,5060 ,2,822,26525 ,2,14975,570490 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375360 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,185510 ,1,3,171975 ,1,4,45 ,1,5,185500 ,1,6,166650 ,1,7,45 ,1,8,185490 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,224345 ,2,822,26545 ,2,14975,570585 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,314200 ,2,829,45 ,1,0,559105 ,2,14956,10000 ,2,822,26555 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,314235 ,2,829,45 ,1,0,615610 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,185900 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,185890 ,1,9,185480 ,1,10,185880 ,1,11,65 ,1,12,185855 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,185845 ,1,19,185835 ,1,20,65 ,1,21,185825 ,1,22,185780 ,1,23,65 ,1,24,65 ,1,25,65 ,1,26,185770 ,1,27,65 ,1,28,185760 ,1,29,65 ,1,30,65 ,1,31,185750 ,1,32,185735 ,1,33,65 ,1,34,65 ,1,35,65 ,1,36,185500 ,1,37,185510 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,185725 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,185715 ,1,46,65 ,1,47,185705 ,1,48,185685 ,1,49,65 ,1,50,65 ,1,51,185665 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,185655 ,1,57,185490 ,1,58,185640 ,1,59,185630 ,1,60,185620 ,1,61,185610 ,1,62,185560 ,1,63,185550 ,1,64,65 ,1,65,185540 ,2,14956,166620 ,2,822,26605 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,64965 ,2,14979,314245 ,2,829,45 ,1,0,185500 ,1,1,185725 ,1,2,185490 ,1,3,185770 ,1,4,185640 ,1,5,185890 ,1,6,185620 ,1,7,185715 ,1,8,185480 ,1,9,185735 ,1,10,185655 ,1,11,185835 ,1,12,185780 ,1,13,185845 ,1,14,185880 ,1,15,185610 ,1,16,185825 ,1,17,185540 ,1,18,185510 ,1,19,185705 ,1,20,185900 ,1,21,185685 ,1,22,185630 ,1,23,185550 ,1,24,185855 ,1,25,185750 ,1,26,185760 ,1,27,185665 ,1,28,185560 ,2,14956,6550 ,2,822,26605 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371920 ,2,829,45 ,1,0,59885 ,2,14956,224190 ,2,822,26605 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,314300 ,2,829,45 ,1,0,67140 ,2,14956,4685 ,2,822,26605 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383570 ,2,829,45 ,1,0,138930 ,2,14956,6870 ,2,822,26605 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359880 ,2,829,45 ,2,14956,224200 ,2,822,26605 ,2,14975,570520 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314255 ,2,829,45 ,1,0,185975 ,1,1,185965 ,1,2,185955 ,2,14956,224235 ,2,822,26625 ,2,14975,570530 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,292855 ,2,14956,206315 ,2,822,26555 ,2,14975,570535 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314310 ,2,829,45 ,2,14956,11035 ,2,822,26555 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,314320 ,2,829,45 ,1,0,272040 ,1,1,45 ,1,2,45 ,2,14956,224305 ,2,822,26555 ,2,14975,570515 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,42475 ,1,1,42560 ,1,2,42545 ,1,3,45 ,1,4,45 ,1,5,42515 ,1,6,42535 ,1,7,613975 ,2,14956,224325 ,2,822,26615 ,2,14975,570540 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314225 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356160 ,1,3,65 ,2,14956,224335 ,2,822,14600 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,224355 ,2,822,26545 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,314360 ,2,829,45 ,1,0,185985 ,2,14956,224400 ,2,822,26545 ,2,14975,570510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,2855 ,2,822,26635 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391530 ,2,829,45 ,1,0,186010 ,1,1,186000 ,2,14956,181805 ,2,822,26635 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258460 ,2,14979,412895 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356165 ,1,3,65 ,2,14956,224430 ,2,822,26635 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258470 ,2,14979,416695 ,2,829,45 ,2,14956,2855 ,2,822,26650 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391535 ,2,829,45 ,1,0,186020 ,2,14956,2855 ,2,822,26525 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391520 ,2,829,45 ,2,14956,6245 ,2,822,26525 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388940 ,2,829,45 ,1,0,185910 ,1,1,186030 ,2,14956,13210 ,2,822,26525 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397000 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186060 ,2,14956,224505 ,2,822,26525 ,2,14975,570490 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,314410 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186070 ,2,14956,224430 ,2,822,26525 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258480 ,2,14979,416690 ,2,829,45 ,1,0,186080 ,2,14956,223805 ,2,822,26660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387300 ,2,829,45 ,1,0,584805 ,2,14956,224545 ,2,822,26660 ,2,14975,570620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258510 ,2,14979,409135 ,2,829,45 ,1,0,186080 ,1,1,186105 ,1,2,186090 ,1,3,186060 ,2,14956,223805 ,2,822,26670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387305 ,2,829,45 ,1,0,73135 ,1,1,125610 ,2,14956,224545 ,2,822,26670 ,2,14975,570630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258520 ,2,14979,409140 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186115 ,2,14956,223805 ,2,822,26680 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387310 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186125 ,2,14956,224525 ,2,822,26680 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258530 ,2,14979,382335 ,2,829,45 ,1,0,186135 ,2,14956,224545 ,2,822,26680 ,2,14975,570630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258540 ,2,14979,409145 ,2,829,45 ,1,0,584895 ,2,14956,223805 ,2,822,26385 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387340 ,2,829,45 ,1,0,186135 ,1,1,186175 ,1,2,186165 ,1,3,186115 ,2,14956,250205 ,2,822,26705 ,2,14975,568430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,314455 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186185 ,2,14956,226050 ,2,822,26715 ,2,14975,561335 ,2,14976,24120 ,2,14977,66330 ,2,14965,45 ,2,14978,45 ,2,14979,314500 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186195 ,2,14956,224645 ,2,822,49185 ,2,14975,563560 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,314520 ,2,829,45 ,1,0,186215 ,2,14956,224705 ,2,822,49185 ,2,14975,570675 ,2,14976,23450 ,2,14977,65390 ,2,14965,548505 ,2,14978,45 ,2,14979,314510 ,2,829,45 ,1,0,585020 ,2,14956,217240 ,2,822,26725 ,2,14975,570685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,314550 ,2,829,45 ,1,0,186215 ,1,1,186235 ,1,2,186225 ,1,3,186185 ,2,14956,2855 ,2,822,26750 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415465 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,61975 ,1,3,62010 ,2,14956,224750 ,2,822,26780 ,2,14975,570760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314560 ,2,829,45 ,1,0,559160 ,2,14956,224760 ,2,822,26780 ,2,14975,568900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314570 ,2,829,45 ,1,0,186245 ,1,1,186285 ,2,14956,173980 ,2,822,26805 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386885 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186345 ,1,3,186295 ,2,14956,224865 ,2,822,26815 ,2,14975,599870 ,2,14976,25600 ,2,14977,65595 ,2,14965,45 ,2,14978,45 ,2,14979,314620 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186305 ,2,14956,224875 ,2,822,26815 ,2,14975,570770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,186315 ,2,14956,207085 ,2,822,51860 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412085 ,2,829,45 ,1,0,186315 ,2,14956,212985 ,2,822,51860 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258550 ,2,14979,398775 ,2,829,45 ,1,0,585200 ,2,14956,209590 ,2,822,51860 ,2,14975,570750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258550 ,2,14979,412770 ,2,829,45 ,1,0,186355 ,1,1,186325 ,2,14956,213035 ,2,822,51860 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258560 ,2,14979,398735 ,2,829,45 ,1,0,561455 ,2,14956,209580 ,2,822,51860 ,2,14975,570750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258560 ,2,14979,412860 ,2,829,45 ,1,0,186315 ,1,1,186295 ,1,2,186335 ,1,3,186345 ,2,14956,2855 ,2,822,26845 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391995 ,2,829,45 ,1,0,585200 ,2,14956,210935 ,2,822,26845 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371830 ,2,829,45 ,1,0,186400 ,1,1,186410 ,2,14956,207085 ,2,822,51875 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412095 ,2,829,45 ,1,0,293110 ,1,1,45 ,2,14956,212985 ,2,822,51875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258570 ,2,14979,398795 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,209590 ,2,822,51875 ,2,14975,570750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258570 ,2,14979,412780 ,2,829,45 ,1,0,186420 ,2,14956,213035 ,2,822,51875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258580 ,2,14979,398765 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186515 ,1,3,186430 ,2,14956,209580 ,2,822,51875 ,2,14975,570750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258580 ,2,14979,412890 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186450 ,2,14956,2855 ,2,822,26875 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391475 ,2,829,45 ,1,0,186460 ,2,14956,205435 ,2,822,26875 ,2,14975,570750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388340 ,2,829,45 ,1,0,186460 ,2,14956,2855 ,2,822,26920 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391900 ,2,829,45 ,1,0,585250 ,2,14956,6245 ,2,822,26920 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389060 ,2,829,45 ,1,0,186525 ,1,1,186470 ,2,14956,13210 ,2,822,26920 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397450 ,2,829,45 ,1,0,585210 ,2,14956,225035 ,2,822,26920 ,2,14975,567850 ,2,14976,24020 ,2,14977,65770 ,2,14965,45 ,2,14978,45 ,2,14979,314680 ,2,829,45 ,1,0,186460 ,1,1,186430 ,1,2,186480 ,1,3,186515 ,2,14956,212530 ,2,822,26920 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416765 ,2,829,45 ,1,0,585250 ,2,14956,225045 ,2,822,26920 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,314715 ,2,829,45 ,1,0,186535 ,1,1,186545 ,2,14956,212310 ,2,822,26920 ,2,14975,570885 ,2,14976,35820 ,2,14977,65780 ,2,14965,45 ,2,14978,45 ,2,14979,377665 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,62280 ,1,3,62300 ,2,14956,2855 ,2,822,26930 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415445 ,2,829,45 ,1,0,559185 ,2,14956,2855 ,2,822,26940 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391960 ,2,829,45 ,1,0,186560 ,1,1,186570 ,2,14956,211300 ,2,822,26770 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115130 ,2,14979,376660 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186645 ,1,3,186580 ,2,14956,211035 ,2,822,26770 ,2,14975,110 ,2,14976,55700 ,2,14977,23360 ,2,14965,45 ,2,14978,232295 ,2,14979,314725 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186590 ,2,14956,207015 ,2,822,26770 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115150 ,2,14979,372735 ,2,829,45 ,1,0,186615 ,2,14956,206975 ,2,822,26770 ,2,14975,599870 ,2,14976,65905 ,2,14977,65895 ,2,14965,45 ,2,14978,232305 ,2,14979,314735 ,2,829,45 ,1,0,186615 ,2,14956,211035 ,2,822,26770 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,115130 ,2,14979,372325 ,2,829,45 ,1,0,585285 ,2,14956,225300 ,2,822,26770 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416740 ,2,829,45 ,1,0,186670 ,1,1,186625 ,2,14956,225340 ,2,822,26770 ,2,14975,599940 ,2,14976,24020 ,2,14977,65915 ,2,14965,45 ,2,14978,45 ,2,14979,314745 ,2,829,45 ,1,0,558580 ,2,14956,225350 ,2,822,26770 ,2,14975,599940 ,2,14976,24020 ,2,14977,65915 ,2,14965,45 ,2,14978,45 ,2,14979,314755 ,2,829,45 ,1,0,186615 ,1,1,186580 ,1,2,186635 ,1,3,186645 ,2,14956,213425 ,2,822,26770 ,2,14975,599870 ,2,14976,23450 ,2,14977,65925 ,2,14965,45 ,2,14978,45 ,2,14979,364450 ,2,829,45 ,1,0,585285 ,2,14956,206975 ,2,822,26770 ,2,14975,599870 ,2,14976,24020 ,2,14977,65935 ,2,14965,45 ,2,14978,115150 ,2,14979,372535 ,2,829,45 ,1,0,186680 ,1,1,186690 ,2,14956,213435 ,2,822,26770 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411015 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,62385 ,1,3,62445 ,1,4,62080 ,1,5,62175 ,2,14956,213315 ,2,822,26770 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370095 ,2,829,45 ,1,0,559205 ,2,14956,213520 ,2,822,26770 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370135 ,2,829,45 ,1,0,186700 ,1,1,186725 ,2,14956,225360 ,2,822,26770 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314765 ,2,829,45 ,1,0,585325 ,2,14956,211235 ,2,822,26770 ,2,14975,570885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,372205 ,2,829,45 ,1,0,186735 ,1,1,186745 ,2,14956,225370 ,2,822,26770 ,2,14975,570755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,186830 ,1,3,186755 ,2,14956,211190 ,2,822,26760 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370125 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186770 ,2,14956,210875 ,2,822,26760 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366495 ,2,829,45 ,1,0,186780 ,2,14956,225400 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314785 ,2,829,45 ,1,0,186780 ,2,14956,225410 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314815 ,2,829,45 ,1,0,585325 ,2,14956,225480 ,2,822,26760 ,2,14975,570740 ,2,14976,23675 ,2,14977,65990 ,2,14965,45 ,2,14978,45 ,2,14979,314825 ,2,829,45 ,1,0,186840 ,1,1,186790 ,2,14956,225450 ,2,822,26985 ,2,14975,570925 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,558415 ,2,14956,213225 ,2,822,26760 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115425 ,2,14979,2415 ,2,829,45 ,1,0,186780 ,1,1,186755 ,1,2,186850 ,1,3,186800 ,1,4,186830 ,2,14956,213225 ,2,822,26760 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232330 ,2,14979,314835 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,186870 ,2,14956,207130 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373995 ,2,829,45 ,1,0,186880 ,2,14956,211210 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369830 ,2,829,45 ,1,0,558415 ,2,14956,225490 ,2,822,26760 ,2,14975,561460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,314845 ,2,829,45 ,1,0,186880 ,1,1,186945 ,1,2,186860 ,1,3,186900 ,1,4,186890 ,2,14956,213305 ,2,822,26760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115485 ,2,14979,361725 ,2,829,45 ,1,0,585360 ,2,14956,213290 ,2,822,26760 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232340 ,2,14979,314860 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,211220 ,2,822,26760 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411425 ,2,829,45 ,1,0,186965 ,2,14956,225500 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314870 ,2,829,45 ,1,0,293275 ,1,1,45 ,2,14956,207085 ,2,822,26760 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378740 ,2,829,45 ,1,0,186955 ,1,1,186975 ,2,14956,210925 ,2,822,26760 ,2,14975,110 ,2,14976,24120 ,2,14977,55670 ,2,14965,45 ,2,14978,115570 ,2,14979,369980 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,187060 ,1,3,186990 ,1,4,62135 ,1,5,62175 ,2,14956,210925 ,2,822,26760 ,2,14975,110 ,2,14976,55660 ,2,14977,55650 ,2,14965,45 ,2,14978,232350 ,2,14979,314880 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,187000 ,2,14956,213290 ,2,822,26760 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115485 ,2,14979,2415 ,2,829,45 ,1,0,187010 ,2,14956,225510 ,2,822,26760 ,2,14975,561500 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,314890 ,2,829,45 ,1,0,187010 ,2,14956,187520 ,2,822,26225 ,2,14975,561335 ,2,14976,24120 ,2,14977,85385 ,2,14965,45 ,2,14978,45 ,2,14979,314905 ,2,829,45 ,1,0,585360 ,2,14956,211025 ,2,822,26760 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378195 ,2,829,45 ,1,0,187070 ,1,1,187020 ,2,14956,225045 ,2,822,26760 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,314915 ,2,829,45 ,1,0,585400 ,2,14956,225615 ,2,822,26760 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,115765 ,2,14979,314925 ,2,829,45 ,1,0,187010 ,1,1,186990 ,1,2,187080 ,1,3,187050 ,1,4,187060 ,2,14956,225520 ,2,822,26975 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,187110 ,2,14956,225520 ,2,822,26965 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398260 ,2,829,45 ,1,0,187120 ,2,14956,168920 ,2,822,26955 ,2,14975,609630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394010 ,2,829,45 ,1,0,585400 ,2,14956,13175 ,2,822,26955 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394160 ,2,829,45 ,1,0,187120 ,1,1,187175 ,1,2,187100 ,1,3,187165 ,1,4,187130 ,2,14956,225560 ,2,822,26955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258610 ,2,14979,2415 ,2,829,45 ,1,0,293325 ,1,1,45 ,2,14956,225580 ,2,822,26955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258620 ,2,14979,2415 ,2,829,45 ,1,0,558275 ,1,1,558245 ,2,14956,225605 ,2,822,26975 ,2,14975,570945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,187185 ,2,14956,225605 ,2,822,26965 ,2,14975,570945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,187285 ,1,3,187195 ,1,4,62145 ,2,14956,225615 ,2,822,26760 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,232360 ,2,14979,314945 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,187215 ,2,14956,208555 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,314955 ,2,829,45 ,1,0,187225 ,2,14956,213375 ,2,822,26760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115425 ,2,14979,362350 ,2,829,45 ,1,0,187225 ,2,14956,211070 ,2,822,26760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115570 ,2,14979,369850 ,2,829,45 ,1,0,585435 ,2,14956,225625 ,2,822,26760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115765 ,2,14979,2415 ,2,829,45 ,1,0,187295 ,1,1,187235 ,2,14956,213395 ,2,822,26760 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115860 ,2,14979,2415 ,2,829,45 ,1,0,585420 ,2,14956,213395 ,2,822,26760 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232395 ,2,14979,314965 ,2,829,45 ,1,0,187225 ,1,1,187195 ,1,2,187245 ,1,3,187285 ,2,14956,225650 ,2,822,26760 ,2,14975,570955 ,2,14976,24020 ,2,14977,66075 ,2,14965,45 ,2,14978,45 ,2,14979,398255 ,2,829,45 ,1,0,585435 ,2,14956,213485 ,2,822,26760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115890 ,2,14979,362070 ,2,829,45 ,1,0,187305 ,1,1,187315 ,2,14956,213475 ,2,822,26760 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232405 ,2,14979,314975 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,63370 ,1,3,63405 ,2,14956,225705 ,2,822,26760 ,2,14975,599940 ,2,14976,33775 ,2,14977,66085 ,2,14965,45 ,2,14978,45 ,2,14979,315005 ,2,829,45 ,1,0,559340 ,2,14956,213505 ,2,822,26760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,115860 ,2,14979,361435 ,2,829,45 ,1,0,187325 ,1,1,187335 ,2,14956,213385 ,2,822,26760 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364245 ,2,829,45 ,1,0,61460 ,1,1,125610 ,1,2,62540 ,1,3,62560 ,1,4,62165 ,1,5,62175 ,2,14956,213475 ,2,822,26760 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115890 ,2,14979,2415 ,2,829,45 ,1,0,559250 ,2,14956,225715 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315015 ,2,829,45 ,1,0,187345 ,1,1,187355 ,2,14956,211360 ,2,822,26760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366385 ,2,829,45 ,2,14956,225735 ,2,822,26965 ,2,14975,570945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398250 ,2,829,45 ,1,0,272050 ,1,1,45 ,1,2,45 ,2,14956,225775 ,2,822,26965 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398210 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,42945 ,1,3,45 ,1,4,42935 ,1,5,42825 ,1,6,42925 ,1,7,42890 ,1,8,42880 ,1,9,42870 ,1,10,42860 ,1,11,42845 ,1,12,45 ,1,13,614390 ,2,14956,210935 ,2,822,26965 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371485 ,2,829,45 ,1,0,585480 ,2,14956,225785 ,2,822,26965 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398185 ,2,829,45 ,1,0,187405 ,1,1,187395 ,2,14956,225795 ,2,822,26965 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398175 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370460 ,1,3,65 ,2,14956,225805 ,2,822,26965 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,398280 ,2,829,45 ,1,0,585505 ,2,14956,225820 ,2,822,26965 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398270 ,2,829,45 ,1,0,187515 ,1,1,187505 ,1,2,187495 ,1,3,187455 ,1,4,187435 ,1,5,187415 ,2,14956,225840 ,2,822,26965 ,2,14975,599940 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,315045 ,2,829,45 ,1,0,100 ,1,1,600040 ,1,2,600040 ,2,14956,225830 ,2,822,26985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,116090 ,2,14979,2415 ,2,829,45 ,1,0,585515 ,2,14956,218530 ,2,822,51885 ,2,14975,570750 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,232415 ,2,14979,315055 ,2,829,45 ,1,0,187535 ,1,1,187525 ,2,14956,218530 ,2,822,51885 ,2,14975,570750 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,116090 ,2,14979,315065 ,2,829,45 ,1,0,585535 ,2,14956,213325 ,2,822,26965 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370940 ,2,829,45 ,1,0,187555 ,1,1,187545 ,2,14956,211385 ,2,822,26965 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366195 ,2,829,45 ,2,14956,225850 ,2,822,26965 ,2,14975,570960 ,2,14976,24120 ,2,14977,66135 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,210935 ,2,822,26975 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371465 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,370505 ,1,3,65 ,1,4,65 ,1,5,370515 ,2,14956,211005 ,2,822,26975 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411265 ,2,829,45 ,1,0,585585 ,2,14956,225820 ,2,822,26975 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398265 ,2,829,45 ,1,0,187605 ,1,1,187595 ,2,14956,225840 ,2,822,26975 ,2,14975,599940 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,315120 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370495 ,1,3,65 ,2,14956,225890 ,2,822,51885 ,2,14975,570750 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,116230 ,2,14979,315130 ,2,829,45 ,1,0,585595 ,2,14956,225890 ,2,822,51885 ,2,14975,570750 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,232425 ,2,14979,315140 ,2,829,45 ,1,0,187625 ,1,1,187615 ,2,14956,225900 ,2,822,26985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,116230 ,2,14979,2415 ,2,829,45 ,2,14956,225925 ,2,822,26975 ,2,14975,570975 ,2,14976,35640 ,2,14977,66185 ,2,14965,45 ,2,14978,45 ,2,14979,315160 ,2,829,45 ,1,0,187665 ,1,1,187385 ,1,2,187655 ,1,3,187645 ,2,14956,225795 ,2,822,26975 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398155 ,2,829,45 ,1,0,125610 ,1,1,187675 ,2,14956,225935 ,2,822,26975 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315170 ,2,829,45 ,1,0,293605 ,1,1,45 ,2,14956,225945 ,2,822,26975 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315180 ,2,829,45 ,1,0,187710 ,2,14956,213435 ,2,822,26975 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364375 ,2,829,45 ,1,0,293615 ,1,1,45 ,2,14956,225735 ,2,822,26975 ,2,14975,570945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398245 ,2,829,45 ,2,14956,225785 ,2,822,26975 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398180 ,2,829,45 ,1,0,267890 ,1,1,272070 ,1,2,45 ,2,14956,225805 ,2,822,26975 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,398275 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,42955 ,1,3,43050 ,1,4,43005 ,1,5,42995 ,1,6,42985 ,1,7,613975 ,2,14956,211385 ,2,822,26975 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366180 ,2,829,45 ,2,14956,213325 ,2,822,26975 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370935 ,2,829,45 ,1,0,263375 ,1,1,263330 ,1,2,263320 ,1,3,263310 ,2,14956,225775 ,2,822,26975 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398205 ,2,829,45 ,1,0,187930 ,1,1,187920 ,1,2,187910 ,1,3,187875 ,1,4,187865 ,1,5,187855 ,1,6,187845 ,1,7,187815 ,1,8,187805 ,1,9,187775 ,2,14956,10080 ,2,822,51885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,116435 ,2,14979,383470 ,2,829,45 ,1,0,3010 ,1,1,179760 ,1,2,209800 ,2,14956,10080 ,2,822,51885 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,232435 ,2,14979,315190 ,2,829,45 ,2,14956,217830 ,2,822,51885 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,315225 ,2,829,45 ,1,0,187940 ,2,14956,166985 ,2,822,26985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,116435 ,2,14979,383075 ,2,829,45 ,2,14956,211080 ,2,822,51885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375305 ,2,829,45 ,1,0,187955 ,1,1,187825 ,2,14956,207130 ,2,822,51885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315235 ,2,829,45 ,1,0,585705 ,2,14956,171410 ,2,822,51885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411510 ,2,829,45 ,1,0,187985 ,1,1,187975 ,1,2,187965 ,2,14956,217810 ,2,822,51885 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383550 ,2,829,45 ,2,14956,207140 ,2,822,51885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373480 ,2,829,45 ,1,0,187720 ,1,1,187835 ,1,2,188025 ,1,3,188015 ,2,14956,217820 ,2,822,51885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315245 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,188065 ,1,3,293920 ,1,4,45 ,1,5,188045 ,2,14956,207085 ,2,822,51885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315255 ,2,829,45 ,1,0,188055 ,2,14956,171725 ,2,822,51885 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359890 ,2,829,45 ,1,0,188075 ,2,14956,171330 ,2,822,51885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359245 ,2,829,45 ,2,14956,2855 ,2,822,27035 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392055 ,2,829,45 ,1,0,272080 ,1,1,45 ,1,2,45 ,2,14956,226050 ,2,822,26225 ,2,14975,561335 ,2,14976,23675 ,2,14977,66310 ,2,14965,45 ,2,14978,45 ,2,14979,314530 ,2,829,45 ,1,0,43060 ,1,1,45 ,1,2,43100 ,1,3,43080 ,1,4,45 ,1,5,616170 ,2,14956,248935 ,2,822,26715 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315285 ,2,829,45 ,1,0,564895 ,2,14956,226555 ,2,822,27045 ,2,14975,599870 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,315320 ,2,829,45 ,1,0,188130 ,1,1,188085 ,2,14956,226085 ,2,822,27065 ,2,14975,564755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,389390 ,2,829,45 ,2,14956,226095 ,2,822,27065 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,385740 ,2,829,45 ,1,0,585725 ,2,14956,226105 ,2,822,27065 ,2,14975,571050 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398600 ,2,829,45 ,1,0,188035 ,1,1,189340 ,1,2,188150 ,1,3,188075 ,1,4,188055 ,1,5,188140 ,2,14956,226155 ,2,822,27075 ,2,14975,599940 ,2,14976,24120 ,2,14977,66475 ,2,14965,45 ,2,14978,45 ,2,14979,387990 ,2,829,45 ,2,14956,226105 ,2,822,27075 ,2,14975,571065 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398580 ,2,829,45 ,1,0,272140 ,1,1,272110 ,1,2,272100 ,1,3,272090 ,1,4,45 ,1,5,45 ,1,6,45 ,2,14956,226200 ,2,822,27085 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389460 ,2,829,45 ,1,0,188190 ,1,1,188180 ,1,2,188170 ,2,14956,226210 ,2,822,27085 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388975 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45 ,1,3,43220 ,1,4,43210 ,1,5,188190 ,1,6,188180 ,1,7,43170 ,1,8,43110 ,1,9,45 ,1,10,43160 ,1,11,43130 ,1,12,188170 ,1,13,614390 ,2,14956,226220 ,2,822,27085 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394275 ,2,829,45 ,2,14956,226085 ,2,822,27085 ,2,14975,564755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,389360 ,2,829,45 ,1,0,263420 ,2,14956,226095 ,2,822,27085 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,412900 ,2,829,45 ,1,0,188265 ,1,1,188255 ,1,2,188245 ,2,14956,226235 ,2,822,27085 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390450 ,2,829,45 ,1,0,188265 ,2,14956,226245 ,2,822,27085 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,226105 ,2,822,27085 ,2,14975,571075 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398585 ,2,829,45 ,1,0,188310 ,1,1,188300 ,1,2,188290 ,1,3,188275 ,2,14956,226265 ,2,822,27095 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416980 ,2,829,45 ,2,14956,226105 ,2,822,27095 ,2,14975,571095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398605 ,2,829,45 ,1,0,636580 ,1,1,615295 ,1,2,65 ,1,3,188950 ,1,4,188940 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,188930 ,1,10,65 ,1,11,65 ,1,12,188920 ,1,13,188905 ,1,14,188895 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,188885 ,1,23,188875 ,1,24,65 ,1,25,65 ,1,26,65 ,1,27,188835 ,1,28,188825 ,1,29,188815 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,188805 ,1,34,65 ,1,35,188795 ,1,36,188785 ,1,37,65 ,1,38,65 ,1,39,188775 ,1,40,65 ,1,41,65 ,1,42,188765 ,1,43,188730 ,1,44,188720 ,1,45,188710 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,188700 ,1,50,188690 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,188680 ,1,55,65 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,188670 ,1,61,65 ,1,62,188465 ,1,63,65 ,1,64,188320 ,1,65,65 ,2,14956,226375 ,2,822,51895 ,2,14975,571105 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258630 ,2,14979,315370 ,2,829,45 ,1,0,188445 ,1,1,188340 ,1,2,188065 ,2,14956,2855 ,2,822,27105 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391885 ,2,829,45 ,1,0,188360 ,1,1,189340 ,2,14956,224525 ,2,822,27105 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258640 ,2,14979,382025 ,2,829,45 ,2,14956,226415 ,2,822,51905 ,2,14975,564775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258650 ,2,14979,315390 ,2,829,45 ,1,0,272120 ,1,1,45 ,1,2,45 ,2,14956,226265 ,2,822,27045 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399420 ,2,829,45 ,1,0,43180 ,1,1,45 ,1,2,188360 ,1,3,263440 ,1,4,45 ,1,5,263450 ,1,6,188380 ,1,7,613975 ,2,14956,226235 ,2,822,27045 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390455 ,2,829,45 ,2,14956,226435 ,2,822,27045 ,2,14975,571105 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258630 ,2,14979,2415 ,2,829,45 ,1,0,188400 ,2,14956,226445 ,2,822,27045 ,2,14975,564775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315410 ,2,829,45 ,1,0,263440 ,1,1,263450 ,2,14956,2855 ,2,822,27045 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392425 ,2,829,45 ,1,0,188360 ,1,1,188380 ,2,14956,226220 ,2,822,27045 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394280 ,2,829,45 ,2,14956,226465 ,2,822,27045 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315420 ,2,829,45 ,1,0,272130 ,1,1,45 ,1,2,45 ,2,14956,226155 ,2,822,27045 ,2,14975,599940 ,2,14976,24120 ,2,14977,66475 ,2,14965,45 ,2,14978,45 ,2,14979,387995 ,2,829,45 ,1,0,263495 ,1,1,263430 ,1,2,188445 ,1,3,45 ,1,4,188435 ,1,5,263485 ,1,6,263475 ,1,7,188340 ,1,8,45 ,1,9,45 ,1,10,614025 ,2,14956,226475 ,2,822,27045 ,2,14975,571045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315430 ,2,829,45 ,1,0,188380 ,1,1,189340 ,2,14956,226485 ,2,822,27045 ,2,14975,571105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329310 ,2,829,45 ,1,0,263430 ,1,1,263475 ,1,2,263495 ,1,3,263485 ,2,14956,226200 ,2,822,27045 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389465 ,2,829,45 ,1,0,188340 ,1,1,188435 ,1,2,188445 ,2,14956,226495 ,2,822,27045 ,2,14975,564775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258650 ,2,14979,2415 ,2,829,45 ,1,0,188340 ,2,14956,226085 ,2,822,27045 ,2,14975,564755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,389395 ,2,829,45 ,1,0,127785 ,1,1,188300 ,1,2,188690 ,2,14956,226525 ,2,822,27045 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315440 ,2,829,45 ,1,0,188475 ,1,1,66360 ,2,14956,226095 ,2,822,27045 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,385745 ,2,829,45 ,1,0,188565 ,2,14956,226535 ,2,822,27045 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412845 ,2,829,45 ,1,0,57710 ,1,1,168895 ,1,2,188610 ,1,3,188565 ,1,4,58645 ,2,14956,226210 ,2,822,27045 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388980 ,2,829,45 ,1,0,127785 ,1,1,188300 ,1,2,62040 ,2,14956,226570 ,2,822,26705 ,2,14975,568900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315450 ,2,829,45 ,1,0,188300 ,1,1,128050 ,2,14956,226570 ,2,822,27130 ,2,14975,568900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315460 ,2,829,45 ,1,0,128255 ,1,1,188300 ,2,14956,224525 ,2,822,27175 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382480 ,2,829,45 ,1,0,294630 ,1,1,45 ,2,14956,226600 ,2,822,27175 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417035 ,2,829,45 ,1,0,128365 ,1,1,71035 ,1,2,59500 ,1,3,188660 ,1,4,188300 ,1,5,188690 ,2,14956,226645 ,2,822,27175 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416985 ,2,829,45 ,1,0,188300 ,1,1,128155 ,2,14956,226655 ,2,822,27175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415900 ,2,829,45 ,1,0,188300 ,1,1,188690 ,1,2,128365 ,2,14956,226720 ,2,822,27195 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117215 ,2,14979,2415 ,2,829,45 ,1,0,128335 ,1,1,188300 ,2,14956,226710 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232445 ,2,14979,315505 ,2,829,45 ,1,0,188300 ,1,1,128335 ,1,2,62040 ,2,14956,226690 ,2,822,27130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315535 ,2,829,45 ,1,0,188300 ,1,1,128335 ,2,14956,226700 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315525 ,2,829,45 ,1,0,188300 ,1,1,188690 ,1,2,62040 ,2,14956,230400 ,2,822,27195 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117265 ,2,14979,2415 ,2,829,45 ,1,0,188300 ,1,1,128365 ,1,2,128355 ,2,14956,230375 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232695 ,2,14979,315605 ,2,829,45 ,1,0,188300 ,1,1,128355 ,2,14956,226740 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315655 ,2,829,45 ,1,0,188300 ,1,1,188690 ,1,2,127910 ,1,3,62040 ,1,4,128355 ,2,14956,226750 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315665 ,2,829,45 ,1,0,128335 ,1,1,188690 ,2,14956,226965 ,2,822,27225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315750 ,2,829,45 ,1,0,188940 ,1,1,188670 ,1,2,188465 ,1,3,188690 ,1,4,188320 ,1,5,188930 ,1,6,188950 ,1,7,188710 ,1,8,188815 ,1,9,188825 ,1,10,188875 ,1,11,188765 ,1,12,188700 ,1,13,188680 ,1,14,188775 ,1,15,188785 ,1,16,188730 ,1,17,188805 ,1,18,188720 ,1,19,188905 ,1,20,188835 ,1,21,188795 ,1,22,188920 ,1,23,188895 ,1,24,188885 ,2,14956,226810 ,2,822,27225 ,2,14975,571155 ,2,14976,25600 ,2,14977,66920 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,226845 ,2,822,27225 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117355 ,2,14979,2415 ,2,829,45 ,1,0,263525 ,1,1,263505 ,1,2,263515 ,2,14956,226835 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232455 ,2,14979,315770 ,2,829,45 ,1,0,636580 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,189215 ,1,5,65 ,1,6,189205 ,1,7,188475 ,1,8,189180 ,1,9,188600 ,1,10,65 ,1,11,189170 ,1,12,65 ,1,13,188620 ,1,14,189160 ,1,15,65 ,1,16,188495 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,189150 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,189140 ,1,25,189130 ,1,26,189120 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,189110 ,1,31,188610 ,1,32,65 ,1,33,188455 ,1,34,188565 ,1,35,189080 ,1,36,65 ,1,37,189060 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,188505 ,1,49,65 ,1,50,65 ,1,51,188585 ,1,52,65 ,1,53,189030 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,189020 ,1,58,188555 ,1,59,65 ,1,60,189010 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,226835 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117355 ,2,14979,315780 ,2,829,45 ,1,0,188045 ,2,14956,207740 ,2,822,27225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315805 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,226855 ,2,822,27225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315815 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,585825 ,2,14956,226865 ,2,822,27225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315825 ,2,829,45 ,1,0,188435 ,1,1,188065 ,2,14956,226875 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117415 ,2,14979,315835 ,2,829,45 ,1,0,189110 ,1,1,188435 ,1,2,188065 ,2,14956,226875 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232465 ,2,14979,315845 ,2,829,45 ,1,0,189020 ,1,1,79300 ,2,14956,226895 ,2,822,27225 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117470 ,2,14979,2415 ,2,829,45 ,1,0,91650 ,1,1,79355 ,1,2,79335 ,2,14956,226885 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232490 ,2,14979,315855 ,2,829,45 ,1,0,295195 ,1,1,295020 ,1,2,295185 ,2,14956,226905 ,2,822,27225 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315875 ,2,829,45 ,1,0,189020 ,1,1,188475 ,1,2,188565 ,1,3,189215 ,1,4,189010 ,1,5,189205 ,1,6,189080 ,1,7,189170 ,1,8,189180 ,1,9,189130 ,1,10,189140 ,1,11,189110 ,1,12,188455 ,1,13,188495 ,1,14,188505 ,1,15,188610 ,1,16,188555 ,1,17,188585 ,1,18,188600 ,1,19,188620 ,1,20,189030 ,1,21,189060 ,1,22,189160 ,1,23,189120 ,1,24,189150 ,2,14956,226925 ,2,822,27225 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117415 ,2,14979,2415 ,2,829,45 ,2,14956,211210 ,2,822,27225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369700 ,2,829,45 ,1,0,189245 ,2,14956,226885 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117470 ,2,14979,315865 ,2,829,45 ,2,14956,226945 ,2,822,27225 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117535 ,2,14979,2415 ,2,829,45 ,1,0,263545 ,1,1,263535 ,2,14956,226935 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232500 ,2,14979,315900 ,2,829,45 ,1,0,188160 ,1,1,189235 ,1,2,189265 ,1,3,189225 ,1,4,189330 ,1,5,189320 ,2,14956,226935 ,2,822,27225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117535 ,2,14979,315910 ,2,829,45 ,2,14956,207285 ,2,822,27225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315920 ,2,829,45 ,1,0,272175 ,1,1,45 ,1,2,45 ,2,14956,230315 ,2,822,27235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315740 ,2,829,45 ,1,0,43230 ,1,1,45 ,1,2,613640 ,2,14956,217455 ,2,822,27245 ,2,14975,571180 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384950 ,2,829,45 ,1,0,564895 ,2,14956,227050 ,2,822,27245 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258660 ,2,14979,412365 ,2,829,45 ,1,0,189350 ,1,1,189365 ,2,14956,2855 ,2,822,27255 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415420 ,2,829,45 ,1,0,186060 ,2,14956,213590 ,2,822,27245 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258670 ,2,14979,413345 ,2,829,45 ,1,0,186115 ,2,14956,179850 ,2,822,27360 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381895 ,2,829,45 ,1,0,186185 ,2,14956,2855 ,2,822,27370 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415145 ,2,829,45 ,1,0,61975 ,2,14956,166610 ,2,822,27390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,67175 ,2,14979,316005 ,2,829,45 ,1,0,186345 ,2,14956,10080 ,2,822,27390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,117685 ,2,14979,383555 ,2,829,45 ,1,0,186515 ,2,14956,10080 ,2,822,27390 ,2,14975,110 ,2,14976,67165 ,2,14977,23120 ,2,14965,45 ,2,14978,232510 ,2,14979,316015 ,2,829,45 ,1,0,62280 ,2,14956,166985 ,2,822,27390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117685 ,2,14979,383175 ,2,829,45 ,1,0,186645 ,2,14956,2855 ,2,822,27390 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391425 ,2,829,45 ,1,0,62385 ,2,14956,227140 ,2,822,27390 ,2,14975,571325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,186830 ,2,14956,166610 ,2,822,27400 ,2,14975,571330 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,67240 ,2,14979,316040 ,2,829,45 ,1,0,187060 ,2,14956,10080 ,2,822,27400 ,2,14975,571330 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,117780 ,2,14979,383560 ,2,829,45 ,1,0,187285 ,2,14956,10080 ,2,822,27400 ,2,14975,571330 ,2,14976,67255 ,2,14977,23360 ,2,14965,45 ,2,14978,232520 ,2,14979,316050 ,2,829,45 ,1,0,63370 ,2,14956,166985 ,2,822,27400 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117780 ,2,14979,383180 ,2,829,45 ,1,0,62540 ,2,14956,227160 ,2,822,27400 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,316070 ,2,829,45 ,1,0,295515 ,1,1,45 ,2,14956,227170 ,2,822,27400 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,316095 ,2,829,45 ,1,0,189395 ,1,1,57710 ,2,14956,227185 ,2,822,27400 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,316105 ,2,829,45 ,1,0,186135 ,2,14956,227195 ,2,822,27400 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,316115 ,2,829,45 ,1,0,186215 ,2,14956,227205 ,2,822,27400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316125 ,2,829,45 ,2,14956,227215 ,2,822,27400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316145 ,2,829,45 ,1,0,272185 ,1,1,45 ,1,2,45 ,2,14956,227265 ,2,822,27400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316135 ,2,829,45 ,1,0,45 ,1,1,43265 ,1,2,613640 ,2,14956,187610 ,2,822,27400 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359530 ,2,829,45 ,2,14956,227275 ,2,822,27400 ,2,14975,571335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,189440 ,1,1,189460 ,1,2,189450 ,2,14956,174425 ,2,822,51950 ,2,14975,559540 ,2,14976,23450 ,2,14977,28905 ,2,14965,45 ,2,14978,45 ,2,14979,412630 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,189480 ,2,14956,173980 ,2,822,51950 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413745 ,2,829,45 ,1,0,585925 ,2,14956,2855 ,2,822,51950 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391420 ,2,829,45 ,2,14956,2855 ,2,822,27420 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415165 ,2,829,45 ,1,0,189480 ,1,1,189570 ,1,2,189550 ,1,3,189540 ,1,4,189470 ,1,5,189530 ,1,6,189520 ,2,14956,2855 ,2,822,27460 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415170 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,189660 ,1,3,166650 ,1,4,45 ,1,5,189640 ,2,14956,211300 ,2,822,27470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,117985 ,2,14979,376705 ,2,829,45 ,1,0,189650 ,2,14956,211035 ,2,822,27470 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,232535 ,2,14979,316165 ,2,829,45 ,1,0,189670 ,2,14956,227420 ,2,822,27470 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316210 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,356210 ,1,3,65 ,2,14956,227430 ,2,822,27470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,316220 ,2,829,45 ,2,14956,184135 ,2,822,27470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381140 ,2,829,45 ,1,0,272195 ,1,1,45 ,1,2,45 ,2,14956,227485 ,2,822,27470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388355 ,2,829,45 ,1,0,45 ,1,1,43305 ,1,2,613640 ,2,14956,227495 ,2,822,27470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393305 ,2,829,45 ,2,14956,227505 ,2,822,27470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316230 ,2,829,45 ,1,0,189600 ,1,1,189650 ,1,2,189670 ,2,14956,228665 ,2,822,27470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316240 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,189690 ,2,14956,227525 ,2,822,27290 ,2,14975,609645 ,2,14976,24020 ,2,14977,67485 ,2,14965,548620 ,2,14978,45 ,2,14979,316265 ,2,829,45 ,1,0,189700 ,2,14956,227505 ,2,822,27515 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413735 ,2,829,45 ,1,0,584805 ,2,14956,179850 ,2,822,27515 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381855 ,2,829,45 ,1,0,189700 ,1,1,189755 ,1,2,189745 ,1,3,189735 ,1,4,189680 ,1,5,189710 ,2,14956,227545 ,2,822,27515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,316335 ,2,829,45 ,1,0,189700 ,2,14956,227555 ,2,822,27515 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316345 ,2,829,45 ,1,0,189860 ,1,1,189765 ,2,14956,227580 ,2,822,27515 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316365 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,189775 ,2,14956,227590 ,2,822,27515 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398120 ,2,829,45 ,1,0,189860 ,2,14956,227600 ,2,822,27515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,584895 ,2,14956,227610 ,2,822,27515 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388800 ,2,829,45 ,1,0,189860 ,1,1,189850 ,1,2,189805 ,1,3,189795 ,1,4,189765 ,1,5,189785 ,2,14956,227650 ,2,822,27515 ,2,14975,571405 ,2,14976,24120 ,2,14977,67585 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,189965 ,1,1,189870 ,2,14956,224525 ,2,822,27525 ,2,14975,570490 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258680 ,2,14979,412350 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,189880 ,2,14956,227740 ,2,822,27515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,316255 ,2,829,45 ,1,0,189965 ,2,14956,228655 ,2,822,27535 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,316375 ,2,829,45 ,1,0,585020 ,2,14956,227785 ,2,822,27575 ,2,14975,110 ,2,14976,24020 ,2,14977,67740 ,2,14965,45 ,2,14978,45 ,2,14979,398330 ,2,829,45 ,1,0,189965 ,1,1,189925 ,1,2,189915 ,1,3,189905 ,1,4,189870 ,1,5,189895 ,2,14956,227805 ,2,822,27575 ,2,14975,110 ,2,14976,23450 ,2,14977,67750 ,2,14965,45 ,2,14978,45 ,2,14979,398370 ,2,829,45 ,1,0,186315 ,1,1,61535 ,2,14956,227815 ,2,822,27575 ,2,14975,110 ,2,14976,23130 ,2,14977,67760 ,2,14965,45 ,2,14978,45 ,2,14979,394100 ,2,829,45 ,1,0,190130 ,1,1,190070 ,1,2,190045 ,1,3,189975 ,2,14956,227610 ,2,822,27575 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388805 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,189985 ,2,14956,227835 ,2,822,27575 ,2,14975,571435 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,190045 ,2,14956,227855 ,2,822,27575 ,2,14975,571445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258705 ,2,14979,412915 ,2,829,45 ,1,0,559165 ,2,14956,4490 ,2,822,27575 ,2,14975,110 ,2,14976,67780 ,2,14977,67770 ,2,14965,45 ,2,14978,250645 ,2,14979,2415 ,2,829,45 ,1,0,190045 ,1,1,190035 ,1,2,190025 ,1,3,190015 ,1,4,189975 ,1,5,189995 ,2,14956,227935 ,2,822,27535 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,316440 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,190080 ,2,14956,227945 ,2,822,27535 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,316450 ,2,829,45 ,1,0,190130 ,2,14956,228580 ,2,822,27535 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,316460 ,2,829,45 ,1,0,561455 ,2,14956,227805 ,2,822,27615 ,2,14975,110 ,2,14976,23450 ,2,14977,67750 ,2,14965,45 ,2,14978,45 ,2,14979,398375 ,2,829,45 ,1,0,190130 ,1,1,190120 ,1,2,190110 ,1,3,190100 ,1,4,190070 ,1,5,190090 ,2,14956,227955 ,2,822,27635 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399155 ,2,829,45 ,2,14956,227965 ,2,822,27635 ,2,14975,571520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399165 ,2,829,45 ,1,0,272205 ,1,1,45 ,1,2,45 ,2,14956,182390 ,2,822,27645 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384355 ,2,829,45 ,1,0,43360 ,1,1,45 ,1,2,613640 ,2,14956,213590 ,2,822,27645 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258715 ,2,14979,413045 ,2,829,45 ,2,14956,228045 ,2,822,27675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399185 ,2,829,45 ,1,0,263595 ,2,14956,182390 ,2,822,27685 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384350 ,2,829,45 ,1,0,190200 ,1,1,190190 ,2,14956,217015 ,2,822,27725 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379830 ,2,829,45 ,1,0,190200 ,2,14956,215285 ,2,822,27725 ,2,14975,571575 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379120 ,2,829,45 ,2,14956,213375 ,2,822,27775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,118535 ,2,14979,362160 ,2,829,45 ,1,0,272220 ,1,1,45 ,1,2,45 ,2,14956,213225 ,2,822,27775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232545 ,2,14979,316585 ,2,829,45 ,1,0,45 ,1,1,43325 ,1,2,613640 ,2,14956,213305 ,2,822,27775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,118565 ,2,14979,361530 ,2,829,45 ,2,14956,213290 ,2,822,27775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232555 ,2,14979,316605 ,2,829,45 ,1,0,190235 ,1,1,190225 ,1,2,190140 ,1,3,190210 ,2,14956,213485 ,2,822,27775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,118585 ,2,14979,361815 ,2,829,45 ,2,14956,213475 ,2,822,27775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232565 ,2,14979,316650 ,2,829,45 ,1,0,272230 ,1,1,45 ,1,2,45 ,2,14956,213505 ,2,822,27775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,118625 ,2,14979,360830 ,2,829,45 ,1,0,45 ,1,1,43430 ,1,2,43420 ,1,3,43410 ,1,4,45 ,1,5,43390 ,1,6,614045 ,2,14956,213395 ,2,822,27775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,232585 ,2,14979,316670 ,2,829,45 ,2,14956,211025 ,2,822,27775 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,118645 ,2,14979,316690 ,2,829,45 ,1,0,190325 ,1,1,190315 ,1,2,190305 ,2,14956,211025 ,2,822,27775 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,232595 ,2,14979,316700 ,2,829,45 ,2,14956,210935 ,2,822,27775 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411515 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,190580 ,1,3,190570 ,1,4,65 ,1,5,190560 ,1,6,190550 ,1,7,190535 ,1,8,190525 ,1,9,190505 ,1,10,65 ,1,11,190465 ,1,12,65 ,1,13,65 ,1,14,190445 ,1,15,190435 ,1,16,65 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,190415 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,190405 ,1,25,65 ,1,26,65 ,1,27,190395 ,1,28,190355 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,190345 ,1,33,190335 ,2,14956,213385 ,2,822,27775 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363485 ,2,829,45 ,1,0,190355 ,1,1,190560 ,1,2,190535 ,2,14956,213325 ,2,822,27775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370725 ,2,829,45 ,1,0,190525 ,1,1,190560 ,1,2,190535 ,1,3,190355 ,1,4,190345 ,1,5,190335 ,1,6,190415 ,1,7,190550 ,1,8,190505 ,1,9,190395 ,1,10,190465 ,1,11,190570 ,1,12,190405 ,1,13,190435 ,1,14,190445 ,1,15,190580 ,2,14956,213530 ,2,822,27775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370435 ,2,829,45 ,2,14956,213225 ,2,822,27775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118535 ,2,14979,316595 ,2,829,45 ,1,0,190615 ,1,1,190605 ,2,14956,213290 ,2,822,27775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118565 ,2,14979,316615 ,2,829,45 ,2,14956,213475 ,2,822,27775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118585 ,2,14979,316660 ,2,829,45 ,1,0,190840 ,1,1,190795 ,1,2,190295 ,1,3,190785 ,1,4,190775 ,1,5,190765 ,1,6,190755 ,1,7,190745 ,1,8,190255 ,1,9,190725 ,1,10,190665 ,1,11,190645 ,1,12,190625 ,2,14956,213395 ,2,822,27775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118625 ,2,14979,316680 ,2,829,45 ,2,14956,211385 ,2,822,27775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366075 ,2,829,45 ,1,0,272240 ,1,1,45 ,1,2,45 ,2,14956,228095 ,2,822,27775 ,2,14975,571620 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,43470 ,1,2,43500 ,1,3,43490 ,1,4,45 ,1,5,616170 ,2,14956,228160 ,2,822,27745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,118800 ,2,14979,2415 ,2,829,45 ,2,14956,228150 ,2,822,27745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232605 ,2,14979,316710 ,2,829,45 ,1,0,190890 ,1,1,190880 ,2,14956,211360 ,2,822,27745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366265 ,2,829,45 ,2,14956,211025 ,2,822,27745 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377940 ,2,829,45 ,1,0,190950 ,1,1,190940 ,1,2,190910 ,1,3,190900 ,2,14956,228150 ,2,822,27745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,118800 ,2,14979,316720 ,2,829,45 ,1,0,570685 ,2,14956,207085 ,2,822,27745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378610 ,2,829,45 ,1,0,618495 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,191450 ,1,6,65 ,1,7,191440 ,1,8,191430 ,1,9,65 ,1,10,190850 ,1,11,65 ,1,12,191410 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,191400 ,1,18,65 ,1,19,190870 ,1,20,65 ,1,21,65 ,1,22,191345 ,1,23,191335 ,1,24,191325 ,1,25,65 ,1,26,65 ,1,27,191315 ,1,28,191290 ,1,29,191280 ,1,30,191270 ,1,31,65 ,1,32,191260 ,1,33,191225 ,1,34,191215 ,1,35,191205 ,1,36,191195 ,1,37,191175 ,1,38,191165 ,1,39,191155 ,1,40,191120 ,1,41,191110 ,1,42,65 ,1,43,65 ,1,44,191090 ,1,45,191070 ,1,46,65 ,1,47,191060 ,1,48,191010 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,191000 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,65 ,1,57,190990 ,1,58,65 ,1,59,65 ,1,60,190980 ,1,61,190970 ,1,62,190960 ,1,63,65 ,1,64,65 ,1,65,65 ,2,14956,207130 ,2,822,27745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373815 ,2,829,45 ,1,0,71925 ,1,1,71975 ,2,14956,228175 ,2,822,27745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316760 ,2,829,45 ,1,0,118940 ,1,1,103320 ,2,14956,228185 ,2,822,27745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316770 ,2,829,45 ,1,0,3010 ,1,1,225170 ,1,2,186035 ,1,3,225470 ,1,4,209800 ,2,14956,211290 ,2,822,27745 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366020 ,2,829,45 ,1,0,191175 ,2,14956,228195 ,2,822,27745 ,2,14975,571595 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,190990 ,1,1,191120 ,1,2,191290 ,1,3,191325 ,1,4,191280 ,1,5,191450 ,1,6,191060 ,1,7,191165 ,1,8,191110 ,1,9,191155 ,1,10,190970 ,1,11,191270 ,1,12,190870 ,1,13,191440 ,1,14,191215 ,1,15,191010 ,1,16,191195 ,1,17,191225 ,1,18,191205 ,1,19,190980 ,1,20,191315 ,1,21,191260 ,1,22,191000 ,1,23,191430 ,1,24,191400 ,1,25,191070 ,1,26,190960 ,1,27,191175 ,1,28,190850 ,1,29,191410 ,1,30,191090 ,1,31,191335 ,1,32,191345 ,2,14956,228285 ,2,822,27735 ,2,14975,571585 ,2,14976,24020 ,2,14977,68205 ,2,14965,45 ,2,14978,45 ,2,14979,316780 ,2,829,45 ,2,14956,228230 ,2,822,25650 ,2,14975,569750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272250 ,1,1,45 ,1,2,45 ,2,14956,228240 ,2,822,25640 ,2,14975,569730 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,43535 ,1,2,43515 ,1,3,614705 ,2,14956,228250 ,2,822,25605 ,2,14975,569720 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,182390 ,2,822,27820 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384500 ,2,829,45 ,2,14956,228335 ,2,822,27820 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,191725 ,1,1,191690 ,1,2,191680 ,1,3,191670 ,1,4,191495 ,1,5,191660 ,1,6,191635 ,1,7,191625 ,1,8,191615 ,1,9,191605 ,1,10,191565 ,1,11,191460 ,1,12,191545 ,1,13,191525 ,1,14,191505 ,2,14956,213590 ,2,822,27820 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258725 ,2,14979,413160 ,2,829,45 ,1,0,296565 ,1,1,45 ,2,14956,218310 ,2,822,27820 ,2,14975,569335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258735 ,2,14979,410170 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,191765 ,2,14956,182390 ,2,822,27830 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384510 ,2,829,45 ,1,0,191775 ,2,14956,213590 ,2,822,27830 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258750 ,2,14979,413195 ,2,829,45 ,1,0,584805 ,2,14956,182390 ,2,822,27840 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384505 ,2,829,45 ,1,0,191775 ,1,1,191835 ,1,2,191825 ,1,3,191795 ,1,4,191785 ,1,5,191755 ,2,14956,213590 ,2,822,27840 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258760 ,2,14979,413165 ,2,829,45 ,1,0,189785 ,2,14956,228390 ,2,822,27850 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,119110 ,2,14979,2415 ,2,829,45 ,1,0,191845 ,2,14956,228380 ,2,822,27850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232615 ,2,14979,316840 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,191855 ,2,14956,182390 ,2,822,27850 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385735 ,2,829,45 ,1,0,191865 ,2,14956,228380 ,2,822,27850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,119110 ,2,14979,316860 ,2,829,45 ,1,0,584895 ,2,14956,184135 ,2,822,27850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380835 ,2,829,45 ,1,0,191865 ,1,1,191930 ,1,2,191895 ,1,3,191885 ,1,4,191875 ,1,5,191845 ,2,14956,223625 ,2,822,27850 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366000 ,2,829,45 ,1,0,189895 ,2,14956,217195 ,2,822,27850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369615 ,2,829,45 ,1,0,191940 ,2,14956,182390 ,2,822,27885 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384480 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,191950 ,2,14956,228410 ,2,822,27885 ,2,14975,571715 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,191960 ,2,14956,213590 ,2,822,27885 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258770 ,2,14979,413150 ,2,829,45 ,1,0,585020 ,2,14956,182390 ,2,822,27895 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384485 ,2,829,45 ,1,0,191960 ,1,1,192005 ,1,2,191995 ,1,3,191985 ,1,4,191975 ,1,5,191940 ,2,14956,228455 ,2,822,27895 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,189995 ,2,14956,213590 ,2,822,27895 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258780 ,2,14979,413155 ,2,829,45 ,1,0,192060 ,2,14956,218310 ,2,822,27895 ,2,14975,569335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258825 ,2,14979,410165 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192070 ,2,14956,217455 ,2,822,27705 ,2,14975,571725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384690 ,2,829,45 ,1,0,192080 ,2,14956,182390 ,2,822,27695 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384475 ,2,829,45 ,1,0,559165 ,2,14956,184880 ,2,822,27695 ,2,14975,571730 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,192080 ,1,1,192120 ,1,2,192110 ,1,3,192100 ,1,4,192090 ,1,5,192060 ,2,14956,227785 ,2,822,27615 ,2,14975,110 ,2,14976,24020 ,2,14977,67740 ,2,14965,45 ,2,14978,45 ,2,14979,398335 ,2,829,45 ,1,0,190090 ,2,14956,227815 ,2,822,27615 ,2,14975,110 ,2,14976,23130 ,2,14977,67760 ,2,14965,45 ,2,14978,45 ,2,14979,394105 ,2,829,45 ,1,0,192130 ,2,14956,227610 ,2,822,27615 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388810 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192165 ,2,14956,228560 ,2,822,27615 ,2,14975,571470 ,2,14976,23130 ,2,14977,68470 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,192175 ,2,14956,227495 ,2,822,27535 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393335 ,2,829,45 ,1,0,561455 ,2,14956,227505 ,2,822,27535 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387020 ,2,829,45 ,1,0,192175 ,1,1,192215 ,1,2,192205 ,1,3,192195 ,1,4,192185 ,1,5,192130 ,2,14956,227600 ,2,822,27535 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,192225 ,2,14956,179850 ,2,822,27535 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381860 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192235 ,2,14956,227590 ,2,822,27535 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398125 ,2,829,45 ,1,0,192265 ,2,14956,228590 ,2,822,27535 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,585210 ,2,14956,228600 ,2,822,27535 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391285 ,2,829,45 ,1,0,192265 ,1,1,192305 ,1,2,192295 ,1,3,192285 ,1,4,192275 ,1,5,192225 ,2,14956,228610 ,2,822,27535 ,2,14975,571430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,192315 ,2,14956,211035 ,2,822,27470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,117985 ,2,14979,372340 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192325 ,2,14956,228600 ,2,822,27470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391280 ,2,829,45 ,1,0,192335 ,2,14956,228720 ,2,822,27470 ,2,14975,571370 ,2,14976,23675 ,2,14977,68505 ,2,14965,45 ,2,14978,45 ,2,14979,316925 ,2,829,45 ,1,0,585210 ,2,14956,228675 ,2,822,27290 ,2,14975,571240 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,192335 ,1,1,192390 ,1,2,192380 ,1,3,192370 ,1,4,192360 ,1,5,192315 ,2,14956,228685 ,2,822,27915 ,2,14975,571760 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,316935 ,2,829,45 ,1,0,192400 ,2,14956,166650 ,2,822,27905 ,2,14975,571765 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,68525 ,2,14979,316965 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192410 ,2,14956,8315 ,2,822,27905 ,2,14975,571765 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376035 ,2,829,45 ,1,0,192420 ,2,14956,176805 ,2,822,27905 ,2,14975,571765 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,68535 ,2,14979,316975 ,2,829,45 ,1,0,558280 ,2,14956,5060 ,2,822,27905 ,2,14975,571765 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375345 ,2,829,45 ,1,0,192420 ,1,1,192490 ,1,2,192480 ,1,3,192470 ,1,4,192430 ,1,5,192400 ,2,14956,2855 ,2,822,27905 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391515 ,2,829,45 ,1,0,192500 ,2,14956,228750 ,2,822,27905 ,2,14975,571765 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316985 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192510 ,2,14956,228770 ,2,822,27915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,316995 ,2,829,45 ,1,0,192520 ,2,14956,228780 ,2,822,27915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317005 ,2,829,45 ,1,0,558280 ,2,14956,228590 ,2,822,27915 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390535 ,2,829,45 ,1,0,192520 ,1,1,192575 ,1,2,192565 ,1,3,192540 ,1,4,192530 ,1,5,192500 ,2,14956,228790 ,2,822,27915 ,2,14975,571330 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317015 ,2,829,45 ,1,0,62070 ,1,1,192585 ,2,14956,184135 ,2,822,27915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381155 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192595 ,2,14956,228800 ,2,822,27915 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,317025 ,2,829,45 ,1,0,192605 ,2,14956,179850 ,2,822,27915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381890 ,2,829,45 ,1,0,558580 ,2,14956,228810 ,2,822,27915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393135 ,2,829,45 ,1,0,192605 ,1,1,192665 ,1,2,192635 ,1,3,192625 ,1,4,192615 ,1,5,192585 ,2,14956,184135 ,2,822,27290 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409170 ,2,829,45 ,1,0,62070 ,2,14956,228870 ,2,822,27290 ,2,14975,571775 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317050 ,2,829,45 ,1,0,62070 ,1,1,192675 ,2,14956,227610 ,2,822,27290 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388820 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192685 ,2,14956,228810 ,2,822,27290 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415870 ,2,829,45 ,1,0,192695 ,2,14956,228880 ,2,822,27290 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317070 ,2,829,45 ,1,0,558580 ,2,14956,227955 ,2,822,27280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399150 ,2,829,45 ,1,0,192695 ,1,1,192735 ,1,2,192725 ,1,3,192715 ,1,4,192705 ,1,5,192675 ,2,14956,227965 ,2,822,27280 ,2,14975,609640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399160 ,2,829,45 ,1,0,62080 ,1,1,62175 ,1,2,192770 ,2,14956,217015 ,2,822,27940 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379790 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192780 ,2,14956,215285 ,2,822,27940 ,2,14975,571800 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379085 ,2,829,45 ,1,0,192790 ,2,14956,182390 ,2,822,27950 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384325 ,2,829,45 ,1,0,559210 ,2,14956,229420 ,2,822,27950 ,2,14975,571805 ,2,14976,68740 ,2,14977,68730 ,2,14965,45 ,2,14978,45 ,2,14979,317110 ,2,829,45 ,1,0,192790 ,1,1,192835 ,1,2,192825 ,1,3,192815 ,1,4,192800 ,1,5,192770 ,2,14956,227050 ,2,822,27950 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258835 ,2,14979,381790 ,2,829,45 ,1,0,62080 ,1,1,62175 ,2,14956,229630 ,2,822,27950 ,2,14975,571835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258845 ,2,14979,395105 ,2,829,45 ,1,0,62080 ,1,1,62175 ,1,2,192845 ,2,14956,4490 ,2,822,28030 ,2,14975,110 ,2,14976,68770 ,2,14977,68760 ,2,14965,45 ,2,14978,250655 ,2,14979,2415 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192885 ,2,14956,2855 ,2,822,28020 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415150 ,2,829,45 ,1,0,192895 ,2,14956,211300 ,2,822,28030 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,119930 ,2,14979,376700 ,2,829,45 ,1,0,559210 ,2,14956,211035 ,2,822,28030 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,232630 ,2,14979,317165 ,2,829,45 ,1,0,192895 ,1,1,192935 ,1,2,192925 ,1,3,192915 ,1,4,192905 ,1,5,192845 ,2,14956,229570 ,2,822,28030 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,119950 ,2,14979,317175 ,2,829,45 ,1,0,62125 ,1,1,192945 ,2,14956,229570 ,2,822,28030 ,2,14975,599940 ,2,14976,68900 ,2,14977,24010 ,2,14965,45 ,2,14978,232640 ,2,14979,317185 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,192955 ,2,14956,227495 ,2,822,28030 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393300 ,2,829,45 ,1,0,192990 ,2,14956,227485 ,2,822,28030 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388350 ,2,829,45 ,1,0,558415 ,2,14956,227505 ,2,822,28030 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387015 ,2,829,45 ,1,0,192990 ,1,1,193035 ,1,2,193020 ,1,3,193010 ,1,4,193000 ,1,5,192945 ,2,14956,211035 ,2,822,28030 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119930 ,2,14979,372330 ,2,829,45 ,1,0,62125 ,2,14956,228600 ,2,822,28030 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391275 ,2,829,45 ,1,0,62135 ,1,1,62175 ,1,2,193045 ,2,14956,229610 ,2,822,28030 ,2,14975,571860 ,2,14976,23675 ,2,14977,68915 ,2,14965,45 ,2,14978,45 ,2,14979,317210 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193055 ,2,14956,229640 ,2,822,27950 ,2,14975,571835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258855 ,2,14979,395150 ,2,829,45 ,1,0,193065 ,2,14956,227855 ,2,822,27950 ,2,14975,571445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258865 ,2,14979,412755 ,2,829,45 ,1,0,585400 ,2,14956,213590 ,2,822,27950 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258875 ,2,14979,413035 ,2,829,45 ,1,0,193065 ,1,1,193130 ,1,2,193120 ,1,3,193110 ,1,4,193100 ,1,5,193045 ,2,14956,2855 ,2,822,28040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392320 ,2,829,45 ,1,0,62135 ,1,1,62175 ,2,14956,230130 ,2,822,28055 ,2,14975,571875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317230 ,2,829,45 ,1,0,62145 ,2,14956,4490 ,2,822,28065 ,2,14975,110 ,2,14976,68995 ,2,14977,68985 ,2,14965,45 ,2,14978,250665 ,2,14979,2415 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193160 ,2,14956,229690 ,2,822,28085 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,193170 ,2,14956,229700 ,2,822,28085 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,585420 ,2,14956,229720 ,2,822,28085 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398460 ,2,829,45 ,1,0,193170 ,1,1,193150 ,1,2,193215 ,1,3,193180 ,2,14956,229730 ,2,822,28085 ,2,14975,571890 ,2,14976,23450 ,2,14977,69080 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193235 ,2,14956,229720 ,2,822,28110 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398470 ,2,829,45 ,1,0,193245 ,2,14956,229750 ,2,822,28110 ,2,14975,571900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,585420 ,2,14956,229690 ,2,822,28120 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,193245 ,1,1,193225 ,1,2,193270 ,1,3,193260 ,2,14956,229700 ,2,822,28120 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,62155 ,2,14956,229720 ,2,822,28120 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398465 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193290 ,2,14956,229810 ,2,822,28120 ,2,14975,571905 ,2,14976,23450 ,2,14977,69080 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,193325 ,2,14956,2855 ,2,822,28130 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415160 ,2,829,45 ,1,0,558990 ,2,14956,227505 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387025 ,2,829,45 ,1,0,193325 ,1,1,193280 ,1,2,193345 ,1,3,193335 ,2,14956,229915 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317290 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193365 ,2,14956,227495 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393355 ,2,829,45 ,1,0,193375 ,2,14956,211035 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120335 ,2,14979,372350 ,2,829,45 ,1,0,558990 ,2,14956,211035 ,2,822,28065 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,232650 ,2,14979,317300 ,2,829,45 ,1,0,193375 ,1,1,193355 ,1,2,193395 ,1,3,193385 ,2,14956,227610 ,2,822,28065 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388815 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193430 ,2,14956,211300 ,2,822,28065 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,120335 ,2,14979,376710 ,2,829,45 ,1,0,193440 ,2,14956,229925 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317320 ,2,829,45 ,1,0,559255 ,2,14956,229935 ,2,822,28065 ,2,14975,571885 ,2,14976,24020 ,2,14977,69205 ,2,14965,45 ,2,14978,45 ,2,14979,317330 ,2,829,45 ,1,0,193440 ,1,1,193420 ,1,2,193460 ,1,3,193450 ,2,14956,229945 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317340 ,2,829,45 ,1,0,62165 ,1,1,62175 ,2,14956,229975 ,2,822,28065 ,2,14975,110 ,2,14976,23450 ,2,14977,69215 ,2,14965,45 ,2,14978,45 ,2,14979,317350 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,193480 ,2,14956,226220 ,2,822,28065 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258885 ,2,14979,392905 ,2,829,45 ,1,0,193490 ,2,14956,228600 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391295 ,2,829,45 ,1,0,559255 ,2,14956,202305 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258895 ,2,14979,414730 ,2,829,45 ,1,0,193490 ,1,1,193470 ,1,2,193535 ,1,3,193525 ,2,14956,184135 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381145 ,2,829,45 ,1,0,57795 ,1,1,125610 ,2,14956,230070 ,2,822,28065 ,2,14975,110 ,2,14976,23675 ,2,14977,69230 ,2,14965,45 ,2,14978,45 ,2,14979,317370 ,2,829,45 ,1,0,586335 ,2,14956,230080 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317380 ,2,829,45 ,1,0,193565 ,2,14956,227485 ,2,822,28065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388385 ,2,829,45 ,2,14956,230140 ,2,822,28055 ,2,14975,571875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317390 ,2,829,45 ,1,0,267890 ,1,1,272270 ,1,2,45 ,2,14956,230150 ,2,822,28055 ,2,14975,560975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317400 ,2,829,45 ,1,0,263645 ,2,14956,230160 ,2,822,28055 ,2,14975,560975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317410 ,2,829,45 ,2,14956,228045 ,2,822,28055 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399180 ,2,829,45 ,1,0,193645 ,1,1,193635 ,1,2,193595 ,1,3,193585 ,2,14956,230240 ,2,822,27235 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,120565 ,2,14979,2415 ,2,829,45 ,1,0,193655 ,2,14956,230210 ,2,822,27235 ,2,14975,110 ,2,14976,69295 ,2,14977,23120 ,2,14965,45 ,2,14978,232660 ,2,14979,317420 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,43740 ,1,3,43730 ,1,4,43720 ,1,5,43700 ,1,6,43690 ,1,7,193655 ,1,8,43680 ,1,9,43670 ,1,10,43655 ,1,11,43585 ,1,12,43645 ,1,13,263645 ,1,14,43605 ,1,15,45 ,1,16,43545 ,1,17,43635 ,1,18,43625 ,1,19,43615 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,614710 ,2,14956,230260 ,2,822,27235 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,120585 ,2,14979,2415 ,2,829,45 ,2,14956,230250 ,2,822,27235 ,2,14975,110 ,2,14976,69315 ,2,14977,23120 ,2,14965,45 ,2,14978,232685 ,2,14979,317440 ,2,829,45 ,1,0,193765 ,1,1,193755 ,1,2,193745 ,1,3,193735 ,1,4,193710 ,1,5,193700 ,1,6,193690 ,1,7,193680 ,1,8,193665 ,2,14956,182390 ,2,822,27235 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385620 ,2,829,45 ,2,14956,230210 ,2,822,27235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120565 ,2,14979,317430 ,2,829,45 ,1,0,193795 ,1,1,193785 ,1,2,193775 ,2,14956,230270 ,2,822,27235 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317475 ,2,829,45 ,2,14956,230250 ,2,822,27235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120585 ,2,14979,317465 ,2,829,45 ,1,0,193840 ,1,1,193805 ,2,14956,230285 ,2,822,27235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317485 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,369870 ,1,5,65 ,1,6,65 ,1,7,369860 ,1,8,369845 ,1,9,65 ,2,14956,184135 ,2,822,27235 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380775 ,2,829,45 ,2,14956,230295 ,2,822,27235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317495 ,2,829,45 ,1,0,193850 ,2,14956,223625 ,2,822,27235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365555 ,2,829,45 ,2,14956,217195 ,2,822,27235 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369485 ,2,829,45 ,1,0,193860 ,2,14956,230345 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315730 ,2,829,45 ,2,14956,230355 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315720 ,2,829,45 ,1,0,194065 ,1,1,194055 ,1,2,194045 ,1,3,193980 ,1,4,193970 ,1,5,193960 ,1,6,193950 ,1,7,193915 ,1,8,193905 ,1,9,193895 ,1,10,193885 ,1,11,193870 ,2,14956,197245 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315710 ,2,829,45 ,1,0,194045 ,2,14956,230365 ,2,822,26225 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315645 ,2,829,45 ,1,0,97595 ,1,1,97585 ,1,2,105230 ,2,14956,230365 ,2,822,27130 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315635 ,2,829,45 ,2,14956,2855 ,2,822,27195 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392440 ,2,829,45 ,1,0,194075 ,2,14956,184135 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382300 ,2,829,45 ,2,14956,224525 ,2,822,27195 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382500 ,2,829,45 ,1,0,194100 ,1,1,194090 ,2,14956,226600 ,2,822,27195 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417050 ,2,829,45 ,2,14956,226645 ,2,822,27195 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417000 ,2,829,45 ,1,0,194205 ,1,1,194195 ,1,2,194185 ,1,3,194175 ,1,4,194165 ,1,5,194110 ,2,14956,230410 ,2,822,27195 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,390430 ,2,829,45 ,1,0,586525 ,2,14956,226710 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117215 ,2,14979,315515 ,2,829,45 ,1,0,194260 ,1,1,194235 ,1,2,194225 ,1,3,194215 ,2,14956,230420 ,2,822,27195 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315625 ,2,829,45 ,2,14956,230375 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117265 ,2,14979,315615 ,2,829,45 ,1,0,194405 ,1,1,194395 ,1,2,194385 ,1,3,194375 ,1,4,194365 ,1,5,194355 ,1,6,194335 ,1,7,194315 ,1,8,194290 ,1,9,194270 ,2,14956,226655 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415935 ,2,829,45 ,1,0,194270 ,2,14956,230430 ,2,822,27195 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387965 ,2,829,45 ,2,14956,230455 ,2,822,27195 ,2,14975,571150 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,315545 ,2,829,45 ,1,0,194415 ,2,14956,226720 ,2,822,28140 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,120975 ,2,14979,2415 ,2,829,45 ,2,14956,226710 ,2,822,28140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232705 ,2,14979,317510 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,194595 ,1,4,193990 ,1,5,194000 ,1,6,194585 ,1,7,194550 ,1,8,194605 ,1,9,194540 ,1,10,65 ,1,11,194530 ,1,12,65 ,1,13,65 ,1,14,194520 ,1,15,194505 ,1,16,194495 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,194485 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,193555 ,1,25,65 ,1,26,194010 ,1,27,194020 ,1,28,194475 ,1,29,65 ,1,30,194425 ,1,31,65 ,1,32,65 ,1,33,65 ,2,14956,230400 ,2,822,28140 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,121000 ,2,14979,2415 ,2,829,45 ,1,0,193565 ,1,1,152910 ,1,2,103320 ,2,14956,230375 ,2,822,28140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232715 ,2,14979,317530 ,2,829,45 ,1,0,194520 ,1,1,193990 ,1,2,194475 ,1,3,194495 ,1,4,194020 ,1,5,194010 ,1,6,194000 ,1,7,194550 ,1,8,194425 ,1,9,194585 ,1,10,193555 ,1,11,194605 ,1,12,194505 ,1,13,194540 ,1,14,194595 ,1,15,194485 ,1,16,194530 ,2,14956,2855 ,2,822,28140 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415640 ,2,829,45 ,1,0,193555 ,2,14956,184135 ,2,822,28140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382320 ,2,829,45 ,1,0,115685 ,1,1,148170 ,2,14956,224525 ,2,822,28140 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382505 ,2,829,45 ,1,0,95290 ,1,1,95030 ,1,2,95280 ,1,3,102675 ,1,4,109565 ,2,14956,226600 ,2,822,28140 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417055 ,2,829,45 ,1,0,114790 ,1,1,93855 ,1,2,115685 ,1,3,95225 ,1,4,95030 ,1,5,102675 ,2,14956,226645 ,2,822,28140 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417005 ,2,829,45 ,1,0,102700 ,1,1,93855 ,1,2,138120 ,2,14956,230410 ,2,822,28140 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,390435 ,2,829,45 ,2,14956,226710 ,2,822,28140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,120975 ,2,14979,317520 ,2,829,45 ,1,0,194635 ,1,1,194625 ,2,14956,230375 ,2,822,28140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,121000 ,2,14979,317540 ,2,829,45 ,2,14956,230475 ,2,822,28140 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272280 ,1,1,45 ,1,2,45 ,2,14956,230485 ,2,822,28140 ,2,14975,571915 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,329245 ,2,829,45 ,1,0,45 ,1,1,43790 ,1,2,43750 ,1,3,614705 ,2,14956,2855 ,2,822,28155 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415635 ,2,829,45 ,2,14956,184135 ,2,822,28155 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412475 ,2,829,45 ,1,0,194730 ,1,1,194715 ,1,2,194740 ,1,3,194750 ,1,4,194705 ,1,5,194615 ,1,6,194695 ,1,7,194685 ,1,8,194645 ,2,14956,226655 ,2,822,28155 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415940 ,2,829,45 ,1,0,3010 ,1,1,297700 ,1,2,5320 ,2,14956,230505 ,2,822,28155 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388290 ,2,829,45 ,1,0,162965 ,1,1,194645 ,2,14956,230410 ,2,822,28155 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,390420 ,2,829,45 ,2,14956,230515 ,2,822,28155 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,392550 ,2,829,45 ,1,0,194810 ,1,1,194800 ,2,14956,230525 ,2,822,28155 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,387985 ,2,829,45 ,1,0,586655 ,2,14956,230430 ,2,822,28155 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414190 ,2,829,45 ,1,0,194855 ,1,1,194830 ,1,2,194820 ,2,14956,230550 ,2,822,28155 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409175 ,2,829,45 ,2,14956,184135 ,2,822,28165 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382290 ,2,829,45 ,1,0,267890 ,1,1,272290 ,1,2,45 ,2,14956,10825 ,2,822,28165 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386010 ,2,829,45 ,1,0,43835 ,1,1,45 ,1,2,45 ,1,3,43810 ,1,4,43820 ,1,5,616170 ,2,14956,224525 ,2,822,28165 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412535 ,2,829,45 ,2,14956,226600 ,2,822,28165 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417040 ,2,829,45 ,1,0,195050 ,1,1,195040 ,1,2,195060 ,1,3,194760 ,1,4,195030 ,1,5,194985 ,1,6,194975 ,1,7,194965 ,1,8,194955 ,1,9,194940 ,1,10,194920 ,1,11,194885 ,1,12,194865 ,2,14956,226645 ,2,822,28165 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416990 ,2,829,45 ,1,0,162965 ,2,14956,2855 ,2,822,28175 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392430 ,2,829,45 ,1,0,162965 ,1,1,194110 ,2,14956,184135 ,2,822,28175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382295 ,2,829,45 ,1,0,194270 ,1,1,162965 ,2,14956,224525 ,2,822,28175 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412540 ,2,829,45 ,1,0,162965 ,1,1,190345 ,1,2,190355 ,2,14956,226600 ,2,822,28175 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417045 ,2,829,45 ,1,0,162965 ,1,1,133470 ,2,14956,226645 ,2,822,28175 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416995 ,2,829,45 ,1,0,162965 ,1,1,152950 ,2,14956,230505 ,2,822,28175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388285 ,2,829,45 ,2,14956,230410 ,2,822,28175 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,390425 ,2,829,45 ,1,0,263735 ,1,1,263725 ,1,2,263715 ,1,3,263705 ,2,14956,230515 ,2,822,28175 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,392540 ,2,829,45 ,1,0,161665 ,1,1,161605 ,1,2,161690 ,1,3,161645 ,1,4,139960 ,2,14956,230525 ,2,822,28175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,387975 ,2,829,45 ,1,0,168120 ,1,1,167595 ,2,14956,2855 ,2,822,28185 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415650 ,2,829,45 ,1,0,195205 ,1,1,195195 ,1,2,195185 ,1,3,195170 ,1,4,195160 ,1,5,195150 ,2,14956,184135 ,2,822,28185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382325 ,2,829,45 ,1,0,103780 ,1,1,195205 ,1,2,195195 ,2,14956,10825 ,2,822,28185 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386025 ,2,829,45 ,1,0,3010 ,1,1,187240 ,1,2,215275 ,1,3,298315 ,1,4,298305 ,1,5,185785 ,1,6,298295 ,1,7,298260 ,1,8,298250 ,1,9,298240 ,1,10,175900 ,1,11,182745 ,1,12,298230 ,1,13,298215 ,1,14,298205 ,1,15,298195 ,1,16,298185 ,1,17,298160 ,1,18,298150 ,1,19,298140 ,1,20,298130 ,1,21,298115 ,1,22,298105 ,1,23,277025 ,1,24,298095 ,1,25,298085 ,1,26,298060 ,1,27,220990 ,1,28,222530 ,1,29,298050 ,2,14956,167895 ,2,822,28185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317620 ,2,829,45 ,1,0,577350 ,2,14956,215585 ,2,822,28185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387355 ,2,829,45 ,1,0,195310 ,1,1,195295 ,1,2,195285 ,1,3,195275 ,1,4,195265 ,1,5,195215 ,2,14956,230620 ,2,822,28185 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,317645 ,2,829,45 ,2,14956,230655 ,2,822,28185 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,317655 ,2,829,45 ,1,0,272300 ,1,1,270010 ,1,2,45 ,2,14956,230550 ,2,822,28185 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409180 ,2,829,45 ,1,0,45 ,1,1,43855 ,1,2,43910 ,1,3,43960 ,1,4,43865 ,1,5,43940 ,1,6,43930 ,1,7,45 ,1,8,45 ,1,9,614020 ,2,14956,230665 ,2,822,28185 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317635 ,2,829,45 ,1,0,577350 ,2,14956,230675 ,2,822,28185 ,2,14975,571960 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,195375 ,1,1,195365 ,1,2,195340 ,1,3,195330 ,1,4,195320 ,2,14956,227215 ,2,822,27130 ,2,14975,571950 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317665 ,2,829,45 ,2,14956,230730 ,2,822,27130 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,121605 ,2,14979,2415 ,2,829,45 ,1,0,195395 ,1,1,195385 ,2,14956,184135 ,2,822,27130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,232730 ,2,14979,317700 ,2,829,45 ,2,14956,230765 ,2,822,27130 ,2,14975,571965 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,317710 ,2,829,45 ,1,0,195500 ,1,1,195490 ,1,2,195480 ,1,3,195435 ,1,4,195425 ,1,5,195415 ,1,6,195405 ,2,14956,230775 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317720 ,2,829,45 ,2,14956,226655 ,2,822,27130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392105 ,2,829,45 ,1,0,195710 ,1,1,195080 ,1,2,195700 ,1,3,195690 ,1,4,195640 ,1,5,195630 ,1,6,195620 ,1,7,195610 ,1,8,195600 ,1,9,195590 ,1,10,195580 ,1,11,195570 ,1,12,195555 ,1,13,195535 ,1,14,195510 ,2,14956,223805 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387055 ,2,829,45 ,1,0,100 ,1,1,573360 ,2,14956,184135 ,2,822,27130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,121605 ,2,14979,381000 ,2,829,45 ,1,0,77545 ,1,1,77535 ,1,2,140665 ,2,14956,230960 ,2,822,27130 ,2,14975,571110 ,2,14976,25600 ,2,14977,69625 ,2,14965,45 ,2,14978,45 ,2,14979,317730 ,2,829,45 ,2,14956,230785 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317740 ,2,829,45 ,1,0,272310 ,1,1,45 ,1,2,45 ,2,14956,230895 ,2,822,28245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317805 ,2,829,45 ,1,0,45 ,1,1,44085 ,1,2,44060 ,1,3,44050 ,1,4,44040 ,1,5,43970 ,1,6,44030 ,1,7,43990 ,1,8,45 ,1,9,45 ,1,10,614025 ,2,14956,207015 ,2,822,28245 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,121745 ,2,14979,372660 ,2,829,45 ,2,14956,206975 ,2,822,28245 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,232740 ,2,14979,317825 ,2,829,45 ,1,0,195755 ,1,1,196075 ,1,2,195745 ,1,3,195735 ,1,4,196065 ,1,5,195720 ,2,14956,211360 ,2,822,28245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366280 ,2,829,45 ,2,14956,206975 ,2,822,28245 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,121745 ,2,14979,372465 ,2,829,45 ,1,0,195765 ,2,14956,230795 ,2,822,28245 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317840 ,2,829,45 ,2,14956,230815 ,2,822,28245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317850 ,2,829,45 ,1,0,195870 ,1,1,196045 ,1,2,195860 ,1,3,195850 ,1,4,195840 ,1,5,195830 ,1,6,195820 ,2,14956,230845 ,2,822,28245 ,2,14975,571975 ,2,14976,24020 ,2,14977,69600 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,230905 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317795 ,2,829,45 ,1,0,195890 ,1,1,195880 ,2,14956,207950 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317770 ,2,829,45 ,2,14956,230915 ,2,822,26255 ,2,14975,570335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,195955 ,1,1,195945 ,1,2,195930 ,1,3,195920 ,1,4,195910 ,1,5,195900 ,2,14956,230930 ,2,822,26225 ,2,14975,570285 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,317750 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,355115 ,1,6,65 ,1,7,355095 ,1,8,355085 ,1,9,355075 ,2,14956,207950 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317760 ,2,829,45 ,2,14956,231000 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329320 ,2,829,45 ,1,0,195965 ,2,14956,212310 ,2,822,33225 ,2,14975,571980 ,2,14976,25600 ,2,14977,69655 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,231075 ,2,822,28280 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,196035 ,1,1,196025 ,1,2,196015 ,1,3,195975 ,2,14956,231110 ,2,822,28280 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393280 ,2,829,45 ,1,0,162965 ,1,1,151765 ,1,2,142845 ,1,3,143965 ,1,4,151570 ,1,5,151825 ,1,6,142545 ,1,7,142335 ,1,8,144010 ,2,14956,231120 ,2,822,28280 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,162965 ,1,1,162050 ,1,2,161880 ,2,14956,225045 ,2,822,28280 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317870 ,2,829,45 ,1,0,162965 ,1,1,79335 ,2,14956,2855 ,2,822,28270 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392450 ,2,829,45 ,2,14956,231345 ,2,822,51960 ,2,14975,572070 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258915 ,2,14979,317900 ,2,829,45 ,1,0,267890 ,1,1,272330 ,1,2,45 ,2,14956,207130 ,2,822,28340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373745 ,2,829,45 ,1,0,45 ,1,1,44215 ,1,2,44205 ,1,3,45 ,1,4,44195 ,1,5,44185 ,1,6,44155 ,1,7,44115 ,1,8,44095 ,1,9,45 ,1,10,614025 ,2,14956,250520 ,2,822,28340 ,2,14975,570280 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,231250 ,2,822,28340 ,2,14975,561335 ,2,14976,23450 ,2,14977,69860 ,2,14965,45 ,2,14978,45 ,2,14979,317920 ,2,829,45 ,1,0,196245 ,1,1,196235 ,1,2,196630 ,1,3,196205 ,1,4,196195 ,1,5,196185 ,1,6,196095 ,2,14956,231170 ,2,822,33225 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317955 ,2,829,45 ,1,0,87385 ,1,1,86355 ,1,2,86335 ,2,14956,231180 ,2,822,33225 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,317945 ,2,829,45 ,1,0,87385 ,1,1,86355 ,1,2,72090 ,1,3,86335 ,1,4,72265 ,2,14956,231230 ,2,822,33225 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,317975 ,2,829,45 ,1,0,87385 ,1,1,86355 ,1,2,86335 ,1,3,72090 ,1,4,71140 ,2,14956,231240 ,2,822,33225 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317965 ,2,829,45 ,2,14956,231260 ,2,822,28340 ,2,14975,561335 ,2,14976,23450 ,2,14977,69860 ,2,14965,45 ,2,14978,45 ,2,14979,318000 ,2,829,45 ,1,0,272320 ,1,1,268180 ,1,2,45 ,2,14956,231285 ,2,822,28340 ,2,14975,561335 ,2,14976,24020 ,2,14977,69910 ,2,14965,45 ,2,14978,45 ,2,14979,317930 ,2,829,45 ,1,0,45 ,1,1,44165 ,1,2,613640 ,2,14956,231240 ,2,822,28340 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,318010 ,2,829,45 ,1,0,570415 ,2,14956,231325 ,2,822,28340 ,2,14975,572060 ,2,14976,24020 ,2,14977,69920 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,196300 ,1,1,196290 ,1,2,196280 ,1,3,196255 ,2,14956,231370 ,2,822,28300 ,2,14975,572070 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258915 ,2,14979,2415 ,2,829,45 ,1,0,196300 ,1,1,57795 ,2,14956,226085 ,2,822,28350 ,2,14975,564755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,389355 ,2,829,45 ,2,14956,231380 ,2,822,28350 ,2,14975,599940 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,318030 ,2,829,45 ,1,0,196310 ,2,14956,231390 ,2,822,28350 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318040 ,2,829,45 ,1,0,587040 ,2,14956,231400 ,2,822,28350 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318050 ,2,829,45 ,1,0,196370 ,1,1,196360 ,1,2,196350 ,1,3,196340 ,2,14956,226105 ,2,822,28350 ,2,14975,572095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398575 ,2,829,45 ,2,14956,217455 ,2,822,28360 ,2,14975,572105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385005 ,2,829,45 ,1,0,196400 ,1,1,196390 ,1,2,196380 ,2,14956,248745 ,2,822,28360 ,2,14975,572100 ,2,14976,33775 ,2,14977,84050 ,2,14965,45 ,2,14978,45 ,2,14979,318105 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,354445 ,1,3,354420 ,1,4,354410 ,1,5,65 ,1,6,65 ,1,7,354400 ,1,8,65 ,1,9,65 ,2,14956,223805 ,2,822,28385 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387345 ,2,829,45 ,2,14956,2855 ,2,822,28385 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392480 ,2,829,45 ,1,0,196410 ,2,14956,231450 ,2,822,28385 ,2,14975,599940 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,413915 ,2,829,45 ,2,14956,231470 ,2,822,28395 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318125 ,2,829,45 ,1,0,196480 ,1,1,196470 ,1,2,196460 ,2,14956,231480 ,2,822,28395 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,122355 ,2,14979,2415 ,2,829,45 ,2,14956,231480 ,2,822,28395 ,2,14975,599970 ,2,14976,70130 ,2,14977,23360 ,2,14965,45 ,2,14978,232750 ,2,14979,318135 ,2,829,45 ,1,0,263790 ,2,14956,231490 ,2,822,28405 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399560 ,2,829,45 ,1,0,196620 ,1,1,196610 ,1,2,196600 ,1,3,196085 ,1,4,196590 ,1,5,196175 ,1,6,196165 ,1,7,196155 ,1,8,196580 ,1,9,196145 ,1,10,196570 ,1,11,196560 ,1,12,196525 ,1,13,196505 ,2,14956,231500 ,2,822,28405 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399605 ,2,829,45 ,1,0,59500 ,1,1,196620 ,1,2,67820 ,2,14956,182390 ,2,822,28405 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386485 ,2,829,45 ,1,0,84470 ,1,1,84765 ,1,2,196525 ,1,3,84355 ,1,4,196505 ,2,14956,231510 ,2,822,28405 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399550 ,2,829,45 ,1,0,162965 ,1,1,122020 ,2,14956,231530 ,2,822,28405 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318155 ,2,829,45 ,1,0,162965 ,1,1,150570 ,2,14956,231590 ,2,822,28405 ,2,14975,572150 ,2,14976,25600 ,2,14977,70170 ,2,14965,45 ,2,14978,45 ,2,14979,318165 ,2,829,45 ,1,0,162965 ,1,1,119100 ,2,14956,247785 ,2,822,52255 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318220 ,2,829,45 ,1,0,115755 ,1,1,115745 ,2,14956,231615 ,2,822,33015 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392365 ,2,829,45 ,1,0,191225 ,2,14956,231625 ,2,822,33015 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318230 ,2,829,45 ,1,0,134375 ,2,14956,225300 ,2,822,28480 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398300 ,2,829,45 ,2,14956,231635 ,2,822,28510 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,196685 ,2,14956,231645 ,2,822,28510 ,2,14975,572225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318280 ,2,829,45 ,2,14956,231660 ,2,822,28510 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272340 ,1,1,45 ,1,2,45 ,2,14956,231680 ,2,822,28510 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318300 ,2,829,45 ,1,0,44245 ,1,1,45 ,1,2,44225 ,1,3,614705 ,2,14956,231670 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,231730 ,2,822,28510 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318330 ,2,829,45 ,1,0,199070 ,1,1,196675 ,1,2,199060 ,1,3,199040 ,1,4,199030 ,1,5,199020 ,1,6,199010 ,1,7,198930 ,1,8,197135 ,1,9,196815 ,1,10,196805 ,1,11,196725 ,1,12,196715 ,1,13,196695 ,2,14956,231720 ,2,822,14570 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70350 ,2,14979,318350 ,2,829,45 ,2,14956,4195 ,2,822,14570 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318340 ,2,829,45 ,1,0,272380 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,28520 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392025 ,2,829,45 ,1,0,45 ,1,1,44265 ,1,2,44290 ,1,3,614705 ,2,14956,231750 ,2,822,28520 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318360 ,2,829,45 ,2,14956,2855 ,2,822,28530 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391965 ,2,829,45 ,1,0,196735 ,2,14956,213325 ,2,822,28480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371070 ,2,829,45 ,2,14956,247700 ,2,822,28480 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318395 ,2,829,45 ,1,0,196795 ,1,1,196745 ,2,14956,250930 ,2,822,28585 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398675 ,2,829,45 ,1,0,3010 ,1,1,248725 ,1,2,248715 ,1,3,222235 ,1,4,230950 ,1,5,175900 ,1,6,248695 ,1,7,199905 ,1,8,5845 ,1,9,222410 ,1,10,299500 ,1,11,299490 ,1,12,231570 ,1,13,231580 ,1,14,231560 ,1,15,225470 ,1,16,249045 ,1,17,228960 ,1,18,299480 ,2,14956,231870 ,2,822,28610 ,2,14975,572220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398790 ,2,829,45 ,2,14956,246870 ,2,822,28620 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,122705 ,2,14979,2415 ,2,829,45 ,1,0,197050 ,1,1,197040 ,1,2,196855 ,1,3,196845 ,2,14956,246860 ,2,822,28620 ,2,14975,568460 ,2,14976,82680 ,2,14977,23360 ,2,14965,45 ,2,14978,233490 ,2,14979,318445 ,2,829,45 ,2,14956,231895 ,2,822,28640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272390 ,1,1,45 ,1,2,45 ,2,14956,239655 ,2,822,28640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,122735 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,44365 ,1,2,44395 ,1,3,44385 ,1,4,45 ,1,5,616170 ,2,14956,239645 ,2,822,28640 ,2,14975,572350 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,232760 ,2,14979,318495 ,2,829,45 ,2,14956,4490 ,2,822,28675 ,2,14975,561500 ,2,14976,70665 ,2,14977,70655 ,2,14965,45 ,2,14978,250675 ,2,14979,2415 ,2,829,45 ,1,0,196875 ,1,1,196865 ,2,14956,231965 ,2,822,28675 ,2,14975,110 ,2,14976,36360 ,2,14977,70645 ,2,14965,45 ,2,14978,45 ,2,14979,318505 ,2,829,45 ,2,14956,232125 ,2,822,51970 ,2,14975,572445 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258925 ,2,14979,318515 ,2,829,45 ,1,0,196955 ,1,1,196945 ,1,2,196930 ,1,3,196920 ,1,4,196910 ,1,5,196900 ,2,14956,232115 ,2,822,28705 ,2,14975,572375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,196945 ,1,1,106085 ,1,2,105220 ,1,3,56200 ,1,4,196930 ,2,14956,176795 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70750 ,2,14979,318525 ,2,829,45 ,2,14956,4685 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383690 ,2,829,45 ,1,0,197030 ,1,1,197020 ,1,2,196975 ,1,3,196965 ,2,14956,166650 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70760 ,2,14979,318570 ,2,829,45 ,2,14956,8315 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376415 ,2,829,45 ,1,0,197060 ,2,14956,176805 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70770 ,2,14979,318580 ,2,829,45 ,1,0,197080 ,1,1,139390 ,1,2,139335 ,1,3,139305 ,1,4,163330 ,1,5,162845 ,1,6,64445 ,1,7,197070 ,1,8,139280 ,2,14956,5060 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375775 ,2,829,45 ,2,14956,166610 ,2,822,28705 ,2,14975,572425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70780 ,2,14979,318590 ,2,829,45 ,1,0,197090 ,1,1,197080 ,2,14956,10080 ,2,822,28705 ,2,14975,572425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,122925 ,2,14979,383700 ,2,829,45 ,1,0,3010 ,1,1,5845 ,1,2,248590 ,1,3,248725 ,1,4,248715 ,1,5,222235 ,1,6,175900 ,1,7,248695 ,1,8,199905 ,1,9,222410 ,1,10,230950 ,1,11,299500 ,1,12,231570 ,1,13,231580 ,1,14,231560 ,1,15,225470 ,1,16,249045 ,1,17,228960 ,1,18,299480 ,2,14956,10080 ,2,822,28705 ,2,14975,572425 ,2,14976,70790 ,2,14977,23120 ,2,14965,45 ,2,14978,232790 ,2,14979,318600 ,2,829,45 ,2,14956,166610 ,2,822,28715 ,2,14975,572425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,70830 ,2,14979,318610 ,2,829,45 ,1,0,272400 ,1,1,45 ,1,2,45 ,2,14956,10080 ,2,822,28715 ,2,14975,572425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,122955 ,2,14979,383705 ,2,829,45 ,1,0,45 ,1,1,44320 ,1,2,44310 ,1,3,45 ,1,4,44300 ,1,5,44425 ,1,6,44405 ,1,7,613975 ,2,14956,10080 ,2,822,28715 ,2,14975,572425 ,2,14976,70790 ,2,14977,23120 ,2,14965,45 ,2,14978,232800 ,2,14979,318620 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,354245 ,1,3,65 ,2,14956,166985 ,2,822,28715 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,122955 ,2,14979,383375 ,2,829,45 ,2,14956,6245 ,2,822,28715 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388995 ,2,829,45 ,1,0,197125 ,2,14956,13210 ,2,822,28715 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397305 ,2,829,45 ,2,14956,2855 ,2,822,28715 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391785 ,2,829,45 ,1,0,196825 ,1,1,197070 ,2,14956,179555 ,2,822,28715 ,2,14975,572425 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318630 ,2,829,45 ,2,14956,231975 ,2,822,28705 ,2,14975,572425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398665 ,2,829,45 ,1,0,197170 ,1,1,197155 ,1,2,197145 ,2,14956,231975 ,2,822,28715 ,2,14975,572425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398670 ,2,829,45 ,2,14956,179850 ,2,822,28735 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382145 ,2,829,45 ,1,0,88985 ,1,1,89115 ,2,14956,4685 ,2,822,28735 ,2,14975,572440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383695 ,2,829,45 ,1,0,3010 ,1,1,299810 ,2,14956,232020 ,2,822,28735 ,2,14975,562205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258935 ,2,14979,416840 ,2,829,45 ,2,14956,166985 ,2,822,28705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,122925 ,2,14979,383370 ,2,829,45 ,1,0,272410 ,1,1,45 ,1,2,45 ,2,14956,179850 ,2,822,28705 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412425 ,2,829,45 ,1,0,45 ,1,1,44480 ,1,2,613640 ,2,14956,179555 ,2,822,28705 ,2,14975,572380 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318660 ,2,829,45 ,2,14956,232090 ,2,822,28705 ,2,14975,562405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318670 ,2,829,45 ,1,0,263820 ,2,14956,232020 ,2,822,28705 ,2,14975,562205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416835 ,2,829,45 ,1,0,197275 ,1,1,197240 ,1,2,197230 ,1,3,197200 ,2,14956,2855 ,2,822,28745 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415220 ,2,829,45 ,1,0,197275 ,2,14956,232230 ,2,822,28695 ,2,14975,572445 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,258925 ,2,14979,2415 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,197250 ,2,14956,211025 ,2,822,28775 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377890 ,2,829,45 ,1,0,197260 ,2,14956,213425 ,2,822,28775 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411025 ,2,829,45 ,2,14956,232240 ,2,822,28775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,318700 ,2,829,45 ,1,0,272420 ,1,1,45 ,1,2,45 ,2,14956,232250 ,2,822,28775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318710 ,2,829,45 ,1,0,45 ,1,1,44500 ,1,2,613640 ,2,14956,232280 ,2,822,28775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318720 ,2,829,45 ,2,14956,232300 ,2,822,28775 ,2,14975,572460 ,2,14976,24020 ,2,14977,71050 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,197260 ,2,14956,217455 ,2,822,28785 ,2,14975,572495 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384710 ,2,829,45 ,2,14956,217240 ,2,822,28785 ,2,14975,572485 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,318770 ,2,829,45 ,1,0,272430 ,1,1,45 ,1,2,45 ,2,14956,195335 ,2,822,28785 ,2,14975,572450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258945 ,2,14979,412355 ,2,829,45 ,1,0,44530 ,1,1,45 ,1,2,613640 ,2,14956,213590 ,2,822,28785 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258955 ,2,14979,413205 ,2,829,45 ,2,14956,216035 ,2,822,51980 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413450 ,2,829,45 ,1,0,263840 ,2,14956,184135 ,2,822,51980 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412175 ,2,829,45 ,1,0,197345 ,1,1,197305 ,1,2,197295 ,2,14956,217335 ,2,822,51980 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415015 ,2,829,45 ,1,0,60685 ,1,1,64980 ,1,2,197345 ,2,14956,217345 ,2,822,51980 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412235 ,2,829,45 ,2,14956,182390 ,2,822,28835 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385425 ,2,829,45 ,1,0,272440 ,1,1,45 ,1,2,45 ,2,14956,232355 ,2,822,28835 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395275 ,2,829,45 ,1,0,44520 ,1,1,45 ,1,2,613640 ,2,14956,232365 ,2,822,28835 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391220 ,2,829,45 ,2,14956,179555 ,2,822,28845 ,2,14975,569580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387720 ,2,829,45 ,1,0,197355 ,1,1,197180 ,2,14956,217455 ,2,822,28870 ,2,14975,572615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384765 ,2,829,45 ,1,0,3010 ,1,1,300140 ,1,2,300130 ,1,3,300115 ,1,4,192290 ,2,14956,213590 ,2,822,28870 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,258965 ,2,14979,413265 ,2,829,45 ,2,14956,232355 ,2,822,28880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416385 ,2,829,45 ,1,0,272530 ,1,1,272520 ,1,2,272510 ,1,3,272500 ,1,4,272490 ,1,5,272480 ,1,6,272715 ,1,7,272450 ,1,8,45 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,45 ,1,14,45 ,2,14956,232365 ,2,822,28880 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,44965 ,1,1,45 ,1,2,45 ,1,3,44955 ,1,4,44575 ,1,5,44975 ,1,6,44945 ,1,7,44605 ,1,8,44595 ,1,9,45 ,1,10,614025 ,2,14956,232430 ,2,822,28880 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,318860 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,197375 ,2,14956,232440 ,2,822,28880 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318870 ,2,829,45 ,1,0,197390 ,2,14956,232450 ,2,822,28880 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318880 ,2,829,45 ,1,0,100 ,1,1,568030 ,2,14956,184135 ,2,822,28880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380640 ,2,829,45 ,2,14956,232460 ,2,822,28880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,318900 ,2,829,45 ,1,0,197420 ,1,1,197390 ,1,2,197410 ,2,14956,223625 ,2,822,28880 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364825 ,2,829,45 ,2,14956,217195 ,2,822,28880 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369215 ,2,829,45 ,1,0,198370 ,1,1,197465 ,1,2,197455 ,1,3,197445 ,2,14956,216035 ,2,822,51990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413460 ,2,829,45 ,1,0,198230 ,1,1,198220 ,1,2,198125 ,1,3,197475 ,2,14956,184135 ,2,822,51990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409185 ,2,829,45 ,2,14956,217345 ,2,822,51990 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412240 ,2,829,45 ,1,0,272540 ,1,1,45 ,1,2,45 ,2,14956,184135 ,2,822,28930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412160 ,2,829,45 ,1,0,44615 ,1,1,45 ,1,2,613640 ,2,14956,207015 ,2,822,28910 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,123615 ,2,14979,372300 ,2,829,45 ,2,14956,206975 ,2,822,28910 ,2,14975,599870 ,2,14976,71370 ,2,14977,71360 ,2,14965,45 ,2,14978,232810 ,2,14979,318920 ,2,829,45 ,1,0,197510 ,1,1,197500 ,2,14956,206975 ,2,822,28910 ,2,14975,599870 ,2,14976,24020 ,2,14977,71380 ,2,14965,45 ,2,14978,123615 ,2,14979,372180 ,2,829,45 ,2,14956,179555 ,2,822,28910 ,2,14975,572680 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318930 ,2,829,45 ,1,0,272550 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,28940 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390670 ,2,829,45 ,1,0,44635 ,1,1,45 ,1,2,613640 ,2,14956,6245 ,2,822,28940 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414260 ,2,829,45 ,2,14956,13210 ,2,822,28940 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395835 ,2,829,45 ,1,0,263945 ,1,1,263850 ,1,2,263925 ,1,3,263915 ,1,4,263895 ,2,14956,179555 ,2,822,28940 ,2,14975,572705 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319005 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,183640 ,2,822,28940 ,2,14975,572705 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380895 ,2,829,45 ,1,0,100 ,1,1,587525 ,2,14956,232560 ,2,822,28940 ,2,14975,572710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,232590 ,2,822,28940 ,2,14975,572715 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318965 ,2,829,45 ,1,0,272580 ,1,1,45 ,1,2,45 ,2,14956,183640 ,2,822,28990 ,2,14975,572740 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,44700 ,1,2,613640 ,2,14956,166650 ,2,822,29010 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,71505 ,2,14979,319050 ,2,829,45 ,2,14956,8315 ,2,822,29010 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376050 ,2,829,45 ,1,0,263905 ,2,14956,166610 ,2,822,29010 ,2,14975,572770 ,2,14976,23450 ,2,14977,71560 ,2,14965,45 ,2,14978,71530 ,2,14979,319060 ,2,829,45 ,1,0,197595 ,1,1,197585 ,1,2,197575 ,2,14956,10080 ,2,822,29010 ,2,14975,572770 ,2,14976,23450 ,2,14977,71560 ,2,14965,45 ,2,14978,123830 ,2,14979,383620 ,2,829,45 ,1,0,197475 ,1,1,198110 ,1,2,198100 ,1,3,198090 ,1,4,198345 ,1,5,198080 ,1,6,197845 ,1,7,197665 ,2,14956,10080 ,2,822,29010 ,2,14975,572770 ,2,14976,71550 ,2,14977,71540 ,2,14965,45 ,2,14978,232820 ,2,14979,319070 ,2,829,45 ,2,14956,232610 ,2,822,29030 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,319080 ,2,829,45 ,1,0,272590 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,29040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391790 ,2,829,45 ,1,0,44720 ,1,1,45 ,1,2,613640 ,2,14956,6245 ,2,822,29040 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389020 ,2,829,45 ,2,14956,13210 ,2,822,29040 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397315 ,2,829,45 ,1,0,197835 ,1,1,197825 ,1,2,197815 ,1,3,197805 ,1,4,197675 ,2,14956,179555 ,2,822,29040 ,2,14975,572785 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319100 ,2,829,45 ,1,0,197475 ,1,1,197685 ,2,14956,232645 ,2,822,29040 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319110 ,2,829,45 ,2,14956,232560 ,2,822,29040 ,2,14975,572710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319120 ,2,829,45 ,1,0,272600 ,1,1,45 ,1,2,45 ,2,14956,183640 ,2,822,29040 ,2,14975,572785 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382820 ,2,829,45 ,1,0,45 ,1,1,44740 ,1,2,613640 ,2,14956,221040 ,2,822,29040 ,2,14975,572785 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319160 ,2,829,45 ,2,14956,2855 ,2,822,29060 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415320 ,2,829,45 ,1,0,263955 ,2,14956,166985 ,2,822,29010 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,123830 ,2,14979,383310 ,2,829,45 ,1,0,197795 ,1,1,197735 ,1,2,197725 ,1,3,197715 ,1,4,197705 ,1,5,197685 ,2,14956,2855 ,2,822,29010 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391675 ,2,829,45 ,1,0,197795 ,2,14956,179555 ,2,822,29010 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319170 ,2,829,45 ,1,0,3010 ,1,1,167555 ,2,14956,232720 ,2,822,29010 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386460 ,2,829,45 ,1,0,197475 ,2,14956,232735 ,2,822,29010 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383840 ,2,829,45 ,1,0,3010 ,1,1,195155 ,1,2,221040 ,2,14956,232755 ,2,822,29000 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319190 ,2,829,45 ,1,0,197835 ,1,1,197735 ,1,2,197795 ,2,14956,232765 ,2,822,29000 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319200 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,197855 ,2,14956,232795 ,2,822,29000 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,319210 ,2,829,45 ,1,0,197865 ,2,14956,232805 ,2,822,29000 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,416745 ,2,829,45 ,2,14956,2855 ,2,822,29105 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415325 ,2,829,45 ,1,0,272610 ,1,1,45 ,1,2,45 ,2,14956,166610 ,2,822,29115 ,2,14975,572840 ,2,14976,23450 ,2,14977,71560 ,2,14965,45 ,2,14978,71920 ,2,14979,319230 ,2,829,45 ,1,0,45 ,1,1,44760 ,1,2,613640 ,2,14956,10080 ,2,822,29115 ,2,14975,572840 ,2,14976,23450 ,2,14977,71560 ,2,14965,45 ,2,14978,124130 ,2,14979,383585 ,2,829,45 ,1,0,587670 ,2,14956,10080 ,2,822,29115 ,2,14975,572840 ,2,14976,71550 ,2,14977,71540 ,2,14965,45 ,2,14978,232830 ,2,14979,319250 ,2,829,45 ,1,0,198060 ,1,1,197905 ,1,2,197865 ,1,3,197895 ,2,14956,166985 ,2,822,29115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,124130 ,2,14979,383305 ,2,829,45 ,1,0,300815 ,1,1,45 ,2,14956,2855 ,2,822,29115 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391670 ,2,829,45 ,1,0,587655 ,2,14956,6245 ,2,822,29115 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414435 ,2,829,45 ,2,14956,13210 ,2,822,29115 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397125 ,2,829,45 ,1,0,197925 ,2,14956,211025 ,2,822,29115 ,2,14975,110 ,2,14976,23675 ,2,14977,71960 ,2,14965,45 ,2,14978,45 ,2,14979,378445 ,2,829,45 ,1,0,300860 ,1,1,45 ,2,14956,179555 ,2,822,29115 ,2,14975,572840 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319280 ,2,829,45 ,1,0,197945 ,2,14956,232720 ,2,822,29115 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386455 ,2,829,45 ,1,0,300880 ,1,1,45 ,2,14956,232735 ,2,822,29115 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383835 ,2,829,45 ,1,0,263975 ,1,1,263965 ,2,14956,183640 ,2,822,29115 ,2,14975,572840 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382815 ,2,829,45 ,1,0,198005 ,1,1,197945 ,1,2,197915 ,1,3,198015 ,1,4,197935 ,1,5,197985 ,1,6,197995 ,2,14956,232855 ,2,822,29115 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319260 ,2,829,45 ,1,0,198030 ,1,1,58385 ,2,14956,232865 ,2,822,29115 ,2,14975,567855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,221040 ,2,822,29115 ,2,14975,572840 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319270 ,2,829,45 ,1,0,272630 ,1,1,45 ,1,2,45 ,2,14956,232900 ,2,822,29115 ,2,14975,572840 ,2,14976,24020 ,2,14977,71970 ,2,14965,45 ,2,14978,45 ,2,14979,325240 ,2,829,45 ,1,0,45 ,1,1,44815 ,1,2,613640 ,2,14956,211025 ,2,822,28990 ,2,14975,110 ,2,14976,23675 ,2,14977,71960 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,232855 ,2,822,28990 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,264005 ,2,14956,232865 ,2,822,28990 ,2,14975,567855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,198030 ,1,1,198050 ,2,14956,179555 ,2,822,28990 ,2,14975,572740 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319025 ,2,829,45 ,1,0,198060 ,1,1,197355 ,2,14956,179555 ,2,822,29000 ,2,14975,572750 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319015 ,2,829,45 ,2,14956,179555 ,2,822,29125 ,2,14975,572850 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,318955 ,2,829,45 ,1,0,272640 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,29150 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391140 ,2,829,45 ,1,0,45 ,1,1,44840 ,1,2,613640 ,2,14956,211025 ,2,822,29150 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,377380 ,2,829,45 ,2,14956,184135 ,2,822,29150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412165 ,2,829,45 ,2,14956,232955 ,2,822,29150 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,319300 ,2,829,45 ,1,0,272650 ,1,1,45 ,1,2,45 ,2,14956,232965 ,2,822,29150 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,319365 ,2,829,45 ,1,0,44860 ,1,1,45 ,1,2,613640 ,2,14956,232975 ,2,822,29150 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,319310 ,2,829,45 ,2,14956,233015 ,2,822,29150 ,2,14975,572710 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319320 ,2,829,45 ,1,0,264015 ,1,1,264025 ,2,14956,207015 ,2,822,29125 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,124505 ,2,14979,372310 ,2,829,45 ,1,0,198125 ,1,1,198220 ,1,2,198210 ,1,3,198360 ,1,4,198155 ,1,5,198145 ,2,14956,206975 ,2,822,29125 ,2,14975,599870 ,2,14976,71370 ,2,14977,71360 ,2,14965,45 ,2,14978,232840 ,2,14979,319375 ,2,829,45 ,1,0,198255 ,2,14956,233065 ,2,822,29125 ,2,14975,572900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397010 ,2,829,45 ,1,0,198275 ,2,14956,206975 ,2,822,29125 ,2,14975,599870 ,2,14976,24020 ,2,14977,71380 ,2,14965,45 ,2,14978,124505 ,2,14979,372195 ,2,829,45 ,1,0,84165 ,1,1,84195 ,2,14956,6245 ,2,822,29125 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388560 ,2,829,45 ,2,14956,13210 ,2,822,29125 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396365 ,2,829,45 ,1,0,272695 ,1,1,45 ,1,2,45 ,2,14956,232720 ,2,822,29125 ,2,14975,572850 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386055 ,2,829,45 ,1,0,264055 ,1,1,45 ,1,2,198275 ,1,3,614705 ,2,14956,232735 ,2,822,29125 ,2,14975,572850 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383215 ,2,829,45 ,1,0,264055 ,2,14956,233075 ,2,822,29125 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392445 ,2,829,45 ,1,0,198275 ,2,14956,183640 ,2,822,29125 ,2,14975,572850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382060 ,2,829,45 ,2,14956,233085 ,2,822,29125 ,2,14975,562300 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319385 ,2,829,45 ,1,0,272705 ,1,1,45 ,1,2,45 ,2,14956,233095 ,2,822,29125 ,2,14975,567855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319395 ,2,829,45 ,1,0,44920 ,1,1,45 ,1,2,613640 ,2,14956,233425 ,2,822,29215 ,2,14975,573185 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,319435 ,2,829,45 ,2,14956,233415 ,2,822,29260 ,2,14975,572945 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319470 ,2,829,45 ,1,0,264045 ,1,1,264035 ,2,14956,233155 ,2,822,29250 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258975 ,2,14979,2415 ,2,829,45 ,1,0,198255 ,1,1,198230 ,1,2,198335 ,1,3,198325 ,1,4,198315 ,2,14956,233170 ,2,822,29250 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,258985 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,301565 ,2,14956,175910 ,2,822,29250 ,2,14975,609715 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259020 ,2,14979,413615 ,2,829,45 ,2,14956,10080 ,2,822,29260 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,124710 ,2,14979,381845 ,2,829,45 ,1,0,198485 ,1,1,198475 ,1,2,198465 ,1,3,198455 ,1,4,198440 ,1,5,198420 ,1,6,198410 ,1,7,198390 ,1,8,198380 ,2,14956,10080 ,2,822,29260 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,232850 ,2,14979,319490 ,2,829,45 ,2,14956,171965 ,2,822,29260 ,2,14975,573005 ,2,14976,23075 ,2,14977,23065 ,2,14965,548865 ,2,14978,45 ,2,14979,380280 ,2,829,45 ,1,0,198430 ,1,1,198580 ,1,2,198565 ,1,3,198555 ,1,4,198545 ,1,5,198535 ,2,14956,233200 ,2,822,29315 ,2,14975,609785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319500 ,2,829,45 ,1,0,198485 ,2,14956,233220 ,2,822,29315 ,2,14975,609825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319520 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,198590 ,2,14956,233230 ,2,822,29315 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319560 ,2,829,45 ,1,0,198600 ,2,14956,209050 ,2,822,29315 ,2,14975,609830 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319570 ,2,829,45 ,2,14956,233240 ,2,822,29315 ,2,14975,609775 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319510 ,2,829,45 ,1,0,198640 ,1,1,198600 ,1,2,198610 ,2,14956,233250 ,2,822,29315 ,2,14975,609775 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319530 ,2,829,45 ,2,14956,233265 ,2,822,29315 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319580 ,2,829,45 ,1,0,198660 ,1,1,198650 ,2,14956,166495 ,2,822,52000 ,2,14975,573125 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411840 ,2,829,45 ,2,14956,166530 ,2,822,52000 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375980 ,2,829,45 ,1,0,197365 ,2,14956,166935 ,2,822,52000 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379535 ,2,829,45 ,1,0,198455 ,1,1,197685 ,2,14956,166870 ,2,822,52000 ,2,14975,573125 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411775 ,2,829,45 ,1,0,198670 ,2,14956,171195 ,2,822,52000 ,2,14975,573130 ,2,14976,23130 ,2,14977,23120 ,2,14965,548995 ,2,14978,45 ,2,14979,376030 ,2,829,45 ,2,14956,171930 ,2,822,52000 ,2,14975,573135 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374695 ,2,829,45 ,1,0,272790 ,1,1,272765 ,1,2,272755 ,1,3,272745 ,1,4,272735 ,1,5,272800 ,1,6,272725 ,2,14956,166985 ,2,822,29260 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,124710 ,2,14979,381130 ,2,829,45 ,1,0,45060 ,1,1,45 ,1,2,45050 ,1,3,45 ,1,4,45040 ,1,5,45030 ,1,6,45010 ,1,7,613975 ,2,14956,166670 ,2,822,29260 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,124950 ,2,14979,376715 ,2,829,45 ,2,14956,166660 ,2,822,29260 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,232860 ,2,14979,319590 ,2,829,45 ,1,0,198680 ,2,14956,233370 ,2,822,29260 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,124995 ,2,14979,2415 ,2,829,45 ,2,14956,208945 ,2,822,29260 ,2,14975,573140 ,2,14976,23075 ,2,14977,23065 ,2,14965,549030 ,2,14978,232895 ,2,14979,319605 ,2,829,45 ,1,0,198700 ,1,1,198690 ,2,14956,2855 ,2,822,29260 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414715 ,2,829,45 ,2,14956,171390 ,2,822,29260 ,2,14975,573145 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393615 ,2,829,45 ,1,0,198730 ,1,1,198710 ,2,14956,171410 ,2,822,29260 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370075 ,2,829,45 ,2,14956,166660 ,2,822,29260 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,124950 ,2,14979,377260 ,2,829,45 ,1,0,264065 ,2,14956,166680 ,2,822,29260 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411930 ,2,829,45 ,1,0,198230 ,2,14956,10665 ,2,822,29260 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412600 ,2,829,45 ,1,0,198810 ,1,1,198800 ,1,2,198790 ,1,3,198780 ,1,4,198750 ,2,14956,166740 ,2,822,29260 ,2,14975,573175 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375925 ,2,829,45 ,1,0,166185 ,1,1,166195 ,2,14956,208945 ,2,822,29260 ,2,14975,573140 ,2,14976,23075 ,2,14977,23065 ,2,14965,549030 ,2,14978,124995 ,2,14979,394645 ,2,829,45 ,2,14956,233390 ,2,822,29260 ,2,14975,573180 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259030 ,2,14979,416590 ,2,829,45 ,1,0,198670 ,1,1,198855 ,2,14956,233435 ,2,822,29215 ,2,14975,561380 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319625 ,2,829,45 ,2,14956,2855 ,2,822,29170 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391815 ,2,829,45 ,1,0,272810 ,1,1,45 ,1,2,45 ,2,14956,6245 ,2,822,29170 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389030 ,2,829,45 ,1,0,45 ,1,1,45070 ,1,2,613640 ,2,14956,13210 ,2,822,29170 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397340 ,2,829,45 ,2,14956,179555 ,2,822,29170 ,2,14975,573190 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,323165 ,2,829,45 ,1,0,198920 ,1,1,198910 ,1,2,198900 ,1,3,198865 ,1,4,198885 ,1,5,198875 ,2,14956,183640 ,2,822,29170 ,2,14975,573190 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382830 ,2,829,45 ,1,0,614045 ,1,1,615295 ,1,2,369800 ,1,3,369785 ,1,4,65 ,1,5,65 ,1,6,369775 ,1,7,369765 ,1,8,65 ,1,9,65 ,2,14956,233485 ,2,822,29170 ,2,14975,562115 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398760 ,2,829,45 ,1,0,623955 ,1,1,615295 ,1,2,354905 ,1,3,354890 ,1,4,354885 ,1,5,354875 ,1,6,354860 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,354815 ,1,11,65 ,1,12,354810 ,1,13,354795 ,1,14,354770 ,1,15,354785 ,1,16,65 ,1,17,354775 ,2,14956,170435 ,2,822,29170 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259040 ,2,14979,412910 ,2,829,45 ,2,14956,233510 ,2,822,52010 ,2,14975,573200 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259050 ,2,14979,319635 ,2,829,45 ,1,0,272820 ,1,1,45 ,1,2,45 ,2,14956,233530 ,2,822,52020 ,2,14975,573205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259060 ,2,14979,319665 ,2,829,45 ,1,0,45120 ,1,1,45 ,1,2,613640 ,2,14956,233555 ,2,822,52060 ,2,14975,573205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259070 ,2,14979,319675 ,2,829,45 ,2,14956,233575 ,2,822,29335 ,2,14975,573200 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259050 ,2,14979,2415 ,2,829,45 ,1,0,198990 ,1,1,198980 ,1,2,198970 ,2,14956,233585 ,2,822,29335 ,2,14975,573205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259060 ,2,14979,2415 ,2,829,45 ,2,14956,233600 ,2,822,29335 ,2,14975,573205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259070 ,2,14979,2415 ,2,829,45 ,1,0,272835 ,1,1,45 ,1,2,45 ,2,14956,238455 ,2,822,29345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319695 ,2,829,45 ,1,0,45110 ,1,1,45 ,1,2,613640 ,2,14956,238355 ,2,822,29370 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319790 ,2,829,45 ,2,14956,217455 ,2,822,29380 ,2,14975,573250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384960 ,2,829,45 ,1,0,199000 ,2,14956,233610 ,2,822,29380 ,2,14975,573255 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319830 ,2,829,45 ,1,0,3010 ,1,1,302405 ,1,2,302395 ,2,14956,213590 ,2,822,29380 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259080 ,2,14979,413355 ,2,829,45 ,1,0,196695 ,2,14956,233630 ,2,822,29390 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,319850 ,2,829,45 ,2,14956,2855 ,2,822,29400 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415575 ,2,829,45 ,1,0,272855 ,1,1,45 ,1,2,45 ,2,14956,233705 ,2,822,29470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,125410 ,2,14979,399330 ,2,829,45 ,1,0,45150 ,1,1,45180 ,1,2,45170 ,1,3,45 ,1,4,45 ,1,5,616170 ,2,14956,233695 ,2,822,29470 ,2,14975,110 ,2,14976,72785 ,2,14977,23120 ,2,14965,45 ,2,14978,232905 ,2,14979,319910 ,2,829,45 ,2,14956,233695 ,2,822,29470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,125410 ,2,14979,319920 ,2,829,45 ,1,0,199080 ,2,14956,233705 ,2,822,29490 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,125440 ,2,14979,399345 ,2,829,45 ,1,0,588005 ,2,14956,233695 ,2,822,29490 ,2,14975,110 ,2,14976,72785 ,2,14977,23120 ,2,14965,45 ,2,14978,232915 ,2,14979,319940 ,2,829,45 ,2,14956,233695 ,2,822,29490 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,125440 ,2,14979,319950 ,2,829,45 ,1,0,272845 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,29500 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392375 ,2,829,45 ,1,0,45220 ,1,1,45 ,1,2,613640 ,2,14956,234105 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,73055 ,2,14965,45 ,2,14978,45 ,2,14979,320010 ,2,829,45 ,2,14956,233805 ,2,822,29520 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409190 ,2,829,45 ,1,0,199125 ,1,1,199115 ,1,2,199105 ,1,3,199090 ,2,14956,233815 ,2,822,30430 ,2,14975,573360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320050 ,2,829,45 ,2,14956,233825 ,2,822,30450 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,199505 ,1,1,199495 ,1,2,199485 ,1,3,199460 ,1,4,199450 ,1,5,199440 ,1,6,199430 ,1,7,199420 ,1,8,199400 ,1,9,199135 ,2,14956,233875 ,2,822,30450 ,2,14975,573365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259090 ,2,14979,2415 ,2,829,45 ,1,0,199390 ,1,1,199185 ,2,14956,233835 ,2,822,52070 ,2,14975,573365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259090 ,2,14979,320100 ,2,829,45 ,2,14956,4490 ,2,822,29510 ,2,14975,599870 ,2,14976,72950 ,2,14977,72940 ,2,14965,45 ,2,14978,250710 ,2,14979,2415 ,2,829,45 ,1,0,272865 ,1,1,45 ,1,2,45 ,2,14956,233925 ,2,822,30450 ,2,14975,110 ,2,14976,24120 ,2,14977,72990 ,2,14965,45 ,2,14978,45 ,2,14979,320130 ,2,829,45 ,1,0,45 ,1,1,45240 ,1,2,613640 ,2,14956,184135 ,2,822,30450 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382210 ,2,829,45 ,2,14956,207470 ,2,822,29570 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,199360 ,1,1,199350 ,1,2,199340 ,1,3,199330 ,1,4,199230 ,1,5,199205 ,2,14956,171705 ,2,822,14470 ,2,14975,606515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359635 ,2,829,45 ,2,14956,233945 ,2,822,30450 ,2,14975,110 ,2,14976,23450 ,2,14977,73035 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272890 ,1,1,45 ,1,2,45 ,2,14956,233975 ,2,822,30450 ,2,14975,110 ,2,14976,23450 ,2,14977,73035 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,45260 ,1,2,45290 ,1,3,45280 ,1,4,45 ,1,5,616170 ,2,14956,234005 ,2,822,30450 ,2,14975,573365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259135 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,354085 ,2,14956,233985 ,2,822,52080 ,2,14975,573365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259135 ,2,14979,320175 ,2,829,45 ,2,14956,234015 ,2,822,30450 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,199250 ,2,14956,234025 ,2,822,30450 ,2,14975,110 ,2,14976,23450 ,2,14977,73045 ,2,14965,45 ,2,14978,45 ,2,14979,393625 ,2,829,45 ,2,14956,234035 ,2,822,30450 ,2,14975,110 ,2,14976,23450 ,2,14977,73035 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,199300 ,1,1,199290 ,2,14956,234085 ,2,822,30450 ,2,14975,573365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259145 ,2,14979,2415 ,2,829,45 ,2,14956,234045 ,2,822,52090 ,2,14975,573365 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259145 ,2,14979,320210 ,2,829,45 ,1,0,199320 ,1,1,199310 ,2,14956,175785 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,549090 ,2,14978,45 ,2,14979,322835 ,2,829,45 ,1,0,3010 ,1,1,302745 ,1,2,302735 ,2,14956,234115 ,2,822,29510 ,2,14975,573380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320020 ,2,829,45 ,1,0,3010 ,1,1,302810 ,1,2,302800 ,1,3,302790 ,1,4,302765 ,2,14956,234125 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320230 ,2,829,45 ,2,14956,182390 ,2,822,29510 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385650 ,2,829,45 ,1,0,272900 ,1,1,45 ,1,2,45 ,2,14956,234145 ,2,822,29510 ,2,14975,573390 ,2,14976,24020 ,2,14977,73080 ,2,14965,549100 ,2,14978,45 ,2,14979,320240 ,2,829,45 ,1,0,45 ,1,1,45315 ,1,2,613640 ,2,14956,234180 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,549110 ,2,14978,45 ,2,14979,320255 ,2,829,45 ,2,14956,234190 ,2,822,29510 ,2,14975,573370 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,320070 ,2,829,45 ,1,0,264075 ,2,14956,234210 ,2,822,29510 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,125890 ,2,14979,2415 ,2,829,45 ,1,0,199185 ,1,1,199390 ,2,14956,234200 ,2,822,29510 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,232925 ,2,14979,320275 ,2,829,45 ,1,0,199185 ,2,14956,234230 ,2,822,29510 ,2,14975,573370 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,320315 ,2,829,45 ,1,0,3010 ,1,1,205195 ,1,2,302915 ,2,14956,234240 ,2,822,29510 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320325 ,2,829,45 ,1,0,70765 ,1,1,78390 ,1,2,78320 ,2,14956,234260 ,2,822,29510 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,125935 ,2,14979,2415 ,2,829,45 ,1,0,3010 ,1,1,302800 ,1,2,302790 ,1,3,302810 ,1,4,302765 ,2,14956,234250 ,2,822,29510 ,2,14975,110 ,2,14976,69315 ,2,14977,23120 ,2,14965,45 ,2,14978,232940 ,2,14979,320335 ,2,829,45 ,1,0,198810 ,1,1,199505 ,2,14956,234305 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320355 ,2,829,45 ,2,14956,234315 ,2,822,29510 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,549115 ,2,14978,45 ,2,14979,320365 ,2,829,45 ,1,0,272910 ,1,1,45 ,1,2,45 ,2,14956,234325 ,2,822,29510 ,2,14975,573330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320375 ,2,829,45 ,1,0,45335 ,1,1,45 ,1,2,613640 ,2,14956,217195 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369525 ,2,829,45 ,2,14956,175795 ,2,822,29510 ,2,14975,573450 ,2,14976,23130 ,2,14977,23120 ,2,14965,549150 ,2,14978,45 ,2,14979,320385 ,2,829,45 ,1,0,199515 ,1,1,199600 ,1,2,199590 ,1,3,199580 ,1,4,199550 ,1,5,199530 ,2,14956,234400 ,2,822,30450 ,2,14975,573440 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259155 ,2,14979,2415 ,2,829,45 ,2,14956,234365 ,2,822,52100 ,2,14975,573440 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259155 ,2,14979,320425 ,2,829,45 ,1,0,272920 ,1,1,45 ,1,2,45 ,2,14956,234345 ,2,822,30430 ,2,14975,573430 ,2,14976,23130 ,2,14977,73110 ,2,14965,45 ,2,14978,45 ,2,14979,320435 ,2,829,45 ,1,0,45 ,1,1,45355 ,1,2,613640 ,2,14956,234355 ,2,822,30320 ,2,14975,573435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,234410 ,2,822,30450 ,2,14975,573445 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,320415 ,2,829,45 ,1,0,199645 ,1,1,199635 ,1,2,199625 ,1,3,199610 ,2,14956,234420 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320060 ,2,829,45 ,1,0,198920 ,1,1,197455 ,1,2,198370 ,1,3,199645 ,2,14956,216035 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386225 ,2,829,45 ,2,14956,234200 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,125890 ,2,14979,320285 ,2,829,45 ,1,0,199695 ,2,14956,234430 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320120 ,2,829,45 ,2,14956,234445 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322795 ,2,829,45 ,1,0,272935 ,1,1,45 ,1,2,45 ,2,14956,234465 ,2,822,29510 ,2,14975,573455 ,2,14976,23450 ,2,14977,73130 ,2,14965,549165 ,2,14978,45 ,2,14979,320475 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45445 ,1,3,45385 ,1,4,45375 ,1,5,616170 ,2,14956,234475 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320265 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,370650 ,1,8,370645 ,1,9,370620 ,2,14956,234520 ,2,822,29510 ,2,14975,573460 ,2,14976,23450 ,2,14977,73150 ,2,14965,549175 ,2,14978,45 ,2,14979,320485 ,2,829,45 ,2,14956,237535 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320500 ,2,829,45 ,1,0,199705 ,2,14956,234635 ,2,822,29580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320550 ,2,829,45 ,2,14956,234540 ,2,822,29580 ,2,14975,110 ,2,14976,23130 ,2,14977,73200 ,2,14965,45 ,2,14978,45 ,2,14979,399410 ,2,829,45 ,1,0,199810 ,1,1,199655 ,1,2,199765 ,1,3,199755 ,1,4,199745 ,1,5,199735 ,1,6,199725 ,1,7,199715 ,2,14956,234550 ,2,822,29580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320560 ,2,829,45 ,2,14956,234560 ,2,822,29580 ,2,14975,580980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340880 ,2,829,45 ,1,0,199830 ,2,14956,234570 ,2,822,29580 ,2,14975,573500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417010 ,2,829,45 ,1,0,588275 ,2,14956,234615 ,2,822,29580 ,2,14975,573495 ,2,14976,24120 ,2,14977,73210 ,2,14965,45 ,2,14978,45 ,2,14979,341640 ,2,829,45 ,1,0,199850 ,1,1,199840 ,2,14956,237250 ,2,822,29590 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320615 ,2,829,45 ,2,14956,217455 ,2,822,29605 ,2,14975,573520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385010 ,2,829,45 ,1,0,272945 ,1,1,267890 ,1,2,45 ,2,14956,234655 ,2,822,29625 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387960 ,2,829,45 ,1,0,45455 ,1,1,45465 ,1,2,45 ,1,3,45490 ,1,4,45 ,1,5,616170 ,2,14956,234665 ,2,822,29625 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391335 ,2,829,45 ,2,14956,234685 ,2,822,29625 ,2,14975,573570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320665 ,2,829,45 ,1,0,199820 ,1,1,200025 ,1,2,200015 ,1,3,199980 ,1,4,199970 ,1,5,199960 ,1,6,199950 ,1,7,199930 ,1,8,199920 ,1,9,199910 ,1,10,199900 ,1,11,199880 ,1,12,199870 ,1,13,199860 ,2,14956,234695 ,2,822,29625 ,2,14975,573555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,199645 ,1,1,198670 ,2,14956,217405 ,2,822,29635 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416265 ,2,829,45 ,1,0,127890 ,1,1,128145 ,1,2,127785 ,1,3,128355 ,1,4,128365 ,2,14956,234725 ,2,822,29635 ,2,14975,573580 ,2,14976,23450 ,2,14977,73360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,194645 ,2,14956,234745 ,2,822,29670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409195 ,2,829,45 ,1,0,120245 ,1,1,130370 ,1,2,130350 ,1,3,130305 ,1,4,130285 ,2,14956,171330 ,2,822,29670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,194110 ,2,14956,234800 ,2,822,29680 ,2,14975,568460 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,414675 ,2,829,45 ,1,0,140635 ,1,1,129935 ,2,14956,234810 ,2,822,29680 ,2,14975,573380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320685 ,2,829,45 ,1,0,133600 ,1,1,132850 ,1,2,106445 ,1,3,106385 ,1,4,133505 ,2,14956,234830 ,2,822,29680 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,126460 ,2,14979,399355 ,2,829,45 ,1,0,149355 ,2,14956,234820 ,2,822,29680 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,232950 ,2,14979,320695 ,2,829,45 ,1,0,149265 ,2,14956,234845 ,2,822,29680 ,2,14975,564890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388865 ,2,829,45 ,1,0,130775 ,2,14956,234855 ,2,822,29680 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320745 ,2,829,45 ,1,0,113360 ,2,14956,234820 ,2,822,29680 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,126460 ,2,14979,320725 ,2,829,45 ,1,0,152950 ,2,14956,234865 ,2,822,29680 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399210 ,2,829,45 ,1,0,104360 ,1,1,66550 ,1,2,153405 ,1,3,153485 ,1,4,153615 ,2,14956,234910 ,2,822,29680 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320755 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,151625 ,1,3,57795 ,2,14956,234875 ,2,822,30430 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320765 ,2,829,45 ,1,0,151625 ,1,1,57795 ,2,14956,234920 ,2,822,29680 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390475 ,2,829,45 ,1,0,152045 ,1,1,151765 ,1,2,151570 ,1,3,152205 ,1,4,151655 ,2,14956,235135 ,2,822,29680 ,2,14975,573610 ,2,14976,23450 ,2,14977,73360 ,2,14965,45 ,2,14978,45 ,2,14979,320775 ,2,829,45 ,2,14956,234930 ,2,822,29775 ,2,14975,573620 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272955 ,1,1,45 ,1,2,45 ,2,14956,234940 ,2,822,29785 ,2,14975,573625 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320785 ,2,829,45 ,1,0,45510 ,1,1,45 ,1,2,613640 ,2,14956,182390 ,2,822,29720 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412835 ,2,829,45 ,2,14956,217240 ,2,822,29720 ,2,14975,573645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320830 ,2,829,45 ,1,0,200045 ,1,1,200035 ,2,14956,213590 ,2,822,29720 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259165 ,2,14979,413070 ,2,829,45 ,1,0,106905 ,1,1,105355 ,1,2,106730 ,1,3,140665 ,2,14956,2855 ,2,822,29730 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392420 ,2,829,45 ,1,0,167945 ,1,1,168110 ,2,14956,6245 ,2,822,29730 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389170 ,2,829,45 ,1,0,150570 ,2,14956,13210 ,2,822,29730 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397755 ,2,829,45 ,1,0,119100 ,2,14956,166515 ,2,822,29730 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412115 ,2,829,45 ,1,0,96435 ,1,1,96000 ,1,2,117325 ,1,3,96040 ,1,4,117525 ,1,5,96030 ,1,6,117490 ,1,7,96110 ,1,8,117425 ,1,9,96230 ,2,14956,174925 ,2,822,29730 ,2,14975,573670 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259180 ,2,14979,412850 ,2,829,45 ,1,0,154825 ,1,1,155370 ,1,2,155360 ,1,3,154730 ,1,4,155110 ,2,14956,235055 ,2,822,29690 ,2,14975,100 ,2,14976,23450 ,2,14977,73580 ,2,14965,45 ,2,14978,45 ,2,14979,320865 ,2,829,45 ,1,0,157995 ,2,14956,235065 ,2,822,29690 ,2,14975,110 ,2,14976,24020 ,2,14977,73605 ,2,14965,45 ,2,14978,45 ,2,14979,320920 ,2,829,45 ,1,0,96090 ,1,1,144250 ,1,2,74240 ,1,3,145450 ,1,4,145710 ,1,5,146065 ,1,6,145660 ,2,14956,235075 ,2,822,29690 ,2,14975,573685 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320875 ,2,829,45 ,1,0,79335 ,1,1,58385 ,2,14956,235085 ,2,822,29690 ,2,14975,573670 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320885 ,2,829,45 ,1,0,140665 ,1,1,57795 ,2,14956,235095 ,2,822,29690 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320895 ,2,829,45 ,1,0,100575 ,1,1,101220 ,1,2,101425 ,1,3,57795 ,2,14956,234025 ,2,822,29680 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393590 ,2,829,45 ,1,0,79335 ,1,1,142205 ,1,2,110880 ,1,3,103095 ,1,4,75305 ,1,5,61180 ,1,6,65920 ,1,7,79355 ,1,8,72265 ,1,9,72070 ,1,10,72090 ,1,11,72330 ,1,12,101510 ,1,13,66200 ,1,14,57795 ,1,15,200060 ,2,14956,235145 ,2,822,29680 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398935 ,2,829,45 ,1,0,141420 ,2,14956,235165 ,2,822,29680 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,126820 ,2,14979,399370 ,2,829,45 ,1,0,115325 ,1,1,72780 ,2,14956,235155 ,2,822,29680 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,232960 ,2,14979,320930 ,2,829,45 ,1,0,103340 ,2,14956,2855 ,2,822,29680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392360 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,200080 ,2,14956,234685 ,2,822,29680 ,2,14975,573570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390480 ,2,829,45 ,1,0,200070 ,2,14956,235175 ,2,822,29680 ,2,14975,568430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320950 ,2,829,45 ,1,0,558310 ,2,14956,217240 ,2,822,29680 ,2,14975,573690 ,2,14976,23075 ,2,14977,23065 ,2,14965,549360 ,2,14978,45 ,2,14979,320960 ,2,829,45 ,1,0,200155 ,1,1,200145 ,1,2,200070 ,1,3,200135 ,1,4,200090 ,2,14956,235185 ,2,822,29680 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389095 ,2,829,45 ,1,0,148170 ,2,14956,235155 ,2,822,29680 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,126820 ,2,14979,320940 ,2,829,45 ,1,0,103095 ,1,1,86335 ,2,14956,184135 ,2,822,29775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320980 ,2,829,45 ,1,0,103095 ,1,1,72265 ,2,14956,234665 ,2,822,29775 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320990 ,2,829,45 ,1,0,243250 ,1,1,303670 ,1,2,209400 ,1,3,205425 ,1,4,303660 ,1,5,241760 ,2,14956,235250 ,2,822,30450 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321045 ,2,829,45 ,2,14956,235260 ,2,822,30450 ,2,14975,573365 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,272965 ,1,1,45 ,1,2,45 ,2,14956,235270 ,2,822,29785 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321055 ,2,829,45 ,1,0,45 ,1,1,200165 ,1,2,613640 ,2,14956,234865 ,2,822,29775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321065 ,2,829,45 ,1,0,200165 ,2,14956,235290 ,2,822,29775 ,2,14975,573705 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416905 ,2,829,45 ,1,0,103095 ,1,1,153750 ,1,2,153270 ,1,3,128605 ,1,4,141750 ,1,5,153725 ,1,6,141730 ,2,14956,235310 ,2,822,29785 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416945 ,2,829,45 ,1,0,103095 ,1,1,102455 ,2,14956,235320 ,2,822,29785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416940 ,2,829,45 ,1,0,103095 ,1,1,200180 ,1,2,134325 ,1,3,134315 ,1,4,134365 ,1,5,72265 ,1,6,103005 ,2,14956,235345 ,2,822,29785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399360 ,2,829,45 ,2,14956,234845 ,2,822,29785 ,2,14975,564890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321080 ,2,829,45 ,1,0,272990 ,1,1,45 ,1,2,45 ,2,14956,235355 ,2,822,29785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,127065 ,2,14979,321110 ,2,829,45 ,1,0,45 ,1,1,45555 ,1,2,613640 ,2,14956,235355 ,2,822,29785 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,232970 ,2,14979,321130 ,2,829,45 ,2,14956,235365 ,2,822,29785 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,127065 ,2,14979,2415 ,2,829,45 ,1,0,200180 ,2,14956,235375 ,2,822,29785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,321140 ,2,829,45 ,1,0,103095 ,1,1,148170 ,2,14956,234865 ,2,822,29785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321150 ,2,829,45 ,1,0,103095 ,1,1,72265 ,1,2,108775 ,2,14956,235515 ,2,822,29795 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,103095 ,1,1,108775 ,2,14956,235310 ,2,822,29805 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399405 ,2,829,45 ,1,0,141320 ,1,1,72090 ,2,14956,235405 ,2,822,29805 ,2,14975,573780 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,103095 ,1,1,141320 ,1,2,102380 ,1,3,102335 ,2,14956,234800 ,2,822,29795 ,2,14975,568460 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,389980 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,200190 ,2,14956,235465 ,2,822,29795 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,399465 ,2,829,45 ,2,14956,235475 ,2,822,29795 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,273000 ,1,1,45 ,1,2,45 ,2,14956,235495 ,2,822,29795 ,2,14975,573765 ,2,14976,24120 ,2,14977,73860 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45580 ,1,1,45 ,1,2,613640 ,2,14956,217405 ,2,822,29795 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259190 ,2,14979,416270 ,2,829,45 ,2,14956,237110 ,2,822,29840 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,200190 ,1,1,200245 ,1,2,200210 ,1,3,200200 ,2,14956,236785 ,2,822,29850 ,2,14975,574095 ,2,14976,36360 ,2,14977,74870 ,2,14965,549575 ,2,14978,45 ,2,14979,321200 ,2,829,45 ,2,14956,235565 ,2,822,29840 ,2,14975,573790 ,2,14976,35820 ,2,14977,73935 ,2,14965,45 ,2,14978,45 ,2,14979,321225 ,2,829,45 ,1,0,273010 ,1,1,45 ,1,2,45 ,2,14956,217240 ,2,822,29910 ,2,14975,573815 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321235 ,2,829,45 ,1,0,45600 ,1,1,45 ,1,2,613640 ,2,14956,13210 ,2,822,29890 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396515 ,2,829,45 ,2,14956,6245 ,2,822,29890 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388700 ,2,829,45 ,1,0,200355 ,1,1,200325 ,1,2,200315 ,1,3,200305 ,1,4,200295 ,1,5,200255 ,1,6,200275 ,1,7,200265 ,1,8,200400 ,2,14956,179555 ,2,822,29890 ,2,14975,573815 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,321255 ,2,829,45 ,1,0,71140 ,1,1,130110 ,2,14956,182390 ,2,822,29940 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384335 ,2,829,45 ,1,0,115325 ,1,1,200365 ,1,2,200325 ,1,3,138330 ,1,4,138110 ,1,5,72090 ,2,14956,213590 ,2,822,29940 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259200 ,2,14979,413040 ,2,829,45 ,2,14956,235655 ,2,822,29920 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321285 ,2,829,45 ,1,0,273020 ,1,1,45 ,1,2,45 ,2,14956,217240 ,2,822,30490 ,2,14975,573850 ,2,14976,23450 ,2,14977,74140 ,2,14965,45 ,2,14978,45 ,2,14979,321305 ,2,829,45 ,1,0,45 ,1,1,45635 ,1,2,613640 ,2,14956,235990 ,2,822,29950 ,2,14975,610035 ,2,14976,23130 ,2,14977,23120 ,2,14965,549445 ,2,14978,45 ,2,14979,321355 ,2,829,45 ,2,14956,217455 ,2,822,29960 ,2,14975,573900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384970 ,2,829,45 ,1,0,200385 ,1,1,200365 ,1,2,200375 ,2,14956,235715 ,2,822,29960 ,2,14975,559725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321385 ,2,829,45 ,1,0,115325 ,1,1,138330 ,1,2,138295 ,1,3,122495 ,1,4,122615 ,1,5,138110 ,2,14956,213590 ,2,822,29960 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259210 ,2,14979,413360 ,2,829,45 ,1,0,115325 ,1,1,122465 ,1,2,138110 ,2,14956,235820 ,2,822,29990 ,2,14975,573955 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321405 ,2,829,45 ,2,14956,178295 ,2,822,30010 ,2,14975,573920 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398310 ,2,829,45 ,1,0,273035 ,1,1,45 ,1,2,45 ,2,14956,12355 ,2,822,30010 ,2,14975,573925 ,2,14976,23450 ,2,14977,32470 ,2,14965,549495 ,2,14978,45 ,2,14979,398380 ,2,829,45 ,1,0,45655 ,1,1,45695 ,1,2,45685 ,1,3,45 ,1,4,45675 ,1,5,45 ,1,6,614045 ,2,14956,10760 ,2,822,30010 ,2,14975,573920 ,2,14976,23450 ,2,14977,32540 ,2,14965,45 ,2,14978,45 ,2,14979,398305 ,2,829,45 ,2,14956,195335 ,2,822,30035 ,2,14975,567740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381700 ,2,829,45 ,1,0,200430 ,1,1,200420 ,2,14956,216645 ,2,822,30055 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387160 ,2,829,45 ,2,14956,235850 ,2,822,30065 ,2,14975,573990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321480 ,2,829,45 ,1,0,200465 ,1,1,200455 ,2,14956,2855 ,2,822,30110 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391135 ,2,829,45 ,2,14956,235870 ,2,822,30110 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394580 ,2,829,45 ,1,0,200475 ,2,14956,235850 ,2,822,30110 ,2,14975,573990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391735 ,2,829,45 ,2,14956,235900 ,2,822,30110 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416395 ,2,829,45 ,1,0,200505 ,1,1,200495 ,1,2,200485 ,1,3,200410 ,1,4,200515 ,2,14956,182390 ,2,822,29950 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385635 ,2,829,45 ,1,0,198640 ,2,14956,235945 ,2,822,29950 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321490 ,2,829,45 ,1,0,66550 ,2,14956,235850 ,2,822,29950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392485 ,2,829,45 ,1,0,102445 ,1,1,72265 ,1,2,86650 ,2,14956,223625 ,2,822,29950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365585 ,2,829,45 ,1,0,102445 ,2,14956,235955 ,2,822,29950 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321500 ,2,829,45 ,1,0,166340 ,1,1,166330 ,2,14956,217195 ,2,822,29950 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369515 ,2,829,45 ,1,0,200565 ,1,1,200525 ,2,14956,235965 ,2,822,29950 ,2,14975,573855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,217240 ,2,822,29960 ,2,14975,610075 ,2,14976,23130 ,2,14977,23120 ,2,14965,549560 ,2,14978,45 ,2,14979,321345 ,2,829,45 ,1,0,200525 ,1,1,200565 ,2,14956,217240 ,2,822,30120 ,2,14975,574030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321335 ,2,829,45 ,1,0,79335 ,1,1,57795 ,1,2,96820 ,2,14956,2855 ,2,822,30140 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391130 ,2,829,45 ,2,14956,235870 ,2,822,30140 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394565 ,2,829,45 ,1,0,200575 ,2,14956,235850 ,2,822,30140 ,2,14975,574060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391725 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,56415 ,1,6,56320 ,2,14956,235900 ,2,822,30140 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395440 ,2,829,45 ,1,0,78070 ,1,1,119600 ,2,14956,235850 ,2,822,30150 ,2,14975,574060 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321535 ,2,829,45 ,1,0,119405 ,1,1,118130 ,2,14956,236010 ,2,822,30150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321545 ,2,829,45 ,1,0,66360 ,1,1,120225 ,1,2,120140 ,1,3,120215 ,1,4,120130 ,2,14956,236645 ,2,822,30150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321555 ,2,829,45 ,1,0,102700 ,1,1,93855 ,2,14956,236635 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321585 ,2,829,45 ,1,0,189765 ,2,14956,166610 ,2,822,52110 ,2,14975,574085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,74635 ,2,14979,321605 ,2,829,45 ,1,0,191875 ,2,14956,10080 ,2,822,52110 ,2,14975,574085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,127825 ,2,14979,381455 ,2,829,45 ,1,0,189870 ,2,14956,10080 ,2,822,52110 ,2,14975,574085 ,2,14976,74645 ,2,14977,23120 ,2,14965,45 ,2,14978,233010 ,2,14979,321615 ,2,829,45 ,1,0,191975 ,2,14956,236040 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,189975 ,2,14956,231975 ,2,822,52110 ,2,14975,574085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396270 ,2,829,45 ,1,0,192090 ,2,14956,236060 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,74675 ,2,14979,321640 ,2,829,45 ,1,0,190070 ,2,14956,236105 ,2,822,30160 ,2,14975,574085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,192185 ,2,14956,166985 ,2,822,30160 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,127825 ,2,14979,380935 ,2,829,45 ,1,0,192275 ,2,14956,236115 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321650 ,2,829,45 ,1,0,192360 ,2,14956,236125 ,2,822,30160 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321660 ,2,829,45 ,1,0,192430 ,2,14956,236155 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321670 ,2,829,45 ,1,0,192530 ,2,14956,236135 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,74715 ,2,14979,2415 ,2,829,45 ,1,0,192615 ,2,14956,236165 ,2,822,30160 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321815 ,2,829,45 ,1,0,192705 ,2,14956,236185 ,2,822,52110 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,74770 ,2,14979,321825 ,2,829,45 ,1,0,192800 ,2,14956,6245 ,2,822,30160 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388025 ,2,829,45 ,1,0,192905 ,2,14956,236215 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321680 ,2,829,45 ,1,0,193000 ,2,14956,236225 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,193100 ,2,14956,236235 ,2,822,52110 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321835 ,2,829,45 ,1,0,304105 ,1,1,45 ,2,14956,236245 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321845 ,2,829,45 ,1,0,304105 ,1,1,45 ,2,14956,2855 ,2,822,30160 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389865 ,2,829,45 ,1,0,304115 ,1,1,45 ,2,14956,236255 ,2,822,30160 ,2,14975,574085 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,321870 ,2,829,45 ,1,0,148480 ,1,1,95695 ,2,14956,236265 ,2,822,52110 ,2,14975,599965 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,321890 ,2,829,45 ,1,0,95695 ,2,14956,236275 ,2,822,52110 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325275 ,2,829,45 ,1,0,105220 ,2,14956,236285 ,2,822,52110 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321910 ,2,829,45 ,1,0,106085 ,1,1,105220 ,2,14956,236315 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321775 ,2,829,45 ,1,0,163610 ,1,1,105220 ,2,14956,169970 ,2,822,52110 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375110 ,2,829,45 ,1,0,106905 ,1,1,105355 ,2,14956,236325 ,2,822,52110 ,2,14975,574085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,105355 ,2,14956,236335 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321920 ,2,829,45 ,1,0,57795 ,1,1,84355 ,2,14956,236365 ,2,822,52110 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,74780 ,2,14979,321900 ,2,829,45 ,1,0,156695 ,2,14956,236375 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321710 ,2,829,45 ,1,0,157650 ,2,14956,236385 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321700 ,2,829,45 ,1,0,148480 ,1,1,115685 ,2,14956,236395 ,2,822,52110 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321765 ,2,829,45 ,1,0,118320 ,1,1,119465 ,1,2,143485 ,1,3,143840 ,1,4,118225 ,1,5,143655 ,1,6,100830 ,2,14956,236420 ,2,822,30160 ,2,14975,574085 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,321930 ,2,829,45 ,1,0,111270 ,2,14956,13210 ,2,822,52110 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395165 ,2,829,45 ,1,0,60765 ,2,14956,236430 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321940 ,2,829,45 ,1,0,60745 ,2,14956,236440 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321785 ,2,829,45 ,2,14956,236450 ,2,822,30160 ,2,14975,574085 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,321965 ,2,829,45 ,1,0,200785 ,1,1,200775 ,1,2,200765 ,1,3,200740 ,1,4,200730 ,1,5,200720 ,1,6,200710 ,1,7,200695 ,1,8,200685 ,1,9,200635 ,1,10,200665 ,2,14956,236460 ,2,822,52110 ,2,14975,558275 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321795 ,2,829,45 ,1,0,56605 ,1,1,60765 ,1,2,56320 ,1,3,56415 ,2,14956,236490 ,2,822,52110 ,2,14975,574085 ,2,14976,23450 ,2,14977,74810 ,2,14965,45 ,2,14978,45 ,2,14979,321975 ,2,829,45 ,1,0,63570 ,1,1,60765 ,2,14956,236550 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321985 ,2,829,45 ,1,0,588495 ,2,14956,236560 ,2,822,52110 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,200825 ,1,1,200815 ,2,14956,236570 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321995 ,2,829,45 ,1,0,97620 ,1,1,66360 ,1,2,132625 ,2,14956,236580 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322010 ,2,829,45 ,2,14956,236590 ,2,822,52110 ,2,14975,574085 ,2,14976,36360 ,2,14977,36350 ,2,14965,45 ,2,14978,45 ,2,14979,321880 ,2,829,45 ,1,0,200920 ,1,1,200910 ,1,2,200900 ,2,14956,236600 ,2,822,30160 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322020 ,2,829,45 ,1,0,139095 ,2,14956,236610 ,2,822,52110 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321690 ,2,829,45 ,2,14956,236655 ,2,822,30150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322030 ,2,829,45 ,1,0,200980 ,1,1,200960 ,1,2,200950 ,1,3,200930 ,2,14956,236665 ,2,822,30150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321565 ,2,829,45 ,1,0,588565 ,2,14956,213325 ,2,822,30170 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370640 ,2,829,45 ,1,0,201010 ,1,1,200970 ,1,2,201000 ,1,3,201020 ,2,14956,236795 ,2,822,30170 ,2,14975,574100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,201010 ,1,1,200980 ,2,14956,236870 ,2,822,30180 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,128465 ,2,14979,2415 ,2,829,45 ,1,0,200980 ,2,14956,236860 ,2,822,30180 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233020 ,2,14979,322090 ,2,829,45 ,1,0,148480 ,2,14956,182390 ,2,822,30180 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385485 ,2,829,45 ,1,0,588595 ,2,14956,236860 ,2,822,30180 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,128465 ,2,14979,322100 ,2,829,45 ,1,0,201045 ,1,1,201030 ,2,14956,217455 ,2,822,30220 ,2,14975,574160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384810 ,2,829,45 ,2,14956,213590 ,2,822,30220 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259240 ,2,14979,413270 ,2,829,45 ,1,0,201055 ,1,1,201065 ,2,14956,173945 ,2,822,30220 ,2,14975,610090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259250 ,2,14979,410540 ,2,829,45 ,1,0,588620 ,2,14956,217455 ,2,822,30230 ,2,14975,574175 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384815 ,2,829,45 ,1,0,201105 ,1,1,201075 ,2,14956,213590 ,2,822,30230 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259260 ,2,14979,413275 ,2,829,45 ,2,14956,250930 ,2,822,30240 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398525 ,2,829,45 ,1,0,201115 ,1,1,201125 ,2,14956,236910 ,2,822,30240 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398615 ,2,829,45 ,1,0,588695 ,2,14956,236920 ,2,822,30240 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,201135 ,2,14956,217015 ,2,822,30250 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379555 ,2,829,45 ,2,14956,215285 ,2,822,30250 ,2,14975,566930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378815 ,2,829,45 ,1,0,201145 ,2,14956,182390 ,2,822,30270 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384260 ,2,829,45 ,2,14956,237030 ,2,822,30280 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,128690 ,2,14979,2415 ,2,829,45 ,1,0,201175 ,1,1,201165 ,2,14956,237000 ,2,822,30280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233030 ,2,14979,322200 ,2,829,45 ,2,14956,175785 ,2,822,30490 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,549760 ,2,14978,45 ,2,14979,322220 ,2,829,45 ,1,0,201155 ,1,1,201250 ,1,2,201240 ,1,3,201220 ,2,14956,182390 ,2,822,30280 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385480 ,2,829,45 ,2,14956,237000 ,2,822,30280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,128690 ,2,14979,322210 ,2,829,45 ,1,0,201265 ,2,14956,237040 ,2,822,30280 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322230 ,2,829,45 ,2,14956,235465 ,2,822,29840 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,399445 ,2,829,45 ,1,0,201275 ,1,1,201350 ,1,2,201340 ,1,3,201285 ,2,14956,234665 ,2,822,29785 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322240 ,2,829,45 ,1,0,588805 ,2,14956,237110 ,2,822,29785 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399430 ,2,829,45 ,1,0,201370 ,1,1,201360 ,2,14956,237120 ,2,822,29785 ,2,14975,574245 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,321160 ,2,829,45 ,1,0,79355 ,1,1,81480 ,1,2,166340 ,1,3,166285 ,1,4,66025 ,2,14956,234025 ,2,822,29785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322250 ,2,829,45 ,1,0,201385 ,1,1,57795 ,2,14956,184135 ,2,822,29785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382190 ,2,829,45 ,1,0,588825 ,2,14956,237135 ,2,822,29785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387935 ,2,829,45 ,1,0,201450 ,1,1,201415 ,1,2,201385 ,1,3,201405 ,1,4,201395 ,2,14956,237145 ,2,822,29785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322260 ,2,829,45 ,2,14956,216645 ,2,822,30290 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387185 ,2,829,45 ,1,0,201460 ,2,14956,182390 ,2,822,29590 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385675 ,2,829,45 ,1,0,201460 ,2,14956,184135 ,2,822,29590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380810 ,2,829,45 ,2,14956,237220 ,2,822,29590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322300 ,2,829,45 ,1,0,201495 ,1,1,201480 ,1,2,201470 ,2,14956,216035 ,2,822,29590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413545 ,2,829,45 ,2,14956,223625 ,2,822,29590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365920 ,2,829,45 ,1,0,201505 ,2,14956,217195 ,2,822,29590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369585 ,2,829,45 ,1,0,201505 ,2,14956,237230 ,2,822,29590 ,2,14975,573505 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322310 ,2,829,45 ,1,0,588960 ,2,14956,237260 ,2,822,30430 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322320 ,2,829,45 ,1,0,201525 ,1,1,201515 ,2,14956,237270 ,2,822,29590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320540 ,2,829,45 ,2,14956,217035 ,2,822,29680 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320530 ,2,829,45 ,1,0,201555 ,2,14956,237300 ,2,822,29680 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,320520 ,2,829,45 ,1,0,588985 ,2,14956,237310 ,2,822,30500 ,2,14975,564580 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,322355 ,2,829,45 ,1,0,201600 ,1,1,201565 ,1,2,201585 ,1,3,201575 ,2,14956,237330 ,2,822,29370 ,2,14975,110 ,2,14976,23130 ,2,14977,75250 ,2,14965,45 ,2,14978,45 ,2,14979,322365 ,2,829,45 ,1,0,589010 ,2,14956,237345 ,2,822,30530 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322395 ,2,829,45 ,1,0,201620 ,1,1,201610 ,2,14956,237365 ,2,822,30500 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,129060 ,2,14979,2415 ,2,829,45 ,1,0,79355 ,2,14956,237355 ,2,822,30500 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,233040 ,2,14979,322405 ,2,829,45 ,1,0,589020 ,2,14956,237355 ,2,822,30500 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,129060 ,2,14979,322415 ,2,829,45 ,1,0,201670 ,1,1,201630 ,2,14956,3770 ,2,822,30500 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322345 ,2,829,45 ,2,14956,237375 ,2,822,30500 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322455 ,2,829,45 ,1,0,201710 ,1,1,201680 ,1,2,201700 ,1,3,201690 ,2,14956,237420 ,2,822,30500 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,129110 ,2,14979,2415 ,2,829,45 ,1,0,589050 ,2,14956,237410 ,2,822,30500 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,233060 ,2,14979,322475 ,2,829,45 ,1,0,589075 ,2,14956,237430 ,2,822,30500 ,2,14975,574255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,201730 ,1,1,201720 ,2,14956,237460 ,2,822,29440 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,129155 ,2,14979,2415 ,2,829,45 ,2,14956,237450 ,2,822,29440 ,2,14975,110 ,2,14976,75290 ,2,14977,23120 ,2,14965,45 ,2,14978,233070 ,2,14979,322485 ,2,829,45 ,1,0,201775 ,1,1,201740 ,2,14956,237440 ,2,822,30530 ,2,14975,600040 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322525 ,2,829,45 ,2,14956,237450 ,2,822,29440 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,129155 ,2,14979,322515 ,2,829,45 ,1,0,201795 ,1,1,201785 ,2,14956,237505 ,2,822,29440 ,2,14975,574285 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259270 ,2,14979,2415 ,2,829,45 ,1,0,91650 ,2,14956,237470 ,2,822,52120 ,2,14975,574285 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259270 ,2,14979,322545 ,2,829,45 ,2,14956,4490 ,2,822,30530 ,2,14975,568460 ,2,14976,75310 ,2,14977,75300 ,2,14965,45 ,2,14978,250720 ,2,14979,2415 ,2,829,45 ,1,0,273045 ,1,1,45 ,1,2,45 ,2,14956,237515 ,2,822,29440 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,322335 ,2,829,45 ,1,0,201825 ,2,14956,237525 ,2,822,29440 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,320510 ,2,829,45 ,1,0,201825 ,1,1,46115 ,1,2,45 ,1,3,614705 ,2,14956,237535 ,2,822,29440 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,589125 ,2,14956,237550 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,321035 ,2,829,45 ,1,0,201900 ,1,1,201890 ,1,2,201880 ,1,3,201815 ,1,4,201845 ,1,5,201835 ,2,14956,184135 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380800 ,2,829,45 ,1,0,125065 ,1,1,201460 ,1,2,58385 ,2,14956,237560 ,2,822,29510 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,320165 ,2,829,45 ,2,14956,223625 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365595 ,2,829,45 ,1,0,273135 ,1,1,45 ,1,2,45 ,2,14956,237570 ,2,822,29510 ,2,14975,569150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,320040 ,2,829,45 ,1,0,201935 ,1,1,201925 ,1,2,201910 ,2,14956,234250 ,2,822,29510 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,125935 ,2,14979,320345 ,2,829,45 ,1,0,202550 ,1,1,201945 ,2,14956,2855 ,2,822,30330 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415590 ,2,829,45 ,1,0,81085 ,1,1,81100 ,1,2,202475 ,1,3,202450 ,1,4,201995 ,2,14956,216645 ,2,822,30340 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387170 ,2,829,45 ,2,14956,217240 ,2,822,30340 ,2,14975,574320 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322575 ,2,829,45 ,1,0,273055 ,1,1,45 ,1,2,45 ,2,14956,233705 ,2,822,30350 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,129410 ,2,14979,399350 ,2,829,45 ,1,0,46185 ,1,1,45 ,1,2,613640 ,2,14956,233695 ,2,822,30350 ,2,14975,110 ,2,14976,72785 ,2,14977,23120 ,2,14965,45 ,2,14978,233080 ,2,14979,322585 ,2,829,45 ,2,14956,233695 ,2,822,30350 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,129410 ,2,14979,322595 ,2,829,45 ,1,0,202055 ,1,1,202045 ,1,2,202025 ,2,14956,179850 ,2,822,30360 ,2,14975,574350 ,2,14976,24020 ,2,14977,75545 ,2,14965,45 ,2,14978,45 ,2,14979,382635 ,2,829,45 ,1,0,202310 ,1,1,202195 ,1,2,202065 ,2,14956,233705 ,2,822,30380 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,129490 ,2,14979,399325 ,2,829,45 ,2,14956,233695 ,2,822,30380 ,2,14975,110 ,2,14976,72785 ,2,14977,23120 ,2,14965,45 ,2,14978,233090 ,2,14979,322640 ,2,829,45 ,1,0,273065 ,1,1,45 ,1,2,45 ,2,14956,233695 ,2,822,30380 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,129490 ,2,14979,322650 ,2,829,45 ,1,0,45 ,1,1,46205 ,1,2,613640 ,2,14956,237780 ,2,822,30430 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388345 ,2,829,45 ,2,14956,235320 ,2,822,30430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416950 ,2,829,45 ,1,0,202170 ,1,1,202160 ,1,2,202150 ,1,3,202140 ,1,4,202130 ,1,5,202120 ,1,6,202065 ,1,7,202110 ,1,8,202100 ,1,9,202075 ,2,14956,235345 ,2,822,30430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416935 ,2,829,45 ,1,0,3010 ,1,1,183195 ,1,2,304930 ,2,14956,235290 ,2,822,30430 ,2,14975,573705 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399170 ,2,829,45 ,2,14956,234845 ,2,822,30430 ,2,14975,564890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388870 ,2,829,45 ,1,0,273105 ,1,1,45 ,1,2,45 ,2,14956,234865 ,2,822,30430 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416920 ,2,829,45 ,1,0,45 ,1,1,46260 ,1,2,613640 ,2,14956,234920 ,2,822,30430 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414735 ,2,829,45 ,2,14956,234665 ,2,822,30430 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391340 ,2,829,45 ,1,0,202300 ,1,1,202290 ,1,2,202265 ,1,3,202255 ,1,4,202245 ,1,5,202235 ,1,6,202195 ,1,7,202225 ,1,8,202215 ,1,9,202205 ,2,14956,234025 ,2,822,30430 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393600 ,2,829,45 ,2,14956,184135 ,2,822,30430 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412435 ,2,829,45 ,1,0,273115 ,1,1,45 ,1,2,45 ,2,14956,237790 ,2,822,30430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322660 ,2,829,45 ,1,0,46170 ,1,1,45 ,1,2,613640 ,2,14956,237135 ,2,822,30430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414140 ,2,829,45 ,2,14956,234685 ,2,822,30430 ,2,14975,573570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390525 ,2,829,45 ,1,0,202440 ,1,1,202015 ,1,2,202430 ,1,3,202385 ,1,4,202375 ,1,5,202310 ,1,6,202365 ,1,7,202355 ,1,8,202320 ,2,14956,235185 ,2,822,30430 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414490 ,2,829,45 ,2,14956,234655 ,2,822,30430 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414175 ,2,829,45 ,1,0,273125 ,1,1,45 ,1,2,45 ,2,14956,179120 ,2,822,30450 ,2,14975,110 ,2,14976,23450 ,2,14977,75685 ,2,14965,549810 ,2,14978,45 ,2,14979,396340 ,2,829,45 ,1,0,46290 ,1,1,45 ,1,2,613640 ,2,14956,175785 ,2,822,30450 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,549815 ,2,14978,45 ,2,14979,322675 ,2,829,45 ,2,14956,237850 ,2,822,30450 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322685 ,2,829,45 ,1,0,264150 ,1,1,264190 ,1,2,264220 ,1,3,264140 ,2,14956,237865 ,2,822,30450 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322695 ,2,829,45 ,1,0,201995 ,1,1,202450 ,1,2,202475 ,1,3,201945 ,1,4,202495 ,1,5,202995 ,1,6,202505 ,2,14956,237875 ,2,822,30450 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322705 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,201925 ,1,3,201910 ,1,4,46150 ,1,5,201935 ,1,6,614045 ,2,14956,2855 ,2,822,30460 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415625 ,2,829,45 ,2,14956,216035 ,2,822,52130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322725 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,202815 ,1,5,202805 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,202785 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,202775 ,1,15,202765 ,1,16,202755 ,1,17,202730 ,1,18,202720 ,1,19,202710 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,65 ,1,25,202550 ,1,26,202700 ,1,27,202950 ,1,28,202685 ,1,29,202675 ,1,30,202665 ,1,31,202655 ,1,32,202620 ,1,33,202560 ,2,14956,184135 ,2,822,52130 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409200 ,2,829,45 ,2,14956,217335 ,2,822,52130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415055 ,2,829,45 ,1,0,273155 ,1,1,45 ,1,2,45 ,2,14956,217345 ,2,822,52130 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380930 ,2,829,45 ,1,0,45 ,1,1,46310 ,1,2,613640 ,2,14956,217455 ,2,822,30490 ,2,14975,573850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384975 ,2,829,45 ,2,14956,238130 ,2,822,30490 ,2,14975,574420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,129865 ,2,14979,322745 ,2,829,45 ,1,0,202610 ,1,1,202600 ,1,2,202590 ,1,3,202580 ,1,4,202570 ,2,14956,238130 ,2,822,30490 ,2,14975,574420 ,2,14976,75790 ,2,14977,23360 ,2,14965,45 ,2,14978,233120 ,2,14979,322755 ,2,829,45 ,1,0,58895 ,1,1,57795 ,1,2,202450 ,2,14956,234315 ,2,822,30490 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,549835 ,2,14978,45 ,2,14979,322765 ,2,829,45 ,1,0,3010 ,1,1,305450 ,2,14956,237135 ,2,822,29440 ,2,14975,110 ,2,14976,23450 ,2,14977,75865 ,2,14965,45 ,2,14978,45 ,2,14979,387930 ,2,829,45 ,1,0,202195 ,1,1,202065 ,1,2,57795 ,2,14956,234665 ,2,822,29440 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,391315 ,2,829,45 ,1,0,200525 ,1,1,200565 ,1,2,202805 ,1,3,202560 ,1,4,58395 ,1,5,58385 ,1,6,202765 ,1,7,202685 ,2,14956,234845 ,2,822,29440 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,388860 ,2,829,45 ,1,0,202775 ,2,14956,238195 ,2,822,29440 ,2,14975,573275 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,202450 ,1,1,168895 ,2,14956,238240 ,2,822,52150 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259285 ,2,14979,322785 ,2,829,45 ,1,0,202475 ,2,14956,2855 ,2,822,30500 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392340 ,2,829,45 ,1,0,3010 ,1,1,183195 ,1,2,225320 ,2,14956,238260 ,2,822,30500 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259285 ,2,14979,2415 ,2,829,45 ,1,0,202550 ,1,1,202950 ,1,2,202775 ,1,3,202685 ,1,4,202815 ,1,5,202765 ,1,6,202665 ,1,7,202805 ,1,8,202700 ,1,9,202620 ,1,10,202730 ,1,11,202675 ,1,12,202710 ,1,13,202720 ,1,14,202755 ,1,15,202785 ,1,16,202655 ,1,17,202560 ,2,14956,2855 ,2,822,30530 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392335 ,2,829,45 ,1,0,81085 ,1,1,81100 ,1,2,201945 ,1,3,202475 ,2,14956,195335 ,2,822,30530 ,2,14975,574290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259295 ,2,14979,412705 ,2,829,45 ,1,0,130045 ,2,14956,182390 ,2,822,29370 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385625 ,2,829,45 ,1,0,564895 ,2,14956,238310 ,2,822,29370 ,2,14975,573215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,238375 ,2,822,29370 ,2,14975,110 ,2,14976,23130 ,2,14977,75965 ,2,14965,45 ,2,14978,45 ,2,14979,319740 ,2,829,45 ,1,0,273165 ,1,1,45 ,1,2,45 ,2,14956,237410 ,2,822,30500 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,129110 ,2,14979,319730 ,2,829,45 ,1,0,202940 ,1,1,264260 ,1,2,202825 ,1,3,45 ,1,4,264250 ,1,5,202920 ,1,6,202905 ,1,7,45 ,1,8,264240 ,1,9,264230 ,1,10,202885 ,1,11,202875 ,1,12,45 ,1,13,45 ,1,14,202835 ,1,15,623955 ,2,14956,238390 ,2,822,29440 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319720 ,2,829,45 ,1,0,202875 ,2,14956,238390 ,2,822,29510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,319710 ,2,829,45 ,1,0,202450 ,2,14956,238410 ,2,822,14570 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,75975 ,2,14979,322855 ,2,829,45 ,1,0,264230 ,1,1,264260 ,1,2,264250 ,1,3,264240 ,2,14956,238420 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322865 ,2,829,45 ,1,0,202920 ,1,1,202875 ,1,2,202825 ,1,3,202835 ,1,4,202940 ,1,5,202905 ,1,6,202885 ,2,14956,238465 ,2,822,29345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,322875 ,2,829,45 ,1,0,201945 ,2,14956,238475 ,2,822,29345 ,2,14975,573210 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,12445 ,1,1,174110 ,1,2,5320 ,2,14956,238555 ,2,822,30540 ,2,14975,568460 ,2,14976,24120 ,2,14977,24110 ,2,14965,549870 ,2,14978,45 ,2,14979,322885 ,2,829,45 ,1,0,97620 ,2,14956,238540 ,2,822,30580 ,2,14975,574435 ,2,14976,23675 ,2,14977,76055 ,2,14965,45 ,2,14978,45 ,2,14979,322895 ,2,829,45 ,1,0,94545 ,2,14956,238565 ,2,822,30540 ,2,14975,574440 ,2,14976,23075 ,2,14977,23065 ,2,14965,549875 ,2,14978,45 ,2,14979,322950 ,2,829,45 ,1,0,305715 ,1,1,45 ,2,14956,238575 ,2,822,30540 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,549885 ,2,14978,45 ,2,14979,322965 ,2,829,45 ,1,0,305725 ,1,1,45 ,2,14956,238585 ,2,822,30540 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,322940 ,2,829,45 ,1,0,305735 ,1,1,45 ,2,14956,217455 ,2,822,30550 ,2,14975,574485 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384630 ,2,829,45 ,1,0,189860 ,2,14956,213590 ,2,822,30550 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259305 ,2,14979,413130 ,2,829,45 ,1,0,189965 ,2,14956,211025 ,2,822,30560 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,377375 ,2,829,45 ,1,0,190130 ,1,1,190045 ,2,14956,238660 ,2,822,30570 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,130265 ,2,14979,2415 ,2,829,45 ,1,0,81480 ,1,1,166340 ,1,2,166285 ,1,3,66025 ,1,4,81450 ,1,5,166330 ,1,6,65930 ,2,14956,238630 ,2,822,30570 ,2,14975,110 ,2,14976,69315 ,2,14977,23120 ,2,14965,45 ,2,14978,233130 ,2,14979,322995 ,2,829,45 ,1,0,98040 ,1,1,97915 ,1,2,97800 ,1,3,98105 ,1,4,97820 ,1,5,97715 ,2,14956,238680 ,2,822,30570 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,130295 ,2,14979,2415 ,2,829,45 ,1,0,60010 ,1,1,60365 ,1,2,60155 ,1,3,59885 ,1,4,59975 ,1,5,60355 ,1,6,60145 ,2,14956,238670 ,2,822,30570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233140 ,2,14979,323020 ,2,829,45 ,1,0,305780 ,1,1,45 ,2,14956,238710 ,2,822,30570 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,130315 ,2,14979,2415 ,2,829,45 ,1,0,305790 ,1,1,45 ,2,14956,238690 ,2,822,30570 ,2,14975,110 ,2,14976,76145 ,2,14977,23120 ,2,14965,45 ,2,14978,233150 ,2,14979,323040 ,2,829,45 ,1,0,305800 ,1,1,45 ,2,14956,217240 ,2,822,24710 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323075 ,2,829,45 ,1,0,57795 ,1,1,91650 ,1,2,79355 ,1,3,79335 ,2,14956,238730 ,2,822,30570 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,130360 ,2,14979,2415 ,2,829,45 ,1,0,180320 ,2,14956,238720 ,2,822,30570 ,2,14975,110 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,233165 ,2,14979,323085 ,2,829,45 ,1,0,56605 ,2,14956,238800 ,2,822,30570 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,130385 ,2,14979,2415 ,2,829,45 ,1,0,75450 ,1,1,62780 ,1,2,75480 ,2,14956,238740 ,2,822,30570 ,2,14975,110 ,2,14976,76165 ,2,14977,23120 ,2,14965,45 ,2,14978,233175 ,2,14979,323145 ,2,829,45 ,1,0,75380 ,1,1,62685 ,1,2,75480 ,1,3,62780 ,1,4,75430 ,2,14956,182390 ,2,822,30570 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385285 ,2,829,45 ,1,0,124320 ,1,1,124330 ,2,14956,238810 ,2,822,30570 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323065 ,2,829,45 ,1,0,81480 ,1,1,166340 ,1,2,166285 ,1,3,66025 ,2,14956,238630 ,2,822,30570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130265 ,2,14979,323010 ,2,829,45 ,2,14956,238670 ,2,822,30570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,130295 ,2,14979,323030 ,2,829,45 ,1,0,203290 ,1,1,203270 ,1,2,203280 ,2,14956,238690 ,2,822,30570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130315 ,2,14979,323055 ,2,829,45 ,1,0,87385 ,1,1,72090 ,1,2,75450 ,1,3,62780 ,2,14956,238720 ,2,822,30570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130360 ,2,14979,323135 ,2,829,45 ,1,0,99120 ,1,1,79335 ,2,14956,238740 ,2,822,30570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130385 ,2,14979,323155 ,2,829,45 ,1,0,71915 ,1,1,99120 ,2,14956,184135 ,2,822,30570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380585 ,2,829,45 ,1,0,76770 ,1,1,157045 ,1,2,98855 ,1,3,98845 ,2,14956,217195 ,2,822,30570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369090 ,2,829,45 ,1,0,156925 ,2,14956,182390 ,2,822,30580 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384085 ,2,829,45 ,1,0,100830 ,1,1,99120 ,2,14956,213590 ,2,822,30580 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259315 ,2,14979,412930 ,2,829,45 ,1,0,157530 ,2,14956,6245 ,2,822,29160 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414325 ,2,829,45 ,1,0,191225 ,1,1,203330 ,2,14956,13210 ,2,822,29160 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396360 ,2,829,45 ,1,0,134375 ,1,1,134755 ,2,14956,233065 ,2,822,29160 ,2,14975,574515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397005 ,2,829,45 ,1,0,203340 ,1,1,148170 ,1,2,71680 ,1,3,95225 ,1,4,95030 ,1,5,148125 ,2,14956,232720 ,2,822,29160 ,2,14975,574540 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386050 ,2,829,45 ,1,0,103095 ,1,1,144290 ,2,14956,232735 ,2,822,29160 ,2,14975,574540 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383210 ,2,829,45 ,1,0,99120 ,1,1,180870 ,1,2,180910 ,2,14956,179555 ,2,822,29160 ,2,14975,574540 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,319405 ,2,829,45 ,1,0,130615 ,2,14956,232720 ,2,822,28910 ,2,14975,572680 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,409205 ,2,829,45 ,1,0,100 ,2,14956,232735 ,2,822,28910 ,2,14975,572680 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,409235 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,357620 ,2,14956,233075 ,2,822,28910 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415645 ,2,829,45 ,2,14956,173980 ,2,822,28910 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386830 ,2,829,45 ,1,0,273175 ,1,1,45 ,1,2,45 ,2,14956,179555 ,2,822,28900 ,2,14975,572680 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387680 ,2,829,45 ,1,0,203360 ,2,14956,217455 ,2,822,30590 ,2,14975,574555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384750 ,2,829,45 ,1,0,46380 ,1,1,45 ,1,2,203360 ,1,3,46400 ,1,4,45 ,1,5,616170 ,2,14956,213590 ,2,822,30590 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259345 ,2,14979,413225 ,2,829,45 ,1,0,614025 ,1,1,615295 ,1,2,357730 ,1,3,357720 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,357710 ,1,9,65 ,1,10,357665 ,1,11,357655 ,1,12,357645 ,1,13,65 ,1,14,65 ,1,15,65 ,1,16,357635 ,1,17,65 ,2,14956,182390 ,2,822,30600 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385420 ,2,829,45 ,2,14956,232365 ,2,822,30600 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391215 ,2,829,45 ,1,0,203350 ,2,14956,182390 ,2,822,30635 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385415 ,2,829,45 ,2,14956,232365 ,2,822,30635 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391210 ,2,829,45 ,1,0,72285 ,1,1,59500 ,1,2,75410 ,1,3,72740 ,1,4,75390 ,1,5,62780 ,1,6,75500 ,2,14956,238950 ,2,822,30645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,130785 ,2,14979,2415 ,2,829,45 ,2,14956,238940 ,2,822,30645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233185 ,2,14979,323260 ,2,829,45 ,1,0,273185 ,1,1,45 ,1,2,45 ,2,14956,238940 ,2,822,30645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,130785 ,2,14979,323270 ,2,829,45 ,1,0,45 ,1,1,46430 ,1,2,203370 ,1,3,614705 ,2,14956,217195 ,2,822,30645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369205 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,357610 ,1,3,65 ,2,14956,179555 ,2,822,30655 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387710 ,2,829,45 ,2,14956,182390 ,2,822,30665 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385410 ,2,829,45 ,1,0,203380 ,2,14956,232365 ,2,822,30665 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391205 ,2,829,45 ,1,0,203370 ,2,14956,217455 ,2,822,30680 ,2,14975,574680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384755 ,2,829,45 ,1,0,103095 ,1,1,99120 ,1,2,71885 ,1,3,95400 ,1,4,95030 ,1,5,109565 ,2,14956,213590 ,2,822,30680 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259355 ,2,14979,413230 ,2,829,45 ,1,0,72780 ,2,14956,179555 ,2,822,30690 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387715 ,2,829,45 ,1,0,109165 ,2,14956,217455 ,2,822,30700 ,2,14975,574700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384760 ,2,829,45 ,1,0,107720 ,2,14956,213590 ,2,822,30700 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259365 ,2,14979,413235 ,2,829,45 ,1,0,115805 ,2,14956,181805 ,2,822,28815 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259375 ,2,14979,412695 ,2,829,45 ,1,0,115325 ,1,1,122475 ,1,2,122465 ,1,3,122485 ,1,4,71865 ,1,5,71885 ,1,6,99240 ,1,7,138110 ,2,14956,217455 ,2,822,28805 ,2,14975,574705 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384715 ,2,829,45 ,1,0,589295 ,2,14956,213590 ,2,822,28805 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259385 ,2,14979,413210 ,2,829,45 ,1,0,203420 ,1,1,203390 ,2,14956,179555 ,2,822,30710 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387670 ,2,829,45 ,1,0,71995 ,1,1,71975 ,2,14956,182390 ,2,822,30745 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384230 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358815 ,1,3,65 ,2,14956,213590 ,2,822,30745 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259395 ,2,14979,412960 ,2,829,45 ,2,14956,217015 ,2,822,30755 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379550 ,2,829,45 ,1,0,273225 ,1,1,45 ,1,2,45 ,2,14956,215285 ,2,822,30755 ,2,14975,574760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378810 ,2,829,45 ,1,0,46450 ,1,1,45 ,1,2,613640 ,2,14956,182390 ,2,822,30765 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385385 ,2,829,45 ,2,14956,232365 ,2,822,30765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391195 ,2,829,45 ,1,0,203565 ,1,1,203555 ,1,2,203545 ,1,3,203495 ,1,4,203450 ,1,5,203485 ,1,6,203475 ,1,7,203465 ,2,14956,239235 ,2,822,30780 ,2,14975,572770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323425 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358775 ,1,3,65 ,2,14956,2855 ,2,822,30810 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391640 ,2,829,45 ,2,14956,6245 ,2,822,30810 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388950 ,2,829,45 ,1,0,273235 ,1,1,45 ,1,2,45 ,2,14956,13210 ,2,822,30810 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397100 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,46525 ,1,3,46495 ,1,4,46515 ,1,5,616170 ,2,14956,211025 ,2,822,30810 ,2,14975,110 ,2,14976,24020 ,2,14977,76785 ,2,14965,45 ,2,14978,45 ,2,14979,378340 ,2,829,45 ,2,14956,232805 ,2,822,30810 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398405 ,2,829,45 ,1,0,203695 ,1,1,203680 ,1,2,203670 ,1,3,203660 ,1,4,203650 ,1,5,203620 ,1,6,203610 ,1,7,203600 ,1,8,203590 ,2,14956,239170 ,2,822,30810 ,2,14975,572380 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,323470 ,2,829,45 ,2,14956,239180 ,2,822,30810 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323480 ,2,829,45 ,1,0,203815 ,1,1,203805 ,1,2,203795 ,1,3,203780 ,1,4,203770 ,1,5,203760 ,1,6,203750 ,1,7,203725 ,1,8,203715 ,1,9,203705 ,2,14956,232720 ,2,822,30810 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386415 ,2,829,45 ,2,14956,232735 ,2,822,30810 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383815 ,2,829,45 ,1,0,203910 ,1,1,203900 ,1,2,203885 ,1,3,203875 ,1,4,203575 ,1,5,203865 ,1,6,203855 ,1,7,203825 ,2,14956,183640 ,2,822,30810 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382780 ,2,829,45 ,1,0,57710 ,1,1,59100 ,2,14956,2855 ,2,822,30790 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391635 ,2,829,45 ,1,0,84355 ,2,14956,6245 ,2,822,30790 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414420 ,2,829,45 ,1,0,100830 ,1,1,145385 ,1,2,146025 ,2,14956,13210 ,2,822,30790 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397095 ,2,829,45 ,1,0,99835 ,1,1,99490 ,2,14956,211025 ,2,822,30790 ,2,14975,110 ,2,14976,24020 ,2,14977,76785 ,2,14965,45 ,2,14978,45 ,2,14979,378335 ,2,829,45 ,1,0,193765 ,1,1,154045 ,1,2,118940 ,1,3,103320 ,2,14956,232805 ,2,822,30790 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398400 ,2,829,45 ,1,0,190840 ,1,1,154045 ,1,2,118940 ,1,3,103320 ,2,14956,232720 ,2,822,30790 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386410 ,2,829,45 ,1,0,123235 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,232735 ,2,822,30790 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383810 ,2,829,45 ,1,0,128445 ,1,1,154045 ,1,2,118940 ,1,3,103320 ,2,14956,183640 ,2,822,30790 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382775 ,2,829,45 ,1,0,152735 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239245 ,2,822,30780 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,323495 ,2,829,45 ,1,0,157955 ,1,1,156870 ,1,2,118960 ,1,3,118950 ,1,4,118940 ,1,5,103320 ,2,14956,182390 ,2,822,30780 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385375 ,2,829,45 ,1,0,158140 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239255 ,2,822,30780 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323505 ,2,829,45 ,1,0,111915 ,1,1,154045 ,1,2,118940 ,1,3,103320 ,2,14956,239265 ,2,822,30780 ,2,14975,574795 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,153810 ,1,1,111680 ,1,2,154045 ,1,3,118940 ,1,4,103320 ,2,14956,211155 ,2,822,30885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370000 ,2,829,45 ,1,0,153770 ,1,1,154045 ,1,2,118940 ,1,3,103320 ,2,14956,239310 ,2,822,30885 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,323555 ,2,829,45 ,1,0,157335 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239360 ,2,822,30885 ,2,14975,574860 ,2,14976,25600 ,2,14977,76945 ,2,14965,45 ,2,14978,45 ,2,14979,323565 ,2,829,45 ,1,0,156395 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,211025 ,2,822,30885 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377915 ,2,829,45 ,1,0,155905 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239370 ,2,822,30885 ,2,14975,566850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323575 ,2,829,45 ,1,0,159920 ,1,1,159825 ,1,2,159630 ,1,3,115335 ,2,14956,239410 ,2,822,30885 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,323585 ,2,829,45 ,1,0,155925 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239400 ,2,822,30855 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323600 ,2,829,45 ,1,0,121815 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239420 ,2,822,30885 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,156060 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,213425 ,2,822,30885 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364395 ,2,829,45 ,1,0,158035 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,213435 ,2,822,30885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364275 ,2,829,45 ,1,0,158175 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,207130 ,2,822,30885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373805 ,2,829,45 ,1,0,157640 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,211210 ,2,822,30885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369680 ,2,829,45 ,1,0,158015 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,239430 ,2,822,30885 ,2,14975,566855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,158845 ,1,1,154465 ,1,2,118960 ,1,3,118950 ,1,4,118940 ,1,5,103320 ,2,14956,210895 ,2,822,30885 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,369875 ,2,829,45 ,1,0,133890 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,213385 ,2,822,30885 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363475 ,2,829,45 ,1,0,117315 ,1,1,118960 ,1,2,118950 ,1,3,118940 ,1,4,103320 ,2,14956,233075 ,2,822,30885 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259405 ,2,14979,415710 ,2,829,45 ,1,0,200505 ,1,1,159825 ,1,2,159630 ,1,3,115335 ,2,14956,207085 ,2,822,30885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378605 ,2,829,45 ,1,0,112760 ,1,1,112660 ,1,2,112630 ,1,3,103320 ,2,14956,239440 ,2,822,30885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323610 ,2,829,45 ,1,0,160850 ,1,1,160800 ,1,2,160735 ,1,3,103320 ,2,14956,239450 ,2,822,30885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323620 ,2,829,45 ,1,0,116130 ,2,14956,239460 ,2,822,30885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323630 ,2,829,45 ,2,14956,207015 ,2,822,30855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,131675 ,2,14979,371880 ,2,829,45 ,1,0,273245 ,1,1,45 ,1,2,45 ,2,14956,206975 ,2,822,30855 ,2,14975,599870 ,2,14976,34015 ,2,14977,23120 ,2,14965,45 ,2,14978,233195 ,2,14979,409240 ,2,829,45 ,1,0,46535 ,1,1,45 ,1,2,613640 ,2,14956,197265 ,2,822,30855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,131700 ,2,14979,343340 ,2,829,45 ,2,14956,269360 ,2,822,30855 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,233215 ,2,14979,323655 ,2,829,45 ,1,0,203975 ,1,1,203985 ,2,14956,2855 ,2,822,30855 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391000 ,2,829,45 ,1,0,139270 ,2,14956,206975 ,2,822,30855 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,131675 ,2,14979,411570 ,2,829,45 ,1,0,200385 ,1,1,200355 ,2,14956,197280 ,2,822,30855 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343820 ,2,829,45 ,1,0,66190 ,2,14956,269360 ,2,822,30855 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,131700 ,2,14979,343140 ,2,829,45 ,1,0,97620 ,1,1,204030 ,2,14956,239550 ,2,822,30845 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394985 ,2,829,45 ,2,14956,211025 ,2,822,30845 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377315 ,2,829,45 ,1,0,204100 ,1,1,204090 ,1,2,204030 ,1,3,204080 ,1,4,204040 ,2,14956,2855 ,2,822,28685 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415200 ,2,829,45 ,2,14956,239600 ,2,822,28685 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323665 ,2,829,45 ,1,0,204110 ,2,14956,184135 ,2,822,28685 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323675 ,2,829,45 ,1,0,204110 ,2,14956,184890 ,2,822,28675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323695 ,2,829,45 ,1,0,125065 ,1,1,201460 ,2,14956,182390 ,2,822,28640 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384220 ,2,829,45 ,1,0,111585 ,2,14956,239645 ,2,822,28640 ,2,14975,572350 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,122735 ,2,14979,2415 ,2,829,45 ,1,0,156775 ,2,14956,227855 ,2,822,28640 ,2,14975,571445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259415 ,2,14979,412750 ,2,829,45 ,1,0,156050 ,2,14956,213590 ,2,822,28640 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259450 ,2,14979,412955 ,2,829,45 ,1,0,115540 ,1,1,115370 ,2,14956,2855 ,2,822,30905 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415205 ,2,829,45 ,1,0,204040 ,1,1,97965 ,1,2,97830 ,1,3,97730 ,2,14956,217455 ,2,822,30915 ,2,14975,574875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384665 ,2,829,45 ,1,0,124960 ,2,14956,227855 ,2,822,30915 ,2,14975,571445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259460 ,2,14979,412825 ,2,829,45 ,1,0,63405 ,2,14956,213590 ,2,822,30915 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259470 ,2,14979,413140 ,2,829,45 ,1,0,187675 ,2,14956,227205 ,2,822,31000 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323770 ,2,829,45 ,1,0,63570 ,2,14956,239790 ,2,822,31000 ,2,14975,574940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409245 ,2,829,45 ,2,14956,217455 ,2,822,31010 ,2,14975,574950 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384905 ,2,829,45 ,1,0,273265 ,1,1,45 ,1,2,45 ,2,14956,213590 ,2,822,31010 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259480 ,2,14979,413310 ,2,829,45 ,1,0,46600 ,1,1,46580 ,1,2,45 ,1,3,614705 ,2,14956,239890 ,2,822,31065 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,132000 ,2,14979,2415 ,2,829,45 ,2,14956,239875 ,2,822,31065 ,2,14975,599870 ,2,14976,77390 ,2,14977,23120 ,2,14965,45 ,2,14978,233225 ,2,14979,323820 ,2,829,45 ,1,0,204250 ,1,1,204240 ,1,2,204230 ,1,3,204220 ,1,4,204210 ,1,5,204200 ,1,6,204190 ,1,7,204160 ,2,14956,239855 ,2,822,37270 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323875 ,2,829,45 ,1,0,87490 ,2,14956,239865 ,2,822,37270 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323865 ,2,829,45 ,1,0,204260 ,1,1,72100 ,2,14956,182390 ,2,822,31065 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385575 ,2,829,45 ,2,14956,239900 ,2,822,31065 ,2,14975,560975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,273255 ,1,1,45 ,1,2,45 ,2,14956,239910 ,2,822,31065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323840 ,2,829,45 ,1,0,45 ,1,1,46615 ,1,2,613640 ,2,14956,239920 ,2,822,31065 ,2,14975,575005 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323885 ,2,829,45 ,2,14956,239875 ,2,822,31065 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,132000 ,2,14979,323830 ,2,829,45 ,1,0,204315 ,1,1,204305 ,1,2,204295 ,1,3,204260 ,1,4,204330 ,1,5,204285 ,2,14956,184135 ,2,822,31065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380755 ,2,829,45 ,1,0,3010 ,1,1,230765 ,1,2,212880 ,1,3,199455 ,1,4,199445 ,2,14956,239945 ,2,822,31065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323905 ,2,829,45 ,1,0,72100 ,2,14956,223625 ,2,822,31065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365500 ,2,829,45 ,1,0,204260 ,1,1,204295 ,1,2,72160 ,1,3,72090 ,2,14956,217195 ,2,822,31065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369420 ,2,829,45 ,2,14956,182390 ,2,822,52160 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,323915 ,2,829,45 ,1,0,264280 ,2,14956,239990 ,2,822,31075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323965 ,2,829,45 ,1,0,204150 ,1,1,204415 ,1,2,204405 ,1,3,204395 ,1,4,204385 ,1,5,204360 ,1,6,204350 ,2,14956,240000 ,2,822,31075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323935 ,2,829,45 ,1,0,72100 ,1,1,204415 ,1,2,72110 ,2,14956,215455 ,2,822,52160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323975 ,2,829,45 ,1,0,3010 ,1,1,212880 ,1,2,199445 ,1,3,199455 ,1,4,306540 ,2,14956,217195 ,2,822,52160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323995 ,2,829,45 ,1,0,167855 ,2,14956,240010 ,2,822,52160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324020 ,2,829,45 ,1,0,106445 ,1,1,106385 ,1,2,133505 ,2,14956,240020 ,2,822,52160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323985 ,2,829,45 ,1,0,79335 ,1,1,165720 ,2,14956,240050 ,2,822,52160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,323925 ,2,829,45 ,1,0,153615 ,1,1,153485 ,2,14956,240285 ,2,822,31075 ,2,14975,575070 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324050 ,2,829,45 ,1,0,132885 ,1,1,132690 ,2,14956,240180 ,2,822,31085 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324110 ,2,829,45 ,1,0,151765 ,1,1,152205 ,1,2,151655 ,1,3,151570 ,1,4,152045 ,2,14956,240090 ,2,822,31115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,132330 ,2,14979,2415 ,2,829,45 ,1,0,162050 ,1,1,161880 ,2,14956,240080 ,2,822,31115 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,233235 ,2,14979,324130 ,2,829,45 ,1,0,79335 ,1,1,125600 ,2,14956,240100 ,2,822,31115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398715 ,2,829,45 ,1,0,104255 ,2,14956,184135 ,2,822,31115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381570 ,2,829,45 ,1,0,79335 ,1,1,84355 ,1,2,84420 ,2,14956,240080 ,2,822,31115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,132330 ,2,14979,324140 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,370605 ,2,14956,10825 ,2,822,31115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385080 ,2,829,45 ,2,14956,240110 ,2,822,31115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324150 ,2,829,45 ,1,0,273275 ,1,1,45 ,1,2,45 ,2,14956,240150 ,2,822,31085 ,2,14975,572350 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,46635 ,1,1,45 ,1,2,613640 ,2,14956,240190 ,2,822,31085 ,2,14975,599940 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,324100 ,2,829,45 ,2,14956,240200 ,2,822,31115 ,2,14975,575060 ,2,14976,33775 ,2,14977,33765 ,2,14965,45 ,2,14978,45 ,2,14979,324090 ,2,829,45 ,1,0,204500 ,2,14956,240275 ,2,822,31095 ,2,14975,575070 ,2,14976,33775 ,2,14977,77630 ,2,14965,45 ,2,14978,45 ,2,14979,324080 ,2,829,45 ,1,0,97620 ,1,1,93955 ,1,2,66360 ,2,14956,182390 ,2,822,31075 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385355 ,2,829,45 ,1,0,204510 ,2,14956,240890 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,132670 ,2,14979,324195 ,2,829,45 ,1,0,100 ,1,1,589495 ,2,14956,240405 ,2,822,31125 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324215 ,2,829,45 ,2,14956,240315 ,2,822,31125 ,2,14975,568045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324225 ,2,829,45 ,1,0,273285 ,1,1,45 ,1,2,45 ,2,14956,240380 ,2,822,31125 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324235 ,2,829,45 ,1,0,46695 ,1,1,45 ,1,2,46675 ,1,3,46705 ,1,4,45 ,1,5,616170 ,2,14956,240370 ,2,822,31145 ,2,14975,561335 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,324245 ,2,829,45 ,2,14956,240470 ,2,822,31190 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,132565 ,2,14979,2415 ,2,829,45 ,1,0,204570 ,1,1,204560 ,1,2,204540 ,2,14956,240415 ,2,822,31190 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,233245 ,2,14979,324280 ,2,829,45 ,1,0,204540 ,2,14956,240415 ,2,822,31190 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,132565 ,2,14979,324290 ,2,829,45 ,2,14956,240100 ,2,822,31190 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398710 ,2,829,45 ,1,0,204665 ,1,1,204645 ,1,2,204635 ,1,3,204625 ,1,4,204615 ,2,14956,240450 ,2,822,31190 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,324300 ,2,829,45 ,2,14956,184135 ,2,822,31190 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381565 ,2,829,45 ,1,0,615300 ,1,1,615295 ,1,2,204880 ,1,3,65 ,1,4,65 ,1,5,204890 ,1,6,204870 ,1,7,65 ,1,8,204945 ,1,9,204850 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,204840 ,1,15,204530 ,1,16,204830 ,1,17,204800 ,1,18,204790 ,1,19,204900 ,1,20,65 ,1,21,204780 ,1,22,65 ,1,23,65 ,1,24,204770 ,1,25,204755 ,1,26,65 ,1,27,204745 ,1,28,204735 ,1,29,204695 ,1,30,204685 ,1,31,65 ,1,32,204510 ,1,33,204675 ,2,14956,215455 ,2,822,31190 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375135 ,2,829,45 ,1,0,204830 ,2,14956,214205 ,2,822,31190 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387285 ,2,829,45 ,1,0,204850 ,2,14956,240485 ,2,822,31190 ,2,14975,575085 ,2,14976,33775 ,2,14977,33765 ,2,14965,45 ,2,14978,45 ,2,14979,324270 ,2,829,45 ,1,0,119510 ,2,14956,240890 ,2,822,31075 ,2,14975,110 ,2,14976,77855 ,2,14977,23120 ,2,14965,45 ,2,14978,233260 ,2,14979,324400 ,2,829,45 ,1,0,204840 ,1,1,204755 ,1,2,204790 ,1,3,204800 ,1,4,204695 ,1,5,204675 ,1,6,204735 ,1,7,204530 ,1,8,204945 ,1,9,204900 ,1,10,204745 ,1,11,204685 ,1,12,204890 ,1,13,204770 ,1,14,204870 ,1,15,204880 ,1,16,204780 ,1,17,204830 ,1,18,204510 ,1,19,204850 ,2,14956,240505 ,2,822,31230 ,2,14975,568430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,306970 ,1,1,45 ,2,14956,240515 ,2,822,31240 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,90675 ,1,1,89135 ,1,2,181670 ,2,14956,240550 ,2,822,31240 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,72160 ,2,14956,240560 ,2,822,31240 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391740 ,2,829,45 ,1,0,91085 ,2,14956,240570 ,2,822,31240 ,2,14975,575155 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324420 ,2,829,45 ,1,0,60010 ,1,1,60365 ,1,2,60155 ,1,3,59885 ,1,4,59975 ,1,5,60355 ,1,6,60145 ,1,7,59925 ,2,14956,217455 ,2,822,31250 ,2,14975,575165 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384880 ,2,829,45 ,1,0,117630 ,2,14956,240605 ,2,822,31250 ,2,14975,600040 ,2,14976,23450 ,2,14977,23360 ,2,14965,550070 ,2,14978,45 ,2,14979,324455 ,2,829,45 ,1,0,132775 ,2,14956,240595 ,2,822,31355 ,2,14975,600040 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,324465 ,2,829,45 ,1,0,100 ,2,14956,240615 ,2,822,31250 ,2,14975,575180 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324500 ,2,829,45 ,1,0,91120 ,2,14956,240625 ,2,822,31250 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324510 ,2,829,45 ,2,14956,213590 ,2,822,31250 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259500 ,2,14979,413300 ,2,829,45 ,1,0,205075 ,1,1,205065 ,1,2,205025 ,1,3,205015 ,1,4,204995 ,1,5,205005 ,2,14956,216645 ,2,822,31295 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387135 ,2,829,45 ,1,0,589555 ,2,14956,240605 ,2,822,31305 ,2,14975,600040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389420 ,2,829,45 ,1,0,205235 ,1,1,205220 ,1,2,205210 ,1,3,205200 ,1,4,205190 ,1,5,205145 ,1,6,205135 ,1,7,205085 ,1,8,205125 ,1,9,205095 ,2,14956,240710 ,2,822,31305 ,2,14975,575195 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,205095 ,2,14956,240605 ,2,822,31315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414590 ,2,829,45 ,1,0,180300 ,2,14956,240735 ,2,822,31315 ,2,14975,575205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324560 ,2,829,45 ,1,0,67250 ,2,14956,240800 ,2,822,31345 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,132895 ,2,14979,2415 ,2,829,45 ,1,0,91650 ,1,1,79355 ,1,2,79335 ,1,3,66500 ,1,4,57795 ,1,5,78865 ,2,14956,240790 ,2,822,31345 ,2,14975,110 ,2,14976,78165 ,2,14977,23120 ,2,14965,45 ,2,14978,233270 ,2,14979,324595 ,2,829,45 ,1,0,66025 ,2,14956,182390 ,2,822,31345 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385550 ,2,829,45 ,1,0,171975 ,1,1,45 ,1,2,205305 ,2,14956,184135 ,2,822,31345 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380700 ,2,829,45 ,1,0,205355 ,2,14956,223625 ,2,822,31345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364925 ,2,829,45 ,2,14956,240810 ,2,822,31345 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324615 ,2,829,45 ,2,14956,240790 ,2,822,31345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,132895 ,2,14979,324605 ,2,829,45 ,1,0,205335 ,1,1,205355 ,1,2,205325 ,1,3,205315 ,2,14956,217195 ,2,822,31345 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369370 ,2,829,45 ,1,0,205335 ,1,1,205345 ,2,14956,240820 ,2,822,31345 ,2,14975,575255 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,307115 ,1,1,45 ,2,14956,240910 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133040 ,2,14979,2415 ,2,829,45 ,1,0,205345 ,2,14956,240900 ,2,822,31075 ,2,14975,110 ,2,14976,78255 ,2,14977,23120 ,2,14965,45 ,2,14978,233280 ,2,14979,324640 ,2,829,45 ,1,0,98095 ,2,14956,240925 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133060 ,2,14979,324670 ,2,829,45 ,1,0,307135 ,1,1,45 ,2,14956,240925 ,2,822,31075 ,2,14975,110 ,2,14976,78265 ,2,14977,23120 ,2,14965,45 ,2,14978,233290 ,2,14979,324700 ,2,829,45 ,1,0,133075 ,2,14956,240935 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324205 ,2,829,45 ,1,0,100 ,2,14956,240945 ,2,822,31075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324350 ,2,829,45 ,1,0,166610 ,1,1,45 ,1,2,205440 ,2,14956,240955 ,2,822,31075 ,2,14975,110 ,2,14976,23450 ,2,14977,78275 ,2,14965,45 ,2,14978,45 ,2,14979,324255 ,2,829,45 ,1,0,205430 ,2,14956,241000 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133110 ,2,14979,2415 ,2,829,45 ,2,14956,240990 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233355 ,2,14979,324710 ,2,829,45 ,1,0,273355 ,1,1,45 ,1,2,45 ,2,14956,241010 ,2,822,31075 ,2,14975,110 ,2,14976,23450 ,2,14977,78285 ,2,14965,45 ,2,14978,45 ,2,14979,324390 ,2,829,45 ,1,0,205620 ,1,1,205590 ,1,2,205470 ,1,3,205460 ,1,4,205450 ,2,14956,241020 ,2,822,31075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324730 ,2,829,45 ,2,14956,240990 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,133110 ,2,14979,324720 ,2,829,45 ,1,0,589625 ,2,14956,241035 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133060 ,2,14979,2415 ,2,829,45 ,2,14956,240900 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133040 ,2,14979,324650 ,2,829,45 ,1,0,264320 ,2,14956,215455 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374765 ,2,829,45 ,2,14956,241455 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133210 ,2,14979,2415 ,2,829,45 ,1,0,205530 ,2,14956,241445 ,2,822,31075 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,233365 ,2,14979,324740 ,2,829,45 ,1,0,205530 ,2,14956,217240 ,2,822,31415 ,2,14975,575270 ,2,14976,23130 ,2,14977,63205 ,2,14965,45 ,2,14978,45 ,2,14979,324795 ,2,829,45 ,1,0,205570 ,1,1,205560 ,2,14956,2855 ,2,822,31405 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415580 ,2,829,45 ,1,0,205540 ,1,1,205480 ,2,14956,2855 ,2,822,31365 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392350 ,2,829,45 ,1,0,205570 ,2,14956,6245 ,2,822,31365 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389165 ,2,829,45 ,1,0,77965 ,1,1,205580 ,2,14956,13210 ,2,822,31365 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397720 ,2,829,45 ,1,0,100 ,1,1,589645 ,2,14956,241140 ,2,822,31365 ,2,14975,575270 ,2,14976,24120 ,2,14977,78425 ,2,14965,45 ,2,14978,45 ,2,14979,324815 ,2,829,45 ,1,0,205470 ,1,1,46855 ,1,2,46805 ,1,3,46750 ,1,4,205450 ,1,5,46835 ,1,6,205620 ,1,7,46845 ,1,8,205460 ,1,9,45 ,1,10,45 ,1,11,46795 ,1,12,45 ,1,13,45 ,1,14,46815 ,1,15,205590 ,1,16,45 ,1,17,626560 ,2,14956,241150 ,2,822,31365 ,2,14975,575270 ,2,14976,24120 ,2,14977,78425 ,2,14965,45 ,2,14978,45 ,2,14979,324825 ,2,829,45 ,2,14956,212310 ,2,822,31365 ,2,14975,575270 ,2,14976,78480 ,2,14977,78435 ,2,14965,45 ,2,14978,45 ,2,14979,377765 ,2,829,45 ,2,14956,241350 ,2,822,31365 ,2,14975,575275 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324845 ,2,829,45 ,2,14956,216645 ,2,822,31415 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387165 ,2,829,45 ,1,0,205520 ,1,1,205430 ,1,2,205410 ,2,14956,241370 ,2,822,31415 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324865 ,2,829,45 ,2,14956,241400 ,2,822,31415 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324875 ,2,829,45 ,1,0,205640 ,2,14956,241410 ,2,822,31415 ,2,14975,575290 ,2,14976,34765 ,2,14977,78535 ,2,14965,45 ,2,14978,45 ,2,14979,324895 ,2,829,45 ,2,14956,241420 ,2,822,31415 ,2,14975,575290 ,2,14976,34765 ,2,14977,78535 ,2,14965,45 ,2,14978,45 ,2,14979,324905 ,2,829,45 ,1,0,273375 ,1,1,45 ,1,2,45 ,2,14956,241465 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324660 ,2,829,45 ,1,0,46910 ,1,1,45 ,1,2,613640 ,2,14956,241475 ,2,822,31075 ,2,14975,575015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324915 ,2,829,45 ,2,14956,241495 ,2,822,31075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324770 ,2,829,45 ,1,0,205695 ,1,1,205685 ,1,2,205675 ,1,3,205665 ,1,4,205650 ,2,14956,217195 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369165 ,2,829,45 ,1,0,135980 ,1,1,135990 ,1,2,135950 ,2,14956,241505 ,2,822,31075 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,324330 ,2,829,45 ,1,0,209800 ,1,1,195155 ,1,2,175900 ,2,14956,241515 ,2,822,31075 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369835 ,1,3,65 ,2,14956,241525 ,2,822,31075 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,324340 ,2,829,45 ,2,14956,241445 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133210 ,2,14979,324750 ,2,829,45 ,1,0,273385 ,1,1,45 ,1,2,45 ,2,14956,241605 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133515 ,2,14979,2415 ,2,829,45 ,1,0,46930 ,1,1,45 ,1,2,46950 ,1,3,614705 ,2,14956,241565 ,2,822,31075 ,2,14975,110 ,2,14976,78545 ,2,14977,23120 ,2,14965,45 ,2,14978,233375 ,2,14979,324925 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369825 ,2,14956,2855 ,2,822,31425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415560 ,2,829,45 ,2,14956,241625 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133560 ,2,14979,2415 ,2,829,45 ,1,0,205730 ,2,14956,241615 ,2,822,31075 ,2,14975,110 ,2,14976,78610 ,2,14977,23120 ,2,14965,45 ,2,14978,233385 ,2,14979,324945 ,2,829,45 ,2,14956,241635 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324760 ,2,829,45 ,1,0,205720 ,1,1,205740 ,2,14956,241565 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133515 ,2,14979,324935 ,2,829,45 ,1,0,179760 ,1,1,184220 ,1,2,185785 ,2,14956,241650 ,2,822,31075 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,132670 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369815 ,1,3,65 ,2,14956,184135 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380615 ,2,829,45 ,2,14956,241660 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,273395 ,1,1,45 ,1,2,45 ,2,14956,223625 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364780 ,2,829,45 ,1,0,46960 ,1,1,45 ,1,2,613640 ,2,14956,241670 ,2,822,31075 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,324965 ,2,829,45 ,2,14956,241615 ,2,822,31075 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133560 ,2,14979,324955 ,2,829,45 ,1,0,205750 ,1,1,205765 ,2,14956,217240 ,2,822,31435 ,2,14975,575045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325010 ,2,829,45 ,2,14956,216645 ,2,822,31435 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387125 ,2,829,45 ,1,0,273405 ,1,1,45 ,1,2,45 ,2,14956,241965 ,2,822,31445 ,2,14975,575325 ,2,14976,62140 ,2,14977,78665 ,2,14965,45 ,2,14978,45 ,2,14979,325030 ,2,829,45 ,1,0,46980 ,1,1,45 ,1,2,47030 ,1,3,614705 ,2,14956,197265 ,2,822,31505 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,133715 ,2,14979,343385 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,358930 ,1,3,65 ,2,14956,269360 ,2,822,31505 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,233400 ,2,14979,325045 ,2,829,45 ,2,14956,2855 ,2,822,31505 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391010 ,2,829,45 ,1,0,205785 ,2,14956,241780 ,2,822,31505 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325055 ,2,829,45 ,2,14956,197280 ,2,822,31505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410135 ,2,829,45 ,1,0,205795 ,1,1,205775 ,2,14956,269360 ,2,822,31505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133715 ,2,14979,410050 ,2,829,45 ,1,0,122725 ,1,1,122715 ,2,14956,241815 ,2,822,31465 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,127785 ,1,1,128365 ,1,2,57795 ,1,3,128225 ,1,4,128040 ,1,5,128115 ,1,6,137385 ,1,7,128355 ,1,8,124310 ,2,14956,241825 ,2,822,31465 ,2,14975,562300 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,85920 ,1,1,85835 ,1,2,57795 ,2,14956,217015 ,2,822,31515 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379785 ,2,829,45 ,1,0,136815 ,2,14956,215285 ,2,822,31515 ,2,14975,575385 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379080 ,2,829,45 ,2,14956,211025 ,2,822,31525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377975 ,2,829,45 ,1,0,273435 ,1,1,45 ,1,2,45 ,2,14956,213425 ,2,822,31525 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364440 ,2,829,45 ,1,0,45 ,1,1,47040 ,1,2,613640 ,2,14956,207085 ,2,822,31525 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378620 ,2,829,45 ,2,14956,214970 ,2,822,31525 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325110 ,2,829,45 ,1,0,205840 ,1,1,205830 ,2,14956,241845 ,2,822,31525 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325120 ,2,829,45 ,2,14956,241860 ,2,822,31525 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325130 ,2,829,45 ,1,0,273445 ,1,1,45 ,1,2,45 ,2,14956,241870 ,2,822,31525 ,2,14975,575390 ,2,14976,24120 ,2,14977,78850 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,45 ,1,1,47070 ,1,2,613640 ,2,14956,182390 ,2,822,31445 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384320 ,2,829,45 ,2,14956,241940 ,2,822,31445 ,2,14975,567855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325140 ,2,829,45 ,1,0,205860 ,1,1,205850 ,2,14956,211235 ,2,822,31445 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259510 ,2,14979,371720 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369715 ,2,14956,218310 ,2,822,31445 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259520 ,2,14979,410155 ,2,829,45 ,2,14956,213590 ,2,822,31445 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259530 ,2,14979,413015 ,2,829,45 ,1,0,273455 ,1,1,45 ,1,2,45 ,2,14956,242515 ,2,822,36415 ,2,14975,575395 ,2,14976,78900 ,2,14977,78890 ,2,14965,45 ,2,14978,45 ,2,14979,325165 ,2,829,45 ,1,0,47090 ,1,1,45 ,1,2,613640 ,2,14956,242525 ,2,822,31565 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390885 ,2,829,45 ,2,14956,216645 ,2,822,31565 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387115 ,2,829,45 ,1,0,205870 ,2,14956,217240 ,2,822,31565 ,2,14975,575420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325220 ,2,829,45 ,2,14956,182390 ,2,822,31535 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384450 ,2,829,45 ,1,0,273465 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,31605 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415275 ,2,829,45 ,1,0,45 ,1,1,47115 ,1,2,613640 ,2,14956,242655 ,2,822,52170 ,2,14975,575460 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259570 ,2,14979,325350 ,2,829,45 ,2,14956,242635 ,2,822,32535 ,2,14975,575455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325360 ,2,829,45 ,1,0,205890 ,1,1,205880 ,2,14956,6245 ,2,822,31615 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388745 ,2,829,45 ,1,0,119295 ,2,14956,13210 ,2,822,31615 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396555 ,2,829,45 ,1,0,119200 ,2,14956,179555 ,2,822,31615 ,2,14975,575465 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325415 ,2,829,45 ,1,0,119230 ,1,1,95225 ,1,2,95030 ,2,14956,13210 ,2,822,31625 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396415 ,2,829,45 ,1,0,118985 ,2,14956,6245 ,2,822,31625 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388575 ,2,829,45 ,1,0,87385 ,2,14956,195335 ,2,822,31625 ,2,14975,575480 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259580 ,2,14979,412485 ,2,829,45 ,2,14956,179555 ,2,822,31625 ,2,14975,575505 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325425 ,2,829,45 ,1,0,273475 ,1,1,45 ,1,2,45 ,2,14956,13210 ,2,822,31675 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396425 ,2,829,45 ,1,0,45 ,1,1,47135 ,1,2,47155 ,1,3,614705 ,2,14956,6245 ,2,822,31675 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388620 ,2,829,45 ,2,14956,218310 ,2,822,31675 ,2,14975,575515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259590 ,2,14979,410285 ,2,829,45 ,1,0,205995 ,2,14956,242880 ,2,822,31720 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325470 ,2,829,45 ,2,14956,242945 ,2,822,31730 ,2,14975,575525 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325480 ,2,829,45 ,1,0,205900 ,1,1,205985 ,1,2,205975 ,1,3,205965 ,1,4,205955 ,1,5,205945 ,2,14956,242925 ,2,822,31840 ,2,14975,575575 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,195050 ,2,14956,242935 ,2,822,31830 ,2,14975,575580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,190525 ,1,1,60470 ,1,2,60460 ,1,3,60020 ,1,4,59965 ,1,5,59935 ,2,14956,2855 ,2,822,31770 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415400 ,2,829,45 ,1,0,149345 ,2,14956,2855 ,2,822,31780 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391935 ,2,829,45 ,1,0,131385 ,1,1,104855 ,2,14956,2855 ,2,822,31800 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415395 ,2,829,45 ,1,0,137640 ,1,1,104855 ,2,14956,173980 ,2,822,31810 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387035 ,2,829,45 ,1,0,150205 ,1,1,104855 ,2,14956,243060 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,153095 ,2,14956,243070 ,2,822,31810 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,132990 ,1,1,60470 ,1,2,60460 ,1,3,60020 ,1,4,59965 ,1,5,59935 ,2,14956,210875 ,2,822,31810 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366435 ,2,829,45 ,1,0,130050 ,1,1,104855 ,2,14956,243080 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,127660 ,1,1,104855 ,2,14956,243090 ,2,822,31810 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,107240 ,2,14956,213225 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,134410 ,2,14979,325535 ,2,829,45 ,1,0,106730 ,1,1,106905 ,1,2,105355 ,2,14956,213225 ,2,822,31810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233410 ,2,14979,325560 ,2,829,45 ,1,0,106905 ,1,1,105355 ,1,2,106730 ,1,3,162875 ,2,14956,213305 ,2,822,31810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,134430 ,2,14979,361565 ,2,829,45 ,1,0,122790 ,1,1,57795 ,2,14956,213290 ,2,822,31810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233420 ,2,14979,325570 ,2,829,45 ,1,0,136785 ,1,1,136765 ,1,2,136775 ,1,3,136805 ,1,4,194920 ,1,5,194885 ,1,6,194865 ,2,14956,243100 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325590 ,2,829,45 ,1,0,72265 ,1,1,130255 ,2,14956,213325 ,2,822,31810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370825 ,2,829,45 ,2,14956,243110 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325630 ,2,829,45 ,1,0,273485 ,1,1,45 ,1,2,45 ,2,14956,213290 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,134430 ,2,14979,325580 ,2,829,45 ,1,0,47215 ,1,1,45 ,1,2,45 ,1,3,47165 ,1,4,47185 ,1,5,616170 ,2,14956,211025 ,2,822,31810 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378085 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,369915 ,2,14956,213375 ,2,822,31810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,134410 ,2,14979,362205 ,2,829,45 ,2,14956,207730 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325640 ,2,829,45 ,1,0,206075 ,1,1,206065 ,1,2,206055 ,1,3,206045 ,2,14956,243120 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409250 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,369880 ,1,3,65 ,2,14956,243130 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325650 ,2,829,45 ,1,0,589875 ,2,14956,243240 ,2,822,31810 ,2,14975,575610 ,2,14976,35640 ,2,14977,79670 ,2,14965,45 ,2,14978,45 ,2,14979,325660 ,2,829,45 ,1,0,206090 ,2,14956,213395 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,134605 ,2,14979,325675 ,2,829,45 ,2,14956,213395 ,2,822,31810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233430 ,2,14979,325685 ,2,829,45 ,1,0,206015 ,2,14956,243295 ,2,822,31810 ,2,14975,599940 ,2,14976,24020 ,2,14977,79680 ,2,14965,45 ,2,14978,45 ,2,14979,325545 ,2,829,45 ,1,0,194290 ,1,1,194315 ,2,14956,243305 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409255 ,2,829,45 ,1,0,141545 ,1,1,141665 ,1,2,112210 ,2,14956,243315 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325695 ,2,829,45 ,1,0,190580 ,1,1,190435 ,1,2,190445 ,2,14956,213485 ,2,822,31810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,134675 ,2,14979,361880 ,2,829,45 ,1,0,66360 ,1,1,131830 ,1,2,60470 ,1,3,60460 ,1,4,60020 ,1,5,59965 ,1,6,59935 ,1,7,133150 ,1,8,133470 ,1,9,133200 ,1,10,133170 ,1,11,133000 ,1,12,133550 ,1,13,133100 ,2,14956,213475 ,2,822,31810 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233460 ,2,14979,325705 ,2,829,45 ,1,0,149275 ,1,1,149000 ,2,14956,213505 ,2,822,31810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,134605 ,2,14979,361150 ,2,829,45 ,2,14956,213385 ,2,822,31810 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364135 ,2,829,45 ,1,0,273495 ,1,1,45 ,1,2,45 ,2,14956,213530 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370490 ,2,829,45 ,1,0,47225 ,1,1,45 ,1,2,613640 ,2,14956,213475 ,2,822,31810 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,134675 ,2,14979,325730 ,2,829,45 ,2,14956,211385 ,2,822,31810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366100 ,2,829,45 ,1,0,206100 ,2,14956,2855 ,2,822,31820 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415410 ,2,829,45 ,1,0,137690 ,1,1,137765 ,1,2,137670 ,1,3,137785 ,2,14956,243435 ,2,822,31830 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,134765 ,2,14979,2415 ,2,829,45 ,1,0,122695 ,2,14956,217860 ,2,822,52180 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,233470 ,2,14979,325740 ,2,829,45 ,1,0,60470 ,1,1,60460 ,1,2,60020 ,1,3,59965 ,1,4,59935 ,1,5,128675 ,2,14956,217860 ,2,822,52180 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,134765 ,2,14979,325750 ,2,829,45 ,1,0,128455 ,2,14956,217870 ,2,822,52180 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,325760 ,2,829,45 ,1,0,79335 ,1,1,57795 ,1,2,113545 ,1,3,141655 ,2,14956,217880 ,2,822,52180 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325775 ,2,829,45 ,1,0,193655 ,1,1,152490 ,1,2,147820 ,1,3,150195 ,2,14956,243450 ,2,822,52180 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325785 ,2,829,45 ,1,0,200190 ,1,1,167190 ,1,2,153575 ,2,14956,10080 ,2,822,52200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,134865 ,2,14979,383405 ,2,829,45 ,1,0,88460 ,1,1,73770 ,1,2,77560 ,1,3,195535 ,1,4,195510 ,1,5,195185 ,1,6,161365 ,1,7,161440 ,2,14956,10080 ,2,822,52200 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,233480 ,2,14979,325795 ,2,829,45 ,1,0,158900 ,2,14956,166985 ,2,822,31840 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,134865 ,2,14979,383005 ,2,829,45 ,1,0,120575 ,1,1,120555 ,2,14956,211080 ,2,822,52200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375280 ,2,829,45 ,1,0,127610 ,2,14956,207140 ,2,822,52200 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373395 ,2,829,45 ,1,0,125925 ,1,1,125880 ,1,2,129315 ,1,3,125785 ,2,14956,207085 ,2,822,52200 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378690 ,2,829,45 ,1,0,57795 ,1,1,63560 ,2,14956,207130 ,2,822,52200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373895 ,2,829,45 ,1,0,196095 ,2,14956,217810 ,2,822,52200 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383490 ,2,829,45 ,1,0,140080 ,2,14956,171330 ,2,822,52200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359150 ,2,829,45 ,1,0,168005 ,2,14956,217820 ,2,822,52200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325805 ,2,829,45 ,1,0,143430 ,1,1,72780 ,1,2,72070 ,1,3,72330 ,1,4,72740 ,1,5,150545 ,1,6,150525 ,1,7,150480 ,2,14956,171410 ,2,822,52200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411480 ,2,829,45 ,1,0,94840 ,2,14956,171725 ,2,822,52200 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359775 ,2,829,45 ,1,0,308070 ,1,1,45 ,2,14956,217830 ,2,822,52200 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,325825 ,2,829,45 ,1,0,308080 ,1,1,45 ,2,14956,2855 ,2,822,31710 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415405 ,2,829,45 ,1,0,172940 ,1,1,62040 ,1,2,172890 ,2,14956,179555 ,2,822,31675 ,2,14975,575665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325450 ,2,829,45 ,1,0,168770 ,1,1,168760 ,2,14956,217240 ,2,822,31870 ,2,14975,575690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325855 ,2,829,45 ,1,0,139165 ,1,1,138950 ,1,2,138800 ,1,3,105220 ,1,4,139175 ,1,5,138440 ,2,14956,13210 ,2,822,31850 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396485 ,2,829,45 ,1,0,135065 ,2,14956,6245 ,2,822,31850 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388655 ,2,829,45 ,1,0,100 ,2,14956,179555 ,2,822,31850 ,2,14975,575690 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325835 ,2,829,45 ,1,0,104965 ,1,1,77965 ,2,14956,13210 ,2,822,31920 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396390 ,2,829,45 ,1,0,135150 ,1,1,135140 ,1,2,135130 ,2,14956,6245 ,2,822,31920 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414330 ,2,829,45 ,1,0,100 ,2,14956,179555 ,2,822,31920 ,2,14975,575700 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325870 ,2,829,45 ,1,0,100 ,2,14956,13210 ,2,822,31940 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396420 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,31940 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388580 ,2,829,45 ,1,0,106730 ,1,1,106905 ,1,2,105355 ,1,3,106775 ,2,14956,179555 ,2,822,31940 ,2,14975,575710 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325890 ,2,829,45 ,1,0,589945 ,2,14956,13210 ,2,822,31965 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396540 ,2,829,45 ,2,14956,6245 ,2,822,31965 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388715 ,2,829,45 ,1,0,273505 ,1,1,45 ,1,2,45 ,2,14956,227050 ,2,822,31965 ,2,14975,575725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259600 ,2,14979,412545 ,2,829,45 ,1,0,47260 ,1,1,47245 ,1,2,47280 ,1,3,45 ,1,4,45 ,1,5,47290 ,1,6,614045 ,2,14956,179555 ,2,822,31965 ,2,14975,575765 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325925 ,2,829,45 ,2,14956,2855 ,2,822,32035 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415285 ,2,829,45 ,2,14956,6245 ,2,822,31995 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388760 ,2,829,45 ,2,14956,13210 ,2,822,31995 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396590 ,2,829,45 ,1,0,206170 ,2,14956,243815 ,2,822,31995 ,2,14975,575780 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,325965 ,2,829,45 ,1,0,293605 ,1,1,45 ,2,14956,243920 ,2,822,31995 ,2,14975,575780 ,2,14976,25600 ,2,14977,80305 ,2,14965,45 ,2,14978,45 ,2,14979,325975 ,2,829,45 ,1,0,105190 ,1,1,105180 ,2,14956,179555 ,2,822,31995 ,2,14975,575780 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325945 ,2,829,45 ,1,0,135300 ,2,14956,13210 ,2,822,32045 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396505 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,32045 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388690 ,2,829,45 ,1,0,196930 ,1,1,107500 ,2,14956,179555 ,2,822,32045 ,2,14975,575795 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,325985 ,2,829,45 ,1,0,138440 ,2,14956,13210 ,2,822,32065 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396490 ,2,829,45 ,1,0,163285 ,1,1,106285 ,2,14956,6245 ,2,822,32065 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388660 ,2,829,45 ,1,0,106895 ,1,1,105390 ,1,2,106285 ,2,14956,179555 ,2,822,32065 ,2,14975,575805 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326030 ,2,829,45 ,1,0,162885 ,1,1,105390 ,1,2,106285 ,2,14956,13210 ,2,822,32085 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396480 ,2,829,45 ,1,0,159175 ,1,1,163620 ,1,2,105230 ,2,14956,6245 ,2,822,32085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414335 ,2,829,45 ,1,0,163620 ,1,1,105230 ,2,14956,217240 ,2,822,32085 ,2,14975,575835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326070 ,2,829,45 ,1,0,152510 ,1,1,106115 ,1,2,97595 ,1,3,97585 ,1,4,105230 ,2,14956,179555 ,2,822,32085 ,2,14975,575835 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326050 ,2,829,45 ,1,0,107520 ,1,1,106115 ,1,2,97595 ,1,3,97585 ,1,4,105230 ,2,14956,6245 ,2,822,32110 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388650 ,2,829,45 ,1,0,196955 ,1,1,106115 ,1,2,97595 ,1,3,97585 ,1,4,105230 ,2,14956,13210 ,2,822,32110 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396450 ,2,829,45 ,1,0,106115 ,1,1,97595 ,1,2,97585 ,1,3,105230 ,2,14956,212310 ,2,822,32110 ,2,14975,575845 ,2,14976,62140 ,2,14977,80635 ,2,14965,45 ,2,14978,45 ,2,14979,377025 ,2,829,45 ,1,0,105300 ,1,1,105230 ,2,14956,244185 ,2,822,32110 ,2,14975,575850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326100 ,2,829,45 ,1,0,164745 ,1,1,163230 ,1,2,105230 ,2,14956,244195 ,2,822,32110 ,2,14975,575845 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,326135 ,2,829,45 ,1,0,194055 ,1,1,105220 ,1,2,57710 ,2,14956,179555 ,2,822,32110 ,2,14975,575845 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326080 ,2,829,45 ,1,0,149930 ,1,1,105220 ,2,14956,13210 ,2,822,32130 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396410 ,2,829,45 ,1,0,196945 ,1,1,106085 ,1,2,105220 ,1,3,107510 ,1,4,57710 ,2,14956,6245 ,2,822,32130 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388570 ,2,829,45 ,1,0,163610 ,1,1,105220 ,1,2,159165 ,2,14956,179555 ,2,822,32130 ,2,14975,575860 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326145 ,2,829,45 ,1,0,163030 ,2,14956,13210 ,2,822,32150 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396385 ,2,829,45 ,2,14956,6245 ,2,822,32150 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388565 ,2,829,45 ,1,0,273540 ,1,1,45 ,1,2,45 ,2,14956,217240 ,2,822,32150 ,2,14975,575895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326185 ,2,829,45 ,1,0,206190 ,1,1,45 ,1,2,613640 ,2,14956,179555 ,2,822,32150 ,2,14975,575895 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326165 ,2,829,45 ,1,0,206190 ,2,14956,13210 ,2,822,32170 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396445 ,2,829,45 ,1,0,86355 ,2,14956,6245 ,2,822,32170 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388635 ,2,829,45 ,1,0,194055 ,1,1,105220 ,2,14956,244355 ,2,822,32170 ,2,14975,575905 ,2,14976,24120 ,2,14977,80895 ,2,14965,45 ,2,14978,45 ,2,14979,326250 ,2,829,45 ,1,0,196945 ,1,1,106085 ,1,2,105220 ,1,3,107510 ,2,14956,179555 ,2,822,32170 ,2,14975,575905 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326195 ,2,829,45 ,1,0,106270 ,2,14956,13210 ,2,822,32205 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396440 ,2,829,45 ,1,0,135695 ,2,14956,6245 ,2,822,32205 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388630 ,2,829,45 ,1,0,100 ,2,14956,179555 ,2,822,32205 ,2,14975,575915 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326260 ,2,829,45 ,1,0,106905 ,1,1,105355 ,1,2,106730 ,1,3,162875 ,1,4,163360 ,1,5,105325 ,1,6,163350 ,1,7,67340 ,1,8,201135 ,1,9,163385 ,1,10,106810 ,1,11,162865 ,2,14956,217240 ,2,822,32250 ,2,14975,575930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326300 ,2,829,45 ,1,0,120225 ,1,1,120140 ,1,2,120215 ,1,3,120130 ,2,14956,13210 ,2,822,32225 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396570 ,2,829,45 ,1,0,308215 ,1,1,45 ,2,14956,6245 ,2,822,32225 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388755 ,2,829,45 ,1,0,139420 ,1,1,57795 ,2,14956,179555 ,2,822,32225 ,2,14975,575930 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326280 ,2,829,45 ,1,0,135795 ,2,14956,13210 ,2,822,32260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396545 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,32260 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388720 ,2,829,45 ,1,0,122495 ,2,14956,179555 ,2,822,32260 ,2,14975,575955 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326310 ,2,829,45 ,1,0,138800 ,1,1,105220 ,1,2,138865 ,2,14956,13210 ,2,822,32280 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396535 ,2,829,45 ,1,0,590000 ,2,14956,6245 ,2,822,32280 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388710 ,2,829,45 ,1,0,206300 ,1,1,206220 ,1,2,206285 ,1,3,206275 ,1,4,206255 ,2,14956,179555 ,2,822,32280 ,2,14975,575985 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326335 ,2,829,45 ,1,0,135860 ,2,14956,179415 ,2,822,32355 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326370 ,2,829,45 ,1,0,600065 ,2,14956,6245 ,2,822,32355 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388555 ,2,829,45 ,1,0,69255 ,1,1,66960 ,1,2,206255 ,2,14956,13210 ,2,822,32355 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396355 ,2,829,45 ,1,0,308310 ,1,1,45 ,2,14956,244610 ,2,822,32355 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326380 ,2,829,45 ,1,0,206390 ,1,1,198015 ,2,14956,179850 ,2,822,32355 ,2,14975,575995 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412335 ,2,829,45 ,1,0,120825 ,2,14956,221040 ,2,822,32355 ,2,14975,575995 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326390 ,2,829,45 ,1,0,308375 ,1,1,45 ,2,14956,2855 ,2,822,52210 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391250 ,2,829,45 ,1,0,206470 ,2,14956,173980 ,2,822,52210 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413700 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,212310 ,2,822,32375 ,2,14975,576040 ,2,14976,24020 ,2,14977,81445 ,2,14965,45 ,2,14978,45 ,2,14979,376965 ,2,829,45 ,1,0,206490 ,2,14956,179850 ,2,822,32375 ,2,14975,575995 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381105 ,2,829,45 ,1,0,206500 ,2,14956,212310 ,2,822,32355 ,2,14975,575995 ,2,14976,24020 ,2,14977,81445 ,2,14965,45 ,2,14978,45 ,2,14979,376970 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,599970 ,1,3,599970 ,2,14956,179555 ,2,822,32355 ,2,14975,575995 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326355 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373810 ,1,3,65 ,2,14956,6245 ,2,822,32425 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388725 ,2,829,45 ,1,0,582335 ,2,14956,13210 ,2,822,32425 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396550 ,2,829,45 ,1,0,206575 ,1,1,206510 ,1,2,206540 ,1,3,206530 ,1,4,206520 ,2,14956,221040 ,2,822,32425 ,2,14975,576055 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326470 ,2,829,45 ,1,0,206530 ,1,1,58385 ,2,14956,212310 ,2,822,32425 ,2,14975,576055 ,2,14976,62160 ,2,14977,81545 ,2,14965,45 ,2,14978,45 ,2,14979,377045 ,2,829,45 ,1,0,194045 ,1,1,66360 ,2,14956,179555 ,2,822,32425 ,2,14975,576055 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326450 ,2,829,45 ,1,0,164630 ,2,14956,13210 ,2,822,32445 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396565 ,2,829,45 ,1,0,77545 ,1,1,77535 ,2,14956,6245 ,2,822,32445 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388750 ,2,829,45 ,1,0,197685 ,2,14956,211235 ,2,822,32445 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259615 ,2,14979,411585 ,2,829,45 ,2,14956,179555 ,2,822,32445 ,2,14975,576065 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326485 ,2,829,45 ,1,0,273580 ,1,1,45 ,1,2,45 ,2,14956,179555 ,2,822,32685 ,2,14975,576090 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326505 ,2,829,45 ,1,0,47335 ,1,1,45 ,1,2,613640 ,2,14956,245065 ,2,822,31615 ,2,14975,575850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326125 ,2,829,45 ,2,14956,212310 ,2,822,31615 ,2,14975,575465 ,2,14976,81630 ,2,14977,81620 ,2,14965,45 ,2,14978,45 ,2,14979,377050 ,2,829,45 ,1,0,206595 ,1,1,206585 ,2,14956,246175 ,2,822,31615 ,2,14975,575465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326535 ,2,829,45 ,2,14956,217240 ,2,822,32485 ,2,14975,576105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326565 ,2,829,45 ,1,0,273590 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,32495 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415195 ,2,829,45 ,1,0,45 ,1,1,47355 ,1,2,613640 ,2,14956,2855 ,2,822,32525 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415190 ,2,829,45 ,2,14956,6245 ,2,822,32465 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388625 ,2,829,45 ,1,0,206615 ,1,1,206605 ,2,14956,13210 ,2,822,32465 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396435 ,2,829,45 ,1,0,72845 ,2,14956,212310 ,2,822,32465 ,2,14975,576105 ,2,14976,34970 ,2,14977,81830 ,2,14965,45 ,2,14978,45 ,2,14979,377020 ,2,829,45 ,1,0,97620 ,1,1,167530 ,1,2,167520 ,2,14956,246045 ,2,822,32465 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326575 ,2,829,45 ,2,14956,246055 ,2,822,32465 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326585 ,2,829,45 ,1,0,273610 ,1,1,273600 ,1,2,45 ,2,14956,246065 ,2,822,32465 ,2,14975,567855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326595 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,206645 ,1,3,206625 ,1,4,206695 ,1,5,206635 ,1,6,614045 ,2,14956,246075 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326605 ,2,829,45 ,1,0,206695 ,1,1,206645 ,1,2,206635 ,1,3,206625 ,2,14956,246085 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326650 ,2,829,45 ,2,14956,246105 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326660 ,2,829,45 ,1,0,273625 ,1,1,45 ,1,2,45 ,2,14956,246115 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326675 ,2,829,45 ,1,0,206715 ,1,1,45 ,1,2,45 ,1,3,206725 ,1,4,206705 ,1,5,616170 ,2,14956,246125 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326630 ,2,829,45 ,1,0,206725 ,1,1,206715 ,1,2,206705 ,2,14956,246135 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409260 ,2,829,45 ,1,0,308725 ,1,1,45 ,2,14956,246145 ,2,822,32465 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326640 ,2,829,45 ,2,14956,246155 ,2,822,32465 ,2,14975,575850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,206745 ,1,1,206755 ,1,2,206765 ,2,14956,211235 ,2,822,32465 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371910 ,2,829,45 ,1,0,168720 ,1,1,45 ,2,14956,246225 ,2,822,31615 ,2,14975,575465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409265 ,2,829,45 ,1,0,308765 ,1,1,45 ,2,14956,246245 ,2,822,31615 ,2,14975,575465 ,2,14976,81890 ,2,14977,81860 ,2,14965,45 ,2,14978,45 ,2,14979,326545 ,2,829,45 ,1,0,563295 ,2,14956,246255 ,2,822,31615 ,2,14975,575460 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259570 ,2,14979,2415 ,2,829,45 ,1,0,206840 ,1,1,206855 ,1,2,206830 ,1,3,206820 ,2,14956,175205 ,2,822,32535 ,2,14975,610315 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383745 ,2,829,45 ,1,0,308775 ,1,1,45 ,2,14956,246375 ,2,822,32570 ,2,14975,576195 ,2,14976,23130 ,2,14977,82115 ,2,14965,45 ,2,14978,45 ,2,14979,326740 ,2,829,45 ,1,0,72090 ,1,1,87490 ,2,14956,246350 ,2,822,32580 ,2,14975,569580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326760 ,2,829,45 ,1,0,308310 ,1,1,45 ,2,14956,246340 ,2,822,32590 ,2,14975,569580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326800 ,2,829,45 ,1,0,308825 ,1,1,45 ,2,14956,246350 ,2,822,32590 ,2,14975,569580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326790 ,2,829,45 ,1,0,308850 ,1,1,45 ,2,14956,246350 ,2,822,32625 ,2,14975,569580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326770 ,2,829,45 ,1,0,600010 ,2,14956,179770 ,2,822,32570 ,2,14975,576200 ,2,14976,23450 ,2,14977,33555 ,2,14965,45 ,2,14978,45 ,2,14979,391780 ,2,829,45 ,1,0,206940 ,2,14956,179770 ,2,822,32635 ,2,14975,576225 ,2,14976,24020 ,2,14977,82160 ,2,14965,45 ,2,14978,45 ,2,14979,391775 ,2,829,45 ,1,0,308860 ,1,1,45 ,2,14956,216645 ,2,822,32655 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387100 ,2,829,45 ,2,14956,179770 ,2,822,32665 ,2,14975,576240 ,2,14976,23450 ,2,14977,33555 ,2,14965,45 ,2,14978,45 ,2,14979,391545 ,2,829,45 ,1,0,206930 ,1,1,206950 ,2,14956,182390 ,2,822,32675 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384090 ,2,829,45 ,1,0,308910 ,1,1,45 ,2,14956,246470 ,2,822,32675 ,2,14975,575850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326885 ,2,829,45 ,1,0,170985 ,1,1,171415 ,1,2,57795 ,1,3,171095 ,1,4,63560 ,2,14956,246455 ,2,822,32545 ,2,14975,575850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326895 ,2,829,45 ,1,0,590090 ,1,1,590085 ,2,14956,217240 ,2,822,32675 ,2,14975,576125 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326905 ,2,829,45 ,2,14956,246480 ,2,822,32545 ,2,14975,576120 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,326915 ,2,829,45 ,2,14956,179770 ,2,822,32545 ,2,14975,576125 ,2,14976,23450 ,2,14977,33555 ,2,14965,45 ,2,14978,45 ,2,14979,391585 ,2,829,45 ,1,0,207010 ,1,1,206970 ,1,2,206960 ,2,14956,213590 ,2,822,32675 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259625 ,2,14979,412935 ,2,829,45 ,1,0,308955 ,1,1,45 ,2,14956,179770 ,2,822,32555 ,2,14975,576125 ,2,14976,23450 ,2,14977,33555 ,2,14965,45 ,2,14978,45 ,2,14979,391590 ,2,829,45 ,1,0,590085 ,1,1,590090 ,2,14956,246540 ,2,822,32555 ,2,14975,576125 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326925 ,2,829,45 ,1,0,207030 ,1,1,207020 ,2,14956,246560 ,2,822,32555 ,2,14975,576195 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326935 ,2,829,45 ,2,14956,246550 ,2,822,32545 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,207040 ,2,14956,246570 ,2,822,32555 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,246550 ,2,822,32555 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,207060 ,1,1,207050 ,2,14956,246570 ,2,822,32545 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,57190 ,1,1,57340 ,2,14956,246590 ,2,822,32545 ,2,14975,576120 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,173980 ,2,822,32685 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386840 ,2,829,45 ,1,0,207080 ,1,1,207070 ,2,14956,6245 ,2,822,32685 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414340 ,2,829,45 ,2,14956,13210 ,2,822,32685 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396560 ,2,829,45 ,1,0,207135 ,1,1,207125 ,2,14956,246630 ,2,822,32685 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,326950 ,2,829,45 ,1,0,590160 ,2,14956,246640 ,2,822,32685 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,326960 ,2,829,45 ,2,14956,13210 ,2,822,31575 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397265 ,2,829,45 ,1,0,207280 ,1,1,207270 ,1,2,207255 ,1,3,207245 ,1,4,207235 ,1,5,207225 ,1,6,207200 ,1,7,207190 ,1,8,207180 ,1,9,207145 ,1,10,207170 ,1,11,207155 ,2,14956,6245 ,2,822,31575 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388985 ,2,829,45 ,1,0,309180 ,1,1,45 ,2,14956,246695 ,2,822,31615 ,2,14975,575465 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,325320 ,2,829,45 ,2,14956,246840 ,2,822,32695 ,2,14975,575465 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259635 ,2,14979,2415 ,2,829,45 ,1,0,207355 ,1,1,207345 ,1,2,207335 ,1,3,207300 ,1,4,207365 ,1,5,207290 ,1,6,207395 ,2,14956,246735 ,2,822,52220 ,2,14975,575465 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259635 ,2,14979,326970 ,2,829,45 ,1,0,309305 ,1,1,45 ,2,14956,217455 ,2,822,32730 ,2,14975,576280 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384720 ,2,829,45 ,1,0,207255 ,1,1,58385 ,1,2,207290 ,2,14956,213590 ,2,822,32730 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259645 ,2,14979,413220 ,2,829,45 ,1,0,309380 ,1,1,45 ,2,14956,179555 ,2,822,32740 ,2,14975,575465 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387675 ,2,829,45 ,2,14956,182390 ,2,822,32750 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385405 ,2,829,45 ,1,0,207415 ,1,1,207405 ,2,14956,232365 ,2,822,32750 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391200 ,2,829,45 ,2,14956,216645 ,2,822,32760 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387105 ,2,829,45 ,1,0,207465 ,2,14956,242525 ,2,822,32760 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390870 ,2,829,45 ,2,14956,182390 ,2,822,32695 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384270 ,2,829,45 ,1,0,207455 ,2,14956,213590 ,2,822,32695 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259680 ,2,14979,413000 ,2,829,45 ,2,14956,217240 ,2,822,32695 ,2,14975,575465 ,2,14976,23130 ,2,14977,82655 ,2,14965,45 ,2,14978,45 ,2,14979,325310 ,2,829,45 ,1,0,207485 ,1,1,207475 ,2,14956,182390 ,2,822,28620 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385475 ,2,829,45 ,1,0,127785 ,1,1,128365 ,1,2,128355 ,1,3,128030 ,2,14956,246885 ,2,822,28620 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,325285 ,2,829,45 ,1,0,67765 ,1,1,207515 ,1,2,67850 ,1,3,207495 ,1,4,67870 ,2,14956,246860 ,2,822,28620 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,122705 ,2,14979,318455 ,2,829,45 ,1,0,558080 ,2,14956,217195 ,2,822,28620 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369275 ,2,829,45 ,1,0,207565 ,1,1,207525 ,1,2,207555 ,2,14956,217455 ,2,822,32770 ,2,14975,576330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384785 ,2,829,45 ,1,0,558080 ,2,14956,217455 ,2,822,32780 ,2,14975,568360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384780 ,2,829,45 ,1,0,207605 ,1,1,207575 ,1,2,207585 ,2,14956,216035 ,2,822,52230 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413465 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,374215 ,1,3,65 ,2,14956,184135 ,2,822,52230 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409270 ,2,829,45 ,1,0,558235 ,2,14956,217345 ,2,822,52230 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412245 ,2,829,45 ,1,0,207625 ,1,1,207615 ,2,14956,182390 ,2,822,32840 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384245 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,374205 ,1,3,65 ,2,14956,246985 ,2,822,32840 ,2,14975,569665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,327120 ,2,829,45 ,1,0,558090 ,2,14956,184135 ,2,822,32850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380645 ,2,829,45 ,1,0,207635 ,2,14956,182390 ,2,822,32850 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385435 ,2,829,45 ,1,0,144785 ,2,14956,223625 ,2,822,32850 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364865 ,2,829,45 ,1,0,144985 ,1,1,143170 ,2,14956,217195 ,2,822,32850 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369255 ,2,829,45 ,1,0,144645 ,2,14956,217455 ,2,822,32860 ,2,14975,576420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384770 ,2,829,45 ,2,14956,247235 ,2,822,32860 ,2,14975,576415 ,2,14976,36360 ,2,14977,82985 ,2,14965,45 ,2,14978,45 ,2,14979,327170 ,2,829,45 ,1,0,273690 ,1,1,45 ,1,2,45 ,2,14956,247115 ,2,822,32870 ,2,14975,576430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327180 ,2,829,45 ,1,0,264460 ,1,1,264450 ,1,2,264440 ,1,3,264430 ,1,4,264420 ,1,5,264390 ,1,6,264380 ,1,7,264370 ,2,14956,247020 ,2,822,32870 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327190 ,2,829,45 ,1,0,207875 ,1,1,207825 ,1,2,207815 ,1,3,207805 ,1,4,207795 ,1,5,207785 ,1,6,207775 ,1,7,207765 ,2,14956,247030 ,2,822,32870 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327200 ,2,829,45 ,1,0,207815 ,1,1,207775 ,1,2,264380 ,1,3,264440 ,1,4,207875 ,1,5,207795 ,1,6,264370 ,1,7,207805 ,1,8,45 ,1,9,45 ,1,10,45 ,1,11,264390 ,1,12,45 ,1,13,45 ,1,14,45 ,1,15,264460 ,1,16,264430 ,1,17,207785 ,1,18,207765 ,1,19,264450 ,1,20,207825 ,1,21,264420 ,1,22,47660 ,1,23,614710 ,2,14956,247040 ,2,822,32870 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,247050 ,2,822,32870 ,2,14975,576430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327210 ,2,829,45 ,1,0,264480 ,1,1,264470 ,2,14956,247085 ,2,822,32870 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,327220 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,208210 ,1,3,65 ,1,4,208200 ,1,5,208190 ,1,6,208180 ,1,7,65 ,1,8,65 ,1,9,208170 ,1,10,208135 ,1,11,208125 ,1,12,65 ,1,13,65 ,1,14,65 ,1,15,208115 ,1,16,65 ,1,17,208105 ,1,18,208095 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,208085 ,1,23,208075 ,1,24,208065 ,1,25,208030 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,208020 ,1,30,65 ,1,31,65 ,1,32,207665 ,1,33,207905 ,2,14956,247265 ,2,822,32885 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137440 ,2,14979,2415 ,2,829,45 ,2,14956,247255 ,2,822,32885 ,2,14975,110 ,2,14976,83025 ,2,14977,23120 ,2,14965,45 ,2,14978,233505 ,2,14979,327260 ,2,829,45 ,1,0,273700 ,1,1,45 ,1,2,45 ,2,14956,247310 ,2,822,32885 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137460 ,2,14979,2415 ,2,829,45 ,1,0,47680 ,1,1,45 ,1,2,613640 ,2,14956,247300 ,2,822,32885 ,2,14975,110 ,2,14976,83025 ,2,14977,23120 ,2,14965,45 ,2,14978,233515 ,2,14979,327290 ,2,829,45 ,1,0,590290 ,2,14956,247330 ,2,822,32885 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137480 ,2,14979,2415 ,2,829,45 ,1,0,208010 ,1,1,208000 ,1,2,207985 ,1,3,207975 ,1,4,207965 ,1,5,207955 ,1,6,207945 ,1,7,207935 ,1,8,207915 ,1,9,207925 ,2,14956,247320 ,2,822,32885 ,2,14975,110 ,2,14976,83025 ,2,14977,23120 ,2,14965,45 ,2,14978,233525 ,2,14979,327310 ,2,829,45 ,1,0,137495 ,2,14956,182390 ,2,822,32885 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385430 ,2,829,45 ,1,0,590285 ,2,14956,247340 ,2,822,32885 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327330 ,2,829,45 ,1,0,208170 ,1,1,208190 ,1,2,202920 ,2,14956,247255 ,2,822,32885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,137440 ,2,14979,327270 ,2,829,45 ,1,0,208115 ,1,1,208085 ,1,2,208180 ,1,3,208200 ,1,4,208170 ,1,5,208190 ,1,6,208020 ,1,7,207665 ,1,8,208105 ,1,9,208125 ,1,10,208095 ,1,11,208065 ,1,12,208030 ,1,13,207905 ,1,14,208210 ,1,15,208075 ,1,16,208135 ,2,14956,247300 ,2,822,32885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,137460 ,2,14979,327300 ,2,829,45 ,1,0,121040 ,2,14956,247320 ,2,822,32885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,137480 ,2,14979,327320 ,2,829,45 ,1,0,116810 ,1,1,72160 ,1,2,59500 ,2,14956,247350 ,2,822,32885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327375 ,2,829,45 ,1,0,73250 ,2,14956,247360 ,2,822,32885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327280 ,2,829,45 ,1,0,77365 ,1,1,77355 ,1,2,76500 ,1,3,77315 ,1,4,77115 ,2,14956,216035 ,2,822,32885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386165 ,2,829,45 ,1,0,208220 ,1,1,57795 ,2,14956,217195 ,2,822,32885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369245 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,561380 ,2,14956,247370 ,2,822,32885 ,2,14975,576435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,74135 ,2,14956,182390 ,2,822,32895 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384240 ,2,829,45 ,1,0,73405 ,1,1,57795 ,2,14956,217455 ,2,822,32905 ,2,14975,576475 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384775 ,2,829,45 ,2,14956,247460 ,2,822,32915 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137680 ,2,14979,2415 ,2,829,45 ,1,0,273725 ,1,1,45 ,1,2,45 ,2,14956,247445 ,2,822,32915 ,2,14975,568460 ,2,14976,82680 ,2,14977,23360 ,2,14965,45 ,2,14978,233535 ,2,14979,327430 ,2,829,45 ,1,0,45 ,1,1,47725 ,1,2,613640 ,2,14956,247570 ,2,822,32915 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137700 ,2,14979,2415 ,2,829,45 ,2,14956,247560 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233550 ,2,14979,327475 ,2,829,45 ,1,0,208240 ,1,1,208230 ,2,14956,247550 ,2,822,32940 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327495 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,370555 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,370545 ,1,7,65 ,1,8,370535 ,1,9,65 ,2,14956,247490 ,2,822,32940 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327505 ,2,829,45 ,2,14956,247595 ,2,822,32915 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137775 ,2,14979,2415 ,2,829,45 ,1,0,273735 ,1,1,45 ,1,2,45 ,2,14956,247585 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233560 ,2,14979,327525 ,2,829,45 ,1,0,47745 ,1,1,45 ,1,2,47770 ,1,3,614705 ,2,14956,247615 ,2,822,32915 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,137800 ,2,14979,2415 ,2,829,45 ,2,14956,247605 ,2,822,32915 ,2,14975,110 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,233570 ,2,14979,327570 ,2,829,45 ,1,0,264640 ,2,14956,182390 ,2,822,32915 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385440 ,2,829,45 ,1,0,208315 ,1,1,208305 ,2,14956,247445 ,2,822,32915 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,137680 ,2,14979,327440 ,2,829,45 ,2,14956,247640 ,2,822,32915 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327545 ,2,829,45 ,1,0,208285 ,2,14956,247650 ,2,822,32915 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327515 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,370520 ,1,3,65 ,2,14956,247560 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,137700 ,2,14979,327485 ,2,829,45 ,2,14956,247585 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,137775 ,2,14979,327535 ,2,829,45 ,1,0,273745 ,1,1,45 ,1,2,45 ,2,14956,247605 ,2,822,32915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,137800 ,2,14979,327580 ,2,829,45 ,1,0,45 ,1,1,47780 ,1,2,613640 ,2,14956,184135 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380650 ,2,829,45 ,2,14956,216035 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386170 ,2,829,45 ,1,0,208335 ,2,14956,217195 ,2,822,32915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369265 ,2,829,45 ,1,0,165920 ,1,1,165910 ,2,14956,231870 ,2,822,28585 ,2,14975,572220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398785 ,2,829,45 ,1,0,85115 ,2,14956,250930 ,2,822,28610 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398705 ,2,829,45 ,2,14956,211385 ,2,822,28480 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366200 ,2,829,45 ,1,0,273755 ,1,1,45 ,1,2,45 ,2,14956,247765 ,2,822,28480 ,2,14975,572185 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,327590 ,2,829,45 ,1,0,47830 ,1,1,47850 ,1,2,45 ,1,3,614705 ,2,14956,247710 ,2,822,32985 ,2,14975,576500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,247745 ,2,822,32970 ,2,14975,576505 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,247755 ,2,822,33015 ,2,14975,576525 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327600 ,2,829,45 ,1,0,208345 ,2,14956,247795 ,2,822,52255 ,2,14975,599870 ,2,14976,24120 ,2,14977,83235 ,2,14965,45 ,2,14978,45 ,2,14979,327610 ,2,829,45 ,1,0,119600 ,2,14956,247805 ,2,822,52255 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,318240 ,2,829,45 ,1,0,119425 ,1,1,119630 ,2,14956,247815 ,2,822,28470 ,2,14975,572170 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,114385 ,2,14956,10080 ,2,822,52265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,138090 ,2,14979,383475 ,2,829,45 ,1,0,101310 ,2,14956,10080 ,2,822,52265 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,233580 ,2,14979,327620 ,2,829,45 ,1,0,73050 ,2,14956,166985 ,2,822,32985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,138090 ,2,14979,383105 ,2,829,45 ,1,0,102790 ,2,14956,218530 ,2,822,52265 ,2,14975,567805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327630 ,2,829,45 ,1,0,114990 ,2,14956,225890 ,2,822,52265 ,2,14975,567805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,114990 ,1,1,102790 ,2,14956,211080 ,2,822,52265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327640 ,2,829,45 ,1,0,208355 ,2,14956,207140 ,2,822,52265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327680 ,2,829,45 ,1,0,100 ,1,1,561380 ,2,14956,207085 ,2,822,52265 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327690 ,2,829,45 ,1,0,208410 ,2,14956,207130 ,2,822,52265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327700 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,358410 ,1,5,358395 ,2,14956,217810 ,2,822,52265 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,327710 ,2,829,45 ,2,14956,171330 ,2,822,52265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327740 ,2,829,45 ,1,0,273770 ,1,1,45 ,1,2,45 ,2,14956,217820 ,2,822,52265 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327730 ,2,829,45 ,1,0,45 ,1,1,47860 ,1,2,613640 ,2,14956,171725 ,2,822,52265 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,327750 ,2,829,45 ,2,14956,247865 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327795 ,2,829,45 ,1,0,208420 ,2,14956,207075 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327785 ,2,829,45 ,1,0,208430 ,2,14956,217830 ,2,822,52265 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,327720 ,2,829,45 ,1,0,76500 ,2,14956,218495 ,2,822,52265 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,102390 ,2,14956,2855 ,2,822,32995 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391970 ,2,829,45 ,1,0,102805 ,2,14956,247915 ,2,822,33015 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,327815 ,2,829,45 ,1,0,57795 ,1,1,102805 ,2,14956,169880 ,2,822,33015 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398150 ,2,829,45 ,1,0,208440 ,1,1,205265 ,2,14956,247950 ,2,822,33015 ,2,14975,110 ,2,14976,23450 ,2,14977,83410 ,2,14965,45 ,2,14978,45 ,2,14979,327835 ,2,829,45 ,1,0,186000 ,1,1,186030 ,1,2,57795 ,2,14956,207130 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374005 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,355425 ,1,3,65 ,2,14956,247970 ,2,822,33015 ,2,14975,599870 ,2,14976,23450 ,2,14977,83420 ,2,14965,45 ,2,14978,45 ,2,14979,327845 ,2,829,45 ,2,14956,247960 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327855 ,2,829,45 ,1,0,273780 ,1,1,45 ,1,2,45 ,2,14956,207085 ,2,822,33015 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378750 ,2,829,45 ,1,0,47900 ,1,1,47880 ,1,2,45 ,1,3,614705 ,2,14956,207140 ,2,822,33015 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373490 ,2,829,45 ,2,14956,247990 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327865 ,2,829,45 ,1,0,208460 ,2,14956,215630 ,2,822,28415 ,2,14975,572210 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395605 ,2,829,45 ,2,14956,247980 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,138460 ,2,14979,327885 ,2,829,45 ,1,0,208450 ,2,14956,247980 ,2,822,28415 ,2,14975,110 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,233595 ,2,14979,327895 ,2,829,45 ,1,0,129165 ,2,14956,210935 ,2,822,33015 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371495 ,2,829,45 ,1,0,121945 ,1,1,121920 ,2,14956,211025 ,2,822,33015 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378200 ,2,829,45 ,2,14956,248010 ,2,822,33015 ,2,14975,567805 ,2,14976,24020 ,2,14977,83450 ,2,14965,45 ,2,14978,45 ,2,14979,327905 ,2,829,45 ,1,0,273790 ,1,1,45 ,1,2,45 ,2,14956,211080 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375310 ,2,829,45 ,1,0,45 ,1,1,47925 ,1,2,613640 ,2,14956,248020 ,2,822,33015 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327915 ,2,829,45 ,1,0,560850 ,2,14956,211360 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366400 ,2,829,45 ,1,0,208870 ,1,1,208860 ,1,2,208480 ,1,3,208470 ,2,14956,213385 ,2,822,33015 ,2,14975,599870 ,2,14976,24020 ,2,14977,65935 ,2,14965,45 ,2,14978,45 ,2,14979,364255 ,2,829,45 ,2,14956,211385 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366210 ,2,829,45 ,1,0,273800 ,1,1,45 ,1,2,45 ,2,14956,171725 ,2,822,33015 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359900 ,2,829,45 ,1,0,264710 ,1,1,264685 ,1,2,264675 ,1,3,264665 ,1,4,264655 ,2,14956,217810 ,2,822,33015 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383565 ,2,829,45 ,1,0,208620 ,1,1,208610 ,1,2,208590 ,1,3,208580 ,1,4,208570 ,2,14956,171330 ,2,822,33015 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359255 ,2,829,45 ,1,0,264655 ,1,1,45 ,1,2,208580 ,1,3,208610 ,1,4,208570 ,1,5,264685 ,1,6,208590 ,1,7,47945 ,1,8,45 ,1,9,264710 ,1,10,208620 ,1,11,264665 ,1,12,264675 ,1,13,45 ,1,14,45 ,1,15,623955 ,2,14956,248045 ,2,822,33015 ,2,14975,567805 ,2,14976,23450 ,2,14977,83520 ,2,14965,45 ,2,14978,45 ,2,14979,327930 ,2,829,45 ,1,0,560850 ,2,14956,207085 ,2,822,52275 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412090 ,2,829,45 ,1,0,208850 ,1,1,208840 ,1,2,208830 ,1,3,208820 ,1,4,208790 ,1,5,208780 ,1,6,208770 ,1,7,208760 ,1,8,208685 ,1,9,208675 ,1,10,208665 ,1,11,208655 ,1,12,208640 ,1,13,208630 ,2,14956,212985 ,2,822,52275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,259690 ,2,14979,398780 ,2,829,45 ,1,0,79335 ,1,1,208770 ,1,2,60685 ,1,3,57795 ,1,4,78865 ,2,14956,209590 ,2,822,52275 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259690 ,2,14979,412775 ,2,829,45 ,1,0,3010 ,1,1,310990 ,1,2,310980 ,2,14956,213035 ,2,822,52275 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,259700 ,2,14979,398740 ,2,829,45 ,1,0,208770 ,2,14956,209580 ,2,822,52275 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259700 ,2,14979,412885 ,2,829,45 ,1,0,208870 ,2,14956,215585 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386990 ,2,829,45 ,1,0,208770 ,1,1,208610 ,1,2,208580 ,1,3,208570 ,1,4,208840 ,2,14956,248115 ,2,822,28415 ,2,14975,110 ,2,14976,23450 ,2,14977,83410 ,2,14965,45 ,2,14978,45 ,2,14979,327940 ,2,829,45 ,1,0,138760 ,2,14956,215865 ,2,822,28415 ,2,14975,568420 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,386370 ,2,829,45 ,1,0,590285 ,2,14956,218495 ,2,822,28415 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,327950 ,2,829,45 ,2,14956,215715 ,2,822,28415 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386540 ,2,829,45 ,1,0,273830 ,1,1,45 ,1,2,45 ,2,14956,215955 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386295 ,2,829,45 ,1,0,47965 ,1,1,45 ,1,2,613640 ,2,14956,215640 ,2,822,28415 ,2,14975,576620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373655 ,2,829,45 ,1,0,590440 ,2,14956,211080 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375045 ,2,829,45 ,1,0,208740 ,1,1,208730 ,1,2,208720 ,1,3,208710 ,2,14956,215685 ,2,822,28415 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388325 ,2,829,45 ,1,0,177250 ,1,1,310980 ,2,14956,248140 ,2,822,28415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409300 ,2,829,45 ,1,0,3010 ,1,1,311150 ,1,2,311140 ,2,14956,248150 ,2,822,28415 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327960 ,2,829,45 ,1,0,208770 ,1,1,60685 ,2,14956,248160 ,2,822,28415 ,2,14975,599940 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,311305 ,1,1,45 ,2,14956,215575 ,2,822,28415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386090 ,2,829,45 ,1,0,208950 ,2,14956,248170 ,2,822,28415 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,138460 ,2,14979,2415 ,2,829,45 ,1,0,57620 ,1,1,57845 ,1,2,59325 ,1,3,59315 ,2,14956,248300 ,2,822,28415 ,2,14975,572155 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,327990 ,2,829,45 ,1,0,57620 ,1,1,59325 ,1,2,59315 ,1,3,57845 ,2,14956,248290 ,2,822,33080 ,2,14975,576625 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,328000 ,2,829,45 ,1,0,167215 ,1,1,45 ,2,14956,176470 ,2,822,33070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,259710 ,2,14979,380570 ,2,829,45 ,1,0,90675 ,2,14956,173945 ,2,822,33070 ,2,14975,610340 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259710 ,2,14979,410385 ,2,829,45 ,1,0,90835 ,1,1,90960 ,1,2,91275 ,2,14956,6550 ,2,822,33080 ,2,14975,610355 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370395 ,2,829,45 ,2,14956,171965 ,2,822,52285 ,2,14975,576685 ,2,14976,23075 ,2,14977,23065 ,2,14965,550290 ,2,14978,45 ,2,14979,380260 ,2,829,45 ,1,0,209090 ,1,1,209100 ,2,14956,2855 ,2,822,52285 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414710 ,2,829,45 ,1,0,91085 ,1,1,69255 ,1,2,66960 ,2,14956,233390 ,2,822,33080 ,2,14975,576740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259720 ,2,14979,416585 ,2,829,45 ,2,14956,248210 ,2,822,33080 ,2,14975,610415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328020 ,2,829,45 ,1,0,209110 ,2,14956,175205 ,2,822,33080 ,2,14975,610325 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,381865 ,2,829,45 ,1,0,91085 ,1,1,70210 ,1,2,66960 ,2,14956,248220 ,2,822,33080 ,2,14975,610420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328035 ,2,829,45 ,1,0,90835 ,2,14956,166935 ,2,822,33080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379515 ,2,829,45 ,1,0,80070 ,1,1,79500 ,1,2,80290 ,2,14956,166515 ,2,822,33080 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377545 ,2,829,45 ,1,0,204100 ,1,1,60470 ,1,2,60460 ,1,3,60020 ,1,4,59965 ,1,5,59935 ,1,6,97605 ,1,7,97585 ,1,8,97905 ,1,9,97760 ,1,10,97810 ,1,11,97620 ,1,12,204030 ,1,13,201055 ,2,14956,10665 ,2,822,33080 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382735 ,2,829,45 ,1,0,187455 ,1,1,187435 ,1,2,187415 ,2,14956,248260 ,2,822,33080 ,2,14975,610425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328045 ,2,829,45 ,1,0,124700 ,2,14956,175265 ,2,822,33080 ,2,14975,576745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393595 ,2,829,45 ,1,0,560510 ,2,14956,174935 ,2,822,33080 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394900 ,2,829,45 ,1,0,209120 ,2,14956,166680 ,2,822,33080 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377635 ,2,829,45 ,1,0,67540 ,1,1,67550 ,2,14956,248270 ,2,822,33080 ,2,14975,610430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328055 ,2,829,45 ,1,0,80025 ,1,1,80100 ,1,2,79610 ,2,14956,6870 ,2,822,33080 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,356115 ,2,829,45 ,2,14956,174925 ,2,822,33080 ,2,14975,576750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381715 ,2,829,45 ,1,0,209170 ,1,1,209160 ,1,2,209190 ,1,3,209180 ,1,4,209150 ,2,14956,171330 ,2,822,33080 ,2,14975,610440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354135 ,2,829,45 ,1,0,209170 ,2,14956,231450 ,2,822,28415 ,2,14975,599940 ,2,14976,23675 ,2,14977,83740 ,2,14965,45 ,2,14978,45 ,2,14979,387405 ,2,829,45 ,1,0,209160 ,2,14956,215695 ,2,822,28415 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393410 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,374170 ,2,14956,248375 ,2,822,28415 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328090 ,2,829,45 ,2,14956,215285 ,2,822,33105 ,2,14975,576785 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379265 ,2,829,45 ,1,0,209200 ,2,14956,213325 ,2,822,33115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371080 ,2,829,45 ,2,14956,248415 ,2,822,33115 ,2,14975,576790 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,209365 ,1,1,209290 ,1,2,209280 ,1,3,209270 ,1,4,209395 ,1,5,209260 ,1,6,209250 ,1,7,209220 ,2,14956,248435 ,2,822,33105 ,2,14975,576755 ,2,14976,23450 ,2,14977,83865 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,209300 ,1,1,209320 ,2,14956,248490 ,2,822,33155 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388245 ,2,829,45 ,2,14956,248510 ,2,822,33165 ,2,14975,576810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,209385 ,1,1,209425 ,1,2,209415 ,1,3,209210 ,1,4,209375 ,1,5,209310 ,1,6,209300 ,1,7,209320 ,2,14956,231450 ,2,822,33185 ,2,14975,599940 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,413875 ,2,829,45 ,1,0,209270 ,1,1,58895 ,2,14956,215350 ,2,822,33185 ,2,14975,576855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386655 ,2,829,45 ,1,0,209270 ,1,1,58895 ,1,2,209210 ,2,14956,248550 ,2,822,33185 ,2,14975,576825 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,139365 ,2,14956,231450 ,2,822,33195 ,2,14975,599940 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,387400 ,2,829,45 ,1,0,600065 ,2,14956,217015 ,2,822,33195 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379965 ,2,829,45 ,1,0,209385 ,1,1,209365 ,2,14956,215285 ,2,822,33195 ,2,14975,576865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379270 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,374150 ,1,3,65 ,2,14956,248600 ,2,822,33195 ,2,14975,576860 ,2,14976,24020 ,2,14977,83990 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,231490 ,2,822,28370 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399555 ,2,829,45 ,1,0,209435 ,2,14956,231500 ,2,822,28370 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417105 ,2,829,45 ,1,0,209445 ,2,14956,182390 ,2,822,28370 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386480 ,2,829,45 ,2,14956,231510 ,2,822,28370 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,417060 ,2,829,45 ,1,0,209445 ,1,1,209500 ,1,2,209490 ,1,3,209515 ,1,4,209480 ,1,5,209470 ,2,14956,199915 ,2,822,28360 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259730 ,2,14979,413950 ,2,829,45 ,1,0,209500 ,1,1,209490 ,2,14956,226535 ,2,822,28360 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259740 ,2,14979,412555 ,2,829,45 ,1,0,58645 ,1,1,58385 ,1,2,209525 ,2,14956,182390 ,2,822,33205 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385670 ,2,829,45 ,2,14956,248765 ,2,822,33205 ,2,14975,568900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328180 ,2,829,45 ,1,0,209525 ,1,1,209625 ,1,2,209605 ,1,3,209595 ,1,4,209585 ,1,5,209575 ,1,6,209545 ,1,7,209645 ,1,8,209635 ,1,9,209535 ,2,14956,217195 ,2,822,33205 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369575 ,2,829,45 ,1,0,209525 ,2,14956,226105 ,2,822,33215 ,2,14975,576885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398570 ,2,829,45 ,1,0,209595 ,1,1,209625 ,1,2,209605 ,1,3,209545 ,1,4,57510 ,2,14956,226535 ,2,822,33215 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259750 ,2,14979,412840 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,65 ,1,3,374115 ,1,4,65 ,1,5,374105 ,2,14956,231240 ,2,822,28255 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328215 ,2,829,45 ,2,14956,248840 ,2,822,33225 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398080 ,2,829,45 ,1,0,209655 ,2,14956,248850 ,2,822,33225 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398070 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,374095 ,1,3,65 ,2,14956,248860 ,2,822,33225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398095 ,2,829,45 ,1,0,565490 ,2,14956,248870 ,2,822,33225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,209700 ,1,1,209680 ,1,2,209690 ,2,14956,248905 ,2,822,33225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328235 ,2,829,45 ,1,0,90665 ,1,1,181680 ,2,14956,248895 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328255 ,2,829,45 ,1,0,58895 ,1,1,60790 ,1,2,57795 ,2,14956,248915 ,2,822,33225 ,2,14975,576905 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,328265 ,2,829,45 ,1,0,90835 ,1,1,90950 ,1,2,91265 ,2,14956,212310 ,2,822,52295 ,2,14975,572035 ,2,14976,23675 ,2,14977,84180 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,58695 ,1,1,58705 ,2,14956,226555 ,2,822,26225 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315295 ,2,829,45 ,1,0,139705 ,2,14956,217240 ,2,822,26715 ,2,14975,576915 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,315275 ,2,829,45 ,1,0,100 ,2,14956,217455 ,2,822,26715 ,2,14975,576915 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385015 ,2,829,45 ,1,0,89380 ,1,1,89755 ,1,2,90325 ,1,3,90355 ,2,14956,225045 ,2,822,26715 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328275 ,2,829,45 ,1,0,85940 ,1,1,85315 ,2,14956,216035 ,2,822,52305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409305 ,2,829,45 ,1,0,86050 ,1,1,86705 ,2,14956,184135 ,2,822,52305 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409310 ,2,829,45 ,1,0,205235 ,1,1,69255 ,1,2,66960 ,2,14956,217335 ,2,822,52305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415070 ,2,829,45 ,1,0,90720 ,1,1,90345 ,2,14956,217345 ,2,822,52305 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412305 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373825 ,2,14956,195335 ,2,822,33285 ,2,14975,576965 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259775 ,2,14979,412550 ,2,829,45 ,1,0,590575 ,2,14956,211155 ,2,822,33295 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370010 ,2,829,45 ,1,0,209720 ,1,1,209710 ,2,14956,210895 ,2,822,33295 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,369885 ,2,829,45 ,1,0,79040 ,2,14956,211210 ,2,822,33295 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369790 ,2,829,45 ,1,0,91240 ,1,1,70175 ,1,2,66960 ,1,3,209730 ,2,14956,249025 ,2,822,33295 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328340 ,2,829,45 ,1,0,139855 ,2,14956,249035 ,2,822,33295 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328350 ,2,829,45 ,1,0,600065 ,2,14956,226535 ,2,822,33295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412645 ,2,829,45 ,1,0,58895 ,1,1,201385 ,1,2,57795 ,2,14956,241845 ,2,822,33295 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328360 ,2,829,45 ,1,0,136785 ,1,1,136765 ,1,2,95225 ,1,3,95030 ,2,14956,249055 ,2,822,33295 ,2,14975,576970 ,2,14976,24120 ,2,14977,84315 ,2,14965,45 ,2,14978,45 ,2,14979,328370 ,2,829,45 ,1,0,77545 ,2,14956,216645 ,2,822,33310 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387195 ,2,829,45 ,1,0,80445 ,2,14956,240605 ,2,822,33320 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389450 ,2,829,45 ,1,0,139935 ,2,14956,249105 ,2,822,33320 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,328430 ,2,829,45 ,1,0,600065 ,2,14956,249125 ,2,822,33320 ,2,14975,599940 ,2,14976,23450 ,2,14977,84395 ,2,14965,45 ,2,14978,45 ,2,14979,328440 ,2,829,45 ,1,0,139955 ,2,14956,240560 ,2,822,33320 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391745 ,2,829,45 ,1,0,600065 ,2,14956,249135 ,2,822,33320 ,2,14975,576980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,70985 ,1,1,71065 ,2,14956,2855 ,2,822,33330 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415675 ,2,829,45 ,1,0,73865 ,2,14956,217015 ,2,822,33340 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379795 ,2,829,45 ,1,0,140020 ,2,14956,215285 ,2,822,33340 ,2,14975,577025 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379090 ,2,829,45 ,1,0,600065 ,2,14956,226535 ,2,822,33340 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259785 ,2,14979,412580 ,2,829,45 ,1,0,170150 ,1,1,170120 ,2,14956,249250 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140050 ,2,14979,328460 ,2,829,45 ,1,0,57795 ,1,1,60685 ,2,14956,249250 ,2,822,26705 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,233605 ,2,14979,328490 ,2,829,45 ,1,0,140065 ,2,14956,249260 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,140070 ,2,14979,328500 ,2,829,45 ,1,0,600065 ,2,14956,249260 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233615 ,2,14979,328510 ,2,829,45 ,1,0,140085 ,2,14956,249355 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140130 ,2,14979,2415 ,2,829,45 ,1,0,600065 ,2,14956,249345 ,2,822,26705 ,2,14975,110 ,2,14976,84625 ,2,14977,23120 ,2,14965,45 ,2,14978,233625 ,2,14979,328550 ,2,829,45 ,1,0,57710 ,1,1,209310 ,2,14956,249335 ,2,822,33395 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,328570 ,2,829,45 ,1,0,140155 ,2,14956,179850 ,2,822,33395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381925 ,2,829,45 ,1,0,600065 ,2,14956,249375 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140175 ,2,14979,397895 ,2,829,45 ,1,0,140180 ,2,14956,249365 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233660 ,2,14979,328595 ,2,829,45 ,1,0,600065 ,2,14956,249385 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140195 ,2,14979,328615 ,2,829,45 ,1,0,209310 ,2,14956,249385 ,2,822,26705 ,2,14975,110 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,233670 ,2,14979,328625 ,2,829,45 ,1,0,65220 ,2,14956,182390 ,2,822,26705 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385680 ,2,829,45 ,1,0,162875 ,1,1,105355 ,2,14956,249395 ,2,822,26705 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328640 ,2,829,45 ,1,0,67340 ,1,1,201135 ,1,2,163385 ,2,14956,249365 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,140175 ,2,14979,328605 ,2,829,45 ,1,0,106810 ,1,1,162865 ,1,2,162875 ,1,3,105355 ,2,14956,249345 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140130 ,2,14979,328560 ,2,829,45 ,1,0,201900 ,1,1,198210 ,2,14956,249440 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140280 ,2,14979,2415 ,2,829,45 ,1,0,57710 ,1,1,93355 ,1,2,93310 ,2,14956,249430 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233680 ,2,14979,328650 ,2,829,45 ,2,14956,249450 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140300 ,2,14979,328670 ,2,829,45 ,1,0,273850 ,1,1,273860 ,1,2,45 ,2,14956,249450 ,2,822,26705 ,2,14975,110 ,2,14976,76145 ,2,14977,23120 ,2,14965,45 ,2,14978,233690 ,2,14979,328680 ,2,829,45 ,1,0,45 ,1,1,48175 ,1,2,613640 ,2,14956,249460 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140345 ,2,14979,328690 ,2,829,45 ,2,14956,249460 ,2,822,26705 ,2,14975,110 ,2,14976,76165 ,2,14977,23120 ,2,14965,45 ,2,14978,233700 ,2,14979,328700 ,2,829,45 ,1,0,264775 ,2,14956,249470 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140300 ,2,14979,397890 ,2,829,45 ,1,0,209845 ,1,1,209805 ,1,2,209785 ,1,3,209835 ,1,4,209825 ,1,5,209815 ,1,6,209740 ,2,14956,249480 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140375 ,2,14979,328710 ,2,829,45 ,1,0,3010 ,1,1,203595 ,1,2,203580 ,1,3,179760 ,1,4,312220 ,1,5,312210 ,2,14956,249480 ,2,822,26705 ,2,14975,110 ,2,14976,84670 ,2,14977,23120 ,2,14965,45 ,2,14978,233710 ,2,14979,328745 ,2,829,45 ,1,0,140395 ,2,14956,249490 ,2,822,26705 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328480 ,2,829,45 ,1,0,100 ,2,14956,216035 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386230 ,2,829,45 ,1,0,66360 ,1,1,65590 ,1,2,64760 ,1,3,57795 ,2,14956,249500 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140050 ,2,14979,2415 ,2,829,45 ,1,0,127835 ,1,1,197685 ,1,2,167190 ,1,3,209855 ,2,14956,249515 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328755 ,2,829,45 ,2,14956,249525 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140070 ,2,14979,2415 ,2,829,45 ,1,0,273875 ,1,1,45 ,1,2,45 ,2,14956,249535 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140375 ,2,14979,397825 ,2,829,45 ,1,0,48195 ,1,1,45 ,1,2,613640 ,2,14956,249545 ,2,822,26705 ,2,14975,568430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409315 ,2,829,45 ,2,14956,249560 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140345 ,2,14979,397840 ,2,829,45 ,1,0,209855 ,2,14956,249570 ,2,822,26705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140195 ,2,14979,397885 ,2,829,45 ,2,14956,184135 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380815 ,2,829,45 ,1,0,273885 ,1,1,45 ,1,2,45 ,2,14956,249430 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,140280 ,2,14979,328660 ,2,829,45 ,1,0,48215 ,1,1,45 ,1,2,613640 ,2,14956,223625 ,2,822,26705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365960 ,2,829,45 ,2,14956,250150 ,2,822,26705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328765 ,2,829,45 ,1,0,264785 ,2,14956,250130 ,2,822,33415 ,2,14975,568045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416750 ,2,829,45 ,1,0,209955 ,1,1,209945 ,1,2,209935 ,1,3,209925 ,1,4,209875 ,1,5,209905 ,1,6,209895 ,1,7,209885 ,2,14956,216645 ,2,822,33445 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387190 ,2,829,45 ,1,0,209955 ,1,1,190190 ,1,2,190200 ,2,14956,217240 ,2,822,33445 ,2,14975,577060 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329135 ,2,829,45 ,1,0,312495 ,1,1,45 ,2,14956,227050 ,2,822,33445 ,2,14975,577060 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259795 ,2,14979,412395 ,2,829,45 ,2,14956,2855 ,2,822,33425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391540 ,2,829,45 ,1,0,210020 ,2,14956,249645 ,2,822,33425 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,398325 ,2,829,45 ,1,0,312530 ,1,1,45 ,2,14956,217455 ,2,822,33480 ,2,14975,577090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384650 ,2,829,45 ,1,0,312550 ,1,1,45 ,2,14956,250020 ,2,822,33490 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,140645 ,2,14979,2415 ,2,829,45 ,1,0,312560 ,1,1,45 ,2,14956,250005 ,2,822,33490 ,2,14975,577195 ,2,14976,85120 ,2,14977,23360 ,2,14965,45 ,2,14978,233770 ,2,14979,328870 ,2,829,45 ,1,0,139650 ,1,1,117150 ,1,2,117115 ,1,3,121910 ,2,14956,249715 ,2,822,33520 ,2,14975,610450 ,2,14976,23130 ,2,14977,23120 ,2,14965,550400 ,2,14978,45 ,2,14979,328905 ,2,829,45 ,1,0,115325 ,1,1,116100 ,1,2,116220 ,2,14956,13175 ,2,822,33530 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394195 ,2,829,45 ,1,0,116100 ,2,14956,168920 ,2,822,33530 ,2,14975,610445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416050 ,2,829,45 ,1,0,72330 ,1,1,72070 ,2,14956,249695 ,2,822,33530 ,2,14975,577120 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328925 ,2,829,45 ,1,0,115325 ,1,1,72330 ,1,2,72070 ,2,14956,2855 ,2,822,33540 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415185 ,2,829,45 ,1,0,140710 ,2,14956,2855 ,2,822,33550 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391105 ,2,829,45 ,1,0,100 ,2,14956,179555 ,2,822,33550 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387660 ,2,829,45 ,1,0,153280 ,2,14956,195165 ,2,822,33550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386670 ,2,829,45 ,1,0,312590 ,1,1,45 ,2,14956,198675 ,2,822,33550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386910 ,2,829,45 ,1,0,102455 ,1,1,102580 ,2,14956,249805 ,2,822,33550 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328970 ,2,829,45 ,1,0,87385 ,1,1,75450 ,1,2,62780 ,2,14956,249795 ,2,822,33550 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233720 ,2,14979,2415 ,2,829,45 ,1,0,312600 ,1,1,45 ,2,14956,6920 ,2,822,23660 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233730 ,2,14979,328990 ,2,829,45 ,1,0,58290 ,1,1,142930 ,1,2,142920 ,1,3,58895 ,1,4,57795 ,1,5,58645 ,1,6,142205 ,2,14956,249815 ,2,822,33550 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329000 ,2,829,45 ,2,14956,249855 ,2,822,33550 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329015 ,2,829,45 ,1,0,273905 ,1,1,45 ,1,2,45 ,2,14956,180595 ,2,822,33550 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329025 ,2,829,45 ,1,0,210215 ,1,1,45 ,1,2,613640 ,2,14956,249865 ,2,822,33550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,328980 ,2,829,45 ,1,0,210215 ,2,14956,2855 ,2,822,33500 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391100 ,2,829,45 ,1,0,312660 ,1,1,45 ,2,14956,179555 ,2,822,33500 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387645 ,2,829,45 ,1,0,312705 ,1,1,45 ,2,14956,195165 ,2,822,33500 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386665 ,2,829,45 ,1,0,312715 ,1,1,45 ,2,14956,198675 ,2,822,33500 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386905 ,2,829,45 ,1,0,312735 ,1,1,45 ,2,14956,249920 ,2,822,33500 ,2,14975,577190 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329035 ,2,829,45 ,1,0,312760 ,1,1,45 ,2,14956,249930 ,2,822,33500 ,2,14975,577190 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329095 ,2,829,45 ,1,0,119360 ,1,1,119465 ,2,14956,249975 ,2,822,33500 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,329085 ,2,829,45 ,1,0,312780 ,1,1,45 ,2,14956,249985 ,2,822,33500 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,329105 ,2,829,45 ,1,0,312825 ,1,1,45 ,2,14956,249865 ,2,822,33500 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329045 ,2,829,45 ,1,0,126225 ,1,1,58895 ,2,14956,182390 ,2,822,33490 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385325 ,2,829,45 ,1,0,73050 ,1,1,62855 ,2,14956,250030 ,2,822,33490 ,2,14975,577220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329115 ,2,829,45 ,1,0,62855 ,1,1,169240 ,1,2,62640 ,1,3,62040 ,1,4,172380 ,1,5,172500 ,1,6,71035 ,1,7,59500 ,1,8,130110 ,1,9,172360 ,2,14956,250005 ,2,822,33490 ,2,14975,577195 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,140645 ,2,14979,328880 ,2,829,45 ,1,0,312835 ,1,1,45 ,2,14956,223625 ,2,822,33490 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364760 ,2,829,45 ,1,0,312875 ,1,1,45 ,2,14956,217195 ,2,822,33490 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369145 ,2,829,45 ,1,0,169535 ,1,1,178615 ,1,2,178605 ,1,3,178590 ,2,14956,2855 ,2,822,33605 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415175 ,2,829,45 ,1,0,169180 ,1,1,179175 ,1,2,169485 ,2,14956,249645 ,2,822,33415 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,398320 ,2,829,45 ,1,0,168760 ,2,14956,250130 ,2,822,33425 ,2,14975,568045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398650 ,2,829,45 ,1,0,169560 ,1,1,170875 ,1,2,140665 ,1,3,169295 ,1,4,73050 ,1,5,62855 ,1,6,62660 ,1,7,62705 ,2,14956,250140 ,2,822,33425 ,2,14975,571045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,328775 ,2,829,45 ,1,0,312885 ,1,1,45 ,2,14956,250160 ,2,822,26705 ,2,14975,570660 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329145 ,2,829,45 ,1,0,312905 ,1,1,45 ,2,14956,250215 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313915 ,2,829,45 ,1,0,312920 ,1,1,45 ,2,14956,250225 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313905 ,2,829,45 ,1,0,312930 ,1,1,45 ,2,14956,250235 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329225 ,2,829,45 ,1,0,312940 ,1,1,45 ,2,14956,248870 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,312950 ,1,1,45 ,2,14956,250245 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329235 ,2,829,45 ,1,0,312970 ,1,1,45 ,2,14956,250255 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329215 ,2,829,45 ,1,0,312970 ,1,1,45 ,2,14956,250255 ,2,822,27130 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313895 ,2,829,45 ,1,0,312970 ,1,1,45 ,2,14956,250305 ,2,822,33615 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,329265 ,2,829,45 ,1,0,312970 ,1,1,45 ,2,14956,250265 ,2,822,33615 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329275 ,2,829,45 ,1,0,312980 ,1,1,45 ,2,14956,250315 ,2,822,27130 ,2,14975,561335 ,2,14976,24020 ,2,14977,85375 ,2,14965,45 ,2,14978,45 ,2,14979,313885 ,2,829,45 ,1,0,313030 ,1,1,45 ,2,14956,250325 ,2,822,26265 ,2,14975,570345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,317860 ,2,829,45 ,1,0,542350 ,1,1,542345 ,1,2,542305 ,1,3,542300 ,1,4,542295 ,1,5,45 ,1,6,45 ,2,14956,250345 ,2,822,52295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329330 ,2,829,45 ,1,0,615295 ,1,1,45 ,2,14956,250355 ,2,822,52295 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329340 ,2,829,45 ,1,0,100 ,1,1,567805 ,1,2,590700 ,2,14956,2855 ,2,822,33635 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415655 ,2,829,45 ,1,0,100 ,1,1,110 ,2,14956,250465 ,2,822,26225 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,329355 ,2,829,45 ,1,0,100 ,1,1,567805 ,1,2,599940 ,2,14956,250500 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,148170 ,1,1,66360 ,2,14956,223805 ,2,822,26225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329365 ,2,829,45 ,1,0,115715 ,2,14956,226095 ,2,822,26225 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383480 ,2,829,45 ,1,0,100 ,1,1,590770 ,2,14956,248840 ,2,822,26225 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398085 ,2,829,45 ,1,0,167060 ,2,14956,226655 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329375 ,2,829,45 ,1,0,100 ,2,14956,248850 ,2,822,26225 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398075 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,184135 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329385 ,2,829,45 ,1,0,100 ,1,1,590770 ,2,14956,226535 ,2,822,26225 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382960 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,560975 ,2,14956,248860 ,2,822,26225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398100 ,2,829,45 ,1,0,72090 ,1,1,143725 ,2,14956,184135 ,2,822,26205 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381020 ,2,829,45 ,1,0,72265 ,1,1,143725 ,2,14956,207085 ,2,822,26205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378565 ,2,829,45 ,1,0,143285 ,1,1,145625 ,1,2,143965 ,1,3,142195 ,2,14956,207130 ,2,822,26205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373755 ,2,829,45 ,1,0,141485 ,2,14956,231000 ,2,822,26205 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329435 ,2,829,45 ,1,0,100 ,2,14956,250315 ,2,822,26205 ,2,14975,561335 ,2,14976,24020 ,2,14977,85555 ,2,14965,45 ,2,14978,45 ,2,14979,329445 ,2,829,45 ,1,0,100 ,1,1,590900 ,2,14956,250530 ,2,822,26205 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329455 ,2,829,45 ,1,0,100 ,1,1,594825 ,2,14956,228410 ,2,822,26205 ,2,14975,570280 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329465 ,2,829,45 ,1,0,120245 ,2,14956,250540 ,2,822,26205 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329475 ,2,829,45 ,1,0,100 ,1,1,594835 ,2,14956,250610 ,2,822,25865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,329495 ,2,829,45 ,1,0,118225 ,2,14956,250620 ,2,822,25865 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409325 ,2,829,45 ,1,0,100 ,1,1,590950 ,2,14956,250630 ,2,822,25865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,329525 ,2,829,45 ,1,0,151060 ,1,1,118320 ,1,2,119465 ,2,14956,250745 ,2,822,25865 ,2,14975,110 ,2,14976,36360 ,2,14977,85600 ,2,14965,45 ,2,14978,45 ,2,14979,329535 ,2,829,45 ,1,0,143965 ,1,1,84345 ,1,2,84470 ,1,3,84765 ,1,4,151825 ,1,5,144010 ,2,14956,250640 ,2,822,36125 ,2,14975,577240 ,2,14976,24020 ,2,14977,85590 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,570340 ,2,14956,184135 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380675 ,2,829,45 ,1,0,100 ,1,1,609845 ,1,2,609845 ,2,14956,250760 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141635 ,2,14979,329555 ,2,829,45 ,1,0,100 ,1,1,607905 ,2,14956,250760 ,2,822,25865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233780 ,2,14979,329565 ,2,829,45 ,1,0,100 ,1,1,607765 ,2,14956,223625 ,2,822,25865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364895 ,2,829,45 ,1,0,141660 ,2,14956,250770 ,2,822,25865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,141635 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,250830 ,2,822,25780 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,141685 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,578265 ,2,14956,250820 ,2,822,25780 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233800 ,2,14979,329585 ,2,829,45 ,1,0,141700 ,2,14956,182390 ,2,822,25780 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385330 ,2,829,45 ,1,0,100 ,2,14956,250800 ,2,822,25780 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,112220 ,2,14979,313045 ,2,829,45 ,1,0,145625 ,1,1,143965 ,1,2,142195 ,1,3,142150 ,2,14956,250820 ,2,822,25780 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141685 ,2,14979,329595 ,2,829,45 ,1,0,141735 ,2,14956,236910 ,2,822,25705 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398610 ,2,829,45 ,1,0,100 ,2,14956,223045 ,2,822,25705 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394405 ,2,829,45 ,1,0,141755 ,2,14956,236920 ,2,822,25705 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,250930 ,2,822,33645 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398530 ,2,829,45 ,1,0,141795 ,2,14956,260710 ,2,822,52650 ,2,14975,578995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259805 ,2,14979,329640 ,2,829,45 ,1,0,100 ,2,14956,260630 ,2,822,33665 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329660 ,2,829,45 ,1,0,141815 ,2,14956,260615 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409330 ,2,829,45 ,1,0,100 ,2,14956,250940 ,2,822,52315 ,2,14975,599870 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259815 ,2,14979,409335 ,2,829,45 ,1,0,100 ,1,1,591130 ,2,14956,217455 ,2,822,33705 ,2,14975,577295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384915 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,568460 ,2,14956,250960 ,2,822,33705 ,2,14975,577300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329695 ,2,829,45 ,1,0,100 ,1,1,561515 ,2,14956,251535 ,2,822,33705 ,2,14975,577290 ,2,14976,85780 ,2,14977,85770 ,2,14965,45 ,2,14978,45 ,2,14979,329705 ,2,829,45 ,1,0,152080 ,1,1,104785 ,1,2,143430 ,1,3,72265 ,2,14956,182390 ,2,822,52325 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329725 ,2,829,45 ,1,0,141900 ,2,14956,240000 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329735 ,2,829,45 ,1,0,100 ,2,14956,215455 ,2,822,52325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374800 ,2,829,45 ,1,0,147760 ,1,1,74240 ,1,2,142875 ,2,14956,217195 ,2,822,52325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329745 ,2,829,45 ,1,0,100 ,1,1,591615 ,2,14956,240010 ,2,822,52325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329770 ,2,829,45 ,1,0,167060 ,2,14956,240020 ,2,822,52325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409365 ,2,829,45 ,1,0,100 ,2,14956,240050 ,2,822,52325 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409340 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,251610 ,2,822,52360 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412685 ,2,829,45 ,1,0,100 ,1,1,591615 ,2,14956,251620 ,2,822,52360 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413860 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,251630 ,2,822,52360 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412465 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,251645 ,2,822,52360 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413840 ,2,829,45 ,1,0,128365 ,1,1,128355 ,2,14956,251655 ,2,822,52360 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414350 ,2,829,45 ,1,0,100 ,1,1,611435 ,2,14956,251665 ,2,822,52360 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414150 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,251675 ,2,822,52360 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413520 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,591430 ,2,14956,251720 ,2,822,52360 ,2,14975,573425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383185 ,2,829,45 ,1,0,100 ,1,1,594830 ,2,14956,216035 ,2,822,52370 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329790 ,2,829,45 ,1,0,120160 ,2,14956,184135 ,2,822,52370 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409370 ,2,829,45 ,1,0,167060 ,2,14956,217335 ,2,822,52370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391245 ,2,829,45 ,1,0,100 ,2,14956,217345 ,2,822,52370 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380915 ,2,829,45 ,1,0,167060 ,2,14956,212310 ,2,822,33815 ,2,14975,577430 ,2,14976,24120 ,2,14977,86110 ,2,14965,45 ,2,14978,45 ,2,14979,376040 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,33815 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388460 ,2,829,45 ,1,0,167060 ,2,14956,13210 ,2,822,33815 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395890 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,33815 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390730 ,2,829,45 ,1,0,167060 ,2,14956,251835 ,2,822,33815 ,2,14975,562045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397065 ,2,829,45 ,1,0,100 ,2,14956,192365 ,2,822,33815 ,2,14975,562045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329855 ,2,829,45 ,1,0,167060 ,2,14956,251845 ,2,822,33815 ,2,14975,577425 ,2,14976,23450 ,2,14977,86120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,251875 ,2,822,33815 ,2,14975,577425 ,2,14976,24120 ,2,14977,86110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,106905 ,1,1,105355 ,1,2,106730 ,1,3,57795 ,2,14956,251905 ,2,822,33835 ,2,14975,577440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,329865 ,2,829,45 ,1,0,142230 ,2,14956,251985 ,2,822,33835 ,2,14975,577445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329885 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,33855 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415540 ,2,829,45 ,1,0,138885 ,2,14956,252195 ,2,822,33835 ,2,14975,577460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329895 ,2,829,45 ,1,0,100 ,1,1,570885 ,2,14956,2855 ,2,822,33865 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415530 ,2,829,45 ,1,0,142275 ,2,14956,252205 ,2,822,33835 ,2,14975,577470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,252215 ,2,822,52380 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259825 ,2,14979,409375 ,2,829,45 ,1,0,138110 ,1,1,138330 ,2,14956,252320 ,2,822,33895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329945 ,2,829,45 ,1,0,100 ,1,1,570750 ,2,14956,252310 ,2,822,34060 ,2,14975,577535 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259835 ,2,14979,2415 ,2,829,45 ,1,0,9255 ,1,1,229965 ,2,14956,252285 ,2,822,52390 ,2,14975,577535 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259835 ,2,14979,329955 ,2,829,45 ,1,0,100 ,1,1,599970 ,2,14956,252265 ,2,822,34060 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,142370 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,580980 ,1,2,580980 ,2,14956,252235 ,2,822,34060 ,2,14975,577485 ,2,14976,86310 ,2,14977,23120 ,2,14965,45 ,2,14978,233810 ,2,14979,329975 ,2,829,45 ,1,0,58895 ,1,1,106375 ,1,2,106385 ,2,14956,252235 ,2,822,34060 ,2,14975,577485 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,142370 ,2,14979,329985 ,2,829,45 ,1,0,100 ,1,1,591745 ,2,14956,252275 ,2,822,34060 ,2,14975,577490 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,329965 ,2,829,45 ,1,0,100 ,1,1,580980 ,2,14956,187610 ,2,822,33895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360035 ,2,829,45 ,1,0,100 ,1,1,594215 ,2,14956,252340 ,2,822,33895 ,2,14975,110 ,2,14976,23675 ,2,14977,86320 ,2,14965,45 ,2,14978,45 ,2,14979,330015 ,2,829,45 ,1,0,100 ,1,1,610505 ,1,2,610505 ,2,14956,252330 ,2,822,34060 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330035 ,2,829,45 ,1,0,106905 ,1,1,105355 ,1,2,106730 ,1,3,57795 ,1,4,161410 ,1,5,105420 ,2,14956,252395 ,2,822,33895 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,330045 ,2,829,45 ,1,0,100 ,1,1,580615 ,2,14956,252385 ,2,822,34060 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330055 ,2,829,45 ,1,0,100 ,1,1,580615 ,1,2,580615 ,2,14956,252425 ,2,822,33895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330065 ,2,829,45 ,1,0,100 ,1,1,580590 ,1,2,580590 ,2,14956,252405 ,2,822,33805 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330085 ,2,829,45 ,1,0,79335 ,1,1,66360 ,1,2,57795 ,2,14956,252415 ,2,822,34060 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330075 ,2,829,45 ,1,0,100 ,1,1,591875 ,2,14956,252445 ,2,822,33895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330095 ,2,829,45 ,1,0,168375 ,1,1,168425 ,1,2,180180 ,1,3,168405 ,2,14956,252435 ,2,822,34060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330105 ,2,829,45 ,1,0,142530 ,2,14956,252485 ,2,822,33895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330140 ,2,829,45 ,1,0,100 ,2,14956,252455 ,2,822,34060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330150 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,587905 ,2,14956,252495 ,2,822,33895 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330160 ,2,829,45 ,1,0,127785 ,1,1,198670 ,2,14956,252505 ,2,822,33895 ,2,14975,577475 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,142570 ,2,14956,2855 ,2,822,33905 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415520 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,33925 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415535 ,2,829,45 ,1,0,168445 ,1,1,168550 ,2,14956,2855 ,2,822,33940 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415525 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,593415 ,2,14956,195530 ,2,822,33950 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330185 ,2,829,45 ,1,0,167060 ,2,14956,252615 ,2,822,34040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,195530 ,2,822,34040 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330195 ,2,829,45 ,1,0,167060 ,2,14956,195530 ,2,822,33960 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,34040 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389110 ,2,829,45 ,1,0,180000 ,1,1,168550 ,2,14956,13210 ,2,822,34040 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397665 ,2,829,45 ,1,0,167060 ,2,14956,2855 ,2,822,34040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392235 ,2,829,45 ,1,0,100 ,2,14956,252750 ,2,822,34060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330205 ,2,829,45 ,1,0,167060 ,2,14956,252760 ,2,822,34060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330215 ,2,829,45 ,1,0,100 ,2,14956,252800 ,2,822,34060 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,330235 ,2,829,45 ,1,0,180000 ,1,1,168550 ,1,2,169695 ,2,14956,207130 ,2,822,34060 ,2,14975,577625 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330245 ,2,829,45 ,1,0,167060 ,2,14956,6245 ,2,822,33805 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389115 ,2,829,45 ,1,0,100 ,2,14956,13210 ,2,822,33805 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397670 ,2,829,45 ,1,0,167060 ,2,14956,2855 ,2,822,33805 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392240 ,2,829,45 ,1,0,100 ,2,14956,212310 ,2,822,33805 ,2,14975,577415 ,2,14976,24020 ,2,14977,86775 ,2,14965,45 ,2,14978,45 ,2,14979,377735 ,2,829,45 ,1,0,167060 ,2,14956,252855 ,2,822,33805 ,2,14975,577415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330255 ,2,829,45 ,1,0,100 ,2,14956,252875 ,2,822,33795 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330275 ,2,829,45 ,1,0,167060 ,2,14956,252910 ,2,822,33795 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330285 ,2,829,45 ,1,0,100 ,2,14956,252920 ,2,822,33795 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330295 ,2,829,45 ,1,0,167060 ,2,14956,252930 ,2,822,33795 ,2,14975,577430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330305 ,2,829,45 ,1,0,100 ,2,14956,252950 ,2,822,33795 ,2,14975,577635 ,2,14976,23450 ,2,14977,86865 ,2,14965,45 ,2,14978,45 ,2,14979,330340 ,2,829,45 ,1,0,167060 ,2,14956,221670 ,2,822,33795 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330360 ,2,829,45 ,1,0,100 ,2,14956,221885 ,2,822,33795 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330370 ,2,829,45 ,1,0,178120 ,2,14956,252960 ,2,822,33795 ,2,14975,577410 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330390 ,2,829,45 ,1,0,178030 ,2,14956,252970 ,2,822,33795 ,2,14975,577410 ,2,14976,23130 ,2,14977,86885 ,2,14965,45 ,2,14978,45 ,2,14979,330400 ,2,829,45 ,1,0,614705 ,1,1,615295 ,1,2,373790 ,1,3,65 ,1,4,373800 ,1,5,65 ,2,14956,253045 ,2,822,34070 ,2,14975,568845 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,253060 ,2,822,34070 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,253070 ,2,822,34070 ,2,14975,577415 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398880 ,2,829,45 ,1,0,100 ,2,14956,253080 ,2,822,34070 ,2,14975,577655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330460 ,2,829,45 ,1,0,180030 ,1,1,168550 ,1,2,173415 ,2,14956,217015 ,2,822,34105 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379930 ,2,829,45 ,1,0,167060 ,2,14956,215285 ,2,822,34105 ,2,14975,577690 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379230 ,2,829,45 ,1,0,100 ,2,14956,207085 ,2,822,52405 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330490 ,2,829,45 ,1,0,179990 ,1,1,168550 ,2,14956,222030 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143010 ,2,14979,2415 ,2,829,45 ,1,0,173305 ,1,1,66360 ,2,14956,218585 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233820 ,2,14979,330510 ,2,829,45 ,1,0,167060 ,2,14956,218585 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,143010 ,2,14979,330520 ,2,829,45 ,1,0,100 ,2,14956,207130 ,2,822,52405 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330530 ,2,829,45 ,1,0,167060 ,2,14956,218585 ,2,822,52405 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409380 ,2,829,45 ,1,0,100 ,2,14956,253135 ,2,822,34125 ,2,14975,577705 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,180000 ,1,1,168550 ,1,2,180010 ,2,14956,253165 ,2,822,34155 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,253175 ,2,822,34155 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,34165 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415390 ,2,829,45 ,1,0,167060 ,2,14956,2855 ,2,822,34175 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392005 ,2,829,45 ,1,0,100 ,2,14956,253360 ,2,822,52415 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259845 ,2,14979,330580 ,2,829,45 ,1,0,180000 ,1,1,168550 ,1,2,172155 ,2,14956,253305 ,2,822,34115 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259900 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,253340 ,2,822,34115 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259880 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,253350 ,2,822,34115 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259890 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,13210 ,2,822,34265 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396620 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,34265 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388795 ,2,829,45 ,1,0,167060 ,2,14956,253410 ,2,822,52425 ,2,14975,577805 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259870 ,2,14979,330600 ,2,829,45 ,1,0,100 ,2,14956,253450 ,2,822,34235 ,2,14975,577740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330610 ,2,829,45 ,1,0,169915 ,2,14956,253460 ,2,822,34235 ,2,14975,577740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,169955 ,1,1,66360 ,2,14956,253470 ,2,822,34235 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330625 ,2,829,45 ,1,0,167060 ,2,14956,253490 ,2,822,34235 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330635 ,2,829,45 ,1,0,100 ,2,14956,13210 ,2,822,34235 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396615 ,2,829,45 ,1,0,167060 ,2,14956,6245 ,2,822,34235 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388780 ,2,829,45 ,1,0,100 ,2,14956,253500 ,2,822,34235 ,2,14975,577805 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259870 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,593415 ,2,14956,253555 ,2,822,52435 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259880 ,2,14979,330655 ,2,829,45 ,1,0,167060 ,2,14956,253575 ,2,822,52475 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259890 ,2,14979,330680 ,2,829,45 ,1,0,100 ,2,14956,253615 ,2,822,52485 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259900 ,2,14979,330690 ,2,829,45 ,1,0,143370 ,2,14956,253595 ,2,822,34115 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259925 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,253605 ,2,822,34115 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259915 ,2,14979,2415 ,2,829,45 ,1,0,143390 ,2,14956,253635 ,2,822,52495 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259915 ,2,14979,330700 ,2,829,45 ,1,0,100 ,2,14956,253655 ,2,822,52505 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259925 ,2,14979,330710 ,2,829,45 ,1,0,100 ,1,1,570410 ,2,14956,221260 ,2,822,34115 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330725 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,253680 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,143450 ,2,14979,330735 ,2,829,45 ,1,0,100 ,1,1,610085 ,2,14956,253680 ,2,822,34115 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,233830 ,2,14979,330795 ,2,829,45 ,1,0,100 ,1,1,610085 ,2,14956,253690 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330805 ,2,829,45 ,1,0,127490 ,2,14956,253700 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,330745 ,2,829,45 ,1,0,100 ,1,1,587755 ,2,14956,253755 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143495 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,593610 ,2,14956,253710 ,2,822,34115 ,2,14975,110 ,2,14976,78610 ,2,14977,23120 ,2,14965,45 ,2,14978,233840 ,2,14979,330825 ,2,829,45 ,1,0,100 ,1,1,573960 ,2,14956,213225 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,143540 ,2,14979,330845 ,2,829,45 ,1,0,143545 ,2,14956,213225 ,2,822,34115 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233870 ,2,14979,330910 ,2,829,45 ,1,0,100 ,2,14956,253765 ,2,822,34115 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409385 ,2,829,45 ,1,0,143565 ,2,14956,253775 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409390 ,2,829,45 ,1,0,100 ,2,14956,207085 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378710 ,2,829,45 ,1,0,143590 ,2,14956,253785 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330920 ,2,829,45 ,1,0,100 ,2,14956,253805 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,87495 ,2,14965,45 ,2,14978,45 ,2,14979,330930 ,2,829,45 ,1,0,100 ,1,1,568565 ,2,14956,253815 ,2,822,34115 ,2,14975,562040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330960 ,2,829,45 ,1,0,100 ,1,1,573440 ,2,14956,221910 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409395 ,2,829,45 ,1,0,100 ,1,1,611390 ,2,14956,211025 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378095 ,2,829,45 ,1,0,100 ,1,1,587345 ,2,14956,253860 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143665 ,2,14979,2415 ,2,829,45 ,1,0,168275 ,2,14956,253825 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233880 ,2,14979,330985 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,563735 ,1,3,568460 ,2,14956,221765 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331045 ,2,829,45 ,1,0,168295 ,1,1,168285 ,2,14956,253870 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331055 ,2,829,45 ,1,0,143710 ,2,14956,221785 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331085 ,2,829,45 ,1,0,100 ,2,14956,253825 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,143665 ,2,14979,330995 ,2,829,45 ,1,0,143730 ,2,14956,253880 ,2,822,34115 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330865 ,2,829,45 ,1,0,100 ,2,14956,253890 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,87495 ,2,14965,45 ,2,14978,45 ,2,14979,331095 ,2,829,45 ,1,0,100 ,1,1,569615 ,2,14956,253905 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,331115 ,2,829,45 ,1,0,100 ,1,1,569660 ,2,14956,253915 ,2,822,34115 ,2,14975,577430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331125 ,2,829,45 ,1,0,143800 ,2,14956,222040 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409400 ,2,829,45 ,1,0,100 ,2,14956,253925 ,2,822,34115 ,2,14975,110 ,2,14976,24020 ,2,14977,87585 ,2,14965,45 ,2,14978,45 ,2,14979,331105 ,2,829,45 ,1,0,66360 ,1,1,129755 ,1,2,129765 ,1,3,57795 ,2,14956,253935 ,2,822,34115 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331135 ,2,829,45 ,1,0,100 ,1,1,574355 ,1,2,599870 ,2,14956,253965 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330855 ,2,829,45 ,1,0,143845 ,2,14956,253985 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143865 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,253975 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,233890 ,2,14979,331145 ,2,829,45 ,1,0,217235 ,2,14956,253995 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409435 ,2,829,45 ,1,0,100 ,1,1,606230 ,1,2,606230 ,2,14956,254005 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,331195 ,2,829,45 ,1,0,100 ,1,1,607010 ,1,2,606990 ,2,14956,254015 ,2,822,34115 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,331205 ,2,829,45 ,1,0,143910 ,2,14956,213290 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,143915 ,2,14979,409440 ,2,829,45 ,1,0,100 ,2,14956,213290 ,2,822,34115 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233900 ,2,14979,331225 ,2,829,45 ,1,0,127205 ,1,1,127155 ,2,14956,254025 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331235 ,2,829,45 ,1,0,143940 ,2,14956,254135 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331245 ,2,829,45 ,1,0,100 ,2,14956,254035 ,2,822,33695 ,2,14975,577415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331340 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,599970 ,1,3,599970 ,1,4,599970 ,1,5,599970 ,1,6,599970 ,1,7,599970 ,1,8,599870 ,2,14956,254075 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331350 ,2,829,45 ,1,0,189245 ,1,1,188310 ,2,14956,254085 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331330 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,585825 ,2,14956,254095 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331360 ,2,829,45 ,1,0,188940 ,1,1,188310 ,2,14956,254105 ,2,822,33695 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331370 ,2,829,45 ,1,0,188255 ,1,1,188310 ,2,14956,254115 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331320 ,2,829,45 ,1,0,198110 ,2,14956,254125 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331255 ,2,829,45 ,1,0,197475 ,1,1,198110 ,2,14956,254145 ,2,822,34115 ,2,14975,577810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331380 ,2,829,45 ,1,0,144065 ,2,14956,207730 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331420 ,2,829,45 ,1,0,100 ,2,14956,254175 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331430 ,2,829,45 ,1,0,197475 ,1,1,197295 ,2,14956,254185 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,87495 ,2,14965,45 ,2,14978,45 ,2,14979,331015 ,2,829,45 ,1,0,198660 ,2,14956,254195 ,2,822,34115 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331440 ,2,829,45 ,1,0,100 ,1,1,587330 ,2,14956,213425 ,2,822,34115 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411035 ,2,829,45 ,1,0,198640 ,1,1,57795 ,1,2,127785 ,2,14956,254205 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331450 ,2,829,45 ,1,0,144125 ,2,14956,213485 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,144130 ,2,14979,361925 ,2,829,45 ,1,0,100 ,2,14956,213475 ,2,822,34115 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,233910 ,2,14979,331460 ,2,829,45 ,1,0,100 ,1,1,587745 ,2,14956,254215 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331480 ,2,829,45 ,1,0,127785 ,1,1,57795 ,2,14956,254225 ,2,822,34115 ,2,14975,110 ,2,14976,24020 ,2,14977,87585 ,2,14965,45 ,2,14978,45 ,2,14979,331025 ,2,829,45 ,1,0,187930 ,1,1,187920 ,1,2,187910 ,1,3,187875 ,2,14956,213475 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,144130 ,2,14979,331470 ,2,829,45 ,1,0,144225 ,1,1,144215 ,2,14956,213530 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370510 ,2,829,45 ,1,0,100 ,2,14956,254235 ,2,822,34115 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331490 ,2,829,45 ,1,0,100 ,2,14956,254245 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331530 ,2,829,45 ,2,14956,253710 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,143495 ,2,14979,330835 ,2,829,45 ,1,0,273935 ,1,1,45 ,1,2,45 ,2,14956,254290 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,144280 ,2,14979,2415 ,2,829,45 ,1,0,48300 ,1,1,45 ,1,2,613640 ,2,14956,254280 ,2,822,34115 ,2,14975,110 ,2,14976,87730 ,2,14977,23120 ,2,14965,45 ,2,14978,233920 ,2,14979,331540 ,2,829,45 ,2,14956,254310 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,144300 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,594330 ,1,2,100 ,1,3,594300 ,2,14956,254300 ,2,822,34115 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,233930 ,2,14979,331560 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,254325 ,2,822,34115 ,2,14975,562040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,330755 ,2,829,45 ,1,0,100 ,1,1,594330 ,1,2,100 ,1,3,594300 ,2,14956,254335 ,2,822,34115 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331600 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,255485 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331615 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,269360 ,2,822,34540 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,144355 ,2,14979,355670 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,269360 ,2,822,34540 ,2,14975,110 ,2,14976,87805 ,2,14977,23120 ,2,14965,45 ,2,14978,233940 ,2,14979,331625 ,2,829,45 ,1,0,100 ,1,1,561625 ,2,14956,4490 ,2,822,34540 ,2,14975,110 ,2,14976,87825 ,2,14977,87815 ,2,14965,45 ,2,14978,250730 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,594335 ,2,14956,2855 ,2,822,34335 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415480 ,2,829,45 ,1,0,144410 ,2,14956,254465 ,2,822,34345 ,2,14975,577875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331665 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,34355 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414495 ,2,829,45 ,1,0,144440 ,2,14956,13210 ,2,822,34355 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397655 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,34365 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415515 ,2,829,45 ,1,0,144460 ,2,14956,254670 ,2,822,34275 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389220 ,2,829,45 ,1,0,100 ,2,14956,254680 ,2,822,34275 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392510 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,254700 ,2,822,34275 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331745 ,2,829,45 ,1,0,100 ,1,1,605930 ,2,14956,254690 ,2,822,34540 ,2,14975,577740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331765 ,2,829,45 ,1,0,115705 ,1,1,115715 ,2,14956,254745 ,2,822,34275 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331775 ,2,829,45 ,1,0,100 ,1,1,595120 ,2,14956,254755 ,2,822,34275 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331785 ,2,829,45 ,1,0,167060 ,2,14956,254765 ,2,822,34275 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331795 ,2,829,45 ,1,0,100 ,2,14956,254775 ,2,822,34275 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331755 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,255265 ,2,822,34275 ,2,14975,577825 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331805 ,2,829,45 ,1,0,100 ,1,1,595120 ,2,14956,254815 ,2,822,34375 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388105 ,2,829,45 ,1,0,206635 ,2,14956,254840 ,2,822,34375 ,2,14975,599870 ,2,14976,23450 ,2,14977,88165 ,2,14965,45 ,2,14978,45 ,2,14979,390045 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,100 ,2,14956,254850 ,2,822,34375 ,2,14975,599870 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,331850 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,254670 ,2,822,34375 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390200 ,2,829,45 ,1,0,100 ,1,1,607285 ,1,2,607280 ,2,14956,254680 ,2,822,34375 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393660 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,254860 ,2,822,34375 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331860 ,2,829,45 ,1,0,100 ,1,1,607525 ,1,2,607520 ,2,14956,2855 ,2,822,34395 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392200 ,2,829,45 ,1,0,100 ,1,1,594495 ,2,14956,254815 ,2,822,34395 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388100 ,2,829,45 ,1,0,144680 ,2,14956,254840 ,2,822,34395 ,2,14975,599870 ,2,14976,23450 ,2,14977,88165 ,2,14965,45 ,2,14978,45 ,2,14979,390010 ,2,829,45 ,1,0,100 ,2,14956,254670 ,2,822,34395 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390195 ,2,829,45 ,1,0,100 ,1,1,573370 ,2,14956,254680 ,2,822,34395 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393655 ,2,829,45 ,1,0,107445 ,1,1,104855 ,1,2,115715 ,2,14956,175910 ,2,822,34395 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259935 ,2,14979,413750 ,2,829,45 ,1,0,100 ,1,1,595110 ,2,14956,254915 ,2,822,34445 ,2,14975,577745 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331905 ,2,829,45 ,1,0,167060 ,2,14956,254940 ,2,822,34445 ,2,14975,577745 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331915 ,2,829,45 ,1,0,100 ,2,14956,254815 ,2,822,34445 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388110 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,254840 ,2,822,34445 ,2,14975,599870 ,2,14976,23675 ,2,14977,88290 ,2,14965,45 ,2,14978,45 ,2,14979,390050 ,2,829,45 ,1,0,100 ,1,1,595110 ,2,14956,254980 ,2,822,34445 ,2,14975,599970 ,2,14976,24020 ,2,14977,88300 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,144815 ,2,14956,255000 ,2,822,34455 ,2,14975,577975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331960 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,34425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392190 ,2,829,45 ,1,0,100 ,1,1,594555 ,2,14956,254815 ,2,822,34425 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388090 ,2,829,45 ,1,0,167060 ,2,14956,254840 ,2,822,34425 ,2,14975,599870 ,2,14976,23450 ,2,14977,88165 ,2,14965,45 ,2,14978,45 ,2,14979,390000 ,2,829,45 ,1,0,100 ,2,14956,254670 ,2,822,34425 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390180 ,2,829,45 ,2,14956,254680 ,2,822,34425 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393645 ,2,829,45 ,1,0,273945 ,1,1,45 ,1,2,45 ,2,14956,254860 ,2,822,34425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331950 ,2,829,45 ,1,0,48320 ,1,1,45 ,1,2,48340 ,1,3,614705 ,2,14956,2855 ,2,822,34475 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392195 ,2,829,45 ,2,14956,255110 ,2,822,34475 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331980 ,2,829,45 ,2,14956,254815 ,2,822,34475 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388095 ,2,829,45 ,1,0,144945 ,2,14956,254840 ,2,822,34475 ,2,14975,599870 ,2,14976,23450 ,2,14977,88165 ,2,14965,45 ,2,14978,45 ,2,14979,390005 ,2,829,45 ,1,0,100 ,2,14956,255120 ,2,822,34475 ,2,14975,599870 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,332005 ,2,829,45 ,1,0,100 ,1,1,610480 ,2,14956,254670 ,2,822,34475 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390190 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,560850 ,2,14956,254680 ,2,822,34475 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393650 ,2,829,45 ,1,0,100 ,1,1,581855 ,2,14956,2855 ,2,822,34495 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392185 ,2,829,45 ,1,0,145010 ,2,14956,254815 ,2,822,34495 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388085 ,2,829,45 ,1,0,100 ,2,14956,254840 ,2,822,34495 ,2,14975,599870 ,2,14976,23450 ,2,14977,88165 ,2,14965,45 ,2,14978,45 ,2,14979,389995 ,2,829,45 ,1,0,100 ,1,1,610635 ,2,14956,255180 ,2,822,34495 ,2,14975,599870 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,409445 ,2,829,45 ,1,0,145070 ,2,14956,254680 ,2,822,34495 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393640 ,2,829,45 ,1,0,100 ,2,14956,254670 ,2,822,34495 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390175 ,2,829,45 ,1,0,100 ,1,1,560860 ,1,2,560855 ,1,3,560860 ,1,4,600040 ,1,5,560850 ,2,14956,254860 ,2,822,34495 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332025 ,2,829,45 ,1,0,92620 ,1,1,57795 ,2,14956,2855 ,2,822,34520 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392135 ,2,829,45 ,1,0,145130 ,1,1,145120 ,2,14956,254815 ,2,822,34520 ,2,14975,577880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388060 ,2,829,45 ,1,0,563020 ,2,14956,254840 ,2,822,34520 ,2,14975,599870 ,2,14976,23450 ,2,14977,88165 ,2,14965,45 ,2,14978,45 ,2,14979,389985 ,2,829,45 ,1,0,100 ,2,14956,255220 ,2,822,34520 ,2,14975,599870 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,332070 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,254670 ,2,822,34520 ,2,14975,577745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390170 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,560850 ,2,14956,254680 ,2,822,34520 ,2,14975,577910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393630 ,2,829,45 ,1,0,100 ,1,1,594740 ,2,14956,254860 ,2,822,34520 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332080 ,2,829,45 ,1,0,166545 ,1,1,77965 ,2,14956,255295 ,2,822,52520 ,2,14975,578030 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259945 ,2,14979,332100 ,2,829,45 ,1,0,145215 ,2,14956,255285 ,2,822,34540 ,2,14975,578030 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259960 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,255315 ,2,822,52530 ,2,14975,578030 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259960 ,2,14979,332110 ,2,829,45 ,1,0,100 ,1,1,610635 ,1,2,100 ,1,3,560850 ,2,14956,255365 ,2,822,52540 ,2,14975,578035 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259970 ,2,14979,332120 ,2,829,45 ,1,0,100 ,1,1,610635 ,1,2,594740 ,2,14956,255415 ,2,822,52550 ,2,14975,578060 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259980 ,2,14979,332140 ,2,829,45 ,1,0,100 ,1,1,594810 ,2,14956,255395 ,2,822,34540 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145280 ,2,14979,2415 ,2,829,45 ,1,0,120205 ,2,14956,255385 ,2,822,34540 ,2,14975,577485 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,233970 ,2,14979,332185 ,2,829,45 ,1,0,100 ,1,1,594850 ,2,14956,255385 ,2,822,34540 ,2,14975,577485 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,145280 ,2,14979,332195 ,2,829,45 ,1,0,100 ,1,1,578895 ,2,14956,255405 ,2,822,34540 ,2,14975,578025 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332175 ,2,829,45 ,1,0,118320 ,1,1,119465 ,2,14956,197265 ,2,822,34540 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,144355 ,2,14979,356125 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,563735 ,1,3,574290 ,1,4,568430 ,1,5,568430 ,2,14956,255435 ,2,822,34540 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332205 ,2,829,45 ,1,0,100 ,1,1,581110 ,1,2,600040 ,2,14956,197280 ,2,822,34540 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357425 ,2,829,45 ,1,0,129970 ,1,1,85115 ,1,2,126850 ,1,3,104785 ,1,4,72740 ,2,14956,255455 ,2,822,34540 ,2,14975,578030 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259945 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,594915 ,2,14956,255465 ,2,822,34540 ,2,14975,578035 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259970 ,2,14979,2415 ,2,829,45 ,2,14956,206825 ,2,822,34540 ,2,14975,578060 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259980 ,2,14979,2415 ,2,829,45 ,1,0,273955 ,1,1,45 ,1,2,45 ,2,14956,255495 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,331580 ,2,829,45 ,1,0,219265 ,1,1,219275 ,1,2,45 ,1,3,614705 ,2,14956,210875 ,2,822,34115 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366465 ,2,829,45 ,1,0,219265 ,1,1,219275 ,2,14956,255505 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409450 ,2,829,45 ,1,0,145445 ,2,14956,255515 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,62545 ,2,14965,45 ,2,14978,45 ,2,14979,330890 ,2,829,45 ,1,0,100 ,2,14956,255550 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145485 ,2,14979,2415 ,2,829,45 ,1,0,145490 ,2,14956,255525 ,2,822,34115 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,233980 ,2,14979,332215 ,2,829,45 ,1,0,100 ,2,14956,255560 ,2,822,34115 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,145510 ,2,14956,255570 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331005 ,2,829,45 ,1,0,100 ,2,14956,221885 ,2,822,34115 ,2,14975,577635 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332235 ,2,829,45 ,1,0,198670 ,1,1,127205 ,1,2,127155 ,2,14956,213305 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143915 ,2,14979,361610 ,2,829,45 ,1,0,145545 ,2,14956,255580 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332245 ,2,829,45 ,1,0,100 ,2,14956,255605 ,2,822,34115 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409455 ,2,829,45 ,1,0,145565 ,2,14956,255615 ,2,822,34115 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330950 ,2,829,45 ,1,0,100 ,2,14956,213325 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370845 ,2,829,45 ,1,0,145620 ,2,14956,255635 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,145635 ,2,14979,332275 ,2,829,45 ,1,0,100 ,2,14956,255625 ,2,822,33695 ,2,14975,577415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332295 ,2,829,45 ,1,0,145640 ,2,14956,255635 ,2,822,34115 ,2,14975,110 ,2,14976,88700 ,2,14977,23120 ,2,14965,45 ,2,14978,233990 ,2,14979,332305 ,2,829,45 ,1,0,100 ,2,14956,221670 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332325 ,2,829,45 ,1,0,145665 ,2,14956,255690 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145670 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,255680 ,2,822,34115 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,234000 ,2,14979,332335 ,2,829,45 ,1,0,145685 ,2,14956,254300 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,144300 ,2,14979,331570 ,2,829,45 ,1,0,100 ,2,14956,255710 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145720 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,581450 ,2,14956,255700 ,2,822,34115 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,234010 ,2,14979,332355 ,2,829,45 ,1,0,145735 ,2,14956,255720 ,2,822,34115 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332415 ,2,829,45 ,1,0,100 ,2,14956,211035 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,145760 ,2,14979,372235 ,2,829,45 ,1,0,100 ,1,1,587890 ,2,14956,211035 ,2,822,34115 ,2,14975,110 ,2,14976,55700 ,2,14977,23360 ,2,14965,45 ,2,14978,234020 ,2,14979,332425 ,2,829,45 ,1,0,145775 ,2,14956,255750 ,2,822,34115 ,2,14975,110 ,2,14976,24120 ,2,14977,88720 ,2,14965,45 ,2,14978,45 ,2,14979,332285 ,2,829,45 ,1,0,100 ,2,14956,208555 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332435 ,2,829,45 ,2,14956,213375 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143540 ,2,14979,362250 ,2,829,45 ,1,0,273965 ,1,1,45 ,1,2,45 ,2,14956,221980 ,2,822,34115 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332450 ,2,829,45 ,1,0,219640 ,1,1,45 ,1,2,613640 ,2,14956,255775 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330815 ,2,829,45 ,1,0,219640 ,2,14956,221775 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332460 ,2,829,45 ,1,0,208305 ,1,1,208315 ,2,14956,253975 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,143865 ,2,14979,331155 ,2,829,45 ,1,0,100 ,1,1,595000 ,2,14956,213505 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145875 ,2,14979,361170 ,2,829,45 ,2,14956,213395 ,2,822,34115 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234030 ,2,14979,332470 ,2,829,45 ,1,0,273975 ,1,1,45 ,1,2,45 ,2,14956,221795 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409460 ,2,829,45 ,1,0,48385 ,1,1,45 ,1,2,613640 ,2,14956,255785 ,2,822,34115 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330940 ,2,829,45 ,2,14956,255795 ,2,822,34115 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331215 ,2,829,45 ,1,0,219630 ,2,14956,255805 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409465 ,2,829,45 ,1,0,197230 ,1,1,197275 ,2,14956,255820 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409470 ,2,829,45 ,2,14956,255680 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,145670 ,2,14979,332345 ,2,829,45 ,1,0,273985 ,1,1,45 ,1,2,45 ,2,14956,255700 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,145720 ,2,14979,332405 ,2,829,45 ,1,0,48405 ,1,1,45 ,1,2,613640 ,2,14956,237000 ,2,822,34115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,331185 ,2,829,45 ,2,14956,255525 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,145485 ,2,14979,332225 ,2,829,45 ,1,0,219660 ,2,14956,255830 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145635 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,609595 ,2,14956,255940 ,2,822,34115 ,2,14975,577695 ,2,14976,88785 ,2,14977,88775 ,2,14965,45 ,2,14978,45 ,2,14979,332510 ,2,829,45 ,1,0,198255 ,1,1,197585 ,1,2,197595 ,2,14956,255995 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,143450 ,2,14979,2415 ,2,829,45 ,2,14956,256005 ,2,822,34115 ,2,14975,562045 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332520 ,2,829,45 ,1,0,273995 ,1,1,45 ,1,2,45 ,2,14956,256015 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332530 ,2,829,45 ,1,0,45 ,1,1,48425 ,1,2,613640 ,2,14956,256025 ,2,822,34115 ,2,14975,577430 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331035 ,2,829,45 ,2,14956,207130 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373945 ,2,829,45 ,1,0,219735 ,2,14956,211210 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369795 ,2,829,45 ,2,14956,221600 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332540 ,2,829,45 ,1,0,274005 ,1,1,45 ,1,2,45 ,2,14956,256045 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,331590 ,2,829,45 ,1,0,48455 ,1,1,45 ,1,2,613640 ,2,14956,256055 ,2,822,34115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,332560 ,2,829,45 ,2,14956,227815 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393620 ,2,829,45 ,1,0,198110 ,1,1,66360 ,1,2,198100 ,1,3,198090 ,2,14956,256065 ,2,822,34115 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332570 ,2,829,45 ,1,0,146205 ,2,14956,256075 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332580 ,2,829,45 ,1,0,100 ,2,14956,256100 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332590 ,2,829,45 ,1,0,146225 ,2,14956,256110 ,2,822,34115 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332610 ,2,829,45 ,1,0,100 ,2,14956,213395 ,2,822,34115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,145875 ,2,14979,332480 ,2,829,45 ,1,0,146260 ,2,14956,256120 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332620 ,2,829,45 ,1,0,100 ,2,14956,256130 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332630 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,100 ,2,14956,256145 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332640 ,2,829,45 ,1,0,146290 ,2,14956,211300 ,2,822,34115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,145760 ,2,14979,376590 ,2,829,45 ,1,0,100 ,2,14956,254280 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,144280 ,2,14979,331550 ,2,829,45 ,1,0,146315 ,2,14956,256195 ,2,822,34115 ,2,14975,110 ,2,14976,24120 ,2,14977,88810 ,2,14965,45 ,2,14978,45 ,2,14979,332655 ,2,829,45 ,1,0,100 ,2,14956,256205 ,2,822,34115 ,2,14975,577740 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259845 ,2,14979,2415 ,2,829,45 ,1,0,146335 ,2,14956,256215 ,2,822,34115 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,330900 ,2,829,45 ,1,0,100 ,2,14956,252920 ,2,822,34115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332665 ,2,829,45 ,1,0,146395 ,1,1,146385 ,2,14956,173945 ,2,822,34105 ,2,14975,577415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,259990 ,2,14979,410650 ,2,829,45 ,1,0,564895 ,2,14956,256270 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332675 ,2,829,45 ,1,0,100 ,2,14956,256300 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332715 ,2,829,45 ,1,0,198670 ,1,1,84145 ,1,2,84035 ,2,14956,259950 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332725 ,2,829,45 ,1,0,146425 ,2,14956,259940 ,2,822,34550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332785 ,2,829,45 ,1,0,100 ,2,14956,2855 ,2,822,34570 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415690 ,2,829,45 ,1,0,9255 ,1,1,347205 ,2,14956,2855 ,2,822,34625 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391950 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,251610 ,2,822,52590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412745 ,2,829,45 ,1,0,91650 ,1,1,79335 ,1,2,115705 ,2,14956,251620 ,2,822,52590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413890 ,2,829,45 ,1,0,146500 ,2,14956,251645 ,2,822,52590 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413870 ,2,829,45 ,1,0,100 ,2,14956,251655 ,2,822,52590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414410 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,251665 ,2,822,52590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414170 ,2,829,45 ,1,0,100 ,1,1,564000 ,2,14956,256370 ,2,822,52590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414165 ,2,829,45 ,1,0,167060 ,2,14956,251675 ,2,822,52590 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413665 ,2,829,45 ,1,0,100 ,2,14956,251720 ,2,822,52590 ,2,14975,573425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412710 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,560975 ,2,14956,256400 ,2,822,34635 ,2,14975,578120 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332855 ,2,829,45 ,1,0,100 ,1,1,573360 ,1,2,582275 ,2,14956,256430 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146630 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,568045 ,2,14956,256420 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234040 ,2,14979,332890 ,2,829,45 ,1,0,616170 ,1,1,615295 ,1,2,373255 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,373245 ,1,9,373270 ,2,14956,256440 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146655 ,2,14979,332910 ,2,829,45 ,2,14956,256440 ,2,822,34645 ,2,14975,110 ,2,14976,89110 ,2,14977,23120 ,2,14965,45 ,2,14978,234070 ,2,14979,332920 ,2,829,45 ,1,0,274030 ,1,1,45 ,1,2,45 ,2,14956,256450 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146675 ,2,14979,332940 ,2,829,45 ,1,0,45 ,1,1,48475 ,1,2,613640 ,2,14956,256450 ,2,822,34645 ,2,14975,110 ,2,14976,89120 ,2,14977,23120 ,2,14965,45 ,2,14978,234080 ,2,14979,332950 ,2,829,45 ,2,14956,256470 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146710 ,2,14979,397530 ,2,829,45 ,1,0,100 ,1,1,611675 ,1,2,611670 ,2,14956,256460 ,2,822,34645 ,2,14975,110 ,2,14976,89120 ,2,14977,23120 ,2,14965,45 ,2,14978,234090 ,2,14979,332960 ,2,829,45 ,1,0,100 ,1,1,611615 ,1,2,611620 ,2,14956,256510 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146655 ,2,14979,397640 ,2,829,45 ,1,0,100 ,1,1,607985 ,2,14956,182390 ,2,822,34645 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385730 ,2,829,45 ,1,0,100 ,1,1,607840 ,2,14956,256520 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146750 ,2,14979,332985 ,2,829,45 ,1,0,100 ,1,1,596455 ,2,14956,256520 ,2,822,34645 ,2,14975,110 ,2,14976,76165 ,2,14977,23120 ,2,14965,45 ,2,14978,234100 ,2,14979,332995 ,2,829,45 ,1,0,167060 ,2,14956,256530 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146675 ,2,14979,397520 ,2,829,45 ,1,0,100 ,2,14956,256540 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146780 ,2,14979,333005 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,256540 ,2,822,34645 ,2,14975,110 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,234110 ,2,14979,333015 ,2,829,45 ,1,0,100 ,1,1,596455 ,2,14956,256550 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146780 ,2,14979,397810 ,2,829,45 ,1,0,100 ,1,1,599940 ,1,2,599940 ,1,3,599880 ,2,14956,256570 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146820 ,2,14979,397630 ,2,829,45 ,1,0,167060 ,2,14956,256560 ,2,822,34645 ,2,14975,110 ,2,14976,76145 ,2,14977,23120 ,2,14965,45 ,2,14978,234120 ,2,14979,333040 ,2,829,45 ,1,0,100 ,2,14956,256580 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146845 ,2,14979,333060 ,2,829,45 ,1,0,100 ,1,1,590290 ,2,14956,256580 ,2,822,34645 ,2,14975,110 ,2,14976,89140 ,2,14977,23120 ,2,14965,45 ,2,14978,234130 ,2,14979,333070 ,2,829,45 ,1,0,100 ,1,1,590440 ,2,14956,256615 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146865 ,2,14979,397645 ,2,829,45 ,1,0,208620 ,2,14956,256605 ,2,822,34645 ,2,14975,110 ,2,14976,78610 ,2,14977,23120 ,2,14965,45 ,2,14978,234140 ,2,14979,333080 ,2,829,45 ,1,0,100 ,1,1,582335 ,1,2,100 ,2,14956,256625 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146915 ,2,14979,333155 ,2,829,45 ,1,0,100 ,1,1,608420 ,2,14956,256625 ,2,822,34645 ,2,14975,110 ,2,14976,89180 ,2,14977,23120 ,2,14965,45 ,2,14978,234175 ,2,14979,333165 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373900 ,2,14956,256635 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146750 ,2,14979,397815 ,2,829,45 ,2,14956,256655 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146945 ,2,14979,397510 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373940 ,1,3,65 ,2,14956,256645 ,2,822,34645 ,2,14975,110 ,2,14976,89190 ,2,14977,23120 ,2,14965,45 ,2,14978,234185 ,2,14979,333175 ,2,829,45 ,2,14956,256665 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146915 ,2,14979,397505 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373950 ,2,14956,256605 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146865 ,2,14979,333090 ,2,829,45 ,2,14956,256700 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147000 ,2,14979,397635 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,373960 ,1,3,65 ,2,14956,256675 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234195 ,2,14979,333220 ,2,829,45 ,2,14956,256720 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147035 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373970 ,2,14956,256710 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234205 ,2,14979,333240 ,2,829,45 ,2,14956,256730 ,2,822,34645 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333110 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,65 ,1,3,373980 ,2,14956,256710 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,147035 ,2,14979,333100 ,2,829,45 ,2,14956,256460 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146710 ,2,14979,332970 ,2,829,45 ,1,0,9255 ,1,1,337410 ,2,14956,256645 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146945 ,2,14979,333185 ,2,829,45 ,1,0,100 ,1,1,600065 ,2,14956,256420 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,146630 ,2,14979,332900 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,256740 ,2,822,34645 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,146845 ,2,14979,397515 ,2,829,45 ,1,0,100 ,1,1,600065 ,1,2,558090 ,2,14956,256675 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,147000 ,2,14979,333230 ,2,829,45 ,1,0,83880 ,1,1,83915 ,2,14956,184135 ,2,822,34645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380830 ,2,829,45 ,1,0,208590 ,2,14956,256560 ,2,822,34645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,146820 ,2,14979,333050 ,2,829,45 ,1,0,207805 ,1,1,58625 ,1,2,79300 ,1,3,207815 ,2,14956,256760 ,2,822,34655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333250 ,2,829,45 ,1,0,207825 ,2,14956,256770 ,2,822,34655 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333285 ,2,829,45 ,1,0,207795 ,1,1,207765 ,1,2,57680 ,2,14956,256855 ,2,822,34655 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,333295 ,2,829,45 ,1,0,208840 ,1,1,208770 ,2,14956,256845 ,2,822,34675 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333315 ,2,829,45 ,1,0,207785 ,2,14956,256825 ,2,822,34675 ,2,14975,578245 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333330 ,2,829,45 ,1,0,207875 ,1,1,207775 ,2,14956,256865 ,2,822,34655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333360 ,2,829,45 ,1,0,147270 ,2,14956,260630 ,2,822,34655 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333400 ,2,829,45 ,1,0,100 ,2,14956,256905 ,2,822,34655 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333410 ,2,829,45 ,1,0,147290 ,2,14956,256915 ,2,822,34655 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333430 ,2,829,45 ,1,0,100 ,2,14956,256925 ,2,822,34655 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333450 ,2,829,45 ,1,0,167060 ,2,14956,2855 ,2,822,34705 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415680 ,2,829,45 ,1,0,100 ,2,14956,257015 ,2,822,34730 ,2,14975,577690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333470 ,2,829,45 ,1,0,117720 ,2,14956,257035 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147360 ,2,14979,397085 ,2,829,45 ,1,0,206715 ,2,14956,257025 ,2,822,34730 ,2,14975,110 ,2,14976,89395 ,2,14977,23360 ,2,14965,45 ,2,14978,234225 ,2,14979,333510 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,600040 ,2,14956,257045 ,2,822,34730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,147380 ,2,14979,2415 ,2,829,45 ,1,0,96915 ,1,1,115715 ,2,14956,257045 ,2,822,34730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234235 ,2,14979,409500 ,2,829,45 ,1,0,100 ,1,1,595745 ,2,14956,259300 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147400 ,2,14979,398130 ,2,829,45 ,1,0,167060 ,2,14956,259290 ,2,822,34730 ,2,14975,110 ,2,14976,78610 ,2,14977,23120 ,2,14965,45 ,2,14978,234450 ,2,14979,333530 ,2,829,45 ,1,0,100 ,2,14956,257095 ,2,822,34550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147420 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,257085 ,2,822,34550 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,234245 ,2,14979,333580 ,2,829,45 ,1,0,100 ,1,1,595745 ,2,14956,257065 ,2,822,34550 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333620 ,2,829,45 ,1,0,100 ,1,1,566770 ,2,14956,257075 ,2,822,34550 ,2,14975,577430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,96915 ,1,1,100045 ,1,2,115715 ,2,14956,257085 ,2,822,34550 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147420 ,2,14979,333600 ,2,829,45 ,1,0,96915 ,1,1,91650 ,1,2,101000 ,1,3,115715 ,1,4,79335 ,1,5,115705 ,2,14956,257130 ,2,822,34550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333570 ,2,829,45 ,1,0,91650 ,1,1,79335 ,1,2,115715 ,2,14956,255605 ,2,822,34740 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409505 ,2,829,45 ,1,0,100 ,1,1,595750 ,2,14956,217455 ,2,822,34750 ,2,14975,578300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384845 ,2,829,45 ,1,0,167060 ,2,14956,257160 ,2,822,34775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147545 ,2,14979,396930 ,2,829,45 ,1,0,100 ,2,14956,257150 ,2,822,34775 ,2,14975,110 ,2,14976,89140 ,2,14977,23120 ,2,14965,45 ,2,14978,234255 ,2,14979,333675 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,257205 ,2,822,34775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147585 ,2,14979,396940 ,2,829,45 ,1,0,100 ,1,1,595750 ,2,14956,257195 ,2,822,34775 ,2,14975,110 ,2,14976,89110 ,2,14977,23120 ,2,14965,45 ,2,14978,234300 ,2,14979,333735 ,2,829,45 ,1,0,115715 ,1,1,81380 ,2,14956,257175 ,2,822,34740 ,2,14975,577295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333765 ,2,829,45 ,1,0,100 ,1,1,595785 ,2,14956,257185 ,2,822,34740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333755 ,2,829,45 ,1,0,167060 ,2,14956,257245 ,2,822,34775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147625 ,2,14979,396950 ,2,829,45 ,1,0,100 ,2,14956,257235 ,2,822,34775 ,2,14975,110 ,2,14976,89190 ,2,14977,23120 ,2,14965,45 ,2,14978,234310 ,2,14979,333775 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,229630 ,2,822,34775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147645 ,2,14979,396155 ,2,829,45 ,1,0,100 ,1,1,595785 ,2,14956,229080 ,2,822,34775 ,2,14975,110 ,2,14976,89120 ,2,14977,23120 ,2,14965,45 ,2,14978,234320 ,2,14979,333795 ,2,829,45 ,1,0,81430 ,2,14956,229640 ,2,822,34775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147690 ,2,14979,396185 ,2,829,45 ,1,0,203440 ,1,1,140665 ,1,2,95460 ,1,3,115715 ,2,14956,229115 ,2,822,34775 ,2,14975,110 ,2,14976,89120 ,2,14977,23120 ,2,14965,45 ,2,14978,234330 ,2,14979,333835 ,2,829,45 ,1,0,100 ,1,1,595845 ,2,14956,257150 ,2,822,34775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147545 ,2,14979,333725 ,2,829,45 ,1,0,167060 ,2,14956,257195 ,2,822,34775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147585 ,2,14979,333745 ,2,829,45 ,1,0,100 ,2,14956,257235 ,2,822,34775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147625 ,2,14979,333785 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,229080 ,2,822,34775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147645 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,595845 ,2,14956,229115 ,2,822,34775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147690 ,2,14979,333845 ,2,829,45 ,1,0,203290 ,2,14956,257290 ,2,822,34740 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333865 ,2,829,45 ,1,0,88660 ,1,1,73050 ,2,14956,257300 ,2,822,34740 ,2,14975,578335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333885 ,2,829,45 ,1,0,147795 ,2,14956,257310 ,2,822,34740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,147800 ,2,14979,333895 ,2,829,45 ,1,0,100 ,2,14956,257310 ,2,822,34740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234340 ,2,14979,333915 ,2,829,45 ,1,0,62795 ,1,1,73050 ,1,2,221770 ,2,14956,217195 ,2,822,34740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369315 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,215195 ,2,14956,257345 ,2,822,34740 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147830 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,595940 ,1,2,612095 ,1,3,599880 ,2,14956,257335 ,2,822,34740 ,2,14975,110 ,2,14976,89630 ,2,14977,23360 ,2,14965,45 ,2,14978,234350 ,2,14979,333950 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,216035 ,2,822,34740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386180 ,2,829,45 ,1,0,100 ,1,1,612095 ,2,14956,182390 ,2,822,34740 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385515 ,2,829,45 ,2,14956,257355 ,2,822,34740 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333970 ,2,829,45 ,1,0,274040 ,1,1,45 ,1,2,45 ,2,14956,257365 ,2,822,34740 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333980 ,2,829,45 ,1,0,264895 ,1,1,221770 ,1,2,45 ,1,3,614705 ,2,14956,257380 ,2,822,34740 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,333990 ,2,829,45 ,1,0,264895 ,2,14956,257390 ,2,822,34740 ,2,14975,580980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334000 ,2,829,45 ,1,0,221770 ,2,14956,259215 ,2,822,34740 ,2,14975,578770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334020 ,2,829,45 ,1,0,147945 ,2,14956,259205 ,2,822,34785 ,2,14975,578770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334065 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,34805 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388965 ,2,829,45 ,1,0,147975 ,1,1,147965 ,2,14956,13210 ,2,822,34805 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397210 ,2,829,45 ,1,0,563020 ,2,14956,2855 ,2,822,34855 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415210 ,2,829,45 ,1,0,100 ,2,14956,257450 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334105 ,2,829,45 ,2,14956,257460 ,2,822,34865 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,334125 ,2,829,45 ,1,0,221870 ,1,1,221860 ,1,2,221850 ,1,3,221830 ,1,4,221820 ,2,14956,257470 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334135 ,2,829,45 ,1,0,3010 ,1,1,200590 ,2,14956,213305 ,2,822,34865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,148050 ,2,14979,361575 ,2,829,45 ,1,0,344140 ,1,1,167770 ,1,2,341335 ,1,3,170230 ,1,4,263490 ,1,5,341555 ,1,6,341585 ,2,14956,213290 ,2,822,34865 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234360 ,2,14979,334160 ,2,829,45 ,1,0,341395 ,1,1,45 ,2,14956,213225 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,148070 ,2,14979,334200 ,2,829,45 ,1,0,70650 ,1,1,70755 ,1,2,83445 ,1,3,83820 ,2,14956,213225 ,2,822,34865 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234370 ,2,14979,334210 ,2,829,45 ,2,14956,257480 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334220 ,2,829,45 ,1,0,264885 ,1,1,264870 ,1,2,264860 ,1,3,264850 ,1,4,264840 ,2,14956,257490 ,2,822,34865 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334230 ,2,829,45 ,1,0,221895 ,2,14956,253775 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409510 ,2,829,45 ,1,0,148140 ,1,1,148130 ,2,14956,257510 ,2,822,34865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,148135 ,2,14979,2415 ,2,829,45 ,1,0,600065 ,2,14956,257500 ,2,822,34865 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,234395 ,2,14979,334270 ,2,829,45 ,1,0,100 ,2,14956,257550 ,2,822,34865 ,2,14975,567945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,148185 ,2,14956,207085 ,2,822,34865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378695 ,2,829,45 ,1,0,100 ,2,14956,213325 ,2,822,34865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370835 ,2,829,45 ,2,14956,207140 ,2,822,34865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373440 ,2,829,45 ,1,0,222015 ,1,1,222025 ,1,2,222005 ,2,14956,257560 ,2,822,34865 ,2,14975,567805 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,334115 ,2,829,45 ,1,0,186970 ,2,14956,210935 ,2,822,34865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371445 ,2,829,45 ,1,0,148255 ,2,14956,257570 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,211005 ,2,822,34865 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411215 ,2,829,45 ,1,0,57470 ,1,1,69255 ,1,2,66960 ,2,14956,257580 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334290 ,2,829,45 ,1,0,181835 ,1,1,83760 ,1,2,70765 ,1,3,78390 ,2,14956,211025 ,2,822,34865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378090 ,2,829,45 ,1,0,148300 ,2,14956,207370 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334300 ,2,829,45 ,1,0,100 ,2,14956,213375 ,2,822,34865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,148070 ,2,14979,362240 ,2,829,45 ,1,0,221770 ,2,14956,257590 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334310 ,2,829,45 ,1,0,148355 ,2,14956,257600 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334320 ,2,829,45 ,1,0,100 ,2,14956,211080 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375285 ,2,829,45 ,1,0,148390 ,1,1,148375 ,2,14956,207410 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334330 ,2,829,45 ,1,0,100 ,2,14956,257610 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334340 ,2,829,45 ,1,0,100 ,2,14956,257620 ,2,822,34865 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334380 ,2,829,45 ,1,0,148410 ,2,14956,257660 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334390 ,2,829,45 ,1,0,100 ,2,14956,213505 ,2,822,34865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,148460 ,2,14979,361160 ,2,829,45 ,1,0,148465 ,2,14956,213395 ,2,822,34865 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234405 ,2,14979,334400 ,2,829,45 ,1,0,100 ,2,14956,257670 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334430 ,2,829,45 ,1,0,88825 ,2,14956,257680 ,2,822,34865 ,2,14975,578395 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334440 ,2,829,45 ,1,0,148495 ,2,14956,257690 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334450 ,2,829,45 ,1,0,100 ,2,14956,257700 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409525 ,2,829,45 ,1,0,76770 ,1,1,91650 ,1,2,79355 ,1,3,79335 ,1,4,74740 ,1,5,74670 ,1,6,74495 ,2,14956,257710 ,2,822,34865 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,334190 ,2,829,45 ,1,0,148525 ,2,14956,207130 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373905 ,2,829,45 ,1,0,100 ,2,14956,257720 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334460 ,2,829,45 ,1,0,100 ,1,1,608275 ,2,14956,257730 ,2,822,34865 ,2,14975,567865 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334180 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,257755 ,2,822,34865 ,2,14975,578390 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,334490 ,2,829,45 ,1,0,100 ,1,1,561660 ,2,14956,257500 ,2,822,34865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,148135 ,2,14979,334280 ,2,829,45 ,1,0,100 ,1,1,596070 ,2,14956,213290 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,148050 ,2,14979,334170 ,2,829,45 ,2,14956,241860 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334500 ,2,829,45 ,1,0,222240 ,1,1,222230 ,2,14956,257765 ,2,822,34865 ,2,14975,578400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334510 ,2,829,45 ,1,0,3010 ,1,1,200390 ,2,14956,207730 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334535 ,2,829,45 ,2,14956,213395 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,148460 ,2,14979,334410 ,2,829,45 ,1,0,222305 ,1,1,222295 ,1,2,222285 ,2,14956,257775 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334545 ,2,829,45 ,1,0,3010 ,1,1,3825 ,1,2,200390 ,2,14956,213425 ,2,822,34865 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411030 ,2,829,45 ,1,0,3010 ,1,1,198270 ,1,2,341970 ,2,14956,243305 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334555 ,2,829,45 ,1,0,77465 ,1,1,222305 ,1,2,122545 ,2,14956,213485 ,2,822,34865 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,148700 ,2,14979,361890 ,2,829,45 ,1,0,148705 ,2,14956,213475 ,2,822,34865 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234415 ,2,14979,334565 ,2,829,45 ,1,0,100 ,2,14956,213385 ,2,822,34865 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364150 ,2,829,45 ,1,0,104215 ,1,1,66360 ,2,14956,213530 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370500 ,2,829,45 ,1,0,100 ,1,1,566855 ,2,14956,213475 ,2,822,34865 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,148700 ,2,14979,334600 ,2,829,45 ,1,0,100 ,1,1,566930 ,1,2,566930 ,2,14956,211360 ,2,822,34865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366365 ,2,829,45 ,1,0,100 ,1,1,596130 ,2,14956,217015 ,2,822,34875 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379920 ,2,829,45 ,1,0,167060 ,2,14956,215285 ,2,822,34875 ,2,14975,578410 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379200 ,2,829,45 ,1,0,100 ,2,14956,215350 ,2,822,34875 ,2,14975,578415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386640 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217455 ,2,822,34885 ,2,14975,578460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384685 ,2,829,45 ,1,0,100 ,1,1,596130 ,2,14956,213590 ,2,822,34885 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260005 ,2,14979,413145 ,2,829,45 ,1,0,96890 ,1,1,57795 ,1,2,96870 ,1,3,96880 ,1,4,79335 ,2,14956,257820 ,2,822,34900 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334660 ,2,829,45 ,1,0,167060 ,2,14956,257830 ,2,822,34900 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334705 ,2,829,45 ,1,0,100 ,2,14956,257865 ,2,822,34900 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334715 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,257875 ,2,822,34900 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334725 ,2,829,45 ,1,0,100 ,1,1,605960 ,2,14956,182390 ,2,822,34900 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385370 ,2,829,45 ,1,0,99695 ,1,1,99685 ,1,2,66360 ,1,3,99615 ,1,4,72265 ,2,14956,257885 ,2,822,34900 ,2,14975,569580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334735 ,2,829,45 ,1,0,72740 ,2,14956,257895 ,2,822,34900 ,2,14975,569580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334745 ,2,829,45 ,1,0,100 ,1,1,566855 ,1,2,566855 ,2,14956,257910 ,2,822,34900 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334755 ,2,829,45 ,1,0,100 ,1,1,596230 ,2,14956,257920 ,2,822,34900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,148945 ,2,14979,334765 ,2,829,45 ,1,0,100 ,1,1,567445 ,2,14956,257920 ,2,822,34900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234425 ,2,14979,334775 ,2,829,45 ,1,0,100 ,1,1,568060 ,2,14956,257930 ,2,822,34900 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334805 ,2,829,45 ,1,0,104315 ,1,1,104225 ,2,14956,166680 ,2,822,34900 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378555 ,2,829,45 ,1,0,149005 ,2,14956,257940 ,2,822,34900 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334815 ,2,829,45 ,1,0,100 ,2,14956,257980 ,2,822,34900 ,2,14975,578770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334670 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,258115 ,2,822,34900 ,2,14975,578530 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334825 ,2,829,45 ,1,0,100 ,1,1,608995 ,2,14956,211025 ,2,822,34930 ,2,14975,110 ,2,14976,25600 ,2,14977,90010 ,2,14965,45 ,2,14978,45 ,2,14979,378310 ,2,829,45 ,1,0,100 ,1,1,607525 ,2,14956,232805 ,2,822,34930 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398385 ,2,829,45 ,1,0,144455 ,1,1,143285 ,1,2,144465 ,2,14956,183640 ,2,822,34930 ,2,14975,578495 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382760 ,2,829,45 ,1,0,149095 ,2,14956,258030 ,2,822,34930 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416755 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,34910 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388945 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,13210 ,2,822,34910 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397080 ,2,829,45 ,1,0,100 ,1,1,575310 ,2,14956,211025 ,2,822,34910 ,2,14975,110 ,2,14976,25600 ,2,14977,90010 ,2,14965,45 ,2,14978,45 ,2,14979,378315 ,2,829,45 ,1,0,149135 ,2,14956,232720 ,2,822,34910 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386390 ,2,829,45 ,1,0,100 ,2,14956,232735 ,2,822,34910 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383770 ,2,829,45 ,1,0,88815 ,1,1,66360 ,1,2,71435 ,1,3,77965 ,2,14956,232805 ,2,822,34910 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398390 ,2,829,45 ,1,0,149215 ,1,1,149205 ,1,2,149165 ,2,14956,183640 ,2,822,34910 ,2,14975,578525 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382765 ,2,829,45 ,1,0,100 ,2,14956,212310 ,2,822,34910 ,2,14975,578525 ,2,14976,23450 ,2,14977,90050 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,258030 ,2,822,34910 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416760 ,2,829,45 ,1,0,100 ,2,14956,258125 ,2,822,34900 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334855 ,2,829,45 ,1,0,149235 ,2,14956,258135 ,2,822,34900 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334865 ,2,829,45 ,1,0,100 ,2,14956,217195 ,2,822,34900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369195 ,2,829,45 ,1,0,100 ,1,1,561430 ,1,2,562475 ,2,14956,216035 ,2,822,34900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386155 ,2,829,45 ,1,0,149280 ,1,1,149270 ,2,14956,258145 ,2,822,34900 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,148945 ,2,14979,2415 ,2,829,45 ,1,0,596345 ,1,1,596340 ,1,2,100 ,2,14956,258155 ,2,822,34900 ,2,14975,578535 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,334875 ,2,829,45 ,1,0,100 ,2,14956,258190 ,2,822,34900 ,2,14975,569580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,334900 ,2,829,45 ,1,0,149330 ,2,14956,184135 ,2,822,34900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380635 ,2,829,45 ,1,0,100 ,2,14956,223625 ,2,822,34900 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364810 ,2,829,45 ,1,0,343365 ,2,14956,258200 ,2,822,34900 ,2,14975,578470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,258145 ,2,822,34975 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,149365 ,2,14979,2415 ,2,829,45 ,1,0,274050 ,1,1,45 ,1,2,45 ,2,14956,257920 ,2,822,34975 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234440 ,2,14979,334930 ,2,829,45 ,1,0,48685 ,1,1,45 ,1,2,613640 ,2,14956,182390 ,2,822,34975 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385365 ,2,829,45 ,2,14956,223625 ,2,822,34975 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364800 ,2,829,45 ,1,0,223050 ,2,14956,257920 ,2,822,34975 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,149365 ,2,14979,334950 ,2,829,45 ,1,0,149430 ,2,14956,184135 ,2,822,34975 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380625 ,2,829,45 ,1,0,100 ,2,14956,217195 ,2,822,34975 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369185 ,2,829,45 ,1,0,149450 ,2,14956,216035 ,2,822,52600 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413420 ,2,829,45 ,1,0,100 ,2,14956,184135 ,2,822,52600 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409530 ,2,829,45 ,1,0,115705 ,1,1,57795 ,1,2,115715 ,2,14956,217335 ,2,822,52600 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391240 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217345 ,2,822,52600 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412225 ,2,829,45 ,1,0,100 ,1,1,581185 ,2,14956,217455 ,2,822,34995 ,2,14975,578610 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384705 ,2,829,45 ,1,0,149525 ,2,14956,213590 ,2,822,34995 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260015 ,2,14979,413200 ,2,829,45 ,1,0,100 ,2,14956,166680 ,2,822,34995 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260025 ,2,14979,378280 ,2,829,45 ,1,0,149545 ,2,14956,217455 ,2,822,35030 ,2,14975,578635 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384700 ,2,829,45 ,1,0,100 ,2,14956,6245 ,2,822,35040 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388830 ,2,829,45 ,1,0,149570 ,2,14956,13210 ,2,822,35040 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396740 ,2,829,45 ,1,0,100 ,2,14956,258315 ,2,822,35040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,335010 ,2,829,45 ,1,0,149590 ,2,14956,195175 ,2,822,35040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,335020 ,2,829,45 ,1,0,100 ,2,14956,169490 ,2,822,35040 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412420 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,258325 ,2,822,35040 ,2,14975,578640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335030 ,2,829,45 ,1,0,100 ,1,1,566370 ,2,14956,216035 ,2,822,52610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409535 ,2,829,45 ,1,0,100 ,1,1,596425 ,1,2,566615 ,2,14956,184135 ,2,822,52610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409540 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,596465 ,2,14956,217335 ,2,822,52610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415005 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217345 ,2,822,52610 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412230 ,2,829,45 ,1,0,100 ,1,1,560980 ,2,14956,179555 ,2,822,35085 ,2,14975,578530 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387665 ,2,829,45 ,1,0,149695 ,2,14956,182390 ,2,822,35095 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385360 ,2,829,45 ,1,0,100 ,2,14956,223625 ,2,822,35095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364790 ,2,829,45 ,1,0,209845 ,2,14956,184135 ,2,822,35095 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380620 ,2,829,45 ,1,0,149755 ,2,14956,217195 ,2,822,35095 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369175 ,2,829,45 ,1,0,100 ,2,14956,13210 ,2,822,35105 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396495 ,2,829,45 ,1,0,223620 ,2,14956,6245 ,2,822,35105 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388665 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215695 ,2,822,35115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,415960 ,2,829,45 ,1,0,100 ,1,1,600025 ,2,14956,215685 ,2,822,35115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388305 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,215715 ,2,822,35115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386510 ,2,829,45 ,1,0,100 ,1,1,600025 ,1,2,600025 ,2,14956,258415 ,2,822,35115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,335075 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215585 ,2,822,35115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386935 ,2,829,45 ,1,0,100 ,1,1,600065 ,2,14956,257560 ,2,822,35115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,335085 ,2,829,45 ,1,0,69955 ,2,14956,215595 ,2,822,35115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386705 ,2,829,45 ,1,0,149885 ,2,14956,258425 ,2,822,35115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,335120 ,2,829,45 ,1,0,600065 ,2,14956,215955 ,2,822,35115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386265 ,2,829,45 ,1,0,149915 ,2,14956,211080 ,2,822,35115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375005 ,2,829,45 ,1,0,600065 ,2,14956,215630 ,2,822,35115 ,2,14975,578410 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395580 ,2,829,45 ,1,0,149935 ,2,14956,215640 ,2,822,35115 ,2,14975,578740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373550 ,2,829,45 ,1,0,600065 ,2,14956,258435 ,2,822,35115 ,2,14975,578735 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,335130 ,2,829,45 ,2,14956,216035 ,2,822,52620 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413425 ,2,829,45 ,2,14956,184135 ,2,822,52620 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409570 ,2,829,45 ,1,0,264905 ,2,14956,217345 ,2,822,52620 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380870 ,2,829,45 ,1,0,223885 ,1,1,223865 ,2,14956,239550 ,2,822,35140 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394980 ,2,829,45 ,1,0,596600 ,2,14956,211025 ,2,822,35140 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377310 ,2,829,45 ,2,14956,258465 ,2,822,35140 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335150 ,2,829,45 ,1,0,223895 ,2,14956,258475 ,2,822,35140 ,2,14975,578760 ,2,14976,36360 ,2,14977,36350 ,2,14965,45 ,2,14978,45 ,2,14979,335165 ,2,829,45 ,1,0,100 ,1,1,596595 ,1,2,599975 ,2,14956,2855 ,2,822,35150 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415215 ,2,829,45 ,1,0,100 ,1,1,563570 ,2,14956,2855 ,2,822,34785 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391710 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,6245 ,2,822,34785 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388970 ,2,829,45 ,1,0,100 ,1,1,599975 ,1,2,599975 ,2,14956,13210 ,2,822,34785 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397215 ,2,829,45 ,1,0,100 ,1,1,599975 ,1,2,599975 ,2,14956,212310 ,2,822,34785 ,2,14975,578770 ,2,14976,90540 ,2,14977,90530 ,2,14965,45 ,2,14978,45 ,2,14979,377550 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,257335 ,2,822,34740 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,147830 ,2,14979,333960 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,100 ,2,14956,184135 ,2,822,34740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380680 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,100 ,2,14956,223625 ,2,822,34740 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364905 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,259245 ,2,822,34740 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409575 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,259255 ,2,822,34740 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147800 ,2,14979,2415 ,2,829,45 ,1,0,150210 ,2,14956,259265 ,2,822,34740 ,2,14975,578285 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,600065 ,2,14956,259320 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150230 ,2,14979,397015 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600065 ,1,5,558090 ,2,14956,259310 ,2,822,34730 ,2,14975,110 ,2,14976,76145 ,2,14977,23120 ,2,14965,45 ,2,14978,234460 ,2,14979,335175 ,2,829,45 ,1,0,167060 ,2,14956,257025 ,2,822,34730 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,147360 ,2,14979,333520 ,2,829,45 ,1,0,100 ,2,14956,259350 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,147380 ,2,14979,398200 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,259310 ,2,822,34730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150230 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,600030 ,2,14956,227845 ,2,822,34730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150305 ,2,14979,335185 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,227845 ,2,822,34730 ,2,14975,110 ,2,14976,78610 ,2,14977,23120 ,2,14965,45 ,2,14978,234470 ,2,14979,335195 ,2,829,45 ,1,0,100 ,1,1,600030 ,1,2,600030 ,2,14956,259360 ,2,822,34730 ,2,14975,577295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333500 ,2,829,45 ,1,0,100 ,1,1,600040 ,1,2,560850 ,2,14956,227855 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150305 ,2,14979,386040 ,2,829,45 ,1,0,347250 ,1,1,45 ,2,14956,259380 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150345 ,2,14979,398135 ,2,829,45 ,1,0,218580 ,1,1,212845 ,1,2,223750 ,1,3,223565 ,1,4,219565 ,1,5,217440 ,1,6,219745 ,1,7,223015 ,1,8,219610 ,1,9,219680 ,1,10,219650 ,1,11,213930 ,1,12,212360 ,1,13,218760 ,1,14,211380 ,1,15,217855 ,1,16,222870 ,1,17,219245 ,1,18,216040 ,1,19,216030 ,1,20,214700 ,1,21,214965 ,1,22,221225 ,1,23,220995 ,1,24,220985 ,1,25,221045 ,1,26,221035 ,1,27,221075 ,1,28,221065 ,1,29,221195 ,1,30,221185 ,1,31,224175 ,1,32,224165 ,1,33,224140 ,1,34,224095 ,1,35,224085 ,1,36,224075 ,1,37,224065 ,1,38,206480 ,1,39,224020 ,1,40,224000 ,1,41,223975 ,1,42,78560 ,1,43,223965 ,1,44,223955 ,1,45,78485 ,1,46,78475 ,1,47,78420 ,1,48,223915 ,1,49,220940 ,1,50,223845 ,1,51,223680 ,1,52,223835 ,1,53,223800 ,1,54,223790 ,1,55,223770 ,1,56,223760 ,1,57,223740 ,1,58,223730 ,1,59,223690 ,1,60,223670 ,1,61,223660 ,1,62,223575 ,1,63,221575 ,1,64,223305 ,1,65,223555 ,1,66,223545 ,1,67,223530 ,1,68,223445 ,1,69,223520 ,1,70,223510 ,1,71,220425 ,1,72,223455 ,1,73,223435 ,1,74,223425 ,1,75,223400 ,1,76,223390 ,1,77,223380 ,1,78,223370 ,1,79,223335 ,1,80,223315 ,1,81,223285 ,1,82,223275 ,1,83,223255 ,1,84,223265 ,1,85,223220 ,1,86,223210 ,1,87,223200 ,1,88,223190 ,1,89,223180 ,1,90,223170 ,1,91,223160 ,1,92,223150 ,1,93,223115 ,1,94,223095 ,1,95,223085 ,1,96,205580 ,1,97,223070 ,1,98,223060 ,1,99,223040 ,1,100,222995 ,1,101,223005 ,1,102,222985 ,1,103,222975 ,1,104,222965 ,1,105,222945 ,1,106,222900 ,1,107,222890 ,1,108,222860 ,1,109,222800 ,1,110,222850 ,1,111,222840 ,1,112,222830 ,1,113,222790 ,1,114,222780 ,1,115,222770 ,1,116,222355 ,1,117,222395 ,1,118,222455 ,1,119,222760 ,1,120,222750 ,1,121,222740 ,1,122,222730 ,1,123,222640 ,1,124,222705 ,1,125,222695 ,1,126,222685 ,1,127,222675 ,1,128,222660 ,1,129,222650 ,1,130,222630 ,1,131,222590 ,1,132,222580 ,1,133,222545 ,1,134,222515 ,1,135,222475 ,1,136,222465 ,1,137,222445 ,1,138,222415 ,1,139,222405 ,1,140,222385 ,1,141,222345 ,1,142,222335 ,1,143,222325 ,1,144,222315 ,1,145,222250 ,1,146,222220 ,1,147,222195 ,1,148,222185 ,1,149,222175 ,1,150,222145 ,1,151,222135 ,1,152,222125 ,1,153,222115 ,1,154,222105 ,1,155,221710 ,1,156,221720 ,1,157,222095 ,1,158,222075 ,1,159,222045 ,1,160,222035 ,1,161,221995 ,1,162,221985 ,1,163,221975 ,1,164,221925 ,1,165,221915 ,1,166,221905 ,1,167,221880 ,1,168,221810 ,1,169,221800 ,1,170,221760 ,1,171,221730 ,1,172,221675 ,1,173,221665 ,1,174,221655 ,1,175,64635 ,1,176,221625 ,1,177,221595 ,1,178,221585 ,1,179,206500 ,1,180,221520 ,1,181,221510 ,1,182,221500 ,1,183,221490 ,1,184,221475 ,1,185,221465 ,1,186,221455 ,1,187,221445 ,1,188,221395 ,1,189,221385 ,1,190,208440 ,1,191,221370 ,1,192,221350 ,1,193,221360 ,1,194,221300 ,1,195,221290 ,1,196,221280 ,1,197,221270 ,1,198,221255 ,1,199,221245 ,1,200,221235 ,1,201,220975 ,1,202,221125 ,1,203,221085 ,1,204,221205 ,1,205,221175 ,1,206,221155 ,1,207,221135 ,1,208,221145 ,1,209,221055 ,1,210,221025 ,1,211,221015 ,1,212,220965 ,1,213,220950 ,1,214,209730 ,1,215,220870 ,1,216,220860 ,1,217,220850 ,1,218,220830 ,1,219,220840 ,1,220,220820 ,1,221,220810 ,1,222,220800 ,1,223,220770 ,1,224,220760 ,1,225,207505 ,1,226,207495 ,1,227,207515 ,1,228,220750 ,1,229,220740 ,1,230,220710 ,1,231,220700 ,1,232,220690 ,1,233,220680 ,1,234,220635 ,1,235,220560 ,1,236,220625 ,1,237,220615 ,1,238,220605 ,1,239,220590 ,1,240,220580 ,1,241,220570 ,1,242,220530 ,1,243,220520 ,1,244,220500 ,1,245,220490 ,1,246,220480 ,1,247,220470 ,1,248,220460 ,1,249,220435 ,1,250,220415 ,1,251,220405 ,1,252,220390 ,1,253,220360 ,1,254,220325 ,1,255,220315 ,1,256,220305 ,1,257,220295 ,1,258,220280 ,1,259,220270 ,1,260,220260 ,1,261,220250 ,1,262,220230 ,1,263,220220 ,1,264,220210 ,1,265,220200 ,1,266,220170 ,1,267,220160 ,1,268,220130 ,1,269,220120 ,1,270,220110 ,1,271,220100 ,1,272,220090 ,1,273,220070 ,1,274,220080 ,1,275,220060 ,1,276,219965 ,1,277,220015 ,1,278,220005 ,1,279,219995 ,1,280,219985 ,1,281,219975 ,1,282,219945 ,1,283,219905 ,1,284,219895 ,1,285,219885 ,1,286,219875 ,1,287,219865 ,1,288,219855 ,1,289,219845 ,1,290,219835 ,1,291,219805 ,1,292,219795 ,1,293,219785 ,1,294,219775 ,1,295,219765 ,1,296,219755 ,1,297,219710 ,1,298,219700 ,1,299,219690 ,1,300,219600 ,1,301,219590 ,1,302,219495 ,1,303,219485 ,1,304,219580 ,1,305,219555 ,1,306,219545 ,1,307,219535 ,1,308,219475 ,1,309,219465 ,1,310,219455 ,1,311,219445 ,1,312,219435 ,1,313,218275 ,1,314,219425 ,1,315,219390 ,1,316,219380 ,1,317,219370 ,1,318,219360 ,1,319,219345 ,1,320,219335 ,1,321,219325 ,1,322,219235 ,1,323,219110 ,1,324,219225 ,1,325,219215 ,1,326,219205 ,1,327,219140 ,1,328,219130 ,1,329,219160 ,1,330,219170 ,1,331,219180 ,1,332,219150 ,1,333,219120 ,1,334,219070 ,1,335,219060 ,1,336,219050 ,1,337,219040 ,1,338,219025 ,1,339,219015 ,1,340,219005 ,1,341,218995 ,1,342,218955 ,1,343,218945 ,1,344,218935 ,1,345,218925 ,1,346,211705 ,1,347,211665 ,1,348,218905 ,1,349,218895 ,1,350,218885 ,1,351,218875 ,1,352,218685 ,1,353,218630 ,1,354,218620 ,1,355,218850 ,1,356,218840 ,1,357,218830 ,1,358,218810 ,1,359,218790 ,1,360,218780 ,1,361,218800 ,1,362,218740 ,1,363,218750 ,1,364,218730 ,1,365,218715 ,1,366,218695 ,1,367,218705 ,1,368,218610 ,1,369,218600 ,1,370,218590 ,1,371,218560 ,1,372,218570 ,1,373,218545 ,1,374,218535 ,1,375,218515 ,1,376,218490 ,1,377,218460 ,1,378,218405 ,1,379,218395 ,1,380,218385 ,1,381,218375 ,1,382,218365 ,1,383,218345 ,1,384,218355 ,1,385,218335 ,1,386,218305 ,1,387,218295 ,1,388,218285 ,1,389,218255 ,1,390,218175 ,1,391,218165 ,1,392,218155 ,1,393,218135 ,1,394,218125 ,1,395,218065 ,1,396,218115 ,1,397,218105 ,1,398,218055 ,1,399,218035 ,1,400,218025 ,1,401,218015 ,1,402,217990 ,1,403,217980 ,1,404,217970 ,1,405,217960 ,1,406,217865 ,1,407,217935 ,1,408,217925 ,1,409,217875 ,1,410,217835 ,1,411,217825 ,1,412,217815 ,1,413,217805 ,1,414,217765 ,1,415,140790 ,1,416,217755 ,1,417,217745 ,1,418,217735 ,1,419,217720 ,1,420,217710 ,1,421,217700 ,1,422,217690 ,1,423,140780 ,1,424,217010 ,1,425,216990 ,1,426,217655 ,1,427,217645 ,1,428,217635 ,1,429,208220 ,1,430,217625 ,1,431,217615 ,1,432,217595 ,1,433,217605 ,1,434,217585 ,1,435,217560 ,1,436,217550 ,1,437,217540 ,1,438,217530 ,1,439,217515 ,1,440,217505 ,1,441,217495 ,1,442,217485 ,1,443,217450 ,1,444,217350 ,1,445,217340 ,1,446,217390 ,1,447,217430 ,1,448,217420 ,1,449,217410 ,1,450,217400 ,1,451,217380 ,1,452,217330 ,1,453,217320 ,1,454,105105 ,1,455,217300 ,1,456,217290 ,1,457,217280 ,1,458,217270 ,1,459,217225 ,1,460,217215 ,1,461,217205 ,1,462,217190 ,1,463,217180 ,1,464,217170 ,1,465,217160 ,1,466,211240 ,1,467,211250 ,1,468,211285 ,1,469,211260 ,1,470,211295 ,1,471,217125 ,1,472,217115 ,1,473,217105 ,1,474,217095 ,1,475,217085 ,1,476,217075 ,1,477,217065 ,1,478,217020 ,1,479,217055 ,1,480,217040 ,1,481,217030 ,1,482,216980 ,1,483,216970 ,1,484,216960 ,1,485,216910 ,1,486,216900 ,1,487,216890 ,1,488,216880 ,1,489,216870 ,1,490,216860 ,1,491,216850 ,1,492,216725 ,1,493,216735 ,1,494,216770 ,1,495,216760 ,1,496,216745 ,1,497,216840 ,1,498,216790 ,1,499,216780 ,1,500,216715 ,1,501,216695 ,1,502,216685 ,1,503,216675 ,1,504,216665 ,1,505,216650 ,1,506,216640 ,1,507,216630 ,1,508,216620 ,1,509,216585 ,1,510,216575 ,1,511,216565 ,1,512,216555 ,1,513,216540 ,1,514,216530 ,1,515,216520 ,1,516,216510 ,1,517,216470 ,1,518,216460 ,1,519,216450 ,1,520,216440 ,1,521,216425 ,1,522,216415 ,1,523,216405 ,1,524,216395 ,1,525,216360 ,1,526,216350 ,1,527,216370 ,1,528,216340 ,1,529,216330 ,1,530,216320 ,1,531,216300 ,1,532,216265 ,1,533,216245 ,1,534,216255 ,1,535,216235 ,1,536,216225 ,1,537,216215 ,1,538,216205 ,1,539,214275 ,1,540,216195 ,1,541,216160 ,1,542,216150 ,1,543,216140 ,1,544,216130 ,1,545,216115 ,1,546,216095 ,1,547,216085 ,1,548,216020 ,1,549,216000 ,1,550,215990 ,1,551,215970 ,1,552,215950 ,1,553,215930 ,1,554,215920 ,1,555,215905 ,1,556,215885 ,1,557,215875 ,1,558,215850 ,1,559,215840 ,1,560,215830 ,1,561,215820 ,1,562,215800 ,1,563,215790 ,1,564,215730 ,1,565,215720 ,1,566,215690 ,1,567,215680 ,1,568,215660 ,1,569,215635 ,1,570,215625 ,1,571,215615 ,1,572,215605 ,1,573,215580 ,1,574,215570 ,1,575,215560 ,1,576,215520 ,1,577,215510 ,1,578,215500 ,1,579,215490 ,1,580,215470 ,1,581,215460 ,1,582,215450 ,1,583,215440 ,1,584,215410 ,1,585,215400 ,1,586,215390 ,1,587,215380 ,1,588,215355 ,1,589,215345 ,1,590,215335 ,1,591,215325 ,1,592,215300 ,1,593,215290 ,1,594,215280 ,1,595,215270 ,1,596,215260 ,1,597,215250 ,1,598,215240 ,1,599,215230 ,1,600,215190 ,1,601,215180 ,1,602,215170 ,1,603,215160 ,1,604,215145 ,1,605,215135 ,1,606,215125 ,1,607,215115 ,1,608,215090 ,1,609,215080 ,1,610,215070 ,1,611,215060 ,1,612,215045 ,1,613,215035 ,1,614,215025 ,1,615,215015 ,1,616,214975 ,1,617,214955 ,1,618,214930 ,1,619,214920 ,1,620,214910 ,1,621,214900 ,1,622,214865 ,1,623,214855 ,1,624,214835 ,1,625,214820 ,1,626,214810 ,1,627,214800 ,1,628,214790 ,1,629,214770 ,1,630,214760 ,1,631,214750 ,1,632,214740 ,1,633,214720 ,1,634,214710 ,1,635,214650 ,1,636,214640 ,1,637,214620 ,1,638,214610 ,1,639,214590 ,1,640,214580 ,1,641,214535 ,1,642,214525 ,1,643,214505 ,1,644,214495 ,1,645,214475 ,1,646,214435 ,1,647,214415 ,1,648,214405 ,1,649,214390 ,1,650,214380 ,1,651,214360 ,1,652,214330 ,1,653,214310 ,1,654,214300 ,1,655,214285 ,1,656,214265 ,1,657,214255 ,1,658,214220 ,1,659,214210 ,1,660,214200 ,1,661,214190 ,1,662,214180 ,1,663,214170 ,1,664,214160 ,1,665,214150 ,1,666,214105 ,1,667,214095 ,1,668,206470 ,1,669,214085 ,1,670,214075 ,1,671,214055 ,1,672,214045 ,1,673,214035 ,1,674,214025 ,1,675,161375 ,1,676,213980 ,1,677,213950 ,1,678,213960 ,1,679,213990 ,1,680,213970 ,1,681,213940 ,1,682,213920 ,1,683,213880 ,1,684,213870 ,1,685,213860 ,1,686,213850 ,1,687,213830 ,1,688,213820 ,1,689,213800 ,1,690,213760 ,1,691,213750 ,1,692,213810 ,1,693,213740 ,1,694,213730 ,1,695,213715 ,1,696,213705 ,1,697,213695 ,1,698,213650 ,1,699,213640 ,1,700,213630 ,1,701,213620 ,1,702,213605 ,1,703,213585 ,1,704,213525 ,1,705,213595 ,1,706,213575 ,1,707,213545 ,1,708,213535 ,1,709,213515 ,1,710,213500 ,1,711,213490 ,1,712,213480 ,1,713,213470 ,1,714,213440 ,1,715,213430 ,1,716,213420 ,1,717,213410 ,1,718,213390 ,1,719,213380 ,1,720,213370 ,1,721,213360 ,1,722,213330 ,1,723,213320 ,1,724,213310 ,1,725,213300 ,1,726,213285 ,1,727,213275 ,1,728,213265 ,1,729,213255 ,1,730,213220 ,1,731,213150 ,1,732,213140 ,1,733,213110 ,1,734,213100 ,1,735,213080 ,1,736,213060 ,1,737,213050 ,1,738,213040 ,1,739,213030 ,1,740,212990 ,1,741,212980 ,1,742,212970 ,1,743,212960 ,1,744,212950 ,1,745,212940 ,1,746,212930 ,1,747,212920 ,1,748,212875 ,1,749,208365 ,1,750,212865 ,1,751,212835 ,1,752,212825 ,1,753,212815 ,1,754,212760 ,1,755,212750 ,1,756,212740 ,1,757,212725 ,1,758,212715 ,1,759,212705 ,1,760,212695 ,1,761,212535 ,1,762,212655 ,1,763,212645 ,1,764,212635 ,1,765,212625 ,1,766,212610 ,1,767,212600 ,1,768,212590 ,1,769,212545 ,1,770,212580 ,1,771,212525 ,1,772,212515 ,1,773,212505 ,1,774,212495 ,1,775,212485 ,1,776,212475 ,1,777,212435 ,1,778,212425 ,1,779,212415 ,1,780,212405 ,1,781,212390 ,1,782,212380 ,1,783,212370 ,1,784,212335 ,1,785,212315 ,1,786,212325 ,1,787,212305 ,1,788,203330 ,1,789,212295 ,1,790,212285 ,1,791,212275 ,1,792,212265 ,1,793,212225 ,1,794,212215 ,1,795,212205 ,1,796,212195 ,1,797,212180 ,1,798,212170 ,1,799,212160 ,1,800,212150 ,1,801,212100 ,1,802,212090 ,1,803,212080 ,1,804,212070 ,1,805,212055 ,1,806,212045 ,1,807,212035 ,1,808,212025 ,1,809,212000 ,1,810,211990 ,1,811,211980 ,1,812,211970 ,1,813,211945 ,1,814,211935 ,1,815,211925 ,1,816,211915 ,1,817,211870 ,1,818,211880 ,1,819,211890 ,1,820,211860 ,1,821,211845 ,1,822,211835 ,1,823,211825 ,1,824,211815 ,1,825,211770 ,1,826,211760 ,1,827,211750 ,1,828,211740 ,1,829,211725 ,1,830,211715 ,1,831,211695 ,1,832,211655 ,1,833,211645 ,1,834,211635 ,1,835,211625 ,1,836,211615 ,1,837,211595 ,1,838,211570 ,1,839,211605 ,1,840,211560 ,1,841,211550 ,1,842,211540 ,1,843,211530 ,1,844,211520 ,1,845,211510 ,1,846,211500 ,1,847,211455 ,1,848,211445 ,1,849,211410 ,1,850,211435 ,1,851,211425 ,1,852,211400 ,1,853,211390 ,1,854,208410 ,1,855,208355 ,1,856,211355 ,1,857,211345 ,1,858,211335 ,1,859,211325 ,1,860,211315 ,1,861,211305 ,1,862,211230 ,1,863,211215 ,1,864,211185 ,1,865,211150 ,1,866,203340 ,1,867,211140 ,1,868,211130 ,1,869,208430 ,1,870,211120 ,1,871,211095 ,1,872,211085 ,1,873,211075 ,1,874,211065 ,1,875,211040 ,1,876,211030 ,1,877,211020 ,1,878,211010 ,1,879,211000 ,1,880,210990 ,1,881,210980 ,1,882,210970 ,1,883,210930 ,1,884,210910 ,1,885,210920 ,1,886,210900 ,1,887,210890 ,1,888,210880 ,1,889,210870 ,1,890,210860 ,1,891,210815 ,1,892,210805 ,1,893,210795 ,1,894,210785 ,1,895,210770 ,1,896,210760 ,1,897,210750 ,1,898,45 ,1,899,45 ,1,900,45 ,1,901,45 ,1,902,45 ,1,903,45 ,1,904,45 ,1,905,45 ,1,906,45 ,1,907,45 ,1,908,45 ,1,909,45 ,1,910,45 ,1,911,45 ,1,912,45 ,1,913,45 ,1,914,45 ,1,915,45 ,1,916,45 ,1,917,45 ,1,918,45 ,1,919,45 ,1,920,45 ,1,921,45 ,1,922,45 ,1,923,45 ,1,924,45 ,1,925,45 ,1,926,45 ,1,927,45 ,1,928,45 ,1,929,45 ,1,930,45 ,1,931,45 ,1,932,45 ,1,933,45 ,1,934,45 ,1,935,45 ,1,936,45 ,1,937,45 ,1,938,45 ,1,939,45 ,1,940,45 ,1,941,45 ,1,942,45 ,1,943,45 ,1,944,45 ,1,945,45 ,1,946,45 ,1,947,45 ,1,948,45 ,1,949,45 ,1,950,45 ,1,951,45 ,1,952,45 ,1,953,45 ,1,954,45 ,1,955,45 ,1,956,45 ,1,957,45 ,1,958,45 ,1,959,45 ,1,960,45 ,1,961,45 ,1,962,45 ,1,963,45 ,1,964,45 ,1,965,45 ,1,966,45 ,1,967,45 ,1,968,45 ,1,969,45 ,1,970,45 ,1,971,45 ,1,972,45 ,1,973,45 ,1,974,45 ,1,975,45 ,1,976,45 ,1,977,45 ,1,978,45 ,1,979,45 ,1,980,45 ,1,981,45 ,1,982,45 ,1,983,45 ,1,984,45 ,1,985,45 ,1,986,45 ,1,987,45 ,1,988,45 ,1,989,45 ,1,990,45 ,1,991,45 ,1,992,45 ,1,993,45 ,1,994,45 ,1,995,45 ,1,996,45 ,1,997,45 ,1,998,45 ,1,999,45 ,1,1000,45 ,1,1001,45 ,1,1002,45 ,1,1003,45 ,1,1004,45 ,1,1005,45 ,1,1006,45 ,1,1007,45 ,1,1008,45 ,1,1009,45 ,1,1010,45 ,1,1011,45 ,1,1012,45 ,1,1013,45 ,1,1014,45 ,1,1015,45 ,1,1016,45 ,1,1017,45 ,1,1018,45 ,1,1019,45 ,1,1020,45 ,1,1021,45 ,1,1022,45 ,2,14956,259370 ,2,822,34730 ,2,14975,110 ,2,14976,89180 ,2,14977,23120 ,2,14965,45 ,2,14978,234495 ,2,14979,335250 ,2,829,45 ,1,0,629095 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,289365 ,1,5,278690 ,1,6,65 ,1,7,65 ,1,8,285685 ,1,9,278195 ,1,10,289515 ,1,11,278710 ,1,12,284850 ,1,13,278070 ,1,14,305075 ,1,15,279650 ,1,16,308125 ,1,17,279975 ,1,18,7970 ,1,19,280470 ,1,20,65 ,1,21,65 ,1,22,285475 ,1,23,278160 ,1,24,330955 ,1,25,280330 ,1,26,205465 ,1,27,274855 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,284485 ,1,33,278030 ,1,34,65 ,1,35,65 ,1,36,223020 ,1,37,275410 ,1,38,290890 ,1,39,278805 ,1,40,283850 ,1,41,277950 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,197480 ,1,47,274515 ,1,48,65 ,1,49,65 ,1,50,222970 ,1,51,275430 ,1,52,65 ,1,53,65 ,1,54,306610 ,1,55,279800 ,1,56,250455 ,1,57,276780 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,222645 ,1,65,275385 ,1,66,211555 ,1,67,274955 ,1,68,312320 ,1,69,280230 ,1,70,65 ,1,71,65 ,1,72,65 ,1,73,65 ,1,74,65 ,1,75,65 ,1,76,65 ,1,77,65 ,1,78,65 ,1,79,65 ,1,80,65 ,1,81,65 ,1,82,65 ,1,83,65 ,1,84,287900 ,1,85,278450 ,1,86,288850 ,1,87,278595 ,1,88,65 ,1,89,65 ,1,90,65 ,1,91,65 ,1,92,65 ,1,93,65 ,1,94,65 ,1,95,65 ,1,96,65 ,1,97,65 ,1,98,65 ,1,99,65 ,1,100,247680 ,1,101,275835 ,1,102,65 ,1,103,65 ,1,104,65 ,1,105,65 ,1,106,278175 ,1,107,277440 ,1,108,188470 ,1,109,274465 ,1,110,65 ,1,111,65 ,1,112,213115 ,1,113,275030 ,1,114,65 ,1,115,65 ,1,116,307455 ,1,117,280540 ,1,118,308495 ,1,119,280010 ,1,120,305155 ,1,121,279660 ,1,122,65 ,1,123,65 ,1,124,65 ,1,125,65 ,1,126,65 ,1,127,65 ,1,128,65 ,1,129,65 ,1,130,65 ,1,131,65 ,1,132,65 ,1,133,65 ,1,134,220945 ,1,135,275310 ,1,136,200215 ,1,137,274665 ,1,138,238160 ,1,139,275980 ,1,140,310705 ,1,141,280150 ,1,142,303810 ,1,143,279560 ,1,144,289495 ,1,145,278725 ,1,146,65 ,1,147,65 ,1,148,287845 ,1,149,278440 ,1,150,65 ,1,151,65 ,1,152,65 ,1,153,65 ,1,154,227715 ,1,155,275660 ,1,156,247480 ,1,157,276665 ,1,158,283165 ,1,159,277860 ,1,160,284660 ,1,161,278050 ,1,162,189220 ,1,163,274425 ,1,164,233785 ,1,165,276010 ,1,166,243520 ,1,167,276340 ,1,168,246530 ,1,169,276630 ,1,170,227925 ,1,171,275690 ,1,172,285125 ,1,173,278115 ,1,174,200510 ,1,175,274695 ,1,176,239590 ,1,177,275845 ,1,178,231860 ,1,179,275825 ,1,180,65 ,1,181,65 ,1,182,65 ,1,183,65 ,1,184,65 ,1,185,65 ,1,186,65 ,1,187,65 ,1,188,305190 ,1,189,279670 ,1,190,288515 ,1,191,278540 ,1,192,65 ,1,193,65 ,1,194,282770 ,1,195,277825 ,1,196,65 ,1,197,65 ,1,198,65 ,1,199,65 ,1,200,65 ,1,201,65 ,1,202,65 ,1,203,65 ,1,204,272455 ,1,205,277325 ,1,206,306090 ,1,207,279735 ,1,208,65 ,1,209,65 ,1,210,303090 ,1,211,279465 ,1,212,300445 ,1,213,279220 ,1,214,258665 ,1,215,277020 ,1,216,289045 ,1,217,278630 ,1,218,278465 ,1,219,277485 ,1,220,65 ,1,221,65 ,1,222,65 ,1,223,65 ,1,224,65 ,1,225,65 ,1,226,65 ,1,227,65 ,1,228,223980 ,1,229,275490 ,1,230,295555 ,1,231,278925 ,1,232,65 ,1,233,65 ,1,234,65 ,1,235,65 ,1,236,295300 ,1,237,278865 ,1,238,218050 ,1,239,275235 ,1,240,65 ,1,241,65 ,1,242,237090 ,1,243,276065 ,1,244,304710 ,1,245,279610 ,1,246,302155 ,1,247,279345 ,1,248,242710 ,1,249,276320 ,1,250,206770 ,1,251,274910 ,1,252,260960 ,1,253,277055 ,1,254,214870 ,1,255,275115 ,1,256,283285 ,1,257,277815 ,1,258,299175 ,1,259,279060 ,1,260,65 ,1,261,65 ,1,262,310610 ,1,263,280135 ,1,264,65 ,1,265,65 ,1,266,65 ,1,267,65 ,1,268,65 ,1,269,65 ,1,270,65 ,1,271,65 ,1,272,235455 ,1,273,276055 ,1,274,65 ,1,275,65 ,1,276,285585 ,1,277,278170 ,1,278,65 ,1,279,65 ,1,280,65 ,1,281,65 ,1,282,65 ,1,283,65 ,1,284,65 ,1,285,65 ,1,286,286225 ,1,287,278265 ,1,288,306685 ,1,289,279810 ,1,290,347615 ,1,291,280455 ,1,292,203165 ,1,293,274725 ,1,294,297805 ,1,295,279030 ,1,296,65 ,1,297,65 ,1,298,293965 ,1,299,278855 ,1,300,264770 ,1,301,277130 ,1,302,198925 ,1,303,274595 ,1,304,244315 ,1,305,276495 ,1,306,65 ,1,307,65 ,1,308,257280 ,1,309,277010 ,1,310,65 ,1,311,65 ,1,312,65 ,1,313,65 ,1,314,279425 ,1,315,277540 ,1,316,296490 ,1,317,279000 ,1,318,279305 ,1,319,277530 ,1,320,310515 ,1,321,280125 ,1,322,65 ,1,323,65 ,1,324,65 ,1,325,65 ,1,326,217025 ,1,327,275225 ,1,328,209530 ,1,329,274975 ,1,330,65 ,1,331,65 ,1,332,299420 ,1,333,279100 ,1,334,65 ,1,335,65 ,1,336,65 ,1,337,65 ,1,338,282230 ,1,339,277720 ,1,340,330915 ,1,341,280300 ,1,342,295850 ,1,343,278945 ,1,344,65 ,1,345,65 ,1,346,214100 ,1,347,275125 ,1,348,307700 ,1,349,279900 ,1,350,218720 ,1,351,275280 ,1,352,297545 ,1,353,279010 ,1,354,303775 ,1,355,279550 ,1,356,286625 ,1,357,278315 ,1,358,290095 ,1,359,277430 ,1,360,294215 ,1,361,278895 ,1,362,65 ,1,363,65 ,1,364,204525 ,1,365,274815 ,1,366,286795 ,1,367,278335 ,1,368,65 ,1,369,65 ,1,370,283390 ,1,371,277880 ,1,372,259725 ,1,373,276990 ,1,374,65 ,1,375,65 ,1,376,65 ,1,377,65 ,1,378,65 ,1,379,65 ,1,380,240170 ,1,381,276190 ,1,382,65 ,1,383,65 ,1,384,295625 ,1,385,278935 ,1,386,228490 ,1,387,275710 ,1,388,65 ,1,389,65 ,1,390,302835 ,1,391,279445 ,1,392,65 ,1,393,65 ,1,394,65 ,1,395,65 ,1,396,65 ,1,397,65 ,1,398,65 ,1,399,65 ,1,400,287430 ,1,401,278420 ,1,402,65 ,1,403,65 ,1,404,241090 ,1,405,276255 ,1,406,65 ,1,407,65 ,1,408,65 ,1,409,65 ,1,410,65 ,1,411,65 ,1,412,277175 ,1,413,277345 ,1,414,65 ,1,415,65 ,1,416,235645 ,1,417,276085 ,1,418,65 ,1,419,65 ,1,420,286720 ,1,421,278325 ,1,422,226005 ,1,423,275540 ,1,424,65 ,1,425,65 ,1,426,240350 ,1,427,276215 ,1,428,65 ,1,429,65 ,1,430,327995 ,1,431,280270 ,1,432,65 ,1,433,65 ,1,434,65 ,1,435,65 ,1,436,65 ,1,437,65 ,1,438,65 ,1,439,65 ,1,440,250865 ,1,441,275365 ,1,442,302375 ,1,443,279390 ,1,444,237210 ,1,445,276020 ,1,446,330260 ,1,447,280290 ,1,448,65 ,1,449,65 ,1,450,65 ,1,451,65 ,1,452,205585 ,1,453,274865 ,1,454,65 ,1,455,65 ,1,456,65 ,1,457,65 ,1,458,65 ,1,459,65 ,1,460,65 ,1,461,65 ,1,462,203480 ,1,463,274775 ,1,464,231150 ,1,465,275755 ,1,466,65 ,1,467,65 ,1,468,299000 ,1,469,279080 ,1,470,230600 ,1,471,275745 ,1,472,65 ,1,473,65 ,1,474,65 ,1,475,65 ,1,476,65 ,1,477,65 ,1,478,244535 ,1,479,276545 ,1,480,227310 ,1,481,275640 ,1,482,228860 ,1,483,275650 ,1,484,296235 ,1,485,278965 ,1,486,293900 ,1,487,278845 ,1,488,250105 ,1,489,276750 ,1,490,65 ,1,491,65 ,1,492,347585 ,1,493,280445 ,1,494,239680 ,1,495,276180 ,1,496,65 ,1,497,65 ,1,498,6585 ,1,499,280480 ,1,500,65 ,1,501,65 ,1,502,284940 ,1,503,278095 ,1,504,65 ,1,505,65 ,1,506,65 ,1,507,65 ,1,508,65 ,1,509,65 ,1,510,300105 ,1,511,279180 ,1,512,65 ,1,513,65 ,1,514,281095 ,1,515,277605 ,1,516,214060 ,1,517,275105 ,1,518,65 ,1,519,65 ,1,520,65 ,1,521,65 ,1,522,252685 ,1,523,276845 ,1,524,281760 ,1,525,277625 ,1,526,65 ,1,527,65 ,1,528,65 ,1,529,65 ,1,530,65 ,1,531,65 ,1,532,65 ,1,533,65 ,1,534,65 ,1,535,65 ,1,536,65 ,1,537,65 ,1,538,65 ,1,539,65 ,1,540,65 ,1,541,65 ,1,542,199640 ,1,543,274655 ,1,544,65 ,1,545,65 ,1,546,306375 ,1,547,279790 ,1,548,303745 ,1,549,279540 ,1,550,65 ,1,551,65 ,1,552,65 ,1,553,65 ,1,554,287365 ,1,555,278430 ,1,556,65 ,1,557,65 ,1,558,65 ,1,559,65 ,1,560,65 ,1,561,65 ,1,562,65 ,1,563,65 ,1,564,282720 ,1,565,277870 ,1,566,286045 ,1,567,278245 ,1,568,65 ,1,569,65 ,1,570,65 ,1,571,65 ,1,572,65 ,1,573,65 ,1,574,65 ,1,575,65 ,1,576,65 ,1,577,65 ,1,578,65 ,1,579,65 ,1,580,65 ,1,581,65 ,1,582,65 ,1,583,65 ,1,584,240305 ,1,585,276205 ,1,586,6335 ,1,587,280590 ,1,588,65 ,1,589,65 ,1,590,65 ,1,591,65 ,1,592,223900 ,1,593,275480 ,1,594,292975 ,1,595,278825 ,1,596,243950 ,1,597,276420 ,1,598,287285 ,1,599,278410 ,1,600,65 ,1,601,65 ,1,602,65 ,1,603,65 ,1,604,310970 ,1,605,280170 ,1,606,65 ,1,607,65 ,1,608,287065 ,1,609,278365 ,1,610,65 ,1,611,65 ,1,612,180350 ,1,613,280570 ,1,614,265400 ,1,615,277160 ,1,616,65 ,1,617,65 ,1,618,65 ,1,619,65 ,1,620,302580 ,1,621,279400 ,1,622,307870 ,1,623,279945 ,1,624,244705 ,1,625,276575 ,1,626,270165 ,1,627,277295 ,1,628,65 ,1,629,65 ,1,630,65 ,1,631,65 ,1,632,282345 ,1,633,277730 ,1,634,65 ,1,635,65 ,1,636,226355 ,1,637,275595 ,1,638,311070 ,1,639,280180 ,1,640,65 ,1,641,65 ,1,642,65 ,1,643,65 ,1,644,65 ,1,645,65 ,1,646,255210 ,1,647,276970 ,1,648,228550 ,1,649,275700 ,1,650,308195 ,1,651,280000 ,1,652,283665 ,1,653,277925 ,1,654,200300 ,1,655,274675 ,1,656,65 ,1,657,65 ,1,658,65 ,1,659,65 ,1,660,65 ,1,661,65 ,1,662,6005 ,1,663,280675 ,1,664,307605 ,1,665,279860 ,1,666,65 ,1,667,65 ,1,668,65 ,1,669,65 ,1,670,65 ,1,671,65 ,1,672,253400 ,1,673,276900 ,1,674,65 ,1,675,65 ,1,676,65 ,1,677,65 ,1,678,65 ,1,679,65 ,1,680,207035 ,1,681,274930 ,1,682,65 ,1,683,65 ,1,684,252830 ,1,685,276835 ,1,686,226320 ,1,687,275585 ,1,688,65 ,1,689,65 ,1,690,217100 ,1,691,275215 ,1,692,277565 ,1,693,277395 ,1,694,201140 ,1,695,274715 ,1,696,244390 ,1,697,276505 ,1,698,239215 ,1,699,276150 ,1,700,289600 ,1,701,278735 ,1,702,307435 ,1,703,279820 ,1,704,282015 ,1,705,277690 ,1,706,286515 ,1,707,278305 ,1,708,65 ,1,709,65 ,1,710,307495 ,1,711,279840 ,1,712,65 ,1,713,65 ,1,714,65 ,1,715,65 ,1,716,65 ,1,717,65 ,1,718,65 ,1,719,65 ,1,720,65 ,1,721,65 ,1,722,65 ,1,723,65 ,1,724,65 ,1,725,65 ,1,726,65 ,1,727,65 ,1,728,300345 ,1,729,279210 ,1,730,229545 ,1,731,275720 ,1,732,230710 ,1,733,275615 ,1,734,65 ,1,735,65 ,1,736,65 ,1,737,65 ,1,738,65 ,1,739,65 ,1,740,289160 ,1,741,278640 ,1,742,5805 ,1,743,280665 ,1,744,65 ,1,745,65 ,1,746,284040 ,1,747,277970 ,1,748,65 ,1,749,65 ,1,750,65 ,1,751,65 ,1,752,65 ,1,753,65 ,1,754,65 ,1,755,65 ,1,756,65 ,1,757,65 ,1,758,65 ,1,759,65 ,1,760,65 ,1,761,65 ,1,762,65 ,1,763,65 ,1,764,65 ,1,765,65 ,1,766,65 ,1,767,65 ,1,768,308535 ,1,769,280020 ,1,770,65 ,1,771,65 ,1,772,65 ,1,773,65 ,1,774,65 ,1,775,65 ,1,776,65 ,1,777,65 ,1,778,65 ,1,779,65 ,1,780,65 ,1,781,65 ,1,782,65 ,1,783,65 ,1,784,214030 ,1,785,275095 ,1,786,245045 ,1,787,276600 ,1,788,288590 ,1,789,278550 ,1,790,65 ,1,791,65 ,1,792,224470 ,1,793,275520 ,1,794,283925 ,1,795,277960 ,1,796,65 ,1,797,65 ,1,798,65 ,1,799,65 ,1,800,65 ,1,801,65 ,1,802,189325 ,1,803,274485 ,1,804,65 ,1,805,65 ,1,806,65 ,1,807,65 ,1,808,65 ,1,809,65 ,1,810,65 ,1,811,65 ,1,812,300005 ,1,813,279150 ,1,814,65 ,1,815,65 ,1,816,246015 ,1,817,276610 ,1,818,200270 ,1,819,274685 ,1,820,65 ,1,821,65 ,1,822,242685 ,1,823,276310 ,1,824,65 ,1,825,65 ,1,826,65 ,1,827,65 ,1,828,65 ,1,829,65 ,1,830,65 ,1,831,65 ,1,832,65 ,1,833,65 ,1,834,235760 ,1,835,276130 ,1,836,282650 ,1,837,277805 ,1,838,65 ,1,839,65 ,1,840,65 ,1,841,65 ,1,842,65 ,1,843,65 ,1,844,301295 ,1,845,279300 ,1,846,65 ,1,847,65 ,1,848,279055 ,1,849,277505 ,1,850,65 ,1,851,65 ,1,852,65 ,1,853,65 ,1,854,65 ,1,855,65 ,1,856,251770 ,1,857,276825 ,1,858,199035 ,1,859,274585 ,1,860,65 ,1,861,65 ,1,862,65 ,1,863,65 ,1,864,289210 ,1,865,278650 ,1,866,65 ,1,867,65 ,1,868,238300 ,1,869,275970 ,1,870,65 ,1,871,65 ,1,872,240440 ,1,873,276225 ,1,874,65 ,1,875,65 ,1,876,65 ,1,877,65 ,1,878,285320 ,1,879,278140 ,1,880,65 ,1,881,65 ,1,882,331200 ,1,883,280360 ,1,884,268870 ,1,885,277225 ,1,886,221375 ,1,887,275320 ,1,888,299725 ,1,889,279120 ,1,890,304020 ,1,891,279600 ,1,892,65 ,1,893,65 ,1,894,294295 ,1,895,278905 ,1,896,306475 ,1,897,279765 ,1,898,205535 ,1,899,274835 ,1,900,288780 ,1,901,278585 ,1,902,65 ,1,903,65 ,1,904,65 ,1,905,65 ,1,906,221470 ,1,907,275330 ,1,908,254895 ,1,909,276930 ,1,910,65 ,1,911,65 ,1,912,288175 ,1,913,278500 ,1,914,286865 ,1,915,278345 ,1,916,290945 ,1,917,278815 ,1,918,65 ,1,919,65 ,1,920,65 ,1,921,65 ,1,922,65 ,1,923,65 ,1,924,65 ,1,925,65 ,1,926,65 ,1,927,65 ,1,928,65 ,1,929,65 ,1,930,269765 ,1,931,277245 ,1,932,302505 ,1,933,279410 ,1,934,343345 ,1,935,280395 ,1,936,204300 ,1,937,274795 ,1,938,248405 ,1,939,276675 ,1,940,286120 ,1,941,278255 ,1,942,65 ,1,943,65 ,1,944,65 ,1,945,65 ,1,946,65 ,1,947,65 ,1,948,243570 ,1,949,276360 ,1,950,65 ,1,951,65 ,1,952,65 ,1,953,65 ,1,954,65 ,1,955,65 ,1,956,65 ,1,957,65 ,1,958,65 ,1,959,65 ,1,960,65 ,1,961,65 ,1,962,65 ,1,963,65 ,1,964,65 ,1,965,65 ,1,966,65 ,1,967,65 ,1,968,65 ,1,969,65 ,1,970,65 ,1,971,65 ,1,972,246705 ,1,973,276645 ,1,974,298445 ,1,975,279040 ,1,976,65 ,1,977,65 ,1,978,309885 ,1,979,280055 ,1,980,270590 ,1,981,277285 ,1,982,65 ,1,983,65 ,1,984,208645 ,1,985,274985 ,1,986,65 ,1,987,65 ,1,988,65 ,1,989,65 ,1,990,199225 ,1,991,274555 ,1,992,256260 ,1,993,276815 ,1,994,65 ,1,995,65 ,1,996,65 ,1,997,65 ,1,998,65 ,1,999,65 ,1,1000,65 ,1,1001,65 ,1,1002,65 ,1,1003,65 ,1,1004,65 ,1,1005,65 ,1,1006,65 ,1,1007,65 ,1,1008,65 ,1,1009,65 ,1,1010,244430 ,1,1011,276515 ,1,1012,65 ,1,1013,65 ,1,1014,204105 ,1,1015,274805 ,1,1016,65 ,1,1017,65 ,1,1018,307780 ,1,1019,279920 ,1,1020,65 ,1,1021,65 ,1,1022,65 ,1,1023,65 ,1,1024,307810 ,1,1025,279930 ,1,1026,233045 ,1,1027,275935 ,1,1028,288360 ,1,1029,278520 ,1,1030,285395 ,1,1031,278150 ,1,1032,65 ,1,1033,65 ,1,1034,308020 ,1,1035,279965 ,1,1036,65 ,1,1037,65 ,1,1038,214440 ,1,1039,275135 ,1,1040,258085 ,1,1041,277035 ,1,1042,310485 ,1,1043,280115 ,1,1044,303040 ,1,1045,279455 ,1,1046,291940 ,1,1047,280645 ,1,1048,10510 ,1,1049,280500 ,1,1050,304835 ,1,1051,279630 ,1,1052,65 ,1,1053,65 ,1,1054,179740 ,1,1055,274475 ,1,1056,65 ,1,1057,65 ,1,1058,284285 ,1,1059,278010 ,1,1060,290585 ,1,1061,278755 ,1,1062,299350 ,1,1063,279090 ,1,1064,65 ,1,1065,65 ,1,1066,65 ,1,1067,65 ,1,1068,65 ,1,1069,65 ,1,1070,199750 ,1,1071,274625 ,1,1072,312385 ,1,1073,280240 ,1,1074,305695 ,1,1075,279700 ,1,1076,287955 ,1,1077,278490 ,1,1078,278300 ,1,1079,277450 ,1,1080,65 ,1,1081,65 ,1,1082,65 ,1,1083,65 ,1,1084,65 ,1,1085,65 ,1,1086,65 ,1,1087,65 ,1,1088,65 ,1,1089,65 ,1,1090,65 ,1,1091,65 ,1,1092,65 ,1,1093,65 ,1,1094,65 ,1,1095,65 ,1,1096,302075 ,1,1097,279335 ,1,1098,65 ,1,1099,65 ,1,1100,211720 ,1,1101,275010 ,1,1102,65 ,1,1103,65 ,1,1104,65 ,1,1105,65 ,1,1106,310285 ,1,1107,280075 ,1,1108,65 ,1,1109,65 ,1,1110,65 ,1,1111,65 ,1,1112,65 ,1,1113,65 ,1,1114,65 ,1,1115,65 ,1,1116,65 ,1,1117,65 ,1,1118,65 ,1,1119,65 ,1,1120,65 ,1,1121,65 ,1,1122,65 ,1,1123,65 ,1,1124,65 ,1,1125,65 ,1,1126,65 ,1,1127,65 ,1,1128,65 ,1,1129,65 ,1,1130,65 ,1,1131,65 ,1,1132,65 ,1,1133,65 ,1,1134,232525 ,1,1135,275875 ,1,1136,235585 ,1,1137,276075 ,1,1138,241930 ,1,1139,276265 ,1,1140,270380 ,1,1141,277315 ,1,1142,65 ,1,1143,65 ,1,1144,65 ,1,1145,65 ,1,1146,303915 ,1,1147,279570 ,1,1148,283760 ,1,1149,277935 ,1,1150,65 ,1,1151,65 ,1,1152,280915 ,1,1153,277585 ,1,1154,255070 ,1,1155,276940 ,1,1156,65 ,1,1157,65 ,1,1158,65 ,1,1159,65 ,1,1160,65 ,1,1161,65 ,1,1162,65 ,1,1163,65 ,1,1164,65 ,1,1165,65 ,1,1166,65 ,1,1167,65 ,1,1168,65 ,1,1169,65 ,1,1170,65 ,1,1171,65 ,1,1172,65 ,1,1173,65 ,1,1174,224625 ,1,1175,275500 ,1,1176,304880 ,1,1177,279640 ,1,1178,65 ,1,1179,65 ,1,1180,206935 ,1,1181,274920 ,1,1182,254660 ,1,1183,276910 ,1,1184,242585 ,1,1185,276275 ,1,1186,65 ,1,1187,65 ,1,1188,279470 ,1,1189,277550 ,1,1190,295470 ,1,1191,278915 ,1,1192,276850 ,1,1193,277355 ,1,1194,276635 ,1,1195,277335 ,1,1196,265645 ,1,1197,277185 ,1,1198,266360 ,1,1199,277195 ,1,1200,303690 ,1,1201,279525 ,1,1202,65 ,1,1203,65 ,1,1204,65 ,1,1205,65 ,1,1206,203880 ,1,1207,274785 ,1,1208,283480 ,1,1209,277905 ,1,1210,216635 ,1,1211,275175 ,1,1212,65 ,1,1213,65 ,1,1214,65 ,1,1215,65 ,1,1216,347430 ,1,1217,280435 ,1,1218,309970 ,1,1219,280065 ,1,1220,261145 ,1,1221,276805 ,1,1222,65 ,1,1223,65 ,1,1224,65 ,1,1225,65 ,1,1226,65 ,1,1227,65 ,1,1228,65 ,1,1229,65 ,1,1230,301820 ,1,1231,279190 ,1,1232,331010 ,1,1233,280340 ,1,1234,65 ,1,1235,65 ,1,1236,232080 ,1,1237,275855 ,1,1238,249205 ,1,1239,276695 ,1,1240,222795 ,1,1241,275420 ,1,1242,235395 ,1,1243,276040 ,1,1244,282885 ,1,1245,277850 ,1,1246,223685 ,1,1247,275395 ,1,1248,65 ,1,1249,65 ,1,1250,290680 ,1,1251,278795 ,1,1252,65 ,1,1253,65 ,1,1254,65 ,1,1255,65 ,1,1256,287175 ,1,1257,278390 ,1,1258,194115 ,1,1259,274505 ,1,1260,239530 ,1,1261,276160 ,1,1262,265615 ,1,1263,277170 ,1,1264,288905 ,1,1265,278605 ,1,1266,65 ,1,1267,65 ,1,1268,65 ,1,1269,65 ,1,1270,280805 ,1,1271,277560 ,1,1272,305410 ,1,1273,279620 ,1,1274,65 ,1,1275,65 ,1,1276,65 ,1,1277,65 ,1,1278,65 ,1,1279,65 ,1,1280,267780 ,1,1281,275145 ,1,1282,65 ,1,1283,65 ,1,1284,229905 ,1,1285,275735 ,1,1286,65 ,1,1287,65 ,1,1288,65 ,1,1289,65 ,1,1290,254805 ,1,1291,276920 ,1,1292,65 ,1,1293,65 ,1,1294,65 ,1,1295,65 ,1,1296,65 ,1,1297,65 ,1,1298,4535 ,1,1299,280580 ,1,1300,65 ,1,1301,65 ,1,1302,65 ,1,1303,65 ,1,1304,65 ,1,1305,65 ,1,1306,65 ,1,1307,65 ,1,1308,289075 ,1,1309,278620 ,1,1310,65 ,1,1311,65 ,1,1312,248640 ,1,1313,275805 ,1,1314,281895 ,1,1315,277655 ,1,1316,216975 ,1,1317,275195 ,1,1318,285785 ,1,1319,278205 ,1,1320,65 ,1,1321,65 ,1,1322,261440 ,1,1323,277100 ,1,1324,222310 ,1,1325,275375 ,1,1326,65 ,1,1327,65 ,1,1328,217750 ,1,1329,275205 ,1,1330,288455 ,1,1331,278530 ,1,1332,65 ,1,1333,65 ,1,1334,65 ,1,1335,65 ,1,1336,197195 ,1,1337,274565 ,1,1338,65 ,1,1339,65 ,1,1340,65 ,1,1341,65 ,1,1342,65 ,1,1343,65 ,1,1344,65 ,1,1345,65 ,1,1346,4430 ,1,1347,280655 ,1,1348,65 ,1,1349,65 ,1,1350,65 ,1,1351,65 ,1,1352,65 ,1,1353,65 ,1,1354,65 ,1,1355,65 ,1,1356,249225 ,1,1357,276705 ,1,1358,199355 ,1,1359,274605 ,1,1360,65 ,1,1361,65 ,1,1362,65 ,1,1363,65 ,1,1364,65 ,1,1365,65 ,1,1366,240860 ,1,1367,276235 ,1,1368,65 ,1,1369,65 ,1,1370,65 ,1,1371,65 ,1,1372,301075 ,1,1373,279280 ,1,1374,238850 ,1,1375,275960 ,1,1376,65 ,1,1377,65 ,1,1378,65 ,1,1379,65 ,1,1380,65 ,1,1381,65 ,1,1382,65 ,1,1383,65 ,1,1384,302600 ,1,1385,279420 ,1,1386,65 ,1,1387,65 ,1,1388,65 ,1,1389,65 ,1,1390,65 ,1,1391,65 ,1,1392,65 ,1,1393,65 ,1,1394,232550 ,1,1395,275905 ,1,1396,220925 ,1,1397,275300 ,1,1398,282495 ,1,1399,277750 ,1,1400,232710 ,1,1401,275915 ,1,1402,347320 ,1,1403,280425 ,1,1404,65 ,1,1405,65 ,1,1406,232930 ,1,1407,275925 ,1,1408,65 ,1,1409,65 ,1,1410,270350 ,1,1411,277305 ,1,1412,223795 ,1,1413,275440 ,1,1414,65 ,1,1415,65 ,1,1416,65 ,1,1417,65 ,1,1418,197150 ,1,1419,274495 ,1,1420,65 ,1,1421,65 ,1,1422,65 ,1,1423,65 ,1,1424,65 ,1,1425,65 ,1,1426,198160 ,1,1427,274575 ,1,1428,253025 ,1,1429,276855 ,1,1430,65 ,1,1431,65 ,1,1432,65 ,1,1433,65 ,1,1434,65 ,1,1435,65 ,1,1436,331140 ,1,1437,280350 ,1,1438,241740 ,1,1439,276170 ,1,1440,65 ,1,1441,65 ,1,1442,266680 ,1,1443,277205 ,1,1444,281740 ,1,1445,277635 ,1,1446,288705 ,1,1447,278575 ,1,1448,65 ,1,1449,65 ,1,1450,65 ,1,1451,65 ,1,1452,244600 ,1,1453,276555 ,1,1454,299830 ,1,1455,279130 ,1,1456,249910 ,1,1457,276760 ,1,1458,299575 ,1,1459,279110 ,1,1460,248095 ,1,1461,275815 ,1,1462,65 ,1,1463,65 ,1,1464,287980 ,1,1465,278460 ,1,1466,65 ,1,1467,65 ,1,1468,65 ,1,1469,65 ,1,1470,211940 ,1,1471,275020 ,1,1472,65 ,1,1473,65 ,1,1474,65 ,1,1475,65 ,1,1476,65 ,1,1477,65 ,1,1478,65 ,1,1479,65 ,1,1480,9395 ,1,1481,280610 ,1,1482,286310 ,1,1483,278275 ,1,1484,65 ,1,1485,65 ,1,1486,65 ,1,1487,65 ,1,1488,65 ,1,1489,65 ,1,1490,269340 ,1,1491,274615 ,1,1492,249635 ,1,1493,276725 ,1,1494,65 ,1,1495,65 ,1,1496,302695 ,1,1497,279435 ,1,1498,65 ,1,1499,65 ,1,1500,265520 ,1,1501,275185 ,1,1502,65 ,1,1503,65 ,1,1504,226590 ,1,1505,275605 ,1,1506,310740 ,1,1507,280160 ,1,1508,65 ,1,1509,65 ,1,1510,303285 ,1,1511,279495 ,1,1512,65 ,1,1513,65 ,1,1514,65 ,1,1515,65 ,1,1516,243660 ,1,1517,276380 ,1,1518,9275 ,1,1519,280490 ,1,1520,289645 ,1,1521,278745 ,1,1522,65 ,1,1523,65 ,1,1524,282555 ,1,1525,277760 ,1,1526,246675 ,1,1527,276285 ,1,1528,288235 ,1,1529,278510 ,1,1530,65 ,1,1531,65 ,1,1532,65 ,1,1533,65 ,1,1534,224295 ,1,1535,275530 ,1,1536,65 ,1,1537,65 ,1,1538,65 ,1,1539,65 ,1,1540,65 ,1,1541,65 ,1,1542,284115 ,1,1543,277980 ,1,1544,65 ,1,1545,65 ,1,1546,65 ,1,1547,65 ,1,1548,290320 ,1,1549,277415 ,1,1550,65 ,1,1551,65 ,1,1552,65 ,1,1553,65 ,1,1554,213825 ,1,1555,275085 ,1,1556,253125 ,1,1557,276865 ,1,1558,235930 ,1,1559,276120 ,1,1560,312160 ,1,1561,280220 ,1,1562,308705 ,1,1563,280045 ,1,1564,65 ,1,1565,65 ,1,1566,230200 ,1,1567,275630 ,1,1568,65 ,1,1569,65 ,1,1570,203255 ,1,1571,274765 ,1,1572,65 ,1,1573,65 ,1,1574,295935 ,1,1575,278955 ,1,1576,218290 ,1,1577,275270 ,1,1578,236695 ,1,1579,276140 ,1,1580,306030 ,1,1581,279720 ,1,1582,282535 ,1,1583,277795 ,1,1584,65 ,1,1585,65 ,1,1586,65 ,1,1587,65 ,1,1588,248815 ,1,1589,275765 ,1,1590,65 ,1,1591,65 ,1,1592,244640 ,1,1593,276565 ,1,1594,300325 ,1,1595,279200 ,1,1596,264920 ,1,1597,277140 ,1,1598,206195 ,1,1599,274885 ,1,1600,65 ,1,1601,65 ,1,1602,197590 ,1,1603,274535 ,1,1604,243630 ,1,1605,276370 ,1,1606,312640 ,1,1607,280250 ,1,1608,281990 ,1,1609,277700 ,1,1610,65 ,1,1611,65 ,1,1612,305430 ,1,1613,279690 ,1,1614,65 ,1,1615,65 ,1,1616,269875 ,1,1617,277235 ,1,1618,243990 ,1,1619,276430 ,1,1620,305970 ,1,1621,279710 ,1,1622,296330 ,1,1623,278990 ,1,1624,244480 ,1,1625,276525 ,1,1626,65 ,1,1627,65 ,1,1628,285025 ,1,1629,278105 ,1,1630,307750 ,1,1631,279910 ,1,1632,65 ,1,1633,65 ,1,1634,286965 ,1,1635,278355 ,1,1636,244075 ,1,1637,276455 ,1,1638,65 ,1,1639,65 ,1,1640,65 ,1,1641,65 ,1,1642,288655 ,1,1643,278560 ,1,1644,65 ,1,1645,65 ,1,1646,65 ,1,1647,65 ,1,1648,65 ,1,1649,65 ,1,1650,65 ,1,1651,65 ,1,1652,65 ,1,1653,65 ,1,1654,65 ,1,1655,65 ,1,1656,212430 ,1,1657,275040 ,1,1658,65 ,1,1659,65 ,1,1660,65 ,1,1661,65 ,1,1662,306250 ,1,1663,279755 ,1,1664,259755 ,1,1665,277045 ,1,1666,65 ,1,1667,65 ,1,1668,65 ,1,1669,65 ,1,1670,65 ,1,1671,65 ,1,1672,65 ,1,1673,65 ,1,1674,65 ,1,1675,65 ,1,1676,65 ,1,1677,65 ,1,1678,65 ,1,1679,65 ,1,1680,65 ,1,1681,65 ,1,1682,65 ,1,1683,65 ,1,1684,329100 ,1,1685,280280 ,1,1686,281005 ,1,1687,277595 ,1,1688,300655 ,1,1689,279230 ,1,1690,8885 ,1,1691,280550 ,1,1692,307990 ,1,1693,279955 ,1,1694,332075 ,1,1695,280375 ,1,1696,286420 ,1,1697,278295 ,1,1698,65 ,1,1699,65 ,1,1700,65 ,1,1701,65 ,1,1702,65 ,1,1703,65 ,1,1704,65 ,1,1705,65 ,1,1706,65 ,1,1707,65 ,1,1708,65 ,1,1709,65 ,1,1710,65 ,1,1711,65 ,1,1712,65 ,1,1713,65 ,1,1714,65 ,1,1715,65 ,1,1716,65 ,1,1717,65 ,1,1718,278250 ,1,1719,277460 ,1,1720,65 ,1,1721,65 ,1,1722,65 ,1,1723,65 ,1,1724,263750 ,1,1725,277110 ,1,1726,65 ,1,1727,65 ,1,1728,65 ,1,1729,65 ,1,1730,307565 ,1,1731,279850 ,1,1732,65 ,1,1733,65 ,1,1734,65 ,1,1735,65 ,1,1736,253295 ,1,1737,276875 ,1,1738,65 ,1,1739,65 ,1,1740,65 ,1,1741,65 ,1,1742,65 ,1,1743,65 ,1,1744,65 ,1,1745,65 ,1,1746,65 ,1,1747,65 ,1,1748,65 ,1,1749,65 ,1,1750,65 ,1,1751,65 ,1,1752,299920 ,1,1753,279140 ,1,1754,261625 ,1,1755,275340 ,1,1756,281855 ,1,1757,277645 ,1,1758,289300 ,1,1759,278680 ,1,1760,65 ,1,1761,65 ,1,1762,65 ,1,1763,65 ,1,1764,65 ,1,1765,65 ,1,1766,310430 ,1,1767,280105 ,1,1768,347290 ,1,1769,280405 ,1,1770,65 ,1,1771,65 ,1,1772,300805 ,1,1773,279250 ,1,1774,65 ,1,1775,65 ,1,1776,65 ,1,1777,65 ,1,1778,284755 ,1,1779,278060 ,1,1780,300675 ,1,1781,279240 ,1,1782,255170 ,1,1783,276960 ,1,1784,244025 ,1,1785,276445 ,1,1786,267225 ,1,1787,275165 ,1,1788,293585 ,1,1789,278835 ,1,1790,65 ,1,1791,65 ,1,1792,282110 ,1,1793,277710 ,1,1794,65 ,1,1795,65 ,1,1796,65 ,1,1797,65 ,1,1798,65 ,1,1799,65 ,1,1800,279255 ,1,1801,277515 ,1,1802,65 ,1,1803,65 ,1,1804,65 ,1,1805,65 ,1,1806,249280 ,1,1807,276715 ,1,1808,242765 ,1,1809,276330 ,1,1810,263950 ,1,1811,277120 ,1,1812,65 ,1,1813,65 ,1,1814,301495 ,1,1815,279325 ,1,1816,278590 ,1,1817,277495 ,1,1818,285220 ,1,1819,278125 ,1,1820,205310 ,1,1821,274825 ,1,1822,65 ,1,1823,65 ,1,1824,65 ,1,1825,65 ,1,1826,200830 ,1,1827,274705 ,1,1828,65 ,1,1829,65 ,1,1830,65 ,1,1831,65 ,1,1832,65 ,1,1833,65 ,1,1834,306200 ,1,1835,279745 ,1,1836,65 ,1,1837,65 ,1,1838,218815 ,1,1839,275290 ,1,1840,8505 ,1,1841,280600 ,1,1842,261000 ,1,1843,277065 ,1,1844,65 ,1,1845,65 ,1,1846,247105 ,1,1847,276655 ,1,1848,308615 ,1,1849,280030 ,1,1850,246320 ,1,1851,276620 ,1,1852,65 ,1,1853,65 ,1,1854,284200 ,1,1855,278000 ,1,1856,65 ,1,1857,65 ,1,1858,65 ,1,1859,65 ,1,1860,65 ,1,1861,65 ,1,1862,65 ,1,1863,65 ,1,1864,65 ,1,1865,65 ,1,1866,301415 ,1,1867,279310 ,1,1868,255100 ,1,1869,276950 ,1,1870,289405 ,1,1871,278700 ,1,1872,276935 ,1,1873,277385 ,1,1874,256815 ,1,1875,277000 ,1,1876,174350 ,1,1877,274415 ,1,1878,65 ,1,1879,65 ,1,1880,65 ,1,1881,65 ,1,1882,242870 ,1,1883,276350 ,1,1884,243805 ,1,1885,276410 ,1,1886,65 ,1,1887,65 ,1,1888,65 ,1,1889,65 ,1,1890,65 ,1,1891,65 ,1,1892,65 ,1,1893,65 ,1,1894,65 ,1,1895,65 ,1,1896,287155 ,1,1897,278400 ,1,1898,65 ,1,1899,65 ,1,1900,65 ,1,1901,65 ,1,1902,213655 ,1,1903,275075 ,1,1904,208465 ,1,1905,274965 ,1,1906,285955 ,1,1907,278225 ,1,1908,65 ,1,1909,65 ,1,1910,173570 ,1,1911,274405 ,1,1912,225290 ,1,1913,275550 ,1,1914,65 ,1,1915,65 ,1,1916,303400 ,1,1917,279505 ,1,1918,302320 ,1,1919,279355 ,1,1920,65 ,1,1921,65 ,1,1922,65 ,1,1923,65 ,1,1924,341275 ,1,1925,280385 ,1,1926,250295 ,1,1927,276770 ,1,1928,233475 ,1,1929,275950 ,1,1930,65 ,1,1931,65 ,1,1932,65 ,1,1933,65 ,1,1934,65 ,1,1935,65 ,1,1936,65 ,1,1937,65 ,1,1938,65 ,1,1939,65 ,1,1940,8230 ,1,1941,280560 ,1,1942,244230 ,1,1943,276465 ,1,1944,65 ,1,1945,65 ,1,1946,265015 ,1,1947,277150 ,1,1948,65 ,1,1949,65 ,1,1950,269940 ,1,1951,277255 ,1,1952,65 ,1,1953,65 ,1,1954,298835 ,1,1955,279050 ,1,1956,65 ,1,1957,65 ,1,1958,301200 ,1,1959,279290 ,1,1960,65 ,1,1961,65 ,1,1962,65 ,1,1963,65 ,1,1964,65 ,1,1965,65 ,1,1966,65 ,1,1967,65 ,1,1968,65 ,1,1969,65 ,1,1970,65 ,1,1971,65 ,1,1972,268040 ,1,1973,277215 ,1,1974,235035 ,1,1975,276030 ,1,1976,282445 ,1,1977,277740 ,1,1978,197380 ,1,1979,274525 ,1,1980,65 ,1,1981,65 ,1,1982,65 ,1,1983,65 ,1,1984,65 ,1,1985,65 ,1,1986,65 ,1,1987,65 ,1,1988,65 ,1,1989,65 ,1,1990,65 ,1,1991,65 ,1,1992,239055 ,1,1993,275865 ,1,1994,284585 ,1,1995,278040 ,1,1996,307670 ,1,1997,279870 ,1,1998,65 ,1,1999,65 ,1,2000,65 ,1,2001,65 ,1,2002,65 ,1,2003,65 ,1,2004,65 ,1,2005,65 ,1,2006,65 ,1,2007,65 ,1,2008,65 ,1,2009,65 ,1,2010,65 ,1,2011,65 ,1,2012,65 ,1,2013,65 ,1,2014,65 ,1,2015,65 ,1,2016,65 ,1,2017,65 ,1,2018,285875 ,1,2019,278215 ,1,2020,281600 ,1,2021,277615 ,1,2022,65 ,1,2023,65 ,1,2024,65 ,1,2025,65 ,1,2026,244285 ,1,2027,276475 ,1,2028,297645 ,1,2029,279020 ,1,2030,205970 ,1,2031,274875 ,1,2032,277340 ,1,2033,277405 ,1,2034,65 ,1,2035,65 ,1,2036,283575 ,1,2037,277915 ,1,2038,224180 ,1,2039,275510 ,1,2040,206640 ,1,2041,274900 ,1,2042,303605 ,1,2043,279515 ,1,2044,284380 ,1,2045,278020 ,1,2046,243715 ,1,2047,276400 ,1,2048,65 ,1,2049,65 ,2,14956,259290 ,2,822,34730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,147400 ,2,14979,333550 ,2,829,45 ,2,14956,229640 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150400 ,2,14979,335270 ,2,829,45 ,1,0,274090 ,1,1,45 ,1,2,45 ,2,14956,229115 ,2,822,34730 ,2,14975,110 ,2,14976,89120 ,2,14977,23120 ,2,14965,45 ,2,14978,234505 ,2,14979,335280 ,2,829,45 ,1,0,45 ,1,1,48780 ,1,2,613640 ,2,14956,259390 ,2,822,34730 ,2,14975,568460 ,2,14976,24020 ,2,14977,90570 ,2,14965,45 ,2,14978,45 ,2,14979,335295 ,2,829,45 ,2,14956,259410 ,2,822,34730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150430 ,2,14979,398065 ,2,829,45 ,2,14956,259400 ,2,822,34730 ,2,14975,110 ,2,14976,76165 ,2,14977,23120 ,2,14965,45 ,2,14978,234515 ,2,14979,335315 ,2,829,45 ,1,0,274100 ,1,1,45 ,1,2,45 ,2,14956,259370 ,2,822,34730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150345 ,2,14979,335260 ,2,829,45 ,1,0,45 ,1,1,48800 ,1,2,613640 ,2,14956,229115 ,2,822,34730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150400 ,2,14979,333855 ,2,829,45 ,2,14956,259400 ,2,822,34730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150430 ,2,14979,335325 ,2,829,45 ,2,14956,259465 ,2,822,35160 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150515 ,2,14979,2415 ,2,829,45 ,1,0,274130 ,1,1,45 ,1,2,45 ,2,14956,259455 ,2,822,35160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234525 ,2,14979,335375 ,2,829,45 ,1,0,48885 ,1,1,48850 ,1,2,45 ,1,3,48840 ,1,4,48830 ,1,5,45 ,1,6,48820 ,1,7,613975 ,2,14956,256550 ,2,822,35160 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150535 ,2,14979,397780 ,2,829,45 ,2,14956,256540 ,2,822,35160 ,2,14975,110 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,234535 ,2,14979,335400 ,2,829,45 ,1,0,224195 ,2,14956,256635 ,2,822,35160 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150560 ,2,14979,397785 ,2,829,45 ,2,14956,256520 ,2,822,35160 ,2,14975,110 ,2,14976,76165 ,2,14977,23120 ,2,14965,45 ,2,14978,234545 ,2,14979,335420 ,2,829,45 ,2,14956,259505 ,2,822,35160 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,150580 ,2,14979,2415 ,2,829,45 ,2,14956,259485 ,2,822,35160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234555 ,2,14979,335470 ,2,829,45 ,2,14956,259475 ,2,822,35220 ,2,14975,578825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335490 ,2,829,45 ,2,14956,259515 ,2,822,35160 ,2,14975,578840 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,335500 ,2,829,45 ,1,0,270010 ,1,1,274140 ,1,2,45 ,2,14956,182390 ,2,822,35160 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385725 ,2,829,45 ,1,0,48940 ,1,1,48930 ,1,2,48915 ,1,3,45 ,1,4,45 ,1,5,48905 ,1,6,614045 ,2,14956,259455 ,2,822,35160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,150515 ,2,14979,335385 ,2,829,45 ,2,14956,256540 ,2,822,35160 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150535 ,2,14979,335410 ,2,829,45 ,1,0,224220 ,1,1,224210 ,2,14956,256520 ,2,822,35160 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,150560 ,2,14979,335430 ,2,829,45 ,1,0,577350 ,2,14956,184135 ,2,822,35160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380825 ,2,829,45 ,2,14956,223625 ,2,822,35160 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365980 ,2,829,45 ,1,0,224290 ,1,1,224280 ,1,2,224240 ,1,3,224230 ,2,14956,259485 ,2,822,35160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,150580 ,2,14979,335480 ,2,829,45 ,2,14956,217195 ,2,822,35160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369605 ,2,829,45 ,2,14956,259525 ,2,822,35160 ,2,14975,563735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335520 ,2,829,45 ,1,0,274150 ,1,1,45 ,1,2,45 ,2,14956,217455 ,2,822,35200 ,2,14975,568360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385050 ,2,829,45 ,1,0,45 ,1,1,48960 ,1,2,613640 ,2,14956,213590 ,2,822,35200 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260035 ,2,14979,386045 ,2,829,45 ,2,14956,227050 ,2,822,35200 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260070 ,2,14979,381930 ,2,829,45 ,2,14956,259320 ,2,822,35200 ,2,14975,578850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260080 ,2,14979,416500 ,2,829,45 ,1,0,274160 ,1,1,45 ,1,2,45 ,2,14956,4490 ,2,822,28065 ,2,14975,110 ,2,14976,90660 ,2,14977,90650 ,2,14965,45 ,2,14978,250740 ,2,14979,2415 ,2,829,45 ,1,0,265045 ,1,1,265020 ,1,2,265010 ,1,3,265000 ,1,4,264990 ,1,5,264980 ,1,6,264970 ,1,7,264960 ,1,8,264950 ,1,9,264915 ,2,14956,257035 ,2,822,35200 ,2,14975,578855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260090 ,2,14979,416505 ,2,829,45 ,1,0,265020 ,1,1,265045 ,1,2,265000 ,1,3,264980 ,1,4,45 ,1,5,45 ,1,6,264960 ,1,7,264915 ,1,8,264950 ,1,9,45 ,1,10,265010 ,1,11,264970 ,1,12,264990 ,1,13,45 ,1,14,621000 ,2,14956,4490 ,2,822,35200 ,2,14975,110 ,2,14976,90680 ,2,14977,90670 ,2,14965,45 ,2,14978,250755 ,2,14979,2415 ,2,829,45 ,1,0,280665 ,1,1,280580 ,1,2,280560 ,1,3,280655 ,1,4,280675 ,1,5,280610 ,1,6,280550 ,1,7,280500 ,1,8,280600 ,1,9,280480 ,1,10,280645 ,1,11,280590 ,1,12,280570 ,1,13,280490 ,1,14,274505 ,1,15,274495 ,1,16,274465 ,1,17,280470 ,1,18,279455 ,1,19,279335 ,1,20,279400 ,1,21,280240 ,1,22,280540 ,1,23,279495 ,1,24,280220 ,1,25,275145 ,1,26,280075 ,1,27,279090 ,1,28,279190 ,1,29,278865 ,1,30,279345 ,1,31,279505 ,1,32,279465 ,1,33,277415 ,1,34,279945 ,1,35,275225 ,1,36,277405 ,1,37,277395 ,1,38,279020 ,1,39,276020 ,1,40,279300 ,1,41,277245 ,1,42,279210 ,1,43,279290 ,1,44,279240 ,1,45,279150 ,1,46,279220 ,1,47,280010 ,1,48,279140 ,1,49,279800 ,1,50,280020 ,1,51,280360 ,1,52,280115 ,1,53,279610 ,1,54,280105 ,1,55,280230 ,1,56,279130 ,1,57,277325 ,1,58,279250 ,1,59,279180 ,1,60,279230 ,1,61,279280 ,1,62,280330 ,1,63,280300 ,1,64,280405 ,1,65,280340 ,1,66,280350 ,1,67,279200 ,1,68,274795 ,1,69,277170 ,1,70,278835 ,1,71,277215 ,1,72,277385 ,1,73,277355 ,1,74,277185 ,1,75,277235 ,1,76,279325 ,1,77,279310 ,1,78,280030 ,1,79,274535 ,1,80,274615 ,1,81,274555 ,1,82,274595 ,1,83,274565 ,1,84,274605 ,1,85,275420 ,1,86,279030 ,1,87,274475 ,1,88,276565 ,1,89,280125 ,1,90,279955 ,1,91,275960 ,1,92,279010 ,1,93,276620 ,1,94,276630 ,1,95,274425 ,1,96,274675 ,1,97,274515 ,1,98,275215 ,1,99,280000 ,1,100,274415 ,1,101,280385 ,1,102,275020 ,1,103,274715 ,1,104,274930 ,1,105,274525 ,1,106,275095 ,1,107,274485 ,1,108,274815 ,1,109,276130 ,1,110,275640 ,1,111,274835 ,1,112,274900 ,1,113,275745 ,1,114,275510 ,1,115,274875 ,1,116,275720 ,1,117,274855 ,1,118,275660 ,1,119,275530 ,1,120,275735 ,1,121,279810 ,1,122,274865 ,1,123,276715 ,1,124,275650 ,1,125,280435 ,1,126,275690 ,1,127,275520 ,1,128,276750 ,1,129,275365 ,1,130,276475 ,1,131,276760 ,1,132,279850 ,1,133,276370 ,1,134,276465 ,1,135,276320 ,1,136,276310 ,1,137,276380 ,1,138,278965 ,1,139,279540 ,1,140,276330 ,1,141,276610 ,1,142,276505 ,1,143,276495 ,1,144,276455 ,1,145,280375 ,1,146,279100 ,1,147,276445 ,1,148,279860 ,1,149,276360 ,1,150,275385 ,1,151,276205 ,1,152,277065 ,1,153,279870 ,1,154,274585 ,1,155,276430 ,1,156,277255 ,1,157,276225 ,1,158,276190 ,1,159,276170 ,1,160,277035 ,1,161,277020 ,1,162,280455 ,1,163,275845 ,1,164,277055 ,1,165,276140 ,1,166,275135 ,1,167,280425 ,1,168,276420 ,1,169,276055 ,1,170,277335 ,1,171,276065 ,1,172,276075 ,1,173,278845 ,1,174,276865 ,1,175,275395 ,1,176,276545 ,1,177,280280 ,1,178,276400 ,1,179,276525 ,1,180,274575 ,1,181,277010 ,1,182,276805 ,1,183,276575 ,1,184,276645 ,1,185,276285 ,1,186,276600 ,1,187,277100 ,1,188,276515 ,1,189,276410 ,1,190,275270 ,1,191,275195 ,1,192,274725 ,1,193,275855 ,1,194,275915 ,1,195,275925 ,1,196,275935 ,1,197,279710 ,1,198,275905 ,1,199,279735 ,1,200,274965 ,1,201,279550 ,1,202,275875 ,1,203,279720 ,1,204,275040 ,1,205,279525 ,1,206,275950 ,1,207,274775 ,1,208,277295 ,1,209,277315 ,1,210,274785 ,1,211,275320 ,1,212,274985 ,1,213,280270 ,1,214,276150 ,1,215,274765 ,1,216,279745 ,1,217,275310 ,1,218,275290 ,1,219,275330 ,1,220,275300 ,1,221,279790 ,1,222,274655 ,1,223,274625 ,1,224,275595 ,1,225,276770 ,1,226,274885 ,1,227,278795 ,1,228,274920 ,1,229,275030 ,1,230,275410 ,1,231,276160 ,1,232,276350 ,1,233,276875 ,1,234,278815 ,1,235,276340 ,1,236,277150 ,1,237,274975 ,1,238,277160 ,1,239,275125 ,1,240,275115 ,1,241,274955 ,1,242,275280 ,1,243,279000 ,1,244,277110 ,1,245,275340 ,1,246,275550 ,1,247,279570 ,1,248,279560 ,1,249,275825 ,1,250,276675 ,1,251,275815 ,1,252,277140 ,1,253,275235 ,1,254,275075 ,1,255,275540 ,1,256,275480 ,1,257,274685 ,1,258,278935 ,1,259,274665 ,1,260,274910 ,1,261,275010 ,1,262,276665 ,1,263,277120 ,1,264,276845 ,1,265,274705 ,1,266,274695 ,1,267,277000 ,1,268,276215 ,1,269,276900 ,1,270,274805 ,1,271,274825 ,1,272,276910 ,1,273,276970 ,1,274,276960 ,1,275,276940 ,1,276,276950 ,1,277,276930 ,1,278,276920 ,1,279,275085 ,1,280,280395 ,1,281,280150 ,1,282,276825 ,1,283,276855 ,1,284,276835 ,1,285,275185 ,1,286,276255 ,1,287,276555 ,1,288,276120 ,1,289,276040 ,1,290,276990 ,1,291,278805 ,1,292,275105 ,1,293,274405 ,1,294,276725 ,1,295,275375 ,1,296,279965 ,1,297,276085 ,1,298,276180 ,1,299,275710 ,1,300,275865 ,1,301,275835 ,1,302,280135 ,1,303,276655 ,1,304,277225 ,1,305,277130 ,1,306,275205 ,1,307,278825 ,1,308,276235 ,1,309,275165 ,1,310,277205 ,1,311,277345 ,1,312,278755 ,1,313,275440 ,1,314,275585 ,1,315,279120 ,1,316,275805 ,1,317,278925 ,1,318,279040 ,1,319,277195 ,1,320,275980 ,1,321,279755 ,1,322,276695 ,1,323,280445 ,1,324,276275 ,1,325,279930 ,1,326,279820 ,1,327,279050 ,1,328,279975 ,1,329,275490 ,1,330,276265 ,1,331,277285 ,1,332,275630 ,1,333,279515 ,1,334,279080 ,1,335,275175 ,1,336,276705 ,1,337,275500 ,1,338,276780 ,1,339,275605 ,1,340,279765 ,1,341,276815 ,1,342,275970 ,1,343,279390 ,1,344,279355 ,1,345,279840 ,1,346,277305 ,1,347,275755 ,1,348,275700 ,1,349,275430 ,1,350,276010 ,1,351,279910 ,1,352,275615 ,1,353,279600 ,1,354,279110 ,1,355,279060 ,1,356,276030 ,1,357,275765 ,1,358,279900 ,1,359,278990 ,1,360,279920 ,1,361,277045 ,1,362,279445 ,1,363,279410 ,1,364,279420 ,1,365,279435 ,1,366,280290 ,1,367,278895 ,1,368,278905 ,1,369,278855 ,1,370,279700 ,1,371,279620 ,1,372,279670 ,1,373,278915 ,1,374,279630 ,1,375,279690 ,1,376,279660 ,1,377,279640 ,1,378,279650 ,1,379,280250 ,1,380,278620 ,1,381,277430 ,1,382,277605 ,1,383,277440 ,1,384,278745 ,1,385,278710 ,1,386,277550 ,1,387,278520 ,1,388,278735 ,1,389,278725 ,1,390,277850 ,1,391,277615 ,1,392,277495 ,1,393,277710 ,1,394,278700 ,1,395,278690 ,1,396,277505 ,1,397,278680 ,1,398,278650 ,1,399,278640 ,1,400,278630 ,1,401,277460 ,1,402,278605 ,1,403,278390 ,1,404,278595 ,1,405,278585 ,1,406,278460 ,1,407,278575 ,1,408,278560 ,1,409,278550 ,1,410,278540 ,1,411,278530 ,1,412,278500 ,1,413,278490 ,1,414,278510 ,1,415,278450 ,1,416,278420 ,1,417,278440 ,1,418,278430 ,1,419,278410 ,1,420,278400 ,1,421,277825 ,1,422,278365 ,1,423,277815 ,1,424,277880 ,1,425,278355 ,1,426,278345 ,1,427,278335 ,1,428,278325 ,1,429,278315 ,1,430,278305 ,1,431,278295 ,1,432,278275 ,1,433,278265 ,1,434,278255 ,1,435,278245 ,1,436,278225 ,1,437,278215 ,1,438,278205 ,1,439,278195 ,1,440,278170 ,1,441,278160 ,1,442,278150 ,1,443,278140 ,1,444,278125 ,1,445,278115 ,1,446,278105 ,1,447,278095 ,1,448,278070 ,1,449,278060 ,1,450,278050 ,1,451,278040 ,1,452,278030 ,1,453,278020 ,1,454,278010 ,1,455,278000 ,1,456,277980 ,1,457,277970 ,1,458,277960 ,1,459,277950 ,1,460,277935 ,1,461,277925 ,1,462,277915 ,1,463,277905 ,1,464,277870 ,1,465,277860 ,1,466,277805 ,1,467,277795 ,1,468,277750 ,1,469,277740 ,1,470,277730 ,1,471,277720 ,1,472,277700 ,1,473,277655 ,1,474,277645 ,1,475,277635 ,1,476,277595 ,1,477,277585 ,1,478,277540 ,1,479,277530 ,1,480,277485 ,1,481,277760 ,1,482,277690 ,1,483,277625 ,1,484,277560 ,1,485,277450 ,1,486,277515 ,1,487,278945 ,1,488,278955 ,1,489,280160 ,1,490,280055 ,1,491,280170 ,1,492,280065 ,1,493,280180 ,1,494,280045 ,1,495,45 ,1,496,45 ,1,497,45 ,1,498,45 ,1,499,45 ,1,500,45 ,1,501,45 ,1,502,45 ,1,503,45 ,1,504,45 ,1,505,45 ,1,506,45 ,1,507,45 ,1,508,45 ,1,509,45 ,1,510,45 ,2,14956,259410 ,2,822,35200 ,2,14975,578865 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260100 ,2,14979,416625 ,2,829,45 ,2,14956,4490 ,2,822,28065 ,2,14975,110 ,2,14976,90725 ,2,14977,90715 ,2,14965,45 ,2,14978,250765 ,2,14979,2415 ,2,829,45 ,1,0,274080 ,1,1,274070 ,1,2,45 ,2,14956,259300 ,2,822,35200 ,2,14975,571445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260110 ,2,14979,416630 ,2,829,45 ,1,0,14150 ,1,1,14105 ,1,2,14095 ,1,3,45 ,1,4,14085 ,1,5,45 ,1,6,48735 ,1,7,45 ,1,8,14075 ,1,9,48745 ,1,10,614025 ,2,14956,259380 ,2,822,35200 ,2,14975,578870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260120 ,2,14979,416635 ,2,829,45 ,2,14956,4490 ,2,822,27515 ,2,14975,110 ,2,14976,90745 ,2,14977,90735 ,2,14965,45 ,2,14978,250775 ,2,14979,2415 ,2,829,45 ,2,14956,257245 ,2,822,35200 ,2,14975,578875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260130 ,2,14979,416480 ,2,829,45 ,2,14956,4490 ,2,822,27515 ,2,14975,110 ,2,14976,90770 ,2,14977,90760 ,2,14965,45 ,2,14978,250785 ,2,14979,2415 ,2,829,45 ,2,14956,257160 ,2,822,35200 ,2,14975,578880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260140 ,2,14979,416465 ,2,829,45 ,2,14956,4490 ,2,822,27515 ,2,14975,110 ,2,14976,90790 ,2,14977,90780 ,2,14965,45 ,2,14978,250795 ,2,14979,2415 ,2,829,45 ,2,14956,259350 ,2,822,35200 ,2,14975,560975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260170 ,2,14979,416645 ,2,829,45 ,1,0,274185 ,1,1,45 ,1,2,45 ,2,14956,257205 ,2,822,35200 ,2,14975,578885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260180 ,2,14979,416470 ,2,829,45 ,1,0,45 ,1,1,615295 ,2,14956,4490 ,2,822,27575 ,2,14975,110 ,2,14976,90830 ,2,14977,90820 ,2,14965,45 ,2,14978,250805 ,2,14979,2415 ,2,829,45 ,2,14956,229630 ,2,822,35200 ,2,14975,571835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260190 ,2,14979,416335 ,2,829,45 ,1,0,265560 ,1,1,265550 ,1,2,45 ,2,14956,229640 ,2,822,35200 ,2,14975,571835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260200 ,2,14979,416340 ,2,829,45 ,1,0,45 ,1,1,42815 ,1,2,62135 ,1,3,13870 ,1,4,45 ,1,5,45 ,1,6,42715 ,1,7,42785 ,1,8,45 ,1,9,13920 ,1,10,15240 ,1,11,42315 ,1,12,13705 ,1,13,42745 ,1,14,42430 ,1,15,13525 ,1,16,42755 ,1,17,13425 ,1,18,15845 ,1,19,42345 ,1,20,14405 ,1,21,45 ,1,22,45 ,1,23,45 ,1,24,45 ,1,25,45 ,1,26,45 ,1,27,45 ,1,28,15110 ,1,29,45 ,1,30,14415 ,1,31,45 ,1,32,45 ,1,33,13825 ,1,34,15810 ,1,35,45 ,1,36,45 ,1,37,45 ,1,38,45 ,1,39,62050 ,1,40,62125 ,1,41,42640 ,1,42,42620 ,1,43,15670 ,1,44,13880 ,1,45,13725 ,1,46,45 ,1,47,45 ,1,48,45 ,1,49,62185 ,1,50,42650 ,1,51,42325 ,1,52,42410 ,1,53,13930 ,1,54,13755 ,1,55,15100 ,1,56,15690 ,1,57,13860 ,1,58,42455 ,1,59,13835 ,1,60,42725 ,1,61,13615 ,1,62,13555 ,1,63,42680 ,1,64,13380 ,1,65,15770 ,1,66,42610 ,1,67,13645 ,1,68,15650 ,1,69,48290 ,1,70,13350 ,1,71,45 ,1,72,13765 ,1,73,42765 ,1,74,13775 ,1,75,15790 ,1,76,13565 ,1,77,15700 ,1,78,14425 ,1,79,13950 ,1,80,42590 ,1,81,13575 ,1,82,42775 ,1,83,62080 ,1,84,42735 ,1,85,39150 ,1,86,42660 ,1,87,42670 ,1,88,13970 ,1,89,15820 ,1,90,62175 ,1,91,15380 ,1,92,45 ,1,93,45 ,1,94,45 ,1,95,45 ,1,96,45 ,1,97,45 ,1,98,13805 ,1,99,42630 ,1,100,45 ,1,101,45 ,1,102,45 ,1,103,13850 ,1,104,62060 ,1,105,42420 ,1,106,45 ,1,107,42365 ,1,108,42355 ,1,109,13675 ,1,110,42580 ,1,111,13410 ,1,112,42400 ,1,113,15890 ,1,114,15830 ,1,115,15660 ,1,116,49050 ,1,117,17280 ,1,118,13655 ,1,119,15760 ,1,120,15865 ,1,121,13605 ,1,122,13515 ,1,123,13940 ,1,124,13400 ,1,125,15635 ,1,126,15705 ,1,127,13735 ,1,128,13665 ,1,129,45 ,1,130,45 ,1,131,15680 ,1,132,45 ,1,133,15090 ,1,134,15875 ,1,135,45 ,1,136,62145 ,1,137,13390 ,1,138,45 ,1,139,45 ,1,140,62155 ,1,141,46440 ,1,142,49040 ,1,143,13535 ,1,144,17150 ,1,145,42465 ,1,146,42445 ,1,147,62165 ,1,148,13625 ,1,149,13545 ,1,150,13980 ,1,151,49025 ,1,152,13340 ,1,153,13635 ,1,154,15855 ,1,155,13785 ,1,156,62070 ,1,157,45 ,1,158,42570 ,1,159,15800 ,1,160,42335 ,1,161,13715 ,1,162,45 ,1,163,45 ,1,164,13815 ,1,165,45 ,1,166,642225 ,2,14956,227855 ,2,822,35200 ,2,14975,571445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260215 ,2,14979,412830 ,2,829,45 ,2,14956,227495 ,2,822,35210 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393330 ,2,829,45 ,2,14956,259585 ,2,822,35210 ,2,14975,578890 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,217455 ,2,822,35220 ,2,14975,578925 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385025 ,2,829,45 ,2,14956,215630 ,2,822,35220 ,2,14975,577690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260225 ,2,14979,416390 ,2,829,45 ,1,0,273365 ,1,1,45 ,1,2,45 ,2,14956,2855 ,2,822,35230 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415685 ,2,829,45 ,1,0,46865 ,1,1,223620 ,1,2,45 ,1,3,614705 ,2,14956,197265 ,2,822,35250 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151115 ,2,14979,353860 ,2,829,45 ,2,14956,269360 ,2,822,35250 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,234565 ,2,14979,335600 ,2,829,45 ,1,0,266325 ,1,1,45 ,1,2,45 ,2,14956,184135 ,2,822,35250 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380940 ,2,829,45 ,1,0,17325 ,1,1,18845 ,1,2,45 ,1,3,614705 ,2,14956,251630 ,2,822,35250 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382525 ,2,829,45 ,2,14956,197280 ,2,822,35250 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354780 ,2,829,45 ,1,0,274195 ,1,1,273895 ,1,2,45 ,2,14956,269360 ,2,822,35250 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,151115 ,2,14979,344560 ,2,829,45 ,1,0,45 ,1,1,14065 ,1,2,613640 ,2,14956,215585 ,2,822,35250 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387215 ,2,829,45 ,2,14956,259685 ,2,822,35250 ,2,14975,578935 ,2,14976,23130 ,2,14977,90945 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,266280 ,1,1,266270 ,1,2,272620 ,2,14956,216035 ,2,822,52640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386235 ,2,829,45 ,1,0,72140 ,1,1,72090 ,1,2,45 ,1,3,45 ,1,4,72160 ,1,5,72150 ,1,6,72190 ,1,7,72210 ,1,8,44805 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,72100 ,1,13,72200 ,1,14,72110 ,1,15,72180 ,1,16,72170 ,1,17,72265 ,1,18,45 ,1,19,72255 ,1,20,44795 ,1,21,616230 ,2,14956,184135 ,2,822,52640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409580 ,2,829,45 ,2,14956,217345 ,2,822,52640 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412310 ,2,829,45 ,1,0,266560 ,1,1,267095 ,1,2,267105 ,1,3,267015 ,1,4,45 ,1,5,45 ,1,6,45 ,2,14956,215585 ,2,822,34550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387365 ,2,829,45 ,1,0,42190 ,1,1,49085 ,1,2,83640 ,1,3,42200 ,1,4,42135 ,1,5,45 ,1,6,13505 ,1,7,83670 ,1,8,45 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,19430 ,1,13,42145 ,1,14,83545 ,1,15,18695 ,1,16,19040 ,1,17,83630 ,1,18,48595 ,1,19,83525 ,1,20,14045 ,1,21,19030 ,1,22,13455 ,1,23,83555 ,1,24,14160 ,1,25,45 ,1,26,45 ,1,27,257250 ,1,28,83660 ,1,29,45 ,1,30,620270 ,2,14956,259735 ,2,822,34550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335735 ,2,829,45 ,1,0,596970 ,2,14956,259790 ,2,822,34550 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,335610 ,2,829,45 ,2,14956,182390 ,2,822,35270 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384470 ,2,829,45 ,2,14956,217405 ,2,822,35270 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260235 ,2,14979,415595 ,2,829,45 ,1,0,265300 ,1,1,265235 ,1,2,265290 ,1,3,274215 ,1,4,274205 ,1,5,265445 ,1,6,265800 ,1,7,265245 ,1,8,266550 ,1,9,267710 ,1,10,273570 ,1,11,273560 ,1,12,265325 ,1,13,265310 ,1,14,45 ,2,14956,213590 ,2,822,35270 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260245 ,2,14979,413100 ,2,829,45 ,1,0,29570 ,1,1,47325 ,1,2,38825 ,1,3,23435 ,1,4,59655 ,1,5,14665 ,1,6,16540 ,1,7,45705 ,1,8,16550 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,14700 ,1,14,23345 ,1,15,45 ,1,16,38815 ,1,17,46105 ,1,18,18685 ,1,19,14755 ,1,20,46055 ,1,21,45 ,1,22,45 ,1,23,59735 ,1,24,59745 ,1,25,45745 ,1,26,59715 ,1,27,45 ,1,28,37880 ,1,29,59635 ,1,30,59695 ,1,31,255745 ,1,32,48165 ,1,33,45 ,1,34,59665 ,1,35,15575 ,1,36,56850 ,1,37,18545 ,1,38,46095 ,1,39,46085 ,1,40,56870 ,1,41,24115 ,1,42,45755 ,1,43,45795 ,1,44,43295 ,1,45,59600 ,1,46,15965 ,1,47,56960 ,1,48,24570 ,1,49,43285 ,1,50,47315 ,1,51,15000 ,1,52,59610 ,1,53,37645 ,1,54,255770 ,1,55,45 ,1,56,15920 ,1,57,46075 ,1,58,14730 ,1,59,255735 ,1,60,45 ,1,61,45 ,1,62,45 ,1,63,59620 ,1,64,14720 ,1,65,45785 ,1,66,45 ,1,67,14710 ,1,68,45 ,1,69,48610 ,1,70,19150 ,1,71,45 ,1,72,56945 ,1,73,45 ,1,74,38835 ,1,75,37870 ,1,76,59725 ,1,77,49095 ,1,78,46065 ,1,79,45 ,1,80,45 ,1,81,59705 ,1,82,45 ,1,83,16330 ,1,84,59645 ,1,85,45 ,1,86,45 ,1,87,14810 ,1,88,45 ,1,89,622625 ,2,14956,259800 ,2,822,34550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335635 ,2,829,45 ,2,14956,259810 ,2,822,34550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,335705 ,2,829,45 ,1,0,224415 ,2,14956,259875 ,2,822,34550 ,2,14975,578085 ,2,14976,62140 ,2,14977,91090 ,2,14965,45 ,2,14978,45 ,2,14979,335715 ,2,829,45 ,1,0,348135 ,1,1,45 ,2,14956,215630 ,2,822,34550 ,2,14975,577690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260270 ,2,14979,416595 ,2,829,45 ,2,14956,259895 ,2,822,34550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151420 ,2,14979,2415 ,2,829,45 ,1,0,273345 ,1,1,273295 ,1,2,273335 ,1,3,274230 ,1,4,273645 ,1,5,273635 ,1,6,274060 ,2,14956,259885 ,2,822,34550 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,234590 ,2,14979,335655 ,2,829,45 ,1,0,48725 ,1,1,14315 ,1,2,14305 ,1,3,14295 ,1,4,48715 ,1,5,14285 ,1,6,49115 ,1,7,14275 ,1,8,14265 ,1,9,14255 ,1,10,14225 ,1,11,14215 ,1,12,14205 ,1,13,45 ,1,14,13990 ,1,15,14195 ,1,16,205345 ,1,17,45 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,14000 ,1,22,14035 ,1,23,45 ,1,24,45 ,1,25,49105 ,1,26,14180 ,1,27,14170 ,1,28,45 ,1,29,620685 ,2,14956,259885 ,2,822,34550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,151420 ,2,14979,335645 ,2,829,45 ,2,14956,259905 ,2,822,34550 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,335665 ,2,829,45 ,2,14956,184135 ,2,822,34550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382350 ,2,829,45 ,2,14956,173945 ,2,822,34550 ,2,14975,577415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360375 ,2,829,45 ,2,14956,259920 ,2,822,34550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335695 ,2,829,45 ,2,14956,259965 ,2,822,33695 ,2,14975,577255 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335815 ,2,829,45 ,2,14956,259975 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,151530 ,2,14979,335825 ,2,829,45 ,2,14956,259975 ,2,822,33695 ,2,14975,110 ,2,14976,91165 ,2,14977,23120 ,2,14965,45 ,2,14978,234600 ,2,14979,335835 ,2,829,45 ,2,14956,259985 ,2,822,33695 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,151550 ,2,14979,332775 ,2,829,45 ,2,14956,259985 ,2,822,33695 ,2,14975,110 ,2,14976,91175 ,2,14977,24010 ,2,14965,45 ,2,14978,234610 ,2,14979,335855 ,2,829,45 ,2,14956,259995 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335765 ,2,829,45 ,2,14956,260040 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151605 ,2,14979,2415 ,2,829,45 ,2,14956,260030 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234620 ,2,14979,335865 ,2,829,45 ,2,14956,260010 ,2,822,21445 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,335885 ,2,829,45 ,2,14956,260020 ,2,822,21445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,260085 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151645 ,2,14979,2415 ,2,829,45 ,2,14956,260075 ,2,822,33695 ,2,14975,110 ,2,14976,91165 ,2,14977,23120 ,2,14965,45 ,2,14978,234630 ,2,14979,335990 ,2,829,45 ,1,0,267045 ,1,1,267025 ,1,2,267085 ,1,3,274250 ,1,4,274240 ,1,5,267035 ,1,6,267075 ,2,14956,260105 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151665 ,2,14979,2415 ,2,829,45 ,1,0,14325 ,1,1,83200 ,1,2,20855 ,1,3,45 ,1,4,48640 ,1,5,20845 ,1,6,48630 ,1,7,45 ,1,8,45 ,1,9,83190 ,1,10,45 ,1,11,83230 ,1,12,83250 ,1,13,83130 ,1,14,19305 ,1,15,45 ,1,16,49125 ,1,17,83240 ,1,18,45 ,1,19,83150 ,1,20,83180 ,1,21,45 ,1,22,48620 ,1,23,83140 ,1,24,83210 ,1,25,622995 ,2,14956,260095 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234640 ,2,14979,336030 ,2,829,45 ,2,14956,260115 ,2,822,33695 ,2,14975,560975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336040 ,2,829,45 ,1,0,597105 ,2,14956,260075 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,151645 ,2,14979,336020 ,2,829,45 ,2,14956,260125 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335960 ,2,829,45 ,1,0,272030 ,1,1,272020 ,1,2,266460 ,1,3,266485 ,1,4,265395 ,1,5,265425 ,1,6,266060 ,1,7,265405 ,1,8,274260 ,1,9,266070 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,45 ,1,14,45 ,2,14956,260135 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335970 ,2,829,45 ,1,0,45 ,1,1,45 ,1,2,45 ,1,3,16710 ,1,4,18645 ,1,5,48070 ,1,6,14910 ,1,7,18655 ,1,8,47565 ,1,9,48080 ,1,10,14900 ,1,11,48055 ,1,12,16675 ,1,13,48090 ,1,14,181970 ,1,15,42295 ,1,16,48145 ,1,17,47575 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,18585 ,1,22,181960 ,1,23,14925 ,1,24,45 ,1,25,45 ,1,26,42225 ,1,27,42305 ,1,28,48035 ,1,29,14915 ,1,30,42255 ,1,31,16685 ,1,32,42235 ,1,33,48100 ,1,34,18615 ,1,35,45 ,1,36,182005 ,1,37,18605 ,1,38,45 ,1,39,48045 ,1,40,18595 ,1,41,45 ,1,42,621235 ,2,14956,257130 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333560 ,2,829,45 ,2,14956,260145 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336050 ,2,829,45 ,1,0,265245 ,1,1,265705 ,1,2,265725 ,1,3,265715 ,1,4,265760 ,1,5,265735 ,1,6,266030 ,1,7,265750 ,1,8,267690 ,1,9,265680 ,1,10,266010 ,1,11,265770 ,1,12,266450 ,1,13,266050 ,1,14,45 ,2,14956,260185 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151775 ,2,14979,2415 ,2,829,45 ,1,0,46045 ,1,1,45 ,1,2,16435 ,1,3,29250 ,1,4,15435 ,1,5,45985 ,1,6,23090 ,1,7,16630 ,1,8,45775 ,1,9,49175 ,1,10,16830 ,1,11,15385 ,1,12,45765 ,1,13,15325 ,1,14,33095 ,1,15,45975 ,1,16,15475 ,1,17,16350 ,1,18,15555 ,1,19,29315 ,1,20,58965 ,1,21,45 ,1,22,33080 ,1,23,45 ,1,24,45 ,1,25,15545 ,1,26,45 ,1,27,58925 ,1,28,23080 ,1,29,14775 ,1,30,29280 ,1,31,16820 ,1,32,45905 ,1,33,15360 ,1,34,45 ,1,35,255885 ,1,36,45 ,1,37,16640 ,1,38,45 ,1,39,45 ,1,40,16360 ,1,41,16530 ,1,42,45 ,1,43,45 ,1,44,23070 ,1,45,14460 ,1,46,16520 ,1,47,16395 ,1,48,33070 ,1,49,16475 ,1,50,45885 ,1,51,15600 ,1,52,45 ,1,53,45 ,1,54,58830 ,1,55,15490 ,1,56,29260 ,1,57,45 ,1,58,16340 ,1,59,16385 ,1,60,15370 ,1,61,16300 ,1,62,46555 ,1,63,23105 ,1,64,45865 ,1,65,58885 ,1,66,15420 ,1,67,16425 ,1,68,15465 ,1,69,45955 ,1,70,45 ,1,71,45 ,1,72,45 ,1,73,15615 ,1,74,16840 ,1,75,18485 ,1,76,46570 ,1,77,16455 ,1,78,58955 ,1,79,16445 ,1,80,18470 ,1,81,45 ,1,82,45 ,1,83,23125 ,1,84,45 ,1,85,45 ,1,86,45 ,1,87,16655 ,1,88,21670 ,1,89,45 ,1,90,45965 ,1,91,23115 ,1,92,16620 ,1,93,45895 ,1,94,45 ,1,95,29325 ,1,96,45 ,1,97,45 ,1,98,58810 ,1,99,45915 ,1,100,15445 ,1,101,45875 ,1,102,45 ,1,103,29270 ,1,104,45 ,1,105,16865 ,1,106,16415 ,1,107,15565 ,1,108,29235 ,1,109,58905 ,1,110,15495 ,1,111,58865 ,1,112,16850 ,1,113,45945 ,1,114,15450 ,1,115,45 ,1,116,16405 ,1,117,46015 ,1,118,45 ,1,119,647245 ,2,14956,260175 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234650 ,2,14979,336060 ,2,829,45 ,2,14956,260095 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,151665 ,2,14979,332765 ,2,829,45 ,1,0,265345 ,1,1,266400 ,1,2,265265 ,1,3,266515 ,1,4,269410 ,1,5,266505 ,1,6,273840 ,1,7,274395 ,1,8,265570 ,1,9,271940 ,1,10,274385 ,1,11,273670 ,1,12,274375 ,1,13,265660 ,1,14,274365 ,1,15,265580 ,1,16,273655 ,1,17,274355 ,1,18,274305 ,1,19,270660 ,1,20,274295 ,1,21,270670 ,1,22,268605 ,1,23,268595 ,1,24,265505 ,1,25,265475 ,1,26,266150 ,1,27,265455 ,1,28,265515 ,1,29,267470 ,1,30,267440 ,1,31,266240 ,1,32,265535 ,1,33,265525 ,1,34,273680 ,1,35,265205 ,1,36,265255 ,1,37,265215 ,1,38,265780 ,1,39,266020 ,1,40,266040 ,1,41,274285 ,1,42,273550 ,1,43,265465 ,1,44,274275 ,1,45,265355 ,1,46,265610 ,1,47,265670 ,1,48,265280 ,1,49,267335 ,1,50,265335 ,1,51,266370 ,1,52,266380 ,1,53,265620 ,1,54,265640 ,1,55,265630 ,1,56,265650 ,1,57,270250 ,1,58,267740 ,1,59,266430 ,1,60,266440 ,1,61,266495 ,1,62,266390 ,2,14956,260195 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409585 ,2,829,45 ,1,0,14570 ,1,1,14055 ,1,2,45805 ,1,3,14520 ,1,4,14600 ,1,5,18575 ,1,6,47430 ,1,7,47620 ,1,8,15165 ,1,9,45 ,1,10,45 ,1,11,45 ,1,12,45 ,1,13,45535 ,1,14,14865 ,1,15,14480 ,1,16,15065 ,1,17,14830 ,1,18,16310 ,1,19,21235 ,1,20,45 ,1,21,47640 ,1,22,39040 ,1,23,15005 ,1,24,16990 ,1,25,15340 ,1,26,78505 ,1,27,17025 ,1,28,47630 ,1,29,16665 ,1,30,39060 ,1,31,46005 ,1,32,14490 ,1,33,38080 ,1,34,80665 ,1,35,81175 ,1,36,15225 ,1,37,30160 ,1,38,22005 ,1,39,15995 ,1,40,15260 ,1,41,47450 ,1,42,81230 ,1,43,14580 ,1,44,15125 ,1,45,39000 ,1,46,47420 ,1,47,47440 ,1,48,14785 ,1,49,15625 ,1,50,47515 ,1,51,13445 ,1,52,14885 ,1,53,14655 ,1,54,256610 ,1,55,16005 ,1,56,47555 ,1,57,16980 ,1,58,14590 ,1,59,47480 ,1,60,47545 ,1,61,15055 ,1,62,81210 ,1,63,14675 ,1,64,39070 ,1,65,80655 ,1,66,18495 ,1,67,81195 ,1,68,23630 ,1,69,18675 ,1,70,45 ,1,71,45 ,1,72,45 ,1,73,45 ,1,74,45 ,1,75,45 ,1,76,45 ,1,77,81100 ,1,78,15275 ,1,79,15040 ,1,80,14875 ,1,81,256600 ,1,82,47505 ,1,83,45 ,1,84,45 ,1,85,14385 ,1,86,45 ,1,87,45 ,1,88,45 ,1,89,14610 ,1,90,15145 ,1,91,45 ,1,92,81220 ,1,93,45 ,1,94,38515 ,1,95,45845 ,1,96,81130 ,1,97,45 ,1,98,81065 ,1,99,47460 ,1,100,14765 ,1,101,14375 ,1,102,45 ,1,103,14470 ,1,104,13330 ,1,105,18395 ,1,106,15270 ,1,107,47525 ,1,108,14530 ,1,109,14560 ,1,110,15215 ,1,111,18460 ,1,112,14365 ,1,113,14510 ,1,114,33530 ,1,115,45995 ,1,116,47535 ,1,117,45 ,1,118,45 ,1,119,47650 ,1,120,15980 ,1,121,49135 ,1,122,14395 ,1,123,18555 ,1,124,78400 ,1,125,45 ,1,126,15205 ,1,127,16875 ,1,128,45 ,1,129,81110 ,1,130,14800 ,1,131,15170 ,1,132,45 ,1,133,45 ,1,134,45 ,1,135,18450 ,1,136,15955 ,1,137,45 ,1,138,45 ,1,139,39050 ,1,140,15250 ,1,141,47470 ,1,142,18515 ,1,143,45855 ,1,144,15150 ,1,145,14355 ,1,146,15030 ,1,147,45 ,1,148,45 ,1,149,15315 ,1,150,45 ,1,151,45 ,1,152,45 ,1,153,45 ,1,154,18505 ,1,155,45 ,1,156,45815 ,1,157,45 ,1,158,14500 ,1,159,45 ,1,160,45 ,1,161,26955 ,1,162,15015 ,1,163,45 ,1,164,45 ,1,165,45 ,1,166,47610 ,1,167,14630 ,1,168,18565 ,1,169,14685 ,1,170,647775 ,2,14956,260205 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336080 ,2,829,45 ,2,14956,260220 ,2,822,33695 ,2,14975,561380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336090 ,2,829,45 ,2,14956,217195 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369455 ,2,829,45 ,2,14956,260230 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335935 ,2,829,45 ,1,0,558090 ,2,14956,216035 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386205 ,2,829,45 ,2,14956,260250 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151895 ,2,14979,397700 ,2,829,45 ,2,14956,260240 ,2,822,33695 ,2,14975,110 ,2,14976,91270 ,2,14977,23120 ,2,14965,45 ,2,14978,234660 ,2,14979,336125 ,2,829,45 ,1,0,266120 ,1,1,266230 ,1,2,266130 ,1,3,266210 ,1,4,266185 ,1,5,266140 ,1,6,266195 ,1,7,266080 ,1,8,267345 ,1,9,266250 ,1,10,265415 ,1,11,266220 ,1,12,266165 ,1,13,266175 ,1,14,265345 ,2,14956,260275 ,2,822,33695 ,2,14975,577415 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409595 ,2,829,45 ,1,0,21245 ,1,1,69290 ,1,2,21095 ,1,3,70355 ,1,4,70475 ,1,5,70315 ,1,6,46370 ,1,7,69515 ,1,8,69415 ,1,9,256150 ,1,10,16920 ,1,11,69620 ,1,12,70620 ,1,13,69505 ,1,14,69555 ,1,15,16940 ,1,16,70540 ,1,17,48565 ,1,18,66950 ,1,19,44470 ,1,20,70520 ,1,21,21325 ,1,22,69385 ,1,23,70345 ,1,24,16960 ,1,25,45 ,1,26,46730 ,1,27,19190 ,1,28,14990 ,1,29,70445 ,1,30,21125 ,1,31,21170 ,1,32,21215 ,1,33,70510 ,1,34,21105 ,1,35,16930 ,1,36,21335 ,1,37,21150 ,1,38,48520 ,1,39,21365 ,1,40,21435 ,1,41,69405 ,1,42,69340 ,1,43,48530 ,1,44,256115 ,1,45,21255 ,1,46,44435 ,1,47,224185 ,1,48,21345 ,1,49,45 ,1,50,45 ,1,51,45 ,1,52,256105 ,1,53,45 ,1,54,21385 ,1,55,45 ,1,56,70425 ,1,57,16785 ,1,58,16970 ,1,59,47995 ,1,60,69545 ,1,61,45 ,1,62,21375 ,1,63,70365 ,1,64,17045 ,1,65,16730 ,1,66,45 ,1,67,19140 ,1,68,69495 ,1,69,45 ,1,70,16895 ,1,71,45 ,1,72,45 ,1,73,17065 ,1,74,45 ,1,75,45 ,1,76,45 ,1,77,21415 ,1,78,45 ,1,79,45 ,1,80,16755 ,1,81,69535 ,1,82,69280 ,1,83,70585 ,1,84,42180 ,1,85,45 ,1,86,46720 ,1,87,16765 ,1,88,21265 ,1,89,45 ,1,90,16775 ,1,91,256140 ,1,92,45 ,1,93,45 ,1,94,45 ,1,95,16740 ,1,96,18405 ,1,97,69425 ,1,98,69485 ,1,99,70435 ,1,100,21285 ,1,101,49185 ,1,102,49155 ,1,103,66895 ,1,104,16950 ,1,105,45 ,1,106,49145 ,1,107,45 ,1,108,69395 ,1,109,47985 ,1,110,69455 ,1,111,70565 ,1,112,48025 ,1,113,48540 ,1,114,45 ,1,115,45 ,1,116,17035 ,1,117,42210 ,1,118,45 ,1,119,14935 ,1,120,48510 ,1,121,21140 ,1,122,45 ,1,123,69525 ,1,124,45 ,1,125,45 ,1,126,45 ,1,127,45 ,1,128,45 ,1,129,45 ,1,130,45 ,1,131,45 ,1,132,69310 ,1,133,45 ,1,134,21275 ,1,135,21225 ,1,136,21425 ,1,137,48575 ,1,138,21160 ,1,139,69585 ,1,140,48155 ,1,141,21315 ,1,142,70485 ,1,143,45 ,1,144,19180 ,1,145,19200 ,1,146,21115 ,1,147,16885 ,1,148,21355 ,1,149,13435 ,1,150,45 ,1,151,45 ,1,152,70640 ,1,153,17055 ,1,154,647095 ,2,14956,260285 ,2,822,33695 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336145 ,2,829,45 ,2,14956,260295 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333440 ,2,829,45 ,1,0,265055 ,2,14956,260305 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,151975 ,2,14979,336155 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260305 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234680 ,2,14979,336170 ,2,829,45 ,1,0,100 ,1,1,560425 ,2,14956,184135 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380760 ,2,829,45 ,2,14956,256370 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387925 ,2,829,45 ,1,0,265065 ,2,14956,260320 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335915 ,2,829,45 ,1,0,224445 ,1,1,224435 ,2,14956,223625 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365535 ,2,829,45 ,1,0,646550 ,1,1,615295 ,1,2,552400 ,1,3,552350 ,1,4,552760 ,1,5,545855 ,1,6,557030 ,1,7,554500 ,1,8,547060 ,1,9,545210 ,1,10,555510 ,1,11,544720 ,1,12,554295 ,1,13,548395 ,1,14,550575 ,1,15,552615 ,1,16,556750 ,1,17,543690 ,1,18,550010 ,1,19,65 ,1,20,65 ,1,21,548365 ,1,22,546045 ,1,23,556665 ,1,24,553235 ,1,25,65 ,1,26,65 ,1,27,551995 ,1,28,552300 ,1,29,551095 ,1,30,554475 ,1,31,548170 ,1,32,543510 ,1,33,554895 ,1,34,65 ,1,35,549920 ,1,36,557435 ,1,37,552210 ,1,38,556025 ,1,39,550940 ,1,40,65 ,1,41,551895 ,1,42,550160 ,1,43,550520 ,1,44,556040 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,545785 ,1,49,547445 ,1,50,555620 ,1,51,554995 ,1,52,65 ,1,53,554550 ,1,54,553545 ,1,55,65 ,1,56,547175 ,1,57,553725 ,1,58,545900 ,1,59,554080 ,1,60,544935 ,1,61,548430 ,1,62,553350 ,1,63,555870 ,1,64,65 ,1,65,544290 ,1,66,549105 ,1,67,554905 ,1,68,65 ,1,69,545450 ,1,70,557490 ,1,71,555070 ,1,72,65 ,1,73,65 ,1,74,554225 ,1,75,65 ,1,76,65 ,1,77,547050 ,1,78,547085 ,1,79,65 ,1,80,548075 ,1,81,65 ,1,82,552265 ,1,83,557370 ,1,84,546305 ,1,85,548045 ,1,86,556265 ,1,87,551155 ,1,88,553195 ,1,89,550375 ,1,90,554975 ,1,91,543570 ,1,92,65 ,1,93,555275 ,1,94,553290 ,1,95,65 ,1,96,543920 ,1,97,552975 ,1,98,552610 ,1,99,546040 ,1,100,550555 ,1,101,553620 ,1,102,552665 ,1,103,552580 ,1,104,551150 ,1,105,553020 ,1,106,544020 ,1,107,555135 ,1,108,548760 ,1,109,557340 ,1,110,554425 ,1,111,551165 ,1,112,65 ,1,113,550570 ,1,114,552635 ,1,115,545495 ,1,116,550075 ,1,117,65 ,1,118,550385 ,1,119,554030 ,1,120,550320 ,1,121,550090 ,1,122,545080 ,1,123,550455 ,1,124,555240 ,1,125,551650 ,1,126,555940 ,1,127,65 ,1,128,65 ,1,129,65 ,1,130,554825 ,1,131,65 ,1,132,65 ,1,133,65 ,1,134,65 ,1,135,550015 ,1,136,65 ,1,137,552340 ,1,138,551740 ,1,139,65 ,1,140,65 ,1,141,556740 ,1,142,65 ,1,143,544360 ,1,144,65 ,1,145,556840 ,1,146,548755 ,1,147,65 ,1,148,65 ,1,149,546485 ,1,150,557505 ,1,151,552565 ,1,152,548020 ,1,153,555465 ,1,154,556795 ,1,155,65 ,1,156,552495 ,1,157,65 ,1,158,65 ,1,159,65 ,1,160,555425 ,1,161,65 ,1,162,65 ,1,163,65 ,1,164,548740 ,1,165,551535 ,1,166,65 ,1,167,65 ,1,168,65 ,1,169,65 ,1,170,553970 ,1,171,65 ,1,172,65 ,1,173,557100 ,1,174,554020 ,1,175,554880 ,1,176,547255 ,1,177,65 ,1,178,549485 ,1,179,65 ,1,180,65 ,1,181,65 ,1,182,65 ,1,183,65 ,1,184,65 ,1,185,556805 ,1,186,65 ,1,187,65 ,1,188,552145 ,1,189,546845 ,1,190,65 ,1,191,552945 ,1,192,65 ,1,193,65 ,1,194,553795 ,1,195,65 ,1,196,65 ,1,197,548610 ,1,198,557345 ,1,199,556640 ,1,200,65 ,1,201,556865 ,1,202,65 ,1,203,549550 ,1,204,556260 ,1,205,65 ,1,206,65 ,1,207,65 ,1,208,65 ,1,209,550690 ,1,210,545310 ,1,211,555125 ,1,212,552095 ,1,213,548420 ,1,214,65 ,1,215,546460 ,1,216,65 ,1,217,65 ,1,218,65 ,1,219,556855 ,1,220,555855 ,1,221,65 ,1,222,549705 ,1,223,65 ,1,224,65 ,1,225,65 ,1,226,553980 ,1,227,552895 ,1,228,550300 ,1,229,65 ,1,230,65 ,1,231,65 ,1,232,556835 ,1,233,65 ,1,234,65 ,1,235,65 ,1,236,65 ,1,237,551970 ,1,238,65 ,1,239,65 ,1,240,65 ,1,241,65 ,1,242,65 ,1,243,557405 ,1,244,554335 ,1,245,553130 ,1,246,549905 ,1,247,65 ,1,248,552220 ,1,249,549435 ,1,250,543720 ,1,251,547675 ,1,252,557070 ,1,253,543515 ,1,254,552465 ,1,255,554545 ,1,256,554765 ,1,257,552620 ,1,258,544745 ,1,259,551385 ,1,260,550065 ,1,261,550760 ,1,262,65 ,1,263,551855 ,1,264,556590 ,1,265,544350 ,1,266,554785 ,1,267,551100 ,1,268,546690 ,1,269,65 ,1,270,65 ,1,271,65 ,1,272,65 ,1,273,555100 ,1,274,555970 ,1,275,544335 ,1,276,65 ,1,277,554615 ,1,278,65 ,1,279,65 ,1,280,547450 ,1,281,65 ,1,282,547935 ,1,283,556465 ,1,284,547810 ,1,285,556515 ,1,286,65 ,1,287,548570 ,1,288,555630 ,1,289,65 ,1,290,555195 ,1,291,65 ,1,292,65 ,1,293,557220 ,1,294,544640 ,1,295,65 ,1,296,548150 ,1,297,65 ,1,298,65 ,1,299,65 ,1,300,551145 ,1,301,552390 ,1,302,552420 ,1,303,65 ,1,304,65 ,1,305,555265 ,1,306,554400 ,1,307,554435 ,1,308,557225 ,1,309,549945 ,1,310,65 ,1,311,554470 ,1,312,556745 ,1,313,65 ,1,314,546780 ,1,315,65 ,1,316,65 ,1,317,65 ,1,318,544415 ,1,319,555880 ,1,320,65 ,1,321,553705 ,1,322,65 ,1,323,555400 ,1,324,555085 ,1,325,65 ,1,326,65 ,1,327,65 ,1,328,65 ,1,329,65 ,1,330,65 ,1,331,552575 ,1,332,65 ,1,333,550185 ,1,334,556140 ,1,335,556305 ,1,336,556310 ,1,337,65 ,1,338,65 ,1,339,65 ,1,340,552600 ,1,341,65 ,1,342,65 ,1,343,545975 ,1,344,65 ,1,345,65 ,1,346,65 ,1,347,544425 ,1,348,65 ,1,349,65 ,1,350,552950 ,1,351,65 ,1,352,551725 ,1,353,65 ,1,354,65 ,1,355,65 ,1,356,548255 ,1,357,65 ,1,358,65 ,1,359,65 ,1,360,65 ,1,361,65 ,1,362,548375 ,1,363,551240 ,1,364,556235 ,1,365,557130 ,1,366,557450 ,1,367,65 ,1,368,544855 ,1,369,65 ,1,370,65 ,1,371,65 ,1,372,552960 ,1,373,65 ,1,374,65 ,1,375,65 ,1,376,65 ,1,377,551305 ,1,378,65 ,1,379,65 ,1,380,65 ,1,381,65 ,1,382,543710 ,1,383,556105 ,1,384,552690 ,1,385,65 ,1,386,65 ,1,387,65 ,1,388,546765 ,1,389,65 ,1,390,65 ,1,391,65 ,1,392,555410 ,1,393,545385 ,1,394,548025 ,1,395,65 ,1,396,65 ,1,397,65 ,1,398,65 ,1,399,65 ,1,400,550430 ,1,401,65 ,1,402,557090 ,1,403,557235 ,1,404,551025 ,1,405,551170 ,1,406,65 ,1,407,555180 ,1,408,555150 ,1,409,65 ,1,410,557760 ,1,411,557755 ,1,412,65 ,1,413,65 ,1,414,65 ,1,415,65 ,1,416,65 ,1,417,546090 ,1,418,556870 ,1,419,554490 ,1,420,65 ,1,421,65 ,1,422,552470 ,1,423,553505 ,1,424,550765 ,1,425,65 ,1,426,65 ,1,427,65 ,1,428,65 ,1,429,65 ,1,430,65 ,1,431,554900 ,1,432,65 ,1,433,553515 ,1,434,554840 ,1,435,65 ,1,436,65 ,1,437,556830 ,1,438,65 ,1,439,65 ,1,440,548450 ,1,441,553425 ,1,442,556385 ,1,443,555950 ,1,444,65 ,1,445,65 ,1,446,553685 ,1,447,546970 ,1,448,65 ,1,449,65 ,1,450,546355 ,1,451,546890 ,1,452,547620 ,1,453,549480 ,1,454,548640 ,1,455,65 ,1,456,556315 ,1,457,65 ,1,458,65 ,1,459,65 ,1,460,65 ,1,461,547390 ,1,462,543970 ,1,463,553090 ,1,464,553755 ,1,465,553500 ,1,466,544995 ,1,467,547430 ,1,468,65 ,1,469,553040 ,1,470,65 ,1,471,552910 ,1,472,547200 ,1,473,555725 ,1,474,554245 ,1,475,65 ,1,476,544150 ,1,477,552740 ,1,478,65 ,1,479,65 ,1,480,549775 ,1,481,550280 ,1,482,65 ,1,483,65 ,1,484,65 ,1,485,65 ,1,486,65 ,1,487,557095 ,1,488,65 ,1,489,65 ,1,490,65 ,1,491,65 ,1,492,65 ,1,493,65 ,1,494,65 ,1,495,555935 ,1,496,553220 ,1,497,65 ,1,498,545745 ,1,499,557145 ,1,500,65 ,1,501,557015 ,1,502,65 ,1,503,557305 ,1,504,549570 ,1,505,554465 ,1,506,544110 ,1,507,549330 ,1,508,548860 ,1,509,65 ,1,510,546200 ,1,511,65 ,1,512,65 ,1,513,557415 ,1,514,65 ,1,515,65 ,1,516,65 ,1,517,549710 ,1,518,555175 ,1,519,65 ,1,520,65 ,1,521,65 ,1,522,557585 ,1,523,65 ,1,524,65 ,1,525,551765 ,1,526,549085 ,1,527,65 ,1,528,555910 ,1,529,65 ,1,530,65 ,1,531,547305 ,1,532,544330 ,1,533,65 ,1,534,65 ,1,535,554870 ,1,536,552355 ,1,537,548930 ,1,538,556595 ,1,539,65 ,1,540,65 ,1,541,547380 ,1,542,545390 ,1,543,553440 ,1,544,544500 ,1,545,555885 ,1,546,551710 ,1,547,555470 ,1,548,547020 ,1,549,554755 ,1,550,555585 ,1,551,554415 ,1,552,555975 ,1,553,547580 ,1,554,546430 ,1,555,65 ,1,556,549345 ,1,557,557300 ,1,558,65 ,1,559,555615 ,1,560,65 ,1,561,553450 ,1,562,543655 ,1,563,553305 ,1,564,555650 ,1,565,545325 ,1,566,65 ,1,567,555675 ,1,568,548435 ,1,569,65 ,1,570,65 ,1,571,65 ,1,572,555625 ,1,573,551420 ,1,574,65 ,1,575,553730 ,1,576,65 ,1,577,65 ,1,578,554940 ,1,579,555915 ,1,580,551915 ,1,581,546105 ,1,582,554685 ,1,583,65 ,1,584,557265 ,1,585,555860 ,1,586,65 ,1,587,549300 ,1,588,65 ,1,589,555705 ,1,590,65 ,1,591,545505 ,1,592,65 ,1,593,65 ,1,594,556130 ,1,595,548445 ,1,596,65 ,1,597,65 ,1,598,544005 ,1,599,65 ,1,600,65 ,1,601,545305 ,1,602,555810 ,1,603,65 ,1,604,65 ,1,605,65 ,1,606,65 ,1,607,65 ,1,608,65 ,1,609,545150 ,1,610,553115 ,1,611,65 ,1,612,549410 ,1,613,65 ,1,614,65 ,1,615,65 ,1,616,65 ,1,617,65 ,1,618,65 ,1,619,65 ,1,620,554015 ,1,621,549095 ,1,622,65 ,1,623,551465 ,1,624,65 ,1,625,65 ,1,626,548935 ,1,627,553800 ,1,628,549880 ,1,629,555025 ,1,630,65 ,1,631,65 ,1,632,65 ,1,633,544905 ,1,634,552230 ,1,635,65 ,1,636,552935 ,1,637,555010 ,1,638,553565 ,1,639,554045 ,1,640,65 ,1,641,552630 ,1,642,550470 ,1,643,556800 ,1,644,65 ,1,645,65 ,1,646,553900 ,1,647,65 ,1,648,65 ,1,649,548685 ,1,650,65 ,1,651,552225 ,1,652,554365 ,1,653,552215 ,1,654,544465 ,1,655,65 ,1,656,547000 ,1,657,548495 ,1,658,549140 ,1,659,65 ,1,660,548615 ,1,661,65 ,1,662,65 ,1,663,65 ,1,664,65 ,1,665,65 ,1,666,65 ,1,667,548265 ,1,668,554635 ,1,669,550155 ,1,670,65 ,1,671,551330 ,1,672,65 ,1,673,65 ,1,674,555315 ,1,675,553940 ,1,676,555590 ,1,677,549510 ,1,678,556270 ,1,679,557240 ,1,680,551790 ,1,681,65 ,1,682,65 ,1,683,556340 ,1,684,553805 ,1,685,547740 ,1,686,65 ,1,687,547715 ,1,688,555795 ,1,689,548555 ,1,690,553790 ,1,691,556135 ,1,692,65 ,1,693,65 ,1,694,547690 ,1,695,545935 ,1,696,550750 ,1,697,554480 ,1,698,65 ,1,699,549715 ,1,700,65 ,1,701,549950 ,1,702,65 ,1,703,556050 ,1,704,555325 ,1,705,546110 ,1,706,553695 ,1,707,550670 ,1,708,65 ,1,709,554275 ,1,710,65 ,1,711,555525 ,1,712,65 ,1,713,548575 ,1,714,65 ,1,715,548805 ,1,716,554310 ,1,717,555110 ,1,718,65 ,1,719,65 ,1,720,65 ,1,721,65 ,1,722,65 ,1,723,65 ,1,724,556210 ,1,725,555450 ,1,726,65 ,1,727,550580 ,1,728,65 ,1,729,550530 ,1,730,557495 ,1,731,554720 ,1,732,545115 ,1,733,65 ,1,734,553100 ,1,735,557215 ,1,736,65 ,1,737,547145 ,1,738,550350 ,1,739,550960 ,1,740,543865 ,1,741,65 ,1,742,65 ,1,743,557500 ,1,744,65 ,1,745,553550 ,1,746,554095 ,1,747,555105 ,1,748,556395 ,1,749,543755 ,1,750,556470 ,1,751,65 ,1,752,65 ,1,753,552905 ,1,754,554180 ,1,755,548855 ,1,756,551085 ,1,757,557510 ,1,758,555140 ,1,759,65 ,1,760,556335 ,1,761,65 ,1,762,555385 ,1,763,554780 ,1,764,65 ,1,765,65 ,1,766,65 ,1,767,544495 ,1,768,548055 ,1,769,65 ,1,770,549830 ,1,771,547865 ,1,772,555535 ,1,773,65 ,1,774,551960 ,1,775,551845 ,1,776,547130 ,1,777,544285 ,1,778,548915 ,1,779,543625 ,1,780,546270 ,1,781,546120 ,1,782,65 ,1,783,556220 ,1,784,549020 ,1,785,555655 ,1,786,545270 ,1,787,65 ,1,788,555120 ,1,789,544035 ,1,790,555680 ,1,791,65 ,1,792,65 ,1,793,554725 ,1,794,65 ,1,795,547610 ,1,796,65 ,1,797,65 ,1,798,65 ,1,799,65 ,1,800,65 ,1,801,65 ,1,802,545180 ,1,803,546095 ,1,804,546235 ,1,805,556560 ,1,806,556005 ,1,807,65 ,1,808,548910 ,1,809,551570 ,1,810,544225 ,1,811,549055 ,1,812,65 ,1,813,65 ,1,814,553370 ,1,815,65 ,1,816,65 ,1,817,544655 ,1,818,556375 ,1,819,547960 ,1,820,544810 ,1,821,548800 ,1,822,551720 ,1,823,65 ,1,824,547700 ,1,825,553575 ,1,826,546450 ,1,827,549765 ,1,828,554710 ,1,829,553085 ,1,830,546945 ,1,831,65 ,1,832,548520 ,1,833,556030 ,1,834,65 ,1,835,545755 ,1,836,555445 ,1,837,555945 ,1,838,65 ,1,839,545585 ,1,840,544915 ,1,841,554885 ,1,842,550285 ,1,843,65 ,1,844,546190 ,1,845,546510 ,1,846,545195 ,1,847,556255 ,1,848,65 ,1,849,557275 ,1,850,65 ,1,851,65 ,1,852,544610 ,1,853,65 ,1,854,548680 ,1,855,65 ,1,856,65 ,1,857,65 ,1,858,554175 ,1,859,552550 ,1,860,550495 ,1,861,544295 ,1,862,65 ,1,863,65 ,1,864,546435 ,1,865,551565 ,1,866,547295 ,1,867,65 ,1,868,65 ,1,869,65 ,1,870,65 ,1,871,65 ,1,872,555995 ,1,873,65 ,1,874,65 ,1,875,555980 ,1,876,65 ,1,877,65 ,1,878,555210 ,1,879,552200 ,1,880,65 ,1,881,550905 ,1,882,65 ,1,883,65 ,1,884,543905 ,1,885,545245 ,1,886,553415 ,1,887,549600 ,1,888,550980 ,1,889,555320 ,1,890,556655 ,1,891,65 ,1,892,65 ,1,893,65 ,1,894,552135 ,1,895,547460 ,1,896,545910 ,1,897,545820 ,1,898,557150 ,1,899,65 ,1,900,554430 ,1,901,65 ,1,902,555280 ,1,903,65 ,1,904,65 ,1,905,65 ,1,906,65 ,1,907,65 ,1,908,555540 ,1,909,65 ,1,910,552010 ,1,911,556770 ,1,912,556905 ,1,913,549580 ,1,914,65 ,1,915,549235 ,1,916,554845 ,1,917,65 ,1,918,550390 ,1,919,544950 ,1,920,555685 ,1,921,554330 ,1,922,552700 ,1,923,65 ,1,924,65 ,1,925,546375 ,1,926,552765 ,1,927,551910 ,1,928,550150 ,1,929,553740 ,1,930,555030 ,1,931,550500 ,1,932,65 ,1,933,550665 ,1,934,553965 ,1,935,556940 ,1,936,556455 ,1,937,65 ,1,938,555020 ,1,939,65 ,1,940,548605 ,1,941,65 ,1,942,555875 ,1,943,548425 ,1,944,554105 ,1,945,544535 ,1,946,555480 ,1,947,555670 ,1,948,65 ,1,949,554830 ,1,950,549840 ,1,951,556525 ,1,952,65 ,1,953,551050 ,1,954,555850 ,1,955,550215 ,1,956,550435 ,1,957,65 ,1,958,555095 ,1,959,543825 ,1,960,555390 ,1,961,65 ,1,962,549045 ,1,963,547475 ,1,964,544450 ,1,965,65 ,1,966,556115 ,1,967,557575 ,1,968,552605 ,1,969,65 ,1,970,555595 ,1,971,557365 ,1,972,550410 ,1,973,556995 ,1,974,556445 ,1,975,65 ,1,976,557420 ,1,977,65 ,1,978,65 ,1,979,554835 ,1,980,555720 ,1,981,65 ,1,982,65 ,1,983,550025 ,1,984,552080 ,1,985,557515 ,1,986,65 ,1,987,65 ,1,988,550685 ,1,989,65 ,1,990,65 ,1,991,65 ,1,992,65 ,1,993,549365 ,1,994,555765 ,1,995,65 ,1,996,551410 ,1,997,65 ,1,998,549240 ,1,999,65 ,1,1000,548510 ,1,1001,556535 ,1,1002,65 ,1,1003,65 ,1,1004,65 ,1,1005,551345 ,1,1006,548545 ,1,1007,552410 ,1,1008,544690 ,1,1009,543965 ,1,1010,548070 ,1,1011,555715 ,1,1012,65 ,1,1013,65 ,1,1014,65 ,1,1015,550265 ,1,1016,65 ,1,1017,65 ,1,1018,549645 ,1,1019,65 ,1,1020,65 ,1,1021,549180 ,1,1022,555395 ,1,1023,554495 ,1,1024,554405 ,1,1025,555250 ,1,1026,65 ,1,1027,550525 ,1,1028,544095 ,1,1029,555520 ,1,1030,555075 ,1,1031,65 ,1,1032,65 ,1,1033,65 ,1,1034,556055 ,1,1035,551520 ,1,1036,551575 ,1,1037,549170 ,1,1038,546640 ,1,1039,556460 ,1,1040,556510 ,1,1041,65 ,1,1042,65 ,1,1043,65 ,1,1044,65 ,1,1045,65 ,1,1046,65 ,1,1047,552555 ,1,1048,557355 ,1,1049,65 ,1,1050,545695 ,1,1051,554220 ,1,1052,65 ,1,1053,65 ,1,1054,546770 ,1,1055,553480 ,1,1056,544000 ,1,1057,555155 ,1,1058,549155 ,1,1059,65 ,1,1060,65 ,1,1061,65 ,1,1062,65 ,1,1063,65 ,1,1064,65 ,1,1065,65 ,1,1066,556325 ,1,1067,547025 ,1,1068,65 ,1,1069,65 ,1,1070,65 ,1,1071,65 ,1,1072,65 ,1,1073,65 ,1,1074,65 ,1,1075,65 ,1,1076,551275 ,1,1077,546080 ,1,1078,554890 ,1,1079,65 ,1,1080,549960 ,1,1081,550210 ,1,1082,556650 ,1,1083,554555 ,1,1084,547995 ,1,1085,557155 ,1,1086,65 ,1,1087,65 ,1,1088,65 ,1,1089,65 ,1,1090,65 ,1,1091,65 ,1,1092,556320 ,1,1093,65 ,1,1094,551775 ,1,1095,554025 ,1,1096,65 ,1,1097,546665 ,1,1098,546675 ,1,1099,65 ,1,1100,549935 ,1,1101,545375 ,1,1102,65 ,1,1103,65 ,1,1104,551415 ,1,1105,65 ,1,1106,65 ,1,1107,556585 ,1,1108,550895 ,1,1109,65 ,1,1110,549555 ,1,1111,555310 ,1,1112,65 ,1,1113,65 ,1,1114,556215 ,1,1115,547375 ,1,1116,551205 ,1,1117,555780 ,1,1118,65 ,1,1119,65 ,1,1120,544695 ,1,1121,551460 ,1,1122,65 ,1,1123,553880 ,1,1124,550795 ,1,1125,65 ,1,1126,65 ,1,1127,553610 ,1,1128,65 ,1,1129,65 ,1,1130,65 ,1,1131,545060 ,1,1132,65 ,1,1133,65 ,1,1134,65 ,1,1135,65 ,1,1136,554505 ,1,1137,554540 ,1,1138,65 ,1,1139,65 ,1,1140,65 ,1,1141,65 ,1,1142,550030 ,1,1143,65 ,1,1144,65 ,1,1145,65 ,1,1146,65 ,1,1147,556400 ,1,1148,554325 ,1,1149,65 ,1,1150,545440 ,1,1151,546940 ,1,1152,65 ,1,1153,545610 ,1,1154,65 ,1,1155,65 ,1,1156,551290 ,1,1157,556475 ,1,1158,65 ,1,1159,543715 ,1,1160,65 ,1,1161,547360 ,1,1162,544630 ,1,1163,65 ,1,1164,65 ,1,1165,65 ,1,1166,65 ,1,1167,65 ,1,1168,65 ,1,1169,65 ,1,1170,550460 ,1,1171,546600 ,1,1172,556100 ,1,1173,65 ,1,1174,552290 ,1,1175,544765 ,1,1176,65 ,1,1177,544860 ,1,1178,554680 ,1,1179,65 ,1,1180,544885 ,1,1181,65 ,1,1182,65 ,1,1183,548270 ,1,1184,554360 ,1,1185,65 ,1,1186,65 ,1,1187,552875 ,1,1188,65 ,1,1189,65 ,1,1190,543455 ,1,1191,65 ,1,1192,65 ,1,1193,65 ,1,1194,65 ,1,1195,546505 ,1,1196,65 ,1,1197,543760 ,1,1198,554170 ,1,1199,545700 ,1,1200,554815 ,1,1201,65 ,1,1202,65 ,1,1203,65 ,1,1204,546885 ,1,1205,544100 ,1,1206,65 ,1,1207,65 ,1,1208,551475 ,1,1209,554760 ,1,1210,65 ,1,1211,65 ,1,1212,554165 ,1,1213,544850 ,1,1214,553125 ,1,1215,65 ,1,1216,551405 ,1,1217,547945 ,1,1218,547420 ,1,1219,65 ,1,1220,554065 ,1,1221,557075 ,1,1222,65 ,1,1223,65 ,1,1224,65 ,1,1225,65 ,1,1226,550785 ,1,1227,65 ,1,1228,65 ,1,1229,548560 ,1,1230,65 ,1,1231,65 ,1,1232,65 ,1,1233,551635 ,1,1234,546895 ,1,1235,546590 ,1,1236,554650 ,1,1237,65 ,1,1238,547235 ,1,1239,548625 ,1,1240,65 ,1,1241,65 ,1,1242,65 ,1,1243,65 ,1,1244,65 ,1,1245,65 ,1,1246,549325 ,1,1247,546760 ,1,1248,65 ,1,1249,65 ,1,1250,65 ,1,1251,550465 ,1,1252,65 ,1,1253,551235 ,1,1254,65 ,1,1255,65 ,1,1256,544710 ,1,1257,553555 ,1,1258,65 ,1,1259,65 ,1,1260,65 ,1,1261,553955 ,1,1262,548120 ,1,1263,550515 ,1,1264,547080 ,1,1265,65 ,1,1266,65 ,1,1267,65 ,1,1268,554240 ,1,1269,65 ,1,1270,65 ,1,1271,551485 ,1,1272,557310 ,1,1273,552675 ,1,1274,552490 ,1,1275,555530 ,1,1276,65 ,1,1277,556035 ,1,1278,544820 ,1,1279,543855 ,1,1280,546030 ,1,1281,549520 ,1,1282,544345 ,1,1283,554230 ,1,1284,552970 ,1,1285,65 ,1,1286,548765 ,1,1287,556190 ,1,1288,548400 ,1,1289,550270 ,1,1290,552815 ,1,1291,548330 ,1,1292,65 ,1,1293,65 ,1,1294,65 ,1,1295,555000 ,1,1296,555080 ,1,1297,65 ,1,1298,65 ,1,1299,65 ,1,1300,65 ,1,1301,65 ,1,1302,65 ,1,1303,65 ,1,1304,556565 ,1,1305,557570 ,1,1306,547230 ,1,1307,65 ,1,1308,546160 ,1,1309,556675 ,1,1310,545275 ,1,1311,554340 ,1,1312,551515 ,1,1313,65 ,1,1314,556720 ,1,1315,555985 ,1,1316,65 ,1,1317,65 ,1,1318,544060 ,1,1319,557005 ,1,1320,544570 ,1,1321,549370 ,1,1322,65 ,1,1323,556715 ,1,1324,552865 ,1,1325,550510 ,1,1326,65 ,1,1327,557025 ,1,1328,554645 ,1,1329,554160 ,1,1330,65 ,1,1331,65 ,1,1332,65 ,1,1333,65 ,1,1334,556670 ,1,1335,556910 ,1,1336,555005 ,1,1337,65 ,1,1338,65 ,1,1339,65 ,1,1340,65 ,1,1341,65 ,1,1342,65 ,1,1343,65 ,1,1344,554195 ,1,1345,547315 ,1,1346,557135 ,1,1347,65 ,1,1348,548905 ,1,1349,551660 ,1,1350,544870 ,1,1351,554570 ,1,1352,549035 ,1,1353,554235 ,1,1354,65 ,1,1355,65 ,1,1356,65 ,1,1357,549405 ,1,1358,547070 ,1,1359,65 ,1,1360,556780 ,1,1361,65 ,1,1362,65 ,1,1363,554190 ,1,1364,553435 ,1,1365,65 ,1,1366,65 ,1,1367,65 ,1,1368,548390 ,1,1369,550345 ,1,1370,554420 ,1,1371,554075 ,1,1372,553065 ,1,1373,549565 ,1,1374,554110 ,1,1375,545445 ,1,1376,65 ,1,1377,65 ,1,1378,545705 ,1,1379,547550 ,1,1380,65 ,1,1381,65 ,1,1382,65 ,1,1383,65 ,1,1384,65 ,1,1385,65 ,1,1386,65 ,1,1387,65 ,1,1388,548630 ,1,1389,65 ,1,1390,65 ,1,1391,543580 ,1,1392,549315 ,1,1393,551070 ,1,1394,556185 ,1,1395,550225 ,1,1396,65 ,1,1397,65 ,1,1398,65 ,1,1399,65 ,1,1400,544305 ,1,1401,554280 ,1,1402,543980 ,1,1403,546630 ,1,1404,555130 ,1,1405,546865 ,1,1406,549295 ,1,1407,555035 ,1,1408,65 ,1,1409,65 ,1,1410,551175 ,1,1411,553635 ,1,1412,547015 ,1,1413,557375 ,1,1414,549675 ,1,1415,65 ,1,1416,65 ,1,1417,554795 ,1,1418,557560 ,1,1419,65 ,1,1420,65 ,1,1421,65 ,1,1422,555460 ,1,1423,551015 ,1,1424,548770 ,1,1425,555350 ,1,1426,547940 ,1,1427,550085 ,1,1428,557080 ,1,1429,65 ,1,1430,554250 ,1,1431,546790 ,1,1432,65 ,1,1433,65 ,1,1434,65 ,1,1435,546380 ,1,1436,65 ,1,1437,547990 ,1,1438,548925 ,1,1439,550755 ,1,1440,556060 ,1,1441,65 ,1,1442,65 ,1,1443,555925 ,1,1444,65 ,1,1445,553680 ,1,1446,65 ,1,1447,554850 ,1,1448,65 ,1,1449,65 ,1,1450,65 ,1,1451,65 ,1,1452,65 ,1,1453,551580 ,1,1454,555730 ,1,1455,65 ,1,1456,546680 ,1,1457,65 ,1,1458,552940 ,1,1459,553835 ,1,1460,65 ,1,1461,550055 ,1,1462,65 ,1,1463,65 ,1,1464,555770 ,1,1465,557550 ,1,1466,65 ,1,1467,65 ,1,1468,554285 ,1,1469,553205 ,1,1470,65 ,1,1471,65 ,1,1472,554355 ,1,1473,65 ,1,1474,65 ,1,1475,65 ,1,1476,65 ,1,1477,65 ,1,1478,65 ,1,1479,552480 ,1,1480,65 ,1,1481,557230 ,1,1482,65 ,1,1483,65 ,1,1484,65 ,1,1485,65 ,1,1486,550000 ,1,1487,65 ,1,1488,65 ,1,1489,554820 ,1,1490,553050 ,1,1491,556125 ,1,1492,65 ,1,1493,545205 ,1,1494,65 ,1,1495,552260 ,1,1496,552695 ,1,1497,65 ,1,1498,65 ,1,1499,65 ,1,1500,553030 ,1,1501,65 ,1,1502,547565 ,1,1503,555255 ,1,1504,65 ,1,1505,65 ,1,1506,554640 ,1,1507,557790 ,1,1508,557785 ,1,1509,556645 ,1,1510,555700 ,1,1511,65 ,1,1512,557445 ,1,1513,555665 ,1,1514,65 ,1,1515,556790 ,1,1516,65 ,1,1517,65 ,1,1518,65 ,1,1519,544505 ,1,1520,548735 ,1,1521,555775 ,1,1522,555245 ,1,1523,65 ,1,1524,65 ,1,1525,556845 ,1,1526,65 ,1,1527,65 ,1,1528,65 ,1,1529,65 ,1,1530,551180 ,1,1531,65 ,1,1532,65 ,1,1533,555340 ,1,1534,551800 ,1,1535,65 ,1,1536,65 ,1,1537,65 ,1,1538,552880 ,1,1539,65 ,1,1540,65 ,1,1541,552250 ,1,1542,549925 ,1,1543,553485 ,1,1544,548515 ,1,1545,556390 ,1,1546,549350 ,1,1547,548340 ,1,1548,546035 ,1,1549,65 ,1,1550,554565 ,1,1551,543485 ,1,1552,546655 ,1,1553,555145 ,1,1554,554100 ,1,1555,65 ,1,1556,544595 ,1,1557,65 ,1,1558,65 ,1,1559,65 ,1,1560,555185 ,1,1561,65 ,1,1562,65 ,1,1563,65 ,1,1564,65 ,1,1565,546055 ,1,1566,548670 ,1,1567,65 ,1,1568,553295 ,1,1569,557165 ,1,1570,557020 ,1,1571,548165 ,1,1572,544650 ,1,1573,551310 ,1,1574,548130 ,1,1575,555345 ,1,1576,556180 ,1,1577,546580 ,1,1578,545930 ,1,1579,65 ,1,1580,545580 ,1,1581,550855 ,1,1582,552830 ,1,1583,548845 ,1,1584,545050 ,1,1585,65 ,1,1586,556110 ,1,1587,543475 ,1,1588,549605 ,1,1589,547480 ,1,1590,555845 ,1,1591,65 ,1,1592,544055 ,1,1593,548835 ,1,1594,65 ,1,1595,550335 ,1,1596,548975 ,1,1597,65 ,1,1598,556000 ,1,1599,557280 ,1,1600,65 ,1,1601,545740 ,1,1602,65 ,1,1603,65 ,1,1604,543915 ,1,1605,544245 ,1,1606,553945 ,1,1607,544185 ,1,1608,546860 ,1,1609,550405 ,1,1610,544255 ,1,1611,549225 ,1,1612,65 ,1,1613,65 ,1,1614,548015 ,1,1615,551020 ,1,1616,65 ,1,1617,65 ,1,1618,65 ,1,1619,546330 ,1,1620,545515 ,1,1621,548795 ,1,1622,65 ,1,1623,65 ,1,1624,65 ,1,1625,552570 ,1,1626,557085 ,1,1627,65 ,1,1628,65 ,1,1629,65 ,1,1630,556725 ,1,1631,555200 ,1,1632,556735 ,1,1633,546300 ,1,1634,550560 ,1,1635,544340 ,1,1636,550565 ,1,1637,551665 ,1,1638,65 ,1,1639,65 ,1,1640,545125 ,1,1641,543575 ,1,1642,65 ,1,1643,555455 ,1,1644,552900 ,1,1645,556440 ,1,1646,552845 ,1,1647,65 ,1,1648,557770 ,1,1649,557765 ,1,1650,554305 ,1,1651,550790 ,1,1652,548005 ,1,1653,550135 ,1,1654,65 ,1,1655,65 ,1,1656,557720 ,1,1657,557715 ,1,1658,556530 ,1,1659,65 ,1,1660,65 ,1,1661,550440 ,1,1662,65 ,1,1663,65 ,1,1664,546570 ,1,1665,65 ,1,1666,557210 ,1,1667,65 ,1,1668,545805 ,1,1669,65 ,1,1670,65 ,1,1671,557710 ,1,1672,557705 ,1,1673,543900 ,1,1674,65 ,1,1675,557270 ,1,1676,65 ,1,1677,65 ,1,1678,556915 ,1,1679,549640 ,1,1680,65 ,1,1681,65 ,1,1682,550640 ,1,1683,65 ,1,1684,65 ,1,1685,552965 ,1,1686,552870 ,1,1687,65 ,1,1688,550830 ,1,1689,547630 ,1,1690,551200 ,1,1691,549145 ,1,1692,552505 ,1,1693,65 ,1,1694,65 ,1,1695,557010 ,1,1696,65 ,1,1697,550910 ,1,1698,65 ,1,1699,554715 ,1,1700,554050 ,1,1701,65 ,1,1702,554255 ,1,1703,551285 ,1,1704,65 ,1,1705,557000 ,1,1706,65 ,1,1707,65 ,1,1708,549615 ,1,1709,553015 ,1,1710,65 ,1,1711,65 ,1,1712,65 ,1,1713,551215 ,1,1714,65 ,1,1715,554985 ,1,1716,65 ,1,1717,543820 ,1,1718,65 ,1,1719,545995 ,1,1720,556205 ,1,1721,553715 ,1,1722,549585 ,1,1723,65 ,1,1724,65 ,1,1725,546385 ,1,1726,65 ,1,1727,65 ,1,1728,65 ,1,1729,546835 ,1,1730,65 ,1,1731,65 ,1,1732,550645 ,1,1733,65 ,1,1734,65 ,1,1735,65 ,1,1736,549250 ,1,1737,65 ,1,1738,546360 ,1,1739,547135 ,1,1740,548480 ,1,1741,548125 ,1,1742,551400 ,1,1743,554980 ,1,1744,553300 ,1,1745,546855 ,1,1746,65 ,1,1747,65 ,1,1748,553280 ,1,1749,65 ,1,1750,548065 ,1,1751,552205 ,1,1752,557065 ,1,1753,65 ,1,1754,65 ,1,1755,65 ,1,1756,65 ,1,1757,65 ,1,1758,553155 ,1,1759,552475 ,1,1760,65 ,1,1761,554290 ,1,1762,548980 ,1,1763,65 ,1,1764,552705 ,1,1765,544910 ,1,1766,555205 ,1,1767,550675 ,1,1768,65 ,1,1769,65 ,1,1770,65 ,1,1771,65 ,1,1772,554690 ,1,1773,65 ,1,1774,65 ,1,1775,65 ,1,1776,543520 ,1,1777,552730 ,1,1778,549900 ,1,1779,65 ,1,1780,557440 ,1,1781,557410 ,1,1782,65 ,1,1783,555270 ,1,1784,65 ,1,1785,65 ,1,1786,65 ,1,1787,65 ,1,1788,554185 ,1,1789,550315 ,1,1790,65 ,1,1791,556935 ,1,1792,550195 ,1,1793,65 ,1,1794,550975 ,1,1795,549215 ,1,1796,553275 ,1,1797,65 ,1,1798,555415 ,1,1799,554410 ,1,1800,65 ,1,1801,544800 ,1,1802,65 ,1,1803,65 ,1,1804,65 ,1,1805,556380 ,1,1806,65 ,1,1807,545990 ,1,1808,65 ,1,1809,65 ,1,1810,65 ,1,1811,65 ,1,1812,65 ,1,1813,548990 ,1,1814,545000 ,1,1815,554945 ,1,1816,65 ,1,1817,548750 ,1,1818,548320 ,1,1819,65 ,1,1820,547455 ,1,1821,65 ,1,1822,65 ,1,1823,65 ,1,1824,557380 ,1,1825,554625 ,1,1826,549995 ,1,1827,552755 ,1,1828,553625 ,1,1829,556010 ,1,1830,544575 ,1,1831,556930 ,1,1832,65 ,1,1833,65 ,1,1834,65 ,1,1835,555190 ,1,1836,65 ,1,1837,65 ,1,1838,65 ,1,1839,65 ,1,1840,65 ,1,1841,65 ,1,1842,550220 ,1,1843,544750 ,1,1844,65 ,1,1845,65 ,1,1846,65 ,1,1847,65 ,1,1848,557480 ,1,1849,554950 ,1,1850,554770 ,1,1851,65 ,1,1852,65 ,1,1853,547515 ,1,1854,550985 ,1,1855,65 ,1,1856,65 ,1,1857,555505 ,1,1858,543565 ,1,1859,549890 ,1,1860,556900 ,1,1861,65 ,1,1862,556730 ,1,1863,545260 ,1,1864,65 ,1,1865,65 ,1,1866,65 ,1,1867,550800 ,1,1868,553385 ,1,1869,549040 ,1,1870,545355 ,1,1871,554575 ,1,1872,550200 ,1,1873,545365 ,1,1874,547875 ,1,1875,556195 ,1,1876,557485 ,1,1877,548175 ,1,1878,557160 ,1,1879,553360 ,1,1880,547435 ,1,1881,548815 ,1,1882,556660 ,1,1883,554350 ,1,1884,65 ,1,1885,551080 ,1,1886,65 ,1,1887,65 ,1,1888,65 ,1,1889,547055 ,1,1890,65 ,1,1891,65 ,1,1892,65 ,1,1893,551470 ,1,1894,65 ,1,1895,550005 ,1,1896,548160 ,1,1897,546425 ,1,1898,557140 ,1,1899,555800 ,1,1900,65 ,1,1901,65 ,1,1902,551315 ,1,1903,554300 ,1,1904,543925 ,1,1905,553380 ,1,1906,65 ,1,1907,556580 ,1,1908,545485 ,1,1909,545710 ,1,1910,547795 ,1,1911,548745 ,1,1912,556860 ,1,1913,65 ,1,1914,546250 ,1,1915,554560 ,1,1916,554790 ,1,1917,552020 ,1,1918,65 ,1,1919,553645 ,1,1920,65 ,1,1921,65 ,1,1922,545880 ,1,1923,550590 ,1,1924,553490 ,1,1925,65 ,1,1926,65 ,1,1927,65 ,1,1928,65 ,1,1929,545335 ,1,1930,550820 ,1,1931,555660 ,1,1932,555475 ,1,1933,555710 ,1,1934,548785 ,1,1935,554620 ,1,1936,547270 ,1,1937,545085 ,1,1938,555335 ,1,1939,555735 ,1,1940,556065 ,1,1941,65 ,1,1942,550190 ,1,1943,554970 ,1,1944,65 ,1,1945,557350 ,1,1946,554070 ,1,1947,545145 ,1,1948,551040 ,1,1949,554955 ,1,1950,65 ,1,1951,554610 ,1,1952,551750 ,1,1953,552770 ,1,1954,550380 ,1,1955,553950 ,1,1956,65 ,1,1957,65 ,1,1958,65 ,1,1959,556410 ,1,1960,552030 ,1,1961,551925 ,1,1962,556505 ,1,1963,551820 ,1,1964,65 ,1,1965,547160 ,1,1966,553895 ,1,1967,552820 ,1,1968,550325 ,1,1969,556570 ,1,1970,544050 ,1,1971,65 ,1,1972,556405 ,1,1973,65 ,1,1974,552295 ,1,1975,543450 ,1,1976,556500 ,1,1977,65 ,1,1978,556330 ,1,1979,65 ,1,1980,546390 ,1,1981,546245 ,1,1982,65 ,1,1983,548405 ,1,1984,544520 ,1,1985,544435 ,1,1986,545425 ,1,1987,552065 ,1,1988,553830 ,1,1989,556555 ,1,1990,551945 ,1,1991,548960 ,1,1992,548485 ,1,1993,544175 ,1,1994,551830 ,1,1995,65 ,1,1996,544140 ,1,1997,552810 ,1,1998,555920 ,1,1999,543650 ,1,2000,65 ,1,2001,65 ,1,2002,550445 ,1,2003,553230 ,1,2004,550505 ,1,2005,547575 ,1,2006,554875 ,1,2007,544830 ,1,2008,543750 ,1,2009,550130 ,1,2010,543815 ,1,2011,65 ,1,2012,544405 ,1,2013,544740 ,1,2014,65 ,1,2015,545140 ,1,2016,557245 ,1,2017,551140 ,1,2018,555600 ,1,2019,551035 ,1,2020,551545 ,1,2021,545800 ,1,2022,545255 ,1,2023,556450 ,1,2024,545920 ,1,2025,549080 ,1,2026,548870 ,1,2027,546170 ,1,2028,544760 ,1,2029,552155 ,1,2030,543695 ,1,2031,554695 ,1,2032,550845 ,1,2033,65 ,1,2034,552415 ,1,2035,544945 ,1,2036,549505 ,1,2037,556520 ,1,2038,546295 ,1,2039,552105 ,1,2040,557295 ,1,2041,549210 ,1,2042,549690 ,1,2043,550295 ,1,2044,555805 ,1,2045,65 ,1,2046,65 ,1,2047,556245 ,1,2048,65 ,1,2049,546830 ,2,14956,260340 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,152055 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,260330 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234690 ,2,14979,336180 ,2,829,45 ,1,0,100 ,1,1,573360 ,1,2,582275 ,2,14956,260380 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,91280 ,2,14965,45 ,2,14978,45 ,2,14979,335945 ,2,829,45 ,1,0,167060 ,2,14956,257015 ,2,822,33695 ,2,14975,577690 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332735 ,2,829,45 ,1,0,100 ,2,14956,260390 ,2,822,33695 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,332745 ,2,829,45 ,1,0,668180 ,1,1,615295 ,1,2,580555 ,1,3,568180 ,1,4,575905 ,1,5,599850 ,1,6,568710 ,1,7,65 ,1,8,590510 ,1,9,570095 ,1,10,592610 ,1,11,592405 ,1,12,570100 ,1,13,593705 ,1,14,568425 ,1,15,65 ,1,16,561370 ,1,17,561395 ,1,18,571845 ,1,19,65 ,1,20,571840 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,588545 ,1,25,584810 ,1,26,567660 ,1,27,571215 ,1,28,596195 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,565205 ,1,33,65 ,1,34,599845 ,1,35,580860 ,1,36,561440 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,583755 ,1,41,583750 ,1,42,596750 ,1,43,562825 ,1,44,576855 ,1,45,65 ,1,46,65 ,1,47,579290 ,1,48,564715 ,1,49,564700 ,1,50,567610 ,1,51,579105 ,1,52,65 ,1,53,65 ,1,54,565360 ,1,55,572155 ,1,56,65 ,1,57,65 ,1,58,65 ,1,59,574050 ,1,60,565590 ,1,61,581710 ,1,62,591540 ,1,63,578755 ,1,64,65 ,1,65,569140 ,1,66,573385 ,1,67,65 ,1,68,596205 ,1,69,567155 ,1,70,571515 ,1,71,599840 ,1,72,599835 ,1,73,65 ,1,74,588955 ,1,75,575425 ,1,76,558035 ,1,77,599830 ,1,78,65 ,1,79,575470 ,1,80,65 ,1,81,65 ,1,82,65 ,1,83,65 ,1,84,65 ,1,85,65 ,1,86,65 ,1,87,65 ,1,88,65 ,1,89,65 ,1,90,65 ,1,91,65 ,1,92,560345 ,1,93,558965 ,1,94,65 ,1,95,570505 ,1,96,570490 ,1,97,65 ,1,98,65 ,1,99,65 ,1,100,65 ,1,101,558655 ,1,102,588435 ,1,103,576350 ,1,104,574940 ,1,105,567600 ,1,106,565015 ,1,107,65 ,1,108,599825 ,1,109,599820 ,1,110,65 ,1,111,566960 ,1,112,592145 ,1,113,65 ,1,114,65 ,1,115,568430 ,1,116,586200 ,1,117,592190 ,1,118,595495 ,1,119,591195 ,1,120,580800 ,1,121,581160 ,1,122,65 ,1,123,590570 ,1,124,567850 ,1,125,567845 ,1,126,580845 ,1,127,573985 ,1,128,570530 ,1,129,577775 ,1,130,570540 ,1,131,599785 ,1,132,593990 ,1,133,565020 ,1,134,588035 ,1,135,570890 ,1,136,577080 ,1,137,570635 ,1,138,577910 ,1,139,599780 ,1,140,582450 ,1,141,584290 ,1,142,584020 ,1,143,592640 ,1,144,580345 ,1,145,65 ,1,146,593870 ,1,147,591015 ,1,148,573965 ,1,149,573685 ,1,150,573650 ,1,151,569650 ,1,152,599775 ,1,153,569580 ,1,154,569550 ,1,155,65 ,1,156,569870 ,1,157,583370 ,1,158,583365 ,1,159,594635 ,1,160,558515 ,1,161,599770 ,1,162,65 ,1,163,577115 ,1,164,65 ,1,165,65 ,1,166,595435 ,1,167,65 ,1,168,599755 ,1,169,65 ,1,170,65 ,1,171,65 ,1,172,575865 ,1,173,569045 ,1,174,585985 ,1,175,564285 ,1,176,596070 ,1,177,65 ,1,178,568495 ,1,179,558545 ,1,180,599750 ,1,181,567920 ,1,182,575895 ,1,183,564135 ,1,184,562615 ,1,185,562610 ,1,186,65 ,1,187,584645 ,1,188,567925 ,1,189,574600 ,1,190,565970 ,1,191,563110 ,1,192,577995 ,1,193,588410 ,1,194,65 ,1,195,600025 ,1,196,564245 ,1,197,65 ,1,198,586925 ,1,199,593355 ,1,200,65 ,1,201,65 ,1,202,65 ,1,203,588185 ,1,204,596275 ,1,205,565095 ,1,206,65 ,1,207,65 ,1,208,65 ,1,209,65 ,1,210,593390 ,1,211,588665 ,1,212,599745 ,1,213,65 ,1,214,585450 ,1,215,559855 ,1,216,65 ,1,217,65 ,1,218,65 ,1,219,65 ,1,220,65 ,1,221,65 ,1,222,596820 ,1,223,585150 ,1,224,65 ,1,225,65 ,1,226,65 ,1,227,599945 ,1,228,599940 ,1,229,65 ,1,230,65 ,1,231,583160 ,1,232,571650 ,1,233,562725 ,1,234,583485 ,1,235,583465 ,1,236,65 ,1,237,580545 ,1,238,580550 ,1,239,565035 ,1,240,65 ,1,241,583290 ,1,242,576285 ,1,243,589070 ,1,244,558695 ,1,245,576270 ,1,246,570795 ,1,247,570895 ,1,248,594410 ,1,249,65 ,1,250,564650 ,1,251,584500 ,1,252,587895 ,1,253,578760 ,1,254,65 ,1,255,590730 ,1,256,65 ,1,257,65 ,1,258,65 ,1,259,584355 ,1,260,582950 ,1,261,589045 ,1,262,576990 ,1,263,561230 ,1,264,585515 ,1,265,583020 ,1,266,592130 ,1,267,562525 ,1,268,65 ,1,269,65 ,1,270,65 ,1,271,65 ,1,272,65 ,1,273,595160 ,1,274,584955 ,1,275,596970 ,1,276,564080 ,1,277,581405 ,1,278,583030 ,1,279,567720 ,1,280,596825 ,1,281,590200 ,1,282,567725 ,1,283,599740 ,1,284,574495 ,1,285,572945 ,1,286,563330 ,1,287,574515 ,1,288,581185 ,1,289,572830 ,1,290,586105 ,1,291,586095 ,1,292,65 ,1,293,576660 ,1,294,565560 ,1,295,65 ,1,296,575055 ,1,297,574885 ,1,298,582460 ,1,299,580675 ,1,300,571410 ,1,301,571370 ,1,302,566910 ,1,303,564140 ,1,304,589485 ,1,305,65 ,1,306,579405 ,1,307,579740 ,1,308,580855 ,1,309,65 ,1,310,590545 ,1,311,592785 ,1,312,585965 ,1,313,564570 ,1,314,580395 ,1,315,581750 ,1,316,594360 ,1,317,581660 ,1,318,65 ,1,319,65 ,1,320,579495 ,1,321,580080 ,1,322,563260 ,1,323,558155 ,1,324,599715 ,1,325,65 ,1,326,65 ,1,327,65 ,1,328,65 ,1,329,571980 ,1,330,572020 ,1,331,65 ,1,332,591700 ,1,333,566765 ,1,334,65 ,1,335,583115 ,1,336,583235 ,1,337,568380 ,1,338,599710 ,1,339,563420 ,1,340,65 ,1,341,564170 ,1,342,65 ,1,343,600020 ,1,344,600015 ,1,345,65 ,1,346,65 ,1,347,65 ,1,348,587265 ,1,349,587250 ,1,350,589510 ,1,351,594850 ,1,352,65 ,1,353,65 ,1,354,65 ,1,355,581645 ,1,356,567985 ,1,357,580895 ,1,358,561975 ,1,359,559895 ,1,360,580870 ,1,361,577470 ,1,362,65 ,1,363,65 ,1,364,588870 ,1,365,65 ,1,366,65 ,1,367,599705 ,1,368,575170 ,1,369,575160 ,1,370,599700 ,1,371,65 ,1,372,561585 ,1,373,595120 ,1,374,65 ,1,375,65 ,1,376,572650 ,1,377,65 ,1,378,65 ,1,379,65 ,1,380,65 ,1,381,65 ,1,382,65 ,1,383,593085 ,1,384,564150 ,1,385,563990 ,1,386,65 ,1,387,65 ,1,388,584145 ,1,389,563570 ,1,390,564065 ,1,391,564310 ,1,392,65 ,1,393,589210 ,1,394,589205 ,1,395,562865 ,1,396,581505 ,1,397,581585 ,1,398,592450 ,1,399,591895 ,1,400,65 ,1,401,65 ,1,402,564495 ,1,403,567205 ,1,404,576720 ,1,405,65 ,1,406,563495 ,1,407,65 ,1,408,581905 ,1,409,581910 ,1,410,592600 ,1,411,562605 ,1,412,65 ,1,413,65 ,1,414,588780 ,1,415,65 ,1,416,65 ,1,417,568980 ,1,418,586650 ,1,419,570050 ,1,420,559935 ,1,421,583045 ,1,422,573675 ,1,423,578875 ,1,424,571125 ,1,425,570040 ,1,426,580725 ,1,427,568985 ,1,428,65 ,1,429,592765 ,1,430,65 ,1,431,593075 ,1,432,582335 ,1,433,582330 ,1,434,591600 ,1,435,65 ,1,436,575315 ,1,437,575310 ,1,438,576730 ,1,439,596675 ,1,440,65 ,1,441,65 ,1,442,65 ,1,443,65 ,1,444,65 ,1,445,65 ,1,446,576650 ,1,447,587880 ,1,448,65 ,1,449,65 ,1,450,65 ,1,451,65 ,1,452,582945 ,1,453,593175 ,1,454,65 ,1,455,65 ,1,456,65 ,1,457,65 ,1,458,65 ,1,459,65 ,1,460,574955 ,1,461,574945 ,1,462,65 ,1,463,586235 ,1,464,65 ,1,465,65 ,1,466,65 ,1,467,564115 ,1,468,65 ,1,469,576175 ,1,470,594815 ,1,471,65 ,1,472,65 ,1,473,567990 ,1,474,595315 ,1,475,585935 ,1,476,585930 ,1,477,65 ,1,478,65 ,1,479,65 ,1,480,599695 ,1,481,599690 ,1,482,593115 ,1,483,65 ,1,484,65 ,1,485,573890 ,1,486,573895 ,1,487,65 ,1,488,560480 ,1,489,591720 ,1,490,65 ,1,491,585185 ,1,492,65 ,1,493,581520 ,1,494,65 ,1,495,574500 ,1,496,65 ,1,497,566405 ,1,498,566450 ,1,499,65 ,1,500,558095 ,1,501,65 ,1,502,65 ,1,503,592885 ,1,504,580920 ,1,505,65 ,1,506,65 ,1,507,65 ,1,508,578940 ,1,509,578120 ,1,510,581825 ,1,511,574800 ,1,512,562720 ,1,513,584215 ,1,514,578955 ,1,515,584210 ,1,516,65 ,1,517,589515 ,1,518,65 ,1,519,599685 ,1,520,599680 ,1,521,587650 ,1,522,585360 ,1,523,574185 ,1,524,565685 ,1,525,592960 ,1,526,572510 ,1,527,573450 ,1,528,579635 ,1,529,589710 ,1,530,594440 ,1,531,65 ,1,532,65 ,1,533,591215 ,1,534,65 ,1,535,558840 ,1,536,599650 ,1,537,558580 ,1,538,577730 ,1,539,578340 ,1,540,578930 ,1,541,65 ,1,542,65 ,1,543,599645 ,1,544,65 ,1,545,65 ,1,546,65 ,1,547,65 ,1,548,65 ,1,549,65 ,1,550,65 ,1,551,65 ,1,552,65 ,1,553,65 ,1,554,65 ,1,555,65 ,1,556,560895 ,1,557,560690 ,1,558,65 ,1,559,586995 ,1,560,587030 ,1,561,585025 ,1,562,65 ,1,563,65 ,1,564,65 ,1,565,581865 ,1,566,581760 ,1,567,592415 ,1,568,65 ,1,569,65 ,1,570,560515 ,1,571,65 ,1,572,65 ,1,573,65 ,1,574,65 ,1,575,559150 ,1,576,575275 ,1,577,65 ,1,578,575270 ,1,579,65 ,1,580,594685 ,1,581,65 ,1,582,584100 ,1,583,572910 ,1,584,65 ,1,585,589230 ,1,586,585065 ,1,587,65 ,1,588,583145 ,1,589,583150 ,1,590,65 ,1,591,561790 ,1,592,573190 ,1,593,575775 ,1,594,65 ,1,595,562175 ,1,596,65 ,1,597,592520 ,1,598,563585 ,1,599,580230 ,1,600,582580 ,1,601,65 ,1,602,571365 ,1,603,599640 ,1,604,585975 ,1,605,562135 ,1,606,65 ,1,607,65 ,1,608,65 ,1,609,65 ,1,610,567345 ,1,611,590825 ,1,612,595895 ,1,613,65 ,1,614,580795 ,1,615,65 ,1,616,581320 ,1,617,65 ,1,618,65 ,1,619,584425 ,1,620,65 ,1,621,65 ,1,622,575070 ,1,623,597050 ,1,624,65 ,1,625,596725 ,1,626,594690 ,1,627,65 ,1,628,578315 ,1,629,595350 ,1,630,599905 ,1,631,583620 ,1,632,583615 ,1,633,65 ,1,634,574345 ,1,635,591375 ,1,636,65 ,1,637,572355 ,1,638,573960 ,1,639,65 ,1,640,577345 ,1,641,588965 ,1,642,65 ,1,643,586405 ,1,644,65 ,1,645,65 ,1,646,565160 ,1,647,595760 ,1,648,595780 ,1,649,571460 ,1,650,578210 ,1,651,591870 ,1,652,585710 ,1,653,563555 ,1,654,65 ,1,655,65 ,1,656,65 ,1,657,65 ,1,658,65 ,1,659,597135 ,1,660,557980 ,1,661,65 ,1,662,65 ,1,663,570815 ,1,664,587655 ,1,665,572105 ,1,666,576870 ,1,667,587660 ,1,668,589400 ,1,669,560270 ,1,670,594915 ,1,671,580825 ,1,672,65 ,1,673,562950 ,1,674,65 ,1,675,577560 ,1,676,65 ,1,677,580600 ,1,678,589740 ,1,679,65 ,1,680,568785 ,1,681,590435 ,1,682,65 ,1,683,65 ,1,684,570800 ,1,685,582805 ,1,686,571465 ,1,687,571455 ,1,688,65 ,1,689,559850 ,1,690,65 ,1,691,585180 ,1,692,65 ,1,693,590385 ,1,694,65 ,1,695,65 ,1,696,65 ,1,697,65 ,1,698,65 ,1,699,65 ,1,700,65 ,1,701,566000 ,1,702,568125 ,1,703,568185 ,1,704,65 ,1,705,599635 ,1,706,65 ,1,707,65 ,1,708,65 ,1,709,65 ,1,710,599630 ,1,711,65 ,1,712,65 ,1,713,65 ,1,714,65 ,1,715,559025 ,1,716,589080 ,1,717,65 ,1,718,65 ,1,719,65 ,1,720,584465 ,1,721,65 ,1,722,564295 ,1,723,65 ,1,724,562750 ,1,725,65 ,1,726,65 ,1,727,65 ,1,728,589590 ,1,729,65 ,1,730,65 ,1,731,587620 ,1,732,587385 ,1,733,590265 ,1,734,65 ,1,735,65 ,1,736,65 ,1,737,65 ,1,738,590465 ,1,739,574995 ,1,740,572575 ,1,741,580595 ,1,742,569445 ,1,743,584175 ,1,744,571340 ,1,745,560450 ,1,746,65 ,1,747,65 ,1,748,569450 ,1,749,577740 ,1,750,65 ,1,751,65 ,1,752,592355 ,1,753,578395 ,1,754,65 ,1,755,65 ,1,756,65 ,1,757,592720 ,1,758,65 ,1,759,65 ,1,760,575950 ,1,761,575955 ,1,762,583970 ,1,763,583965 ,1,764,65 ,1,765,566135 ,1,766,65 ,1,767,65 ,1,768,599625 ,1,769,65 ,1,770,65 ,1,771,65 ,1,772,65 ,1,773,594665 ,1,774,571715 ,1,775,65 ,1,776,599620 ,1,777,65 ,1,778,65 ,1,779,65 ,1,780,65 ,1,781,65 ,1,782,65 ,1,783,65 ,1,784,579805 ,1,785,65 ,1,786,65 ,1,787,65 ,1,788,65 ,1,789,65 ,1,790,65 ,1,791,65 ,1,792,65 ,1,793,65 ,1,794,568025 ,1,795,568040 ,1,796,65 ,1,797,65 ,1,798,65 ,1,799,65 ,1,800,65 ,1,801,580135 ,1,802,581170 ,1,803,582560 ,1,804,599615 ,1,805,65 ,1,806,595105 ,1,807,561875 ,1,808,65 ,1,809,568205 ,1,810,560290 ,1,811,65 ,1,812,596270 ,1,813,65 ,1,814,65 ,1,815,65 ,1,816,579615 ,1,817,580050 ,1,818,562920 ,1,819,65 ,1,820,559965 ,1,821,590450 ,1,822,65 ,1,823,65 ,1,824,65 ,1,825,65 ,1,826,65 ,1,827,567745 ,1,828,558885 ,1,829,577055 ,1,830,594425 ,1,831,65 ,1,832,65 ,1,833,65 ,1,834,567240 ,1,835,65 ,1,836,65 ,1,837,65 ,1,838,65 ,1,839,585530 ,1,840,65 ,1,841,65 ,1,842,582760 ,1,843,578030 ,1,844,65 ,1,845,585460 ,1,846,583940 ,1,847,578350 ,1,848,583910 ,1,849,65 ,1,850,586720 ,1,851,568460 ,1,852,65 ,1,853,581035 ,1,854,564490 ,1,855,594955 ,1,856,591455 ,1,857,591935 ,1,858,65 ,1,859,65 ,1,860,586730 ,1,861,65 ,1,862,65 ,1,863,65 ,1,864,65 ,1,865,599585 ,1,866,65 ,1,867,565820 ,1,868,581965 ,1,869,65 ,1,870,565825 ,1,871,567295 ,1,872,590965 ,1,873,565670 ,1,874,599580 ,1,875,572150 ,1,876,589580 ,1,877,65 ,1,878,65 ,1,879,574120 ,1,880,65 ,1,881,582720 ,1,882,594485 ,1,883,65 ,1,884,65 ,1,885,567945 ,1,886,567995 ,1,887,578320 ,1,888,65 ,1,889,599575 ,1,890,65 ,1,891,65 ,1,892,65 ,1,893,576745 ,1,894,571375 ,1,895,571760 ,1,896,65 ,1,897,585640 ,1,898,585650 ,1,899,591880 ,1,900,575325 ,1,901,576540 ,1,902,599965 ,1,903,587945 ,1,904,576605 ,1,905,595515 ,1,906,558115 ,1,907,581225 ,1,908,579270 ,1,909,591960 ,1,910,563745 ,1,911,560595 ,1,912,587800 ,1,913,563750 ,1,914,581600 ,1,915,575280 ,1,916,572555 ,1,917,569465 ,1,918,65 ,1,919,559600 ,1,920,593210 ,1,921,573355 ,1,922,595235 ,1,923,65 ,1,924,65 ,1,925,584040 ,1,926,584035 ,1,927,65 ,1,928,65 ,1,929,572515 ,1,930,593240 ,1,931,595240 ,1,932,576235 ,1,933,576240 ,1,934,65 ,1,935,596085 ,1,936,65 ,1,937,574675 ,1,938,595320 ,1,939,596455 ,1,940,584510 ,1,941,587380 ,1,942,587345 ,1,943,579300 ,1,944,573175 ,1,945,563055 ,1,946,569755 ,1,947,65 ,1,948,567460 ,1,949,567520 ,1,950,65 ,1,951,65 ,1,952,563385 ,1,953,65 ,1,954,582900 ,1,955,577095 ,1,956,594880 ,1,957,577085 ,1,958,65 ,1,959,579610 ,1,960,571445 ,1,961,586605 ,1,962,557905 ,1,963,590050 ,1,964,586635 ,1,965,580165 ,1,966,65 ,1,967,65 ,1,968,65 ,1,969,593225 ,1,970,581930 ,1,971,581935 ,1,972,65 ,1,973,565845 ,1,974,65 ,1,975,65 ,1,976,65 ,1,977,65 ,1,978,562330 ,1,979,595585 ,1,980,65 ,1,981,582835 ,1,982,600040 ,1,983,600065 ,1,984,560470 ,1,985,582755 ,1,986,590595 ,1,987,567465 ,1,988,561860 ,1,989,65 ,1,990,65 ,1,991,558710 ,1,992,571380 ,1,993,578215 ,1,994,568170 ,1,995,559250 ,1,996,581770 ,1,997,581745 ,1,998,596355 ,1,999,597170 ,1,1000,589650 ,1,1001,561450 ,1,1002,570210 ,1,1003,596630 ,1,1004,65 ,1,1005,65 ,1,1006,590660 ,1,1007,585960 ,1,1008,578280 ,1,1009,582275 ,1,1010,563025 ,1,1011,65 ,1,1012,65 ,1,1013,65 ,1,1014,65 ,1,1015,65 ,1,1016,65 ,1,1017,65 ,1,1018,586125 ,1,1019,583450 ,1,1020,583445 ,1,1021,65 ,1,1022,65 ,1,1023,569715 ,1,1024,557910 ,1,1025,589170 ,1,1026,569720 ,1,1027,590975 ,1,1028,65 ,1,1029,65 ,1,1030,65 ,1,1031,65 ,1,1032,65 ,1,1033,65 ,1,1034,65 ,1,1035,563850 ,1,1036,65 ,1,1037,65 ,1,1038,65 ,1,1039,65 ,1,1040,562450 ,1,1041,594270 ,1,1042,65 ,1,1043,65 ,1,1044,568625 ,1,1045,578080 ,1,1046,577620 ,1,1047,586265 ,1,1048,65 ,1,1049,560590 ,1,1050,581500 ,1,1051,584435 ,1,1052,65 ,1,1053,593100 ,1,1054,65 ,1,1055,65 ,1,1056,593080 ,1,1057,584205 ,1,1058,592315 ,1,1059,591705 ,1,1060,584225 ,1,1061,592270 ,1,1062,591760 ,1,1063,581960 ,1,1064,567350 ,1,1065,65 ,1,1066,593090 ,1,1067,565530 ,1,1068,65 ,1,1069,65 ,1,1070,563050 ,1,1071,594945 ,1,1072,65 ,1,1073,579710 ,1,1074,561340 ,1,1075,571100 ,1,1076,579695 ,1,1077,571105 ,1,1078,65 ,1,1079,593835 ,1,1080,65 ,1,1081,65 ,1,1082,575075 ,1,1083,65 ,1,1084,65 ,1,1085,558795 ,1,1086,575050 ,1,1087,560355 ,1,1088,572895 ,1,1089,572690 ,1,1090,599570 ,1,1091,599565 ,1,1092,559660 ,1,1093,563165 ,1,1094,65 ,1,1095,65 ,1,1096,65 ,1,1097,65 ,1,1098,594355 ,1,1099,569985 ,1,1100,570020 ,1,1101,588745 ,1,1102,65 ,1,1103,65 ,1,1104,594365 ,1,1105,65 ,1,1106,65 ,1,1107,65 ,1,1108,65 ,1,1109,570370 ,1,1110,589330 ,1,1111,586120 ,1,1112,599560 ,1,1113,574055 ,1,1114,65 ,1,1115,65 ,1,1116,65 ,1,1117,581895 ,1,1118,560335 ,1,1119,583875 ,1,1120,559795 ,1,1121,583850 ,1,1122,65 ,1,1123,599555 ,1,1124,579425 ,1,1125,597150 ,1,1126,65 ,1,1127,559995 ,1,1128,571520 ,1,1129,571470 ,1,1130,65 ,1,1131,65 ,1,1132,560520 ,1,1133,591185 ,1,1134,562440 ,1,1135,578535 ,1,1136,65 ,1,1137,566385 ,1,1138,599550 ,1,1139,568160 ,1,1140,588865 ,1,1141,65 ,1,1142,568190 ,1,1143,566390 ,1,1144,592890 ,1,1145,576685 ,1,1146,65 ,1,1147,565660 ,1,1148,65 ,1,1149,557835 ,1,1150,65 ,1,1151,595965 ,1,1152,65 ,1,1153,559860 ,1,1154,65 ,1,1155,573205 ,1,1156,568905 ,1,1157,559080 ,1,1158,65 ,1,1159,568900 ,1,1160,587970 ,1,1161,588150 ,1,1162,596460 ,1,1163,65 ,1,1164,65 ,1,1165,65 ,1,1166,584405 ,1,1167,579565 ,1,1168,65 ,1,1169,591460 ,1,1170,65 ,1,1171,65 ,1,1172,559775 ,1,1173,65 ,1,1174,560395 ,1,1175,573010 ,1,1176,586070 ,1,1177,577410 ,1,1178,578335 ,1,1179,579555 ,1,1180,65 ,1,1181,586055 ,1,1182,580155 ,1,1183,65 ,1,1184,65 ,1,1185,562925 ,1,1186,574250 ,1,1187,591485 ,1,1188,65 ,1,1189,65 ,1,1190,65 ,1,1191,65 ,1,1192,65 ,1,1193,65 ,1,1194,580435 ,1,1195,558985 ,1,1196,65 ,1,1197,65 ,1,1198,65 ,1,1199,65 ,1,1200,65 ,1,1201,65 ,1,1202,564655 ,1,1203,599515 ,1,1204,65 ,1,1205,563985 ,1,1206,65 ,1,1207,584285 ,1,1208,588750 ,1,1209,65 ,1,1210,581440 ,1,1211,65 ,1,1212,599510 ,1,1213,576490 ,1,1214,576655 ,1,1215,65 ,1,1216,65 ,1,1217,562315 ,1,1218,596685 ,1,1219,590320 ,1,1220,590325 ,1,1221,65 ,1,1222,590145 ,1,1223,65 ,1,1224,65 ,1,1225,65 ,1,1226,572235 ,1,1227,572225 ,1,1228,581460 ,1,1229,65 ,1,1230,599505 ,1,1231,599500 ,1,1232,65 ,1,1233,573505 ,1,1234,599495 ,1,1235,574170 ,1,1236,65 ,1,1237,574180 ,1,1238,65 ,1,1239,65 ,1,1240,65 ,1,1241,65 ,1,1242,571805 ,1,1243,587940 ,1,1244,580710 ,1,1245,599490 ,1,1246,65 ,1,1247,599485 ,1,1248,65 ,1,1249,65 ,1,1250,580830 ,1,1251,568220 ,1,1252,592015 ,1,1253,65 ,1,1254,65 ,1,1255,558175 ,1,1256,65 ,1,1257,564970 ,1,1258,564975 ,1,1259,592955 ,1,1260,65 ,1,1261,65 ,1,1262,65 ,1,1263,585680 ,1,1264,65 ,1,1265,596060 ,1,1266,65 ,1,1267,582245 ,1,1268,581525 ,1,1269,65 ,1,1270,594950 ,1,1271,566210 ,1,1272,65 ,1,1273,557840 ,1,1274,65 ,1,1275,65 ,1,1276,65 ,1,1277,582215 ,1,1278,591315 ,1,1279,585800 ,1,1280,594755 ,1,1281,599480 ,1,1282,65 ,1,1283,561770 ,1,1284,65 ,1,1285,65 ,1,1286,573700 ,1,1287,65 ,1,1288,65 ,1,1289,65 ,1,1290,65 ,1,1291,591665 ,1,1292,575340 ,1,1293,599450 ,1,1294,65 ,1,1295,65 ,1,1296,585795 ,1,1297,560710 ,1,1298,562180 ,1,1299,584700 ,1,1300,65 ,1,1301,562250 ,1,1302,589645 ,1,1303,65 ,1,1304,65 ,1,1305,65 ,1,1306,65 ,1,1307,65 ,1,1308,65 ,1,1309,65 ,1,1310,65 ,1,1311,599445 ,1,1312,599440 ,1,1313,65 ,1,1314,580910 ,1,1315,579540 ,1,1316,571225 ,1,1317,580925 ,1,1318,579630 ,1,1319,65 ,1,1320,65 ,1,1321,593280 ,1,1322,65 ,1,1323,65 ,1,1324,65 ,1,1325,577975 ,1,1326,560585 ,1,1327,65 ,1,1328,577970 ,1,1329,65 ,1,1330,65 ,1,1331,65 ,1,1332,589050 ,1,1333,65 ,1,1334,65 ,1,1335,65 ,1,1336,562235 ,1,1337,565105 ,1,1338,567340 ,1,1339,579480 ,1,1340,65 ,1,1341,590835 ,1,1342,588360 ,1,1343,599435 ,1,1344,575455 ,1,1345,559910 ,1,1346,65 ,1,1347,65 ,1,1348,574795 ,1,1349,65 ,1,1350,564810 ,1,1351,65 ,1,1352,590195 ,1,1353,65 ,1,1354,591380 ,1,1355,572120 ,1,1356,65 ,1,1357,572495 ,1,1358,65 ,1,1359,65 ,1,1360,65 ,1,1361,591450 ,1,1362,585140 ,1,1363,65 ,1,1364,560540 ,1,1365,561305 ,1,1366,561460 ,1,1367,561465 ,1,1368,578325 ,1,1369,578275 ,1,1370,65 ,1,1371,579190 ,1,1372,65 ,1,1373,594345 ,1,1374,565400 ,1,1375,579130 ,1,1376,595375 ,1,1377,65 ,1,1378,599425 ,1,1379,65 ,1,1380,65 ,1,1381,593270 ,1,1382,65 ,1,1383,65 ,1,1384,576690 ,1,1385,65 ,1,1386,582285 ,1,1387,582660 ,1,1388,563045 ,1,1389,593380 ,1,1390,65 ,1,1391,584330 ,1,1392,582690 ,1,1393,65 ,1,1394,565730 ,1,1395,565735 ,1,1396,65 ,1,1397,584095 ,1,1398,571245 ,1,1399,571250 ,1,1400,592545 ,1,1401,561920 ,1,1402,562190 ,1,1403,586175 ,1,1404,568635 ,1,1405,581110 ,1,1406,65 ,1,1407,573025 ,1,1408,574625 ,1,1409,574555 ,1,1410,588595 ,1,1411,65 ,1,1412,65 ,1,1413,581055 ,1,1414,587035 ,1,1415,575830 ,1,1416,65 ,1,1417,575835 ,1,1418,599420 ,1,1419,573380 ,1,1420,560770 ,1,1421,560960 ,1,1422,65 ,1,1423,577955 ,1,1424,595560 ,1,1425,65 ,1,1426,65 ,1,1427,562115 ,1,1428,571895 ,1,1429,584275 ,1,1430,561925 ,1,1431,569855 ,1,1432,569820 ,1,1433,564510 ,1,1434,584270 ,1,1435,65 ,1,1436,561775 ,1,1437,566080 ,1,1438,561300 ,1,1439,596975 ,1,1440,585775 ,1,1441,65 ,1,1442,585780 ,1,1443,65 ,1,1444,65 ,1,1445,596020 ,1,1446,65 ,1,1447,65 ,1,1448,571885 ,1,1449,576435 ,1,1450,561330 ,1,1451,585840 ,1,1452,594060 ,1,1453,65 ,1,1454,567215 ,1,1455,576420 ,1,1456,65 ,1,1457,65 ,1,1458,570350 ,1,1459,584890 ,1,1460,596015 ,1,1461,570760 ,1,1462,65 ,1,1463,65 ,1,1464,65 ,1,1465,577905 ,1,1466,579265 ,1,1467,584165 ,1,1468,577895 ,1,1469,561995 ,1,1470,589335 ,1,1471,65 ,1,1472,561700 ,1,1473,65 ,1,1474,571870 ,1,1475,595900 ,1,1476,579275 ,1,1477,65 ,1,1478,65 ,1,1479,65 ,1,1480,65 ,1,1481,590925 ,1,1482,563740 ,1,1483,65 ,1,1484,589295 ,1,1485,576820 ,1,1486,65 ,1,1487,578895 ,1,1488,65 ,1,1489,65 ,1,1490,571435 ,1,1491,65 ,1,1492,593805 ,1,1493,572220 ,1,1494,591805 ,1,1495,599875 ,1,1496,599870 ,1,1497,569860 ,1,1498,558480 ,1,1499,580560 ,1,1500,599415 ,1,1501,572680 ,1,1502,572685 ,1,1503,560580 ,1,1504,564940 ,1,1505,577475 ,1,1506,569835 ,1,1507,65 ,1,1508,572285 ,1,1509,65 ,1,1510,65 ,1,1511,592400 ,1,1512,577625 ,1,1513,597165 ,1,1514,596350 ,1,1515,65 ,1,1516,572700 ,1,1517,561800 ,1,1518,65 ,1,1519,571710 ,1,1520,65 ,1,1521,580420 ,1,1522,65 ,1,1523,65 ,1,1524,561110 ,1,1525,591040 ,1,1526,65 ,1,1527,564805 ,1,1528,559655 ,1,1529,65 ,1,1530,581385 ,1,1531,65 ,1,1532,65 ,1,1533,593435 ,1,1534,581560 ,1,1535,584980 ,1,1536,592525 ,1,1537,581575 ,1,1538,559020 ,1,1539,593410 ,1,1540,65 ,1,1541,65 ,1,1542,599410 ,1,1543,590215 ,1,1544,573585 ,1,1545,65 ,1,1546,599390 ,1,1547,65 ,1,1548,558505 ,1,1549,599385 ,1,1550,65 ,1,1551,65 ,1,1552,559980 ,1,1553,591835 ,1,1554,65 ,1,1555,65 ,1,1556,567440 ,1,1557,65 ,1,1558,597160 ,1,1559,592780 ,1,1560,560655 ,1,1561,560980 ,1,1562,65 ,1,1563,586075 ,1,1564,586065 ,1,1565,65 ,1,1566,590525 ,1,1567,584265 ,1,1568,592095 ,1,1569,588585 ,1,1570,65 ,1,1571,593660 ,1,1572,65 ,1,1573,563590 ,1,1574,65 ,1,1575,595790 ,1,1576,595820 ,1,1577,563290 ,1,1578,599380 ,1,1579,586050 ,1,1580,590350 ,1,1581,65 ,1,1582,593515 ,1,1583,590345 ,1,1584,65 ,1,1585,65 ,1,1586,65 ,1,1587,594510 ,1,1588,581920 ,1,1589,588605 ,1,1590,574615 ,1,1591,65 ,1,1592,594545 ,1,1593,595110 ,1,1594,590165 ,1,1595,599375 ,1,1596,559975 ,1,1597,585820 ,1,1598,65 ,1,1599,591695 ,1,1600,65 ,1,1601,65 ,1,1602,65 ,1,1603,65 ,1,1604,65 ,1,1605,65 ,1,1606,65 ,1,1607,65 ,1,1608,65 ,1,1609,65 ,1,1610,65 ,1,1611,65 ,1,1612,65 ,1,1613,599885 ,1,1614,599880 ,1,1615,65 ,1,1616,65 ,1,1617,65 ,1,1618,599365 ,1,1619,580995 ,1,1620,566670 ,1,1621,565290 ,1,1622,562885 ,1,1623,566690 ,1,1624,65 ,1,1625,65 ,1,1626,559010 ,1,1627,588910 ,1,1628,559410 ,1,1629,600030 ,1,1630,578290 ,1,1631,564935 ,1,1632,578295 ,1,1633,584685 ,1,1634,65 ,1,1635,585315 ,1,1636,65 ,1,1637,65 ,1,1638,572640 ,1,1639,559540 ,1,1640,559585 ,1,1641,593050 ,1,1642,65 ,1,1643,563365 ,1,1644,65 ,1,1645,65 ,1,1646,65 ,1,1647,567620 ,1,1648,586910 ,1,1649,599360 ,1,1650,65 ,1,1651,586875 ,1,1652,65 ,1,1653,65 ,1,1654,65 ,1,1655,578480 ,1,1656,584690 ,1,1657,576725 ,1,1658,570385 ,1,1659,65 ,1,1660,570390 ,1,1661,584170 ,1,1662,558845 ,1,1663,65 ,1,1664,65 ,1,1665,578675 ,1,1666,65 ,1,1667,65 ,1,1668,65 ,1,1669,65 ,1,1670,592390 ,1,1671,599355 ,1,1672,65 ,1,1673,65 ,1,1674,65 ,1,1675,573120 ,1,1676,65 ,1,1677,558960 ,1,1678,65 ,1,1679,65 ,1,1680,65 ,1,1681,562875 ,1,1682,65 ,1,1683,566505 ,1,1684,566510 ,1,1685,571695 ,1,1686,564485 ,1,1687,585705 ,1,1688,599900 ,1,1689,577660 ,1,1690,573430 ,1,1691,577665 ,1,1692,65 ,1,1693,581045 ,1,1694,568575 ,1,1695,65 ,1,1696,65 ,1,1697,569120 ,1,1698,569250 ,1,1699,570485 ,1,1700,570620 ,1,1701,573435 ,1,1702,595090 ,1,1703,580170 ,1,1704,65 ,1,1705,580140 ,1,1706,594575 ,1,1707,576295 ,1,1708,588300 ,1,1709,575635 ,1,1710,65 ,1,1711,65 ,1,1712,594760 ,1,1713,65 ,1,1714,65 ,1,1715,65 ,1,1716,592715 ,1,1717,560630 ,1,1718,65 ,1,1719,580645 ,1,1720,65 ,1,1721,65 ,1,1722,594420 ,1,1723,580720 ,1,1724,65 ,1,1725,568790 ,1,1726,587475 ,1,1727,65 ,1,1728,568210 ,1,1729,568035 ,1,1730,596485 ,1,1731,568800 ,1,1732,65 ,1,1733,65 ,1,1734,65 ,1,1735,586935 ,1,1736,582195 ,1,1737,561970 ,1,1738,65 ,1,1739,563800 ,1,1740,576095 ,1,1741,65 ,1,1742,576105 ,1,1743,65 ,1,1744,65 ,1,1745,65 ,1,1746,596325 ,1,1747,65 ,1,1748,65 ,1,1749,561220 ,1,1750,581060 ,1,1751,559785 ,1,1752,577485 ,1,1753,586575 ,1,1754,569680 ,1,1755,581165 ,1,1756,65 ,1,1757,65 ,1,1758,586920 ,1,1759,65 ,1,1760,564450 ,1,1761,565085 ,1,1762,590560 ,1,1763,589350 ,1,1764,586115 ,1,1765,573315 ,1,1766,574365 ,1,1767,65 ,1,1768,599350 ,1,1769,589025 ,1,1770,570990 ,1,1771,65 ,1,1772,595785 ,1,1773,558450 ,1,1774,65 ,1,1775,65 ,1,1776,65 ,1,1777,595480 ,1,1778,65 ,1,1779,65 ,1,1780,65 ,1,1781,65 ,1,1782,65 ,1,1783,65 ,1,1784,572770 ,1,1785,572775 ,1,1786,65 ,1,1787,65 ,1,1788,65 ,1,1789,577695 ,1,1790,577690 ,1,1791,582150 ,1,1792,578960 ,1,1793,65 ,1,1794,577900 ,1,1795,577105 ,1,1796,577090 ,1,1797,578055 ,1,1798,573560 ,1,1799,579435 ,1,1800,65 ,1,1801,569625 ,1,1802,559490 ,1,1803,559495 ,1,1804,563685 ,1,1805,65 ,1,1806,575675 ,1,1807,569660 ,1,1808,65 ,1,1809,582115 ,1,1810,575080 ,1,1811,65 ,1,1812,591080 ,1,1813,65 ,1,1814,65 ,1,1815,567515 ,1,1816,565165 ,1,1817,65 ,1,1818,65 ,1,1819,65 ,1,1820,65 ,1,1821,591430 ,1,1822,65 ,1,1823,65 ,1,1824,65 ,1,1825,596665 ,1,1826,65 ,1,1827,65 ,1,1828,65 ,1,1829,65 ,1,1830,558925 ,1,1831,585655 ,1,1832,582940 ,1,1833,593215 ,1,1834,585670 ,1,1835,65 ,1,1836,65 ,1,1837,65 ,1,1838,65 ,1,1839,572365 ,1,1840,572370 ,1,1841,65 ,1,1842,65 ,1,1843,599320 ,1,1844,586505 ,1,1845,586540 ,1,1846,568550 ,1,1847,581180 ,1,1848,599315 ,1,1849,599310 ,1,1850,565265 ,1,1851,563490 ,1,1852,576985 ,1,1853,576945 ,1,1854,565465 ,1,1855,558435 ,1,1856,65 ,1,1857,578005 ,1,1858,563160 ,1,1859,576480 ,1,1860,65 ,1,1861,65 ,1,1862,572645 ,1,1863,599305 ,1,1864,65 ,1,1865,599295 ,1,1866,65 ,1,1867,580590 ,1,1868,580580 ,1,1869,582685 ,1,1870,593285 ,1,1871,65 ,1,1872,65 ,1,1873,574575 ,1,1874,579720 ,1,1875,65 ,1,1876,593430 ,1,1877,65 ,1,1878,65 ,1,1879,65 ,1,1880,580270 ,1,1881,65 ,1,1882,65 ,1,1883,65 ,1,1884,577465 ,1,1885,588690 ,1,1886,589340 ,1,1887,558305 ,1,1888,566285 ,1,1889,65 ,1,1890,558440 ,1,1891,599290 ,1,1892,572845 ,1,1893,595750 ,1,1894,577460 ,1,1895,572840 ,1,1896,65 ,1,1897,566325 ,1,1898,65 ,1,1899,65 ,1,1900,582025 ,1,1901,558955 ,1,1902,65 ,1,1903,563180 ,1,1904,590155 ,1,1905,571180 ,1,1906,571115 ,1,1907,571120 ,1,1908,571165 ,1,1909,571525 ,1,1910,582840 ,1,1911,567160 ,1,1912,575185 ,1,1913,594350 ,1,1914,65 ,1,1915,585090 ,1,1916,559255 ,1,1917,586980 ,1,1918,65 ,1,1919,591990 ,1,1920,65 ,1,1921,559200 ,1,1922,561910 ,1,1923,565270 ,1,1924,65 ,1,1925,568845 ,1,1926,65 ,1,1927,65 ,1,1928,585070 ,1,1929,589155 ,1,1930,570950 ,1,1931,65 ,1,1932,599285 ,1,1933,65 ,1,1934,65 ,1,1935,65 ,1,1936,584965 ,1,1937,65 ,1,1938,565475 ,1,1939,65 ,1,1940,568020 ,1,1941,587310 ,1,1942,585215 ,1,1943,65 ,1,1944,65 ,1,1945,584830 ,1,1946,571700 ,1,1947,582280 ,1,1948,589285 ,1,1949,571725 ,1,1950,599955 ,1,1951,587480 ,1,1952,65 ,1,1953,566005 ,1,1954,572520 ,1,1955,559270 ,1,1956,566360 ,1,1957,65 ,1,1958,65 ,1,1959,561675 ,1,1960,558575 ,1,1961,567170 ,1,1962,65 ,1,1963,599280 ,1,1964,65 ,1,1965,574255 ,1,1966,570270 ,1,1967,567045 ,1,1968,580145 ,1,1969,590640 ,1,1970,558930 ,1,1971,586170 ,1,1972,585130 ,1,1973,595745 ,1,1974,593440 ,1,1975,585135 ,1,1976,599260 ,1,1977,588285 ,1,1978,559135 ,1,1979,65 ,1,1980,574260 ,1,1981,577225 ,1,1982,599255 ,1,1983,591325 ,1,1984,599250 ,1,1985,65 ,1,1986,592550 ,1,1987,565300 ,1,1988,567320 ,1,1989,65 ,1,1990,599245 ,1,1991,585725 ,1,1992,585720 ,1,1993,586470 ,1,1994,570970 ,1,1995,592125 ,1,1996,590760 ,1,1997,573990 ,1,1998,592140 ,1,1999,562860 ,1,2000,589075 ,1,2001,559680 ,1,2002,599235 ,1,2003,563370 ,1,2004,600010 ,1,2005,567740 ,1,2006,599230 ,1,2007,586415 ,1,2008,564265 ,1,2009,563390 ,1,2010,590700 ,1,2011,569075 ,1,2012,65 ,1,2013,65 ,1,2014,575925 ,1,2015,594640 ,1,2016,569330 ,1,2017,592010 ,1,2018,564200 ,1,2019,599225 ,1,2020,585010 ,1,2021,591115 ,1,2022,565430 ,1,2023,561240 ,1,2024,599220 ,1,2025,599195 ,1,2026,65 ,1,2027,592065 ,1,2028,65 ,1,2029,592155 ,1,2030,65 ,1,2031,65 ,1,2032,65 ,1,2033,65 ,1,2034,65 ,1,2035,592660 ,1,2036,584885 ,1,2037,578240 ,1,2038,596125 ,1,2039,571730 ,1,2040,568385 ,1,2041,65 ,1,2042,65 ,1,2043,558485 ,1,2044,571050 ,1,2045,65 ,1,2046,558640 ,1,2047,65 ,1,2048,65 ,1,2049,65 ,1,2050,65 ,1,2051,562530 ,1,2052,65 ,1,2053,584780 ,1,2054,563295 ,1,2055,587410 ,1,2056,587405 ,1,2057,65 ,1,2058,65 ,1,2059,65 ,1,2060,65 ,1,2061,65 ,1,2062,65 ,1,2063,571040 ,1,2064,65 ,1,2065,65 ,1,2066,65 ,1,2067,578265 ,1,2068,65 ,1,2069,573625 ,1,2070,65 ,1,2071,557975 ,1,2072,567060 ,1,2073,65 ,1,2074,567405 ,1,2075,566190 ,1,2076,564885 ,1,2077,596475 ,1,2078,65 ,1,2079,595365 ,1,2080,65 ,1,2081,584505 ,1,2082,65 ,1,2083,65 ,1,2084,599190 ,1,2085,585285 ,1,2086,583815 ,1,2087,599185 ,1,2088,583810 ,1,2089,65 ,1,2090,579400 ,1,2091,559260 ,1,2092,65 ,1,2093,580260 ,1,2094,65 ,1,2095,65 ,1,2096,577835 ,1,2097,65 ,1,2098,583675 ,1,2099,582475 ,1,2100,582470 ,1,2101,578475 ,1,2102,563680 ,1,2103,65 ,1,2104,583670 ,1,2105,65 ,1,2106,65 ,1,2107,560625 ,1,2108,563795 ,1,2109,599180 ,1,2110,574160 ,1,2111,568505 ,1,2112,65 ,1,2113,573920 ,1,2114,588825 ,1,2115,65 ,1,2116,567670 ,1,2117,65 ,1,2118,561095 ,1,2119,592895 ,1,2120,65 ,1,2121,65 ,1,2122,578605 ,1,2123,65 ,1,2124,65 ,1,2125,65 ,1,2126,558145 ,1,2127,561980 ,1,2128,573820 ,1,2129,564905 ,1,2130,573815 ,1,2131,566195 ,1,2132,562035 ,1,2133,590220 ,1,2134,565795 ,1,2135,599175 ,1,2136,588220 ,1,2137,594335 ,1,2138,585525 ,1,2139,578685 ,1,2140,565810 ,1,2141,596260 ,1,2142,588225 ,1,2143,587900 ,1,2144,574410 ,1,2145,65 ,1,2146,585405 ,1,2147,65 ,1,2148,65 ,1,2149,65 ,1,2150,599170 ,1,2151,595490 ,1,2152,595360 ,1,2153,65 ,1,2154,65 ,1,2155,65 ,1,2156,576170 ,1,2157,564520 ,1,2158,583285 ,1,2159,558790 ,1,2160,583280 ,1,2161,574095 ,1,2162,576200 ,1,2163,563505 ,1,2164,592880 ,1,2165,577865 ,1,2166,65 ,1,2167,580640 ,1,2168,576265 ,1,2169,595075 ,1,2170,565950 ,1,2171,65 ,1,2172,65 ,1,2173,65 ,1,2174,577880 ,1,2175,65 ,1,2176,65 ,1,2177,595005 ,1,2178,582125 ,1,2179,571720 ,1,2180,65 ,1,2181,65 ,1,2182,65 ,1,2183,588200 ,1,2184,564910 ,1,2185,65 ,1,2186,65 ,1,2187,65 ,1,2188,558375 ,1,2189,590530 ,1,2190,562210 ,1,2191,561435 ,1,2192,562205 ,1,2193,65 ,1,2194,65 ,1,2195,586580 ,1,2196,562775 ,1,2197,562990 ,1,2198,586585 ,1,2199,576915 ,1,2200,594680 ,1,2201,592020 ,1,2202,578085 ,1,2203,65 ,1,2204,570660 ,1,2205,577155 ,1,2206,575715 ,1,2207,65 ,1,2208,575765 ,1,2209,65 ,1,2210,65 ,1,2211,559570 ,1,2212,559545 ,1,2213,65 ,1,2214,558235 ,1,2215,564895 ,1,2216,65 ,1,2217,559070 ,1,2218,65 ,1,2219,557855 ,1,2220,65 ,1,2221,576860 ,1,2222,579575 ,1,2223,580340 ,1,2224,65 ,1,2225,65 ,1,2226,562515 ,1,2227,65 ,1,2228,581630 ,1,2229,65 ,1,2230,65 ,1,2231,580205 ,1,2232,597040 ,1,2233,65 ,1,2234,557960 ,1,2235,577435 ,1,2236,577440 ,1,2237,65 ,1,2238,65 ,1,2239,559925 ,1,2240,593135 ,1,2241,593105 ,1,2242,566255 ,1,2243,593140 ,1,2244,593165 ,1,2245,65 ,1,2246,560220 ,1,2247,585435 ,1,2248,584580 ,1,2249,588535 ,1,2250,564325 ,1,2251,65 ,1,2252,589235 ,1,2253,561870 ,1,2254,65 ,1,2255,65 ,1,2256,581855 ,1,2257,562140 ,1,2258,65 ,1,2259,65 ,1,2260,65 ,1,2261,573515 ,1,2262,573525 ,1,2263,595890 ,1,2264,568915 ,1,2265,570875 ,1,2266,563650 ,1,2267,565030 ,1,2268,558895 ,1,2269,586770 ,1,2270,563255 ,1,2271,561180 ,1,2272,65 ,1,2273,65 ,1,2274,65 ,1,2275,576445 ,1,2276,596335 ,1,2277,65 ,1,2278,65 ,1,2279,588620 ,1,2280,65 ,1,2281,563875 ,1,2282,558635 ,1,2283,65 ,1,2284,576365 ,1,2285,65 ,1,2286,65 ,1,2287,576475 ,1,2288,574020 ,1,2289,591680 ,1,2290,65 ,1,2291,565675 ,1,2292,584710 ,1,2293,579690 ,1,2294,588505 ,1,2295,562665 ,1,2296,589215 ,1,2297,589135 ,1,2298,560445 ,1,2299,558420 ,1,2300,587935 ,1,2301,560650 ,1,2302,558415 ,1,2303,591725 ,1,2304,599165 ,1,2305,568695 ,1,2306,599160 ,1,2307,558770 ,1,2308,588950 ,1,2309,568510 ,1,2310,588670 ,1,2311,580200 ,1,2312,583430 ,1,2313,583395 ,1,2314,561785 ,1,2315,568365 ,1,2316,562475 ,1,2317,561310 ,1,2318,581105 ,1,2319,568445 ,1,2320,590830 ,1,2321,589720 ,1,2322,584775 ,1,2323,563445 ,1,2324,580295 ,1,2325,573770 ,1,2326,563630 ,1,2327,585350 ,1,2328,576595 ,1,2329,576505 ,1,2330,568690 ,1,2331,576195 ,1,2332,574115 ,1,2333,590915 ,1,2334,584420 ,1,2335,576795 ,1,2336,560970 ,1,2337,576190 ,1,2338,599150 ,1,2339,588590 ,1,2340,576495 ,1,2341,594865 ,1,2342,65 ,1,2343,567135 ,1,2344,571405 ,1,2345,594835 ,1,2346,65 ,1,2347,589945 ,1,2348,577595 ,1,2349,65 ,1,2350,572425 ,1,2351,560575 ,1,2352,65 ,1,2353,559395 ,1,2354,65 ,1,2355,65 ,1,2356,572430 ,1,2357,594135 ,1,2358,599145 ,1,2359,570130 ,1,2360,570155 ,1,2361,579360 ,1,2362,579945 ,1,2363,582975 ,1,2364,582970 ,1,2365,562810 ,1,2366,65 ,1,2367,595580 ,1,2368,589405 ,1,2369,576545 ,1,2370,567090 ,1,2371,559175 ,1,2372,599140 ,1,2373,592395 ,1,2374,65 ,1,2375,565555 ,1,2376,562685 ,1,2377,589140 ,1,2378,65 ,1,2379,65 ,1,2380,65 ,1,2381,588900 ,1,2382,574925 ,1,2383,584975 ,1,2384,579680 ,1,2385,65 ,1,2386,585425 ,1,2387,599910 ,1,2388,570940 ,1,2389,65 ,1,2390,65 ,1,2391,563005 ,1,2392,65 ,1,2393,65 ,1,2394,584545 ,1,2395,65 ,1,2396,65 ,1,2397,65 ,1,2398,65 ,1,2399,65 ,1,2400,65 ,1,2401,582750 ,1,2402,573495 ,1,2403,573500 ,1,2404,65 ,1,2405,65 ,1,2406,65 ,1,2407,65 ,1,2408,65 ,1,2409,583090 ,1,2410,579015 ,1,2411,579155 ,1,2412,583175 ,1,2413,566770 ,1,2414,583275 ,1,2415,593005 ,1,2416,579000 ,1,2417,579160 ,1,2418,65 ,1,2419,568860 ,1,2420,65 ,1,2421,567140 ,1,2422,65 ,1,2423,566905 ,1,2424,561455 ,1,2425,561520 ,1,2426,65 ,1,2427,578465 ,1,2428,590275 ,1,2429,590290 ,1,2430,578420 ,1,2431,65 ,1,2432,65 ,1,2433,566075 ,1,2434,590390 ,1,2435,65 ,1,2436,65 ,1,2437,65 ,1,2438,566925 ,1,2439,565355 ,1,2440,65 ,1,2441,65 ,1,2442,65 ,1,2443,596670 ,1,2444,65 ,1,2445,588540 ,1,2446,65 ,1,2447,65 ,1,2448,580740 ,1,2449,65 ,1,2450,575840 ,1,2451,575845 ,1,2452,590405 ,1,2453,572550 ,1,2454,574680 ,1,2455,567075 ,1,2456,581830 ,1,2457,65 ,1,2458,579560 ,1,2459,65 ,1,2460,65 ,1,2461,65 ,1,2462,65 ,1,2463,589040 ,1,2464,566580 ,1,2465,566615 ,1,2466,576615 ,1,2467,65 ,1,2468,595650 ,1,2469,65 ,1,2470,65 ,1,2471,65 ,1,2472,65 ,1,2473,65 ,1,2474,65 ,1,2475,65 ,1,2476,564180 ,1,2477,65 ,1,2478,65 ,1,2479,65 ,1,2480,596790 ,1,2481,65 ,1,2482,599135 ,1,2483,595130 ,1,2484,65 ,1,2485,65 ,1,2486,65 ,1,2487,65 ,1,2488,585850 ,1,2489,65 ,1,2490,65 ,1,2491,577950 ,1,2492,572835 ,1,2493,65 ,1,2494,558295 ,1,2495,575965 ,1,2496,566635 ,1,2497,65 ,1,2498,587400 ,1,2499,575720 ,1,2500,65 ,1,2501,575725 ,1,2502,65 ,1,2503,558570 ,1,2504,563665 ,1,2505,560135 ,1,2506,560145 ,1,2507,565345 ,1,2508,584345 ,1,2509,582935 ,1,2510,584010 ,1,2511,584005 ,1,2512,595065 ,1,2513,580480 ,1,2514,572125 ,1,2515,65 ,1,2516,599115 ,1,2517,570055 ,1,2518,564455 ,1,2519,595015 ,1,2520,569040 ,1,2521,65 ,1,2522,563460 ,1,2523,565460 ,1,2524,569480 ,1,2525,582290 ,1,2526,65 ,1,2527,574125 ,1,2528,570680 ,1,2529,573055 ,1,2530,571530 ,1,2531,65 ,1,2532,591470 ,1,2533,65 ,1,2534,590335 ,1,2535,559415 ,1,2536,591035 ,1,2537,65 ,1,2538,593585 ,1,2539,581650 ,1,2540,570455 ,1,2541,594330 ,1,2542,65 ,1,2543,570600 ,1,2544,65 ,1,2545,577000 ,1,2546,65 ,1,2547,570280 ,1,2548,570285 ,1,2549,570340 ,1,2550,570345 ,1,2551,592835 ,1,2552,574165 ,1,2553,65 ,1,2554,590075 ,1,2555,562470 ,1,2556,586865 ,1,2557,65 ,1,2558,562200 ,1,2559,65 ,1,2560,591690 ,1,2561,65 ,1,2562,65 ,1,2563,574815 ,1,2564,65 ,1,2565,65 ,1,2566,65 ,1,2567,599110 ,1,2568,580525 ,1,2569,65 ,1,2570,65 ,1,2571,65 ,1,2572,590260 ,1,2573,65 ,1,2574,558310 ,1,2575,593415 ,1,2576,585605 ,1,2577,585730 ,1,2578,564640 ,1,2579,572130 ,1,2580,65 ,1,2581,593580 ,1,2582,65 ,1,2583,567540 ,1,2584,575645 ,1,2585,599105 ,1,2586,578820 ,1,2587,579230 ,1,2588,65 ,1,2589,578950 ,1,2590,579220 ,1,2591,65 ,1,2592,65 ,1,2593,65 ,1,2594,65 ,1,2595,65 ,1,2596,566980 ,1,2597,591980 ,1,2598,65 ,1,2599,65 ,1,2600,563455 ,1,2601,65 ,1,2602,65 ,1,2603,595255 ,1,2604,65 ,1,2605,559455 ,1,2606,582845 ,1,2607,584570 ,1,2608,582465 ,1,2609,582535 ,1,2610,584320 ,1,2611,585095 ,1,2612,574100 ,1,2613,65 ,1,2614,580220 ,1,2615,585075 ,1,2616,65 ,1,2617,591010 ,1,2618,587965 ,1,2619,588020 ,1,2620,584970 ,1,2621,580680 ,1,2622,580670 ,1,2623,65 ,1,2624,584615 ,1,2625,587755 ,1,2626,584835 ,1,2627,65 ,1,2628,65 ,1,2629,65 ,1,2630,591090 ,1,2631,65 ,1,2632,579625 ,1,2633,559335 ,1,2634,575770 ,1,2635,599100 ,1,2636,575780 ,1,2637,561630 ,1,2638,561625 ,1,2639,65 ,1,2640,572485 ,1,2641,599060 ,1,2642,563755 ,1,2643,587285 ,1,2644,560560 ,1,2645,587905 ,1,2646,564010 ,1,2647,65 ,1,2648,565130 ,1,2649,565135 ,1,2650,559155 ,1,2651,566365 ,1,2652,559715 ,1,2653,591750 ,1,2654,591385 ,1,2655,580360 ,1,2656,580365 ,1,2657,596150 ,1,2658,595445 ,1,2659,65 ,1,2660,583600 ,1,2661,583575 ,1,2662,565230 ,1,2663,564205 ,1,2664,570085 ,1,2665,65 ,1,2666,564235 ,1,2667,570090 ,1,2668,562300 ,1,2669,562260 ,1,2670,587510 ,1,2671,585030 ,1,2672,592635 ,1,2673,577240 ,1,2674,65 ,1,2675,65 ,1,2676,596805 ,1,2677,599055 ,1,2678,578385 ,1,2679,65 ,1,2680,65 ,1,2681,65 ,1,2682,65 ,1,2683,584945 ,1,2684,563380 ,1,2685,567230 ,1,2686,585275 ,1,2687,564685 ,1,2688,564750 ,1,2689,574030 ,1,2690,574035 ,1,2691,573905 ,1,2692,599050 ,1,2693,562065 ,1,2694,65 ,1,2695,560420 ,1,2696,564240 ,1,2697,564270 ,1,2698,588600 ,1,2699,594260 ,1,2700,580280 ,1,2701,588700 ,1,2702,599045 ,1,2703,596400 ,1,2704,565140 ,1,2705,599040 ,1,2706,574745 ,1,2707,65 ,1,2708,65 ,1,2709,599035 ,1,2710,584815 ,1,2711,65 ,1,2712,596135 ,1,2713,65 ,1,2714,65 ,1,2715,599030 ,1,2716,590855 ,1,2717,585585 ,1,2718,65 ,1,2719,65 ,1,2720,572290 ,1,2721,568350 ,1,2722,65 ,1,2723,581445 ,1,2724,581495 ,1,2725,581235 ,1,2726,593675 ,1,2727,587870 ,1,2728,578935 ,1,2729,599025 ,1,2730,560955 ,1,2731,581590 ,1,2732,566130 ,1,2733,590845 ,1,2734,565690 ,1,2735,592760 ,1,2736,576125 ,1,2737,598990 ,1,2738,592695 ,1,2739,576165 ,1,2740,581240 ,1,2741,558875 ,1,2742,65 ,1,2743,561905 ,1,2744,562185 ,1,2745,596065 ,1,2746,581595 ,1,2747,65 ,1,2748,65 ,1,2749,579770 ,1,2750,580445 ,1,2751,578640 ,1,2752,593740 ,1,2753,589035 ,1,2754,65 ,1,2755,592540 ,1,2756,65 ,1,2757,65 ,1,2758,573130 ,1,2759,565875 ,1,2760,564515 ,1,2761,65 ,1,2762,565855 ,1,2763,65 ,1,2764,65 ,1,2765,65 ,1,2766,592515 ,1,2767,592530 ,1,2768,65 ,1,2769,65 ,1,2770,65 ,1,2771,564300 ,1,2772,561715 ,1,2773,65 ,1,2774,595590 ,1,2775,65 ,1,2776,558660 ,1,2777,564250 ,1,2778,65 ,1,2779,558210 ,1,2780,558285 ,1,2781,65 ,1,2782,587535 ,1,2783,65 ,1,2784,577220 ,1,2785,65 ,1,2786,571570 ,1,2787,580900 ,1,2788,598985 ,1,2789,65 ,1,2790,65 ,1,2791,558935 ,1,2792,582830 ,1,2793,65 ,1,2794,585080 ,1,2795,598980 ,1,2796,598975 ,1,2797,588170 ,1,2798,588175 ,1,2799,65 ,1,2800,65 ,1,2801,585060 ,1,2802,65 ,1,2803,580990 ,1,2804,585085 ,1,2805,65 ,1,2806,584950 ,1,2807,65 ,1,2808,65 ,1,2809,65 ,1,2810,65 ,1,2811,65 ,1,2812,584820 ,1,2813,65 ,1,2814,65 ,1,2815,577630 ,1,2816,576750 ,1,2817,65 ,1,2818,561060 ,1,2819,559015 ,1,2820,65 ,1,2821,590205 ,1,2822,65 ,1,2823,65 ,1,2824,582680 ,1,2825,592210 ,1,2826,65 ,1,2827,559100 ,1,2828,65 ,1,2829,595250 ,1,2830,592195 ,1,2831,598960 ,1,2832,65 ,1,2833,65 ,1,2834,574990 ,1,2835,65 ,1,2836,584995 ,1,2837,588275 ,1,2838,598955 ,1,2839,564260 ,1,2840,564275 ,1,2841,561165 ,1,2842,588280 ,1,2843,589940 ,1,2844,598950 ,1,2845,574950 ,1,2846,587260 ,1,2847,587195 ,1,2848,65 ,1,2849,65 ,1,2850,65 ,1,2851,571945 ,1,2852,593315 ,1,2853,65 ,1,2854,65 ,1,2855,65 ,1,2856,65 ,1,2857,585015 ,1,2858,567145 ,1,2859,596555 ,1,2860,65 ,1,2861,586040 ,1,2862,579350 ,1,2863,574855 ,1,2864,593595 ,1,2865,580095 ,1,2866,65 ,1,2867,584705 ,1,2868,563870 ,1,2869,584865 ,1,2870,65 ,1,2871,65 ,1,2872,65 ,1,2873,65 ,1,2874,65 ,1,2875,65 ,1,2876,65 ,1,2877,65 ,1,2878,570740 ,1,2879,589010 ,1,2880,596960 ,1,2881,560215 ,1,2882,583885 ,1,2883,583880 ,1,2884,563635 ,1,2885,65 ,1,2886,65 ,1,2887,571315 ,1,2888,571330 ,1,2889,571975 ,1,2890,65 ,1,2891,577315 ,1,2892,577320 ,1,2893,569415 ,1,2894,563135 ,1,2895,561425 ,1,2896,584765 ,1,2897,65 ,1,2898,587610 ,1,2899,569420 ,1,2900,65 ,1,2901,65 ,1,2902,573455 ,1,2903,579800 ,1,2904,65 ,1,2905,558835 ,1,2906,571630 ,1,2907,559720 ,1,2908,65 ,1,2909,576440 ,1,2910,596800 ,1,2911,563425 ,1,2912,560760 ,1,2913,598945 ,1,2914,565940 ,1,2915,565945 ,1,2916,586315 ,1,2917,571835 ,1,2918,560660 ,1,2919,65 ,1,2920,65 ,1,2921,65 ,1,2922,594085 ,1,2923,595575 ,1,2924,65 ,1,2925,580605 ,1,2926,65 ,1,2927,588425 ,1,2928,65 ,1,2929,585990 ,1,2930,598925 ,1,2931,65 ,1,2932,65 ,1,2933,65 ,1,2934,65 ,1,2935,65 ,1,2936,65 ,1,2937,576675 ,1,2938,589815 ,1,2939,65 ,1,2940,589820 ,1,2941,598920 ,1,2942,65 ,1,2943,65 ,1,2944,557850 ,1,2945,65 ,1,2946,571905 ,1,2947,594825 ,1,2948,574765 ,1,2949,574705 ,1,2950,65 ,1,2951,65 ,1,2952,65 ,1,2953,560535 ,1,2954,65 ,1,2955,587055 ,1,2956,564590 ,1,2957,65 ,1,2958,586985 ,1,2959,561685 ,1,2960,65 ,1,2961,584895 ,1,2962,65 ,1,2963,585430 ,1,2964,558850 ,1,2965,579705 ,1,2966,65 ,1,2967,576590 ,1,2968,576610 ,1,2969,578715 ,1,2970,563040 ,1,2971,584140 ,1,2972,592460 ,1,2973,580035 ,1,2974,593850 ,1,2975,65 ,1,2976,587060 ,1,2977,559355 ,1,2978,65 ,1,2979,65 ,1,2980,561760 ,1,2981,65 ,1,2982,65 ,1,2983,567545 ,1,2984,65 ,1,2985,563435 ,1,2986,65 ,1,2987,65 ,1,2988,578705 ,1,2989,578460 ,1,2990,558880 ,1,2991,65 ,1,2992,65 ,1,2993,65 ,1,2994,65 ,1,2995,65 ,1,2996,65 ,1,2997,573670 ,1,2998,593920 ,1,2999,574315 ,1,3000,65 ,1,3001,65 ,1,3002,578405 ,1,3003,578740 ,1,3004,559160 ,1,3005,566030 ,1,3006,572445 ,1,3007,584495 ,1,3008,584480 ,1,3009,593915 ,1,3010,585970 ,1,3011,588475 ,1,3012,570870 ,1,3013,570885 ,1,3014,65 ,1,3015,581125 ,1,3016,597200 ,1,3017,65 ,1,3018,581900 ,1,3019,65 ,1,3020,596340 ,1,3021,558350 ,1,3022,65 ,1,3023,65 ,1,3024,65 ,1,3025,593330 ,1,3026,593350 ,1,3027,65 ,1,3028,65 ,1,3029,65 ,1,3030,588980 ,1,3031,65 ,1,3032,65 ,1,3033,578825 ,1,3034,65 ,1,3035,65 ,1,3036,568910 ,1,3037,569555 ,1,3038,560525 ,1,3039,563605 ,1,3040,582145 ,1,3041,65 ,1,3042,576600 ,1,3043,598915 ,1,3044,568775 ,1,3045,65 ,1,3046,568780 ,1,3047,65 ,1,3048,579365 ,1,3049,586240 ,1,3050,65 ,1,3051,567550 ,1,3052,65 ,1,3053,65 ,1,3054,65 ,1,3055,65 ,1,3056,65 ,1,3057,65 ,1,3058,65 ,1,3059,65 ,1,3060,65 ,1,3061,584340 ,1,3062,582455 ,1,3063,65 ,1,3064,581565 ,1,3065,65 ,1,3066,65 ,1,3067,566965 ,1,3068,592855 ,1,3069,65 ,1,3070,65 ,1,3071,563725 ,1,3072,596190 ,1,3073,65 ,1,3074,563730 ,1,3075,595080 ,1,3076,65 ,1,3077,560635 ,1,3078,560885 ,1,3079,65 ,1,3080,588550 ,1,3081,594475 ,1,3082,65 ,1,3083,65 ,1,3084,65 ,1,3085,65 ,1,3086,568920 ,1,3087,575130 ,1,3088,65 ,1,3089,575125 ,1,3090,574110 ,1,3091,65 ,1,3092,562655 ,1,3093,598910 ,1,3094,564445 ,1,3095,590890 ,1,3096,592225 ,1,3097,587065 ,1,3098,590790 ,1,3099,65 ,1,3100,588875 ,1,3101,560920 ,1,3102,564950 ,1,3103,560785 ,1,3104,578485 ,1,3105,588480 ,1,3106,563270 ,1,3107,590780 ,1,3108,559750 ,1,3109,563640 ,1,3110,574620 ,1,3111,565330 ,1,3112,579930 ,1,3113,578525 ,1,3114,563920 ,1,3115,592945 ,1,3116,562505 ,1,3117,587810 ,1,3118,587875 ,1,3119,65 ,1,3120,65 ,1,3121,65 ,1,3122,574740 ,1,3123,65 ,1,3124,65 ,1,3125,65 ,1,3126,65 ,1,3127,596090 ,1,3128,598905 ,1,3129,572215 ,1,3130,65 ,1,3131,65 ,1,3132,65 ,1,3133,598900 ,1,3134,598895 ,1,3135,573760 ,1,3136,562790 ,1,3137,586310 ,1,3138,588075 ,1,3139,65 ,1,3140,65 ,1,3141,595125 ,1,3142,65 ,1,3143,561825 ,1,3144,65 ,1,3145,65 ,1,3146,65 ,1,3147,65 ,1,3148,65 ,1,3149,598890 ,1,3150,598855 ,1,3151,65 ,1,3152,561865 ,1,3153,588235 ,1,3154,588265 ,1,3155,563770 ,1,3156,560285 ,1,3157,586305 ,1,3158,595135 ,1,3159,578040 ,1,3160,65 ,1,3161,563780 ,1,3162,65 ,1,3163,65 ,1,3164,65 ,1,3165,563925 ,1,3166,65 ,1,3167,585505 ,1,3168,65 ,1,3169,65 ,1,3170,65 ,1,3171,65 ,1,3172,65 ,1,3173,65 ,1,3174,65 ,1,3175,65 ,1,3176,65 ,1,3177,65 ,1,3178,596420 ,1,3179,65 ,1,3180,65 ,1,3181,65 ,1,3182,65 ,1,3183,65 ,1,3184,567950 ,1,3185,590380 ,1,3186,558380 ,1,3187,65 ,1,3188,572025 ,1,3189,572030 ,1,3190,65 ,1,3191,557825 ,1,3192,65 ,1,3193,65 ,1,3194,65 ,1,3195,561655 ,1,3196,561650 ,1,3197,65 ,1,3198,584760 ,1,3199,565605 ,1,3200,594920 ,1,3201,565045 ,1,3202,588655 ,1,3203,590695 ,1,3204,596490 ,1,3205,585815 ,1,3206,560550 ,1,3207,569810 ,1,3208,65 ,1,3209,577655 ,1,3210,65 ,1,3211,65 ,1,3212,567535 ,1,3213,567475 ,1,3214,567470 ,1,3215,65 ,1,3216,596905 ,1,3217,65 ,1,3218,65 ,1,3219,65 ,1,3220,65 ,1,3221,579325 ,1,3222,585155 ,1,3223,65 ,1,3224,65 ,1,3225,585290 ,1,3226,65 ,1,3227,596330 ,1,3228,587155 ,1,3229,559090 ,1,3230,583260 ,1,3231,587280 ,1,3232,594480 ,1,3233,587005 ,1,3234,65 ,1,3235,577180 ,1,3236,566755 ,1,3237,566760 ,1,3238,572320 ,1,3239,577030 ,1,3240,573000 ,1,3241,65 ,1,3242,577035 ,1,3243,588685 ,1,3244,579020 ,1,3245,575020 ,1,3246,595655 ,1,3247,580930 ,1,3248,560720 ,1,3249,65 ,1,3250,557830 ,1,3251,561105 ,1,3252,65 ,1,3253,580875 ,1,3254,562815 ,1,3255,574920 ,1,3256,65 ,1,3257,573795 ,1,3258,573925 ,1,3259,578070 ,1,3260,579120 ,1,3261,565335 ,1,3262,585480 ,1,3263,65 ,1,3264,65 ,1,3265,579125 ,1,3266,564845 ,1,3267,558250 ,1,3268,65 ,1,3269,577570 ,1,3270,65 ,1,3271,65 ,1,3272,559845 ,1,3273,65 ,1,3274,65 ,1,3275,589020 ,1,3276,65 ,1,3277,65 ,1,3278,65 ,1,3279,65 ,1,3280,65 ,1,3281,65 ,1,3282,65 ,1,3283,592665 ,1,3284,575650 ,1,3285,571305 ,1,3286,571310 ,1,3287,570260 ,1,3288,579390 ,1,3289,65 ,1,3290,570205 ,1,3291,590600 ,1,3292,567625 ,1,3293,567615 ,1,3294,584090 ,1,3295,584080 ,1,3296,568705 ,1,3297,564770 ,1,3298,65 ,1,3299,568455 ,1,3300,578390 ,1,3301,564725 ,1,3302,578410 ,1,3303,65 ,1,3304,65 ,1,3305,578555 ,1,3306,578745 ,1,3307,65 ,1,3308,65 ,1,3309,576815 ,1,3310,575265 ,1,3311,568325 ,1,3312,587445 ,1,3313,587465 ,1,3314,65 ,1,3315,598850 ,1,3316,575920 ,1,3317,65 ,1,3318,575930 ,1,3319,65 ,1,3320,575600 ,1,3321,65 ,1,3322,598845 ,1,3323,65 ,1,3324,560545 ,1,3325,583110 ,1,3326,65 ,1,3327,583105 ,1,3328,594160 ,1,3329,569955 ,1,3330,558995 ,1,3331,598840 ,1,3332,563175 ,1,3333,590665 ,1,3334,578700 ,1,3335,596290 ,1,3336,598835 ,1,3337,65 ,1,3338,65 ,1,3339,574325 ,1,3340,565880 ,1,3341,65 ,1,3342,574360 ,1,3343,65 ,1,3344,575215 ,1,3345,562070 ,1,3346,65 ,1,3347,595200 ,1,3348,568295 ,1,3349,558910 ,1,3350,65 ,1,3351,65 ,1,3352,65 ,1,3353,565325 ,1,3354,592985 ,1,3355,65 ,1,3356,572035 ,1,3357,572055 ,1,3358,65 ,1,3359,65 ,1,3360,65 ,1,3361,582140 ,1,3362,65 ,1,3363,558170 ,1,3364,65 ,1,3365,579095 ,1,3366,571590 ,1,3367,571595 ,1,3368,579085 ,1,3369,65 ,1,3370,590840 ,1,3371,564820 ,1,3372,65 ,1,3373,65 ,1,3374,65 ,1,3375,566830 ,1,3376,65 ,1,3377,65 ,1,3378,65 ,1,3379,598830 ,1,3380,563560 ,1,3381,65 ,1,3382,598825 ,1,3383,598820 ,1,3384,576740 ,1,3385,558140 ,1,3386,558820 ,1,3387,558165 ,1,3388,591050 ,1,3389,65 ,1,3390,65 ,1,3391,65 ,1,3392,588440 ,1,3393,593020 ,1,3394,580045 ,1,3395,562745 ,1,3396,65 ,1,3397,65 ,1,3398,598795 ,1,3399,65 ,1,3400,65 ,1,3401,65 ,1,3402,65 ,1,3403,65 ,1,3404,576060 ,1,3405,596865 ,1,3406,596895 ,1,3407,598790 ,1,3408,582820 ,1,3409,600035 ,1,3410,576065 ,1,3411,582815 ,1,3412,65 ,1,3413,65 ,1,3414,581785 ,1,3415,561045 ,1,3416,65 ,1,3417,65 ,1,3418,585210 ,1,3419,557930 ,1,3420,563300 ,1,3421,563130 ,1,3422,65 ,1,3423,65 ,1,3424,65 ,1,3425,65 ,1,3426,65 ,1,3427,560070 ,1,3428,570145 ,1,3429,562945 ,1,3430,574060 ,1,3431,65 ,1,3432,567530 ,1,3433,566705 ,1,3434,588365 ,1,3435,588370 ,1,3436,566710 ,1,3437,588830 ,1,3438,558950 ,1,3439,567525 ,1,3440,65 ,1,3441,576360 ,1,3442,65 ,1,3443,65 ,1,3444,598785 ,1,3445,573030 ,1,3446,560390 ,1,3447,574505 ,1,3448,591180 ,1,3449,593290 ,1,3450,598780 ,1,3451,65 ,1,3452,566975 ,1,3453,598770 ,1,3454,583380 ,1,3455,583375 ,1,3456,571960 ,1,3457,65 ,1,3458,581430 ,1,3459,581435 ,1,3460,593810 ,1,3461,581685 ,1,3462,581705 ,1,3463,65 ,1,3464,593325 ,1,3465,587740 ,1,3466,65 ,1,3467,65 ,1,3468,593500 ,1,3469,598765 ,1,3470,588155 ,1,3471,65 ,1,3472,65 ,1,3473,585595 ,1,3474,582510 ,1,3475,593015 ,1,3476,582485 ,1,3477,595115 ,1,3478,559930 ,1,3479,563430 ,1,3480,581005 ,1,3481,592850 ,1,3482,595085 ,1,3483,573115 ,1,3484,65 ,1,3485,592990 ,1,3486,65 ,1,3487,65 ,1,3488,65 ,1,3489,596595 ,1,3490,560510 ,1,3491,574565 ,1,3492,598760 ,1,3493,565520 ,1,3494,573690 ,1,3495,598755 ,1,3496,560855 ,1,3497,566070 ,1,3498,65 ,1,3499,560110 ,1,3500,574550 ,1,3501,65 ,1,3502,65 ,1,3503,65 ,1,3504,563355 ,1,3505,598735 ,1,3506,559765 ,1,3507,65 ,1,3508,65 ,1,3509,65 ,1,3510,65 ,1,3511,65 ,1,3512,65 ,1,3513,65 ,1,3514,597105 ,1,3515,65 ,1,3516,560750 ,1,3517,561050 ,1,3518,559205 ,1,3519,65 ,1,3520,65 ,1,3521,596285 ,1,3522,65 ,1,3523,65 ,1,3524,578155 ,1,3525,65 ,1,3526,559580 ,1,3527,571320 ,1,3528,596945 ,1,3529,65 ,1,3530,65 ,1,3531,566100 ,1,3532,598730 ,1,3533,65 ,1,3534,573365 ,1,3535,564565 ,1,3536,65 ,1,3537,561915 ,1,3538,65 ,1,3539,586710 ,1,3540,558765 ,1,3541,594505 ,1,3542,557990 ,1,3543,568120 ,1,3544,65 ,1,3545,65 ,1,3546,580650 ,1,3547,584805 ,1,3548,584880 ,1,3549,580655 ,1,3550,569530 ,1,3551,593860 ,1,3552,598725 ,1,3553,65 ,1,3554,65 ,1,3555,65 ,1,3556,65 ,1,3557,569525 ,1,3558,594800 ,1,3559,65 ,1,3560,595855 ,1,3561,562910 ,1,3562,584075 ,1,3563,595880 ,1,3564,591320 ,1,3565,581850 ,1,3566,570480 ,1,3567,65 ,1,3568,592555 ,1,3569,577050 ,1,3570,560900 ,1,3571,560705 ,1,3572,560170 ,1,3573,65 ,1,3574,65 ,1,3575,594145 ,1,3576,569960 ,1,3577,65 ,1,3578,65 ,1,3579,567085 ,1,3580,65 ,1,3581,65 ,1,3582,65 ,1,3583,65 ,1,3584,598720 ,1,3585,598715 ,1,3586,65 ,1,3587,563325 ,1,3588,65 ,1,3589,595595 ,1,3590,590575 ,1,3591,65 ,1,3592,65 ,1,3593,65 ,1,3594,567425 ,1,3595,567585 ,1,3596,559530 ,1,3597,65 ,1,3598,65 ,1,3599,65 ,1,3600,65 ,1,3601,574290 ,1,3602,573270 ,1,3603,65 ,1,3604,564380 ,1,3605,65 ,1,3606,65 ,1,3607,558715 ,1,3608,65 ,1,3609,561325 ,1,3610,65 ,1,3611,65 ,1,3612,65 ,1,3613,65 ,1,3614,65 ,1,3615,581065 ,1,3616,65 ,1,3617,65 ,1,3618,586930 ,1,3619,65 ,1,3620,595385 ,1,3621,592710 ,1,3622,65 ,1,3623,590225 ,1,3624,584750 ,1,3625,585410 ,1,3626,571400 ,1,3627,65 ,1,3628,578225 ,1,3629,65 ,1,3630,65 ,1,3631,571790 ,1,3632,65 ,1,3633,65 ,1,3634,577600 ,1,3635,577565 ,1,3636,65 ,1,3637,574240 ,1,3638,589895 ,1,3639,65 ,1,3640,65 ,1,3641,563785 ,1,3642,65 ,1,3643,566650 ,1,3644,562850 ,1,3645,586245 ,1,3646,570200 ,1,3647,65 ,1,3648,65 ,1,3649,566655 ,1,3650,65 ,1,3651,65 ,1,3652,598710 ,1,3653,595775 ,1,3654,561155 ,1,3655,65 ,1,3656,578145 ,1,3657,65 ,1,3658,561295 ,1,3659,586110 ,1,3660,563315 ,1,3661,65 ,1,3662,561575 ,1,3663,598705 ,1,3664,598700 ,1,3665,65 ,1,3666,598670 ,1,3667,65 ,1,3668,588985 ,1,3669,598665 ,1,3670,598660 ,1,3671,65 ,1,3672,588015 ,1,3673,591220 ,1,3674,595755 ,1,3675,573845 ,1,3676,560400 ,1,3677,65 ,1,3678,598655 ,1,3679,65 ,1,3680,65 ,1,3681,65 ,1,3682,65 ,1,3683,65 ,1,3684,65 ,1,3685,65 ,1,3686,65 ,1,3687,65 ,1,3688,65 ,1,3689,65 ,1,3690,65 ,1,3691,65 ,1,3692,65 ,1,3693,583025 ,1,3694,598650 ,1,3695,576305 ,1,3696,593110 ,1,3697,577540 ,1,3698,65 ,1,3699,589795 ,1,3700,561115 ,1,3701,596795 ,1,3702,598645 ,1,3703,580715 ,1,3704,65 ,1,3705,565425 ,1,3706,577735 ,1,3707,577815 ,1,3708,65 ,1,3709,65 ,1,3710,559780 ,1,3711,567665 ,1,3712,65 ,1,3713,576800 ,1,3714,65 ,1,3715,65 ,1,3716,581860 ,1,3717,65 ,1,3718,587815 ,1,3719,587795 ,1,3720,584470 ,1,3721,581925 ,1,3722,591820 ,1,3723,564385 ,1,3724,65 ,1,3725,65 ,1,3726,65 ,1,3727,571890 ,1,3728,598640 ,1,3729,561840 ,1,3730,594830 ,1,3731,65 ,1,3732,65 ,1,3733,580410 ,1,3734,596955 ,1,3735,65 ,1,3736,560415 ,1,3737,65 ,1,3738,65 ,1,3739,598635 ,1,3740,65 ,1,3741,65 ,1,3742,565785 ,1,3743,598615 ,1,3744,65 ,1,3745,565790 ,1,3746,565220 ,1,3747,65 ,1,3748,588030 ,1,3749,567165 ,1,3750,587390 ,1,3751,589225 ,1,3752,589220 ,1,3753,584620 ,1,3754,576180 ,1,3755,587395 ,1,3756,598610 ,1,3757,65 ,1,3758,598605 ,1,3759,65 ,1,3760,576050 ,1,3761,595850 ,1,3762,595875 ,1,3763,562405 ,1,3764,562400 ,1,3765,558730 ,1,3766,594455 ,1,3767,559865 ,1,3768,565755 ,1,3769,579295 ,1,3770,576055 ,1,3771,598600 ,1,3772,580030 ,1,3773,566330 ,1,3774,566275 ,1,3775,65 ,1,3776,574175 ,1,3777,570135 ,1,3778,580405 ,1,3779,65 ,1,3780,559755 ,1,3781,585475 ,1,3782,65 ,1,3783,565760 ,1,3784,65 ,1,3785,589490 ,1,3786,65 ,1,3787,65 ,1,3788,593180 ,1,3789,65 ,1,3790,65 ,1,3791,561500 ,1,3792,561505 ,1,3793,575570 ,1,3794,563880 ,1,3795,593535 ,1,3796,65 ,1,3797,570590 ,1,3798,65 ,1,3799,577360 ,1,3800,580815 ,1,3801,563935 ,1,3802,563940 ,1,3803,570925 ,1,3804,578735 ,1,3805,595845 ,1,3806,594020 ,1,3807,578415 ,1,3808,598585 ,1,3809,566595 ,1,3810,566590 ,1,3811,575155 ,1,3812,570585 ,1,3813,65 ,1,3814,593730 ,1,3815,567800 ,1,3816,571850 ,1,3817,65 ,1,3818,598580 ,1,3819,582220 ,1,3820,582255 ,1,3821,570410 ,1,3822,561965 ,1,3823,585020 ,1,3824,561555 ,1,3825,560410 ,1,3826,574155 ,1,3827,596720 ,1,3828,575850 ,1,3829,576935 ,1,3830,65 ,1,3831,599895 ,1,3832,568995 ,1,3833,575345 ,1,3834,596300 ,1,3835,65 ,1,3836,570360 ,1,3837,65 ,1,3838,65 ,1,3839,566455 ,1,3840,566460 ,1,3841,578810 ,1,3842,65 ,1,3843,573135 ,1,3844,570415 ,1,3845,570450 ,1,3846,595460 ,1,3847,569150 ,1,3848,65 ,1,3849,65 ,1,3850,578925 ,1,3851,65 ,1,3852,569410 ,1,3853,569405 ,1,3854,65 ,1,3855,596220 ,1,3856,587545 ,1,3857,588430 ,1,3858,598575 ,1,3859,65 ,1,3860,582965 ,1,3861,593145 ,1,3862,574605 ,1,3863,564460 ,1,3864,65 ,1,3865,65 ,1,3866,65 ,1,3867,585520 ,1,3868,65 ,1,3869,65 ,1,3870,65 ,1,3871,566530 ,1,3872,566535 ,1,3873,65 ,1,3874,580790 ,1,3875,65 ,1,3876,568665 ,1,3877,568685 ,1,3878,65 ,1,3879,65 ,1,3880,565975 ,1,3881,581780 ,1,3882,65 ,1,3883,65 ,1,3884,598570 ,1,3885,588375 ,1,3886,571585 ,1,3887,598535 ,1,3888,65 ,1,3889,571575 ,1,3890,588345 ,1,3891,65 ,1,3892,573110 ,1,3893,588915 ,1,3894,580430 ,1,3895,594445 ,1,3896,65 ,1,3897,65 ,1,3898,578890 ,1,3899,595635 ,1,3900,65 ,1,3901,591995 ,1,3902,591445 ,1,3903,584160 ,1,3904,592410 ,1,3905,575005 ,1,3906,65 ,1,3907,590950 ,1,3908,65 ,1,3909,65 ,1,3910,65 ,1,3911,65 ,1,3912,65 ,1,3913,598530 ,1,3914,593405 ,1,3915,577255 ,1,3916,577295 ,1,3917,585830 ,1,3918,65 ,1,3919,561020 ,1,3920,573015 ,1,3921,595990 ,1,3922,598525 ,1,3923,65 ,1,3924,65 ,1,3925,561030 ,1,3926,594940 ,1,3927,564370 ,1,3928,592350 ,1,3929,575530 ,1,3930,575580 ,1,3931,598520 ,1,3932,579815 ,1,3933,65 ,1,3934,595425 ,1,3935,563610 ,1,3936,65 ,1,3937,65 ,1,3938,65 ,1,3939,570265 ,1,3940,570195 ,1,3941,598510 ,1,3942,568010 ,1,3943,593455 ,1,3944,585855 ,1,3945,590980 ,1,3946,65 ,1,3947,581195 ,1,3948,562305 ,1,3949,65 ,1,3950,562575 ,1,3951,559675 ,1,3952,65 ,1,3953,65 ,1,3954,65 ,1,3955,65 ,1,3956,558370 ,1,3957,65 ,1,3958,65 ,1,3959,65 ,1,3960,559605 ,1,3961,65 ,1,3962,574820 ,1,3963,573390 ,1,3964,579200 ,1,3965,591160 ,1,3966,572065 ,1,3967,591425 ,1,3968,65 ,1,3969,570275 ,1,3970,582725 ,1,3971,598505 ,1,3972,569795 ,1,3973,580040 ,1,3974,560160 ,1,3975,598500 ,1,3976,561580 ,1,3977,579885 ,1,3978,591630 ,1,3979,589575 ,1,3980,592320 ,1,3981,65 ,1,3982,65 ,1,3983,580090 ,1,3984,65 ,1,3985,594990 ,1,3986,65 ,1,3987,65 ,1,3988,580455 ,1,3989,598495 ,1,3990,65 ,1,3991,573065 ,1,3992,65 ,1,3993,65 ,1,3994,558720 ,1,3995,561120 ,1,3996,581570 ,1,3997,65 ,1,3998,65 ,1,3999,65 ,1,4000,65 ,1,4001,65 ,1,4002,568390 ,1,4003,568435 ,1,4004,576555 ,1,4005,581640 ,1,4006,65 ,1,4007,576560 ,1,4008,65 ,1,4009,588335 ,1,4010,593785 ,1,4011,65 ,1,4012,595195 ,1,4013,65 ,1,4014,65 ,1,4015,65 ,1,4016,588025 ,1,4017,65 ,1,4018,65 ,1,4019,65 ,1,4020,582205 ,1,4021,590585 ,1,4022,65 ,1,4023,590590 ,1,4024,574755 ,1,4025,65 ,1,4026,586780 ,1,4027,593385 ,1,4028,65 ,1,4029,586785 ,1,4030,575200 ,1,4031,65 ,1,4032,65 ,1,4033,65 ,1,4034,65 ,1,4035,582040 ,1,4036,65 ,1,4037,65 ,1,4038,560665 ,1,4039,560985 ,1,4040,560075 ,1,4041,596005 ,1,4042,575400 ,1,4043,587115 ,1,4044,65 ,1,4045,561385 ,1,4046,585005 ,1,4047,563080 ,1,4048,566055 ,1,4049,598475 ,1,4050,598470 ,1,4051,561390 ,1,4052,566065 ,1,4053,65 ,1,4054,568655 ,1,4055,598465 ,1,4056,571075 ,1,4057,577745 ,1,4058,577760 ,1,4059,584550 ,1,4060,596875 ,1,4061,571070 ,1,4062,65 ,1,4063,586385 ,1,4064,579395 ,1,4065,573915 ,1,4066,65 ,1,4067,65 ,1,4068,563735 ,1,4069,590740 ,1,4070,566855 ,1,4071,566720 ,1,4072,65 ,1,4073,65 ,1,4074,65 ,1,4075,563625 ,1,4076,65 ,1,4077,598460 ,1,4078,586410 ,1,4079,596680 ,1,4080,65 ,1,4081,65 ,1,4082,598455 ,1,4083,587665 ,1,4084,588810 ,1,4085,594130 ,1,4086,574245 ,1,4087,558060 ,1,4088,597015 ,1,4089,564815 ,1,4090,591635 ,1,4091,564890 ,1,4092,564840 ,1,4093,65 ,1,4094,558050 ,1,4095,581530 ,1,4096,557920 ,1,4097,593625 ,1,4098,568935 ,1,4099,560570 ,1,4100,571000 ,1,4101,563140 ,1,4102,570955 ,1,4103,65 ,1,4104,568930 ,1,4105,65 ,1,4106,65 ,1,4107,65 ,1,4108,580905 ,1,4109,65 ,1,4110,65 ,1,4111,65 ,1,4112,65 ,1,4113,65 ,1,4114,65 ,1,4115,65 ,1,4116,566820 ,1,4117,65 ,1,4118,65 ,1,4119,65 ,1,4120,596155 ,1,4121,596140 ,1,4122,65 ,1,4123,65 ,1,4124,65 ,1,4125,65 ,1,4126,65 ,1,4127,570080 ,1,4128,560460 ,1,4129,560950 ,1,4130,579750 ,1,4131,65 ,1,4132,65 ,1,4133,65 ,1,4134,65 ,1,4135,65 ,1,4136,587000 ,1,4137,592705 ,1,4138,65 ,1,4139,65 ,1,4140,584295 ,1,4141,584015 ,1,4142,65 ,1,4143,568165 ,1,4144,65 ,1,4145,65 ,1,4146,568215 ,1,4147,568195 ,1,4148,595640 ,1,4149,65 ,1,4150,65 ,1,4151,581835 ,1,4152,581680 ,1,4153,65 ,1,4154,65 ,1,4155,65 ,1,4156,65 ,1,4157,65 ,1,4158,65 ,1,4159,564635 ,1,4160,65 ,1,4161,65 ,1,4162,65 ,1,4163,65 ,1,4164,65 ,1,4165,65 ,1,4166,571550 ,1,4167,598450 ,1,4168,65 ,1,4169,566950 ,1,4170,566940 ,1,4171,65 ,1,4172,65 ,1,4173,65 ,1,4174,570930 ,1,4175,591235 ,1,4176,65 ,1,4177,65 ,1,4178,574595 ,1,4179,65 ,1,4180,65 ,1,4181,65 ,1,4182,65 ,1,4183,65 ,1,4184,65 ,1,4185,65 ,1,4186,65 ,1,4187,65 ,1,4188,65 ,1,4189,580285 ,1,4190,590460 ,1,4191,65 ,1,4192,65 ,1,4193,65 ,1,4194,65 ,1,4195,65 ,1,4196,65 ,1,4197,65 ,1,4198,574485 ,1,4199,65 ,1,4200,65 ,1,4201,65 ,1,4202,65 ,1,4203,65 ,1,4204,578125 ,1,4205,578090 ,1,4206,558245 ,1,4207,65 ,1,4208,65 ,1,4209,65 ,1,4210,65 ,1,4211,65 ,1,4212,65 ,1,4213,65 ,1,4214,65 ,1,4215,65 ,1,4216,567680 ,1,4217,567710 ,1,4218,65 ,1,4219,65 ,1,4220,65 ,1,4221,560700 ,1,4222,581230 ,1,4223,65 ,1,4224,561025 ,1,4225,598445 ,1,4226,590710 ,1,4227,65 ,1,4228,65 ,1,4229,65 ,1,4230,65 ,1,4231,559470 ,1,4232,588835 ,1,4233,65 ,1,4234,562585 ,1,4235,65 ,1,4236,65 ,1,4237,65 ,1,4238,65 ,1,4239,65 ,1,4240,65 ,1,4241,65 ,1,4242,65 ,1,4243,65 ,1,4244,577120 ,1,4245,577150 ,1,4246,598440 ,1,4247,586390 ,1,4248,593170 ,1,4249,65 ,1,4250,586460 ,1,4251,562715 ,1,4252,578550 ,1,4253,589395 ,1,4254,582590 ,1,4255,578630 ,1,4256,65 ,1,4257,582655 ,1,4258,596985 ,1,4259,592795 ,1,4260,65 ,1,4261,598420 ,1,4262,593205 ,1,4263,560255 ,1,4264,572570 ,1,4265,591295 ,1,4266,65 ,1,4267,65 ,1,4268,65 ,1,4269,65 ,1,4270,562365 ,1,4271,65 ,1,4272,65 ,1,4273,65 ,1,4274,563805 ,1,4275,65 ,1,4276,65 ,1,4277,65 ,1,4278,65 ,1,4279,567040 ,1,4280,567400 ,1,4281,565415 ,1,4282,584680 ,1,4283,585160 ,1,4284,65 ,1,4285,598415 ,1,4286,598410 ,1,4287,65 ,1,4288,65 ,1,4289,65 ,1,4290,578235 ,1,4291,574935 ,1,4292,65 ,1,4293,65 ,1,4294,573330 ,1,4295,589085 ,1,4296,65 ,1,4297,573850 ,1,4298,65 ,1,4299,595940 ,1,4300,591615 ,1,4301,65 ,1,4302,65 ,1,4303,65 ,1,4304,569455 ,1,4305,574860 ,1,4306,586475 ,1,4307,586570 ,1,4308,579810 ,1,4309,574735 ,1,4310,564055 ,1,4311,578965 ,1,4312,562535 ,1,4313,564020 ,1,4314,570070 ,1,4315,562935 ,1,4316,580475 ,1,4317,570075 ,1,4318,65 ,1,4319,569460 ,1,4320,580470 ,1,4321,596320 ,1,4322,591165 ,1,4323,566225 ,1,4324,65 ,1,4325,575255 ,1,4326,65 ,1,4327,65 ,1,4328,588490 ,1,4329,595815 ,1,4330,559650 ,1,4331,559550 ,1,4332,65 ,1,4333,586800 ,1,4334,595825 ,1,4335,65 ,1,4336,582520 ,1,4337,582665 ,1,4338,583950 ,1,4339,583945 ,1,4340,65 ,1,4341,569205 ,1,4342,560360 ,1,4343,65 ,1,4344,568620 ,1,4345,596880 ,1,4346,596835 ,1,4347,561055 ,1,4348,560845 ,1,4349,598405 ,1,4350,584755 ,1,4351,598400 ,1,4352,598395 ,1,4353,598390 ,1,4354,65 ,1,4355,65 ,1,4356,574685 ,1,4357,598385 ,1,4358,598345 ,1,4359,598340 ,1,4360,65 ,1,4361,590735 ,1,4362,591370 ,1,4363,561515 ,1,4364,568280 ,1,4365,582530 ,1,4366,582525 ,1,4367,65 ,1,4368,593875 ,1,4369,560000 ,1,4370,65 ,1,4371,585920 ,1,4372,574285 ,1,4373,561510 ,1,4374,569965 ,1,4375,594875 ,1,4376,596520 ,1,4377,580150 ,1,4378,569980 ,1,4379,65 ,1,4380,582030 ,1,4381,65 ,1,4382,578625 ,1,4383,591925 ,1,4384,568095 ,1,4385,578400 ,1,4386,576885 ,1,4387,576880 ,1,4388,65 ,1,4389,65 ,1,4390,558215 ,1,4391,576940 ,1,4392,65 ,1,4393,65 ,1,4394,65 ,1,4395,594570 ,1,4396,65 ,1,4397,586335 ,1,4398,65 ,1,4399,564430 ,1,4400,558900 ,1,4401,65 ,1,4402,65 ,1,4403,65 ,1,4404,564090 ,1,4405,585895 ,1,4406,65 ,1,4407,564075 ,1,4408,558625 ,1,4409,579150 ,1,4410,565860 ,1,4411,569380 ,1,4412,569375 ,1,4413,560695 ,1,4414,589745 ,1,4415,580705 ,1,4416,592385 ,1,4417,590160 ,1,4418,579185 ,1,4419,595165 ,1,4420,577670 ,1,4421,65 ,1,4422,596025 ,1,4423,65 ,1,4424,65 ,1,4425,561090 ,1,4426,566850 ,1,4427,65 ,1,4428,65 ,1,4429,65 ,1,4430,590540 ,1,4431,65 ,1,4432,584640 ,1,4433,65 ,1,4434,596660 ,1,4435,560105 ,1,4436,569545 ,1,4437,560100 ,1,4438,590920 ,1,4439,65 ,1,4440,65 ,1,4441,65 ,1,4442,65 ,1,4443,594055 ,1,4444,65 ,1,4445,65 ,1,4446,65 ,1,4447,65 ,1,4448,575510 ,1,4449,575665 ,1,4450,65 ,1,4451,65 ,1,4452,65 ,1,4453,65 ,1,4454,65 ,1,4455,586610 ,1,4456,586615 ,1,4457,598335 ,1,4458,564595 ,1,4459,581250 ,1,4460,594010 ,1,4461,578995 ,1,4462,561645 ,1,4463,567210 ,1,4464,578230 ,1,4465,576255 ,1,4466,576310 ,1,4467,586190 ,1,4468,568050 ,1,4469,593590 ,1,4470,65 ,1,4471,584540 ,1,4472,568045 ,1,4473,591360 ,1,4474,581255 ,1,4475,571645 ,1,4476,65 ,1,4477,65 ,1,4478,559195 ,1,4479,571655 ,1,4480,65 ,1,4481,65 ,1,4482,65 ,1,4483,65 ,1,4484,65 ,1,4485,593275 ,1,4486,593260 ,1,4487,65 ,1,4488,65 ,1,4489,65 ,1,4490,598330 ,1,4491,65 ,1,4492,65 ,1,4493,65 ,1,4494,583155 ,1,4495,583180 ,1,4496,566640 ,1,4497,560765 ,1,4498,596530 ,1,4499,566645 ,1,4500,593510 ,1,4501,65 ,1,4502,65 ,1,4503,65 ,1,4504,585255 ,1,4505,585125 ,1,4506,598325 ,1,4507,65 ,1,4508,65 ,1,4509,564965 ,1,4510,564900 ,1,4511,65 ,1,4512,65 ,1,4513,573610 ,1,4514,591365 ,1,4515,65 ,1,4516,65 ,1,4517,65 ,1,4518,588165 ,1,4519,588180 ,1,4520,565150 ,1,4521,569345 ,1,4522,65 ,1,4523,569370 ,1,4524,65 ,1,4525,65 ,1,4526,65 ,1,4527,566600 ,1,4528,598320 ,1,4529,65 ,1,4530,566585 ,1,4531,65 ,1,4532,574405 ,1,4533,65 ,1,4534,574480 ,1,4535,588660 ,1,4536,65 ,1,4537,574490 ,1,4538,568315 ,1,4539,584150 ,1,4540,592420 ,1,4541,65 ,1,4542,65 ,1,4543,571230 ,1,4544,558630 ,1,4545,65 ,1,4546,65 ,1,4547,579940 ,1,4548,562940 ,1,4549,565545 ,1,4550,65 ,1,4551,567715 ,1,4552,580265 ,1,4553,65 ,1,4554,579830 ,1,4555,558905 ,1,4556,590415 ,1,4557,590440 ,1,4558,65 ,1,4559,579755 ,1,4560,594195 ,1,4561,593795 ,1,4562,65 ,1,4563,580105 ,1,4564,564320 ,1,4565,598315 ,1,4566,578865 ,1,4567,568515 ,1,4568,596730 ,1,4569,580190 ,1,4570,568490 ,1,4571,65 ,1,4572,65 ,1,4573,582715 ,1,4574,582710 ,1,4575,591290 ,1,4576,65 ,1,4577,575535 ,1,4578,575540 ,1,4579,598310 ,1,4580,574085 ,1,4581,576430 ,1,4582,557800 ,1,4583,577160 ,1,4584,587605 ,1,4585,557795 ,1,4586,567790 ,1,4587,559740 ,1,4588,65 ,1,4589,559745 ,1,4590,559170 ,1,4591,592915 ,1,4592,594415 ,1,4593,65 ,1,4594,587585 ,1,4595,577190 ,1,4596,567795 ,1,4597,65 ,1,4598,565040 ,1,4599,593445 ,1,4600,596590 ,1,4601,596465 ,1,4602,582480 ,1,4603,65 ,1,4604,558990 ,1,4605,569760 ,1,4606,579320 ,1,4607,559345 ,1,4608,592900 ,1,4609,571965 ,1,4610,594015 ,1,4611,65 ,1,4612,65 ,1,4613,65 ,1,4614,571970 ,1,4615,589500 ,1,4616,577605 ,1,4617,589495 ,1,4618,578990 ,1,4619,65 ,1,4620,575640 ,1,4621,575575 ,1,4622,65 ,1,4623,583845 ,1,4624,583840 ,1,4625,561680 ,1,4626,596715 ,1,4627,571335 ,1,4628,567315 ,1,4629,65 ,1,4630,65 ,1,4631,65 ,1,4632,65 ,1,4633,579965 ,1,4634,65 ,1,4635,65 ,1,4636,559480 ,1,4637,578545 ,1,4638,65 ,1,4639,590080 ,1,4640,589300 ,1,4641,65 ,1,4642,578635 ,1,4643,573765 ,1,4644,573060 ,1,4645,588820 ,1,4646,65 ,1,4647,597045 ,1,4648,65 ,1,4649,65 ,1,4650,65 ,1,4651,65 ,1,4652,65 ,1,4653,559875 ,1,4654,65 ,1,4655,567930 ,1,4656,573370 ,1,4657,568970 ,1,4658,560165 ,1,4659,573445 ,1,4660,568975 ,1,4661,65 ,1,4662,65 ,1,4663,65 ,1,4664,65 ,1,4665,559390 ,1,4666,584625 ,1,4667,569865 ,1,4668,585900 ,1,4669,65 ,1,4670,65 ,1,4671,566985 ,1,4672,570965 ,1,4673,570860 ,1,4674,575180 ,1,4675,565350 ,1,4676,564645 ,1,4677,590945 ,1,4678,65 ,1,4679,593465 ,1,4680,65 ,1,4681,581100 ,1,4682,568485 ,1,4683,65 ,1,4684,596410 ,1,4685,65 ,1,4686,575260 ,1,4687,65 ,1,4688,597155 ,1,4689,582135 ,1,4690,65 ,1,4691,585415 ,1,4692,594165 ,1,4693,65 ,1,4694,65 ,1,4695,65 ,1,4696,65 ,1,4697,594490 ,1,4698,580215 ,1,4699,596980 ,1,4700,65 ,1,4701,580025 ,1,4702,65 ,1,4703,65 ,1,4704,65 ,1,4705,581450 ,1,4706,581455 ,1,4707,65 ,1,4708,65 ,1,4709,65 ,1,4710,65 ,1,4711,559880 ,1,4712,65 ,1,4713,65 ,1,4714,65 ,1,4715,560080 ,1,4716,65 ,1,4717,65 ,1,4718,585590 ,1,4719,580915 ,1,4720,593460 ,1,4721,65 ,1,4722,596550 ,1,4723,65 ,1,4724,65 ,1,4725,65 ,1,4726,65 ,1,4727,65 ,1,4728,65 ,1,4729,65 ,1,4730,65 ,1,4731,65 ,1,4732,589890 ,1,4733,598295 ,1,4734,65 ,1,4735,65 ,1,4736,65 ,1,4737,65 ,1,4738,573265 ,1,4739,595975 ,1,4740,563375 ,1,4741,65 ,1,4742,65 ,1,4743,65 ,1,4744,597020 ,1,4745,589730 ,1,4746,579280 ,1,4747,65 ,1,4748,563615 ,1,4749,571545 ,1,4750,65 ,1,4751,568240 ,1,4752,65 ,1,4753,65 ,1,4754,65 ,1,4755,65 ,1,4756,571910 ,1,4757,598290 ,1,4758,65 ,1,4759,567735 ,1,4760,574545 ,1,4761,592100 ,1,4762,581350 ,1,4763,65 ,1,4764,577165 ,1,4765,65 ,1,4766,65 ,1,4767,580980 ,1,4768,568715 ,1,4769,65 ,1,4770,563120 ,1,4771,65 ,1,4772,558785 ,1,4773,595230 ,1,4774,562255 ,1,4775,561935 ,1,4776,576355 ,1,4777,559210 ,1,4778,561400 ,1,4779,557845 ,1,4780,584860 ,1,4781,587960 ,1,4782,65 ,1,4783,65 ,1,4784,65 ,1,4785,565815 ,1,4786,594540 ,1,4787,594550 ,1,4788,65 ,1,4789,590280 ,1,4790,569340 ,1,4791,569335 ,1,4792,574510 ,1,4793,65 ,1,4794,65 ,1,4795,65 ,1,4796,65 ,1,4797,65 ,1,4798,563950 ,1,4799,587580 ,1,4800,578750 ,1,4801,582370 ,1,4802,65 ,1,4803,65 ,1,4804,584410 ,1,4805,591825 ,1,4806,65 ,1,4807,65 ,1,4808,598285 ,1,4809,598280 ,1,4810,65 ,1,4811,572175 ,1,4812,576500 ,1,4813,563955 ,1,4814,571535 ,1,4815,581340 ,1,4816,65 ,1,4817,65 ,1,4818,65 ,1,4819,598275 ,1,4820,65 ,1,4821,565700 ,1,4822,65 ,1,4823,65 ,1,4824,65 ,1,4825,65 ,1,4826,583665 ,1,4827,566715 ,1,4828,566290 ,1,4829,583660 ,1,4830,65 ,1,4831,570695 ,1,4832,569615 ,1,4833,569620 ,1,4834,65 ,1,4835,65 ,1,4836,65 ,1,4837,65 ,1,4838,567260 ,1,4839,583960 ,1,4840,583955 ,1,4841,598270 ,1,4842,598265 ,1,4843,598260 ,1,4844,596830 ,1,4845,65 ,1,4846,590000 ,1,4847,560005 ,1,4848,562675 ,1,4849,65 ,1,4850,559905 ,1,4851,65 ,1,4852,65 ,1,4853,570625 ,1,4854,65 ,1,4855,581130 ,1,4856,585735 ,1,4857,65 ,1,4858,587575 ,1,4859,579505 ,1,4860,65 ,1,4861,569050 ,1,4862,65 ,1,4863,65 ,1,4864,598240 ,1,4865,594080 ,1,4866,566020 ,1,4867,566025 ,1,4868,594265 ,1,4869,65 ,1,4870,563810 ,1,4871,579550 ,1,4872,65 ,1,4873,595690 ,1,4874,579760 ,1,4875,65 ,1,4876,65 ,1,4877,65 ,1,4878,570520 ,1,4879,570535 ,1,4880,65 ,1,4881,65 ,1,4882,65 ,1,4883,65 ,1,4884,65 ,1,4885,565420 ,1,4886,65 ,1,4887,559165 ,1,4888,561175 ,1,4889,65 ,1,4890,566105 ,1,4891,572315 ,1,4892,65 ,1,4893,588465 ,1,4894,65 ,1,4895,65 ,1,4896,65 ,1,4897,581040 ,1,4898,65 ,1,4899,577875 ,1,4900,598235 ,1,4901,576910 ,1,4902,571110 ,1,4903,65 ,1,4904,588160 ,1,4905,65 ,1,4906,567065 ,1,4907,587255 ,1,4908,562130 ,1,4909,567270 ,1,4910,570975 ,1,4911,65 ,1,4912,65 ,1,4913,597005 ,1,4914,65 ,1,4915,590135 ,1,4916,65 ,1,4917,65 ,1,4918,65 ,1,4919,598230 ,1,4920,572340 ,1,4921,572345 ,1,4922,598225 ,1,4923,586905 ,1,4924,584400 ,1,4925,576410 ,1,4926,579430 ,1,4927,582980 ,1,4928,581755 ,1,4929,590190 ,1,4930,565070 ,1,4931,576340 ,1,4932,65 ,1,4933,593395 ,1,4934,65 ,1,4935,579935 ,1,4936,65 ,1,4937,65 ,1,4938,570525 ,1,4939,572310 ,1,4940,576315 ,1,4941,65 ,1,4942,575135 ,1,4943,575140 ,1,4944,598220 ,1,4945,566335 ,1,4946,566280 ,1,4947,65 ,1,4948,580065 ,1,4949,65 ,1,4950,598215 ,1,4951,65 ,1,4952,565525 ,1,4953,561835 ,1,4954,65 ,1,4955,65 ,1,4956,65 ,1,4957,560265 ,1,4958,558110 ,1,4959,586715 ,1,4960,567450 ,1,4961,558810 ,1,4962,561795 ,1,4963,560140 ,1,4964,583320 ,1,4965,562380 ,1,4966,65 ,1,4967,569895 ,1,4968,569900 ,1,4969,65 ,1,4970,583170 ,1,4971,65 ,1,4972,563945 ,1,4973,563720 ,1,4974,65 ,1,4975,65 ,1,4976,596225 ,1,4977,598210 ,1,4978,587325 ,1,4979,586660 ,1,4980,585770 ,1,4981,573830 ,1,4982,584065 ,1,4983,570785 ,1,4984,585330 ,1,4985,570810 ,1,4986,65 ,1,4987,576110 ,1,4988,595885 ,1,4989,65 ,1,4990,65 ,1,4991,573840 ,1,4992,598205 ,1,4993,65 ,1,4994,575790 ,1,4995,581995 ,1,4996,582000 ,1,4997,575795 ,1,4998,558725 ,1,4999,560715 ,1,5000,566860 ,1,5001,65 ,1,5002,65 ,1,5003,567150 ,1,5004,65 ,1,5005,589925 ,1,5006,589935 ,1,5007,65 ,1,5008,65 ,1,5009,588785 ,1,5010,565235 ,1,5011,573210 ,1,5012,585145 ,1,5013,559425 ,1,5014,65 ,1,5015,65 ,1,5016,65 ,1,5017,591830 ,1,5018,577945 ,1,5019,577870 ,1,5020,65 ,1,5021,65 ,1,5022,594070 ,1,5023,577060 ,1,5024,576425 ,1,5025,576415 ,1,5026,577065 ,1,5027,585740 ,1,5028,596000 ,1,5029,65 ,1,5030,585765 ,1,5031,65 ,1,5032,65 ,1,5033,585465 ,1,5034,594190 ,1,5035,65 ,1,5036,576230 ,1,5037,578880 ,1,5038,65 ,1,5039,591495 ,1,5040,65 ,1,5041,65 ,1,5042,65 ,1,5043,65 ,1,5044,65 ,1,5045,65 ,1,5046,65 ,1,5047,592625 ,1,5048,580450 ,1,5049,565450 ,1,5050,65 ,1,5051,560065 ,1,5052,65 ,1,5053,65 ,1,5054,565385 ,1,5055,65 ,1,5056,559275 ,1,5057,565580 ,1,5058,564315 ,1,5059,558105 ,1,5060,592605 ,1,5061,558585 ,1,5062,65 ,1,5063,575610 ,1,5064,598190 ,1,5065,65 ,1,5066,65 ,1,5067,563190 ,1,5068,561380 ,1,5069,561375 ,1,5070,65 ,1,5071,65 ,1,5072,65 ,1,5073,564290 ,1,5074,573825 ,1,5075,65 ,1,5076,577305 ,1,5077,562310 ,1,5078,560475 ,1,5079,566515 ,1,5080,566520 ,1,5081,65 ,1,5082,577310 ,1,5083,593540 ,1,5084,65 ,1,5085,558030 ,1,5086,590375 ,1,5087,594925 ,1,5088,595380 ,1,5089,594200 ,1,5090,573180 ,1,5091,594735 ,1,5092,576975 ,1,5093,575420 ,1,5094,575415 ,1,5095,65 ,1,5096,65 ,1,5097,594450 ,1,5098,598185 ,1,5099,65 ,1,5100,65 ,1,5101,65 ,1,5102,598180 ,1,5103,65 ,1,5104,564480 ,1,5105,65 ,1,5106,65 ,1,5107,65 ,1,5108,65 ,1,5109,564145 ,1,5110,563995 ,1,5111,65 ,1,5112,564780 ,1,5113,591170 ,1,5114,65 ,1,5115,578470 ,1,5116,578610 ,1,5117,65 ,1,5118,595170 ,1,5119,65 ,1,5120,65 ,1,5121,578595 ,1,5122,574865 ,1,5123,591535 ,1,5124,585575 ,1,5125,593470 ,1,5126,579795 ,1,5127,65 ,1,5128,590930 ,1,5129,65 ,1,5130,65 ,1,5131,65 ,1,5132,558890 ,1,5133,65 ,1,5134,65 ,1,5135,65 ,1,5136,65 ,1,5137,558220 ,1,5138,65 ,1,5139,65 ,1,5140,569950 ,1,5141,567815 ,1,5142,65 ,1,5143,558275 ,1,5144,587330 ,1,5145,587335 ,1,5146,561570 ,1,5147,65 ,1,5148,65 ,1,5149,65 ,1,5150,65 ,1,5151,565225 ,1,5152,569225 ,1,5153,593345 ,1,5154,564195 ,1,5155,582210 ,1,5156,585925 ,1,5157,569210 ,1,5158,596235 ,1,5159,65 ,1,5160,585320 ,1,5161,584030 ,1,5162,592620 ,1,5163,564755 ,1,5164,559670 ,1,5165,571150 ,1,5166,564760 ,1,5167,65 ,1,5168,65 ,1,5169,562510 ,1,5170,568830 ,1,5171,65 ,1,5172,65 ,1,5173,581970 ,1,5174,592775 ,1,5175,593010 ,1,5176,65 ,1,5177,65 ,1,5178,591810 ,1,5179,65 ,1,5180,65 ,1,5181,589805 ,1,5182,65 ,1,5183,65 ,1,5184,563670 ,1,5185,562340 ,1,5186,563565 ,1,5187,581465 ,1,5188,594860 ,1,5189,565780 ,1,5190,573310 ,1,5191,65 ,1,5192,586525 ,1,5193,569285 ,1,5194,65 ,1,5195,564960 ,1,5196,578765 ,1,5197,65 ,1,5198,65 ,1,5199,65 ,1,5200,65 ,1,5201,590795 ,1,5202,65 ,1,5203,65 ,1,5204,597085 ,1,5205,65 ,1,5206,65 ,1,5207,65 ,1,5208,574630 ,1,5209,571705 ,1,5210,573530 ,1,5211,581015 ,1,5212,65 ,1,5213,65 ,1,5214,583775 ,1,5215,583770 ,1,5216,65 ,1,5217,65 ,1,5218,559870 ,1,5219,65 ,1,5220,65 ,1,5221,65 ,1,5222,65 ,1,5223,65 ,1,5224,65 ,1,5225,65 ,1,5226,65 ,1,5227,566480 ,1,5228,574930 ,1,5229,569515 ,1,5230,559420 ,1,5231,588105 ,1,5232,563845 ,1,5233,589625 ,1,5234,595020 ,1,5235,566445 ,1,5236,589635 ,1,5237,566485 ,1,5238,570225 ,1,5239,598175 ,1,5240,594740 ,1,5241,566380 ,1,5242,589365 ,1,5243,590315 ,1,5244,577555 ,1,5245,573705 ,1,5246,592690 ,1,5247,589560 ,1,5248,585260 ,1,5249,598155 ,1,5250,598150 ,1,5251,568395 ,1,5252,580015 ,1,5253,565695 ,1,5254,65 ,1,5255,598145 ,1,5256,592615 ,1,5257,566935 ,1,5258,567915 ,1,5259,567875 ,1,5260,574570 ,1,5261,592630 ,1,5262,568925 ,1,5263,572615 ,1,5264,558090 ,1,5265,560850 ,1,5266,587955 ,1,5267,65 ,1,5268,573785 ,1,5269,592790 ,1,5270,65 ,1,5271,591125 ,1,5272,590960 ,1,5273,569800 ,1,5274,588795 ,1,5275,592345 ,1,5276,579875 ,1,5277,65 ,1,5278,562730 ,1,5279,65 ,1,5280,596545 ,1,5281,65 ,1,5282,65 ,1,5283,567940 ,1,5284,65 ,1,5285,567325 ,1,5286,65 ,1,5287,65 ,1,5288,65 ,1,5289,65 ,1,5290,65 ,1,5291,65 ,1,5292,65 ,1,5293,65 ,1,5294,65 ,1,5295,589550 ,1,5296,598140 ,1,5297,583835 ,1,5298,583820 ,1,5299,560640 ,1,5300,565455 ,1,5301,595060 ,1,5302,564915 ,1,5303,580540 ,1,5304,574235 ,1,5305,564920 ,1,5306,584870 ,1,5307,65 ,1,5308,562445 ,1,5309,576030 ,1,5310,587170 ,1,5311,587825 ,1,5312,576625 ,1,5313,579860 ,1,5314,567750 ,1,5315,584575 ,1,5316,558385 ,1,5317,65 ,1,5318,579825 ,1,5319,569970 ,1,5320,571600 ,1,5321,584105 ,1,5322,569975 ,1,5323,597100 ,1,5324,576035 ,1,5325,587865 ,1,5326,594295 ,1,5327,592485 ,1,5328,594305 ,1,5329,594855 ,1,5330,583975 ,1,5331,587190 ,1,5332,65 ,1,5333,592650 ,1,5334,598120 ,1,5335,65 ,1,5336,569675 ,1,5337,65 ,1,5338,592265 ,1,5339,566060 ,1,5340,591120 ,1,5341,569110 ,1,5342,564850 ,1,5343,570750 ,1,5344,565720 ,1,5345,580465 ,1,5346,572350 ,1,5347,564190 ,1,5348,566015 ,1,5349,562395 ,1,5350,562150 ,1,5351,590515 ,1,5352,564580 ,1,5353,570755 ,1,5354,560945 ,1,5355,562215 ,1,5356,592305 ,1,5357,589480 ,1,5358,592655 ,1,5359,563515 ,1,5360,596345 ,1,5361,565585 ,1,5362,65 ,1,5363,65 ,1,5364,571620 ,1,5365,572305 ,1,5366,65 ,1,5367,583745 ,1,5368,583690 ,1,5369,65 ,1,5370,564070 ,1,5371,562600 ,1,5372,582305 ,1,5373,582540 ,1,5374,588405 ,1,5375,581305 ,1,5376,561940 ,1,5377,581635 ,1,5378,65 ,1,5379,562465 ,1,5380,596425 ,1,5381,567030 ,1,5382,592825 ,1,5383,593400 ,1,5384,65 ,1,5385,576330 ,1,5386,65 ,1,5387,65 ,1,5388,575355 ,1,5389,65 ,1,5390,65 ,1,5391,65 ,1,5392,65 ,1,5393,65 ,1,5394,65 ,1,5395,588610 ,1,5396,575465 ,1,5397,598115 ,1,5398,575450 ,1,5399,65 ,1,5400,576865 ,1,5401,577350 ,1,5402,577355 ,1,5403,596480 ,1,5404,65 ,1,5405,587160 ,1,5406,587165 ,1,5407,572185 ,1,5408,65 ,1,5409,65 ,1,5410,593615 ,1,5411,65 ,1,5412,564060 ,1,5413,592245 ,1,5414,598110 ,1,5415,561085 ,1,5416,65 ,1,5417,570475 ,1,5418,561255 ,1,5419,583805 ,1,5420,583780 ,1,5421,562460 ,1,5422,590455 ,1,5423,570165 ,1,5424,570160 ,1,5425,65 ,1,5426,65 ,1,5427,570630 ,1,5428,579225 ,1,5429,579215 ,1,5430,573320 ,1,5431,578035 ,1,5432,65 ,1,5433,592260 ,1,5434,65 ,1,5435,586465 ,1,5436,590725 ,1,5437,573360 ,1,5438,573325 ,1,5439,65 ,1,5440,65 ,1,5441,65 ,1,5442,65 ,1,5443,65 ,1,5444,65 ,1,5445,65 ,1,5446,65 ,1,5447,65 ,1,5448,65 ,1,5449,65 ,1,5450,65 ,1,5451,65 ,1,5452,65 ,1,5453,573950 ,1,5454,65 ,1,5455,65 ,1,5456,569135 ,1,5457,579090 ,1,5458,590820 ,1,5459,65 ,1,5460,565260 ,1,5461,65 ,1,5462,65 ,1,5463,580985 ,1,5464,588695 ,1,5465,564185 ,1,5466,598105 ,1,5467,588080 ,1,5468,580615 ,1,5469,588090 ,1,5470,565005 ,1,5471,568855 ,1,5472,65 ,1,5473,65 ,1,5474,565010 ,1,5475,65 ,1,5476,65 ,1,5477,65 ,1,5478,595025 ,1,5479,65 ,1,5480,584825 ,1,5481,598100 ,1,5482,569255 ,1,5483,570150 ,1,5484,560095 ,1,5485,588070 ,1,5486,580370 ,1,5487,588040 ,1,5488,65 ,1,5489,561365 ,1,5490,585355 ,1,5491,595305 ,1,5492,575800 ,1,5493,585490 ,1,5494,587520 ,1,5495,572780 ,1,5496,590090 ,1,5497,65 ,1,5498,579475 ,1,5499,558500 ,1,5500,65 ,1,5501,572785 ,1,5502,65 ,1,5503,65 ,1,5504,592860 ,1,5505,65 ,1,5506,595455 ,1,5507,575805 ,1,5508,589585 ,1,5509,598095 ,1,5510,65 ,1,5511,65 ,1,5512,65 ,1,5513,65 ,1,5514,580375 ,1,5515,65 ,1,5516,65 ,1,5517,595485 ,1,5518,598090 ,1,5519,65 ,1,5520,65 ,1,5521,65 ,1,5522,570935 ,1,5523,65 ,1,5524,65 ,1,5525,589130 ,1,5526,589105 ,1,5527,65 ,1,5528,564765 ,1,5529,567100 ,1,5530,579285 ,1,5531,564745 ,1,5532,576025 ,1,5533,576040 ,1,5534,65 ,1,5535,571900 ,1,5536,65 ,1,5537,65 ,1,5538,65 ,1,5539,594810 ,1,5540,65 ,1,5541,563075 ,1,5542,65 ,1,5543,570465 ,1,5544,570460 ,1,5545,65 ,1,5546,65 ,1,5547,584745 ,1,5548,65 ,1,5549,65 ,1,5550,564435 ,1,5551,564440 ,1,5552,65 ,1,5553,576965 ,1,5554,588995 ,1,5555,595070 ,1,5556,576995 ,1,5557,65 ,1,5558,65 ,1,5559,65 ,1,5560,65 ,1,5561,65 ,1,5562,65 ,1,5563,65 ,1,5564,572715 ,1,5565,598085 ,1,5566,567255 ,1,5567,567265 ,1,5568,65 ,1,5569,567225 ,1,5570,573425 ,1,5571,65 ,1,5572,65 ,1,5573,65 ,1,5574,65 ,1,5575,65 ,1,5576,65 ,1,5577,65 ,1,5578,592905 ,1,5579,65 ,1,5580,559730 ,1,5581,559725 ,1,5582,598060 ,1,5583,569610 ,1,5584,65 ,1,5585,579715 ,1,5586,577635 ,1,5587,65 ,1,5588,65 ,1,5589,65 ,1,5590,65 ,1,5591,65 ,1,5592,65 ,1,5593,65 ,1,5594,593505 ,1,5595,65 ,1,5596,65 ,1,5597,579145 ,1,5598,579025 ,1,5599,589305 ,1,5600,65 ,1,5601,65 ,1,5602,65 ,1,5603,579075 ,1,5604,65 ,1,5605,65 ,1,5606,65 ,1,5607,65 ,1,5608,573255 ,1,5609,65 ,1,5610,65 ,1,5611,582570 ,1,5612,65 ,1,5613,65 ,1,5614,65 ,1,5615,65 ,1,5616,587735 ,1,5617,587440 ,1,5618,65 ,1,5619,65 ,1,5620,65 ,1,5621,65 ,1,5622,65 ,1,5623,65 ,1,5624,576485 ,1,5625,576335 ,1,5626,65 ,1,5627,65 ,1,5628,567070 ,1,5629,584940 ,1,5630,586870 ,1,5631,571325 ,1,5632,563015 ,1,5633,566815 ,1,5634,65 ,1,5635,580610 ,1,5636,595680 ,1,5637,65 ,1,5638,578850 ,1,5639,65 ,1,5640,593910 ,1,5641,65 ,1,5642,65 ,1,5643,65 ,1,5644,65 ,1,5645,65 ,1,5646,65 ,1,5647,65 ,1,5648,568015 ,1,5649,571065 ,1,5650,573275 ,1,5651,574320 ,1,5652,65 ,1,5653,65 ,1,5654,598055 ,1,5655,65 ,1,5656,65 ,1,5657,65 ,1,5658,591950 ,1,5659,568870 ,1,5660,65 ,1,5661,598050 ,1,5662,65 ,1,5663,571060 ,1,5664,568865 ,1,5665,65 ,1,5666,65 ,1,5667,562680 ,1,5668,573340 ,1,5669,574375 ,1,5670,596415 ,1,5671,65 ,1,5672,65 ,1,5673,65 ,1,5674,65 ,1,5675,65 ,1,5676,596760 ,1,5677,65 ,1,5678,564945 ,1,5679,65 ,1,5680,65 ,1,5681,65 ,1,5682,65 ,1,5683,583495 ,1,5684,565215 ,1,5685,560565 ,1,5686,583490 ,1,5687,590330 ,1,5688,65 ,1,5689,65 ,1,5690,595000 ,1,5691,65 ,1,5692,564175 ,1,5693,558045 ,1,5694,65 ,1,5695,572115 ,1,5696,572100 ,1,5697,65 ,1,5698,572460 ,1,5699,591815 ,1,5700,562125 ,1,5701,595995 ,1,5702,574760 ,1,5703,65 ,1,5704,579510 ,1,5705,565870 ,1,5706,65 ,1,5707,594725 ,1,5708,65 ,1,5709,578345 ,1,5710,578770 ,1,5711,595960 ,1,5712,563230 ,1,5713,584535 ,1,5714,568810 ,1,5715,559800 ,1,5716,65 ,1,5717,579030 ,1,5718,590025 ,1,5719,562855 ,1,5720,65 ,1,5721,590655 ,1,5722,65 ,1,5723,65 ,1,5724,576755 ,1,5725,579330 ,1,5726,570920 ,1,5727,566200 ,1,5728,566220 ,1,5729,65 ,1,5730,65 ,1,5731,65 ,1,5732,65 ,1,5733,65 ,1,5734,65 ,1,5735,582670 ,1,5736,593340 ,1,5737,563115 ,1,5738,65 ,1,5739,574425 ,1,5740,65 ,1,5741,65 ,1,5742,593985 ,1,5743,595565 ,1,5744,598045 ,1,5745,569065 ,1,5746,592590 ,1,5747,562325 ,1,5748,65 ,1,5749,580530 ,1,5750,580535 ,1,5751,570665 ,1,5752,558940 ,1,5753,565100 ,1,5754,570670 ,1,5755,596650 ,1,5756,65 ,1,5757,65 ,1,5758,563575 ,1,5759,588770 ,1,5760,578150 ,1,5761,581510 ,1,5762,572905 ,1,5763,574540 ,1,5764,593230 ,1,5765,586735 ,1,5766,583540 ,1,5767,583525 ,1,5768,598035 ,1,5769,581315 ,1,5770,578845 ,1,5771,577365 ,1,5772,581070 ,1,5773,561830 ,1,5774,585205 ,1,5775,583230 ,1,5776,586195 ,1,5777,583225 ,1,5778,567390 ,1,5779,562785 ,1,5780,590400 ,1,5781,567330 ,1,5782,598030 ,1,5783,65 ,1,5784,595420 ,1,5785,65 ,1,5786,587315 ,1,5787,65 ,1,5788,557965 ,1,5789,559920 ,1,5790,574190 ,1,5791,570865 ,1,5792,575460 ,1,5793,582320 ,1,5794,564665 ,1,5795,564690 ,1,5796,564710 ,1,5797,597120 ,1,5798,567015 ,1,5799,598025 ,1,5800,598020 ,1,5801,567020 ,1,5802,587125 ,1,5803,596075 ,1,5804,65 ,1,5805,588095 ,1,5806,588100 ,1,5807,593930 ,1,5808,589790 ,1,5809,577025 ,1,5810,579470 ,1,5811,580425 ,1,5812,576970 ,1,5813,591420 ,1,5814,563360 ,1,5815,65 ,1,5816,65 ,1,5817,65 ,1,5818,593255 ,1,5819,597985 ,1,5820,65 ,1,5821,65 ,1,5822,597090 ,1,5823,588215 ,1,5824,593265 ,1,5825,582810 ,1,5826,588230 ,1,5827,577415 ,1,5828,577420 ,1,5829,65 ,1,5830,573855 ,1,5831,585540 ,1,5832,583460 ,1,5833,65 ,1,5834,583455 ,1,5835,558555 ,1,5836,570790 ,1,5837,65 ,1,5838,591020 ,1,5839,578140 ,1,5840,597980 ,1,5841,568055 ,1,5842,65 ,1,5843,580400 ,1,5844,569885 ,1,5845,569890 ,1,5846,65 ,1,5847,65 ,1,5848,573035 ,1,5849,591225 ,1,5850,65 ,1,5851,65 ,1,5852,594645 ,1,5853,562030 ,1,5854,572455 ,1,5855,572450 ,1,5856,586510 ,1,5857,65 ,1,5858,65 ,1,5859,65 ,1,5860,573900 ,1,5861,574985 ,1,5862,575000 ,1,5863,588755 ,1,5864,592470 ,1,5865,65 ,1,5866,65 ,1,5867,560275 ,1,5868,575010 ,1,5869,559095 ,1,5870,597975 ,1,5871,577330 ,1,5872,577335 ,1,5873,65 ,1,5874,583050 ,1,5875,575195 ,1,5876,574340 ,1,5877,567655 ,1,5878,576530 ,1,5879,587275 ,1,5880,584395 ,1,5881,597970 ,1,5882,65 ,1,5883,65 ,1,5884,65 ,1,5885,65 ,1,5886,65 ,1,5887,65 ,1,5888,569520 ,1,5889,597960 ,1,5890,65 ,1,5891,65 ,1,5892,65 ,1,5893,65 ,1,5894,65 ,1,5895,595970 ,1,5896,65 ,1,5897,65 ,1,5898,65 ,1,5899,65 ,1,5900,65 ,1,5901,65 ,1,5902,65 ,1,5903,568320 ,1,5904,65 ,1,5905,65 ,1,5906,65 ,1,5907,65 ,1,5908,570365 ,1,5909,570355 ,1,5910,584695 ,1,5911,566920 ,1,5912,564375 ,1,5913,65 ,1,5914,568060 ,1,5915,568090 ,1,5916,568310 ,1,5917,567420 ,1,5918,580460 ,1,5919,568245 ,1,5920,594140 ,1,5921,583080 ,1,5922,565200 ,1,5923,587785 ,1,5924,583075 ,1,5925,571800 ,1,5926,581665 ,1,5927,581715 ,1,5928,572990 ,1,5929,585610 ,1,5930,582745 ,1,5931,65 ,1,5932,585665 ,1,5933,65 ,1,5934,557895 ,1,5935,65 ,1,5936,65 ,1,5937,65 ,1,5938,65 ,1,5939,571155 ,1,5940,65 ,1,5941,65 ,1,5942,65 ,1,5943,65 ,1,5944,65 ,1,5945,65 ,1,5946,65 ,1,5947,565885 ,1,5948,65 ,1,5949,590520 ,1,5950,574580 ,1,5951,565550 ,1,5952,589015 ,1,5953,561185 ,1,5954,596870 ,1,5955,574700 ,1,5956,65 ,1,5957,65 ,1,5958,65 ,1,5959,65 ,1,5960,65 ,1,5961,562040 ,1,5962,561710 ,1,5963,65 ,1,5964,576290 ,1,5965,593820 ,1,5966,65 ,1,5967,65 ,1,5968,65 ,1,5969,65 ,1,5970,65 ,1,5971,65 ,1,5972,587010 ,1,5973,587015 ,1,5974,65 ,1,5975,587590 ,1,5976,586860 ,1,5977,594215 ,1,5978,569280 ,1,5979,65 ,1,5980,578025 ,1,5981,65 ,1,5982,569070 ,1,5983,568480 ,1,5984,562995 ,1,5985,566125 ,1,5986,574590 ,1,5987,563840 ,1,5988,65 ,1,5989,597955 ,1,5990,65 ,1,5991,65 ,1,5992,578060 ,1,5993,65 ,1,5994,65 ,1,5995,65 ,1,5996,574695 ,1,5997,586855 ,1,5998,586845 ,1,5999,65 ,1,6000,65 ,1,6001,65 ,1,6002,65 ,1,6003,65 ,1,6004,561765 ,1,6005,569575 ,1,6006,65 ,1,6007,65 ,1,6008,566370 ,1,6009,566375 ,1,6010,65 ,1,6011,592215 ,1,6012,597950 ,1,6013,65 ,1,6014,592240 ,1,6015,65 ,1,6016,65 ,1,6017,592845 ,1,6018,560340 ,1,6019,65 ,1,6020,65 ,1,6021,65 ,1,6022,65 ,1,6023,559520 ,1,6024,559525 ,1,6025,579420 ,1,6026,580195 ,1,6027,65 ,1,6028,65 ,1,6029,587540 ,1,6030,65 ,1,6031,65 ,1,6032,578330 ,1,6033,578110 ,1,6034,65 ,1,6035,65 ,1,6036,593550 ,1,6037,588270 ,1,6038,593700 ,1,6039,65 ,1,6040,65 ,1,6041,65 ,1,6042,65 ,1,6043,65 ,1,6044,65 ,1,6045,65 ,1,6046,65 ,1,6047,594995 ,1,6048,65 ,1,6049,65 ,1,6050,65 ,1,6051,65 ,1,6052,65 ,1,6053,65 ,1,6054,65 ,1,6055,65 ,1,6056,65 ,1,6057,65 ,1,6058,65 ,1,6059,594275 ,1,6060,557995 ,1,6061,588760 ,1,6062,597945 ,1,6063,562240 ,1,6064,65 ,1,6065,597925 ,1,6066,597920 ,1,6067,65 ,1,6068,597915 ,1,6069,563195 ,1,6070,65 ,1,6071,579080 ,1,6072,565535 ,1,6073,65 ,1,6074,590250 ,1,6075,65 ,1,6076,597140 ,1,6077,65 ,1,6078,65 ,1,6079,563450 ,1,6080,591550 ,1,6081,587110 ,1,6082,65 ,1,6083,558040 ,1,6084,65 ,1,6085,565615 ,1,6086,594700 ,1,6087,594290 ,1,6088,65 ,1,6089,568560 ,1,6090,581010 ,1,6091,65 ,1,6092,593150 ,1,6093,568520 ,1,6094,567805 ,1,6095,567810 ,1,6096,587725 ,1,6097,595295 ,1,6098,65 ,1,6099,587685 ,1,6100,593670 ,1,6101,65 ,1,6102,575190 ,1,6103,581115 ,1,6104,590020 ,1,6105,581975 ,1,6106,595285 ,1,6107,65 ,1,6108,65 ,1,6109,564360 ,1,6110,65 ,1,6111,65 ,1,6112,569125 ,1,6113,569240 ,1,6114,65 ,1,6115,65 ,1,6116,65 ,1,6117,65 ,1,6118,573040 ,1,6119,574805 ,1,6120,594670 ,1,6121,65 ,1,6122,591465 ,1,6123,566610 ,1,6124,65 ,1,6125,566605 ,1,6126,585250 ,1,6127,585455 ,1,6128,568105 ,1,6129,561225 ,1,6130,595705 ,1,6131,563775 ,1,6132,65 ,1,6133,595715 ,1,6134,586850 ,1,6135,581695 ,1,6136,586320 ,1,6137,597910 ,1,6138,573590 ,1,6139,595300 ,1,6140,586400 ,1,6141,65 ,1,6142,565665 ,1,6143,594820 ,1,6144,564125 ,1,6145,557900 ,1,6146,576680 ,1,6147,586520 ,1,6148,585200 ,1,6149,563070 ,1,6150,586325 ,1,6151,597900 ,1,6152,575520 ,1,6153,586330 ,1,6154,558280 ,1,6155,586205 ,1,6156,597895 ,1,6157,589865 ,1,6158,575515 ,1,6159,557925 ,1,6160,566110 ,1,6161,65 ,1,6162,587450 ,1,6163,573510 ,1,6164,575485 ,1,6165,565340 ,1,6166,587790 ,1,6167,588530 ,1,6168,560200 ,1,6169,577960 ,1,6170,575480 ,1,6171,593715 ,1,6172,564130 ,1,6173,593620 ,1,6174,572160 ,1,6175,563510 ,1,6176,592700 ,1,6177,572165 ,1,6178,569690 ,1,6179,558775 ,1,6180,563170 ,1,6181,569685 ,1,6182,568115 ,1,6183,567650 ,1,6184,593710 ,1,6185,591745 ,1,6186,65 ,1,6187,580820 ,1,6188,65 ,1,6189,65 ,1,6190,65 ,1,6191,65 ,1,6192,65 ,1,6193,65 ,1,6194,581535 ,1,6195,582375 ,1,6196,572295 ,1,6197,587270 ,1,6198,558180 ,1,6199,572250 ,1,6200,593220 ,1,6201,582380 ,1,6202,65 ,1,6203,65 ,1,6204,563010 ,1,6205,595290 ,1,6206,572860 ,1,6207,572900 ,1,6208,65 ,1,6209,567290 ,1,6210,567410 ,1,6211,65 ,1,6212,574230 ,1,6213,65 ,1,6214,590955 ,1,6215,570030 ,1,6216,65 ,1,6217,577610 ,1,6218,65 ,1,6219,586790 ,1,6220,589555 ,1,6221,597890 ,1,6222,565285 ,1,6223,65 ,1,6224,65 ,1,6225,563675 ,1,6226,582310 ,1,6227,587415 ,1,6228,65 ,1,6229,572565 ,1,6230,574025 ,1,6231,597885 ,1,6232,582315 ,1,6233,597860 ,1,6234,583055 ,1,6235,559145 ,1,6236,585175 ,1,6237,593045 ,1,6238,560190 ,1,6239,586655 ,1,6240,563930 ,1,6241,581655 ,1,6242,585245 ,1,6243,570595 ,1,6244,582910 ,1,6245,593800 ,1,6246,65 ,1,6247,582905 ,1,6248,559790 ,1,6249,65 ,1,6250,581990 ,1,6251,579775 ,1,6252,591755 ,1,6253,576620 ,1,6254,595055 ,1,6255,595010 ,1,6256,591095 ,1,6257,591575 ,1,6258,65 ,1,6259,568420 ,1,6260,561170 ,1,6261,65 ,1,6262,564695 ,1,6263,565610 ,1,6264,575475 ,1,6265,568585 ,1,6266,585790 ,1,6267,585825 ,1,6268,566355 ,1,6269,577235 ,1,6270,586250 ,1,6271,574750 ,1,6272,564720 ,1,6273,65 ,1,6274,581985 ,1,6275,65 ,1,6276,65 ,1,6277,596470 ,1,6278,592975 ,1,6279,65 ,1,6280,65 ,1,6281,65 ,1,6282,583220 ,1,6283,584675 ,1,6284,562690 ,1,6285,583185 ,1,6286,580865 ,1,6287,65 ,1,6288,587205 ,1,6289,65 ,1,6290,591940 ,1,6291,580665 ,1,6292,65 ,1,6293,576825 ,1,6294,570995 ,1,6295,570960 ,1,6296,65 ,1,6297,575505 ,1,6298,65 ,1,6299,597855 ,1,6300,564120 ,1,6301,560925 ,1,6302,560820 ,1,6303,586665 ,1,6304,576875 ,1,6305,65 ,1,6306,586670 ,1,6307,65 ,1,6308,569725 ,1,6309,596745 ,1,6310,586740 ,1,6311,566780 ,1,6312,566775 ,1,6313,65 ,1,6314,574420 ,1,6315,592070 ,1,6316,592085 ,1,6317,65 ,1,6318,569730 ,1,6319,65 ,1,6320,65 ,1,6321,65 ,1,6322,583630 ,1,6323,583625 ,1,6324,65 ,1,6325,562540 ,1,6326,65 ,1,6327,65 ,1,6328,579960 ,1,6329,579970 ,1,6330,65 ,1,6331,558360 ,1,6332,65 ,1,6333,65 ,1,6334,583550 ,1,6335,583545 ,1,6336,597850 ,1,6337,576300 ,1,6338,576280 ,1,6339,599975 ,1,6340,599970 ,1,6341,65 ,1,6342,65 ,1,6343,578855 ,1,6344,597010 ,1,6345,566395 ,1,6346,566400 ,1,6347,65 ,1,6348,583085 ,1,6349,567235 ,1,6350,65 ,1,6351,584350 ,1,6352,574810 ,1,6353,572825 ,1,6354,65 ,1,6355,597845 ,1,6356,586455 ,1,6357,589875 ,1,6358,562335 ,1,6359,562045 ,1,6360,561960 ,1,6361,586395 ,1,6362,65 ,1,6363,589880 ,1,6364,65 ,1,6365,65 ,1,6366,65 ,1,6367,65 ,1,6368,589995 ,1,6369,589270 ,1,6370,589280 ,1,6371,578075 ,1,6372,577545 ,1,6373,589200 ,1,6374,571440 ,1,6375,571430 ,1,6376,562455 ,1,6377,589275 ,1,6378,597830 ,1,6379,65 ,1,6380,65 ,1,6381,65 ,1,6382,65 ,1,6383,578245 ,1,6384,588350 ,1,6385,588340 ,1,6386,567935 ,1,6387,568005 ,1,6388,65 ,1,6389,65 ,1,6390,65 ,1,6391,592445 ,1,6392,65 ,1,6393,591545 ,1,6394,65 ,1,6395,587120 ,1,6396,587130 ,1,6397,593610 ,1,6398,569825 ,1,6399,590650 ,1,6400,573910 ,1,6401,594205 ,1,6402,580255 ,1,6403,589355 ,1,6404,569830 ,1,6405,65 ,1,6406,65 ,1,6407,65 ,1,6408,65 ,1,6409,591985 ,1,6410,65 ,1,6411,65 ,1,6412,65 ,1,6413,591955 ,1,6414,575660 ,1,6415,597825 ,1,6416,580730 ,1,6417,580840 ,1,6418,65 ,1,6419,562915 ,1,6420,587670 ,1,6421,597820 ,1,6422,579335 ,1,6423,587675 ,1,6424,561565 ,1,6425,581190 ,1,6426,561525 ,1,6427,561560 ,1,6428,575285 ,1,6429,573570 ,1,6430,575385 ,1,6431,594075 ,1,6432,570035 ,1,6433,65 ,1,6434,571955 ,1,6435,586180 ,1,6436,593815 ,1,6437,563525 ,1,6438,65 ,1,6439,65 ,1,6440,575290 ,1,6441,590015 ,1,6442,597815 ,1,6443,65 ,1,6444,579895 ,1,6445,65 ,1,6446,65 ,1,6447,568720 ,1,6448,575390 ,1,6449,65 ,1,6450,65 ,1,6451,65 ,1,6452,65 ,1,6453,65 ,1,6454,588415 ,1,6455,590255 ,1,6456,65 ,1,6457,560465 ,1,6458,560860 ,1,6459,592310 ,1,6460,593790 ,1,6461,592340 ,1,6462,65 ,1,6463,65 ,1,6464,582405 ,1,6465,582410 ,1,6466,569540 ,1,6467,597775 ,1,6468,578065 ,1,6469,590065 ,1,6470,65 ,1,6471,65 ,1,6472,65 ,1,6473,65 ,1,6474,65 ,1,6475,566085 ,1,6476,567010 ,1,6477,567415 ,1,6478,577230 ,1,6479,593840 ,1,6480,590535 ,1,6481,65 ,1,6482,559245 ,1,6483,584200 ,1,6484,65 ,1,6485,582595 ,1,6486,587615 ,1,6487,572300 ,1,6488,65 ,1,6489,597770 ,1,6490,65 ,1,6491,65 ,1,6492,593680 ,1,6493,65 ,1,6494,65 ,1,6495,65 ,1,6496,563240 ,1,6497,65 ,1,6498,65 ,1,6499,594885 ,1,6500,65 ,1,6501,65 ,1,6502,65 ,1,6503,590055 ,1,6504,65 ,1,6505,563320 ,1,6506,575960 ,1,6507,575985 ,1,6508,65 ,1,6509,595505 ,1,6510,65 ,1,6511,597765 ,1,6512,592820 ,1,6513,65 ,1,6514,65 ,1,6515,65 ,1,6516,595310 ,1,6517,577940 ,1,6518,65 ,1,6519,65 ,1,6520,65 ,1,6521,65 ,1,6522,65 ,1,6523,65 ,1,6524,65 ,1,6525,65 ,1,6526,596600 ,1,6527,558550 ,1,6528,558225 ,1,6529,590285 ,1,6530,65 ,1,6531,572655 ,1,6532,573200 ,1,6533,596160 ,1,6534,65 ,1,6535,585420 ,1,6536,572245 ,1,6537,560385 ,1,6538,558705 ,1,6539,576550 ,1,6540,65 ,1,6541,563660 ,1,6542,566320 ,1,6543,590630 ,1,6544,65 ,1,6545,65 ,1,6546,65 ,1,6547,65 ,1,6548,65 ,1,6549,561640 ,1,6550,558300 ,1,6551,588495 ,1,6552,561635 ,1,6553,558815 ,1,6554,585510 ,1,6555,584135 ,1,6556,596755 ,1,6557,596535 ,1,6558,65 ,1,6559,592475 ,1,6560,65 ,1,6561,582190 ,1,6562,65 ,1,6563,568155 ,1,6564,561235 ,1,6565,592135 ,1,6566,568130 ,1,6567,65 ,1,6568,566845 ,1,6569,566825 ,1,6570,573955 ,1,6571,65 ,1,6572,594610 ,1,6573,594605 ,1,6574,591730 ,1,6575,573250 ,1,6576,573215 ,1,6577,566695 ,1,6578,566700 ,1,6579,567675 ,1,6580,570375 ,1,6581,597760 ,1,6582,594695 ,1,6583,65 ,1,6584,65 ,1,6585,580100 ,1,6586,65 ,1,6587,65 ,1,6588,569035 ,1,6589,595450 ,1,6590,595510 ,1,6591,65 ,1,6592,65 ,1,6593,65 ,1,6594,593040 ,1,6595,563865 ,1,6596,65 ,1,6597,563105 ,1,6598,591240 ,1,6599,588775 ,1,6600,582185 ,1,6601,560755 ,1,6602,560280 ,1,6603,591250 ,1,6604,597730 ,1,6605,65 ,1,6606,597725 ,1,6607,597720 ,1,6608,586380 ,1,6609,561590 ,1,6610,65 ,1,6611,572975 ,1,6612,574825 ,1,6613,578815 ,1,6614,574830 ,1,6615,579685 ,1,6616,578900 ,1,6617,569305 ,1,6618,558430 ,1,6619,65 ,1,6620,588005 ,1,6621,593945 ,1,6622,584045 ,1,6623,569310 ,1,6624,569115 ,1,6625,65 ,1,6626,588010 ,1,6627,591480 ,1,6628,65 ,1,6629,579135 ,1,6630,595950 ,1,6631,589900 ,1,6632,585400 ,1,6633,590085 ,1,6634,583765 ,1,6635,65 ,1,6636,583760 ,1,6637,65 ,1,6638,65 ,1,6639,65 ,1,6640,65 ,1,6641,577700 ,1,6642,573755 ,1,6643,589610 ,1,6644,589615 ,1,6645,65 ,1,6646,65 ,1,6647,577705 ,1,6648,590770 ,1,6649,65 ,1,6650,65 ,1,6651,585580 ,1,6652,595225 ,1,6653,579005 ,1,6654,65 ,1,6655,65 ,1,6656,583570 ,1,6657,595830 ,1,6658,590705 ,1,6659,583565 ,1,6660,65 ,1,6661,65 ,1,6662,560330 ,1,6663,585535 ,1,6664,586640 ,1,6665,578600 ,1,6666,563245 ,1,6667,586645 ,1,6668,587750 ,1,6669,65 ,1,6670,65 ,1,6671,65 ,1,6672,586275 ,1,6673,65 ,1,6674,65 ,1,6675,65 ,1,6676,65 ,1,6677,65 ,1,6678,582585 ,1,6679,570025 ,1,6680,594675 ,1,6681,566955 ,1,6682,65 ,1,6683,65 ,1,6684,65 ,1,6685,566540 ,1,6686,566545 ,1,6687,593845 ,1,6688,65 ,1,6689,65 ,1,6690,574710 ,1,6691,572525 ,1,6692,65 ,1,6693,65 ,1,6694,65 ,1,6695,65 ,1,6696,65 ,1,6697,65 ,1,6698,560350 ,1,6699,557915 ,1,6700,65 ,1,6701,65 ,1,6702,573070 ,1,6703,589425 ,1,6704,65 ,1,6705,65 ,1,6706,65 ,1,6707,65 ,1,6708,574690 ,1,6709,559140 ,1,6710,65 ,1,6711,559645 ,1,6712,558805 ,1,6713,65 ,1,6714,65 ,1,6715,65 ,1,6716,65 ,1,6717,576260 ,1,6718,576090 ,1,6719,575045 ,1,6720,565595 ,1,6721,583905 ,1,6722,571625 ,1,6723,561490 ,1,6724,561495 ,1,6725,568360 ,1,6726,564525 ,1,6727,65 ,1,6728,591610 ,1,6729,574890 ,1,6730,583900 ,1,6731,65 ,1,6732,591190 ,1,6733,579890 ,1,6734,592080 ,1,6735,589125 ,1,6736,65 ,1,6737,65 ,1,6738,65 ,1,6739,65 ,1,6740,65 ,1,6741,589090 ,1,6742,65 ,1,6743,65 ,1,6744,65 ,1,6745,581380 ,1,6746,65 ,1,6747,65 ,1,6748,65 ,1,6749,563265 ,1,6750,573375 ,1,6751,558445 ,1,6752,584610 ,1,6753,65 ,1,6754,597715 ,1,6755,577195 ,1,6756,564575 ,1,6757,597690 ,1,6758,564560 ,1,6759,65 ,1,6760,566915 ,1,6761,65 ,1,6762,65 ,1,6763,587200 ,1,6764,573780 ,1,6765,65 ,1,6766,597685 ,1,6767,65 ,1,6768,65 ,1,6769,65 ,1,6770,559330 ,1,6771,578710 ,1,6772,578560 ,1,6773,563620 ,1,6774,569745 ,1,6775,559190 ,1,6776,579110 ,1,6777,576535 ,1,6778,566265 ,1,6779,566270 ,1,6780,597680 ,1,6781,564350 ,1,6782,564365 ,1,6783,65 ,1,6784,569750 ,1,6785,597675 ,1,6786,578115 ,1,6787,65 ,1,6788,65 ,1,6789,572170 ,1,6790,65 ,1,6791,559665 ,1,6792,565480 ,1,6793,576115 ,1,6794,559970 ,1,6795,597670 ,1,6796,65 ,1,6797,558490 ,1,6798,65 ,1,6799,573695 ,1,6800,65 ,1,6801,574355 ,1,6802,576205 ,1,6803,65 ,1,6804,583560 ,1,6805,563500 ,1,6806,65 ,1,6807,583555 ,1,6808,588295 ,1,6809,566660 ,1,6810,566665 ,1,6811,576225 ,1,6812,573975 ,1,6813,591675 ,1,6814,65 ,1,6815,65 ,1,6816,574295 ,1,6817,563235 ,1,6818,65 ,1,6819,65 ,1,6820,65 ,1,6821,561250 ,1,6822,572745 ,1,6823,565485 ,1,6824,572740 ,1,6825,569655 ,1,6826,65 ,1,6827,565210 ,1,6828,597665 ,1,6829,65 ,1,6830,65 ,1,6831,592950 ,1,6832,65 ,1,6833,65 ,1,6834,558355 ,1,6835,595720 ,1,6836,594600 ,1,6837,596620 ,1,6838,585000 ,1,6839,65 ,1,6840,587040 ,1,6841,65 ,1,6842,65 ,1,6843,65 ,1,6844,65 ,1,6845,65 ,1,6846,65 ,1,6847,581690 ,1,6848,570380 ,1,6849,576850 ,1,6850,559610 ,1,6851,595430 ,1,6852,576810 ,1,6853,559075 ,1,6854,559460 ,1,6855,574225 ,1,6856,65 ,1,6857,597660 ,1,6858,597655 ,1,6859,561670 ,1,6860,65 ,1,6861,561660 ,1,6862,574300 ,1,6863,65 ,1,6864,65 ,1,6865,582575 ,1,6866,572985 ,1,6867,593980 ,1,6868,561930 ,1,6869,561990 ,1,6870,65 ,1,6871,65 ,1,6872,569270 ,1,6873,65 ,1,6874,562060 ,1,6875,562145 ,1,6876,65 ,1,6877,65 ,1,6878,65 ,1,6879,65 ,1,6880,597615 ,1,6881,563520 ,1,6882,65 ,1,6883,591350 ,1,6884,65 ,1,6885,568100 ,1,6886,575320 ,1,6887,591085 ,1,6888,568230 ,1,6889,65 ,1,6890,65 ,1,6891,588085 ,1,6892,597610 ,1,6893,567645 ,1,6894,589780 ,1,6895,566350 ,1,6896,566260 ,1,6897,65 ,1,6898,65 ,1,6899,561985 ,1,6900,596525 ,1,6901,65 ,1,6902,572710 ,1,6903,65 ,1,6904,65 ,1,6905,567285 ,1,6906,584260 ,1,6907,65 ,1,6908,567025 ,1,6909,571660 ,1,6910,585645 ,1,6911,585675 ,1,6912,597605 ,1,6913,65 ,1,6914,65 ,1,6915,592150 ,1,6916,585325 ,1,6917,65 ,1,6918,581415 ,1,6919,65 ,1,6920,65 ,1,6921,65 ,1,6922,65 ,1,6923,65 ,1,6924,567220 ,1,6925,559185 ,1,6926,594050 ,1,6927,65 ,1,6928,65 ,1,6929,561245 ,1,6930,65 ,1,6931,65 ,1,6932,65 ,1,6933,65 ,1,6934,571770 ,1,6935,577110 ,1,6936,65 ,1,6937,595710 ,1,6938,592770 ,1,6939,65 ,1,6940,571765 ,1,6941,65 ,1,6942,586805 ,1,6943,595695 ,1,6944,65 ,1,6945,589640 ,1,6946,65 ,1,6947,65 ,1,6948,65 ,1,6949,65 ,1,6950,65 ,1,6951,590210 ,1,6952,65 ,1,6953,597600 ,1,6954,570515 ,1,6955,65 ,1,6956,596100 ,1,6957,585995 ,1,6958,586000 ,1,6959,584565 ,1,6960,65 ,1,6961,583360 ,1,6962,583330 ,1,6963,65 ,1,6964,573335 ,1,6965,560835 ,1,6966,597590 ,1,6967,574415 ,1,6968,561035 ,1,6969,569470 ,1,6970,561150 ,1,6971,576905 ,1,6972,591885 ,1,6973,580585 ,1,6974,577455 ,1,6975,566095 ,1,6976,577445 ,1,6977,65 ,1,6978,65 ,1,6979,587340 ,1,6980,596950 ,1,6981,65 ,1,6982,65 ,1,6983,65 ,1,6984,585600 ,1,6985,65 ,1,6986,65 ,1,6987,65 ,1,6988,65 ,1,6989,65 ,1,6990,559575 ,1,6991,558345 ,1,6992,65 ,1,6993,65 ,1,6994,573460 ,1,6995,65 ,1,6996,65 ,1,6997,569475 ,1,6998,65 ,1,6999,590635 ,1,7000,590645 ,1,7001,570985 ,1,7002,574435 ,1,7003,65 ,1,7004,565390 ,1,7005,573555 ,1,7006,585715 ,1,7007,570775 ,1,7008,65 ,1,7009,65 ,1,7010,65 ,1,7011,597585 ,1,7012,65 ,1,7013,65 ,1,7014,596655 ,1,7015,597580 ,1,7016,65 ,1,7017,585845 ,1,7018,582180 ,1,7019,65 ,1,7020,567035 ,1,7021,65 ,1,7022,65 ,1,7023,572750 ,1,7024,582395 ,1,7025,583245 ,1,7026,562120 ,1,7027,582345 ,1,7028,65 ,1,7029,569585 ,1,7030,575995 ,1,7031,585190 ,1,7032,588500 ,1,7033,575990 ,1,7034,579500 ,1,7035,577425 ,1,7036,597575 ,1,7037,570400 ,1,7038,570405 ,1,7039,589360 ,1,7040,65 ,1,7041,584855 ,1,7042,597550 ,1,7043,589910 ,1,7044,572755 ,1,7045,577430 ,1,7046,592205 ,1,7047,65 ,1,7048,577840 ,1,7049,565110 ,1,7050,589985 ,1,7051,579880 ,1,7052,582895 ,1,7053,584325 ,1,7054,583325 ,1,7055,583100 ,1,7056,589990 ,1,7057,588205 ,1,7058,65 ,1,7059,65 ,1,7060,65 ,1,7061,597545 ,1,7062,597540 ,1,7063,65 ,1,7064,570765 ,1,7065,65 ,1,7066,65 ,1,7067,586260 ,1,7068,597535 ,1,7069,65 ,1,7070,65 ,1,7071,65 ,1,7072,65 ,1,7073,65 ,1,7074,65 ,1,7075,65 ,1,7076,65 ,1,7077,584475 ,1,7078,65 ,1,7079,589620 ,1,7080,564085 ,1,7081,585785 ,1,7082,65 ,1,7083,593995 ,1,7084,575430 ,1,7085,65 ,1,7086,558645 ,1,7087,562650 ,1,7088,65 ,1,7089,65 ,1,7090,575060 ,1,7091,65 ,1,7092,65 ,1,7093,65 ,1,7094,65 ,1,7095,565395 ,1,7096,65 ,1,7097,65 ,1,7098,581345 ,1,7099,65 ,1,7100,568590 ,1,7101,568555 ,1,7102,65 ,1,7103,65 ,1,7104,65 ,1,7105,65 ,1,7106,65 ,1,7107,65 ,1,7108,562225 ,1,7109,571775 ,1,7110,576980 ,1,7111,589950 ,1,7112,558150 ,1,7113,65 ,1,7114,590970 ,1,7115,65 ,1,7116,65 ,1,7117,596200 ,1,7118,65 ,1,7119,65 ,1,7120,65 ,1,7121,65 ,1,7122,65 ,1,7123,65 ,1,7124,65 ,1,7125,65 ,1,7126,65 ,1,7127,65 ,1,7128,570235 ,1,7129,65 ,1,7130,65 ,1,7131,65 ,1,7132,65 ,1,7133,65 ,1,7134,65 ,1,7135,65 ,1,7136,597530 ,1,7137,591285 ,1,7138,591245 ,1,7139,593650 ,1,7140,65 ,1,7141,65 ,1,7142,579765 ,1,7143,588210 ,1,7144,597525 ,1,7145,586745 ,1,7146,586775 ,1,7147,65 ,1,7148,580160 ,1,7149,65 ,1,7150,565275 ,1,7151,65 ,1,7152,65 ,1,7153,572210 ,1,7154,590140 ,1,7155,65 ,1,7156,576525 ,1,7157,65 ,1,7158,558510 ,1,7159,566785 ,1,7160,560930 ,1,7161,572630 ,1,7162,592685 ,1,7163,560825 ,1,7164,573240 ,1,7165,577340 ,1,7166,597520 ,1,7167,562500 ,1,7168,596230 ,1,7169,65 ,1,7170,573245 ,1,7171,65 ,1,7172,560775 ,1,7173,586600 ,1,7174,571170 ,1,7175,581135 ,1,7176,65 ,1,7177,571175 ,1,7178,558240 ,1,7179,65 ,1,7180,583895 ,1,7181,583890 ,1,7182,560425 ,1,7183,562410 ,1,7184,560975 ,1,7185,561335 ,1,7186,565620 ,1,7187,594930 ,1,7188,595945 ,1,7189,65 ,1,7190,564585 ,1,7191,575350 ,1,7192,566470 ,1,7193,596910 ,1,7194,566090 ,1,7195,65 ,1,7196,594340 ,1,7197,566475 ,1,7198,578270 ,1,7199,578840 ,1,7200,65 ,1,7201,65 ,1,7202,590445 ,1,7203,590410 ,1,7204,568580 ,1,7205,568650 ,1,7206,65 ,1,7207,583035 ,1,7208,558055 ,1,7209,571235 ,1,7210,65 ,1,7211,585280 ,1,7212,597515 ,1,7213,65 ,1,7214,571240 ,1,7215,596405 ,1,7216,569570 ,1,7217,586045 ,1,7218,589095 ,1,7219,562820 ,1,7220,595260 ,1,7221,569260 ,1,7222,577300 ,1,7223,572940 ,1,7224,581120 ,1,7225,65 ,1,7226,576785 ,1,7227,597115 ,1,7228,588905 ,1,7229,594025 ,1,7230,65 ,1,7231,592455 ,1,7232,562890 ,1,7233,570510 ,1,7234,65 ,1,7235,586535 ,1,7236,561100 ,1,7237,595245 ,1,7238,586515 ,1,7239,569265 ,1,7240,65 ,1,7241,65 ,1,7242,594805 ,1,7243,587095 ,1,7244,578680 ,1,7245,65 ,1,7246,587100 ,1,7247,65 ,1,7248,575085 ,1,7249,65 ,1,7250,65 ,1,7251,65 ,1,7252,560150 ,1,7253,595955 ,1,7254,593940 ,1,7255,65 ,1,7256,65 ,1,7257,570945 ,1,7258,65 ,1,7259,591130 ,1,7260,65 ,1,7261,576790 ,1,7262,65 ,1,7263,573185 ,1,7264,65 ,1,7265,65 ,1,7266,65 ,1,7267,65 ,1,7268,584070 ,1,7269,592595 ,1,7270,565965 ,1,7271,581700 ,1,7272,65 ,1,7273,571045 ,1,7274,571035 ,1,7275,576665 ,1,7276,567280 ,1,7277,588615 ,1,7278,65 ,1,7279,574880 ,1,7280,574870 ,1,7281,576345 ,1,7282,576470 ,1,7283,65 ,1,7284,597035 ,1,7285,65 ,1,7286,583250 ,1,7287,594495 ,1,7288,562075 ,1,7289,597195 ,1,7290,566990 ,1,7291,65 ,1,7292,567590 ,1,7293,65 ,1,7294,65 ,1,7295,65 ,1,7296,571140 ,1,7297,571920 ,1,7298,65 ,1,7299,65 ,1,7300,569275 ,1,7301,592980 ,1,7302,583520 ,1,7303,576715 ,1,7304,65 ,1,7305,583515 ,1,7306,65 ,1,7307,65 ,1,7308,65 ,1,7309,567335 ,1,7310,578530 ,1,7311,587820 ,1,7312,587890 ,1,7313,578520 ,1,7314,572930 ,1,7315,572935 ,1,7316,565990 ,1,7317,592910 ,1,7318,65 ,1,7319,567395 ,1,7320,565960 ,1,7321,561160 ,1,7322,582505 ,1,7323,573640 ,1,7324,594210 ,1,7325,597485 ,1,7326,593925 ,1,7327,575615 ,1,7328,558800 ,1,7329,573565 ,1,7330,575525 ,1,7331,581400 ,1,7332,65 ,1,7333,592275 ,1,7334,568700 ,1,7335,558085 ,1,7336,65 ,1,7337,568660 ,1,7338,573980 ,1,7339,571860 ,1,7340,590900 ,1,7341,584240 ,1,7342,592200 ,1,7343,65 ,1,7344,65 ,1,7345,568285 ,1,7346,582120 ,1,7347,65 ,1,7348,600005 ,1,7349,599980 ,1,7350,65 ,1,7351,568290 ,1,7352,563655 ,1,7353,597480 ,1,7354,586165 ,1,7355,591735 ,1,7356,593655 ,1,7357,65 ,1,7358,65 ,1,7359,65 ,1,7360,576120 ,1,7361,595840 ,1,7362,562590 ,1,7363,65 ,1,7364,597475 ,1,7365,595905 ,1,7366,590430 ,1,7367,597470 ,1,7368,583685 ,1,7369,583680 ,1,7370,597465 ,1,7371,571950 ,1,7372,569315 ,1,7373,569320 ,1,7374,565935 ,1,7375,579600 ,1,7376,582070 ,1,7377,571540 ,1,7378,576920 ,1,7379,576930 ,1,7380,571865 ,1,7381,560455 ,1,7382,584235 ,1,7383,592220 ,1,7384,572095 ,1,7385,572090 ,1,7386,560210 ,1,7387,582065 ,1,7388,589885 ,1,7389,575395 ,1,7390,591230 ,1,7391,591490 ,1,7392,571145 ,1,7393,65 ,1,7394,65 ,1,7395,565145 ,1,7396,591440 ,1,7397,583390 ,1,7398,583385 ,1,7399,563125 ,1,7400,566215 ,1,7401,581310 ,1,7402,594155 ,1,7403,562755 ,1,7404,65 ,1,7405,586530 ,1,7406,586445 ,1,7407,566140 ,1,7408,591945 ,1,7409,589505 ,1,7410,65 ,1,7411,65 ,1,7412,591025 ,1,7413,65 ,1,7414,65 ,1,7415,65 ,1,7416,582260 ,1,7417,557860 ,1,7418,570255 ,1,7419,570045 ,1,7420,589785 ,1,7421,65 ,1,7422,65 ,1,7423,580785 ,1,7424,580850 ,1,7425,575585 ,1,7426,65 ,1,7427,597460 ,1,7428,591155 ,1,7429,65 ,1,7430,65 ,1,7431,577185 ,1,7432,594580 ,1,7433,570240 ,1,7434,594555 ,1,7435,574090 ,1,7436,582035 ,1,7437,579620 ,1,7438,65 ,1,7439,65 ,1,7440,592255 ,1,7441,579820 ,1,7442,597455 ,1,7443,597450 ,1,7444,65 ,1,7445,559180 ,1,7446,65 ,1,7447,65 ,1,7448,596900 ,1,7449,65 ,1,7450,65 ,1,7451,589100 ,1,7452,65 ,1,7453,65 ,1,7454,583510 ,1,7455,583500 ,1,7456,65 ,1,7457,65 ,1,7458,65 ,1,7459,583440 ,1,7460,583435 ,1,7461,597425 ,1,7462,591355 ,1,7463,65 ,1,7464,65 ,1,7465,587525 ,1,7466,563855 ,1,7467,591670 ,1,7468,589430 ,1,7469,572855 ,1,7470,563185 ,1,7471,564000 ,1,7472,582515 ,1,7473,65 ,1,7474,65 ,1,7475,587530 ,1,7476,65 ,1,7477,65 ,1,7478,65 ,1,7479,572850 ,1,7480,65 ,1,7481,575165 ,1,7482,573280 ,1,7483,573305 ,1,7484,581775 ,1,7485,568450 ,1,7486,581175 ,1,7487,65 ,1,7488,580075 ,1,7489,559770 ,1,7490,597420 ,1,7491,572380 ,1,7492,572375 ,1,7493,65 ,1,7494,573580 ,1,7495,593735 ,1,7496,578870 ,1,7497,65 ,1,7498,65 ,1,7499,65 ,1,7500,582055 ,1,7501,582250 ,1,7502,65 ,1,7503,65 ,1,7504,65 ,1,7505,570770 ,1,7506,570900 ,1,7507,568630 ,1,7508,581030 ,1,7509,65 ,1,7510,594615 ,1,7511,65 ,1,7512,65 ,1,7513,594630 ,1,7514,65 ,1,7515,563000 ,1,7516,65 ,1,7517,65 ,1,7518,65 ,1,7519,594500 ,1,7520,65 ,1,7521,65 ,1,7522,65 ,1,7523,65 ,1,7524,562370 ,1,7525,562375 ,1,7526,557985 ,1,7527,559485 ,1,7528,65 ,1,7529,563020 ,1,7530,590010 ,1,7531,597205 ,1,7532,594730 ,1,7533,597415 ,1,7534,564660 ,1,7535,586990 ,1,7536,587045 ,1,7537,599950 ,1,7538,574440 ,1,7539,577285 ,1,7540,577290 ,1,7541,573140 ,1,7542,560890 ,1,7543,65 ,1,7544,564775 ,1,7545,592090 ,1,7546,65 ,1,7547,65 ,1,7548,65 ,1,7549,65 ,1,7550,65 ,1,7551,590850 ,1,7552,575210 ,1,7553,65 ,1,7554,559360 ,1,7555,586300 ,1,7556,559535 ,1,7557,559595 ,1,7558,563580 ,1,7559,560725 ,1,7560,571560 ,1,7561,571565 ,1,7562,559400 ,1,7563,577250 ,1,7564,597410 ,1,7565,65 ,1,7566,577245 ,1,7567,572060 ,1,7568,589440 ,1,7569,559365 ,1,7570,65 ,1,7571,591625 ,1,7572,588800 ,1,7573,569200 ,1,7574,65 ,1,7575,65 ,1,7576,584630 ,1,7577,65 ,1,7578,570745 ,1,7579,575980 ,1,7580,584800 ,1,7581,560195 ,1,7582,562580 ,1,7583,586940 ,1,7584,65 ,1,7585,586795 ,1,7586,569235 ,1,7587,65 ,1,7588,565155 ,1,7589,594150 ,1,7590,597405 ,1,7591,597400 ,1,7592,65 ,1,7593,572070 ,1,7594,65 ,1,7595,596265 ,1,7596,65 ,1,7597,65 ,1,7598,65 ,1,7599,567870 ,1,7600,567865 ,1,7601,65 ,1,7602,65 ,1,7603,65 ,1,7604,65 ,1,7605,65 ,1,7606,65 ,1,7607,65 ,1,7608,65 ,1,7609,563085 ,1,7610,65 ,1,7611,65 ,1,7612,65 ,1,7613,594065 ,1,7614,570685 ,1,7615,573615 ,1,7616,579865 ,1,7617,594300 ,1,7618,65 ,1,7619,65 ,1,7620,570690 ,1,7621,65 ,1,7622,65 ,1,7623,65 ,1,7624,65 ,1,7625,591930 ,1,7626,582400 ,1,7627,587730 ,1,7628,587680 ,1,7629,568000 ,1,7630,575605 ,1,7631,590895 ,1,7632,597095 ,1,7633,595685 ,1,7634,596130 ,1,7635,597395 ,1,7636,591890 ,1,7637,65 ,1,7638,593865 ,1,7639,570140 ,1,7640,65 ,1,7641,568815 ,1,7642,572435 ,1,7643,591875 ,1,7644,568805 ,1,7645,561705 ,1,7646,573635 ,1,7647,573645 ,1,7648,577965 ,1,7649,589290 ,1,7650,597390 ,1,7651,589735 ,1,7652,572440 ,1,7653,65 ,1,7654,577990 ,1,7655,65 ,1,7656,567785 ,1,7657,65 ,1,7658,65 ,1,7659,578000 ,1,7660,588555 ,1,7661,597355 ,1,7662,579195 ,1,7663,579100 ,1,7664,562880 ,1,7665,65 ,1,7666,65 ,1,7667,567780 ,1,7668,65 ,1,7669,65 ,1,7670,573790 ,1,7671,574370 ,1,7672,65 ,1,7673,65 ,1,7674,65 ,1,7675,65 ,1,7676,581390 ,1,7677,575670 ,1,7678,596605 ,1,7679,568030 ,1,7680,575690 ,1,7681,571095 ,1,7682,597350 ,1,7683,597345 ,1,7684,65 ,1,7685,579485 ,1,7686,571090 ,1,7687,582060 ,1,7688,65 ,1,7689,65 ,1,7690,65 ,1,7691,65 ,1,7692,565295 ,1,7693,588805 ,1,7694,65 ,1,7695,65 ,1,7696,567855 ,1,7697,586100 ,1,7698,574770 ,1,7699,567860 ,1,7700,591900 ,1,7701,565850 ,1,7702,65 ,1,7703,559385 ,1,7704,565995 ,1,7705,65 ,1,7706,573520 ,1,7707,65 ,1,7708,65 ,1,7709,574310 ,1,7710,588565 ,1,7711,65 ,1,7712,573575 ,1,7713,562760 ,1,7714,65 ,1,7715,596295 ,1,7716,65 ,1,7717,65 ,1,7718,65 ,1,7719,65 ,1,7720,599855 ,1,7721,587760 ,1,7722,587745 ,1,7723,591475 ,1,7724,65 ,1,7725,65 ,1,7726,595570 ,1,7727,597340 ,1,7728,566725 ,1,7729,566750 ,1,7730,572540 ,1,7731,572545 ,1,7732,592480 ,1,7733,560205 ,1,7734,592830 ,1,7735,65 ,1,7736,593545 ,1,7737,594565 ,1,7738,597330 ,1,7739,560260 ,1,7740,595190 ,1,7741,593235 ,1,7742,582865 ,1,7743,597325 ,1,7744,596395 ,1,7745,589705 ,1,7746,65 ,1,7747,569215 ,1,7748,571875 ,1,7749,65 ,1,7750,569230 ,1,7751,570290 ,1,7752,570335 ,1,7753,580735 ,1,7754,559105 ,1,7755,584770 ,1,7756,560830 ,1,7757,65 ,1,7758,591605 ,1,7759,572240 ,1,7760,65 ,1,7761,65 ,1,7762,585905 ,1,7763,558120 ,1,7764,594750 ,1,7765,596615 ,1,7766,65 ,1,7767,65 ,1,7768,597320 ,1,7769,65 ,1,7770,568835 ,1,7771,65 ,1,7772,65 ,1,7773,65 ,1,7774,571795 ,1,7775,575855 ,1,7776,575860 ,1,7777,65 ,1,7778,564355 ,1,7779,595355 ,1,7780,597315 ,1,7781,586270 ,1,7782,569805 ,1,7783,560365 ,1,7784,563305 ,1,7785,591620 ,1,7786,581260 ,1,7787,570675 ,1,7788,593685 ,1,7789,581265 ,1,7790,567445 ,1,7791,586450 ,1,7792,588290 ,1,7793,567435 ,1,7794,586440 ,1,7795,559000 ,1,7796,579570 ,1,7797,65 ,1,7798,592005 ,1,7799,597300 ,1,7800,597295 ,1,7801,582385 ,1,7802,65 ,1,7803,65 ,1,7804,573440 ,1,7805,579605 ,1,7806,65 ,1,7807,578490 ,1,7808,578495 ,1,7809,592120 ,1,7810,582870 ,1,7811,65 ,1,7812,65 ,1,7813,65 ,1,7814,589715 ,1,7815,593725 ,1,7816,560915 ,1,7817,560780 ,1,7818,65 ,1,7819,574430 ,1,7820,579545 ,1,7821,65 ,1,7822,572980 ,1,7823,593320 ,1,7824,558425 ,1,7825,590150 ,1,7826,586840 ,1,7827,65 ,1,7828,65 ,1,7829,570825 ,1,7830,65 ,1,7831,580020 ,1,7832,65 ,1,7833,65 ,1,7834,569385 ,1,7835,591570 ,1,7836,65 ,1,7837,65 ,1,7838,65 ,1,7839,65 ,1,7840,65 ,1,7841,65 ,1,7842,574065 ,1,7843,65 ,1,7844,582880 ,1,7845,582875 ,1,7846,596430 ,1,7847,65 ,1,7848,65 ,1,7849,595185 ,1,7850,580225 ,1,7851,65 ,1,7852,65 ,1,7853,592645 ,1,7854,566930 ,1,7855,567595 ,1,7856,595625 ,1,7857,594870 ,1,7858,65 ,1,7859,65 ,1,7860,560225 ,1,7861,65 ,1,7862,65 ,1,7863,65 ,1,7864,65 ,1,7865,597290 ,1,7866,597285 ,1,7867,65 ,1,7868,65 ,1,7869,65 ,1,7870,65 ,1,7871,65 ,1,7872,589410 ,1,7873,65 ,1,7874,65 ,1,7875,566205 ,1,7876,65 ,1,7877,65 ,1,7878,571635 ,1,7879,564465 ,1,7880,585485 ,1,7881,589565 ,1,7882,564015 ,1,7883,564025 ,1,7884,585345 ,1,7885,565075 ,1,7886,558700 ,1,7887,595175 ,1,7888,589435 ,1,7889,588990 ,1,7890,65 ,1,7891,558780 ,1,7892,65 ,1,7893,65 ,1,7894,582340 ,1,7895,567095 ,1,7896,572620 ,1,7897,564630 ,1,7898,584430 ,1,7899,65 ,1,7900,573005 ,1,7901,577480 ,1,7902,584280 ,1,7903,587320 ,1,7904,589915 ,1,7905,577040 ,1,7906,558025 ,1,7907,574350 ,1,7908,588960 ,1,7909,586080 ,1,7910,573125 ,1,7911,597280 ,1,7912,591865 ,1,7913,582110 ,1,7914,65 ,1,7915,596625 ,1,7916,572695 ,1,7917,592075 ,1,7918,65 ,1,7919,65 ,1,7920,65 ,1,7921,572705 ,1,7922,589920 ,1,7923,572580 ,1,7924,65 ,1,7925,65 ,1,7926,65 ,1,7927,65 ,1,7928,581020 ,1,7929,65 ,1,7930,565080 ,1,7931,590565 ,1,7932,587930 ,1,7933,65 ,1,7934,65 ,1,7935,597275 ,1,7936,597270 ,1,7937,579355 ,1,7938,65 ,1,7939,580070 ,1,7940,588880 ,1,7941,590905 ,1,7942,596540 ,1,7943,595140 ,1,7944,65 ,1,7945,65 ,1,7946,558080 ,1,7947,559515 ,1,7948,597265 ,1,7949,562660 ,1,7950,559085 ,1,7951,65 ,1,7952,65 ,1,7953,577765 ,1,7954,578690 ,1,7955,65 ,1,7956,577770 ,1,7957,583315 ,1,7958,583255 ,1,7959,595520 ,1,7960,588560 ,1,7961,559340 ,1,7962,65 ,1,7963,65 ,1,7964,581820 ,1,7965,65 ,1,7966,590340 ,1,7967,588400 ,1,7968,591560 ,1,7969,597235 ,1,7970,65 ,1,7971,582565 ,1,7972,65 ,1,7973,65 ,1,7974,65 ,1,7975,65 ,1,7976,589165 ,1,7977,589160 ,1,7978,569665 ,1,7979,562780 ,1,7980,65 ,1,7981,560155 ,1,7982,589810 ,1,7983,597145 ,1,7984,582675 ,1,7985,577805 ,1,7986,589870 ,1,7987,578285 ,1,7988,65 ,1,7989,65 ,1,7990,583655 ,1,7991,583635 ,1,7992,581375 ,1,7993,587515 ,1,7994,559990 ,1,7995,565725 ,1,7996,578300 ,1,7997,65 ,1,7998,591435 ,1,7999,590775 ,1,8000,590785 ,1,8001,65 ,1,8002,65 ,1,8003,65 ,1,8004,597230 ,1,8005,595660 ,1,8006,65 ,1,8007,586915 ,1,8008,65 ,1,8009,65 ,1,8010,575015 ,1,8011,574875 ,1,8012,577550 ,1,8013,65 ,1,8014,65 ,1,8015,572500 ,1,8016,572490 ,1,8017,65 ,1,8018,571915 ,1,8019,576100 ,1,8020,591330 ,1,8021,594225 ,1,8022,579745 ,1,8023,594765 ,1,8024,590765 ,1,8025,65 ,1,8026,578885 ,1,8027,568235 ,1,8028,581335 ,1,8029,596095 ,1,8030,65 ,1,8031,596010 ,1,8032,65 ,1,8033,569005 ,1,8034,569010 ,1,8035,558650 ,1,8036,594220 ,1,8037,575205 ,1,8038,569000 ,1,8039,597225 ,1,8040,65 ,1,8041,569145 ,1,8042,65 ,1,8043,65 ,1,8044,65 ,1,8045,65 ,1,8046,65 ,1,8047,581410 ,1,8048,65 ,1,8049,65 ,1,8050,584335 ,1,8051,65 ,1,8052,65 ,1,8053,65 ,1,8054,593935 ,1,8055,65 ,1,8056,65 ,1,8057,65 ,1,8058,65 ,1,8059,557970 ,1,8060,591800 ,1,8061,65 ,1,8062,65 ,1,8063,65 ,1,8064,65 ,1,8065,568355 ,1,8066,595645 ,1,8067,559900 ,1,8068,589325 ,1,8069,65 ,1,8070,65 ,1,8071,65 ,1,8072,65 ,1,8073,565490 ,1,8074,577810 ,1,8075,565745 ,1,8076,597220 ,1,8077,65 ,1,8078,565750 ,1,8079,590060 ,1,8080,568565 ,1,8081,585910 ,1,8082,65 ,1,8083,559465 ,1,8084,570230 ,1,8085,65 ,1,8086,568840 ,1,8087,65 ,1,8088,573620 ,1,8089,583610 ,1,8090,596165 ,1,8091,65 ,1,8092,583605 ,1,8093,597110 ,1,8094,586705 ,1,8095,573680 ,1,8096,580355 ,1,8097,586090 ,1,8098,579955 ,1,8099,580350 ,1,8100,65 ,1,8101,580290 ,1,8102,65 ,1,8103,65 ,1,8104,65 ,1,8105,595910 ,1,8106,65 ,1,8107,65 ,1,8108,65 ,1,8109,65 ,1,8110,584230 ,1,8111,592250 ,1,8112,595630 ,1,8113,570105 ,1,8114,65 ,1,8115,65 ,1,8116,65 ,1,8117,583060 ,1,8118,593035 ,1,8119,65 ,1,8120,65 ,1,8121,597210 ,1,8122,65 ,1,8123,65 ,1,8124,65 ,1,8125,65 ,1,8126,567840 ,1,8127,591300 ,1,8128,65 ,1,8129,65 ,1,8130,587455 ,1,8131,588470 ,1,8132,65 ,1,8133,559370 ,1,8134,575910 ,1,8135,558475 ,1,8136,559240 ,1,8137,571415 ,1,8138,578220 ,1,8139,575915 ,1,8140,587470 ,1,8141,577820 ,1,8142,65 ,1,8143,65 ,1,8144,65 ,1,8145,65 ,1,8146,584635 ,1,8147,65 ,1,8148,593645 ,1,8149,65 ,1,8150,65 ,1,8151,579870 ,1,8152,591565 ,1,8153,65 ,1,8154,65 ,1,8155,65 ,1,8156,65 ,1,8157,65 ,1,8158,65 ,1,8159,65 ,1,8160,562230 ,1,8161,558290 ,1,8162,65 ,1,8163,569060 ,1,8164,564855 ,1,8165,558540 ,1,8166,562245 ,1,8167,572180 ,1,8168,575705 ,1,8169,575710 ,1,8170,570820 ,1,8171,573145 ,1,8172,587070 ,1,8173,587105 ,1,8174,65 ,1,8175,65 ,1,8176,65 ,1,8177,591045 ,1,8178,65 ,1,8179,577490 ,1,8180,577535 ,1,8181,559265 ,1,8182,577825 ,1,8183,595370 ,1,8184,561430 ,1,8185,65 ,1,8186,65 ,1,8187,577830 ,1,8188,575695 ,1,8189,575700 ,1,8190,572625 ,1,8191,571220 ,1,8192,590130 ,1,8193,575900 ,2,14956,260400 ,2,822,33695 ,2,14975,570955 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,332685 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260240 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,151895 ,2,14979,336135 ,2,829,45 ,1,0,100 ,1,1,611500 ,2,14956,182390 ,2,822,33695 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385600 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,260410 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333420 ,2,829,45 ,1,0,100 ,1,1,577430 ,1,2,577690 ,1,3,578340 ,2,14956,260420 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335925 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,252950 ,2,822,33695 ,2,14975,577635 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336200 ,2,829,45 ,1,0,100 ,1,1,606235 ,2,14956,260430 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151550 ,2,14979,397705 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,260440 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151975 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560655 ,1,5,561020 ,2,14956,260450 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335745 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260470 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335755 ,2,829,45 ,1,0,100 ,1,1,609145 ,2,14956,260480 ,2,822,33695 ,2,14975,560975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336230 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260490 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409495 ,2,829,45 ,1,0,100 ,1,1,566065 ,2,14956,260500 ,2,822,33695 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333460 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,212155 ,2,822,33695 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336240 ,2,829,45 ,1,0,100 ,1,1,611500 ,2,14956,260515 ,2,822,33695 ,2,14975,560975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336250 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,260525 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333905 ,2,829,45 ,1,0,100 ,1,1,610490 ,1,2,610490 ,2,14956,260030 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,151605 ,2,14979,335875 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260175 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,151775 ,2,14979,336070 ,2,829,45 ,1,0,100 ,1,1,599880 ,2,14956,260535 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336260 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260330 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,152055 ,2,14979,336190 ,2,829,45 ,1,0,100 ,1,1,610800 ,2,14956,260545 ,2,822,33695 ,2,14975,578990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335805 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260585 ,2,822,33695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,151530 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,260595 ,2,822,33695 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,336270 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,259920 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,333305 ,2,829,45 ,1,0,100 ,1,1,561560 ,2,14956,260640 ,2,822,33665 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397245 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260650 ,2,822,33665 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,395160 ,2,829,45 ,1,0,100 ,1,1,573360 ,2,14956,260660 ,2,822,33665 ,2,14975,568460 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,395055 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260690 ,2,822,33665 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397470 ,2,829,45 ,1,0,100 ,1,1,610450 ,2,14956,260735 ,2,822,33655 ,2,14975,578995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,259805 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,217455 ,2,822,35335 ,2,14975,579005 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384850 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,100 ,1,3,558090 ,2,14956,260755 ,2,822,35345 ,2,14975,579020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,216035 ,2,822,52660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413490 ,2,829,45 ,1,0,100 ,1,1,607385 ,2,14956,184135 ,2,822,52660 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409600 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217335 ,2,822,52660 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415030 ,2,829,45 ,1,0,100 ,1,1,576430 ,2,14956,217345 ,2,822,52660 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412285 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,35365 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379560 ,2,829,45 ,1,0,100 ,1,1,608060 ,2,14956,215285 ,2,822,35365 ,2,14975,579085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378820 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,239550 ,2,822,35385 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395025 ,2,829,45 ,1,0,100 ,1,1,610555 ,1,2,610555 ,2,14956,211025 ,2,822,35385 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377325 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,210935 ,2,822,35395 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371360 ,2,829,45 ,1,0,100 ,1,1,606235 ,2,14956,211385 ,2,822,35395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366065 ,2,829,45 ,1,0,167060 ,2,14956,213385 ,2,822,35395 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363460 ,2,829,45 ,1,0,100 ,2,14956,211025 ,2,822,35395 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377910 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213325 ,2,822,35395 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370690 ,2,829,45 ,1,0,100 ,1,1,609750 ,1,2,609750 ,2,14956,260820 ,2,822,35395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336350 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260835 ,2,822,35395 ,2,14975,579095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,606510 ,2,14956,10080 ,2,822,52670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,152755 ,2,14979,383400 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,10080 ,2,822,52670 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,234700 ,2,14979,336370 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,597450 ,2,14956,166985 ,2,822,35405 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,152755 ,2,14979,382965 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211080 ,2,822,52670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375275 ,2,829,45 ,1,0,100 ,1,1,612170 ,1,2,612165 ,2,14956,207140 ,2,822,52670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373390 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,1,6,167050 ,2,14956,207085 ,2,822,52670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378685 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,597455 ,1,5,612205 ,1,6,612200 ,2,14956,207130 ,2,822,52670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373885 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217810 ,2,822,52670 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383485 ,2,829,45 ,1,0,100 ,1,1,612205 ,1,2,612200 ,2,14956,171330 ,2,822,52670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359140 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,217820 ,2,822,52670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336380 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,599885 ,2,14956,171725 ,2,822,52670 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359765 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217830 ,2,822,52670 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,336390 ,2,829,45 ,1,0,100 ,1,1,110 ,2,14956,260855 ,2,822,35405 ,2,14975,579100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,215350 ,2,822,35415 ,2,14975,579125 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386615 ,2,829,45 ,1,0,100 ,1,1,606635 ,1,2,606635 ,2,14956,217015 ,2,822,35415 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379845 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,215285 ,2,822,35415 ,2,14975,579130 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379145 ,2,829,45 ,1,0,100 ,1,1,610635 ,1,2,594740 ,2,14956,260920 ,2,822,35435 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,152960 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260910 ,2,822,35435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234710 ,2,14979,336450 ,2,829,45 ,1,0,100 ,1,1,568565 ,2,14956,182390 ,2,822,35435 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385520 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,184135 ,2,822,35435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380690 ,2,829,45 ,1,0,100 ,1,1,607575 ,1,2,607575 ,2,14956,223625 ,2,822,35435 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364915 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217195 ,2,822,35435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369350 ,2,829,45 ,1,0,100 ,1,1,577430 ,1,2,578340 ,2,14956,260910 ,2,822,35435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,152960 ,2,14979,336460 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,260930 ,2,822,35435 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336470 ,2,829,45 ,1,0,100 ,1,1,611960 ,2,14956,261020 ,2,822,35435 ,2,14975,579185 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,336485 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213590 ,2,822,35455 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260280 ,2,14979,412945 ,2,829,45 ,1,0,100 ,1,1,599975 ,1,2,599975 ,2,14956,182390 ,2,822,35445 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384175 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261030 ,2,822,35435 ,2,14975,579135 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,577050 ,2,14956,211360 ,2,822,35485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366340 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213385 ,2,822,35485 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364125 ,2,829,45 ,1,0,100 ,1,1,599880 ,2,14956,211385 ,2,822,35485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366090 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211025 ,2,822,35485 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378070 ,2,829,45 ,1,0,100 ,1,1,606685 ,1,2,606160 ,2,14956,213325 ,2,822,35485 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370815 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261055 ,2,822,35485 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336515 ,2,829,45 ,1,0,100 ,1,1,608740 ,2,14956,261065 ,2,822,35485 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,336580 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261075 ,2,822,35485 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336590 ,2,829,45 ,1,0,100 ,1,1,566855 ,2,14956,260820 ,2,822,35485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336600 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261105 ,2,822,35485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336610 ,2,829,45 ,1,0,100 ,1,1,608470 ,2,14956,261115 ,2,822,35485 ,2,14975,579190 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,336625 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,236910 ,2,822,33645 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398635 ,2,829,45 ,1,0,100 ,1,1,597285 ,2,14956,236920 ,2,822,33645 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261155 ,2,822,33645 ,2,14975,599940 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,612125 ,2,14956,250930 ,2,822,35495 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398535 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217455 ,2,822,35540 ,2,14975,579220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384855 ,2,829,45 ,1,0,100 ,1,1,608880 ,2,14956,213590 ,2,822,35540 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260290 ,2,14979,413295 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,167780 ,2,822,35540 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260300 ,2,14979,410130 ,2,829,45 ,1,0,100 ,1,1,608840 ,2,14956,261215 ,2,822,35550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153380 ,2,14979,397750 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,261205 ,2,822,35550 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234720 ,2,14979,336690 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600065 ,1,5,558090 ,2,14956,261235 ,2,822,35550 ,2,14975,110 ,2,14976,23130 ,2,14977,91890 ,2,14965,45 ,2,14978,45 ,2,14979,336745 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261260 ,2,822,35550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153415 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,576430 ,2,14956,261250 ,2,822,35550 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,234730 ,2,14979,336755 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217195 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369360 ,2,829,45 ,1,0,100 ,1,1,599940 ,2,14956,182390 ,2,822,35550 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385545 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,224780 ,1,3,224825 ,2,14956,261270 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,153475 ,2,14979,336835 ,2,829,45 ,1,0,100 ,1,1,570900 ,1,2,599940 ,1,3,599940 ,2,14956,261270 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234740 ,2,14979,336845 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261280 ,2,822,35550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153475 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,599895 ,2,14956,261205 ,2,822,35550 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,153380 ,2,14979,336700 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261320 ,2,822,35550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,153515 ,2,14979,336860 ,2,829,45 ,1,0,100 ,1,1,599895 ,2,14956,261320 ,2,822,35550 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,234750 ,2,14979,336870 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261330 ,2,822,35550 ,2,14975,110 ,2,14976,23130 ,2,14977,91890 ,2,14965,45 ,2,14978,45 ,2,14979,336815 ,2,829,45 ,1,0,100 ,1,1,608895 ,2,14956,261340 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336710 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261250 ,2,822,35550 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,153415 ,2,14979,336765 ,2,829,45 ,1,0,100 ,1,1,608495 ,2,14956,261360 ,2,822,35550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153585 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261350 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234795 ,2,14979,336880 ,2,829,45 ,1,0,100 ,1,1,606160 ,2,14956,215455 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374795 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,184135 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380695 ,2,829,45 ,1,0,100 ,1,1,568420 ,2,14956,261370 ,2,822,35550 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153515 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,261350 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,153585 ,2,14979,336890 ,2,829,45 ,1,0,100 ,1,1,607175 ,1,2,607170 ,2,14956,261380 ,2,822,35550 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,336825 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,216035 ,2,822,52705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413495 ,2,829,45 ,1,0,100 ,1,1,569615 ,2,14956,184135 ,2,822,52705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,409605 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217345 ,2,822,52705 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412290 ,2,829,45 ,1,0,100 ,1,1,599870 ,2,14956,182390 ,2,822,35570 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384275 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,205435 ,2,822,35570 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260315 ,2,14979,414195 ,2,829,45 ,1,0,100 ,1,1,600065 ,2,14956,167780 ,2,822,35570 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260325 ,2,14979,410100 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,236910 ,2,822,35495 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,398640 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,236920 ,2,822,35495 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,205435 ,2,822,35495 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260335 ,2,14979,414220 ,2,829,45 ,1,0,100 ,1,1,566930 ,2,14956,261470 ,2,822,25695 ,2,14975,569800 ,2,14976,23450 ,2,14977,92000 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213325 ,2,822,35580 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370615 ,2,829,45 ,1,0,100 ,1,1,606770 ,1,2,606770 ,2,14956,261510 ,2,822,35580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336925 ,2,829,45 ,1,0,167060 ,2,14956,261520 ,2,822,35580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,336935 ,2,829,45 ,1,0,100 ,2,14956,261540 ,2,822,35580 ,2,14975,579295 ,2,14976,23675 ,2,14977,92055 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213375 ,2,822,35590 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153850 ,2,14979,362095 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,213225 ,2,822,35590 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234805 ,2,14979,336945 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213305 ,2,822,35590 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153870 ,2,14979,361460 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,213290 ,2,822,35590 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234815 ,2,14979,336965 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213485 ,2,822,35590 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153890 ,2,14979,361745 ,2,829,45 ,1,0,100 ,1,1,561430 ,1,2,562475 ,2,14956,213475 ,2,822,35590 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234825 ,2,14979,336975 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213505 ,2,822,35590 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,153910 ,2,14979,360770 ,2,829,45 ,1,0,100 ,1,1,611445 ,2,14956,213395 ,2,822,35590 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234840 ,2,14979,336985 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,213385 ,2,822,35590 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363450 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,597915 ,2,14956,211025 ,2,822,35590 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,153980 ,2,14979,377885 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211025 ,2,822,35590 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,234850 ,2,14979,337045 ,2,829,45 ,1,0,100 ,1,1,612215 ,2,14956,213530 ,2,822,35590 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370425 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213225 ,2,822,35590 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,153850 ,2,14979,336955 ,2,829,45 ,1,0,100 ,1,1,609330 ,1,2,609330 ,2,14956,213290 ,2,822,35590 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,153870 ,2,14979,409610 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,213475 ,2,822,35590 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,153890 ,2,14979,409635 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,597945 ,1,5,612225 ,2,14956,213395 ,2,822,35590 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,153910 ,2,14979,409640 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261565 ,2,822,35590 ,2,14975,579320 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,612225 ,2,14956,223045 ,2,822,35600 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394410 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,211080 ,2,822,52715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375240 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560655 ,1,5,560425 ,2,14956,207140 ,2,822,52715 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373355 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207085 ,2,822,52715 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378640 ,2,829,45 ,1,0,100 ,1,1,561460 ,2,14956,207130 ,2,822,52715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373850 ,2,829,45 ,1,0,167060 ,2,14956,213580 ,2,822,52715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383580 ,2,829,45 ,1,0,100 ,2,14956,213590 ,2,822,52715 ,2,14975,567805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386465 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213375 ,2,822,25640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154185 ,2,14979,362175 ,2,829,45 ,1,0,100 ,1,1,610350 ,1,2,610325 ,2,14956,213225 ,2,822,25640 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234860 ,2,14979,337055 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213305 ,2,822,25640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154205 ,2,14979,361545 ,2,829,45 ,1,0,100 ,1,1,609145 ,2,14956,213290 ,2,822,25640 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234870 ,2,14979,337065 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,213485 ,2,822,25640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154225 ,2,14979,361835 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,599505 ,2,14956,213475 ,2,822,25640 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234905 ,2,14979,337075 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213505 ,2,822,25640 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154245 ,2,14979,360850 ,2,829,45 ,1,0,100 ,1,1,599895 ,2,14956,213395 ,2,822,25640 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,234915 ,2,14979,337095 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211025 ,2,822,25640 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,154300 ,2,14979,412040 ,2,829,45 ,1,0,100 ,1,1,600035 ,1,2,600035 ,2,14956,211025 ,2,822,25640 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,234925 ,2,14979,337105 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,210935 ,2,822,25640 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411520 ,2,829,45 ,1,0,100 ,1,1,609175 ,2,14956,213385 ,2,822,25640 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,411005 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213325 ,2,822,25640 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370760 ,2,829,45 ,1,0,100 ,1,1,606545 ,2,14956,213530 ,2,822,25640 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370455 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213225 ,2,822,25640 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,154185 ,2,14979,409645 ,2,829,45 ,1,0,100 ,1,1,566510 ,2,14956,213290 ,2,822,25640 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,154205 ,2,14979,409650 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213475 ,2,822,25640 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,154225 ,2,14979,409660 ,2,829,45 ,1,0,100 ,1,1,568420 ,2,14956,213395 ,2,822,25640 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,154245 ,2,14979,409665 ,2,829,45 ,1,0,167060 ,2,14956,211385 ,2,822,25640 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411160 ,2,829,45 ,1,0,100 ,2,14956,207015 ,2,822,35635 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154435 ,2,14979,372600 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,206975 ,2,822,35635 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,234935 ,2,14979,337115 ,2,829,45 ,1,0,100 ,1,1,608910 ,2,14956,213425 ,2,822,35635 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364405 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,206975 ,2,822,35635 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,154435 ,2,14979,372400 ,2,829,45 ,1,0,100 ,1,1,599885 ,1,2,563575 ,2,14956,261665 ,2,822,35635 ,2,14975,579330 ,2,14976,23450 ,2,14977,92290 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,227050 ,2,822,35635 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260345 ,2,14979,382705 ,2,829,45 ,1,0,100 ,1,1,609175 ,1,2,609175 ,2,14956,211360 ,2,822,35645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366230 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211025 ,2,822,35645 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377925 ,2,829,45 ,1,0,100 ,1,1,608060 ,2,14956,228175 ,2,822,35645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409670 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,228185 ,2,822,35645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337145 ,2,829,45 ,1,0,100 ,1,1,606895 ,1,2,606770 ,2,14956,211290 ,2,822,35645 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366010 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261685 ,2,822,35645 ,2,14975,579335 ,2,14976,24020 ,2,14977,68205 ,2,14965,45 ,2,14978,45 ,2,14979,337155 ,2,829,45 ,1,0,100 ,1,1,561500 ,2,14956,176480 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,92330 ,2,14979,337175 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,176470 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382510 ,2,829,45 ,1,0,100 ,1,1,607705 ,2,14956,261730 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409675 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261740 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409710 ,2,829,45 ,1,0,100 ,1,1,607850 ,2,14956,261750 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337185 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207175 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337195 ,2,829,45 ,1,0,100 ,1,1,608270 ,2,14956,261790 ,2,822,35655 ,2,14975,579350 ,2,14976,78900 ,2,14977,92360 ,2,14965,45 ,2,14978,45 ,2,14979,337205 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,209125 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409715 ,2,829,45 ,1,0,100 ,1,1,598180 ,2,14956,257480 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337215 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261820 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,154720 ,2,14979,337260 ,2,829,45 ,1,0,100 ,1,1,608275 ,2,14956,261820 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234955 ,2,14979,337270 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261840 ,2,822,35655 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154740 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,261830 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234965 ,2,14979,337280 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261850 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,606515 ,2,14956,207285 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409720 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,173945 ,2,822,35655 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359325 ,2,829,45 ,1,0,100 ,1,1,608315 ,1,2,608300 ,1,3,608295 ,2,14956,207295 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337305 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,261865 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337315 ,2,829,45 ,1,0,100 ,1,1,607615 ,1,2,607590 ,2,14956,261885 ,2,822,35655 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154835 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,261875 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234975 ,2,14979,337325 ,2,829,45 ,1,0,100 ,1,1,607265 ,1,2,607235 ,2,14956,261895 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,154855 ,2,14979,337355 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261895 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,234985 ,2,14979,337365 ,2,829,45 ,1,0,100 ,1,1,599900 ,2,14956,207350 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409725 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207340 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409730 ,2,829,45 ,1,0,100 ,1,1,599945 ,2,14956,261915 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207360 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409735 ,2,829,45 ,1,0,100 ,1,1,599945 ,2,14956,261925 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409740 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,261875 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,154835 ,2,14979,337335 ,2,829,45 ,1,0,100 ,1,1,580980 ,1,2,577825 ,2,14956,261935 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409745 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261945 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337375 ,2,829,45 ,1,0,100 ,1,1,608835 ,2,14956,257590 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409755 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261970 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409760 ,2,829,45 ,1,0,100 ,1,1,599900 ,2,14956,207400 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409765 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207410 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337385 ,2,829,45 ,1,0,100 ,1,1,608420 ,2,14956,207420 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337405 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,261980 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337415 ,2,829,45 ,1,0,100 ,1,1,599900 ,2,14956,261990 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,207460 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409770 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,599970 ,2,14956,262000 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409775 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262045 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409780 ,2,829,45 ,1,0,100 ,1,1,607770 ,2,14956,262065 ,2,822,35655 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,155120 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262055 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235020 ,2,14979,337425 ,2,829,45 ,1,0,100 ,1,1,607910 ,2,14956,262075 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409785 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262085 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,606635 ,2,14956,262095 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262105 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409790 ,2,829,45 ,1,0,100 ,1,1,559725 ,1,2,597485 ,2,14956,262115 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,207530 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409830 ,2,829,45 ,1,0,100 ,2,14956,262140 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409835 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,207590 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337485 ,2,829,45 ,1,0,100 ,1,1,599905 ,1,2,599905 ,2,14956,211210 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369710 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,207640 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409840 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,599500 ,2,14956,262150 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409845 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262160 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409850 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,207680 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409855 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262170 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337495 ,2,829,45 ,1,0,100 ,1,1,609760 ,2,14956,262180 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409860 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262190 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409865 ,2,829,45 ,1,0,100 ,1,1,574260 ,2,14956,262200 ,2,822,35655 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154855 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,262210 ,2,822,35655 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,154720 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,610635 ,1,2,100 ,1,3,560850 ,2,14956,207730 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337505 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262250 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337515 ,2,829,45 ,1,0,100 ,1,1,606650 ,1,2,606235 ,2,14956,207760 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337535 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207740 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337545 ,2,829,45 ,1,0,100 ,1,1,599880 ,2,14956,262260 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337555 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262270 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409875 ,2,829,45 ,1,0,100 ,1,1,577430 ,2,14956,262280 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,256145 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409880 ,2,829,45 ,1,0,100 ,1,1,609355 ,2,14956,262290 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409885 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262300 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,567805 ,1,2,599940 ,2,14956,207800 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409890 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262055 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,155120 ,2,14979,337435 ,2,829,45 ,1,0,100 ,1,1,599055 ,2,14956,262310 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337565 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207810 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337585 ,2,829,45 ,1,0,100 ,1,1,607325 ,2,14956,207790 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337595 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,261830 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,154740 ,2,14979,337290 ,2,829,45 ,1,0,100 ,1,1,610500 ,1,2,610500 ,2,14956,262320 ,2,822,35655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211360 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366315 ,2,829,45 ,1,0,100 ,1,1,558310 ,2,14956,262345 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337605 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,207970 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337615 ,2,829,45 ,1,0,100 ,1,1,607390 ,1,2,607385 ,2,14956,262355 ,2,822,35655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337625 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,213375 ,2,822,35665 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,155690 ,2,14979,362145 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,600065 ,1,5,558085 ,2,14956,213225 ,2,822,35665 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235030 ,2,14979,337645 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,262395 ,2,822,14570 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,92425 ,2,14979,337720 ,2,829,45 ,1,0,100 ,1,1,599970 ,1,2,567750 ,1,3,561430 ,2,14956,262405 ,2,822,14570 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400155 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213305 ,2,822,35665 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,155730 ,2,14979,361515 ,2,829,45 ,1,0,100 ,1,1,599905 ,2,14956,213290 ,2,822,35665 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235040 ,2,14979,337730 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213485 ,2,822,35665 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,155750 ,2,14979,361790 ,2,829,45 ,1,0,100 ,1,1,567805 ,2,14956,213475 ,2,822,35665 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235050 ,2,14979,337750 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213505 ,2,822,35665 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,155790 ,2,14979,360820 ,2,829,45 ,1,0,100 ,1,1,606225 ,1,2,606225 ,2,14956,213395 ,2,822,35665 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235060 ,2,14979,337760 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213325 ,2,822,35665 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370715 ,2,829,45 ,1,0,100 ,1,1,607020 ,1,2,607015 ,2,14956,213225 ,2,822,35665 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,155690 ,2,14979,337655 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213290 ,2,822,35665 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,155730 ,2,14979,337740 ,2,829,45 ,1,0,100 ,1,1,590290 ,2,14956,213475 ,2,822,35665 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,155750 ,2,14979,337700 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213395 ,2,822,35665 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,155790 ,2,14979,337770 ,2,829,45 ,1,0,100 ,1,1,611670 ,2,14956,262415 ,2,822,35665 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337710 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262425 ,2,822,35665 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409895 ,2,829,45 ,1,0,100 ,1,1,558310 ,2,14956,262445 ,2,822,35665 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337805 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262475 ,2,822,35665 ,2,14975,579355 ,2,14976,24020 ,2,14977,92445 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,599900 ,2,14956,211220 ,2,822,35680 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411415 ,2,829,45 ,1,0,167060 ,2,14956,262495 ,2,822,35680 ,2,14975,579360 ,2,14976,23130 ,2,14977,92495 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,2,14956,262515 ,2,822,35690 ,2,14975,562300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,241815 ,2,822,35700 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,610485 ,1,2,610485 ,2,14956,241825 ,2,822,35700 ,2,14975,562300 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207015 ,2,822,35710 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156010 ,2,14979,372710 ,2,829,45 ,1,0,100 ,1,1,606770 ,2,14956,206975 ,2,822,35710 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235070 ,2,14979,337845 ,2,829,45 ,1,0,167060 ,2,14956,211360 ,2,822,35710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366295 ,2,829,45 ,1,0,100 ,2,14956,206975 ,2,822,35710 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,156010 ,2,14979,372485 ,2,829,45 ,1,0,167060 ,2,14956,230815 ,2,822,35710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409900 ,2,829,45 ,1,0,100 ,2,14956,262560 ,2,822,35710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409905 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262580 ,2,822,35710 ,2,14975,579400 ,2,14976,24020 ,2,14977,92595 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,610800 ,2,14956,213325 ,2,822,35735 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370710 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262600 ,2,822,35735 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337865 ,2,829,45 ,1,0,100 ,1,1,599945 ,2,14956,262610 ,2,822,35735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337875 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262645 ,2,822,35735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,337915 ,2,829,45 ,1,0,100 ,1,1,599740 ,2,14956,262655 ,2,822,35735 ,2,14975,579405 ,2,14976,24020 ,2,14977,92635 ,2,14965,45 ,2,14978,45 ,2,14979,337925 ,2,829,45 ,1,0,167060 ,2,14956,213290 ,2,822,35745 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,156170 ,2,14979,337945 ,2,829,45 ,1,0,100 ,2,14956,213290 ,2,822,35745 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235080 ,2,14979,337960 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211005 ,2,822,35745 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366405 ,2,829,45 ,1,0,100 ,1,1,606855 ,1,2,599975 ,2,14956,211025 ,2,822,35745 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378000 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213375 ,2,822,35745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156240 ,2,14979,362165 ,2,829,45 ,1,0,100 ,1,1,610905 ,1,2,599975 ,2,14956,213225 ,2,822,35745 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235090 ,2,14979,337970 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,206975 ,2,822,35745 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,156260 ,2,14979,411625 ,2,829,45 ,1,0,100 ,1,1,610495 ,1,2,610495 ,2,14956,206975 ,2,822,35745 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235120 ,2,14979,337990 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,237300 ,2,822,35745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338015 ,2,829,45 ,1,0,100 ,1,1,611055 ,1,2,599895 ,2,14956,207015 ,2,822,35745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156260 ,2,14979,372670 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213395 ,2,822,35745 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,156305 ,2,14979,338025 ,2,829,45 ,1,0,100 ,1,1,611095 ,1,2,599895 ,2,14956,213395 ,2,822,35745 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235130 ,2,14979,338035 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213225 ,2,822,35745 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,156240 ,2,14979,337980 ,2,829,45 ,1,0,100 ,1,1,611615 ,2,14956,213435 ,2,822,35745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364330 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213305 ,2,822,35745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156170 ,2,14979,361535 ,2,829,45 ,1,0,100 ,1,1,607825 ,1,2,607820 ,2,14956,213485 ,2,822,35745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156360 ,2,14979,361825 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213475 ,2,822,35745 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235140 ,2,14979,338045 ,2,829,45 ,1,0,100 ,1,1,607975 ,1,2,607970 ,2,14956,213505 ,2,822,35745 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156305 ,2,14979,360840 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213530 ,2,822,35745 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370445 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,262690 ,2,822,35745 ,2,14975,579420 ,2,14976,23450 ,2,14977,92665 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213475 ,2,822,35745 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,156360 ,2,14979,338060 ,2,829,45 ,1,0,100 ,1,1,606960 ,2,14956,211360 ,2,822,35745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366285 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213325 ,2,822,35745 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370745 ,2,829,45 ,1,0,100 ,1,1,606770 ,2,14956,176470 ,2,822,35755 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382530 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211025 ,2,822,35755 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378015 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,568460 ,2,14956,262710 ,2,822,35755 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409910 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,173945 ,2,822,35755 ,2,14975,610455 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359335 ,2,829,45 ,1,0,100 ,1,1,606545 ,2,14956,262755 ,2,822,35755 ,2,14975,579425 ,2,14976,24020 ,2,14977,92725 ,2,14965,45 ,2,14978,45 ,2,14979,338080 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211290 ,2,822,35755 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260375 ,2,14979,366030 ,2,829,45 ,1,0,100 ,1,1,611940 ,2,14956,207015 ,2,822,35765 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156555 ,2,14979,372640 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,206975 ,2,822,35765 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235150 ,2,14979,338125 ,2,829,45 ,1,0,100 ,1,1,609760 ,2,14956,210935 ,2,822,35765 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371375 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211025 ,2,822,35765 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377980 ,2,829,45 ,1,0,100 ,1,1,611790 ,2,14956,213385 ,2,822,35765 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363505 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,206975 ,2,822,35765 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,156555 ,2,14979,372440 ,2,829,45 ,1,0,100 ,1,1,566445 ,2,14956,262785 ,2,822,35765 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338135 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,208825 ,2,822,35765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338145 ,2,829,45 ,1,0,100 ,1,1,607785 ,1,2,607780 ,2,14956,207730 ,2,822,35765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338155 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,218390 ,2,822,35765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338165 ,2,829,45 ,1,0,100 ,1,1,607950 ,1,2,607920 ,2,14956,218310 ,2,822,35765 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410370 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262795 ,2,822,35765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409930 ,2,829,45 ,1,0,100 ,1,1,606960 ,1,2,606960 ,2,14956,262825 ,2,822,35765 ,2,14975,579430 ,2,14976,25600 ,2,14977,92755 ,2,14965,45 ,2,14978,45 ,2,14979,338175 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262860 ,2,822,35785 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,568005 ,1,2,561460 ,2,14956,210875 ,2,822,35785 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262870 ,2,822,35785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338185 ,2,829,45 ,1,0,100 ,1,1,609760 ,2,14956,262515 ,2,822,35925 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416685 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262515 ,2,822,35795 ,2,14975,562300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398145 ,2,829,45 ,1,0,100 ,1,1,610525 ,1,2,610525 ,2,14956,213325 ,2,822,35785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370735 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,209195 ,2,822,35785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338195 ,2,829,45 ,1,0,100 ,1,1,611185 ,1,2,599905 ,2,14956,262880 ,2,822,35785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338235 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,207085 ,2,822,35785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378615 ,2,829,45 ,1,0,100 ,1,1,611230 ,1,2,599905 ,2,14956,207130 ,2,822,35785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373830 ,2,829,45 ,1,0,167060 ,2,14956,262890 ,2,822,35785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338245 ,2,829,45 ,1,0,100 ,2,14956,262900 ,2,822,35785 ,2,14975,579435 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,207015 ,2,822,35795 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156890 ,2,14979,372630 ,2,829,45 ,1,0,100 ,2,14956,206975 ,2,822,35795 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235160 ,2,14979,338265 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211025 ,2,822,35795 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377955 ,2,829,45 ,1,0,100 ,1,1,100 ,1,2,558090 ,2,14956,206975 ,2,822,35795 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,156890 ,2,14979,372430 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,262920 ,2,822,35795 ,2,14975,579480 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338285 ,2,829,45 ,1,0,100 ,1,1,610350 ,1,2,610350 ,2,14956,262965 ,2,822,35795 ,2,14975,579470 ,2,14976,25600 ,2,14977,92905 ,2,14965,45 ,2,14978,45 ,2,14979,338295 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262955 ,2,822,35875 ,2,14975,579485 ,2,14976,25600 ,2,14977,92875 ,2,14965,45 ,2,14978,45 ,2,14979,338305 ,2,829,45 ,1,0,100 ,1,1,609345 ,2,14956,207015 ,2,822,35805 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,156985 ,2,14979,372620 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,206975 ,2,822,35805 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235170 ,2,14979,338340 ,2,829,45 ,1,0,100 ,1,1,600040 ,2,14956,211025 ,2,822,35805 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377950 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,206975 ,2,822,35805 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,156985 ,2,14979,372420 ,2,829,45 ,1,0,100 ,1,1,608350 ,2,14956,262515 ,2,822,35805 ,2,14975,562405 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398140 ,2,829,45 ,1,0,167060 ,2,14956,262990 ,2,822,35805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338350 ,2,829,45 ,1,0,100 ,2,14956,263000 ,2,822,35805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409935 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262920 ,2,822,35805 ,2,14975,579480 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338360 ,2,829,45 ,1,0,100 ,1,1,599880 ,2,14956,263010 ,2,822,35805 ,2,14975,579495 ,2,14976,34765 ,2,14977,92935 ,2,14965,45 ,2,14978,45 ,2,14979,338370 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211300 ,2,822,35815 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157085 ,2,14979,376580 ,2,829,45 ,1,0,100 ,1,1,609335 ,1,2,609335 ,2,14956,211035 ,2,822,35815 ,2,14975,110 ,2,14976,55700 ,2,14977,23360 ,2,14965,45 ,2,14978,235180 ,2,14979,338400 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211035 ,2,822,35815 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,157085 ,2,14979,372225 ,2,829,45 ,1,0,100 ,1,1,610040 ,2,14956,213435 ,2,822,35815 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364285 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,263110 ,2,822,35815 ,2,14975,579505 ,2,14976,34765 ,2,14977,92975 ,2,14965,45 ,2,14978,45 ,2,14979,338410 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,563735 ,1,3,563735 ,1,4,568460 ,2,14956,213375 ,2,822,35855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157140 ,2,14979,362135 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213225 ,2,822,35855 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235190 ,2,14979,338455 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,213305 ,2,822,35855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157190 ,2,14979,361505 ,2,829,45 ,1,0,167060 ,2,14956,213290 ,2,822,35855 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235235 ,2,14979,338475 ,2,829,45 ,1,0,100 ,2,14956,213485 ,2,822,35855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157210 ,2,14979,361775 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213475 ,2,822,35855 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235245 ,2,14979,338500 ,2,829,45 ,1,0,100 ,1,1,607500 ,1,2,607495 ,2,14956,213505 ,2,822,35855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157235 ,2,14979,360800 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213395 ,2,822,35855 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235255 ,2,14979,338520 ,2,829,45 ,1,0,100 ,1,1,568460 ,1,2,599970 ,2,14956,213325 ,2,822,35855 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370695 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213225 ,2,822,35855 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,157140 ,2,14979,338465 ,2,829,45 ,1,0,100 ,1,1,609155 ,1,2,609155 ,2,14956,213290 ,2,822,35855 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,157190 ,2,14979,338485 ,2,829,45 ,1,0,167060 ,2,14956,213475 ,2,822,35855 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,157210 ,2,14979,338510 ,2,829,45 ,1,0,100 ,2,14956,213395 ,2,822,35855 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,157235 ,2,14979,338530 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263130 ,2,822,35855 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338580 ,2,829,45 ,1,0,100 ,1,1,606770 ,2,14956,263180 ,2,822,35855 ,2,14975,579540 ,2,14976,23450 ,2,14977,93055 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211025 ,2,822,35865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378005 ,2,829,45 ,1,0,100 ,1,1,606770 ,2,14956,211290 ,2,822,35865 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411140 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,209125 ,2,822,35865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338600 ,2,829,45 ,1,0,100 ,1,1,599885 ,2,14956,263200 ,2,822,35865 ,2,14975,579545 ,2,14976,23450 ,2,14977,93125 ,2,14965,45 ,2,14978,45 ,2,14979,338610 ,2,829,45 ,1,0,167060 ,2,14956,211210 ,2,822,35875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369690 ,2,829,45 ,1,0,100 ,2,14956,211290 ,2,822,35875 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411135 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,184890 ,2,822,35875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338620 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,209485 ,2,822,35875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338630 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207240 ,2,822,35875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338640 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,207015 ,2,822,35885 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157455 ,2,14979,372720 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,206975 ,2,822,35885 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235265 ,2,14979,338670 ,2,829,45 ,1,0,100 ,1,1,599970 ,2,14956,210935 ,2,822,35885 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371395 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211025 ,2,822,35885 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378010 ,2,829,45 ,1,0,100 ,1,1,611355 ,2,14956,213385 ,2,822,35885 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363550 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,2,14956,206975 ,2,822,35885 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,157455 ,2,14979,372500 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560425 ,2,14956,263230 ,2,822,35885 ,2,14975,566615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338680 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,262920 ,2,822,35885 ,2,14975,579560 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,338690 ,2,829,45 ,1,0,100 ,1,1,599900 ,2,14956,211290 ,2,822,35885 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411145 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207085 ,2,822,35885 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378635 ,2,829,45 ,1,0,100 ,1,1,599900 ,2,14956,208555 ,2,822,35885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338700 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263240 ,2,822,35885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338720 ,2,829,45 ,1,0,100 ,1,1,598945 ,2,14956,209125 ,2,822,35885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338730 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263275 ,2,822,35885 ,2,14975,579555 ,2,14976,24120 ,2,14977,93185 ,2,14965,45 ,2,14978,45 ,2,14979,338740 ,2,829,45 ,1,0,100 ,1,1,606160 ,2,14956,211360 ,2,822,35905 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366320 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263295 ,2,822,35905 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338805 ,2,829,45 ,1,0,100 ,1,1,610800 ,2,14956,263315 ,2,822,35905 ,2,14975,579565 ,2,14976,23450 ,2,14977,93220 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263380 ,2,822,35915 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157685 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,606545 ,2,14956,263335 ,2,822,35915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235285 ,2,14979,338825 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,213435 ,2,822,35915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364295 ,2,829,45 ,1,0,100 ,1,1,561500 ,1,2,561500 ,2,14956,211025 ,2,822,35915 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377990 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,210985 ,2,822,35915 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369625 ,2,829,45 ,1,0,100 ,1,1,599895 ,1,2,599895 ,2,14956,207085 ,2,822,35915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378630 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207130 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373840 ,2,829,45 ,1,0,100 ,1,1,599945 ,2,14956,263335 ,2,822,35915 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,157685 ,2,14979,338835 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,263390 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338860 ,2,829,45 ,1,0,100 ,1,1,609325 ,1,2,609325 ,2,14956,263410 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,93250 ,2,14965,45 ,2,14978,45 ,2,14979,338850 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,263425 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338870 ,2,829,45 ,1,0,100 ,1,1,567415 ,1,2,561460 ,2,14956,263435 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338880 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263445 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409940 ,2,829,45 ,1,0,100 ,1,1,599905 ,2,14956,263455 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338915 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217415 ,2,822,35915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338925 ,2,829,45 ,1,0,100 ,1,1,607625 ,1,2,607625 ,2,14956,263520 ,2,822,35915 ,2,14975,579570 ,2,14976,25600 ,2,14977,93260 ,2,14965,45 ,2,14978,45 ,2,14979,338935 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,207015 ,2,822,35925 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,157925 ,2,14979,372610 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,206975 ,2,822,35925 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235295 ,2,14979,338955 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,211025 ,2,822,35925 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377945 ,2,829,45 ,1,0,100 ,1,1,611120 ,1,2,599900 ,2,14956,206975 ,2,822,35925 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,157925 ,2,14979,372415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,263540 ,2,822,35925 ,2,14975,579575 ,2,14976,24020 ,2,14977,93315 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,611165 ,1,2,599900 ,2,14956,2855 ,2,822,35935 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415440 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211210 ,2,822,35965 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369780 ,2,829,45 ,1,0,100 ,1,1,568430 ,2,14956,263610 ,2,822,35965 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,338975 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,203365 ,1,3,203375 ,2,14956,263620 ,2,822,35965 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,559345 ,1,2,599970 ,1,3,599970 ,2,14956,263630 ,2,822,35965 ,2,14975,579610 ,2,14976,23450 ,2,14977,93380 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211210 ,2,822,35975 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369770 ,2,829,45 ,1,0,100 ,1,1,608845 ,2,14956,263650 ,2,822,35975 ,2,14975,579615 ,2,14976,23130 ,2,14977,92495 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,2,14956,207015 ,2,822,35985 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,158055 ,2,14979,372655 ,2,829,45 ,1,0,100 ,2,14956,206975 ,2,822,35985 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,235305 ,2,14979,339030 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,210935 ,2,822,35985 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371385 ,2,829,45 ,1,0,100 ,1,1,610715 ,1,2,610710 ,2,14956,211025 ,2,822,35985 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377985 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,213385 ,2,822,35985 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363540 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,206975 ,2,822,35985 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,158055 ,2,14979,372450 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263700 ,2,822,35985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339040 ,2,829,45 ,1,0,100 ,1,1,599905 ,2,14956,263720 ,2,822,35985 ,2,14975,579620 ,2,14976,24020 ,2,14977,93455 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,211210 ,2,822,25595 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,369720 ,2,829,45 ,1,0,100 ,1,1,599905 ,2,14956,263760 ,2,822,25595 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409945 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263795 ,2,822,25595 ,2,14975,569690 ,2,14976,23450 ,2,14977,93485 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,606160 ,2,14956,217015 ,2,822,35995 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379680 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,35995 ,2,14975,579630 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378945 ,2,829,45 ,1,0,100 ,1,1,607385 ,2,14956,211235 ,2,822,35995 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260385 ,2,14979,411575 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217240 ,2,822,36005 ,2,14975,579710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339065 ,2,829,45 ,1,0,100 ,1,1,606235 ,2,14956,264040 ,2,822,36060 ,2,14975,579710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260395 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,264020 ,2,822,52725 ,2,14975,579710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260395 ,2,14979,339075 ,2,829,45 ,1,0,100 ,1,1,609145 ,2,14956,263980 ,2,822,36015 ,2,14975,579680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339095 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,235850 ,2,822,36025 ,2,14975,565100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394075 ,2,829,45 ,1,0,100 ,1,1,607400 ,2,14956,263835 ,2,822,36025 ,2,14975,579685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,2855 ,2,822,36035 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392100 ,2,829,45 ,1,0,100 ,1,1,599945 ,2,14956,263855 ,2,822,36035 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,158335 ,2,14979,339120 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263855 ,2,822,36035 ,2,14975,599880 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,235315 ,2,14979,339130 ,2,829,45 ,1,0,100 ,1,1,599945 ,2,14956,263910 ,2,822,36035 ,2,14975,565160 ,2,14976,23450 ,2,14977,93655 ,2,14965,45 ,2,14978,45 ,2,14979,339140 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,263960 ,2,822,36015 ,2,14975,579705 ,2,14976,23450 ,2,14977,23360 ,2,14965,550660 ,2,14978,45 ,2,14979,339150 ,2,829,45 ,1,0,100 ,1,1,609155 ,2,14956,263910 ,2,822,36015 ,2,14975,565160 ,2,14976,23450 ,2,14977,93655 ,2,14965,45 ,2,14978,45 ,2,14979,339170 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,264010 ,2,822,36060 ,2,14975,579710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,339085 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,182390 ,2,822,36070 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384290 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,227050 ,2,822,36070 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260405 ,2,14979,381780 ,2,829,45 ,1,0,100 ,1,1,606825 ,1,2,599945 ,2,14956,217015 ,2,822,36080 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379685 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,215285 ,2,822,36080 ,2,14975,579740 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378950 ,2,829,45 ,1,0,100 ,1,1,611250 ,1,2,599945 ,2,14956,217015 ,2,822,36090 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379850 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36090 ,2,14975,579750 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379150 ,2,829,45 ,1,0,100 ,1,1,608850 ,2,14956,217015 ,2,822,36105 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379720 ,2,829,45 ,1,0,167060 ,2,14956,215285 ,2,822,36105 ,2,14975,579760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378985 ,2,829,45 ,1,0,100 ,2,14956,227050 ,2,822,36105 ,2,14975,571215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260415 ,2,14979,412400 ,2,829,45 ,1,0,167060 ,2,14956,264135 ,2,822,36115 ,2,14975,579765 ,2,14976,35640 ,2,14977,93890 ,2,14965,45 ,2,14978,45 ,2,14979,339275 ,2,829,45 ,1,0,100 ,2,14956,248490 ,2,822,36125 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388225 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217015 ,2,822,36135 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379730 ,2,829,45 ,1,0,100 ,1,1,568430 ,1,2,560975 ,2,14956,215285 ,2,822,36135 ,2,14975,579800 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379005 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,264175 ,2,822,36170 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371840 ,2,829,45 ,1,0,100 ,1,1,599900 ,1,2,599900 ,2,14956,217015 ,2,822,36170 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379590 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,1,4,167050 ,1,5,167050 ,2,14956,215285 ,2,822,36170 ,2,14975,579810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378865 ,2,829,45 ,1,0,100 ,1,1,560465 ,1,2,560510 ,1,3,560465 ,1,4,560765 ,1,5,560945 ,2,14956,233075 ,2,822,36170 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260425 ,2,14979,415450 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217015 ,2,822,36180 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379650 ,2,829,45 ,1,0,100 ,1,1,609340 ,1,2,609340 ,2,14956,215285 ,2,822,36180 ,2,14975,579820 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378910 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217455 ,2,822,36190 ,2,14975,579830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384910 ,2,829,45 ,1,0,100 ,1,1,581385 ,2,14956,213590 ,2,822,36190 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260435 ,2,14979,413330 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,182390 ,2,822,36200 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384295 ,2,829,45 ,1,0,100 ,1,1,599905 ,2,14956,213590 ,2,822,36200 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260445 ,2,14979,413010 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,36215 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379670 ,2,829,45 ,1,0,100 ,1,1,599905 ,2,14956,215285 ,2,822,36215 ,2,14975,579875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378925 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,36225 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379655 ,2,829,45 ,1,0,100 ,1,1,566460 ,2,14956,215285 ,2,822,36225 ,2,14975,579885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378915 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,36235 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379585 ,2,829,45 ,1,0,100 ,1,1,566520 ,2,14956,215285 ,2,822,36235 ,2,14975,579895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378860 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,1,3,167050 ,2,14956,217015 ,2,822,36245 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379615 ,2,829,45 ,1,0,100 ,1,1,599940 ,1,2,599940 ,1,3,599940 ,2,14956,215285 ,2,822,36245 ,2,14975,579935 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378885 ,2,829,45 ,1,0,167060 ,2,14956,264285 ,2,822,36245 ,2,14975,579930 ,2,14976,25600 ,2,14977,94190 ,2,14965,45 ,2,14978,45 ,2,14979,339385 ,2,829,45 ,1,0,100 ,2,14956,218310 ,2,822,36245 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260465 ,2,14979,410250 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36290 ,2,14975,579945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379000 ,2,829,45 ,1,0,100 ,1,1,570750 ,2,14956,211025 ,2,822,36300 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377920 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,184890 ,2,822,36300 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339415 ,2,829,45 ,1,0,100 ,1,1,597265 ,1,2,597485 ,2,14956,264335 ,2,822,36300 ,2,14975,579955 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,248490 ,2,822,36310 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388235 ,2,829,45 ,1,0,100 ,1,1,607575 ,2,14956,264355 ,2,822,36310 ,2,14975,579970 ,2,14976,36360 ,2,14977,94280 ,2,14965,45 ,2,14978,45 ,2,14979,339450 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217015 ,2,822,36320 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379725 ,2,829,45 ,1,0,100 ,1,1,610845 ,1,2,610845 ,2,14956,215285 ,2,822,36320 ,2,14975,580020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378990 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,264375 ,2,822,36320 ,2,14975,580015 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,100 ,1,1,606235 ,2,14956,217015 ,2,822,36345 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379660 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36345 ,2,14975,580030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378920 ,2,829,45 ,1,0,100 ,1,1,566535 ,2,14956,218310 ,2,822,36345 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260475 ,2,14979,410275 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36365 ,2,14975,580050 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379055 ,2,829,45 ,1,0,100 ,1,1,607625 ,2,14956,217015 ,2,822,36375 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379710 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36375 ,2,14975,580070 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378975 ,2,829,45 ,1,0,100 ,1,1,609595 ,2,14956,264445 ,2,822,36375 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339520 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,36395 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379605 ,2,829,45 ,1,0,100 ,1,1,608490 ,2,14956,215285 ,2,822,36395 ,2,14975,580080 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378875 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,173980 ,2,822,36405 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386780 ,2,829,45 ,1,0,100 ,1,1,599895 ,2,14956,217015 ,2,822,36405 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379675 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,264475 ,2,822,36405 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339565 ,2,829,45 ,1,0,100 ,1,1,611500 ,2,14956,215285 ,2,822,36405 ,2,14975,579630 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378940 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217015 ,2,822,36415 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379740 ,2,829,45 ,1,0,100 ,1,1,599945 ,1,2,599945 ,2,14956,264495 ,2,822,36415 ,2,14975,568845 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339575 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36415 ,2,14975,580095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379015 ,2,829,45 ,1,0,100 ,1,1,610300 ,2,14956,264540 ,2,822,36415 ,2,14975,580100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260485 ,2,14979,416345 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215640 ,2,822,36425 ,2,14975,580140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373590 ,2,829,45 ,1,0,100 ,1,1,599895 ,2,14956,264560 ,2,822,36425 ,2,14975,580105 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,36455 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379645 ,2,829,45 ,1,0,100 ,1,1,599895 ,2,14956,215285 ,2,822,36455 ,2,14975,580155 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378895 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,217015 ,2,822,36465 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379775 ,2,829,45 ,1,0,100 ,1,1,607385 ,2,14956,215285 ,2,822,36465 ,2,14975,580165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379070 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215350 ,2,822,36475 ,2,14975,580190 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386585 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,217015 ,2,822,36475 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379705 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,215285 ,2,822,36475 ,2,14975,580195 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378955 ,2,829,45 ,1,0,100 ,1,1,599975 ,2,14956,182390 ,2,822,36505 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384300 ,2,829,45 ,1,0,167060 ,1,1,167050 ,1,2,167050 ,2,14956,217015 ,2,822,36525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379620 ,2,829,45 ,1,0,100 ,1,1,599880 ,1,2,593415 ,2,14956,215285 ,2,822,36525 ,2,14975,580225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378890 ,2,829,45 ,1,0,167060 ,1,1,167050 ,2,14956,182390 ,2,822,36535 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384285 ,2,829,45 ,1,0,100 ,1,1,561515 ,2,14956,213590 ,2,822,36535 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260495 ,2,14979,413005 ,2,829,45 ,1,0,668185 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,241340 ,1,8,207820 ,1,9,65 ,1,10,206545 ,1,11,65 ,1,12,65 ,1,13,243230 ,1,14,245970 ,1,15,299705 ,1,16,283500 ,1,17,235850 ,1,18,65 ,1,19,264690 ,1,20,256145 ,1,21,65 ,1,22,333290 ,1,23,258355 ,1,24,65 ,1,25,65 ,1,26,293400 ,1,27,65 ,1,28,182140 ,1,29,65 ,1,30,272255 ,1,31,65 ,1,32,65 ,1,33,65 ,1,34,188315 ,1,35,65 ,1,36,256065 ,1,37,65 ,1,38,65 ,1,39,203325 ,1,40,65 ,1,41,206815 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,65 ,1,49,65 ,1,50,176355 ,1,51,338395 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,188470 ,1,56,269105 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,65 ,1,66,65 ,1,67,255795 ,1,68,65 ,1,69,65 ,1,70,65 ,1,71,65 ,1,72,287845 ,1,73,65 ,1,74,65 ,1,75,65 ,1,76,65 ,1,77,65 ,1,78,65 ,1,79,65 ,1,80,182900 ,1,81,65 ,1,82,65 ,1,83,187915 ,1,84,295755 ,1,85,312070 ,1,86,221980 ,1,87,346545 ,1,88,169680 ,1,89,297815 ,1,90,65 ,1,91,195370 ,1,92,267990 ,1,93,226545 ,1,94,65 ,1,95,65 ,1,96,65 ,1,97,309380 ,1,98,247085 ,1,99,65 ,1,100,65 ,1,101,65 ,1,102,320290 ,1,103,65 ,1,104,65 ,1,105,351670 ,1,106,65 ,1,107,65 ,1,108,65 ,1,109,65 ,1,110,248140 ,1,111,351870 ,1,112,65 ,1,113,253340 ,1,114,65 ,1,115,283325 ,1,116,263335 ,1,117,296805 ,1,118,65 ,1,119,235955 ,1,120,65 ,1,121,184015 ,1,122,251285 ,1,123,65 ,1,124,217975 ,1,125,65 ,1,126,183920 ,1,127,65 ,1,128,184760 ,1,129,65 ,1,130,166795 ,1,131,65 ,1,132,65 ,1,133,65 ,1,134,65 ,1,135,65 ,1,136,306345 ,1,137,167195 ,1,138,65 ,1,139,65 ,1,140,65 ,1,141,65 ,1,142,65 ,1,143,65 ,1,144,188945 ,1,145,298355 ,1,146,65 ,1,147,65 ,1,148,65 ,1,149,65 ,1,150,65 ,1,151,65 ,1,152,65 ,1,153,65 ,1,154,65 ,1,155,321455 ,1,156,65 ,1,157,65 ,1,158,65 ,1,159,196970 ,1,160,65 ,1,161,65 ,1,162,65 ,1,163,168290 ,1,164,297335 ,1,165,65 ,1,166,246340 ,1,167,65 ,1,168,267050 ,1,169,65 ,1,170,292945 ,1,171,65 ,1,172,271990 ,1,173,65 ,1,174,235685 ,1,175,65 ,1,176,65 ,1,177,65 ,1,178,65 ,1,179,65 ,1,180,190530 ,1,181,170275 ,1,182,65 ,1,183,335190 ,1,184,297615 ,1,185,65 ,1,186,193920 ,1,187,270225 ,1,188,65 ,1,189,65 ,1,190,65 ,1,191,241255 ,1,192,248115 ,1,193,65 ,1,194,65 ,1,195,65 ,1,196,65 ,1,197,65 ,1,198,192610 ,1,199,65 ,1,200,298195 ,1,201,65 ,1,202,217630 ,1,203,183650 ,1,204,338190 ,1,205,215340 ,1,206,65 ,1,207,169690 ,1,208,337950 ,1,209,65 ,1,210,312560 ,1,211,252485 ,1,212,270695 ,1,213,246765 ,1,214,277070 ,1,215,65 ,1,216,65 ,1,217,65 ,1,218,232335 ,1,219,291355 ,1,220,217195 ,1,221,245485 ,1,222,65 ,1,223,65 ,1,224,330260 ,1,225,314960 ,1,226,258960 ,1,227,201270 ,1,228,227580 ,1,229,303700 ,1,230,65 ,1,231,270765 ,1,232,65 ,1,233,65 ,1,234,65 ,1,235,65 ,1,236,65 ,1,237,166975 ,1,238,261225 ,1,239,264580 ,1,240,65 ,1,241,65 ,1,242,65 ,1,243,248795 ,1,244,65 ,1,245,65 ,1,246,65 ,1,247,65 ,1,248,65 ,1,249,65 ,1,250,65 ,1,251,65 ,1,252,65 ,1,253,65 ,1,254,259950 ,1,255,65 ,1,256,65 ,1,257,65 ,1,258,65 ,1,259,65 ,1,260,65 ,1,261,65 ,1,262,65 ,1,263,65 ,1,264,65 ,1,265,65 ,1,266,65 ,1,267,342785 ,1,268,327275 ,1,269,65 ,1,270,65 ,1,271,65 ,1,272,191500 ,1,273,288350 ,1,274,266870 ,1,275,65 ,1,276,283695 ,1,277,236420 ,1,278,65 ,1,279,328260 ,1,280,65 ,1,281,335475 ,1,282,65 ,1,283,65 ,1,284,65 ,1,285,65 ,1,286,65 ,1,287,250020 ,1,288,65 ,1,289,65 ,1,290,341870 ,1,291,204420 ,1,292,65 ,1,293,299215 ,1,294,267330 ,1,295,65 ,1,296,65 ,1,297,65 ,1,298,201675 ,1,299,65 ,1,300,236225 ,1,301,316980 ,1,302,309055 ,1,303,65 ,1,304,351660 ,1,305,65 ,1,306,65 ,1,307,65 ,1,308,65 ,1,309,65 ,1,310,65 ,1,311,204680 ,1,312,308300 ,1,313,65 ,1,314,65 ,1,315,65 ,1,316,65 ,1,317,255525 ,1,318,65 ,1,319,226355 ,1,320,338855 ,1,321,258030 ,1,322,228335 ,1,323,203625 ,1,324,65 ,1,325,319065 ,1,326,283015 ,1,327,65 ,1,328,221990 ,1,329,65 ,1,330,226955 ,1,331,219705 ,1,332,292885 ,1,333,285995 ,1,334,65 ,1,335,65 ,1,336,192960 ,1,337,253175 ,1,338,65 ,1,339,65 ,1,340,65 ,1,341,65 ,1,342,65 ,1,343,65 ,1,344,237730 ,1,345,65 ,1,346,307495 ,1,347,242800 ,1,348,221835 ,1,349,65 ,1,350,65 ,1,351,333055 ,1,352,65 ,1,353,304390 ,1,354,295360 ,1,355,65 ,1,356,333105 ,1,357,65 ,1,358,233600 ,1,359,187330 ,1,360,65 ,1,361,212585 ,1,362,65 ,1,363,65 ,1,364,65 ,1,365,65 ,1,366,351650 ,1,367,65 ,1,368,65 ,1,369,333680 ,1,370,211985 ,1,371,65 ,1,372,323295 ,1,373,65 ,1,374,65 ,1,375,346965 ,1,376,65 ,1,377,65 ,1,378,65 ,1,379,65 ,1,380,65 ,1,381,208625 ,1,382,261115 ,1,383,65 ,1,384,65 ,1,385,65 ,1,386,65 ,1,387,65 ,1,388,186435 ,1,389,314575 ,1,390,304215 ,1,391,65 ,1,392,341490 ,1,393,65 ,1,394,65 ,1,395,339100 ,1,396,324450 ,1,397,341425 ,1,398,65 ,1,399,312495 ,1,400,65 ,1,401,65 ,1,402,65 ,1,403,241555 ,1,404,65 ,1,405,202240 ,1,406,281265 ,1,407,65 ,1,408,232300 ,1,409,65 ,1,410,65 ,1,411,213260 ,1,412,318615 ,1,413,65 ,1,414,275965 ,1,415,65 ,1,416,65 ,1,417,65 ,1,418,65 ,1,419,65 ,1,420,170455 ,1,421,292790 ,1,422,65 ,1,423,65 ,1,424,65 ,1,425,335070 ,1,426,289895 ,1,427,176915 ,1,428,65 ,1,429,232240 ,1,430,65 ,1,431,177685 ,1,432,342865 ,1,433,65 ,1,434,65 ,1,435,65 ,1,436,188250 ,1,437,65 ,1,438,65 ,1,439,65 ,1,440,65 ,1,441,65 ,1,442,65 ,1,443,65 ,1,444,65 ,1,445,65 ,1,446,65 ,1,447,249795 ,1,448,292700 ,1,449,351615 ,1,450,303460 ,1,451,65 ,1,452,184340 ,1,453,276660 ,1,454,65 ,1,455,65 ,1,456,65 ,1,457,65 ,1,458,65 ,1,459,166455 ,1,460,246455 ,1,461,320015 ,1,462,305815 ,1,463,65 ,1,464,65 ,1,465,243885 ,1,466,65 ,1,467,65 ,1,468,234430 ,1,469,65 ,1,470,257355 ,1,471,65 ,1,472,219770 ,1,473,65 ,1,474,229135 ,1,475,65 ,1,476,65 ,1,477,65 ,1,478,65 ,1,479,65 ,1,480,65 ,1,481,322550 ,1,482,194755 ,1,483,205250 ,1,484,65 ,1,485,209940 ,1,486,65 ,1,487,65 ,1,488,65 ,1,489,65 ,1,490,65 ,1,491,65 ,1,492,329870 ,1,493,65 ,1,494,65 ,1,495,65 ,1,496,302425 ,1,497,241020 ,1,498,337110 ,1,499,341180 ,1,500,65 ,1,501,65 ,1,502,333245 ,1,503,65 ,1,504,65 ,1,505,65 ,1,506,65 ,1,507,65 ,1,508,287745 ,1,509,65 ,1,510,200725 ,1,511,65 ,1,512,65 ,1,513,65 ,1,514,65 ,1,515,262860 ,1,516,65 ,1,517,186005 ,1,518,65 ,1,519,171175 ,1,520,296190 ,1,521,272225 ,1,522,65 ,1,523,65 ,1,524,269135 ,1,525,229620 ,1,526,65 ,1,527,65 ,1,528,65 ,1,529,312290 ,1,530,336650 ,1,531,221390 ,1,532,321715 ,1,533,65 ,1,534,65 ,1,535,65 ,1,536,65 ,1,537,65 ,1,538,65 ,1,539,65 ,1,540,65 ,1,541,65 ,1,542,334550 ,1,543,65 ,1,544,254475 ,1,545,212155 ,1,546,65 ,1,547,65 ,1,548,327370 ,1,549,65 ,1,550,65 ,1,551,65 ,1,552,65 ,1,553,65 ,1,554,65 ,1,555,65 ,1,556,256045 ,1,557,65 ,1,558,221590 ,1,559,207130 ,1,560,65 ,1,561,65 ,1,562,65 ,1,563,65 ,1,564,65 ,1,565,65 ,1,566,266985 ,1,567,65 ,1,568,172775 ,1,569,272730 ,1,570,65 ,1,571,65 ,1,572,65 ,1,573,65 ,1,574,199365 ,1,575,65 ,1,576,65 ,1,577,65 ,1,578,65 ,1,579,65 ,1,580,331565 ,1,581,65 ,1,582,346010 ,1,583,343965 ,1,584,268310 ,1,585,342020 ,1,586,351605 ,1,587,291645 ,1,588,65 ,1,589,65 ,1,590,65 ,1,591,65 ,1,592,65 ,1,593,65 ,1,594,65 ,1,595,65 ,1,596,65 ,1,597,320535 ,1,598,319815 ,1,599,287630 ,1,600,318365 ,1,601,65 ,1,602,65 ,1,603,65 ,1,604,201080 ,1,605,192395 ,1,606,226810 ,1,607,65 ,1,608,65 ,1,609,65 ,1,610,65 ,1,611,226040 ,1,612,267100 ,1,613,65 ,1,614,65 ,1,615,65 ,1,616,65 ,1,617,344175 ,1,618,65 ,1,619,275910 ,1,620,65 ,1,621,311250 ,1,622,65 ,1,623,65 ,1,624,65 ,1,625,254465 ,1,626,65 ,1,627,65 ,1,628,65 ,1,629,65 ,1,630,278200 ,1,631,65 ,1,632,65 ,1,633,340895 ,1,634,249335 ,1,635,259790 ,1,636,285270 ,1,637,65 ,1,638,65 ,1,639,268725 ,1,640,253370 ,1,641,170095 ,1,642,336885 ,1,643,324460 ,1,644,65 ,1,645,311410 ,1,646,65 ,1,647,65 ,1,648,224125 ,1,649,65 ,1,650,215195 ,1,651,271065 ,1,652,65 ,1,653,325850 ,1,654,65 ,1,655,65 ,1,656,65 ,1,657,240050 ,1,658,65 ,1,659,65 ,1,660,65 ,1,661,65 ,1,662,65 ,1,663,65 ,1,664,193295 ,1,665,65 ,1,666,65 ,1,667,65 ,1,668,322255 ,1,669,65 ,1,670,65 ,1,671,214410 ,1,672,192920 ,1,673,65 ,1,674,65 ,1,675,65 ,1,676,65 ,1,677,65 ,1,678,65 ,1,679,65 ,1,680,65 ,1,681,65 ,1,682,65 ,1,683,246580 ,1,684,65 ,1,685,285210 ,1,686,65 ,1,687,65 ,1,688,252980 ,1,689,65 ,1,690,65 ,1,691,65 ,1,692,304495 ,1,693,302600 ,1,694,65 ,1,695,65 ,1,696,198460 ,1,697,245830 ,1,698,65 ,1,699,313670 ,1,700,65 ,1,701,65 ,1,702,65 ,1,703,282730 ,1,704,286330 ,1,705,65 ,1,706,65 ,1,707,65 ,1,708,65 ,1,709,65 ,1,710,65 ,1,711,299430 ,1,712,292280 ,1,713,196405 ,1,714,278940 ,1,715,65 ,1,716,65 ,1,717,65 ,1,718,65 ,1,719,65 ,1,720,65 ,1,721,65 ,1,722,266680 ,1,723,65 ,1,724,346975 ,1,725,65 ,1,726,65 ,1,727,65 ,1,728,65 ,1,729,268485 ,1,730,65 ,1,731,65 ,1,732,227160 ,1,733,65 ,1,734,65 ,1,735,228870 ,1,736,248840 ,1,737,200580 ,1,738,258515 ,1,739,65 ,1,740,302250 ,1,741,65 ,1,742,65 ,1,743,65 ,1,744,65 ,1,745,65 ,1,746,269340 ,1,747,343920 ,1,748,65 ,1,749,65 ,1,750,325810 ,1,751,325990 ,1,752,229740 ,1,753,226590 ,1,754,278415 ,1,755,320935 ,1,756,330715 ,1,757,317075 ,1,758,167205 ,1,759,214335 ,1,760,172265 ,1,761,220215 ,1,762,65 ,1,763,65 ,1,764,249355 ,1,765,65 ,1,766,198045 ,1,767,65 ,1,768,65 ,1,769,312725 ,1,770,351595 ,1,771,65 ,1,772,65 ,1,773,331595 ,1,774,65 ,1,775,65 ,1,776,307145 ,1,777,65 ,1,778,65 ,1,779,65 ,1,780,243005 ,1,781,65 ,1,782,65 ,1,783,284360 ,1,784,65 ,1,785,65 ,1,786,65 ,1,787,309660 ,1,788,271945 ,1,789,65 ,1,790,65 ,1,791,65 ,1,792,65 ,1,793,65 ,1,794,301145 ,1,795,65 ,1,796,65 ,1,797,65 ,1,798,65 ,1,799,65 ,1,800,206195 ,1,801,65 ,1,802,326085 ,1,803,315620 ,1,804,301665 ,1,805,307050 ,1,806,293430 ,1,807,306990 ,1,808,322750 ,1,809,269185 ,1,810,65 ,1,811,237950 ,1,812,296330 ,1,813,244480 ,1,814,65 ,1,815,65 ,1,816,314780 ,1,817,65 ,1,818,65 ,1,819,272960 ,1,820,65 ,1,821,65 ,1,822,65 ,1,823,65 ,1,824,65 ,1,825,65 ,1,826,65 ,1,827,65 ,1,828,65 ,1,829,275035 ,1,830,65 ,1,831,65 ,1,832,65 ,1,833,65 ,1,834,65 ,1,835,65 ,1,836,284815 ,1,837,65 ,1,838,65 ,1,839,65 ,1,840,172150 ,1,841,65 ,1,842,294180 ,1,843,65 ,1,844,65 ,1,845,173195 ,1,846,175700 ,1,847,65 ,1,848,218745 ,1,849,286420 ,1,850,243260 ,1,851,319965 ,1,852,65 ,1,853,65 ,1,854,65 ,1,855,266085 ,1,856,183765 ,1,857,318055 ,1,858,258930 ,1,859,327685 ,1,860,65 ,1,861,65 ,1,862,65 ,1,863,65 ,1,864,185850 ,1,865,65 ,1,866,65 ,1,867,314460 ,1,868,65 ,1,869,334325 ,1,870,65 ,1,871,65 ,1,872,65 ,1,873,65 ,1,874,65 ,1,875,261520 ,1,876,65 ,1,877,65 ,1,878,177935 ,1,879,306865 ,1,880,198470 ,1,881,265250 ,1,882,232635 ,1,883,65 ,1,884,239160 ,1,885,303650 ,1,886,65 ,1,887,206290 ,1,888,65 ,1,889,65 ,1,890,180250 ,1,891,302025 ,1,892,65 ,1,893,287055 ,1,894,65 ,1,895,65 ,1,896,251825 ,1,897,65 ,1,898,65 ,1,899,65 ,1,900,65 ,1,901,281725 ,1,902,65 ,1,903,65 ,1,904,65 ,1,905,65 ,1,906,65 ,1,907,65 ,1,908,65 ,1,909,209880 ,1,910,171065 ,1,911,267350 ,1,912,65 ,1,913,65 ,1,914,65 ,1,915,65 ,1,916,65 ,1,917,65 ,1,918,65 ,1,919,65 ,1,920,252505 ,1,921,65 ,1,922,65 ,1,923,233725 ,1,924,65 ,1,925,65 ,1,926,305505 ,1,927,227590 ,1,928,218735 ,1,929,65 ,1,930,65 ,1,931,65 ,1,932,65 ,1,933,65 ,1,934,314980 ,1,935,224090 ,1,936,65 ,1,937,65 ,1,938,65 ,1,939,329850 ,1,940,185335 ,1,941,327800 ,1,942,65 ,1,943,65 ,1,944,65 ,1,945,283645 ,1,946,207610 ,1,947,294590 ,1,948,212490 ,1,949,65 ,1,950,328105 ,1,951,65 ,1,952,214825 ,1,953,270115 ,1,954,65 ,1,955,65 ,1,956,281505 ,1,957,65 ,1,958,65 ,1,959,65 ,1,960,230675 ,1,961,65 ,1,962,290530 ,1,963,65 ,1,964,296905 ,1,965,257680 ,1,966,65 ,1,967,65 ,1,968,65 ,1,969,327840 ,1,970,65 ,1,971,65 ,1,972,307170 ,1,973,300705 ,1,974,65 ,1,975,65 ,1,976,65 ,1,977,65 ,1,978,65 ,1,979,269240 ,1,980,65 ,1,981,191005 ,1,982,253460 ,1,983,65 ,1,984,65 ,1,985,184850 ,1,986,65 ,1,987,230455 ,1,988,65 ,1,989,277050 ,1,990,174045 ,1,991,65 ,1,992,65 ,1,993,278695 ,1,994,225660 ,1,995,65 ,1,996,65 ,1,997,65 ,1,998,351800 ,1,999,65 ,1,1000,65 ,1,1001,65 ,1,1002,65 ,1,1003,65 ,1,1004,65 ,1,1005,327900 ,1,1006,65 ,1,1007,197810 ,1,1008,233125 ,1,1009,65 ,1,1010,65 ,1,1011,65 ,1,1012,65 ,1,1013,65 ,1,1014,316235 ,1,1015,65 ,1,1016,65 ,1,1017,65 ,1,1018,65 ,1,1019,65 ,1,1020,269360 ,1,1021,214645 ,1,1022,65 ,1,1023,173475 ,1,1024,267505 ,1,1025,277620 ,1,1026,65 ,1,1027,65 ,1,1028,259255 ,1,1029,177725 ,1,1030,213865 ,1,1031,65 ,1,1032,65 ,1,1033,65 ,1,1034,65 ,1,1035,248160 ,1,1036,195605 ,1,1037,65 ,1,1038,280670 ,1,1039,183880 ,1,1040,65 ,1,1041,65 ,1,1042,65 ,1,1043,65 ,1,1044,65 ,1,1045,65 ,1,1046,65 ,1,1047,65 ,1,1048,65 ,1,1049,201735 ,1,1050,65 ,1,1051,230090 ,1,1052,65 ,1,1053,179130 ,1,1054,304405 ,1,1055,65 ,1,1056,308755 ,1,1057,174495 ,1,1058,65 ,1,1059,65 ,1,1060,65 ,1,1061,185410 ,1,1062,273855 ,1,1063,269455 ,1,1064,65 ,1,1065,303820 ,1,1066,229580 ,1,1067,65 ,1,1068,65 ,1,1069,271235 ,1,1070,225140 ,1,1071,65 ,1,1072,65 ,1,1073,211660 ,1,1074,65 ,1,1075,65 ,1,1076,65 ,1,1077,65 ,1,1078,65 ,1,1079,328405 ,1,1080,65 ,1,1081,65 ,1,1082,172580 ,1,1083,279005 ,1,1084,297575 ,1,1085,274935 ,1,1086,65 ,1,1087,344330 ,1,1088,65 ,1,1089,317515 ,1,1090,320005 ,1,1091,65 ,1,1092,65 ,1,1093,65 ,1,1094,65 ,1,1095,179010 ,1,1096,65 ,1,1097,65 ,1,1098,310330 ,1,1099,195440 ,1,1100,65 ,1,1101,65 ,1,1102,172600 ,1,1103,65 ,1,1104,214755 ,1,1105,65 ,1,1106,259875 ,1,1107,315355 ,1,1108,65 ,1,1109,65 ,1,1110,65 ,1,1111,65 ,1,1112,174975 ,1,1113,65 ,1,1114,283355 ,1,1115,313185 ,1,1116,65 ,1,1117,65 ,1,1118,65 ,1,1119,65 ,1,1120,65 ,1,1121,65 ,1,1122,65 ,1,1123,65 ,1,1124,65 ,1,1125,65 ,1,1126,245885 ,1,1127,65 ,1,1128,65 ,1,1129,186300 ,1,1130,65 ,1,1131,65 ,1,1132,65 ,1,1133,65 ,1,1134,286825 ,1,1135,65 ,1,1136,65 ,1,1137,65 ,1,1138,285605 ,1,1139,336245 ,1,1140,65 ,1,1141,65 ,1,1142,65 ,1,1143,65 ,1,1144,65 ,1,1145,65 ,1,1146,65 ,1,1147,65 ,1,1148,287565 ,1,1149,177800 ,1,1150,257300 ,1,1151,226780 ,1,1152,65 ,1,1153,65 ,1,1154,65 ,1,1155,65 ,1,1156,182835 ,1,1157,65 ,1,1158,248590 ,1,1159,65 ,1,1160,65 ,1,1161,65 ,1,1162,207800 ,1,1163,65 ,1,1164,301935 ,1,1165,306540 ,1,1166,251630 ,1,1167,65 ,1,1168,65 ,1,1169,65 ,1,1170,65 ,1,1171,270540 ,1,1172,65 ,1,1173,65 ,1,1174,65 ,1,1175,231460 ,1,1176,65 ,1,1177,214225 ,1,1178,344655 ,1,1179,351585 ,1,1180,200435 ,1,1181,65 ,1,1182,238390 ,1,1183,223745 ,1,1184,65 ,1,1185,65 ,1,1186,178025 ,1,1187,330155 ,1,1188,193650 ,1,1189,65 ,1,1190,322740 ,1,1191,292990 ,1,1192,287890 ,1,1193,65 ,1,1194,250085 ,1,1195,65 ,1,1196,351575 ,1,1197,249695 ,1,1198,65 ,1,1199,65 ,1,1200,65 ,1,1201,65 ,1,1202,223330 ,1,1203,189455 ,1,1204,274510 ,1,1205,227965 ,1,1206,65 ,1,1207,65 ,1,1208,65 ,1,1209,65 ,1,1210,65 ,1,1211,291715 ,1,1212,65 ,1,1213,192690 ,1,1214,65 ,1,1215,65 ,1,1216,65 ,1,1217,65 ,1,1218,65 ,1,1219,65 ,1,1220,65 ,1,1221,65 ,1,1222,65 ,1,1223,65 ,1,1224,65 ,1,1225,65 ,1,1226,65 ,1,1227,181050 ,1,1228,206070 ,1,1229,214970 ,1,1230,259630 ,1,1231,65 ,1,1232,271400 ,1,1233,247805 ,1,1234,313345 ,1,1235,65 ,1,1236,184295 ,1,1237,185830 ,1,1238,65 ,1,1239,65 ,1,1240,65 ,1,1241,65 ,1,1242,65 ,1,1243,299310 ,1,1244,230365 ,1,1245,298305 ,1,1246,302375 ,1,1247,286275 ,1,1248,65 ,1,1249,343580 ,1,1250,65 ,1,1251,239750 ,1,1252,304245 ,1,1253,175285 ,1,1254,313970 ,1,1255,314045 ,1,1256,203480 ,1,1257,207140 ,1,1258,322570 ,1,1259,193810 ,1,1260,326590 ,1,1261,297785 ,1,1262,333910 ,1,1263,249345 ,1,1264,65 ,1,1265,338820 ,1,1266,228860 ,1,1267,232090 ,1,1268,65 ,1,1269,339465 ,1,1270,65 ,1,1271,295535 ,1,1272,65 ,1,1273,65 ,1,1274,278360 ,1,1275,351830 ,1,1276,65 ,1,1277,65 ,1,1278,65 ,1,1279,65 ,1,1280,321410 ,1,1281,176070 ,1,1282,297830 ,1,1283,256215 ,1,1284,65 ,1,1285,65 ,1,1286,65 ,1,1287,65 ,1,1288,65 ,1,1289,65 ,1,1290,65 ,1,1291,194860 ,1,1292,65 ,1,1293,65 ,1,1294,65 ,1,1295,65 ,1,1296,182410 ,1,1297,65 ,1,1298,237505 ,1,1299,251100 ,1,1300,234035 ,1,1301,205380 ,1,1302,252165 ,1,1303,280305 ,1,1304,351565 ,1,1305,278870 ,1,1306,65 ,1,1307,224315 ,1,1308,187460 ,1,1309,197300 ,1,1310,268130 ,1,1311,189920 ,1,1312,65 ,1,1313,65 ,1,1314,271075 ,1,1315,65 ,1,1316,65 ,1,1317,65 ,1,1318,65 ,1,1319,65 ,1,1320,296125 ,1,1321,329335 ,1,1322,65 ,1,1323,65 ,1,1324,65 ,1,1325,65 ,1,1326,65 ,1,1327,178170 ,1,1328,225670 ,1,1329,287065 ,1,1330,65 ,1,1331,325700 ,1,1332,327540 ,1,1333,296045 ,1,1334,65 ,1,1335,196160 ,1,1336,65 ,1,1337,65 ,1,1338,65 ,1,1339,65 ,1,1340,231490 ,1,1341,278995 ,1,1342,65 ,1,1343,345760 ,1,1344,183490 ,1,1345,65 ,1,1346,187190 ,1,1347,279915 ,1,1348,65 ,1,1349,65 ,1,1350,314145 ,1,1351,65 ,1,1352,65 ,1,1353,65 ,1,1354,189790 ,1,1355,183930 ,1,1356,65 ,1,1357,65 ,1,1358,65 ,1,1359,208565 ,1,1360,65 ,1,1361,334645 ,1,1362,169795 ,1,1363,285665 ,1,1364,332955 ,1,1365,256665 ,1,1366,65 ,1,1367,188325 ,1,1368,295240 ,1,1369,283980 ,1,1370,184385 ,1,1371,65 ,1,1372,275485 ,1,1373,65 ,1,1374,264070 ,1,1375,325315 ,1,1376,249995 ,1,1377,351555 ,1,1378,261885 ,1,1379,65 ,1,1380,227525 ,1,1381,65 ,1,1382,65 ,1,1383,291505 ,1,1384,65 ,1,1385,65 ,1,1386,65 ,1,1387,65 ,1,1388,310990 ,1,1389,65 ,1,1390,65 ,1,1391,188570 ,1,1392,65 ,1,1393,251225 ,1,1394,345375 ,1,1395,297365 ,1,1396,237040 ,1,1397,65 ,1,1398,65 ,1,1399,176490 ,1,1400,351545 ,1,1401,333010 ,1,1402,65 ,1,1403,65 ,1,1404,65 ,1,1405,65 ,1,1406,65 ,1,1407,65 ,1,1408,65 ,1,1409,65 ,1,1410,65 ,1,1411,65 ,1,1412,65 ,1,1413,65 ,1,1414,323720 ,1,1415,213475 ,1,1416,332635 ,1,1417,65 ,1,1418,65 ,1,1419,65 ,1,1420,65 ,1,1421,65 ,1,1422,177590 ,1,1423,202820 ,1,1424,65 ,1,1425,65 ,1,1426,327595 ,1,1427,308415 ,1,1428,182175 ,1,1429,316455 ,1,1430,65 ,1,1431,65 ,1,1432,65 ,1,1433,65 ,1,1434,206175 ,1,1435,184735 ,1,1436,65 ,1,1437,185300 ,1,1438,221690 ,1,1439,190040 ,1,1440,272850 ,1,1441,65 ,1,1442,65 ,1,1443,65 ,1,1444,65 ,1,1445,253995 ,1,1446,65 ,1,1447,65 ,1,1448,178000 ,1,1449,65 ,1,1450,65 ,1,1451,65 ,1,1452,321240 ,1,1453,65 ,1,1454,65 ,1,1455,65 ,1,1456,65 ,1,1457,220715 ,1,1458,65 ,1,1459,65 ,1,1460,65 ,1,1461,65 ,1,1462,65 ,1,1463,264275 ,1,1464,65 ,1,1465,65 ,1,1466,65 ,1,1467,65 ,1,1468,65 ,1,1469,65 ,1,1470,275750 ,1,1471,351520 ,1,1472,218605 ,1,1473,325115 ,1,1474,288780 ,1,1475,65 ,1,1476,330595 ,1,1477,65 ,1,1478,65 ,1,1479,198645 ,1,1480,282320 ,1,1481,65 ,1,1482,321145 ,1,1483,65 ,1,1484,65 ,1,1485,193025 ,1,1486,65 ,1,1487,282740 ,1,1488,327520 ,1,1489,272535 ,1,1490,167490 ,1,1491,277490 ,1,1492,65 ,1,1493,65 ,1,1494,65 ,1,1495,65 ,1,1496,65 ,1,1497,167895 ,1,1498,203455 ,1,1499,65 ,1,1500,65 ,1,1501,65 ,1,1502,65 ,1,1503,65 ,1,1504,172610 ,1,1505,65 ,1,1506,65 ,1,1507,65 ,1,1508,207295 ,1,1509,265285 ,1,1510,330425 ,1,1511,246705 ,1,1512,65 ,1,1513,65 ,1,1514,65 ,1,1515,65 ,1,1516,65 ,1,1517,65 ,1,1518,65 ,1,1519,65 ,1,1520,65 ,1,1521,65 ,1,1522,65 ,1,1523,65 ,1,1524,257800 ,1,1525,65 ,1,1526,65 ,1,1527,321360 ,1,1528,65 ,1,1529,65 ,1,1530,319010 ,1,1531,65 ,1,1532,65 ,1,1533,208215 ,1,1534,293815 ,1,1535,65 ,1,1536,65 ,1,1537,205350 ,1,1538,252595 ,1,1539,204775 ,1,1540,315335 ,1,1541,334540 ,1,1542,65 ,1,1543,323990 ,1,1544,306885 ,1,1545,65 ,1,1546,65 ,1,1547,65 ,1,1548,65 ,1,1549,65 ,1,1550,65 ,1,1551,319030 ,1,1552,225570 ,1,1553,317725 ,1,1554,206590 ,1,1555,65 ,1,1556,65 ,1,1557,65 ,1,1558,65 ,1,1559,170555 ,1,1560,65 ,1,1561,65 ,1,1562,65 ,1,1563,252615 ,1,1564,65 ,1,1565,65 ,1,1566,65 ,1,1567,65 ,1,1568,65 ,1,1569,65 ,1,1570,65 ,1,1571,332085 ,1,1572,278230 ,1,1573,65 ,1,1574,65 ,1,1575,65 ,1,1576,65 ,1,1577,65 ,1,1578,65 ,1,1579,65 ,1,1580,65 ,1,1581,195335 ,1,1582,281400 ,1,1583,202945 ,1,1584,65 ,1,1585,65 ,1,1586,65 ,1,1587,65 ,1,1588,65 ,1,1589,65 ,1,1590,228710 ,1,1591,65 ,1,1592,232525 ,1,1593,242255 ,1,1594,65 ,1,1595,65 ,1,1596,65 ,1,1597,65 ,1,1598,302525 ,1,1599,195895 ,1,1600,65 ,1,1601,65 ,1,1602,65 ,1,1603,234615 ,1,1604,179210 ,1,1605,65 ,1,1606,65 ,1,1607,343315 ,1,1608,65 ,1,1609,65 ,1,1610,65 ,1,1611,65 ,1,1612,307515 ,1,1613,65 ,1,1614,227555 ,1,1615,65 ,1,1616,247745 ,1,1617,65 ,1,1618,65 ,1,1619,65 ,1,1620,65 ,1,1621,345150 ,1,1622,65 ,1,1623,276945 ,1,1624,276385 ,1,1625,65 ,1,1626,343720 ,1,1627,65 ,1,1628,326445 ,1,1629,210290 ,1,1630,65 ,1,1631,264845 ,1,1632,65 ,1,1633,291015 ,1,1634,65 ,1,1635,65 ,1,1636,65 ,1,1637,65 ,1,1638,263580 ,1,1639,65 ,1,1640,65 ,1,1641,65 ,1,1642,213550 ,1,1643,65 ,1,1644,245715 ,1,1645,65 ,1,1646,182715 ,1,1647,220495 ,1,1648,65 ,1,1649,65 ,1,1650,65 ,1,1651,320995 ,1,1652,181715 ,1,1653,65 ,1,1654,311815 ,1,1655,193400 ,1,1656,65 ,1,1657,65 ,1,1658,65 ,1,1659,65 ,1,1660,65 ,1,1661,65 ,1,1662,65 ,1,1663,337130 ,1,1664,65 ,1,1665,65 ,1,1666,65 ,1,1667,229905 ,1,1668,290005 ,1,1669,65 ,1,1670,65 ,1,1671,329040 ,1,1672,259585 ,1,1673,267040 ,1,1674,65 ,1,1675,348495 ,1,1676,65 ,1,1677,65 ,1,1678,65 ,1,1679,289075 ,1,1680,211755 ,1,1681,65 ,1,1682,208765 ,1,1683,332975 ,1,1684,65 ,1,1685,261665 ,1,1686,65 ,1,1687,65 ,1,1688,216240 ,1,1689,245745 ,1,1690,65 ,1,1691,180865 ,1,1692,65 ,1,1693,65 ,1,1694,65 ,1,1695,168670 ,1,1696,269220 ,1,1697,285985 ,1,1698,328240 ,1,1699,65 ,1,1700,224070 ,1,1701,330210 ,1,1702,237740 ,1,1703,65 ,1,1704,343145 ,1,1705,65 ,1,1706,65 ,1,1707,65 ,1,1708,173035 ,1,1709,191320 ,1,1710,65 ,1,1711,330200 ,1,1712,65 ,1,1713,265655 ,1,1714,228600 ,1,1715,65 ,1,1716,65 ,1,1717,65 ,1,1718,277520 ,1,1719,65 ,1,1720,335170 ,1,1721,65 ,1,1722,65 ,1,1723,65 ,1,1724,65 ,1,1725,65 ,1,1726,65 ,1,1727,345395 ,1,1728,65 ,1,1729,65 ,1,1730,65 ,1,1731,65 ,1,1732,65 ,1,1733,299595 ,1,1734,291525 ,1,1735,291670 ,1,1736,65 ,1,1737,300250 ,1,1738,226200 ,1,1739,65 ,1,1740,225705 ,1,1741,65 ,1,1742,339780 ,1,1743,65 ,1,1744,65 ,1,1745,65 ,1,1746,65 ,1,1747,65 ,1,1748,65 ,1,1749,65 ,1,1750,231075 ,1,1751,65 ,1,1752,65 ,1,1753,65 ,1,1754,65 ,1,1755,65 ,1,1756,65 ,1,1757,65 ,1,1758,65 ,1,1759,169135 ,1,1760,65 ,1,1761,65 ,1,1762,65 ,1,1763,341625 ,1,1764,196345 ,1,1765,65 ,1,1766,217725 ,1,1767,65 ,1,1768,65 ,1,1769,255385 ,1,1770,65 ,1,1771,65 ,1,1772,65 ,1,1773,65 ,1,1774,65 ,1,1775,65 ,1,1776,65 ,1,1777,65 ,1,1778,65 ,1,1779,65 ,1,1780,65 ,1,1781,65 ,1,1782,65 ,1,1783,65 ,1,1784,65 ,1,1785,269550 ,1,1786,175825 ,1,1787,282555 ,1,1788,247785 ,1,1789,65 ,1,1790,65 ,1,1791,342815 ,1,1792,254345 ,1,1793,65 ,1,1794,305220 ,1,1795,288295 ,1,1796,65 ,1,1797,182245 ,1,1798,65 ,1,1799,206010 ,1,1800,225900 ,1,1801,65 ,1,1802,230200 ,1,1803,277910 ,1,1804,335495 ,1,1805,292540 ,1,1806,234355 ,1,1807,65 ,1,1808,65 ,1,1809,189035 ,1,1810,65 ,1,1811,225360 ,1,1812,65 ,1,1813,191880 ,1,1814,168430 ,1,1815,65 ,1,1816,65 ,1,1817,319865 ,1,1818,65 ,1,1819,65 ,1,1820,351510 ,1,1821,65 ,1,1822,65 ,1,1823,282780 ,1,1824,192385 ,1,1825,177125 ,1,1826,263960 ,1,1827,238260 ,1,1828,65 ,1,1829,198795 ,1,1830,65 ,1,1831,65 ,1,1832,65 ,1,1833,248500 ,1,1834,65 ,1,1835,208785 ,1,1836,65 ,1,1837,65 ,1,1838,251350 ,1,1839,65 ,1,1840,65 ,1,1841,65 ,1,1842,65 ,1,1843,65 ,1,1844,348620 ,1,1845,65 ,1,1846,176795 ,1,1847,302630 ,1,1848,65 ,1,1849,65 ,1,1850,65 ,1,1851,65 ,1,1852,289730 ,1,1853,275930 ,1,1854,65 ,1,1855,168460 ,1,1856,244840 ,1,1857,263200 ,1,1858,65 ,1,1859,65 ,1,1860,65 ,1,1861,65 ,1,1862,65 ,1,1863,65 ,1,1864,264365 ,1,1865,246560 ,1,1866,65 ,1,1867,191105 ,1,1868,65 ,1,1869,258220 ,1,1870,282220 ,1,1871,65 ,1,1872,170220 ,1,1873,236775 ,1,1874,65 ,1,1875,325635 ,1,1876,65 ,1,1877,65 ,1,1878,245090 ,1,1879,65 ,1,1880,65 ,1,1881,65 ,1,1882,65 ,1,1883,229170 ,1,1884,65 ,1,1885,188735 ,1,1886,65 ,1,1887,65 ,1,1888,65 ,1,1889,65 ,1,1890,65 ,1,1891,65 ,1,1892,65 ,1,1893,240840 ,1,1894,65 ,1,1895,65 ,1,1896,65 ,1,1897,220855 ,1,1898,65 ,1,1899,65 ,1,1900,65 ,1,1901,268475 ,1,1902,218370 ,1,1903,65 ,1,1904,65 ,1,1905,65 ,1,1906,65 ,1,1907,65 ,1,1908,65 ,1,1909,65 ,1,1910,65 ,1,1911,65 ,1,1912,171930 ,1,1913,65 ,1,1914,65 ,1,1915,225840 ,1,1916,187390 ,1,1917,65 ,1,1918,329645 ,1,1919,190565 ,1,1920,65 ,1,1921,65 ,1,1922,65 ,1,1923,65 ,1,1924,235655 ,1,1925,185225 ,1,1926,265915 ,1,1927,174985 ,1,1928,65 ,1,1929,65 ,1,1930,179520 ,1,1931,65 ,1,1932,65 ,1,1933,65 ,1,1934,332350 ,1,1935,65 ,1,1936,65 ,1,1937,65 ,1,1938,65 ,1,1939,292750 ,1,1940,297010 ,1,1941,65 ,1,1942,251835 ,1,1943,65 ,1,1944,233735 ,1,1945,264485 ,1,1946,65 ,1,1947,305090 ,1,1948,65 ,1,1949,218940 ,1,1950,299520 ,1,1951,65 ,1,1952,326655 ,1,1953,254025 ,1,1954,169960 ,1,1955,65 ,1,1956,65 ,1,1957,218785 ,1,1958,255625 ,1,1959,321850 ,1,1960,343430 ,1,1961,65 ,1,1962,65 ,1,1963,174350 ,1,1964,65 ,1,1965,65 ,1,1966,65 ,1,1967,65 ,1,1968,65 ,1,1969,65 ,1,1970,65 ,1,1971,65 ,1,1972,182890 ,1,1973,65 ,1,1974,184360 ,1,1975,172095 ,1,1976,65 ,1,1977,65 ,1,1978,174640 ,1,1979,65 ,1,1980,308505 ,1,1981,65 ,1,1982,65 ,1,1983,315145 ,1,1984,65 ,1,1985,342345 ,1,1986,65 ,1,1987,65 ,1,1988,65 ,1,1989,301985 ,1,1990,245920 ,1,1991,65 ,1,1992,65 ,1,1993,65 ,1,1994,65 ,1,1995,65 ,1,1996,65 ,1,1997,65 ,1,1998,65 ,1,1999,65 ,1,2000,172415 ,1,2001,237050 ,1,2002,297435 ,1,2003,247265 ,1,2004,65 ,1,2005,65 ,1,2006,65 ,1,2007,326475 ,1,2008,221515 ,1,2009,309090 ,1,2010,65 ,1,2011,65 ,1,2012,180665 ,1,2013,65 ,1,2014,65 ,1,2015,65 ,1,2016,65 ,1,2017,65 ,1,2018,65 ,1,2019,204000 ,1,2020,65 ,1,2021,65 ,1,2022,257550 ,1,2023,272180 ,1,2024,312530 ,1,2025,65 ,1,2026,190460 ,1,2027,277975 ,1,2028,65 ,1,2029,290540 ,1,2030,197055 ,1,2031,65 ,1,2032,65 ,1,2033,65 ,1,2034,65 ,1,2035,346355 ,1,2036,65 ,1,2037,65 ,1,2038,65 ,1,2039,290975 ,1,2040,65 ,1,2041,340505 ,1,2042,65 ,1,2043,283575 ,1,2044,224180 ,1,2045,257310 ,1,2046,65 ,1,2047,65 ,1,2048,337640 ,1,2049,65 ,1,2050,65 ,1,2051,302725 ,1,2052,177530 ,1,2053,65 ,1,2054,272720 ,1,2055,65 ,1,2056,258425 ,1,2057,285475 ,1,2058,214205 ,1,2059,169460 ,1,2060,310390 ,1,2061,246785 ,1,2062,65 ,1,2063,65 ,1,2064,65 ,1,2065,260535 ,1,2066,65 ,1,2067,65 ,1,2068,65 ,1,2069,65 ,1,2070,65 ,1,2071,65 ,1,2072,197480 ,1,2073,310100 ,1,2074,65 ,1,2075,65 ,1,2076,65 ,1,2077,65 ,1,2078,65 ,1,2079,65 ,1,2080,65 ,1,2081,65 ,1,2082,65 ,1,2083,65 ,1,2084,65 ,1,2085,217240 ,1,2086,249460 ,1,2087,65 ,1,2088,65 ,1,2089,65 ,1,2090,65 ,1,2091,315775 ,1,2092,65 ,1,2093,65 ,1,2094,65 ,1,2095,65 ,1,2096,65 ,1,2097,239350 ,1,2098,203700 ,1,2099,65 ,1,2100,65 ,1,2101,65 ,1,2102,255995 ,1,2103,321230 ,1,2104,65 ,1,2105,65 ,1,2106,251120 ,1,2107,65 ,1,2108,65 ,1,2109,65 ,1,2110,273750 ,1,2111,216220 ,1,2112,334720 ,1,2113,65 ,1,2114,65 ,1,2115,65 ,1,2116,65 ,1,2117,351500 ,1,2118,65 ,1,2119,65 ,1,2120,65 ,1,2121,65 ,1,2122,65 ,1,2123,180990 ,1,2124,65 ,1,2125,65 ,1,2126,65 ,1,2127,65 ,1,2128,65 ,1,2129,260820 ,1,2130,218625 ,1,2131,65 ,1,2132,65 ,1,2133,295820 ,1,2134,201745 ,1,2135,65 ,1,2136,351490 ,1,2137,180875 ,1,2138,175360 ,1,2139,294850 ,1,2140,197620 ,1,2141,65 ,1,2142,257335 ,1,2143,335545 ,1,2144,65 ,1,2145,274095 ,1,2146,65 ,1,2147,65 ,1,2148,65 ,1,2149,304075 ,1,2150,182995 ,1,2151,65 ,1,2152,344980 ,1,2153,170810 ,1,2154,276765 ,1,2155,351480 ,1,2156,65 ,1,2157,65 ,1,2158,326805 ,1,2159,65 ,1,2160,225945 ,1,2161,199710 ,1,2162,293625 ,1,2163,339125 ,1,2164,243090 ,1,2165,65 ,1,2166,215955 ,1,2167,262700 ,1,2168,215890 ,1,2169,65 ,1,2170,65 ,1,2171,332420 ,1,2172,65 ,1,2173,65 ,1,2174,298880 ,1,2175,65 ,1,2176,65 ,1,2177,258950 ,1,2178,308375 ,1,2179,217455 ,1,2180,172490 ,1,2181,282300 ,1,2182,170200 ,1,2183,65 ,1,2184,204255 ,1,2185,276045 ,1,2186,230140 ,1,2187,290415 ,1,2188,345490 ,1,2189,65 ,1,2190,346345 ,1,2191,329250 ,1,2192,346090 ,1,2193,65 ,1,2194,65 ,1,2195,334110 ,1,2196,65 ,1,2197,65 ,1,2198,315385 ,1,2199,247815 ,1,2200,65 ,1,2201,65 ,1,2202,298675 ,1,2203,265785 ,1,2204,253510 ,1,2205,344565 ,1,2206,65 ,1,2207,65 ,1,2208,65 ,1,2209,65 ,1,2210,65 ,1,2211,283085 ,1,2212,308175 ,1,2213,65 ,1,2214,65 ,1,2215,312170 ,1,2216,346420 ,1,2217,65 ,1,2218,65 ,1,2219,65 ,1,2220,65 ,1,2221,65 ,1,2222,65 ,1,2223,223270 ,1,2224,216545 ,1,2225,240990 ,1,2226,309100 ,1,2227,65 ,1,2228,295310 ,1,2229,65 ,1,2230,285425 ,1,2231,245200 ,1,2232,295665 ,1,2233,308060 ,1,2234,187085 ,1,2235,224115 ,1,2236,65 ,1,2237,215865 ,1,2238,65 ,1,2239,65 ,1,2240,65 ,1,2241,295625 ,1,2242,219065 ,1,2243,65 ,1,2244,65 ,1,2245,279520 ,1,2246,194370 ,1,2247,258335 ,1,2248,65 ,1,2249,316815 ,1,2250,65 ,1,2251,225460 ,1,2252,230345 ,1,2253,65 ,1,2254,65 ,1,2255,301025 ,1,2256,229400 ,1,2257,65 ,1,2258,65 ,1,2259,302475 ,1,2260,65 ,1,2261,65 ,1,2262,65 ,1,2263,214775 ,1,2264,65 ,1,2265,218240 ,1,2266,65 ,1,2267,65 ,1,2268,336605 ,1,2269,290360 ,1,2270,174465 ,1,2271,268690 ,1,2272,306950 ,1,2273,65 ,1,2274,65 ,1,2275,219175 ,1,2276,65 ,1,2277,65 ,1,2278,65 ,1,2279,65 ,1,2280,65 ,1,2281,214520 ,1,2282,294740 ,1,2283,299000 ,1,2284,181395 ,1,2285,65 ,1,2286,235135 ,1,2287,213225 ,1,2288,244535 ,1,2289,327195 ,1,2290,65 ,1,2291,65 ,1,2292,65 ,1,2293,244000 ,1,2294,237675 ,1,2295,65 ,1,2296,65 ,1,2297,65 ,1,2298,65 ,1,2299,65 ,1,2300,248320 ,1,2301,65 ,1,2302,260545 ,1,2303,65 ,1,2304,65 ,1,2305,303500 ,1,2306,65 ,1,2307,65 ,1,2308,323285 ,1,2309,65 ,1,2310,183965 ,1,2311,65 ,1,2312,65 ,1,2313,65 ,1,2314,339070 ,1,2315,65 ,1,2316,65 ,1,2317,224225 ,1,2318,65 ,1,2319,65 ,1,2320,65 ,1,2321,65 ,1,2322,65 ,1,2323,65 ,1,2324,308000 ,1,2325,65 ,1,2326,65 ,1,2327,65 ,1,2328,265540 ,1,2329,290290 ,1,2330,302055 ,1,2331,310450 ,1,2332,206215 ,1,2333,351470 ,1,2334,294610 ,1,2335,252215 ,1,2336,65 ,1,2337,65 ,1,2338,65 ,1,2339,325645 ,1,2340,243825 ,1,2341,65 ,1,2342,298000 ,1,2343,65 ,1,2344,65 ,1,2345,65 ,1,2346,65 ,1,2347,65 ,1,2348,65 ,1,2349,65 ,1,2350,65 ,1,2351,65 ,1,2352,65 ,1,2353,303160 ,1,2354,265835 ,1,2355,65 ,1,2356,65 ,1,2357,286090 ,1,2358,65 ,1,2359,65 ,1,2360,65 ,1,2361,65 ,1,2362,65 ,1,2363,65 ,1,2364,185730 ,1,2365,263845 ,1,2366,65 ,1,2367,280565 ,1,2368,189585 ,1,2369,65 ,1,2370,65 ,1,2371,65 ,1,2372,169320 ,1,2373,65 ,1,2374,65 ,1,2375,65 ,1,2376,200300 ,1,2377,219760 ,1,2378,262075 ,1,2379,267735 ,1,2380,65 ,1,2381,65 ,1,2382,65 ,1,2383,261770 ,1,2384,320440 ,1,2385,65 ,1,2386,279815 ,1,2387,207410 ,1,2388,280365 ,1,2389,319265 ,1,2390,345455 ,1,2391,65 ,1,2392,65 ,1,2393,311260 ,1,2394,65 ,1,2395,277565 ,1,2396,239215 ,1,2397,176460 ,1,2398,65 ,1,2399,65 ,1,2400,228590 ,1,2401,315600 ,1,2402,65 ,1,2403,65 ,1,2404,171965 ,1,2405,65 ,1,2406,337410 ,1,2407,65 ,1,2408,328345 ,1,2409,65 ,1,2410,257140 ,1,2411,65 ,1,2412,65 ,1,2413,303260 ,1,2414,65 ,1,2415,65 ,1,2416,65 ,1,2417,65 ,1,2418,216455 ,1,2419,65 ,1,2420,65 ,1,2421,65 ,1,2422,302925 ,1,2423,312085 ,1,2424,239005 ,1,2425,255485 ,1,2426,65 ,1,2427,196080 ,1,2428,65 ,1,2429,65 ,1,2430,210725 ,1,2431,306430 ,1,2432,65 ,1,2433,65 ,1,2434,277040 ,1,2435,344925 ,1,2436,65 ,1,2437,313585 ,1,2438,295150 ,1,2439,178640 ,1,2440,187550 ,1,2441,65 ,1,2442,65 ,1,2443,189445 ,1,2444,288560 ,1,2445,65 ,1,2446,224005 ,1,2447,65 ,1,2448,65 ,1,2449,274300 ,1,2450,65 ,1,2451,65 ,1,2452,65 ,1,2453,65 ,1,2454,309725 ,1,2455,65 ,1,2456,338940 ,1,2457,260910 ,1,2458,205835 ,1,2459,351460 ,1,2460,65 ,1,2461,65 ,1,2462,65 ,1,2463,341720 ,1,2464,65 ,1,2465,212005 ,1,2466,235760 ,1,2467,322600 ,1,2468,65 ,1,2469,343750 ,1,2470,65 ,1,2471,65 ,1,2472,279770 ,1,2473,189165 ,1,2474,316010 ,1,2475,65 ,1,2476,188665 ,1,2477,65 ,1,2478,324665 ,1,2479,65 ,1,2480,65 ,1,2481,195925 ,1,2482,65 ,1,2483,326955 ,1,2484,339045 ,1,2485,65 ,1,2486,65 ,1,2487,65 ,1,2488,65 ,1,2489,65 ,1,2490,65 ,1,2491,233425 ,1,2492,65 ,1,2493,222030 ,1,2494,65 ,1,2495,195105 ,1,2496,266575 ,1,2497,65 ,1,2498,65 ,1,2499,232945 ,1,2500,65 ,1,2501,65 ,1,2502,65 ,1,2503,65 ,1,2504,286285 ,1,2505,65 ,1,2506,65 ,1,2507,65 ,1,2508,65 ,1,2509,65 ,1,2510,65 ,1,2511,65 ,1,2512,273940 ,1,2513,348125 ,1,2514,351450 ,1,2515,293740 ,1,2516,311505 ,1,2517,65 ,1,2518,297860 ,1,2519,65 ,1,2520,261915 ,1,2521,65 ,1,2522,65 ,1,2523,65 ,1,2524,65 ,1,2525,65 ,1,2526,65 ,1,2527,65 ,1,2528,341850 ,1,2529,180115 ,1,2530,344790 ,1,2531,224725 ,1,2532,65 ,1,2533,212710 ,1,2534,173590 ,1,2535,171305 ,1,2536,65 ,1,2537,65 ,1,2538,65 ,1,2539,226570 ,1,2540,65 ,1,2541,65 ,1,2542,65 ,1,2543,65 ,1,2544,65 ,1,2545,65 ,1,2546,65 ,1,2547,65 ,1,2548,258535 ,1,2549,65 ,1,2550,215900 ,1,2551,65 ,1,2552,252425 ,1,2553,65 ,1,2554,65 ,1,2555,225170 ,1,2556,65 ,1,2557,65 ,1,2558,65 ,1,2559,65 ,1,2560,330145 ,1,2561,65 ,1,2562,261420 ,1,2563,65 ,1,2564,65 ,1,2565,65 ,1,2566,65 ,1,2567,65 ,1,2568,65 ,1,2569,308545 ,1,2570,209890 ,1,2571,65 ,1,2572,65 ,1,2573,65 ,1,2574,65 ,1,2575,268835 ,1,2576,276670 ,1,2577,65 ,1,2578,65 ,1,2579,65 ,1,2580,65 ,1,2581,65 ,1,2582,314820 ,1,2583,65 ,1,2584,317010 ,1,2585,65 ,1,2586,65 ,1,2587,65 ,1,2588,278300 ,1,2589,179070 ,1,2590,295050 ,1,2591,280855 ,1,2592,334015 ,1,2593,65 ,1,2594,65 ,1,2595,250225 ,1,2596,65 ,1,2597,65 ,1,2598,65 ,1,2599,258685 ,1,2600,290850 ,1,2601,65 ,1,2602,287670 ,1,2603,318045 ,1,2604,65 ,1,2605,255375 ,1,2606,65 ,1,2607,65 ,1,2608,65 ,1,2609,65 ,1,2610,65 ,1,2611,300600 ,1,2612,308965 ,1,2613,314195 ,1,2614,65 ,1,2615,65 ,1,2616,65 ,1,2617,169255 ,1,2618,65 ,1,2619,65 ,1,2620,65 ,1,2621,258445 ,1,2622,186750 ,1,2623,65 ,1,2624,65 ,1,2625,279235 ,1,2626,65 ,1,2627,169870 ,1,2628,269415 ,1,2629,65 ,1,2630,65 ,1,2631,65 ,1,2632,65 ,1,2633,65 ,1,2634,251065 ,1,2635,178895 ,1,2636,65 ,1,2637,65 ,1,2638,65 ,1,2639,254660 ,1,2640,65 ,1,2641,65 ,1,2642,65 ,1,2643,65 ,1,2644,65 ,1,2645,65 ,1,2646,258645 ,1,2647,65 ,1,2648,65 ,1,2649,65 ,1,2650,65 ,1,2651,185645 ,1,2652,197280 ,1,2653,327625 ,1,2654,65 ,1,2655,269385 ,1,2656,188725 ,1,2657,65 ,1,2658,178725 ,1,2659,260145 ,1,2660,65 ,1,2661,65 ,1,2662,232815 ,1,2663,65 ,1,2664,65 ,1,2665,65 ,1,2666,226720 ,1,2667,263220 ,1,2668,177980 ,1,2669,65 ,1,2670,65 ,1,2671,223635 ,1,2672,212520 ,1,2673,322470 ,1,2674,65 ,1,2675,340425 ,1,2676,65 ,1,2677,65 ,1,2678,65 ,1,2679,65 ,1,2680,309145 ,1,2681,295010 ,1,2682,310590 ,1,2683,268630 ,1,2684,65 ,1,2685,65 ,1,2686,65 ,1,2687,65 ,1,2688,65 ,1,2689,65 ,1,2690,329550 ,1,2691,342730 ,1,2692,65 ,1,2693,339610 ,1,2694,262320 ,1,2695,65 ,1,2696,65 ,1,2697,236580 ,1,2698,65 ,1,2699,65 ,1,2700,185635 ,1,2701,65 ,1,2702,344220 ,1,2703,204700 ,1,2704,65 ,1,2705,65 ,1,2706,65 ,1,2707,268465 ,1,2708,65 ,1,2709,198260 ,1,2710,204555 ,1,2711,65 ,1,2712,65 ,1,2713,65 ,1,2714,65 ,1,2715,334090 ,1,2716,312940 ,1,2717,65 ,1,2718,65 ,1,2719,166485 ,1,2720,65 ,1,2721,65 ,1,2722,65 ,1,2723,65 ,1,2724,65 ,1,2725,65 ,1,2726,65 ,1,2727,244345 ,1,2728,65 ,1,2729,65 ,1,2730,65 ,1,2731,65 ,1,2732,215265 ,1,2733,65 ,1,2734,330630 ,1,2735,168125 ,1,2736,65 ,1,2737,65 ,1,2738,65 ,1,2739,65 ,1,2740,310665 ,1,2741,246275 ,1,2742,65 ,1,2743,65 ,1,2744,65 ,1,2745,220955 ,1,2746,316290 ,1,2747,65 ,1,2748,304345 ,1,2749,202690 ,1,2750,65 ,1,2751,207560 ,1,2752,232930 ,1,2753,65 ,1,2754,65 ,1,2755,65 ,1,2756,280335 ,1,2757,65 ,1,2758,65 ,1,2759,272315 ,1,2760,190230 ,1,2761,351395 ,1,2762,170945 ,1,2763,302280 ,1,2764,196415 ,1,2765,285350 ,1,2766,266395 ,1,2767,65 ,1,2768,65 ,1,2769,65 ,1,2770,65 ,1,2771,65 ,1,2772,65 ,1,2773,65 ,1,2774,65 ,1,2775,299575 ,1,2776,287980 ,1,2777,297415 ,1,2778,316875 ,1,2779,65 ,1,2780,177315 ,1,2781,272860 ,1,2782,65 ,1,2783,65 ,1,2784,65 ,1,2785,65 ,1,2786,65 ,1,2787,65 ,1,2788,305055 ,1,2789,65 ,1,2790,65 ,1,2791,231785 ,1,2792,280110 ,1,2793,65 ,1,2794,65 ,1,2795,65 ,1,2796,65 ,1,2797,326500 ,1,2798,65 ,1,2799,241035 ,1,2800,65 ,1,2801,239400 ,1,2802,65 ,1,2803,65 ,1,2804,65 ,1,2805,65 ,1,2806,351385 ,1,2807,65 ,1,2808,65 ,1,2809,239410 ,1,2810,65 ,1,2811,181795 ,1,2812,215475 ,1,2813,65 ,1,2814,65 ,1,2815,288675 ,1,2816,200460 ,1,2817,267295 ,1,2818,65 ,1,2819,234105 ,1,2820,284115 ,1,2821,340145 ,1,2822,65 ,1,2823,65 ,1,2824,65 ,1,2825,65 ,1,2826,65 ,1,2827,205425 ,1,2828,65 ,1,2829,65 ,1,2830,226690 ,1,2831,65 ,1,2832,65 ,1,2833,65 ,1,2834,313205 ,1,2835,65 ,1,2836,65 ,1,2837,65 ,1,2838,306030 ,1,2839,270675 ,1,2840,340445 ,1,2841,65 ,1,2842,65 ,1,2843,276290 ,1,2844,317180 ,1,2845,65 ,1,2846,65 ,1,2847,65 ,1,2848,65 ,1,2849,181675 ,1,2850,65 ,1,2851,65 ,1,2852,65 ,1,2853,65 ,1,2854,65 ,1,2855,65 ,1,2856,196540 ,1,2857,65 ,1,2858,65 ,1,2859,65 ,1,2860,65 ,1,2861,65 ,1,2862,65 ,1,2863,220010 ,1,2864,222190 ,1,2865,65 ,1,2866,210745 ,1,2867,211875 ,1,2868,183310 ,1,2869,65 ,1,2870,65 ,1,2871,222460 ,1,2872,276550 ,1,2873,65 ,1,2874,65 ,1,2875,65 ,1,2876,65 ,1,2877,65 ,1,2878,65 ,1,2879,65 ,1,2880,65 ,1,2881,65 ,1,2882,65 ,1,2883,65 ,1,2884,65 ,1,2885,65 ,1,2886,65 ,1,2887,193185 ,1,2888,204970 ,1,2889,333585 ,1,2890,351375 ,1,2891,333740 ,1,2892,65 ,1,2893,65 ,1,2894,65 ,1,2895,188080 ,1,2896,332075 ,1,2897,65 ,1,2898,65 ,1,2899,198280 ,1,2900,330935 ,1,2901,168105 ,1,2902,65 ,1,2903,343825 ,1,2904,65 ,1,2905,65 ,1,2906,65 ,1,2907,65 ,1,2908,65 ,1,2909,65 ,1,2910,65 ,1,2911,65 ,1,2912,271875 ,1,2913,65 ,1,2914,259185 ,1,2915,65 ,1,2916,281610 ,1,2917,65 ,1,2918,175075 ,1,2919,65 ,1,2920,65 ,1,2921,65 ,1,2922,292445 ,1,2923,279960 ,1,2924,315540 ,1,2925,65 ,1,2926,65 ,1,2927,65 ,1,2928,256550 ,1,2929,65 ,1,2930,65 ,1,2931,65 ,1,2932,65 ,1,2933,347290 ,1,2934,167660 ,1,2935,65 ,1,2936,65 ,1,2937,65 ,1,2938,325860 ,1,2939,65 ,1,2940,259975 ,1,2941,65 ,1,2942,270085 ,1,2943,304115 ,1,2944,65 ,1,2945,65 ,1,2946,65 ,1,2947,65 ,1,2948,65 ,1,2949,65 ,1,2950,65 ,1,2951,65 ,1,2952,172425 ,1,2953,301595 ,1,2954,65 ,1,2955,250345 ,1,2956,65 ,1,2957,65 ,1,2958,65 ,1,2959,65 ,1,2960,65 ,1,2961,273130 ,1,2962,65 ,1,2963,65 ,1,2964,275505 ,1,2965,65 ,1,2966,65 ,1,2967,65 ,1,2968,65 ,1,2969,65 ,1,2970,286710 ,1,2971,316030 ,1,2972,287135 ,1,2973,65 ,1,2974,211620 ,1,2975,320800 ,1,2976,183460 ,1,2977,284735 ,1,2978,287495 ,1,2979,295030 ,1,2980,65 ,1,2981,223100 ,1,2982,177610 ,1,2983,251410 ,1,2984,209580 ,1,2985,242665 ,1,2986,65 ,1,2987,65 ,1,2988,257940 ,1,2989,65 ,1,2990,65 ,1,2991,195760 ,1,2992,200610 ,1,2993,334205 ,1,2994,272770 ,1,2995,65 ,1,2996,174395 ,1,2997,171275 ,1,2998,65 ,1,2999,65 ,1,3000,195085 ,1,3001,65 ,1,3002,65 ,1,3003,65 ,1,3004,65 ,1,3005,65 ,1,3006,65 ,1,3007,218090 ,1,3008,65 ,1,3009,278330 ,1,3010,65 ,1,3011,203075 ,1,3012,313565 ,1,3013,65 ,1,3014,65 ,1,3015,65 ,1,3016,287025 ,1,3017,65 ,1,3018,65 ,1,3019,190555 ,1,3020,65 ,1,3021,65 ,1,3022,65 ,1,3023,65 ,1,3024,65 ,1,3025,288010 ,1,3026,65 ,1,3027,65 ,1,3028,65 ,1,3029,65 ,1,3030,65 ,1,3031,65 ,1,3032,184640 ,1,3033,245585 ,1,3034,247650 ,1,3035,65 ,1,3036,271255 ,1,3037,65 ,1,3038,65 ,1,3039,65 ,1,3040,323465 ,1,3041,65 ,1,3042,65 ,1,3043,227140 ,1,3044,65 ,1,3045,319390 ,1,3046,65 ,1,3047,65 ,1,3048,65 ,1,3049,65 ,1,3050,296545 ,1,3051,263400 ,1,3052,65 ,1,3053,219075 ,1,3054,65 ,1,3055,172515 ,1,3056,65 ,1,3057,65 ,1,3058,267285 ,1,3059,284870 ,1,3060,233915 ,1,3061,296970 ,1,3062,311285 ,1,3063,65 ,1,3064,240265 ,1,3065,65 ,1,3066,65 ,1,3067,65 ,1,3068,65 ,1,3069,65 ,1,3070,215275 ,1,3071,311080 ,1,3072,300180 ,1,3073,261730 ,1,3074,65 ,1,3075,65 ,1,3076,65 ,1,3077,296055 ,1,3078,331535 ,1,3079,65 ,1,3080,65 ,1,3081,65 ,1,3082,237220 ,1,3083,65 ,1,3084,253595 ,1,3085,65 ,1,3086,205465 ,1,3087,65 ,1,3088,65 ,1,3089,188820 ,1,3090,241545 ,1,3091,65 ,1,3092,208070 ,1,3093,65 ,1,3094,65 ,1,3095,65 ,1,3096,65 ,1,3097,204055 ,1,3098,298115 ,1,3099,296555 ,1,3100,65 ,1,3101,262550 ,1,3102,65 ,1,3103,65 ,1,3104,65 ,1,3105,65 ,1,3106,65 ,1,3107,65 ,1,3108,295645 ,1,3109,301135 ,1,3110,65 ,1,3111,293535 ,1,3112,65 ,1,3113,65 ,1,3114,65 ,1,3115,208015 ,1,3116,65 ,1,3117,65 ,1,3118,65 ,1,3119,65 ,1,3120,65 ,1,3121,65 ,1,3122,65 ,1,3123,229270 ,1,3124,65 ,1,3125,65 ,1,3126,65 ,1,3127,65 ,1,3128,65 ,1,3129,65 ,1,3130,65 ,1,3131,65 ,1,3132,308495 ,1,3133,329655 ,1,3134,261235 ,1,3135,221480 ,1,3136,334880 ,1,3137,65 ,1,3138,65 ,1,3139,219220 ,1,3140,65 ,1,3141,200215 ,1,3142,238600 ,1,3143,65 ,1,3144,179350 ,1,3145,192830 ,1,3146,65 ,1,3147,210480 ,1,3148,65 ,1,3149,180945 ,1,3150,227715 ,1,3151,65 ,1,3152,65 ,1,3153,65 ,1,3154,65 ,1,3155,65 ,1,3156,285125 ,1,3157,65 ,1,3158,340630 ,1,3159,221930 ,1,3160,65 ,1,3161,65 ,1,3162,65 ,1,3163,65 ,1,3164,65 ,1,3165,189910 ,1,3166,182120 ,1,3167,65 ,1,3168,65 ,1,3169,295350 ,1,3170,65 ,1,3171,212105 ,1,3172,255635 ,1,3173,210435 ,1,3174,65 ,1,3175,280225 ,1,3176,65 ,1,3177,193865 ,1,3178,65 ,1,3179,65 ,1,3180,65 ,1,3181,65 ,1,3182,65 ,1,3183,65 ,1,3184,255560 ,1,3185,65 ,1,3186,171805 ,1,3187,65 ,1,3188,221030 ,1,3189,289260 ,1,3190,65 ,1,3191,65 ,1,3192,213720 ,1,3193,65 ,1,3194,297000 ,1,3195,65 ,1,3196,65 ,1,3197,65 ,1,3198,193715 ,1,3199,308165 ,1,3200,285160 ,1,3201,205370 ,1,3202,273585 ,1,3203,65 ,1,3204,319215 ,1,3205,65 ,1,3206,246470 ,1,3207,65 ,1,3208,65 ,1,3209,214185 ,1,3210,65 ,1,3211,259620 ,1,3212,65 ,1,3213,65 ,1,3214,232100 ,1,3215,65 ,1,3216,65 ,1,3217,65 ,1,3218,65 ,1,3219,65 ,1,3220,65 ,1,3221,65 ,1,3222,310360 ,1,3223,65 ,1,3224,279425 ,1,3225,65 ,1,3226,224535 ,1,3227,330485 ,1,3228,65 ,1,3229,65 ,1,3230,65 ,1,3231,65 ,1,3232,65 ,1,3233,65 ,1,3234,65 ,1,3235,65 ,1,3236,65 ,1,3237,65 ,1,3238,65 ,1,3239,170965 ,1,3240,65 ,1,3241,65 ,1,3242,299300 ,1,3243,65 ,1,3244,65 ,1,3245,65 ,1,3246,65 ,1,3247,65 ,1,3248,65 ,1,3249,229600 ,1,3250,228305 ,1,3251,65 ,1,3252,65 ,1,3253,65 ,1,3254,65 ,1,3255,65 ,1,3256,65 ,1,3257,65 ,1,3258,65 ,1,3259,262140 ,1,3260,65 ,1,3261,169890 ,1,3262,65 ,1,3263,240170 ,1,3264,168495 ,1,3265,65 ,1,3266,65 ,1,3267,65 ,1,3268,65 ,1,3269,65 ,1,3270,65 ,1,3271,65 ,1,3272,65 ,1,3273,184370 ,1,3274,171985 ,1,3275,245605 ,1,3276,65 ,1,3277,232755 ,1,3278,65 ,1,3279,65 ,1,3280,221725 ,1,3281,310050 ,1,3282,65 ,1,3283,194490 ,1,3284,255435 ,1,3285,65 ,1,3286,65 ,1,3287,65 ,1,3288,65 ,1,3289,193115 ,1,3290,65 ,1,3291,65 ,1,3292,65 ,1,3293,243780 ,1,3294,65 ,1,3295,65 ,1,3296,209060 ,1,3297,65 ,1,3298,65 ,1,3299,65 ,1,3300,65 ,1,3301,304605 ,1,3302,171495 ,1,3303,65 ,1,3304,233985 ,1,3305,299010 ,1,3306,65 ,1,3307,65 ,1,3308,263190 ,1,3309,296575 ,1,3310,213280 ,1,3311,65 ,1,3312,339940 ,1,3313,65 ,1,3314,65 ,1,3315,276710 ,1,3316,65 ,1,3317,65 ,1,3318,65 ,1,3319,65 ,1,3320,233540 ,1,3321,65 ,1,3322,65 ,1,3323,65 ,1,3324,65 ,1,3325,65 ,1,3326,65 ,1,3327,65 ,1,3328,65 ,1,3329,65 ,1,3330,304855 ,1,3331,65 ,1,3332,240360 ,1,3333,65 ,1,3334,65 ,1,3335,65 ,1,3336,65 ,1,3337,302895 ,1,3338,302845 ,1,3339,65 ,1,3340,65 ,1,3341,258890 ,1,3342,336075 ,1,3343,65 ,1,3344,196820 ,1,3345,275110 ,1,3346,321165 ,1,3347,65 ,1,3348,282610 ,1,3349,245725 ,1,3350,338460 ,1,3351,65 ,1,3352,65 ,1,3353,278130 ,1,3354,65 ,1,3355,65 ,1,3356,65 ,1,3357,65 ,1,3358,65 ,1,3359,212945 ,1,3360,65 ,1,3361,173495 ,1,3362,340105 ,1,3363,65 ,1,3364,176345 ,1,3365,228770 ,1,3366,65 ,1,3367,268880 ,1,3368,65 ,1,3369,65 ,1,3370,207670 ,1,3371,65 ,1,3372,65 ,1,3373,65 ,1,3374,65 ,1,3375,343490 ,1,3376,332020 ,1,3377,247415 ,1,3378,262540 ,1,3379,271095 ,1,3380,65 ,1,3381,65 ,1,3382,65 ,1,3383,302580 ,1,3384,263110 ,1,3385,65 ,1,3386,65 ,1,3387,300580 ,1,3388,65 ,1,3389,65 ,1,3390,335640 ,1,3391,299500 ,1,3392,240395 ,1,3393,205215 ,1,3394,65 ,1,3395,65 ,1,3396,278565 ,1,3397,65 ,1,3398,259695 ,1,3399,65 ,1,3400,65 ,1,3401,65 ,1,3402,177030 ,1,3403,193550 ,1,3404,263265 ,1,3405,65 ,1,3406,65 ,1,3407,65 ,1,3408,65 ,1,3409,65 ,1,3410,65 ,1,3411,65 ,1,3412,65 ,1,3413,65 ,1,3414,297700 ,1,3415,65 ,1,3416,304295 ,1,3417,65 ,1,3418,65 ,1,3419,65 ,1,3420,65 ,1,3421,65 ,1,3422,65 ,1,3423,190095 ,1,3424,328645 ,1,3425,65 ,1,3426,65 ,1,3427,65 ,1,3428,65 ,1,3429,208350 ,1,3430,296145 ,1,3431,65 ,1,3432,65 ,1,3433,167535 ,1,3434,302915 ,1,3435,323900 ,1,3436,230835 ,1,3437,65 ,1,3438,322850 ,1,3439,201410 ,1,3440,251505 ,1,3441,65 ,1,3442,180025 ,1,3443,65 ,1,3444,65 ,1,3445,65 ,1,3446,65 ,1,3447,342240 ,1,3448,267145 ,1,3449,185085 ,1,3450,184630 ,1,3451,343115 ,1,3452,257865 ,1,3453,65 ,1,3454,65 ,1,3455,65 ,1,3456,65 ,1,3457,65 ,1,3458,65 ,1,3459,65 ,1,3460,65 ,1,3461,65 ,1,3462,65 ,1,3463,65 ,1,3464,65 ,1,3465,65 ,1,3466,189705 ,1,3467,65 ,1,3468,65 ,1,3469,65 ,1,3470,65 ,1,3471,65 ,1,3472,65 ,1,3473,65 ,1,3474,312845 ,1,3475,65 ,1,3476,65 ,1,3477,65 ,1,3478,65 ,1,3479,267320 ,1,3480,292040 ,1,3481,166530 ,1,3482,65 ,1,3483,189115 ,1,3484,65 ,1,3485,65 ,1,3486,278350 ,1,3487,65 ,1,3488,65 ,1,3489,65 ,1,3490,229730 ,1,3491,236265 ,1,3492,65 ,1,3493,65 ,1,3494,65 ,1,3495,65 ,1,3496,65 ,1,3497,314615 ,1,3498,65 ,1,3499,65 ,1,3500,65 ,1,3501,65 ,1,3502,65 ,1,3503,65 ,1,3504,274820 ,1,3505,65 ,1,3506,65 ,1,3507,65 ,1,3508,250355 ,1,3509,65 ,1,3510,65 ,1,3511,65 ,1,3512,65 ,1,3513,65 ,1,3514,65 ,1,3515,65 ,1,3516,65 ,1,3517,65 ,1,3518,346905 ,1,3519,65 ,1,3520,216400 ,1,3521,65 ,1,3522,65 ,1,3523,65 ,1,3524,231275 ,1,3525,191160 ,1,3526,65 ,1,3527,65 ,1,3528,188955 ,1,3529,65 ,1,3530,320270 ,1,3531,300425 ,1,3532,65 ,1,3533,212650 ,1,3534,278310 ,1,3535,284425 ,1,3536,185915 ,1,3537,341615 ,1,3538,65 ,1,3539,65 ,1,3540,65 ,1,3541,65 ,1,3542,215640 ,1,3543,65 ,1,3544,65 ,1,3545,65 ,1,3546,336705 ,1,3547,65 ,1,3548,65 ,1,3549,65 ,1,3550,65 ,1,3551,222480 ,1,3552,65 ,1,3553,65 ,1,3554,65 ,1,3555,65 ,1,3556,65 ,1,3557,65 ,1,3558,190955 ,1,3559,65 ,1,3560,65 ,1,3561,65 ,1,3562,226495 ,1,3563,284650 ,1,3564,301515 ,1,3565,228890 ,1,3566,65 ,1,3567,273015 ,1,3568,65 ,1,3569,65 ,1,3570,65 ,1,3571,65 ,1,3572,203615 ,1,3573,65 ,1,3574,65 ,1,3575,65 ,1,3576,65 ,1,3577,65 ,1,3578,65 ,1,3579,234375 ,1,3580,276210 ,1,3581,65 ,1,3582,65 ,1,3583,306000 ,1,3584,254690 ,1,3585,65 ,1,3586,65 ,1,3587,65 ,1,3588,65 ,1,3589,65 ,1,3590,333890 ,1,3591,65 ,1,3592,65 ,1,3593,65 ,1,3594,238485 ,1,3595,192505 ,1,3596,291940 ,1,3597,208090 ,1,3598,187500 ,1,3599,248965 ,1,3600,206505 ,1,3601,65 ,1,3602,65 ,1,3603,65 ,1,3604,280765 ,1,3605,65 ,1,3606,201280 ,1,3607,200790 ,1,3608,188800 ,1,3609,65 ,1,3610,305695 ,1,3611,183700 ,1,3612,183165 ,1,3613,222775 ,1,3614,65 ,1,3615,327390 ,1,3616,65 ,1,3617,65 ,1,3618,65 ,1,3619,309905 ,1,3620,65 ,1,3621,65 ,1,3622,179510 ,1,3623,200500 ,1,3624,65 ,1,3625,324655 ,1,3626,206710 ,1,3627,65 ,1,3628,65 ,1,3629,65 ,1,3630,65 ,1,3631,65 ,1,3632,65 ,1,3633,274860 ,1,3634,65 ,1,3635,65 ,1,3636,65 ,1,3637,65 ,1,3638,314675 ,1,3639,65 ,1,3640,65 ,1,3641,265330 ,1,3642,181425 ,1,3643,318450 ,1,3644,65 ,1,3645,262990 ,1,3646,303915 ,1,3647,65 ,1,3648,65 ,1,3649,65 ,1,3650,65 ,1,3651,65 ,1,3652,170335 ,1,3653,65 ,1,3654,262085 ,1,3655,65 ,1,3656,351365 ,1,3657,65 ,1,3658,65 ,1,3659,183910 ,1,3660,324950 ,1,3661,327615 ,1,3662,65 ,1,3663,65 ,1,3664,65 ,1,3665,215685 ,1,3666,258940 ,1,3667,177345 ,1,3668,65 ,1,3669,319630 ,1,3670,65 ,1,3671,65 ,1,3672,65 ,1,3673,65 ,1,3674,65 ,1,3675,65 ,1,3676,190630 ,1,3677,65 ,1,3678,65 ,1,3679,65 ,1,3680,65 ,1,3681,65 ,1,3682,65 ,1,3683,65 ,1,3684,65 ,1,3685,65 ,1,3686,65 ,1,3687,65 ,1,3688,65 ,1,3689,65 ,1,3690,65 ,1,3691,65 ,1,3692,65 ,1,3693,65 ,1,3694,65 ,1,3695,65 ,1,3696,250990 ,1,3697,65 ,1,3698,333310 ,1,3699,65 ,1,3700,342885 ,1,3701,226675 ,1,3702,271885 ,1,3703,329230 ,1,3704,179030 ,1,3705,330525 ,1,3706,342500 ,1,3707,65 ,1,3708,65 ,1,3709,65 ,1,3710,222885 ,1,3711,65 ,1,3712,210800 ,1,3713,210320 ,1,3714,250660 ,1,3715,65 ,1,3716,65 ,1,3717,208120 ,1,3718,168870 ,1,3719,187400 ,1,3720,178935 ,1,3721,262765 ,1,3722,65 ,1,3723,299400 ,1,3724,308215 ,1,3725,65 ,1,3726,342395 ,1,3727,269095 ,1,3728,230730 ,1,3729,182615 ,1,3730,317425 ,1,3731,343365 ,1,3732,345555 ,1,3733,282960 ,1,3734,265200 ,1,3735,241720 ,1,3736,303350 ,1,3737,237345 ,1,3738,276700 ,1,3739,65 ,1,3740,65 ,1,3741,65 ,1,3742,315175 ,1,3743,65 ,1,3744,219715 ,1,3745,65 ,1,3746,65 ,1,3747,65 ,1,3748,65 ,1,3749,65 ,1,3750,65 ,1,3751,65 ,1,3752,65 ,1,3753,65 ,1,3754,65 ,1,3755,65 ,1,3756,65 ,1,3757,65 ,1,3758,65 ,1,3759,65 ,1,3760,306855 ,1,3761,223205 ,1,3762,174965 ,1,3763,65 ,1,3764,65 ,1,3765,341990 ,1,3766,302735 ,1,3767,65 ,1,3768,65 ,1,3769,65 ,1,3770,65 ,1,3771,65 ,1,3772,65 ,1,3773,346945 ,1,3774,65 ,1,3775,270970 ,1,3776,65 ,1,3777,65 ,1,3778,324575 ,1,3779,65 ,1,3780,65 ,1,3781,65 ,1,3782,197150 ,1,3783,65 ,1,3784,65 ,1,3785,223765 ,1,3786,276125 ,1,3787,65 ,1,3788,213935 ,1,3789,65 ,1,3790,65 ,1,3791,246870 ,1,3792,65 ,1,3793,65 ,1,3794,65 ,1,3795,65 ,1,3796,65 ,1,3797,65 ,1,3798,65 ,1,3799,212935 ,1,3800,65 ,1,3801,65 ,1,3802,65 ,1,3803,245280 ,1,3804,167720 ,1,3805,65 ,1,3806,247435 ,1,3807,65 ,1,3808,288620 ,1,3809,188705 ,1,3810,65 ,1,3811,65 ,1,3812,65 ,1,3813,351355 ,1,3814,65 ,1,3815,65 ,1,3816,65 ,1,3817,299615 ,1,3818,196140 ,1,3819,274690 ,1,3820,173175 ,1,3821,228510 ,1,3822,296780 ,1,3823,265520 ,1,3824,168785 ,1,3825,297900 ,1,3826,290340 ,1,3827,65 ,1,3828,194050 ,1,3829,65 ,1,3830,346860 ,1,3831,65 ,1,3832,65 ,1,3833,65 ,1,3834,65 ,1,3835,214385 ,1,3836,281810 ,1,3837,288065 ,1,3838,236060 ,1,3839,312060 ,1,3840,65 ,1,3841,274830 ,1,3842,297990 ,1,3843,316775 ,1,3844,65 ,1,3845,328975 ,1,3846,300950 ,1,3847,65 ,1,3848,317470 ,1,3849,264975 ,1,3850,65 ,1,3851,300550 ,1,3852,65 ,1,3853,65 ,1,3854,241635 ,1,3855,65 ,1,3856,65 ,1,3857,320730 ,1,3858,263295 ,1,3859,65 ,1,3860,217660 ,1,3861,65 ,1,3862,278035 ,1,3863,196830 ,1,3864,347005 ,1,3865,342230 ,1,3866,239420 ,1,3867,65 ,1,3868,65 ,1,3869,217275 ,1,3870,191890 ,1,3871,65 ,1,3872,65 ,1,3873,65 ,1,3874,65 ,1,3875,65 ,1,3876,65 ,1,3877,237770 ,1,3878,318140 ,1,3879,65 ,1,3880,351345 ,1,3881,219585 ,1,3882,65 ,1,3883,65 ,1,3884,65 ,1,3885,65 ,1,3886,65 ,1,3887,206515 ,1,3888,65 ,1,3889,65 ,1,3890,302715 ,1,3891,65 ,1,3892,65 ,1,3893,65 ,1,3894,65 ,1,3895,65 ,1,3896,312445 ,1,3897,65 ,1,3898,240210 ,1,3899,65 ,1,3900,246570 ,1,3901,327415 ,1,3902,331050 ,1,3903,192180 ,1,3904,65 ,1,3905,222400 ,1,3906,65 ,1,3907,65 ,1,3908,65 ,1,3909,65 ,1,3910,65 ,1,3911,65 ,1,3912,65 ,1,3913,340135 ,1,3914,65 ,1,3915,65 ,1,3916,65 ,1,3917,65 ,1,3918,65 ,1,3919,65 ,1,3920,219890 ,1,3921,65 ,1,3922,65 ,1,3923,65 ,1,3924,185140 ,1,3925,65 ,1,3926,65 ,1,3927,65 ,1,3928,65 ,1,3929,65 ,1,3930,344440 ,1,3931,213805 ,1,3932,264955 ,1,3933,277745 ,1,3934,192435 ,1,3935,65 ,1,3936,65 ,1,3937,226555 ,1,3938,339195 ,1,3939,328770 ,1,3940,65 ,1,3941,65 ,1,3942,65 ,1,3943,65 ,1,3944,65 ,1,3945,277735 ,1,3946,182925 ,1,3947,65 ,1,3948,237480 ,1,3949,65 ,1,3950,65 ,1,3951,65 ,1,3952,65 ,1,3953,65 ,1,3954,314335 ,1,3955,65 ,1,3956,65 ,1,3957,65 ,1,3958,65 ,1,3959,300805 ,1,3960,65 ,1,3961,167770 ,1,3962,65 ,1,3963,65 ,1,3964,65 ,1,3965,179795 ,1,3966,65 ,1,3967,322045 ,1,3968,65 ,1,3969,196285 ,1,3970,265350 ,1,3971,65 ,1,3972,65 ,1,3973,65 ,1,3974,65 ,1,3975,65 ,1,3976,65 ,1,3977,242765 ,1,3978,65 ,1,3979,65 ,1,3980,210595 ,1,3981,65 ,1,3982,65 ,1,3983,65 ,1,3984,203125 ,1,3985,220125 ,1,3986,65 ,1,3987,251780 ,1,3988,199315 ,1,3989,291860 ,1,3990,65 ,1,3991,65 ,1,3992,65 ,1,3993,65 ,1,3994,65 ,1,3995,65 ,1,3996,65 ,1,3997,241190 ,1,3998,65 ,1,3999,254135 ,1,4000,250640 ,1,4001,243110 ,1,4002,65 ,1,4003,338990 ,1,4004,65 ,1,4005,65 ,1,4006,282075 ,1,4007,65 ,1,4008,249770 ,1,4009,177230 ,1,4010,197460 ,1,4011,65 ,1,4012,65 ,1,4013,65 ,1,4014,242870 ,1,4015,345850 ,1,4016,65 ,1,4017,65 ,1,4018,343930 ,1,4019,245595 ,1,4020,267275 ,1,4021,314000 ,1,4022,65 ,1,4023,65 ,1,4024,287600 ,1,4025,269425 ,1,4026,245150 ,1,4027,65 ,1,4028,311550 ,1,4029,334965 ,1,4030,65 ,1,4031,208715 ,1,4032,227040 ,1,4033,175785 ,1,4034,188935 ,1,4035,335770 ,1,4036,65 ,1,4037,65 ,1,4038,65 ,1,4039,65 ,1,4040,231325 ,1,4041,326295 ,1,4042,237930 ,1,4043,65 ,1,4044,65 ,1,4045,65 ,1,4046,65 ,1,4047,312280 ,1,4048,269940 ,1,4049,237230 ,1,4050,225470 ,1,4051,65 ,1,4052,170590 ,1,4053,295415 ,1,4054,65 ,1,4055,65 ,1,4056,328060 ,1,4057,65 ,1,4058,65 ,1,4059,65 ,1,4060,288145 ,1,4061,65 ,1,4062,65 ,1,4063,65 ,1,4064,65 ,1,4065,255395 ,1,4066,65 ,1,4067,65 ,1,4068,65 ,1,4069,284585 ,1,4070,222410 ,1,4071,65 ,1,4072,242305 ,1,4073,337080 ,1,4074,65 ,1,4075,180400 ,1,4076,65 ,1,4077,190420 ,1,4078,198805 ,1,4079,65 ,1,4080,65 ,1,4081,65 ,1,4082,65 ,1,4083,65 ,1,4084,193105 ,1,4085,65 ,1,4086,65 ,1,4087,65 ,1,4088,65 ,1,4089,336035 ,1,4090,65 ,1,4091,65 ,1,4092,171940 ,1,4093,225085 ,1,4094,247905 ,1,4095,185740 ,1,4096,65 ,1,4097,65 ,1,4098,65 ,1,4099,289365 ,1,4100,192085 ,1,4101,235065 ,1,4102,194220 ,1,4103,224100 ,1,4104,233075 ,1,4105,65 ,1,4106,280295 ,1,4107,334770 ,1,4108,65 ,1,4109,65 ,1,4110,315280 ,1,4111,65 ,1,4112,65 ,1,4113,65 ,1,4114,65 ,1,4115,65 ,1,4116,65 ,1,4117,65 ,1,4118,264195 ,1,4119,221150 ,1,4120,290060 ,1,4121,65 ,1,4122,264670 ,1,4123,329240 ,1,4124,223155 ,1,4125,305365 ,1,4126,341955 ,1,4127,65 ,1,4128,65 ,1,4129,211555 ,1,4130,65 ,1,4131,65 ,1,4132,245260 ,1,4133,65 ,1,4134,65 ,1,4135,344340 ,1,4136,176845 ,1,4137,344800 ,1,4138,192950 ,1,4139,65 ,1,4140,65 ,1,4141,65 ,1,4142,65 ,1,4143,274790 ,1,4144,169900 ,1,4145,65 ,1,4146,65 ,1,4147,263795 ,1,4148,65 ,1,4149,191840 ,1,4150,65 ,1,4151,224450 ,1,4152,168640 ,1,4153,244830 ,1,4154,283335 ,1,4155,307760 ,1,4156,238475 ,1,4157,310560 ,1,4158,185765 ,1,4159,209050 ,1,4160,187810 ,1,4161,246045 ,1,4162,332145 ,1,4163,65 ,1,4164,340670 ,1,4165,269515 ,1,4166,65 ,1,4167,322655 ,1,4168,65 ,1,4169,65 ,1,4170,65 ,1,4171,65 ,1,4172,192210 ,1,4173,257620 ,1,4174,65 ,1,4175,283165 ,1,4176,169025 ,1,4177,65 ,1,4178,262485 ,1,4179,65 ,1,4180,223440 ,1,4181,217080 ,1,4182,227925 ,1,4183,261945 ,1,4184,65 ,1,4185,339680 ,1,4186,65 ,1,4187,292865 ,1,4188,65 ,1,4189,65 ,1,4190,314555 ,1,4191,65 ,1,4192,65 ,1,4193,65 ,1,4194,65 ,1,4195,65 ,1,4196,65 ,1,4197,343700 ,1,4198,214375 ,1,4199,296135 ,1,4200,65 ,1,4201,202555 ,1,4202,228790 ,1,4203,284605 ,1,4204,199555 ,1,4205,65 ,1,4206,179760 ,1,4207,167970 ,1,4208,65 ,1,4209,65 ,1,4210,183320 ,1,4211,65 ,1,4212,295555 ,1,4213,65 ,1,4214,65 ,1,4215,65 ,1,4216,65 ,1,4217,299680 ,1,4218,65 ,1,4219,272435 ,1,4220,65 ,1,4221,240470 ,1,4222,197095 ,1,4223,65 ,1,4224,65 ,1,4225,65 ,1,4226,65 ,1,4227,65 ,1,4228,65 ,1,4229,65 ,1,4230,65 ,1,4231,65 ,1,4232,65 ,1,4233,235455 ,1,4234,238050 ,1,4235,293295 ,1,4236,283545 ,1,4237,237965 ,1,4238,65 ,1,4239,65 ,1,4240,292770 ,1,4241,209485 ,1,4242,65 ,1,4243,184430 ,1,4244,65 ,1,4245,65 ,1,4246,316435 ,1,4247,65 ,1,4248,65 ,1,4249,65 ,1,4250,65 ,1,4251,329450 ,1,4252,65 ,1,4253,65 ,1,4254,233665 ,1,4255,296490 ,1,4256,65 ,1,4257,65 ,1,4258,65 ,1,4259,65 ,1,4260,259195 ,1,4261,65 ,1,4262,65 ,1,4263,65 ,1,4264,65 ,1,4265,65 ,1,4266,194970 ,1,4267,65 ,1,4268,65 ,1,4269,279695 ,1,4270,290095 ,1,4271,268985 ,1,4272,65 ,1,4273,311730 ,1,4274,65 ,1,4275,65 ,1,4276,65 ,1,4277,234960 ,1,4278,65 ,1,4279,65 ,1,4280,339690 ,1,4281,242605 ,1,4282,65 ,1,4283,65 ,1,4284,65 ,1,4285,65 ,1,4286,65 ,1,4287,65 ,1,4288,65 ,1,4289,333415 ,1,4290,65 ,1,4291,65 ,1,4292,197310 ,1,4293,65 ,1,4294,65 ,1,4295,65 ,1,4296,65 ,1,4297,319285 ,1,4298,65 ,1,4299,65 ,1,4300,65 ,1,4301,230025 ,1,4302,65 ,1,4303,65 ,1,4304,184650 ,1,4305,332525 ,1,4306,188440 ,1,4307,215330 ,1,4308,65 ,1,4309,328655 ,1,4310,65 ,1,4311,65 ,1,4312,65 ,1,4313,261935 ,1,4314,207930 ,1,4315,326000 ,1,4316,65 ,1,4317,65 ,1,4318,65 ,1,4319,234315 ,1,4320,201625 ,1,4321,65 ,1,4322,65 ,1,4323,65 ,1,4324,215695 ,1,4325,65 ,1,4326,65 ,1,4327,65 ,1,4328,65 ,1,4329,65 ,1,4330,65 ,1,4331,65 ,1,4332,65 ,1,4333,65 ,1,4334,65 ,1,4335,65 ,1,4336,65 ,1,4337,65 ,1,4338,65 ,1,4339,65 ,1,4340,65 ,1,4341,272415 ,1,4342,329380 ,1,4343,65 ,1,4344,65 ,1,4345,65 ,1,4346,206280 ,1,4347,65 ,1,4348,269895 ,1,4349,65 ,1,4350,324545 ,1,4351,65 ,1,4352,65 ,1,4353,65 ,1,4354,188375 ,1,4355,224525 ,1,4356,232280 ,1,4357,212840 ,1,4358,65 ,1,4359,65 ,1,4360,65 ,1,4361,65 ,1,4362,65 ,1,4363,65 ,1,4364,65 ,1,4365,65 ,1,4366,342580 ,1,4367,210530 ,1,4368,65 ,1,4369,65 ,1,4370,65 ,1,4371,303745 ,1,4372,301485 ,1,4373,65 ,1,4374,65 ,1,4375,65 ,1,4376,65 ,1,4377,292300 ,1,4378,65 ,1,4379,65 ,1,4380,65 ,1,4381,259735 ,1,4382,65 ,1,4383,65 ,1,4384,326490 ,1,4385,209755 ,1,4386,175490 ,1,4387,65 ,1,4388,300970 ,1,4389,266235 ,1,4390,65 ,1,4391,65 ,1,4392,65 ,1,4393,65 ,1,4394,277190 ,1,4395,65 ,1,4396,65 ,1,4397,65 ,1,4398,65 ,1,4399,65 ,1,4400,65 ,1,4401,298585 ,1,4402,65 ,1,4403,205225 ,1,4404,166610 ,1,4405,65 ,1,4406,65 ,1,4407,65 ,1,4408,284915 ,1,4409,182390 ,1,4410,65 ,1,4411,65 ,1,4412,65 ,1,4413,65 ,1,4414,65 ,1,4415,65 ,1,4416,65 ,1,4417,65 ,1,4418,65 ,1,4419,65 ,1,4420,280005 ,1,4421,65 ,1,4422,283665 ,1,4423,65 ,1,4424,318885 ,1,4425,65 ,1,4426,65 ,1,4427,237720 ,1,4428,318305 ,1,4429,214960 ,1,4430,65 ,1,4431,273005 ,1,4432,260700 ,1,4433,65 ,1,4434,65 ,1,4435,264745 ,1,4436,65 ,1,4437,195410 ,1,4438,197350 ,1,4439,65 ,1,4440,65 ,1,4441,65 ,1,4442,234845 ,1,4443,65 ,1,4444,65 ,1,4445,65 ,1,4446,65 ,1,4447,65 ,1,4448,296155 ,1,4449,239910 ,1,4450,304095 ,1,4451,336950 ,1,4452,277005 ,1,4453,213965 ,1,4454,65 ,1,4455,65 ,1,4456,65 ,1,4457,65 ,1,4458,65 ,1,4459,65 ,1,4460,65 ,1,4461,65 ,1,4462,65 ,1,4463,189240 ,1,4464,306260 ,1,4465,65 ,1,4466,65 ,1,4467,65 ,1,4468,65 ,1,4469,65 ,1,4470,316225 ,1,4471,65 ,1,4472,179930 ,1,4473,306825 ,1,4474,204505 ,1,4475,240925 ,1,4476,329540 ,1,4477,65 ,1,4478,65 ,1,4479,258095 ,1,4480,171350 ,1,4481,341880 ,1,4482,65 ,1,4483,65 ,1,4484,65 ,1,4485,65 ,1,4486,65 ,1,4487,65 ,1,4488,303010 ,1,4489,291660 ,1,4490,65 ,1,4491,307585 ,1,4492,339670 ,1,4493,65 ,1,4494,321895 ,1,4495,65 ,1,4496,65 ,1,4497,344350 ,1,4498,293010 ,1,4499,65 ,1,4500,65 ,1,4501,65 ,1,4502,330615 ,1,4503,232125 ,1,4504,65 ,1,4505,65 ,1,4506,65 ,1,4507,279025 ,1,4508,65 ,1,4509,65 ,1,4510,172740 ,1,4511,298230 ,1,4512,306135 ,1,4513,257400 ,1,4514,205020 ,1,4515,65 ,1,4516,339175 ,1,4517,65 ,1,4518,65 ,1,4519,65 ,1,4520,65 ,1,4521,65 ,1,4522,65 ,1,4523,65 ,1,4524,316370 ,1,4525,257720 ,1,4526,285915 ,1,4527,242890 ,1,4528,319105 ,1,4529,65 ,1,4530,297505 ,1,4531,65 ,1,4532,65 ,1,4533,277865 ,1,4534,250510 ,1,4535,180925 ,1,4536,65 ,1,4537,280985 ,1,4538,294295 ,1,4539,65 ,1,4540,322945 ,1,4541,207510 ,1,4542,65 ,1,4543,65 ,1,4544,65 ,1,4545,275850 ,1,4546,65 ,1,4547,65 ,1,4548,65 ,1,4549,239470 ,1,4550,307445 ,1,4551,65 ,1,4552,296615 ,1,4553,65 ,1,4554,65 ,1,4555,259055 ,1,4556,279405 ,1,4557,65 ,1,4558,245645 ,1,4559,65 ,1,4560,65 ,1,4561,65 ,1,4562,65 ,1,4563,328920 ,1,4564,65 ,1,4565,65 ,1,4566,65 ,1,4567,65 ,1,4568,65 ,1,4569,65 ,1,4570,65 ,1,4571,252635 ,1,4572,65 ,1,4573,65 ,1,4574,269530 ,1,4575,65 ,1,4576,65 ,1,4577,65 ,1,4578,65 ,1,4579,65 ,1,4580,65 ,1,4581,65 ,1,4582,65 ,1,4583,173945 ,1,4584,219340 ,1,4585,180735 ,1,4586,65 ,1,4587,174945 ,1,4588,244370 ,1,4589,65 ,1,4590,65 ,1,4591,65 ,1,4592,65 ,1,4593,65 ,1,4594,225480 ,1,4595,170860 ,1,4596,334615 ,1,4597,224355 ,1,4598,65 ,1,4599,65 ,1,4600,65 ,1,4601,65 ,1,4602,340855 ,1,4603,351335 ,1,4604,205130 ,1,4605,215910 ,1,4606,319745 ,1,4607,188510 ,1,4608,173990 ,1,4609,316020 ,1,4610,343630 ,1,4611,315955 ,1,4612,65 ,1,4613,65 ,1,4614,65 ,1,4615,273110 ,1,4616,65 ,1,4617,65 ,1,4618,65 ,1,4619,202725 ,1,4620,306640 ,1,4621,65 ,1,4622,312885 ,1,4623,65 ,1,4624,65 ,1,4625,222290 ,1,4626,280815 ,1,4627,65 ,1,4628,65 ,1,4629,344730 ,1,4630,65 ,1,4631,65 ,1,4632,247445 ,1,4633,65 ,1,4634,65 ,1,4635,65 ,1,4636,65 ,1,4637,65 ,1,4638,65 ,1,4639,342365 ,1,4640,229280 ,1,4641,262200 ,1,4642,65 ,1,4643,65 ,1,4644,65 ,1,4645,65 ,1,4646,65 ,1,4647,300470 ,1,4648,351325 ,1,4649,279185 ,1,4650,291135 ,1,4651,65 ,1,4652,65 ,1,4653,305100 ,1,4654,65 ,1,4655,65 ,1,4656,275295 ,1,4657,65 ,1,4658,65 ,1,4659,172620 ,1,4660,206325 ,1,4661,65 ,1,4662,234930 ,1,4663,65 ,1,4664,65 ,1,4665,65 ,1,4666,65 ,1,4667,65 ,1,4668,65 ,1,4669,348155 ,1,4670,172915 ,1,4671,223735 ,1,4672,266945 ,1,4673,65 ,1,4674,331250 ,1,4675,246055 ,1,4676,65 ,1,4677,257255 ,1,4678,346680 ,1,4679,65 ,1,4680,65 ,1,4681,175955 ,1,4682,275200 ,1,4683,65 ,1,4684,65 ,1,4685,218540 ,1,4686,65 ,1,4687,65 ,1,4688,65 ,1,4689,65 ,1,4690,254815 ,1,4691,65 ,1,4692,65 ,1,4693,65 ,1,4694,313525 ,1,4695,248220 ,1,4696,272245 ,1,4697,65 ,1,4698,196495 ,1,4699,252970 ,1,4700,343210 ,1,4701,65 ,1,4702,65 ,1,4703,243285 ,1,4704,226030 ,1,4705,317640 ,1,4706,65 ,1,4707,65 ,1,4708,65 ,1,4709,65 ,1,4710,192775 ,1,4711,65 ,1,4712,65 ,1,4713,65 ,1,4714,65 ,1,4715,232080 ,1,4716,340205 ,1,4717,65 ,1,4718,65 ,1,4719,65 ,1,4720,65 ,1,4721,65 ,1,4722,65 ,1,4723,173580 ,1,4724,201245 ,1,4725,65 ,1,4726,194115 ,1,4727,224015 ,1,4728,248510 ,1,4729,65 ,1,4730,65 ,1,4731,313535 ,1,4732,347090 ,1,4733,326755 ,1,4734,65 ,1,4735,283045 ,1,4736,295880 ,1,4737,236705 ,1,4738,65 ,1,4739,65 ,1,4740,65 ,1,4741,65 ,1,4742,65 ,1,4743,65 ,1,4744,65 ,1,4745,253070 ,1,4746,191620 ,1,4747,249580 ,1,4748,189390 ,1,4749,65 ,1,4750,258880 ,1,4751,65 ,1,4752,65 ,1,4753,65 ,1,4754,65 ,1,4755,285785 ,1,4756,65 ,1,4757,65 ,1,4758,211255 ,1,4759,65 ,1,4760,65 ,1,4761,214850 ,1,4762,247340 ,1,4763,172570 ,1,4764,299075 ,1,4765,65 ,1,4766,65 ,1,4767,65 ,1,4768,65 ,1,4769,65 ,1,4770,65 ,1,4771,65 ,1,4772,287610 ,1,4773,272105 ,1,4774,65 ,1,4775,65 ,1,4776,65 ,1,4777,65 ,1,4778,65 ,1,4779,65 ,1,4780,65 ,1,4781,322340 ,1,4782,65 ,1,4783,301075 ,1,4784,227285 ,1,4785,329805 ,1,4786,240275 ,1,4787,218690 ,1,4788,337200 ,1,4789,183025 ,1,4790,65 ,1,4791,65 ,1,4792,261530 ,1,4793,65 ,1,4794,65 ,1,4795,65 ,1,4796,217130 ,1,4797,232710 ,1,4798,241360 ,1,4799,273120 ,1,4800,65 ,1,4801,65 ,1,4802,270350 ,1,4803,65 ,1,4804,315880 ,1,4805,338250 ,1,4806,313680 ,1,4807,65 ,1,4808,65 ,1,4809,65 ,1,4810,65 ,1,4811,65 ,1,4812,289200 ,1,4813,207460 ,1,4814,65 ,1,4815,65 ,1,4816,65 ,1,4817,65 ,1,4818,299530 ,1,4819,266830 ,1,4820,236375 ,1,4821,345160 ,1,4822,65 ,1,4823,210905 ,1,4824,299830 ,1,4825,65 ,1,4826,65 ,1,4827,65 ,1,4828,65 ,1,4829,65 ,1,4830,65 ,1,4831,275600 ,1,4832,65 ,1,4833,207980 ,1,4834,217295 ,1,4835,197495 ,1,4836,65 ,1,4837,233585 ,1,4838,65 ,1,4839,65 ,1,4840,65 ,1,4841,65 ,1,4842,278505 ,1,4843,65 ,1,4844,332670 ,1,4845,199955 ,1,4846,65 ,1,4847,284995 ,1,4848,253765 ,1,4849,65 ,1,4850,65 ,1,4851,65 ,1,4852,195625 ,1,4853,65 ,1,4854,65 ,1,4855,251905 ,1,4856,267245 ,1,4857,258260 ,1,4858,271045 ,1,4859,65 ,1,4860,65 ,1,4861,65 ,1,4862,65 ,1,4863,211820 ,1,4864,65 ,1,4865,183375 ,1,4866,314525 ,1,4867,317670 ,1,4868,236755 ,1,4869,65 ,1,4870,237165 ,1,4871,65 ,1,4872,239990 ,1,4873,65 ,1,4874,65 ,1,4875,65 ,1,4876,65 ,1,4877,174310 ,1,4878,214585 ,1,4879,321790 ,1,4880,65 ,1,4881,65 ,1,4882,347080 ,1,4883,65 ,1,4884,302765 ,1,4885,65 ,1,4886,65 ,1,4887,65 ,1,4888,65 ,1,4889,65 ,1,4890,65 ,1,4891,65 ,1,4892,65 ,1,4893,65 ,1,4894,323835 ,1,4895,346400 ,1,4896,65 ,1,4897,65 ,1,4898,190760 ,1,4899,303200 ,1,4900,65 ,1,4901,65 ,1,4902,65 ,1,4903,65 ,1,4904,65 ,1,4905,65 ,1,4906,65 ,1,4907,65 ,1,4908,65 ,1,4909,65 ,1,4910,242635 ,1,4911,65 ,1,4912,65 ,1,4913,65 ,1,4914,209830 ,1,4915,340015 ,1,4916,65 ,1,4917,222340 ,1,4918,65 ,1,4919,65 ,1,4920,338260 ,1,4921,65 ,1,4922,175965 ,1,4923,65 ,1,4924,65 ,1,4925,351280 ,1,4926,252865 ,1,4927,200985 ,1,4928,185055 ,1,4929,318120 ,1,4930,65 ,1,4931,239340 ,1,4932,65 ,1,4933,65 ,1,4934,262945 ,1,4935,65 ,1,4936,278545 ,1,4937,65 ,1,4938,326540 ,1,4939,329100 ,1,4940,315135 ,1,4941,220395 ,1,4942,65 ,1,4943,65 ,1,4944,65 ,1,4945,241120 ,1,4946,206600 ,1,4947,203065 ,1,4948,65 ,1,4949,294630 ,1,4950,65 ,1,4951,279285 ,1,4952,247640 ,1,4953,65 ,1,4954,318810 ,1,4955,182065 ,1,4956,65 ,1,4957,324610 ,1,4958,65 ,1,4959,65 ,1,4960,305210 ,1,4961,348575 ,1,4962,65 ,1,4963,306510 ,1,4964,65 ,1,4965,65 ,1,4966,347205 ,1,4967,322350 ,1,4968,339920 ,1,4969,168325 ,1,4970,65 ,1,4971,248170 ,1,4972,321205 ,1,4973,234025 ,1,4974,65 ,1,4975,65 ,1,4976,252235 ,1,4977,330705 ,1,4978,65 ,1,4979,65 ,1,4980,65 ,1,4981,65 ,1,4982,291170 ,1,4983,65 ,1,4984,65 ,1,4985,65 ,1,4986,65 ,1,4987,65 ,1,4988,65 ,1,4989,65 ,1,4990,65 ,1,4991,65 ,1,4992,65 ,1,4993,65 ,1,4994,65 ,1,4995,210585 ,1,4996,351270 ,1,4997,65 ,1,4998,321060 ,1,4999,188900 ,1,5000,196180 ,1,5001,175720 ,1,5002,65 ,1,5003,65 ,1,5004,65 ,1,5005,65 ,1,5006,65 ,1,5007,65 ,1,5008,65 ,1,5009,65 ,1,5010,65 ,1,5011,351260 ,1,5012,65 ,1,5013,256605 ,1,5014,65 ,1,5015,351250 ,1,5016,65 ,1,5017,261000 ,1,5018,65 ,1,5019,325690 ,1,5020,65 ,1,5021,270840 ,1,5022,335870 ,1,5023,218880 ,1,5024,339790 ,1,5025,328465 ,1,5026,225160 ,1,5027,346100 ,1,5028,65 ,1,5029,65 ,1,5030,214290 ,1,5031,192485 ,1,5032,65 ,1,5033,65 ,1,5034,65 ,1,5035,65 ,1,5036,65 ,1,5037,65 ,1,5038,175095 ,1,5039,65 ,1,5040,65 ,1,5041,185565 ,1,5042,65 ,1,5043,65 ,1,5044,250205 ,1,5045,65 ,1,5046,65 ,1,5047,227205 ,1,5048,65 ,1,5049,65 ,1,5050,187135 ,1,5051,65 ,1,5052,65 ,1,5053,65 ,1,5054,65 ,1,5055,65 ,1,5056,65 ,1,5057,65 ,1,5058,65 ,1,5059,343285 ,1,5060,65 ,1,5061,65 ,1,5062,281695 ,1,5063,278655 ,1,5064,65 ,1,5065,65 ,1,5066,65 ,1,5067,65 ,1,5068,65 ,1,5069,65 ,1,5070,65 ,1,5071,198375 ,1,5072,65 ,1,5073,65 ,1,5074,65 ,1,5075,65 ,1,5076,65 ,1,5077,65 ,1,5078,65 ,1,5079,65 ,1,5080,65 ,1,5081,65 ,1,5082,65 ,1,5083,225045 ,1,5084,65 ,1,5085,65 ,1,5086,65 ,1,5087,65 ,1,5088,183595 ,1,5089,65 ,1,5090,214165 ,1,5091,257560 ,1,5092,65 ,1,5093,65 ,1,5094,65 ,1,5095,279875 ,1,5096,65 ,1,5097,65 ,1,5098,65 ,1,5099,65 ,1,5100,65 ,1,5101,65 ,1,5102,65 ,1,5103,302260 ,1,5104,335555 ,1,5105,65 ,1,5106,212230 ,1,5107,65 ,1,5108,65 ,1,5109,65 ,1,5110,304595 ,1,5111,289625 ,1,5112,198245 ,1,5113,65 ,1,5114,65 ,1,5115,65 ,1,5116,229070 ,1,5117,318160 ,1,5118,282025 ,1,5119,65 ,1,5120,281495 ,1,5121,346790 ,1,5122,65 ,1,5123,335310 ,1,5124,65 ,1,5125,191630 ,1,5126,280285 ,1,5127,336405 ,1,5128,345050 ,1,5129,346210 ,1,5130,224980 ,1,5131,65 ,1,5132,281970 ,1,5133,297690 ,1,5134,65 ,1,5135,65 ,1,5136,194015 ,1,5137,65 ,1,5138,215185 ,1,5139,300560 ,1,5140,65 ,1,5141,65 ,1,5142,65 ,1,5143,65 ,1,5144,65 ,1,5145,65 ,1,5146,307020 ,1,5147,342300 ,1,5148,65 ,1,5149,65 ,1,5150,65 ,1,5151,65 ,1,5152,65 ,1,5153,65 ,1,5154,259400 ,1,5155,65 ,1,5156,171545 ,1,5157,65 ,1,5158,65 ,1,5159,65 ,1,5160,216570 ,1,5161,264355 ,1,5162,65 ,1,5163,65 ,1,5164,65 ,1,5165,65 ,1,5166,65 ,1,5167,65 ,1,5168,313315 ,1,5169,65 ,1,5170,65 ,1,5171,65 ,1,5172,65 ,1,5173,65 ,1,5174,226845 ,1,5175,65 ,1,5176,166985 ,1,5177,251340 ,1,5178,65 ,1,5179,65 ,1,5180,65 ,1,5181,65 ,1,5182,65 ,1,5183,65 ,1,5184,65 ,1,5185,290760 ,1,5186,286205 ,1,5187,65 ,1,5188,65 ,1,5189,236135 ,1,5190,65 ,1,5191,65 ,1,5192,348390 ,1,5193,65 ,1,5194,65 ,1,5195,65 ,1,5196,65 ,1,5197,65 ,1,5198,169070 ,1,5199,65 ,1,5200,65 ,1,5201,222585 ,1,5202,65 ,1,5203,65 ,1,5204,65 ,1,5205,65 ,1,5206,65 ,1,5207,276860 ,1,5208,65 ,1,5209,65 ,1,5210,65 ,1,5211,192580 ,1,5212,65 ,1,5213,65 ,1,5214,65 ,1,5215,65 ,1,5216,293360 ,1,5217,65 ,1,5218,65 ,1,5219,65 ,1,5220,178425 ,1,5221,65 ,1,5222,65 ,1,5223,277105 ,1,5224,65 ,1,5225,334140 ,1,5226,184970 ,1,5227,65 ,1,5228,65 ,1,5229,286400 ,1,5230,209125 ,1,5231,65 ,1,5232,309470 ,1,5233,292425 ,1,5234,280925 ,1,5235,240505 ,1,5236,269655 ,1,5237,65 ,1,5238,65 ,1,5239,255495 ,1,5240,65 ,1,5241,65 ,1,5242,65 ,1,5243,65 ,1,5244,65 ,1,5245,65 ,1,5246,351235 ,1,5247,190740 ,1,5248,65 ,1,5249,65 ,1,5250,331210 ,1,5251,346555 ,1,5252,182475 ,1,5253,234005 ,1,5254,327850 ,1,5255,175890 ,1,5256,347410 ,1,5257,65 ,1,5258,177695 ,1,5259,65 ,1,5260,65 ,1,5261,65 ,1,5262,65 ,1,5263,186340 ,1,5264,253410 ,1,5265,212730 ,1,5266,65 ,1,5267,210500 ,1,5268,65 ,1,5269,65 ,1,5270,65 ,1,5271,195290 ,1,5272,65 ,1,5273,65 ,1,5274,65 ,1,5275,65 ,1,5276,65 ,1,5277,65 ,1,5278,65 ,1,5279,65 ,1,5280,65 ,1,5281,65 ,1,5282,65 ,1,5283,65 ,1,5284,218530 ,1,5285,65 ,1,5286,234510 ,1,5287,65 ,1,5288,65 ,1,5289,65 ,1,5290,297235 ,1,5291,65 ,1,5292,65 ,1,5293,65 ,1,5294,291830 ,1,5295,307700 ,1,5296,182255 ,1,5297,297545 ,1,5298,176155 ,1,5299,65 ,1,5300,182605 ,1,5301,65 ,1,5302,65 ,1,5303,65 ,1,5304,300115 ,1,5305,274480 ,1,5306,65 ,1,5307,65 ,1,5308,65 ,1,5309,319535 ,1,5310,65 ,1,5311,65 ,1,5312,65 ,1,5313,230260 ,1,5314,65 ,1,5315,65 ,1,5316,65 ,1,5317,199845 ,1,5318,65 ,1,5319,65 ,1,5320,232855 ,1,5321,351225 ,1,5322,65 ,1,5323,65 ,1,5324,65 ,1,5325,342270 ,1,5326,172795 ,1,5327,227760 ,1,5328,65 ,1,5329,344120 ,1,5330,270745 ,1,5331,262590 ,1,5332,65 ,1,5333,65 ,1,5334,65 ,1,5335,65 ,1,5336,65 ,1,5337,65 ,1,5338,65 ,1,5339,65 ,1,5340,65 ,1,5341,232825 ,1,5342,65 ,1,5343,65 ,1,5344,246685 ,1,5345,176230 ,1,5346,65 ,1,5347,65 ,1,5348,65 ,1,5349,65 ,1,5350,65 ,1,5351,344485 ,1,5352,65 ,1,5353,65 ,1,5354,65 ,1,5355,65 ,1,5356,315070 ,1,5357,65 ,1,5358,65 ,1,5359,180360 ,1,5360,65 ,1,5361,65 ,1,5362,65 ,1,5363,65 ,1,5364,65 ,1,5365,65 ,1,5366,199415 ,1,5367,229015 ,1,5368,228185 ,1,5369,186095 ,1,5370,284805 ,1,5371,291705 ,1,5372,275645 ,1,5373,65 ,1,5374,214695 ,1,5375,65 ,1,5376,334495 ,1,5377,332280 ,1,5378,65 ,1,5379,322540 ,1,5380,320260 ,1,5381,65 ,1,5382,342325 ,1,5383,65 ,1,5384,226525 ,1,5385,209390 ,1,5386,65 ,1,5387,314760 ,1,5388,65 ,1,5389,65 ,1,5390,268220 ,1,5391,65 ,1,5392,65 ,1,5393,65 ,1,5394,65 ,1,5395,213085 ,1,5396,65 ,1,5397,65 ,1,5398,65 ,1,5399,294480 ,1,5400,65 ,1,5401,65 ,1,5402,65 ,1,5403,65 ,1,5404,210140 ,1,5405,310040 ,1,5406,172905 ,1,5407,65 ,1,5408,228400 ,1,5409,185025 ,1,5410,322235 ,1,5411,222550 ,1,5412,279340 ,1,5413,65 ,1,5414,176390 ,1,5415,65 ,1,5416,65 ,1,5417,65 ,1,5418,233155 ,1,5419,65 ,1,5420,65 ,1,5421,65 ,1,5422,65 ,1,5423,65 ,1,5424,65 ,1,5425,65 ,1,5426,179170 ,1,5427,65 ,1,5428,65 ,1,5429,65 ,1,5430,245705 ,1,5431,65 ,1,5432,258740 ,1,5433,65 ,1,5434,330050 ,1,5435,191220 ,1,5436,65 ,1,5437,268320 ,1,5438,65 ,1,5439,65 ,1,5440,65 ,1,5441,189085 ,1,5442,182770 ,1,5443,220225 ,1,5444,65 ,1,5445,228550 ,1,5446,345880 ,1,5447,65 ,1,5448,309650 ,1,5449,65 ,1,5450,203755 ,1,5451,65 ,1,5452,340885 ,1,5453,65 ,1,5454,65 ,1,5455,65 ,1,5456,65 ,1,5457,65 ,1,5458,65 ,1,5459,65 ,1,5460,65 ,1,5461,65 ,1,5462,65 ,1,5463,65 ,1,5464,65 ,1,5465,65 ,1,5466,65 ,1,5467,171950 ,1,5468,338865 ,1,5469,65 ,1,5470,65 ,1,5471,65 ,1,5472,65 ,1,5473,351215 ,1,5474,186310 ,1,5475,65 ,1,5476,252145 ,1,5477,255850 ,1,5478,332250 ,1,5479,65 ,1,5480,65 ,1,5481,65 ,1,5482,65 ,1,5483,65 ,1,5484,65 ,1,5485,65 ,1,5486,193125 ,1,5487,221885 ,1,5488,65 ,1,5489,65 ,1,5490,65 ,1,5491,65 ,1,5492,329890 ,1,5493,244195 ,1,5494,65 ,1,5495,168730 ,1,5496,65 ,1,5497,65 ,1,5498,65 ,1,5499,230305 ,1,5500,254310 ,1,5501,65 ,1,5502,65 ,1,5503,277650 ,1,5504,336345 ,1,5505,65 ,1,5506,351205 ,1,5507,262910 ,1,5508,65 ,1,5509,210250 ,1,5510,327810 ,1,5511,317445 ,1,5512,65 ,1,5513,65 ,1,5514,65 ,1,5515,65 ,1,5516,301005 ,1,5517,65 ,1,5518,65 ,1,5519,65 ,1,5520,65 ,1,5521,65 ,1,5522,65 ,1,5523,65 ,1,5524,65 ,1,5525,65 ,1,5526,65 ,1,5527,300005 ,1,5528,65 ,1,5529,65 ,1,5530,65 ,1,5531,65 ,1,5532,65 ,1,5533,65 ,1,5534,65 ,1,5535,65 ,1,5536,263085 ,1,5537,65 ,1,5538,243695 ,1,5539,65 ,1,5540,262190 ,1,5541,220275 ,1,5542,339570 ,1,5543,300305 ,1,5544,65 ,1,5545,65 ,1,5546,65 ,1,5547,249815 ,1,5548,176020 ,1,5549,65 ,1,5550,65 ,1,5551,313575 ,1,5552,65 ,1,5553,254510 ,1,5554,65 ,1,5555,65 ,1,5556,196385 ,1,5557,311275 ,1,5558,305355 ,1,5559,65 ,1,5560,319410 ,1,5561,303170 ,1,5562,65 ,1,5563,65 ,1,5564,65 ,1,5565,180490 ,1,5566,65 ,1,5567,65 ,1,5568,324800 ,1,5569,191180 ,1,5570,351180 ,1,5571,65 ,1,5572,270135 ,1,5573,304425 ,1,5574,266025 ,1,5575,324305 ,1,5576,242245 ,1,5577,328270 ,1,5578,232400 ,1,5579,243405 ,1,5580,65 ,1,5581,191095 ,1,5582,65 ,1,5583,346410 ,1,5584,65 ,1,5585,65 ,1,5586,65 ,1,5587,351170 ,1,5588,65 ,1,5589,272025 ,1,5590,65 ,1,5591,65 ,1,5592,65 ,1,5593,235240 ,1,5594,65 ,1,5595,65 ,1,5596,313940 ,1,5597,190995 ,1,5598,258980 ,1,5599,65 ,1,5600,65 ,1,5601,65 ,1,5602,65 ,1,5603,290070 ,1,5604,65 ,1,5605,348470 ,1,5606,65 ,1,5607,65 ,1,5608,291755 ,1,5609,65 ,1,5610,65 ,1,5611,65 ,1,5612,65 ,1,5613,284795 ,1,5614,255475 ,1,5615,237120 ,1,5616,299670 ,1,5617,65 ,1,5618,279760 ,1,5619,65 ,1,5620,65 ,1,5621,65 ,1,5622,65 ,1,5623,65 ,1,5624,65 ,1,5625,65 ,1,5626,238575 ,1,5627,232440 ,1,5628,65 ,1,5629,241370 ,1,5630,65 ,1,5631,338490 ,1,5632,241835 ,1,5633,346660 ,1,5634,65 ,1,5635,187360 ,1,5636,344820 ,1,5637,65 ,1,5638,193800 ,1,5639,268780 ,1,5640,65 ,1,5641,311165 ,1,5642,230375 ,1,5643,303040 ,1,5644,249645 ,1,5645,65 ,1,5646,65 ,1,5647,337560 ,1,5648,65 ,1,5649,286925 ,1,5650,65 ,1,5651,65 ,1,5652,171855 ,1,5653,65 ,1,5654,65 ,1,5655,198140 ,1,5656,65 ,1,5657,241140 ,1,5658,65 ,1,5659,65 ,1,5660,65 ,1,5661,65 ,1,5662,195400 ,1,5663,212615 ,1,5664,229410 ,1,5665,169970 ,1,5666,320855 ,1,5667,65 ,1,5668,65 ,1,5669,302075 ,1,5670,65 ,1,5671,65 ,1,5672,65 ,1,5673,351160 ,1,5674,295450 ,1,5675,65 ,1,5676,65 ,1,5677,65 ,1,5678,65 ,1,5679,65 ,1,5680,65 ,1,5681,249325 ,1,5682,219560 ,1,5683,337820 ,1,5684,65 ,1,5685,65 ,1,5686,65 ,1,5687,65 ,1,5688,65 ,1,5689,65 ,1,5690,241930 ,1,5691,65 ,1,5692,65 ,1,5693,195645 ,1,5694,65 ,1,5695,65 ,1,5696,343975 ,1,5697,65 ,1,5698,65 ,1,5699,222010 ,1,5700,204115 ,1,5701,65 ,1,5702,65 ,1,5703,287875 ,1,5704,65 ,1,5705,65 ,1,5706,213270 ,1,5707,65 ,1,5708,65 ,1,5709,65 ,1,5710,65 ,1,5711,236450 ,1,5712,302855 ,1,5713,275240 ,1,5714,65 ,1,5715,65 ,1,5716,65 ,1,5717,65 ,1,5718,65 ,1,5719,275315 ,1,5720,273795 ,1,5721,65 ,1,5722,65 ,1,5723,65 ,1,5724,280475 ,1,5725,279530 ,1,5726,260605 ,1,5727,202605 ,1,5728,190340 ,1,5729,65 ,1,5730,65 ,1,5731,304660 ,1,5732,241455 ,1,5733,65 ,1,5734,212995 ,1,5735,300850 ,1,5736,65 ,1,5737,65 ,1,5738,65 ,1,5739,65 ,1,5740,65 ,1,5741,65 ,1,5742,65 ,1,5743,65 ,1,5744,65 ,1,5745,65 ,1,5746,269625 ,1,5747,272940 ,1,5748,312115 ,1,5749,262610 ,1,5750,65 ,1,5751,65 ,1,5752,222895 ,1,5753,65 ,1,5754,65 ,1,5755,253080 ,1,5756,275535 ,1,5757,65 ,1,5758,65 ,1,5759,222225 ,1,5760,65 ,1,5761,65 ,1,5762,65 ,1,5763,190470 ,1,5764,65 ,1,5765,65 ,1,5766,65 ,1,5767,65 ,1,5768,65 ,1,5769,65 ,1,5770,65 ,1,5771,65 ,1,5772,198330 ,1,5773,65 ,1,5774,233360 ,1,5775,65 ,1,5776,65 ,1,5777,351150 ,1,5778,65 ,1,5779,65 ,1,5780,65 ,1,5781,65 ,1,5782,65 ,1,5783,346080 ,1,5784,65 ,1,5785,257765 ,1,5786,261555 ,1,5787,65 ,1,5788,192190 ,1,5789,65 ,1,5790,65 ,1,5791,214315 ,1,5792,205330 ,1,5793,65 ,1,5794,65 ,1,5795,65 ,1,5796,65 ,1,5797,65 ,1,5798,65 ,1,5799,249225 ,1,5800,232460 ,1,5801,331985 ,1,5802,65 ,1,5803,224990 ,1,5804,321380 ,1,5805,65 ,1,5806,222080 ,1,5807,65 ,1,5808,312540 ,1,5809,65 ,1,5810,65 ,1,5811,275715 ,1,5812,315520 ,1,5813,341535 ,1,5814,346430 ,1,5815,65 ,1,5816,65 ,1,5817,65 ,1,5818,65 ,1,5819,282495 ,1,5820,65 ,1,5821,65 ,1,5822,65 ,1,5823,65 ,1,5824,65 ,1,5825,65 ,1,5826,65 ,1,5827,268120 ,1,5828,283145 ,1,5829,65 ,1,5830,298970 ,1,5831,65 ,1,5832,316390 ,1,5833,330310 ,1,5834,65 ,1,5835,324735 ,1,5836,65 ,1,5837,65 ,1,5838,65 ,1,5839,65 ,1,5840,65 ,1,5841,65 ,1,5842,190195 ,1,5843,243295 ,1,5844,65 ,1,5845,289095 ,1,5846,216690 ,1,5847,251655 ,1,5848,313270 ,1,5849,65 ,1,5850,65 ,1,5851,65 ,1,5852,65 ,1,5853,201685 ,1,5854,65 ,1,5855,212375 ,1,5856,234570 ,1,5857,65 ,1,5858,65 ,1,5859,65 ,1,5860,65 ,1,5861,351135 ,1,5862,65 ,1,5863,65 ,1,5864,197245 ,1,5865,65 ,1,5866,199130 ,1,5867,207990 ,1,5868,65 ,1,5869,65 ,1,5870,65 ,1,5871,65 ,1,5872,65 ,1,5873,65 ,1,5874,65 ,1,5875,183145 ,1,5876,65 ,1,5877,65 ,1,5878,65 ,1,5879,65 ,1,5880,65 ,1,5881,65 ,1,5882,351125 ,1,5883,65 ,1,5884,65 ,1,5885,65 ,1,5886,65 ,1,5887,186980 ,1,5888,208945 ,1,5889,65 ,1,5890,65 ,1,5891,65 ,1,5892,242370 ,1,5893,65 ,1,5894,343085 ,1,5895,65 ,1,5896,65 ,1,5897,65 ,1,5898,225390 ,1,5899,277875 ,1,5900,275220 ,1,5901,65 ,1,5902,278210 ,1,5903,212765 ,1,5904,65 ,1,5905,65 ,1,5906,271410 ,1,5907,234665 ,1,5908,65 ,1,5909,274540 ,1,5910,170040 ,1,5911,259465 ,1,5912,65 ,1,5913,339840 ,1,5914,65 ,1,5915,344155 ,1,5916,65 ,1,5917,65 ,1,5918,65 ,1,5919,237875 ,1,5920,65 ,1,5921,65 ,1,5922,65 ,1,5923,271055 ,1,5924,65 ,1,5925,65 ,1,5926,299585 ,1,5927,65 ,1,5928,65 ,1,5929,65 ,1,5930,243990 ,1,5931,351810 ,1,5932,65 ,1,5933,65 ,1,5934,229125 ,1,5935,238040 ,1,5936,65 ,1,5937,65 ,1,5938,65 ,1,5939,65 ,1,5940,65 ,1,5941,202435 ,1,5942,344675 ,1,5943,288435 ,1,5944,65 ,1,5945,65 ,1,5946,65 ,1,5947,65 ,1,5948,263590 ,1,5949,65 ,1,5950,211190 ,1,5951,65 ,1,5952,306250 ,1,5953,288925 ,1,5954,65 ,1,5955,299155 ,1,5956,65 ,1,5957,65 ,1,5958,329990 ,1,5959,311930 ,1,5960,65 ,1,5961,216855 ,1,5962,65 ,1,5963,271980 ,1,5964,65 ,1,5965,65 ,1,5966,65 ,1,5967,65 ,1,5968,65 ,1,5969,65 ,1,5970,241245 ,1,5971,213415 ,1,5972,65 ,1,5973,220475 ,1,5974,184395 ,1,5975,283055 ,1,5976,300980 ,1,5977,197045 ,1,5978,325125 ,1,5979,260230 ,1,5980,249740 ,1,5981,322360 ,1,5982,65 ,1,5983,234095 ,1,5984,273470 ,1,5985,280450 ,1,5986,176010 ,1,5987,65 ,1,5988,65 ,1,5989,65 ,1,5990,65 ,1,5991,279085 ,1,5992,65 ,1,5993,65 ,1,5994,65 ,1,5995,65 ,1,5996,65 ,1,5997,65 ,1,5998,65 ,1,5999,65 ,1,6000,65 ,1,6001,65 ,1,6002,65 ,1,6003,65 ,1,6004,65 ,1,6005,208725 ,1,6006,65 ,1,6007,65 ,1,6008,65 ,1,6009,290610 ,1,6010,65 ,1,6011,65 ,1,6012,264255 ,1,6013,172405 ,1,6014,256270 ,1,6015,65 ,1,6016,172840 ,1,6017,65 ,1,6018,65 ,1,6019,65 ,1,6020,65 ,1,6021,65 ,1,6022,65 ,1,6023,316910 ,1,6024,213530 ,1,6025,336385 ,1,6026,315395 ,1,6027,65 ,1,6028,65 ,1,6029,65 ,1,6030,65 ,1,6031,65 ,1,6032,278840 ,1,6033,65 ,1,6034,201615 ,1,6035,345810 ,1,6036,312875 ,1,6037,65 ,1,6038,174405 ,1,6039,246490 ,1,6040,262600 ,1,6041,65 ,1,6042,65 ,1,6043,65 ,1,6044,227320 ,1,6045,65 ,1,6046,65 ,1,6047,65 ,1,6048,65 ,1,6049,65 ,1,6050,284825 ,1,6051,287335 ,1,6052,293785 ,1,6053,311230 ,1,6054,238130 ,1,6055,315570 ,1,6056,209550 ,1,6057,351115 ,1,6058,65 ,1,6059,205150 ,1,6060,65 ,1,6061,203030 ,1,6062,65 ,1,6063,65 ,1,6064,65 ,1,6065,65 ,1,6066,65 ,1,6067,65 ,1,6068,65 ,1,6069,287155 ,1,6070,254870 ,1,6071,65 ,1,6072,213655 ,1,6073,208465 ,1,6074,248945 ,1,6075,65 ,1,6076,173570 ,1,6077,295655 ,1,6078,65 ,1,6079,203605 ,1,6080,325145 ,1,6081,326890 ,1,6082,216375 ,1,6083,226835 ,1,6084,274190 ,1,6085,336150 ,1,6086,303885 ,1,6087,278455 ,1,6088,246975 ,1,6089,315830 ,1,6090,185365 ,1,6091,335810 ,1,6092,252015 ,1,6093,65 ,1,6094,329220 ,1,6095,65 ,1,6096,188070 ,1,6097,304515 ,1,6098,209215 ,1,6099,303615 ,1,6100,65 ,1,6101,206115 ,1,6102,65 ,1,6103,65 ,1,6104,65 ,1,6105,274580 ,1,6106,65 ,1,6107,65 ,1,6108,65 ,1,6109,65 ,1,6110,65 ,1,6111,324505 ,1,6112,298020 ,1,6113,65 ,1,6114,284085 ,1,6115,65 ,1,6116,65 ,1,6117,175400 ,1,6118,200480 ,1,6119,65 ,1,6120,337725 ,1,6121,65 ,1,6122,65 ,1,6123,240900 ,1,6124,65 ,1,6125,65 ,1,6126,65 ,1,6127,65 ,1,6128,65 ,1,6129,65 ,1,6130,65 ,1,6131,315765 ,1,6132,65 ,1,6133,65 ,1,6134,65 ,1,6135,173935 ,1,6136,65 ,1,6137,218485 ,1,6138,248905 ,1,6139,65 ,1,6140,65 ,1,6141,65 ,1,6142,65 ,1,6143,65 ,1,6144,65 ,1,6145,65 ,1,6146,65 ,1,6147,65 ,1,6148,65 ,1,6149,65 ,1,6150,65 ,1,6151,65 ,1,6152,279675 ,1,6153,65 ,1,6154,65 ,1,6155,65 ,1,6156,65 ,1,6157,189380 ,1,6158,204760 ,1,6159,235870 ,1,6160,65 ,1,6161,303140 ,1,6162,65 ,1,6163,65 ,1,6164,65 ,1,6165,65 ,1,6166,65 ,1,6167,65 ,1,6168,65 ,1,6169,65 ,1,6170,65 ,1,6171,65 ,1,6172,240450 ,1,6173,344130 ,1,6174,65 ,1,6175,65 ,1,6176,176610 ,1,6177,351105 ,1,6178,65 ,1,6179,312320 ,1,6180,65 ,1,6181,255010 ,1,6182,304690 ,1,6183,65 ,1,6184,65 ,1,6185,274400 ,1,6186,243205 ,1,6187,234550 ,1,6188,65 ,1,6189,65 ,1,6190,250650 ,1,6191,65 ,1,6192,65 ,1,6193,65 ,1,6194,65 ,1,6195,65 ,1,6196,65 ,1,6197,65 ,1,6198,278175 ,1,6199,297165 ,1,6200,267495 ,1,6201,65 ,1,6202,65 ,1,6203,65 ,1,6204,65 ,1,6205,65 ,1,6206,65 ,1,6207,177335 ,1,6208,65 ,1,6209,176905 ,1,6210,65 ,1,6211,65 ,1,6212,236030 ,1,6213,65 ,1,6214,65 ,1,6215,213505 ,1,6216,65 ,1,6217,65 ,1,6218,65 ,1,6219,65 ,1,6220,65 ,1,6221,65 ,1,6222,65 ,1,6223,182290 ,1,6224,65 ,1,6225,65 ,1,6226,65 ,1,6227,300210 ,1,6228,65 ,1,6229,65 ,1,6230,65 ,1,6231,306530 ,1,6232,194390 ,1,6233,295060 ,1,6234,253045 ,1,6235,261875 ,1,6236,266445 ,1,6237,302170 ,1,6238,65 ,1,6239,324035 ,1,6240,240710 ,1,6241,65 ,1,6242,338635 ,1,6243,271440 ,1,6244,65 ,1,6245,65 ,1,6246,188695 ,1,6247,65 ,1,6248,267415 ,1,6249,274220 ,1,6250,65 ,1,6251,225500 ,1,6252,321645 ,1,6253,308955 ,1,6254,259215 ,1,6255,65 ,1,6256,65 ,1,6257,65 ,1,6258,315755 ,1,6259,65 ,1,6260,272895 ,1,6261,65 ,1,6262,65 ,1,6263,65 ,1,6264,65 ,1,6265,180295 ,1,6266,273615 ,1,6267,295970 ,1,6268,191570 ,1,6269,65 ,1,6270,334435 ,1,6271,65 ,1,6272,317650 ,1,6273,276165 ,1,6274,65 ,1,6275,331585 ,1,6276,277260 ,1,6277,332750 ,1,6278,65 ,1,6279,65 ,1,6280,65 ,1,6281,65 ,1,6282,323195 ,1,6283,65 ,1,6284,178905 ,1,6285,65 ,1,6286,346000 ,1,6287,270035 ,1,6288,65 ,1,6289,65 ,1,6290,65 ,1,6291,197130 ,1,6292,65 ,1,6293,65 ,1,6294,260745 ,1,6295,65 ,1,6296,266810 ,1,6297,333840 ,1,6298,344905 ,1,6299,193685 ,1,6300,304960 ,1,6301,65 ,1,6302,65 ,1,6303,208525 ,1,6304,65 ,1,6305,65 ,1,6306,65 ,1,6307,65 ,1,6308,309990 ,1,6309,65 ,1,6310,292255 ,1,6311,65 ,1,6312,65 ,1,6313,167740 ,1,6314,65 ,1,6315,176120 ,1,6316,65 ,1,6317,65 ,1,6318,65 ,1,6319,294215 ,1,6320,65 ,1,6321,172245 ,1,6322,65 ,1,6323,65 ,1,6324,200050 ,1,6325,65 ,1,6326,183265 ,1,6327,211610 ,1,6328,286795 ,1,6329,65 ,1,6330,65 ,1,6331,65 ,1,6332,65 ,1,6333,65 ,1,6334,65 ,1,6335,65 ,1,6336,175055 ,1,6337,228490 ,1,6338,65 ,1,6339,221525 ,1,6340,230250 ,1,6341,65 ,1,6342,65 ,1,6343,182745 ,1,6344,65 ,1,6345,65 ,1,6346,326385 ,1,6347,65 ,1,6348,65 ,1,6349,273170 ,1,6350,65 ,1,6351,218550 ,1,6352,65 ,1,6353,65 ,1,6354,297070 ,1,6355,65 ,1,6356,65 ,1,6357,281460 ,1,6358,226190 ,1,6359,192850 ,1,6360,65 ,1,6361,65 ,1,6362,238565 ,1,6363,65 ,1,6364,65 ,1,6365,202175 ,1,6366,65 ,1,6367,65 ,1,6368,65 ,1,6369,65 ,1,6370,65 ,1,6371,65 ,1,6372,65 ,1,6373,65 ,1,6374,65 ,1,6375,65 ,1,6376,65 ,1,6377,65 ,1,6378,262825 ,1,6379,65 ,1,6380,65 ,1,6381,65 ,1,6382,255150 ,1,6383,257065 ,1,6384,180315 ,1,6385,188205 ,1,6386,215495 ,1,6387,65 ,1,6388,65 ,1,6389,65 ,1,6390,215925 ,1,6391,65 ,1,6392,346955 ,1,6393,65 ,1,6394,65 ,1,6395,250735 ,1,6396,210655 ,1,6397,65 ,1,6398,65 ,1,6399,65 ,1,6400,331240 ,1,6401,65 ,1,6402,65 ,1,6403,65 ,1,6404,224505 ,1,6405,65 ,1,6406,168075 ,1,6407,221505 ,1,6408,65 ,1,6409,337265 ,1,6410,65 ,1,6411,65 ,1,6412,347690 ,1,6413,241770 ,1,6414,65 ,1,6415,65 ,1,6416,319255 ,1,6417,242470 ,1,6418,306375 ,1,6419,65 ,1,6420,223505 ,1,6421,65 ,1,6422,65 ,1,6423,65 ,1,6424,65 ,1,6425,65 ,1,6426,65 ,1,6427,65 ,1,6428,286045 ,1,6429,236335 ,1,6430,65 ,1,6431,65 ,1,6432,65 ,1,6433,65 ,1,6434,234260 ,1,6435,339660 ,1,6436,321620 ,1,6437,65 ,1,6438,65 ,1,6439,65 ,1,6440,65 ,1,6441,65 ,1,6442,65 ,1,6443,65 ,1,6444,65 ,1,6445,65 ,1,6446,65 ,1,6447,65 ,1,6448,65 ,1,6449,255890 ,1,6450,65 ,1,6451,213205 ,1,6452,311655 ,1,6453,287650 ,1,6454,65 ,1,6455,320545 ,1,6456,65 ,1,6457,65 ,1,6458,65 ,1,6459,65 ,1,6460,330650 ,1,6461,65 ,1,6462,65 ,1,6463,171010 ,1,6464,65 ,1,6465,65 ,1,6466,65 ,1,6467,65 ,1,6468,65 ,1,6469,65 ,1,6470,65 ,1,6471,65 ,1,6472,65 ,1,6473,65 ,1,6474,65 ,1,6475,303470 ,1,6476,279980 ,1,6477,243760 ,1,6478,326665 ,1,6479,195635 ,1,6480,326395 ,1,6481,256845 ,1,6482,351060 ,1,6483,291625 ,1,6484,180075 ,1,6485,65 ,1,6486,249500 ,1,6487,65 ,1,6488,65 ,1,6489,216035 ,1,6490,314230 ,1,6491,292670 ,1,6492,251110 ,1,6493,227215 ,1,6494,315610 ,1,6495,324860 ,1,6496,65 ,1,6497,65 ,1,6498,65 ,1,6499,65 ,1,6500,65 ,1,6501,65 ,1,6502,65 ,1,6503,65 ,1,6504,65 ,1,6505,220595 ,1,6506,65 ,1,6507,314315 ,1,6508,268620 ,1,6509,65 ,1,6510,236910 ,1,6511,230710 ,1,6512,65 ,1,6513,65 ,1,6514,65 ,1,6515,65 ,1,6516,289720 ,1,6517,274870 ,1,6518,65 ,1,6519,256540 ,1,6520,65 ,1,6521,65 ,1,6522,65 ,1,6523,167330 ,1,6524,314720 ,1,6525,300140 ,1,6526,235625 ,1,6527,187960 ,1,6528,65 ,1,6529,65 ,1,6530,65 ,1,6531,65 ,1,6532,65 ,1,6533,228570 ,1,6534,65 ,1,6535,65 ,1,6536,308050 ,1,6537,214030 ,1,6538,65 ,1,6539,270570 ,1,6540,269395 ,1,6541,185380 ,1,6542,65 ,1,6543,320320 ,1,6544,65 ,1,6545,228025 ,1,6546,267615 ,1,6547,316725 ,1,6548,260030 ,1,6549,65 ,1,6550,215595 ,1,6551,65 ,1,6552,65 ,1,6553,65 ,1,6554,65 ,1,6555,316705 ,1,6556,65 ,1,6557,65 ,1,6558,192680 ,1,6559,65 ,1,6560,65 ,1,6561,65 ,1,6562,65 ,1,6563,65 ,1,6564,193740 ,1,6565,206880 ,1,6566,65 ,1,6567,65 ,1,6568,65 ,1,6569,65 ,1,6570,65 ,1,6571,65 ,1,6572,65 ,1,6573,65 ,1,6574,237420 ,1,6575,338375 ,1,6576,182510 ,1,6577,65 ,1,6578,65 ,1,6579,65 ,1,6580,65 ,1,6581,212220 ,1,6582,65 ,1,6583,302820 ,1,6584,197035 ,1,6585,65 ,1,6586,181470 ,1,6587,268870 ,1,6588,264645 ,1,6589,65 ,1,6590,65 ,1,6591,65 ,1,6592,65 ,1,6593,65 ,1,6594,65 ,1,6595,65 ,1,6596,277640 ,1,6597,65 ,1,6598,301770 ,1,6599,351050 ,1,6600,315670 ,1,6601,218795 ,1,6602,65 ,1,6603,65 ,1,6604,65 ,1,6605,65 ,1,6606,65 ,1,6607,313715 ,1,6608,65 ,1,6609,316280 ,1,6610,65 ,1,6611,65 ,1,6612,65 ,1,6613,297050 ,1,6614,65 ,1,6615,65 ,1,6616,65 ,1,6617,65 ,1,6618,241505 ,1,6619,198320 ,1,6620,65 ,1,6621,192805 ,1,6622,325440 ,1,6623,65 ,1,6624,255740 ,1,6625,65 ,1,6626,65 ,1,6627,65 ,1,6628,335015 ,1,6629,65 ,1,6630,65 ,1,6631,325875 ,1,6632,298445 ,1,6633,330040 ,1,6634,313040 ,1,6635,295705 ,1,6636,65 ,1,6637,65 ,1,6638,303490 ,1,6639,196850 ,1,6640,65 ,1,6641,65 ,1,6642,65 ,1,6643,65 ,1,6644,216525 ,1,6645,65 ,1,6646,207240 ,1,6647,212210 ,1,6648,65 ,1,6649,65 ,1,6650,65 ,1,6651,65 ,1,6652,65 ,1,6653,65 ,1,6654,65 ,1,6655,65 ,1,6656,65 ,1,6657,65 ,1,6658,65 ,1,6659,65 ,1,6660,65 ,1,6661,65 ,1,6662,65 ,1,6663,65 ,1,6664,65 ,1,6665,65 ,1,6666,65 ,1,6667,65 ,1,6668,65 ,1,6669,65 ,1,6670,65 ,1,6671,65 ,1,6672,182555 ,1,6673,303670 ,1,6674,188395 ,1,6675,170075 ,1,6676,202260 ,1,6677,232975 ,1,6678,321570 ,1,6679,257245 ,1,6680,248010 ,1,6681,321300 ,1,6682,65 ,1,6683,344700 ,1,6684,65 ,1,6685,65 ,1,6686,65 ,1,6687,267820 ,1,6688,65 ,1,6689,65 ,1,6690,272595 ,1,6691,184715 ,1,6692,311540 ,1,6693,65 ,1,6694,193485 ,1,6695,65 ,1,6696,65 ,1,6697,339135 ,1,6698,229640 ,1,6699,65 ,1,6700,297680 ,1,6701,65 ,1,6702,65 ,1,6703,65 ,1,6704,65 ,1,6705,65 ,1,6706,65 ,1,6707,65 ,1,6708,65 ,1,6709,65 ,1,6710,65 ,1,6711,288805 ,1,6712,65 ,1,6713,65 ,1,6714,65 ,1,6715,206740 ,1,6716,298565 ,1,6717,252385 ,1,6718,65 ,1,6719,65 ,1,6720,65 ,1,6721,65 ,1,6722,269950 ,1,6723,255820 ,1,6724,325430 ,1,6725,65 ,1,6726,65 ,1,6727,65 ,1,6728,169860 ,1,6729,341710 ,1,6730,65 ,1,6731,189125 ,1,6732,233265 ,1,6733,65 ,1,6734,65 ,1,6735,294170 ,1,6736,261990 ,1,6737,65 ,1,6738,65 ,1,6739,65 ,1,6740,65 ,1,6741,241525 ,1,6742,320965 ,1,6743,167950 ,1,6744,65 ,1,6745,65 ,1,6746,65 ,1,6747,65 ,1,6748,65 ,1,6749,65 ,1,6750,65 ,1,6751,65 ,1,6752,207305 ,1,6753,65 ,1,6754,238175 ,1,6755,65 ,1,6756,65 ,1,6757,65 ,1,6758,65 ,1,6759,65 ,1,6760,65 ,1,6761,65 ,1,6762,65 ,1,6763,267875 ,1,6764,65 ,1,6765,276450 ,1,6766,65 ,1,6767,287175 ,1,6768,218190 ,1,6769,65 ,1,6770,65 ,1,6771,65 ,1,6772,65 ,1,6773,65 ,1,6774,187025 ,1,6775,65 ,1,6776,65 ,1,6777,65 ,1,6778,65 ,1,6779,65 ,1,6780,196595 ,1,6781,65 ,1,6782,65 ,1,6783,65 ,1,6784,65 ,1,6785,65 ,1,6786,65 ,1,6787,190350 ,1,6788,65 ,1,6789,310750 ,1,6790,65 ,1,6791,217650 ,1,6792,302415 ,1,6793,65 ,1,6794,65 ,1,6795,65 ,1,6796,65 ,1,6797,236440 ,1,6798,65 ,1,6799,65 ,1,6800,65 ,1,6801,221250 ,1,6802,232230 ,1,6803,282945 ,1,6804,272795 ,1,6805,321195 ,1,6806,181825 ,1,6807,194765 ,1,6808,65 ,1,6809,65 ,1,6810,65 ,1,6811,65 ,1,6812,65 ,1,6813,65 ,1,6814,65 ,1,6815,252910 ,1,6816,65 ,1,6817,213590 ,1,6818,273950 ,1,6819,65 ,1,6820,65 ,1,6821,65 ,1,6822,65 ,1,6823,65 ,1,6824,199355 ,1,6825,173065 ,1,6826,65 ,1,6827,65 ,1,6828,65 ,1,6829,175215 ,1,6830,272425 ,1,6831,65 ,1,6832,65 ,1,6833,179650 ,1,6834,244885 ,1,6835,65 ,1,6836,271915 ,1,6837,65 ,1,6838,65 ,1,6839,65 ,1,6840,65 ,1,6841,174730 ,1,6842,65 ,1,6843,65 ,1,6844,65 ,1,6845,65 ,1,6846,178460 ,1,6847,65 ,1,6848,65 ,1,6849,65 ,1,6850,65 ,1,6851,65 ,1,6852,283610 ,1,6853,267755 ,1,6854,65 ,1,6855,65 ,1,6856,65 ,1,6857,65 ,1,6858,65 ,1,6859,65 ,1,6860,262000 ,1,6861,65 ,1,6862,65 ,1,6863,65 ,1,6864,249535 ,1,6865,65 ,1,6866,65 ,1,6867,65 ,1,6868,288705 ,1,6869,351040 ,1,6870,271145 ,1,6871,342335 ,1,6872,301275 ,1,6873,65 ,1,6874,65 ,1,6875,212030 ,1,6876,168400 ,1,6877,281800 ,1,6878,318500 ,1,6879,186330 ,1,6880,65 ,1,6881,183125 ,1,6882,244715 ,1,6883,304315 ,1,6884,65 ,1,6885,286310 ,1,6886,216785 ,1,6887,65 ,1,6888,65 ,1,6889,65 ,1,6890,65 ,1,6891,65 ,1,6892,65 ,1,6893,65 ,1,6894,278145 ,1,6895,326920 ,1,6896,331770 ,1,6897,65 ,1,6898,65 ,1,6899,216535 ,1,6900,65 ,1,6901,65 ,1,6902,65 ,1,6903,65 ,1,6904,65 ,1,6905,65 ,1,6906,65 ,1,6907,65 ,1,6908,65 ,1,6909,65 ,1,6910,65 ,1,6911,65 ,1,6912,303370 ,1,6913,65 ,1,6914,65 ,1,6915,65 ,1,6916,232795 ,1,6917,65 ,1,6918,65 ,1,6919,65 ,1,6920,65 ,1,6921,65 ,1,6922,65 ,1,6923,65 ,1,6924,65 ,1,6925,262755 ,1,6926,65 ,1,6927,274200 ,1,6928,65 ,1,6929,205120 ,1,6930,65 ,1,6931,65 ,1,6932,65 ,1,6933,65 ,1,6934,195885 ,1,6935,65 ,1,6936,65 ,1,6937,65 ,1,6938,272915 ,1,6939,65 ,1,6940,65 ,1,6941,305430 ,1,6942,289685 ,1,6943,266455 ,1,6944,325755 ,1,6945,65 ,1,6946,65 ,1,6947,312640 ,1,6948,329470 ,1,6949,65 ,1,6950,65 ,1,6951,65 ,1,6952,308340 ,1,6953,65 ,1,6954,193070 ,1,6955,208235 ,1,6956,298105 ,1,6957,303565 ,1,6958,65 ,1,6959,65 ,1,6960,65 ,1,6961,65 ,1,6962,216590 ,1,6963,65 ,1,6964,65 ,1,6965,262955 ,1,6966,65 ,1,6967,65 ,1,6968,65 ,1,6969,65 ,1,6970,65 ,1,6971,65 ,1,6972,65 ,1,6973,65 ,1,6974,65 ,1,6975,168045 ,1,6976,65 ,1,6977,65 ,1,6978,65 ,1,6979,65 ,1,6980,65 ,1,6981,65 ,1,6982,65 ,1,6983,338470 ,1,6984,316990 ,1,6985,271675 ,1,6986,65 ,1,6987,65 ,1,6988,65 ,1,6989,65 ,1,6990,65 ,1,6991,65 ,1,6992,287005 ,1,6993,260285 ,1,6994,351030 ,1,6995,65 ,1,6996,207390 ,1,6997,65 ,1,6998,65 ,1,6999,222665 ,1,7000,173725 ,1,7001,65 ,1,7002,65 ,1,7003,65 ,1,7004,65 ,1,7005,65 ,1,7006,65 ,1,7007,282515 ,1,7008,65 ,1,7009,65 ,1,7010,339455 ,1,7011,65 ,1,7012,65 ,1,7013,65 ,1,7014,199200 ,1,7015,174160 ,1,7016,262690 ,1,7017,65 ,1,7018,65 ,1,7019,312105 ,1,7020,258115 ,1,7021,315050 ,1,7022,65 ,1,7023,65 ,1,7024,65 ,1,7025,65 ,1,7026,65 ,1,7027,255295 ,1,7028,65 ,1,7029,65 ,1,7030,65 ,1,7031,65 ,1,7032,219870 ,1,7033,65 ,1,7034,65 ,1,7035,254335 ,1,7036,269715 ,1,7037,194880 ,1,7038,65 ,1,7039,323215 ,1,7040,65 ,1,7041,65 ,1,7042,65 ,1,7043,65 ,1,7044,65 ,1,7045,65 ,1,7046,65 ,1,7047,280690 ,1,7048,65 ,1,7049,184315 ,1,7050,65 ,1,7051,328760 ,1,7052,65 ,1,7053,65 ,1,7054,65 ,1,7055,65 ,1,7056,318470 ,1,7057,65 ,1,7058,65 ,1,7059,340240 ,1,7060,65 ,1,7061,65 ,1,7062,310980 ,1,7063,65 ,1,7064,218815 ,1,7065,65 ,1,7066,169980 ,1,7067,317545 ,1,7068,214325 ,1,7069,326190 ,1,7070,65 ,1,7071,65 ,1,7072,65 ,1,7073,263835 ,1,7074,65 ,1,7075,65 ,1,7076,65 ,1,7077,65 ,1,7078,65 ,1,7079,65 ,1,7080,65 ,1,7081,65 ,1,7082,65 ,1,7083,65 ,1,7084,65 ,1,7085,65 ,1,7086,269350 ,1,7087,65 ,1,7088,65 ,1,7089,65 ,1,7090,65 ,1,7091,65 ,1,7092,65 ,1,7093,65 ,1,7094,292875 ,1,7095,175580 ,1,7096,65 ,1,7097,65 ,1,7098,65 ,1,7099,256510 ,1,7100,65 ,1,7101,65 ,1,7102,65 ,1,7103,65 ,1,7104,65 ,1,7105,311595 ,1,7106,276870 ,1,7107,189675 ,1,7108,65 ,1,7109,65 ,1,7110,65 ,1,7111,175170 ,1,7112,65 ,1,7113,289140 ,1,7114,302085 ,1,7115,65 ,1,7116,235145 ,1,7117,258525 ,1,7118,171390 ,1,7119,182520 ,1,7120,167375 ,1,7121,219900 ,1,7122,312435 ,1,7123,174810 ,1,7124,65 ,1,7125,320390 ,1,7126,65 ,1,7127,267125 ,1,7128,243120 ,1,7129,65 ,1,7130,175680 ,1,7131,65 ,1,7132,261925 ,1,7133,219155 ,1,7134,65 ,1,7135,295635 ,1,7136,65 ,1,7137,65 ,1,7138,230655 ,1,7139,65 ,1,7140,65 ,1,7141,282915 ,1,7142,317020 ,1,7143,215835 ,1,7144,65 ,1,7145,342125 ,1,7146,65 ,1,7147,65 ,1,7148,65 ,1,7149,65 ,1,7150,65 ,1,7151,65 ,1,7152,65 ,1,7153,65 ,1,7154,65 ,1,7155,281600 ,1,7156,65 ,1,7157,65 ,1,7158,322860 ,1,7159,247755 ,1,7160,65 ,1,7161,249385 ,1,7162,274420 ,1,7163,175195 ,1,7164,313920 ,1,7165,65 ,1,7166,65 ,1,7167,65 ,1,7168,181135 ,1,7169,65 ,1,7170,65 ,1,7171,65 ,1,7172,65 ,1,7173,326700 ,1,7174,65 ,1,7175,251055 ,1,7176,305075 ,1,7177,304545 ,1,7178,65 ,1,7179,65 ,1,7180,331325 ,1,7181,65 ,1,7182,196925 ,1,7183,261450 ,1,7184,340005 ,1,7185,65 ,1,7186,65 ,1,7187,65 ,1,7188,65 ,1,7189,65 ,1,7190,65 ,1,7191,65 ,1,7192,65 ,1,7193,292895 ,1,7194,324260 ,1,7195,65 ,1,7196,337150 ,1,7197,351020 ,1,7198,65 ,1,7199,65 ,1,7200,65 ,1,7201,321980 ,1,7202,233065 ,1,7203,65 ,1,7204,65 ,1,7205,65 ,1,7206,65 ,1,7207,205980 ,1,7208,295980 ,1,7209,65 ,1,7210,65 ,1,7211,65 ,1,7212,65 ,1,7213,65 ,1,7214,65 ,1,7215,65 ,1,7216,65 ,1,7217,65 ,1,7218,312425 ,1,7219,282980 ,1,7220,202145 ,1,7221,65 ,1,7222,342590 ,1,7223,65 ,1,7224,284505 ,1,7225,65 ,1,7226,65 ,1,7227,65 ,1,7228,65 ,1,7229,65 ,1,7230,240220 ,1,7231,271505 ,1,7232,65 ,1,7233,344515 ,1,7234,199975 ,1,7235,242080 ,1,7236,258765 ,1,7237,65 ,1,7238,65 ,1,7239,65 ,1,7240,65 ,1,7241,65 ,1,7242,65 ,1,7243,279855 ,1,7244,295130 ,1,7245,291035 ,1,7246,176620 ,1,7247,65 ,1,7248,65 ,1,7249,169015 ,1,7250,65 ,1,7251,65 ,1,7252,65 ,1,7253,65 ,1,7254,65 ,1,7255,65 ,1,7256,65 ,1,7257,65 ,1,7258,251275 ,1,7259,65 ,1,7260,264600 ,1,7261,335890 ,1,7262,65 ,1,7263,305190 ,1,7264,65 ,1,7265,342720 ,1,7266,65 ,1,7267,65 ,1,7268,65 ,1,7269,65 ,1,7270,272655 ,1,7271,65 ,1,7272,258615 ,1,7273,287265 ,1,7274,307850 ,1,7275,318400 ,1,7276,65 ,1,7277,65 ,1,7278,65 ,1,7279,171185 ,1,7280,65 ,1,7281,65 ,1,7282,65 ,1,7283,65 ,1,7284,65 ,1,7285,65 ,1,7286,65 ,1,7287,320135 ,1,7288,65 ,1,7289,190125 ,1,7290,65 ,1,7291,65 ,1,7292,302155 ,1,7293,351010 ,1,7294,257450 ,1,7295,65 ,1,7296,334395 ,1,7297,65 ,1,7298,65 ,1,7299,212395 ,1,7300,206165 ,1,7301,65 ,1,7302,332615 ,1,7303,65 ,1,7304,65 ,1,7305,65 ,1,7306,218160 ,1,7307,329570 ,1,7308,65 ,1,7309,248850 ,1,7310,329140 ,1,7311,203665 ,1,7312,65 ,1,7313,334165 ,1,7314,313400 ,1,7315,65 ,1,7316,65 ,1,7317,65 ,1,7318,302940 ,1,7319,65 ,1,7320,65 ,1,7321,287865 ,1,7322,242275 ,1,7323,65 ,1,7324,65 ,1,7325,203785 ,1,7326,325355 ,1,7327,207940 ,1,7328,65 ,1,7329,259170 ,1,7330,65 ,1,7331,65 ,1,7332,65 ,1,7333,290710 ,1,7334,306070 ,1,7335,65 ,1,7336,65 ,1,7337,192105 ,1,7338,199545 ,1,7339,65 ,1,7340,65 ,1,7341,281410 ,1,7342,65 ,1,7343,65 ,1,7344,65 ,1,7345,277930 ,1,7346,328565 ,1,7347,65 ,1,7348,65 ,1,7349,204155 ,1,7350,326815 ,1,7351,65 ,1,7352,237615 ,1,7353,65 ,1,7354,185015 ,1,7355,65 ,1,7356,65 ,1,7357,65 ,1,7358,65 ,1,7359,65 ,1,7360,65 ,1,7361,296170 ,1,7362,65 ,1,7363,199245 ,1,7364,65 ,1,7365,65 ,1,7366,65 ,1,7367,214815 ,1,7368,179850 ,1,7369,65 ,1,7370,65 ,1,7371,65 ,1,7372,339420 ,1,7373,65 ,1,7374,257610 ,1,7375,65 ,1,7376,204980 ,1,7377,65 ,1,7378,250610 ,1,7379,290435 ,1,7380,65 ,1,7381,65 ,1,7382,65 ,1,7383,65 ,1,7384,225450 ,1,7385,65 ,1,7386,65 ,1,7387,65 ,1,7388,65 ,1,7389,324165 ,1,7390,65 ,1,7391,272635 ,1,7392,65 ,1,7393,236345 ,1,7394,65 ,1,7395,65 ,1,7396,65 ,1,7397,222835 ,1,7398,65 ,1,7399,344025 ,1,7400,209640 ,1,7401,65 ,1,7402,253655 ,1,7403,65 ,1,7404,65 ,1,7405,199650 ,1,7406,263210 ,1,7407,180015 ,1,7408,65 ,1,7409,306845 ,1,7410,311710 ,1,7411,65 ,1,7412,172045 ,1,7413,231945 ,1,7414,65 ,1,7415,65 ,1,7416,65 ,1,7417,65 ,1,7418,209810 ,1,7419,327225 ,1,7420,213165 ,1,7421,65 ,1,7422,274905 ,1,7423,65 ,1,7424,65 ,1,7425,317285 ,1,7426,184125 ,1,7427,65 ,1,7428,291160 ,1,7429,247605 ,1,7430,65 ,1,7431,65 ,1,7432,65 ,1,7433,291255 ,1,7434,65 ,1,7435,183015 ,1,7436,206080 ,1,7437,65 ,1,7438,65 ,1,7439,65 ,1,7440,65 ,1,7441,65 ,1,7442,65 ,1,7443,65 ,1,7444,65 ,1,7445,344545 ,1,7446,65 ,1,7447,65 ,1,7448,307650 ,1,7449,250435 ,1,7450,65 ,1,7451,192890 ,1,7452,216090 ,1,7453,296440 ,1,7454,313890 ,1,7455,252340 ,1,7456,65 ,1,7457,65 ,1,7458,65 ,1,7459,351000 ,1,7460,65 ,1,7461,193380 ,1,7462,173075 ,1,7463,65 ,1,7464,249975 ,1,7465,230430 ,1,7466,198585 ,1,7467,331465 ,1,7468,65 ,1,7469,337610 ,1,7470,274670 ,1,7471,196485 ,1,7472,65 ,1,7473,65 ,1,7474,316380 ,1,7475,250500 ,1,7476,265400 ,1,7477,168055 ,1,7478,170580 ,1,7479,230895 ,1,7480,65 ,1,7481,65 ,1,7482,303360 ,1,7483,214110 ,1,7484,65 ,1,7485,275725 ,1,7486,176470 ,1,7487,240010 ,1,7488,260390 ,1,7489,65 ,1,7490,178695 ,1,7491,215020 ,1,7492,65 ,1,7493,65 ,1,7494,65 ,1,7495,65 ,1,7496,65 ,1,7497,65 ,1,7498,65 ,1,7499,341690 ,1,7500,65 ,1,7501,65 ,1,7502,223185 ,1,7503,285810 ,1,7504,65 ,1,7505,289395 ,1,7506,234075 ,1,7507,65 ,1,7508,65 ,1,7509,65 ,1,7510,65 ,1,7511,313615 ,1,7512,213375 ,1,7513,255750 ,1,7514,65 ,1,7515,201140 ,1,7516,191980 ,1,7517,65 ,1,7518,65 ,1,7519,65 ,1,7520,307435 ,1,7521,298845 ,1,7522,65 ,1,7523,208130 ,1,7524,65 ,1,7525,65 ,1,7526,65 ,1,7527,65 ,1,7528,65 ,1,7529,218340 ,1,7530,325960 ,1,7531,273500 ,1,7532,65 ,1,7533,65 ,1,7534,178180 ,1,7535,282805 ,1,7536,274390 ,1,7537,309610 ,1,7538,170405 ,1,7539,199835 ,1,7540,178510 ,1,7541,65 ,1,7542,65 ,1,7543,166600 ,1,7544,290105 ,1,7545,65 ,1,7546,302800 ,1,7547,215175 ,1,7548,65 ,1,7549,256965 ,1,7550,65 ,1,7551,335985 ,1,7552,240605 ,1,7553,65 ,1,7554,65 ,1,7555,65 ,1,7556,270805 ,1,7557,65 ,1,7558,65 ,1,7559,65 ,1,7560,65 ,1,7561,65 ,1,7562,65 ,1,7563,65 ,1,7564,65 ,1,7565,334760 ,1,7566,227630 ,1,7567,65 ,1,7568,186995 ,1,7569,186550 ,1,7570,65 ,1,7571,65 ,1,7572,65 ,1,7573,65 ,1,7574,346190 ,1,7575,65 ,1,7576,337940 ,1,7577,169125 ,1,7578,206650 ,1,7579,336490 ,1,7580,238465 ,1,7581,209540 ,1,7582,255080 ,1,7583,65 ,1,7584,65 ,1,7585,65 ,1,7586,65 ,1,7587,277535 ,1,7588,65 ,1,7589,65 ,1,7590,65 ,1,7591,65 ,1,7592,65 ,1,7593,231580 ,1,7594,178055 ,1,7595,284475 ,1,7596,65 ,1,7597,65 ,1,7598,65 ,1,7599,272995 ,1,7600,65 ,1,7601,65 ,1,7602,65 ,1,7603,65 ,1,7604,65 ,1,7605,168900 ,1,7606,65 ,1,7607,65 ,1,7608,65 ,1,7609,340985 ,1,7610,216250 ,1,7611,244970 ,1,7612,168450 ,1,7613,267475 ,1,7614,304020 ,1,7615,65 ,1,7616,275190 ,1,7617,65 ,1,7618,237410 ,1,7619,273070 ,1,7620,65 ,1,7621,178675 ,1,7622,191800 ,1,7623,65 ,1,7624,271345 ,1,7625,65 ,1,7626,212075 ,1,7627,65 ,1,7628,301385 ,1,7629,65 ,1,7630,173025 ,1,7631,175390 ,1,7632,233250 ,1,7633,65 ,1,7634,65 ,1,7635,186485 ,1,7636,65 ,1,7637,65 ,1,7638,65 ,1,7639,340465 ,1,7640,187170 ,1,7641,65 ,1,7642,65 ,1,7643,175845 ,1,7644,65 ,1,7645,207360 ,1,7646,65 ,1,7647,317355 ,1,7648,328485 ,1,7649,65 ,1,7650,65 ,1,7651,317415 ,1,7652,65 ,1,7653,292905 ,1,7654,209430 ,1,7655,65 ,1,7656,65 ,1,7657,204025 ,1,7658,233885 ,1,7659,65 ,1,7660,65 ,1,7661,65 ,1,7662,192525 ,1,7663,278270 ,1,7664,65 ,1,7665,65 ,1,7666,65 ,1,7667,203860 ,1,7668,65 ,1,7669,65 ,1,7670,65 ,1,7671,65 ,1,7672,284230 ,1,7673,271685 ,1,7674,65 ,1,7675,65 ,1,7676,65 ,1,7677,239360 ,1,7678,345975 ,1,7679,314840 ,1,7680,331120 ,1,7681,340230 ,1,7682,65 ,1,7683,65 ,1,7684,229820 ,1,7685,269250 ,1,7686,65 ,1,7687,223840 ,1,7688,175600 ,1,7689,65 ,1,7690,205680 ,1,7691,65 ,1,7692,65 ,1,7693,65 ,1,7694,65 ,1,7695,65 ,1,7696,262365 ,1,7697,173850 ,1,7698,340535 ,1,7699,276090 ,1,7700,309680 ,1,7701,241515 ,1,7702,225580 ,1,7703,178820 ,1,7704,251390 ,1,7705,65 ,1,7706,218855 ,1,7707,65 ,1,7708,65 ,1,7709,65 ,1,7710,65 ,1,7711,65 ,1,7712,65 ,1,7713,326360 ,1,7714,322420 ,1,7715,65 ,1,7716,169700 ,1,7717,65 ,1,7718,65 ,1,7719,65 ,1,7720,65 ,1,7721,65 ,1,7722,65 ,1,7723,65 ,1,7724,294085 ,1,7725,65 ,1,7726,282310 ,1,7727,65 ,1,7728,65 ,1,7729,65 ,1,7730,314635 ,1,7731,321840 ,1,7732,65 ,1,7733,234145 ,1,7734,65 ,1,7735,65 ,1,7736,255070 ,1,7737,189485 ,1,7738,237850 ,1,7739,65 ,1,7740,65 ,1,7741,65 ,1,7742,65 ,1,7743,65 ,1,7744,65 ,1,7745,65 ,1,7746,265945 ,1,7747,334830 ,1,7748,215085 ,1,7749,65 ,1,7750,229610 ,1,7751,273705 ,1,7752,65 ,1,7753,65 ,1,7754,65 ,1,7755,65 ,1,7756,65 ,1,7757,65 ,1,7758,65 ,1,7759,65 ,1,7760,65 ,1,7761,65 ,1,7762,195315 ,1,7763,275975 ,1,7764,65 ,1,7765,65 ,1,7766,65 ,1,7767,65 ,1,7768,65 ,1,7769,65 ,1,7770,65 ,1,7771,65 ,1,7772,65 ,1,7773,65 ,1,7774,65 ,1,7775,65 ,1,7776,65 ,1,7777,268090 ,1,7778,65 ,1,7779,65 ,1,7780,65 ,1,7781,277600 ,1,7782,172710 ,1,7783,65 ,1,7784,195980 ,1,7785,65 ,1,7786,65 ,1,7787,65 ,1,7788,65 ,1,7789,299735 ,1,7790,65 ,1,7791,264265 ,1,7792,339850 ,1,7793,65 ,1,7794,65 ,1,7795,65 ,1,7796,65 ,1,7797,65 ,1,7798,280805 ,1,7799,257885 ,1,7800,221865 ,1,7801,65 ,1,7802,244085 ,1,7803,65 ,1,7804,65 ,1,7805,213145 ,1,7806,65 ,1,7807,65 ,1,7808,243185 ,1,7809,65 ,1,7810,65 ,1,7811,251295 ,1,7812,65 ,1,7813,219960 ,1,7814,330375 ,1,7815,65 ,1,7816,65 ,1,7817,65 ,1,7818,65 ,1,7819,332300 ,1,7820,65 ,1,7821,328185 ,1,7822,318605 ,1,7823,65 ,1,7824,65 ,1,7825,65 ,1,7826,65 ,1,7827,65 ,1,7828,302385 ,1,7829,301225 ,1,7830,250875 ,1,7831,336130 ,1,7832,65 ,1,7833,65 ,1,7834,65 ,1,7835,65 ,1,7836,65 ,1,7837,307190 ,1,7838,309570 ,1,7839,65 ,1,7840,254005 ,1,7841,292845 ,1,7842,182455 ,1,7843,65 ,1,7844,65 ,1,7845,65 ,1,7846,65 ,1,7847,65 ,1,7848,65 ,1,7849,65 ,1,7850,65 ,1,7851,65 ,1,7852,65 ,1,7853,199005 ,1,7854,65 ,1,7855,65 ,1,7856,65 ,1,7857,65 ,1,7858,204750 ,1,7859,65 ,1,7860,65 ,1,7861,65 ,1,7862,65 ,1,7863,65 ,1,7864,65 ,1,7865,65 ,1,7866,220925 ,1,7867,65 ,1,7868,254825 ,1,7869,277455 ,1,7870,347320 ,1,7871,287125 ,1,7872,282680 ,1,7873,65 ,1,7874,65 ,1,7875,65 ,1,7876,203345 ,1,7877,65 ,1,7878,65 ,1,7879,337120 ,1,7880,218410 ,1,7881,65 ,1,7882,229525 ,1,7883,65 ,1,7884,262045 ,1,7885,65 ,1,7886,65 ,1,7887,65 ,1,7888,65 ,1,7889,273555 ,1,7890,209165 ,1,7891,65 ,1,7892,65 ,1,7893,230785 ,1,7894,65 ,1,7895,65 ,1,7896,65 ,1,7897,65 ,1,7898,174475 ,1,7899,319370 ,1,7900,295525 ,1,7901,65 ,1,7902,65 ,1,7903,65 ,1,7904,65 ,1,7905,350990 ,1,7906,210685 ,1,7907,345110 ,1,7908,65 ,1,7909,65 ,1,7910,65 ,1,7911,65 ,1,7912,207045 ,1,7913,251460 ,1,7914,65 ,1,7915,65 ,1,7916,257980 ,1,7917,65 ,1,7918,65 ,1,7919,65 ,1,7920,334195 ,1,7921,65 ,1,7922,65 ,1,7923,65 ,1,7924,184880 ,1,7925,65 ,1,7926,65 ,1,7927,206050 ,1,7928,65 ,1,7929,65 ,1,7930,65 ,1,7931,65 ,1,7932,65 ,1,7933,275435 ,1,7934,300590 ,1,7935,316825 ,1,7936,65 ,1,7937,65 ,1,7938,65 ,1,7939,65 ,1,7940,65 ,1,7941,65 ,1,7942,65 ,1,7943,65 ,1,7944,65 ,1,7945,65 ,1,7946,65 ,1,7947,65 ,1,7948,65 ,1,7949,65 ,1,7950,65 ,1,7951,65 ,1,7952,65 ,1,7953,65 ,1,7954,65 ,1,7955,232470 ,1,7956,65 ,1,7957,65 ,1,7958,65 ,1,7959,65 ,1,7960,255425 ,1,7961,65 ,1,7962,65 ,1,7963,65 ,1,7964,330925 ,1,7965,65 ,1,7966,65 ,1,7967,65 ,1,7968,271745 ,1,7969,65 ,1,7970,197590 ,1,7971,65 ,1,7972,65 ,1,7973,65 ,1,7974,65 ,1,7975,270265 ,1,7976,284155 ,1,7977,267625 ,1,7978,65 ,1,7979,220420 ,1,7980,65 ,1,7981,65 ,1,7982,65 ,1,7983,65 ,1,7984,65 ,1,7985,65 ,1,7986,65 ,1,7987,65 ,1,7988,65 ,1,7989,65 ,1,7990,220775 ,1,7991,65 ,1,7992,65 ,1,7993,186730 ,1,7994,276260 ,1,7995,65 ,1,7996,65 ,1,7997,333900 ,1,7998,65 ,1,7999,65 ,1,8000,65 ,1,8001,65 ,1,8002,65 ,1,8003,307880 ,1,8004,65 ,1,8005,65 ,1,8006,65 ,1,8007,65 ,1,8008,192710 ,1,8009,65 ,1,8010,194710 ,1,8011,65 ,1,8012,65 ,1,8013,65 ,1,8014,275400 ,1,8015,65 ,1,8016,65 ,1,8017,200170 ,1,8018,250620 ,1,8019,65 ,1,8020,326680 ,1,8021,168985 ,1,8022,65 ,1,8023,281025 ,1,8024,170850 ,1,8025,65 ,1,8026,240790 ,1,8027,65 ,1,8028,65 ,1,8029,265965 ,1,8030,65 ,1,8031,237430 ,1,8032,254300 ,1,8033,327910 ,1,8034,65 ,1,8035,321665 ,1,8036,317030 ,1,8037,65 ,1,8038,65 ,1,8039,65 ,1,8040,65 ,1,8041,65 ,1,8042,65 ,1,8043,65 ,1,8044,213305 ,1,8045,299920 ,1,8046,261625 ,1,8047,65 ,1,8048,65 ,1,8049,190300 ,1,8050,340810 ,1,8051,65 ,1,8052,65 ,1,8053,65 ,1,8054,265815 ,1,8055,65 ,1,8056,65 ,1,8057,65 ,1,8058,65 ,1,8059,279255 ,1,8060,237975 ,1,8061,197830 ,1,8062,65 ,1,8063,339205 ,1,8064,280140 ,1,8065,65 ,1,8066,65 ,1,8067,340865 ,1,8068,168010 ,1,8069,279905 ,1,8070,65 ,1,8071,261830 ,1,8072,65 ,1,8073,212810 ,1,8074,212185 ,1,8075,340365 ,1,8076,65 ,1,8077,65 ,1,8078,277420 ,1,8079,65 ,1,8080,65 ,1,8081,65 ,1,8082,244920 ,1,8083,247660 ,1,8084,238630 ,1,8085,285655 ,1,8086,65 ,1,8087,188175 ,1,8088,336770 ,1,8089,339900 ,1,8090,65 ,1,8091,65 ,1,8092,65 ,1,8093,65 ,1,8094,65 ,1,8095,65 ,1,8096,65 ,1,8097,65 ,1,8098,65 ,1,8099,65 ,1,8100,65 ,1,8101,250725 ,1,8102,326045 ,1,8103,289405 ,1,8104,324345 ,1,8105,219250 ,1,8106,247960 ,1,8107,350975 ,1,8108,350965 ,1,8109,65 ,1,8110,65 ,1,8111,65 ,1,8112,65 ,1,8113,65 ,1,8114,65 ,1,8115,65 ,1,8116,65 ,1,8117,223775 ,1,8118,65 ,1,8119,250790 ,1,8120,65 ,1,8121,65 ,1,8122,324775 ,1,8123,65 ,1,8124,65 ,1,8125,65 ,1,8126,65 ,1,8127,258850 ,1,8128,305200 ,1,8129,65 ,1,8130,65 ,1,8131,65 ,1,8132,65 ,1,8133,233475 ,1,8134,263825 ,1,8135,217930 ,1,8136,65 ,1,8137,65 ,1,8138,65 ,1,8139,65 ,1,8140,65 ,1,8141,65 ,1,8142,329580 ,1,8143,65 ,1,8144,65 ,1,8145,319925 ,1,8146,273440 ,1,8147,65 ,1,8148,247540 ,1,8149,327380 ,1,8150,65 ,1,8151,336970 ,1,8152,264080 ,1,8153,65 ,1,8154,65 ,1,8155,242460 ,1,8156,65 ,1,8157,261675 ,1,8158,211575 ,1,8159,65 ,1,8160,65 ,1,8161,234755 ,1,8162,65 ,1,8163,65 ,1,8164,65 ,1,8165,65 ,1,8166,65 ,1,8167,65 ,1,8168,65 ,1,8169,166550 ,1,8170,65 ,1,8171,65 ,1,8172,260105 ,1,8173,314305 ,1,8174,65 ,1,8175,65 ,1,8176,65 ,1,8177,65 ,1,8178,65 ,1,8179,65 ,1,8180,350955 ,1,8181,235860 ,1,8182,65 ,1,8183,65 ,1,8184,267535 ,1,8185,65 ,1,8186,65 ,1,8187,65 ,1,8188,206020 ,1,8189,65 ,1,8190,65 ,1,8191,65 ,1,8192,65 ,1,8193,65 ,1,8194,65 ,1,8195,184005 ,1,8196,350945 ,1,8197,65 ,1,8198,65 ,1,8199,337295 ,1,8200,65 ,1,8201,65 ,1,8202,65 ,1,8203,341500 ,1,8204,65 ,1,8205,65 ,1,8206,236010 ,1,8207,65 ,1,8208,65 ,1,8209,65 ,1,8210,65 ,1,8211,65 ,1,8212,65 ,1,8213,65 ,1,8214,65 ,1,8215,192135 ,1,8216,65 ,1,8217,65 ,1,8218,65 ,1,8219,65 ,1,8220,192065 ,1,8221,65 ,1,8222,65 ,1,8223,65 ,1,8224,65 ,1,8225,65 ,1,8226,65 ,1,8227,65 ,1,8228,65 ,1,8229,65 ,1,8230,65 ,1,8231,65 ,1,8232,65 ,1,8233,65 ,1,8234,333425 ,1,8235,287900 ,1,8236,336760 ,1,8237,65 ,1,8238,167885 ,1,8239,223225 ,1,8240,65 ,1,8241,307040 ,1,8242,345545 ,1,8243,65 ,1,8244,201790 ,1,8245,171920 ,1,8246,266405 ,1,8247,225300 ,1,8248,322700 ,1,8249,65 ,1,8250,65 ,1,8251,65 ,1,8252,213690 ,1,8253,65 ,1,8254,181645 ,1,8255,191210 ,1,8256,295370 ,1,8257,303340 ,1,8258,65 ,1,8259,252695 ,1,8260,294675 ,1,8261,65 ,1,8262,65 ,1,8263,65 ,1,8264,65 ,1,8265,65 ,1,8266,65 ,1,8267,65 ,1,8268,65 ,1,8269,308745 ,1,8270,65 ,1,8271,213435 ,1,8272,65 ,1,8273,65 ,1,8274,65 ,1,8275,65 ,1,8276,65 ,1,8277,65 ,1,8278,65 ,1,8279,65 ,1,8280,65 ,1,8281,65 ,1,8282,65 ,1,8283,65 ,1,8284,321935 ,1,8285,320700 ,1,8286,65 ,1,8287,226600 ,1,8288,293410 ,1,8289,178105 ,1,8290,266435 ,1,8291,319380 ,1,8292,65 ,1,8293,65 ,1,8294,65 ,1,8295,284370 ,1,8296,306090 ,1,8297,65 ,1,8298,65 ,1,8299,65 ,1,8300,65 ,1,8301,65 ,1,8302,218300 ,1,8303,232495 ,1,8304,289590 ,1,8305,327285 ,1,8306,317055 ,1,8307,228800 ,1,8308,65 ,1,8309,172105 ,1,8310,65 ,1,8311,65 ,1,8312,65 ,1,8313,65 ,1,8314,65 ,1,8315,65 ,1,8316,280745 ,1,8317,242710 ,1,8318,279015 ,1,8319,65 ,1,8320,209715 ,1,8321,328025 ,1,8322,65 ,1,8323,295725 ,1,8324,65 ,1,8325,65 ,1,8326,65 ,1,8327,211840 ,1,8328,65 ,1,8329,65 ,1,8330,65 ,1,8331,350930 ,1,8332,204440 ,1,8333,320360 ,1,8334,65 ,1,8335,65 ,1,8336,171660 ,1,8337,310340 ,1,8338,65 ,1,8339,65 ,1,8340,65 ,1,8341,65 ,1,8342,65 ,1,8343,65 ,1,8344,65 ,1,8345,297730 ,1,8346,336195 ,1,8347,65 ,1,8348,272010 ,1,8349,315250 ,1,8350,267645 ,1,8351,173815 ,1,8352,179335 ,1,8353,330740 ,1,8354,285705 ,1,8355,277590 ,1,8356,65 ,1,8357,167555 ,1,8358,65 ,1,8359,65 ,1,8360,324335 ,1,8361,316865 ,1,8362,65 ,1,8363,65 ,1,8364,65 ,1,8365,65 ,1,8366,65 ,1,8367,65 ,1,8368,65 ,1,8369,286935 ,1,8370,166650 ,1,8371,65 ,1,8372,212175 ,1,8373,65 ,1,8374,209420 ,1,8375,65 ,1,8376,292175 ,1,8377,238905 ,1,8378,65 ,1,8379,65 ,1,8380,186520 ,1,8381,65 ,1,8382,255730 ,1,8383,187850 ,1,8384,65 ,1,8385,65 ,1,8386,65 ,1,8387,269405 ,1,8388,314365 ,1,8389,65 ,1,8390,65 ,1,8391,328675 ,1,8392,293595 ,1,8393,65 ,1,8394,65 ,1,8395,65 ,1,8396,65 ,1,8397,65 ,1,8398,65 ,1,8399,306125 ,1,8400,65 ,1,8401,65 ,1,8402,350920 ,1,8403,65 ,1,8404,65 ,1,8405,65 ,1,8406,65 ,1,8407,65 ,1,8408,65 ,1,8409,296990 ,1,8410,210765 ,1,8411,65 ,1,8412,65 ,1,8413,289180 ,1,8414,65 ,1,8415,287375 ,1,8416,337775 ,1,8417,65 ,1,8418,232655 ,1,8419,275370 ,1,8420,65 ,1,8421,200320 ,1,8422,319225 ,1,8423,274500 ,1,8424,199915 ,1,8425,302620 ,1,8426,65 ,1,8427,277240 ,1,8428,65 ,1,8429,65 ,1,8430,65 ,1,8431,198995 ,1,8432,65 ,1,8433,319125 ,1,8434,196800 ,1,8435,249365 ,1,8436,331230 ,1,8437,65 ,1,8438,65 ,1,8439,65 ,1,8440,65 ,1,8441,65 ,1,8442,65 ,1,8443,65 ,1,8444,65 ,1,8445,65 ,1,8446,65 ,1,8447,65 ,1,8448,65 ,1,8449,65 ,1,8450,343520 ,1,8451,65 ,1,8452,65 ,1,8453,189185 ,1,8454,65 ,1,8455,65 ,1,8456,295745 ,1,8457,263075 ,1,8458,65 ,1,8459,65 ,1,8460,65 ,1,8461,65 ,1,8462,65 ,1,8463,65 ,1,8464,65 ,1,8465,311440 ,1,8466,65 ,1,8467,65 ,1,8468,65 ,1,8469,65 ,1,8470,182165 ,1,8471,336500 ,1,8472,168190 ,1,8473,65 ,1,8474,65 ,1,8475,65 ,1,8476,65 ,1,8477,65 ,1,8478,65 ,1,8479,244765 ,1,8480,278820 ,1,8481,65 ,1,8482,190260 ,1,8483,65 ,1,8484,189230 ,1,8485,65 ,1,8486,65 ,1,8487,65 ,1,8488,205725 ,1,8489,65 ,1,8490,65 ,1,8491,65 ,1,8492,65 ,1,8493,167830 ,1,8494,337755 ,1,8495,65 ,1,8496,65 ,1,8497,65 ,1,8498,65 ,1,8499,65 ,1,8500,65 ,1,8501,215385 ,1,8502,280710 ,1,8503,65 ,1,8504,65 ,1,8505,65 ,1,8506,307060 ,1,8507,65 ,1,8508,207520 ,1,8509,167105 ,1,8510,202955 ,1,8511,251170 ,1,8512,339995 ,1,8513,65 ,1,8514,65 ,1,8515,65 ,1,8516,65 ,1,8517,65 ,1,8518,65 ,1,8519,65 ,1,8520,297525 ,1,8521,65 ,1,8522,350910 ,1,8523,265460 ,1,8524,178610 ,1,8525,327295 ,1,8526,65 ,1,8527,261250 ,1,8528,193695 ,1,8529,290050 ,1,8530,171640 ,1,8531,275515 ,1,8532,226385 ,1,8533,321050 ,1,8534,247980 ,1,8535,206955 ,1,8536,65 ,1,8537,65 ,1,8538,253185 ,1,8539,294225 ,1,8540,327480 ,1,8541,65 ,1,8542,65 ,1,8543,65 ,1,8544,327205 ,1,8545,65 ,1,8546,65 ,1,8547,65 ,1,8548,65 ,1,8549,65 ,1,8550,291480 ,1,8551,65 ,1,8552,209860 ,1,8553,179245 ,1,8554,314115 ,1,8555,65 ,1,8556,250265 ,1,8557,65 ,1,8558,65 ,1,8559,65 ,1,8560,251620 ,1,8561,65 ,1,8562,65 ,1,8563,242935 ,1,8564,333730 ,1,8565,65 ,1,8566,182825 ,1,8567,245170 ,1,8568,65 ,1,8569,65 ,1,8570,65 ,1,8571,65 ,1,8572,65 ,1,8573,235320 ,1,8574,257045 ,1,8575,200425 ,1,8576,65 ,1,8577,250160 ,1,8578,342690 ,1,8579,65 ,1,8580,65 ,1,8581,207960 ,1,8582,65 ,1,8583,65 ,1,8584,65 ,1,8585,65 ,1,8586,258475 ,1,8587,65 ,1,8588,332230 ,1,8589,248480 ,1,8590,65 ,1,8591,65 ,1,8592,263130 ,1,8593,65 ,1,8594,341655 ,1,8595,339400 ,1,8596,171625 ,1,8597,321445 ,1,8598,184195 ,1,8599,65 ,1,8600,329690 ,1,8601,175160 ,1,8602,309295 ,1,8603,65 ,1,8604,193590 ,1,8605,308435 ,1,8606,65 ,1,8607,65 ,1,8608,340415 ,1,8609,211515 ,1,8610,204345 ,1,8611,272950 ,1,8612,65 ,1,8613,65 ,1,8614,65 ,1,8615,324900 ,1,8616,65 ,1,8617,65 ,1,8618,198415 ,1,8619,344895 ,1,8620,65 ,1,8621,65 ,1,8622,233520 ,1,8623,65 ,1,8624,65 ,1,8625,170285 ,1,8626,65 ,1,8627,65 ,1,8628,182380 ,1,8629,65 ,1,8630,336335 ,1,8631,65 ,1,8632,65 ,1,8633,65 ,1,8634,331200 ,1,8635,65 ,1,8636,65 ,1,8637,65 ,1,8638,183255 ,1,8639,242025 ,1,8640,65 ,1,8641,65 ,1,8642,65 ,1,8643,328895 ,1,8644,65 ,1,8645,65 ,1,8646,179200 ,1,8647,186120 ,1,8648,65 ,1,8649,204575 ,1,8650,65 ,1,8651,296650 ,1,8652,202155 ,1,8653,65 ,1,8654,65 ,1,8655,65 ,1,8656,65 ,1,8657,65 ,1,8658,65 ,1,8659,222575 ,1,8660,294285 ,1,8661,241445 ,1,8662,65 ,1,8663,325800 ,1,8664,190115 ,1,8665,315925 ,1,8666,229690 ,1,8667,65 ,1,8668,270850 ,1,8669,235965 ,1,8670,65 ,1,8671,65 ,1,8672,65 ,1,8673,231670 ,1,8674,251675 ,1,8675,65 ,1,8676,65 ,1,8677,167265 ,1,8678,190085 ,1,8679,65 ,1,8680,289330 ,1,8681,215525 ,1,8682,324820 ,1,8683,65 ,1,8684,65 ,1,8685,169805 ,1,8686,65 ,1,8687,65 ,1,8688,65 ,1,8689,65 ,1,8690,65 ,1,8691,65 ,1,8692,185185 ,1,8693,65 ,1,8694,65 ,1,8695,65 ,1,8696,65 ,1,8697,65 ,1,8698,65 ,1,8699,65 ,1,8700,269695 ,1,8701,197680 ,1,8702,239300 ,1,8703,65 ,1,8704,65 ,1,8705,65 ,1,8706,252920 ,1,8707,189425 ,1,8708,65 ,1,8709,65 ,1,8710,65 ,1,8711,279095 ,1,8712,269495 ,1,8713,258085 ,1,8714,65 ,1,8715,65 ,1,8716,65 ,1,8717,65 ,1,8718,65 ,1,8719,65 ,1,8720,65 ,1,8721,225650 ,1,8722,243305 ,1,8723,65 ,1,8724,202680 ,1,8725,65 ,1,8726,65 ,1,8727,180765 ,1,8728,65 ,1,8729,65 ,1,8730,65 ,1,8731,65 ,1,8732,226665 ,1,8733,195865 ,1,8734,213580 ,1,8735,65 ,1,8736,341455 ,1,8737,65 ,1,8738,65 ,1,8739,65 ,1,8740,65 ,1,8741,65 ,1,8742,65 ,1,8743,65 ,1,8744,65 ,1,8745,310850 ,1,8746,187340 ,1,8747,180470 ,1,8748,235715 ,1,8749,65 ,1,8750,65 ,1,8751,65 ,1,8752,65 ,1,8753,65 ,1,8754,284545 ,1,8755,65 ,1,8756,65 ,1,8757,65 ,1,8758,65 ,1,8759,65 ,1,8760,65 ,1,8761,65 ,1,8762,170515 ,1,8763,65 ,1,8764,65 ,1,8765,65 ,1,8766,65 ,1,8767,65 ,1,8768,242980 ,1,8769,271295 ,1,8770,65 ,1,8771,187980 ,1,8772,65 ,1,8773,324230 ,1,8774,65 ,1,8775,65 ,1,8776,207075 ,1,8777,65 ,1,8778,65 ,1,8779,65 ,1,8780,65 ,1,8781,65 ,1,8782,65 ,1,8783,65 ,1,8784,180185 ,1,8785,65 ,1,8786,316940 ,1,8787,65 ,1,8788,65 ,1,8789,350900 ,1,8790,65 ,1,8791,265645 ,1,8792,65 ,1,8793,314450 ,1,8794,65 ,1,8795,65 ,1,8796,65 ,1,8797,292030 ,1,8798,65 ,1,8799,65 ,1,8800,65 ,1,8801,65 ,1,8802,327870 ,1,8803,65 ,1,8804,65 ,1,8805,312835 ,1,8806,65 ,1,8807,65 ,1,8808,65 ,1,8809,65 ,1,8810,65 ,1,8811,196905 ,1,8812,65 ,1,8813,278015 ,1,8814,196365 ,1,8815,231470 ,1,8816,65 ,1,8817,333020 ,1,8818,65 ,1,8819,277220 ,1,8820,255505 ,1,8821,65 ,1,8822,65 ,1,8823,65 ,1,8824,265615 ,1,8825,216420 ,1,8826,65 ,1,8827,65 ,1,8828,296350 ,1,8829,65 ,1,8830,192840 ,1,8831,65 ,1,8832,65 ,1,8833,65 ,1,8834,65 ,1,8835,185485 ,1,8836,250770 ,1,8837,300815 ,1,8838,65 ,1,8839,65 ,1,8840,238375 ,1,8841,65 ,1,8842,65 ,1,8843,65 ,1,8844,65 ,1,8845,65 ,1,8846,215665 ,1,8847,229590 ,1,8848,65 ,1,8849,65 ,1,8850,344585 ,1,8851,65 ,1,8852,235375 ,1,8853,65 ,1,8854,65 ,1,8855,65 ,1,8856,65 ,1,8857,65 ,1,8858,270245 ,1,8859,65 ,1,8860,65 ,1,8861,65 ,1,8862,350860 ,1,8863,65 ,1,8864,65 ,1,8865,65 ,1,8866,65 ,1,8867,65 ,1,8868,65 ,1,8869,65 ,1,8870,65 ,1,8871,227785 ,1,8872,65 ,1,8873,65 ,1,8874,309705 ,1,8875,65 ,1,8876,65 ,1,8877,303480 ,1,8878,65 ,1,8879,65 ,1,8880,65 ,1,8881,65 ,1,8882,65 ,1,8883,65 ,1,8884,348180 ,1,8885,65 ,1,8886,325080 ,1,8887,65 ,1,8888,307290 ,1,8889,212270 ,1,8890,347365 ,1,8891,65 ,1,8892,65 ,1,8893,166860 ,1,8894,251995 ,1,8895,219860 ,1,8896,65 ,1,8897,65 ,1,8898,65 ,1,8899,338415 ,1,8900,65 ,1,8901,193330 ,1,8902,347195 ,1,8903,288075 ,1,8904,331700 ,1,8905,299810 ,1,8906,65 ,1,8907,179555 ,1,8908,65 ,1,8909,65 ,1,8910,65 ,1,8911,174880 ,1,8912,65 ,1,8913,65 ,1,8914,281740 ,1,8915,287920 ,1,8916,297285 ,1,8917,176130 ,1,8918,65 ,1,8919,247300 ,1,8920,65 ,1,8921,332850 ,1,8922,327265 ,1,8923,265875 ,1,8924,65 ,1,8925,65 ,1,8926,350850 ,1,8927,65 ,1,8928,65 ,1,8929,65 ,1,8930,65 ,1,8931,65 ,1,8932,218170 ,1,8933,65 ,1,8934,65 ,1,8935,210035 ,1,8936,231450 ,1,8937,166890 ,1,8938,291850 ,1,8939,325170 ,1,8940,225735 ,1,8941,218930 ,1,8942,336510 ,1,8943,210885 ,1,8944,244930 ,1,8945,65 ,1,8946,310740 ,1,8947,65 ,1,8948,65 ,1,8949,65 ,1,8950,185110 ,1,8951,247185 ,1,8952,65 ,1,8953,65 ,1,8954,343440 ,1,8955,65 ,1,8956,276650 ,1,8957,65 ,1,8958,65 ,1,8959,314250 ,1,8960,65 ,1,8961,168555 ,1,8962,212500 ,1,8963,188020 ,1,8964,65 ,1,8965,312180 ,1,8966,65 ,1,8967,65 ,1,8968,238710 ,1,8969,65 ,1,8970,65 ,1,8971,65 ,1,8972,341900 ,1,8973,312160 ,1,8974,274255 ,1,8975,65 ,1,8976,282330 ,1,8977,247020 ,1,8978,65 ,1,8979,292530 ,1,8980,175520 ,1,8981,65 ,1,8982,277410 ,1,8983,243875 ,1,8984,350840 ,1,8985,176670 ,1,8986,195825 ,1,8987,324920 ,1,8988,341125 ,1,8989,198365 ,1,8990,65 ,1,8991,229630 ,1,8992,65 ,1,8993,65 ,1,8994,65 ,1,8995,239320 ,1,8996,65 ,1,8997,273410 ,1,8998,65 ,1,8999,65 ,1,9000,65 ,1,9001,65 ,1,9002,65 ,1,9003,65 ,1,9004,65 ,1,9005,65 ,1,9006,65 ,1,9007,217985 ,1,9008,65 ,1,9009,65 ,1,9010,65 ,1,9011,65 ,1,9012,293080 ,1,9013,65 ,1,9014,222110 ,1,9015,179815 ,1,9016,310120 ,1,9017,65 ,1,9018,65 ,1,9019,65 ,1,9020,65 ,1,9021,212430 ,1,9022,65 ,1,9023,65 ,1,9024,65 ,1,9025,65 ,1,9026,65 ,1,9027,65 ,1,9028,65 ,1,9029,258730 ,1,9030,183745 ,1,9031,65 ,1,9032,65 ,1,9033,65 ,1,9034,65 ,1,9035,302190 ,1,9036,65 ,1,9037,65 ,1,9038,65 ,1,9039,65 ,1,9040,280345 ,1,9041,65 ,1,9042,289025 ,1,9043,65 ,1,9044,65 ,1,9045,331150 ,1,9046,320215 ,1,9047,65 ,1,9048,225510 ,1,9049,65 ,1,9050,65 ,1,9051,65 ,1,9052,65 ,1,9053,65 ,1,9054,65 ,1,9055,65 ,1,9056,337550 ,1,9057,320330 ,1,9058,65 ,1,9059,323980 ,1,9060,65 ,1,9061,184405 ,1,9062,65 ,1,9063,65 ,1,9064,65 ,1,9065,65 ,1,9066,304235 ,1,9067,340690 ,1,9068,65 ,1,9069,65 ,1,9070,65 ,1,9071,261790 ,1,9072,65 ,1,9073,218070 ,1,9074,201560 ,1,9075,310870 ,1,9076,65 ,1,9077,263700 ,1,9078,65 ,1,9079,65 ,1,9080,65 ,1,9081,65 ,1,9082,173980 ,1,9083,65 ,1,9084,347945 ,1,9085,65 ,1,9086,65 ,1,9087,65 ,1,9088,65 ,1,9089,65 ,1,9090,65 ,1,9091,65 ,1,9092,65 ,1,9093,65 ,1,9094,276730 ,1,9095,274560 ,1,9096,65 ,1,9097,207950 ,1,9098,280275 ,1,9099,189555 ,1,9100,65 ,1,9101,224845 ,1,9102,65 ,1,9103,65 ,1,9104,270055 ,1,9105,294510 ,1,9106,65 ,1,9107,314895 ,1,9108,210775 ,1,9109,65 ,1,9110,306200 ,1,9111,65 ,1,9112,65 ,1,9113,65 ,1,9114,65 ,1,9115,182280 ,1,9116,321280 ,1,9117,65 ,1,9118,65 ,1,9119,268240 ,1,9120,65 ,1,9121,65 ,1,9122,65 ,1,9123,338365 ,1,9124,347050 ,1,9125,65 ,1,9126,301415 ,1,9127,65 ,1,9128,65 ,1,9129,65 ,1,9130,65 ,1,9131,319095 ,1,9132,65 ,1,9133,65 ,1,9134,191295 ,1,9135,221000 ,1,9136,65 ,1,9137,65 ,1,9138,65 ,1,9139,182110 ,1,9140,65 ,1,9141,65 ,1,9142,312485 ,1,9143,65 ,1,9144,65 ,1,9145,240935 ,1,9146,65 ,1,9147,65 ,1,9148,65 ,1,9149,65 ,1,9150,65 ,1,9151,65 ,1,9152,65 ,1,9153,65 ,1,9154,336750 ,1,9155,250295 ,1,9156,299055 ,1,9157,65 ,1,9158,65 ,1,9159,328210 ,1,9160,187510 ,1,9161,65 ,1,9162,299785 ,1,9163,265015 ,1,9164,65 ,1,9165,65 ,1,9166,65 ,1,9167,65 ,1,9168,65 ,1,9169,284925 ,1,9170,65 ,1,9171,65 ,1,9172,333345 ,1,9173,65 ,1,9174,252070 ,1,9175,65 ,1,9176,65 ,1,9177,65 ,1,9178,269705 ,1,9179,342950 ,1,9180,65 ,1,9181,65 ,1,9182,65 ,1,9183,65 ,1,9184,65 ,1,9185,294445 ,1,9186,65 ,1,9187,183575 ,1,9188,311420 ,1,9189,279805 ,1,9190,350830 ,1,9191,280015 ,1,9192,65 ,1,9193,65 ,1,9194,247700 ,1,9195,65 ,1,9196,65 ,1,9197,312505 ,1,9198,65 ,1,9199,65 ,1,9200,65 ,1,9201,65 ,1,9202,65 ,1,9203,65 ,1,9204,65 ,1,9205,65 ,1,9206,65 ,1,9207,65 ,1,9208,65 ,1,9209,65 ,1,9210,65 ,1,9211,65 ,1,9212,65 ,1,9213,299840 ,1,9214,65 ,1,9215,65 ,1,9216,209255 ,1,9217,65 ,1,9218,173270 ,1,9219,339890 ,1,9220,286545 ,1,9221,285685 ,1,9222,205545 ,1,9223,312270 ,1,9224,65 ,1,9225,246805 ,1,9226,325005 ,1,9227,295575 ,1,9228,174370 ,1,9229,65 ,1,9230,65 ,1,9231,350815 ,1,9232,265775 ,1,9233,65 ,1,9234,65 ,1,9235,65 ,1,9236,283850 ,1,9237,65 ,1,9238,65 ,1,9239,65 ,1,9240,295095 ,1,9241,228700 ,1,9242,252175 ,1,9243,221140 ,1,9244,65 ,1,9245,316500 ,1,9246,318855 ,1,9247,65 ,1,9248,335320 ,1,9249,65 ,1,9250,202660 ,1,9251,65 ,1,9252,239600 ,1,9253,209950 ,1,9254,345130 ,1,9255,248415 ,1,9256,65 ,1,9257,254105 ,1,9258,283400 ,1,9259,187770 ,1,9260,236235 ,1,9261,65 ,1,9262,65 ,1,9263,326965 ,1,9264,260440 ,1,9265,346295 ,1,9266,186540 ,1,9267,65 ,1,9268,252525 ,1,9269,305990 ,1,9270,65 ,1,9271,313495 ,1,9272,65 ,1,9273,65 ,1,9274,65 ,1,9275,307455 ,1,9276,65 ,1,9277,272095 ,1,9278,277400 ,1,9279,168775 ,1,9280,166560 ,1,9281,305825 ,1,9282,65 ,1,9283,65 ,1,9284,240150 ,1,9285,324940 ,1,9286,298050 ,1,9287,65 ,1,9288,65 ,1,9289,65 ,1,9290,65 ,1,9291,65 ,1,9292,328620 ,1,9293,256645 ,1,9294,65 ,1,9295,65 ,1,9296,65 ,1,9297,270490 ,1,9298,65 ,1,9299,65 ,1,9300,65 ,1,9301,275285 ,1,9302,65 ,1,9303,65 ,1,9304,171875 ,1,9305,65 ,1,9306,65 ,1,9307,307125 ,1,9308,65 ,1,9309,268520 ,1,9310,65 ,1,9311,65 ,1,9312,65 ,1,9313,65 ,1,9314,65 ,1,9315,65 ,1,9316,206395 ,1,9317,65 ,1,9318,65 ,1,9319,65 ,1,9320,65 ,1,9321,342085 ,1,9322,65 ,1,9323,344460 ,1,9324,65 ,1,9325,65 ,1,9326,65 ,1,9327,65 ,1,9328,320680 ,1,9329,65 ,1,9330,65 ,1,9331,223980 ,1,9332,259360 ,1,9333,322900 ,1,9334,65 ,1,9335,322085 ,1,9336,168690 ,1,9337,216210 ,1,9338,176785 ,1,9339,216515 ,1,9340,313635 ,1,9341,65 ,1,9342,65 ,1,9343,323305 ,1,9344,65 ,1,9345,65 ,1,9346,206890 ,1,9347,322205 ,1,9348,65 ,1,9349,65 ,1,9350,235800 ,1,9351,351790 ,1,9352,65 ,1,9353,65 ,1,9354,170830 ,1,9355,65 ,1,9356,65 ,1,9357,65 ,1,9358,65 ,1,9359,65 ,1,9360,65 ,1,9361,65 ,1,9362,65 ,1,9363,209650 ,1,9364,65 ,1,9365,65 ,1,9366,322830 ,1,9367,65 ,1,9368,65 ,1,9369,65 ,1,9370,341765 ,1,9371,216995 ,1,9372,169990 ,1,9373,178800 ,1,9374,65 ,1,9375,65 ,1,9376,65 ,1,9377,65 ,1,9378,65 ,1,9379,65 ,1,9380,282565 ,1,9381,243350 ,1,9382,320750 ,1,9383,169345 ,1,9384,289925 ,1,9385,65 ,1,9386,193285 ,1,9387,65 ,1,9388,65 ,1,9389,260855 ,1,9390,313375 ,1,9391,65 ,1,9392,65 ,1,9393,207680 ,1,9394,302950 ,1,9395,338355 ,1,9396,65 ,1,9397,231170 ,1,9398,169310 ,1,9399,65 ,1,9400,65 ,1,9401,245365 ,1,9402,65 ,1,9403,65 ,1,9404,65 ,1,9405,229430 ,1,9406,65 ,1,9407,65 ,1,9408,228035 ,1,9409,65 ,1,9410,65 ,1,9411,65 ,1,9412,313260 ,1,9413,315915 ,1,9414,65 ,1,9415,271335 ,1,9416,65 ,1,9417,65 ,1,9418,65 ,1,9419,204310 ,1,9420,65 ,1,9421,201820 ,1,9422,65 ,1,9423,169435 ,1,9424,187180 ,1,9425,65 ,1,9426,65 ,1,9427,65 ,1,9428,240880 ,1,9429,65 ,1,9430,65 ,1,9431,191990 ,1,9432,305495 ,1,9433,65 ,1,9434,210790 ,1,9435,65 ,1,9436,65 ,1,9437,65 ,1,9438,65 ,1,9439,343295 ,1,9440,225260 ,1,9441,330240 ,1,9442,247550 ,1,9443,65 ,1,9444,65 ,1,9445,245950 ,1,9446,65 ,1,9447,65 ,1,9448,65 ,1,9449,65 ,1,9450,261840 ,1,9451,272555 ,1,9452,65 ,1,9453,65 ,1,9454,187520 ,1,9455,350805 ,1,9456,186845 ,1,9457,65 ,1,9458,65 ,1,9459,187935 ,1,9460,180005 ,1,9461,256905 ,1,9462,233575 ,1,9463,65 ,1,9464,267435 ,1,9465,279125 ,1,9466,272295 ,1,9467,65 ,1,9468,65 ,1,9469,65 ,1,9470,65 ,1,9471,65 ,1,9472,65 ,1,9473,65 ,1,9474,65 ,1,9475,65 ,1,9476,65 ,1,9477,65 ,1,9478,296700 ,1,9479,278760 ,1,9480,300995 ,1,9481,172255 ,1,9482,237550 ,1,9483,178620 ,1,9484,262055 ,1,9485,250315 ,1,9486,65 ,1,9487,65 ,1,9488,211950 ,1,9489,224735 ,1,9490,335380 ,1,9491,311825 ,1,9492,65 ,1,9493,298325 ,1,9494,331750 ,1,9495,277500 ,1,9496,65 ,1,9497,65 ,1,9498,65 ,1,9499,218120 ,1,9500,169445 ,1,9501,233925 ,1,9502,65 ,1,9503,65 ,1,9504,189055 ,1,9505,291870 ,1,9506,65 ,1,9507,65 ,1,9508,65 ,1,9509,194210 ,1,9510,65 ,1,9511,65 ,1,9512,265865 ,1,9513,65 ,1,9514,222565 ,1,9515,65 ,1,9516,65 ,1,9517,324745 ,1,9518,65 ,1,9519,65 ,1,9520,65 ,1,9521,256945 ,1,9522,65 ,1,9523,65 ,1,9524,65 ,1,9525,65 ,1,9526,188195 ,1,9527,187015 ,1,9528,234855 ,1,9529,65 ,1,9530,263455 ,1,9531,65 ,1,9532,65 ,1,9533,65 ,1,9534,65 ,1,9535,65 ,1,9536,65 ,1,9537,65 ,1,9538,311035 ,1,9539,65 ,1,9540,348090 ,1,9541,65 ,1,9542,65 ,1,9543,169540 ,1,9544,65 ,1,9545,65 ,1,9546,190215 ,1,9547,188770 ,1,9548,300035 ,1,9549,268500 ,1,9550,65 ,1,9551,65 ,1,9552,350795 ,1,9553,253400 ,1,9554,168995 ,1,9555,65 ,1,9556,202020 ,1,9557,317935 ,1,9558,65 ,1,9559,252830 ,1,9560,181110 ,1,9561,230240 ,1,9562,266385 ,1,9563,175740 ,1,9564,245210 ,1,9565,195495 ,1,9566,319895 ,1,9567,332585 ,1,9568,65 ,1,9569,221020 ,1,9570,234655 ,1,9571,65 ,1,9572,65 ,1,9573,65 ,1,9574,65 ,1,9575,65 ,1,9576,250395 ,1,9577,320280 ,1,9578,316350 ,1,9579,340455 ,1,9580,333465 ,1,9581,65 ,1,9582,65 ,1,9583,318390 ,1,9584,288610 ,1,9585,226245 ,1,9586,65 ,1,9587,65 ,1,9588,65 ,1,9589,65 ,1,9590,65 ,1,9591,65 ,1,9592,65 ,1,9593,65 ,1,9594,65 ,1,9595,65 ,1,9596,65 ,1,9597,190800 ,1,9598,331220 ,1,9599,242410 ,1,9600,65 ,1,9601,308535 ,1,9602,65 ,1,9603,65 ,1,9604,65 ,1,9605,65 ,1,9606,65 ,1,9607,65 ,1,9608,204905 ,1,9609,65 ,1,9610,288590 ,1,9611,65 ,1,9612,202125 ,1,9613,65 ,1,9614,65 ,1,9615,65 ,1,9616,65 ,1,9617,260800 ,1,9618,177370 ,1,9619,65 ,1,9620,229945 ,1,9621,65 ,1,9622,247615 ,1,9623,65 ,1,9624,65 ,1,9625,65 ,1,9626,65 ,1,9627,281330 ,1,9628,321515 ,1,9629,65 ,1,9630,65 ,1,9631,65 ,1,9632,270885 ,1,9633,227505 ,1,9634,316055 ,1,9635,65 ,1,9636,65 ,1,9637,347180 ,1,9638,65 ,1,9639,65 ,1,9640,65 ,1,9641,65 ,1,9642,65 ,1,9643,245320 ,1,9644,199855 ,1,9645,251770 ,1,9646,174840 ,1,9647,266730 ,1,9648,65 ,1,9649,65 ,1,9650,65 ,1,9651,173620 ,1,9652,65 ,1,9653,65 ,1,9654,65 ,1,9655,325290 ,1,9656,65 ,1,9657,65 ,1,9658,65 ,1,9659,65 ,1,9660,325245 ,1,9661,65 ,1,9662,298950 ,1,9663,65 ,1,9664,65 ,1,9665,65 ,1,9666,205535 ,1,9667,65 ,1,9668,65 ,1,9669,65 ,1,9670,221470 ,1,9671,295140 ,1,9672,65 ,1,9673,65 ,1,9674,65 ,1,9675,186075 ,1,9676,221785 ,1,9677,196270 ,1,9678,321485 ,1,9679,188830 ,1,9680,65 ,1,9681,65 ,1,9682,269765 ,1,9683,285260 ,1,9684,65 ,1,9685,65 ,1,9686,262815 ,1,9687,340965 ,1,9688,65 ,1,9689,65 ,1,9690,190410 ,1,9691,310315 ,1,9692,316445 ,1,9693,65 ,1,9694,177780 ,1,9695,343620 ,1,9696,350785 ,1,9697,310645 ,1,9698,65 ,1,9699,257130 ,1,9700,311025 ,1,9701,65 ,1,9702,65 ,1,9703,309885 ,1,9704,350735 ,1,9705,250245 ,1,9706,65 ,1,9707,65 ,1,9708,65 ,1,9709,65 ,1,9710,305600 ,1,9711,273060 ,1,9712,327890 ,1,9713,65 ,1,9714,65 ,1,9715,237110 ,1,9716,65 ,1,9717,65 ,1,9718,257195 ,1,9719,65 ,1,9720,346585 ,1,9721,229060 ,1,9722,279460 ,1,9723,65 ,1,9724,272200 ,1,9725,65 ,1,9726,270860 ,1,9727,65 ,1,9728,65 ,1,9729,65 ,1,9730,65 ,1,9731,65 ,1,9732,65 ,1,9733,65 ,1,9734,254575 ,1,9735,65 ,1,9736,65 ,1,9737,65 ,1,9738,65 ,1,9739,227170 ,1,9740,65 ,1,9741,225830 ,1,9742,346140 ,1,9743,239770 ,1,9744,272760 ,1,9745,306770 ,1,9746,65 ,1,9747,65 ,1,9748,65 ,1,9749,65 ,1,9750,65 ,1,9751,65 ,1,9752,65 ,1,9753,333085 ,1,9754,65 ,1,9755,65 ,1,9756,65 ,1,9757,65 ,1,9758,65 ,1,9759,65 ,1,9760,65 ,1,9761,235310 ,1,9762,65 ,1,9763,344015 ,1,9764,65 ,1,9765,239170 ,1,9766,261780 ,1,9767,65 ,1,9768,65 ,1,9769,65 ,1,9770,65 ,1,9771,65 ,1,9772,65 ,1,9773,65 ,1,9774,65 ,1,9775,65 ,1,9776,324725 ,1,9777,65 ,1,9778,65 ,1,9779,266690 ,1,9780,229205 ,1,9781,65 ,1,9782,65 ,1,9783,196375 ,1,9784,65 ,1,9785,65 ,1,9786,65 ,1,9787,65 ,1,9788,65 ,1,9789,65 ,1,9790,280915 ,1,9791,65 ,1,9792,65 ,1,9793,65 ,1,9794,65 ,1,9795,65 ,1,9796,65 ,1,9797,244980 ,1,9798,307380 ,1,9799,180745 ,1,9800,238185 ,1,9801,211640 ,1,9802,207470 ,1,9803,259535 ,1,9804,65 ,1,9805,65 ,1,9806,65 ,1,9807,65 ,1,9808,292560 ,1,9809,269800 ,1,9810,342670 ,1,9811,234475 ,1,9812,65 ,1,9813,317235 ,1,9814,65 ,1,9815,199295 ,1,9816,204085 ,1,9817,65 ,1,9818,289190 ,1,9819,263065 ,1,9820,247330 ,1,9821,219030 ,1,9822,196395 ,1,9823,65 ,1,9824,65 ,1,9825,241475 ,1,9826,65 ,1,9827,65 ,1,9828,65 ,1,9829,267705 ,1,9830,65 ,1,9831,65 ,1,9832,65 ,1,9833,65 ,1,9834,217770 ,1,9835,65 ,1,9836,297215 ,1,9837,65 ,1,9838,65 ,1,9839,65 ,1,9840,187705 ,1,9841,65 ,1,9842,65 ,1,9843,252225 ,1,9844,190875 ,1,9845,65 ,1,9846,350725 ,1,9847,65 ,1,9848,173515 ,1,9849,65 ,1,9850,65 ,1,9851,65 ,1,9852,65 ,1,9853,308815 ,1,9854,65 ,1,9855,65 ,1,9856,199325 ,1,9857,267780 ,1,9858,278515 ,1,9859,65 ,1,9860,207970 ,1,9861,65 ,1,9862,336595 ,1,9863,338725 ,1,9864,293100 ,1,9865,219490 ,1,9866,313735 ,1,9867,284895 ,1,9868,65 ,1,9869,65 ,1,9870,65 ,1,9871,65 ,1,9872,219330 ,1,9873,65 ,1,9874,202230 ,1,9875,65 ,1,9876,65 ,1,9877,168485 ,1,9878,65 ,1,9879,171380 ,1,9880,325655 ,1,9881,305525 ,1,9882,207730 ,1,9883,65 ,1,9884,65 ,1,9885,171080 ,1,9886,290425 ,1,9887,65 ,1,9888,65 ,1,9889,326610 ,1,9890,277940 ,1,9891,65 ,1,9892,230130 ,1,9893,65 ,1,9894,65 ,1,9895,185720 ,1,9896,192405 ,1,9897,65 ,1,9898,242155 ,1,9899,65 ,1,9900,65 ,1,9901,340155 ,1,9902,345575 ,1,9903,65 ,1,9904,65 ,1,9905,65 ,1,9906,65 ,1,9907,65 ,1,9908,65 ,1,9909,293285 ,1,9910,65 ,1,9911,65 ,1,9912,65 ,1,9913,65 ,1,9914,247150 ,1,9915,65 ,1,9916,65 ,1,9917,254415 ,1,9918,303895 ,1,9919,65 ,1,9920,65 ,1,9921,347300 ,1,9922,236870 ,1,9923,65 ,1,9924,65 ,1,9925,257690 ,1,9926,65 ,1,9927,65 ,1,9928,65 ,1,9929,65 ,1,9930,65 ,1,9931,65 ,1,9932,65 ,1,9933,304950 ,1,9934,177495 ,1,9935,309135 ,1,9936,65 ,1,9937,291635 ,1,9938,209840 ,1,9939,193875 ,1,9940,65 ,1,9941,65 ,1,9942,65 ,1,9943,65 ,1,9944,65 ,1,9945,221920 ,1,9946,331425 ,1,9947,65 ,1,9948,65 ,1,9949,65 ,1,9950,65 ,1,9951,189885 ,1,9952,65 ,1,9953,65 ,1,9954,65 ,1,9955,65 ,1,9956,65 ,1,9957,65 ,1,9958,65 ,1,9959,298625 ,1,9960,311430 ,1,9961,65 ,1,9962,65 ,1,9963,260115 ,1,9964,325840 ,1,9965,201420 ,1,9966,241420 ,1,9967,272805 ,1,9968,301605 ,1,9969,65 ,1,9970,65 ,1,9971,237635 ,1,9972,65 ,1,9973,65 ,1,9974,65 ,1,9975,65 ,1,9976,65 ,1,9977,343845 ,1,9978,65 ,1,9979,65 ,1,9980,65 ,1,9981,298790 ,1,9982,236000 ,1,9983,65 ,1,9984,284075 ,1,9985,235250 ,1,9986,65 ,1,9987,65 ,1,9988,65 ,1,9989,65 ,1,9990,65 ,1,9991,65 ,1,9992,65 ,1,9993,342260 ,1,9994,65 ,1,9995,201780 ,1,9996,297890 ,1,9997,65 ,1,9998,65 ,1,9999,65 ,1,10000,282475 ,1,10001,243815 ,1,10002,212365 ,1,10003,65 ,1,10004,295935 ,1,10005,292070 ,1,10006,236695 ,1,10007,322105 ,1,10008,256165 ,1,10009,273460 ,1,10010,65 ,1,10011,65 ,1,10012,65 ,1,10013,65 ,1,10014,223215 ,1,10015,171320 ,1,10016,65 ,1,10017,275610 ,1,10018,293615 ,1,10019,65 ,1,10020,292135 ,1,10021,333860 ,1,10022,304325 ,1,10023,274410 ,1,10024,333190 ,1,10025,269875 ,1,10026,65 ,1,10027,65 ,1,10028,65 ,1,10029,175815 ,1,10030,65 ,1,10031,65 ,1,10032,238870 ,1,10033,304845 ,1,10034,316590 ,1,10035,278750 ,1,10036,65 ,1,10037,65 ,1,10038,65 ,1,10039,65 ,1,10040,65 ,1,10041,65 ,1,10042,65 ,1,10043,65 ,1,10044,278810 ,1,10045,302035 ,1,10046,65 ,1,10047,232250 ,1,10048,65 ,1,10049,65 ,1,10050,330730 ,1,10051,65 ,1,10052,65 ,1,10053,65 ,1,10054,65 ,1,10055,65 ,1,10056,187780 ,1,10057,65 ,1,10058,291090 ,1,10059,187990 ,1,10060,311370 ,1,10061,300655 ,1,10062,281980 ,1,10063,307990 ,1,10064,319575 ,1,10065,292245 ,1,10066,336295 ,1,10067,65 ,1,10068,65 ,1,10069,319610 ,1,10070,65 ,1,10071,65 ,1,10072,332905 ,1,10073,65 ,1,10074,273350 ,1,10075,65 ,1,10076,65 ,1,10077,65 ,1,10078,65 ,1,10079,65 ,1,10080,270285 ,1,10081,65 ,1,10082,65 ,1,10083,65 ,1,10084,65 ,1,10085,65 ,1,10086,65 ,1,10087,65 ,1,10088,65 ,1,10089,65 ,1,10090,183775 ,1,10091,255910 ,1,10092,65 ,1,10093,256400 ,1,10094,65 ,1,10095,65 ,1,10096,65 ,1,10097,65 ,1,10098,65 ,1,10099,65 ,1,10100,65 ,1,10101,65 ,1,10102,65 ,1,10103,65 ,1,10104,65 ,1,10105,65 ,1,10106,309250 ,1,10107,65 ,1,10108,182020 ,1,10109,348420 ,1,10110,267225 ,1,10111,65 ,1,10112,65 ,1,10113,65 ,1,10114,310930 ,1,10115,65 ,1,10116,218700 ,1,10117,187055 ,1,10118,297185 ,1,10119,334870 ,1,10120,346305 ,1,10121,65 ,1,10122,65 ,1,10123,65 ,1,10124,65 ,1,10125,65 ,1,10126,65 ,1,10127,303150 ,1,10128,65 ,1,10129,65 ,1,10130,65 ,1,10131,65 ,1,10132,65 ,1,10133,328695 ,1,10134,65 ,1,10135,65 ,1,10136,65 ,1,10137,65 ,1,10138,65 ,1,10139,253605 ,1,10140,65 ,1,10141,65 ,1,10142,65 ,1,10143,294025 ,1,10144,288245 ,1,10145,277390 ,1,10146,65 ,1,10147,264135 ,1,10148,215095 ,1,10149,209980 ,1,10150,65 ,1,10151,65 ,1,10152,65 ,1,10153,65 ,1,10154,65 ,1,10155,288485 ,1,10156,65 ,1,10157,225320 ,1,10158,246035 ,1,10159,65 ,1,10160,65 ,1,10161,206205 ,1,10162,330060 ,1,10163,65 ,1,10164,65 ,1,10165,65 ,1,10166,259350 ,1,10167,65 ,1,10168,65 ,1,10169,65 ,1,10170,65 ,1,10171,218020 ,1,10172,65 ,1,10173,189855 ,1,10174,65 ,1,10175,248280 ,1,10176,65 ,1,10177,65 ,1,10178,328280 ,1,10179,259410 ,1,10180,65 ,1,10181,65 ,1,10182,268790 ,1,10183,205320 ,1,10184,65 ,1,10185,65 ,1,10186,65 ,1,10187,65 ,1,10188,244230 ,1,10189,65 ,1,10190,65 ,1,10191,172160 ,1,10192,302755 ,1,10193,65 ,1,10194,321175 ,1,10195,65 ,1,10196,65 ,1,10197,175480 ,1,10198,65 ,1,10199,239265 ,1,10200,251985 ,1,10201,281195 ,1,10202,65 ,1,10203,276995 ,1,10204,65 ,1,10205,65 ,1,10206,65 ,1,10207,65 ,1,10208,65 ,1,10209,65 ,1,10210,65 ,1,10211,65 ,1,10212,65 ,1,10213,65 ,1,10214,337880 ,1,10215,65 ,1,10216,65 ,1,10217,65 ,1,10218,65 ,1,10219,65 ,1,10220,315660 ,1,10221,65 ,1,10222,65 ,1,10223,65 ,1,10224,65 ,1,10225,65 ,1,10226,65 ,1,10227,65 ,1,10228,189535 ,1,10229,65 ,1,10230,297645 ,1,10231,65 ,1,10232,292780 ,1,10233,235740 ,1,10234,65 ,1,10235,233380 ,1,10236,179920 ,1,10237,328220 ,1,10238,65 ,1,10239,65 ,1,10240,65 ,1,10241,65 ,1,10242,65 ,1,10243,65 ,1,10244,65 ,1,10245,65 ,1,10246,65 ,1,10247,65 ,1,10248,65 ,1,10249,277920 ,1,10250,65 ,1,10251,65 ,1,10252,246755 ,1,10253,65 ,1,10254,65 ,1,10255,65 ,1,10256,65 ,1,10257,65 ,1,10258,65 ,1,10259,169425 ,1,10260,290890 ,1,10261,65 ,1,10262,172965 ,1,10263,65 ,1,10264,65 ,1,10265,65 ,1,10266,250195 ,1,10267,65 ,1,10268,339560 ,1,10269,65 ,1,10270,65 ,1,10271,65 ,1,10272,65 ,1,10273,225250 ,1,10274,278850 ,1,10275,277965 ,1,10276,65 ,1,10277,250520 ,1,10278,186290 ,1,10279,65 ,1,10280,168910 ,1,10281,65 ,1,10282,65 ,1,10283,226885 ,1,10284,65 ,1,10285,65 ,1,10286,65 ,1,10287,263425 ,1,10288,65 ,1,10289,278950 ,1,10290,65 ,1,10291,65 ,1,10292,65 ,1,10293,65 ,1,10294,65 ,1,10295,65 ,1,10296,65 ,1,10297,65 ,1,10298,65 ,1,10299,329980 ,1,10300,65 ,1,10301,347270 ,1,10302,65 ,1,10303,65 ,1,10304,65 ,1,10305,255465 ,1,10306,174090 ,1,10307,65 ,1,10308,65 ,1,10309,273595 ,1,10310,220990 ,1,10311,310705 ,1,10312,65 ,1,10313,65 ,1,10314,65 ,1,10315,238365 ,1,10316,65 ,1,10317,65 ,1,10318,65 ,1,10319,275740 ,1,10320,254095 ,1,10321,65 ,1,10322,351710 ,1,10323,65 ,1,10324,65 ,1,10325,65 ,1,10326,65 ,1,10327,65 ,1,10328,255710 ,1,10329,319700 ,1,10330,213055 ,1,10331,65 ,1,10332,65 ,1,10333,65 ,1,10334,65 ,1,10335,325665 ,1,10336,65 ,1,10337,65 ,1,10338,65 ,1,10339,180095 ,1,10340,65 ,1,10341,65 ,1,10342,313475 ,1,10343,65 ,1,10344,65 ,1,10345,65 ,1,10346,228720 ,1,10347,337930 ,1,10348,295915 ,1,10349,231645 ,1,10350,65 ,1,10351,65 ,1,10352,272055 ,1,10353,350715 ,1,10354,65 ,1,10355,337220 ,1,10356,296510 ,1,10357,65 ,1,10358,226700 ,1,10359,276220 ,1,10360,65 ,1,10361,65 ,1,10362,344770 ,1,10363,244610 ,1,10364,192940 ,1,10365,254980 ,1,10366,273865 ,1,10367,65 ,1,10368,65 ,1,10369,169745 ,1,10370,190185 ,1,10371,327125 ,1,10372,315860 ,1,10373,65 ,1,10374,213520 ,1,10375,208545 ,1,10376,65 ,1,10377,168205 ,1,10378,339725 ,1,10379,65 ,1,10380,226945 ,1,10381,65 ,1,10382,171825 ,1,10383,65 ,1,10384,277145 ,1,10385,65 ,1,10386,65 ,1,10387,65 ,1,10388,211290 ,1,10389,65 ,1,10390,65 ,1,10391,65 ,1,10392,65 ,1,10393,287580 ,1,10394,233555 ,1,10395,250950 ,1,10396,302095 ,1,10397,321820 ,1,10398,290395 ,1,10399,193890 ,1,10400,65 ,1,10401,65 ,1,10402,65 ,1,10403,198890 ,1,10404,294125 ,1,10405,65 ,1,10406,65 ,1,10407,65 ,1,10408,336065 ,1,10409,250980 ,1,10410,330860 ,1,10411,65 ,1,10412,65 ,1,10413,65 ,1,10414,65 ,1,10415,65 ,1,10416,65 ,1,10417,65 ,1,10418,248870 ,1,10419,65 ,1,10420,65 ,1,10421,252950 ,1,10422,266225 ,1,10423,219880 ,1,10424,65 ,1,10425,65 ,1,10426,238620 ,1,10427,207530 ,1,10428,65 ,1,10429,65 ,1,10430,319995 ,1,10431,65 ,1,10432,65 ,1,10433,174650 ,1,10434,65 ,1,10435,267425 ,1,10436,302835 ,1,10437,65 ,1,10438,65 ,1,10439,300765 ,1,10440,181040 ,1,10441,256675 ,1,10442,350705 ,1,10443,300715 ,1,10444,65 ,1,10445,65 ,1,10446,65 ,1,10447,277175 ,1,10448,185215 ,1,10449,221765 ,1,10450,65 ,1,10451,350690 ,1,10452,65 ,1,10453,65 ,1,10454,308715 ,1,10455,65 ,1,10456,327995 ,1,10457,338020 ,1,10458,65 ,1,10459,65 ,1,10460,65 ,1,10461,65 ,1,10462,65 ,1,10463,65 ,1,10464,65 ,1,10465,65 ,1,10466,167750 ,1,10467,210975 ,1,10468,65 ,1,10469,237920 ,1,10470,207085 ,1,10471,65 ,1,10472,65 ,1,10473,226085 ,1,10474,65 ,1,10475,257490 ,1,10476,65 ,1,10477,166680 ,1,10478,273660 ,1,10479,65 ,1,10480,65 ,1,10481,65 ,1,10482,65 ,1,10483,65 ,1,10484,65 ,1,10485,65 ,1,10486,282710 ,1,10487,65 ,1,10488,65 ,1,10489,346120 ,1,10490,262655 ,1,10491,65 ,1,10492,65 ,1,10493,249260 ,1,10494,285240 ,1,10495,303230 ,1,10496,65 ,1,10497,65 ,1,10498,65 ,1,10499,170745 ,1,10500,308940 ,1,10501,65 ,1,10502,65 ,1,10503,65 ,1,10504,65 ,1,10505,65 ,1,10506,65 ,1,10507,65 ,1,10508,305305 ,1,10509,65 ,1,10510,65 ,1,10511,234540 ,1,10512,65 ,1,10513,65 ,1,10514,337285 ,1,10515,65 ,1,10516,322890 ,1,10517,222865 ,1,10518,65 ,1,10519,290955 ,1,10520,65 ,1,10521,65 ,1,10522,170935 ,1,10523,65 ,1,10524,65 ,1,10525,65 ,1,10526,272335 ,1,10527,322665 ,1,10528,65 ,1,10529,65 ,1,10530,65 ,1,10531,65 ,1,10532,65 ,1,10533,65 ,1,10534,182565 ,1,10535,65 ,1,10536,65 ,1,10537,180615 ,1,10538,181920 ,1,10539,65 ,1,10540,287285 ,1,10541,65 ,1,10542,65 ,1,10543,65 ,1,10544,220705 ,1,10545,65 ,1,10546,175330 ,1,10547,65 ,1,10548,65 ,1,10549,65 ,1,10550,65 ,1,10551,65 ,1,10552,65 ,1,10553,339505 ,1,10554,65 ,1,10555,65 ,1,10556,335740 ,1,10557,65 ,1,10558,346605 ,1,10559,300490 ,1,10560,238610 ,1,10561,215585 ,1,10562,189685 ,1,10563,176210 ,1,10564,350680 ,1,10565,174580 ,1,10566,245355 ,1,10567,290145 ,1,10568,335505 ,1,10569,220440 ,1,10570,65 ,1,10571,65 ,1,10572,65 ,1,10573,65 ,1,10574,65 ,1,10575,65 ,1,10576,296710 ,1,10577,65 ,1,10578,65 ,1,10579,65 ,1,10580,341000 ,1,10581,281560 ,1,10582,332965 ,1,10583,242185 ,1,10584,244865 ,1,10585,65 ,1,10586,65 ,1,10587,313135 ,1,10588,65 ,1,10589,65 ,1,10590,65 ,1,10591,298740 ,1,10592,258625 ,1,10593,65 ,1,10594,65 ,1,10595,65 ,1,10596,65 ,1,10597,65 ,1,10598,237365 ,1,10599,261470 ,1,10600,287935 ,1,10601,329315 ,1,10602,65 ,1,10603,65 ,1,10604,65 ,1,10605,166880 ,1,10606,168840 ,1,10607,65 ,1,10608,170315 ,1,10609,296875 ,1,10610,65 ,1,10611,288215 ,1,10612,65 ,1,10613,272075 ,1,10614,65 ,1,10615,65 ,1,10616,65 ,1,10617,65 ,1,10618,305940 ,1,10619,65 ,1,10620,65 ,1,10621,231925 ,1,10622,65 ,1,10623,65 ,1,10624,312735 ,1,10625,223195 ,1,10626,65 ,1,10627,65 ,1,10628,275120 ,1,10629,241315 ,1,10630,219385 ,1,10631,65 ,1,10632,65 ,1,10633,65 ,1,10634,65 ,1,10635,65 ,1,10636,333235 ,1,10637,224470 ,1,10638,227100 ,1,10639,343500 ,1,10640,167730 ,1,10641,65 ,1,10642,65 ,1,10643,65 ,1,10644,65 ,1,10645,65 ,1,10646,65 ,1,10647,266035 ,1,10648,65 ,1,10649,65 ,1,10650,65 ,1,10651,286255 ,1,10652,287535 ,1,10653,65 ,1,10654,65 ,1,10655,65 ,1,10656,65 ,1,10657,65 ,1,10658,65 ,1,10659,65 ,1,10660,200415 ,1,10661,194400 ,1,10662,65 ,1,10663,65 ,1,10664,65 ,1,10665,65 ,1,10666,331910 ,1,10667,65 ,1,10668,65 ,1,10669,338595 ,1,10670,65 ,1,10671,261205 ,1,10672,65 ,1,10673,65 ,1,10674,199235 ,1,10675,65 ,1,10676,65 ,1,10677,65 ,1,10678,65 ,1,10679,277230 ,1,10680,65 ,1,10681,65 ,1,10682,65 ,1,10683,65 ,1,10684,221375 ,1,10685,299725 ,1,10686,339525 ,1,10687,208300 ,1,10688,346995 ,1,10689,213875 ,1,10690,189545 ,1,10691,65 ,1,10692,65 ,1,10693,65 ,1,10694,209370 ,1,10695,200470 ,1,10696,65 ,1,10697,323825 ,1,10698,65 ,1,10699,65 ,1,10700,65 ,1,10701,65 ,1,10702,65 ,1,10703,65 ,1,10704,65 ,1,10705,65 ,1,10706,65 ,1,10707,65 ,1,10708,310000 ,1,10709,65 ,1,10710,65 ,1,10711,65 ,1,10712,304435 ,1,10713,65 ,1,10714,65 ,1,10715,251045 ,1,10716,65 ,1,10717,65 ,1,10718,65 ,1,10719,179640 ,1,10720,168860 ,1,10721,245625 ,1,10722,65 ,1,10723,65 ,1,10724,65 ,1,10725,65 ,1,10726,65 ,1,10727,265080 ,1,10728,206375 ,1,10729,296085 ,1,10730,315500 ,1,10731,291810 ,1,10732,65 ,1,10733,65 ,1,10734,194310 ,1,10735,198665 ,1,10736,65 ,1,10737,65 ,1,10738,65 ,1,10739,65 ,1,10740,65 ,1,10741,65 ,1,10742,65 ,1,10743,220105 ,1,10744,65 ,1,10745,65 ,1,10746,65 ,1,10747,65 ,1,10748,204105 ,1,10749,296895 ,1,10750,249760 ,1,10751,232560 ,1,10752,221855 ,1,10753,293225 ,1,10754,65 ,1,10755,183605 ,1,10756,65 ,1,10757,65 ,1,10758,65 ,1,10759,65 ,1,10760,65 ,1,10761,65 ,1,10762,214935 ,1,10763,65 ,1,10764,65 ,1,10765,65 ,1,10766,65 ,1,10767,186950 ,1,10768,65 ,1,10769,282670 ,1,10770,174760 ,1,10771,263500 ,1,10772,330415 ,1,10773,65 ,1,10774,65 ,1,10775,280060 ,1,10776,197930 ,1,10777,346760 ,1,10778,219550 ,1,10779,65 ,1,10780,65 ,1,10781,315425 ,1,10782,270980 ,1,10783,65 ,1,10784,199865 ,1,10785,350670 ,1,10786,185495 ,1,10787,309695 ,1,10788,301865 ,1,10789,246075 ,1,10790,290555 ,1,10791,314325 ,1,10792,65 ,1,10793,321600 ,1,10794,65 ,1,10795,65 ,1,10796,65 ,1,10797,65 ,1,10798,248000 ,1,10799,267445 ,1,10800,322645 ,1,10801,290040 ,1,10802,65 ,1,10803,65 ,1,10804,65 ,1,10805,65 ,1,10806,208340 ,1,10807,176510 ,1,10808,270655 ,1,10809,65 ,1,10810,65 ,1,10811,65 ,1,10812,254860 ,1,10813,65 ,1,10814,298635 ,1,10815,65 ,1,10816,65 ,1,10817,192375 ,1,10818,65 ,1,10819,291430 ,1,10820,65 ,1,10821,65 ,1,10822,65 ,1,10823,186705 ,1,10824,65 ,1,10825,65 ,1,10826,65 ,1,10827,193060 ,1,10828,317755 ,1,10829,309345 ,1,10830,181955 ,1,10831,330810 ,1,10832,313155 ,1,10833,65 ,1,10834,289015 ,1,10835,189475 ,1,10836,215405 ,1,10837,65 ,1,10838,327000 ,1,10839,280975 ,1,10840,223260 ,1,10841,65 ,1,10842,65 ,1,10843,65 ,1,10844,65 ,1,10845,65 ,1,10846,65 ,1,10847,65 ,1,10848,215445 ,1,10849,286750 ,1,10850,268430 ,1,10851,65 ,1,10852,65 ,1,10853,65 ,1,10854,65 ,1,10855,183565 ,1,10856,65 ,1,10857,258545 ,1,10858,267030 ,1,10859,207920 ,1,10860,336025 ,1,10861,222795 ,1,10862,65 ,1,10863,282885 ,1,10864,171440 ,1,10865,65 ,1,10866,293805 ,1,10867,65 ,1,10868,288285 ,1,10869,190330 ,1,10870,183300 ,1,10871,341065 ,1,10872,65 ,1,10873,65 ,1,10874,65 ,1,10875,325365 ,1,10876,65 ,1,10877,298520 ,1,10878,206270 ,1,10879,65 ,1,10880,65 ,1,10881,239075 ,1,10882,65 ,1,10883,65 ,1,10884,65 ,1,10885,65 ,1,10886,65 ,1,10887,335920 ,1,10888,65 ,1,10889,321590 ,1,10890,269315 ,1,10891,65 ,1,10892,65 ,1,10893,65 ,1,10894,65 ,1,10895,231765 ,1,10896,65 ,1,10897,335650 ,1,10898,292155 ,1,10899,65 ,1,10900,65 ,1,10901,65 ,1,10902,325180 ,1,10903,65 ,1,10904,65 ,1,10905,65 ,1,10906,200905 ,1,10907,198870 ,1,10908,212830 ,1,10909,65 ,1,10910,65 ,1,10911,65 ,1,10912,273980 ,1,10913,313195 ,1,10914,327030 ,1,10915,278685 ,1,10916,65 ,1,10917,65 ,1,10918,276015 ,1,10919,321085 ,1,10920,65 ,1,10921,256925 ,1,10922,65 ,1,10923,65 ,1,10924,65 ,1,10925,65 ,1,10926,312610 ,1,10927,65 ,1,10928,65 ,1,10929,291970 ,1,10930,189575 ,1,10931,65 ,1,10932,331475 ,1,10933,65 ,1,10934,301340 ,1,10935,332455 ,1,10936,293985 ,1,10937,65 ,1,10938,65 ,1,10939,65 ,1,10940,65 ,1,10941,184840 ,1,10942,305550 ,1,10943,65 ,1,10944,65 ,1,10945,330110 ,1,10946,65 ,1,10947,65 ,1,10948,323605 ,1,10949,285775 ,1,10950,346535 ,1,10951,65 ,1,10952,221805 ,1,10953,65 ,1,10954,65 ,1,10955,259420 ,1,10956,65 ,1,10957,65 ,1,10958,65 ,1,10959,331140 ,1,10960,65 ,1,10961,65 ,1,10962,322990 ,1,10963,65 ,1,10964,176220 ,1,10965,191055 ,1,10966,199520 ,1,10967,253440 ,1,10968,65 ,1,10969,65 ,1,10970,65 ,1,10971,65 ,1,10972,65 ,1,10973,280440 ,1,10974,65 ,1,10975,65 ,1,10976,211940 ,1,10977,65 ,1,10978,196305 ,1,10979,65 ,1,10980,65 ,1,10981,65 ,1,10982,65 ,1,10983,65 ,1,10984,65 ,1,10985,284525 ,1,10986,211920 ,1,10987,65 ,1,10988,65 ,1,10989,65 ,1,10990,65 ,1,10991,324645 ,1,10992,177250 ,1,10993,268150 ,1,10994,65 ,1,10995,65 ,1,10996,65 ,1,10997,65 ,1,10998,65 ,1,10999,65 ,1,11000,330760 ,1,11001,217415 ,1,11002,299090 ,1,11003,321675 ,1,11004,331875 ,1,11005,291410 ,1,11006,65 ,1,11007,65 ,1,11008,65 ,1,11009,65 ,1,11010,185005 ,1,11011,194835 ,1,11012,65 ,1,11013,65 ,1,11014,65 ,1,11015,239845 ,1,11016,170135 ,1,11017,297020 ,1,11018,167295 ,1,11019,65 ,1,11020,65 ,1,11021,260585 ,1,11022,65 ,1,11023,195915 ,1,11024,268555 ,1,11025,265895 ,1,11026,331690 ,1,11027,325375 ,1,11028,65 ,1,11029,65 ,1,11030,263380 ,1,11031,65 ,1,11032,65 ,1,11033,65 ,1,11034,208140 ,1,11035,65 ,1,11036,254445 ,1,11037,65 ,1,11038,65 ,1,11039,350660 ,1,11040,311605 ,1,11041,323080 ,1,11042,252740 ,1,11043,65 ,1,11044,281990 ,1,11045,309190 ,1,11046,65 ,1,11047,245840 ,1,11048,65 ,1,11049,65 ,1,11050,65 ,1,11051,65 ,1,11052,65 ,1,11053,65 ,1,11054,65 ,1,11055,65 ,1,11056,65 ,1,11057,65 ,1,11058,65 ,1,11059,65 ,1,11060,323315 ,1,11061,65 ,1,11062,331555 ,1,11063,65 ,1,11064,65 ,1,11065,65 ,1,11066,202770 ,1,11067,301925 ,1,11068,169630 ,1,11069,236105 ,1,11070,211200 ,1,11071,287775 ,1,11072,65 ,1,11073,65 ,1,11074,184230 ,1,11075,65 ,1,11076,247595 ,1,11077,262560 ,1,11078,315975 ,1,11079,65 ,1,11080,65 ,1,11081,227370 ,1,11082,261410 ,1,11083,330000 ,1,11084,65 ,1,11085,65 ,1,11086,202705 ,1,11087,228455 ,1,11088,65 ,1,11089,65 ,1,11090,180175 ,1,11091,290510 ,1,11092,65 ,1,11093,65 ,1,11094,65 ,1,11095,65 ,1,11096,65 ,1,11097,232310 ,1,11098,282630 ,1,11099,65 ,1,11100,331790 ,1,11101,314515 ,1,11102,65 ,1,11103,65 ,1,11104,320350 ,1,11105,65 ,1,11106,312780 ,1,11107,217620 ,1,11108,65 ,1,11109,65 ,1,11110,65 ,1,11111,65 ,1,11112,197205 ,1,11113,65 ,1,11114,65 ,1,11115,171885 ,1,11116,306420 ,1,11117,259780 ,1,11118,65 ,1,11119,65 ,1,11120,65 ,1,11121,65 ,1,11122,65 ,1,11123,334235 ,1,11124,65 ,1,11125,65 ,1,11126,65 ,1,11127,276135 ,1,11128,315270 ,1,11129,265740 ,1,11130,266075 ,1,11131,65 ,1,11132,65 ,1,11133,65 ,1,11134,192630 ,1,11135,65 ,1,11136,65 ,1,11137,244755 ,1,11138,245475 ,1,11139,65 ,1,11140,65 ,1,11141,266710 ,1,11142,190075 ,1,11143,300540 ,1,11144,210705 ,1,11145,170125 ,1,11146,228355 ,1,11147,307245 ,1,11148,65 ,1,11149,181975 ,1,11150,65 ,1,11151,65 ,1,11152,65 ,1,11153,65 ,1,11154,241975 ,1,11155,65 ,1,11156,65 ,1,11157,338525 ,1,11158,65 ,1,11159,65 ,1,11160,65 ,1,11161,65 ,1,11162,65 ,1,11163,65 ,1,11164,65 ,1,11165,65 ,1,11166,289465 ,1,11167,65 ,1,11168,193465 ,1,11169,253565 ,1,11170,65 ,1,11171,65 ,1,11172,65 ,1,11173,65 ,1,11174,248435 ,1,11175,339375 ,1,11176,228150 ,1,11177,65 ,1,11178,347750 ,1,11179,65 ,1,11180,211565 ,1,11181,330290 ,1,11182,65 ,1,11183,299100 ,1,11184,65 ,1,11185,194915 ,1,11186,257920 ,1,11187,260430 ,1,11188,341170 ,1,11189,65 ,1,11190,242045 ,1,11191,337830 ,1,11192,65 ,1,11193,65 ,1,11194,65 ,1,11195,65 ,1,11196,65 ,1,11197,65 ,1,11198,65 ,1,11199,65 ,1,11200,65 ,1,11201,308835 ,1,11202,65 ,1,11203,65 ,1,11204,65 ,1,11205,65 ,1,11206,65 ,1,11207,65 ,1,11208,65 ,1,11209,300460 ,1,11210,65 ,1,11211,344405 ,1,11212,342540 ,1,11213,338655 ,1,11214,65 ,1,11215,262455 ,1,11216,170155 ,1,11217,246125 ,1,11218,65 ,1,11219,65 ,1,11220,65 ,1,11221,65 ,1,11222,65 ,1,11223,317000 ,1,11224,199535 ,1,11225,65 ,1,11226,65 ,1,11227,65 ,1,11228,65 ,1,11229,65 ,1,11230,65 ,1,11231,186685 ,1,11232,338310 ,1,11233,350635 ,1,11234,65 ,1,11235,65 ,1,11236,65 ,1,11237,219165 ,1,11238,65 ,1,11239,346840 ,1,11240,209900 ,1,11241,65 ,1,11242,333300 ,1,11243,296255 ,1,11244,65 ,1,11245,65 ,1,11246,65 ,1,11247,231400 ,1,11248,65 ,1,11249,65 ,1,11250,167365 ,1,11251,233905 ,1,11252,65 ,1,11253,65 ,1,11254,65 ,1,11255,308280 ,1,11256,65 ,1,11257,65 ,1,11258,167800 ,1,11259,335200 ,1,11260,308330 ,1,11261,65 ,1,11262,253680 ,1,11263,258040 ,1,11264,65 ,1,11265,65 ,1,11266,65 ,1,11267,65 ,1,11268,254960 ,1,11269,191965 ,1,11270,333515 ,1,11271,350625 ,1,11272,65 ,1,11273,172630 ,1,11274,65 ,1,11275,236795 ,1,11276,65 ,1,11277,330010 ,1,11278,65 ,1,11279,263285 ,1,11280,65 ,1,11281,65 ,1,11282,268000 ,1,11283,260175 ,1,11284,65 ,1,11285,270400 ,1,11286,212050 ,1,11287,65 ,1,11288,275635 ,1,11289,65 ,1,11290,184505 ,1,11291,65 ,1,11292,65 ,1,11293,307115 ,1,11294,186960 ,1,11295,65 ,1,11296,65 ,1,11297,65 ,1,11298,65 ,1,11299,65 ,1,11300,309045 ,1,11301,238140 ,1,11302,65 ,1,11303,65 ,1,11304,65 ,1,11305,65 ,1,11306,65 ,1,11307,342680 ,1,11308,65 ,1,11309,171535 ,1,11310,309070 ,1,11311,65 ,1,11312,269915 ,1,11313,65 ,1,11314,267605 ,1,11315,65 ,1,11316,65 ,1,11317,245960 ,1,11318,246225 ,1,11319,65 ,1,11320,178125 ,1,11321,65 ,1,11322,271585 ,1,11323,213195 ,1,11324,210665 ,1,11325,65 ,1,11326,237000 ,1,11327,215845 ,1,11328,217545 ,1,11329,206105 ,1,11330,65 ,1,11331,229485 ,1,11332,65 ,1,11333,233675 ,1,11334,65 ,1,11335,65 ,1,11336,65 ,1,11337,65 ,1,11338,218635 ,1,11339,65 ,1,11340,65 ,1,11341,285520 ,1,11342,222200 ,1,11343,239225 ,1,11344,183005 ,1,11345,65 ,1,11346,65 ,1,11347,65 ,1,11348,65 ,1,11349,65 ,1,11350,65 ,1,11351,271000 ,1,11352,200510 ,1,11353,183735 ,1,11354,211035 ,1,11355,65 ,1,11356,65 ,1,11357,195725 ,1,11358,291060 ,1,11359,65 ,1,11360,265530 ,1,11361,220320 ,1,11362,65 ,1,11363,335060 ,1,11364,65 ,1,11365,65 ,1,11366,226095 ,1,11367,245080 ,1,11368,323520 ,1,11369,296180 ,1,11370,292270 ,1,11371,248310 ,1,11372,263980 ,1,11373,65 ,1,11374,320025 ,1,11375,335415 ,1,11376,65 ,1,11377,65 ,1,11378,65 ,1,11379,180915 ,1,11380,261045 ,1,11381,331620 ,1,11382,322710 ,1,11383,179975 ,1,11384,337650 ,1,11385,65 ,1,11386,65 ,1,11387,65 ,1,11388,245395 ,1,11389,65 ,1,11390,65 ,1,11391,65 ,1,11392,65 ,1,11393,65 ,1,11394,65 ,1,11395,180430 ,1,11396,326570 ,1,11397,189605 ,1,11398,185555 ,1,11399,65 ,1,11400,307270 ,1,11401,288695 ,1,11402,214490 ,1,11403,211340 ,1,11404,65 ,1,11405,65 ,1,11406,296915 ,1,11407,191520 ,1,11408,65 ,1,11409,253555 ,1,11410,224440 ,1,11411,65 ,1,11412,65 ,1,11413,65 ,1,11414,65 ,1,11415,65 ,1,11416,65 ,1,11417,276355 ,1,11418,65 ,1,11419,65 ,1,11420,332360 ,1,11421,65 ,1,11422,65 ,1,11423,65 ,1,11424,265220 ,1,11425,65 ,1,11426,65 ,1,11427,65 ,1,11428,281380 ,1,11429,169920 ,1,11430,268745 ,1,11431,186740 ,1,11432,221660 ,1,11433,341055 ,1,11434,65 ,1,11435,65 ,1,11436,188675 ,1,11437,65 ,1,11438,214100 ,1,11439,269145 ,1,11440,325530 ,1,11441,65 ,1,11442,65 ,1,11443,286625 ,1,11444,174870 ,1,11445,317160 ,1,11446,172355 ,1,11447,191265 ,1,11448,237375 ,1,11449,332095 ,1,11450,260420 ,1,11451,317925 ,1,11452,65 ,1,11453,250215 ,1,11454,223960 ,1,11455,247005 ,1,11456,253890 ,1,11457,65 ,1,11458,270445 ,1,11459,65 ,1,11460,276955 ,1,11461,65 ,1,11462,65 ,1,11463,65 ,1,11464,65 ,1,11465,65 ,1,11466,65 ,1,11467,65 ,1,11468,194180 ,1,11469,65 ,1,11470,186865 ,1,11471,65 ,1,11472,65 ,1,11473,65 ,1,11474,187750 ,1,11475,65 ,1,11476,344470 ,1,11477,65 ,1,11478,65 ,1,11479,296585 ,1,11480,65 ,1,11481,65 ,1,11482,65 ,1,11483,65 ,1,11484,65 ,1,11485,65 ,1,11486,183640 ,1,11487,330190 ,1,11488,219055 ,1,11489,65 ,1,11490,65 ,1,11491,176885 ,1,11492,294810 ,1,11493,65 ,1,11494,246085 ,1,11495,65 ,1,11496,65 ,1,11497,65 ,1,11498,335155 ,1,11499,65 ,1,11500,326600 ,1,11501,65 ,1,11502,292915 ,1,11503,65 ,1,11504,219655 ,1,11505,65 ,1,11506,65 ,1,11507,318960 ,1,11508,347160 ,1,11509,65 ,1,11510,65 ,1,11511,175910 ,1,11512,65 ,1,11513,65 ,1,11514,65 ,1,11515,65 ,1,11516,65 ,1,11517,202490 ,1,11518,65 ,1,11519,174830 ,1,11520,65 ,1,11521,179870 ,1,11522,183755 ,1,11523,65 ,1,11524,267405 ,1,11525,65 ,1,11526,65 ,1,11527,277300 ,1,11528,245250 ,1,11529,65 ,1,11530,65 ,1,11531,65 ,1,11532,65 ,1,11533,65 ,1,11534,65 ,1,11535,65 ,1,11536,65 ,1,11537,65 ,1,11538,65 ,1,11539,65 ,1,11540,312550 ,1,11541,170065 ,1,11542,65 ,1,11543,315465 ,1,11544,267840 ,1,11545,235505 ,1,11546,65 ,1,11547,282120 ,1,11548,338065 ,1,11549,65 ,1,11550,65 ,1,11551,65 ,1,11552,309285 ,1,11553,65 ,1,11554,294580 ,1,11555,338830 ,1,11556,65 ,1,11557,307090 ,1,11558,195560 ,1,11559,65 ,1,11560,266340 ,1,11561,238080 ,1,11562,65 ,1,11563,303240 ,1,11564,65 ,1,11565,65 ,1,11566,65 ,1,11567,65 ,1,11568,225880 ,1,11569,65 ,1,11570,215040 ,1,11571,189595 ,1,11572,176825 ,1,11573,65 ,1,11574,65 ,1,11575,65 ,1,11576,65 ,1,11577,65 ,1,11578,65 ,1,11579,65 ,1,11580,65 ,1,11581,282345 ,1,11582,65 ,1,11583,255700 ,1,11584,65 ,1,11585,223045 ,1,11586,65 ,1,11587,229115 ,1,11588,65 ,1,11589,65 ,1,11590,281875 ,1,11591,333625 ,1,11592,238280 ,1,11593,65 ,1,11594,268230 ,1,11595,65 ,1,11596,237885 ,1,11597,65 ,1,11598,65 ,1,11599,65 ,1,11600,65 ,1,11601,65 ,1,11602,310195 ,1,11603,65 ,1,11604,65 ,1,11605,65 ,1,11606,65 ,1,11607,65 ,1,11608,65 ,1,11609,65 ,1,11610,244390 ,1,11611,199190 ,1,11612,65 ,1,11613,65 ,1,11614,184790 ,1,11615,297115 ,1,11616,65 ,1,11617,297930 ,1,11618,65 ,1,11619,175920 ,1,11620,65 ,1,11621,65 ,1,11622,65 ,1,11623,167385 ,1,11624,187125 ,1,11625,334665 ,1,11626,65 ,1,11627,256615 ,1,11628,65 ,1,11629,276570 ,1,11630,65 ,1,11631,236215 ,1,11632,231625 ,1,11633,267485 ,1,11634,65 ,1,11635,65 ,1,11636,233200 ,1,11637,65 ,1,11638,312230 ,1,11639,65 ,1,11640,233495 ,1,11641,65 ,1,11642,272035 ,1,11643,65 ,1,11644,222210 ,1,11645,218565 ,1,11646,65 ,1,11647,65 ,1,11648,195300 ,1,11649,65 ,1,11650,65 ,1,11651,65 ,1,11652,279795 ,1,11653,187670 ,1,11654,65 ,1,11655,65 ,1,11656,65 ,1,11657,65 ,1,11658,65 ,1,11659,65 ,1,11660,248490 ,1,11661,65 ,1,11662,65 ,1,11663,65 ,1,11664,65 ,1,11665,65 ,1,11666,65 ,1,11667,350615 ,1,11668,295105 ,1,11669,65 ,1,11670,65 ,1,11671,65 ,1,11672,65 ,1,11673,65 ,1,11674,65 ,1,11675,65 ,1,11676,65 ,1,11677,296815 ,1,11678,65 ,1,11679,65 ,1,11680,65 ,1,11681,65 ,1,11682,65 ,1,11683,282650 ,1,11684,187240 ,1,11685,65 ,1,11686,186230 ,1,11687,324755 ,1,11688,65 ,1,11689,65 ,1,11690,65 ,1,11691,65 ,1,11692,65 ,1,11693,65 ,1,11694,65 ,1,11695,65 ,1,11696,65 ,1,11697,65 ,1,11698,65 ,1,11699,238300 ,1,11700,182340 ,1,11701,290830 ,1,11702,182030 ,1,11703,312590 ,1,11704,65 ,1,11705,335045 ,1,11706,65 ,1,11707,65 ,1,11708,244545 ,1,11709,328515 ,1,11710,65 ,1,11711,65 ,1,11712,209725 ,1,11713,181635 ,1,11714,65 ,1,11715,186650 ,1,11716,65 ,1,11717,65 ,1,11718,279740 ,1,11719,179585 ,1,11720,288495 ,1,11721,65 ,1,11722,65 ,1,11723,65 ,1,11724,65 ,1,11725,65 ,1,11726,327575 ,1,11727,65 ,1,11728,65 ,1,11729,65 ,1,11730,65 ,1,11731,65 ,1,11732,65 ,1,11733,65 ,1,11734,65 ,1,11735,65 ,1,11736,332945 ,1,11737,65 ,1,11738,65 ,1,11739,65 ,1,11740,65 ,1,11741,65 ,1,11742,65 ,1,11743,65 ,1,11744,65 ,1,11745,233170 ,1,11746,259265 ,1,11747,65 ,1,11748,292455 ,1,11749,239460 ,1,11750,65 ,1,11751,220205 ,1,11752,65 ,1,11753,65 ,1,11754,175370 ,1,11755,230285 ,1,11756,65 ,1,11757,65 ,1,11758,251320 ,1,11759,65 ,1,11760,65 ,1,11761,260040 ,1,11762,65 ,1,11763,65 ,1,11764,199825 ,1,11765,166765 ,1,11766,65 ,1,11767,242505 ,1,11768,169710 ,1,11769,65 ,1,11770,346475 ,1,11771,180855 ,1,11772,252730 ,1,11773,301955 ,1,11774,65 ,1,11775,65 ,1,11776,210865 ,1,11777,65 ,1,11778,317735 ,1,11779,65 ,1,11780,283440 ,1,11781,233610 ,1,11782,65 ,1,11783,326265 ,1,11784,65 ,1,11785,242615 ,1,11786,327235 ,1,11787,65 ,1,11788,296640 ,1,11789,65 ,1,11790,221180 ,1,11791,65 ,1,11792,179325 ,1,11793,268815 ,1,11794,306665 ,1,11795,345985 ,1,11796,299350 ,1,11797,278220 ,1,11798,309980 ,1,11799,185065 ,1,11800,259515 ,1,11801,350605 ,1,11802,181850 ,1,11803,247895 ,1,11804,65 ,1,11805,310715 ,1,11806,309590 ,1,11807,350590 ,1,11808,65 ,1,11809,338810 ,1,11810,65 ,1,11811,65 ,1,11812,65 ,1,11813,65 ,1,11814,65 ,1,11815,198615 ,1,11816,65 ,1,11817,65 ,1,11818,226115 ,1,11819,65 ,1,11820,334505 ,1,11821,65 ,1,11822,65 ,1,11823,65 ,1,11824,250305 ,1,11825,167225 ,1,11826,65 ,1,11827,316130 ,1,11828,65 ,1,11829,65 ,1,11830,65 ,1,11831,65 ,1,11832,65 ,1,11833,65 ,1,11834,65 ,1,11835,237310 ,1,11836,331855 ,1,11837,215360 ,1,11838,344045 ,1,11839,230610 ,1,11840,190520 ,1,11841,65 ,1,11842,335950 ,1,11843,65 ,1,11844,218575 ,1,11845,65 ,1,11846,263230 ,1,11847,65 ,1,11848,178450 ,1,11849,65 ,1,11850,246165 ,1,11851,65 ,1,11852,65 ,1,11853,65 ,1,11854,316795 ,1,11855,65 ,1,11856,65 ,1,11857,65 ,1,11858,317115 ,1,11859,65 ,1,11860,65 ,1,11861,288165 ,1,11862,65 ,1,11863,65 ,1,11864,255720 ,1,11865,65 ,1,11866,314295 ,1,11867,196090 ,1,11868,65 ,1,11869,192340 ,1,11870,65 ,1,11871,65 ,1,11872,65 ,1,11873,65 ,1,11874,65 ,1,11875,65 ,1,11876,65 ,1,11877,65 ,1,11878,65 ,1,11879,65 ,1,11880,65 ,1,11881,65 ,1,11882,65 ,1,11883,346985 ,1,11884,280410 ,1,11885,200620 ,1,11886,65 ,1,11887,65 ,1,11888,65 ,1,11889,65 ,1,11890,217345 ,1,11891,329390 ,1,11892,65 ,1,11893,65 ,1,11894,65 ,1,11895,65 ,1,11896,65 ,1,11897,65 ,1,11898,65 ,1,11899,65 ,1,11900,65 ,1,11901,65 ,1,11902,257830 ,1,11903,65 ,1,11904,258785 ,1,11905,247585 ,1,11906,65 ,1,11907,249930 ,1,11908,65 ,1,11909,65 ,1,11910,215745 ,1,11911,285925 ,1,11912,65 ,1,11913,217060 ,1,11914,65 ,1,11915,65 ,1,11916,65 ,1,11917,65 ,1,11918,170185 ,1,11919,65 ,1,11920,65 ,1,11921,174280 ,1,11922,332790 ,1,11923,65 ,1,11924,65 ,1,11925,65 ,1,11926,312670 ,1,11927,65 ,1,11928,65 ,1,11929,65 ,1,11930,65 ,1,11931,326180 ,1,11932,65 ,1,11933,306790 ,1,11934,65 ,1,11935,65 ,1,11936,213335 ,1,11937,292955 ,1,11938,181185 ,1,11939,244205 ,1,11940,172525 ,1,11941,197960 ,1,11942,279205 ,1,11943,192095 ,1,11944,177890 ,1,11945,65 ,1,11946,188685 ,1,11947,186360 ,1,11948,177170 ,1,11949,231590 ,1,11950,65 ,1,11951,318875 ,1,11952,231635 ,1,11953,65 ,1,11954,65 ,1,11955,65 ,1,11956,65 ,1,11957,65 ,1,11958,65 ,1,11959,247040 ,1,11960,65 ,1,11961,65 ,1,11962,65 ,1,11963,65 ,1,11964,65 ,1,11965,231975 ,1,11966,65 ,1,11967,65 ,1,11968,65 ,1,11969,253665 ,1,11970,214925 ,1,11971,223795 ,1,11972,318575 ,1,11973,334225 ,1,11974,65 ,1,11975,65 ,1,11976,197560 ,1,11977,343600 ,1,11978,187945 ,1,11979,287210 ,1,11980,329430 ,1,11981,65 ,1,11982,65 ,1,11983,215795 ,1,11984,65 ,1,11985,65 ,1,11986,65 ,1,11987,65 ,1,11988,65 ,1,11989,334635 ,1,11990,65 ,1,11991,65 ,1,11992,231915 ,1,11993,65 ,1,11994,331345 ,1,11995,65 ,1,11996,196980 ,1,11997,65 ,1,11998,65 ,1,11999,65 ,1,12000,65 ,1,12001,65 ,1,12002,308825 ,1,12003,65 ,1,12004,65 ,1,12005,65 ,1,12006,335700 ,1,12007,65 ,1,12008,65 ,1,12009,65 ,1,12010,65 ,1,12011,65 ,1,12012,65 ,1,12013,339280 ,1,12014,268010 ,1,12015,65 ,1,12016,65 ,1,12017,195145 ,1,12018,65 ,1,12019,65 ,1,12020,346230 ,1,12021,298655 ,1,12022,206305 ,1,12023,65 ,1,12024,65 ,1,12025,65 ,1,12026,294055 ,1,12027,303180 ,1,12028,175540 ,1,12029,275820 ,1,12030,273160 ,1,12031,325930 ,1,12032,65 ,1,12033,65 ,1,12034,65 ,1,12035,307390 ,1,12036,231260 ,1,12037,65 ,1,12038,65 ,1,12039,222090 ,1,12040,258755 ,1,12041,65 ,1,12042,213825 ,1,12043,189645 ,1,12044,191540 ,1,12045,231775 ,1,12046,346515 ,1,12047,350580 ,1,12048,301320 ,1,12049,65 ,1,12050,65 ,1,12051,65 ,1,12052,65 ,1,12053,65 ,1,12054,341755 ,1,12055,307030 ,1,12056,65 ,1,12057,65 ,1,12058,65 ,1,12059,65 ,1,12060,65 ,1,12061,286965 ,1,12062,275555 ,1,12063,212605 ,1,12064,65 ,1,12065,333965 ,1,12066,65 ,1,12067,65 ,1,12068,65 ,1,12069,65 ,1,12070,65 ,1,12071,65 ,1,12072,65 ,1,12073,65 ,1,12074,65 ,1,12075,65 ,1,12076,214615 ,1,12077,181665 ,1,12078,218595 ,1,12079,65 ,1,12080,65 ,1,12081,303545 ,1,12082,341510 ,1,12083,65 ,1,12084,65 ,1,12085,325325 ,1,12086,200020 ,1,12087,65 ,1,12088,65 ,1,12089,239855 ,1,12090,65 ,1,12091,65 ,1,12092,65 ,1,12093,65 ,1,12094,65 ,1,12095,65 ,1,12096,65 ,1,12097,65 ,1,12098,65 ,1,12099,65 ,1,12100,65 ,1,12101,65 ,1,12102,65 ,1,12103,65 ,1,12104,65 ,1,12105,65 ,1,12106,65 ,1,12107,320470 ,1,12108,65 ,1,12109,213975 ,1,12110,179670 ,1,12111,65 ,1,12112,239645 ,1,12113,252100 ,1,12114,65 ,1,12115,65 ,1,12116,65 ,1,12117,65 ,1,12118,65 ,1,12119,65 ,1,12120,292290 ,1,12121,240725 ,1,12122,65 ,1,12123,280430 ,1,12124,177450 ,1,12125,65 ,1,12126,219840 ,1,12127,65 ,1,12128,65 ,1,12129,348060 ,1,12130,270950 ,1,12131,339985 ,1,12132,65 ,1,12133,180085 ,1,12134,217490 ,1,12135,65 ,1,12136,65 ,1,12137,65 ,1,12138,65 ,1,12139,65 ,1,12140,330660 ,1,12141,169765 ,1,12142,65 ,1,12143,337510 ,1,12144,206335 ,1,12145,65 ,1,12146,65 ,1,12147,65 ,1,12148,65 ,1,12149,65 ,1,12150,65 ,1,12151,215285 ,1,12152,65 ,1,12153,65 ,1,12154,324675 ,1,12155,331920 ,1,12156,176175 ,1,12157,65 ,1,12158,266520 ,1,12159,65 ,1,12160,65 ,1,12161,65 ,1,12162,65 ,1,12163,65 ,1,12164,294920 ,1,12165,65 ,1,12166,313515 ,1,12167,192240 ,1,12168,65 ,1,12169,65 ,1,12170,336920 ,1,12171,310350 ,1,12172,278590 ,1,12173,65 ,1,12174,65 ,1,12175,266880 ,1,12176,65 ,1,12177,65 ,1,12178,65 ,1,12179,260515 ,1,12180,65 ,1,12181,65 ,1,12182,65 ,1,12183,65 ,1,12184,65 ,1,12185,65 ,1,12186,268610 ,1,12187,294435 ,1,12188,289790 ,1,12189,220835 ,1,12190,294035 ,1,12191,350570 ,1,12192,193955 ,1,12193,65 ,1,12194,222330 ,1,12195,65 ,1,12196,65 ,1,12197,65 ,1,12198,65 ,1,12199,65 ,1,12200,65 ,1,12201,201465 ,1,12202,180595 ,1,12203,65 ,1,12204,65 ,1,12205,65 ,1,12206,65 ,1,12207,65 ,1,12208,320900 ,1,12209,273845 ,1,12210,237865 ,1,12211,65 ,1,12212,65 ,1,12213,65 ,1,12214,65 ,1,12215,65 ,1,12216,241750 ,1,12217,232690 ,1,12218,65 ,1,12219,65 ,1,12220,65 ,1,12221,65 ,1,12222,267185 ,1,12223,303400 ,1,12224,350560 ,1,12225,185515 ,1,12226,342075 ,1,12227,342490 ,1,12228,276810 ,1,12229,295215 ,1,12230,334780 ,1,12231,65 ,1,12232,337050 ,1,12233,317705 ,1,12234,239570 ,1,12235,188280 ,1,12236,65 ,1,12237,65 ,1,12238,339185 ,1,12239,206435 ,1,12240,65 ,1,12241,276500 ,1,12242,200925 ,1,12243,65 ,1,12244,322490 ,1,12245,265480 ,1,12246,243035 ,1,12247,173280 ,1,12248,65 ,1,12249,271775 ,1,12250,65 ,1,12251,65 ,1,12252,282445 ,1,12253,192230 ,1,12254,189370 ,1,12255,268735 ,1,12256,344685 ,1,12257,248540 ,1,12258,176110 ,1,12259,343025 ,1,12260,236245 ,1,12261,200380 ,1,12262,350525 ,1,12263,210675 ,1,12264,262965 ,1,12265,343810 ,1,12266,65 ,1,12267,192730 ,1,12268,65 ,1,12269,258345 ,1,12270,190575 ,1,12271,65 ,1,12272,234345 ,1,12273,65 ,1,12274,65 ,1,12275,65 ,1,12276,65 ,1,12277,336895 ,1,12278,65 ,1,12279,310655 ,1,12280,65 ,1,12281,65 ,1,12282,320075 ,1,12283,65 ,1,12284,65 ,1,12285,65 ,1,12286,65 ,1,12287,65 ,1,12288,65 ,1,12289,258270 ,1,12290,65 ,1,12291,65 ,1,12292,65 ,1,12293,268175 ,1,12294,65 ,1,12295,201345 ,1,12296,65 ,1,12297,65 ,1,12298,65 ,1,12299,65 ,1,12300,272325 ,1,12301,65 ,1,12302,65 ,1,12303,65 ,1,12304,65 ,1,12305,221355 ,1,12306,333660 ,1,12307,65 ,1,12308,65 ,1,12309,287945 ,1,12310,65 ,1,12311,207720 ,1,12312,65 ,1,12313,211395 ,1,12314,65 ,1,12315,198685 ,1,12316,65 ,1,12317,65 ,1,12318,259595 ,1,12319,192310 ,1,12320,196880 ,1,12321,65 ,1,12322,65 ,1,12323,65 ,1,12324,350515 ,1,12325,65 ,1,12326,65 ,1,12327,314910 ,1,12328,65 ,1,12329,65 ,1,12330,177560 ,1,12331,65 ,1,12332,288850 ,1,12333,65 ,1,12334,65 ,1,12335,65 ,1,12336,65 ,1,12337,229570 ,1,12338,265825 ,1,12339,65 ,1,12340,218260 ,1,12341,65 ,1,12342,65 ,1,12343,65 ,1,12344,65 ,1,12345,254765 ,1,12346,65 ,1,12347,193845 ,1,12348,65 ,1,12349,243250 ,1,12350,202790 ,1,12351,65 ,1,12352,65 ,1,12353,257015 ,1,12354,341240 ,1,12355,65 ,1,12356,65 ,1,12357,65 ,1,12358,65 ,1,12359,65 ,1,12360,65 ,1,12361,65 ,1,12362,307235 ,1,12363,65 ,1,12364,65 ,1,12365,191085 ,1,12366,65 ,1,12367,65 ,1,12368,65 ,1,12369,65 ,1,12370,65 ,1,12371,65 ,1,12372,65 ,1,12373,65 ,1,12374,195705 ,1,12375,246650 ,1,12376,265710 ,1,12377,167070 ,1,12378,239590 ,1,12379,264030 ,1,12380,225190 ,1,12381,65 ,1,12382,344780 ,1,12383,195325 ,1,12384,65 ,1,12385,65 ,1,12386,65 ,1,12387,65 ,1,12388,65 ,1,12389,65 ,1,12390,200840 ,1,12391,65 ,1,12392,65 ,1,12393,65 ,1,12394,217600 ,1,12395,262570 ,1,12396,65 ,1,12397,65 ,1,12398,255570 ,1,12399,65 ,1,12400,65 ,1,12401,65 ,1,12402,65 ,1,12403,65 ,1,12404,65 ,1,12405,65 ,1,12406,65 ,1,12407,65 ,1,12408,65 ,1,12409,278715 ,1,12410,319825 ,1,12411,309080 ,1,12412,65 ,1,12413,65 ,1,12414,65 ,1,12415,203655 ,1,12416,351890 ,1,12417,191695 ,1,12418,65 ,1,12419,202625 ,1,12420,224770 ,1,12421,65 ,1,12422,65 ,1,12423,65 ,1,12424,65 ,1,12425,285005 ,1,12426,65 ,1,12427,65 ,1,12428,65 ,1,12429,65 ,1,12430,65 ,1,12431,174250 ,1,12432,246840 ,1,12433,241605 ,1,12434,213425 ,1,12435,275345 ,1,12436,301655 ,1,12437,306835 ,1,12438,214530 ,1,12439,332475 ,1,12440,65 ,1,12441,290995 ,1,12442,65 ,1,12443,228810 ,1,12444,65 ,1,12445,253195 ,1,12446,291565 ,1,12447,182010 ,1,12448,188040 ,1,12449,315300 ,1,12450,178275 ,1,12451,323265 ,1,12452,249125 ,1,12453,65 ,1,12454,65 ,1,12455,260470 ,1,12456,65 ,1,12457,65 ,1,12458,65 ,1,12459,295850 ,1,12460,65 ,1,12461,65 ,1,12462,65 ,1,12463,65 ,1,12464,321250 ,1,12465,225340 ,1,12466,329440 ,1,12467,65 ,1,12468,65 ,1,12469,65 ,1,12470,65 ,1,12471,65 ,1,12472,335595 ,1,12473,65 ,1,12474,207150 ,1,12475,65 ,1,12476,325790 ,1,12477,65 ,1,12478,65 ,1,12479,348450 ,1,12480,311045 ,1,12481,65 ,1,12482,65 ,1,12483,65 ,1,12484,65 ,1,12485,65 ,1,12486,340035 ,1,12487,65 ,1,12488,184535 ,1,12489,65 ,1,12490,65 ,1,12491,65 ,1,12492,65 ,1,12493,65 ,1,12494,65 ,1,12495,65 ,1,12496,297095 ,1,12497,212755 ,1,12498,219000 ,1,12499,209305 ,1,12500,193995 ,1,12501,345010 ,1,12502,173350 ,1,12503,65 ,1,12504,65 ,1,12505,199905 ,1,12506,65 ,1,12507,65 ,1,12508,65 ,1,12509,65 ,1,12510,267935 ,1,12511,65 ,1,12512,296025 ,1,12513,65 ,1,12514,196860 ,1,12515,65 ,1,12516,65 ,1,12517,65 ,1,12518,65 ,1,12519,65 ,1,12520,231150 ,1,12521,65 ,1,12522,65 ,1,12523,65 ,1,12524,311240 ,1,12525,65 ,1,12526,65 ,1,12527,65 ,1,12528,65 ,1,12529,65 ,1,12530,65 ,1,12531,65 ,1,12532,65 ,1,12533,65 ,1,12534,277290 ,1,12535,347585 ,1,12536,208225 ,1,12537,65 ,1,12538,65 ,1,12539,65 ,1,12540,65 ,1,12541,65 ,1,12542,65 ,1,12543,252495 ,1,12544,239245 ,1,12545,292690 ,1,12546,340640 ,1,12547,242450 ,1,12548,65 ,1,12549,65 ,1,12550,65 ,1,12551,65 ,1,12552,65 ,1,12553,261655 ,1,12554,65 ,1,12555,65 ,1,12556,65 ,1,12557,65 ,1,12558,65 ,1,12559,192075 ,1,12560,318595 ,1,12561,65 ,1,12562,344055 ,1,12563,264735 ,1,12564,340560 ,1,12565,278100 ,1,12566,65 ,1,12567,65 ,1,12568,256770 ,1,12569,327725 ,1,12570,65 ,1,12571,296770 ,1,12572,187065 ,1,12573,65 ,1,12574,65 ,1,12575,65 ,1,12576,211535 ,1,12577,296430 ,1,12578,65 ,1,12579,256100 ,1,12580,65 ,1,12581,236655 ,1,12582,311940 ,1,12583,185895 ,1,12584,65 ,1,12585,65 ,1,12586,215575 ,1,12587,246435 ,1,12588,339975 ,1,12589,346770 ,1,12590,217285 ,1,12591,65 ,1,12592,65 ,1,12593,65 ,1,12594,65 ,1,12595,65 ,1,12596,185840 ,1,12597,65 ,1,12598,168180 ,1,12599,65 ,1,12600,205415 ,1,12601,244705 ,1,12602,65 ,1,12603,345330 ,1,12604,215880 ,1,12605,65 ,1,12606,65 ,1,12607,322035 ,1,12608,199435 ,1,12609,339880 ,1,12610,287785 ,1,12611,65 ,1,12612,65 ,1,12613,65 ,1,12614,65 ,1,12615,167780 ,1,12616,65 ,1,12617,65 ,1,12618,65 ,1,12619,65 ,1,12620,65 ,1,12621,65 ,1,12622,65 ,1,12623,65 ,1,12624,193135 ,1,12625,278860 ,1,12626,184560 ,1,12627,320525 ,1,12628,323530 ,1,12629,317375 ,1,12630,65 ,1,12631,229810 ,1,12632,310175 ,1,12633,65 ,1,12634,65 ,1,12635,65 ,1,12636,65 ,1,12637,65 ,1,12638,325520 ,1,12639,215620 ,1,12640,196020 ,1,12641,271735 ,1,12642,273250 ,1,12643,318110 ,1,12644,65 ,1,12645,235495 ,1,12646,65 ,1,12647,297740 ,1,12648,211745 ,1,12649,65 ,1,12650,65 ,1,12651,177900 ,1,12652,172295 ,1,12653,232430 ,1,12654,65 ,1,12655,65 ,1,12656,65 ,1,12657,180305 ,1,12658,65 ,1,12659,236155 ,1,12660,206060 ,1,12661,65 ,1,12662,65 ,1,12663,65 ,1,12664,65 ,1,12665,65 ,1,12666,188415 ,1,12667,276345 ,1,12668,252625 ,1,12669,260710 ,1,12670,217760 ,1,12671,262395 ,1,12672,176690 ,1,12673,174590 ,1,12674,65 ,1,12675,234135 ,1,12676,65 ,1,12677,198215 ,1,12678,251090 ,1,12679,319620 ,1,12680,275880 ,1,12681,65 ,1,12682,270105 ,1,12683,65 ,1,12684,213485 ,1,12685,323880 ,1,12686,248020 ,1,12687,65 ,1,12688,338930 ,1,12689,290195 ,1,12690,189325 ,1,12691,65 ,1,12692,65 ,1,12693,65 ,1,12694,166935 ,1,12695,65 ,1,12696,65 ,1,12697,65 ,1,12698,199045 ,1,12699,65 ,1,12700,65 ,1,12701,65 ,1,12702,65 ,1,12703,65 ,1,12704,65 ,1,12705,189400 ,1,12706,65 ,1,12707,204035 ,1,12708,65 ,1,12709,258135 ,1,12710,65 ,1,12711,238800 ,1,12712,288815 ,1,12713,65 ,1,12714,65 ,1,12715,65 ,1,12716,65 ,1,12717,65 ,1,12718,276315 ,1,12719,65 ,1,12720,65 ,1,12721,65 ,1,12722,65 ,1,12723,65 ,1,12724,65 ,1,12725,240440 ,1,12726,189005 ,1,12727,197085 ,1,12728,65 ,1,12729,65 ,1,12730,65 ,1,12731,65 ,1,12732,217640 ,1,12733,65 ,1,12734,65 ,1,12735,65 ,1,12736,65 ,1,12737,275655 ,1,12738,65 ,1,12739,65 ,1,12740,210540 ,1,12741,293245 ,1,12742,65 ,1,12743,65 ,1,12744,271805 ,1,12745,179140 ,1,12746,65 ,1,12747,65 ,1,12748,294910 ,1,12749,337390 ,1,12750,65 ,1,12751,65 ,1,12752,320780 ,1,12753,202670 ,1,12754,276830 ,1,12755,65 ,1,12756,65 ,1,12757,65 ,1,12758,65 ,1,12759,65 ,1,12760,332915 ,1,12761,278320 ,1,12762,273785 ,1,12763,65 ,1,12764,65 ,1,12765,65 ,1,12766,333445 ,1,12767,65 ,1,12768,183630 ,1,12769,65 ,1,12770,65 ,1,12771,65 ,1,12772,65 ,1,12773,65 ,1,12774,65 ,1,12775,65 ,1,12776,65 ,1,12777,351820 ,1,12778,327645 ,1,12779,221630 ,1,12780,65 ,1,12781,65 ,1,12782,65 ,1,12783,314135 ,1,12784,65 ,1,12785,65 ,1,12786,65 ,1,12787,65 ,1,12788,65 ,1,12789,177665 ,1,12790,65 ,1,12791,65 ,1,12792,298665 ,1,12793,65 ,1,12794,65 ,1,12795,65 ,1,12796,293305 ,1,12797,65 ,1,12798,190320 ,1,12799,241760 ,1,12800,65 ,1,12801,65 ,1,12802,65 ,1,12803,232410 ,1,12804,205435 ,1,12805,299895 ,1,12806,256560 ,1,12807,340915 ,1,12808,65 ,1,12809,65 ,1,12810,65 ,1,12811,65 ,1,12812,65 ,1,12813,65 ,1,12814,65 ,1,12815,209275 ,1,12816,226925 ,1,12817,65 ,1,12818,231795 ,1,12819,170525 ,1,12820,65 ,1,12821,334955 ,1,12822,65 ,1,12823,65 ,1,12824,65 ,1,12825,221400 ,1,12826,65 ,1,12827,272275 ,1,12828,65 ,1,12829,65 ,1,12830,65 ,1,12831,65 ,1,12832,65 ,1,12833,65 ,1,12834,335275 ,1,12835,65 ,1,12836,65 ,1,12837,65 ,1,12838,65 ,1,12839,65 ,1,12840,65 ,1,12841,65 ,1,12842,323500 ,1,12843,65 ,1,12844,65 ,1,12845,345500 ,1,12846,65 ,1,12847,65 ,1,12848,65 ,1,12849,193050 ,1,12850,65 ,1,12851,65 ,1,12852,65 ,1,12853,65 ,1,12854,65 ,1,12855,65 ,1,12856,65 ,1,12857,65 ,1,12858,65 ,1,12859,169090 ,1,12860,209475 ,1,12861,180705 ,1,12862,65 ,1,12863,206825 ,1,12864,294470 ,1,12865,332485 ,1,12866,65 ,1,12867,65 ,1,12868,65 ,1,12869,340435 ,1,12870,65 ,1,12871,255785 ,1,12872,300915 ,1,12873,325345 ,1,12874,65 ,1,12875,65 ,1,12876,65 ,1,12877,65 ,1,12878,65 ,1,12879,65 ,1,12880,325215 ,1,12881,274360 ,1,12882,65 ,1,12883,65 ,1,12884,295470 ,1,12885,65 ,1,12886,257600 ,1,12887,65 ,1,12888,65 ,1,12889,259095 ,1,12890,65 ,1,12891,252645 ,1,12892,342995 ,1,12893,65 ,1,12894,166750 ,1,12895,65 ,1,12896,65 ,1,12897,328715 ,1,12898,323570 ,1,12899,65 ,1,12900,65 ,1,12901,224930 ,1,12902,344450 ,1,12903,257510 ,1,12904,239530 ,1,12905,297960 ,1,12906,65 ,1,12907,65 ,1,12908,323045 ,1,12909,65 ,1,12910,65 ,1,12911,65 ,1,12912,346325 ,1,12913,65 ,1,12914,65 ,1,12915,65 ,1,12916,65 ,1,12917,326930 ,1,12918,65 ,1,12919,65 ,1,12920,65 ,1,12921,65 ,1,12922,65 ,1,12923,65 ,1,12924,65 ,1,12925,65 ,1,12926,65 ,1,12927,65 ,1,12928,65 ,1,12929,183795 ,1,12930,174600 ,1,12931,65 ,1,12932,300785 ,1,12933,316535 ,1,12934,192320 ,1,12935,65 ,1,12936,279415 ,1,12937,341840 ,1,12938,65 ,1,12939,65 ,1,12940,249545 ,1,12941,65 ,1,12942,65 ,1,12943,218825 ,1,12944,336255 ,1,12945,65 ,1,12946,334005 ,1,12947,176945 ,1,12948,65 ,1,12949,206835 ,1,12950,197505 ,1,12951,65 ,1,12952,65 ,1,12953,188810 ,1,12954,350505 ,1,12955,65 ,1,12956,65 ,1,12957,65 ,1,12958,233620 ,1,12959,65 ,1,12960,65 ,1,12961,65 ,1,12962,195165 ,1,12963,65 ,1,12964,65 ,1,12965,65 ,1,12966,65 ,1,12967,65 ,1,12968,65 ,1,12969,180605 ,1,12970,65 ,1,12971,264590 ,1,12972,65 ,1,12973,65 ,1,12974,251545 ,1,12975,65 ,1,12976,65 ,1,12977,311520 ,1,12978,65 ,1,12979,228095 ,1,12980,65 ,1,12981,65 ,1,12982,283175 ,1,12983,65 ,1,12984,65 ,1,12985,65 ,1,12986,347520 ,1,12987,180205 ,1,12988,65 ,1,12989,202760 ,1,12990,175085 ,1,12991,65 ,1,12992,189270 ,1,12993,224655 ,1,12994,329480 ,1,12995,234645 ,1,12996,332440 ,1,12997,214655 ,1,12998,65 ,1,12999,310830 ,1,13000,65 ,1,13001,65 ,1,13002,65 ,1,13003,223320 ,1,13004,259575 ,1,13005,65 ,1,13006,236880 ,1,13007,248055 ,1,13008,65 ,1,13009,65 ,1,13010,65 ,1,13011,65 ,1,13012,65 ,1,13013,65 ,1,13014,65 ,1,13015,343460 ,1,13016,65 ,1,13017,65 ,1,13018,65 ,1,13019,65 ,1,13020,65 ,1,13021,65 ,1,13022,301715 ,1,13023,203550 ,1,13024,65 ,1,13025,65 ,1,13026,65 ,1,13027,65 ,1,13028,65 ,1,13029,65 ,1,13030,65 ,1,13031,65 ,1,13032,65 ,1,13033,65 ,1,13034,348410 ,1,13035,281205 ,1,13036,304990 ,1,13037,65 ,1,13038,198815 ,1,13039,241410 ,1,13040,65 ,1,13041,212965 ,1,13042,250130 ,1,13043,65 ,1,13044,65 ,1,13045,295860 ,1,13046,65 ,1,13047,65 ,1,13048,65 ,1,13049,65 ,1,13050,189435 ,1,13051,317865 ,1,13052,65 ,1,13053,65 ,1,13054,65 ,1,13055,319670 ,1,13056,65 ,1,13057,270905 ,1,13058,65 ,1,13059,251515 ,1,13060,188145 ,1,13061,332730 ,1,13062,261685 ,1,13063,65 ,1,13064,65 ,1,13065,65 ,1,13066,65 ,1,13067,65 ,1,13068,65 ,1,13069,65 ,1,13070,266135 ,1,13071,332800 ,1,13072,205100 ,1,13073,65 ,1,13074,216740 ,1,13075,253520 ,1,13076,65 ,1,13077,210340 ,1,13078,65 ,1,13079,65 ,1,13080,65 ,1,13081,65 ,1,13082,222700 ,1,13083,170010 ,1,13084,65 ,1,13085,65 ,1,13086,65 ,1,13087,169575 ,1,13088,167545 ,1,13089,65 ,1,13090,65 ,1,13091,65 ,1,13092,65 ,1,13093,65 ,1,13094,65 ,1,13095,65 ,1,13096,260755 ,1,13097,285025 ,1,13098,350495 ,1,13099,167590 ,1,13100,256410 ,1,13101,65 ,1,13102,65 ,1,13103,328815 ,1,13104,344885 ,1,13105,298030 ,1,13106,65 ,1,13107,65 ,1,13108,65 ,1,13109,65 ,1,13110,231560 ,1,13111,250465 ,1,13112,329635 ,1,13113,65 ,1,13114,65 ,1,13115,65 ,1,13116,65 ,1,13117,65 ,1,13118,350480 ,1,13119,215855 ,1,13120,65 ,1,13121,65 ,1,13122,297030 ,1,13123,65 ,1,13124,270175 ,1,13125,65 ,1,13126,335820 ,1,13127,341095 ,1,13128,65 ,1,13129,296275 ,1,13130,309770 ,1,13131,246365 ,1,13132,65 ,1,13133,204365 ,1,13134,65 ,1,13135,65 ,1,13136,65 ,1,13137,207420 ,1,13138,236050 ,1,13139,220020 ,1,13140,232185 ,1,13141,65 ,1,13142,65 ,1,13143,259640 ,1,13144,341555 ,1,13145,65 ,1,13146,65 ,1,13147,193985 ,1,13148,278250 ,1,13149,65 ,1,13150,65 ,1,13151,350470 ,1,13152,332465 ,1,13153,65 ,1,13154,342710 ,1,13155,65 ,1,13156,208435 ,1,13157,65 ,1,13158,65 ,1,13159,65 ,1,13160,270550 ,1,13161,65 ,1,13162,65 ,1,13163,65 ,1,13164,65 ,1,13165,254435 ,1,13166,350460 ,1,13167,168115 ,1,13168,336160 ,1,13169,313910 ,1,13170,265060 ,1,13171,65 ,1,13172,203305 ,1,13173,268825 ,1,13174,315445 ,1,13175,65 ,1,13176,65 ,1,13177,65 ,1,13178,65 ,1,13179,300675 ,1,13180,65 ,1,13181,65 ,1,13182,225180 ,1,13183,65 ,1,13184,65 ,1,13185,65 ,1,13186,222100 ,1,13187,295320 ,1,13188,65 ,1,13189,65 ,1,13190,65 ,1,13191,169195 ,1,13192,65 ,1,13193,207790 ,1,13194,263950 ,1,13195,65 ,1,13196,317625 ,1,13197,65 ,1,13198,65 ,1,13199,65 ,1,13200,65 ,1,13201,65 ,1,13202,200830 ,1,13203,65 ,1,13204,65 ,1,13205,65 ,1,13206,209450 ,1,13207,65 ,1,13208,65 ,1,13209,65 ,1,13210,333160 ,1,13211,65 ,1,13212,65 ,1,13213,65 ,1,13214,246320 ,1,13215,65 ,1,13216,284200 ,1,13217,65 ,1,13218,65 ,1,13219,65 ,1,13220,65 ,1,13221,65 ,1,13222,65 ,1,13223,65 ,1,13224,65 ,1,13225,219260 ,1,13226,65 ,1,13227,65 ,1,13228,65 ,1,13229,65 ,1,13230,65 ,1,13231,65 ,1,13232,65 ,1,13233,236185 ,1,13234,65 ,1,13235,347485 ,1,13236,65 ,1,13237,65 ,1,13238,285250 ,1,13239,65 ,1,13240,199935 ,1,13241,65 ,1,13242,65 ,1,13243,178595 ,1,13244,314625 ,1,13245,65 ,1,13246,65 ,1,13247,65 ,1,13248,221200 ,1,13249,65 ,1,13250,65 ,1,13251,65 ,1,13252,65 ,1,13253,213855 ,1,13254,65 ,1,13255,65 ,1,13256,259275 ,1,13257,256740 ,1,13258,65 ,1,13259,65 ,1,13260,310110 ,1,13261,292590 ,1,13262,344830 ,1,13263,65 ,1,13264,65 ,1,13265,65 ,1,13266,65 ,1,13267,65 ,1,13268,65 ,1,13269,65 ,1,13270,65 ,1,13271,65 ,1,13272,334405 ,1,13273,344110 ,1,13274,65 ,1,13275,65 ,1,13276,65 ,1,13277,193340 ,1,13278,256750 ,1,13279,232900 ,1,13280,301245 ,1,13281,224940 ,1,13282,271285 ,1,13283,187530 ,1,13284,65 ,1,13285,65 ,1,13286,265100 ,1,13287,65 ,1,13288,65 ,1,13289,65 ,1,13290,65 ,1,13291,294570 ,1,13292,65 ,1,13293,65 ,1,13294,65 ,1,13295,65 ,1,13296,65 ,1,13297,65 ,1,13298,65 ,1,13299,225025 ,1,13300,221580 ,1,13301,179360 ,1,13302,174620 ,1,13303,236175 ,1,13304,275080 ,1,13305,296605 ,1,13306,65 ,1,13307,230665 ,1,13308,173205 ,1,13309,65 ,1,13310,65 ,1,13311,65 ,1,13312,283065 ,1,13313,65 ,1,13314,311585 ,1,13315,65 ,1,13316,252275 ,1,13317,65 ,1,13318,65 ,1,13319,286605 ,1,13320,65 ,1,13321,300480 ,1,13322,242360 ,1,13323,65 ,1,13324,65 ,1,13325,204010 ,1,13326,238810 ,1,13327,294275 ,1,13328,203500 ,1,13329,65 ,1,13330,65 ,1,13331,223020 ,1,13332,177325 ,1,13333,269485 ,1,13334,194430 ,1,13335,268195 ,1,13336,210010 ,1,13337,171765 ,1,13338,294425 ,1,13339,318765 ,1,13340,65 ,1,13341,313030 ,1,13342,265755 ,1,13343,65 ,1,13344,197570 ,1,13345,65 ,1,13346,301565 ,1,13347,65 ,1,13348,65 ,1,13349,318275 ,1,13350,299205 ,1,13351,210350 ,1,13352,202455 ,1,13353,274035 ,1,13354,216315 ,1,13355,65 ,1,13356,65 ,1,13357,65 ,1,13358,65 ,1,13359,65 ,1,13360,65 ,1,13361,65 ,1,13362,168270 ,1,13363,65 ,1,13364,65 ,1,13365,65 ,1,13366,65 ,1,13367,65 ,1,13368,65 ,1,13369,65 ,1,13370,65 ,1,13371,65 ,1,13372,65 ,1,13373,65 ,1,13374,65 ,1,13375,65 ,1,13376,232590 ,1,13377,209295 ,1,13378,318025 ,1,13379,65 ,1,13380,65 ,1,13381,65 ,1,13382,65 ,1,13383,65 ,1,13384,176855 ,1,13385,172055 ,1,13386,348460 ,1,13387,65 ,1,13388,240700 ,1,13389,215245 ,1,13390,65 ,1,13391,65 ,1,13392,65 ,1,13393,65 ,1,13394,200715 ,1,13395,180370 ,1,13396,65 ,1,13397,65 ,1,13398,65 ,1,13399,65 ,1,13400,248715 ,1,13401,223755 ,1,13402,65 ,1,13403,65 ,1,13404,65 ,1,13405,65 ,1,13406,65 ,1,13407,65 ,1,13408,65 ,1,13409,65 ,1,13410,208360 ,1,13411,65 ,1,13412,182675 ,1,13413,208895 ,1,13414,65 ,1,13415,65 ,1,13416,65 ,1,13417,65 ,1,13418,218110 ,1,13419,284415 ,1,13420,293645 ,1,13421,350450 ,1,13422,65 ,1,13423,65 ,1,13424,185505 ,1,13425,65 ,1,13426,65 ,1,13427,251180 ,1,13428,65 ,1,13429,65 ,1,13430,293195 ,1,13431,65 ,1,13432,65 ,1,13433,232195 ,1,13434,65 ,1,13435,206770 ,1,13436,323485 ,1,13437,236550 ,1,13438,65 ,1,13439,65 ,1,13440,65 ,1,13441,325335 ,1,13442,65 ,1,13443,186675 ,1,13444,65 ,1,13445,65 ,1,13446,327145 ,1,13447,65 ,1,13448,194935 ,1,13449,65 ,1,13450,306105 ,1,13451,187820 ,1,13452,335965 ,1,13453,254215 ,1,13454,65 ,1,13455,341190 ,1,13456,171195 ,1,13457,65 ,1,13458,65 ,1,13459,65 ,1,13460,278635 ,1,13461,248745 ,1,13462,265845 ,1,13463,65 ,1,13464,65 ,1,13465,65 ,1,13466,65 ,1,13467,65 ,1,13468,305725 ,1,13469,298250 ,1,13470,65 ,1,13471,214260 ,1,13472,65 ,1,13473,168390 ,1,13474,65 ,1,13475,65 ,1,13476,328930 ,1,13477,65 ,1,13478,65 ,1,13479,65 ,1,13480,235270 ,1,13481,65 ,1,13482,292195 ,1,13483,183440 ,1,13484,65 ,1,13485,331100 ,1,13486,65 ,1,13487,65 ,1,13488,65 ,1,13489,338085 ,1,13490,65 ,1,13491,323890 ,1,13492,65 ,1,13493,65 ,1,13494,65 ,1,13495,319055 ,1,13496,65 ,1,13497,301645 ,1,13498,334100 ,1,13499,259725 ,1,13500,350400 ,1,13501,270775 ,1,13502,335125 ,1,13503,65 ,1,13504,229475 ,1,13505,65 ,1,13506,65 ,1,13507,65 ,1,13508,65 ,1,13509,65 ,1,13510,65 ,1,13511,225715 ,1,13512,299775 ,1,13513,65 ,1,13514,273230 ,1,13515,236560 ,1,13516,65 ,1,13517,65 ,1,13518,65 ,1,13519,65 ,1,13520,65 ,1,13521,65 ,1,13522,65 ,1,13523,65 ,1,13524,65 ,1,13525,167875 ,1,13526,65 ,1,13527,65 ,1,13528,65 ,1,13529,65 ,1,13530,65 ,1,13531,343710 ,1,13532,65 ,1,13533,65 ,1,13534,65 ,1,13535,65 ,1,13536,184240 ,1,13537,65 ,1,13538,261175 ,1,13539,311865 ,1,13540,284960 ,1,13541,65 ,1,13542,65 ,1,13543,65 ,1,13544,65 ,1,13545,65 ,1,13546,65 ,1,13547,65 ,1,13548,65 ,1,13549,65 ,1,13550,168170 ,1,13551,344360 ,1,13552,239800 ,1,13553,286680 ,1,13554,306980 ,1,13555,300695 ,1,13556,65 ,1,13557,317855 ,1,13558,190865 ,1,13559,65 ,1,13560,65 ,1,13561,212085 ,1,13562,180420 ,1,13563,65 ,1,13564,328505 ,1,13565,65 ,1,13566,65 ,1,13567,330475 ,1,13568,264615 ,1,13569,308880 ,1,13570,65 ,1,13571,65 ,1,13572,203810 ,1,13573,305910 ,1,13574,252685 ,1,13575,65 ,1,13576,65 ,1,13577,65 ,1,13578,65 ,1,13579,65 ,1,13580,241565 ,1,13581,65 ,1,13582,316110 ,1,13583,65 ,1,13584,65 ,1,13585,65 ,1,13586,65 ,1,13587,65 ,1,13588,65 ,1,13589,211265 ,1,13590,287365 ,1,13591,335660 ,1,13592,316400 ,1,13593,271595 ,1,13594,65 ,1,13595,65 ,1,13596,65 ,1,13597,191415 ,1,13598,291765 ,1,13599,65 ,1,13600,65 ,1,13601,65 ,1,13602,65 ,1,13603,234735 ,1,13604,304890 ,1,13605,194745 ,1,13606,333670 ,1,13607,171400 ,1,13608,65 ,1,13609,186170 ,1,13610,226740 ,1,13611,253470 ,1,13612,65 ,1,13613,65 ,1,13614,65 ,1,13615,65 ,1,13616,177000 ,1,13617,65 ,1,13618,65 ,1,13619,65 ,1,13620,65 ,1,13621,252295 ,1,13622,269115 ,1,13623,65 ,1,13624,319640 ,1,13625,201255 ,1,13626,177105 ,1,13627,65 ,1,13628,198095 ,1,13629,65 ,1,13630,65 ,1,13631,315260 ,1,13632,317275 ,1,13633,283135 ,1,13634,65 ,1,13635,345245 ,1,13636,255210 ,1,13637,184460 ,1,13638,191125 ,1,13639,314665 ,1,13640,350390 ,1,13641,65 ,1,13642,65 ,1,13643,280755 ,1,13644,309035 ,1,13645,65 ,1,13646,65 ,1,13647,65 ,1,13648,65 ,1,13649,65 ,1,13650,340295 ,1,13651,65 ,1,13652,65 ,1,13653,65 ,1,13654,65 ,1,13655,65 ,1,13656,65 ,1,13657,65 ,1,13658,65 ,1,13659,282015 ,1,13660,65 ,1,13661,65 ,1,13662,262445 ,1,13663,65 ,1,13664,175180 ,1,13665,65 ,1,13666,286515 ,1,13667,222745 ,1,13668,274990 ,1,13669,65 ,1,13670,65 ,1,13671,183480 ,1,13672,65 ,1,13673,65 ,1,13674,65 ,1,13675,177055 ,1,13676,65 ,1,13677,65 ,1,13678,65 ,1,13679,260810 ,1,13680,342610 ,1,13681,65 ,1,13682,227330 ,1,13683,289160 ,1,13684,65 ,1,13685,216645 ,1,13686,65 ,1,13687,249165 ,1,13688,247235 ,1,13689,65 ,1,13690,65 ,1,13691,65 ,1,13692,65 ,1,13693,65 ,1,13694,65 ,1,13695,196680 ,1,13696,65 ,1,13697,271850 ,1,13698,65 ,1,13699,215815 ,1,13700,65 ,1,13701,211360 ,1,13702,190400 ,1,13703,65 ,1,13704,65 ,1,13705,245045 ,1,13706,173745 ,1,13707,320670 ,1,13708,65 ,1,13709,65 ,1,13710,65 ,1,13711,65 ,1,13712,65 ,1,13713,286555 ,1,13714,65 ,1,13715,65 ,1,13716,65 ,1,13717,65 ,1,13718,65 ,1,13719,65 ,1,13720,65 ,1,13721,65 ,1,13722,301695 ,1,13723,65 ,1,13724,65 ,1,13725,340845 ,1,13726,65 ,1,13727,177095 ,1,13728,65 ,1,13729,65 ,1,13730,65 ,1,13731,65 ,1,13732,65 ,1,13733,289695 ,1,13734,65 ,1,13735,65 ,1,13736,65 ,1,13737,65 ,1,13738,65 ,1,13739,65 ,1,13740,65 ,1,13741,65 ,1,13742,65 ,1,13743,321105 ,1,13744,298260 ,1,13745,65 ,1,13746,65 ,1,13747,65 ,1,13748,65 ,1,13749,65 ,1,13750,65 ,1,13751,206945 ,1,13752,65 ,1,13753,296680 ,1,13754,245980 ,1,13755,65 ,1,13756,65 ,1,13757,65 ,1,13758,257820 ,1,13759,322770 ,1,13760,65 ,1,13761,65 ,1,13762,242035 ,1,13763,65 ,1,13764,65 ,1,13765,65 ,1,13766,65 ,1,13767,65 ,1,13768,65 ,1,13769,65 ,1,13770,65 ,1,13771,65 ,1,13772,65 ,1,13773,65 ,1,13774,256700 ,1,13775,194555 ,1,13776,194825 ,1,13777,346525 ,1,13778,65 ,1,13779,65 ,1,13780,65 ,1,13781,65 ,1,13782,305265 ,1,13783,328435 ,1,13784,65 ,1,13785,65 ,1,13786,188635 ,1,13787,65 ,1,13788,325550 ,1,13789,316620 ,1,13790,65 ,1,13791,65 ,1,13792,65 ,1,13793,65 ,1,13794,253805 ,1,13795,185625 ,1,13796,65 ,1,13797,65 ,1,13798,65 ,1,13799,65 ,1,13800,65 ,1,13801,65 ,1,13802,65 ,1,13803,350380 ,1,13804,65 ,1,13805,208645 ,1,13806,313050 ,1,13807,65 ,1,13808,186565 ,1,13809,65 ,1,13810,65 ,1,13811,65 ,1,13812,65 ,1,13813,65 ,1,13814,65 ,1,13815,65 ,1,13816,65 ,1,13817,259810 ,1,13818,65 ,1,13819,324055 ,1,13820,207175 ,1,13821,192600 ,1,13822,221050 ,1,13823,65 ,1,13824,65 ,1,13825,308385 ,1,13826,200185 ,1,13827,65 ,1,13828,65 ,1,13829,248935 ,1,13830,65 ,1,13831,329360 ,1,13832,317085 ,1,13833,234085 ,1,13834,236570 ,1,13835,326910 ,1,13836,286075 ,1,13837,237645 ,1,13838,65 ,1,13839,65 ,1,13840,65 ,1,13841,65 ,1,13842,65 ,1,13843,290585 ,1,13844,65 ,1,13845,316480 ,1,13846,174820 ,1,13847,65 ,1,13848,65 ,1,13849,65 ,1,13850,65 ,1,13851,65 ,1,13852,241860 ,1,13853,65 ,1,13854,65 ,1,13855,224235 ,1,13856,65 ,1,13857,303305 ,1,13858,317190 ,1,13859,203385 ,1,13860,65 ,1,13861,213315 ,1,13862,65 ,1,13863,65 ,1,13864,65 ,1,13865,65 ,1,13866,310285 ,1,13867,287115 ,1,13868,249145 ,1,13869,65 ,1,13870,65 ,1,13871,65 ,1,13872,347760 ,1,13873,281430 ,1,13874,170990 ,1,13875,65 ,1,13876,190510 ,1,13877,65 ,1,13878,65 ,1,13879,65 ,1,13880,65 ,1,13881,65 ,1,13882,65 ,1,13883,65 ,1,13884,65 ,1,13885,325940 ,1,13886,65 ,1,13887,65 ,1,13888,65 ,1,13889,65 ,1,13890,65 ,1,13891,65 ,1,13892,197185 ,1,13893,65 ,1,13894,65 ,1,13895,65 ,1,13896,65 ,1,13897,292165 ,1,13898,190730 ,1,13899,299480 ,1,13900,221285 ,1,13901,315020 ,1,13902,316045 ,1,13903,65 ,1,13904,291775 ,1,13905,65 ,1,13906,65 ,1,13907,65 ,1,13908,204045 ,1,13909,65 ,1,13910,65 ,1,13911,65 ,1,13912,65 ,1,13913,65 ,1,13914,65 ,1,13915,198595 ,1,13916,277320 ,1,13917,268270 ,1,13918,190985 ,1,13919,259685 ,1,13920,263315 ,1,13921,235990 ,1,13922,350370 ,1,13923,65 ,1,13924,65 ,1,13925,65 ,1,13926,350355 ,1,13927,65 ,1,13928,65 ,1,13929,65 ,1,13930,65 ,1,13931,65 ,1,13932,65 ,1,13933,331975 ,1,13934,247130 ,1,13935,180970 ,1,13936,65 ,1,13937,65 ,1,13938,65 ,1,13939,65 ,1,13940,284330 ,1,13941,185205 ,1,13942,197600 ,1,13943,65 ,1,13944,65 ,1,13945,65 ,1,13946,65 ,1,13947,65 ,1,13948,65 ,1,13949,65 ,1,13950,65 ,1,13951,65 ,1,13952,65 ,1,13953,65 ,1,13954,65 ,1,13955,65 ,1,13956,65 ,1,13957,290690 ,1,13958,65 ,1,13959,286110 ,1,13960,65 ,1,13961,65 ,1,13962,65 ,1,13963,65 ,1,13964,65 ,1,13965,214595 ,1,13966,65 ,1,13967,65 ,1,13968,65 ,1,13969,65 ,1,13970,189695 ,1,13971,65 ,1,13972,65 ,1,13973,326095 ,1,13974,65 ,1,13975,169785 ,1,13976,65 ,1,13977,238960 ,1,13978,282815 ,1,13979,331670 ,1,13980,350345 ,1,13981,65 ,1,13982,65 ,1,13983,65 ,1,13984,65 ,1,13985,65 ,1,13986,65 ,1,13987,169205 ,1,13988,247310 ,1,13989,65 ,1,13990,65 ,1,13991,65 ,1,13992,65 ,1,13993,65 ,1,13994,233295 ,1,13995,202135 ,1,13996,195575 ,1,13997,65 ,1,13998,170645 ,1,13999,65 ,1,14000,65 ,1,14001,65 ,1,14002,65 ,1,14003,65 ,1,14004,196615 ,1,14005,182055 ,1,14006,213710 ,1,14007,65 ,1,14008,65 ,1,14009,65 ,1,14010,65 ,1,14011,65 ,1,14012,296035 ,1,14013,334305 ,1,14014,311855 ,1,14015,65 ,1,14016,169880 ,1,14017,331040 ,1,14018,217890 ,1,14019,194230 ,1,14020,65 ,1,14021,264465 ,1,14022,277060 ,1,14023,224855 ,1,14024,65 ,1,14025,65 ,1,14026,198160 ,1,14027,221815 ,1,14028,215140 ,1,14029,211135 ,1,14030,199445 ,1,14031,65 ,1,14032,65 ,1,14033,65 ,1,14034,302960 ,1,14035,65 ,1,14036,293205 ,1,14037,265190 ,1,14038,65 ,1,14039,65 ,1,14040,65 ,1,14041,262880 ,1,14042,65 ,1,14043,330405 ,1,14044,173525 ,1,14045,186905 ,1,14046,323015 ,1,14047,65 ,1,14048,166740 ,1,14049,65 ,1,14050,299380 ,1,14051,65 ,1,14052,65 ,1,14053,65 ,1,14054,65 ,1,14055,251790 ,1,14056,65 ,1,14057,65 ,1,14058,201605 ,1,14059,281620 ,1,14060,65 ,1,14061,65 ,1,14062,65 ,1,14063,65 ,1,14064,65 ,1,14065,65 ,1,14066,65 ,1,14067,65 ,1,14068,297710 ,1,14069,65 ,1,14070,65 ,1,14071,65 ,1,14072,65 ,1,14073,233025 ,1,14074,234335 ,1,14075,297305 ,1,14076,65 ,1,14077,65 ,1,14078,217335 ,1,14079,65 ,1,14080,65 ,1,14081,65 ,1,14082,208370 ,1,14083,65 ,1,14084,65 ,1,14085,65 ,1,14086,210390 ,1,14087,65 ,1,14088,280130 ,1,14089,65 ,1,14090,65 ,1,14091,65 ,1,14092,65 ,1,14093,65 ,1,14094,65 ,1,14095,65 ,1,14096,65 ,1,14097,318675 ,1,14098,177140 ,1,14099,265855 ,1,14100,65 ,1,14101,218290 ,1,14102,294875 ,1,14103,267110 ,1,14104,321290 ,1,14105,65 ,1,14106,65 ,1,14107,65 ,1,14108,65 ,1,14109,65 ,1,14110,65 ,1,14111,213735 ,1,14112,348610 ,1,14113,268900 ,1,14114,65 ,1,14115,65 ,1,14116,65 ,1,14117,65 ,1,14118,65 ,1,14119,65 ,1,14120,65 ,1,14121,65 ,1,14122,65 ,1,14123,245290 ,1,14124,65 ,1,14125,284175 ,1,14126,286955 ,1,14127,350335 ,1,14128,65 ,1,14129,65 ,1,14130,65 ,1,14131,65 ,1,14132,350325 ,1,14133,172180 ,1,14134,65 ,1,14135,65 ,1,14136,65 ,1,14137,65 ,1,14138,196250 ,1,14139,277985 ,1,14140,65 ,1,14141,65 ,1,14142,65 ,1,14143,334605 ,1,14144,250960 ,1,14145,65 ,1,14146,340260 ,1,14147,302810 ,1,14148,65 ,1,14149,65 ,1,14150,255285 ,1,14151,65 ,1,14152,65 ,1,14153,65 ,1,14154,65 ,1,14155,65 ,1,14156,65 ,1,14157,65 ,1,14158,246985 ,1,14159,65 ,1,14160,192220 ,1,14161,244725 ,1,14162,65 ,1,14163,206610 ,1,14164,323510 ,1,14165,65 ,1,14166,65 ,1,14167,65 ,1,14168,65 ,1,14169,65 ,1,14170,311700 ,1,14171,65 ,1,14172,65 ,1,14173,181615 ,1,14174,65 ,1,14175,65 ,1,14176,227600 ,1,14177,65 ,1,14178,350300 ,1,14179,222805 ,1,14180,65 ,1,14181,65 ,1,14182,65 ,1,14183,65 ,1,14184,65 ,1,14185,65 ,1,14186,234970 ,1,14187,65 ,1,14188,65 ,1,14189,65 ,1,14190,170655 ,1,14191,169585 ,1,14192,178160 ,1,14193,65 ,1,14194,311575 ,1,14195,65 ,1,14196,65 ,1,14197,65 ,1,14198,310820 ,1,14199,65 ,1,14200,65 ,1,14201,65 ,1,14202,65 ,1,14203,65 ,1,14204,65 ,1,14205,65 ,1,14206,182585 ,1,14207,330100 ,1,14208,65 ,1,14209,345120 ,1,14210,65 ,1,14211,291680 ,1,14212,297940 ,1,14213,65 ,1,14214,65 ,1,14215,65 ,1,14216,249280 ,1,14217,65 ,1,14218,65 ,1,14219,65 ,1,14220,344385 ,1,14221,65 ,1,14222,65 ,1,14223,205800 ,1,14224,65 ,1,14225,240515 ,1,14226,181145 ,1,14227,264010 ,1,14228,65 ,1,14229,65 ,1,14230,65 ,1,14231,65 ,1,14232,65 ,1,14233,204670 ,1,14234,65 ,1,14235,181080 ,1,14236,247105 ,1,14237,341030 ,1,14238,65 ,1,14239,276480 ,1,14240,65 ,1,14241,65 ,1,14242,260500 ,1,14243,65 ,1,14244,65 ,1,14245,239440 ,1,14246,65 ,1,14247,65 ,1,14248,231895 ,1,14249,290445 ,1,14250,65 ,1,14251,65 ,1,14252,65 ,1,14253,65 ,1,14254,65 ,1,14255,312405 ,1,14256,241950 ,1,14257,65 ,1,14258,65 ,1,14259,65 ,1,14260,65 ,1,14261,350290 ,1,14262,65 ,1,14263,65 ,1,14264,65 ,1,14265,271840 ,1,14266,65 ,1,14267,228610 ,1,14268,233095 ,1,14269,225290 ,1,14270,192415 ,1,14271,279115 ,1,14272,65 ,1,14273,65 ,1,14274,65 ,1,14275,233705 ,1,14276,278055 ,1,14277,282165 ,1,14278,253880 ,1,14279,325475 ,1,14280,65 ,1,14281,65 ,1,14282,65 ,1,14283,65 ,1,14284,65 ,1,14285,65 ,1,14286,254565 ,1,14287,65 ,1,14288,196240 ,1,14289,65 ,1,14290,196575 ,1,14291,284105 ,1,14292,65 ,1,14293,334730 ,1,14294,65 ,1,14295,65 ,1,14296,65 ,1,14297,65 ,1,14298,326795 ,1,14299,65 ,1,14300,65 ,1,14301,281655 ,1,14302,65 ,1,14303,345955 ,1,14304,187830 ,1,14305,183155 ,1,14306,65 ,1,14307,170435 ,1,14308,65 ,1,14309,65 ,1,14310,243920 ,1,14311,219470 ,1,14312,65 ,1,14313,265070 ,1,14314,332690 ,1,14315,231720 ,1,14316,65 ,1,14317,242315 ,1,14318,230420 ,1,14319,65 ,1,14320,65 ,1,14321,65 ,1,14322,347110 ,1,14323,199305 ,1,14324,65 ,1,14325,65 ,1,14326,65 ,1,14327,65 ,1,14328,311485 ,1,14329,65 ,1,14330,65 ,1,14331,65 ,1,14332,65 ,1,14333,65 ,1,14334,278645 ,1,14335,212330 ,1,14336,298010 ,1,14337,242390 ,1,14338,65 ,1,14339,65 ,1,14340,65 ,1,14341,65 ,1,14342,65 ,1,14343,65 ,1,14344,65 ,1,14345,65 ,1,14346,191550 ,1,14347,65 ,1,14348,65 ,1,14349,65 ,1,14350,65 ,1,14351,65 ,1,14352,65 ,1,14353,65 ,1,14354,65 ,1,14355,65 ,1,14356,320065 ,1,14357,333850 ,1,14358,65 ,1,14359,65 ,1,14360,218890 ,1,14361,333635 ,1,14362,198490 ,1,14363,196200 ,1,14364,65 ,1,14365,65 ,1,14366,230515 ,1,14367,336850 ,1,14368,65 ,1,14369,168630 ,1,14370,65 ,1,14371,65 ,1,14372,65 ,1,14373,300240 ,1,14374,65 ,1,14375,65 ,1,14376,65 ,1,14377,65 ,1,14378,65 ,1,14379,65 ,1,14380,167085 ,1,14381,222390 ,1,14382,65 ,1,14383,65 ,1,14384,65 ,1,14385,65 ,1,14386,277800 ,1,14387,65 ,1,14388,65 ,1,14389,65 ,1,14390,65 ,1,14391,274235 ,1,14392,335995 ,1,14393,65 ,1,14394,65 ,1,14395,204885 ,1,14396,65 ,1,14397,65 ,1,14398,169565 ,1,14399,256450 ,1,14400,65 ,1,14401,332290 ,1,14402,65 ,1,14403,275620 ,1,14404,65 ,1,14405,65 ,1,14406,65 ,1,14407,179000 ,1,14408,270145 ,1,14409,65 ,1,14410,318075 ,1,14411,65 ,1,14412,205595 ,1,14413,65 ,1,14414,65 ,1,14415,65 ,1,14416,65 ,1,14417,65 ,1,14418,266935 ,1,14419,291745 ,1,14420,65 ,1,14421,168280 ,1,14422,65 ,1,14423,65 ,1,14424,210130 ,1,14425,167850 ,1,14426,65 ,1,14427,65 ,1,14428,65 ,1,14429,65 ,1,14430,65 ,1,14431,65 ,1,14432,65 ,1,14433,65 ,1,14434,210455 ,1,14435,209960 ,1,14436,65 ,1,14437,330070 ,1,14438,65 ,1,14439,65 ,1,14440,65 ,1,14441,65 ,1,14442,65 ,1,14443,65 ,1,14444,65 ,1,14445,177715 ,1,14446,65 ,1,14447,65 ,1,14448,65 ,1,14449,337600 ,1,14450,236745 ,1,14451,65 ,1,14452,65 ,1,14453,65 ,1,14454,342115 ,1,14455,65 ,1,14456,65 ,1,14457,65 ,1,14458,65 ,1,14459,65 ,1,14460,276060 ,1,14461,65 ,1,14462,65 ,1,14463,65 ,1,14464,247915 ,1,14465,65 ,1,14466,192495 ,1,14467,65 ,1,14468,65 ,1,14469,65 ,1,14470,65 ,1,14471,65 ,1,14472,65 ,1,14473,65 ,1,14474,207890 ,1,14475,292520 ,1,14476,65 ,1,14477,228295 ,1,14478,65 ,1,14479,65 ,1,14480,298510 ,1,14481,316765 ,1,14482,203165 ,1,14483,65 ,1,14484,297805 ,1,14485,246375 ,1,14486,65 ,1,14487,240570 ,1,14488,321550 ,1,14489,65 ,1,14490,65 ,1,14491,311175 ,1,14492,167060 ,1,14493,314015 ,1,14494,193435 ,1,14495,331110 ,1,14496,65 ,1,14497,65 ,1,14498,289705 ,1,14499,242295 ,1,14500,65 ,1,14501,242970 ,1,14502,65 ,1,14503,299420 ,1,14504,172680 ,1,14505,65 ,1,14506,65 ,1,14507,65 ,1,14508,269540 ,1,14509,65 ,1,14510,65 ,1,14511,350280 ,1,14512,65 ,1,14513,312095 ,1,14514,319175 ,1,14515,344075 ,1,14516,65 ,1,14517,315650 ,1,14518,65 ,1,14519,65 ,1,14520,65 ,1,14521,65 ,1,14522,65 ,1,14523,205485 ,1,14524,344495 ,1,14525,65 ,1,14526,65 ,1,14527,65 ,1,14528,300870 ,1,14529,257290 ,1,14530,65 ,1,14531,65 ,1,14532,65 ,1,14533,332860 ,1,14534,65 ,1,14535,207480 ,1,14536,65 ,1,14537,169490 ,1,14538,300085 ,1,14539,308625 ,1,14540,65 ,1,14541,65 ,1,14542,218180 ,1,14543,276775 ,1,14544,65 ,1,14545,65 ,1,14546,65 ,1,14547,256720 ,1,14548,65 ,1,14549,271245 ,1,14550,65 ,1,14551,65 ,1,14552,65 ,1,14553,65 ,1,14554,65 ,1,14555,65 ,1,14556,65 ,1,14557,65 ,1,14558,180135 ,1,14559,185990 ,1,14560,65 ,1,14561,65 ,1,14562,65 ,1,14563,205585 ,1,14564,263275 ,1,14565,65 ,1,14566,65 ,1,14567,65 ,1,14568,65 ,1,14569,65 ,1,14570,65 ,1,14571,65 ,1,14572,65 ,1,14573,65 ,1,14574,65 ,1,14575,177915 ,1,14576,65 ,1,14577,65 ,1,14578,65 ,1,14579,251895 ,1,14580,293900 ,1,14581,312415 ,1,14582,65 ,1,14583,259995 ,1,14584,65 ,1,14585,304105 ,1,14586,65 ,1,14587,336445 ,1,14588,65 ,1,14589,292760 ,1,14590,259965 ,1,14591,65 ,1,14592,300160 ,1,14593,299145 ,1,14594,214365 ,1,14595,317960 ,1,14596,187880 ,1,14597,185430 ,1,14598,322410 ,1,14599,65 ,1,14600,191790 ,1,14601,183975 ,1,14602,65 ,1,14603,65 ,1,14604,65 ,1,14605,65 ,1,14606,248150 ,1,14607,200680 ,1,14608,244900 ,1,14609,65 ,1,14610,343180 ,1,14611,65 ,1,14612,239180 ,1,14613,65 ,1,14614,65 ,1,14615,178360 ,1,14616,65 ,1,14617,65 ,1,14618,65 ,1,14619,65 ,1,14620,65 ,1,14621,249480 ,1,14622,65 ,1,14623,65 ,1,14624,350270 ,1,14625,65 ,1,14626,65 ,1,14627,65 ,1,14628,65 ,1,14629,65 ,1,14630,65 ,1,14631,65 ,1,14632,65 ,1,14633,65 ,1,14634,65 ,1,14635,297515 ,1,14636,172760 ,1,14637,65 ,1,14638,65 ,1,14639,65 ,1,14640,65 ,1,14641,65 ,1,14642,65 ,1,14643,65 ,1,14644,65 ,1,14645,65 ,1,14646,65 ,1,14647,288580 ,1,14648,301125 ,1,14649,313690 ,1,14650,260240 ,1,14651,65 ,1,14652,65 ,1,14653,338425 ,1,14654,65 ,1,14655,65 ,1,14656,65 ,1,14657,65 ,1,14658,222020 ,1,14659,260380 ,1,14660,65 ,1,14661,65 ,1,14662,65 ,1,14663,65 ,1,14664,323845 ,1,14665,287680 ,1,14666,278405 ,1,14667,319935 ,1,14668,346895 ,1,14669,175710 ,1,14670,230720 ,1,14671,219480 ,1,14672,265315 ,1,14673,182400 ,1,14674,315945 ,1,14675,65 ,1,14676,350255 ,1,14677,264155 ,1,14678,236395 ,1,14679,65 ,1,14680,277810 ,1,14681,65 ,1,14682,65 ,1,14683,194945 ,1,14684,65 ,1,14685,65 ,1,14686,65 ,1,14687,210330 ,1,14688,65 ,1,14689,255120 ,1,14690,174505 ,1,14691,65 ,1,14692,65 ,1,14693,194420 ,1,14694,313745 ,1,14695,298760 ,1,14696,65 ,1,14697,65 ,1,14698,65 ,1,14699,65 ,1,14700,227030 ,1,14701,65 ,1,14702,65 ,1,14703,65 ,1,14704,226905 ,1,14705,65 ,1,14706,172640 ,1,14707,175105 ,1,14708,65 ,1,14709,292330 ,1,14710,258585 ,1,14711,65 ,1,14712,65 ,1,14713,65 ,1,14714,65 ,1,14715,65 ,1,14716,170445 ,1,14717,345480 ,1,14718,215675 ,1,14719,65 ,1,14720,65 ,1,14721,339630 ,1,14722,65 ,1,14723,65 ,1,14724,65 ,1,14725,65 ,1,14726,65 ,1,14727,65 ,1,14728,65 ,1,14729,342450 ,1,14730,65 ,1,14731,65 ,1,14732,65 ,1,14733,281255 ,1,14734,229670 ,1,14735,174720 ,1,14736,191510 ,1,14737,65 ,1,14738,168515 ,1,14739,316960 ,1,14740,65 ,1,14741,337745 ,1,14742,65 ,1,14743,280235 ,1,14744,326940 ,1,14745,231055 ,1,14746,65 ,1,14747,286760 ,1,14748,234990 ,1,14749,65 ,1,14750,65 ,1,14751,65 ,1,14752,238915 ,1,14753,338875 ,1,14754,246640 ,1,14755,284185 ,1,14756,65 ,1,14757,65 ,1,14758,203175 ,1,14759,65 ,1,14760,65 ,1,14761,65 ,1,14762,65 ,1,14763,65 ,1,14764,65 ,1,14765,65 ,1,14766,182360 ,1,14767,271275 ,1,14768,196315 ,1,14769,65 ,1,14770,65 ,1,14771,65 ,1,14772,65 ,1,14773,65 ,1,14774,65 ,1,14775,65 ,1,14776,65 ,1,14777,320105 ,1,14778,340185 ,1,14779,65 ,1,14780,313175 ,1,14781,65 ,1,14782,65 ,1,14783,65 ,1,14784,65 ,1,14785,177580 ,1,14786,193455 ,1,14787,65 ,1,14788,275100 ,1,14789,342470 ,1,14790,320985 ,1,14791,254895 ,1,14792,178955 ,1,14793,65 ,1,14794,337440 ,1,14795,65 ,1,14796,65 ,1,14797,65 ,1,14798,65 ,1,14799,65 ,1,14800,169300 ,1,14801,65 ,1,14802,65 ,1,14803,269820 ,1,14804,65 ,1,14805,65 ,1,14806,65 ,1,14807,65 ,1,14808,65 ,1,14809,65 ,1,14810,174185 ,1,14811,198605 ,1,14812,65 ,1,14813,65 ,1,14814,260205 ,1,14815,198055 ,1,14816,348600 ,1,14817,65 ,1,14818,275545 ,1,14819,243340 ,1,14820,65 ,1,14821,246105 ,1,14822,65 ,1,14823,65 ,1,14824,65 ,1,14825,65 ,1,14826,65 ,1,14827,65 ,1,14828,187540 ,1,14829,318035 ,1,14830,293665 ,1,14831,65 ,1,14832,267885 ,1,14833,65 ,1,14834,65 ,1,14835,252585 ,1,14836,228195 ,1,14837,65 ,1,14838,215715 ,1,14839,65 ,1,14840,286265 ,1,14841,350245 ,1,14842,244430 ,1,14843,294530 ,1,14844,65 ,1,14845,270645 ,1,14846,338615 ,1,14847,176700 ,1,14848,194815 ,1,14849,65 ,1,14850,184025 ,1,14851,65 ,1,14852,343565 ,1,14853,65 ,1,14854,65 ,1,14855,65 ,1,14856,273490 ,1,14857,65 ,1,14858,65 ,1,14859,65 ,1,14860,65 ,1,14861,65 ,1,14862,65 ,1,14863,350235 ,1,14864,65 ,1,14865,65 ,1,14866,254125 ,1,14867,65 ,1,14868,169520 ,1,14869,188365 ,1,14870,324145 ,1,14871,65 ,1,14872,65 ,1,14873,65 ,1,14874,65 ,1,14875,65 ,1,14876,173685 ,1,14877,318705 ,1,14878,65 ,1,14879,65 ,1,14880,65 ,1,14881,65 ,1,14882,65 ,1,14883,65 ,1,14884,65 ,1,14885,65 ,1,14886,65 ,1,14887,65 ,1,14888,65 ,1,14889,339705 ,1,14890,174205 ,1,14891,236635 ,1,14892,267905 ,1,14893,185755 ,1,14894,65 ,1,14895,65 ,1,14896,65 ,1,14897,273605 ,1,14898,65 ,1,14899,198905 ,1,14900,264165 ,1,14901,329960 ,1,14902,344605 ,1,14903,194360 ,1,14904,325260 ,1,14905,65 ,1,14906,342165 ,1,14907,65 ,1,14908,65 ,1,14909,178715 ,1,14910,283760 ,1,14911,309125 ,1,14912,65 ,1,14913,65 ,1,14914,65 ,1,14915,65 ,1,14916,65 ,1,14917,65 ,1,14918,65 ,1,14919,181090 ,1,14920,65 ,1,14921,186785 ,1,14922,65 ,1,14923,253975 ,1,14924,65 ,1,14925,174175 ,1,14926,292740 ,1,14927,219950 ,1,14928,172085 ,1,14929,191065 ,1,14930,65 ,1,14931,203365 ,1,14932,65 ,1,14933,65 ,1,14934,65 ,1,14935,65 ,1,14936,65 ,1,14937,65 ,1,14938,65 ,1,14939,65 ,1,14940,65 ,1,14941,65 ,1,14942,172590 ,1,14943,342030 ,1,14944,65 ,1,14945,65 ,1,14946,65 ,1,14947,65 ,1,14948,65 ,1,14949,65 ,1,14950,65 ,1,14951,65 ,1,14952,65 ,1,14953,261850 ,1,14954,65 ,1,14955,65 ,1,14956,212860 ,1,14957,65 ,1,14958,65 ,1,14959,65 ,1,14960,233695 ,1,14961,65 ,1,14962,65 ,1,14963,65 ,1,14964,65 ,1,14965,65 ,1,14966,221570 ,1,14967,262465 ,1,14968,65 ,1,14969,203915 ,1,14970,65 ,1,14971,272905 ,1,14972,65 ,1,14973,65 ,1,14974,223695 ,1,14975,343230 ,1,14976,250820 ,1,14977,340125 ,1,14978,290520 ,1,14979,65 ,1,14980,173640 ,1,14981,65 ,1,14982,65 ,1,14983,65 ,1,14984,65 ,1,14985,341745 ,1,14986,65 ,1,14987,329270 ,1,14988,65 ,1,14989,65 ,1,14990,326140 ,1,14991,301725 ,1,14992,65 ,1,14993,65 ,1,14994,65 ,1,14995,65 ,1,14996,65 ,1,14997,65 ,1,14998,226020 ,1,14999,65 ,1,15000,65 ,1,15001,65 ,1,15002,65 ,1,15003,346250 ,1,15004,65 ,1,15005,65 ,1,15006,65 ,1,15007,65 ,1,15008,65 ,1,15009,310380 ,1,15010,218380 ,1,15011,65 ,1,15012,65 ,1,15013,220505 ,1,15014,331365 ,1,15015,65 ,1,15016,65 ,1,15017,65 ,1,15018,65 ,1,15019,246915 ,1,15020,174525 ,1,15021,240860 ,1,15022,240060 ,1,15023,213755 ,1,15024,169910 ,1,15025,65 ,1,15026,197690 ,1,15027,317830 ,1,15028,65 ,1,15029,241055 ,1,15030,174110 ,1,15031,253935 ,1,15032,65 ,1,15033,65 ,1,15034,274590 ,1,15035,65 ,1,15036,251235 ,1,15037,212200 ,1,15038,290985 ,1,15039,65 ,1,15040,65 ,1,15041,65 ,1,15042,266155 ,1,15043,65 ,1,15044,65 ,1,15045,65 ,1,15046,206475 ,1,15047,183055 ,1,15048,65 ,1,15049,236665 ,1,15050,65 ,1,15051,65 ,1,15052,65 ,1,15053,65 ,1,15054,270510 ,1,15055,330080 ,1,15056,294640 ,1,15057,262850 ,1,15058,255050 ,1,15059,312905 ,1,15060,242420 ,1,15061,65 ,1,15062,196960 ,1,15063,282425 ,1,15064,248095 ,1,15065,319440 ,1,15066,215825 ,1,15067,313980 ,1,15068,65 ,1,15069,219320 ,1,15070,65 ,1,15071,315125 ,1,15072,275985 ,1,15073,65 ,1,15074,339055 ,1,15075,65 ,1,15076,65 ,1,15077,65 ,1,15078,248530 ,1,15079,175570 ,1,15080,168850 ,1,15081,267525 ,1,15082,243460 ,1,15083,65 ,1,15084,65 ,1,15085,65 ,1,15086,65 ,1,15087,65 ,1,15088,191740 ,1,15089,65 ,1,15090,65 ,1,15091,65 ,1,15092,223280 ,1,15093,65 ,1,15094,65 ,1,15095,284255 ,1,15096,193445 ,1,15097,65 ,1,15098,65 ,1,15099,65 ,1,15100,246675 ,1,15101,65 ,1,15102,65 ,1,15103,277250 ,1,15104,240285 ,1,15105,65 ,1,15106,166785 ,1,15107,65 ,1,15108,65 ,1,15109,65 ,1,15110,65 ,1,15111,65 ,1,15112,242090 ,1,15113,260920 ,1,15114,205950 ,1,15115,65 ,1,15116,229720 ,1,15117,65 ,1,15118,65 ,1,15119,346730 ,1,15120,220565 ,1,15121,320430 ,1,15122,191665 ,1,15123,344140 ,1,15124,198695 ,1,15125,236385 ,1,15126,65 ,1,15127,65 ,1,15128,65 ,1,15129,65 ,1,15130,65 ,1,15131,65 ,1,15132,65 ,1,15133,65 ,1,15134,65 ,1,15135,275150 ,1,15136,220525 ,1,15137,65 ,1,15138,194330 ,1,15139,65 ,1,15140,65 ,1,15141,65 ,1,15142,220165 ,1,15143,65 ,1,15144,65 ,1,15145,65 ,1,15146,215985 ,1,15147,65 ,1,15148,272710 ,1,15149,65 ,1,15150,249855 ,1,15151,342755 ,1,15152,307750 ,1,15153,65 ,1,15154,65 ,1,15155,65 ,1,15156,65 ,1,15157,65 ,1,15158,65 ,1,15159,65 ,1,15160,65 ,1,15161,200195 ,1,15162,204865 ,1,15163,65 ,1,15164,289780 ,1,15165,65 ,1,15166,65 ,1,15167,65 ,1,15168,65 ,1,15169,322590 ,1,15170,343240 ,1,15171,167185 ,1,15172,65 ,1,15173,65 ,1,15174,65 ,1,15175,65 ,1,15176,65 ,1,15177,65 ,1,15178,65 ,1,15179,268565 ,1,15180,178790 ,1,15181,294895 ,1,15182,65 ,1,15183,65 ,1,15184,258155 ,1,15185,166540 ,1,15186,65 ,1,15187,261980 ,1,15188,65 ,1,15189,65 ,1,15190,65 ,1,15191,65 ,1,15192,247845 ,1,15193,65 ,1,15194,65 ,1,15195,65 ,1,15196,65 ,1,15197,65 ,1,15198,65 ,1,15199,167285 ,1,15200,207340 ,1,15201,65 ,1,15202,324200 ,1,15203,226125 ,1,15204,65 ,1,15205,315115 ,1,15206,65 ,1,15207,65 ,1,15208,235910 ,1,15209,65 ,1,15210,65 ,1,15211,65 ,1,15212,65 ,1,15213,65 ,1,15214,65 ,1,15215,168535 ,1,15216,65 ,1,15217,65 ,1,15218,65 ,1,15219,65 ,1,15220,65 ,1,15221,345870 ,1,15222,65 ,1,15223,65 ,1,15224,254530 ,1,15225,325585 ,1,15226,65 ,1,15227,323185 ,1,15228,190845 ,1,15229,238950 ,1,15230,278730 ,1,15231,319945 ,1,15232,65 ,1,15233,315415 ,1,15234,65 ,1,15235,65 ,1,15236,65 ,1,15237,65 ,1,15238,65 ,1,15239,65 ,1,15240,65 ,1,15241,350225 ,1,15242,245425 ,1,15243,65 ,1,15244,276270 ,1,15245,65 ,1,15246,65 ,1,15247,278930 ,1,15248,65 ,1,15249,168620 ,1,15250,259380 ,1,15251,194005 ,1,15252,325280 ,1,15253,65 ,1,15254,65 ,1,15255,65 ,1,15256,65 ,1,15257,65 ,1,15258,333615 ,1,15259,174100 ,1,15260,65 ,1,15261,246235 ,1,15262,65 ,1,15263,185670 ,1,15264,65 ,1,15265,65 ,1,15266,322295 ,1,15267,65 ,1,15268,65 ,1,15269,65 ,1,15270,65 ,1,15271,255100 ,1,15272,65 ,1,15273,65 ,1,15274,323590 ,1,15275,65 ,1,15276,65 ,1,15277,65 ,1,15278,238690 ,1,15279,65 ,1,15280,65 ,1,15281,65 ,1,15282,65 ,1,15283,65 ,1,15284,65 ,1,15285,65 ,1,15286,65 ,1,15287,65 ,1,15288,65 ,1,15289,182945 ,1,15290,65 ,1,15291,209440 ,1,15292,65 ,1,15293,65 ,1,15294,334840 ,1,15295,65 ,1,15296,65 ,1,15297,65 ,1,15298,65 ,1,15299,333800 ,1,15300,338885 ,1,15301,65 ,1,15302,65 ,1,15303,65 ,1,15304,261075 ,1,15305,219500 ,1,15306,175035 ,1,15307,257660 ,1,15308,251815 ,1,15309,65 ,1,15310,65 ,1,15311,65 ,1,15312,65 ,1,15313,65 ,1,15314,65 ,1,15315,65 ,1,15316,65 ,1,15317,65 ,1,15318,65 ,1,15319,188590 ,1,15320,297910 ,1,15321,65 ,1,15322,191945 ,1,15323,65 ,1,15324,65 ,1,15325,65 ,1,15326,65 ,1,15327,219635 ,1,15328,65 ,1,15329,65 ,1,15330,182780 ,1,15331,65 ,1,15332,65 ,1,15333,65 ,1,15334,233685 ,1,15335,65 ,1,15336,65 ,1,15337,65 ,1,15338,65 ,1,15339,180035 ,1,15340,240110 ,1,15341,287035 ,1,15342,193780 ,1,15343,264540 ,1,15344,343690 ,1,15345,65 ,1,15346,285875 ,1,15347,327530 ,1,15348,276175 ,1,15349,65 ,1,15350,229855 ,1,15351,65 ,1,15352,65 ,1,15353,65 ,1,15354,65 ,1,15355,65 ,1,15356,179900 ,1,15357,207185 ,1,15358,65 ,1,15359,65 ,1,15360,65 ,1,15361,289800 ,1,15362,65 ,1,15363,65 ,1,15364,65 ,1,15365,65 ,1,15366,345465 ,1,15367,171505 ,1,15368,268020 ,1,15369,250800 ,1,15370,307615 ,1,15371,322520 ,1,15372,65 ,1,15373,65 ,1,15374,65 ,1,15375,310495 ,1,15376,242730 ,1,15377,194590 ,1,15378,308635 ,1,15379,65 ,1,15380,350175 ,1,15381,65 ,1,15382,65 ,1,15383,65 ,1,15384,65 ,1,15385,65 ,1,15386,65 ,1,15387,65 ,1,15388,65 ,1,15389,343410 ,1,15390,65 ,1,15391,65 ,1,15392,65 ,1,15393,65 ,1,15394,65 ,1,15395,65 ,1,15396,260480 ,1,15397,196635 ,1,15398,65 ,1,15399,65 ,1,15400,65 ,1,15401,255900 ,1,15402,294780 ,1,15403,200800 ,1,15404,336375 ,1,15405,65 ,1,15406,327755 ,1,15407,65 ,1,15408,233975 ,1,15409,65 ,1,15410,65 ,1,15411,227070 ,1,15412,195390 ,1,15413,206720 ,1,15414,65 ,1,15415,338980 ,1,15416,65 ,1,15417,65 ,1,15418,178840 ,1,15419,65 ,1,15420,312960 ,1,15421,65 ,1,15422,65 ,1,15423,65 ,1,15424,321340 ,1,15425,65 ,1,15426,65 ,1,15427,262105 ,1,15428,220945 ,1,15429,223625 ,1,15430,327820 ,1,15431,231880 ,1,15432,65 ,1,15433,65 ,1,15434,327920 ,1,15435,216155 ,1,15436,202715 ,1,15437,221240 ,1,15438,193750 ,1,15439,233145 ,1,15440,322480 ,1,15441,65 ,1,15442,65 ,1,15443,170730 ,1,15444,276405 ,1,15445,65 ,1,15446,291615 ,1,15447,65 ,1,15448,65 ,1,15449,65 ,1,15450,65 ,1,15451,65 ,1,15452,65 ,1,15453,65 ,1,15454,65 ,1,15455,65 ,1,15456,65 ,1,15457,65 ,1,15458,65 ,1,15459,221670 ,1,15460,65 ,1,15461,246995 ,1,15462,65 ,1,15463,65 ,1,15464,65 ,1,15465,65 ,1,15466,65 ,1,15467,65 ,1,15468,65 ,1,15469,177160 ,1,15470,65 ,1,15471,261635 ,1,15472,267195 ,1,15473,280390 ,1,15474,65 ,1,15475,65 ,1,15476,65 ,1,15477,65 ,1,15478,216865 ,1,15479,167640 ,1,15480,65 ,1,15481,65 ,1,15482,65 ,1,15483,65 ,1,15484,280050 ,1,15485,65 ,1,15486,345385 ,1,15487,201025 ,1,15488,339310 ,1,15489,65 ,1,15490,186760 ,1,15491,346150 ,1,15492,343900 ,1,15493,178520 ,1,15494,65 ,1,15495,65 ,1,15496,65 ,1,15497,65 ,1,15498,65 ,1,15499,283450 ,1,15500,286300 ,1,15501,65 ,1,15502,261330 ,1,15503,311965 ,1,15504,297405 ,1,15505,211525 ,1,15506,199660 ,1,15507,239670 ,1,15508,187310 ,1,15509,65 ,1,15510,65 ,1,15511,345285 ,1,15512,65 ,1,15513,65 ,1,15514,65 ,1,15515,65 ,1,15516,65 ,1,15517,350165 ,1,15518,320170 ,1,15519,65 ,1,15520,65 ,1,15521,65 ,1,15522,65 ,1,15523,65 ,1,15524,236765 ,1,15525,323430 ,1,15526,326825 ,1,15527,65 ,1,15528,321350 ,1,15529,65 ,1,15530,65 ,1,15531,65 ,1,15532,65 ,1,15533,65 ,1,15534,65 ,1,15535,65 ,1,15536,65 ,1,15537,65 ,1,15538,303775 ,1,15539,65 ,1,15540,211885 ,1,15541,308595 ,1,15542,280380 ,1,15543,65 ,1,15544,313280 ,1,15545,211865 ,1,15546,65 ,1,15547,65 ,1,15548,65 ,1,15549,65 ,1,15550,219010 ,1,15551,65 ,1,15552,171340 ,1,15553,65 ,1,15554,65 ,1,15555,176080 ,1,15556,322800 ,1,15557,65 ,1,15558,233435 ,1,15559,182075 ,1,15560,246175 ,1,15561,303555 ,1,15562,333045 ,1,15563,65 ,1,15564,65 ,1,15565,65 ,1,15566,65 ,1,15567,65 ,1,15568,65 ,1,15569,65 ,1,15570,65 ,1,15571,65 ,1,15572,65 ,1,15573,65 ,1,15574,65 ,1,15575,65 ,1,15576,314215 ,1,15577,65 ,1,15578,65 ,1,15579,65 ,1,15580,65 ,1,15581,204845 ,1,15582,65 ,1,15583,65 ,1,15584,241305 ,1,15585,65 ,1,15586,65 ,1,15587,346830 ,1,15588,228960 ,1,15589,65 ,1,15590,65 ,1,15591,65 ,1,15592,178230 ,1,15593,310440 ,1,15594,65 ,1,15595,65 ,1,15596,342430 ,1,15597,273630 ,1,15598,65 ,1,15599,65 ,1,15600,65 ,1,15601,65 ,1,15602,314240 ,1,15603,65 ,1,15604,65 ,1,15605,65 ,1,15606,350155 ,1,15607,65 ,1,15608,239035 ,1,15609,65 ,1,15610,65 ,1,15611,242625 ,1,15612,65 ,1,15613,65 ,1,15614,301350 ,1,15615,65 ,1,15616,300105 ,1,15617,171235 ,1,15618,350145 ,1,15619,188165 ,1,15620,65 ,1,15621,65 ,1,15622,65 ,1,15623,65 ,1,15624,291440 ,1,15625,65 ,1,15626,200520 ,1,15627,65 ,1,15628,65 ,1,15629,65 ,1,15630,65 ,1,15631,65 ,1,15632,65 ,1,15633,191475 ,1,15634,211300 ,1,15635,345665 ,1,15636,205080 ,1,15637,65 ,1,15638,65 ,1,15639,200330 ,1,15640,65 ,1,15641,333955 ,1,15642,65 ,1,15643,65 ,1,15644,65 ,1,15645,65 ,1,15646,65 ,1,15647,65 ,1,15648,65 ,1,15649,65 ,1,15650,196100 ,1,15651,177655 ,1,15652,65 ,1,15653,229225 ,1,15654,65 ,1,15655,65 ,1,15656,194805 ,1,15657,315785 ,1,15658,270435 ,1,15659,243950 ,1,15660,307300 ,1,15661,65 ,1,15662,346625 ,1,15663,170625 ,1,15664,65 ,1,15665,304505 ,1,15666,65 ,1,15667,217610 ,1,15668,343650 ,1,15669,65 ,1,15670,345740 ,1,15671,65 ,1,15672,190450 ,1,15673,176710 ,1,15674,65 ,1,15675,198130 ,1,15676,171735 ,1,15677,65 ,1,15678,65 ,1,15679,65 ,1,15680,194190 ,1,15681,281845 ,1,15682,334175 ,1,15683,242915 ,1,15684,65 ,1,15685,264625 ,1,15686,65 ,1,15687,343095 ,1,15688,183135 ,1,15689,65 ,1,15690,65 ,1,15691,65 ,1,15692,224835 ,1,15693,65 ,1,15694,65 ,1,15695,194525 ,1,15696,65 ,1,15697,65 ,1,15698,65 ,1,15699,65 ,1,15700,176255 ,1,15701,65 ,1,15702,286740 ,1,15703,340525 ,1,15704,208100 ,1,15705,65 ,1,15706,65 ,1,15707,65 ,1,15708,65 ,1,15709,65 ,1,15710,65 ,1,15711,65 ,1,15712,65 ,1,15713,271175 ,1,15714,299270 ,1,15715,228285 ,1,15716,337590 ,1,15717,65 ,1,15718,65 ,1,15719,65 ,1,15720,65 ,1,15721,65 ,1,15722,289945 ,1,15723,208690 ,1,15724,176450 ,1,15725,342775 ,1,15726,260930 ,1,15727,65 ,1,15728,345610 ,1,15729,65 ,1,15730,65 ,1,15731,65 ,1,15732,65 ,1,15733,65 ,1,15734,65 ,1,15735,65 ,1,15736,331030 ,1,15737,65 ,1,15738,184350 ,1,15739,65 ,1,15740,65 ,1,15741,65 ,1,15742,167620 ,1,15743,247030 ,1,15744,223110 ,1,15745,65 ,1,15746,65 ,1,15747,65 ,1,15748,220195 ,1,15749,321770 ,1,15750,65 ,1,15751,65 ,1,15752,65 ,1,15753,65 ,1,15754,219990 ,1,15755,345770 ,1,15756,65 ,1,15757,65 ,1,15758,337840 ,1,15759,347395 ,1,15760,266015 ,1,15761,65 ,1,15762,287805 ,1,15763,65 ,1,15764,65 ,1,15765,322790 ,1,15766,65 ,1,15767,65 ,1,15768,65 ,1,15769,65 ,1,15770,194080 ,1,15771,65 ,1,15772,65 ,1,15773,294830 ,1,15774,65 ,1,15775,65 ,1,15776,336865 ,1,15777,65 ,1,15778,65 ,1,15779,65 ,1,15780,65 ,1,15781,183555 ,1,15782,65 ,1,15783,206580 ,1,15784,266765 ,1,15785,167650 ,1,15786,182695 ,1,15787,65 ,1,15788,65 ,1,15789,65 ,1,15790,65 ,1,15791,65 ,1,15792,184950 ,1,15793,65 ,1,15794,65 ,1,15795,65 ,1,15796,65 ,1,15797,227275 ,1,15798,281320 ,1,15799,65 ,1,15800,269030 ,1,15801,345840 ,1,15802,318345 ,1,15803,187320 ,1,15804,262665 ,1,15805,65 ,1,15806,65 ,1,15807,65 ,1,15808,65 ,1,15809,195065 ,1,15810,65 ,1,15811,65 ,1,15812,65 ,1,15813,65 ,1,15814,65 ,1,15815,65 ,1,15816,177505 ,1,15817,65 ,1,15818,65 ,1,15819,65 ,1,15820,65 ,1,15821,65 ,1,15822,65 ,1,15823,65 ,1,15824,65 ,1,15825,65 ,1,15826,65 ,1,15827,65 ,1,15828,215075 ,1,15829,65 ,1,15830,336285 ,1,15831,291385 ,1,15832,65 ,1,15833,65 ,1,15834,65 ,1,15835,230400 ,1,15836,278155 ,1,15837,296390 ,1,15838,187725 ,1,15839,245230 ,1,15840,65 ,1,15841,211025 ,1,15842,65 ,1,15843,65 ,1,15844,174740 ,1,15845,295440 ,1,15846,291735 ,1,15847,65 ,1,15848,65 ,1,15849,201830 ,1,15850,65 ,1,15851,65 ,1,15852,306325 ,1,15853,298405 ,1,15854,215465 ,1,15855,65 ,1,15856,65 ,1,15857,65 ,1,15858,65 ,1,15859,187230 ,1,15860,65 ,1,15861,65 ,1,15862,65 ,1,15863,65 ,1,15864,65 ,1,15865,296360 ,1,15866,65 ,1,15867,65 ,1,15868,65 ,1,15869,328610 ,1,15870,65 ,1,15871,65 ,1,15872,65 ,1,15873,172820 ,1,15874,65 ,1,15875,65 ,1,15876,179020 ,1,15877,65 ,1,15878,238420 ,1,15879,65 ,1,15880,65 ,1,15881,65 ,1,15882,230580 ,1,15883,65 ,1,15884,65 ,1,15885,65 ,1,15886,65 ,1,15887,65 ,1,15888,65 ,1,15889,273040 ,1,15890,237820 ,1,15891,65 ,1,15892,350125 ,1,15893,65 ,1,15894,224080 ,1,15895,65 ,1,15896,65 ,1,15897,65 ,1,15898,65 ,1,15899,65 ,1,15900,271115 ,1,15901,312040 ,1,15902,65 ,1,15903,65 ,1,15904,65 ,1,15905,65 ,1,15906,345715 ,1,15907,65 ,1,15908,65 ,1,15909,227195 ,1,15910,182300 ,1,15911,65 ,1,15912,331965 ,1,15913,65 ,1,15914,65 ,1,15915,191640 ,1,15916,318905 ,1,15917,238030 ,1,15918,65 ,1,15919,65 ,1,15920,257095 ,1,15921,65 ,1,15922,65 ,1,15923,220000 ,1,15924,65 ,1,15925,65 ,1,15926,65 ,1,15927,65 ,1,15928,272615 ,1,15929,285715 ,1,15930,65 ,1,15931,271460 ,1,15932,65 ,1,15933,209315 ,1,15934,187870 ,1,15935,271265 ,1,15936,173155 ,1,15937,65 ,1,15938,65 ,1,15939,65 ,1,15940,65 ,1,15941,264345 ,1,15942,317800 ,1,15943,65 ,1,15944,65 ,1,15945,188135 ,1,15946,65 ,1,15947,65 ,1,15948,65 ,1,15949,65 ,1,15950,309925 ,1,15951,65 ,1,15952,273695 ,1,15953,344915 ,1,15954,65 ,1,15955,65 ,1,15956,238510 ,1,15957,65 ,1,15958,65 ,1,15959,65 ,1,15960,189145 ,1,15961,65 ,1,15962,319715 ,1,15963,65 ,1,15964,65 ,1,15965,65 ,1,15966,168345 ,1,15967,65 ,1,15968,65 ,1,15969,65 ,1,15970,65 ,1,15971,65 ,1,15972,176060 ,1,15973,172035 ,1,15974,302395 ,1,15975,65 ,1,15976,307955 ,1,15977,65 ,1,15978,65 ,1,15979,65 ,1,15980,65 ,1,15981,326880 ,1,15982,245180 ,1,15983,299660 ,1,15984,233415 ,1,15985,65 ,1,15986,251440 ,1,15987,238270 ,1,15988,307945 ,1,15989,171995 ,1,15990,320225 ,1,15991,268945 ,1,15992,348440 ,1,15993,65 ,1,15994,65 ,1,15995,190360 ,1,15996,65 ,1,15997,234830 ,1,15998,65 ,1,15999,339580 ,1,16000,65 ,1,16001,65 ,1,16002,65 ,1,16003,65 ,1,16004,65 ,1,16005,169225 ,1,16006,65 ,1,16007,309790 ,1,16008,291450 ,1,16009,214040 ,1,16010,65 ,1,16011,65 ,1,16012,65 ,1,16013,65 ,1,16014,65 ,1,16015,65 ,1,16016,264125 ,1,16017,232135 ,1,16018,65 ,1,16019,216975 ,1,16020,65 ,1,16021,254185 ,1,16022,65 ,1,16023,65 ,1,16024,276580 ,1,16025,65 ,1,16026,288455 ,1,16027,266490 ,1,16028,206415 ,1,16029,65 ,1,16030,65 ,1,16031,347475 ,1,16032,252115 ,1,16033,65 ,1,16034,297265 ,1,16035,286835 ,1,16036,65 ,1,16037,65 ,1,16038,65 ,1,16039,65 ,1,16040,65 ,1,16041,214980 ,1,16042,65 ,1,16043,65 ,1,16044,65 ,1,16045,65 ,1,16046,65 ,1,16047,319085 ,1,16048,65 ,1,16049,65 ,1,16050,65 ,1,16051,65 ,1,16052,65 ,1,16053,323025 ,1,16054,334445 ,1,16055,65 ,1,16056,65 ,1,16057,345725 ,1,16058,65 ,1,16059,65 ,1,16060,65 ,1,16061,304930 ,1,16062,184065 ,1,16063,65 ,1,16064,65 ,1,16065,65 ,1,16066,65 ,1,16067,294930 ,1,16068,65 ,1,16069,65 ,1,16070,302270 ,1,16071,65 ,1,16072,65 ,1,16073,195220 ,1,16074,65 ,1,16075,197395 ,1,16076,298205 ,1,16077,263000 ,1,16078,65 ,1,16079,226365 ,1,16080,65 ,1,16081,65 ,1,16082,65 ,1,16083,331385 ,1,16084,65 ,1,16085,65 ,1,16086,186465 ,1,16087,65 ,1,16088,246775 ,1,16089,342250 ,1,16090,306455 ,1,16091,65 ,1,16092,65 ,1,16093,65 ,1,16094,257235 ,1,16095,65 ,1,16096,214635 ,1,16097,65 ,1,16098,65 ,1,16099,65 ,1,16100,65 ,1,16101,65 ,1,16102,290780 ,1,16103,65 ,1,16104,65 ,1,16105,65 ,1,16106,65 ,1,16107,65 ,1,16108,65 ,1,16109,65 ,1,16110,65 ,1,16111,65 ,1,16112,65 ,1,16113,65 ,1,16114,175150 ,1,16115,217940 ,1,16116,178150 ,1,16117,181745 ,1,16118,348255 ,1,16119,207015 ,1,16120,65 ,1,16121,65 ,1,16122,65 ,1,16123,194240 ,1,16124,65 ,1,16125,65 ,1,16126,65 ,1,16127,65 ,1,16128,65 ,1,16129,65 ,1,16130,65 ,1,16131,65 ,1,16132,171725 ,1,16133,65 ,1,16134,65 ,1,16135,65 ,1,16136,167610 ,1,16137,65 ,1,16138,65 ,1,16139,248270 ,1,16140,235930 ,1,16141,65 ,1,16142,253305 ,1,16143,65 ,1,16144,65 ,1,16145,268355 ,1,16146,311120 ,1,16147,65 ,1,16148,290770 ,1,16149,256130 ,1,16150,337965 ,1,16151,193360 ,1,16152,65 ,1,16153,227610 ,1,16154,231335 ,1,16155,65 ,1,16156,65 ,1,16157,65 ,1,16158,65 ,1,16159,65 ,1,16160,65 ,1,16161,65 ,1,16162,315905 ,1,16163,243360 ,1,16164,171285 ,1,16165,65 ,1,16166,65 ,1,16167,65 ,1,16168,65 ,1,16169,345655 ,1,16170,65 ,1,16171,211895 ,1,16172,65 ,1,16173,207640 ,1,16174,65 ,1,16175,330870 ,1,16176,65 ,1,16177,65 ,1,16178,65 ,1,16179,172975 ,1,16180,169105 ,1,16181,286180 ,1,16182,226220 ,1,16183,195875 ,1,16184,256005 ,1,16185,65 ,1,16186,309780 ,1,16187,291345 ,1,16188,166495 ,1,16189,315375 ,1,16190,206260 ,1,16191,329370 ,1,16192,264285 ,1,16193,270635 ,1,16194,65 ,1,16195,65 ,1,16196,306230 ,1,16197,286535 ,1,16198,209695 ,1,16199,65 ,1,16200,65 ,1,16201,65 ,1,16202,65 ,1,16203,315040 ,1,16204,201110 ,1,16205,65 ,1,16206,319835 ,1,16207,65 ,1,16208,270075 ,1,16209,65 ,1,16210,65 ,1,16211,65 ,1,16212,65 ,1,16213,65 ,1,16214,346020 ,1,16215,65 ,1,16216,239810 ,1,16217,65 ,1,16218,65 ,1,16219,65 ,1,16220,65 ,1,16221,65 ,1,16222,263055 ,1,16223,65 ,1,16224,65 ,1,16225,65 ,1,16226,307565 ,1,16227,65 ,1,16228,65 ,1,16229,253295 ,1,16230,338950 ,1,16231,65 ,1,16232,323380 ,1,16233,306010 ,1,16234,65 ,1,16235,65 ,1,16236,205690 ,1,16237,227835 ,1,16238,319795 ,1,16239,65 ,1,16240,185535 ,1,16241,65 ,1,16242,302045 ,1,16243,65 ,1,16244,299490 ,1,16245,65 ,1,16246,65 ,1,16247,207230 ,1,16248,65 ,1,16249,65 ,1,16250,65 ,1,16251,230270 ,1,16252,290630 ,1,16253,281165 ,1,16254,219780 ,1,16255,284405 ,1,16256,337870 ,1,16257,65 ,1,16258,65 ,1,16259,271515 ,1,16260,65 ,1,16261,217715 ,1,16262,65 ,1,16263,216355 ,1,16264,65 ,1,16265,65 ,1,16266,182235 ,1,16267,191610 ,1,16268,316885 ,1,16269,65 ,1,16270,305275 ,1,16271,217395 ,1,16272,182595 ,1,16273,65 ,1,16274,65 ,1,16275,65 ,1,16276,193760 ,1,16277,307225 ,1,16278,65 ,1,16279,306730 ,1,16280,65 ,1,16281,220375 ,1,16282,65 ,1,16283,65 ,1,16284,277435 ,1,16285,65 ,1,16286,65 ,1,16287,65 ,1,16288,65 ,1,16289,65 ,1,16290,65 ,1,16291,65 ,1,16292,65 ,1,16293,65 ,1,16294,65 ,1,16295,189875 ,1,16296,65 ,1,16297,276935 ,1,16298,191770 ,1,16299,65 ,1,16300,65 ,1,16301,65 ,1,16302,65 ,1,16303,227535 ,1,16304,221620 ,1,16305,206535 ,1,16306,202510 ,1,16307,218140 ,1,16308,249015 ,1,16309,65 ,1,16310,312340 ,1,16311,304190 ,1,16312,65 ,1,16313,228655 ,1,16314,65 ,1,16315,65 ,1,16316,198570 ,1,16317,201365 ,1,16318,65 ,1,16319,65 ,1,16320,304770 ,1,16321,187600 ,1,16322,334985 ,1,16323,65 ,1,16324,65 ,1,16325,258250 ,1,16326,65 ,1,16327,65 ,1,16328,326550 ,1,16329,185690 ,1,16330,65 ,1,16331,65 ,1,16332,65 ,1,16333,65 ,1,16334,65 ,1,16335,65 ,1,16336,65 ,1,16337,65 ,1,16338,65 ,1,16339,65 ,1,16340,200630 ,1,16341,65 ,1,16342,192670 ,1,16343,65 ,1,16344,65 ,1,16345,65 ,1,16346,192700 ,1,16347,208980 ,1,16348,65 ,1,16349,230210 ,1,16350,65 ,1,16351,192170 ,1,16352,65 ,1,16353,297355 ,1,16354,294820 ,1,16355,65 ,1,16356,273900 ,1,16357,65 ,1,16358,234210 ,1,16359,65 ,1,16360,348170 ,1,16361,65 ,1,16362,65 ,1,16363,65 ,1,16364,309315 ,1,16365,191760 ,1,16366,311390 ,1,16367,65 ,1,16368,65 ,1,16369,186025 ,1,16370,239655 ,1,16371,217220 ,1,16372,65 ,1,16373,350115 ,1,16374,65 ,1,16375,65 ,1,16376,65 ,1,16377,65 ,1,16378,344395 ,1,16379,267725 ,1,16380,234125 ,1,16381,65 ,1,16382,213625 ,1,16383,65 ,1,16384,65 ,1,16385,65 ,1,16386,287795 ,1,16387,65 ,1,16388,65 ,1,16389,65 ,1,16390,345040 ,1,16391,65 ,1,16392,65 ,1,16393,308125 ,1,16394,170395 ,1,16395,65 ,1,16396,212060 ,1,16397,330955 ,1,16398,324355 ,1,16399,65 ,1,16400,65 ,1,16401,65 ,1,16402,65 ,1,16403,65 ,1,16404,65 ,1,16405,65 ,1,16406,65 ,1,16407,65 ,1,16408,65 ,1,16409,279605 ,1,16410,226265 ,1,16411,65 ,1,16412,65 ,1,16413,205735 ,1,16414,65 ,1,16415,65 ,1,16416,330495 ,1,16417,65 ,1,16418,239235 ,1,16419,65 ,1,16420,252750 ,1,16421,224960 ,1,16422,65 ,1,16423,228780 ,1,16424,250810 ,1,16425,191330 ,1,16426,275335 ,1,16427,208205 ,1,16428,65 ,1,16429,65 ,1,16430,65 ,1,16431,342550 ,1,16432,335360 ,1,16433,65 ,1,16434,65 ,1,16435,65 ,1,16436,206315 ,1,16437,65 ,1,16438,65 ,1,16439,65 ,1,16440,65 ,1,16441,310140 ,1,16442,203830 ,1,16443,237780 ,1,16444,262645 ,1,16445,224705 ,1,16446,320640 ,1,16447,350105 ,1,16448,287755 ,1,16449,204960 ,1,16450,210605 ,1,16451,174535 ,1,16452,196050 ,1,16453,247115 ,1,16454,65 ,1,16455,65 ,1,16456,65 ,1,16457,65 ,1,16458,65 ,1,16459,65 ,1,16460,65 ,1,16461,292580 ,1,16462,65 ,1,16463,186970 ,1,16464,317765 ,1,16465,65 ,1,16466,233785 ,1,16467,65 ,1,16468,219280 ,1,16469,340315 ,1,16470,301375 ,1,16471,65 ,1,16472,65 ,1,16473,295565 ,1,16474,65 ,1,16475,65 ,1,16476,228880 ,1,16477,65 ,1,16478,218615 ,1,16479,65 ,1,16480,65 ,1,16481,65 ,1,16482,65 ,1,16483,296265 ,1,16484,65 ,1,16485,65 ,1,16486,65 ,1,16487,330355 ,1,16488,204785 ,1,16489,250550 ,1,16490,213045 ,1,16491,65 ,1,16492,65 ,1,16493,65 ,1,16494,65 ,1,16495,65 ,1,16496,65 ,1,16497,243025 ,1,16498,65 ,1,16499,179680 ,1,16500,289000 ,1,16501,65 ,1,16502,65 ,1,16503,65 ,1,16504,65 ,1,16505,65 ,1,16506,65 ,1,16507,65 ,1,16508,303875 ,1,16509,278970 ,1,16510,65 ,1,16511,271010 ,1,16512,276605 ,1,16513,65 ,1,16514,299175 ,1,16515,65 ,1,16516,65 ,1,16517,341010 ,1,16518,65 ,1,16519,231295 ,1,16520,319275 ,1,16521,258830 ,1,16522,65 ,1,16523,65 ,1,16524,65 ,1,16525,65 ,1,16526,65 ,1,16527,65 ,1,16528,65 ,1,16529,264770 ,1,16530,65 ,1,16531,65 ,1,16532,344285 ,1,16533,65 ,1,16534,65 ,1,16535,65 ,1,16536,65 ,1,16537,311920 ,1,16538,337170 ,1,16539,325025 ,1,16540,166900 ,1,16541,65 ,1,16542,65 ,1,16543,65 ,1,16544,65 ,1,16545,65 ,1,16546,65 ,1,16547,323670 ,1,16548,217025 ,1,16549,65 ,1,16550,65 ,1,16551,65 ,1,16552,329600 ,1,16553,332340 ,1,16554,332310 ,1,16555,65 ,1,16556,65 ,1,16557,65 ,1,16558,65 ,1,16559,65 ,1,16560,181265 ,1,16561,254700 ,1,16562,212870 ,1,16563,207900 ,1,16564,248765 ,1,16565,280720 ,1,16566,65 ,1,16567,272135 ,1,16568,267830 ,1,16569,65 ,1,16570,65 ,1,16571,222040 ,1,16572,65 ,1,16573,65 ,1,16574,65 ,1,16575,186835 ,1,16576,65 ,1,16577,65 ,1,16578,236620 ,1,16579,65 ,1,16580,287240 ,1,16581,199760 ,1,16582,227740 ,1,16583,65 ,1,16584,243435 ,1,16585,176520 ,1,16586,65 ,1,16587,65 ,1,16588,65 ,1,16589,65 ,1,16590,65 ,1,16591,65 ,1,16592,65 ,1,16593,279450 ,1,16594,196870 ,1,16595,65 ,1,16596,65 ,1,16597,65 ,1,16598,274265 ,1,16599,313485 ,1,16600,65 ,1,16601,323870 ,1,16602,245855 ,1,16603,65 ,1,16604,65 ,1,16605,65 ,1,16606,201960 ,1,16607,190640 ,1,16608,167600 ,1,16609,204235 ,1,16610,178295 ,1,16611,65 ,1,16612,65 ,1,16613,65 ,1,16614,65 ,1,16615,65 ,1,16616,168750 ,1,16617,65 ,1,16618,276460 ,1,16619,65 ,1,16620,65 ,1,16621,214795 ,1,16622,258635 ,1,16623,65 ,1,16624,321830 ,1,16625,205260 ,1,16626,65 ,1,16627,313800 ,1,16628,65 ,1,16629,65 ,1,16630,65 ,1,16631,65 ,1,16632,65 ,1,16633,253700 ,1,16634,189495 ,1,16635,65 ,1,16636,65 ,1,16637,65 ,1,16638,65 ,1,16639,305110 ,1,16640,196150 ,1,16641,181685 ,1,16642,65 ,1,16643,237570 ,1,16644,344185 ,1,16645,215165 ,1,16646,235515 ,1,16647,65 ,1,16648,65 ,1,16649,241150 ,1,16650,186220 ,1,16651,318635 ,1,16652,65 ,1,16653,268935 ,1,16654,291910 ,1,16655,65 ,1,16656,341105 ,1,16657,65 ,1,16658,65 ,1,16659,187490 ,1,16660,234920 ,1,16661,65 ,1,16662,65 ,1,16663,65 ,1,16664,65 ,1,16665,216025 ,1,16666,65 ,1,16667,65 ,1,16668,65 ,1,16669,65 ,1,16670,65 ,1,16671,301435 ,1,16672,277725 ,1,16673,65 ,1,16674,230485 ,1,16675,65 ,1,16676,65 ,1,16677,323370 ,1,16678,331495 ,1,16679,65 ,1,16680,334675 ,1,16681,65 ,1,16682,65 ,1,16683,267865 ,1,16684,65 ,1,16685,65 ,1,16686,65 ,1,16687,321885 ,1,16688,323635 ,1,16689,65 ,1,16690,65 ,1,16691,257205 ,1,16692,65 ,1,16693,308225 ,1,16694,268995 ,1,16695,65 ,1,16696,264790 ,1,16697,65 ,1,16698,65 ,1,16699,326745 ,1,16700,65 ,1,16701,65 ,1,16702,65 ,1,16703,65 ,1,16704,65 ,1,16705,65 ,1,16706,65 ,1,16707,65 ,1,16708,183890 ,1,16709,275380 ,1,16710,65 ,1,16711,172315 ,1,16712,179575 ,1,16713,291025 ,1,16714,220410 ,1,16715,65 ,1,16716,277885 ,1,16717,65 ,1,16718,65 ,1,16719,65 ,1,16720,65 ,1,16721,65 ,1,16722,65 ,1,16723,65 ,1,16724,65 ,1,16725,207035 ,1,16726,65 ,1,16727,202000 ,1,16728,65 ,1,16729,65 ,1,16730,174995 ,1,16731,65 ,1,16732,196510 ,1,16733,274700 ,1,16734,239310 ,1,16735,233825 ,1,16736,329900 ,1,16737,249045 ,1,16738,317980 ,1,16739,172850 ,1,16740,65 ,1,16741,278045 ,1,16742,65 ,1,16743,65 ,1,16744,65 ,1,16745,209205 ,1,16746,65 ,1,16747,188345 ,1,16748,65 ,1,16749,327860 ,1,16750,65 ,1,16751,65 ,1,16752,65 ,1,16753,65 ,1,16754,65 ,1,16755,65 ,1,16756,65 ,1,16757,65 ,1,16758,310030 ,1,16759,65 ,1,16760,65 ,1,16761,270465 ,1,16762,65 ,1,16763,306740 ,1,16764,65 ,1,16765,238895 ,1,16766,65 ,1,16767,303020 ,1,16768,65 ,1,16769,65 ,1,16770,265210 ,1,16771,65 ,1,16772,65 ,1,16773,65 ,1,16774,65 ,1,16775,335390 ,1,16776,65 ,1,16777,315485 ,1,16778,65 ,1,16779,65 ,1,16780,65 ,1,16781,200370 ,1,16782,65 ,1,16783,65 ,1,16784,170105 ,1,16785,221450 ,1,16786,234200 ,1,16787,305175 ,1,16788,278005 ,1,16789,65 ,1,16790,174425 ,1,16791,174770 ,1,16792,65 ,1,16793,65 ,1,16794,210025 ,1,16795,342185 ,1,16796,65 ,1,16797,65 ,1,16798,65 ,1,16799,240615 ,1,16800,65 ,1,16801,65 ,1,16802,252875 ,1,16803,65 ,1,16804,65 ,1,16805,274630 ,1,16806,65 ,1,16807,284435 ,1,16808,65 ,1,16809,65 ,1,16810,212530 ,1,16811,65 ,1,16812,65 ,1,16813,65 ,1,16814,65 ,1,16815,65 ,1,16816,65 ,1,16817,65 ,1,16818,257910 ,1,16819,231740 ,1,16820,65 ,1,16821,222875 ,1,16822,65 ,1,16823,65 ,1,16824,292050 ,1,16825,65 ,1,16826,228500 ,1,16827,173705 ,1,16828,65 ,1,16829,65 ,1,16830,65 ,1,16831,65 ,1,16832,65 ,1,16833,65 ,1,16834,65 ,1,16835,65 ,1,16836,291800 ,1,16837,65 ,1,16838,65 ,1,16839,65 ,1,16840,65 ,1,16841,258190 ,1,16842,65 ,1,16843,242195 ,1,16844,65 ,1,16845,65 ,1,16846,65 ,1,16847,65 ,1,16848,65 ,1,16849,65 ,1,16850,220365 ,1,16851,65 ,1,16852,65 ,1,16853,193660 ,1,16854,286120 ,1,16855,216895 ,1,16856,315475 ,1,16857,65 ,1,16858,65 ,1,16859,65 ,1,16860,223460 ,1,16861,65 ,1,16862,211015 ,1,16863,339495 ,1,16864,324600 ,1,16865,347700 ,1,16866,65 ,1,16867,65 ,1,16868,308860 ,1,16869,65 ,1,16870,65 ,1,16871,65 ,1,16872,325780 ,1,16873,65 ,1,16874,65 ,1,16875,65 ,1,16876,65 ,1,16877,197610 ,1,16878,65 ,1,16879,65 ,1,16880,65 ,1,16881,65 ,1,16882,223385 ,1,16883,65 ,1,16884,65 ,1,16885,241220 ,1,16886,339715 ,1,16887,65 ,1,16888,65 ,1,16889,65 ,1,16890,65 ,1,16891,65 ,1,16892,65 ,1,16893,65 ,1,16894,65 ,1,16895,65 ,1,16896,65 ,1,16897,65 ,1,16898,330820 ,1,16899,287475 ,1,16900,65 ,1,16901,292635 ,1,16902,65 ,1,16903,65 ,1,16904,65 ,1,16905,65 ,1,16906,263720 ,1,16907,65 ,1,16908,65 ,1,16909,333405 ,1,16910,323785 ,1,16911,65 ,1,16912,303130 ,1,16913,211310 ,1,16914,320460 ,1,16915,65 ,1,16916,268680 ,1,16917,65 ,1,16918,65 ,1,16919,291275 ,1,16920,207760 ,1,16921,65 ,1,16922,65 ,1,16923,65 ,1,16924,65 ,1,16925,282435 ,1,16926,65 ,1,16927,65 ,1,16928,65 ,1,16929,65 ,1,16930,65 ,1,16931,248375 ,1,16932,65 ,1,16933,65 ,1,16934,65 ,1,16935,211720 ,1,16936,65 ,1,16937,65 ,1,16938,307325 ,1,16939,206860 ,1,16940,65 ,1,16941,307135 ,1,16942,65 ,1,16943,231905 ,1,16944,328780 ,1,16945,65 ,1,16946,200150 ,1,16947,65 ,1,16948,65 ,1,16949,306315 ,1,16950,65 ,1,16951,193640 ,1,16952,65 ,1,16953,250940 ,1,16954,65 ,1,16955,65 ,1,16956,318410 ,1,16957,65 ,1,16958,65 ,1,16959,65 ,1,16960,65 ,1,16961,324415 ,1,16962,272385 ,1,16963,260340 ,1,16964,65 ,1,16965,65 ,1,16966,65 ,1,16967,65 ,1,16968,65 ,1,16969,65 ,1,16970,279825 ,1,16971,171605 ,1,16972,199770 ,1,16973,262870 ,1,16974,251940 ,1,16975,209195 ,1,16976,65 ,1,16977,65 ,1,16978,65 ,1,16979,65 ,1,16980,65 ,1,16981,237100 ,1,16982,65 ,1,16983,350095 ,1,16984,65 ,1,16985,65 ,1,16986,65 ,1,16987,65 ,1,16988,65 ,1,16989,191870 ,1,16990,174790 ,1,16991,65 ,1,16992,270275 ,1,16993,347430 ,1,16994,250780 ,1,16995,65 ,1,16996,259370 ,1,16997,223405 ,1,16998,331865 ,1,16999,65 ,1,17000,65 ,1,17001,65 ,1,17002,65 ,1,17003,65 ,1,17004,65 ,1,17005,326510 ,1,17006,65 ,1,17007,65 ,1,17008,65 ,1,17009,65 ,1,17010,65 ,1,17011,177115 ,1,17012,333180 ,1,17013,65 ,1,17014,65 ,1,17015,65 ,1,17016,312600 ,1,17017,236980 ,1,17018,253255 ,1,17019,65 ,1,17020,65 ,1,17021,65 ,1,17022,65 ,1,17023,65 ,1,17024,65 ,1,17025,65 ,1,17026,65 ,1,17027,65 ,1,17028,65 ,1,17029,176140 ,1,17030,65 ,1,17031,249560 ,1,17032,65 ,1,17033,65 ,1,17034,223580 ,1,17035,65 ,1,17036,244855 ,1,17037,338685 ,1,17038,65 ,1,17039,65 ,1,17040,280660 ,1,17041,171055 ,1,17042,65 ,1,17043,268100 ,1,17044,191465 ,1,17045,177790 ,1,17046,65 ,1,17047,205700 ,1,17048,65 ,1,17049,65 ,1,17050,65 ,1,17051,65 ,1,17052,65 ,1,17053,65 ,1,17054,65 ,1,17055,65 ,1,17056,65 ,1,17057,65 ,1,17058,65 ,1,17059,65 ,1,17060,65 ,1,17061,65 ,1,17062,320845 ,1,17063,65 ,1,17064,65 ,1,17065,65 ,1,17066,65 ,1,17067,65 ,1,17068,65 ,1,17069,65 ,1,17070,328165 ,1,17071,171555 ,1,17072,65 ,1,17073,65 ,1,17074,65 ,1,17075,65 ,1,17076,347120 ,1,17077,65 ,1,17078,251845 ,1,17079,65 ,1,17080,344840 ,1,17081,65 ,1,17082,65 ,1,17083,65 ,1,17084,65 ,1,17085,65 ,1,17086,259075 ,1,17087,269685 ,1,17088,228760 ,1,17089,196915 ,1,17090,277445 ,1,17091,65 ,1,17092,340550 ,1,17093,214705 ,1,17094,65 ,1,17095,65 ,1,17096,65 ,1,17097,276880 ,1,17098,65 ,1,17099,278075 ,1,17100,65 ,1,17101,220185 ,1,17102,65 ,1,17103,305480 ,1,17104,285895 ,1,17105,343760 ,1,17106,65 ,1,17107,65 ,1,17108,65 ,1,17109,342825 ,1,17110,65 ,1,17111,184415 ,1,17112,65 ,1,17113,269295 ,1,17114,65 ,1,17115,65 ,1,17116,292475 ,1,17117,65 ,1,17118,65 ,1,17119,65 ,1,17120,65 ,1,17121,65 ,1,17122,207910 ,1,17123,65 ,1,17124,65 ,1,17125,65 ,1,17126,215120 ,1,17127,254035 ,1,17128,304740 ,1,17129,194650 ,1,17130,65 ,1,17131,316545 ,1,17132,65 ,1,17133,65 ,1,17134,65 ,1,17135,65 ,1,17136,326375 ,1,17137,65 ,1,17138,65 ,1,17139,65 ,1,17140,65 ,1,17141,197160 ,1,17142,65 ,1,17143,201520 ,1,17144,65 ,1,17145,65 ,1,17146,65 ,1,17147,65 ,1,17148,288235 ,1,17149,65 ,1,17150,191685 ,1,17151,65 ,1,17152,65 ,1,17153,65 ,1,17154,65 ,1,17155,204545 ,1,17156,65 ,1,17157,264985 ,1,17158,65 ,1,17159,290320 ,1,17160,309355 ,1,17161,178885 ,1,17162,212775 ,1,17163,65 ,1,17164,65 ,1,17165,65 ,1,17166,65 ,1,17167,65 ,1,17168,65 ,1,17169,296795 ,1,17170,169755 ,1,17171,65 ,1,17172,65 ,1,17173,256120 ,1,17174,65 ,1,17175,65 ,1,17176,174300 ,1,17177,65 ,1,17178,291080 ,1,17179,65 ,1,17180,65 ,1,17181,65 ,1,17182,65 ,1,17183,285455 ,1,17184,65 ,1,17185,65 ,1,17186,65 ,1,17187,190670 ,1,17188,171565 ,1,17189,65 ,1,17190,328585 ,1,17191,65 ,1,17192,255325 ,1,17193,271725 ,1,17194,65 ,1,17195,65 ,1,17196,65 ,1,17197,65 ,1,17198,211210 ,1,17199,65 ,1,17200,65 ,1,17201,65 ,1,17202,65 ,1,17203,244075 ,1,17204,313900 ,1,17205,65 ,1,17206,329590 ,1,17207,219695 ,1,17208,65 ,1,17209,65 ,1,17210,65 ,1,17211,212280 ,1,17212,65 ,1,17213,65 ,1,17214,65 ,1,17215,65 ,1,17216,65 ,1,17217,65 ,1,17218,65 ,1,17219,247140 ,1,17220,294065 ,1,17221,65 ,1,17222,65 ,1,17223,65 ,1,17224,210000 ,1,17225,65 ,1,17226,65 ,1,17227,242945 ,1,17228,65 ,1,17229,65 ,1,17230,65 ,1,17231,65 ,1,17232,350080 ,1,17233,287660 ,1,17234,65 ,1,17235,65 ,1,17236,65 ,1,17237,166965 ,1,17238,310090 ,1,17239,197820 ,1,17240,65 ,1,17241,204225 ,1,17242,265110 ,1,17243,283620 ,1,17244,312825 ,1,17245,65 ,1,17246,65 ,1,17247,298140 ,1,17248,339290 ,1,17249,310130 ,1,17250,65 ,1,17251,65 ,1,17252,65 ,1,17253,291150 ,1,17254,65 ,1,17255,289130 ,1,17256,65 ,1,17257,180045 ,1,17258,313840 ,1,17259,65 ,1,17260,65 ,1,17261,65 ,1,17262,65 ,1,17263,320925 ,1,17264,258435 ,1,17265,65 ,1,17266,65 ,1,17267,65 ,1,17268,65 ,1,17269,280165 ,1,17270,65 ,1,17271,222255 ,1,17272,301885 ,1,17273,244660 ,1,17274,257875 ,1,17275,346070 ,1,17276,65 ,1,17277,65 ,1,17278,65 ,1,17279,65 ,1,17280,216345 ,1,17281,65 ,1,17282,176965 ,1,17283,65 ,1,17284,294380 ,1,17285,301740 ,1,17286,340250 ,1,17287,345060 ,1,17288,294235 ,1,17289,65 ,1,17290,65 ,1,17291,65 ,1,17292,65 ,1,17293,65 ,1,17294,297195 ,1,17295,65 ,1,17296,65 ,1,17297,192300 ,1,17298,251035 ,1,17299,65 ,1,17300,207780 ,1,17301,286855 ,1,17302,233240 ,1,17303,65 ,1,17304,65 ,1,17305,65 ,1,17306,334515 ,1,17307,65 ,1,17308,65 ,1,17309,233390 ,1,17310,332680 ,1,17311,65 ,1,17312,65 ,1,17313,65 ,1,17314,65 ,1,17315,65 ,1,17316,168225 ,1,17317,236275 ,1,17318,314770 ,1,17319,297275 ,1,17320,201850 ,1,17321,65 ,1,17322,223340 ,1,17323,65 ,1,17324,315165 ,1,17325,65 ,1,17326,179220 ,1,17327,238925 ,1,17328,215130 ,1,17329,65 ,1,17330,65 ,1,17331,65 ,1,17332,301750 ,1,17333,65 ,1,17334,270990 ,1,17335,65 ,1,17336,65 ,1,17337,65 ,1,17338,65 ,1,17339,65 ,1,17340,65 ,1,17341,312895 ,1,17342,65 ,1,17343,65 ,1,17344,65 ,1,17345,328805 ,1,17346,65 ,1,17347,218585 ,1,17348,65 ,1,17349,65 ,1,17350,253825 ,1,17351,315030 ,1,17352,65 ,1,17353,65 ,1,17354,65 ,1,17355,65 ,1,17356,65 ,1,17357,316920 ,1,17358,242785 ,1,17359,270665 ,1,17360,65 ,1,17361,222000 ,1,17362,340955 ,1,17363,202880 ,1,17364,263785 ,1,17365,234705 ,1,17366,65 ,1,17367,65 ,1,17368,65 ,1,17369,350070 ,1,17370,326255 ,1,17371,258415 ,1,17372,177065 ,1,17373,212630 ,1,17374,220970 ,1,17375,309620 ,1,17376,65 ,1,17377,65 ,1,17378,65 ,1,17379,336585 ,1,17380,65 ,1,17381,239055 ,1,17382,65 ,1,17383,65 ,1,17384,65 ,1,17385,276425 ,1,17386,305780 ,1,17387,260970 ,1,17388,65 ,1,17389,317950 ,1,17390,263445 ,1,17391,65 ,1,17392,65 ,1,17393,328630 ,1,17394,176240 ,1,17395,188480 ,1,17396,65 ,1,17397,261540 ,1,17398,65 ,1,17399,193005 ,1,17400,205970 ,1,17401,65 ,1,17402,220515 ,1,17403,65 ,1,17404,65 ,1,17405,65 ,1,17406,347100 ,1,17407,293605 ,1,17408,65 ,1,17409,65 ,1,17410,65 ,1,17411,273270 ,1,17412,65 ,1,17413,293380 ,1,17414,267715 ,1,17415,284485 ,1,17416,227050 ,1,17417,309670 ,1,17418,261480 ,1,17419,259065 ,1,17420,261340 ,1,17421,267385 ,1,17422,65 ,1,17423,295195 ,1,17424,65 ,1,17425,65 ,1,17426,346335 ,1,17427,314950 ,1,17428,65 ,1,17429,65 ,1,17430,65 ,1,17431,65 ,1,17432,192535 ,1,17433,65 ,1,17434,65 ,1,17435,277545 ,1,17436,221680 ,1,17437,199425 ,1,17438,199335 ,1,17439,218845 ,1,17440,286615 ,1,17441,272405 ,1,17442,195190 ,1,17443,65 ,1,17444,322135 ,1,17445,65 ,1,17446,65 ,1,17447,65 ,1,17448,65 ,1,17449,65 ,1,17450,237790 ,1,17451,208955 ,1,17452,65 ,1,17453,65 ,1,17454,197900 ,1,17455,65 ,1,17456,234595 ,1,17457,276230 ,1,17458,65 ,1,17459,247680 ,1,17460,65 ,1,17461,312660 ,1,17462,65 ,1,17463,65 ,1,17464,65 ,1,17465,65 ,1,17466,65 ,1,17467,252285 ,1,17468,65 ,1,17469,338040 ,1,17470,65 ,1,17471,220115 ,1,17472,251305 ,1,17473,182575 ,1,17474,65 ,1,17475,65 ,1,17476,65 ,1,17477,65 ,1,17478,65 ,1,17479,206445 ,1,17480,65 ,1,17481,65 ,1,17482,65 ,1,17483,65 ,1,17484,256975 ,1,17485,224865 ,1,17486,65 ,1,17487,65 ,1,17488,65 ,1,17489,262405 ,1,17490,308985 ,1,17491,219595 ,1,17492,65 ,1,17493,203580 ,1,17494,340095 ,1,17495,65 ,1,17496,65 ,1,17497,345100 ,1,17498,65 ,1,17499,65 ,1,17500,65 ,1,17501,189810 ,1,17502,290925 ,1,17503,314095 ,1,17504,202810 ,1,17505,341980 ,1,17506,275130 ,1,17507,65 ,1,17508,65 ,1,17509,65 ,1,17510,65 ,1,17511,65 ,1,17512,65 ,1,17513,65 ,1,17514,65 ,1,17515,65 ,1,17516,304415 ,1,17517,350060 ,1,17518,65 ,1,17519,288305 ,1,17520,171715 ,1,17521,65 ,1,17522,264425 ,1,17523,65 ,1,17524,65 ,1,17525,218900 ,1,17526,330640 ,1,17527,237300 ,1,17528,65 ,1,17529,283880 ,1,17530,253035 ,1,17531,65 ,1,17532,260640 ,1,17533,65 ,1,17534,227360 ,1,17535,242340 ,1,17536,227420 ,1,17537,65 ,1,17538,65 ,1,17539,345890 ,1,17540,65 ,1,17541,65 ,1,17542,65 ,1,17543,65 ,1,17544,276145 ,1,17545,65 ,1,17546,65 ,1,17547,65 ,1,17548,65 ,1,17549,324970 ,1,17550,65 ,1,17551,350050 ,1,17552,286225 ,1,17553,65 ,1,17554,65 ,1,17555,65 ,1,17556,65 ,1,17557,65 ,1,17558,65 ,1,17559,65 ,1,17560,350040 ,1,17561,170020 ,1,17562,233180 ,1,17563,257280 ,1,17564,313700 ,1,17565,187420 ,1,17566,65 ,1,17567,65 ,1,17568,65 ,1,17569,213290 ,1,17570,65 ,1,17571,193250 ,1,17572,282230 ,1,17573,336740 ,1,17574,65 ,1,17575,65 ,1,17576,65 ,1,17577,65 ,1,17578,65 ,1,17579,204835 ,1,17580,65 ,1,17581,65 ,1,17582,65 ,1,17583,65 ,1,17584,212510 ,1,17585,65 ,1,17586,336960 ,1,17587,65 ,1,17588,65 ,1,17589,315230 ,1,17590,65 ,1,17591,65 ,1,17592,241065 ,1,17593,295515 ,1,17594,65 ,1,17595,65 ,1,17596,65 ,1,17597,239690 ,1,17598,298530 ,1,17599,231440 ,1,17600,335750 ,1,17601,65 ,1,17602,307080 ,1,17603,322925 ,1,17604,65 ,1,17605,331335 ,1,17606,65 ,1,17607,217995 ,1,17608,65 ,1,17609,65 ,1,17610,287345 ,1,17611,324910 ,1,17612,248365 ,1,17613,65 ,1,17614,65 ,1,17615,189335 ,1,17616,65 ,1,17617,65 ,1,17618,333780 ,1,17619,65 ,1,17620,65 ,1,17621,65 ,1,17622,65 ,1,17623,65 ,1,17624,65 ,1,17625,65 ,1,17626,65 ,1,17627,261260 ,1,17628,65 ,1,17629,287555 ,1,17630,65 ,1,17631,270025 ,1,17632,65 ,1,17633,65 ,1,17634,65 ,1,17635,214715 ,1,17636,65 ,1,17637,65 ,1,17638,347925 ,1,17639,331090 ,1,17640,65 ,1,17641,65 ,1,17642,65 ,1,17643,189175 ,1,17644,305385 ,1,17645,333920 ,1,17646,282935 ,1,17647,344035 ,1,17648,330535 ,1,17649,241940 ,1,17650,65 ,1,17651,65 ,1,17652,311140 ,1,17653,65 ,1,17654,65 ,1,17655,201375 ,1,17656,65 ,1,17657,65 ,1,17658,65 ,1,17659,65 ,1,17660,65 ,1,17661,329050 ,1,17662,65 ,1,17663,65 ,1,17664,65 ,1,17665,65 ,1,17666,323690 ,1,17667,298800 ,1,17668,305620 ,1,17669,65 ,1,17670,65 ,1,17671,284630 ,1,17672,345215 ,1,17673,65 ,1,17674,351700 ,1,17675,328375 ,1,17676,65 ,1,17677,65 ,1,17678,304615 ,1,17679,65 ,1,17680,65 ,1,17681,65 ,1,17682,223535 ,1,17683,65 ,1,17684,170230 ,1,17685,178380 ,1,17686,65 ,1,17687,221060 ,1,17688,65 ,1,17689,231510 ,1,17690,338535 ,1,17691,65 ,1,17692,199595 ,1,17693,65 ,1,17694,65 ,1,17695,240020 ,1,17696,65 ,1,17697,65 ,1,17698,65 ,1,17699,225370 ,1,17700,65 ,1,17701,201300 ,1,17702,65 ,1,17703,65 ,1,17704,65 ,1,17705,65 ,1,17706,297850 ,1,17707,65 ,1,17708,65 ,1,17709,183355 ,1,17710,65 ,1,17711,65 ,1,17712,175255 ,1,17713,279105 ,1,17714,65 ,1,17715,235975 ,1,17716,65 ,1,17717,318295 ,1,17718,65 ,1,17719,65 ,1,17720,65 ,1,17721,65 ,1,17722,314535 ,1,17723,334915 ,1,17724,275525 ,1,17725,65 ,1,17726,65 ,1,17727,65 ,1,17728,65 ,1,17729,65 ,1,17730,65 ,1,17731,279545 ,1,17732,65 ,1,17733,220755 ,1,17734,65 ,1,17735,65 ,1,17736,264635 ,1,17737,219185 ,1,17738,294330 ,1,17739,203335 ,1,17740,314585 ,1,17741,65 ,1,17742,65 ,1,17743,65 ,1,17744,65 ,1,17745,65 ,1,17746,264475 ,1,17747,65 ,1,17748,65 ,1,17749,65 ,1,17750,65 ,1,17751,65 ,1,17752,181300 ,1,17753,65 ,1,17754,334810 ,1,17755,304040 ,1,17756,65 ,1,17757,304030 ,1,17758,65 ,1,17759,65 ,1,17760,65 ,1,17761,65 ,1,17762,65 ,1,17763,65 ,1,17764,65 ,1,17765,65 ,1,17766,65 ,1,17767,65 ,1,17768,65 ,1,17769,347720 ,1,17770,65 ,1,17771,65 ,1,17772,304170 ,1,17773,65 ,1,17774,65 ,1,17775,65 ,1,17776,65 ,1,17777,194630 ,1,17778,186855 ,1,17779,65 ,1,17780,229975 ,1,17781,335930 ,1,17782,65 ,1,17783,65 ,1,17784,249055 ,1,17785,65 ,1,17786,65 ,1,17787,65 ,1,17788,350030 ,1,17789,273650 ,1,17790,208575 ,1,17791,311185 ,1,17792,65 ,1,17793,327790 ,1,17794,276965 ,1,17795,65 ,1,17796,217810 ,1,17797,65 ,1,17798,65 ,1,17799,179050 ,1,17800,65 ,1,17801,65 ,1,17802,65 ,1,17803,334415 ,1,17804,169080 ,1,17805,65 ,1,17806,65 ,1,17807,232665 ,1,17808,65 ,1,17809,65 ,1,17810,348295 ,1,17811,244175 ,1,17812,65 ,1,17813,65 ,1,17814,65 ,1,17815,65 ,1,17816,65 ,1,17817,246015 ,1,17818,186455 ,1,17819,261565 ,1,17820,65 ,1,17821,327550 ,1,17822,65 ,1,17823,65 ,1,17824,65 ,1,17825,172895 ,1,17826,244620 ,1,17827,271215 ,1,17828,65 ,1,17829,65 ,1,17830,220610 ,1,17831,65 ,1,17832,65 ,1,17833,65 ,1,17834,65 ,1,17835,65 ,1,17836,65 ,1,17837,65 ,1,17838,191285 ,1,17839,65 ,1,17840,273380 ,1,17841,65 ,1,17842,239780 ,1,17843,265430 ,1,17844,65 ,1,17845,65 ,1,17846,65 ,1,17847,65 ,1,17848,285320 ,1,17849,65 ,1,17850,65 ,1,17851,65 ,1,17852,316565 ,1,17853,244810 ,1,17854,65 ,1,17855,65 ,1,17856,65 ,1,17857,306475 ,1,17858,266285 ,1,17859,273970 ,1,17860,65 ,1,17861,208290 ,1,17862,288175 ,1,17863,65 ,1,17864,290870 ,1,17865,65 ,1,17866,65 ,1,17867,65 ,1,17868,65 ,1,17869,178575 ,1,17870,268925 ,1,17871,65 ,1,17872,65 ,1,17873,65 ,1,17874,65 ,1,17875,65 ,1,17876,309365 ,1,17877,65 ,1,17878,65 ,1,17879,65 ,1,17880,65 ,1,17881,213365 ,1,17882,65 ,1,17883,65 ,1,17884,65 ,1,17885,65 ,1,17886,65 ,1,17887,251160 ,1,17888,65 ,1,17889,65 ,1,17890,65 ,1,17891,65 ,1,17892,65 ,1,17893,65 ,1,17894,65 ,1,17895,65 ,1,17896,65 ,1,17897,65 ,1,17898,265260 ,1,17899,221900 ,1,17900,204450 ,1,17901,65 ,1,17902,65 ,1,17903,65 ,1,17904,199225 ,1,17905,65 ,1,17906,274880 ,1,17907,179995 ,1,17908,212660 ,1,17909,337850 ,1,17910,321685 ,1,17911,65 ,1,17912,65 ,1,17913,65 ,1,17914,167215 ,1,17915,260595 ,1,17916,65 ,1,17917,230295 ,1,17918,65 ,1,17919,190790 ,1,17920,270600 ,1,17921,209225 ,1,17922,65 ,1,17923,65 ,1,17924,65 ,1,17925,65 ,1,17926,65 ,1,17927,224215 ,1,17928,65 ,1,17929,65 ,1,17930,65 ,1,17931,65 ,1,17932,221410 ,1,17933,265905 ,1,17934,65 ,1,17935,65 ,1,17936,65 ,1,17937,65 ,1,17938,284285 ,1,17939,65 ,1,17940,65 ,1,17941,238730 ,1,17942,324960 ,1,17943,65 ,1,17944,322315 ,1,17945,65 ,1,17946,65 ,1,17947,195505 ,1,17948,65 ,1,17949,65 ,1,17950,65 ,1,17951,184325 ,1,17952,65 ,1,17953,222350 ,1,17954,65 ,1,17955,264295 ,1,17956,335605 ,1,17957,280605 ,1,17958,207700 ,1,17959,65 ,1,17960,284020 ,1,17961,65 ,1,17962,65 ,1,17963,65 ,1,17964,329260 ,1,17965,250745 ,1,17966,329730 ,1,17967,189715 ,1,17968,65 ,1,17969,217500 ,1,17970,65 ,1,17971,65 ,1,17972,65 ,1,17973,65 ,1,17974,250570 ,1,17975,173505 ,1,17976,65 ,1,17977,65 ,1,17978,65 ,1,17979,274245 ,1,17980,65 ,1,17981,65 ,1,17982,65 ,1,17983,65 ,1,17984,65 ,1,17985,65 ,1,17986,65 ,1,17987,65 ,1,17988,65 ,1,17989,65 ,1,17990,65 ,1,17991,65 ,1,17992,65 ,1,17993,206870 ,1,17994,257440 ,1,17995,65 ,1,17996,193975 ,1,17997,274430 ,1,17998,65 ,1,17999,247360 ,1,18000,65 ,1,18001,65 ,1,18002,65 ,1,18003,198270 ,1,18004,276415 ,1,18005,332430 ,1,18006,65 ,1,18007,65 ,1,18008,266360 ,1,18009,65 ,1,18010,65 ,1,18011,285105 ,1,18012,348190 ,1,18013,231250 ,1,18014,65 ,1,18015,306630 ,1,18016,329020 ,1,18017,170775 ,1,18018,205625 ,1,18019,65 ,1,18020,65 ,1,18021,211440 ,1,18022,222595 ,1,18023,65 ,1,18024,65 ,1,18025,65 ,1,18026,65 ,1,18027,219665 ,1,18028,65 ,1,18029,305980 ,1,18030,65 ,1,18031,231110 ,1,18032,65 ,1,18033,65 ,1,18034,65 ,1,18035,65 ,1,18036,65 ,1,18037,65 ,1,18038,65 ,1,18039,65 ,1,18040,65 ,1,18041,65 ,1,18042,65 ,1,18043,65 ,1,18044,280875 ,1,18045,65 ,1,18046,335255 ,1,18047,65 ,1,18048,65 ,1,18049,65 ,1,18050,65 ,1,18051,65 ,1,18052,346240 ,1,18053,65 ,1,18054,65 ,1,18055,65 ,1,18056,65 ,1,18057,65 ,1,18058,65 ,1,18059,65 ,1,18060,301705 ,1,18061,65 ,1,18062,65 ,1,18063,266795 ,1,18064,225975 ,1,18065,65 ,1,18066,65 ,1,18067,185660 ,1,18068,65 ,1,18069,65 ,1,18070,65 ,1,18071,226855 ,1,18072,65 ,1,18073,173735 ,1,18074,65 ,1,18075,65 ,1,18076,205645 ,1,18077,65 ,1,18078,65 ,1,18079,65 ,1,18080,350020 ,1,18081,65 ,1,18082,65 ,1,18083,65 ,1,18084,297625 ,1,18085,65 ,1,18086,65 ,1,18087,65 ,1,18088,65 ,1,18089,336520 ,1,18090,65 ,1,18091,202380 ,1,18092,227620 ,1,18093,65 ,1,18094,65 ,1,18095,65 ,1,18096,65 ,1,18097,65 ,1,18098,253575 ,1,18099,217555 ,1,18100,65 ,1,18101,250335 ,1,18102,342095 ,1,18103,209800 ,1,18104,284615 ,1,18105,65 ,1,18106,264995 ,1,18107,65 ,1,18108,255920 ,1,18109,166620 ,1,18110,65 ,1,18111,244950 ,1,18112,65 ,1,18113,65 ,1,18114,65 ,1,18115,65 ,1,18116,217695 ,1,18117,65 ,1,18118,182735 ,1,18119,65 ,1,18120,65 ,1,18121,65 ,1,18122,345565 ,1,18123,65 ,1,18124,65 ,1,18125,234520 ,1,18126,288685 ,1,18127,65 ,1,18128,329700 ,1,18129,65 ,1,18130,65 ,1,18131,260275 ,1,18132,169735 ,1,18133,65 ,1,18134,244105 ,1,18135,65 ,1,18136,229680 ,1,18137,344295 ,1,18138,343790 ,1,18139,65 ,1,18140,182685 ,1,18141,65 ,1,18142,65 ,1,18143,65 ,1,18144,65 ,1,18145,65 ,1,18146,65 ,1,18147,65 ,1,18148,65 ,1,18149,65 ,1,18150,216750 ,1,18151,65 ,1,18152,316330 ,1,18153,65 ,1,18154,302485 ,1,18155,65 ,1,18156,65 ,1,18157,65 ,1,18158,65 ,1,18159,65 ,1,18160,236125 ,1,18161,202900 ,1,18162,65 ,1,18163,291125 ,1,18164,200040 ,1,18165,257895 ,1,18166,288085 ,1,18167,65 ,1,18168,223175 ,1,18169,347215 ,1,18170,65 ,1,18171,350010 ,1,18172,65 ,1,18173,65 ,1,18174,195530 ,1,18175,65 ,1,18176,65 ,1,18177,199875 ,1,18178,214625 ,1,18179,65 ,1,18180,65 ,1,18181,347375 ,1,18182,65 ,1,18183,65 ,1,18184,65 ,1,18185,65 ,1,18186,209685 ,1,18187,65 ,1,18188,223375 ,1,18189,65 ,1,18190,65 ,1,18191,65 ,1,18192,227340 ,1,18193,215505 ,1,18194,272000 ,1,18195,65 ,1,18196,65 ,1,18197,326305 ,1,18198,65 ,1,18199,65 ,1,18200,65 ,1,18201,348135 ,1,18202,248210 ,1,18203,341305 ,1,18204,273480 ,1,18205,298395 ,1,18206,65 ,1,18207,65 ,1,18208,65 ,1,18209,65 ,1,18210,65 ,1,18211,180540 ,1,18212,256635 ,1,18213,208195 ,1,18214,285855 ,1,18215,324275 ,1,18216,65 ,1,18217,208735 ,1,18218,65 ,1,18219,65 ,1,18220,65 ,1,18221,65 ,1,18222,309270 ,1,18223,65 ,1,18224,310530 ,1,18225,65 ,1,18226,305165 ,1,18227,314205 ,1,18228,65 ,1,18229,65 ,1,18230,328875 ,1,18231,264570 ,1,18232,65 ,1,18233,65 ,1,18234,65 ,1,18235,65 ,1,18236,255265 ,1,18237,65 ,1,18238,65 ,1,18239,65 ,1,18240,65 ,1,18241,65 ,1,18242,65 ,1,18243,65 ,1,18244,65 ,1,18245,65 ,1,18246,65 ,1,18247,225805 ,1,18248,65 ,1,18249,65 ,1,18250,318925 ,1,18251,65 ,1,18252,65 ,1,18253,65 ,1,18254,65 ,1,18255,65 ,1,18256,65 ,1,18257,258145 ,1,18258,65 ,1,18259,65 ,1,18260,65 ,1,18261,269810 ,1,18262,252535 ,1,18263,65 ,1,18264,65 ,1,18265,318480 ,1,18266,65 ,1,18267,343835 ,1,18268,65 ,1,18269,65 ,1,18270,65 ,1,18271,183450 ,1,18272,65 ,1,18273,65 ,1,18274,65 ,1,18275,65 ,1,18276,65 ,1,18277,319690 ,1,18278,65 ,1,18279,220085 ,1,18280,65 ,1,18281,168315 ,1,18282,65 ,1,18283,233565 ,1,18284,65 ,1,18285,65 ,1,18286,65 ,1,18287,251950 ,1,18288,65 ,1,18289,65 ,1,18290,323360 ,1,18291,65 ,1,18292,65 ,1,18293,173370 ,1,18294,227845 ,1,18295,65 ,1,18296,209000 ,1,18297,196030 ,1,18298,181155 ,1,18299,173310 ,1,18300,327175 ,1,18301,243970 ,1,18302,65 ,1,18303,185390 ,1,18304,65 ,1,18305,65 ,1,18306,65 ,1,18307,219145 ,1,18308,65 ,1,18309,65 ,1,18310,65 ,1,18311,65 ,1,18312,65 ,1,18313,323410 ,1,18314,65 ,1,18315,65 ,1,18316,65 ,1,18317,65 ,1,18318,293235 ,1,18319,65 ,1,18320,65 ,1,18321,65 ,1,18322,65 ,1,18323,65 ,1,18324,65 ,1,18325,65 ,1,18326,65 ,1,18327,349975 ,1,18328,255220 ,1,18329,199075 ,1,18330,65 ,1,18331,268600 ,1,18332,65 ,1,18333,275170 ,1,18334,65 ,1,18335,65 ,1,18336,65 ,1,18337,65 ,1,18338,194125 ,1,18339,65 ,1,18340,257500 ,1,18341,173650 ,1,18342,292125 ,1,18343,65 ,1,18344,224145 ,1,18345,65 ,1,18346,65 ,1,18347,65 ,1,18348,304380 ,1,18349,254585 ,1,18350,215150 ,1,18351,205195 ,1,18352,65 ,1,18353,65 ,1,18354,65 ,1,18355,266145 ,1,18356,65 ,1,18357,65 ,1,18358,65 ,1,18359,272190 ,1,18360,65 ,1,18361,65 ,1,18362,319295 ,1,18363,65 ,1,18364,185355 ,1,18365,320760 ,1,18366,65 ,1,18367,271925 ,1,18368,65 ,1,18369,65 ,1,18370,307255 ,1,18371,65 ,1,18372,65 ,1,18373,65 ,1,18374,65 ,1,18375,65 ,1,18376,191115 ,1,18377,65 ,1,18378,65 ,1,18379,65 ,1,18380,65 ,1,18381,65 ,1,18382,65 ,1,18383,65 ,1,18384,197025 ,1,18385,343800 ,1,18386,65 ,1,18387,65 ,1,18388,331395 ,1,18389,65 ,1,18390,220640 ,1,18391,65 ,1,18392,65 ,1,18393,349965 ,1,18394,318355 ,1,18395,299930 ,1,18396,167525 ,1,18397,289525 ,1,18398,220430 ,1,18399,211005 ,1,18400,296595 ,1,18401,65 ,1,18402,241130 ,1,18403,65 ,1,18404,65 ,1,18405,65 ,1,18406,250385 ,1,18407,198755 ,1,18408,234560 ,1,18409,65 ,1,18410,65 ,1,18411,65 ,1,18412,179160 ,1,18413,240460 ,1,18414,285170 ,1,18415,65 ,1,18416,244185 ,1,18417,278610 ,1,18418,65 ,1,18419,65 ,1,18420,65 ,1,18421,65 ,1,18422,65 ,1,18423,174955 ,1,18424,65 ,1,18425,199490 ,1,18426,245530 ,1,18427,221560 ,1,18428,65 ,1,18429,65 ,1,18430,65 ,1,18431,65 ,1,18432,65 ,1,18433,259840 ,1,18434,268290 ,1,18435,65 ,1,18436,65 ,1,18437,65 ,1,18438,65 ,1,18439,65 ,1,18440,65 ,1,18441,65 ,1,18442,65 ,1,18443,171450 ,1,18444,65 ,1,18445,65 ,1,18446,65 ,1,18447,65 ,1,18448,271085 ,1,18449,65 ,1,18450,65 ,1,18451,65 ,1,18452,65 ,1,18453,65 ,1,18454,65 ,1,18455,65 ,1,18456,65 ,1,18457,65 ,1,18458,65 ,1,18459,65 ,1,18460,65 ,1,18461,271355 ,1,18462,208320 ,1,18463,65 ,1,18464,267080 ,1,18465,65 ,1,18466,65 ,1,18467,268890 ,1,18468,65 ,1,18469,322635 ,1,18470,65 ,1,18471,345235 ,1,18472,65 ,1,18473,65 ,1,18474,65 ,1,18475,216700 ,1,18476,65 ,1,18477,65 ,1,18478,65 ,1,18479,243905 ,1,18480,65 ,1,18481,65 ,1,18482,215630 ,1,18483,65 ,1,18484,65 ,1,18485,344875 ,1,18486,65 ,1,18487,65 ,1,18488,199180 ,1,18489,166870 ,1,18490,65 ,1,18491,65 ,1,18492,65 ,1,18493,65 ,1,18494,214745 ,1,18495,65 ,1,18496,65 ,1,18497,65 ,1,18498,212300 ,1,18499,65 ,1,18500,65 ,1,18501,65 ,1,18502,65 ,1,18503,65 ,1,18504,65 ,1,18505,243415 ,1,18506,320125 ,1,18507,65 ,1,18508,65 ,1,18509,65 ,1,18510,222855 ,1,18511,65 ,1,18512,337360 ,1,18513,65 ,1,18514,293140 ,1,18515,205340 ,1,18516,65 ,1,18517,65 ,1,18518,65 ,1,18519,184570 ,1,18520,292485 ,1,18521,65 ,1,18522,65 ,1,18523,65 ,1,18524,65 ,1,18525,65 ,1,18526,65 ,1,18527,65 ,1,18528,329210 ,1,18529,210985 ,1,18530,338270 ,1,18531,65 ,1,18532,65 ,1,18533,293675 ,1,18534,227265 ,1,18535,65 ,1,18536,65 ,1,18537,205780 ,1,18538,65 ,1,18539,260720 ,1,18540,65 ,1,18541,246025 ,1,18542,291230 ,1,18543,65 ,1,18544,65 ,1,18545,232845 ,1,18546,315185 ,1,18547,65 ,1,18548,65 ,1,18549,65 ,1,18550,288770 ,1,18551,237090 ,1,18552,65 ,1,18553,318520 ,1,18554,310610 ,1,18555,65 ,1,18556,65 ,1,18557,65 ,1,18558,65 ,1,18559,335145 ,1,18560,65 ,1,18561,221825 ,1,18562,295505 ,1,18563,167450 ,1,18564,301760 ,1,18565,178685 ,1,18566,65 ,1,18567,319305 ,1,18568,344710 ,1,18569,269285 ,1,18570,65 ,1,18571,65 ,1,18572,65 ,1,18573,205905 ,1,18574,230765 ,1,18575,210230 ,1,18576,65 ,1,18577,272485 ,1,18578,347615 ,1,18579,336695 ,1,18580,65 ,1,18581,217175 ,1,18582,65 ,1,18583,65 ,1,18584,65 ,1,18585,65 ,1,18586,324190 ,1,18587,65 ,1,18588,65 ,1,18589,65 ,1,18590,338920 ,1,18591,65 ,1,18592,65 ,1,18593,65 ,1,18594,228175 ,1,18595,296925 ,1,18596,216720 ,1,18597,297205 ,1,18598,65 ,1,18599,65 ,1,18600,65 ,1,18601,65 ,1,18602,65 ,1,18603,65 ,1,18604,65 ,1,18605,65 ,1,18606,65 ,1,18607,65 ,1,18608,218720 ,1,18609,318655 ,1,18610,65 ,1,18611,65 ,1,18612,217405 ,1,18613,331575 ,1,18614,251645 ,1,18615,65 ,1,18616,65 ,1,18617,176575 ,1,18618,209285 ,1,18619,65 ,1,18620,65 ,1,18621,170980 ,1,18622,65 ,1,18623,234725 ,1,18624,65 ,1,18625,65 ,1,18626,236480 ,1,18627,65 ,1,18628,65 ,1,18629,65 ,1,18630,322165 ,1,18631,65 ,1,18632,65 ,1,18633,287430 ,1,18634,249115 ,1,18635,65 ,1,18636,259885 ,1,18637,65 ,1,18638,65 ,1,18639,65 ,1,18640,65 ,1,18641,65 ,1,18642,286485 ,1,18643,347825 ,1,18644,65 ,1,18645,65 ,1,18646,260250 ,1,18647,278600 ,1,18648,65 ,1,18649,65 ,1,18650,65 ,1,18651,65 ,1,18652,65 ,1,18653,65 ,1,18654,175945 ,1,18655,65 ,1,18656,65 ,1,18657,65 ,1,18658,65 ,1,18659,65 ,1,18660,65 ,1,18661,65 ,1,18662,283790 ,1,18663,168660 ,1,18664,261585 ,1,18665,65 ,1,18666,335425 ,1,18667,212540 ,1,18668,65 ,1,18669,307345 ,1,18670,65 ,1,18671,254355 ,1,18672,65 ,1,18673,174860 ,1,18674,65 ,1,18675,318715 ,1,18676,168765 ,1,18677,65 ,1,18678,192590 ,1,18679,65 ,1,18680,226975 ,1,18681,65 ,1,18682,65 ,1,18683,65 ,1,18684,65 ,1,18685,254075 ,1,18686,306115 ,1,18687,65 ,1,18688,171420 ,1,18689,203710 ,1,18690,65 ,1,18691,259940 ,1,18692,344375 ,1,18693,339320 ,1,18694,345800 ,1,18695,65 ,1,18696,294600 ,1,18697,65 ,1,18698,343945 ,1,18699,65 ,1,18700,224430 ,1,18701,65 ,1,18702,315725 ,1,18703,254680 ,1,18704,65 ,1,18705,65 ,1,18706,207770 ,1,18707,65 ,1,18708,65 ,1,18709,239190 ,1,18710,65 ,1,18711,262270 ,1,18712,265120 ,1,18713,65 ,1,18714,65 ,1,18715,282720 ,1,18716,65 ,1,18717,65 ,1,18718,65 ,1,18719,65 ,1,18720,65 ,1,18721,65 ,1,18722,65 ,1,18723,65 ,1,18724,65 ,1,18725,324715 ,1,18726,351860 ,1,18727,65 ,1,18728,65 ,1,18729,313085 ,1,18730,326645 ,1,18731,65 ,1,18732,65 ,1,18733,65 ,1,18734,65 ,1,18735,206000 ,1,18736,65 ,1,18737,205010 ,1,18738,320115 ,1,18739,197255 ,1,18740,65 ,1,18741,295020 ,1,18742,65 ,1,18743,65 ,1,18744,186805 ,1,18745,270165 ,1,18746,65 ,1,18747,65 ,1,18748,308205 ,1,18749,65 ,1,18750,351770 ,1,18751,65 ,1,18752,65 ,1,18753,65 ,1,18754,65 ,1,18755,65 ,1,18756,65 ,1,18757,65 ,1,18758,252555 ,1,18759,260320 ,1,18760,65 ,1,18761,172385 ,1,18762,65 ,1,18763,341085 ,1,18764,216165 ,1,18765,65 ,1,18766,332645 ,1,18767,65 ,1,18768,65 ,1,18769,65 ,1,18770,65 ,1,18771,65 ,1,18772,65 ,1,18773,65 ,1,18774,65 ,1,18775,65 ,1,18776,189770 ,1,18777,65 ,1,18778,65 ,1,18779,65 ,1,18780,189990 ,1,18781,65 ,1,18782,183660 ,1,18783,65 ,1,18784,65 ,1,18785,224675 ,1,18786,65 ,1,18787,321945 ,1,18788,213885 ,1,18789,65 ,1,18790,65 ,1,18791,342280 ,1,18792,65 ,1,18793,65 ,1,18794,65 ,1,18795,65 ,1,18796,317325 ,1,18797,65 ,1,18798,65 ,1,18799,167980 ,1,18800,65 ,1,18801,65 ,1,18802,65 ,1,18803,65 ,1,18804,65 ,1,18805,210810 ,1,18806,248755 ,1,18807,65 ,1,18808,270895 ,1,18809,224875 ,1,18810,65 ,1,18811,349955 ,1,18812,65 ,1,18813,65 ,1,18814,65 ,1,18815,65 ,1,18816,220980 ,1,18817,65 ,1,18818,345445 ,1,18819,335300 ,1,18820,290240 ,1,18821,259920 ,1,18822,257185 ,1,18823,313420 ,1,18824,277135 ,1,18825,270815 ,1,18826,65 ,1,18827,185345 ,1,18828,65 ,1,18829,65 ,1,18830,65 ,1,18831,65 ,1,18832,341335 ,1,18833,65 ,1,18834,209155 ,1,18835,65 ,1,18836,65 ,1,18837,65 ,1,18838,65 ,1,18839,65 ,1,18840,224760 ,1,18841,202615 ,1,18842,338695 ,1,18843,65 ,1,18844,198385 ,1,18845,247570 ,1,18846,217830 ,1,18847,244145 ,1,18848,178285 ,1,18849,319735 ,1,18850,65 ,1,18851,308080 ,1,18852,236285 ,1,18853,175640 ,1,18854,295960 ,1,18855,301295 ,1,18856,310620 ,1,18857,201885 ,1,18858,65 ,1,18859,282365 ,1,18860,260630 ,1,18861,65 ,1,18862,174415 ,1,18863,65 ,1,18864,65 ,1,18865,339600 ,1,18866,311090 ,1,18867,194500 ,1,18868,339145 ,1,18869,65 ,1,18870,65 ,1,18871,176720 ,1,18872,268770 ,1,18873,65 ,1,18874,65 ,1,18875,65 ,1,18876,211630 ,1,18877,331845 ,1,18878,65 ,1,18879,65 ,1,18880,65 ,1,18881,269830 ,1,18882,268260 ,1,18883,65 ,1,18884,65 ,1,18885,65 ,1,18886,65 ,1,18887,65 ,1,18888,65 ,1,18889,65 ,1,18890,65 ,1,18891,65 ,1,18892,65 ,1,18893,65 ,1,18894,65 ,1,18895,65 ,1,18896,232805 ,1,18897,349945 ,1,18898,65 ,1,18899,323710 ,1,18900,288265 ,1,18901,65 ,1,18902,320630 ,1,18903,65 ,1,18904,65 ,1,18905,208475 ,1,18906,220585 ,1,18907,65 ,1,18908,65 ,1,18909,65 ,1,18910,65 ,1,18911,65 ,1,18912,65 ,1,18913,65 ,1,18914,212595 ,1,18915,65 ,1,18916,65 ,1,18917,65 ,1,18918,65 ,1,18919,65 ,1,18920,65 ,1,18921,307905 ,1,18922,220265 ,1,18923,270590 ,1,18924,65 ,1,18925,65 ,1,18926,65 ,1,18927,65 ,1,18928,65 ,1,18929,65 ,1,18930,65 ,1,18931,65 ,1,18932,249805 ,1,18933,65 ,1,18934,323350 ,1,18935,285820 ,1,18936,240560 ,1,18937,271305 ,1,18938,266975 ,1,18939,65 ,1,18940,65 ,1,18941,261750 ,1,18942,65 ,1,18943,239140 ,1,18944,189655 ,1,18945,65 ,1,18946,348025 ,1,18947,285395 ,1,18948,65 ,1,18949,315510 ,1,18950,65 ,1,18951,65 ,1,18952,195035 ,1,18953,65 ,1,18954,339300 ,1,18955,202360 ,1,18956,65 ,1,18957,179530 ,1,18958,209600 ,1,18959,65 ,1,18960,65 ,1,18961,65 ,1,18962,258000 ,1,18963,65 ,1,18964,65 ,1,18965,65 ,1,18966,65 ,1,18967,172075 ,1,18968,326245 ,1,18969,65 ,1,18970,65 ,1,18971,201725 ,1,18972,229495 ,1,18973,65 ,1,18974,65 ,1,18975,65 ,1,18976,65 ,1,18977,325420 ,1,18978,65 ,1,18979,65 ,1,18980,211995 ,1,18981,65 ,1,18982,184610 ,1,18983,185545 ,1,18984,65 ,1,18985,65 ,1,18986,65 ,1,18987,65 ,1,18988,65 ,1,18989,65 ,1,18990,65 ,1,18991,65 ,1,18992,65 ,1,18993,65 ,1,18994,65 ,1,18995,168160 ,1,18996,65 ,1,18997,237440 ,1,18998,65 ,1,18999,65 ,1,19000,187430 ,1,19001,65 ,1,19002,65 ,1,19003,65 ,1,19004,65 ,1,19005,65 ,1,19006,65 ,1,19007,65 ,1,19008,65 ,1,19009,65 ,1,19010,65 ,1,19011,171330 ,1,19012,65 ,1,19013,269435 ,1,19014,173870 ,1,19015,65 ,1,19016,65 ,1,19017,65 ,1,19018,231120 ,1,19019,65 ,1,19020,65 ,1,19021,304880 ,1,19022,194700 ,1,19023,65 ,1,19024,65 ,1,19025,248670 ,1,19026,340305 ,1,19027,286945 ,1,19028,65 ,1,19029,65 ,1,19030,65 ,1,19031,65 ,1,19032,252395 ,1,19033,65 ,1,19034,316555 ,1,19035,65 ,1,19036,65 ,1,19037,180645 ,1,19038,216635 ,1,19039,280400 ,1,19040,65 ,1,19041,301915 ,1,19042,65 ,1,19043,65 ,1,19044,322225 ,1,19045,282175 ,1,19046,311975 ,1,19047,342805 ,1,19048,65 ,1,19049,283555 ,1,19050,211730 ,1,19051,214915 ,1,19052,249205 ,1,19053,224645 ,1,19054,65 ,1,19055,248260 ,1,19056,65 ,1,19057,65 ,1,19058,181930 ,1,19059,65 ,1,19060,305800 ,1,19061,65 ,1,19062,288905 ,1,19063,278395 ,1,19064,283470 ,1,19065,251600 ,1,19066,170535 ,1,19067,207205 ,1,19068,267595 ,1,19069,65 ,1,19070,65 ,1,19071,251495 ,1,19072,65 ,1,19073,65 ,1,19074,320180 ,1,19075,65 ,1,19076,331780 ,1,19077,65 ,1,19078,65 ,1,19079,65 ,1,19080,230960 ,1,19081,65 ,1,19082,65 ,1,19083,225910 ,1,19084,65 ,1,19085,65 ,1,19086,236460 ,1,19087,349935 ,1,19088,266465 ,1,19089,233835 ,1,19090,245110 ,1,19091,277155 ,1,19092,65 ,1,19093,65 ,1,19094,65 ,1,19095,222310 ,1,19096,65 ,1,19097,170030 ,1,19098,65 ,1,19099,65 ,1,19100,249685 ,1,19101,65 ,1,19102,65 ,1,19103,65 ,1,19104,178035 ,1,19105,291045 ,1,19106,65 ,1,19107,65 ,1,19108,216005 ,1,19109,65 ,1,19110,321310 ,1,19111,307965 ,1,19112,267685 ,1,19113,230950 ,1,19114,260450 ,1,19115,65 ,1,19116,219125 ,1,19117,333065 ,1,19118,65 ,1,19119,65 ,1,19120,65 ,1,19121,210445 ,1,19122,65 ,1,19123,65 ,1,19124,191275 ,1,19125,65 ,1,19126,65 ,1,19127,65 ,1,19128,65 ,1,19129,202480 ,1,19130,194870 ,1,19131,208185 ,1,19132,267745 ,1,19133,224970 ,1,19134,180520 ,1,19135,213985 ,1,19136,255315 ,1,19137,65 ,1,19138,65 ,1,19139,181570 ,1,19140,215235 ,1,19141,65 ,1,19142,210575 ,1,19143,65 ,1,19144,65 ,1,19145,315630 ,1,19146,65 ,1,19147,305045 ,1,19148,171705 ,1,19149,65 ,1,19150,314155 ,1,19151,65 ,1,19152,65 ,1,19153,65 ,1,19154,238940 ,1,19155,65 ,1,19156,270320 ,1,19157,349925 ,1,19158,65 ,1,19159,65 ,1,19160,65 ,1,19161,349915 ,1,19162,65 ,1,19163,65 ,1,19164,65 ,1,19165,65 ,1,19166,65 ,1,19167,193265 ,1,19168,65 ,1,19169,65 ,1,19170,167790 ,1,19171,65 ,1,19172,65 ,1,19173,309155 ,1,19174,289290 ,1,19175,65 ,1,19176,65 ,1,19177,65 ,1,19178,65 ,1,19179,65 ,1,19180,223910 ,1,19181,286660 ,1,19182,65 ,1,19183,65 ,1,19184,253755 ,1,19185,65 ,1,19186,327585 ,1,19187,268375 ,1,19188,65 ,1,19189,248925 ,1,19190,65 ,1,19191,65 ,1,19192,184860 ,1,19193,65 ,1,19194,65 ,1,19195,265240 ,1,19196,65 ,1,19197,65 ,1,19198,65 ,1,19199,65 ,1,19200,345340 ,1,19201,65 ,1,19202,65 ,1,19203,65 ,1,19204,167480 ,1,19205,172460 ,1,19206,65 ,1,19207,65 ,1,19208,65 ,1,19209,295945 ,1,19210,256195 ,1,19211,65 ,1,19212,65 ,1,19213,65 ,1,19214,65 ,1,19215,65 ,1,19216,261030 ,1,19217,349905 ,1,19218,203255 ,1,19219,298870 ,1,19220,65 ,1,19221,65 ,1,19222,259830 ,1,19223,65 ,1,19224,65 ,1,19225,65 ,1,19226,65 ,1,19227,306960 ,1,19228,65 ,1,19229,65 ,1,19230,65 ,1,19231,65 ,1,19232,65 ,1,19233,314655 ,1,19234,222980 ,1,19235,65 ,1,19236,227685 ,1,19237,65 ,1,19238,317105 ,1,19239,256625 ,1,19240,65 ,1,19241,65 ,1,19242,65 ,1,19243,312715 ,1,19244,65 ,1,19245,65 ,1,19246,311645 ,1,19247,65 ,1,19248,65 ,1,19249,212340 ,1,19250,65 ,1,19251,65 ,1,19252,65 ,1,19253,65 ,1,19254,65 ,1,19255,65 ,1,19256,251190 ,1,19257,65 ,1,19258,65 ,1,19259,65 ,1,19260,324025 ,1,19261,65 ,1,19262,65 ,1,19263,314260 ,1,19264,65 ,1,19265,259755 ,1,19266,347595 ,1,19267,202070 ,1,19268,65 ,1,19269,65 ,1,19270,268585 ,1,19271,65 ,1,19272,248300 ,1,19273,65 ,1,19274,65 ,1,19275,65 ,1,19276,65 ,1,19277,65 ,1,19278,65 ,1,19279,65 ,1,19280,189075 ,1,19281,191560 ,1,19282,311495 ,1,19283,180725 ,1,19284,169335 ,1,19285,65 ,1,19286,65 ,1,19287,169355 ,1,19288,206620 ,1,19289,229090 ,1,19290,65 ,1,19291,246330 ,1,19292,308095 ,1,19293,298730 ,1,19294,65 ,1,19295,322935 ,1,19296,328885 ,1,19297,288155 ,1,19298,312750 ,1,19299,229250 ,1,19300,65 ,1,19301,181380 ,1,19302,226790 ,1,19303,325385 ,1,19304,276785 ,1,19305,65 ,1,19306,65 ,1,19307,65 ,1,19308,285755 ,1,19309,65 ,1,19310,171165 ,1,19311,65 ,1,19312,186190 ,1,19313,65 ,1,19314,65 ,1,19315,65 ,1,19316,65 ,1,19317,65 ,1,19318,65 ,1,19319,65 ,1,19320,217510 ,1,19321,255000 ,1,19322,65 ,1,19323,65 ,1,19324,65 ,1,19325,307280 ,1,19326,65 ,1,19327,293585 ,1,19328,291725 ,1,19329,332200 ,1,19330,336930 ,1,19331,309410 ,1,19332,65 ,1,19333,65 ,1,19334,65 ,1,19335,65 ,1,19336,65 ,1,19337,65 ,1,19338,65 ,1,19339,268715 ,1,19340,65 ,1,19341,342895 ,1,19342,290405 ,1,19343,281525 ,1,19344,174130 ,1,19345,65 ,1,19346,297040 ,1,19347,65 ,1,19348,65 ,1,19349,187450 ,1,19350,231480 ,1,19351,65 ,1,19352,65 ,1,19353,242960 ,1,19354,65 ,1,19355,176335 ,1,19356,65 ,1,19357,308615 ,1,19358,316120 ,1,19359,65 ,1,19360,65 ,1,19361,65 ,1,19362,65 ,1,19363,65 ,1,19364,234240 ,1,19365,65 ,1,19366,325575 ,1,19367,65 ,1,19368,304555 ,1,19369,335710 ,1,19370,65 ,1,19371,223805 ,1,19372,175935 ,1,19373,324470 ,1,19374,261280 ,1,19375,226425 ,1,19376,65 ,1,19377,65 ,1,19378,65 ,1,19379,338645 ,1,19380,65 ,1,19381,65 ,1,19382,65 ,1,19383,65 ,1,19384,240945 ,1,19385,219540 ,1,19386,285955 ,1,19387,65 ,1,19388,65 ,1,19389,65 ,1,19390,65 ,1,19391,65 ,1,19392,65 ,1,19393,65 ,1,19394,65 ,1,19395,65 ,1,19396,65 ,1,19397,65 ,1,19398,65 ,1,19399,65 ,1,19400,65 ,1,19401,327325 ,1,19402,65 ,1,19403,65 ,1,19404,65 ,1,19405,280545 ,1,19406,65 ,1,19407,238205 ,1,19408,305245 ,1,19409,340760 ,1,19410,65 ,1,19411,65 ,1,19412,65 ,1,19413,248825 ,1,19414,330270 ,1,19415,65 ,1,19416,313355 ,1,19417,65 ,1,19418,65 ,1,19419,268040 ,1,19420,65 ,1,19421,65 ,1,19422,65 ,1,19423,230475 ,1,19424,209095 ,1,19425,261895 ,1,19426,294310 ,1,19427,276560 ,1,19428,261865 ,1,19429,248695 ,1,19430,65 ,1,19431,276720 ,1,19432,65 ,1,19433,65 ,1,19434,65 ,1,19435,65 ,1,19436,183245 ,1,19437,207260 ,1,19438,220845 ,1,19439,65 ,1,19440,264175 ,1,19441,234180 ,1,19442,65 ,1,19443,65 ,1,19444,283370 ,1,19445,247775 ,1,19446,65 ,1,19447,65 ,1,19448,181910 ,1,19449,65 ,1,19450,65 ,1,19451,65 ,1,19452,65 ,1,19453,253690 ,1,19454,65 ,1,19455,65 ,1,19456,65 ,1,19457,65 ,1,19458,65 ,1,19459,341585 ,1,19460,65 ,1,19461,323245 ,1,19462,65 ,1,19463,65 ,1,19464,65 ,1,19465,65 ,1,19466,65 ,1,19467,65 ,1,19468,289915 ,1,19469,65 ,1,19470,65 ,1,19471,65 ,1,19472,65 ,1,19473,65 ,1,19474,334625 ,1,19475,65 ,1,19476,65 ,1,19477,65 ,1,19478,65 ,1,19479,65 ,1,19480,65 ,1,19481,65 ,1,19482,271495 ,1,19483,65 ,1,19484,65 ,1,19485,250455 ,1,19486,195935 ,1,19487,65 ,1,19488,280650 ,1,19489,279715 ,1,19490,65 ,1,19491,216845 ,1,19492,313410 ,1,19493,65 ,1,19494,65 ,1,19495,251610 ,1,19496,216580 ,1,19497,65 ,1,19498,245310 ,1,19499,201840 ,1,19500,65 ,1,19501,65 ,1,19502,65 ,1,19503,296690 ,1,19504,65 ,1,19505,65 ,1,19506,65 ,1,19507,65 ,1,19508,65 ,1,19509,65 ,1,19510,65 ,1,19511,65 ,1,19512,65 ,1,19513,208425 ,1,19514,65 ,1,19515,65 ,1,19516,65 ,1,19517,198115 ,1,19518,263490 ,1,19519,316160 ,1,19520,211405 ,1,19521,266190 ,1,19522,65 ,1,19523,65 ,1,19524,65 ,1,19525,190770 ,1,19526,65 ,1,19527,269605 ,1,19528,317295 ,1,19529,65 ,1,19530,65 ,1,19531,65 ,1,19532,345365 ,1,19533,65 ,1,19534,65 ,1,19535,65 ,1,19536,65 ,1,19537,65 ,1,19538,65 ,1,19539,65 ,1,19540,243520 ,1,19541,198020 ,1,19542,65 ,1,19543,257590 ,1,19544,65 ,1,19545,65 ,1,19546,65 ,1,19547,237665 ,1,19548,260220 ,1,19549,65 ,1,19550,65 ,1,19551,240690 ,1,19552,339445 ,1,19553,328355 ,1,19554,65 ,1,19555,65 ,1,19556,65 ,1,19557,65 ,1,19558,65 ,1,19559,203395 ,1,19560,326455 ,1,19561,65 ,1,19562,65 ,1,19563,65 ,1,19564,258665 ,1,19565,289045 ,1,19566,278465 ,1,19567,223560 ,1,19568,65 ,1,19569,65 ,1,19570,65 ,1,19571,65 ,1,19572,321505 ,1,19573,65 ,1,19574,216430 ,1,19575,278900 ,1,19576,173755 ,1,19577,65 ,1,19578,179630 ,1,19579,65 ,1,19580,246630 ,1,19581,65 ,1,19582,65 ,1,19583,347225 ,1,19584,65 ,1,19585,65 ,1,19586,181900 ,1,19587,65 ,1,19588,65 ,1,19589,65 ,1,19590,65 ,1,19591,241825 ,1,19592,65 ,1,19593,65 ,1,19594,65 ,1,19595,65 ,1,19596,249025 ,1,19597,65 ,1,19598,176835 ,1,19599,65 ,1,19600,209910 ,1,19601,285150 ,1,19602,194410 ,1,19603,201060 ,1,19604,65 ,1,19605,65 ,1,19606,320490 ,1,19607,228380 ,1,19608,279360 ,1,19609,65 ,1,19610,332330 ,1,19611,65 ,1,19612,65 ,1,19613,65 ,1,19614,257085 ,1,19615,284000 ,1,19616,65 ,1,19617,65 ,1,19618,65 ,1,19619,65 ,1,19620,317820 ,1,19621,65 ,1,19622,65 ,1,19623,65 ,1,19624,65 ,1,19625,65 ,1,19626,65 ,1,19627,298980 ,1,19628,65 ,1,19629,65 ,1,19630,240820 ,1,19631,65 ,1,19632,65 ,1,19633,208990 ,1,19634,203355 ,1,19635,288410 ,1,19636,276520 ,1,19637,280585 ,1,19638,65 ,1,19639,245755 ,1,19640,65 ,1,19641,195835 ,1,19642,279925 ,1,19643,65 ,1,19644,181965 ,1,19645,347015 ,1,19646,259025 ,1,19647,273290 ,1,19648,323805 ,1,19649,249250 ,1,19650,65 ,1,19651,166955 ,1,19652,65 ,1,19653,269645 ,1,19654,272815 ,1,19655,234605 ,1,19656,65 ,1,19657,65 ,1,19658,65 ,1,19659,65 ,1,19660,65 ,1,19661,332180 ,1,19662,230150 ,1,19663,65 ,1,19664,65 ,1,19665,182705 ,1,19666,65 ,1,19667,241790 ,1,19668,181870 ,1,19669,65 ,1,19670,240350 ,1,19671,65 ,1,19672,276975 ,1,19673,65 ,1,19674,65 ,1,19675,239865 ,1,19676,178735 ,1,19677,65 ,1,19678,280070 ,1,19679,270560 ,1,19680,65 ,1,19681,65 ,1,19682,252125 ,1,19683,65 ,1,19684,65 ,1,19685,288970 ,1,19686,283185 ,1,19687,214080 ,1,19688,215455 ,1,19689,348485 ,1,19690,182370 ,1,19691,273280 ,1,19692,202370 ,1,19693,227795 ,1,19694,65 ,1,19695,65 ,1,19696,277350 ,1,19697,65 ,1,19698,296235 ,1,19699,298750 ,1,19700,65 ,1,19701,302125 ,1,19702,65 ,1,19703,65 ,1,19704,278800 ,1,19705,243060 ,1,19706,65 ,1,19707,65 ,1,19708,65 ,1,19709,261740 ,1,19710,312650 ,1,19711,65 ,1,19712,65 ,1,19713,65 ,1,19714,65 ,1,19715,349875 ,1,19716,239550 ,1,19717,65 ,1,19718,187115 ,1,19719,205885 ,1,19720,238090 ,1,19721,298215 ,1,19722,283235 ,1,19723,266840 ,1,19724,65 ,1,19725,65 ,1,19726,337160 ,1,19727,65 ,1,19728,199640 ,1,19729,65 ,1,19730,65 ,1,19731,65 ,1,19732,65 ,1,19733,65 ,1,19734,65 ,1,19735,65 ,1,19736,177380 ,1,19737,229700 ,1,19738,265410 ,1,19739,265130 ,1,19740,265625 ,1,19741,209630 ,1,19742,65 ,1,19743,328795 ,1,19744,65 ,1,19745,65 ,1,19746,65 ,1,19747,65 ,1,19748,65 ,1,19749,65 ,1,19750,274155 ,1,19751,65 ,1,19752,65 ,1,19753,65 ,1,19754,65 ,1,19755,65 ,1,19756,65 ,1,19757,65 ,1,19758,65 ,1,19759,209115 ,1,19760,65 ,1,19761,65 ,1,19762,344250 ,1,19763,274055 ,1,19764,249395 ,1,19765,65 ,1,19766,65 ,1,19767,65 ,1,19768,65 ,1,19769,65 ,1,19770,65 ,1,19771,247195 ,1,19772,65 ,1,19773,65 ,1,19774,65 ,1,19775,299985 ,1,19776,65 ,1,19777,341385 ,1,19778,300025 ,1,19779,334120 ,1,19780,65 ,1,19781,296500 ,1,19782,65 ,1,19783,65 ,1,19784,328910 ,1,19785,242595 ,1,19786,65 ,1,19787,65 ,1,19788,187560 ,1,19789,282865 ,1,19790,186885 ,1,19791,316655 ,1,19792,293710 ,1,19793,65 ,1,19794,65 ,1,19795,205635 ,1,19796,65 ,1,19797,254425 ,1,19798,65 ,1,19799,65 ,1,19800,65 ,1,19801,65 ,1,19802,317970 ,1,19803,263390 ,1,19804,65 ,1,19805,181060 ,1,19806,273835 ,1,19807,65 ,1,19808,319205 ,1,19809,65 ,1,19810,291960 ,1,19811,219210 ,1,19812,65 ,1,19813,284720 ,1,19814,65 ,1,19815,65 ,1,19816,65 ,1,19817,65 ,1,19818,281515 ,1,19819,313780 ,1,19820,65 ,1,19821,65 ,1,19822,65 ,1,19823,65 ,1,19824,285945 ,1,19825,65 ,1,19826,65 ,1,19827,65 ,1,19828,65 ,1,19829,65 ,1,19830,65 ,1,19831,65 ,1,19832,65 ,1,19833,65 ,1,19834,65 ,1,19835,65 ,1,19836,65 ,1,19837,65 ,1,19838,230815 ,1,19839,65 ,1,19840,65 ,1,19841,65 ,1,19842,65 ,1,19843,308850 ,1,19844,244820 ,1,19845,65 ,1,19846,65 ,1,19847,65 ,1,19848,65 ,1,19849,319515 ,1,19850,65 ,1,19851,65 ,1,19852,190020 ,1,19853,207160 ,1,19854,198350 ,1,19855,65 ,1,19856,316930 ,1,19857,65 ,1,19858,65 ,1,19859,65 ,1,19860,230560 ,1,19861,65 ,1,19862,65 ,1,19863,65 ,1,19864,166505 ,1,19865,330750 ,1,19866,65 ,1,19867,65 ,1,19868,260615 ,1,19869,65 ,1,19870,65 ,1,19871,65 ,1,19872,65 ,1,19873,65 ,1,19874,271205 ,1,19875,65 ,1,19876,65 ,1,19877,307545 ,1,19878,193540 ,1,19879,232145 ,1,19880,65 ,1,19881,191675 ,1,19882,65 ,1,19883,65 ,1,19884,65 ,1,19885,65 ,1,19886,65 ,1,19887,262580 ,1,19888,191730 ,1,19889,236165 ,1,19890,65 ,1,19891,244875 ,1,19892,65 ,1,19893,65 ,1,19894,65 ,1,19895,309180 ,1,19896,342740 ,1,19897,287590 ,1,19898,319915 ,1,19899,65 ,1,19900,65 ,1,19901,65 ,1,19902,65 ,1,19903,180500 ,1,19904,223850 ,1,19905,317345 ,1,19906,322690 ,1,19907,65 ,1,19908,236600 ,1,19909,65 ,1,19910,65 ,1,19911,65 ,1,19912,65 ,1,19913,65 ,1,19914,65 ,1,19915,65 ,1,19916,65 ,1,19917,174935 ,1,19918,290250 ,1,19919,65 ,1,19920,211330 ,1,19921,340680 ,1,19922,231180 ,1,19923,313820 ,1,19924,189015 ,1,19925,65 ,1,19926,65 ,1,19927,65 ,1,19928,65 ,1,19929,65 ,1,19930,65 ,1,19931,65 ,1,19932,185970 ,1,19933,291105 ,1,19934,220485 ,1,19935,347875 ,1,19936,65 ,1,19937,322215 ,1,19938,65 ,1,19939,65 ,1,19940,235185 ,1,19941,206750 ,1,19942,236785 ,1,19943,235260 ,1,19944,65 ,1,19945,65 ,1,19946,221210 ,1,19947,65 ,1,19948,65 ,1,19949,324210 ,1,19950,259035 ,1,19951,65 ,1,19952,65 ,1,19953,256260 ,1,19954,204145 ,1,19955,65 ,1,19956,312980 ,1,19957,65 ,1,19958,302705 ,1,19959,256825 ,1,19960,200490 ,1,19961,319955 ,1,19962,65 ,1,19963,65 ,1,19964,239635 ,1,19965,318015 ,1,19966,203595 ,1,19967,238240 ,1,19968,65 ,1,19969,65 ,1,19970,293940 ,1,19971,329325 ,1,19972,65 ,1,19973,247425 ,1,19974,180935 ,1,19975,65 ,1,19976,210155 ,1,19977,249875 ,1,19978,65 ,1,19979,65 ,1,19980,65 ,1,19981,192930 ,1,19982,65 ,1,19983,335525 ,1,19984,65 ,1,19985,178830 ,1,19986,65 ,1,19987,65 ,1,19988,65 ,1,19989,65 ,1,19990,216730 ,1,19991,314920 ,1,19992,264040 ,1,19993,234455 ,1,19994,330090 ,1,19995,296960 ,1,19996,182155 ,1,19997,203055 ,1,19998,256760 ,1,19999,65 ,1,20000,337735 ,1,20001,65 ,1,20002,65 ,1,20003,348565 ,1,20004,310800 ,1,20005,186475 ,1,20006,301395 ,1,20007,228665 ,1,20008,65 ,1,20009,265565 ,1,20010,65 ,1,20011,65 ,1,20012,227815 ,1,20013,65 ,1,20014,65 ,1,20015,65 ,1,20016,65 ,1,20017,65 ,1,20018,65 ,1,20019,65 ,1,20020,65 ,1,20021,65 ,1,20022,181205 ,1,20023,65 ,1,20024,175620 ,1,20025,279135 ,1,20026,210715 ,1,20027,260410 ,1,20028,65 ,1,20029,312210 ,1,20030,65 ,1,20031,65 ,1,20032,193220 ,1,20033,204265 ,1,20034,65 ,1,20035,65 ,1,20036,297950 ,1,20037,197405 ,1,20038,225725 ,1,20039,345590 ,1,20040,65 ,1,20041,283035 ,1,20042,198860 ,1,20043,285015 ,1,20044,180340 ,1,20045,65 ,1,20046,280245 ,1,20047,210370 ,1,20048,65 ,1,20049,264060 ,1,20050,65 ,1,20051,340905 ,1,20052,296460 ,1,20053,342855 ,1,20054,340650 ,1,20055,65 ,1,20056,65 ,1,20057,285435 ,1,20058,225615 ,1,20059,65 ,1,20060,65 ,1,20061,283480 ,1,20062,226145 ,1,20063,65 ,1,20064,65 ,1,20065,65 ,1,20066,301855 ,1,20067,336325 ,1,20068,65 ,1,20069,65 ,1,20070,65 ,1,20071,65 ,1,20072,65 ,1,20073,65 ,1,20074,65 ,1,20075,65 ,1,20076,261055 ,1,20077,65 ,1,20078,340790 ,1,20079,65 ,1,20080,65 ,1,20081,196520 ,1,20082,65 ,1,20083,287485 ,1,20084,249065 ,1,20085,65 ,1,20086,306940 ,1,20087,65 ,1,20088,65 ,1,20089,65 ,1,20090,65 ,1,20091,65 ,1,20092,65 ,1,20093,222150 ,1,20094,65 ,1,20095,213035 ,1,20096,65 ,1,20097,65 ,1,20098,65 ,1,20099,202060 ,1,20100,65 ,1,20101,235195 ,1,20102,65 ,1,20103,341075 ,1,20104,65 ,1,20105,253060 ,1,20106,65 ,1,20107,186110 ,1,20108,65 ,1,20109,65 ,1,20110,65 ,1,20111,65 ,1,20112,65 ,1,20113,65 ,1,20114,65 ,1,20115,296825 ,1,20116,245385 ,1,20117,246385 ,1,20118,348505 ,1,20119,65 ,1,20120,65 ,1,20121,343730 ,1,20122,65 ,1,20123,65 ,1,20124,65 ,1,20125,326975 ,1,20126,65 ,1,20127,65 ,1,20128,65 ,1,20129,65 ,1,20130,217565 ,1,20131,65 ,1,20132,65 ,1,20133,65 ,1,20134,206525 ,1,20135,65 ,1,20136,65 ,1,20137,269445 ,1,20138,230505 ,1,20139,177810 ,1,20140,173840 ,1,20141,65 ,1,20142,65 ,1,20143,65 ,1,20144,65 ,1,20145,65 ,1,20146,65 ,1,20147,65 ,1,20148,65 ,1,20149,65 ,1,20150,65 ,1,20151,65 ,1,20152,188615 ,1,20153,65 ,1,20154,187970 ,1,20155,65 ,1,20156,65 ,1,20157,65 ,1,20158,65 ,1,20159,179110 ,1,20160,65 ,1,20161,239740 ,1,20162,65 ,1,20163,65 ,1,20164,207880 ,1,20165,65 ,1,20166,65 ,1,20167,190540 ,1,20168,231570 ,1,20169,334275 ,1,20170,65 ,1,20171,340405 ,1,20172,266900 ,1,20173,65 ,1,20174,65 ,1,20175,239890 ,1,20176,65 ,1,20177,185710 ,1,20178,266265 ,1,20179,65 ,1,20180,249985 ,1,20181,65 ,1,20182,65 ,1,20183,265270 ,1,20184,65 ,1,20185,284970 ,1,20186,256655 ,1,20187,65 ,1,20188,291420 ,1,20189,65 ,1,20190,244400 ,1,20191,65 ,1,20192,65 ,1,20193,65 ,1,20194,65 ,1,20195,299510 ,1,20196,324115 ,1,20197,65 ,1,20198,65 ,1,20199,65 ,1,20200,65 ,1,20201,65 ,1,20202,311950 ,1,20203,65 ,1,20204,65 ,1,20205,65 ,1,20206,65 ,1,20207,65 ,1,20208,65 ,1,20209,65 ,1,20210,220535 ,1,20211,253380 ,1,20212,177675 ,1,20213,307915 ,1,20214,65 ,1,20215,65 ,1,20216,65 ,1,20217,65 ,1,20218,188580 ,1,20219,65 ,1,20220,342765 ,1,20221,224825 ,1,20222,65 ,1,20223,65 ,1,20224,65 ,1,20225,300230 ,1,20226,65 ,1,20227,65 ,1,20228,65 ,1,20229,301285 ,1,20230,65 ,1,20231,254950 ,1,20232,65 ,1,20233,65 ,1,20234,320340 ,1,20235,65 ,1,20236,65 ,1,20237,65 ,1,20238,65 ,1,20239,191935 ,1,20240,238310 ,1,20241,192740 ,1,20242,246550 ,1,20243,65 ,1,20244,65 ,1,20245,65 ,1,20246,176935 ,1,20247,65 ,1,20248,65 ,1,20249,65 ,1,20250,65 ,1,20251,65 ,1,20252,287450 ,1,20253,215255 ,1,20254,65 ,1,20255,210755 ,1,20256,309915 ,1,20257,313305 ,1,20258,175320 ,1,20259,231285 ,1,20260,331955 ,1,20261,177280 ,1,20262,299765 ,1,20263,65 ,1,20264,65 ,1,20265,65 ,1,20266,228260 ,1,20267,65 ,1,20268,65 ,1,20269,65 ,1,20270,65 ,1,20271,65 ,1,20272,65 ,1,20273,65 ,1,20274,285530 ,1,20275,65 ,1,20276,65 ,1,20277,212385 ,1,20278,294665 ,1,20279,65 ,1,20280,65 ,1,20281,65 ,1,20282,65 ,1,20283,65 ,1,20284,65 ,1,20285,65 ,1,20286,65 ,1,20287,65 ,1,20288,65 ,1,20289,65 ,1,20290,65 ,1,20291,177600 ,1,20292,187715 ,1,20293,242480 ,1,20294,216365 ,1,20295,264715 ,1,20296,65 ,1,20297,65 ,1,20298,65 ,1,20299,65 ,1,20300,65 ,1,20301,65 ,1,20302,65 ,1,20303,200780 ,1,20304,299110 ,1,20305,176165 ,1,20306,231020 ,1,20307,337620 ,1,20308,234625 ,1,20309,279215 ,1,20310,65 ,1,20311,65 ,1,20312,252415 ,1,20313,260020 ,1,20314,65 ,1,20315,65 ,1,20316,65 ,1,20317,217015 ,1,20318,65 ,1,20319,65 ,1,20320,65 ,1,20321,65 ,1,20322,65 ,1,20323,65 ,1,20324,65 ,1,20325,65 ,1,20326,65 ,1,20327,65 ,1,20328,65 ,1,20329,65 ,1,20330,65 ,1,20331,65 ,1,20332,65 ,1,20333,221305 ,1,20334,242925 ,1,20335,281855 ,1,20336,216655 ,1,20337,313325 ,1,20338,65 ,1,20339,65 ,1,20340,65 ,1,20341,65 ,1,20342,65 ,1,20343,65 ,1,20344,65 ,1,20345,280155 ,1,20346,65 ,1,20347,65 ,1,20348,207195 ,1,20349,228410 ,1,20350,295990 ,1,20351,65 ,1,20352,296980 ,1,20353,65 ,1,20354,234250 ,1,20355,248045 ,1,20356,317490 ,1,20357,65 ,1,20358,65 ,1,20359,65 ,1,20360,268300 ,1,20361,298645 ,1,20362,168720 ,1,20363,167175 ,1,20364,239955 ,1,20365,65 ,1,20366,188405 ,1,20367,65 ,1,20368,167430 ,1,20369,262310 ,1,20370,299635 ,1,20371,65 ,1,20372,65 ,1,20373,65 ,1,20374,65 ,1,20375,318970 ,1,20376,230525 ,1,20377,261155 ,1,20378,65 ,1,20379,65 ,1,20380,65 ,1,20381,65 ,1,20382,167040 ,1,20383,339355 ,1,20384,65 ,1,20385,188715 ,1,20386,219460 ,1,20387,65 ,1,20388,65 ,1,20389,65 ,1,20390,65 ,1,20391,65 ,1,20392,243100 ,1,20393,65 ,1,20394,65 ,1,20395,314105 ,1,20396,179540 ,1,20397,260865 ,1,20398,65 ,1,20399,315345 ,1,20400,65 ,1,20401,65 ,1,20402,65 ,1,20403,65 ,1,20404,197265 ,1,20405,65 ,1,20406,65 ,1,20407,65 ,1,20408,65 ,1,20409,65 ,1,20410,339080 ,1,20411,65 ,1,20412,65 ,1,20413,65 ,1,20414,220805 ,1,20415,65 ,1,20416,227410 ,1,20417,65 ,1,20418,65 ,1,20419,65 ,1,20420,321070 ,1,20421,65 ,1,20422,65 ,1,20423,65 ,1,20424,65 ,1,20425,65 ,1,20426,216985 ,1,20427,65 ,1,20428,65 ,1,20429,65 ,1,20430,335330 ,1,20431,196475 ,1,20432,65 ,1,20433,241110 ,1,20434,65 ,1,20435,65 ,1,20436,65 ,1,20437,65 ,1,20438,65 ,1,20439,327335 ,1,20440,65 ,1,20441,65 ,1,20442,65 ,1,20443,65 ,1,20444,65 ,1,20445,65 ,1,20446,65 ,1,20447,236325 ,1,20448,201590 ,1,20449,183985 ,1,20450,65 ,1,20451,293695 ,1,20452,220865 ,1,20453,65 ,1,20454,65 ,1,20455,65 ,1,20456,181840 ,1,20457,65 ,1,20458,65 ,1,20459,65 ,1,20460,183430 ,1,20461,221040 ,1,20462,288990 ,1,20463,235415 ,1,20464,65 ,1,20465,208080 ,1,20466,65 ,1,20467,65 ,1,20468,259205 ,1,20469,65 ,1,20470,212925 ,1,20471,338290 ,1,20472,201150 ,1,20473,65 ,1,20474,65 ,1,20475,295735 ,1,20476,264495 ,1,20477,65 ,1,20478,65 ,1,20479,65 ,1,20480,65 ,1,20481,271795 ,1,20482,65 ,1,20483,65 ,1,20484,65 ,1,20485,65 ,1,20486,284850 ,1,20487,253135 ,1,20488,65 ,1,20489,327935 ,1,20490,302745 ,1,20491,272970 ,1,20492,65 ,1,20493,351780 ,1,20494,256460 ,1,20495,65 ,1,20496,65 ,1,20497,65 ,1,20498,199585 ,1,20499,65 ,1,20500,65 ,1,20501,65 ,1,20502,65 ,1,20503,65 ,1,20504,65 ,1,20505,65 ,1,20506,65 ,1,20507,65 ,1,20508,173795 ,1,20509,65 ,1,20510,65 ,1,20511,65 ,1,20512,214840 ,1,20513,318460 ,1,20514,65 ,1,20515,65 ,1,20516,282035 ,1,20517,65 ,1,20518,65 ,1,20519,65 ,1,20520,319475 ,1,20521,65 ,1,20522,256055 ,1,20523,65 ,1,20524,268670 ,1,20525,65 ,1,20526,249440 ,1,20527,235695 ,1,20528,65 ,1,20529,65 ,1,20530,65 ,1,20531,65 ,1,20532,65 ,1,20533,65 ,1,20534,326130 ,1,20535,65 ,1,20536,334935 ,1,20537,219685 ,1,20538,181175 ,1,20539,257345 ,1,20540,321390 ,1,20541,177870 ,1,20542,65 ,1,20543,65 ,1,20544,65 ,1,20545,65 ,1,20546,65 ,1,20547,65 ,1,20548,184440 ,1,20549,65 ,1,20550,210510 ,1,20551,199700 ,1,20552,65 ,1,20553,65 ,1,20554,65 ,1,20555,65 ,1,20556,65 ,1,20557,65 ,1,20558,211670 ,1,20559,221775 ,1,20560,65 ,1,20561,65 ,1,20562,290215 ,1,20563,214605 ,1,20564,65 ,1,20565,335760 ,1,20566,65 ,1,20567,216410 ,1,20568,65 ,1,20569,65 ,1,20570,65 ,1,20571,238345 ,1,20572,65 ,1,20573,65 ,1,20574,65 ,1,20575,289965 ,1,20576,65 ,1,20577,65 ,1,20578,65 ,1,20579,65 ,1,20580,65 ,1,20581,65 ,1,20582,282855 ,1,20583,294790 ,1,20584,65 ,1,20585,182445 ,1,20586,303090 ,1,20587,65 ,1,20588,333000 ,1,20589,258970 ,1,20590,65 ,1,20591,329720 ,1,20592,334455 ,1,20593,255515 ,1,20594,65 ,1,20595,65 ,1,20596,65 ,1,20597,65 ,1,20598,65 ,1,20599,65 ,1,20600,65 ,1,20601,65 ,1,20602,65 ,1,20603,197700 ,1,20604,341970 ,1,20605,241235 ,1,20606,242565 ,1,20607,260960 ,1,20608,283285 ,1,20609,65 ,1,20610,215565 ,1,20611,317095 ,1,20612,65 ,1,20613,65 ,1,20614,215415 ,1,20615,245865 ,1,20616,65 ,1,20617,65 ,1,20618,65 ,1,20619,233510 ,1,20620,65 ,1,20621,65 ,1,20622,193570 ,1,20623,264780 ,1,20624,65 ,1,20625,65 ,1,20626,240755 ,1,20627,293965 ,1,20628,65 ,1,20629,65 ,1,20630,65 ,1,20631,299185 ,1,20632,254145 ,1,20633,263010 ,1,20634,229260 ,1,20635,65 ,1,20636,212290 ,1,20637,65 ,1,20638,65 ,1,20639,65 ,1,20640,65 ,1,20641,65 ,1,20642,65 ,1,20643,65 ,1,20644,65 ,1,20645,65 ,1,20646,219440 ,1,20647,65 ,1,20648,233530 ,1,20649,202565 ,1,20650,65 ,1,20651,65 ,1,20652,65 ,1,20653,65 ,1,20654,65 ,1,20655,65 ,1,20656,203295 ,1,20657,328455 ,1,20658,65 ,1,20659,65 ,1,20660,65 ,1,20661,65 ,1,20662,245065 ,1,20663,259485 ,1,20664,65 ,1,20665,65 ,1,20666,65 ,1,20667,65 ,1,20668,65 ,1,20669,65 ,1,20670,288055 ,1,20671,303330 ,1,20672,242830 ,1,20673,332895 ,1,20674,65 ,1,20675,229315 ,1,20676,65 ,1,20677,65 ,1,20678,65 ,1,20679,65 ,1,20680,347655 ,1,20681,319195 ,1,20682,65 ,1,20683,241090 ,1,20684,214905 ,1,20685,65 ,1,20686,256730 ,1,20687,286780 ,1,20688,65 ,1,20689,65 ,1,20690,65 ,1,20691,65 ,1,20692,65 ,1,20693,65 ,1,20694,65 ,1,20695,65 ,1,20696,65 ,1,20697,65 ,1,20698,231965 ,1,20699,65 ,1,20700,229965 ,1,20701,65 ,1,20702,174065 ,1,20703,265765 ,1,20704,324440 ,1,20705,65 ,1,20706,184525 ,1,20707,65 ,1,20708,317615 ,1,20709,65 ,1,20710,65 ,1,20711,65 ,1,20712,65 ,1,20713,170635 ,1,20714,65 ,1,20715,291245 ,1,20716,202115 ,1,20717,65 ,1,20718,324395 ,1,20719,65 ,1,20720,278445 ,1,20721,65 ,1,20722,349865 ,1,20723,65 ,1,20724,65 ,1,20725,65 ,1,20726,65 ,1,20727,335035 ,1,20728,226995 ,1,20729,246245 ,1,20730,207830 ,1,20731,65 ,1,20732,65 ,1,20733,65 ,1,20734,274710 ,1,20735,216445 ,1,20736,65 ,1,20737,65 ,1,20738,333870 ,1,20739,235565 ,1,20740,252205 ,1,20741,244115 ,1,20742,65 ,1,20743,236590 ,1,20744,319525 ,1,20745,65 ,1,20746,301945 ,1,20747,272505 ,1,20748,65 ,1,20749,65 ,1,20750,181350 ,1,20751,317385 ,1,20752,65 ,1,20753,65 ,1,20754,65 ,1,20755,65 ,1,20756,65 ,1,20757,65 ,1,20758,65 ,1,20759,65 ,1,20760,65 ,1,20761,65 ,1,20762,249655 ,1,20763,65 ,1,20764,196605 ,1,20765,65 ,1,20766,65 ,1,20767,65 ,1,20768,65 ,1,20769,65 ,1,20770,65 ,1,20771,65 ,1,20772,65 ,1,20773,65 ,1,20774,292080 ,1,20775,329740 ,1,20776,225785 ,1,20777,65 ,1,20778,65 ,1,20779,65 ,1,20780,65 ,1,20781,65 ,1,20782,65 ,1,20783,65 ,1,20784,65 ,1,20785,65 ,1,20786,182130 ,1,20787,237240 ,1,20788,65 ,1,20789,65 ,1,20790,65 ,1,20791,65 ,1,20792,169480 ,1,20793,181985 ,1,20794,211765 ,1,20795,65 ,1,20796,65 ,1,20797,65 ,1,20798,65 ,1,20799,225820 ,1,20800,193600 ,1,20801,212820 ,1,20802,170765 ,1,20803,208415 ,1,20804,294115 ,1,20805,194285 ,1,20806,65 ,1,20807,325050 ,1,20808,65 ,1,20809,65 ,1,20810,226375 ,1,20811,65 ,1,20812,65 ,1,20813,232645 ,1,20814,65 ,1,20815,65 ,1,20816,237830 ,1,20817,65 ,1,20818,65 ,1,20819,65 ,1,20820,65 ,1,20821,188450 ,1,20822,218250 ,1,20823,65 ,1,20824,196355 ,1,20825,65 ,1,20826,217100 ,1,20827,214090 ,1,20828,180145 ,1,20829,281470 ,1,20830,180450 ,1,20831,65 ,1,20832,65 ,1,20833,235165 ,1,20834,65 ,1,20835,65 ,1,20836,65 ,1,20837,327010 ,1,20838,65 ,1,20839,65 ,1,20840,65 ,1,20841,65 ,1,20842,224190 ,1,20843,65 ,1,20844,65 ,1,20845,65 ,1,20846,65 ,1,20847,65 ,1,20848,65 ,1,20849,294710 ,1,20850,330840 ,1,20851,340345 ,1,20852,65 ,1,20853,262920 ,1,20854,65 ,1,20855,293020 ,1,20856,243070 ,1,20857,241535 ,1,20858,65 ,1,20859,65 ,1,20860,272605 ,1,20861,250255 ,1,20862,65 ,1,20863,65 ,1,20864,200250 ,1,20865,65 ,1,20866,266510 ,1,20867,65 ,1,20868,304535 ,1,20869,65 ,1,20870,65 ,1,20871,65 ,1,20872,65 ,1,20873,65 ,1,20874,65 ,1,20875,65 ,1,20876,65 ,1,20877,338095 ,1,20878,187860 ,1,20879,340115 ,1,20880,65 ,1,20881,65 ,1,20882,65 ,1,20883,65 ,1,20884,65 ,1,20885,65 ,1,20886,272305 ,1,20887,195615 ,1,20888,65 ,1,20889,349855 ,1,20890,65 ,1,20891,268530 ,1,20892,65 ,1,20893,65 ,1,20894,65 ,1,20895,303925 ,1,20896,65 ,1,20897,201895 ,1,20898,208615 ,1,20899,65 ,1,20900,65 ,1,20901,239450 ,1,20902,285045 ,1,20903,65 ,1,20904,220065 ,1,20905,279055 ,1,20906,65 ,1,20907,65 ,1,20908,186585 ,1,20909,214155 ,1,20910,65 ,1,20911,252005 ,1,20912,65 ,1,20913,289210 ,1,20914,269960 ,1,20915,65 ,1,20916,320575 ,1,20917,65 ,1,20918,65 ,1,20919,65 ,1,20920,65 ,1,20921,65 ,1,20922,65 ,1,20923,193530 ,1,20924,65 ,1,20925,65 ,1,20926,260010 ,1,20927,65 ,1,20928,65 ,1,20929,65 ,1,20930,281300 ,1,20931,65 ,1,20932,282925 ,1,20933,65 ,1,20934,65 ,1,20935,65 ,1,20936,65 ,1,20937,65 ,1,20938,65 ,1,20939,313725 ,1,20940,320870 ,1,20941,65 ,1,20942,65 ,1,20943,65 ,1,20944,65 ,1,20945,65 ,1,20946,65 ,1,20947,65 ,1,20948,65 ,1,20949,204300 ,1,20950,205475 ,1,20951,301235 ,1,20952,322780 ,1,20953,239370 ,1,20954,65 ,1,20955,243570 ,1,20956,260185 ,1,20957,189865 ,1,20958,65 ,1,20959,65 ,1,20960,65 ,1,20961,234305 ,1,20962,183095 ,1,20963,210925 ,1,20964,256855 ,1,20965,348680 ,1,20966,315735 ,1,20967,65 ,1,20968,65 ,1,20969,328865 ,1,20970,65 ,1,20971,65 ,1,20972,65 ,1,20973,183215 ,1,20974,186415 ,1,20975,279035 ,1,20976,65 ,1,20977,65 ,1,20978,65 ,1,20979,65 ,1,20980,335670 ,1,20981,65 ,1,20982,65 ,1,20983,65 ,1,20984,65 ,1,20985,65 ,1,20986,326285 ,1,20987,259985 ,1,20988,272125 ,1,20989,65 ,1,20990,307780 ,1,20991,65 ,1,20992,236040 ,1,20993,65 ,1,20994,65 ,1,20995,236610 ,1,20996,65 ,1,20997,65 ,1,20998,65 ,1,20999,222520 ,1,21000,65 ,1,21001,65 ,1,21002,65 ,1,21003,65 ,1,21004,65 ,1,21005,65 ,1,21006,65 ,1,21007,65 ,1,21008,65 ,1,21009,65 ,1,21010,65 ,1,21011,65 ,1,21012,65 ,1,21013,65 ,1,21014,65 ,1,21015,266820 ,1,21016,219350 ,1,21017,65 ,1,21018,65 ,1,21019,262250 ,1,21020,65 ,1,21021,65 ,1,21022,259650 ,1,21023,65 ,1,21024,243330 ,1,21025,183535 ,1,21026,260490 ,1,21027,326055 ,1,21028,65 ,1,21029,65 ,1,21030,65 ,1,21031,340515 ,1,21032,215975 ,1,21033,65 ,1,21034,349845 ,1,21035,190030 ,1,21036,330545 ,1,21037,211505 ,1,21038,65 ,1,21039,258860 ,1,21040,218350 ,1,21041,65 ,1,21042,65 ,1,21043,65 ,1,21044,65 ,1,21045,65 ,1,21046,65 ,1,21047,204730 ,1,21048,205990 ,1,21049,191230 ,1,21050,65 ,1,21051,182985 ,1,21052,213175 ,1,21053,65 ,1,21054,203115 ,1,21055,251525 ,1,21056,65 ,1,21057,198085 ,1,21058,65 ,1,21059,234940 ,1,21060,65 ,1,21061,230080 ,1,21062,278535 ,1,21063,339800 ,1,21064,65 ,1,21065,65 ,1,21066,65 ,1,21067,341925 ,1,21068,65 ,1,21069,311720 ,1,21070,65 ,1,21071,266890 ,1,21072,65 ,1,21073,65 ,1,21074,65 ,1,21075,293775 ,1,21076,191850 ,1,21077,276850 ,1,21078,223165 ,1,21079,65 ,1,21080,234635 ,1,21081,65 ,1,21082,166660 ,1,21083,261360 ,1,21084,267980 ,1,21085,65 ,1,21086,65 ,1,21087,274135 ,1,21088,65 ,1,21089,65 ,1,21090,244650 ,1,21091,261145 ,1,21092,65 ,1,21093,254085 ,1,21094,65 ,1,21095,65 ,1,21096,65 ,1,21097,318420 ,1,21098,262675 ,1,21099,65 ,1,21100,65 ,1,21101,308655 ,1,21102,318775 ,1,21103,226155 ,1,21104,65 ,1,21105,65 ,1,21106,65 ,1,21107,65 ,1,21108,319495 ,1,21109,65 ,1,21110,65 ,1,21111,65 ,1,21112,65 ,1,21113,65 ,1,21114,65 ,1,21115,235290 ,1,21116,321990 ,1,21117,65 ,1,21118,65 ,1,21119,65 ,1,21120,172140 ,1,21121,179120 ,1,21122,349825 ,1,21123,65 ,1,21124,206485 ,1,21125,65 ,1,21126,65 ,1,21127,304640 ,1,21128,283225 ,1,21129,65 ,1,21130,65 ,1,21131,65 ,1,21132,65 ,1,21133,65 ,1,21134,203235 ,1,21135,65 ,1,21136,338515 ,1,21137,65 ,1,21138,334740 ,1,21139,65 ,1,21140,203675 ,1,21141,65 ,1,21142,297425 ,1,21143,303660 ,1,21144,65 ,1,21145,65 ,1,21146,65 ,1,21147,65 ,1,21148,243895 ,1,21149,65 ,1,21150,65 ,1,21151,65 ,1,21152,65 ,1,21153,286390 ,1,21154,65 ,1,21155,65 ,1,21156,65 ,1,21157,65 ,1,21158,65 ,1,21159,65 ,1,21160,65 ,1,21161,65 ,1,21162,65 ,1,21163,65 ,1,21164,339930 ,1,21165,309600 ,1,21166,191750 ,1,21167,238850 ,1,21168,294520 ,1,21169,65 ,1,21170,177150 ,1,21171,65 ,1,21172,65 ,1,21173,65 ,1,21174,65 ,1,21175,65 ,1,21176,65 ,1,21177,65 ,1,21178,232550 ,1,21179,65 ,1,21180,65 ,1,21181,65 ,1,21182,65 ,1,21183,65 ,1,21184,65 ,1,21185,65 ,1,21186,192270 ,1,21187,65 ,1,21188,316140 ,1,21189,65 ,1,21190,323660 ,1,21191,322155 ,1,21192,65 ,1,21193,275390 ,1,21194,286770 ,1,21195,65 ,1,21196,65 ,1,21197,307160 ,1,21198,65 ,1,21199,254970 ,1,21200,65 ,1,21201,187200 ,1,21202,345685 ,1,21203,65 ,1,21204,65 ,1,21205,216100 ,1,21206,65 ,1,21207,65 ,1,21208,65 ,1,21209,286915 ,1,21210,185860 ,1,21211,281275 ,1,21212,65 ,1,21213,65 ,1,21214,299065 ,1,21215,65 ,1,21216,65 ,1,21217,65 ,1,21218,65 ,1,21219,65 ,1,21220,65 ,1,21221,341545 ,1,21222,65 ,1,21223,210895 ,1,21224,269175 ,1,21225,65 ,1,21226,65 ,1,21227,327075 ,1,21228,65 ,1,21229,335090 ,1,21230,65 ,1,21231,247370 ,1,21232,190915 ,1,21233,65 ,1,21234,287765 ,1,21235,65 ,1,21236,341020 ,1,21237,65 ,1,21238,209820 ,1,21239,189780 ,1,21240,65 ,1,21241,65 ,1,21242,65 ,1,21243,229800 ,1,21244,65 ,1,21245,65 ,1,21246,65 ,1,21247,65 ,1,21248,65 ,1,21249,65 ,1,21250,241325 ,1,21251,65 ,1,21252,65 ,1,21253,197525 ,1,21254,215610 ,1,21255,247215 ,1,21256,217185 ,1,21257,227515 ,1,21258,65 ,1,21259,65 ,1,21260,65 ,1,21261,293825 ,1,21262,304980 ,1,21263,65 ,1,21264,65 ,1,21265,194690 ,1,21266,262290 ,1,21267,65 ,1,21268,65 ,1,21269,224635 ,1,21270,260525 ,1,21271,301085 ,1,21272,192820 ,1,21273,65 ,1,21274,65 ,1,21275,340570 ,1,21276,65 ,1,21277,65 ,1,21278,285445 ,1,21279,65 ,1,21280,65 ,1,21281,65 ,1,21282,65 ,1,21283,65 ,1,21284,65 ,1,21285,280080 ,1,21286,65 ,1,21287,65 ,1,21288,322530 ,1,21289,186200 ,1,21290,305970 ,1,21291,345780 ,1,21292,65 ,1,21293,294720 ,1,21294,217110 ,1,21295,229385 ,1,21296,65 ,1,21297,65 ,1,21298,344275 ,1,21299,229235 ,1,21300,65 ,1,21301,300925 ,1,21302,288655 ,1,21303,196070 ,1,21304,65 ,1,21305,65 ,1,21306,65 ,1,21307,318935 ,1,21308,172170 ,1,21309,65 ,1,21310,328230 ,1,21311,65 ,1,21312,65 ,1,21313,281360 ,1,21314,220235 ,1,21315,65 ,1,21316,65 ,1,21317,311885 ,1,21318,279950 ,1,21319,65 ,1,21320,209380 ,1,21321,65 ,1,21322,238060 ,1,21323,65 ,1,21324,65 ,1,21325,65 ,1,21326,65 ,1,21327,65 ,1,21328,65 ,1,21329,65 ,1,21330,65 ,1,21331,237750 ,1,21332,261105 ,1,21333,65 ,1,21334,65 ,1,21335,306335 ,1,21336,65 ,1,21337,208175 ,1,21338,65 ,1,21339,65 ,1,21340,65 ,1,21341,65 ,1,21342,65 ,1,21343,238355 ,1,21344,65 ,1,21345,65 ,1,21346,65 ,1,21347,237145 ,1,21348,65 ,1,21349,65 ,1,21350,65 ,1,21351,65 ,1,21352,65 ,1,21353,65 ,1,21354,237580 ,1,21355,323730 ,1,21356,65 ,1,21357,65 ,1,21358,65 ,1,21359,65 ,1,21360,65 ,1,21361,65 ,1,21362,267305 ,1,21363,65 ,1,21364,65 ,1,21365,65 ,1,21366,65 ,1,21367,65 ,1,21368,65 ,1,21369,65 ,1,21370,65 ,1,21371,255170 ,1,21372,193855 ,1,21373,232910 ,1,21374,330165 ,1,21375,169775 ,1,21376,65 ,1,21377,65 ,1,21378,269560 ,1,21379,297325 ,1,21380,206905 ,1,21381,65 ,1,21382,65 ,1,21383,65 ,1,21384,65 ,1,21385,205310 ,1,21386,245520 ,1,21387,65 ,1,21388,301495 ,1,21389,65 ,1,21390,65 ,1,21391,290565 ,1,21392,249005 ,1,21393,65 ,1,21394,232610 ,1,21395,65 ,1,21396,309760 ,1,21397,188185 ,1,21398,65 ,1,21399,232020 ,1,21400,245775 ,1,21401,65 ,1,21402,65 ,1,21403,181405 ,1,21404,298335 ,1,21405,65 ,1,21406,65 ,1,21407,182805 ,1,21408,65 ,1,21409,65 ,1,21410,65 ,1,21411,65 ,1,21412,65 ,1,21413,65 ,1,21414,342065 ,1,21415,65 ,1,21416,271820 ,1,21417,65 ,1,21418,247855 ,1,21419,175775 ,1,21420,65 ,1,21421,65 ,1,21422,65 ,1,21423,65 ,1,21424,308425 ,1,21425,345030 ,1,21426,225410 ,1,21427,248610 ,1,21428,222235 ,1,21429,65 ,1,21430,65 ,1,21431,65 ,1,21432,65 ,1,21433,65 ,1,21434,65 ,1,21435,65 ,1,21436,65 ,1,21437,65 ,1,21438,65 ,1,21439,220815 ,1,21440,301015 ,1,21441,65 ,1,21442,65 ,1,21443,65 ,1,21444,241880 ,1,21445,246540 ,1,21446,314345 ,1,21447,348545 ,1,21448,65 ,1,21449,237135 ,1,21450,65 ,1,21451,65 ,1,21452,65 ,1,21453,65 ,1,21454,267135 ,1,21455,65 ,1,21456,65 ,1,21457,65 ,1,21458,298835 ,1,21459,184910 ,1,21460,301200 ,1,21461,65 ,1,21462,65 ,1,21463,65 ,1,21464,65 ,1,21465,270295 ,1,21466,65 ,1,21467,65 ,1,21468,274490 ,1,21469,251535 ,1,21470,283025 ,1,21471,65 ,1,21472,65 ,1,21473,65 ,1,21474,65 ,1,21475,65 ,1,21476,65 ,1,21477,65 ,1,21478,65 ,1,21479,296935 ,1,21480,210400 ,1,21481,65 ,1,21482,65 ,1,21483,65 ,1,21484,240495 ,1,21485,294730 ,1,21486,347770 ,1,21487,199405 ,1,21488,65 ,1,21489,65 ,1,21490,65 ,1,21491,231370 ,1,21492,65 ,1,21493,65 ,1,21494,65 ,1,21495,215935 ,1,21496,277340 ,1,21497,324630 ,1,21498,203105 ,1,21499,215295 ,1,21500,245300 ,1,21501,274660 ,1,21502,65 ,1,21503,347710 ,1,21504,65 ,1,21505,65 ,1,21506,287255 ,1,21507,315325 ,1,21508,65 ,1,21509,303450 ,1,21510,65 ,1,21511,308775 ,1,21512,241845 ,1,21513,193350 ,1,21514,323940 ,1,21515,65 ,1,21516,241670 ,1,21517,232290 ,1,21518,65 ,1,21519,65 ,1,21520,311195 ,1,21521,243470 ,1,21522,263020 ,1,21523,293000 ,1,21524,337180 ,1,21525,251555 ,1,21526,234865 ,1,21527,349815 ,1,21528,65 ,1,21529,343170 ,1,21530,65 ,1,21531,65 ,1,21532,306610 ,1,21533,65 ,1,21534,65 ,1,21535,65 ,1,21536,65 ,1,21537,221495 ,1,21538,306180 ,1,21539,65 ,1,21540,256865 ,1,21541,65 ,1,21542,65 ,1,21543,65 ,1,21544,205875 ,1,21545,201570 ,1,21546,65 ,1,21547,65 ,1,21548,65 ,1,21549,65 ,1,21550,65 ,1,21551,65 ,1,21552,65 ,1,21553,65 ,1,21554,65 ,1,21555,65 ,1,21556,275705 ,1,21557,336095 ,1,21558,227060 ,1,21559,253635 ,1,21560,257710 ,1,21561,335535 ,1,21562,317745 ,1,21563,65 ,1,21564,167320 ,1,21565,235345 ,1,21566,65 ,1,21567,335720 ,1,21568,173805 ,1,21569,65 ,1,21570,65 ,1,21571,65 ,1,21572,65 ,1,21573,296065 ,1,21574,345900 ,1,21575,65 ,1,21576,65 ,1,21577,187105 ,1,21578,316835 ,1,21579,314035 ,1,21580,65 ,1,21581,65 ,1,21582,65 ,1,21583,218465 ,1,21584,65 ,1,21585,65 ,1,21586,65 ,1,21587,267790 ,1,21588,292855 ,1,21589,65 ,1,21590,225130 ,1,21591,65 ,1,21592,223550 ,1,21593,65 ,1,21594,65 ,1,21595,65 ,1,21596,65 ,1,21597,183870 ,1,21598,257580 ,1,21599,338625 ,1,21600,65 ,1,21601,290660 ,1,21602,65 ,1,21603,65 ,1,21604,65 ,1,21605,329840 ,1,21606,65 ,1,21607,65 ,1,21608,295395 ,1,21609,65 ,1,21610,65 ,1,21611,65 ,1,21612,65 ,1,21613,314415 ,1,21614,65 ,1,21615,180325 ,1,21616,65 ,1,21617,173390 ,1,21618,65 ,1,21619,65 ,1,21620,65 ,1,21621,229365 ,1,21622,65 ,1,21623,65 ,1,21624,195740 ,1,21625,257460 ,1,21626,65 ,1,21627,65 ,1,21628,208845 ,1,21629,65 ,1,21630,65 ,1,21631,65 ,1,21632,65 ,1,21633,65 ,1,21634,65 ,1,21635,65 ,1,21636,65 ,1,21637,65 ,1,21638,65 ,1,21639,65 ,1,21640,186630 ,1,21641,65 ,1,21642,65 ,1,21643,65 ,1,21644,65 ,1,21645,65 ,1,21646,65 ,1,21647,65 ,1,21648,65 ,1,21649,65 ,1,21650,320890 ,1,21651,279705 ,1,21652,193790 ,1,21653,325190 ,1,21654,287640 ,1,21655,65 ,1,21656,65 ,1,21657,65 ,1,21658,65 ,1,21659,244325 ,1,21660,65 ,1,21661,289475 ,1,21662,65 ,1,21663,65 ,1,21664,65 ,1,21665,65 ,1,21666,65 ,1,21667,65 ,1,21668,332030 ,1,21669,65 ,1,21670,65 ,1,21671,252705 ,1,21672,65 ,1,21673,65 ,1,21674,65 ,1,21675,65 ,1,21676,65 ,1,21677,65 ,1,21678,65 ,1,21679,65 ,1,21680,65 ,1,21681,256935 ,1,21682,65 ,1,21683,309460 ,1,21684,65 ,1,21685,65 ,1,21686,234820 ,1,21687,204525 ,1,21688,65 ,1,21689,287465 ,1,21690,266045 ,1,21691,65 ,1,21692,299795 ,1,21693,180230 ,1,21694,329950 ,1,21695,65 ,1,21696,65 ,1,21697,65 ,1,21698,195200 ,1,21699,65 ,1,21700,65 ,1,21701,65 ,1,21702,65 ,1,21703,65 ,1,21704,65 ,1,21705,65 ,1,21706,287015 ,1,21707,65 ,1,21708,65 ,1,21709,65 ,1,21710,65 ,1,21711,65 ,1,21712,65 ,1,21713,204195 ,1,21714,258575 ,1,21715,286720 ,1,21716,65 ,1,21717,210490 ,1,21718,65 ,1,21719,65 ,1,21720,65 ,1,21721,65 ,1,21722,258775 ,1,21723,301875 ,1,21724,65 ,1,21725,351910 ,1,21726,65 ,1,21727,65 ,1,21728,177045 ,1,21729,65 ,1,21730,65 ,1,21731,65 ,1,21732,65 ,1,21733,65 ,1,21734,287385 ,1,21735,218835 ,1,21736,65 ,1,21737,65 ,1,21738,307790 ,1,21739,224565 ,1,21740,213955 ,1,21741,294390 ,1,21742,65 ,1,21743,65 ,1,21744,65 ,1,21745,259300 ,1,21746,65 ,1,21747,65 ,1,21748,65 ,1,21749,65 ,1,21750,65 ,1,21751,65 ,1,21752,65 ,1,21753,188050 ,1,21754,65 ,1,21755,65 ,1,21756,184205 ,1,21757,322325 ,1,21758,65 ,1,21759,237515 ,1,21760,188605 ,1,21761,65 ,1,21762,65 ,1,21763,65 ,1,21764,334345 ,1,21765,256205 ,1,21766,65 ,1,21767,281760 ,1,21768,180830 ,1,21769,65 ,1,21770,233085 ,1,21771,65 ,1,21772,65 ,1,21773,65 ,1,21774,247160 ,1,21775,65 ,1,21776,249785 ,1,21777,65 ,1,21778,65 ,1,21779,65 ,1,21780,65 ,1,21781,65 ,1,21782,341435 ,1,21783,275870 ,1,21784,65 ,1,21785,193155 ,1,21786,65 ,1,21787,65 ,1,21788,65 ,1,21789,65 ,1,21790,311835 ,1,21791,65 ,1,21792,65 ,1,21793,199615 ,1,21794,65 ,1,21795,65 ,1,21796,65 ,1,21797,320515 ,1,21798,65 ,1,21799,312705 ,1,21800,187350 ,1,21801,205855 ,1,21802,65 ,1,21803,254990 ,1,21804,65 ,1,21805,349805 ,1,21806,65 ,1,21807,65 ,1,21808,65 ,1,21809,65 ,1,21810,326035 ,1,21811,65 ,1,21812,65 ,1,21813,65 ,1,21814,65 ,1,21815,65 ,1,21816,65 ,1,21817,65 ,1,21818,242350 ,1,21819,65 ,1,21820,65 ,1,21821,65 ,1,21822,65 ,1,21823,65 ,1,21824,65 ,1,21825,188925 ,1,21826,204460 ,1,21827,181100 ,1,21828,65 ,1,21829,65 ,1,21830,65 ,1,21831,65 ,1,21832,65 ,1,21833,65 ,1,21834,65 ,1,21835,263480 ,1,21836,307605 ,1,21837,305295 ,1,21838,292360 ,1,21839,65 ,1,21840,65 ,1,21841,65 ,1,21842,265555 ,1,21843,255775 ,1,21844,65 ,1,21845,65 ,1,21846,65 ,1,21847,226320 ,1,21848,65 ,1,21849,65 ,1,21850,263120 ,1,21851,179435 ,1,21852,65 ,1,21853,65 ,1,21854,65 ,1,21855,65 ,1,21856,65 ,1,21857,65 ,1,21858,65 ,1,21859,167840 ,1,21860,274730 ,1,21861,65 ,1,21862,273910 ,1,21863,234190 ,1,21864,65 ,1,21865,347740 ,1,21866,65 ,1,21867,65 ,1,21868,65 ,1,21869,65 ,1,21870,299360 ,1,21871,219645 ,1,21872,65 ,1,21873,65 ,1,21874,65 ,1,21875,65 ,1,21876,65 ,1,21877,65 ,1,21878,281070 ,1,21879,65 ,1,21880,65 ,1,21881,226105 ,1,21882,343510 ,1,21883,254290 ,1,21884,210175 ,1,21885,237460 ,1,21886,65 ,1,21887,65 ,1,21888,65 ,1,21889,65 ,1,21890,65 ,1,21891,65 ,1,21892,65 ,1,21893,65 ,1,21894,349795 ,1,21895,65 ,1,21896,65 ,1,21897,65 ,1,21898,340800 ,1,21899,65 ,1,21900,182625 ,1,21901,236490 ,1,21902,294940 ,1,21903,65 ,1,21904,333225 ,1,21905,191445 ,1,21906,202220 ,1,21907,65 ,1,21908,65 ,1,21909,265955 ,1,21910,321400 ,1,21911,65 ,1,21912,65 ,1,21913,264725 ,1,21914,65 ,1,21915,200030 ,1,21916,242685 ,1,21917,65 ,1,21918,247560 ,1,21919,65 ,1,21920,307575 ,1,21921,232720 ,1,21922,65 ,1,21923,250670 ,1,21924,220135 ,1,21925,65 ,1,21926,65 ,1,21927,300365 ,1,21928,333335 ,1,21929,65 ,1,21930,65 ,1,21931,65 ,1,21932,65 ,1,21933,207630 ,1,21934,293350 ,1,21935,216915 ,1,21936,170175 ,1,21937,65 ,1,21938,65 ,1,21939,65 ,1,21940,178135 ,1,21941,65 ,1,21942,65 ,1,21943,65 ,1,21944,349770 ,1,21945,65 ,1,21946,65 ,1,21947,65 ,1,21948,317915 ,1,21949,65 ,1,21950,65 ,1,21951,65 ,1,21952,65 ,1,21953,65 ,1,21954,65 ,1,21955,65 ,1,21956,65 ,1,21957,65 ,1,21958,65 ,1,21959,65 ,1,21960,65 ,1,21961,65 ,1,21962,65 ,1,21963,65 ,1,21964,232600 ,1,21965,65 ,1,21966,65 ,1,21967,211125 ,1,21968,65 ,1,21969,65 ,1,21970,206425 ,1,21971,280775 ,1,21972,65 ,1,21973,65 ,1,21974,65 ,1,21975,65 ,1,21976,65 ,1,21977,175805 ,1,21978,295085 ,1,21979,65 ,1,21980,65 ,1,21981,65 ,1,21982,193670 ,1,21983,291980 ,1,21984,316665 ,1,21985,319000 ,1,21986,65 ,1,21987,187680 ,1,21988,320055 ,1,21989,65 ,1,21990,65 ,1,21991,65 ,1,21992,281580 ,1,21993,239430 ,1,21994,65 ,1,21995,65 ,1,21996,349760 ,1,21997,332575 ,1,21998,273990 ,1,21999,249075 ,1,22000,65 ,1,22001,347250 ,1,22002,277630 ,1,22003,65 ,1,22004,246590 ,1,22005,200085 ,1,22006,65 ,1,22007,65 ,1,22008,65 ,1,22009,65 ,1,22010,65 ,1,22011,65 ,1,22012,65 ,1,22013,349750 ,1,22014,65 ,1,22015,295715 ,1,22016,298685 ,1,22017,65 ,1,22018,65 ,1,22019,311805 ,1,22020,65 ,1,22021,228205 ,1,22022,65 ,1,22023,280700 ,1,22024,213385 ,1,22025,65 ,1,22026,65 ,1,22027,65 ,1,22028,232355 ,1,22029,65 ,1,22030,65 ,1,22031,65 ,1,22032,65 ,1,22033,65 ,1,22034,186620 ,1,22035,65 ,1,22036,304275 ,1,22037,325465 ,1,22038,226875 ,1,22039,65 ,1,22040,65 ,1,22041,275275 ,1,22042,198425 ,1,22043,65 ,1,22044,220255 ,1,22045,65 ,1,22046,236020 ,1,22047,233815 ,1,22048,221160 ,1,22049,65 ,1,22050,231540 ,1,22051,65 ,1,22052,263510 ,1,22053,65 ,1,22054,65 ,1,22055,198445 ,1,22056,262170 ,1,22057,65 ,1,22058,65 ,1,22059,65 ,1,22060,65 ,1,22061,315965 ,1,22062,65 ,1,22063,65 ,1,22064,65 ,1,22065,326170 ,1,22066,285575 ,1,22067,183345 ,1,22068,339770 ,1,22069,186640 ,1,22070,65 ,1,22071,65 ,1,22072,257025 ,1,22073,263630 ,1,22074,177880 ,1,22075,65 ,1,22076,65 ,1,22077,65 ,1,22078,65 ,1,22079,175430 ,1,22080,186065 ,1,22081,65 ,1,22082,65 ,1,22083,329130 ,1,22084,65 ,1,22085,284310 ,1,22086,180460 ,1,22087,209590 ,1,22088,65 ,1,22089,344595 ,1,22090,65 ,1,22091,311740 ,1,22092,190205 ,1,22093,65 ,1,22094,65 ,1,22095,65 ,1,22096,210185 ,1,22097,65 ,1,22098,285765 ,1,22099,65 ,1,22100,65 ,1,22101,65 ,1,22102,65 ,1,22103,65 ,1,22104,65 ,1,22105,65 ,1,22106,65 ,1,22107,314830 ,1,22108,65 ,1,22109,65 ,1,22110,65 ,1,22111,322980 ,1,22112,65 ,1,22113,65 ,1,22114,301555 ,1,22115,65 ,1,22116,65 ,1,22117,65 ,1,22118,318695 ,1,22119,65 ,1,22120,331010 ,1,22121,280025 ,1,22122,170415 ,1,22123,223515 ,1,22124,312950 ,1,22125,65 ,1,22126,65 ,1,22127,65 ,1,22128,65 ,1,22129,258365 ,1,22130,346740 ,1,22131,188270 ,1,22132,65 ,1,22133,65 ,1,22134,65 ,1,22135,65 ,1,22136,65 ,1,22137,65 ,1,22138,276280 ,1,22139,65 ,1,22140,304135 ,1,22141,305410 ,1,22142,344265 ,1,22143,238455 ,1,22144,238540 ,1,22145,196530 ,1,22146,177540 ,1,22147,65 ,1,22148,186875 ,1,22149,239065 ,1,22150,246285 ,1,22151,196810 ,1,22152,65 ,1,22153,180820 ,1,22154,65 ,1,22155,65 ,1,22156,253350 ,1,22157,170295 ,1,22158,314125 ,1,22159,65 ,1,22160,177925 ,1,22161,65 ,1,22162,199065 ,1,22163,65 ,1,22164,65 ,1,22165,65 ,1,22166,65 ,1,22167,65 ,1,22168,254175 ,1,22169,65 ,1,22170,65 ,1,22171,65 ,1,22172,65 ,1,22173,256340 ,1,22174,323680 ,1,22175,65 ,1,22176,65 ,1,22177,65 ,1,22178,65 ,1,22179,233715 ,1,22180,65 ,1,22181,65 ,1,22182,65 ,1,22183,187630 ,1,22184,65 ,1,22185,340750 ,1,22186,224545 ,1,22187,65 ,1,22188,65 ,1,22189,65 ,1,22190,65 ,1,22191,65 ,1,22192,65 ,1,22193,65 ,1,22194,253985 ,1,22195,276185 ,1,22196,65 ,1,22197,267635 ,1,22198,240955 ,1,22199,263520 ,1,22200,347645 ,1,22201,65 ,1,22202,65 ,1,22203,65 ,1,22204,65 ,1,22205,240080 ,1,22206,65 ,1,22207,65 ,1,22208,65 ,1,22209,65 ,1,22210,65 ,1,22211,348235 ,1,22212,176545 ,1,22213,65 ,1,22214,65 ,1,22215,301965 ,1,22216,65 ,1,22217,279555 ,1,22218,293995 ,1,22219,65 ,1,22220,65 ,1,22221,179770 ,1,22222,347070 ,1,22223,65 ,1,22224,336055 ,1,22225,247885 ,1,22226,65 ,1,22227,180960 ,1,22228,65 ,1,22229,65 ,1,22230,317170 ,1,22231,196690 ,1,22232,65 ,1,22233,176000 ,1,22234,65 ,1,22235,65 ,1,22236,65 ,1,22237,65 ,1,22238,65 ,1,22239,65 ,1,22240,218390 ,1,22241,65 ,1,22242,168505 ,1,22243,65 ,1,22244,65 ,1,22245,203490 ,1,22246,266775 ,1,22247,65 ,1,22248,167960 ,1,22249,65 ,1,22250,65 ,1,22251,65 ,1,22252,65 ,1,22253,65 ,1,22254,65 ,1,22255,284165 ,1,22256,235820 ,1,22257,65 ,1,22258,321465 ,1,22259,65 ,1,22260,65 ,1,22261,65 ,1,22262,65 ,1,22263,65 ,1,22264,326520 ,1,22265,65 ,1,22266,65 ,1,22267,185960 ,1,22268,65 ,1,22269,238250 ,1,22270,65 ,1,22271,65 ,1,22272,65 ,1,22273,273300 ,1,22274,200700 ,1,22275,65 ,1,22276,65 ,1,22277,65 ,1,22278,210915 ,1,22279,65 ,1,22280,65 ,1,22281,65 ,1,22282,349740 ,1,22283,253125 ,1,22284,304285 ,1,22285,65 ,1,22286,65 ,1,22287,178395 ,1,22288,335975 ,1,22289,65 ,1,22290,65 ,1,22291,65 ,1,22292,65 ,1,22293,65 ,1,22294,184515 ,1,22295,233015 ,1,22296,65 ,1,22297,65 ,1,22298,313165 ,1,22299,248955 ,1,22300,225890 ,1,22301,65 ,1,22302,65 ,1,22303,65 ,1,22304,65 ,1,22305,234800 ,1,22306,211235 ,1,22307,65 ,1,22308,336830 ,1,22309,276025 ,1,22310,65 ,1,22311,65 ,1,22312,65 ,1,22313,65 ,1,22314,65 ,1,22315,65 ,1,22316,65 ,1,22317,65 ,1,22318,65 ,1,22319,65 ,1,22320,334850 ,1,22321,177020 ,1,22322,65 ,1,22323,65 ,1,22324,65 ,1,22325,65 ,1,22326,233805 ,1,22327,65 ,1,22328,65 ,1,22329,65 ,1,22330,258840 ,1,22331,203275 ,1,22332,235405 ,1,22333,65 ,1,22334,347970 ,1,22335,65 ,1,22336,65 ,1,22337,65 ,1,22338,65 ,1,22339,65 ,1,22340,65 ,1,22341,65 ,1,22342,65 ,1,22343,269665 ,1,22344,289280 ,1,22345,65 ,1,22346,175510 ,1,22347,318235 ,1,22348,254850 ,1,22349,338585 ,1,22350,236430 ,1,22351,211430 ,1,22352,273740 ,1,22353,65 ,1,22354,65 ,1,22355,65 ,1,22356,65 ,1,22357,65 ,1,22358,65 ,1,22359,241815 ,1,22360,269505 ,1,22361,65 ,1,22362,65 ,1,22363,230940 ,1,22364,217230 ,1,22365,65 ,1,22366,194170 ,1,22367,339025 ,1,22368,303990 ,1,22369,210935 ,1,22370,172505 ,1,22371,273240 ,1,22372,65 ,1,22373,65 ,1,22374,65 ,1,22375,258565 ,1,22376,336465 ,1,22377,65 ,1,22378,199965 ,1,22379,187610 ,1,22380,289905 ,1,22381,65 ,1,22382,65 ,1,22383,65 ,1,22384,338405 ,1,22385,65 ,1,22386,65 ,1,22387,65 ,1,22388,65 ,1,22389,185400 ,1,22390,65 ,1,22391,312920 ,1,22392,65 ,1,22393,65 ,1,22394,65 ,1,22395,65 ,1,22396,65 ,1,22397,65 ,1,22398,171225 ,1,22399,65 ,1,22400,65 ,1,22401,204410 ,1,22402,65 ,1,22403,279655 ,1,22404,65 ,1,22405,65 ,1,22406,65 ,1,22407,240370 ,1,22408,65 ,1,22409,65 ,1,22410,227640 ,1,22411,65 ,1,22412,345225 ,1,22413,65 ,1,22414,65 ,1,22415,65 ,1,22416,65 ,1,22417,254205 ,1,22418,65 ,1,22419,65 ,1,22420,65 ,1,22421,65 ,1,22422,65 ,1,22423,65 ,1,22424,349730 ,1,22425,65 ,1,22426,65 ,1,22427,232505 ,1,22428,249490 ,1,22429,65 ,1,22430,320045 ,1,22431,65 ,1,22432,65 ,1,22433,65 ,1,22434,65 ,1,22435,244095 ,1,22436,347150 ,1,22437,206385 ,1,22438,65 ,1,22439,65 ,1,22440,65 ,1,22441,198225 ,1,22442,277705 ,1,22443,177200 ,1,22444,220745 ,1,22445,170700 ,1,22446,65 ,1,22447,243805 ,1,22448,65 ,1,22449,254630 ,1,22450,65 ,1,22451,65 ,1,22452,258105 ,1,22453,340580 ,1,22454,65 ,1,22455,337330 ,1,22456,65 ,1,22457,65 ,1,22458,65 ,1,22459,289110 ,1,22460,65 ,1,22461,229865 ,1,22462,276615 ,1,22463,65 ,1,22464,65 ,1,22465,211775 ,1,22466,65 ,1,22467,172830 ,1,22468,274380 ,1,22469,65 ,1,22470,198000 ,1,22471,65 ,1,22472,181460 ,1,22473,277210 ,1,22474,296450 ,1,22475,65 ,1,22476,65 ,1,22477,294620 ,1,22478,239790 ,1,22479,65 ,1,22480,65 ,1,22481,202305 ,1,22482,316340 ,1,22483,65 ,1,22484,65 ,1,22485,218080 ,1,22486,277755 ,1,22487,211045 ,1,22488,65 ,1,22489,65 ,1,22490,212640 ,1,22491,65 ,1,22492,323615 ,1,22493,282835 ,1,22494,323700 ,1,22495,65 ,1,22496,65 ,1,22497,65 ,1,22498,65 ,1,22499,65 ,1,22500,246135 ,1,22501,266785 ,1,22502,65 ,1,22503,65 ,1,22504,245415 ,1,22505,300015 ,1,22506,180980 ,1,22507,65 ,1,22508,65 ,1,22509,166945 ,1,22510,325070 ,1,22511,65 ,1,22512,65 ,1,22513,65 ,1,22514,65 ,1,22515,65 ,1,22516,65 ,1,22517,65 ,1,22518,274980 ,1,22519,65 ,1,22520,65 ,1,22521,65 ,1,22522,292380 ,1,22523,65 ,1,22524,65 ,1,22525,65 ,1,22526,265025 ,1,22527,65 ,1,22528,65 ,1,22529,245510 ,1,22530,281685 ,1,22531,65 ,1,22532,317525 ,1,22533,65 ,1,22534,263600 ,1,22535,65 ,1,22536,65 ,1,22537,65 ,1,22538,65 ,1,22539,65 ,1,22540,65 ,1,22541,65 ,1,22542,263640 ,1,22543,243315 ,1,22544,65 ,1,22545,245655 ,1,22546,304360 ,1,22547,65 ,1,22548,65 ,1,22549,65 ,1,22550,65 ,1,22551,65 ,1,22552,65 ,1,22553,65 ,1,22554,65 ,1,22555,65 ,1,22556,65 ,1,22557,65 ,1,22558,65 ,1,22559,222530 ,1,22560,304370 ,1,22561,65 ,1,22562,247710 ,1,22563,331060 ,1,22564,65 ,1,22565,231065 ,1,22566,212550 ,1,22567,65 ,1,22568,65 ,1,22569,65 ,1,22570,65 ,1,22571,184620 ,1,22572,263910 ,1,22573,65 ,1,22574,65 ,1,22575,65 ,1,22576,295160 ,1,22577,278525 ,1,22578,65 ,1,22579,65 ,1,22580,303970 ,1,22581,168380 ,1,22582,264335 ,1,22583,65 ,1,22584,271755 ,1,22585,65 ,1,22586,65 ,1,22587,65 ,1,22588,65 ,1,22589,65 ,1,22590,345965 ,1,22591,199015 ,1,22592,65 ,1,22593,267970 ,1,22594,65 ,1,22595,65 ,1,22596,182085 ,1,22597,65 ,1,22598,65 ,1,22599,171205 ,1,22600,349720 ,1,22601,65 ,1,22602,242285 ,1,22603,291840 ,1,22604,286650 ,1,22605,175025 ,1,22606,189980 ,1,22607,253795 ,1,22608,302405 ,1,22609,65 ,1,22610,189220 ,1,22611,270235 ,1,22612,280495 ,1,22613,268330 ,1,22614,289035 ,1,22615,65 ,1,22616,261720 ,1,22617,210165 ,1,22618,65 ,1,22619,252930 ,1,22620,250680 ,1,22621,200360 ,1,22622,338345 ,1,22623,282770 ,1,22624,260095 ,1,22625,337060 ,1,22626,298040 ,1,22627,65 ,1,22628,65 ,1,22629,292730 ,1,22630,227650 ,1,22631,349710 ,1,22632,65 ,1,22633,228675 ,1,22634,292645 ,1,22635,225065 ,1,22636,284065 ,1,22637,278435 ,1,22638,197730 ,1,22639,202780 ,1,22640,65 ,1,22641,201580 ,1,22642,65 ,1,22643,65 ,1,22644,345275 ,1,22645,65 ,1,22646,170610 ,1,22647,295300 ,1,22648,206915 ,1,22649,320420 ,1,22650,317715 ,1,22651,266585 ,1,22652,65 ,1,22653,65 ,1,22654,329110 ,1,22655,231380 ,1,22656,281050 ,1,22657,304900 ,1,22658,65 ,1,22659,65 ,1,22660,65 ,1,22661,65 ,1,22662,65 ,1,22663,65 ,1,22664,65 ,1,22665,339620 ,1,22666,65 ,1,22667,65 ,1,22668,65 ,1,22669,65 ,1,22670,65 ,1,22671,217880 ,1,22672,268165 ,1,22673,65 ,1,22674,65 ,1,22675,65 ,1,22676,65 ,1,22677,65 ,1,22678,65 ,1,22679,65 ,1,22680,65 ,1,22681,281060 ,1,22682,319595 ,1,22683,178500 ,1,22684,294840 ,1,22685,240735 ,1,22686,172275 ,1,22687,245635 ,1,22688,65 ,1,22689,246065 ,1,22690,197415 ,1,22691,242100 ,1,22692,65 ,1,22693,65 ,1,22694,65 ,1,22695,65 ,1,22696,221275 ,1,22697,65 ,1,22698,65 ,1,22699,334570 ,1,22700,235300 ,1,22701,349700 ,1,22702,65 ,1,22703,65 ,1,22704,65 ,1,22705,65 ,1,22706,65 ,1,22707,265470 ,1,22708,349670 ,1,22709,65 ,1,22710,327695 ,1,22711,255180 ,1,22712,65 ,1,22713,238820 ,1,22714,65 ,1,22715,65 ,1,22716,237030 ,1,22717,253915 ,1,22718,65 ,1,22719,65 ,1,22720,65 ,1,22721,65 ,1,22722,258050 ,1,22723,277360 ,1,22724,65 ,1,22725,203285 ,1,22726,65 ,1,22727,197360 ,1,22728,285830 ,1,22729,287355 ,1,22730,65 ,1,22731,65 ,1,22732,189065 ,1,22733,65 ,1,22734,65 ,1,22735,328665 ,1,22736,324765 ,1,22737,65 ,1,22738,65 ,1,22739,65 ,1,22740,65 ,1,22741,328125 ,1,22742,225240 ,1,22743,193040 ,1,22744,225625 ,1,22745,328385 ,1,22746,65 ,1,22747,65 ,1,22748,65 ,1,22749,65 ,1,22750,292370 ,1,22751,65 ,1,22752,65 ,1,22753,65 ,1,22754,265295 ,1,22755,190975 ,1,22756,65 ,1,22757,277310 ,1,22758,65 ,1,22759,65 ,1,22760,65 ,1,22761,227895 ,1,22762,234045 ,1,22763,65 ,1,22764,65 ,1,22765,65 ,1,22766,65 ,1,22767,349660 ,1,22768,299370 ,1,22769,315455 ,1,22770,65 ,1,22771,65 ,1,22772,239015 ,1,22773,190430 ,1,22774,65 ,1,22775,65 ,1,22776,65 ,1,22777,65 ,1,22778,65 ,1,22779,306780 ,1,22780,327605 ,1,22781,254540 ,1,22782,341635 ,1,22783,65 ,1,22784,65 ,1,22785,187075 ,1,22786,65 ,1,22787,211460 ,1,22788,65 ,1,22789,227945 ,1,22790,65 ,1,22791,65 ,1,22792,237155 ,1,22793,323060 ,1,22794,65 ,1,22795,65 ,1,22796,65 ,1,22797,336875 ,1,22798,65 ,1,22799,293265 ,1,22800,65 ,1,22801,65 ,1,22802,65 ,1,22803,299875 ,1,22804,65 ,1,22805,65 ,1,22806,65 ,1,22807,65 ,1,22808,207740 ,1,22809,65 ,1,22810,65 ,1,22811,187735 ,1,22812,65 ,1,22813,65 ,1,22814,65 ,1,22815,230005 ,1,22816,65 ,1,22817,65 ,1,22818,65 ,1,22819,65 ,1,22820,65 ,1,22821,340875 ,1,22822,65 ,1,22823,65 ,1,22824,65 ,1,22825,65 ,1,22826,65 ,1,22827,65 ,1,22828,65 ,1,22829,65 ,1,22830,65 ,1,22831,65 ,1,22832,65 ,1,22833,65 ,1,22834,65 ,1,22835,180350 ,1,22836,282640 ,1,22837,65 ,1,22838,65 ,1,22839,65 ,1,22840,65 ,1,22841,65 ,1,22842,290185 ,1,22843,193910 ,1,22844,332870 ,1,22845,314025 ,1,22846,330395 ,1,22847,65 ,1,22848,311070 ,1,22849,293215 ,1,22850,184250 ,1,22851,264680 ,1,22852,65 ,1,22853,231030 ,1,22854,65 ,1,22855,214480 ,1,22856,65 ,1,22857,65 ,1,22858,65 ,1,22859,65 ,1,22860,198290 ,1,22861,315365 ,1,22862,65 ,1,22863,344065 ,1,22864,65 ,1,22865,326690 ,1,22866,292550 ,1,22867,336275 ,1,22868,65 ,1,22869,304305 ,1,22870,65 ,1,22871,65 ,1,22872,65 ,1,22873,65 ,1,22874,65 ,1,22875,65 ,1,22876,214215 ,1,22877,327165 ,1,22878,185420 ,1,22879,195750 ,1,22880,283915 ,1,22881,190660 ,1,22882,190620 ,1,22883,65 ,1,22884,65 ,1,22885,233220 ,1,22886,229845 ,1,22887,65 ,1,22888,224715 ,1,22889,258125 ,1,22890,65 ,1,22891,285280 ,1,22892,65 ,1,22893,65 ,1,22894,171865 ,1,22895,65 ,1,22896,65 ,1,22897,65 ,1,22898,167510 ,1,22899,240120 ,1,22900,173360 ,1,22901,208875 ,1,22902,65 ,1,22903,235365 ,1,22904,65 ,1,22905,242205 ,1,22906,65 ,1,22907,65 ,1,22908,254325 ,1,22909,333650 ,1,22910,65 ,1,22911,318915 ,1,22912,65 ,1,22913,65 ,1,22914,305870 ,1,22915,65 ,1,22916,65 ,1,22917,65 ,1,22918,246895 ,1,22919,216200 ,1,22920,197515 ,1,22921,293920 ,1,22922,290965 ,1,22923,242070 ,1,22924,65 ,1,22925,201940 ,1,22926,329500 ,1,22927,216270 ,1,22928,288570 ,1,22929,65 ,1,22930,265450 ,1,22931,65 ,1,22932,65 ,1,22933,65 ,1,22934,65 ,1,22935,65 ,1,22936,65 ,1,22937,65 ,1,22938,65 ,1,22939,172925 ,1,22940,178810 ,1,22941,65 ,1,22942,65 ,1,22943,246265 ,1,22944,167155 ,1,22945,289270 ,1,22946,65 ,1,22947,255840 ,1,22948,221130 ,1,22949,65 ,1,22950,330800 ,1,22951,65 ,1,22952,65 ,1,22953,65 ,1,22954,65 ,1,22955,65 ,1,22956,65 ,1,22957,267020 ,1,22958,207620 ,1,22959,65 ,1,22960,65 ,1,22961,65 ,1,22962,65 ,1,22963,252605 ,1,22964,65 ,1,22965,299885 ,1,22966,65 ,1,22967,65 ,1,22968,65 ,1,22969,65 ,1,22970,65 ,1,22971,65 ,1,22972,65 ,1,22973,65 ,1,22974,65 ,1,22975,65 ,1,22976,65 ,1,22977,65 ,1,22978,65 ,1,22979,65 ,1,22980,301830 ,1,22981,65 ,1,22982,65 ,1,22983,65 ,1,22984,304650 ,1,22985,321875 ,1,22986,65 ,1,22987,65 ,1,22988,65 ,1,22989,65 ,1,22990,65 ,1,22991,65 ,1,22992,65 ,1,22993,252330 ,1,22994,338735 ,1,22995,65 ,1,22996,279395 ,1,22997,65 ,1,22998,65 ,1,22999,65 ,1,23000,309835 ,1,23001,65 ,1,23002,272870 ,1,23003,65 ,1,23004,65 ,1,23005,65 ,1,23006,65 ,1,23007,65 ,1,23008,65 ,1,23009,336640 ,1,23010,65 ,1,23011,167050 ,1,23012,224325 ,1,23013,65 ,1,23014,343400 ,1,23015,65 ,1,23016,65 ,1,23017,65 ,1,23018,224780 ,1,23019,65 ,1,23020,207275 ,1,23021,65 ,1,23022,198340 ,1,23023,270785 ,1,23024,338130 ,1,23025,343545 ,1,23026,309495 ,1,23027,242400 ,1,23028,65 ,1,23029,65 ,1,23030,65 ,1,23031,65 ,1,23032,65 ,1,23033,224345 ,1,23034,65 ,1,23035,306800 ,1,23036,260690 ,1,23037,275445 ,1,23038,221260 ,1,23039,65 ,1,23040,65 ,1,23041,65 ,1,23042,65 ,1,23043,288360 ,1,23044,228445 ,1,23045,65 ,1,23046,342570 ,1,23047,65 ,1,23048,65 ,1,23049,268280 ,1,23050,221070 ,1,23051,204740 ,1,23052,348245 ,1,23053,283125 ,1,23054,65 ,1,23055,65 ,1,23056,175530 ,1,23057,65 ,1,23058,65 ,1,23059,65 ,1,23060,65 ,1,23061,65 ,1,23062,65 ,1,23063,243130 ,1,23064,254745 ,1,23065,65 ,1,23066,65 ,1,23067,218960 ,1,23068,230035 ,1,23069,65 ,1,23070,65 ,1,23071,65 ,1,23072,65 ,1,23073,65 ,1,23074,257990 ,1,23075,247320 ,1,23076,65 ,1,23077,65 ,1,23078,65 ,1,23079,221295 ,1,23080,257755 ,1,23081,65 ,1,23082,65 ,1,23083,65 ,1,23084,262720 ,1,23085,65 ,1,23086,268110 ,1,23087,65 ,1,23088,65 ,1,23089,65 ,1,23090,227855 ,1,23091,65 ,1,23092,65 ,1,23093,65 ,1,23094,187300 ,1,23095,65 ,1,23096,65 ,1,23097,65 ,1,23098,65 ,1,23099,168065 ,1,23100,222050 ,1,23101,65 ,1,23102,179415 ,1,23103,65 ,1,23104,236920 ,1,23105,65 ,1,23106,65 ,1,23107,65 ,1,23108,65 ,1,23109,65 ,1,23110,65 ,1,23111,65 ,1,23112,65 ,1,23113,65 ,1,23114,65 ,1,23115,213495 ,1,23116,65 ,1,23117,65 ,1,23118,166730 ,1,23119,242990 ,1,23120,197450 ,1,23121,199815 ,1,23122,293070 ,1,23123,65 ,1,23124,234500 ,1,23125,315870 ,1,23126,65 ,1,23127,65 ,1,23128,303250 ,1,23129,65 ,1,23130,65 ,1,23131,65 ,1,23132,65 ,1,23133,274075 ,1,23134,217870 ,1,23135,65 ,1,23136,65 ,1,23137,65 ,1,23138,65 ,1,23139,65 ,1,23140,65 ,1,23141,65 ,1,23142,65 ,1,23143,244490 ,1,23144,288825 ,1,23145,65 ,1,23146,65 ,1,23147,65 ,1,23148,298415 ,1,23149,179475 ,1,23150,292435 ,1,23151,261320 ,1,23152,65 ,1,23153,65 ,1,23154,308645 ,1,23155,214765 ,1,23156,65 ,1,23157,65 ,1,23158,65 ,1,23159,65 ,1,23160,65 ,1,23161,65 ,1,23162,65 ,1,23163,65 ,1,23164,278625 ,1,23165,65 ,1,23166,65 ,1,23167,65 ,1,23168,217035 ,1,23169,65 ,1,23170,277015 ,1,23171,169550 ,1,23172,253710 ,1,23173,65 ,1,23174,337275 ,1,23175,65 ,1,23176,65 ,1,23177,330365 ,1,23178,65 ,1,23179,274010 ,1,23180,295185 ,1,23181,65 ,1,23182,65 ,1,23183,65 ,1,23184,65 ,1,23185,65 ,1,23186,65 ,1,23187,65 ,1,23188,65 ,1,23189,65 ,1,23190,65 ,1,23191,65 ,1,23192,65 ,1,23193,65 ,1,23194,65 ,1,23195,211245 ,1,23196,65 ,1,23197,172190 ,1,23198,65 ,1,23199,65 ,1,23200,176410 ,1,23201,65 ,1,23202,176555 ,1,23203,332545 ,1,23204,314685 ,1,23205,65 ,1,23206,65 ,1,23207,65 ,1,23208,65 ,1,23209,201005 ,1,23210,178850 ,1,23211,218030 ,1,23212,65 ,1,23213,185615 ,1,23214,275415 ,1,23215,65 ,1,23216,230160 ,1,23217,65 ,1,23218,65 ,1,23219,65 ,1,23220,65 ,1,23221,65 ,1,23222,65 ,1,23223,65 ,1,23224,65 ,1,23225,264660 ,1,23226,65 ,1,23227,65 ,1,23228,349650 ,1,23229,65 ,1,23230,65 ,1,23231,65 ,1,23232,65 ,1,23233,65 ,1,23234,65 ,1,23235,65 ,1,23236,65 ,1,23237,65 ,1,23238,65 ,1,23239,65 ,1,23240,65 ,1,23241,299540 ,1,23242,65 ,1,23243,314875 ,1,23244,251885 ,1,23245,65 ,1,23246,65 ,1,23247,65 ,1,23248,248105 ,1,23249,318755 ,1,23250,65 ,1,23251,223655 ,1,23252,65 ,1,23253,65 ,1,23254,182270 ,1,23255,349640 ,1,23256,271185 ,1,23257,65 ,1,23258,272740 ,1,23259,65 ,1,23260,225350 ,1,23261,65 ,1,23262,65 ,1,23263,65 ,1,23264,65 ,1,23265,326315 ,1,23266,333565 ,1,23267,65 ,1,23268,65 ,1,23269,65 ,1,23270,316970 ,1,23271,65 ,1,23272,65 ,1,23273,282085 ,1,23274,65 ,1,23275,348045 ,1,23276,245220 ,1,23277,65 ,1,23278,290025 ,1,23279,346875 ,1,23280,65 ,1,23281,194025 ,1,23282,332595 ,1,23283,65 ,1,23284,65 ,1,23285,271485 ,1,23286,65 ,1,23287,65 ,1,23288,65 ,1,23289,260845 ,1,23290,326160 ,1,23291,65 ,1,23292,167440 ,1,23293,171430 ,1,23294,273685 ,1,23295,65 ,1,23296,65 ,1,23297,210820 ,1,23298,65 ,1,23299,307505 ,1,23300,177360 ,1,23301,65 ,1,23302,339830 ,1,23303,263550 ,1,23304,65 ,1,23305,182490 ,1,23306,250405 ,1,23307,308705 ,1,23308,306895 ,1,23309,328575 ,1,23310,337100 ,1,23311,65 ,1,23312,241625 ,1,23313,65 ,1,23314,65 ,1,23315,65 ,1,23316,281390 ,1,23317,251000 ,1,23318,342560 ,1,23319,242495 ,1,23320,65 ,1,23321,65 ,1,23322,306655 ,1,23323,264395 ,1,23324,265340 ,1,23325,244640 ,1,23326,65 ,1,23327,65 ,1,23328,250715 ,1,23329,65 ,1,23330,243630 ,1,23331,65 ,1,23332,176815 ,1,23333,256795 ,1,23334,195175 ,1,23335,232955 ,1,23336,197850 ,1,23337,296565 ,1,23338,263970 ,1,23339,65 ,1,23340,65 ,1,23341,65 ,1,23342,65 ,1,23343,345705 ,1,23344,65 ,1,23345,172325 ,1,23346,331680 ,1,23347,254905 ,1,23348,65 ,1,23349,65 ,1,23350,65 ,1,23351,65 ,1,23352,65 ,1,23353,65 ,1,23354,65 ,1,23355,315010 ,1,23356,65 ,1,23357,255405 ,1,23358,65 ,1,23359,256440 ,1,23360,65 ,1,23361,65 ,1,23362,65 ,1,23363,65 ,1,23364,65 ,1,23365,250150 ,1,23366,65 ,1,23367,65 ,1,23368,220300 ,1,23369,65 ,1,23370,300295 ,1,23371,65 ,1,23372,65 ,1,23373,65 ,1,23374,199395 ,1,23375,290740 ,1,23376,65 ,1,23377,65 ,1,23378,65 ,1,23379,65 ,1,23380,65 ,1,23381,65 ,1,23382,65 ,1,23383,65 ,1,23384,65 ,1,23385,65 ,1,23386,65 ,1,23387,65 ,1,23388,65 ,1,23389,65 ,1,23390,65 ,1,23391,65 ,1,23392,65 ,1,23393,65 ,1,23394,283715 ,1,23395,65 ,1,23396,293325 ,1,23397,65 ,1,23398,65 ,1,23399,65 ,1,23400,65 ,1,23401,65 ,1,23402,65 ,1,23403,65 ,1,23404,261820 ,1,23405,65 ,1,23406,65 ,1,23407,65 ,1,23408,246600 ,1,23409,336455 ,1,23410,65 ,1,23411,65 ,1,23412,284755 ,1,23413,204640 ,1,23414,65 ,1,23415,65 ,1,23416,230795 ,1,23417,297375 ,1,23418,243175 ,1,23419,65 ,1,23420,65 ,1,23421,239120 ,1,23422,186085 ,1,23423,65 ,1,23424,202105 ,1,23425,193560 ,1,23426,65 ,1,23427,303380 ,1,23428,65 ,1,23429,65 ,1,23430,65 ,1,23431,189740 ,1,23432,65 ,1,23433,65 ,1,23434,65 ,1,23435,65 ,1,23436,304670 ,1,23437,65 ,1,23438,65 ,1,23439,213700 ,1,23440,65 ,1,23441,260330 ,1,23442,312395 ,1,23443,301975 ,1,23444,65 ,1,23445,311380 ,1,23446,280255 ,1,23447,342925 ,1,23448,183785 ,1,23449,65 ,1,23450,65 ,1,23451,65 ,1,23452,65 ,1,23453,182790 ,1,23454,65 ,1,23455,327185 ,1,23456,65 ,1,23457,320770 ,1,23458,235840 ,1,23459,347815 ,1,23460,65 ,1,23461,65 ,1,23462,65 ,1,23463,65 ,1,23464,65 ,1,23465,177990 ,1,23466,251205 ,1,23467,65 ,1,23468,214270 ,1,23469,174195 ,1,23470,265720 ,1,23471,242655 ,1,23472,65 ,1,23473,65 ,1,23474,319725 ,1,23475,287275 ,1,23476,65 ,1,23477,65 ,1,23478,228820 ,1,23479,275840 ,1,23480,65 ,1,23481,65 ,1,23482,328685 ,1,23483,333790 ,1,23484,65 ,1,23485,192640 ,1,23486,305120 ,1,23487,202935 ,1,23488,65 ,1,23489,296015 ,1,23490,65 ,1,23491,204320 ,1,23492,327400 ,1,23493,294490 ,1,23494,65 ,1,23495,65 ,1,23496,65 ,1,23497,65 ,1,23498,65 ,1,23499,199465 ,1,23500,65 ,1,23501,65 ,1,23502,65 ,1,23503,65 ,1,23504,210550 ,1,23505,219115 ,1,23506,306875 ,1,23507,217950 ,1,23508,228685 ,1,23509,328555 ,1,23510,65 ,1,23511,65 ,1,23512,65 ,1,23513,65 ,1,23514,65 ,1,23515,65 ,1,23516,275810 ,1,23517,333455 ,1,23518,197380 ,1,23519,65 ,1,23520,65 ,1,23521,65 ,1,23522,65 ,1,23523,65 ,1,23524,65 ,1,23525,65 ,1,23526,65 ,1,23527,257075 ,1,23528,65 ,1,23529,225035 ,1,23530,333750 ,1,23531,245930 ,1,23532,65 ,1,23533,65 ,1,23534,228130 ,1,23535,65 ,1,23536,65 ,1,23537,65 ,1,23538,65 ,1,23539,65 ,1,23540,65 ,1,23541,65 ,1,23542,194320 ,1,23543,196710 ,1,23544,65 ,1,23545,65 ,1,23546,65 ,1,23547,274925 ,1,23548,65 ,1,23549,65 ,1,23550,65 ,1,23551,65 ,1,23552,65 ,1,23553,232345 ,1,23554,235595 ,1,23555,65 ,1,23556,328825 ,1,23557,279615 ,1,23558,65 ,1,23559,65 ,1,23560,276325 ,1,23561,65 ,1,23562,65 ,1,23563,65 ,1,23564,65 ,1,23565,276820 ,1,23566,65 ,1,23567,65 ,1,23568,65 ,1,23569,308735 ,1,23570,65 ,1,23571,65 ,1,23572,65 ,1,23573,65 ,1,23574,65 ,1,23575,65 ,1,23576,65 ,1,23577,300190 ,1,23578,222970 ,1,23579,347665 ,1,23580,167670 ,1,23581,65 ,1,23582,321655 ,1,23583,65 ,1,23584,65 ,1,23585,65 ,1,23586,65 ,1,23587,65 ,1,23588,65 ,1,23589,65 ,1,23590,65 ,1,23591,331445 ,1,23592,65 ,1,23593,238660 ,1,23594,65 ,1,23595,65 ,1,23596,65 ,1,23597,65 ,1,23598,65 ,1,23599,65 ,1,23600,65 ,1,23601,65 ,1,23602,228085 ,1,23603,187620 ,1,23604,65 ,1,23605,266625 ,1,23606,185680 ,1,23607,237470 ,1,23608,249375 ,1,23609,256015 ,1,23610,65 ,1,23611,187650 ,1,23612,310550 ,1,23613,65 ,1,23614,65 ,1,23615,298095 ,1,23616,65 ,1,23617,284220 ,1,23618,65 ,1,23619,170325 ,1,23620,181600 ,1,23621,267090 ,1,23622,198715 ,1,23623,65 ,1,23624,273565 ,1,23625,318065 ,1,23626,340045 ,1,23627,262775 ,1,23628,233845 ,1,23629,65 ,1,23630,65 ,1,23631,263710 ,1,23632,65 ,1,23633,169530 ,1,23634,65 ,1,23635,65 ,1,23636,65 ,1,23637,65 ,1,23638,65 ,1,23639,343640 ,1,23640,208555 ,1,23641,65 ,1,23642,65 ,1,23643,305705 ,1,23644,65 ,1,23645,65 ,1,23646,65 ,1,23647,65 ,1,23648,65 ,1,23649,65 ,1,23650,65 ,1,23651,276510 ,1,23652,65 ,1,23653,283800 ,1,23654,65 ,1,23655,65 ,1,23656,170345 ,1,23657,293845 ,1,23658,192570 ,1,23659,65 ,1,23660,338240 ,1,23661,175500 ,1,23662,195055 ,1,23663,65 ,1,23664,65 ,1,23665,65 ,1,23666,65 ,1,23667,65 ,1,23668,65 ,1,23669,65 ,1,23670,275230 ,1,23671,65 ,1,23672,65 ,1,23673,65 ,1,23674,65 ,1,23675,65 ,1,23676,65 ,1,23677,193770 ,1,23678,65 ,1,23679,65 ,1,23680,65 ,1,23681,65 ,1,23682,65 ,1,23683,65 ,1,23684,65 ,1,23685,272495 ,1,23686,65 ,1,23687,65 ,1,23688,65 ,1,23689,345435 ,1,23690,65 ,1,23691,248065 ,1,23692,259505 ,1,23693,213445 ,1,23694,65 ,1,23695,65 ,1,23696,65 ,1,23697,65 ,1,23698,65 ,1,23699,65 ,1,23700,226645 ,1,23701,65 ,1,23702,310235 ,1,23703,311680 ,1,23704,65 ,1,23705,171670 ,1,23706,65 ,1,23707,227805 ,1,23708,65 ,1,23709,65 ,1,23710,233285 ,1,23711,65 ,1,23712,237840 ,1,23713,200530 ,1,23714,227730 ,1,23715,184980 ,1,23716,276435 ,1,23717,65 ,1,23718,65 ,1,23719,296380 ,1,23720,65 ,1,23721,65 ,1,23722,65 ,1,23723,65 ,1,23724,336840 ,1,23725,65 ,1,23726,349630 ,1,23727,65 ,1,23728,65 ,1,23729,65 ,1,23730,65 ,1,23731,65 ,1,23732,65 ,1,23733,65 ,1,23734,65 ,1,23735,258325 ,1,23736,65 ,1,23737,65 ,1,23738,65 ,1,23739,65 ,1,23740,235475 ,1,23741,65 ,1,23742,65 ,1,23743,65 ,1,23744,329710 ,1,23745,65 ,1,23746,65 ,1,23747,65 ,1,23748,65 ,1,23749,65 ,1,23750,65 ,1,23751,65 ,1,23752,65 ,1,23753,65 ,1,23754,206155 ,1,23755,65 ,1,23756,65 ,1,23757,65 ,1,23758,65 ,1,23759,65 ,1,23760,274085 ,1,23761,235645 ,1,23762,315435 ,1,23763,65 ,1,23764,65 ,1,23765,65 ,1,23766,326330 ,1,23767,65 ,1,23768,65 ,1,23769,65 ,1,23770,65 ,1,23771,65 ,1,23772,65 ,1,23773,250865 ,1,23774,65 ,1,23775,65 ,1,23776,65 ,1,23777,65 ,1,23778,173965 ,1,23779,326985 ,1,23780,174710 ,1,23781,320450 ,1,23782,65 ,1,23783,65 ,1,23784,65 ,1,23785,65 ,1,23786,267395 ,1,23787,65 ,1,23788,65 ,1,23789,223000 ,1,23790,281310 ,1,23791,65 ,1,23792,65 ,1,23793,65 ,1,23794,65 ,1,23795,65 ,1,23796,65 ,1,23797,65 ,1,23798,347170 ,1,23799,250930 ,1,23800,65 ,1,23801,187925 ,1,23802,65 ,1,23803,325745 ,1,23804,65 ,1,23805,65 ,1,23806,65 ,1,23807,239975 ,1,23808,65 ,1,23809,333435 ,1,23810,65 ,1,23811,65 ,1,23812,65 ,1,23813,65 ,1,23814,65 ,1,23815,65 ,1,23816,65 ,1,23817,188790 ,1,23818,65 ,1,23819,316360 ,1,23820,65 ,1,23821,65 ,1,23822,311305 ,1,23823,65 ,1,23824,65 ,1,23825,65 ,1,23826,65 ,1,23827,65 ,1,23828,65 ,1,23829,65 ,1,23830,65 ,1,23831,184075 ,1,23832,65 ,1,23833,65 ,1,23834,65 ,1,23835,65 ,1,23836,243540 ,1,23837,298900 ,1,23838,65 ,1,23839,344935 ,1,23840,306555 ,1,23841,247835 ,1,23842,275325 ,1,23843,333320 ,1,23844,272145 ,1,23845,184185 ,1,23846,65 ,1,23847,65 ,1,23848,170755 ,1,23849,327135 ,1,23850,213065 ,1,23851,190000 ,1,23852,254840 ,1,23853,65 ,1,23854,296075 ,1,23855,208835 ,1,23856,175265 ,1,23857,230775 ,1,23858,184680 ,1,23859,65 ,1,23860,203905 ,1,23861,65 ,1,23862,65 ,1,23863,246155 ,1,23864,232030 ,1,23865,308920 ,1,23866,65 ,1,23867,65 ,1,23868,241200 ,1,23869,328155 ,1,23870,65 ,1,23871,65 ,1,23872,172375 ,1,23873,191190 ,1,23874,301840 ,1,23875,255190 ,1,23876,169365 ,1,23877,65 ,1,23878,65 ,1,23879,323070 ,1,23880,65 ,1,23881,65 ,1,23882,349620 ,1,23883,280505 ,1,23884,65 ,1,23885,187760 ,1,23886,228980 ,1,23887,290750 ,1,23888,65 ,1,23889,65 ,1,23890,216670 ,1,23891,65 ,1,23892,217840 ,1,23893,290820 ,1,23894,65 ,1,23895,65 ,1,23896,320955 ,1,23897,65 ,1,23898,65 ,1,23899,65 ,1,23900,65 ,1,23901,65 ,1,23902,336205 ,1,23903,65 ,1,23904,65 ,1,23905,65 ,1,23906,65 ,1,23907,195095 ,1,23908,65 ,1,23909,259150 ,1,23910,321780 ,1,23911,65 ,1,23912,65 ,1,23913,65 ,1,23914,291365 ,1,23915,274105 ,1,23916,65 ,1,23917,202390 ,1,23918,312770 ,1,23919,173695 ,1,23920,65 ,1,23921,65 ,1,23922,65 ,1,23923,65 ,1,23924,65 ,1,23925,241045 ,1,23926,232745 ,1,23927,236115 ,1,23928,225095 ,1,23929,225595 ,1,23930,65 ,1,23931,65 ,1,23932,65 ,1,23933,65 ,1,23934,65 ,1,23935,263170 ,1,23936,65 ,1,23937,65 ,1,23938,341595 ,1,23939,65 ,1,23940,339250 ,1,23941,309390 ,1,23942,65 ,1,23943,203980 ,1,23944,340215 ,1,23945,314355 ,1,23946,65 ,1,23947,65 ,1,23948,280680 ,1,23949,207055 ,1,23950,65 ,1,23951,65 ,1,23952,65 ,1,23953,223645 ,1,23954,305930 ,1,23955,194070 ,1,23956,65 ,1,23957,65 ,1,23958,65 ,1,23959,290125 ,1,23960,177470 ,1,23961,269005 ,1,23962,65 ,1,23963,326105 ,1,23964,196170 ,1,23965,188780 ,1,23966,245270 ,1,23967,271195 ,1,23968,325830 ,1,23969,65 ,1,23970,65 ,1,23971,65 ,1,23972,289485 ,1,23973,65 ,1,23974,65 ,1,23975,65 ,1,23976,65 ,1,23977,65 ,1,23978,65 ,1,23979,65 ,1,23980,232115 ,1,23981,65 ,1,23982,65 ,1,23983,65 ,1,23984,65 ,1,23985,65 ,1,23986,65 ,1,23987,307070 ,1,23988,289425 ,1,23989,65 ,1,23990,175630 ,1,23991,65 ,1,23992,65 ,1,23993,65 ,1,23994,307180 ,1,23995,65 ,1,23996,65 ,1,23997,65 ,1,23998,65 ,1,23999,65 ,1,24000,65 ,1,24001,65 ,1,24002,65 ,1,24003,65 ,1,24004,65 ,1,24005,65 ,1,24006,65 ,1,24007,65 ,1,24008,65 ,1,24009,65 ,1,24010,195515 ,1,24011,65 ,1,24012,65 ,1,24013,65 ,1,24014,202295 ,1,24015,331260 ,1,24016,65 ,1,24017,281175 ,1,24018,65 ,1,24019,173600 ,1,24020,309525 ,1,24021,65 ,1,24022,207370 ,1,24023,231045 ,1,24024,342700 ,1,24025,65 ,1,24026,65 ,1,24027,65 ,1,24028,65 ,1,24029,65 ,1,24030,324930 ,1,24031,65 ,1,24032,233795 ,1,24033,180635 ,1,24034,65 ,1,24035,298540 ,1,24036,65 ,1,24037,325135 ,1,24038,202595 ,1,24039,65 ,1,24040,65 ,1,24041,238195 ,1,24042,331485 ,1,24043,65 ,1,24044,65 ,1,24045,180585 ,1,24046,257160 ,1,24047,65 ,1,24048,293420 ,1,24049,199095 ,1,24050,243080 ,1,24051,224555 ,1,24052,65 ,1,24053,65 ,1,24054,65 ,1,24055,65 ,1,24056,65 ,1,24057,343105 ,1,24058,65 ,1,24059,65 ,1,24060,295425 ,1,24061,335285 ,1,24062,65 ,1,24063,65 ,1,24064,246860 ,1,24065,65 ,1,24066,65 ,1,24067,65 ,1,24068,65 ,1,24069,65 ,1,24070,65 ,1,24071,65 ,1,24072,220385 ,1,24073,270915 ,1,24074,179740 ,1,24075,183420 ,1,24076,65 ,1,24077,65 ,1,24078,65 ,1,24079,65 ,1,24080,330685 ,1,24081,65 ,1,24082,234445 ,1,24083,224135 ,1,24084,318865 ,1,24085,65 ,1,24086,65 ,1,24087,65 ,1,24088,65 ,1,24089,65 ,1,24090,65 ,1,24091,65 ,1,24092,179150 ,1,24093,65 ,1,24094,65 ,1,24095,65 ,1,24096,172470 ,1,24097,274370 ,1,24098,270015 ,1,24099,65 ,1,24100,317535 ,1,24101,65 ,1,24102,65 ,1,24103,65 ,1,24104,65 ,1,24105,243425 ,1,24106,226300 ,1,24107,65 ,1,24108,197890 ,1,24109,65 ,1,24110,65 ,1,24111,65 ,1,24112,65 ,1,24113,283075 ,1,24114,65 ,1,24115,65 ,1,24116,274780 ,1,24117,65 ,1,24118,207590 ,1,24119,65 ,1,24120,317245 ,1,24121,65 ,1,24122,324565 ,1,24123,65 ,1,24124,280575 ,1,24125,233190 ,1,24126,314425 ,1,24127,201180 ,1,24128,191200 ,1,24129,65 ,1,24130,273340 ,1,24131,65 ,1,24132,65 ,1,24133,65 ,1,24134,65 ,1,24135,295675 ,1,24136,186250 ,1,24137,65 ,1,24138,220765 ,1,24139,307680 ,1,24140,65 ,1,24141,229750 ,1,24142,210560 ,1,24143,65 ,1,24144,199885 ,1,24145,269305 ,1,24146,65 ,1,24147,65 ,1,24148,226750 ,1,24149,271365 ,1,24150,65 ,1,24151,345510 ,1,24152,65 ,1,24153,65 ,1,24154,212040 ,1,24155,174140 ,1,24156,316215 ,1,24157,291820 ,1,24158,264890 ,1,24159,319420 ,1,24160,178745 ,1,24161,65 ,1,24162,65 ,1,24163,65 ,1,24164,65 ,1,24165,65 ,1,24166,309865 ,1,24167,65 ,1,24168,65 ,1,24169,189025 ,1,24170,65 ,1,24171,65 ,1,24172,190945 ,1,24173,65 ,1,24174,232175 ,1,24175,65 ,1,24176,65 ,1,24177,349610 ,1,24178,65 ,1,24179,65 ,1,24180,65 ,1,24181,65 ,1,24182,65 ,1,24183,348360 ,1,24184,65 ,1,24185,65 ,1,24186,65 ,1,24187,65 ,1,24188,65 ,1,24189,65 ,1,24190,319585 ,1,24191,65 ,1,24192,65 ,1,24193,65 ,1,24194,266925 ,1,24195,65 ,1,24196,65 ,1,24197,65 ,1,24198,65 ,1,24199,334295 ,1,24200,65 ,1,24201,65 ,1,24202,302515 ,1,24203,337340 ,1,24204,65 ,1,24205,181370 ,1,24206,289385 ,1,24207,324220 ,1,24208,65 ,1,24209,281895 ,1,24210,65 ,1,24211,65 ,1,24212,229005 ,1,24213,313060 ,1,24214,261440 ,1,24215,217750 ,1,24216,326710 ,1,24217,326065 ,1,24218,65 ,1,24219,65 ,1,24220,65 ,1,24221,316675 ,1,24222,65 ,1,24223,65 ,1,24224,65 ,1,24225,196935 ,1,24226,65 ,1,24227,65 ,1,24228,65 ,1,24229,334335 ,1,24230,65 ,1,24231,65 ,1,24232,65 ,1,24233,209400 ,1,24234,338755 ,1,24235,65 ,1,24236,65 ,1,24237,65 ,1,24238,65 ,1,24239,65 ,1,24240,65 ,1,24241,65 ,1,24242,65 ,1,24243,65 ,1,24244,65 ,1,24245,65 ,1,24246,183115 ,1,24247,65 ,1,24248,65 ,1,24249,65 ,1,24250,219605 ,1,24251,65 ,1,24252,65 ,1,24253,65 ,1,24254,65 ,1,24255,65 ,1,24256,65 ,1,24257,290840 ,1,24258,65 ,1,24259,200310 ,1,24260,65 ,1,24261,232620 ,1,24262,65 ,1,24263,294500 ,1,24264,65 ,1,24265,65 ,1,24266,65 ,1,24267,65 ,1,24268,65 ,1,24269,65 ,1,24270,250005 ,1,24271,65 ,1,24272,65 ,1,24273,65 ,1,24274,201225 ,1,24275,166515 ,1,24276,65 ,1,24277,65 ,1,24278,65 ,1,24279,330515 ,1,24280,282525 ,1,24281,65 ,1,24282,65 ,1,24283,218495 ,1,24284,65 ,1,24285,65 ,1,24286,65 ,1,24287,65 ,1,24288,346315 ,1,24289,322970 ,1,24290,65 ,1,24291,65 ,1,24292,65 ,1,24293,183470 ,1,24294,65 ,1,24295,65 ,1,24296,230070 ,1,24297,65 ,1,24298,65 ,1,24299,306520 ,1,24300,310760 ,1,24301,65 ,1,24302,65 ,1,24303,65 ,1,24304,348080 ,1,24305,65 ,1,24306,65 ,1,24307,166670 ,1,24308,65 ,1,24309,65 ,1,24310,65 ,1,24311,183690 ,1,24312,321800 ,1,24313,236970 ,1,24314,322580 ,1,24315,336175 ,1,24316,65 ,1,24317,65 ,1,24318,65 ,1,24319,65 ,1,24320,224295 ,1,24321,335830 ,1,24322,65 ,1,24323,325680 ,1,24324,65 ,1,24325,65 ,1,24326,65 ,1,24327,188355 ,1,24328,65 ,1,24329,285180 ,1,24330,65 ,1,24331,65 ,1,24332,65 ,1,24333,65 ,1,24334,273370 ,1,24335,281155 ,1,24336,271895 ,1,24337,326775 ,1,24338,65 ,1,24339,65 ,1,24340,340770 ,1,24341,65 ,1,24342,65 ,1,24343,65 ,1,24344,304065 ,1,24345,65 ,1,24346,65 ,1,24347,65 ,1,24348,275425 ,1,24349,273390 ,1,24350,65 ,1,24351,65 ,1,24352,272585 ,1,24353,236890 ,1,24354,255305 ,1,24355,65 ,1,24356,266200 ,1,24357,65 ,1,24358,65 ,1,24359,198675 ,1,24360,221190 ,1,24361,65 ,1,24362,65 ,1,24363,324535 ,1,24364,65 ,1,24365,179805 ,1,24366,334215 ,1,24367,321925 ,1,24368,65 ,1,24369,65 ,1,24370,65 ,1,24371,65 ,1,24372,65 ,1,24373,65 ,1,24374,65 ,1,24375,293175 ,1,24376,323560 ,1,24377,65 ,1,24378,65 ,1,24379,231530 ,1,24380,279195 ,1,24381,65 ,1,24382,172130 ,1,24383,65 ,1,24384,343220 ,1,24385,182760 ,1,24386,65 ,1,24387,65 ,1,24388,255365 ,1,24389,251430 ,1,24390,65 ,1,24391,65 ,1,24392,65 ,1,24393,300895 ,1,24394,198480 ,1,24395,200915 ,1,24396,174055 ,1,24397,349600 ,1,24398,176030 ,1,24399,274600 ,1,24400,286005 ,1,24401,65 ,1,24402,332925 ,1,24403,334080 ,1,24404,65 ,1,24405,65 ,1,24406,65 ,1,24407,285375 ,1,24408,65 ,1,24409,65 ,1,24410,305630 ,1,24411,65 ,1,24412,65 ,1,24413,65 ,1,24414,330220 ,1,24415,65 ,1,24416,65 ,1,24417,65 ,1,24418,238970 ,1,24419,65 ,1,24420,273775 ,1,24421,260135 ,1,24422,349570 ,1,24423,318130 ,1,24424,326465 ,1,24425,297225 ,1,24426,65 ,1,24427,65 ,1,24428,65 ,1,24429,65 ,1,24430,233405 ,1,24431,65 ,1,24432,65 ,1,24433,65 ,1,24434,65 ,1,24435,65 ,1,24436,299690 ,1,24437,197870 ,1,24438,183940 ,1,24439,241210 ,1,24440,319400 ,1,24441,294340 ,1,24442,327945 ,1,24443,65 ,1,24444,349560 ,1,24445,65 ,1,24446,287700 ,1,24447,237625 ,1,24448,65 ,1,24449,301180 ,1,24450,65 ,1,24451,65 ,1,24452,177515 ,1,24453,291515 ,1,24454,200570 ,1,24455,212440 ,1,24456,219740 ,1,24457,65 ,1,24458,337995 ,1,24459,65 ,1,24460,194990 ,1,24461,65 ,1,24462,65 ,1,24463,65 ,1,24464,252940 ,1,24465,65 ,1,24466,65 ,1,24467,229915 ,1,24468,65 ,1,24469,65 ,1,24470,65 ,1,24471,65 ,1,24472,65 ,1,24473,65 ,1,24474,65 ,1,24475,65 ,1,24476,266055 ,1,24477,341525 ,1,24478,65 ,1,24479,306060 ,1,24480,65 ,1,24481,65 ,1,24482,348275 ,1,24483,267205 ,1,24484,315850 ,1,24485,65 ,1,24486,65 ,1,24487,65 ,1,24488,65 ,1,24489,226710 ,1,24490,267375 ,1,24491,349550 ,1,24492,65 ,1,24493,65 ,1,24494,65 ,1,24495,197860 ,1,24496,65 ,1,24497,65 ,1,24498,168545 ,1,24499,264560 ,1,24500,65 ,1,24501,217705 ,1,24502,248660 ,1,24503,65 ,1,24504,65 ,1,24505,65 ,1,24506,65 ,1,24507,65 ,1,24508,65 ,1,24509,65 ,1,24510,65 ,1,24511,181510 ,1,24512,210220 ,1,24513,65 ,1,24514,65 ,1,24515,259605 ,1,24516,65 ,1,24517,65 ,1,24518,285865 ,1,24519,213835 ,1,24520,184135 ,1,24521,289535 ,1,24522,65 ,1,24523,65 ,1,24524,65 ,1,24525,65 ,1,24526,65 ,1,24527,65 ,1,24528,65 ,1,24529,65 ,1,24530,300150 ,1,24531,65 ,1,24532,231305 ,1,24533,65 ,1,24534,208035 ,1,24535,65 ,1,24536,289840 ,1,24537,65 ,1,24538,65 ,1,24539,65 ,1,24540,65 ,1,24541,65 ,1,24542,65 ,1,24543,65 ,1,24544,65 ,1,24545,65 ,1,24546,244515 ,1,24547,65 ,1,24548,65 ,1,24549,248290 ,1,24550,65 ,1,24551,254940 ,1,24552,65 ,1,24553,246745 ,1,24554,65 ,1,24555,65 ,1,24556,65 ,1,24557,65 ,1,24558,222905 ,1,24559,65 ,1,24560,65 ,1,24561,65 ,1,24562,65 ,1,24563,65 ,1,24564,309335 ,1,24565,222690 ,1,24566,207250 ,1,24567,231550 ,1,24568,291535 ,1,24569,65 ,1,24570,65 ,1,24571,304335 ,1,24572,343355 ,1,24573,65 ,1,24574,284380 ,1,24575,65 ,1,24576,65 ,1,24577,335625 ,1,24578,65 ,1,24579,333995 ,1,24580,65 ,1,24581,234365 ,1,24582,65 ,1,24583,65 ,1,24584,65 ,1,24585,65 ,1,24586,65 ,1,24587,224950 ,1,24588,65 ,1,24589,279350 ,1,24590,276155 ,1,24591,196040 ,1,24592,349540 ,1,24593,65 ,1,24594,65 ,1,24595,65 ,1,24596,65 ,1,24597,65 ,1,24598,65 ,1,24599,65 ,1,24600,65 ,1,24601,65 ,1,24602,342145 ,1,24603,65 ,1,24604,65 ,1,24605,65 ,1,24606,65 ,1,24607,290230 ,1,24608,258555 ,1,24609,247990 ,1,24610,65 ,1,24611,65 ,1,24612,220620 ,1,24613,239920 ,1,24614,65 ,1,24615,303190 ,1,24616,65 ,1,24617,65 ,1,24618,65 ,1,24619,65 ,1,24620,65 ,1,24621,266720 ,1,24622,266995 ,1,24623,192425 ,1,24624,65 ,1,24625,65 ,1,24626,197235 ,1,24627,289810 ,1,24628,228140 ,1,24629,345695 ,1,24630,312050 ,1,24631,327735 ,1,24632,65 ,1,24633,65 ,1,24634,65 ,1,24635,180240 ,1,24636,65 ,1,24637,65 ,1,24638,65 ,1,24639,65 ,1,24640,65 ,1,24641,259455 ,1,24642,65 ,1,24643,65 ,1,24644,295205 ,1,24645,309260 ,1,24646,65 ,1,24647,65 ,1,24648,289495 ,1,24649,179230 ,1,24650,65 ,1,24651,349525 ,1,24652,65 ,1,24653,229295 ,1,24654,211650 ,1,24655,65 ,1,24656,65 ,1,24657,65 ,1,24658,200095 ,1,24659,198655 ,1,24660,290730 ,1,24661,299940 ,1,24662,220330 ,1,24663,169650 ,1,24664,65 ,1,24665,65 ,1,24666,65 ,1,24667,65 ,1,24668,65 ,1,24669,194620 ,1,24670,65 ,1,24671,65 ,1,24672,65 ,1,24673,65 ,1,24674,65 ,1,24675,65 ,1,24676,65 ,1,24677,65 ,1,24678,313250 ,1,24679,65 ,1,24680,209790 ,1,24681,65 ,1,24682,65 ,1,24683,65 ,1,24684,65 ,1,24685,349515 ,1,24686,65 ,1,24687,65 ,1,24688,270610 ,1,24689,65 ,1,24690,65 ,1,24691,65 ,1,24692,194295 ,1,24693,325035 ,1,24694,65 ,1,24695,309200 ,1,24696,65 ,1,24697,65 ,1,24698,65 ,1,24699,65 ,1,24700,318585 ,1,24701,65 ,1,24702,65 ,1,24703,65 ,1,24704,65 ,1,24705,320370 ,1,24706,340740 ,1,24707,65 ,1,24708,65 ,1,24709,65 ,1,24710,254245 ,1,24711,65 ,1,24712,65 ,1,24713,65 ,1,24714,347500 ,1,24715,65 ,1,24716,65 ,1,24717,347635 ,1,24718,177945 ,1,24719,65 ,1,24720,65 ,1,24721,65 ,1,24722,275940 ,1,24723,305735 ,1,24724,187290 ,1,24725,288760 ,1,24726,329970 ,1,24727,334905 ,1,24728,65 ,1,24729,65 ,1,24730,65 ,1,24731,65 ,1,24732,321370 ,1,24733,65 ,1,24734,256360 ,1,24735,65 ,1,24736,65 ,1,24737,65 ,1,24738,65 ,1,24739,250030 ,1,24740,65 ,1,24741,293490 ,1,24742,65 ,1,24743,216680 ,1,24744,65 ,1,24745,251330 ,1,24746,65 ,1,24747,65 ,1,24748,214950 ,1,24749,65 ,1,24750,65 ,1,24751,349505 ,1,24752,293635 ,1,24753,65 ,1,24754,289320 ,1,24755,65 ,1,24756,65 ,1,24757,276240 ,1,24758,241965 ,1,24759,343075 ,1,24760,297105 ,1,24761,275665 ,1,24762,65 ,1,24763,349495 ,1,24764,65 ,1,24765,65 ,1,24766,65 ,1,24767,65 ,1,24768,195115 ,1,24769,322245 ,1,24770,228910 ,1,24771,272925 ,1,24772,65 ,1,24773,247050 ,1,24774,300880 ,1,24775,342050 ,1,24776,65 ,1,24777,65 ,1,24778,277830 ,1,24779,301405 ,1,24780,65 ,1,24781,178415 ,1,24782,173630 ,1,24783,248895 ,1,24784,311015 ,1,24785,65 ,1,24786,312760 ,1,24787,283750 ,1,24788,226005 ,1,24789,65 ,1,24790,65 ,1,24791,237270 ,1,24792,65 ,1,24793,65 ,1,24794,65 ,1,24795,65 ,1,24796,338675 ,1,24797,65 ,1,24798,65 ,1,24799,237210 ,1,24800,65 ,1,24801,65 ,1,24802,65 ,1,24803,65 ,1,24804,65 ,1,24805,267155 ,1,24806,65 ,1,24807,65 ,1,24808,65 ,1,24809,65 ,1,24810,65 ,1,24811,65 ,1,24812,230600 ,1,24813,65 ,1,24814,65 ,1,24815,275140 ,1,24816,65 ,1,24817,65 ,1,24818,65 ,1,24819,65 ,1,24820,65 ,1,24821,65 ,1,24822,65 ,1,24823,65 ,1,24824,223450 ,1,24825,65 ,1,24826,65 ,1,24827,65 ,1,24828,65 ,1,24829,65 ,1,24830,65 ,1,24831,316065 ,1,24832,65 ,1,24833,65 ,1,24834,65 ,1,24835,214060 ,1,24836,262355 ,1,24837,65 ,1,24838,65 ,1,24839,65 ,1,24840,65 ,1,24841,202735 ,1,24842,334025 ,1,24843,65 ,1,24844,225985 ,1,24845,65 ,1,24846,186575 ,1,24847,65 ,1,24848,65 ,1,24849,65 ,1,24850,202830 ,1,24851,65 ,1,24852,65 ,1,24853,65 ,1,24854,65 ,1,24855,196720 ,1,24856,184900 ,1,24857,229355 ,1,24858,65 ,1,24859,65 ,1,24860,346180 ,1,24861,197910 ,1,24862,279665 ,1,24863,65 ,1,24864,65 ,1,24865,65 ,1,24866,65 ,1,24867,192620 ,1,24868,65 ,1,24869,65 ,1,24870,191350 ,1,24871,65 ,1,24872,178240 ,1,24873,65 ,1,24874,65 ,1,24875,65 ,1,24876,224920 ,1,24877,65 ,1,24878,65 ,1,24879,325565 ,1,24880,65 ,1,24881,201510 ,1,24882,65 ,1,24883,65 ,1,24884,325895 ,1,24885,182040 ,1,24886,316610 ,1,24887,65 ,1,24888,180715 ,1,24889,65 ,1,24890,65 ,1,24891,234530 ,1,24892,65 ,1,24893,301095 ,1,24894,318255 ,1,24895,65 ,1,24896,65 ,1,24897,65 ,1,24898,65 ,1,24899,65 ,1,24900,65 ,1,24901,174925 ,1,24902,65 ,1,24903,65 ,1,24904,65 ,1,24905,65 ,1,24906,65 ,1,24907,292625 ,1,24908,271905 ,1,24909,65 ,1,24910,65 ,1,24911,326900 ,1,24912,65 ,1,24913,65 ,1,24914,65 ,1,24915,65 ,1,24916,205895 ,1,24917,65 ,1,24918,349475 ,1,24919,288045 ,1,24920,65 ,1,24921,317125 ,1,24922,65 ,1,24923,65 ,1,24924,257365 ,1,24925,272525 ,1,24926,325710 ,1,24927,65 ,1,24928,186895 ,1,24929,65 ,1,24930,65 ,1,24931,65 ,1,24932,65 ,1,24933,65 ,1,24934,169185 ,1,24935,212880 ,1,24936,273050 ,1,24937,248725 ,1,24938,65 ,1,24939,303865 ,1,24940,324555 ,1,24941,65 ,1,24942,202575 ,1,24943,65 ,1,24944,65 ,1,24945,264865 ,1,24946,65 ,1,24947,274610 ,1,24948,281885 ,1,24949,197920 ,1,24950,205070 ,1,24951,202500 ,1,24952,65 ,1,24953,273675 ,1,24954,65 ,1,24955,65 ,1,24956,65 ,1,24957,65 ,1,24958,291930 ,1,24959,284745 ,1,24960,319020 ,1,24961,65 ,1,24962,65 ,1,24963,274000 ,1,24964,65 ,1,24965,65 ,1,24966,65 ,1,24967,65 ,1,24968,65 ,1,24969,65 ,1,24970,65 ,1,24971,65 ,1,24972,263815 ,1,24973,203375 ,1,24974,195210 ,1,24975,311985 ,1,24976,65 ,1,24977,196740 ,1,24978,337370 ,1,24979,65 ,1,24980,298465 ,1,24981,204565 ,1,24982,318685 ,1,24983,65 ,1,24984,65 ,1,24985,65 ,1,24986,343955 ,1,24987,65 ,1,24988,335880 ,1,24989,65 ,1,24990,65 ,1,24991,65 ,1,24992,65 ,1,24993,65 ,1,24994,65 ,1,24995,65 ,1,24996,65 ,1,24997,65 ,1,24998,65 ,1,24999,278740 ,1,25000,178250 ,1,25001,65 ,1,25002,65 ,1,25003,65 ,1,25004,65 ,1,25005,320945 ,1,25006,65 ,1,25007,65 ,1,25008,65 ,1,25009,65 ,1,25010,65 ,1,25011,65 ,1,25012,65 ,1,25013,65 ,1,25014,241350 ,1,25015,65 ,1,25016,65 ,1,25017,65 ,1,25018,65 ,1,25019,205565 ,1,25020,270255 ,1,25021,232365 ,1,25022,65 ,1,25023,65 ,1,25024,65 ,1,25025,65 ,1,25026,65 ,1,25027,65 ,1,25028,65 ,1,25029,268140 ,1,25030,65 ,1,25031,65 ,1,25032,225560 ,1,25033,65 ,1,25034,211415 ,1,25035,290945 ,1,25036,295870 ,1,25037,302790 ,1,25038,173145 ,1,25039,65 ,1,25040,168975 ,1,25041,341605 ,1,25042,302200 ,1,25043,204205 ,1,25044,168215 ,1,25045,177440 ,1,25046,297840 ,1,25047,65 ,1,25048,65 ,1,25049,195380 ,1,25050,281185 ,1,25051,65 ,1,25052,294075 ,1,25053,343190 ,1,25054,65 ,1,25055,65 ,1,25056,65 ,1,25057,269195 ,1,25058,65 ,1,25059,65 ,1,25060,65 ,1,25061,65 ,1,25062,65 ,1,25063,300220 ,1,25064,182465 ,1,25065,65 ,1,25066,65 ,1,25067,314730 ,1,25068,65 ,1,25069,203435 ,1,25070,65 ,1,25071,65 ,1,25072,205000 ,1,25073,65 ,1,25074,65 ,1,25075,65 ,1,25076,65 ,1,25077,332125 ,1,25078,213945 ,1,25079,65 ,1,25080,229305 ,1,25081,349465 ,1,25082,65 ,1,25083,244735 ,1,25084,65 ,1,25085,65 ,1,25086,179380 ,1,25087,316895 ,1,25088,190780 ,1,25089,65 ,1,25090,349455 ,1,25091,65 ,1,25092,342960 ,1,25093,259245 ,1,25094,308870 ,1,25095,178965 ,1,25096,304835 ,1,25097,326560 ,1,25098,349445 ,1,25099,65 ,1,25100,250830 ,1,25101,65 ,1,25102,65 ,1,25103,65 ,1,25104,182935 ,1,25105,334975 ,1,25106,241985 ,1,25107,65 ,1,25108,65 ,1,25109,65 ,1,25110,278960 ,1,25111,214175 ,1,25112,65 ,1,25113,65 ,1,25114,65 ,1,25115,258675 ,1,25116,225055 ,1,25117,65 ,1,25118,65 ,1,25119,65 ,1,25120,65 ,1,25121,65 ,1,25122,65 ,1,25123,240090 ,1,25124,319235 ,1,25125,294005 ,1,25126,65 ,1,25127,337810 ,1,25128,343450 ,1,25129,65 ,1,25130,65 ,1,25131,65 ,1,25132,257730 ,1,25133,275770 ,1,25134,65 ,1,25135,65 ,1,25136,65 ,1,25137,65 ,1,25138,65 ,1,25139,65 ,1,25140,65 ,1,25141,300130 ,1,25142,65 ,1,25143,65 ,1,25144,65 ,1,25145,65 ,1,25146,65 ,1,25147,65 ,1,25148,65 ,1,25149,219800 ,1,25150,325235 ,1,25151,240415 ,1,25152,65 ,1,25153,65 ,1,25154,65 ,1,25155,65 ,1,25156,65 ,1,25157,65 ,1,25158,212410 ,1,25159,65 ,1,25160,266375 ,1,25161,65 ,1,25162,65 ,1,25163,65 ,1,25164,65 ,1,25165,292495 ,1,25166,65 ,1,25167,65 ,1,25168,313145 ,1,25169,211090 ,1,25170,65 ,1,25171,65 ,1,25172,213635 ,1,25173,293275 ,1,25174,254755 ,1,25175,65 ,1,25176,176500 ,1,25177,308270 ,1,25178,65 ,1,25179,65 ,1,25180,203880 ,1,25181,65 ,1,25182,307000 ,1,25183,65 ,1,25184,215735 ,1,25185,65 ,1,25186,188560 ,1,25187,274840 ,1,25188,174360 ,1,25189,65 ,1,25190,65 ,1,25191,65 ,1,25192,301820 ,1,25193,303980 ,1,25194,65 ,1,25195,65 ,1,25196,65 ,1,25197,65 ,1,25198,65 ,1,25199,65 ,1,25200,65 ,1,25201,65 ,1,25202,65 ,1,25203,349425 ,1,25204,65 ,1,25205,65 ,1,25206,65 ,1,25207,283905 ,1,25208,317845 ,1,25209,175310 ,1,25210,65 ,1,25211,65 ,1,25212,65 ,1,25213,65 ,1,25214,65 ,1,25215,65 ,1,25216,65 ,1,25217,65 ,1,25218,269615 ,1,25219,223920 ,1,25220,65 ,1,25221,65 ,1,25222,301505 ,1,25223,65 ,1,25224,331375 ,1,25225,284320 ,1,25226,65 ,1,25227,65 ,1,25228,243835 ,1,25229,65 ,1,25230,168955 ,1,25231,65 ,1,25232,65 ,1,25233,65 ,1,25234,65 ,1,25235,65 ,1,25236,65 ,1,25237,65 ,1,25238,65 ,1,25239,308365 ,1,25240,271705 ,1,25241,65 ,1,25242,65 ,1,25243,173955 ,1,25244,277510 ,1,25245,259820 ,1,25246,65 ,1,25247,286450 ,1,25248,304200 ,1,25249,65 ,1,25250,65 ,1,25251,296285 ,1,25252,238680 ,1,25253,262180 ,1,25254,168410 ,1,25255,334525 ,1,25256,65 ,1,25257,178260 ,1,25258,65 ,1,25259,65 ,1,25260,65 ,1,25261,65 ,1,25262,65 ,1,25263,65 ,1,25264,65 ,1,25265,65 ,1,25266,276905 ,1,25267,299290 ,1,25268,294990 ,1,25269,349415 ,1,25270,65 ,1,25271,309025 ,1,25272,195845 ,1,25273,175205 ,1,25274,252845 ,1,25275,322880 ,1,25276,176380 ,1,25277,65 ,1,25278,65 ,1,25279,65 ,1,25280,245405 ,1,25281,325455 ,1,25282,65 ,1,25283,65 ,1,25284,65 ,1,25285,248860 ,1,25286,65 ,1,25287,241430 ,1,25288,334820 ,1,25289,342135 ,1,25290,65 ,1,25291,65 ,1,25292,65 ,1,25293,65 ,1,25294,344575 ,1,25295,65 ,1,25296,65 ,1,25297,65 ,1,25298,65 ,1,25299,252320 ,1,25300,65 ,1,25301,337310 ,1,25302,65 ,1,25303,65 ,1,25304,65 ,1,25305,65 ,1,25306,65 ,1,25307,199255 ,1,25308,65 ,1,25309,203010 ,1,25310,65 ,1,25311,65 ,1,25312,65 ,1,25313,65 ,1,25314,65 ,1,25315,65 ,1,25316,65 ,1,25317,293500 ,1,25318,325980 ,1,25319,65 ,1,25320,65 ,1,25321,342440 ,1,25322,65 ,1,25323,65 ,1,25324,313595 ,1,25325,65 ,1,25326,306305 ,1,25327,65 ,1,25328,65 ,1,25329,65 ,1,25330,348305 ,1,25331,65 ,1,25332,65 ,1,25333,243930 ,1,25334,228160 ,1,25335,65 ,1,25336,335265 ,1,25337,65 ,1,25338,316845 ,1,25339,233485 ,1,25340,228390 ,1,25341,65 ,1,25342,65 ,1,25343,65 ,1,25344,291920 ,1,25345,65 ,1,25346,274960 ,1,25347,65 ,1,25348,65 ,1,25349,65 ,1,25350,239700 ,1,25351,310070 ,1,25352,245765 ,1,25353,175900 ,1,25354,183955 ,1,25355,312515 ,1,25356,341395 ,1,25357,344165 ,1,25358,242525 ,1,25359,273890 ,1,25360,65 ,1,25361,270795 ,1,25362,333365 ,1,25363,65 ,1,25364,331435 ,1,25365,65 ,1,25366,65 ,1,25367,65 ,1,25368,209495 ,1,25369,216875 ,1,25370,189525 ,1,25371,254520 ,1,25372,193425 ,1,25373,65 ,1,25374,292185 ,1,25375,65 ,1,25376,314740 ,1,25377,209325 ,1,25378,65 ,1,25379,65 ,1,25380,256075 ,1,25381,237895 ,1,25382,333170 ,1,25383,65 ,1,25384,65 ,1,25385,65 ,1,25386,340025 ,1,25387,188090 ,1,25388,65 ,1,25389,65 ,1,25390,65 ,1,25391,65 ,1,25392,300610 ,1,25393,65 ,1,25394,281480 ,1,25395,65 ,1,25396,65 ,1,25397,65 ,1,25398,65 ,1,25399,205770 ,1,25400,65 ,1,25401,65 ,1,25402,224400 ,1,25403,300685 ,1,25404,65 ,1,25405,232965 ,1,25406,65 ,1,25407,262115 ,1,25408,253450 ,1,25409,328040 ,1,25410,65 ,1,25411,349405 ,1,25412,65 ,1,25413,65 ,1,25414,65 ,1,25415,217425 ,1,25416,65 ,1,25417,65 ,1,25418,198065 ,1,25419,288645 ,1,25420,281005 ,1,25421,333770 ,1,25422,309450 ,1,25423,304125 ,1,25424,209660 ,1,25425,288870 ,1,25426,235945 ,1,25427,256955 ,1,25428,330175 ,1,25429,200670 ,1,25430,65 ,1,25431,65 ,1,25432,65 ,1,25433,215395 ,1,25434,291575 ,1,25435,65 ,1,25436,342040 ,1,25437,65 ,1,25438,65 ,1,25439,65 ,1,25440,207350 ,1,25441,65 ,1,25442,65 ,1,25443,65 ,1,25444,65 ,1,25445,65 ,1,25446,247865 ,1,25447,195550 ,1,25448,324705 ,1,25449,65 ,1,25450,65 ,1,25451,65 ,1,25452,65 ,1,25453,225955 ,1,25454,65 ,1,25455,65 ,1,25456,65 ,1,25457,65 ,1,25458,65 ,1,25459,232220 ,1,25460,65 ,1,25461,65 ,1,25462,65 ,1,25463,311875 ,1,25464,65 ,1,25465,198745 ,1,25466,65 ,1,25467,65 ,1,25468,187410 ,1,25469,179880 ,1,25470,65 ,1,25471,65 ,1,25472,65 ,1,25473,271575 ,1,25474,65 ,1,25475,208795 ,1,25476,232000 ,1,25477,181255 ,1,25478,65 ,1,25479,346635 ,1,25480,65 ,1,25481,65 ,1,25482,197065 ,1,25483,65 ,1,25484,237535 ,1,25485,65 ,1,25486,65 ,1,25487,65 ,1,25488,277855 ,1,25489,65 ,1,25490,65 ,1,25491,65 ,1,25492,65 ,1,25493,263760 ,1,25494,65 ,1,25495,65 ,1,25496,65 ,1,25497,325485 ,1,25498,191435 ,1,25499,290015 ,1,25500,65 ,1,25501,305665 ,1,25502,65 ,1,25503,65 ,1,25504,221230 ,1,25505,65 ,1,25506,65 ,1,25507,65 ,1,25508,65 ,1,25509,65 ,1,25510,65 ,1,25511,327500 ,1,25512,334285 ,1,25513,65 ,1,25514,65 ,1,25515,65 ,1,25516,65 ,1,25517,268385 ,1,25518,65 ,1,25519,65 ,1,25520,300045 ,1,25521,65 ,1,25522,65 ,1,25523,65 ,1,25524,65 ,1,25525,170600 ,1,25526,65 ,1,25527,65 ,1,25528,65 ,1,25529,320235 ,1,25530,65 ,1,25531,65 ,1,25532,216775 ,1,25533,65 ,1,25534,65 ,1,25535,335485 ,1,25536,65 ,1,25537,65 ,1,25538,281015 ,1,25539,65 ,1,25540,65 ,1,25541,65 ,1,25542,65 ,1,25543,340325 ,1,25544,183330 ,1,25545,65 ,1,25546,65 ,1,25547,65 ,1,25548,65 ,1,25549,65 ,1,25550,274310 ,1,25551,348515 ,1,25552,181290 ,1,25553,65 ,1,25554,65 ,1,25555,216110 ,1,25556,225795 ,1,25557,65 ,1,25558,65 ,1,25559,65 ,1,25560,65 ,1,25561,65 ,1,25562,65 ,1,25563,65 ,1,25564,65 ,1,25565,322095 ,1,25566,65 ,1,25567,65 ,1,25568,65 ,1,25569,65 ,1,25570,65 ,1,25571,65 ,1,25572,313365 ,1,25573,65 ,1,25574,65 ,1,25575,207285 ,1,25576,65 ,1,25577,299280 ,1,25578,65 ,1,25579,65 ,1,25580,65 ,1,25581,65 ,1,25582,65 ,1,25583,227185 ,1,25584,341200 ,1,25585,203560 ,1,25586,65 ,1,25587,65 ,1,25588,65 ,1,25589,304760 ,1,25590,201120 ,1,25591,65 ,1,25592,333115 ,1,25593,65 ,1,25594,250560 ,1,25595,65 ,1,25596,223120 ,1,25597,303605 ,1,25598,65 ,1,25599,286440 ,1,25600,178780 ,1,25601,231680 ,1,25602,65 ,1,25603,65 ,1,25604,65 ,1,25605,65 ,1,25606,219395 ,1,25607,228240 ,1,25608,200770 ,1,25609,65 ,1,25610,319505 ,1,25611,341945 ,1,25612,65 ,1,25613,65 ,1,25614,65 ,1,25615,65 ,1,25616,65 ,1,25617,65 ,1,25618,65 ,1,25619,65 ,1,25620,224025 ,1,25621,65 ,1,25622,65 ,1,25623,65 ,1,25624,65 ,1,25625,321135 ,1,25626,236900 ,1,25627,245465 ,1,25628,218400 ,1,25629,321095 ,1,25630,328395 ,1,25631,179690 ,1,25632,65 ,1,25633,222645 ,1,25634,252855 ,1,25635,65 ,1,25636,65 ,1,25637,65 ,1,25638,65 ,1,25639,65 ,1,25640,65 ,1,25641,272825 ,1,25642,65 ,1,25643,65 ,1,25644,65 ,1,25645,65 ,1,25646,65 ,1,25647,65 ,1,25648,65 ,1,25649,167095 ,1,25650,171090 ,1,25651,199500 ,1,25652,65 ,1,25653,65 ,1,25654,65 ,1,25655,281715 ,1,25656,276530 ,1,25657,65 ,1,25658,65 ,1,25659,65 ,1,25660,65 ,1,25661,65 ,1,25662,177705 ,1,25663,293515 ,1,25664,248330 ,1,25665,166850 ,1,25666,305845 ,1,25667,65 ,1,25668,65 ,1,25669,299605 ,1,25670,270005 ,1,25671,245540 ,1,25672,65 ,1,25673,65 ,1,25674,65 ,1,25675,235045 ,1,25676,65 ,1,25677,218475 ,1,25678,300960 ,1,25679,65 ,1,25680,65 ,1,25681,65 ,1,25682,251485 ,1,25683,337765 ,1,25684,65 ,1,25685,172365 ,1,25686,65 ,1,25687,65 ,1,25688,65 ,1,25689,65 ,1,25690,65 ,1,25691,65 ,1,25692,65 ,1,25693,212850 ,1,25694,201695 ,1,25695,260195 ,1,25696,346455 ,1,25697,241890 ,1,25698,65 ,1,25699,65 ,1,25700,213325 ,1,25701,65 ,1,25702,296760 ,1,25703,65 ,1,25704,65 ,1,25705,65 ,1,25706,213155 ,1,25707,349395 ,1,25708,65 ,1,25709,65 ,1,25710,65 ,1,25711,284840 ,1,25712,204690 ,1,25713,65 ,1,25714,65 ,1,25715,65 ,1,25716,65 ,1,25717,65 ,1,25718,65 ,1,25719,218230 ,1,25720,65 ,1,25721,214420 ,1,25722,215305 ,1,25723,65 ,1,25724,347465 ,1,25725,65 ,1,25726,65 ,1,25727,341315 ,1,25728,65 ,1,25729,305715 ,1,25730,194925 ,1,25731,65 ,1,25732,335435 ,1,25733,65 ,1,25734,332625 ,1,25735,65 ,1,25736,65 ,1,25737,338840 ,1,25738,65 ,1,25739,331355 ,1,25740,65 ,1,25741,65 ,1,25742,65 ,1,25743,65 ,1,25744,65 ,1,25745,284710 ,1,25746,65 ,1,25747,65 ,1,25748,65 ,1,25749,65 ,1,25750,264375 ,1,25751,65 ,1,25752,198925 ,1,25753,188060 ,1,25754,65 ,1,25755,65 ,1,25756,65 ,1,25757,65 ,1,25758,198550 ,1,25759,281570 ,1,25760,65 ,1,25761,310515 ,1,25762,198035 ,1,25763,65 ,1,25764,261165 ,1,25765,315715 ,1,25766,65 ,1,25767,230060 ,1,25768,342175 ,1,25769,308555 ,1,25770,173715 ,1,25771,341285 ,1,25772,226760 ,1,25773,65 ,1,25774,65 ,1,25775,250115 ,1,25776,65 ,1,25777,65 ,1,25778,65 ,1,25779,172690 ,1,25780,189750 ,1,25781,301635 ,1,25782,303070 ,1,25783,320740 ,1,25784,65 ,1,25785,65 ,1,25786,261390 ,1,25787,65 ,1,25788,264900 ,1,25789,256470 ,1,25790,65 ,1,25791,65 ,1,25792,65 ,1,25793,65 ,1,25794,65 ,1,25795,65 ,1,25796,65 ,1,25797,65 ,1,25798,208680 ,1,25799,65 ,1,25800,65 ,1,25801,65 ,1,25802,279295 ,1,25803,324810 ,1,25804,274620 ,1,25805,262505 ,1,25806,314940 ,1,25807,181860 ,1,25808,205205 ,1,25809,65 ,1,25810,65 ,1,25811,258315 ,1,25812,65 ,1,25813,201170 ,1,25814,65 ,1,25815,65 ,1,25816,65 ,1,25817,300355 ,1,25818,65 ,1,25819,65 ,1,25820,65 ,1,25821,65 ,1,25822,65 ,1,25823,202210 ,1,25824,303510 ,1,25825,315810 ,1,25826,65 ,1,25827,285540 ,1,25828,296750 ,1,25829,248775 ,1,25830,320505 ,1,25831,65 ,1,25832,65 ,1,25833,230495 ,1,25834,196585 ,1,25835,65 ,1,25836,65 ,1,25837,257810 ,1,25838,332135 ,1,25839,265730 ,1,25840,65 ,1,25841,349375 ,1,25842,297750 ,1,25843,65 ,1,25844,65 ,1,25845,65 ,1,25846,65 ,1,25847,65 ,1,25848,65 ,1,25849,65 ,1,25850,274530 ,1,25851,208585 ,1,25852,65 ,1,25853,217045 ,1,25854,201715 ,1,25855,65 ,1,25856,65 ,1,25857,264225 ,1,25858,65 ,1,25859,349365 ,1,25860,65 ,1,25861,181275 ,1,25862,177830 ,1,25863,328600 ,1,25864,65 ,1,25865,65 ,1,25866,276070 ,1,25867,201015 ,1,25868,202315 ,1,25869,65 ,1,25870,65 ,1,25871,65 ,1,25872,208965 ,1,25873,269970 ,1,25874,65 ,1,25875,210055 ,1,25876,65 ,1,25877,65 ,1,25878,65 ,1,25879,305835 ,1,25880,65 ,1,25881,65 ,1,25882,65 ,1,25883,65 ,1,25884,247255 ,1,25885,351880 ,1,25886,65 ,1,25887,65 ,1,25888,283460 ,1,25889,229080 ,1,25890,244960 ,1,25891,280120 ,1,25892,220075 ,1,25893,65 ,1,25894,65 ,1,25895,203570 ,1,25896,234685 ,1,25897,65 ,1,25898,65 ,1,25899,349355 ,1,25900,280595 ,1,25901,65 ,1,25902,65 ,1,25903,196565 ,1,25904,65 ,1,25905,65 ,1,25906,283705 ,1,25907,65 ,1,25908,65 ,1,25909,65 ,1,25910,65 ,1,25911,65 ,1,25912,65 ,1,25913,286495 ,1,25914,191900 ,1,25915,325950 ,1,25916,299975 ,1,25917,65 ,1,25918,65 ,1,25919,65 ,1,25920,65 ,1,25921,65 ,1,25922,261380 ,1,25923,65 ,1,25924,65 ,1,25925,65 ,1,25926,308195 ,1,25927,181245 ,1,25928,221795 ,1,25929,171835 ,1,25930,316170 ,1,25931,268080 ,1,25932,65 ,1,25933,65 ,1,25934,256710 ,1,25935,184960 ,1,25936,65 ,1,25937,65 ,1,25938,65 ,1,25939,65 ,1,25940,192280 ,1,25941,291335 ,1,25942,65 ,1,25943,280865 ,1,25944,65 ,1,25945,65 ,1,25946,320555 ,1,25947,328495 ,1,25948,65 ,1,25949,65 ,1,25950,65 ,1,25951,65 ,1,25952,65 ,1,25953,172200 ,1,25954,285635 ,1,25955,65 ,1,25956,65 ,1,25957,65 ,1,25958,65 ,1,25959,238555 ,1,25960,65 ,1,25961,201455 ,1,25962,245695 ,1,25963,316695 ,1,25964,226935 ,1,25965,260085 ,1,25966,275210 ,1,25967,65 ,1,25968,65 ,1,25969,279155 ,1,25970,65 ,1,25971,263305 ,1,25972,247950 ,1,25973,65 ,1,25974,325015 ,1,25975,337570 ,1,25976,344555 ,1,25977,65 ,1,25978,65 ,1,25979,65 ,1,25980,65 ,1,25981,65 ,1,25982,65 ,1,25983,65 ,1,25984,65 ,1,25985,65 ,1,25986,65 ,1,25987,65 ,1,25988,272210 ,1,25989,65 ,1,25990,65 ,1,25991,65 ,1,25992,65 ,1,25993,198010 ,1,25994,65 ,1,25995,65 ,1,25996,65 ,1,25997,65 ,1,25998,65 ,1,25999,65 ,1,26000,65 ,1,26001,65 ,1,26002,65 ,1,26003,65 ,1,26004,65 ,1,26005,261125 ,1,26006,65 ,1,26007,65 ,1,26008,65 ,1,26009,200270 ,1,26010,191860 ,1,26011,65 ,1,26012,225075 ,1,26013,346220 ,1,26014,65 ,1,26015,65 ,1,26016,65 ,1,26017,65 ,1,26018,170870 ,1,26019,65 ,1,26020,65 ,1,26021,65 ,1,26022,247970 ,1,26023,65 ,1,26024,175835 ,1,26025,199455 ,1,26026,65 ,1,26027,169470 ,1,26028,231240 ,1,26029,65 ,1,26030,208445 ,1,26031,65 ,1,26032,65 ,1,26033,173095 ,1,26034,65 ,1,26035,65 ,1,26036,65 ,1,26037,65 ,1,26038,65 ,1,26039,65 ,1,26040,65 ,1,26041,65 ,1,26042,65 ,1,26043,65 ,1,26044,65 ,1,26045,193015 ,1,26046,296340 ,1,26047,65 ,1,26048,208025 ,1,26049,65 ,1,26050,65 ,1,26051,65 ,1,26052,181695 ,1,26053,181520 ,1,26054,65 ,1,26055,284275 ,1,26056,65 ,1,26057,65 ,1,26058,286865 ,1,26059,258375 ,1,26060,65 ,1,26061,65 ,1,26062,323625 ,1,26063,65 ,1,26064,235095 ,1,26065,65 ,1,26066,283870 ,1,26067,238020 ,1,26068,65 ,1,26069,335180 ,1,26070,65 ,1,26071,65 ,1,26072,65 ,1,26073,65 ,1,26074,65 ,1,26075,65 ,1,26076,65 ,1,26077,259160 ,1,26078,329150 ,1,26079,203775 ,1,26080,241465 ,1,26081,65 ,1,26082,65 ,1,26083,218130 ,1,26084,65 ,1,26085,65 ,1,26086,65 ,1,26087,65 ,1,26088,331900 ,1,26089,189135 ,1,26090,65 ,1,26091,246425 ,1,26092,65 ,1,26093,65 ,1,26094,275045 ,1,26095,65 ,1,26096,274210 ,1,26097,65 ,1,26098,65 ,1,26099,65 ,1,26100,65 ,1,26101,65 ,1,26102,65 ,1,26103,216335 ,1,26104,257470 ,1,26105,172065 ,1,26106,250530 ,1,26107,204390 ,1,26108,293545 ,1,26109,281420 ,1,26110,276375 ,1,26111,65 ,1,26112,65 ,1,26113,320790 ,1,26114,65 ,1,26115,65 ,1,26116,65 ,1,26117,192330 ,1,26118,65 ,1,26119,65 ,1,26120,65 ,1,26121,65 ,1,26122,240255 ,1,26123,261645 ,1,26124,190750 ,1,26125,268975 ,1,26126,65 ,1,26127,65 ,1,26128,65 ,1,26129,65 ,1,26130,236805 ,1,26131,183680 ,1,26132,322145 ,1,26133,65 ,1,26134,65 ,1,26135,313830 ,1,26136,65 ,1,26137,225850 ,1,26138,65 ,1,26139,219615 ,1,26140,65 ,1,26141,65 ,1,26142,65 ,1,26143,65 ,1,26144,171595 ,1,26145,305515 ,1,26146,65 ,1,26147,65 ,1,26148,65 ,1,26149,173485 ,1,26150,65 ,1,26151,65 ,1,26152,65 ,1,26153,65 ,1,26154,65 ,1,26155,65 ,1,26156,65 ,1,26157,324285 ,1,26158,320620 ,1,26159,279645 ,1,26160,341890 ,1,26161,65 ,1,26162,171110 ,1,26163,286170 ,1,26164,65 ,1,26165,65 ,1,26166,65 ,1,26167,65 ,1,26168,65 ,1,26169,65 ,1,26170,65 ,1,26171,65 ,1,26172,65 ,1,26173,236470 ,1,26174,65 ,1,26175,65 ,1,26176,65 ,1,26177,65 ,1,26178,65 ,1,26179,65 ,1,26180,65 ,1,26181,65 ,1,26182,65 ,1,26183,65 ,1,26184,201290 ,1,26185,203685 ,1,26186,195540 ,1,26187,65 ,1,26188,194545 ,1,26189,295765 ,1,26190,65 ,1,26191,206935 ,1,26192,227865 ,1,26193,264235 ,1,26194,216230 ,1,26195,215805 ,1,26196,65 ,1,26197,65 ,1,26198,65 ,1,26199,195155 ,1,26200,338300 ,1,26201,65 ,1,26202,65 ,1,26203,65 ,1,26204,65 ,1,26205,65 ,1,26206,65 ,1,26207,321970 ,1,26208,210995 ,1,26209,65 ,1,26210,267235 ,1,26211,65 ,1,26212,193165 ,1,26213,322955 ,1,26214,65 ,1,26215,65 ,1,26216,266740 ,1,26217,179620 ,1,26218,198880 ,1,26219,168000 ,1,26220,262785 ,1,26221,214195 ,1,26222,65 ,1,26223,171410 ,1,26224,65 ,1,26225,326870 ,1,26226,284265 ,1,26227,234910 ,1,26228,248200 ,1,26229,225400 ,1,26230,65 ,1,26231,305770 ,1,26232,295000 ,1,26233,65 ,1,26234,65 ,1,26235,319115 ,1,26236,65 ,1,26237,65 ,1,26238,65 ,1,26239,65 ,1,26240,65 ,1,26241,65 ,1,26242,65 ,1,26243,65 ,1,26244,253360 ,1,26245,239025 ,1,26246,65 ,1,26247,65 ,1,26248,268575 ,1,26249,179060 ,1,26250,295230 ,1,26251,253275 ,1,26252,216145 ,1,26253,179255 ,1,26254,65 ,1,26255,207810 ,1,26256,324525 ,1,26257,251665 ,1,26258,219910 ,1,26259,65 ,1,26260,237250 ,1,26261,65 ,1,26262,65 ,1,26263,65 ,1,26264,65 ,1,26265,65 ,1,26266,65 ,1,26267,65 ,1,26268,65 ,1,26269,197195 ,1,26270,332780 ,1,26271,318565 ,1,26272,65 ,1,26273,65 ,1,26274,288445 ,1,26275,65 ,1,26276,65 ,1,26277,65 ,1,26278,65 ,1,26279,203445 ,1,26280,229830 ,1,26281,171295 ,1,26282,216765 ,1,26283,65 ,1,26284,65 ,1,26285,65 ,1,26286,349345 ,1,26287,65 ,1,26288,65 ,1,26289,298365 ,1,26290,65 ,1,26291,65 ,1,26292,289955 ,1,26293,65 ,1,26294,65 ,1,26295,65 ,1,26296,65 ,1,26297,222655 ,1,26298,188295 ,1,26299,241265 ,1,26300,65 ,1,26301,65 ,1,26302,65 ,1,26303,65 ,1,26304,275015 ,1,26305,65 ,1,26306,65 ,1,26307,212955 ,1,26308,65 ,1,26309,208595 ,1,26310,65 ,1,26311,337320 ,1,26312,65 ,1,26313,65 ,1,26314,253025 ,1,26315,344240 ,1,26316,319465 ,1,26317,316510 ,1,26318,216135 ,1,26319,241740 ,1,26320,291375 ,1,26321,65 ,1,26322,65 ,1,26323,65 ,1,26324,237605 ,1,26325,65 ,1,26326,65 ,1,26327,244600 ,1,26328,302330 ,1,26329,65 ,1,26330,65 ,1,26331,65 ,1,26332,305470 ,1,26333,336660 ,1,26334,312855 ,1,26335,65 ,1,26336,263240 ,1,26337,65 ,1,26338,294105 ,1,26339,65 ,1,26340,65 ,1,26341,65 ,1,26342,65 ,1,26343,209010 ,1,26344,65 ,1,26345,260125 ,1,26346,65 ,1,26347,65 ,1,26348,65 ,1,26349,322305 ,1,26350,65 ,1,26351,202200 ,1,26352,65 ,1,26353,246255 ,1,26354,65 ,1,26355,65 ,1,26356,65 ,1,26357,180550 ,1,26358,65 ,1,26359,65 ,1,26360,65 ,1,26361,65 ,1,26362,65 ,1,26363,65 ,1,26364,65 ,1,26365,65 ,1,26366,65 ,1,26367,65 ,1,26368,65 ,1,26369,65 ,1,26370,65 ,1,26371,65 ,1,26372,185885 ,1,26373,211385 ,1,26374,249750 ,1,26375,65 ,1,26376,277820 ,1,26377,342915 ,1,26378,65 ,1,26379,177075 ,1,26380,65 ,1,26381,65 ,1,26382,223395 ,1,26383,336685 ,1,26384,65 ,1,26385,325225 ,1,26386,313105 ,1,26387,65 ,1,26388,65 ,1,26389,282535 ,1,26390,315640 ,1,26391,65 ,1,26392,65 ,1,26393,65 ,1,26394,65 ,1,26395,65 ,1,26396,65 ,1,26397,65 ,1,26398,300325 ,1,26399,227955 ,1,26400,65 ,1,26401,65 ,1,26402,65 ,1,26403,65 ,1,26404,230915 ,1,26405,65 ,1,26406,196190 ,1,26407,236990 ,1,26408,223075 ,1,26409,65 ,1,26410,65 ,1,26411,226255 ,1,26412,65 ,1,26413,65 ,1,26414,65 ,1,26415,251970 ,1,26416,303295 ,1,26417,65 ,1,26418,65 ,1,26419,251750 ,1,26420,65 ,1,26421,65 ,1,26422,65 ,1,26423,65 ,1,26424,65 ,1,26425,65 ,1,26426,334655 ,1,26427,65 ,1,26428,274145 ,1,26429,194600 ,1,26430,65 ,1,26431,269020 ,1,26432,65 ,1,26433,65 ,1,26434,65 ,1,26435,65 ,1,26436,65 ,1,26437,65 ,1,26438,65 ,1,26439,65 ,1,26440,65 ,1,26441,65 ,1,26442,65 ,1,26443,65 ,1,26444,65 ,1,26445,65 ,1,26446,343555 ,1,26447,323475 ,1,26448,65 ,1,26449,65 ,1,26450,65 ,1,26451,65 ,1,26452,65 ,1,26453,65 ,1,26454,65 ,1,26455,65 ,1,26456,65 ,1,26457,65 ,1,26458,181320 ,1,26459,329490 ,1,26460,258465 ,1,26461,65 ,1,26462,65 ,1,26463,214395 ,1,26464,200640 ,1,26465,65 ,1,26466,65 ,1,26467,65 ,1,26468,65 ,1,26469,174630 ,1,26470,65 ,1,26471,343135 ,1,26472,65 ,1,26473,65 ,1,26474,65 ,1,26475,346565 ,1,26476,65 ,1,26477,65 ,1,26478,65 ,1,26479,65 ,1,26480,65 ,1,26481,65 ,1,26482,277695 ,1,26483,240485 ,1,26484,65 ,1,26485,65 ,1,26486,65 ,1,26487,65 ,1,26488,65 ,1,26489,65 ,1,26490,235355 ,1,26491,270455 ,1,26492,65 ,1,26493,65 ,1,26494,65 ,1,26495,65 ,1,26496,229955 ,1,26497,65 ,1,26498,65 ,1,26499,280175 ,1,26500,65 ,1,26501,65 ,1,26502,263805 ,1,26503,329680 ,1,26504,65 ,1,26505,288195 ,1,26506,65 ,1,26507,65 ,1,26508,65 ,1,26509,198560 ,1,26510,172395 ,1,26511,65 ,1,26512,263530 ,1,26513,65 ,1,26514,65 ,1,26515,65 ,1,26516,65 ,1,26517,65 ,1,26518,65 ,1,26519,65 ,1,26520,65 ,1,26521,349335 ,1,26522,65 ,1,26523,65 ,1,26524,317595 ,1,26525,65 ,1,26526,65 ,1,26527,176050 ,1,26528,203425 ,1,26529,65 ,1,26530,197175 ,1,26531,318150 ,1,26532,319165 ,1,26533,65 ,1,26534,65 ,1,26535,65 ,1,26536,65 ,1,26537,65 ,1,26538,65 ,1,26539,65 ,1,26540,200075 ,1,26541,65 ,1,26542,65 ,1,26543,65 ,1,26544,65 ,1,26545,65 ,1,26546,65 ,1,26547,65 ,1,26548,65 ,1,26549,65 ,1,26550,219430 ,1,26551,65 ,1,26552,65 ,1,26553,65 ,1,26554,203730 ,1,26555,323775 ,1,26556,65 ,1,26557,65 ,1,26558,65 ,1,26559,65 ,1,26560,65 ,1,26561,65 ,1,26562,228900 ,1,26563,341275 ,1,26564,65 ,1,26565,294415 ,1,26566,65 ,1,26567,65 ,1,26568,304940 ,1,26569,290860 ,1,26570,65 ,1,26571,65 ,1,26572,240550 ,1,26573,65 ,1,26574,314185 ,1,26575,349325 ,1,26576,65 ,1,26577,65 ,1,26578,65 ,1,26579,65 ,1,26580,65 ,1,26581,65 ,1,26582,65 ,1,26583,310185 ,1,26584,271625 ,1,26585,65 ,1,26586,65 ,1,26587,167500 ,1,26588,65 ,1,26589,65 ,1,26590,65 ,1,26591,241295 ,1,26592,65 ,1,26593,332535 ,1,26594,65 ,1,26595,65 ,1,26596,65 ,1,26597,297495 ,1,26598,65 ,1,26599,65 ,1,26600,228045 ,1,26601,321610 ,1,26602,278370 ,1,26603,65 ,1,26604,221610 ,1,26605,65 ,1,26606,65 ,1,26607,65 ,1,26608,65 ,1,26609,65 ,1,26610,195280 ,1,26611,65 ,1,26612,65 ,1,26613,65 ,1,26614,244285 ,1,26615,280785 ,1,26616,65 ,1,26617,337210 ,1,26618,224035 ,1,26619,65 ,1,26620,306565 ,1,26621,310305 ,1,26622,319315 ,1,26623,216905 ,1,26624,284535 ,1,26625,232835 ,1,26626,65 ,1,26627,238740 ,1,26628,65 ,1,26629,312220 ,1,26630,258720 ,1,26631,65 ,1,26632,294370 ,1,26633,173380 ,1,26634,176480 ,1,26635,243770 ,1,26636,65 ,1,26637,65 ,1,26638,65 ,1,26639,65 ,1,26640,294160 ,1,26641,65 ,1,26642,65 ,1,26643,65 ,1,26644,316100 ,1,26645,65 ,1,26646,65 ,1,26647,65 ,1,26648,65 ,1,26649,309805 ,1,26650,65 ,1,26651,65 ,1,26652,65 ,1,26653,65 ,1,26654,324105 ,1,26655,65 ,1,26656,65 ,1,26657,65 ,1,26658,65 ,1,26659,65 ,1,26660,345350 ,1,26661,230620 ,1,26662,323920 ,1,26663,65 ,1,26664,323580 ,1,26665,65 ,1,26666,65 ,1,26667,269155 ,1,26668,65 ,1,26669,237450 ,1,26670,65 ,1,26671,280185 ,1,26672,65 ,1,26673,65 ,1,26674,283780 ,1,26675,229035 ,1,26676,65 ,1,26677,65 ,1,26678,220285 ,1,26679,167990 ,1,26680,65 ,1,26681,323000 ,1,26682,271785 ,1,26683,65 ,1,26684,236675 ,1,26685,65 ,1,26686,65 ,1,26687,65 ,1,26688,65 ,1,26689,211145 ,1,26690,258200 ,1,26691,65 ,1,26692,286505 ,1,26693,238160 ,1,26694,65 ,1,26695,65 ,1,26696,303810 ,1,26697,202050 ,1,26698,275760 ,1,26699,346650 ,1,26700,65 ,1,26701,65 ,1,26702,280035 ,1,26703,324425 ,1,26704,65 ,1,26705,284660 ,1,26706,298575 ,1,26707,65 ,1,26708,325765 ,1,26709,65 ,1,26710,222120 ,1,26711,65 ,1,26712,65 ,1,26713,200975 ,1,26714,228465 ,1,26715,65 ,1,26716,65 ,1,26717,301210 ,1,26718,65 ,1,26719,196295 ,1,26720,65 ,1,26721,65 ,1,26722,65 ,1,26723,323970 ,1,26724,65 ,1,26725,65 ,1,26726,65 ,1,26727,65 ,1,26728,65 ,1,26729,347260 ,1,26730,65 ,1,26731,329280 ,1,26732,301425 ,1,26733,65 ,1,26734,65 ,1,26735,65 ,1,26736,65 ,1,26737,192200 ,1,26738,65 ,1,26739,182500 ,1,26740,187250 ,1,26741,65 ,1,26742,314865 ,1,26743,65 ,1,26744,218050 ,1,26745,65 ,1,26746,65 ,1,26747,255415 ,1,26748,65 ,1,26749,65 ,1,26750,194340 ,1,26751,65 ,1,26752,65 ,1,26753,65 ,1,26754,65 ,1,26755,345140 ,1,26756,65 ,1,26757,65 ,1,26758,203925 ,1,26759,65 ,1,26760,65 ,1,26761,65 ,1,26762,175340 ,1,26763,65 ,1,26764,282825 ,1,26765,65 ,1,26766,65 ,1,26767,65 ,1,26768,65 ,1,26769,65 ,1,26770,65 ,1,26771,65 ,1,26772,65 ,1,26773,65 ,1,26774,274520 ,1,26775,65 ,1,26776,244315 ,1,26777,202465 ,1,26778,293130 ,1,26779,65 ,1,26780,269040 ,1,26781,171975 ,1,26782,336355 ,1,26783,65 ,1,26784,226235 ,1,26785,65 ,1,26786,65 ,1,26787,219970 ,1,26788,325060 ,1,26789,209530 ,1,26790,65 ,1,26791,265685 ,1,26792,65 ,1,26793,233630 ,1,26794,317775 ,1,26795,65 ,1,26796,246735 ,1,26797,65 ,1,26798,65 ,1,26799,277200 ,1,26800,65 ,1,26801,225120 ,1,26802,65 ,1,26803,217965 ,1,26804,65 ,1,26805,65 ,1,26806,65 ,1,26807,264020 ,1,26808,194640 ,1,26809,337985 ,1,26810,65 ,1,26811,170485 ,1,26812,278920 ,1,26813,65 ,1,26814,65 ,1,26815,65 ,1,26816,65 ,1,26817,309480 ,1,26818,65 ,1,26819,229375 ,1,26820,317605 ,1,26821,310770 ,1,26822,180560 ,1,26823,65 ,1,26824,65 ,1,26825,246395 ,1,26826,65 ,1,26827,299120 ,1,26828,200935 ,1,26829,65 ,1,26830,65 ,1,26831,65 ,1,26832,65 ,1,26833,65 ,1,26834,65 ,1,26835,273805 ,1,26836,65 ,1,26837,65 ,1,26838,259320 ,1,26839,65 ,1,26840,65 ,1,26841,256320 ,1,26842,230015 ,1,26843,65 ,1,26844,65 ,1,26845,181030 ,1,26846,65 ,1,26847,65 ,1,26848,65 ,1,26849,65 ,1,26850,171525 ,1,26851,281770 ,1,26852,204245 ,1,26853,299320 ,1,26854,187660 ,1,26855,232010 ,1,26856,65 ,1,26857,65 ,1,26858,65 ,1,26859,65 ,1,26860,347845 ,1,26861,65 ,1,26862,337715 ,1,26863,201400 ,1,26864,65 ,1,26865,65 ,1,26866,288000 ,1,26867,65 ,1,26868,65 ,1,26869,250105 ,1,26870,65 ,1,26871,174000 ,1,26872,172955 ,1,26873,65 ,1,26874,65 ,1,26875,65 ,1,26876,217445 ,1,26877,65 ,1,26878,65 ,1,26879,65 ,1,26880,245375 ,1,26881,323150 ,1,26882,65 ,1,26883,65 ,1,26884,168300 ,1,26885,297920 ,1,26886,324830 ,1,26887,277025 ,1,26888,173400 ,1,26889,65 ,1,26890,65 ,1,26891,65 ,1,26892,65 ,1,26893,65 ,1,26894,65 ,1,26895,65 ,1,26896,281105 ,1,26897,318800 ,1,26898,65 ,1,26899,65 ,1,26900,65 ,1,26901,65 ,1,26902,65 ,1,26903,65 ,1,26904,65 ,1,26905,65 ,1,26906,268915 ,1,26907,65 ,1,26908,226985 ,1,26909,201915 ,1,26910,65 ,1,26911,65 ,1,26912,65 ,1,26913,65 ,1,26914,240405 ,1,26915,198395 ,1,26916,349315 ,1,26917,65 ,1,26918,230930 ,1,26919,333255 ,1,26920,269595 ,1,26921,65 ,1,26922,65 ,1,26923,65 ,1,26924,65 ,1,26925,65 ,1,26926,65 ,1,26927,213215 ,1,26928,216015 ,1,26929,336715 ,1,26930,65 ,1,26931,65 ,1,26932,65 ,1,26933,237260 ,1,26934,65 ,1,26935,65 ,1,26936,65 ,1,26937,65 ,1,26938,65 ,1,26939,173085 ,1,26940,65 ,1,26941,65 ,1,26942,65 ,1,26943,171745 ,1,26944,65 ,1,26945,218060 ,1,26946,65 ,1,26947,220095 ,1,26948,65 ,1,26949,65 ,1,26950,176630 ,1,26951,321260 ,1,26952,65 ,1,26953,65 ,1,26954,65 ,1,26955,332220 ,1,26956,65 ,1,26957,65 ,1,26958,65 ,1,26959,273960 ,1,26960,65 ,1,26961,65 ,1,26962,65 ,1,26963,65 ,1,26964,65 ,1,26965,339035 ,1,26966,248600 ,1,26967,333605 ,1,26968,65 ,1,26969,65 ,1,26970,65 ,1,26971,275495 ,1,26972,65 ,1,26973,297605 ,1,26974,304000 ,1,26975,289820 ,1,26976,65 ,1,26977,217165 ,1,26978,65 ,1,26979,349305 ,1,26980,297085 ,1,26981,65 ,1,26982,176805 ,1,26983,263540 ,1,26984,65 ,1,26985,65 ,1,26986,203990 ,1,26987,176730 ,1,26988,65 ,1,26989,300345 ,1,26990,229545 ,1,26991,65 ,1,26992,65 ,1,26993,65 ,1,26994,198765 ,1,26995,65 ,1,26996,65 ,1,26997,65 ,1,26998,228365 ,1,26999,203800 ,1,27000,277610 ,1,27001,318005 ,1,27002,247205 ,1,27003,65 ,1,27004,65 ,1,27005,179455 ,1,27006,65 ,1,27007,65 ,1,27008,256175 ,1,27009,351760 ,1,27010,297315 ,1,27011,65 ,1,27012,65 ,1,27013,339820 ,1,27014,65 ,1,27015,65 ,1,27016,65 ,1,27017,327085 ,1,27018,349260 ,1,27019,332770 ,1,27020,264445 ,1,27021,65 ,1,27022,65 ,1,27023,65 ,1,27024,174515 ,1,27025,277765 ,1,27026,217325 ,1,27027,281780 ,1,27028,65 ,1,27029,65 ,1,27030,65 ,1,27031,65 ,1,27032,65 ,1,27033,201635 ,1,27034,65 ,1,27035,296400 ,1,27036,228970 ,1,27037,65 ,1,27038,65 ,1,27039,184670 ,1,27040,65 ,1,27041,65 ,1,27042,310225 ,1,27043,65 ,1,27044,342480 ,1,27045,65 ,1,27046,65 ,1,27047,188500 ,1,27048,303640 ,1,27049,294190 ,1,27050,65 ,1,27051,65 ,1,27052,65 ,1,27053,267575 ,1,27054,327510 ,1,27055,65 ,1,27056,65 ,1,27057,65 ,1,27058,65 ,1,27059,65 ,1,27060,65 ,1,27061,65 ,1,27062,65 ,1,27063,248075 ,1,27064,320150 ,1,27065,207570 ,1,27066,65 ,1,27067,65 ,1,27068,65 ,1,27069,65 ,1,27070,65 ,1,27071,65 ,1,27072,65 ,1,27073,65 ,1,27074,208110 ,1,27075,191170 ,1,27076,65 ,1,27077,65 ,1,27078,65 ,1,27079,65 ,1,27080,295115 ,1,27081,65 ,1,27082,65 ,1,27083,65 ,1,27084,65 ,1,27085,65 ,1,27086,210110 ,1,27087,343390 ,1,27088,65 ,1,27089,65 ,1,27090,65 ,1,27091,302505 ,1,27092,65 ,1,27093,65 ,1,27094,65 ,1,27095,65 ,1,27096,65 ,1,27097,65 ,1,27098,65 ,1,27099,206845 ,1,27100,270755 ,1,27101,65 ,1,27102,65 ,1,27103,65 ,1,27104,65 ,1,27105,65 ,1,27106,65 ,1,27107,65 ,1,27108,268700 ,1,27109,190965 ,1,27110,327425 ,1,27111,65 ,1,27112,65 ,1,27113,302610 ,1,27114,65 ,1,27115,65 ,1,27116,65 ,1,27117,65 ,1,27118,65 ,1,27119,65 ,1,27120,65 ,1,27121,65 ,1,27122,262900 ,1,27123,65 ,1,27124,65 ,1,27125,65 ,1,27126,65 ,1,27127,65 ,1,27128,65 ,1,27129,65 ,1,27130,65 ,1,27131,284905 ,1,27132,65 ,1,27133,65 ,1,27134,65 ,1,27135,242515 ,1,27136,170840 ,1,27137,307810 ,1,27138,245100 ,1,27139,289935 ,1,27140,65 ,1,27141,65 ,1,27142,65 ,1,27143,65 ,1,27144,214440 ,1,27145,248915 ,1,27146,274970 ,1,27147,65 ,1,27148,305890 ,1,27149,65 ,1,27150,65 ,1,27151,179860 ,1,27152,276335 ,1,27153,323910 ,1,27154,65 ,1,27155,337380 ,1,27156,286160 ,1,27157,249515 ,1,27158,65 ,1,27159,65 ,1,27160,199750 ,1,27161,65 ,1,27162,65 ,1,27163,65 ,1,27164,289230 ,1,27165,279045 ,1,27166,341735 ,1,27167,204950 ,1,27168,287185 ,1,27169,65 ,1,27170,347440 ,1,27171,65 ,1,27172,297485 ,1,27173,317875 ,1,27174,319485 ,1,27175,65 ,1,27176,194890 ,1,27177,197990 ,1,27178,65 ,1,27179,253235 ,1,27180,65 ,1,27181,231660 ,1,27182,167165 ,1,27183,65 ,1,27184,203045 ,1,27185,65 ,1,27186,170955 ,1,27187,241010 ,1,27188,285905 ,1,27189,212985 ,1,27190,275830 ,1,27191,256350 ,1,27192,65 ,1,27193,65 ,1,27194,338030 ,1,27195,334185 ,1,27196,65 ,1,27197,65 ,1,27198,65 ,1,27199,331640 ,1,27200,239945 ,1,27201,65 ,1,27202,332660 ,1,27203,65 ,1,27204,65 ,1,27205,65 ,1,27206,65 ,1,27207,334315 ,1,27208,65 ,1,27209,230410 ,1,27210,173045 ,1,27211,311635 ,1,27212,65 ,1,27213,65 ,1,27214,65 ,1,27215,65 ,1,27216,242585 ,1,27217,191075 ,1,27218,65 ,1,27219,307895 ,1,27220,290300 ,1,27221,177485 ,1,27222,303690 ,1,27223,330020 ,1,27224,65 ,1,27225,65 ,1,27226,320835 ,1,27227,189665 ,1,27228,240070 ,1,27229,65 ,1,27230,65 ,1,27231,65 ,1,27232,177460 ,1,27233,349250 ,1,27234,199085 ,1,27235,219270 ,1,27236,65 ,1,27237,65 ,1,27238,65 ,1,27239,179565 ,1,27240,317395 ,1,27241,209105 ,1,27242,168650 ,1,27243,65 ,1,27244,184550 ,1,27245,230845 ,1,27246,65 ,1,27247,65 ,1,27248,223685 ,1,27249,298780 ,1,27250,65 ,1,27251,65 ,1,27252,194275 ,1,27253,267800 ,1,27254,65 ,1,27255,65 ,1,27256,229160 ,1,27257,327635 ,1,27258,65 ,1,27259,255880 ,1,27260,65 ,1,27261,195345 ,1,27262,65 ,1,27263,65 ,1,27264,293335 ,1,27265,285055 ,1,27266,65 ,1,27267,65 ,1,27268,231390 ,1,27269,227485 ,1,27270,216120 ,1,27271,65 ,1,27272,65 ,1,27273,256330 ,1,27274,65 ,1,27275,65 ,1,27276,65 ,1,27277,65 ,1,27278,65 ,1,27279,65 ,1,27280,65 ,1,27281,303575 ,1,27282,65 ,1,27283,65 ,1,27284,279225 ,1,27285,65 ,1,27286,65 ,1,27287,65 ,1,27288,65 ,1,27289,65 ,1,27290,65 ,1,27291,65 ,1,27292,65 ,1,27293,65 ,1,27294,65 ,1,27295,65 ,1,27296,65 ,1,27297,65 ,1,27298,65 ,1,27299,65 ,1,27300,349240 ,1,27301,256240 ,1,27302,176600 ,1,27303,207690 ,1,27304,65 ,1,27305,65 ,1,27306,65 ,1,27307,65 ,1,27308,65 ,1,27309,225490 ,1,27310,243015 ,1,27311,65 ,1,27312,199730 ,1,27313,333535 ,1,27314,243685 ,1,27315,291460 ,1,27316,65 ,1,27317,65 ,1,27318,310860 ,1,27319,299625 ,1,27320,311400 ,1,27321,65 ,1,27322,205240 ,1,27323,269845 ,1,27324,310940 ,1,27325,65 ,1,27326,228065 ,1,27327,65 ,1,27328,65 ,1,27329,65 ,1,27330,65 ,1,27331,65 ,1,27332,65 ,1,27333,65 ,1,27334,65 ,1,27335,259895 ,1,27336,65 ,1,27337,65 ,1,27338,322730 ,1,27339,65 ,1,27340,65 ,1,27341,65 ,1,27342,65 ,1,27343,304085 ,1,27344,65 ,1,27345,65 ,1,27346,65 ,1,27347,65 ,1,27348,65 ,1,27349,205790 ,1,27350,242135 ,1,27351,65 ,1,27352,65 ,1,27353,178350 ,1,27354,199510 ,1,27355,231010 ,1,27356,236365 ,1,27357,244745 ,1,27358,65 ,1,27359,65 ,1,27360,322195 ,1,27361,65 ,1,27362,65 ,1,27363,65 ,1,27364,287395 ,1,27365,65 ,1,27366,65 ,1,27367,65 ,1,27368,166995 ,1,27369,346445 ,1,27370,226135 ,1,27371,222245 ,1,27372,65 ,1,27373,65 ,1,27374,65 ,1,27375,281550 ,1,27376,65 ,1,27377,65 ,1,27378,169660 ,1,27379,252435 ,1,27380,273140 ,1,27381,65 ,1,27382,285115 ,1,27383,65 ,1,27384,65 ,1,27385,65 ,1,27386,65 ,1,27387,244240 ,1,27388,254485 ,1,27389,65 ,1,27390,65 ,1,27391,65 ,1,27392,65 ,1,27393,65 ,1,27394,65 ,1,27395,203765 ,1,27396,65 ,1,27397,65 ,1,27398,249570 ,1,27399,349230 ,1,27400,199720 ,1,27401,65 ,1,27402,65 ,1,27403,314165 ,1,27404,65 ,1,27405,239900 ,1,27406,329860 ,1,27407,65 ,1,27408,335135 ,1,27409,65 ,1,27410,65 ,1,27411,65 ,1,27412,65 ,1,27413,65 ,1,27414,65 ,1,27415,65 ,1,27416,65 ,1,27417,65 ,1,27418,183545 ,1,27419,311295 ,1,27420,65 ,1,27421,65 ,1,27422,65 ,1,27423,65 ,1,27424,65 ,1,27425,65 ,1,27426,65 ,1,27427,65 ,1,27428,65 ,1,27429,65 ,1,27430,65 ,1,27431,65 ,1,27432,289850 ,1,27433,180065 ,1,27434,65 ,1,27435,65 ,1,27436,65 ,1,27437,65 ,1,27438,65 ,1,27439,185195 ,1,27440,219375 ,1,27441,65 ,1,27442,65 ,1,27443,264855 ,1,27444,182915 ,1,27445,65 ,1,27446,349210 ,1,27447,173825 ,1,27448,326200 ,1,27449,65 ,1,27450,65 ,1,27451,261215 ,1,27452,65 ,1,27453,65 ,1,27454,65 ,1,27455,174010 ,1,27456,317225 ,1,27457,343200 ,1,27458,65 ,1,27459,65 ,1,27460,349200 ,1,27461,309560 ,1,27462,65 ,1,27463,65 ,1,27464,217210 ,1,27465,65 ,1,27466,65 ,1,27467,65 ,1,27468,65 ,1,27469,65 ,1,27470,266255 ,1,27471,263730 ,1,27472,65 ,1,27473,318225 ,1,27474,65 ,1,27475,65 ,1,27476,65 ,1,27477,65 ,1,27478,65 ,1,27479,349190 ,1,27480,65 ,1,27481,201070 ,1,27482,65 ,1,27483,316685 ,1,27484,65 ,1,27485,65 ,1,27486,65 ,1,27487,65 ,1,27488,65 ,1,27489,206700 ,1,27490,253090 ,1,27491,65 ,1,27492,65 ,1,27493,65 ,1,27494,65 ,1,27495,65 ,1,27496,65 ,1,27497,65 ,1,27498,65 ,1,27499,65 ,1,27500,65 ,1,27501,65 ,1,27502,65 ,1,27503,65 ,1,27504,65 ,1,27505,65 ,1,27506,348590 ,1,27507,65 ,1,27508,240315 ,1,27509,65 ,1,27510,65 ,1,27511,65 ,1,27512,304625 ,1,27513,65 ,1,27514,249035 ,1,27515,305880 ,1,27516,195430 ,1,27517,245495 ,1,27518,337920 ,1,27519,65 ,1,27520,65 ,1,27521,205745 ,1,27522,223870 ,1,27523,65 ,1,27524,65 ,1,27525,224420 ,1,27526,65 ,1,27527,65 ,1,27528,65 ,1,27529,65 ,1,27530,65 ,1,27531,65 ,1,27532,65 ,1,27533,65 ,1,27534,65 ,1,27535,228730 ,1,27536,249525 ,1,27537,65 ,1,27538,185290 ,1,27539,189155 ,1,27540,65 ,1,27541,65 ,1,27542,65 ,1,27543,342795 ,1,27544,65 ,1,27545,274810 ,1,27546,65 ,1,27547,65 ,1,27548,65 ,1,27549,65 ,1,27550,65 ,1,27551,65 ,1,27552,65 ,1,27553,301615 ,1,27554,65 ,1,27555,65 ,1,27556,307370 ,1,27557,173300 ,1,27558,336235 ,1,27559,65 ,1,27560,329560 ,1,27561,347455 ,1,27562,65 ,1,27563,283265 ,1,27564,65 ,1,27565,65 ,1,27566,65 ,1,27567,65 ,1,27568,65 ,1,27569,65 ,1,27570,272115 ,1,27571,65 ,1,27572,65 ,1,27573,65 ,1,27574,349180 ,1,27575,201050 ,1,27576,65 ,1,27577,65 ,1,27578,65 ,1,27579,65 ,1,27580,65 ,1,27581,211830 ,1,27582,65 ,1,27583,276470 ,1,27584,65 ,1,27585,65 ,1,27586,65 ,1,27587,65 ,1,27588,65 ,1,27589,65 ,1,27590,211700 ,1,27591,65 ,1,27592,65 ,1,27593,310295 ,1,27594,65 ,1,27595,65 ,1,27596,292090 ,1,27597,239330 ,1,27598,65 ,1,27599,65 ,1,27600,65 ,1,27601,65 ,1,27602,326350 ,1,27603,65 ,1,27604,207400 ,1,27605,191015 ,1,27606,329795 ,1,27607,65 ,1,27608,65 ,1,27609,65 ,1,27610,65 ,1,27611,65 ,1,27612,65 ,1,27613,256225 ,1,27614,65 ,1,27615,65 ,1,27616,65 ,1,27617,65 ,1,27618,65 ,1,27619,65 ,1,27620,65 ,1,27621,254115 ,1,27622,65 ,1,27623,65 ,1,27624,65 ,1,27625,65 ,1,27626,65 ,1,27627,65 ,1,27628,293835 ,1,27629,249665 ,1,27630,316465 ,1,27631,65 ,1,27632,65 ,1,27633,190905 ,1,27634,331545 ,1,27635,65 ,1,27636,292060 ,1,27637,281835 ,1,27638,190585 ,1,27639,65 ,1,27640,65 ,1,27641,65 ,1,27642,292390 ,1,27643,65 ,1,27644,65 ,1,27645,222540 ,1,27646,65 ,1,27647,65 ,1,27648,213765 ,1,27649,65 ,1,27650,65 ,1,27651,238585 ,1,27652,276035 ,1,27653,65 ,1,27654,65 ,1,27655,65 ,1,27656,65 ,1,27657,349150 ,1,27658,65 ,1,27659,65 ,1,27660,65 ,1,27661,65 ,1,27662,65 ,1,27663,65 ,1,27664,65 ,1,27665,65 ,1,27666,65 ,1,27667,65 ,1,27668,328750 ,1,27669,65 ,1,27670,214805 ,1,27671,65 ,1,27672,65 ,1,27673,309305 ,1,27674,65 ,1,27675,65 ,1,27676,65 ,1,27677,65 ,1,27678,259930 ,1,27679,65 ,1,27680,65 ,1,27681,65 ,1,27682,65 ,1,27683,261020 ,1,27684,219980 ,1,27685,65 ,1,27686,65 ,1,27687,65 ,1,27688,65 ,1,27689,280965 ,1,27690,351690 ,1,27691,262160 ,1,27692,65 ,1,27693,222450 ,1,27694,219750 ,1,27695,65 ,1,27696,65 ,1,27697,65 ,1,27698,308975 ,1,27699,65 ,1,27700,65 ,1,27701,65 ,1,27702,65 ,1,27703,346885 ,1,27704,217860 ,1,27705,337975 ,1,27706,207065 ,1,27707,65 ,1,27708,255830 ,1,27709,65 ,1,27710,65 ,1,27711,65 ,1,27712,293525 ,1,27713,207500 ,1,27714,65 ,1,27715,65 ,1,27716,65 ,1,27717,188910 ,1,27718,65 ,1,27719,220175 ,1,27720,283255 ,1,27721,65 ,1,27722,65 ,1,27723,347060 ,1,27724,224200 ,1,27725,65 ,1,27726,65 ,1,27727,260295 ,1,27728,65 ,1,27729,65 ,1,27730,65 ,1,27731,191780 ,1,27732,65 ,1,27733,65 ,1,27734,65 ,1,27735,65 ,1,27736,65 ,1,27737,65 ,1,27738,65 ,1,27739,65 ,1,27740,65 ,1,27741,65 ,1,27742,168890 ,1,27743,65 ,1,27744,288515 ,1,27745,179305 ,1,27746,65 ,1,27747,255690 ,1,27748,202445 ,1,27749,65 ,1,27750,271695 ,1,27751,65 ,1,27752,65 ,1,27753,306410 ,1,27754,65 ,1,27755,300445 ,1,27756,65 ,1,27757,65 ,1,27758,65 ,1,27759,351720 ,1,27760,225380 ,1,27761,282130 ,1,27762,255550 ,1,27763,251720 ,1,27764,65 ,1,27765,65 ,1,27766,65 ,1,27767,65 ,1,27768,65 ,1,27769,65 ,1,27770,349140 ,1,27771,65 ,1,27772,208885 ,1,27773,315080 ,1,27774,65 ,1,27775,65 ,1,27776,65 ,1,27777,65 ,1,27778,65 ,1,27779,341645 ,1,27780,204335 ,1,27781,65 ,1,27782,65 ,1,27783,65 ,1,27784,171615 ,1,27785,65 ,1,27786,305255 ,1,27787,65 ,1,27788,65 ,1,27789,269905 ,1,27790,252185 ,1,27791,65 ,1,27792,266275 ,1,27793,279305 ,1,27794,274770 ,1,27795,245940 ,1,27796,65 ,1,27797,65 ,1,27798,65 ,1,27799,328070 ,1,27800,65 ,1,27801,65 ,1,27802,230885 ,1,27803,246115 ,1,27804,258240 ,1,27805,65 ,1,27806,233135 ,1,27807,65 ,1,27808,65 ,1,27809,323930 ,1,27810,184220 ,1,27811,65 ,1,27812,318245 ,1,27813,65 ,1,27814,65 ,1,27815,65 ,1,27816,65 ,1,27817,65 ,1,27818,283245 ,1,27819,349130 ,1,27820,334710 ,1,27821,65 ,1,27822,189760 ,1,27823,181310 ,1,27824,65 ,1,27825,198235 ,1,27826,65 ,1,27827,65 ,1,27828,65 ,1,27829,340475 ,1,27830,203145 ,1,27831,253925 ,1,27832,65 ,1,27833,345750 ,1,27834,281145 ,1,27835,188490 ,1,27836,65 ,1,27837,302180 ,1,27838,65 ,1,27839,65 ,1,27840,65 ,1,27841,65 ,1,27842,65 ,1,27843,191830 ,1,27844,65 ,1,27845,262095 ,1,27846,241660 ,1,27847,174780 ,1,27848,224750 ,1,27849,65 ,1,27850,65 ,1,27851,65 ,1,27852,65 ,1,27853,65 ,1,27854,297595 ,1,27855,65 ,1,27856,174320 ,1,27857,167940 ,1,27858,65 ,1,27859,316490 ,1,27860,166910 ,1,27861,349120 ,1,27862,217520 ,1,27863,65 ,1,27864,65 ,1,27865,236860 ,1,27866,65 ,1,27867,65 ,1,27868,65 ,1,27869,338745 ,1,27870,216045 ,1,27871,65 ,1,27872,65 ,1,27873,180195 ,1,27874,65 ,1,27875,309515 ,1,27876,65 ,1,27877,65 ,1,27878,65 ,1,27879,65 ,1,27880,215515 ,1,27881,313810 ,1,27882,65 ,1,27883,65 ,1,27884,344615 ,1,27885,342460 ,1,27886,281125 ,1,27887,65 ,1,27888,65 ,1,27889,227310 ,1,27890,307710 ,1,27891,199110 ,1,27892,324095 ,1,27893,333975 ,1,27894,214280 ,1,27895,65 ,1,27896,252135 ,1,27897,169595 ,1,27898,179465 ,1,27899,178565 ,1,27900,65 ,1,27901,186795 ,1,27902,65 ,1,27903,273880 ,1,27904,226445 ,1,27905,65 ,1,27906,321185 ,1,27907,298060 ,1,27908,65 ,1,27909,65 ,1,27910,65 ,1,27911,65 ,1,27912,65 ,1,27913,259390 ,1,27914,323035 ,1,27915,65 ,1,27916,65 ,1,27917,65 ,1,27918,298770 ,1,27919,65 ,1,27920,256915 ,1,27921,65 ,1,27922,65 ,1,27923,65 ,1,27924,318725 ,1,27925,65 ,1,27926,181590 ,1,27927,65 ,1,27928,65 ,1,27929,65 ,1,27930,242880 ,1,27931,179785 ,1,27932,65 ,1,27933,65 ,1,27934,233370 ,1,27935,300755 ,1,27936,314505 ,1,27937,65 ,1,27938,273180 ,1,27939,65 ,1,27940,65 ,1,27941,240305 ,1,27942,65 ,1,27943,65 ,1,27944,225550 ,1,27945,223900 ,1,27946,65 ,1,27947,204620 ,1,27948,337490 ,1,27949,65 ,1,27950,65 ,1,27951,310970 ,1,27952,65 ,1,27953,283195 ,1,27954,326765 ,1,27955,309815 ,1,27956,245615 ,1,27957,300200 ,1,27958,65 ,1,27959,65 ,1,27960,306210 ,1,27961,65 ,1,27962,65 ,1,27963,349105 ,1,27964,65 ,1,27965,65 ,1,27966,340620 ,1,27967,193475 ,1,27968,272345 ,1,27969,178915 ,1,27970,167310 ,1,27971,65 ,1,27972,65 ,1,27973,65 ,1,27974,65 ,1,27975,65 ,1,27976,65 ,1,27977,65 ,1,27978,317435 ,1,27979,65 ,1,27980,226475 ,1,27981,219240 ,1,27982,65 ,1,27983,262795 ,1,27984,319845 ,1,27985,303935 ,1,27986,65 ,1,27987,65 ,1,27988,65 ,1,27989,65 ,1,27990,171775 ,1,27991,309550 ,1,27992,184870 ,1,27993,343125 ,1,27994,192290 ,1,27995,168235 ,1,27996,65 ,1,27997,65 ,1,27998,201705 ,1,27999,210280 ,1,28000,65 ,1,28001,65 ,1,28002,276680 ,1,28003,296410 ,1,28004,65 ,1,28005,65 ,1,28006,65 ,1,28007,317335 ,1,28008,220825 ,1,28009,218310 ,1,28010,65 ,1,28011,65 ,1,28012,65 ,1,28013,65 ,1,28014,65 ,1,28015,349095 ,1,28016,201235 ,1,28017,190895 ,1,28018,65 ,1,28019,284040 ,1,28020,291265 ,1,28021,284030 ,1,28022,65 ,1,28023,65 ,1,28024,65 ,1,28025,65 ,1,28026,65 ,1,28027,65 ,1,28028,65 ,1,28029,307335 ,1,28030,65 ,1,28031,193390 ,1,28032,65 ,1,28033,65 ,1,28034,65 ,1,28035,65 ,1,28036,65 ,1,28037,65 ,1,28038,65 ,1,28039,235175 ,1,28040,65 ,1,28041,65 ,1,28042,349085 ,1,28043,65 ,1,28044,221080 ,1,28045,189800 ,1,28046,211320 ,1,28047,241400 ,1,28048,65 ,1,28049,65 ,1,28050,65 ,1,28051,342600 ,1,28052,166630 ,1,28053,221715 ,1,28054,246145 ,1,28055,65 ,1,28056,208775 ,1,28057,65 ,1,28058,65 ,1,28059,221705 ,1,28060,65 ,1,28061,174270 ,1,28062,65 ,1,28063,200390 ,1,28064,65 ,1,28065,288390 ,1,28066,65 ,1,28067,65 ,1,28068,65 ,1,28069,65 ,1,28070,299260 ,1,28071,324240 ,1,28072,267925 ,1,28073,65 ,1,28074,65 ,1,28075,65 ,1,28076,65 ,1,28077,190240 ,1,28078,212320 ,1,28079,213925 ,1,28080,65 ,1,28081,65 ,1,28082,65 ,1,28083,65 ,1,28084,65 ,1,28085,292235 ,1,28086,65 ,1,28087,290135 ,1,28088,222765 ,1,28089,65 ,1,28090,65 ,1,28091,170545 ,1,28092,65 ,1,28093,260790 ,1,28094,319430 ,1,28095,256430 ,1,28096,65 ,1,28097,65 ,1,28098,179040 ,1,28099,195595 ,1,28100,313505 ,1,28101,200590 ,1,28102,65 ,1,28103,65 ,1,28104,65 ,1,28105,65 ,1,28106,65 ,1,28107,65 ,1,28108,65 ,1,28109,65 ,1,28110,65 ,1,28111,65 ,1,28112,65 ,1,28113,184745 ,1,28114,251960 ,1,28115,195970 ,1,28116,335370 ,1,28117,65 ,1,28118,65 ,1,28119,298455 ,1,28120,65 ,1,28121,227390 ,1,28122,343740 ,1,28123,65 ,1,28124,180530 ,1,28125,65 ,1,28126,173290 ,1,28127,65 ,1,28128,65 ,1,28129,65 ,1,28130,65 ,1,28131,65 ,1,28132,65 ,1,28133,329530 ,1,28134,65 ,1,28135,169245 ,1,28136,314970 ,1,28137,65 ,1,28138,65 ,1,28139,65 ,1,28140,275090 ,1,28141,257480 ,1,28142,277115 ,1,28143,65 ,1,28144,65 ,1,28145,349075 ,1,28146,65 ,1,28147,65 ,1,28148,202840 ,1,28149,346780 ,1,28150,296245 ,1,28151,65 ,1,28152,65 ,1,28153,173860 ,1,28154,259800 ,1,28155,65 ,1,28156,65 ,1,28157,290720 ,1,28158,272700 ,1,28159,239150 ,1,28160,173165 ,1,28161,309240 ,1,28162,287440 ,1,28163,270870 ,1,28164,224410 ,1,28165,65 ,1,28166,189930 ,1,28167,65 ,1,28168,345910 ,1,28169,347855 ,1,28170,310485 ,1,28171,238530 ,1,28172,327745 ,1,28173,65 ,1,28174,65 ,1,28175,65 ,1,28176,170085 ,1,28177,205090 ,1,28178,65 ,1,28179,65 ,1,28180,65 ,1,28181,65 ,1,28182,172785 ,1,28183,65 ,1,28184,342375 ,1,28185,65 ,1,28186,65 ,1,28187,65 ,1,28188,212975 ,1,28189,247350 ,1,28190,292465 ,1,28191,65 ,1,28192,65 ,1,28193,230685 ,1,28194,65 ,1,28195,65 ,1,28196,230550 ,1,28197,213095 ,1,28198,65 ,1,28199,330585 ,1,28200,65 ,1,28201,215995 ,1,28202,320650 ,1,28203,65 ,1,28204,65 ,1,28205,266605 ,1,28206,65 ,1,28207,65 ,1,28208,65 ,1,28209,256025 ,1,28210,65 ,1,28211,65 ,1,28212,65 ,1,28213,65 ,1,28214,341220 ,1,28215,65 ,1,28216,65 ,1,28217,65 ,1,28218,65 ,1,28219,65 ,1,28220,65 ,1,28221,65 ,1,28222,65 ,1,28223,65 ,1,28224,65 ,1,28225,65 ,1,28226,65 ,1,28227,199985 ,1,28228,65 ,1,28229,239130 ,1,28230,65 ,1,28231,65 ,1,28232,65 ,1,28233,197290 ,1,28234,329750 ,1,28235,242175 ,1,28236,224625 ,1,28237,65 ,1,28238,65 ,1,28239,65 ,1,28240,65 ,1,28241,65 ,1,28242,65 ,1,28243,333095 ,1,28244,65 ,1,28245,65 ,1,28246,190050 ,1,28247,65 ,1,28248,65 ,1,28249,220695 ,1,28250,280485 ,1,28251,292680 ,1,28252,311690 ,1,28253,314930 ,1,28254,260735 ,1,28255,65 ,1,28256,65 ,1,28257,181480 ,1,28258,251875 ,1,28259,65 ,1,28260,337420 ,1,28261,65 ,1,28262,65 ,1,28263,65 ,1,28264,65 ,1,28265,65 ,1,28266,318285 ,1,28267,336980 ,1,28268,65 ,1,28269,235395 ,1,28270,65 ,1,28271,331630 ,1,28272,328445 ,1,28273,65 ,1,28274,303790 ,1,28275,293720 ,1,28276,65 ,1,28277,269085 ,1,28278,229935 ,1,28279,193230 ,1,28280,65 ,1,28281,65 ,1,28282,65 ,1,28283,193705 ,1,28284,65 ,1,28285,65 ,1,28286,65 ,1,28287,65 ,1,28288,239540 ,1,28289,279510 ,1,28290,65 ,1,28291,274165 ,1,28292,65 ,1,28293,65 ,1,28294,65 ,1,28295,65 ,1,28296,202030 ,1,28297,65 ,1,28298,65 ,1,28299,65 ,1,28300,240680 ,1,28301,65 ,1,28302,65 ,1,28303,65 ,1,28304,65 ,1,28305,275920 ,1,28306,286845 ,1,28307,186530 ,1,28308,65 ,1,28309,346030 ,1,28310,191455 ,1,28311,188385 ,1,28312,65 ,1,28313,227750 ,1,28314,230180 ,1,28315,291070 ,1,28316,262210 ,1,28317,237655 ,1,28318,222990 ,1,28319,65 ,1,28320,180510 ,1,28321,166840 ,1,28322,65 ,1,28323,167420 ,1,28324,256155 ,1,28325,309505 ,1,28326,65 ,1,28327,65 ,1,28328,250760 ,1,28329,168740 ,1,28330,65 ,1,28331,65 ,1,28332,65 ,1,28333,65 ,1,28334,65 ,1,28335,239625 ,1,28336,65 ,1,28337,293795 ,1,28338,65 ,1,28339,65 ,1,28340,65 ,1,28341,322115 ,1,28342,250540 ,1,28343,203820 ,1,28344,65 ,1,28345,176955 ,1,28346,218755 ,1,28347,65 ,1,28348,320245 ,1,28349,65 ,1,28350,186405 ,1,28351,65 ,1,28352,65 ,1,28353,65 ,1,28354,65 ,1,28355,65 ,1,28356,65 ,1,28357,65 ,1,28358,65 ,1,28359,223065 ,1,28360,318990 ,1,28361,266915 ,1,28362,65 ,1,28363,65 ,1,28364,65 ,1,28365,65 ,1,28366,65 ,1,28367,65 ,1,28368,65 ,1,28369,225935 ,1,28370,243580 ,1,28371,291315 ,1,28372,343305 ,1,28373,65 ,1,28374,65 ,1,28375,65 ,1,28376,65 ,1,28377,65 ,1,28378,65 ,1,28379,222470 ,1,28380,65 ,1,28381,65 ,1,28382,169005 ,1,28383,262710 ,1,28384,285550 ,1,28385,167860 ,1,28386,218910 ,1,28387,65 ,1,28388,334070 ,1,28389,65 ,1,28390,293480 ,1,28391,292800 ,1,28392,253265 ,1,28393,65 ,1,28394,215030 ,1,28395,65 ,1,28396,65 ,1,28397,229420 ,1,28398,200965 ,1,28399,65 ,1,28400,264185 ,1,28401,349030 ,1,28402,65 ,1,28403,190885 ,1,28404,65 ,1,28405,65 ,1,28406,341935 ,1,28407,243660 ,1,28408,349020 ,1,28409,221090 ,1,28410,318830 ,1,28411,184305 ,1,28412,65 ,1,28413,189345 ,1,28414,286215 ,1,28415,65 ,1,28416,65 ,1,28417,65 ,1,28418,65 ,1,28419,65 ,1,28420,192720 ,1,28421,65 ,1,28422,342155 ,1,28423,65 ,1,28424,65 ,1,28425,65 ,1,28426,65 ,1,28427,219230 ,1,28428,65 ,1,28429,292570 ,1,28430,229215 ,1,28431,65 ,1,28432,247690 ,1,28433,274290 ,1,28434,250235 ,1,28435,171035 ,1,28436,65 ,1,28437,265420 ,1,28438,298940 ,1,28439,209705 ,1,28440,210465 ,1,28441,65 ,1,28442,349010 ,1,28443,65 ,1,28444,65 ,1,28445,65 ,1,28446,65 ,1,28447,65 ,1,28448,65 ,1,28449,65 ,1,28450,65 ,1,28451,177270 ,1,28452,65 ,1,28453,65 ,1,28454,65 ,1,28455,217070 ,1,28456,65 ,1,28457,65 ,1,28458,65 ,1,28459,235125 ,1,28460,231730 ,1,28461,65 ,1,28462,65 ,1,28463,65 ,1,28464,336265 ,1,28465,65 ,1,28466,65 ,1,28467,65 ,1,28468,65 ,1,28469,65 ,1,28470,282415 ,1,28471,215945 ,1,28472,195855 ,1,28473,65 ,1,28474,272515 ,1,28475,65 ,1,28476,65 ,1,28477,65 ,1,28478,65 ,1,28479,65 ,1,28480,65 ,1,28481,65 ,1,28482,65 ,1,28483,255805 ,1,28484,308765 ,1,28485,65 ,1,28486,65 ,1,28487,65 ,1,28488,65 ,1,28489,65 ,1,28490,321915 ,1,28491,295605 ,1,28492,65 ,1,28493,65 ,1,28494,168920 ,1,28495,65 ,1,28496,65 ,1,28497,65 ,1,28498,65 ,1,28499,65 ,1,28500,65 ,1,28501,65 ,1,28502,65 ,1,28503,65 ,1,28504,246445 ,1,28505,65 ,1,28506,180695 ,1,28507,175670 ,1,28508,252445 ,1,28509,238860 ,1,28510,289830 ,1,28511,65 ,1,28512,65 ,1,28513,255255 ,1,28514,65 ,1,28515,65 ,1,28516,319325 ,1,28517,339090 ,1,28518,65 ,1,28519,65 ,1,28520,201475 ,1,28521,205655 ,1,28522,245820 ,1,28523,186130 ,1,28524,255580 ,1,28525,65 ,1,28526,285065 ,1,28527,65 ,1,28528,65 ,1,28529,336615 ,1,28530,252090 ,1,28531,293090 ,1,28532,214725 ,1,28533,263690 ,1,28534,65 ,1,28535,65 ,1,28536,65 ,1,28537,65 ,1,28538,345000 ,1,28539,282110 ,1,28540,237320 ,1,28541,65 ,1,28542,211850 ,1,28543,65 ,1,28544,65 ,1,28545,65 ,1,28546,65 ,1,28547,65 ,1,28548,65 ,1,28549,248650 ,1,28550,65 ,1,28551,65 ,1,28552,254235 ,1,28553,65 ,1,28554,224665 ,1,28555,292100 ,1,28556,316270 ,1,28557,65 ,1,28558,332410 ,1,28559,65 ,1,28560,224605 ,1,28561,65 ,1,28562,65 ,1,28563,231345 ,1,28564,65 ,1,28565,247795 ,1,28566,65 ,1,28567,65 ,1,28568,65 ,1,28569,65 ,1,28570,331890 ,1,28571,65 ,1,28572,324405 ,1,28573,166720 ,1,28574,65 ,1,28575,65 ,1,28576,65 ,1,28577,65 ,1,28578,65 ,1,28579,65 ,1,28580,281960 ,1,28581,65 ,1,28582,65 ,1,28583,65 ,1,28584,65 ,1,28585,199140 ,1,28586,65 ,1,28587,65 ,1,28588,169115 ,1,28589,65 ,1,28590,65 ,1,28591,65 ,1,28592,65 ,1,28593,178470 ,1,28594,65 ,1,28595,65 ,1,28596,65 ,1,28597,309895 ,1,28598,65 ,1,28599,65 ,1,28600,305790 ,1,28601,195420 ,1,28602,65 ,1,28603,65 ,1,28604,65 ,1,28605,240890 ,1,28606,253905 ,1,28607,292350 ,1,28608,65 ,1,28609,197425 ,1,28610,246885 ,1,28611,206095 ,1,28612,65 ,1,28613,65 ,1,28614,65 ,1,28615,65 ,1,28616,65 ,1,28617,65 ,1,28618,65 ,1,28619,65 ,1,28620,65 ,1,28621,65 ,1,28622,65 ,1,28623,333075 ,1,28624,65 ,1,28625,302135 ,1,28626,65 ,1,28627,65 ,1,28628,239875 ,1,28629,234410 ,1,28630,65 ,1,28631,65 ,1,28632,285975 ,1,28633,327435 ,1,28634,312930 ,1,28635,65 ,1,28636,65 ,1,28637,65 ,1,28638,279865 ,1,28639,65 ,1,28640,65 ,1,28641,209070 ,1,28642,65 ,1,28643,203225 ,1,28644,65 ,1,28645,65 ,1,28646,65 ,1,28647,307670 ,1,28648,204355 ,1,28649,266170 ,1,28650,305460 ,1,28651,65 ,1,28652,65 ,1,28653,217120 ,1,28654,65 ,1,28655,65 ,1,28656,65 ,1,28657,65 ,1,28658,65 ,1,28659,65 ,1,28660,170210 ,1,28661,179985 ,1,28662,65 ,1,28663,65 ,1,28664,65 ,1,28665,65 ,1,28666,305610 ,1,28667,201160 ,1,28668,65 ,1,28669,234115 ,1,28670,228230 ,1,28671,291990 ,1,28672,260350 ,1,28673,65 ,1,28674,65 ,1,28675,175730 ,1,28676,65 ,1,28677,65 ,1,28678,289515 ,1,28679,278110 ,1,28680,195770 ,1,28681,307355 ,1,28682,204535 ,1,28683,211350 ,1,28684,65 ,1,28685,257150 ,1,28686,65 ,1,28687,274890 ,1,28688,250630 ,1,28689,270705 ,1,28690,65 ,1,28691,65 ,1,28692,65 ,1,28693,65 ,1,28694,65 ,1,28695,65 ,1,28696,222755 ,1,28697,65 ,1,28698,65 ,1,28699,65 ,1,28700,65 ,1,28701,339550 ,1,28702,178305 ,1,28703,65 ,1,28704,333985 ,1,28705,65 ,1,28706,188155 ,1,28707,65 ,1,28708,65 ,1,28709,65 ,1,28710,65 ,1,28711,65 ,1,28712,65 ,1,28713,65 ,1,28714,181415 ,1,28715,195585 ,1,28716,65 ,1,28717,233895 ,1,28718,65 ,1,28719,65 ,1,28720,65 ,1,28721,65 ,1,28722,65 ,1,28723,65 ,1,28724,329880 ,1,28725,65 ,1,28726,65 ,1,28727,206975 ,1,28728,65 ,1,28729,65 ,1,28730,227080 ,1,28731,318170 ,1,28732,305155 ,1,28733,269050 ,1,28734,222845 ,1,28735,65 ,1,28736,336395 ,1,28737,238520 ,1,28738,65 ,1,28739,65 ,1,28740,65 ,1,28741,65 ,1,28742,65 ,1,28743,330465 ,1,28744,65 ,1,28745,65 ,1,28746,286015 ,1,28747,318785 ,1,28748,65 ,1,28749,226655 ,1,28750,339345 ,1,28751,65 ,1,28752,190290 ,1,28753,65 ,1,28754,333355 ,1,28755,185320 ,1,28756,170265 ,1,28757,199605 ,1,28758,65 ,1,28759,65 ,1,28760,290620 ,1,28761,65 ,1,28762,65 ,1,28763,65 ,1,28764,186320 ,1,28765,205670 ,1,28766,65 ,1,28767,65 ,1,28768,65 ,1,28769,65 ,1,28770,65 ,1,28771,65 ,1,28772,65 ,1,28773,65 ,1,28774,65 ,1,28775,272455 ,1,28776,291555 ,1,28777,65 ,1,28778,65 ,1,28779,65 ,1,28780,65 ,1,28781,65 ,1,28782,65 ,1,28783,329160 ,1,28784,65 ,1,28785,202080 ,1,28786,65 ,1,28787,65 ,1,28788,210875 ,1,28789,65 ,1,28790,65 ,1,28791,273400 ,1,28792,278120 ,1,28793,208865 ,1,28794,65 ,1,28795,250325 ,1,28796,65 ,1,28797,65 ,1,28798,177220 ,1,28799,283565 ,1,28800,65 ,1,28801,65 ,1,28802,221420 ,1,28803,65 ,1,28804,335730 ,1,28805,65 ,1,28806,65 ,1,28807,65 ,1,28808,65 ,1,28809,65 ,1,28810,179750 ,1,28811,65 ,1,28812,220575 ,1,28813,198705 ,1,28814,65 ,1,28815,65 ,1,28816,65 ,1,28817,65 ,1,28818,65 ,1,28819,232735 ,1,28820,65 ,1,28821,65 ,1,28822,267545 ,1,28823,336990 ,1,28824,65 ,1,28825,65 ,1,28826,65 ,1,28827,302465 ,1,28828,302300 ,1,28829,338705 ,1,28830,65 ,1,28831,65 ,1,28832,65 ,1,28833,65 ,1,28834,65 ,1,28835,176895 ,1,28836,295040 ,1,28837,65 ,1,28838,65 ,1,28839,260650 ,1,28840,65 ,1,28841,194060 ,1,28842,65 ,1,28843,337630 ,1,28844,65 ,1,28845,235055 ,1,28846,310880 ,1,28847,245875 ,1,28848,340700 ,1,28849,65 ,1,28850,65 ,1,28851,322840 ,1,28852,65 ,1,28853,65 ,1,28854,65 ,1,28855,65 ,1,28856,349000 ,1,28857,177770 ,1,28858,235830 ,1,28859,330280 ,1,28860,249135 ,1,28861,203020 ,1,28862,273360 ,1,28863,322400 ,1,28864,211155 ,1,28865,255870 ,1,28866,65 ,1,28867,65 ,1,28868,65 ,1,28869,65 ,1,28870,65 ,1,28871,65 ,1,28872,65 ,1,28873,65 ,1,28874,269745 ,1,28875,65 ,1,28876,338140 ,1,28877,175380 ,1,28878,322265 ,1,28879,65 ,1,28880,65 ,1,28881,202250 ,1,28882,189465 ,1,28883,253860 ,1,28884,65 ,1,28885,243240 ,1,28886,65 ,1,28887,65 ,1,28888,65 ,1,28889,65 ,1,28890,65 ,1,28891,65 ,1,28892,65 ,1,28893,279145 ,1,28894,65 ,1,28895,327095 ,1,28896,282140 ,1,28897,65 ,1,28898,253815 ,1,28899,208005 ,1,28900,65 ,1,28901,65 ,1,28902,196465 ,1,28903,65 ,1,28904,65 ,1,28905,65 ,1,28906,201810 ,1,28907,253775 ,1,28908,65 ,1,28909,65 ,1,28910,298240 ,1,28911,65 ,1,28912,65 ,1,28913,281675 ,1,28914,65 ,1,28915,65 ,1,28916,234810 ,1,28917,65 ,1,28918,198935 ,1,28919,190250 ,1,28920,65 ,1,28921,65 ,1,28922,65 ,1,28923,65 ,1,28924,324515 ,1,28925,329910 ,1,28926,65 ,1,28927,331740 ,1,28928,65 ,1,28929,65 ,1,28930,281095 ,1,28931,65 ,1,28932,65 ,1,28933,65 ,1,28934,315820 ,1,28935,212095 ,1,28936,327065 ,1,28937,266555 ,1,28938,65 ,1,28939,65 ,1,28940,65 ,1,28941,180810 ,1,28942,65 ,1,28943,65 ,1,28944,65 ,1,28945,65 ,1,28946,194265 ,1,28947,327115 ,1,28948,321495 ,1,28949,65 ,1,28950,65 ,1,28951,65 ,1,28952,65 ,1,28953,65 ,1,28954,311750 ,1,28955,228750 ,1,28956,65 ,1,28957,343590 ,1,28958,204855 ,1,28959,308105 ,1,28960,65 ,1,28961,277125 ,1,28962,284095 ,1,28963,65 ,1,28964,65 ,1,28965,65 ,1,28966,65 ,1,28967,233935 ,1,28968,65 ,1,28969,65 ,1,28970,65 ,1,28971,65 ,1,28972,65 ,1,28973,65 ,1,28974,198975 ,1,28975,65 ,1,28976,303585 ,1,28977,323400 ,1,28978,65 ,1,28979,65 ,1,28980,296670 ,1,28981,65 ,1,28982,209850 ,1,28983,65 ,1,28984,65 ,1,28985,65 ,1,28986,265050 ,1,28987,257175 ,1,28988,65 ,1,28989,254640 ,1,28990,65 ,1,28991,348990 ,1,28992,171000 ,1,28993,306620 ,1,28994,65 ,1,28995,181360 ,1,28996,65 ,1,28997,219135 ,1,28998,346365 ,1,28999,65 ,1,29000,271450 ,1,29001,65 ,1,29002,65 ,1,29003,65 ,1,29004,181530 ,1,29005,312200 ,1,29006,298425 ,1,29007,168440 ,1,29008,65 ,1,29009,288505 ,1,29010,65 ,1,29011,278705 ,1,29012,190680 ,1,29013,348980 ,1,29014,201500 ,1,29015,201930 ,1,29016,271155 ,1,29017,65 ,1,29018,65 ,1,29019,65 ,1,29020,346710 ,1,29021,65 ,1,29022,65 ,1,29023,65 ,1,29024,65 ,1,29025,203720 ,1,29026,65 ,1,29027,65 ,1,29028,65 ,1,29029,65 ,1,29030,65 ,1,29031,65 ,1,29032,65 ,1,29033,285365 ,1,29034,65 ,1,29035,65 ,1,29036,65 ,1,29037,65 ,1,29038,65 ,1,29039,298555 ,1,29040,65 ,1,29041,292400 ,1,29042,231600 ,1,29043,65 ,1,29044,65 ,1,29045,256530 ,1,29046,194510 ,1,29047,65 ,1,29048,266180 ,1,29049,65 ,1,29050,226435 ,1,29051,234695 ,1,29052,65 ,1,29053,65 ,1,29054,65 ,1,29055,216465 ,1,29056,65 ,1,29057,217355 ,1,29058,315935 ,1,29059,65 ,1,29060,65 ,1,29061,269775 ,1,29062,65 ,1,29063,65 ,1,29064,65 ,1,29065,322370 ,1,29066,65 ,1,29067,345620 ,1,29068,291115 ,1,29069,169060 ,1,29070,65 ,1,29071,262300 ,1,29072,214550 ,1,29073,310080 ,1,29074,181490 ,1,29075,204805 ,1,29076,65 ,1,29077,259310 ,1,29078,313880 ,1,29079,65 ,1,29080,252455 ,1,29081,65 ,1,29082,65 ,1,29083,338505 ,1,29084,65 ,1,29085,65 ,1,29086,243195 ,1,29087,195045 ,1,29088,279330 ,1,29089,219850 ,1,29090,271380 ,1,29091,65 ,1,29092,65 ,1,29093,65 ,1,29094,65 ,1,29095,65 ,1,29096,65 ,1,29097,220685 ,1,29098,65 ,1,29099,65 ,1,29100,65 ,1,29101,65 ,1,29102,65 ,1,29103,315290 ,1,29104,209175 ,1,29105,190650 ,1,29106,65 ,1,29107,65 ,1,29108,65 ,1,29109,336045 ,1,29110,65 ,1,29111,65 ,1,29112,65 ,1,29113,65 ,1,29114,341115 ,1,29115,65 ,1,29116,228560 ,1,29117,298890 ,1,29118,262495 ,1,29119,65 ,1,29120,65 ,1,29121,330695 ,1,29122,65 ,1,29123,345255 ,1,29124,65 ,1,29125,65 ,1,29126,65 ,1,29127,65 ,1,29128,65 ,1,29129,179265 ,1,29130,294095 ,1,29131,204795 ,1,29132,209610 ,1,29133,65 ,1,29134,65 ,1,29135,65 ,1,29136,317215 ,1,29137,65 ,1,29138,65 ,1,29139,65 ,1,29140,343345 ,1,29141,178585 ,1,29142,202910 ,1,29143,65 ,1,29144,65 ,1,29145,172945 ,1,29146,65 ,1,29147,65 ,1,29148,65 ,1,29149,249470 ,1,29150,65 ,1,29151,65 ,1,29152,348970 ,1,29153,65 ,1,29154,205030 ,1,29155,65 ,1,29156,65 ,1,29157,236645 ,1,29158,65 ,1,29159,65 ,1,29160,300905 ,1,29161,65 ,1,29162,347805 ,1,29163,65 ,1,29164,65 ,1,29165,65 ,1,29166,65 ,1,29167,65 ,1,29168,65 ,1,29169,65 ,1,29170,267515 ,1,29171,271390 ,1,29172,65 ,1,29173,65 ,1,29174,338170 ,1,29175,65 ,1,29176,258485 ,1,29177,291210 ,1,29178,65 ,1,29179,319075 ,1,29180,65 ,1,29181,65 ,1,29182,65 ,1,29183,65 ,1,29184,65 ,1,29185,65 ,1,29186,65 ,1,29187,65 ,1,29188,65 ,1,29189,293370 ,1,29190,231000 ,1,29191,253245 ,1,29192,65 ,1,29193,65 ,1,29194,268210 ,1,29195,65 ,1,29196,65 ,1,29197,65 ,1,29198,332515 ,1,29199,65 ,1,29200,65 ,1,29201,204135 ,1,29202,65 ,1,29203,217920 ,1,29204,269205 ,1,29205,331800 ,1,29206,65 ,1,29207,65 ,1,29208,65 ,1,29209,186015 ,1,29210,324000 ,1,29211,339155 ,1,29212,237985 ,1,29213,65 ,1,29214,65 ,1,29215,65 ,1,29216,65 ,1,29217,278555 ,1,29218,65 ,1,29219,184725 ,1,29220,196950 ,1,29221,314470 ,1,29222,65 ,1,29223,208670 ,1,29224,194735 ,1,29225,65 ,1,29226,339260 ,1,29227,182725 ,1,29228,65 ,1,29229,255455 ,1,29230,291325 ,1,29231,65 ,1,29232,65 ,1,29233,275025 ,1,29234,65 ,1,29235,264965 ,1,29236,244135 ,1,29237,65 ,1,29238,65 ,1,29239,183045 ,1,29240,281285 ,1,29241,65 ,1,29242,65 ,1,29243,65 ,1,29244,200690 ,1,29245,65 ,1,29246,65 ,1,29247,276195 ,1,29248,65 ,1,29249,65 ,1,29250,65 ,1,29251,65 ,1,29252,206495 ,1,29253,65 ,1,29254,262890 ,1,29255,240625 ,1,29256,210260 ,1,29257,297175 ,1,29258,173055 ,1,29259,65 ,1,29260,65 ,1,29261,65 ,1,29262,65 ,1,29263,272645 ,1,29264,279470 ,1,29265,65 ,1,29266,65 ,1,29267,65 ,1,29268,177010 ,1,29269,65 ,1,29270,65 ,1,29271,301255 ,1,29272,65 ,1,29273,65 ,1,29274,289750 ,1,29275,194200 ,1,29276,275180 ,1,29277,65 ,1,29278,261510 ,1,29279,65 ,1,29280,65 ,1,29281,65 ,1,29282,346465 ,1,29283,65 ,1,29284,65 ,1,29285,234230 ,1,29286,229325 ,1,29287,65 ,1,29288,290680 ,1,29289,222420 ,1,29290,256835 ,1,29291,65 ,1,29292,339515 ,1,29293,65 ,1,29294,65 ,1,29295,242775 ,1,29296,65 ,1,29297,277660 ,1,29298,264435 ,1,29299,293315 ,1,29300,65 ,1,29301,238400 ,1,29302,65 ,1,29303,276080 ,1,29304,65 ,1,29305,65 ,1,29306,65 ,1,29307,65 ,1,29308,65 ,1,29309,65 ,1,29310,250415 ,1,29311,65 ,1,29312,65 ,1,29313,283725 ,1,29314,65 ,1,29315,283990 ,1,29316,65 ,1,29317,308445 ,1,29318,254805 ,1,29319,300335 ,1,29320,261350 ,1,29321,174150 ,1,29322,65 ,1,29323,65 ,1,29324,65 ,1,29325,188840 ,1,29326,315840 ,1,29327,192000 ,1,29328,65 ,1,29329,315550 ,1,29330,169235 ,1,29331,65 ,1,29332,65 ,1,29333,65 ,1,29334,65 ,1,29335,65 ,1,29336,231955 ,1,29337,65 ,1,29338,171100 ,1,29339,65 ,1,29340,191425 ,1,29341,283820 ,1,29342,65 ,1,29343,65 ,1,29344,65 ,1,29345,235155 ,1,29346,194610 ,1,29347,189260 ,1,29348,65 ,1,29349,65 ,1,29350,65 ,1,29351,239275 ,1,29352,65 ,1,29353,65 ,1,29354,278065 ,1,29355,65 ,1,29356,65 ,1,29357,216325 ,1,29358,275590 ,1,29359,195950 ,1,29360,65 ,1,29361,65 ,1,29362,239255 ,1,29363,65 ,1,29364,65 ,1,29365,65 ,1,29366,65 ,1,29367,65 ,1,29368,65 ,1,29369,65 ,1,29370,65 ,1,29371,240910 ,1,29372,65 ,1,29373,65 ,1,29374,333505 ,1,29375,285465 ,1,29376,337190 ,1,29377,244035 ,1,29378,280555 ,1,29379,65 ,1,29380,65 ,1,29381,197940 ,1,29382,65 ,1,29383,65 ,1,29384,65 ,1,29385,192545 ,1,29386,229180 ,1,29387,65 ,1,29388,226465 ,1,29389,65 ,1,29390,202585 ,1,29391,194720 ,1,29392,322680 ,1,29393,293120 ,1,29394,222735 ,1,29395,235075 ,1,29396,308235 ,1,29397,65 ,1,29398,193175 ,1,29399,212720 ,1,29400,346130 ,1,29401,65 ,1,29402,323455 ,1,29403,333555 ,1,29404,65 ,1,29405,65 ,1,29406,314885 ,1,29407,65 ,1,29408,65 ,1,29409,65 ,1,29410,169640 ,1,29411,65 ,1,29412,216885 ,1,29413,274720 ,1,29414,65 ,1,29415,65 ,1,29416,65 ,1,29417,215725 ,1,29418,348960 ,1,29419,65 ,1,29420,273025 ,1,29421,230825 ,1,29422,65 ,1,29423,65 ,1,29424,65 ,1,29425,209505 ,1,29426,185235 ,1,29427,297060 ,1,29428,65 ,1,29429,257390 ,1,29430,336940 ,1,29431,65 ,1,29432,190855 ,1,29433,235465 ,1,29434,65 ,1,29435,308310 ,1,29436,65 ,1,29437,65 ,1,29438,65 ,1,29439,65 ,1,29440,65 ,1,29441,264245 ,1,29442,336140 ,1,29443,65 ,1,29444,321155 ,1,29445,65 ,1,29446,65 ,1,29447,65 ,1,29448,65 ,1,29449,65 ,1,29450,245160 ,1,29451,65 ,1,29452,205515 ,1,29453,65 ,1,29454,65 ,1,29455,65 ,1,29456,65 ,1,29457,288340 ,1,29458,180440 ,1,29459,305570 ,1,29460,65 ,1,29461,240595 ,1,29462,324295 ,1,29463,65 ,1,29464,187220 ,1,29465,65 ,1,29466,65 ,1,29467,65 ,1,29468,65 ,1,29469,65 ,1,29470,65 ,1,29471,233275 ,1,29472,65 ,1,29473,65 ,1,29474,316715 ,1,29475,65 ,1,29476,65 ,1,29477,65 ,1,29478,65 ,1,29479,65 ,1,29480,65 ,1,29481,65 ,1,29482,65 ,1,29483,65 ,1,29484,298695 ,1,29485,249450 ,1,29486,221600 ,1,29487,65 ,1,29488,65 ,1,29489,172535 ,1,29490,65 ,1,29491,65 ,1,29492,65 ,1,29493,65 ,1,29494,65 ,1,29495,65 ,1,29496,182815 ,1,29497,284515 ,1,29498,255940 ,1,29499,65 ,1,29500,286370 ,1,29501,311475 ,1,29502,65 ,1,29503,315195 ,1,29504,65 ,1,29505,65 ,1,29506,310810 ,1,29507,65 ,1,29508,65 ,1,29509,65 ,1,29510,65 ,1,29511,65 ,1,29512,65 ,1,29513,304225 ,1,29514,274570 ,1,29515,65 ,1,29516,65 ,1,29517,65 ,1,29518,258455 ,1,29519,65 ,1,29520,65 ,1,29521,296295 ,1,29522,208485 ,1,29523,65 ,1,29524,254455 ,1,29525,65 ,1,29526,65 ,1,29527,343015 ,1,29528,65 ,1,29529,65 ,1,29530,65 ,1,29531,279575 ,1,29532,65 ,1,29533,65 ,1,29534,65 ,1,29535,263750 ,1,29536,65 ,1,29537,336085 ,1,29538,65 ,1,29539,272395 ,1,29540,328290 ,1,29541,318510 ,1,29542,65 ,1,29543,290455 ,1,29544,65 ,1,29545,186140 ,1,29546,267915 ,1,29547,332565 ,1,29548,65 ,1,29549,210120 ,1,29550,309715 ,1,29551,257410 ,1,29552,345675 ,1,29553,65 ,1,29554,65 ,1,29555,288880 ,1,29556,195270 ,1,29557,65 ,1,29558,65 ,1,29559,256520 ,1,29560,65 ,1,29561,300530 ,1,29562,65 ,1,29563,176740 ,1,29564,65 ,1,29565,223290 ,1,29566,65 ,1,29567,65 ,1,29568,65 ,1,29569,65 ,1,29570,276365 ,1,29571,65 ,1,29572,65 ,1,29573,65 ,1,29574,65 ,1,29575,209930 ,1,29576,65 ,1,29577,65 ,1,29578,65 ,1,29579,65 ,1,29580,65 ,1,29581,65 ,1,29582,65 ,1,29583,65 ,1,29584,299195 ,1,29585,306970 ,1,29586,210695 ,1,29587,306445 ,1,29588,65 ,1,29589,65 ,1,29590,323090 ,1,29591,65 ,1,29592,182870 ,1,29593,65 ,1,29594,289740 ,1,29595,304750 ,1,29596,312330 ,1,29597,65 ,1,29598,65 ,1,29599,65 ,1,29600,173260 ,1,29601,65 ,1,29602,251450 ,1,29603,238070 ,1,29604,65 ,1,29605,343855 ,1,29606,168095 ,1,29607,65 ,1,29608,176565 ,1,29609,325885 ,1,29610,65 ,1,29611,338050 ,1,29612,306355 ,1,29613,65 ,1,29614,197740 ,1,29615,335940 ,1,29616,65 ,1,29617,200160 ,1,29618,65 ,1,29619,197800 ,1,29620,321475 ,1,29621,252515 ,1,29622,234715 ,1,29623,65 ,1,29624,65 ,1,29625,65 ,1,29626,243530 ,1,29627,339270 ,1,29628,65 ,1,29629,65 ,1,29630,65 ,1,29631,302320 ,1,29632,332210 ,1,29633,65 ,1,29634,65 ,1,29635,273730 ,1,29636,65 ,1,29637,235485 ,1,29638,65 ,1,29639,173410 ,1,29640,348380 ,1,29641,172750 ,1,29642,178945 ,1,29643,65 ,1,29644,65 ,1,29645,65 ,1,29646,65 ,1,29647,65 ,1,29648,65 ,1,29649,65 ,1,29650,263610 ,1,29651,274045 ,1,29652,65 ,1,29653,65 ,1,29654,65 ,1,29655,290640 ,1,29656,65 ,1,29657,65 ,1,29658,65 ,1,29659,235035 ,1,29660,234400 ,1,29661,283600 ,1,29662,196750 ,1,29663,221910 ,1,29664,295810 ,1,29665,316600 ,1,29666,226210 ,1,29667,65 ,1,29668,310215 ,1,29669,294800 ,1,29670,268420 ,1,29671,65 ,1,29672,65 ,1,29673,346850 ,1,29674,278025 ,1,29675,65 ,1,29676,253615 ,1,29677,65 ,1,29678,65 ,1,29679,65 ,1,29680,65 ,1,29681,65 ,1,29682,65 ,1,29683,65 ,1,29684,295330 ,1,29685,65 ,1,29686,234015 ,1,29687,342970 ,1,29688,306400 ,1,29689,270065 ,1,29690,297295 ,1,29691,200260 ,1,29692,65 ,1,29693,65 ,1,29694,332240 ,1,29695,226965 ,1,29696,167905 ,1,29697,65 ,1,29698,65 ,1,29699,65 ,1,29700,245055 ,1,29701,305450 ,1,29702,261370 ,1,29703,266065 ,1,29704,184085 ,1,29705,293910 ,1,29706,65 ,1,29707,324155 ,1,29708,258210 ,1,29709,65 ,1,29710,232420 ,1,29711,65 ,1,29712,65 ,1,29713,65 ,1,29714,65 ,1,29715,65 ,1,29716,178370 ,1,29717,65 ,1,29718,170165 ,1,29719,200140 ,1,29720,65 ,1,29721,65 ,1,29722,65 ,1,29723,335860 ,1,29724,65 ,1,29725,65 ,1,29726,341210 ,1,29727,65 ,1,29728,65 ,1,29729,65 ,1,29730,262475 ,1,29731,65 ,1,29732,65 ,1,29733,326150 ,1,29734,348935 ,1,29735,167005 ,1,29736,65 ,1,29737,65 ,1,29738,65 ,1,29739,65 ,1,29740,65 ,1,29741,65 ,1,29742,325270 ,1,29743,65 ,1,29744,261010 ,1,29745,247460 ,1,29746,264385 ,1,29747,313295 ,1,29748,65 ,1,29749,65 ,1,29750,65 ,1,29751,304720 ,1,29752,204400 ,1,29753,65 ,1,29754,65 ,1,29755,290115 ,1,29756,65 ,1,29757,223570 ,1,29758,229025 ,1,29759,242720 ,1,29760,65 ,1,29761,65 ,1,29762,65 ,1,29763,65 ,1,29764,65 ,1,29765,65 ,1,29766,65 ,1,29767,226800 ,1,29768,65 ,1,29769,65 ,1,29770,65 ,1,29771,202325 ,1,29772,65 ,1,29773,65 ,1,29774,247480 ,1,29775,65 ,1,29776,65 ,1,29777,221735 ,1,29778,65 ,1,29779,65 ,1,29780,65 ,1,29781,65 ,1,29782,325735 ,1,29783,196625 ,1,29784,65 ,1,29785,65 ,1,29786,65 ,1,29787,65 ,1,29788,65 ,1,29789,65 ,1,29790,65 ,1,29791,65 ,1,29792,348660 ,1,29793,65 ,1,29794,65 ,1,29795,65 ,1,29796,65 ,1,29797,65 ,1,29798,65 ,1,29799,204630 ,1,29800,332990 ,1,29801,65 ,1,29802,247490 ,1,29803,65 ,1,29804,65 ,1,29805,65 ,1,29806,65 ,1,29807,313465 ,1,29808,65 ,1,29809,65 ,1,29810,65 ,1,29811,65 ,1,29812,65 ,1,29813,65 ,1,29814,65 ,1,29815,65 ,1,29816,65 ,1,29817,65 ,1,29818,320160 ,1,29819,304710 ,1,29820,65 ,1,29821,65 ,1,29822,65 ,1,29823,230465 ,1,29824,252960 ,1,29825,285645 ,1,29826,65 ,1,29827,65 ,1,29828,214510 ,1,29829,344505 ,1,29830,65 ,1,29831,65 ,1,29832,65 ,1,29833,65 ,1,29834,192900 ,1,29835,285585 ,1,29836,256420 ,1,29837,65 ,1,29838,65 ,1,29839,195715 ,1,29840,342385 ,1,29841,318625 ,1,29842,182350 ,1,29843,205445 ,1,29844,65 ,1,29845,65 ,1,29846,65 ,1,29847,65 ,1,29848,65 ,1,29849,243640 ,1,29850,299045 ,1,29851,341230 ,1,29852,65 ,1,29853,65 ,1,29854,65 ,1,29855,65 ,1,29856,65 ,1,29857,65 ,1,29858,65 ,1,29859,65 ,1,29860,190440 ,1,29861,340195 ,1,29862,174570 ,1,29863,232765 ,1,29864,212165 ,1,29865,65 ,1,29866,193275 ,1,29867,229105 ,1,29868,65 ,1,29869,257930 ,1,29870,65 ,1,29871,259705 ,1,29872,262975 ,1,29873,224305 ,1,29874,226770 ,1,29875,65 ,1,29876,184890 ,1,29877,334860 ,1,29878,65 ,1,29879,65 ,1,29880,176275 ,1,29881,266500 ,1,29882,65 ,1,29883,65 ,1,29884,176185 ,1,29885,322430 ,1,29886,65 ,1,29887,298160 ,1,29888,65 ,1,29889,65 ,1,29890,244125 ,1,29891,65 ,1,29892,65 ,1,29893,65 ,1,29894,213540 ,1,29895,65 ,1,29896,65 ,1,29897,273545 ,1,29898,65 ,1,29899,258990 ,1,29900,259290 ,1,29901,286380 ,1,29902,274470 ,1,29903,167340 ,1,29904,268185 ,1,29905,65 ,1,29906,65 ,1,29907,273575 ,1,29908,65 ,1,29909,65 ,1,29910,65 ,1,29911,181195 ,1,29912,328015 ,1,29913,65 ,1,29914,225520 ,1,29915,341830 ,1,29916,303060 ,1,29917,193370 ,1,29918,65 ,1,29919,318180 ,1,29920,65 ,1,29921,65 ,1,29922,65 ,1,29923,65 ,1,29924,329665 ,1,29925,65 ,1,29926,65 ,1,29927,65 ,1,29928,65 ,1,29929,65 ,1,29930,65 ,1,29931,332720 ,1,29932,65 ,1,29933,65 ,1,29934,296885 ,1,29935,189355 ,1,29936,65 ,1,29937,309400 ,1,29938,320380 ,1,29939,65 ,1,29940,242820 ,1,29941,65 ,1,29942,248705 ,1,29943,188625 ,1,29944,65 ,1,29945,318820 ,1,29946,65 ,1,29947,346720 ,1,29948,179425 ,1,29949,65 ,1,29950,231130 ,1,29951,65 ,1,29952,65 ,1,29953,65 ,1,29954,65 ,1,29955,65 ,1,29956,65 ,1,29957,65 ,1,29958,65 ,1,29959,65 ,1,29960,65 ,1,29961,261760 ,1,29962,339410 ,1,29963,65 ,1,29964,65 ,1,29965,294885 ,1,29966,343780 ,1,29967,293975 ,1,29968,65 ,1,29969,65 ,1,29970,293470 ,1,29971,305560 ,1,29972,65 ,1,29973,271605 ,1,29974,65 ,1,29975,65 ,1,29976,311625 ,1,29977,65 ,1,29978,65 ,1,29979,65 ,1,29980,346575 ,1,29981,65 ,1,29982,207710 ,1,29983,322025 ,1,29984,192115 ,1,29985,337660 ,1,29986,65 ,1,29987,343910 ,1,29988,65 ,1,29989,65 ,1,29990,65 ,1,29991,65 ,1,29992,65 ,1,29993,292975 ,1,29994,261460 ,1,29995,212700 ,1,29996,65 ,1,29997,217590 ,1,29998,65 ,1,29999,65 ,1,30000,210270 ,1,30001,344665 ,1,30002,65 ,1,30003,270125 ,1,30004,247765 ,1,30005,65 ,1,30006,294685 ,1,30007,65 ,1,30008,307870 ,1,30009,257700 ,1,30010,65 ,1,30011,65 ,1,30012,65 ,1,30013,65 ,1,30014,65 ,1,30015,248190 ,1,30016,197840 ,1,30017,65 ,1,30018,65 ,1,30019,65 ,1,30020,234745 ,1,30021,240380 ,1,30022,65 ,1,30023,198540 ,1,30024,65 ,1,30025,241650 ,1,30026,259905 ,1,30027,65 ,1,30028,65 ,1,30029,184580 ,1,30030,65 ,1,30031,313075 ,1,30032,65 ,1,30033,65 ,1,30034,308805 ,1,30035,65 ,1,30036,65 ,1,30037,65 ,1,30038,327955 ,1,30039,65 ,1,30040,252265 ,1,30041,309825 ,1,30042,65 ,1,30043,65 ,1,30044,65 ,1,30045,65 ,1,30046,65 ,1,30047,65 ,1,30048,65 ,1,30049,65 ,1,30050,65 ,1,30051,65 ,1,30052,65 ,1,30053,250970 ,1,30054,323160 ,1,30055,65 ,1,30056,65 ,1,30057,305285 ,1,30058,268800 ,1,30059,65 ,1,30060,65 ,1,30061,256570 ,1,30062,185120 ,1,30063,242810 ,1,30064,226895 ,1,30065,65 ,1,30066,177760 ,1,30067,65 ,1,30068,244295 ,1,30069,336630 ,1,30070,192795 ,1,30071,221875 ,1,30072,312300 ,1,30073,326275 ,1,30074,65 ,1,30075,65 ,1,30076,325595 ,1,30077,65 ,1,30078,65 ,1,30079,65 ,1,30080,65 ,1,30081,65 ,1,30082,65 ,1,30083,65 ,1,30084,65 ,1,30085,262515 ,1,30086,65 ,1,30087,65 ,1,30088,183105 ,1,30089,65 ,1,30090,65 ,1,30091,298345 ,1,30092,191530 ,1,30093,283925 ,1,30094,293880 ,1,30095,65 ,1,30096,285340 ,1,30097,65 ,1,30098,65 ,1,30099,65 ,1,30100,65 ,1,30101,65 ,1,30102,65 ,1,30103,65 ,1,30104,65 ,1,30105,65 ,1,30106,175420 ,1,30107,306720 ,1,30108,238720 ,1,30109,65 ,1,30110,65 ,1,30111,65 ,1,30112,300860 ,1,30113,326580 ,1,30114,313605 ,1,30115,325540 ,1,30116,254015 ,1,30117,65 ,1,30118,65 ,1,30119,65 ,1,30120,65 ,1,30121,65 ,1,30122,65 ,1,30123,225310 ,1,30124,223310 ,1,30125,211975 ,1,30126,65 ,1,30127,65 ,1,30128,253585 ,1,30129,65 ,1,30130,65 ,1,30131,65 ,1,30132,65 ,1,30133,65 ,1,30134,65 ,1,30135,65 ,1,30136,342000 ,1,30137,242055 ,1,30138,235730 ,1,30139,65 ,1,30140,330850 ,1,30141,65 ,1,30142,65 ,1,30143,65 ,1,30144,65 ,1,30145,65 ,1,30146,65 ,1,30147,172730 ,1,30148,197075 ,1,30149,331650 ,1,30150,181625 ,1,30151,65 ,1,30152,65 ,1,30153,249920 ,1,30154,65 ,1,30155,65 ,1,30156,233875 ,1,30157,65 ,1,30158,65 ,1,30159,65 ,1,30160,65 ,1,30161,270500 ,1,30162,173250 ,1,30163,257380 ,1,30164,65 ,1,30165,65 ,1,30166,195695 ,1,30167,205845 ,1,30168,272750 ,1,30169,324250 ,1,30170,65 ,1,30171,65 ,1,30172,240810 ,1,30173,188030 ,1,30174,65 ,1,30175,209040 ,1,30176,267895 ,1,30177,225680 ,1,30178,248385 ,1,30179,195905 ,1,30180,185130 ,1,30181,65 ,1,30182,65 ,1,30183,65 ,1,30184,65 ,1,30185,65 ,1,30186,65 ,1,30187,65 ,1,30188,65 ,1,30189,65 ,1,30190,65 ,1,30191,265925 ,1,30192,65 ,1,30193,339910 ,1,30194,348925 ,1,30195,65 ,1,30196,323815 ,1,30197,65 ,1,30198,65 ,1,30199,65 ,1,30200,65 ,1,30201,65 ,1,30202,65 ,1,30203,65 ,1,30204,179910 ,1,30205,177820 ,1,30206,65 ,1,30207,65 ,1,30208,65 ,1,30209,65 ,1,30210,348915 ,1,30211,185450 ,1,30212,310400 ,1,30213,320880 ,1,30214,65 ,1,30215,234875 ,1,30216,65 ,1,30217,231355 ,1,30218,306575 ,1,30219,342980 ,1,30220,65 ,1,30221,224245 ,1,30222,65 ,1,30223,65 ,1,30224,65 ,1,30225,65 ,1,30226,65 ,1,30227,210240 ,1,30228,230315 ,1,30229,218360 ,1,30230,65 ,1,30231,180800 ,1,30232,294865 ,1,30233,218520 ,1,30234,258900 ,1,30235,287955 ,1,30236,294320 ,1,30237,315530 ,1,30238,240100 ,1,30239,234325 ,1,30240,241495 ,1,30241,65 ,1,30242,65 ,1,30243,65 ,1,30244,65 ,1,30245,65 ,1,30246,65 ,1,30247,278580 ,1,30248,263100 ,1,30249,342875 ,1,30250,252800 ,1,30251,65 ,1,30252,65 ,1,30253,65 ,1,30254,65 ,1,30255,65 ,1,30256,65 ,1,30257,65 ,1,30258,65 ,1,30259,65 ,1,30260,65 ,1,30261,65 ,1,30262,279635 ,1,30263,65 ,1,30264,65 ,1,30265,175410 ,1,30266,65 ,1,30267,249885 ,1,30268,65 ,1,30269,65 ,1,30270,65 ,1,30271,65 ,1,30272,65 ,1,30273,65 ,1,30274,65 ,1,30275,65 ,1,30276,65 ,1,30277,65 ,1,30278,282250 ,1,30279,65 ,1,30280,65 ,1,30281,65 ,1,30282,65 ,1,30283,296945 ,1,30284,344720 ,1,30285,65 ,1,30286,65 ,1,30287,265575 ,1,30288,297585 ,1,30289,232570 ,1,30290,241100 ,1,30291,65 ,1,30292,65 ,1,30293,65 ,1,30294,204215 ,1,30295,65 ,1,30296,65 ,1,30297,322460 ,1,30298,65 ,1,30299,65 ,1,30300,184115 ,1,30301,65 ,1,30302,65 ,1,30303,280460 ,1,30304,65 ,1,30305,65 ,1,30306,309970 ,1,30307,65 ,1,30308,65 ,1,30309,65 ,1,30310,65 ,1,30311,65 ,1,30312,284640 ,1,30313,65 ,1,30314,65 ,1,30315,65 ,1,30316,286065 ,1,30317,65 ,1,30318,65 ,1,30319,227545 ,1,30320,65 ,1,30321,65 ,1,30322,235085 ,1,30323,269125 ,1,30324,331160 ,1,30325,319905 ,1,30326,316075 ,1,30327,65 ,1,30328,65 ,1,30329,223860 ,1,30330,258710 ,1,30331,65 ,1,30332,283295 ,1,30333,65 ,1,30334,65 ,1,30335,65 ,1,30336,338320 ,1,30337,65 ,1,30338,65 ,1,30339,65 ,1,30340,65 ,1,30341,65 ,1,30342,177390 ,1,30343,65 ,1,30344,65 ,1,30345,65 ,1,30346,65 ,1,30347,173185 ,1,30348,206730 ,1,30349,65 ,1,30350,65 ,1,30351,314645 ,1,30352,65 ,1,30353,248640 ,1,30354,65 ,1,30355,65 ,1,30356,65 ,1,30357,222950 ,1,30358,65 ,1,30359,190145 ,1,30360,65 ,1,30361,65 ,1,30362,65 ,1,30363,65 ,1,30364,263180 ,1,30365,65 ,1,30366,65 ,1,30367,65 ,1,30368,65 ,1,30369,65 ,1,30370,65 ,1,30371,173135 ,1,30372,271470 ,1,30373,174485 ,1,30374,65 ,1,30375,65 ,1,30376,271105 ,1,30377,65 ,1,30378,65 ,1,30379,65 ,1,30380,65 ,1,30381,65 ,1,30382,65 ,1,30383,65 ,1,30384,298085 ,1,30385,65 ,1,30386,65 ,1,30387,65 ,1,30388,65 ,1,30389,65 ,1,30390,65 ,1,30391,65 ,1,30392,65 ,1,30393,65 ,1,30394,335025 ,1,30395,220310 ,1,30396,65 ,1,30397,65 ,1,30398,65 ,1,30399,65 ,1,30400,65 ,1,30401,188880 ,1,30402,196700 ,1,30403,271830 ,1,30404,65 ,1,30405,65 ,1,30406,337500 ,1,30407,257670 ,1,30408,330895 ,1,30409,65 ,1,30410,65 ,1,30411,65 ,1,30412,269635 ,1,30413,208825 ,1,30414,65 ,1,30415,241995 ,1,30416,65 ,1,30417,65 ,1,30418,229190 ,1,30419,240200 ,1,30420,65 ,1,30421,65 ,1,30422,65 ,1,30423,237355 ,1,30424,65 ,1,30425,65 ,1,30426,65 ,1,30427,65 ,1,30428,65 ,1,30429,65 ,1,30430,170495 ,1,30431,302905 ,1,30432,65 ,1,30433,65 ,1,30434,266595 ,1,30435,261575 ,1,30436,65 ,1,30437,263650 ,1,30438,65 ,1,30439,240190 ,1,30440,203135 ,1,30441,65 ,1,30442,302695 ,1,30443,65 ,1,30444,338970 ,1,30445,279750 ,1,30446,65 ,1,30447,65 ,1,30448,265805 ,1,30449,181165 ,1,30450,65 ,1,30451,65 ,1,30452,65 ,1,30453,65 ,1,30454,175550 ,1,30455,208745 ,1,30456,65 ,1,30457,289645 ,1,30458,324135 ,1,30459,65 ,1,30460,305010 ,1,30461,314750 ,1,30462,213745 ,1,30463,339390 ,1,30464,216260 ,1,30465,251740 ,1,30466,291200 ,1,30467,282990 ,1,30468,65 ,1,30469,65 ,1,30470,277715 ,1,30471,65 ,1,30472,65 ,1,30473,278425 ,1,30474,65 ,1,30475,65 ,1,30476,326340 ,1,30477,317480 ,1,30478,334385 ,1,30479,65 ,1,30480,65 ,1,30481,182185 ,1,30482,248550 ,1,30483,311530 ,1,30484,258920 ,1,30485,334465 ,1,30486,65 ,1,30487,189280 ,1,30488,65 ,1,30489,234420 ,1,30490,65 ,1,30491,248815 ,1,30492,65 ,1,30493,262415 ,1,30494,287545 ,1,30495,205865 ,1,30496,345320 ,1,30497,65 ,1,30498,180845 ,1,30499,264145 ,1,30500,65 ,1,30501,342355 ,1,30502,65 ,1,30503,65 ,1,30504,194095 ,1,30505,65 ,1,30506,65 ,1,30507,65 ,1,30508,65 ,1,30509,275305 ,1,30510,183365 ,1,30511,65 ,1,30512,65 ,1,30513,65 ,1,30514,65 ,1,30515,65 ,1,30516,65 ,1,30517,198985 ,1,30518,65 ,1,30519,207580 ,1,30520,324085 ,1,30521,325410 ,1,30522,65 ,1,30523,65 ,1,30524,65 ,1,30525,281705 ,1,30526,65 ,1,30527,65 ,1,30528,65 ,1,30529,65 ,1,30530,293185 ,1,30531,65 ,1,30532,65 ,1,30533,295340 ,1,30534,65 ,1,30535,65 ,1,30536,266125 ,1,30537,267695 ,1,30538,319855 ,1,30539,201800 ,1,30540,272625 ,1,30541,347385 ,1,30542,65 ,1,30543,228055 ,1,30544,299865 ,1,30545,237760 ,1,30546,65 ,1,30547,328995 ,1,30548,65 ,1,30549,337070 ,1,30550,65 ,1,30551,171755 ,1,30552,228075 ,1,30553,65 ,1,30554,324880 ,1,30555,65 ,1,30556,65 ,1,30557,65 ,1,30558,65 ,1,30559,65 ,1,30560,304180 ,1,30561,65 ,1,30562,65 ,1,30563,65 ,1,30564,65 ,1,30565,65 ,1,30566,252080 ,1,30567,65 ,1,30568,65 ,1,30569,227430 ,1,30570,65 ,1,30571,313930 ,1,30572,317065 ,1,30573,289300 ,1,30574,65 ,1,30575,231750 ,1,30576,262425 ,1,30577,65 ,1,30578,169215 ,1,30579,65 ,1,30580,272285 ,1,30581,219045 ,1,30582,65 ,1,30583,65 ,1,30584,65 ,1,30585,310635 ,1,30586,225925 ,1,30587,231160 ,1,30588,65 ,1,30589,65 ,1,30590,65 ,1,30591,242265 ,1,30592,65 ,1,30593,65 ,1,30594,316785 ,1,30595,65 ,1,30596,65 ,1,30597,65 ,1,30598,65 ,1,30599,65 ,1,30600,65 ,1,30601,198435 ,1,30602,65 ,1,30603,340375 ,1,30604,65 ,1,30605,65 ,1,30606,285220 ,1,30607,271645 ,1,30608,305900 ,1,30609,65 ,1,30610,65 ,1,30611,65 ,1,30612,65 ,1,30613,184770 ,1,30614,254195 ,1,30615,65 ,1,30616,65 ,1,30617,218950 ,1,30618,313770 ,1,30619,65 ,1,30620,279565 ,1,30621,65 ,1,30622,251400 ,1,30623,65 ,1,30624,65 ,1,30625,65 ,1,30626,65 ,1,30627,184055 ,1,30628,65 ,1,30629,193965 ,1,30630,65 ,1,30631,65 ,1,30632,191340 ,1,30633,256815 ,1,30634,236930 ,1,30635,65 ,1,30636,339735 ,1,30637,262375 ,1,30638,65 ,1,30639,348905 ,1,30640,65 ,1,30641,215065 ,1,30642,65 ,1,30643,253965 ,1,30644,254670 ,1,30645,218765 ,1,30646,65 ,1,30647,179180 ,1,30648,65 ,1,30649,216475 ,1,30650,194380 ,1,30651,338605 ,1,30652,65 ,1,30653,65 ,1,30654,65 ,1,30655,65 ,1,30656,65 ,1,30657,65 ,1,30658,65 ,1,30659,65 ,1,30660,260660 ,1,30661,65 ,1,30662,65 ,1,30663,65 ,1,30664,65 ,1,30665,65 ,1,30666,65 ,1,30667,231500 ,1,30668,282405 ,1,30669,342290 ,1,30670,206125 ,1,30671,65 ,1,30672,208935 ,1,30673,65 ,1,30674,65 ,1,30675,333525 ,1,30676,65 ,1,30677,305920 ,1,30678,65 ,1,30679,65 ,1,30680,297720 ,1,30681,65 ,1,30682,65 ,1,30683,179370 ,1,30684,65 ,1,30685,65 ,1,30686,298855 ,1,30687,233230 ,1,30688,348895 ,1,30689,216560 ,1,30690,65 ,1,30691,65 ,1,30692,65 ,1,30693,65 ,1,30694,65 ,1,30695,65 ,1,30696,65 ,1,30697,65 ,1,30698,65 ,1,30699,65 ,1,30700,290465 ,1,30701,65 ,1,30702,273190 ,1,30703,65 ,1,30704,65 ,1,30705,65 ,1,30706,65 ,1,30707,290330 ,1,30708,291545 ,1,30709,65 ,1,30710,226865 ,1,30711,65 ,1,30712,65 ,1,30713,65 ,1,30714,65 ,1,30715,65 ,1,30716,65 ,1,30717,206640 ,1,30718,327305 ,1,30719,65 ,1,30720,243715 ,1,30721,314405 ,1,30722,65 ,1,30723,187840 ,1,30724,65 ,1,30725,65 ,1,30726,65 ,1,30727,65 ,1,30728,65 ,1,30729,178630 ,1,30730,256310 ,1,30731,65 ,1,30732,268455 ,1,30733,65 ,1,30734,284135 ,1,30735,65 ,1,30736,281115 ,1,30737,267810 ,1,30738,231870 ,1,30739,283810 ,1,30740,249235 ,1,30741,183805 ,1,30742,65 ,1,30743,256110 ,1,30744,65 ,1,30745,65 ,1,30746,252405 ,1,30747,298150 ,1,30748,65 ,1,30749,201950 ,1,30750,193900 ,1,30751,65 ,1,30752,65 ,1,30753,65 ,1,30754,65 ,1,30755,65 ,1,30756,65 ,1,30757,65 ,1,30758,65 ,1,30759,65 ,1,30760,65 ,1,30761,319185 ,1,30762,65 ,1,30763,65 ,1,30764,65 ,1,30765,65 ,1,30766,336475 ,1,30767,65 ,1,30768,65 ,1,30769,65 ,1,30770,65 ,1,30771,65 ,1,30772,65 ,1,30773,65 ,1,30774,65 ,1,30775,200955 ,1,30776,65 ,1,30777,65 ,1,30778,261065 ,1,30779,65 ,1,30780,65 ,1,30781,65 ,1,30782,65 ,1,30783,65 ,1,30784,65 ,1,30785,65 ,1,30786,65 ,1,30787,65 ,1,30788,65 ,1,30789,65 ,1,30790,65 ,1,30791,65 ,1,30792,65 ,1,30793,288255 ,1,30794,167275 ,1,30795,65 ,1,30796,266565 ,1,30797,65 ,1,30798,260765 ,1,30799,194535 ,1,30800,65 ,1,30801,281215 ,1,30802,65 ,1,30803,65 ,1,30804,65 ,1,30805,65 ,1,30806,65 ,1,30807,65 ,1,30808,65 ,1,30809,194480 ,1,30810,65 ,1,30811,65 ,1,30812,263920 ,1,30813,328335 ,1,30814,329030 ,1,30815,65 ,1,30816,65 ,1,30817,65 ,1,30818,65 ,1,30819,65 ,1,30820,65 ,1,30821,65 ,1,30822,65 ,1,30823,271615 ,1,30824,65 ,1,30825,173465 ,1,30826,65 ,1,30827,341445 ,1,30828,65 ,1,30829,65 ,1,30830,65 ,1,30831,65 ,1,30832,65 ,1,30833,65 ,1,30834,65 ,1,30835,330605 ,1,30836,65 ,1,30837,213600 ,1,30838,65 ,1,30839,65 ,1,30840,65 ,1,30841,65 ,1,30842,220465 ,1,30843,65 ,1,30844,65 ,1,30845,65 ,1,30846,65 ,1,30847,65 ,1,30848,214870 ,1,30849,231230 ,1,30850,216795 ,1,30851,324870 ,1,30852,188890 ,1,30853,259850 ,1,30854,65 ,1,30855,171215 ,1,30856,240745 ,1,30857,65 ,1,30858,262345 ,1,30859,65 ,1,30860,180755 ,1,30861,204875 ,1,30862,174850 ,1,30863,65 ,1,30864,65 ,1,30865,306685 ,1,30866,65 ,1,30867,65 ,1,30868,314790 ,1,30869,315240 ,1,30870,274280 ,1,30871,273640 ,1,30872,65 ,1,30873,65 ,1,30874,65 ,1,30875,65 ,1,30876,331020 ,1,30877,65 ,1,30878,201355 ,1,30879,341325 ,1,30880,190310 ,1,30881,65 ,1,30882,197950 ,1,30883,332105 ,1,30884,65 ,1,30885,65 ,1,30886,227695 ,1,30887,328175 ,1,30888,65 ,1,30889,65 ,1,30890,65 ,1,30891,65 ,1,30892,65 ,1,30893,65 ,1,30894,65 ,1,30895,65 ,1,30896,65 ,1,30897,201390 ,1,30898,65 ,1,30899,65 ,1,30900,283390 ,1,30901,65 ,1,30902,226050 ,1,30903,340780 ,1,30904,65 ,1,30905,206225 ,1,30906,179315 ,1,30907,266615 ,1,30908,65 ,1,30909,65 ,1,30910,252195 ,1,30911,65 ,1,30912,65 ,1,30913,65 ,1,30914,65 ,1,30915,65 ,1,30916,65 ,1,30917,65 ,1,30918,224575 ,1,30919,232205 ,1,30920,168565 ,1,30921,244335 ,1,30922,348885 ,1,30923,65 ,1,30924,332010 ,1,30925,65 ,1,30926,65 ,1,30927,65 ,1,30928,65 ,1,30929,65 ,1,30930,234465 ,1,30931,65 ,1,30932,211080 ,1,30933,65 ,1,30934,65 ,1,30935,309170 ,1,30936,65 ,1,30937,202925 ,1,30938,237940 ,1,30939,65 ,1,30940,230905 ,1,30941,232450 ,1,30942,242145 ,1,30943,348875 ,1,30944,257570 ,1,30945,65 ,1,30946,195960 ,1,30947,346200 ,1,30948,205360 ,1,30949,65 ,1,30950,65 ,1,30951,65 ,1,30952,287230 ,1,30953,65 ,1,30954,259525 ,1,30955,65 ,1,30956,205140 ,1,30957,65 ,1,30958,65 ,1,30959,217385 ,1,30960,65 ,1,30961,294265 ,1,30962,284940 ,1,30963,65 ,1,30964,65 ,1,30965,65 ,1,30966,65 ,1,30967,65 ,1,30968,65 ,1,30969,65 ,1,30970,65 ,1,30971,182880 ,1,30972,65 ,1,30973,230570 ,1,30974,65 ,1,30975,178705 ,1,30976,65 ,1,30977,185905 ,1,30978,65 ,1,30979,331605 ,1,30980,65 ,1,30981,65 ,1,30982,65 ,1,30983,65 ,1,30984,65 ,1,30985,65 ,1,30986,65 ,1,30987,65 ,1,30988,65 ,1,30989,65 ,1,30990,246695 ,1,30991,65 ,1,30992,228920 ,1,30993,348865 ,1,30994,65 ,1,30995,213395 ,1,30996,65 ,1,30997,65 ,1,30998,65 ,1,30999,65 ,1,31000,65 ,1,31001,65 ,1,31002,65 ,1,31003,252810 ,1,31004,65 ,1,31005,65 ,1,31006,65 ,1,31007,65 ,1,31008,65 ,1,31009,65 ,1,31010,263620 ,1,31011,65 ,1,31012,191405 ,1,31013,65 ,1,31014,65 ,1,31015,282185 ,1,31016,187005 ,1,31017,65 ,1,31018,311150 ,1,31019,65 ,1,31020,65 ,1,31021,328985 ,1,31022,278260 ,1,31023,65 ,1,31024,65 ,1,31025,65 ,1,31026,65 ,1,31027,65 ,1,31028,65 ,1,31029,65 ,1,31030,65 ,1,31031,170425 ,1,31032,310540 ,1,31033,261270 ,1,31034,342905 ,1,31035,65 ,1,31036,65 ,1,31037,65 ,1,31038,65 ,1,31039,65 ,1,31040,65 ,1,31041,65 ,1,31042,65 ,1,31043,65 ,1,31044,65 ,1,31045,229505 ,1,31046,65 ,1,31047,65 ,1,31048,65 ,1,31049,345265 ,1,31050,65 ,1,31051,65 ,1,31052,65 ,1,31053,337860 ,1,31054,65 ,1,31055,65 ,1,31056,65 ,1,31057,65 ,1,31058,65 ,1,31059,65 ,1,31060,65 ,1,31061,65 ,1,31062,65 ,1,31063,65 ,1,31064,65 ,1,31065,65 ,1,31066,65 ,1,31067,240800 ,1,31068,237525 ,1,31069,65 ,1,31070,175795 ,1,31071,65 ,1,31072,267005 ,1,31073,204165 ,1,31074,65 ,1,31075,65 ,1,31076,65 ,1,31077,174080 ,1,31078,263435 ,1,31079,303755 ,1,31080,65 ,1,31081,65 ,1,31082,65 ,1,31083,308290 ,1,31084,65 ,1,31085,226415 ,1,31086,185310 ,1,31087,168795 ,1,31088,266215 ,1,31089,176325 ,1,31090,294695 ,1,31091,270685 ,1,31092,323170 ,1,31093,190105 ,1,31094,211600 ,1,31095,65 ,1,31096,323795 ,1,31097,65 ,1,31098,65 ,1,31099,65 ,1,31100,287085 ,1,31101,65 ,1,31102,177260 ,1,31103,179275 ,1,31104,65 ,1,31105,345170 ,1,31106,65 ,1,31107,65 ,1,31108,65 ,1,31109,65 ,1,31110,209745 ,1,31111,65 ,1,31112,65 ,1,31113,65 ,1,31114,65 ,1,31115,65 ,1,31116,65 ,1,31117,345600 ,1,31118,178405 ,1,31119,235810 ,1,31120,332880 ,1,31121,65 ,1,31122,281450 ,1,31123,65 ,1,31124,65 ,1,31125,266245 ,1,31126,202010 ,1,31127,65 ,1,31128,176680 ,1,31129,329345 ,1,31130,313390 ,1,31131,65 ,1,31132,65 ,1,31133,217535 ,1,31134,223665 ,1,31135,65 ,1,31136,65 ,1,31137,283510 ,1,31138,214500 ,1,31139,65 ,1,31140,186695 ,1,31141,338200 ,1,31142,228620 ,1,31143,170710 ,1,31144,320565 ,1,31145,65 ,1,31146,65 ,1,31147,65 ,1,31148,65 ,1,31149,319680 ,1,31150,199035 ,1,31151,293930 ,1,31152,65 ,1,31153,65 ,1,31154,308070 ,1,31155,65 ,1,31156,291470 ,1,31157,321040 ,1,31158,65 ,1,31159,187440 ,1,31160,328115 ,1,31161,65 ,1,31162,65 ,1,31163,65 ,1,31164,65 ,1,31165,65 ,1,31166,65 ,1,31167,258305 ,1,31168,295405 ,1,31169,65 ,1,31170,344865 ,1,31171,189900 ,1,31172,65 ,1,31173,167395 ,1,31174,237560 ,1,31175,65 ,1,31176,65 ,1,31177,168335 ,1,31178,222130 ,1,31179,65 ,1,31180,65 ,1,31181,65 ,1,31182,65 ,1,31183,338960 ,1,31184,65 ,1,31185,348830 ,1,31186,202270 ,1,31187,65 ,1,31188,65 ,1,31189,65 ,1,31190,65 ,1,31191,65 ,1,31192,272545 ,1,31193,240180 ,1,31194,65 ,1,31195,65 ,1,31196,65 ,1,31197,65 ,1,31198,213610 ,1,31199,283655 ,1,31200,265935 ,1,31201,322870 ,1,31202,65 ,1,31203,322000 ,1,31204,253645 ,1,31205,65 ,1,31206,294540 ,1,31207,65 ,1,31208,65 ,1,31209,199925 ,1,31210,205755 ,1,31211,65 ,1,31212,65 ,1,31213,244355 ,1,31214,65 ,1,31215,65 ,1,31216,65 ,1,31217,186035 ,1,31218,227905 ,1,31219,65 ,1,31220,325970 ,1,31221,65 ,1,31222,65 ,1,31223,222360 ,1,31224,65 ,1,31225,65 ,1,31226,65 ,1,31227,65 ,1,31228,65 ,1,31229,286815 ,1,31230,232865 ,1,31231,65 ,1,31232,65 ,1,31233,190135 ,1,31234,65 ,1,31235,65 ,1,31236,185775 ,1,31237,335840 ,1,31238,241870 ,1,31239,217820 ,1,31240,339475 ,1,31241,65 ,1,31242,65 ,1,31243,65 ,1,31244,175275 ,1,31245,182225 ,1,31246,348820 ,1,31247,273510 ,1,31248,65 ,1,31249,65 ,1,31250,296660 ,1,31251,251730 ,1,31252,175045 ,1,31253,292655 ,1,31254,65 ,1,31255,65 ,1,31256,65 ,1,31257,65 ,1,31258,192515 ,1,31259,65 ,1,31260,224515 ,1,31261,223990 ,1,31262,65 ,1,31263,65 ,1,31264,65 ,1,31265,65 ,1,31266,65 ,1,31267,65 ,1,31268,65 ,1,31269,224895 ,1,31270,249105 ,1,31271,65 ,1,31272,65 ,1,31273,65 ,1,31274,185075 ,1,31275,268410 ,1,31276,65 ,1,31277,327315 ,1,31278,181580 ,1,31279,65 ,1,31280,65 ,1,31281,65 ,1,31282,65 ,1,31283,65 ,1,31284,65 ,1,31285,65 ,1,31286,65 ,1,31287,65 ,1,31288,201530 ,1,31289,235585 ,1,31290,65 ,1,31291,65 ,1,31292,65 ,1,31293,65 ,1,31294,65 ,1,31295,65 ,1,31296,65 ,1,31297,65 ,1,31298,65 ,1,31299,204650 ,1,31300,65 ,1,31301,307465 ,1,31302,65 ,1,31303,196210 ,1,31304,203890 ,1,31305,65 ,1,31306,65 ,1,31307,267255 ,1,31308,336185 ,1,31309,65 ,1,31310,65 ,1,31311,255930 ,1,31312,65 ,1,31313,65 ,1,31314,65 ,1,31315,65 ,1,31316,65 ,1,31317,65 ,1,31318,276635 ,1,31319,65 ,1,31320,65 ,1,31321,65 ,1,31322,314850 ,1,31323,208310 ,1,31324,65 ,1,31325,247245 ,1,31326,65 ,1,31327,65 ,1,31328,65 ,1,31329,228990 ,1,31330,302435 ,1,31331,65 ,1,31332,180220 ,1,31333,316260 ,1,31334,65 ,1,31335,266700 ,1,31336,65 ,1,31337,275695 ,1,31338,260075 ,1,31339,65 ,1,31340,226485 ,1,31341,331760 ,1,31342,65 ,1,31343,186350 ,1,31344,65 ,1,31345,65 ,1,31346,65 ,1,31347,223525 ,1,31348,194980 ,1,31349,65 ,1,31350,65 ,1,31351,65 ,1,31352,184450 ,1,31353,65 ,1,31354,178480 ,1,31355,169850 ,1,31356,65 ,1,31357,65 ,1,31358,65 ,1,31359,65 ,1,31360,222180 ,1,31361,65 ,1,31362,263410 ,1,31363,65 ,1,31364,65 ,1,31365,226535 ,1,31366,65 ,1,31367,65 ,1,31368,65 ,1,31369,314480 ,1,31370,65 ,1,31371,198105 ,1,31372,65 ,1,31373,270330 ,1,31374,65 ,1,31375,316245 ,1,31376,65 ,1,31377,198785 ,1,31378,65 ,1,31379,65 ,1,31380,65 ,1,31381,65 ,1,31382,65 ,1,31383,280895 ,1,31384,65 ,1,31385,224335 ,1,31386,65 ,1,31387,65 ,1,31388,282970 ,1,31389,174380 ,1,31390,65 ,1,31391,320825 ,1,31392,65 ,1,31393,328095 ,1,31394,65 ,1,31395,65 ,1,31396,270940 ,1,31397,65 ,1,31398,320480 ,1,31399,323205 ,1,31400,65 ,1,31401,65 ,1,31402,65 ,1,31403,200065 ,1,31404,256580 ,1,31405,65 ,1,31406,219810 ,1,31407,301115 ,1,31408,65 ,1,31409,253490 ,1,31410,65 ,1,31411,65 ,1,31412,65 ,1,31413,65 ,1,31414,65 ,1,31415,183195 ,1,31416,65 ,1,31417,318530 ,1,31418,65 ,1,31419,345860 ,1,31420,65 ,1,31421,311130 ,1,31422,65 ,1,31423,65 ,1,31424,258010 ,1,31425,65 ,1,31426,65 ,1,31427,244440 ,1,31428,65 ,1,31429,348810 ,1,31430,65 ,1,31431,65 ,1,31432,260305 ,1,31433,65 ,1,31434,279935 ,1,31435,65 ,1,31436,65 ,1,31437,65 ,1,31438,234980 ,1,31439,65 ,1,31440,65 ,1,31441,179445 ,1,31442,219790 ,1,31443,65 ,1,31444,65 ,1,31445,267340 ,1,31446,65 ,1,31447,65 ,1,31448,65 ,1,31449,65 ,1,31450,65 ,1,31451,249705 ,1,31452,311995 ,1,31453,219365 ,1,31454,170465 ,1,31455,292225 ,1,31456,180125 ,1,31457,327020 ,1,31458,65 ,1,31459,65 ,1,31460,292145 ,1,31461,317905 ,1,31462,65 ,1,31463,236255 ,1,31464,65 ,1,31465,65 ,1,31466,249635 ,1,31467,204430 ,1,31468,65 ,1,31469,65 ,1,31470,65 ,1,31471,336305 ,1,31472,65 ,1,31473,65 ,1,31474,327490 ,1,31475,65 ,1,31476,65 ,1,31477,65 ,1,31478,65 ,1,31479,209735 ,1,31480,348800 ,1,31481,168680 ,1,31482,65 ,1,31483,65 ,1,31484,65 ,1,31485,183860 ,1,31486,65 ,1,31487,65 ,1,31488,225605 ,1,31489,65 ,1,31490,65 ,1,31491,289085 ,1,31492,264875 ,1,31493,65 ,1,31494,270390 ,1,31495,212480 ,1,31496,65 ,1,31497,171815 ,1,31498,65 ,1,31499,65 ,1,31500,65 ,1,31501,217435 ,1,31502,227380 ,1,31503,65 ,1,31504,65 ,1,31505,216305 ,1,31506,336820 ,1,31507,65 ,1,31508,315560 ,1,31509,269230 ,1,31510,65 ,1,31511,254915 ,1,31512,65 ,1,31513,264530 ,1,31514,65 ,1,31515,231615 ,1,31516,65 ,1,31517,206405 ,1,31518,243550 ,1,31519,65 ,1,31520,175590 ,1,31521,251420 ,1,31522,65 ,1,31523,281370 ,1,31524,65 ,1,31525,308395 ,1,31526,316150 ,1,31527,228345 ,1,31528,65 ,1,31529,65 ,1,31530,65 ,1,31531,65 ,1,31532,192125 ,1,31533,172805 ,1,31534,283895 ,1,31535,65 ,1,31536,65 ,1,31537,65 ,1,31538,65 ,1,31539,229555 ,1,31540,65 ,1,31541,173320 ,1,31542,231690 ,1,31543,277465 ,1,31544,65 ,1,31545,326075 ,1,31546,244910 ,1,31547,65 ,1,31548,314435 ,1,31549,197630 ,1,31550,183225 ,1,31551,328940 ,1,31552,317305 ,1,31553,65 ,1,31554,255680 ,1,31555,320690 ,1,31556,65 ,1,31557,65 ,1,31558,220630 ,1,31559,65 ,1,31560,65 ,1,31561,65 ,1,31562,290350 ,1,31563,339870 ,1,31564,65 ,1,31565,65 ,1,31566,166775 ,1,31567,298960 ,1,31568,65 ,1,31569,344005 ,1,31570,65 ,1,31571,332740 ,1,31572,261970 ,1,31573,65 ,1,31574,65 ,1,31575,219450 ,1,31576,65 ,1,31577,65 ,1,31578,65 ,1,31579,65 ,1,31580,288895 ,1,31581,185440 ,1,31582,201905 ,1,31583,185175 ,1,31584,65 ,1,31585,276915 ,1,31586,65 ,1,31587,65 ,1,31588,65 ,1,31589,290205 ,1,31590,255615 ,1,31591,65 ,1,31592,65 ,1,31593,259045 ,1,31594,273450 ,1,31595,271935 ,1,31596,209185 ,1,31597,65 ,1,31598,328050 ,1,31599,65 ,1,31600,65 ,1,31601,65 ,1,31602,175225 ,1,31603,170505 ,1,31604,65 ,1,31605,293730 ,1,31606,65 ,1,31607,219020 ,1,31608,303440 ,1,31609,248560 ,1,31610,253145 ,1,31611,65 ,1,31612,65 ,1,31613,65 ,1,31614,276755 ,1,31615,346670 ,1,31616,65 ,1,31617,65 ,1,31618,225150 ,1,31619,268400 ,1,31620,65 ,1,31621,65 ,1,31622,65 ,1,31623,65 ,1,31624,219570 ,1,31625,65 ,1,31626,65 ,1,31627,65 ,1,31628,65 ,1,31629,330830 ,1,31630,65 ,1,31631,65 ,1,31632,343420 ,1,31633,65 ,1,31634,65 ,1,31635,65 ,1,31636,65 ,1,31637,265305 ,1,31638,65 ,1,31639,65 ,1,31640,65 ,1,31641,327705 ,1,31642,291220 ,1,31643,65 ,1,31644,65 ,1,31645,223055 ,1,31646,65 ,1,31647,335615 ,1,31648,65 ,1,31649,341480 ,1,31650,323275 ,1,31651,280615 ,1,31652,177210 ,1,31653,65 ,1,31654,291690 ,1,31655,65 ,1,31656,65 ,1,31657,65 ,1,31658,65 ,1,31659,65 ,1,31660,65 ,1,31661,65 ,1,31662,65 ,1,31663,251215 ,1,31664,211100 ,1,31665,65 ,1,31666,65 ,1,31667,65 ,1,31668,65 ,1,31669,315060 ,1,31670,65 ,1,31671,65 ,1,31672,65 ,1,31673,65 ,1,31674,65 ,1,31675,65 ,1,31676,65 ,1,31677,65 ,1,31678,65 ,1,31679,65 ,1,31680,65 ,1,31681,233995 ,1,31682,65 ,1,31683,65 ,1,31684,65 ,1,31685,65 ,1,31686,65 ,1,31687,347510 ,1,31688,65 ,1,31689,65 ,1,31690,65 ,1,31691,65 ,1,31692,253870 ,1,31693,65 ,1,31694,65 ,1,31695,65 ,1,31696,272840 ,1,31697,65 ,1,31698,65 ,1,31699,65 ,1,31700,65 ,1,31701,65 ,1,31702,65 ,1,31703,65 ,1,31704,248425 ,1,31705,65 ,1,31706,334925 ,1,31707,222320 ,1,31708,250845 ,1,31709,253165 ,1,31710,65 ,1,31711,297385 ,1,31712,65 ,1,31713,65 ,1,31714,65 ,1,31715,173420 ,1,31716,253785 ,1,31717,65 ,1,31718,65 ,1,31719,65 ,1,31720,65 ,1,31721,65 ,1,31722,65 ,1,31723,65 ,1,31724,65 ,1,31725,65 ,1,31726,271165 ,1,31727,65 ,1,31728,65 ,1,31729,65 ,1,31730,65 ,1,31731,209265 ,1,31732,65 ,1,31733,65 ,1,31734,65 ,1,31735,65 ,1,31736,240830 ,1,31737,206965 ,1,31738,65 ,1,31739,65 ,1,31740,65 ,1,31741,344230 ,1,31742,200810 ,1,31743,65 ,1,31744,200600 ,1,31745,273760 ,1,31746,181500 ,1,31747,307925 ,1,31748,170115 ,1,31749,65 ,1,31750,184995 ,1,31751,65 ,1,31752,210045 ,1,31753,323255 ,1,31754,65 ,1,31755,186595 ,1,31756,254280 ,1,31757,65 ,1,31758,65 ,1,31759,65 ,1,31760,65 ,1,31761,65 ,1,31762,65 ,1,31763,65 ,1,31764,65 ,1,31765,65 ,1,31766,174035 ,1,31767,65 ,1,31768,280845 ,1,31769,65 ,1,31770,65 ,1,31771,275860 ,1,31772,65 ,1,31773,348400 ,1,31774,65 ,1,31775,178045 ,1,31776,65 ,1,31777,286670 ,1,31778,65 ,1,31779,65 ,1,31780,171515 ,1,31781,305675 ,1,31782,65 ,1,31783,65 ,1,31784,255110 ,1,31785,317810 ,1,31786,65 ,1,31787,258870 ,1,31788,65 ,1,31789,334130 ,1,31790,65 ,1,31791,65 ,1,31792,246350 ,1,31793,65 ,1,31794,65 ,1,31795,65 ,1,31796,65 ,1,31797,312990 ,1,31798,65 ,1,31799,65 ,1,31800,65 ,1,31801,213115 ,1,31802,65 ,1,31803,65 ,1,31804,310910 ,1,31805,170880 ,1,31806,65 ,1,31807,65 ,1,31808,192475 ,1,31809,65 ,1,31810,65 ,1,31811,65 ,1,31812,223090 ,1,31813,321540 ,1,31814,65 ,1,31815,65 ,1,31816,65 ,1,31817,324325 ,1,31818,65 ,1,31819,327215 ,1,31820,65 ,1,31821,244410 ,1,31822,65 ,1,31823,65 ,1,31824,65 ,1,31825,65 ,1,31826,65 ,1,31827,65 ,1,31828,65 ,1,31829,246530 ,1,31830,65 ,1,31831,324850 ,1,31832,338480 ,1,31833,231860 ,1,31834,337705 ,1,31835,65 ,1,31836,65 ,1,31837,65 ,1,31838,65 ,1,31839,65 ,1,31840,65 ,1,31841,65 ,1,31842,65 ,1,31843,65 ,1,31844,65 ,1,31845,202890 ,1,31846,65 ,1,31847,300745 ,1,31848,65 ,1,31849,65 ,1,31850,65 ,1,31851,184175 ,1,31852,300775 ,1,31853,65 ,1,31854,65 ,1,31855,305580 ,1,31856,282375 ,1,31857,65 ,1,31858,65 ,1,31859,327445 ,1,31860,260835 ,1,31861,228275 ,1,31862,65 ,1,31863,65 ,1,31864,65 ,1,31865,65 ,1,31866,175610 ,1,31867,65 ,1,31868,65 ,1,31869,184780 ,1,31870,65 ,1,31871,65 ,1,31872,65 ,1,31873,65 ,1,31874,65 ,1,31875,188305 ,1,31876,65 ,1,31877,198735 ,1,31878,314565 ,1,31879,65 ,1,31880,222680 ,1,31881,65 ,1,31882,65 ,1,31883,65 ,1,31884,65 ,1,31885,65 ,1,31886,65 ,1,31887,65 ,1,31888,337540 ,1,31889,65 ,1,31890,65 ,1,31891,65 ,1,31892,257775 ,1,31893,65 ,1,31894,267585 ,1,31895,65 ,1,31896,65 ,1,31897,65 ,1,31898,186425 ,1,31899,65 ,1,31900,176285 ,1,31901,65 ,1,31902,65 ,1,31903,65 ,1,31904,65 ,1,31905,65 ,1,31906,65 ,1,31907,65 ,1,31908,65 ,1,31909,260900 ,1,31910,192910 ,1,31911,65 ,1,31912,301625 ,1,31913,65 ,1,31914,65 ,1,31915,330915 ,1,31916,262150 ,1,31917,65 ,1,31918,200735 ,1,31919,328365 ,1,31920,331455 ,1,31921,65 ,1,31922,65 ,1,31923,302970 ,1,31924,65 ,1,31925,235900 ,1,31926,268365 ,1,31927,338180 ,1,31928,65 ,1,31929,65 ,1,31930,65 ,1,31931,65 ,1,31932,65 ,1,31933,326635 ,1,31934,65 ,1,31935,65 ,1,31936,259475 ,1,31937,341295 ,1,31938,65 ,1,31939,65 ,1,31940,65 ,1,31941,65 ,1,31942,65 ,1,31943,65 ,1,31944,65 ,1,31945,65 ,1,31946,262065 ,1,31947,341700 ,1,31948,65 ,1,31949,348790 ,1,31950,252760 ,1,31951,65 ,1,31952,65 ,1,31953,65 ,1,31954,65 ,1,31955,186180 ,1,31956,215350 ,1,31957,253625 ,1,31958,208535 ,1,31959,279970 ,1,31960,313095 ,1,31961,65 ,1,31962,348780 ,1,31963,65 ,1,31964,65 ,1,31965,65 ,1,31966,65 ,1,31967,65 ,1,31968,65 ,1,31969,341375 ,1,31970,65 ,1,31971,65 ,1,31972,348770 ,1,31973,293685 ,1,31974,65 ,1,31975,266330 ,1,31976,348760 ,1,31977,65 ,1,31978,65 ,1,31979,332115 ,1,31980,65 ,1,31981,65 ,1,31982,65 ,1,31983,65 ,1,31984,65 ,1,31985,168965 ,1,31986,239680 ,1,31987,65 ,1,31988,65 ,1,31989,65 ,1,31990,65 ,1,31991,308725 ,1,31992,65 ,1,31993,295250 ,1,31994,337520 ,1,31995,65 ,1,31996,65 ,1,31997,65 ,1,31998,65 ,1,31999,65 ,1,32000,65 ,1,32001,65 ,1,32002,65 ,1,32003,65 ,1,32004,65 ,1,32005,65 ,1,32006,65 ,1,32007,65 ,1,32008,65 ,1,32009,204895 ,1,32010,65 ,1,32011,65 ,1,32012,321115 ,1,32013,65 ,1,32014,200405 ,1,32015,202165 ,1,32016,330990 ,1,32017,65 ,1,32018,65 ,1,32019,65 ,1,32020,65 ,1,32021,65 ,1,32022,330965 ,1,32023,65 ,1,32024,295775 ,1,32025,65 ,1,32026,65 ,1,32027,65 ,1,32028,298295 ,1,32029,180655 ,1,32030,65 ,1,32031,259085 ,1,32032,65 ,1,32033,65 ,1,32034,308930 ,1,32035,65 ,1,32036,257785 ,1,32037,344850 ,1,32038,272085 ,1,32039,65 ,1,32040,190610 ,1,32041,282195 ,1,32042,287690 ,1,32043,171045 ,1,32044,246480 ,1,32045,65 ,1,32046,185785 ,1,32047,65 ,1,32048,259140 ,1,32049,253500 ,1,32050,65 ,1,32051,65 ,1,32052,65 ,1,32053,330345 ,1,32054,194960 ,1,32055,178530 ,1,32056,227400 ,1,32057,65 ,1,32058,65 ,1,32059,65 ,1,32060,298130 ,1,32061,319565 ,1,32062,65 ,1,32063,260400 ,1,32064,197720 ,1,32065,65 ,1,32066,65 ,1,32067,65 ,1,32068,288400 ,1,32069,238830 ,1,32070,207490 ,1,32071,252310 ,1,32072,65 ,1,32073,269855 ,1,32074,65 ,1,32075,65 ,1,32076,65 ,1,32077,331810 ,1,32078,65 ,1,32079,65 ,1,32080,65 ,1,32081,65 ,1,32082,65 ,1,32083,252545 ,1,32084,65 ,1,32085,65 ,1,32086,65 ,1,32087,65 ,1,32088,65 ,1,32089,65 ,1,32090,65 ,1,32091,65 ,1,32092,65 ,1,32093,65 ,1,32094,65 ,1,32095,289600 ,1,32096,279725 ,1,32097,264050 ,1,32098,65 ,1,32099,292340 ,1,32100,65 ,1,32101,65 ,1,32102,65 ,1,32103,65 ,1,32104,65 ,1,32105,330300 ,1,32106,65 ,1,32107,65 ,1,32108,65 ,1,32109,65 ,1,32110,65 ,1,32111,65 ,1,32112,318980 ,1,32113,65 ,1,32114,65 ,1,32115,281665 ,1,32116,65 ,1,32117,65 ,1,32118,65 ,1,32119,229925 ,1,32120,65 ,1,32121,65 ,1,32122,65 ,1,32123,344990 ,1,32124,65 ,1,32125,65 ,1,32126,65 ,1,32127,65 ,1,32128,183205 ,1,32129,249715 ,1,32130,65 ,1,32131,322760 ,1,32132,65 ,1,32133,328705 ,1,32134,65 ,1,32135,222710 ,1,32136,171650 ,1,32137,65 ,1,32138,65 ,1,32139,65 ,1,32140,65 ,1,32141,65 ,1,32142,317405 ,1,32143,65 ,1,32144,65 ,1,32145,191955 ,1,32146,215050 ,1,32147,65 ,1,32148,290260 ,1,32149,65 ,1,32150,237330 ,1,32151,223430 ,1,32152,65 ,1,32153,308565 ,1,32154,263855 ,1,32155,273260 ,1,32156,279625 ,1,32157,65 ,1,32158,65 ,1,32159,65 ,1,32160,65 ,1,32161,65 ,1,32162,346615 ,1,32163,65 ,1,32164,65 ,1,32165,65 ,1,32166,65 ,1,32167,65 ,1,32168,65 ,1,32169,310205 ,1,32170,65 ,1,32171,310020 ,1,32172,348735 ,1,32173,65 ,1,32174,203000 ,1,32175,65 ,1,32176,65 ,1,32177,65 ,1,32178,338160 ,1,32179,65 ,1,32180,65 ,1,32181,65 ,1,32182,65 ,1,32183,65 ,1,32184,65 ,1,32185,65 ,1,32186,65 ,1,32187,65 ,1,32188,65 ,1,32189,65 ,1,32190,65 ,1,32191,65 ,1,32192,65 ,1,32193,288205 ,1,32194,347835 ,1,32195,65 ,1,32196,178115 ,1,32197,277955 ,1,32198,65 ,1,32199,329775 ,1,32200,317660 ,1,32201,65 ,1,32202,193580 ,1,32203,338075 ,1,32204,65 ,1,32205,280955 ,1,32206,65 ,1,32207,65 ,1,32208,65 ,1,32209,65 ,1,32210,65 ,1,32211,65 ,1,32212,65 ,1,32213,248405 ,1,32214,193240 ,1,32215,65 ,1,32216,291180 ,1,32217,188260 ,1,32218,65 ,1,32219,65 ,1,32220,285385 ,1,32221,227495 ,1,32222,65 ,1,32223,65 ,1,32224,65 ,1,32225,65 ,1,32226,65 ,1,32227,351900 ,1,32228,185245 ,1,32229,65 ,1,32230,65 ,1,32231,343005 ,1,32232,65 ,1,32233,65 ,1,32234,65 ,1,32235,65 ,1,32236,186240 ,1,32237,65 ,1,32238,65 ,1,32239,65 ,1,32240,65 ,1,32241,65 ,1,32242,241780 ,1,32243,268510 ,1,32244,65 ,1,32245,65 ,1,32246,65 ,1,32247,65 ,1,32248,272235 ,1,32249,65 ,1,32250,254555 ,1,32251,65 ,1,32252,65 ,1,32253,227090 ,1,32254,304525 ,1,32255,284700 ,1,32256,256300 ,1,32257,192995 ,1,32258,233045 ,1,32259,170720 ,1,32260,65 ,1,32261,65 ,1,32262,308020 ,1,32263,271635 ,1,32264,203935 ,1,32265,65 ,1,32266,337430 ,1,32267,290155 ,1,32268,65 ,1,32269,65 ,1,32270,65 ,1,32271,244500 ,1,32272,65 ,1,32273,65 ,1,32274,348725 ,1,32275,65 ,1,32276,329785 ,1,32277,295830 ,1,32278,65 ,1,32279,332190 ,1,32280,212310 ,1,32281,312385 ,1,32282,250040 ,1,32283,196730 ,1,32284,183710 ,1,32285,65 ,1,32286,65 ,1,32287,65 ,1,32288,65 ,1,32289,65 ,1,32290,65 ,1,32291,65 ,1,32292,65 ,1,32293,340355 ,1,32294,211450 ,1,32295,65 ,1,32296,65 ,1,32297,65 ,1,32298,65 ,1,32299,222140 ,1,32300,249865 ,1,32301,230355 ,1,32302,307640 ,1,32303,65 ,1,32304,65 ,1,32305,65 ,1,32306,65 ,1,32307,65 ,1,32308,65 ,1,32309,65 ,1,32310,192010 ,1,32311,65 ,1,32312,65 ,1,32313,65 ,1,32314,65 ,1,32315,270380 ,1,32316,323140 ,1,32317,65 ,1,32318,334750 ,1,32319,65 ,1,32320,227935 ,1,32321,65 ,1,32322,308320 ,1,32323,312970 ,1,32324,65 ,1,32325,65 ,1,32326,65 ,1,32327,183995 ,1,32328,239760 ,1,32329,65 ,1,32330,256370 ,1,32331,65 ,1,32332,65 ,1,32333,65 ,1,32334,65 ,1,32335,65 ,1,32336,192365 ,1,32337,308910 ,1,32338,65 ,1,32339,65 ,1,32340,65 ,1,32341,65 ,1,32342,315745 ,1,32343,211070 ,1,32344,262805 ,1,32345,272045 ,1,32346,228580 ,1,32347,329005 ,1,32348,246850 ,1,32349,224885 ,1,32350,335405 ,1,32351,184105 ,1,32352,321705 ,1,32353,65 ,1,32354,65 ,1,32355,65 ,1,32356,65 ,1,32357,65 ,1,32358,65 ,1,32359,316000 ,1,32360,189970 ,1,32361,65 ,1,32362,65 ,1,32363,255605 ,1,32364,65 ,1,32365,208245 ,1,32366,181805 ,1,32367,65 ,1,32368,274680 ,1,32369,318335 ,1,32370,65 ,1,32371,287145 ,1,32372,195485 ,1,32373,65 ,1,32374,333475 ,1,32375,282465 ,1,32376,179485 ,1,32377,335080 ,1,32378,65 ,1,32379,329460 ,1,32380,65 ,1,32381,172305 ,1,32382,343610 ,1,32383,65 ,1,32384,274065 ,1,32385,306930 ,1,32386,65 ,1,32387,65 ,1,32388,65 ,1,32389,333575 ,1,32390,65 ,1,32391,249430 ,1,32392,65 ,1,32393,345790 ,1,32394,254225 ,1,32395,65 ,1,32396,65 ,1,32397,250050 ,1,32398,193495 ,1,32399,65 ,1,32400,320975 ,1,32401,265665 ,1,32402,343535 ,1,32403,322015 ,1,32404,65 ,1,32405,65 ,1,32406,65 ,1,32407,65 ,1,32408,65 ,1,32409,65 ,1,32410,65 ,1,32411,65 ,1,32412,65 ,1,32413,348715 ,1,32414,65 ,1,32415,65 ,1,32416,65 ,1,32417,65 ,1,32418,225775 ,1,32419,178010 ,1,32420,210380 ,1,32421,252715 ,1,32422,287990 ,1,32423,65 ,1,32424,201485 ,1,32425,313625 ,1,32426,65 ,1,32427,65 ,1,32428,274800 ,1,32429,65 ,1,32430,65 ,1,32431,65 ,1,32432,65 ,1,32433,65 ,1,32434,288750 ,1,32435,326405 ,1,32436,65 ,1,32437,348705 ,1,32438,65 ,1,32439,181725 ,1,32440,298185 ,1,32441,65 ,1,32442,65 ,1,32443,65 ,1,32444,65 ,1,32445,65 ,1,32446,65 ,1,32447,65 ,1,32448,65 ,1,32449,263900 ,1,32450,241615 ,1,32451,65 ,1,32452,65 ,1,32453,65 ,1,32454,65 ,1,32455,65 ,1,32456,65 ,1,32457,65 ,1,32458,289995 ,1,32459,196260 ,1,32460,265675 ,1,32461,250140 ,1,32462,319805 ,1,32463,309580 ,1,32464,65 ,1,32465,199565 ,1,32466,298315 ,1,32467,65 ,1,32468,65 ,1,32469,65 ,1,32470,65 ,1,32471,341405 ,1,32472,175690 ,1,32473,249910 ,1,32474,289580 ,1,32475,270480 ,1,32476,197710 ,1,32477,65 ,1,32478,65 ,1,32479,209990 ,1,32480,65 ,1,32481,65 ,1,32482,329120 ,1,32483,65 ,1,32484,65 ,1,32485,65 ,1,32486,65 ,1,32487,65 ,1,32488,65 ,1,32489,302535 ,1,32490,65 ,1,32491,65 ,1,32492,323420 ,1,32493,65 ,1,32494,294015 ,1,32495,65 ,1,32496,65 ,1,32497,236735 ,1,32498,65 ,1,32499,65 ,1,32500,303285 ,1,32501,183235 ,1,32502,65 ,1,32503,341820 ,1,32504,65 ,1,32505,305375 ,1,32506,321905 ,1,32507,65 ,1,32508,65 ,1,32509,65 ,1,32510,243450 ,1,32511,65 ,1,32512,65 ,1,32513,65 ,1,32514,65 ,1,32515,65 ,1,32516,65 ,1,32517,65 ,1,32518,65 ,1,32519,65 ,1,32520,65 ,1,32521,288095 ,1,32522,233945 ,1,32523,221345 ,1,32524,318665 ,1,32525,240580 ,1,32526,65 ,1,32527,235705 ,1,32528,65 ,1,32529,227150 ,1,32530,214540 ,1,32531,65 ,1,32532,172480 ,1,32533,65 ,1,32534,65 ,1,32535,65 ,1,32536,262260 ,1,32537,183035 ,1,32538,184660 ,1,32539,181815 ,1,32540,65 ,1,32541,65 ,1,32542,65 ,1,32543,264920 ,1,32544,237995 ,1,32545,246905 ,1,32546,65 ,1,32547,65 ,1,32548,65 ,1,32549,65 ,1,32550,65 ,1,32551,65 ,1,32552,65 ,1,32553,211220 ,1,32554,280355 ,1,32555,249155 ,1,32556,65 ,1,32557,65 ,1,32558,65 ,1,32559,65 ,1,32560,65 ,1,32561,65 ,1,32562,65 ,1,32563,169290 ,1,32564,65 ,1,32565,65 ,1,32566,254775 ,1,32567,65 ,1,32568,65 ,1,32569,289635 ,1,32570,65 ,1,32571,348690 ,1,32572,65 ,1,32573,264550 ,1,32574,65 ,1,32575,65 ,1,32576,288380 ,1,32577,65 ,1,32578,65 ,1,32579,185980 ,1,32580,65 ,1,32581,65 ,1,32582,170820 ,1,32583,339365 ,1,32584,65 ,1,32585,65 ,1,32586,65 ,1,32587,297475 ,1,32588,176400 ,1,32589,275955 ,1,32590,65 ,1,32591,65 ,1,32592,65 ,1,32593,212745 ,1,32594,65 ,1,32595,242165 ,1,32596,293110 ,1,32597,65 ,1,32598,325160 ,1,32599,65 ,1,32600,65 ,1,32601,65 ,1,32602,180410 ,1,32603,183585 ,1,32604,65 ,1,32605,208660 ,1,32606,313990 ,1,32607,288915 ,1,32608,65 ,1,32609,65 ,1,32610,65 ,1,32611,65 ,1,32612,181735 ,1,32613,65 ,1,32614,65 ,1,32615,65 ,1,32616,65 ,1,32617,65 ,1,32618,65 ,1,32619,65 ,1,32620,65 ,1,32621,65 ,1,32622,65 ,1,32623,65 ,1,32624,65 ,1,32625,282750 ,1,32626,65 ,1,32627,65 ,1,32628,310430 ,1,32629,65 ,1,32630,65 ,1,32631,65 ,1,32632,274915 ,1,32633,333760 ,1,32634,65 ,1,32635,313790 ,1,32636,65 ,1,32637,244025 ,1,32638,324620 ,1,32639,65 ,1,32640,245810 ,1,32641,65 ,1,32642,65 ,1,32643,305000 ,1,32644,321695 ,1,32645,65 ,1,32646,270960 ,1,32647,278830 ,1,32648,65 ,1,32649,186775 ,1,32650,328005 ,1,32651,65 ,1,32652,324045 ,1,32653,65 ,1,32654,65 ,1,32655,348265 ,1,32656,65 ,1,32657,306750 ,1,32658,228250 ,1,32659,65 ,1,32660,241680 ,1,32661,65 ,1,32662,262280 ,1,32663,65 ,1,32664,65 ,1,32665,351680 ,1,32666,65 ,1,32667,65 ,1,32668,177550 ,1,32669,65 ,1,32670,289435 ,1,32671,169415 ,1,32672,65 ,1,32673,65 ,1,32674,65 ,1,32675,65 ,1,32676,301305 ,1,32677,65 ,1,32678,310920 ,1,32679,65 ,1,32680,65 ,1,32681,65 ,1,32682,174260 ,1,32683,189250 ,1,32684,65 ,1,32685,321560 ,1,32686,65 ,1,32687,65 ,1,32688,65 ,1,32689,241000 ,1,32690,279845 ,1,32691,65 ,1,32692,317500 ,1,32693,65 ,1,32694,65 ,1,32695,167115 ,1,32696,65 ,1,32697,65 ,1,32698,288115 ,1,32699,304565 ,1,32700,65 ,1,32701,65 ,1,32702,65 ,1,32703,238410 ,1,32704,257035 ,1,32705,338150 ,1,32706,65 ,1,32707,65 ,1,32708,65 ,1,32709,65 ,1,32710,65 ,1,32711,65 ,1,32712,65 ,1,32713,263325 ,1,32714,65 ,1,32715,240000 ,1,32716,334560 ,1,32717,65 ,1,32718,65 ,1,32719,65 ,1,32720,65 ,1,32721,299470 ,1,32722,65 ,1,32723,65 ,1,32724,65 ,1,32725,255275 ,1,32726,194660 ,1,32727,65 ,1,32728,327715 ,1,32729,65 ,1,32730,208855 ,1,32731,65 ,1,32732,65 ,1,32733,65 ,1,32734,65 ,1,32735,65 ,1,32736,65 ,1,32737,65 ,1,32738,236315 ,1,32739,65 ,1,32740,65 ,1,32741,286100 ,1,32742,264455 ,1,32743,65 ,1,32744,340085 ,1,32745,65 ,1,32746,65 ,1,32747,301535 ,1,32748,325905 ,1,32749,65 ,1,32750,340975 ,1,32751,65 ,1,32752,238670 ,1,32753,65 ,1,32754,65 ,1,32755,199120 ,1,32756,65 ,1,32757,65 ,1,32758,65 ,1,32759,264325 ,1,32760,65 ,1,32761,313950 ,1,32762,65 ,1,32763,65 ,1,32764,65 ,1,32765,65 ,1,32766,172700 ,1,32767,65 ,1,32768,176265 ,1,32769,65 ,2,14956,170435 ,2,822,36535 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260510 ,2,14979,412655 ,2,829,45 ,1,0,176480 ,1,1,45 ,1,2,205375 ,2,14956,169490 ,2,822,36535 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260520 ,2,14979,381110 ,2,829,45 ,2,14956,217015 ,2,822,36545 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379735 ,2,829,45 ,1,0,93460 ,1,1,206210 ,1,2,191745 ,1,3,205375 ,1,4,93450 ,1,5,206200 ,1,6,191735 ,1,7,205365 ,2,14956,215285 ,2,822,36545 ,2,14975,580260 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379010 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,228155 ,1,3,166650 ,1,4,45 ,1,5,228145 ,1,6,176795 ,1,7,45 ,1,8,228135 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,264690 ,2,822,36555 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,159435 ,2,14979,2415 ,2,829,45 ,1,0,206110 ,2,14956,264680 ,2,822,36555 ,2,14975,110 ,2,14976,78255 ,2,14977,23120 ,2,14965,45 ,2,14978,235340 ,2,14979,339710 ,2,829,45 ,1,0,203170 ,2,14956,182390 ,2,822,36555 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385580 ,2,829,45 ,1,0,203005 ,2,14956,264715 ,2,822,36555 ,2,14975,568350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339730 ,2,829,45 ,1,0,599895 ,2,14956,264680 ,2,822,36555 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159435 ,2,14979,339720 ,2,829,45 ,1,0,203170 ,1,1,203005 ,1,2,206110 ,2,14956,217015 ,2,822,36565 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379780 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,228180 ,1,3,166650 ,1,4,45 ,1,5,228170 ,2,14956,215285 ,2,822,36565 ,2,14975,580290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379075 ,2,829,45 ,1,0,203220 ,2,14956,264175 ,2,822,36575 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371870 ,2,829,45 ,1,0,203015 ,2,14956,217015 ,2,822,36575 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379595 ,2,829,45 ,1,0,599900 ,2,14956,215285 ,2,822,36575 ,2,14975,580340 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378870 ,2,829,45 ,1,0,203220 ,1,1,203015 ,2,14956,217015 ,2,822,36600 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379715 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,228225 ,1,3,166650 ,1,4,45 ,1,5,228200 ,1,6,176795 ,1,7,45 ,1,8,228190 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,215285 ,2,822,36600 ,2,14975,580350 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378980 ,2,829,45 ,1,0,206120 ,2,14956,211080 ,2,822,52735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375335 ,2,829,45 ,1,0,203230 ,2,14956,207140 ,2,822,52735 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373500 ,2,829,45 ,1,0,203025 ,2,14956,207085 ,2,822,52735 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378755 ,2,829,45 ,1,0,599905 ,2,14956,207130 ,2,822,52735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374015 ,2,829,45 ,1,0,203230 ,1,1,203025 ,1,2,206120 ,2,14956,213580 ,2,822,52735 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383635 ,2,829,45 ,1,0,175105 ,1,1,45 ,1,2,228235 ,1,3,166610 ,1,4,45 ,1,5,204455 ,1,6,171975 ,1,7,45 ,1,8,204130 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,213590 ,2,822,52735 ,2,14975,570750 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386545 ,2,829,45 ,1,0,597300 ,2,14956,264780 ,2,822,36630 ,2,14975,580375 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614710 ,1,1,615295 ,1,2,65 ,1,3,180660 ,1,4,204130 ,1,5,204975 ,1,6,99970 ,1,7,204455 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,65 ,1,14,228235 ,1,15,60460 ,1,16,99910 ,1,17,65 ,1,18,65 ,1,19,205265 ,1,20,60375 ,1,21,65 ,1,22,203060 ,1,23,203160 ,1,24,204435 ,1,25,65 ,1,26,203100 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,65 ,1,31,167890 ,1,32,218225 ,1,33,201805 ,2,14956,211025 ,2,822,36620 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378205 ,2,829,45 ,1,0,60460 ,1,1,218225 ,1,2,204130 ,1,3,205265 ,1,4,167890 ,1,5,204975 ,1,6,99970 ,1,7,99910 ,1,8,204455 ,1,9,203160 ,1,10,203100 ,1,11,180660 ,1,12,201805 ,1,13,60375 ,1,14,228235 ,1,15,204435 ,1,16,203060 ,2,14956,210935 ,2,822,36620 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371505 ,2,829,45 ,1,0,597895 ,2,14956,231615 ,2,822,36620 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392370 ,2,829,45 ,1,0,64750 ,2,14956,225300 ,2,822,36620 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398315 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,228245 ,1,3,166610 ,1,4,45 ,1,5,57795 ,2,14956,231625 ,2,822,36620 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339815 ,2,829,45 ,1,0,200615 ,2,14956,213385 ,2,822,36620 ,2,14975,599870 ,2,14976,24020 ,2,14977,65935 ,2,14965,45 ,2,14978,45 ,2,14979,364265 ,2,829,45 ,2,14956,213325 ,2,822,36620 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339835 ,2,829,45 ,1,0,255865 ,2,14956,211385 ,2,822,36620 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366220 ,2,829,45 ,1,0,616130 ,1,1,615295 ,1,2,190245 ,1,3,106495 ,1,4,193545 ,1,5,58505 ,1,6,99480 ,1,7,58755 ,1,8,78625 ,1,9,65 ,1,10,203920 ,1,11,65 ,1,12,125635 ,1,13,78615 ,1,14,65 ,1,15,65 ,1,16,65 ,1,17,65 ,1,18,58540 ,1,19,204140 ,1,20,189430 ,1,21,57835 ,1,22,189580 ,1,23,57755 ,1,24,65 ,1,25,92500 ,1,26,203930 ,1,27,65 ,1,28,57725 ,1,29,78865 ,1,30,65 ,1,31,203120 ,1,32,91650 ,1,33,65 ,1,34,200835 ,1,35,65 ,1,36,57795 ,1,37,65 ,1,38,57745 ,1,39,65 ,1,40,65 ,1,41,208890 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,204425 ,1,46,65 ,1,47,200585 ,1,48,189590 ,1,49,65 ,1,50,65 ,1,51,187710 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,78605 ,1,56,203150 ,1,57,206005 ,1,58,65 ,1,59,65 ,1,60,200625 ,1,61,65 ,1,62,65 ,1,63,57825 ,1,64,58895 ,1,65,200615 ,2,14956,264845 ,2,822,36620 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339845 ,2,829,45 ,1,0,57725 ,1,1,193545 ,1,2,125635 ,1,3,106495 ,1,4,189590 ,1,5,189580 ,1,6,189430 ,1,7,57835 ,1,8,58755 ,1,9,57825 ,1,10,187710 ,1,11,58540 ,1,12,78615 ,1,13,200615 ,1,14,78625 ,1,15,78605 ,1,16,57795 ,1,17,200585 ,1,18,58895 ,1,19,203120 ,1,20,78865 ,1,21,200625 ,1,22,57745 ,1,23,57755 ,1,24,58505 ,1,25,92500 ,1,26,203930 ,1,27,203920 ,1,28,190245 ,1,29,204425 ,1,30,204140 ,1,31,99480 ,1,32,208890 ,1,33,91650 ,1,34,203150 ,1,35,200835 ,1,36,206005 ,2,14956,264855 ,2,822,36620 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339865 ,2,829,45 ,1,0,166620 ,1,1,45 ,1,2,228255 ,2,14956,264865 ,2,822,36620 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339875 ,2,829,45 ,1,0,200595 ,2,14956,264875 ,2,822,36620 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339825 ,2,829,45 ,1,0,633535 ,1,1,615295 ,1,2,65 ,1,3,165290 ,1,4,161045 ,1,5,65 ,1,6,164430 ,1,7,164930 ,1,8,165330 ,1,9,164645 ,1,10,165585 ,1,11,65 ,1,12,65 ,1,13,165905 ,1,14,65 ,1,15,161485 ,1,16,65 ,1,17,65 ,1,18,165375 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,65 ,1,24,164940 ,1,25,65 ,1,26,163735 ,1,27,65 ,1,28,164375 ,1,29,65 ,1,30,164900 ,1,31,164760 ,1,32,65 ,1,33,165725 ,1,34,65 ,1,35,162370 ,1,36,65 ,1,37,65 ,1,38,163955 ,1,39,164150 ,1,40,65 ,1,41,65 ,1,42,65 ,1,43,65 ,1,44,65 ,1,45,65 ,1,46,65 ,1,47,65 ,1,48,161080 ,1,49,164015 ,1,50,164300 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,65 ,1,56,161565 ,1,57,65 ,1,58,162920 ,1,59,65 ,1,60,166220 ,1,61,164115 ,1,62,166200 ,1,63,165395 ,1,64,163725 ,1,65,162560 ,1,66,162500 ,1,67,163390 ,1,68,162275 ,1,69,65 ,1,70,65 ,1,71,65 ,1,72,65 ,1,73,165545 ,1,74,165280 ,1,75,65 ,1,76,65 ,1,77,65 ,1,78,65 ,1,79,163410 ,1,80,65 ,1,81,163645 ,1,82,65 ,1,83,65 ,1,84,65 ,1,85,161405 ,1,86,160815 ,1,87,161060 ,1,88,162420 ,1,89,65 ,1,90,163435 ,1,91,166180 ,1,92,162265 ,1,93,65 ,1,94,65 ,1,95,163345 ,1,96,163605 ,1,97,165475 ,1,98,165240 ,1,99,65 ,1,100,65 ,1,101,162680 ,1,102,161650 ,1,103,65 ,1,104,163935 ,1,105,165775 ,1,106,166290 ,1,107,162850 ,1,108,166065 ,1,109,65 ,1,110,65 ,1,111,65 ,1,112,65 ,1,113,166425 ,1,114,166325 ,1,115,162035 ,1,116,65 ,1,117,164285 ,1,118,161955 ,1,119,161660 ,1,120,163885 ,1,121,163225 ,1,122,65 ,1,123,162145 ,1,124,165180 ,1,125,164770 ,1,126,65 ,1,127,160855 ,1,128,65 ,1,129,164840 ,1,130,65 ,1,131,65 ,1,132,65 ,1,133,65 ,1,134,165320 ,1,135,164365 ,1,136,65 ,1,137,65 ,1,138,165505 ,1,139,163215 ,1,140,65 ,1,141,162005 ,1,142,65 ,1,143,165435 ,1,144,163945 ,1,145,65 ,1,146,162045 ,1,147,65 ,1,148,163000 ,1,149,65 ,1,150,65 ,1,151,65 ,1,152,65 ,1,153,162805 ,1,154,162015 ,1,155,163245 ,1,156,65 ,1,157,65 ,1,158,160845 ,1,159,163785 ,1,160,163535 ,1,161,65 ,1,162,65 ,1,163,65 ,1,164,65 ,1,165,65 ,1,166,65 ,1,167,161015 ,1,168,65 ,1,169,65 ,1,170,166130 ,1,171,161170 ,1,172,162055 ,1,173,65 ,1,174,165665 ,1,175,65 ,1,176,165635 ,1,177,164170 ,1,178,65 ,1,179,65 ,1,180,65 ,1,181,65 ,1,182,163355 ,1,183,164410 ,1,184,65 ,1,185,163665 ,1,186,161905 ,1,187,65 ,1,188,164180 ,1,189,65 ,1,190,162700 ,1,191,160925 ,1,192,164385 ,1,193,65 ,1,194,166120 ,1,195,161315 ,1,196,65 ,1,197,165705 ,1,198,161505 ,1,199,65 ,1,200,166240 ,1,201,160785 ,1,202,161815 ,1,203,161680 ,1,204,163865 ,1,205,161885 ,1,206,65 ,1,207,161935 ,1,208,65 ,1,209,65 ,1,210,161705 ,1,211,164700 ,1,212,65 ,1,213,164050 ,1,214,162320 ,1,215,161945 ,1,216,65 ,1,217,65 ,1,218,65 ,1,219,164440 ,1,220,65 ,1,221,65 ,1,222,65 ,1,223,65 ,1,224,65 ,1,225,65 ,1,226,165070 ,1,227,65 ,1,228,160835 ,1,229,163185 ,1,230,162450 ,1,231,65 ,1,232,65 ,1,233,163145 ,1,234,65 ,1,235,65 ,1,236,161600 ,1,237,65 ,1,238,166010 ,1,239,161415 ,1,240,65 ,1,241,65 ,1,242,65 ,1,243,163035 ,1,244,65 ,1,245,65 ,1,246,65 ,1,247,65 ,1,248,65 ,1,249,65 ,1,250,163840 ,1,251,65 ,1,252,65 ,1,253,65 ,1,254,65 ,1,255,65 ,1,256,65 ,1,257,65 ,1,258,65 ,1,259,65 ,1,260,165865 ,1,261,161575 ,1,262,166435 ,1,263,65 ,1,264,161790 ,1,265,65 ,1,266,65 ,1,267,65 ,1,268,65 ,1,269,65 ,1,270,65 ,1,271,162225 ,1,272,65 ,1,273,65 ,1,274,65 ,1,275,65 ,1,276,161495 ,1,277,164310 ,1,278,65 ,1,279,65 ,1,280,160955 ,1,281,65 ,1,282,65 ,1,283,162900 ,1,284,65 ,1,285,165945 ,1,286,65 ,1,287,166300 ,1,288,165965 ,1,289,162720 ,1,290,165605 ,1,291,162880 ,1,292,165160 ,1,293,65 ,1,294,65 ,1,295,65 ,1,296,65 ,1,297,65 ,1,298,65 ,1,299,65 ,1,300,65 ,1,301,65 ,1,302,164525 ,1,303,166095 ,1,304,161035 ,1,305,65 ,1,306,65 ,1,307,165260 ,1,308,164610 ,1,309,65 ,1,310,65 ,1,311,65 ,1,312,65 ,1,313,161160 ,1,314,163125 ,1,315,162120 ,1,316,65 ,1,317,65 ,1,318,65 ,1,319,65 ,1,320,65 ,1,321,65 ,1,322,165445 ,1,323,65 ,1,324,163775 ,1,325,65 ,1,326,65 ,1,327,162215 ,1,328,65 ,1,329,65 ,1,330,165340 ,1,331,65 ,1,332,65 ,1,333,65 ,1,334,65 ,1,335,65 ,1,336,65 ,1,337,65 ,1,338,65 ,1,339,165455 ,1,340,65 ,1,341,65 ,1,342,164950 ,1,343,65 ,1,344,65 ,1,345,165805 ,1,346,165755 ,1,347,65 ,1,348,165135 ,1,349,65 ,1,350,65 ,1,351,65 ,1,352,65 ,1,353,161985 ,1,354,65 ,1,355,65 ,1,356,65 ,1,357,65 ,1,358,65 ,1,359,65 ,1,360,65 ,1,361,65 ,1,362,65 ,1,363,65 ,1,364,65 ,1,365,65 ,1,366,65 ,1,367,162165 ,1,368,161255 ,1,369,65 ,1,370,166345 ,1,371,163465 ,1,372,65 ,1,373,65 ,1,374,65 ,1,375,161305 ,1,376,65 ,1,377,165270 ,1,378,65 ,1,379,65 ,1,380,65 ,1,381,65 ,1,382,161025 ,1,383,165875 ,1,384,164555 ,1,385,65 ,1,386,65 ,1,387,164815 ,1,388,65 ,1,389,65 ,1,390,65 ,1,391,161780 ,1,392,65 ,1,393,160985 ,1,394,165250 ,1,395,161875 ,1,396,165485 ,1,397,161620 ,1,398,65 ,1,399,65 ,1,400,65 ,1,401,65 ,1,402,65 ,1,403,65 ,1,404,65 ,1,405,65 ,1,406,65 ,1,407,163820 ,1,408,65 ,1,409,65 ,1,410,161805 ,1,411,65 ,1,412,65 ,1,413,65 ,1,414,65 ,1,415,65 ,1,416,163015 ,1,417,163555 ,1,418,65 ,1,419,163155 ,1,420,161380 ,1,421,65 ,1,422,65 ,1,423,65 ,1,424,165785 ,1,425,65 ,1,426,65 ,1,427,65 ,1,428,65 ,1,429,65 ,1,430,165955 ,1,431,162340 ,1,432,65 ,1,433,163985 ,1,434,65 ,1,435,65 ,1,436,163090 ,1,437,163515 ,1,438,65 ,1,439,65 ,1,440,65 ,1,441,65 ,1,442,65 ,1,443,65 ,1,444,162595 ,1,445,162110 ,1,446,166250 ,1,447,164005 ,1,448,65 ,1,449,164105 ,1,450,163445 ,1,451,65 ,1,452,164545 ,1,453,163455 ,1,454,164420 ,1,455,161295 ,1,456,163875 ,1,457,65 ,1,458,65 ,1,459,163320 ,1,460,166390 ,1,461,65 ,1,462,65 ,1,463,164730 ,1,464,65 ,1,465,161180 ,1,466,163400 ,1,467,165035 ,1,468,65 ,1,469,162710 ,1,470,65 ,1,471,65 ,1,472,162690 ,1,473,65 ,1,474,164720 ,1,475,65 ,1,476,65 ,1,477,65 ,1,478,65 ,1,479,162130 ,1,480,65 ,1,481,65 ,1,482,65 ,1,483,65 ,1,484,65 ,1,485,65 ,1,486,65 ,1,487,65 ,1,488,65 ,1,489,65 ,1,490,161760 ,1,491,65 ,1,492,164330 ,1,493,65 ,1,494,163290 ,1,495,161725 ,1,496,65 ,1,497,164485 ,1,498,65 ,1,499,166315 ,1,500,65 ,1,501,65 ,1,502,65 ,1,503,65 ,1,504,65 ,1,505,163025 ,1,506,65 ,1,507,65 ,1,508,165230 ,1,509,164910 ,1,510,161545 ,1,511,65 ,1,512,65 ,1,513,65 ,1,514,65 ,1,515,65 ,1,516,162330 ,1,517,65 ,1,518,65 ,1,519,165495 ,1,520,165220 ,1,521,65 ,1,522,65 ,1,523,65 ,1,524,65 ,1,525,165675 ,1,526,65 ,1,527,166445 ,1,528,162775 ,1,529,65 ,1,530,163615 ,1,531,65 ,1,532,65 ,1,533,65 ,1,534,65 ,1,535,65 ,1,536,164655 ,1,537,161610 ,1,538,165925 ,1,539,160975 ,1,540,65 ,1,541,166085 ,1,542,65 ,1,543,65 ,1,544,65 ,1,545,65 ,1,546,161425 ,1,547,163205 ,1,548,165060 ,1,549,65 ,1,550,65 ,1,551,65 ,1,552,65 ,1,553,65 ,1,554,65 ,1,555,162390 ,1,556,65 ,1,557,65 ,1,558,65 ,1,559,65 ,1,560,162490 ,1,561,65 ,1,562,165735 ,1,563,65 ,1,564,161200 ,1,565,164850 ,1,566,65 ,1,567,164475 ,1,568,65 ,1,569,65 ,1,570,65 ,1,571,65 ,1,572,165795 ,1,573,162100 ,1,574,65 ,1,575,164080 ,1,576,65 ,1,577,165005 ,1,578,165105 ,1,579,65 ,1,580,65 ,1,581,166140 ,1,582,164580 ,1,583,65 ,1,584,65 ,1,585,65 ,1,586,65 ,1,587,65 ,1,588,162175 ,1,589,65 ,1,590,65 ,1,591,162350 ,1,592,65 ,1,593,161130 ,1,594,162470 ,1,595,65 ,1,596,65 ,1,597,65 ,1,598,65 ,1,599,65 ,1,600,65 ,1,601,65 ,1,602,162860 ,1,603,163110 ,1,604,65 ,1,605,161715 ,1,606,163195 ,1,607,165150 ,1,608,161445 ,1,609,65 ,1,610,65 ,1,611,65 ,1,612,65 ,1,613,163765 ,1,614,164920 ,1,615,165125 ,1,616,65 ,1,617,65 ,1,618,160995 ,1,619,161360 ,1,620,65 ,1,621,65 ,1,622,65 ,1,623,65 ,1,624,65 ,1,625,162890 ,1,626,65 ,1,627,65 ,1,628,65 ,1,629,165080 ,1,630,161455 ,1,631,163575 ,1,632,163965 ,1,633,65 ,1,634,161475 ,1,635,65 ,1,636,65 ,1,637,65 ,1,638,165895 ,1,639,163855 ,1,640,65 ,1,641,166000 ,1,642,164600 ,1,643,162155 ,1,644,165990 ,1,645,65 ,1,646,163655 ,1,647,164625 ,1,648,65 ,1,649,164095 ,1,650,165555 ,1,651,65 ,1,652,163300 ,1,653,65 ,1,654,161285 ,1,655,162910 ,1,656,165350 ,1,657,65 ,1,658,65 ,1,659,65 ,1,660,65 ,1,661,65 ,1,662,65 ,1,663,65 ,1,664,162815 ,1,665,65 ,1,666,166075 ,1,667,164210 ,1,668,160945 ,1,669,163715 ,1,670,166335 ,1,671,162285 ,1,672,65 ,1,673,65 ,1,674,65 ,1,675,164275 ,1,676,65 ,1,677,65 ,1,678,65 ,1,679,65 ,1,680,164070 ,1,681,165365 ,1,682,65 ,1,683,160805 ,1,684,65 ,1,685,65 ,1,686,162660 ,1,687,161515 ,1,688,65 ,1,689,65 ,1,690,65 ,1,691,161590 ,1,692,65 ,1,693,65 ,1,694,65 ,1,695,165565 ,1,696,65 ,1,697,162585 ,1,698,65 ,1,699,164320 ,1,700,65 ,1,701,65 ,1,702,65 ,1,703,165695 ,1,704,162670 ,1,705,166410 ,1,706,164860 ,1,707,161190 ,1,708,162380 ,1,709,161395 ,1,710,65 ,1,711,65 ,1,712,65 ,1,713,65 ,1,714,165170 ,1,715,163755 ,1,716,166110 ,1,717,162605 ,1,718,65 ,1,719,165915 ,1,720,163505 ,1,721,65 ,1,722,65 ,1,723,65 ,1,724,162795 ,1,725,65 ,1,726,166230 ,1,727,65 ,1,728,164590 ,1,729,65 ,1,730,65 ,1,731,65 ,1,732,65 ,1,733,65 ,1,734,65 ,1,735,163045 ,1,736,65 ,1,737,65 ,1,738,65 ,1,739,65 ,1,740,65 ,1,741,65 ,1,742,164265 ,1,743,65 ,1,744,65 ,1,745,164220 ,1,746,161770 ,1,747,161670 ,1,748,166020 ,1,749,162650 ,1,750,165015 ,1,751,65 ,1,752,65 ,1,753,161835 ,1,754,160935 ,1,755,65 ,1,756,65 ,1,757,65 ,1,758,65 ,1,759,160965 ,1,760,65 ,1,761,65 ,1,762,65 ,1,763,162255 ,1,764,65 ,1,765,65 ,1,766,65 ,1,767,65 ,1,768,65 ,1,769,161275 ,1,770,163675 ,1,771,165975 ,1,772,65 ,1,773,65 ,1,774,164255 ,1,775,65 ,1,776,65 ,1,777,65 ,1,778,162980 ,1,779,65 ,1,780,161150 ,1,781,164505 ,1,782,162615 ,1,783,65 ,1,784,162235 ,1,785,163565 ,1,786,65 ,1,787,65 ,1,788,65 ,1,789,65 ,1,790,65 ,1,791,163525 ,1,792,165115 ,1,793,165535 ,1,794,65 ,1,795,65 ,1,796,65 ,1,797,164870 ,1,798,65 ,1,799,65 ,1,800,162205 ,1,801,165595 ,1,802,166270 ,1,803,162440 ,1,804,165575 ,1,805,161465 ,1,806,166190 ,1,807,162430 ,1,808,65 ,1,809,65 ,1,810,163310 ,1,811,65 ,1,812,65 ,1,813,65 ,1,814,65 ,1,815,65 ,1,816,65 ,1,817,65 ,1,818,163235 ,1,819,65 ,1,820,163745 ,1,821,65 ,1,822,164395 ,1,823,160865 ,1,824,163255 ,1,825,161350 ,1,826,164805 ,1,827,165645 ,1,828,163135 ,1,829,161895 ,1,830,65 ,1,831,161555 ,1,832,65 ,1,833,65 ,1,834,65 ,1,835,65 ,1,836,65 ,1,837,65 ,1,838,65 ,1,839,65 ,1,840,65 ,1,841,65 ,1,842,65 ,1,843,65 ,1,844,65 ,1,845,65 ,1,846,65 ,1,847,65 ,1,848,65 ,1,849,65 ,1,850,65 ,1,851,65 ,1,852,65 ,1,853,164960 ,1,854,65 ,1,855,65 ,1,856,65 ,1,857,65 ,1,858,65 ,1,859,164535 ,1,860,65 ,1,861,65 ,1,862,65 ,1,863,162530 ,1,864,65 ,1,865,65 ,1,866,65 ,1,867,65 ,1,868,65 ,1,869,65 ,1,870,160795 ,1,871,163830 ,1,872,162755 ,1,873,65 ,1,874,65 ,1,875,65 ,1,876,165745 ,1,877,165385 ,1,878,65 ,1,879,65 ,1,880,162990 ,1,881,65 ,1,882,65 ,1,883,65 ,1,884,65 ,1,885,65 ,1,886,65 ,1,887,65 ,1,888,65 ,1,889,65 ,1,890,65 ,1,891,65 ,1,892,65 ,1,893,162765 ,1,894,161070 ,1,895,65 ,1,896,65 ,1,897,65 ,1,898,65 ,1,899,65 ,1,900,65 ,1,901,65 ,1,902,65 ,1,903,161090 ,1,904,65 ,1,905,65 ,1,906,65 ,1,907,65 ,1,908,65 ,1,909,65 ,1,910,65 ,1,911,65 ,1,912,65 ,1,913,65 ,1,914,65 ,1,915,65 ,1,916,65 ,1,917,65 ,1,918,165655 ,1,919,163635 ,1,920,65 ,1,921,65 ,1,922,65 ,1,923,65 ,1,924,65 ,1,925,166380 ,1,926,164825 ,1,927,65 ,1,928,166400 ,1,929,164740 ,1,930,163810 ,1,931,163995 ,1,932,65 ,1,933,65 ,1,934,164635 ,1,935,65 ,1,936,65 ,1,937,65 ,1,938,162970 ,1,939,65 ,1,940,161925 ,1,941,65 ,1,942,65 ,1,943,162870 ,1,944,164495 ,1,945,65 ,1,946,165025 ,1,947,164160 ,1,948,164125 ,1,949,161140 ,1,950,161695 ,1,951,65 ,1,952,65 ,1,953,65 ,1,954,162550 ,1,955,65 ,1,956,65 ,1,957,164795 ,1,958,65 ,1,959,65 ,1,960,163420 ,1,961,163365 ,1,962,161245 ,1,963,162480 ,1,964,65 ,1,965,65 ,1,966,65 ,1,967,65 ,1,968,161265 ,1,969,65 ,1,970,65 ,1,971,65 ,1,972,165685 ,1,973,65 ,1,974,65 ,1,975,65 ,1,976,65 ,1,977,163335 ,1,978,65 ,1,979,65 ,1,980,163100 ,1,981,65 ,1,982,65 ,1,983,65 ,1,984,162540 ,1,985,161995 ,1,986,65 ,1,987,163545 ,1,988,65 ,1,989,165855 ,1,990,162360 ,1,991,65 ,1,992,65 ,1,993,165050 ,1,994,166280 ,1,995,161825 ,1,996,65 ,1,997,164200 ,1,998,162785 ,1,999,65 ,1,1000,166170 ,1,1001,65 ,1,1002,164750 ,1,1003,65 ,1,1004,65 ,1,1005,65 ,1,1006,65 ,1,1007,162025 ,1,1008,65 ,1,1009,161370 ,1,1010,163080 ,1,1011,164970 ,1,1012,164060 ,1,1013,65 ,1,1014,162825 ,1,1015,164190 ,1,1016,65 ,1,1017,163625 ,1,1018,65 ,1,1019,65 ,1,1020,65 ,1,1021,65 ,1,1022,165425 ,1,1023,165885 ,1,1024,65 ,1,1025,164710 ,2,14956,264890 ,2,822,36620 ,2,14975,580365 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,2,14956,213325 ,2,822,36610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371105 ,2,829,45 ,1,0,207385 ,1,1,200595 ,1,2,206180 ,1,3,189375 ,1,4,205245 ,1,5,203430 ,1,6,203110 ,1,7,200795 ,1,8,203130 ,2,14956,207730 ,2,822,36610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339885 ,2,829,45 ,1,0,175890 ,1,1,45 ,1,2,228280 ,1,3,166620 ,1,4,45 ,1,5,228270 ,2,14956,222225 ,2,822,36610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339905 ,2,829,45 ,1,0,200605 ,2,14956,264955 ,2,822,36610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339895 ,2,829,45 ,1,0,170875 ,2,14956,264965 ,2,822,36610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,339915 ,2,829,45 ,2,14956,264975 ,2,822,36610 ,2,14975,580355 ,2,14976,24020 ,2,14977,62775 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,57710 ,1,1,200605 ,1,2,170875 ,1,3,170770 ,1,4,187675 ,1,5,189395 ,1,6,189385 ,1,7,187700 ,1,8,169545 ,1,9,189420 ,1,10,205255 ,1,11,203440 ,1,12,200060 ,1,13,200805 ,1,14,203140 ,2,14956,217015 ,2,822,36665 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379925 ,2,829,45 ,2,14956,215285 ,2,822,36665 ,2,14975,580405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379205 ,2,829,45 ,1,0,206320 ,1,1,170330 ,1,2,206865 ,1,3,217235 ,1,4,208930 ,2,14956,265025 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409950 ,2,829,45 ,2,14956,265050 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409955 ,2,829,45 ,1,0,210650 ,1,1,209975 ,2,14956,184860 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339970 ,2,829,45 ,2,14956,184890 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409960 ,2,829,45 ,1,0,210660 ,1,1,209985 ,2,14956,265060 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,339980 ,2,829,45 ,2,14956,213225 ,2,822,36675 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160040 ,2,14979,339990 ,2,829,45 ,1,0,58020 ,1,1,210670 ,1,2,209995 ,2,14956,213225 ,2,822,36675 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235350 ,2,14979,340010 ,2,829,45 ,2,14956,213305 ,2,822,36675 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160060 ,2,14979,361630 ,2,829,45 ,1,0,622995 ,1,1,615295 ,1,2,57855 ,1,3,65 ,1,4,210460 ,1,5,65 ,1,6,65 ,1,7,88890 ,1,8,65 ,1,9,210450 ,1,10,65 ,1,11,65 ,1,12,65 ,1,13,210440 ,1,14,210535 ,1,15,206810 ,1,16,65 ,1,17,210600 ,1,18,210245 ,1,19,210680 ,1,20,210005 ,1,21,57630 ,1,22,203995 ,1,23,65 ,1,24,57620 ,1,25,65 ,1,26,204020 ,1,27,65 ,1,28,210590 ,1,29,65 ,1,30,65 ,1,31,65 ,1,32,210475 ,1,33,57845 ,2,14956,213290 ,2,822,36675 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235360 ,2,14979,340020 ,2,829,45 ,1,0,206810 ,1,1,210680 ,1,2,210005 ,1,3,210245 ,1,4,210590 ,1,5,210600 ,1,6,57630 ,1,7,210475 ,1,8,204020 ,1,9,88890 ,1,10,210460 ,1,11,210440 ,1,12,210535 ,1,13,210450 ,1,14,57620 ,1,15,57845 ,1,16,57855 ,1,17,203995 ,2,14956,218310 ,2,822,36675 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354940 ,2,829,45 ,2,14956,184970 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,409965 ,2,829,45 ,1,0,257715 ,2,14956,265070 ,2,822,36675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340040 ,2,829,45 ,1,0,91120 ,1,1,83020 ,1,2,114690 ,1,3,114700 ,1,4,225285 ,2,14956,265080 ,2,822,36675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340080 ,2,829,45 ,1,0,176805 ,1,1,45 ,1,2,228330 ,1,3,166650 ,1,4,45 ,1,5,228300 ,1,6,176795 ,1,7,45 ,1,8,228290 ,1,9,45 ,1,10,45 ,1,11,45 ,2,14956,265100 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340090 ,2,829,45 ,1,0,206150 ,2,14956,213325 ,2,822,36675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370855 ,2,829,45 ,1,0,203240 ,2,14956,213290 ,2,822,36675 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160060 ,2,14979,340030 ,2,829,45 ,1,0,203040 ,2,14956,218390 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340100 ,2,829,45 ,1,0,647220 ,1,1,615295 ,1,2,15895 ,1,3,14920 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,16205 ,1,12,15035 ,1,13,15485 ,1,14,15640 ,1,15,65 ,1,16,15905 ,1,17,65 ,1,18,65 ,1,19,65 ,1,20,65 ,1,21,65 ,1,22,65 ,1,23,15470 ,1,24,15010 ,1,25,15155 ,1,26,65 ,1,27,65 ,1,28,65 ,1,29,65 ,1,30,15840 ,1,31,16010 ,1,32,65 ,1,33,65 ,1,34,15235 ,1,35,15675 ,1,36,16085 ,1,37,14995 ,1,38,15175 ,1,39,16120 ,1,40,16050 ,1,41,15665 ,1,42,65 ,1,43,65 ,1,44,16165 ,1,45,15425 ,1,46,16065 ,1,47,65 ,1,48,15255 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,65 ,1,53,65 ,1,54,65 ,1,55,15550 ,1,56,15280 ,1,57,65 ,1,58,65 ,1,59,65 ,1,60,65 ,1,61,65 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,15095 ,1,66,15120 ,1,67,65 ,1,68,65 ,1,69,65 ,1,70,65 ,1,71,65 ,1,72,65 ,1,73,65 ,1,74,65 ,1,75,65 ,1,76,16075 ,1,77,15795 ,1,78,65 ,1,79,65 ,1,80,65 ,1,81,65 ,1,82,16290 ,1,83,15105 ,1,84,65 ,1,85,65 ,1,86,65 ,1,87,15050 ,1,88,15985 ,1,89,65 ,1,90,16295 ,1,91,65 ,1,92,65 ,1,93,15825 ,1,94,65 ,1,95,65 ,1,96,65 ,1,97,65 ,1,98,15580 ,1,99,15710 ,1,100,65 ,1,101,65 ,1,102,65 ,1,103,65 ,1,104,65 ,1,105,65 ,1,106,65 ,1,107,65 ,1,108,15310 ,1,109,15335 ,1,110,15020 ,1,111,15685 ,1,112,16020 ,1,113,65 ,1,114,65 ,1,115,65 ,1,116,65 ,1,117,65 ,1,118,65 ,1,119,15355 ,1,120,15375 ,1,121,65 ,1,122,14895 ,1,123,65 ,1,124,65 ,1,125,16305 ,1,126,65 ,1,127,65 ,1,128,15560 ,1,129,16225 ,1,130,16195 ,1,131,65 ,1,132,65 ,1,133,65 ,1,134,65 ,1,135,65 ,1,136,65 ,1,137,65 ,1,138,65 ,1,139,65 ,1,140,65 ,1,141,15915 ,1,142,65 ,1,143,65 ,1,144,65 ,1,145,65 ,1,146,65 ,1,147,15850 ,1,148,65 ,1,149,65 ,1,150,65 ,1,151,14930 ,1,152,16030 ,1,153,65 ,1,154,15805 ,1,155,16280 ,1,156,15595 ,1,157,15160 ,1,158,15645 ,1,159,65 ,1,160,65 ,1,161,65 ,1,162,15245 ,1,163,15390 ,1,164,65 ,1,165,65 ,1,166,65 ,1,167,16215 ,1,168,65 ,1,169,15220 ,1,170,65 ,1,171,65 ,1,172,15140 ,1,173,15365 ,1,174,15500 ,1,175,16185 ,1,176,15860 ,1,177,65 ,1,178,15045 ,1,179,14905 ,1,180,15870 ,1,181,15885 ,1,182,15440 ,1,183,16155 ,1,184,16110 ,1,185,15265 ,1,186,15115 ,1,187,65 ,1,188,15785 ,1,189,15755 ,1,190,65 ,1,191,65 ,1,192,65 ,1,193,65 ,1,194,65 ,1,195,65 ,1,196,65 ,1,197,65 ,1,198,65 ,1,199,65 ,1,200,65 ,1,201,65 ,1,202,65 ,1,203,65 ,1,204,15480 ,1,205,15655 ,1,206,65 ,1,207,15695 ,1,208,65 ,1,209,16175 ,1,210,15610 ,1,211,16130 ,1,212,65 ,1,213,15970 ,1,214,65 ,1,215,65 ,1,216,15605 ,1,217,16000 ,1,218,65 ,1,219,15230 ,1,220,16100 ,1,221,65 ,1,222,15950 ,1,223,65 ,1,224,14940 ,1,225,15765 ,1,226,15345 ,1,227,14985 ,1,228,15060 ,1,229,65 ,1,230,65 ,1,231,15570 ,1,232,65 ,1,233,65 ,1,234,65 ,1,235,65 ,1,236,15210 ,1,237,65 ,1,238,15775 ,1,239,65 ,1,240,65 ,1,241,65 ,1,242,15455 ,1,243,65 ,1,244,65 ,1,245,65 ,1,246,65 ,1,247,15320 ,1,248,15430 ,1,249,65 ,1,250,65 ,1,251,15620 ,1,252,15960 ,1,253,65 ,1,254,15815 ,1,255,65 ,1,256,65 ,1,257,65 ,2,14956,207730 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340110 ,2,829,45 ,1,0,599945 ,2,14956,211025 ,2,822,36675 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378115 ,2,829,45 ,1,0,264730 ,1,1,265075 ,2,14956,265110 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410005 ,2,829,45 ,1,0,633960 ,1,1,615295 ,1,2,122590 ,1,3,206430 ,1,4,65 ,1,5,65 ,1,6,130110 ,1,7,65 ,1,8,65 ,1,9,65 ,1,10,209055 ,1,11,208950 ,1,12,210335 ,1,13,65 ,1,14,108695 ,1,15,65 ,1,16,210545 ,1,17,155710 ,1,18,65 ,1,19,210040 ,1,20,65 ,1,21,65 ,1,22,210225 ,1,23,210170 ,1,24,65 ,1,25,65 ,1,26,109770 ,1,27,108705 ,1,28,65 ,1,29,210125 ,1,30,65 ,1,31,188630 ,1,32,65 ,1,33,122545 ,1,34,210275 ,1,35,65 ,1,36,203300 ,1,37,208940 ,1,38,71140 ,1,39,206150 ,1,40,65 ,1,41,208975 ,1,42,203040 ,1,43,122580 ,1,44,65 ,1,45,210690 ,1,46,210160 ,1,47,206875 ,1,48,210150 ,1,49,59490 ,1,50,204955 ,1,51,210030 ,1,52,210315 ,1,53,210720 ,1,54,204965 ,1,55,206330 ,1,56,71130 ,1,57,203240 ,1,58,71120 ,1,59,65 ,1,60,188660 ,1,61,210395 ,1,62,155700 ,1,63,130100 ,1,64,65 ,1,65,210255 ,2,14956,265120 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410010 ,2,829,45 ,1,0,208950 ,1,1,59490 ,1,2,206875 ,1,3,206330 ,1,4,203240 ,1,5,203040 ,1,6,206150 ,1,7,210150 ,1,8,122590 ,1,9,122580 ,1,10,206430 ,1,11,204965 ,1,12,204955 ,1,13,210040 ,1,14,210030 ,1,15,210720 ,1,16,210545 ,1,17,210170 ,1,18,210160 ,1,19,210315 ,1,20,210275 ,1,21,210255 ,1,22,210225 ,1,23,210335 ,1,24,155700 ,1,25,210395 ,1,26,155710 ,1,27,210125 ,1,28,71140 ,1,29,130110 ,1,30,122545 ,1,31,188660 ,1,32,71130 ,1,33,130100 ,1,34,109770 ,1,35,188630 ,1,36,209055 ,1,37,71120 ,1,38,210690 ,1,39,208940 ,1,40,208975 ,1,41,108705 ,1,42,108695 ,1,43,203300 ,2,14956,265130 ,2,822,36675 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340000 ,2,829,45 ,1,0,661115 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,5630 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,185 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,9270 ,1,13,673150 ,1,14,5650 ,1,15,65 ,1,16,673275 ,1,17,670725 ,1,18,65 ,1,19,673095 ,1,20,65 ,1,21,65 ,1,22,8610 ,1,23,13855 ,1,24,669435 ,1,25,673785 ,1,26,12270 ,1,27,672870 ,1,28,3300 ,1,29,10775 ,1,30,12290 ,1,31,11830 ,1,32,8455 ,1,33,670915 ,1,34,11270 ,1,35,673010 ,1,36,673495 ,1,37,65 ,1,38,65 ,1,39,65 ,1,40,65 ,1,41,668710 ,1,42,3765 ,1,43,11280 ,1,44,65 ,1,45,65 ,1,46,7095 ,1,47,1225 ,1,48,65 ,1,49,65 ,1,50,671460 ,1,51,672335 ,1,52,674500 ,1,53,9600 ,1,54,5545 ,1,55,65 ,1,56,65 ,1,57,674425 ,1,58,65 ,1,59,14625 ,1,60,12620 ,1,61,65 ,1,62,669625 ,1,63,673605 ,1,64,65 ,1,65,4615 ,1,66,65 ,1,67,674105 ,1,68,670970 ,1,69,8310 ,1,70,65 ,1,71,65 ,1,72,65 ,1,73,65 ,1,74,65 ,1,75,1205 ,1,76,8805 ,1,77,674305 ,1,78,674905 ,1,79,65 ,1,80,8975 ,1,81,5595 ,1,82,7050 ,1,83,65 ,1,84,65 ,1,85,65 ,1,86,1750 ,1,87,4090 ,1,88,1720 ,1,89,674430 ,1,90,670920 ,1,91,7215 ,1,92,674625 ,1,93,65 ,1,94,65 ,1,95,65 ,1,96,925 ,1,97,10005 ,1,98,2420 ,1,99,672220 ,1,100,3130 ,1,101,65 ,1,102,65 ,1,103,672630 ,1,104,13770 ,1,105,65 ,1,106,65 ,1,107,65 ,1,108,65 ,1,109,674795 ,1,110,65 ,1,111,670 ,1,112,65 ,1,113,674200 ,1,114,65 ,1,115,65 ,1,116,65 ,1,117,65 ,1,118,65 ,1,119,11960 ,1,120,10330 ,1,121,8215 ,1,122,65 ,1,123,65 ,1,124,65 ,1,125,65 ,1,126,65 ,1,127,668455 ,1,128,8090 ,1,129,65 ,1,130,65 ,1,131,13830 ,1,132,65 ,1,133,65 ,1,134,669120 ,1,135,671635 ,1,136,4740 ,1,137,670045 ,1,138,6805 ,1,139,2325 ,1,140,12920 ,1,141,12230 ,1,142,65 ,1,143,65 ,1,144,65 ,1,145,670090 ,1,146,65 ,1,147,65 ,1,148,669815 ,1,149,672225 ,1,150,12870 ,1,151,13720 ,1,152,672710 ,1,153,672295 ,1,154,65 ,1,155,10400 ,1,156,670280 ,1,157,9095 ,1,158,65 ,1,159,6675 ,1,160,5405 ,1,161,3605 ,1,162,65 ,1,163,65 ,1,164,672455 ,1,165,10015 ,1,166,674780 ,1,167,65 ,1,168,669095 ,1,169,65 ,1,170,669235 ,1,171,6925 ,1,172,10585 ,1,173,65 ,1,174,65 ,1,175,65 ,1,176,65 ,1,177,9290 ,1,178,674755 ,1,179,8545 ,1,180,65 ,1,181,65 ,1,182,672200 ,1,183,11320 ,1,184,65 ,1,185,65 ,1,186,13245 ,1,187,65 ,1,188,65 ,1,189,65 ,1,190,65 ,1,191,65 ,1,192,5365 ,1,193,4220 ,1,194,65 ,1,195,672465 ,1,196,9155 ,1,197,670530 ,1,198,65 ,1,199,65 ,1,200,672555 ,1,201,65 ,1,202,65 ,1,203,65 ,1,204,65 ,1,205,65 ,1,206,3755 ,1,207,65 ,1,208,14535 ,1,209,668915 ,1,210,7790 ,1,211,65 ,1,212,670475 ,1,213,65 ,1,214,65 ,1,215,674350 ,1,216,671855 ,1,217,674665 ,1,218,673415 ,1,219,65 ,1,220,65 ,1,221,65 ,1,222,669040 ,1,223,65 ,1,224,65 ,1,225,14565 ,1,226,674900 ,1,227,65 ,1,228,669185 ,1,229,13650 ,1,230,11600 ,1,231,5640 ,1,232,65 ,1,233,670480 ,1,234,65 ,1,235,65 ,1,236,65 ,1,237,65 ,1,238,669555 ,1,239,669870 ,1,240,672525 ,1,241,2215 ,1,242,3570 ,1,243,65 ,1,244,65 ,1,245,65 ,1,246,65 ,1,247,65 ,1,248,65 ,1,249,65 ,1,250,65 ,1,251,65 ,1,252,65 ,1,253,674720 ,1,254,674580 ,1,255,671375 ,1,256,3510 ,1,257,669490 ,1,258,13085 ,1,259,11620 ,1,260,65 ,1,261,6645 ,1,262,65 ,1,263,65 ,1,264,65 ,1,265,65 ,1,266,65 ,1,267,935 ,1,268,674725 ,1,269,672210 ,1,270,668670 ,1,271,6865 ,1,272,65 ,1,273,65 ,1,274,11445 ,1,275,65 ,1,276,65 ,1,277,13740 ,1,278,65 ,1,279,669220 ,1,280,668470 ,1,281,669270 ,1,282,4320 ,1,283,9550 ,1,284,65 ,1,285,2710 ,1,286,65 ,1,287,4355 ,1,288,11840 ,1,289,65 ,1,290,65 ,1,291,65 ,1,292,65 ,1,293,65 ,1,294,65 ,1,295,65 ,1,296,65 ,1,297,65 ,1,298,13840 ,1,299,65 ,1,300,65 ,1,301,1555 ,1,302,65 ,1,303,668520 ,1,304,65 ,1,305,65 ,1,306,65 ,1,307,8510 ,1,308,6150 ,1,309,673155 ,1,310,671420 ,1,311,65 ,1,312,65 ,1,313,65 ,1,314,65 ,1,315,8995 ,1,316,3005 ,1,317,674180 ,1,318,14410 ,1,319,670055 ,1,320,7915 ,1,321,65 ,1,322,65 ,1,323,65 ,1,324,65 ,1,325,65 ,1,326,65 ,1,327,65 ,1,328,1275 ,1,329,65 ,1,330,9410 ,1,331,65 ,1,332,65 ,1,333,65 ,1,334,7135 ,1,335,4310 ,1,336,668360 ,1,337,65 ,1,338,65 ,1,339,65 ,1,340,65 ,1,341,65 ,1,342,65 ,1,343,14475 ,1,344,674330 ,1,345,65 ,1,346,65 ,1,347,671405 ,1,348,65 ,1,349,674565 ,1,350,65 ,1,351,65 ,1,352,4375 ,1,353,11310 ,1,354,673715 ,1,355,9075 ,1,356,65 ,1,357,669940 ,1,358,671110 ,1,359,673465 ,1,360,2130 ,1,361,65 ,1,362,10730 ,1,363,4180 ,1,364,65 ,1,365,6610 ,1,366,8300 ,1,367,65 ,1,368,10205 ,1,369,670760 ,1,370,65 ,1,371,65 ,1,372,65 ,1,373,65 ,1,374,673540 ,1,375,65 ,1,376,65 ,1,377,11185 ,1,378,65 ,1,379,65 ,1,380,65 ,1,381,65 ,1,382,65 ,1,383,671175 ,1,384,65 ,1,385,65 ,1,386,672700 ,1,387,670400 ,1,388,65 ,1,389,65 ,1,390,65 ,1,391,65 ,1,392,5685 ,1,393,65 ,1,394,760 ,1,395,65 ,1,396,65 ,1,397,65 ,1,398,65 ,1,399,671475 ,1,400,65 ,1,401,65 ,1,402,65 ,1,403,65 ,1,404,672730 ,1,405,65 ,1,406,8730 ,1,407,674375 ,1,408,65 ,1,409,14050 ,1,410,13035 ,1,411,672935 ,1,412,1360 ,1,413,670100 ,1,414,673550 ,1,415,65 ,1,416,65 ,1,417,13630 ,1,418,12690 ,1,419,65 ,1,420,65 ,1,421,7965 ,1,422,668795 ,1,423,65 ,1,424,6390 ,1,425,65 ,1,426,12765 ,1,427,672960 ,1,428,65 ,1,429,65 ,1,430,65 ,1,431,65 ,1,432,65 ,1,433,65 ,1,434,11575 ,1,435,65 ,1,436,65 ,1,437,1595 ,1,438,1265 ,1,439,10650 ,1,440,670880 ,1,441,65 ,1,442,673390 ,1,443,5130 ,1,444,65 ,1,445,360 ,1,446,672835 ,1,447,65 ,1,448,65 ,1,449,65 ,1,450,65 ,1,451,668950 ,1,452,65 ,1,453,65 ,1,454,65 ,1,455,65 ,1,456,65 ,1,457,65 ,1,458,1845 ,1,459,673020 ,1,460,65 ,1,461,65 ,1,462,673915 ,1,463,65 ,1,464,10505 ,1,465,12790 ,1,466,3140 ,1,467,672890 ,1,468,670800 ,1,469,11455 ,1,470,673610 ,1,471,105 ,1,472,12990 ,1,473,65 ,1,474,65 ,1,475,65 ,1,476,65 ,1,477,675000 ,1,478,65 ,1,479,14155 ,1,480,65 ,1,481,14270 ,1,482,670960 ,1,483,65 ,1,484,65 ,1,485,5415 ,1,486,675085 ,1,487,65 ,1,488,5245 ,1,489,65 ,1,490,65 ,1,491,65 ,1,492,65 ,1,493,65 ,1,494,65 ,1,495,65 ,1,496,65 ,1,497,674235 ,1,498,3110 ,1,499,10215 ,1,500,11505 ,1,501,670670 ,1,502,11020 ,1,503,669485 ,1,504,7115 ,1,505,3930 ,1,506,669545 ,1,507,12745 ,1,508,13180 ,1,509,674880 ,1,510,7515 ,1,511,6010 ,1,512,12195 ,1,513,674290 ,1,514,8480 ,1,515,7600 ,1,516,65 ,1,517,674670 ,1,518,225 ,1,519,65 ,1,520,65 ,1,521,65 ,1,522,1795 ,1,523,669495 ,1,524,672405 ,1,525,65 ,1,526,65 ,1,527,65 ,1,528,65 ,1,529,65 ,1,530,674260 ,1,531,13810 ,1,532,12910 ,1,533,65 ,1,534,65 ,1,535,65 ,1,536,669930 ,1,537,668555 ,1,538,673970 ,1,539,10320 ,1,540,3910 ,1,541,460 ,1,542,65 ,1,543,14515 ,1,544,65 ,1,545,13355 ,1,546,668940 ,1,547,14495 ,1,548,65 ,1,549,669550 ,1,550,674875 ,1,551,5435 ,1,552,65 ,1,553,1695 ,1,554,65 ,1,555,1115 ,1,556,80 ,1,557,65 ,1,558,670540 ,1,559,65 ,1,560,65 ,1,561,65 ,1,562,65 ,1,563,65 ,1,564,65 ,1,565,65 ,1,566,65 ,1,567,65 ,1,568,65 ,1,569,65 ,1,570,65 ,1,571,65 ,1,572,65 ,1,573,669910 ,1,574,65 ,1,575,65 ,1,576,65 ,1,577,14605 ,1,578,65 ,1,579,65 ,1,580,65 ,1,581,65 ,1,582,65 ,1,583,10900 ,1,584,65 ,1,585,11160 ,1,586,9135 ,1,587,65 ,1,588,65 ,1,589,5535 ,1,590,13075 ,1,591,6140 ,1,592,65 ,1,593,65 ,1,594,65 ,1,595,65 ,1,596,65 ,1,597,65 ,1,598,65 ,1,599,65 ,1,600,12250 ,1,601,430 ,1,602,4435 ,1,603,65 ,1,604,65 ,1,605,14260 ,1,606,7680 ,1,607,1455 ,1,608,65 ,1,609,9505 ,1,610,5705 ,1,611,65 ,1,612,4560 ,1,613,65 ,1,614,6545 ,1,615,673710 ,1,616,4050 ,1,617,668560 ,1,618,2965 ,1,619,65 ,1,620,65 ,1,621,65 ,1,622,65 ,1,623,65 ,1,624,65 ,1,625,10065 ,1,626,674320 ,1,627,3820 ,1,628,65 ,1,629,1855 ,1,630,671245 ,1,631,65 ,1,632,671120 ,1,633,65 ,1,634,65 ,1,635,65 ,1,636,674325 ,1,637,5030 ,1,638,671465 ,1,639,65 ,1,640,65 ,1,641,14705 ,1,642,65 ,1,643,7995 ,1,644,65 ,1,645,65 ,1,646,65 ,1,647,65 ,1,648,65 ,1,649,673865 ,1,650,65 ,1,651,65 ,1,652,65 ,1,653,65 ,1,654,11375 ,1,655,674960 ,1,656,672735 ,1,657,65 ,1,658,671525 ,1,659,65 ,1,660,65 ,1,661,65 ,1,662,65 ,1,663,65 ,1,664,65 ,1,665,671195 ,1,666,65 ,1,667,65 ,1,668,65 ,1,669,65 ,1,670,13305 ,1,671,65 ,1,672,65 ,1,673,65 ,1,674,65 ,1,675,65 ,1,676,65 ,1,677,65 ,1,678,65 ,1,679,65 ,1,680,5915 ,1,681,65 ,1,682,65 ,1,683,65 ,1,684,3530 ,1,685,65 ,1,686,669540 ,1,687,65 ,1,688,65 ,1,689,65 ,1,690,7905 ,1,691,65 ,1,692,65 ,1,693,12075 ,1,694,3615 ,1,695,65 ,1,696,65 ,1,697,673060 ,1,698,672415 ,1,699,65 ,1,700,65 ,1,701,672750 ,1,702,65 ,1,703,65 ,1,704,65 ,1,705,1995 ,1,706,1730 ,1,707,669210 ,1,708,65 ,1,709,4160 ,1,710,1150 ,1,711,65 ,1,712,671215 ,1,713,674540 ,1,714,65 ,1,715,65 ,1,716,65 ,1,717,3345 ,1,718,65 ,1,719,65 ,1,720,14320 ,1,721,12340 ,1,722,65 ,1,723,674860 ,1,724,670785 ,1,725,669335 ,1,726,2165 ,1,727,65 ,1,728,65 ,1,729,65 ,1,730,670600 ,1,731,670175 ,1,732,5270 ,1,733,1640 ,1,734,4455 ,1,735,5170 ,1,736,65 ,1,737,7800 ,1,738,65 ,1,739,11345 ,1,740,668765 ,1,741,65 ,1,742,670810 ,1,743,65 ,1,744,65 ,1,745,65 ,1,746,65 ,1,747,14880 ,1,748,668590 ,1,749,65 ,1,750,65 ,1,751,65 ,1,752,65 ,1,753,669865 ,1,754,669820 ,1,755,6905 ,1,756,65 ,1,757,4425 ,1,758,65 ,1,759,5765 ,1,760,65 ,1,761,668925 ,1,762,668405 ,1,763,13395 ,1,764,10840 ,1,765,11400 ,1,766,65 ,1,767,13730 ,1,768,14210 ,1,769,65 ,1,770,14220 ,1,771,65 ,1,772,65 ,1,773,672330 ,1,774,65 ,1,775,6775 ,1,776,65 ,1,777,65 ,1,778,12890 ,1,779,65 ,1,780,668390 ,1,781,673695 ,1,782,672395 ,1,783,65 ,1,784,668525 ,1,785,11740 ,1,786,670815 ,1,787,673845 ,1,788,65 ,1,789,65 ,1,790,65 ,1,791,6360 ,1,792,673360 ,1,793,674930 ,1,794,65 ,1,795,65 ,1,796,65 ,1,797,65 ,1,798,65 ,1,799,12700 ,1,800,65 ,1,801,65 ,1,802,65 ,1,803,65 ,1,804,65 ,1,805,65 ,1,806,65 ,1,807,65 ,1,808,65 ,1,809,65 ,1,810,65 ,1,811,5010 ,1,812,65 ,1,813,8080 ,1,814,65 ,1,815,65 ,1,816,65 ,1,817,65 ,1,818,668400 ,1,819,672805 ,1,820,4125 ,1,821,65 ,1,822,13580 ,1,823,65 ,1,824,669180 ,1,825,65 ,1,826,65 ,1,827,670640 ,1,828,669795 ,1,829,65 ,1,830,65 ,1,831,65 ,1,832,674445 ,1,833,1525 ,1,834,65 ,1,835,65 ,1,836,65 ,1,837,669995 ,1,838,674600 ,1,839,1370 ,1,840,674915 ,1,841,65 ,1,842,65 ,1,843,65 ,1,844,65 ,1,845,65 ,1,846,65 ,1,847,65 ,1,848,65 ,1,849,669980 ,1,850,4020 ,1,851,65 ,1,852,4540 ,1,853,65 ,1,854,65 ,1,855,65 ,1,856,65 ,1,857,669295 ,1,858,668875 ,1,859,12755 ,1,860,4670 ,1,861,668825 ,1,862,671545 ,1,863,6250 ,1,864,65 ,1,865,671345 ,1,866,6340 ,1,867,674035 ,1,868,673530 ,1,869,670645 ,1,870,6030 ,1,871,65 ,1,872,65 ,1,873,65 ,1,874,65 ,1,875,3885 ,1,876,195 ,1,877,65 ,1,878,65 ,1,879,65 ,1,880,5315 ,1,881,65 ,1,882,65 ,1,883,65 ,1,884,65 ,1,885,65 ,1,886,65 ,1,887,65 ,1,888,65 ,1,889,65 ,1,890,672065 ,1,891,65 ,1,892,65 ,1,893,65 ,1,894,65 ,1,895,65 ,1,896,65 ,1,897,65 ,1,898,65 ,1,899,65 ,1,900,670730 ,1,901,5990 ,1,902,2110 ,1,903,65 ,1,904,65 ,1,905,65 ,1,906,65 ,1,907,65 ,1,908,65 ,1,909,65 ,1,910,65 ,1,911,65 ,1,912,65 ,1,913,65 ,1,914,65 ,1,915,65 ,1,916,65 ,1,917,65 ,1,918,669190 ,1,919,10225 ,1,920,673535 ,1,921,8280 ,1,922,65 ,1,923,674385 ,1,924,7205 ,1,925,65 ,1,926,10660 ,1,927,65 ,1,928,65 ,1,929,65 ,1,930,65 ,1,931,65 ,1,932,668395 ,1,933,671380 ,1,934,9895 ,1,935,2730 ,1,936,65 ,1,937,115 ,1,938,65 ,1,939,675065 ,1,940,65 ,1,941,65 ,1,942,671385 ,1,943,65 ,1,944,65 ,1,945,673910 ,1,946,65 ,1,947,11565 ,1,948,65 ,1,949,6120 ,1,950,671145 ,1,951,65 ,1,952,65 ,1,953,65 ,1,954,65 ,1,955,4465 ,1,956,670040 ,1,957,672695 ,1,958,2825 ,1,959,673745 ,1,960,65 ,1,961,65 ,1,962,672025 ,1,963,65 ,1,964,10745 ,1,965,65 ,1,966,14770 ,1,967,65 ,1,968,65 ,1,969,674845 ,1,970,2315 ,1,971,65 ,1,972,65 ,1,973,674120 ,1,974,7865 ,1,975,6590 ,1,976,668440 ,1,977,65 ,1,978,65 ,1,979,6000 ,1,980,65 ,1,981,65 ,1,982,65 ,1,983,65 ,1,984,65 ,1,985,65 ,1,986,65 ,1,987,65 ,1,988,65 ,1,989,669340 ,1,990,13095 ,1,991,14185 ,1,992,65 ,1,993,673750 ,1,994,65 ,1,995,13865 ,1,996,1125 ,1,997,65 ,1,998,668735 ,1,999,65 ,1,1000,65 ,1,1001,65 ,1,1002,65 ,1,1003,65 ,1,1004,65 ,1,1005,2410 ,1,1006,671925 ,1,1007,669240 ,1,1008,65 ,1,1009,6050 ,1,1010,65 ,1,1011,65 ,1,1012,65 ,1,1013,65 ,1,1014,65 ,1,1015,715 ,1,1016,2400 ,1,1017,671370 ,1,1018,670515 ,1,1019,65 ,1,1020,65 ,1,1021,65 ,1,1022,65 ,1,1023,595 ,1,1024,672580 ,1,1025,5385 ,1,1026,668375 ,1,1027,9645 ,1,1028,7145 ,1,1029,5940 ,1,1030,65 ,1,1031,65 ,1,1032,65 ,1,1033,65 ,1,1034,65 ,1,1035,65 ,1,1036,65 ,1,1037,65 ,1,1038,65 ,1,1039,65 ,1,1040,65 ,1,1041,65 ,1,1042,675100 ,1,1043,65 ,1,1044,670655 ,1,1045,65 ,1,1046,65 ,1,1047,65 ,1,1048,65 ,1,1049,65 ,1,1050,669615 ,1,1051,668870 ,1,1052,14060 ,1,1053,65 ,1,1054,1650 ,1,1055,65 ,1,1056,668575 ,1,1057,674370 ,1,1058,65 ,1,1059,674610 ,1,1060,65 ,1,1061,1685 ,1,1062,65 ,1,1063,65 ,1,1064,65 ,1,1065,671870 ,1,1066,65 ,1,1067,65 ,1,1068,674135 ,1,1069,65 ,1,1070,65 ,1,1071,65 ,1,1072,65 ,1,1073,5110 ,1,1074,7855 ,1,1075,65 ,1,1076,65 ,1,1077,65 ,1,1078,13935 ,1,1079,674995 ,1,1080,3470 ,1,1081,65 ,1,1082,5745 ,1,1083,65 ,1,1084,65 ,1,1085,65 ,1,1086,65 ,1,1087,65 ,1,1088,65 ,1,1089,2470 ,1,1090,673835 ,1,1091,65 ,1,1092,65 ,1,1093,65 ,1,1094,65 ,1,1095,671040 ,1,1096,535 ,1,1097,9790 ,1,1098,65 ,1,1099,65 ,1,1100,669560 ,1,1101,65 ,1,1102,65 ,1,1103,65 ,1,1104,65 ,1,1105,65 ,1,1106,65 ,1,1107,65 ,1,1108,65 ,1,1109,65 ,1,1110,235 ,1,1111,65 ,1,1112,3395 ,1,1113,65 ,1,1114,10820 ,1,1115,669600 ,1,1116,7985 ,1,1117,65 ,1,1118,65 ,1,1119,7780 ,1,1120,65 ,1,1121,65 ,1,1122,65 ,1,1123,65 ,1,1124,65 ,1,1125,8195 ,1,1126,65 ,1,1127,675030 ,1,1128,8880 ,1,1129,8815 ,1,1130,4210 ,1,1131,670215 ,1,1132,674420 ,1,1133,670620 ,1,1134,9610 ,1,1135,4625 ,1,1136,10920 ,1,1137,65 ,1,1138,65 ,1,1139,65 ,1,1140,565 ,1,1141,65 ,1,1142,672260 ,1,1143,1630 ,1,1144,11780 ,1,1145,673680 ,1,1146,673045 ,1,1147,670450 ,1,1148,65 ,1,1149,65 ,1,1150,65 ,1,1151,673240 ,1,1152,65 ,1,1153,65 ,1,1154,65 ,1,1155,9195 ,1,1156,11970 ,1,1157,10235 ,1,1158,3670 ,1,1159,4760 ,1,1160,672830 ,1,1161,675060 ,1,1162,671875 ,1,1163,65 ,1,1164,65 ,1,1165,65 ,1,1166,65 ,1,1167,65 ,1,1168,10870 ,1,1169,65 ,1,1170,12810 ,1,1171,6555 ,1,1172,9665 ,1,1173,65 ,1,1174,65 ,1,1175,669355 ,1,1176,669020 ,1,1177,65 ,1,1178,65 ,1,1179,14505 ,1,1180,65 ,1,1181,65 ,1,1182,65 ,1,1183,65 ,1,1184,668515 ,1,1185,65 ,1,1186,671980 ,1,1187,671220 ,1,1188,65 ,1,1189,673260 ,1,1190,65 ,1,1191,9590 ,1,1192,3055 ,1,1193,65 ,1,1194,705 ,1,1195,65 ,1,1196,5300 ,1,1197,65 ,1,1198,672560 ,1,1199,668860 ,1,1200,3730 ,1,1201,2700 ,1,1202,674130 ,1,1203,65 ,1,1204,7315 ,1,1205,2075 ,1,1206,65 ,1,1207,65 ,1,1208,669935 ,1,1209,65 ,1,1210,245 ,1,1211,11485 ,1,1212,11150 ,1,1213,6855 ,1,1214,669290 ,1,1215,65 ,1,1216,65 ,1,1217,65 ,1,1218,65 ,1,1219,11950 ,1,1220,65 ,1,1221,670285 ,1,1222,65 ,1,1223,65 ,1,1224,669265 ,1,1225,9260 ,1,1226,65 ,1,1227,6445 ,1,1228,674050 ,1,1229,65 ,1,1230,7580 ,1,1231,6280 ,1,1232,65 ,1,1233,9400 ,1,1234,670525 ,1,1235,668855 ,1,1236,4975 ,1,1237,65 ,1,1238,674380 ,1,1239,10755 ,1,1240,14005 ,1,1241,175 ,1,1242,65 ,1,1243,65 ,1,1244,671030 ,1,1245,674205 ,1,1246,670060 ,1,1247,65 ,1,1248,65 ,1,1249,65 ,1,1250,65 ,1,1251,65 ,1,1252,13405 ,1,1253,65 ,1,1254,670595 ,1,1255,65 ,1,1256,65 ,1,1257,65 ,1,1258,4680 ,1,1259,65 ,1,1260,13235 ,1,1261,11040 ,1,1262,7740 ,1,1263,671790 ,1,1264,65 ,1,1265,990 ,1,1266,12650 ,1,1267,670795 ,1,1268,65 ,1,1269,7245 ,1,1270,670590 ,1,1271,670190 ,1,1272,65 ,1,1273,9495 ,1,1274,65 ,1,1275,12820 ,1,1276,674435 ,1,1277,65 ,1,1278,673000 ,1,1279,14760 ,1,1280,9380 ,1,1281,673920 ,1,1282,65 ,1,1283,65 ,1,1284,672360 ,1,1285,65 ,1,1286,65 ,1,1287,673810 ,1,1288,65 ,1,1289,14660 ,1,1290,65 ,1,1291,65 ,1,1292,65 ,1,1293,65 ,1,1294,65 ,1,1295,65 ,1,1296,65 ,1,1297,65 ,1,1298,65 ,1,1299,10430 ,1,1300,65 ,1,1301,65 ,1,1302,65 ,1,1303,65 ,1,1304,65 ,1,1305,65 ,1,1306,669825 ,1,1307,65 ,1,1308,65 ,1,1309,668580 ,1,1310,4750 ,1,1311,65 ,1,1312,7535 ,1,1313,585 ,1,1314,7465 ,1,1315,669885 ,1,1316,65 ,1,1317,65 ,1,1318,65 ,1,1319,65 ,1,1320,65 ,1,1321,65 ,1,1322,65 ,1,1323,65 ,1,1324,14280 ,1,1325,65 ,1,1326,65 ,1,1327,65 ,1,1328,9040 ,1,1329,8650 ,1,1330,65 ,1,1331,4135 ,1,1332,65 ,1,1333,10515 ,1,1334,65 ,1,1335,65 ,1,1336,671205 ,1,1337,65 ,1,1338,65 ,1,1339,65 ,1,1340,65 ,1,1341,65 ,1,1342,11140 ,1,1343,9390 ,1,1344,13955 ,1,1345,671975 ,1,1346,65 ,1,1347,65 ,1,1348,65 ,1,1349,65 ,1,1350,672815 ,1,1351,65 ,1,1352,65 ,1,1353,7670 ,1,1354,65 ,1,1355,12900 ,1,1356,65 ,1,1357,65 ,1,1358,65 ,1,1359,9020 ,1,1360,65 ,1,1361,12550 ,1,1362,65 ,1,1363,65 ,1,1364,1885 ,1,1365,669065 ,1,1366,671655 ,1,1367,2205 ,1,1368,65 ,1,1369,65 ,1,1370,65 ,1,1371,65 ,1,1372,65 ,1,1373,2380 ,1,1374,12370 ,1,1375,65 ,1,1376,65 ,1,1377,65 ,1,1378,65 ,1,1379,65 ,1,1380,3660 ,1,1381,65 ,1,1382,65 ,1,1383,65 ,1,1384,9370 ,1,1385,673660 ,1,1386,7810 ,1,1387,8185 ,1,1388,672090 ,1,1389,65 ,1,1390,11410 ,1,1391,65 ,1,1392,65 ,1,1393,4780 ,1,1394,672485 ,1,1395,65 ,1,1396,674810 ,1,1397,3075 ,1,1398,65 ,1,1399,670895 ,1,1400,65 ,1,1401,9460 ,1,1402,125 ,1,1403,672705 ,1,1404,65 ,1,1405,65 ,1,1406,65 ,1,1407,65 ,1,1408,7370 ,1,1409,674495 ,1,1410,65 ,1,1411,65 ,1,1412,674575 ,1,1413,673335 ,1,1414,13295 ,1,1415,65 ,1,1416,675040 ,1,1417,65 ,1,1418,65 ,1,1419,670345 ,1,1420,674470 ,1,1421,672125 ,1,1422,65 ,1,1423,2535 ,1,1424,65 ,1,1425,8490 ,1,1426,65 ,1,1427,670680 ,1,1428,674570 ,1,1429,671450 ,1,1430,65 ,1,1431,65 ,1,1432,65 ,1,1433,65 ,1,1434,10310 ,1,1435,65 ,1,1436,65 ,1,1437,672155 ,1,1438,14330 ,1,1439,11810 ,1,1440,65 ,1,1441,8525 ,1,1442,669610 ,1,1443,2295 ,1,1444,65 ,1,1445,945 ,1,1446,2390 ,1,1447,65 ,1,1448,671640 ,1,1449,9780 ,1,1450,670455 ,1,1451,671480 ,1,1452,65 ,1,1453,65 ,1,1454,65 ,1,1455,1440 ,1,1456,65 ,1,1457,12280 ,1,1458,65 ,1,1459,10390 ,1,1460,65 ,1,1461,3450 ,1,1462,2835 ,1,1463,65 ,1,1464,673790 ,1,1465,5585 ,1,1466,65 ,1,1467,5235 ,1,1468,8630 ,1,1469,5905 ,1,1470,668460 ,1,1471,670845 ,1,1472,1485 ,1,1473,10185 ,1,1474,674970 ,1,1475,12360 ,1,1476,65 ,1,1477,8445 ,1,1478,669440 ,1,1479,65 ,1,1480,8405 ,1,1481,672810 ,1,1482,1475 ,1,1483,674715 ,1,1484,11250 ,1,1485,671415 ,1,1486,669285 ,1,1487,1160 ,1,1488,65 ,1,1489,65 ,1,1490,65 ,1,1491,65 ,1,1492,65 ,1,1493,65 ,1,1494,65 ,1,1495,14175 ,1,1496,669480 ,1,1497,14615 ,1,1498,11790 ,1,1499,672215 ,1,1500,10525 ,1,1501,65 ,1,1502,65 ,1,1503,65 ,1,1504,6885 ,1,1505,320 ,1,1506,65 ,1,1507,65 ,1,1508,65 ,1,1509,65 ,1,1510,65 ,1,1511,672480 ,1,1512,13670 ,1,1513,673295 ,1,1514,555 ,1,1515,65 ,1,1516,8140 ,1,1517,65 ,1,1518,674490 ,1,1519,65 ,1,1520,65 ,1,1521,65 ,1,1522,65 ,1,1523,65 ,1,1524,672410 ,1,1525,671140 ,1,1526,65 ,1,1527,65 ,1,1528,65 ,1,1529,65 ,1,1530,65 ,1,1531,10605 ,1,1532,65 ,1,1533,3785 ,1,1534,65 ,1,1535,1970 ,1,1536,65 ,1,1537,65 ,1,1538,65 ,1,1539,6580 ,1,1540,12170 ,1,1541,669755 ,1,1542,669855 ,1,1543,65 ,1,1544,65 ,1,1545,65 ,1,1546,65 ,1,1547,673665 ,1,1548,65 ,1,1549,674300 ,1,1550,5200 ,1,1551,673805 ,1,1552,65 ,1,1553,65 ,1,1554,6970 ,1,1555,5840 ,1,1556,5375 ,1,1557,5085 ,1,1558,668585 ,1,1559,790 ,1,1560,675110 ,1,1561,65 ,1,1562,65 ,1,1563,65 ,1,1564,65 ,1,1565,65 ,1,1566,65 ,1,1567,65 ,1,1568,65 ,1,1569,65 ,1,1570,65 ,1,1571,65 ,1,1572,65 ,1,1573,65 ,1,1574,65 ,1,1575,10940 ,1,1576,6240 ,1,1577,9570 ,1,1578,480 ,1,1579,670440 ,1,1580,65 ,1,1581,65 ,1,1582,65 ,1,1583,65 ,1,1584,1340 ,1,1585,65 ,1,1586,65 ,1,1587,13620 ,1,1588,65 ,1,1589,65 ,1,1590,5100 ,1,1591,65 ,1,1592,65 ,1,1593,65 ,1,1594,65 ,1,1595,673290 ,1,1596,669050 ,1,1597,671785 ,1,1598,674815 ,1,1599,65 ,1,1600,65 ,1,1601,65 ,1,1602,65 ,1,1603,6960 ,1,1604,5065 ,1,1605,668760 ,1,1606,671250 ,1,1607,670035 ,1,1608,65 ,1,1609,5715 ,1,1610,2545 ,1,1611,1775 ,1,1612,65 ,1,1613,674190 ,1,1614,13385 ,1,1615,12085 ,1,1616,65 ,1,1617,65 ,1,1618,670315 ,1,1619,65 ,1,1620,65 ,1,1621,669915 ,1,1622,672920 ,1,1623,65 ,1,1624,65 ,1,1625,13540 ,1,1626,65 ,1,1627,65 ,1,1628,65 ,1,1629,65 ,1,1630,65 ,1,1631,65 ,1,1632,9430 ,1,1633,65 ,1,1634,65 ,1,1635,65 ,1,1636,8425 ,1,1637,672715 ,1,1638,6380 ,1,1639,65 ,1,1640,65 ,1,1641,65 ,1,1642,5335 ,1,1643,10195 ,1,1644,673210 ,1,1645,1575 ,1,1646,672475 ,1,1647,65 ,1,1648,65 ,1,1649,671550 ,1,1650,669785 ,1,1651,65 ,1,1652,65 ,1,1653,12660 ,1,1654,65 ,1,1655,65 ,1,1656,671135 ,1,1657,65 ,1,1658,8825 ,1,1659,2870 ,1,1660,65 ,1,1661,671560 ,1,1662,670155 ,1,1663,65 ,1,1664,10115 ,1,1665,65 ,1,1666,65 ,1,1667,65 ,1,1668,7925 ,1,1669,7570 ,1,1670,671600 ,1,1671,65 ,1,1672,65 ,1,1673,65 ,1,1674,65 ,1,1675,669800 ,1,1676,65 ,1,1677,10710 ,1,1678,8680 ,1,1679,671270 ,1,1680,65 ,1,1681,65 ,1,1682,65 ,1,1683,65 ,1,1684,669125 ,1,1685,670005 ,1,1686,65 ,1,1687,1040 ,1,1688,674275 ,1,1689,12980 ,1,1690,672370 ,1,1691,65 ,1,1692,670465 ,1,1693,65 ,1,1694,4790 ,1,1695,12390 ,1,1696,65 ,1,1697,65 ,1,1698,65 ,1,1699,2585 ,1,1700,671340 ,1,1701,410 ,1,1702,65 ,1,1703,65 ,1,1704,65 ,1,1705,3625 ,1,1706,65 ,1,1707,65 ,1,1708,65 ,1,1709,670270 ,1,1710,65 ,1,1711,65 ,1,1712,671750 ,1,1713,14835 ,1,1714,65 ,1,1715,674010 ,1,1716,65 ,1,1717,65 ,1,1718,669695 ,1,1719,65 ,1,1720,65 ,1,1721,65 ,1,1722,673545 ,1,1723,65 ,1,1724,65 ,1,1725,65 ,1,1726,6370 ,1,1727,12850 ,1,1728,65 ,1,1729,671575 ,1,1730,65 ,1,1731,65 ,1,1732,65 ,1,1733,65 ,1,1734,670610 ,1,1735,65 ,1,1736,65 ,1,1737,65 ,1,1738,65 ,1,1739,10495 ,1,1740,13225 ,1,1741,669565 ,1,1742,65 ,1,1743,65 ,1,1744,673740 ,1,1745,670650 ,1,1746,670445 ,1,1747,12500 ,1,1748,3375 ,1,1749,1170 ,1,1750,65 ,1,1751,671590 ,1,1752,65 ,1,1753,65 ,1,1754,65 ,1,1755,65 ,1,1756,65 ,1,1757,65 ,1,1758,65 ,1,1759,65 ,1,1760,65 ,1,1761,65 ,1,1762,65 ,1,1763,65 ,1,1764,65 ,1,1765,65 ,1,1766,65 ,1,1767,3520 ,1,1768,1215 ,1,1769,65 ,1,1770,672450 ,1,1771,65 ,1,1772,65 ,1,1773,65 ,1,1774,65 ,1,1775,65 ,1,1776,669430 ,1,1777,65 ,1,1778,674740 ,1,1779,8670 ,1,1780,65 ,1,1781,673860 ,1,1782,65 ,1,1783,14400 ,1,1784,65 ,1,1785,65 ,1,1786,65 ,1,1787,65 ,1,1788,65 ,1,1789,65 ,1,1790,673205 ,1,1791,65 ,1,1792,65 ,1,1793,11205 ,1,1794,65 ,1,1795,9885 ,1,1796,60 ,1,1797,672725 ,1,1798,65 ,1,1799,668725 ,1,1800,671710 ,1,1801,470 ,1,1802,671935 ,1,1803,65 ,1,1804,3365 ,1,1805,671225 ,1,1806,9065 ,1,1807,10440 ,1,1808,9540 ,1,1809,672570 ,1,1810,5395 ,1,1811,671260 ,1,1812,65 ,1,1813,671965 ,1,1814,670925 ,1,1815,669675 ,1,1816,3875 ,1,1817,12580 ,1,1818,673855 ,1,1819,8835 ,1,1820,672990 ,1,1821,65 ,1,1822,672420 ,1,1823,65 ,1,1824,65 ,1,1825,65 ,1,1826,65 ,1,1827,65 ,1,1828,65 ,1,1829,65 ,1,1830,65 ,1,1831,65 ,1,1832,65 ,1,1833,65 ,1,1834,65 ,1,1835,4070 ,1,1836,65 ,1,1837,65 ,1,1838,669470 ,1,1839,65 ,1,1840,65 ,1,1841,672340 ,1,1842,65 ,1,1843,65 ,1,1844,65 ,1,1845,65 ,1,1846,671915 ,1,1847,65 ,1,1848,65 ,1,1849,65 ,1,1850,5 ,1,1851,2095 ,1,1852,670405 ,1,1853,65 ,1,1854,65 ,1,1855,673685 ,1,1856,7235 ,1,1857,673385 ,1,1858,65 ,1,1859,65 ,1,1860,65 ,1,1861,65 ,1,1862,65 ,1,1863,673410 ,1,1864,672195 ,1,1865,65 ,1,1866,65 ,1,1867,65 ,1,1868,65 ,1,1869,65 ,1,1870,65 ,1,1871,12330 ,1,1872,65 ,1,1873,12260 ,1,1874,65 ,1,1875,65 ,1,1876,65 ,1,1877,65 ,1,1878,65 ,1,1879,673945 ,1,1880,65 ,1,1881,65 ,1,1882,65 ,1,1883,65 ,1,1884,65 ,1,1885,6745 ,1,1886,669425 ,1,1887,65 ,1,1888,7975 ,1,1889,671365 ,1,1890,670160 ,1,1891,65 ,1,1892,2285 ,1,1893,65 ,1,1894,8070 ,1,1895,8555 ,1,1896,674240 ,1,1897,670470 ,1,1898,65 ,1,1899,5830 ,1,1900,65 ,1,1901,65 ,1,1902,65 ,1,1903,65 ,1,1904,65 ,1,1905,9175 ,1,1906,65 ,1,1907,65 ,1,1908,65 ,1,1909,674675 ,1,1910,14310 ,1,1911,13135 ,1,1912,65 ,1,1913,65 ,1,1914,5290 ,1,1915,65 ,1,1916,65 ,1,1917,11675 ,1,1918,1865 ,1,1919,675080 ,1,1920,65 ,1,1921,65 ,1,1922,6060 ,1,1923,65 ,1,1924,65 ,1,1925,65 ,1,1926,65 ,1,1927,669750 ,1,1928,672060 ,1,1929,672505 ,1,1930,65 ,1,1931,65 ,1,1932,9050 ,1,1933,65 ,1,1934,670510 ,1,1935,674850 ,1,1936,835 ,1,1937,2480 ,1,1938,9925 ,1,1939,3045 ,1,1940,3405 ,1,1941,674785 ,1,1942,65 ,1,1943,668620 ,1,1944,669680 ,1,1945,65 ,1,1946,673755 ,1,1947,65 ,1,1948,65 ,1,1949,5120 ,1,1950,65 ,1,1951,65 ,1,1952,9865 ,1,1953,672205 ,1,1954,65 ,1,1955,673420 ,1,1956,65 ,1,1957,65 ,1,1958,65 ,1,1959,3500 ,1,1960,65 ,1,1961,13200 ,1,1962,65 ,1,1963,65 ,1,1964,65 ,1,1965,65 ,1,1966,65 ,1,1967,1765 ,1,1968,65 ,1,1969,3720 ,1,1970,673215 ,1,1971,672900 ,1,1972,675050 ,1,1973,14200 ,1,1974,1985 ,1,1975,6350 ,1,1976,668675 ,1,1977,669720 ,1,1978,5525 ,1,1979,2635 ,1,1980,12150 ,1,1981,1410 ,1,1982,870 ,1,1983,65 ,1,1984,8745 ,1,1985,672095 ,1,1986,65 ,1,1987,669630 ,1,1988,670950 ,1,1989,670110 ,1,1990,65 ,1,1991,4300 ,1,1992,65 ,1,1993,5475 ,1,1994,671490 ,1,1995,671255 ,1,1996,10290 ,1,1997,673050 ,1,1998,65 ,1,1999,695 ,1,2000,825 ,1,2001,674245 ,1,2002,669350 ,1,2003,671755 ,1,2004,65 ,1,2005,65 ,1,2006,671360 ,1,2007,65 ,1,2008,668465 ,1,2009,65 ,1,2010,65 ,1,2011,11630 ,1,2012,671150 ,1,2013,670050 ,1,2014,8890 ,1,2015,671105 ,1,2016,673490 ,1,2017,2975 ,1,2018,65 ,1,2019,672270 ,1,2020,8935 ,1,2021,65 ,1,2022,65 ,1,2023,3015 ,1,2024,65 ,1,2025,12160 ,1,2026,65 ,1,2027,3975 ,1,2028,65 ,1,2029,65 ,1,2030,8100 ,1,2031,13115 ,1,2032,4515 ,1,2033,9685 ,1,2034,9915 ,1,2035,660 ,1,2036,670805 ,1,2037,65 ,1,2038,65 ,1,2039,65 ,1,2040,675045 ,1,2041,8290 ,1,2042,65 ,1,2043,670245 ,1,2044,65 ,1,2045,65 ,1,2046,13450 ,1,2047,671355 ,1,2048,65 ,1,2049,65 ,1,2050,65 ,1,2051,65 ,1,2052,65 ,1,2053,8385 ,1,2054,14100 ,1,2055,674925 ,1,2056,65 ,1,2057,65 ,1,2058,65 ,1,2059,673585 ,1,2060,65 ,1,2061,65 ,1,2062,668990 ,1,2063,65 ,1,2064,2760 ,1,2065,671390 ,1,2066,670310 ,1,2067,65 ,1,2068,674630 ,1,2069,65 ,1,2070,65 ,1,2071,8035 ,1,2072,2595 ,1,2073,65 ,1,2074,65 ,1,2075,65 ,1,2076,4415 ,1,2077,65 ,1,2078,65 ,1,2079,13760 ,1,2080,65 ,1,2081,65 ,1,2082,65 ,1,2083,65 ,1,2084,65 ,1,2085,65 ,1,2086,65 ,1,2087,65 ,1,2088,668680 ,1,2089,669415 ,1,2090,671020 ,1,2091,674090 ,1,2092,65 ,1,2093,3480 ,1,2094,65 ,1,2095,65 ,1,2096,65 ,1,2097,65 ,1,2098,670980 ,1,2099,672055 ,1,2100,672040 ,1,2101,65 ,1,2102,4885 ,1,2103,65 ,1,2104,7645 ,1,2105,2430 ,1,2106,65 ,1,2107,65 ,1,2108,65 ,1,2109,669170 ,1,2110,672520 ,1,2111,65 ,1,2112,669130 ,1,2113,65 ,1,2114,65 ,1,2115,671610 ,1,2116,65 ,1,2117,65 ,1,2118,671970 ,1,2119,669015 ,1,2120,65 ,1,2121,11545 ,1,2122,2015 ,1,2123,65 ,1,2124,65 ,1,2125,65 ,1,2126,65 ,1,2127,673555 ,1,2128,65 ,1,2129,65 ,1,2130,9655 ,1,2131,65 ,1,2132,65 ,1,2133,11465 ,1,2134,670535 ,1,2135,65 ,1,2136,65 ,1,2137,671605 ,1,2138,65 ,1,2139,65 ,1,2140,65 ,1,2141,7340 ,1,2142,680 ,1,2143,6080 ,1,2144,670165 ,1,2145,9965 ,1,2146,7435 ,1,2147,671990 ,1,2148,12205 ,1,2149,669165 ,1,2150,668930 ,1,2151,671275 ,1,2152,65 ,1,2153,65 ,1,2154,65 ,1,2155,5800 ,1,2156,9230 ,1,2157,65 ,1,2158,65 ,1,2159,65 ,1,2160,65 ,1,2161,65 ,1,2162,10025 ,1,2163,65 ,1,2164,672140 ,1,2165,65 ,1,2166,65 ,1,2167,674015 ,1,2168,673720 ,1,2169,671845 ,1,2170,65 ,1,2171,65 ,1,2172,670765 ,1,2173,65 ,1,2174,65 ,1,2175,6875 ,1,2176,65 ,1,2177,669475 ,1,2178,14870 ,1,2179,65 ,1,2180,1010 ,1,2181,65 ,1,2182,4770 ,1,2183,65 ,1,2184,65 ,1,2185,65 ,1,2186,65 ,1,2187,65 ,1,2188,65 ,1,2189,673450 ,1,2190,65 ,1,2191,65 ,1,2192,5960 ,1,2193,95 ,1,2194,65 ,1,2195,65 ,1,2196,3260 ,1,2197,65 ,1,2198,65 ,1,2199,65 ,1,2200,65 ,1,2201,65 ,1,2202,65 ,1,2203,2805 ,1,2204,1905 ,1,2205,10350 ,1,2206,670210 ,1,2207,9485 ,1,2208,65 ,1,2209,65 ,1,2210,670975 ,1,2211,65 ,1,2212,674975 ,1,2213,65 ,1,2214,674100 ,1,2215,65 ,1,2216,672030 ,1,2217,668435 ,1,2218,1585 ,1,2219,65 ,1,2220,65 ,1,2221,2625 ,1,2222,670890 ,1,2223,65 ,1,2224,13045 ,1,2225,65 ,1,2226,4550 ,1,2227,65 ,1,2228,675055 ,1,2229,10380 ,1,2230,65 ,1,2231,3175 ,1,2232,65 ,1,2233,11100 ,1,2234,65 ,1,2235,65 ,1,2236,65 ,1,2237,65 ,1,2238,65 ,1,2239,65 ,1,2240,65 ,1,2241,12480 ,1,2242,65 ,1,2243,4645 ,1,2244,672565 ,1,2245,6785 ,1,2246,674870 ,1,2247,6795 ,1,2248,65 ,1,2249,65 ,1,2250,65 ,1,2251,65 ,1,2252,65 ,1,2253,65 ,1,2254,4475 ,1,2255,65 ,1,2256,65 ,1,2257,65 ,1,2258,65 ,1,2259,13790 ,1,2260,65 ,1,2261,9560 ,1,2262,65 ,1,2263,65 ,1,2264,672740 ,1,2265,65 ,1,2266,670900 ,1,2267,65 ,1,2268,668385 ,1,2269,2275 ,1,2270,1875 ,1,2271,669690 ,1,2272,65 ,1,2273,65 ,1,2274,65 ,1,2275,65 ,1,2276,13345 ,1,2277,674315 ,1,2278,65 ,1,2279,7875 ,1,2280,65 ,1,2281,65 ,1,2282,1330 ,1,2283,65 ,1,2284,65 ,1,2285,65 ,1,2286,673600 ,1,2287,65 ,1,2288,671985 ,1,2289,65 ,1,2290,65 ,1,2291,673395 ,1,2292,65 ,1,2293,65 ,1,2294,65 ,1,2295,65 ,1,2296,3460 ,1,2297,4080 ,1,2298,65 ,1,2299,674655 ,1,2300,65 ,1,2301,65 ,1,2302,669105 ,1,2303,3155 ,1,2304,65 ,1,2305,65 ,1,2306,65 ,1,2307,65 ,1,2308,672640 ,1,2309,65 ,1,2310,12710 ,1,2311,65 ,1,2312,65 ,1,2313,65 ,1,2314,65 ,1,2315,668985 ,1,2316,674545 ,1,2317,65 ,1,2318,65 ,1,2319,65 ,1,2320,674555 ,1,2321,14070 ,1,2322,65 ,1,2323,65 ,1,2324,65 ,1,2325,65 ,1,2326,673800 ,1,2327,65 ,1,2328,670875 ,1,2329,670855 ,1,2330,672585 ,1,2331,8395 ,1,2332,6090 ,1,2333,671880 ,1,2334,670385 ,1,2335,65 ,1,2336,65 ,1,2337,672955 ,1,2338,672745 ,1,2339,13560 ,1,2340,674095 ,1,2341,65 ,1,2342,671410 ,1,2343,65 ,1,2344,65 ,1,2345,65 ,1,2346,65 ,1,2347,10765 ,1,2348,7445 ,1,2349,669345 ,1,2350,5950 ,1,2351,65 ,1,2352,65 ,1,2353,670255 ,1,2354,65 ,1,2355,65 ,1,2356,65 ,1,2357,65 ,1,2358,65 ,1,2359,65 ,1,2360,65 ,1,2361,65 ,1,2362,669175 ,1,2363,65 ,1,2364,674475 ,1,2365,670145 ,1,2366,4820 ,1,2367,2850 ,1,2368,65 ,1,2369,65 ,1,2370,3855 ,1,2371,65 ,1,2372,670075 ,1,2373,669230 ,1,2374,10085 ,1,2375,65 ,1,2376,674070 ,1,2377,13610 ,1,2378,9165 ,1,2379,10555 ,1,2380,7040 ,1,2381,6600 ,1,2382,670275 ,1,2383,4850 ,1,2384,669925 ,1,2385,12440 ,1,2386,65 ,1,2387,671160 ,1,2388,672460 ,1,2389,6915 ,1,2390,6415 ,1,2391,10340 ,1,2392,670000 ,1,2393,671995 ,1,2394,65 ,1,2395,672905 ,1,2396,65 ,1,2397,670065 ,1,2398,670910 ,1,2399,669100 ,1,2400,770 ,1,2401,65 ,1,2402,4985 ,1,2403,65 ,1,2404,65 ,1,2405,10930 ,1,2406,9340 ,1,2407,670380 ,1,2408,65 ,1,2409,65 ,1,2410,65 ,1,2411,65 ,1,2412,9955 ,1,2413,65 ,1,2414,9735 ,1,2415,65 ,1,2416,7455 ,1,2417,671025 ,1,2418,330 ,1,2419,65 ,1,2420,9440 ,1,2421,65 ,1,2422,65 ,1,2423,5860 ,1,2424,65 ,1,2425,65 ,1,2426,673500 ,1,2427,669810 ,1,2428,674215 ,1,2429,670080 ,1,2430,65 ,1,2431,6535 ,1,2432,7030 ,1,2433,65 ,1,2434,5515 ,1,2435,673285 ,1,2436,65 ,1,2437,65 ,1,2438,65 ,1,2439,65 ,1,2440,65 ,1,2441,65 ,1,2442,65 ,1,2443,65 ,1,2444,65 ,1,2445,3120 ,1,2446,4190 ,1,2447,65 ,1,2448,65 ,1,2449,900 ,1,2450,65 ,1,2451,669155 ,1,2452,672825 ,1,2453,671200 ,1,2454,5280 ,1,2455,65 ,1,2456,669880 ,1,2457,671115 ,1,2458,65 ,1,2459,674040 ,1,2460,65 ,1,2461,13925 ,1,2462,669620 ,1,2463,2225 ,1,2464,673055 ,1,2465,11390 ,1,2466,65 ,1,2467,669160 ,1,2468,70 ,1,2469,671555 ,1,2470,9745 ,1,2471,671940 ,1,2472,65 ,1,2473,672300 ,1,2474,672365 ,1,2475,65 ,1,2476,65 ,1,2477,7475 ,1,2478,65 ,1,2479,65 ,1,2480,65 ,1,2481,669010 ,1,2482,4730 ,1,2483,10300 ,1,2484,65 ,1,2485,65 ,1,2486,1195 ,1,2487,65 ,1,2488,674635 ,1,2489,65 ,1,2490,65 ,1,2491,670790 ,1,2492,65 ,1,2493,65 ,1,2494,672150 ,1,2495,8005 ,1,2496,65 ,1,2497,65 ,1,2498,65 ,1,2499,3580 ,1,2500,65 ,1,2501,674965 ,1,2502,65 ,1,2503,8945 ,1,2504,65 ,1,2505,672390 ,1,2506,65 ,1,2507,65 ,1,2508,5020 ,1,2509,65 ,1,2510,65 ,1,2511,65 ,1,2512,13530 ,1,2513,65 ,1,2514,65 ,1,2515,4570 ,1,2516,65 ,1,2517,7425 ,1,2518,65 ,1,2519,65 ,1,2520,65 ,1,2521,65 ,1,2522,6100 ,1,2523,672355 ,1,2524,65 ,1,2525,65 ,1,2526,65 ,1,2527,669920 ,1,2528,2655 ,1,2529,65 ,1,2530,65 ,1,2531,11935 ,1,2532,65 ,1,2533,65 ,1,2534,9360 ,1,2535,65 ,1,2536,11980 ,1,2537,13875 ,1,2538,65 ,1,2539,672105 ,1,2540,65 ,1,2541,65 ,1,2542,65 ,1,2543,3240 ,1,2544,65 ,1,2545,12720 ,1,2546,65 ,1,2547,65 ,1,2548,65 ,1,2549,65 ,1,2550,65 ,1,2551,65 ,1,2552,65 ,1,2553,65 ,1,2554,65 ,1,2555,670335 ,1,2556,8965 ,1,2557,4720 ,1,2558,65 ,1,2559,65 ,1,2560,12775 ,1,2561,65 ,1,2562,14890 ,1,2563,669725 ,1,2564,65 ,1,2565,11515 ,1,2566,6990 ,1,2567,65 ,1,2568,674045 ,1,2569,65 ,1,2570,670955 ,1,2571,672760 ,1,2572,675090 ,1,2573,12570 ,1,2574,8600 ,1,2575,672950 ,1,2576,11355 ,1,2577,65 ,1,2578,65 ,1,2579,674805 ,1,2580,65 ,1,2581,3230 ,1,2582,65 ,1,2583,671165 ,1,2584,65 ,1,2585,14090 ,1,2586,65 ,1,2587,65 ,1,2588,65 ,1,2589,65 ,1,2590,65 ,1,2591,5660 ,1,2592,65 ,1,2593,65 ,1,2594,65 ,1,2595,65 ,1,2596,65 ,1,2597,673985 ,1,2598,65 ,1,2599,14595 ,1,2600,668625 ,1,2601,6755 ,1,2602,10545 ,1,2603,2120 ,1,2604,8720 ,1,2605,670685 ,1,2606,669875 ,1,2607,65 ,1,2608,10105 ,1,2609,65 ,1,2610,670010 ,1,2611,11130 ,1,2612,65 ,1,2613,65 ,1,2614,65 ,1,2615,671100 ,1,2616,65 ,1,2617,65 ,1,2618,65 ,1,2619,65 ,1,2620,65 ,1,2621,2815 ,1,2622,2645 ,1,2623,65 ,1,2624,65 ,1,2625,65 ,1,2626,2955 ,1,2627,65 ,1,2628,3800 ,1,2629,65 ,1,2630,669660 ,1,2631,5895 ,1,2632,65 ,1,2633,65 ,1,2634,671760 ,1,2635,65 ,1,2636,65 ,1,2637,65 ,1,2638,65 ,1,2639,13415 ,1,2640,670605 ,1,2641,65 ,1,2642,65 ,1,2643,65 ,1,2644,65 ,1,2645,65 ,1,2646,65 ,1,2647,65 ,1,2648,9975 ,1,2649,4525 ,1,2650,672500 ,1,2651,545 ,1,2652,65 ,1,2653,669745 ,1,2654,5000 ,1,2655,65 ,1,2656,673670 ,1,2657,65 ,1,2658,65 ,1,2659,671920 ,1,2660,670965 ,1,2661,65 ,1,2662,65 ,1,2663,65 ,1,2664,65 ,1,2665,671910 ,1,2666,65 ,1,2667,4405 ,1,2668,65 ,1,2669,65 ,1,2670,65 ,1,2671,10165 ,1,2672,4895 ,1,2673,9450 ,1,2674,65 ,1,2675,672050 ,1,2676,8340 ,1,2677,8150 ,1,2678,3355 ,1,2679,50 ,1,2680,669275 ,1,2681,915 ,1,2682,673485 ,1,2683,65 ,1,2684,65 ,1,2685,605 ,1,2686,672345 ,1,2687,65 ,1,2688,65 ,1,2689,65 ,1,2690,65 ,1,2691,65 ,1,2692,65 ,1,2693,65 ,1,2694,65 ,1,2695,669360 ,1,2696,670305 ,1,2697,672925 ,1,2698,65 ,1,2699,670860 ,1,2700,65 ,1,2701,3335 ,1,2702,14715 ,1,2703,65 ,1,2704,65 ,1,2705,4040 ,1,2706,13710 ,1,2707,65 ,1,2708,10970 ,1,2709,65 ,1,2710,668705 ,1,2711,12970 ,1,2712,674820 ,1,2713,65 ,1,2714,65 ,1,2715,13885 ,1,2716,11730 ,1,2717,12670 ,1,2718,65 ,1,2719,65 ,1,2720,5885 ,1,2721,65 ,1,2722,65 ,1,2723,65 ,1,2724,9125 ,1,2725,1960 ,1,2726,65 ,1,2727,7195 ,1,2728,672530 ,1,2729,11090 ,1,2730,65 ,1,2731,65 ,1,2732,65 ,1,2733,65 ,1,2734,65 ,1,2735,12030 ,1,2736,3250 ,1,2737,65 ,1,2738,672290 ,1,2739,12140 ,1,2740,6270 ,1,2741,1310 ,1,2742,12590 ,1,2743,10700 ,1,2744,65 ,1,2745,668685 ,1,2746,2525 ,1,2747,65 ,1,2748,672115 ,1,2749,12610 ,1,2750,5505 ,1,2751,65 ,1,2752,65 ,1,2753,12860 ,1,2754,9185 ,1,2755,65 ,1,2756,65 ,1,2757,668805 ,1,2758,4345 ,1,2759,65 ,1,2760,4445 ,1,2761,3775 ,1,2762,671905 ,1,2763,65 ,1,2764,65 ,1,2765,65 ,1,2766,11800 ,1,2767,65 ,1,2768,65 ,1,2769,65 ,1,2770,11070 ,1,2771,673165 ,1,2772,65 ,1,2773,6635 ,1,2774,1020 ,1,2775,65 ,1,2776,65 ,1,2777,65 ,1,2778,9855 ,1,2779,65 ,1,2780,65 ,1,2781,8710 ,1,2782,65 ,1,2783,65 ,1,2784,7700 ,1,2785,6405 ,1,2786,668730 ,1,2787,3035 ,1,2788,1060 ,1,2789,14805 ,1,2790,670195 ,1,2791,65 ,1,2792,670105 ,1,2793,65 ,1,2794,65 ,1,2795,65 ,1,2796,668835 ,1,2797,65 ,1,2798,65 ,1,2799,65 ,1,2800,11695 ,1,2801,673135 ,1,2802,7350 ,1,2803,672720 ,1,2804,14825 ,1,2805,65 ,1,2806,65 ,1,2807,65 ,1,2808,14735 ,1,2809,65 ,1,2810,14575 ,1,2811,669330 ,1,2812,65 ,1,2813,668370 ,1,2814,8225 ,1,2815,4200 ,1,2816,65 ,1,2817,13640 ,1,2818,8700 ,1,2819,1535 ,1,2820,10615 ,1,2821,1785 ,1,2822,65 ,1,2823,65 ,1,2824,65 ,1,2825,65 ,1,2826,670015 ,1,2827,9755 ,1,2828,1255 ,1,2829,668505 ,1,2830,675105 ,1,2831,668445 ,1,2832,65 ,1,2833,65 ,1,2834,2500 ,1,2835,10125 ,1,2836,1950 ,1,2837,815 ,1,2838,65 ,1,2839,8025 ,1,2840,671630 ,1,2841,8535 ,1,2842,65 ,1,2843,65 ,1,2844,7750 ,1,2845,65 ,1,2846,3865 ,1,2847,65 ,1,2848,65 ,1,2849,65 ,1,2850,9280 ,1,2851,1000 ,1,2852,8120 ,1,2853,65 ,1,2854,671170 ,1,2855,65 ,1,2856,14300 ,1,2857,65 ,1,2858,673345 ,1,2859,670520 ,1,2860,2720 ,1,2861,672930 ,1,2862,12380 ,1,2863,669730 ,1,2864,672875 ,1,2865,65 ,1,2866,65 ,1,2867,780 ,1,2868,4495 ,1,2869,65 ,1,2870,668640 ,1,2871,13440 ,1,2872,65 ,1,2873,12065 ,1,2874,8015 ,1,2875,65 ,1,2876,672100 ,1,2877,668995 ,1,2878,674680 ,1,2879,65 ,1,2880,9300 ,1,2881,674250 ,1,2882,7690 ,1,2883,10950 ,1,2884,14040 ,1,2885,65 ,1,2886,65 ,1,2887,7295 ,1,2888,13780 ,1,2889,12600 ,1,2890,671720 ,1,2891,6040 ,1,2892,2185 ,1,2893,11050 ,1,2894,673460 ,1,2895,674920 ,1,2896,11820 ,1,2897,14390 ,1,2898,65 ,1,2899,669055 ,1,2900,668380 ,1,2901,5180 ,1,2902,4955 ,1,2903,671335 ,1,2904,65 ,1,2905,65 ,1,2906,672535 ,1,2907,65 ,1,2908,673690 ,1,2909,6465 ,1,2910,65 ,1,2911,65 ,1,2912,65 ,1,2913,65 ,1,2914,65 ,1,2915,13520 ,1,2916,4635 ,1,2917,670675 ,1,2918,3830 ,1,2919,9635 ,1,2920,668800 ,1,2921,2140 ,1,2922,5790 ,1,2923,671330 ,1,2924,65 ,1,2925,65 ,1,2926,65 ,1,2927,7105 ,1,2928,2575 ,1,2929,3290 ,1,2930,65 ,1,2931,65 ,1,2932,65 ,1,2933,65 ,1,2934,11420 ,1,2935,65 ,1,2936,65 ,1,2937,13335 ,1,2938,65 ,1,2939,669740 ,1,2940,65 ,1,2941,65 ,1,2942,65 ,1,2943,674175 ,1,2944,65 ,1,2945,671745 ,1,2946,65 ,1,2947,670930 ,1,2948,65 ,1,2949,669500 ,1,2950,13985 ,1,2951,65 ,1,2952,65 ,1,2953,669635 ,1,2954,65 ,1,2955,65 ,1,2956,65 ,1,2957,65 ,1,2958,669025 ,1,2959,8775 ,1,2960,65 ,1,2961,672590 ,1,2962,8245 ,1,2963,12400 ,1,2964,65 ,1,2965,65 ,1,2966,65 ,1,2967,673265 ,1,2968,6685 ,1,2969,65 ,1,2970,3690 ,1,2971,670170 ,1,2972,5325 ,1,2973,6525 ,1,2974,65 ,1,2975,8500 ,1,2976,65 ,1,2977,65 ,1,2978,65 ,1,2979,65 ,1,2980,65 ,1,2981,65 ,1,2982,673270 ,1,2983,4965 ,1,2984,1740 ,1,2985,674485 ,1,2986,4005 ,1,2987,65 ,1,2988,11850 ,1,2989,65 ,1,2990,7325 ,1,2991,671800 ,1,2992,65 ,1,2993,65 ,1,2994,673340 ,1,2995,65 ,1,2996,65 ,1,2997,4330 ,1,2998,668430 ,1,2999,65 ,1,3000,673005 ,1,3001,65 ,1,3002,65 ,1,3003,65 ,1,3004,671660 ,1,3005,65 ,1,3006,14485 ,1,3007,7020 ,1,3008,65 ,1,3009,673100 ,1,3010,672755 ,1,3011,668615 ,1,3012,65 ,1,3013,65 ,1,3014,12470 ,1,3015,65 ,1,3016,65 ,1,3017,65 ,1,3018,3165 ,1,3019,2175 ,1,3020,65 ,1,3021,65 ,1,3022,674790 ,1,3023,65 ,1,3024,13285 ,1,3025,10640 ,1,3026,65 ,1,3027,65 ,1,3028,65 ,1,3029,65 ,1,3030,14165 ,1,3031,13190 ,1,3032,12020 ,1,3033,673400 ,1,3034,1245 ,1,3035,65 ,1,3036,65 ,1,3037,13315 ,1,3038,9810 ,1,3039,5810 ,1,3040,12010 ,1,3041,671230 ,1,3042,1465 ,1,3043,12680 ,1,3044,8765 ,1,3045,673975 ,1,3046,670340 ,1,3047,65 ,1,3048,1030 ,1,3049,65 ,1,3050,10075 ,1,3051,65 ,1,3052,673935 ,1,3053,65 ,1,3054,65 ,1,3055,65 ,1,3056,845 ,1,3057,65 ,1,3058,65 ,1,3059,10450 ,1,3060,8130 ,1,3061,669070 ,1,3062,3985 ,1,3063,65 ,1,3064,65 ,1,3065,3560 ,1,3066,13025 ,1,3067,669685 ,1,3068,12185 ,1,3069,669215 ,1,3070,65 ,1,3071,7185 ,1,3072,4230 ,1,3073,65 ,1,3074,65 ,1,3075,674440 ,1,3076,674895 ,1,3077,65 ,1,3078,9705 ,1,3079,672275 ,1,3080,673350 ,1,3081,673725 ,1,3082,65 ,1,3083,350 ,1,3084,6935 ,1,3085,2065 ,1,3086,65 ,1,3087,672800 ,1,3088,11705 ,1,3089,65 ,1,3090,65 ,1,3091,13065 ,1,3092,65 ,1,3093,65 ,1,3094,65 ,1,3095,65 ,1,3096,65 ,1,3097,65 ,1,3098,65 ,1,3099,65 ,1,3100,6815 ,1,3101,669850 ,1,3102,65 ,1,3103,670625 ,1,3104,65 ,1,3105,65 ,1,3106,668880 ,1,3107,14370 ,1,3108,65 ,1,3109,668865 ,1,3110,670095 ,1,3111,671520 ,1,3112,65 ,1,3113,12450 ,1,3114,669135 ,1,3115,1380 ,1,3116,670375 ,1,3117,65 ,1,3118,65 ,1,3119,10420 ,1,3120,2770 ,1,3121,671050 ,1,3122,671515 ,1,3123,669400 ,1,3124,65 ,1,3125,65 ,1,3126,65 ,1,3127,65 ,1,3128,65 ,1,3129,65 ,1,3130,65 ,1,3131,65 ,1,3132,10370 ,1,3133,12490 ,1,3134,65 ,1,3135,65 ,1,3136,65 ,1,3137,65 ,1,3138,65 ,1,3139,65 ,1,3140,65 ,1,3141,12055 ,1,3142,670740 ,1,3143,65 ,1,3144,65 ,1,3145,65 ,1,3146,674005 ,1,3147,1675 ,1,3148,370 ,1,3149,65 ,1,3150,65 ,1,3151,65 ,1,3152,7655 ,1,3153,65 ,1,3154,9995 ,1,3155,674450 ,1,3156,65 ,1,3157,65 ,1,3158,2490 ,1,3159,65 ,1,3160,8955 ,1,3161,65 ,1,3162,65 ,1,3163,8755 ,1,3164,671485 ,1,3165,65 ,1,3166,671715 ,1,3167,65 ,1,3168,65 ,1,3169,4030 ,1,3170,3900 ,1,3171,65 ,1,3172,65 ,1,3173,65 ,1,3174,65 ,1,3175,65 ,1,3176,65 ,1,3177,672635 ,1,3178,668810 ,1,3179,11290 ,1,3180,65 ,1,3181,671455 ,1,3182,65 ,1,3183,65 ,1,3184,65 ,1,3185,65 ,1,3186,65 ,1,3187,65 ,1,3188,673230 ,1,3189,65 ,1,3190,65 ,1,3191,65 ,1,3192,65 ,1,3193,65 ,1,3194,65 ,1,3195,671805 ,1,3196,65 ,1,3197,673940 ,1,3198,65 ,1,3199,65 ,1,3200,3280 ,1,3201,65 ,1,3202,14790 ,1,3203,6210 ,1,3204,65 ,1,3205,7635 ,1,3206,65 ,1,3207,65 ,1,3208,65 ,1,3209,65 ,1,3210,65 ,1,3211,65 ,1,3212,2345 ,1,3213,65 ,1,3214,65 ,1,3215,13945 ,1,3216,11300 ,1,3217,65 ,1,3218,9765 ,1,3219,65 ,1,3220,65 ,1,3221,6455 ,1,3222,65 ,1,3223,65 ,1,3224,65 ,1,3225,669110 ,1,3226,65 ,1,3227,65 ,1,3228,6625 ,1,3229,65 ,1,3230,675095 ,1,3231,673015 ,1,3232,65 ,1,3233,65 ,1,3234,65 ,1,3235,6130 ,1,3236,65 ,1,3237,65 ,1,3238,8330 ,1,3239,65 ,1,3240,3385 ,1,3241,65 ,1,3242,65 ,1,3243,310 ,1,3244,672880 ,1,3245,65 ,1,3246,674690 ,1,3247,65 ,1,3248,13430 ,1,3249,3185 ,1,3250,13000 ,1,3251,3810 ,1,3252,669505 ,1,3253,671595 ,1,3254,5215 ,1,3255,215 ,1,3256,65 ,1,3257,4660 ,1,3258,65 ,1,3259,3680 ,1,3260,65 ,1,3261,674360 ,1,3262,65 ,1,3263,65 ,1,3264,65 ,1,3265,14670 ,1,3266,2195 ,1,3267,14110 ,1,3268,669535 ,1,3269,65 ,1,3270,65 ,1,3271,674060 ,1,3272,65 ,1,3273,11915 ,1,3274,65 ,1,3275,672770 ,1,3276,65 ,1,3277,669325 ,1,3278,12880 ,1,3279,668565 ,1,3280,672110 ,1,3281,673455 ,1,3282,2005 ,1,3283,4365 ,1,3284,9695 ,1,3285,65 ,1,3286,671585 ,1,3287,670320 ,1,3288,672510 ,1,3289,65 ,1,3290,14635 ,1,3291,65 ,1,3292,65 ,1,3293,65 ,1,3294,65 ,1,3295,65 ,1,3296,668740 ,1,3297,10135 ,1,3298,10055 ,1,3299,673840 ,1,3300,7305 ,1,3301,65 ,1,3302,674660 ,1,3303,673580 ,1,3304,65 ,1,3305,65 ,1,3306,65 ,1,3307,2860 ,1,3308,65 ,1,3309,6765 ,1,3310,668890 ,1,3311,671795 ,1,3312,65 ,1,3313,65 ,1,3314,672000 ,1,3315,65 ,1,3316,65 ,1,3317,65 ,1,3318,669045 ,1,3319,10280 ,1,3320,65 ,1,3321,65 ,1,3322,672995 ,1,3323,6020 ,1,3324,668920 ,1,3325,674550 ,1,3326,6220 ,1,3327,674480 ,1,3328,670260 ,1,3329,65 ,1,3330,65 ,1,3331,65 ,1,3332,9085 ,1,3333,65 ,1,3334,674730 ,1,3335,65 ,1,3336,65 ,1,3337,12800 ,1,3338,65 ,1,3339,65 ,1,3340,6475 ,1,3341,65 ,1,3342,65 ,1,3343,668570 ,1,3344,2985 ,1,3345,674125 ,1,3346,65 ,1,3347,65 ,1,3348,65 ,1,3349,65 ,1,3350,668630 ,1,3351,8985 ,1,3352,669990 ,1,3353,5055 ,1,3354,65 ,1,3355,671055 ,1,3356,669985 ,1,3357,11475 ,1,3358,65 ,1,3359,670615 ,1,3360,65 ,1,3361,4875 ,1,3362,65 ,1,3363,11495 ,1,3364,1350 ,1,3365,65 ,1,3366,165 ,1,3367,65 ,1,3368,670395 ,1,3369,670390 ,1,3370,2450 ,1,3371,65 ,1,3372,65 ,1,3373,672400 ,1,3374,65 ,1,3375,674355 ,1,3376,65 ,1,3377,673675 ,1,3378,65 ,1,3379,65 ,1,3380,65 ,1,3381,671210 ,1,3382,65 ,1,3383,4865 ,1,3384,7415 ,1,3385,65 ,1,3386,65 ,1,3387,65 ,1,3388,65 ,1,3389,65 ,1,3390,65 ,1,3391,65 ,1,3392,65 ,1,3393,65 ,1,3394,670850 ,1,3395,65 ,1,3396,65 ,1,3397,9675 ,1,3398,670750 ,1,3399,65 ,1,3400,672035 ,1,3401,65 ,1,3402,65 ,1,3403,669280 ,1,3404,7895 ,1,3405,5820 ,1,3406,13170 ,1,3407,5190 ,1,3408,12350 ,1,3409,65 ,1,3410,65 ,1,3411,5225 ,1,3412,65 ,1,3413,12510 ,1,3414,14430 ,1,3415,13215 ,1,3416,671280 ,1,3417,65 ,1,3418,65 ,1,3419,6435 ,1,3420,65 ,1,3421,65 ,1,3422,65 ,1,3423,65 ,1,3424,65 ,1,3425,673560 ,1,3426,65 ,1,3427,65 ,1,3428,65 ,1,3429,65 ,1,3430,13660 ,1,3431,890 ,1,3432,65 ,1,3433,65 ,1,3434,669410 ,1,3435,8435 ,1,3436,13975 ,1,3437,674990 ,1,3438,65 ,1,3439,65 ,1,3440,4830 ,1,3441,65 ,1,3442,65 ,1,3443,65 ,1,3444,10595 ,1,3445,65 ,1,3446,65 ,1,3447,65 ,1,3448,9030 ,1,3449,65 ,1,3450,65 ,1,3451,65 ,1,3452,65 ,1,3453,65 ,1,3454,7770 ,1,3455,2750 ,1,3456,65 ,1,3457,65 ,1,3458,670085 ,1,3459,65 ,1,3460,65 ,1,3461,668755 ,1,3462,11905 ,1,3463,14080 ,1,3464,65 ,1,3465,668885 ,1,3466,13570 ,1,3467,13510 ,1,3468,2515 ,1,3469,674185 ,1,3470,2335 ,1,3471,65 ,1,3472,65 ,1,3473,672945 ,1,3474,671650 ,1,3475,65 ,1,3476,65 ,1,3477,65 ,1,3478,674365 ,1,3479,65 ,1,3480,673595 ,1,3481,674890 ,1,3482,65 ,1,3483,65 ,1,3484,65 ,1,3485,65 ,1,3486,673780 ,1,3487,2085 ,1,3488,65 ,1,3489,65 ,1,3490,669860 ,1,3491,4105 ,1,3492,672765 ,1,3493,674415 ,1,3494,65 ,1,3495,673140 ,1,3496,670985 ,1,3497,65 ,1,3498,65 ,1,3499,65 ,1,3500,65 ,1,3501,65 ,1,3502,14725 ,1,3503,5075 ,1,3504,671850 ,1,3505,9350 ,1,3506,65 ,1,3507,672820 ,1,3508,65 ,1,3509,65 ,1,3510,65 ,1,3511,65 ,1,3512,65 ,1,3513,13325 ,1,3514,1095 ,1,3515,65 ,1,3516,65 ,1,3517,14465 ,1,3518,65 ,1,3519,65 ,1,3520,65 ,1,3521,65 ,1,3522,674685 ,1,3523,65 ,1,3524,7125 ,1,3525,9580 ,1,3526,65 ,1,3527,65 ,1,3528,575 ,1,3529,65 ,1,3530,11030 ,1,3531,65 ,1,3532,668750 ,1,3533,9800 ,1,3534,674055 ,1,3535,11610 ,1,3536,671665 ,1,3537,670755 ,1,3538,14815 ,1,3539,14380 ,1,3540,65 ,1,3541,65 ,1,3542,668535 ,1,3543,674210 ,1,3544,7255 ,1,3545,65 ,1,3546,9905 ,1,3547,650 ,1,3548,65 ,1,3549,669000 ,1,3550,65 ,1,3551,65 ,1,3552,4690 ,1,3553,673235 ,1,3554,65 ,1,3555,65 ,1,3556,65 ,1,3557,65 ,1,3558,65 ,1,3559,2305 ,1,3560,11195 ,1,3561,674270 ,1,3562,669225 ,1,3563,671285 ,1,3564,1895 ,1,3565,671815 ,1,3566,65 ,1,3567,65 ,1,3568,670735 ,1,3569,3700 ,1,3570,65 ,1,3571,65 ,1,3572,65 ,1,3573,65 ,1,3574,65 ,1,3575,8205 ,1,3576,65 ,1,3577,65 ,1,3578,674750 ,1,3579,5495 ,1,3580,65 ,1,3581,674620 ,1,3582,65 ,1,3583,65 ,1,3584,65 ,1,3585,65 ,1,3586,65 ,1,3587,6665 ,1,3588,8620 ,1,3589,65 ,1,3590,65 ,1,3591,65 ,1,3592,670905 ,1,3593,65 ,1,3594,65 ,1,3595,1105 ,1,3596,65 ,1,3597,65 ,1,3598,13680 ,1,3599,4840 ,1,3600,65 ,1,3601,65 ,1,3602,65 ,1,3603,65 ,1,3604,65 ,1,3605,65 ,1,3606,65 ,1,3607,65 ,1,3608,65 ,1,3609,65 ,1,3610,65 ,1,3611,65 ,1,3612,4115 ,1,3613,65 ,1,3614,65 ,1,3615,668645 ,1,3616,7085 ,1,3617,65 ,1,3618,672170 ,1,3619,65 ,1,3620,7590 ,1,3621,12560 ,1,3622,673355 ,1,3623,5695 ,1,3624,65 ,1,3625,65 ,1,3626,65 ,1,3627,65 ,1,3628,65 ,1,3629,673980 ,1,3630,7360 ,1,3631,673590 ,1,3632,9145 ,1,3633,65 ,1,3634,671085 ,1,3635,65 ,1,3636,9250 ,1,3637,65 ,1,3638,65 ,1,3639,13550 ,1,3640,65 ,1,3641,65 ,1,3642,65 ,1,3643,65 ,1,3644,65 ,1,3645,670250 ,1,3646,673525 ,1,3647,65 ,1,3648,675035 ,1,3649,668830 ,1,3650,65 ,1,3651,13015 ,1,3652,10485 ,1,3653,3550 ,1,3654,8320 ,1,3655,880 ,1,3656,65 ,1,3657,65 ,1,3658,671810 ,1,3659,670410 ,1,3660,65 ,1,3661,2235 ,1,3662,668840 ,1,3663,65 ,1,3664,65 ,1,3665,65 ,1,3666,668510 ,1,3667,7885 ,1,3668,65 ,1,3669,669060 ,1,3670,65 ,1,3671,14680 ,1,3672,65 ,1,3673,10910 ,1,3674,65 ,1,3675,2925 ,1,3676,1620 ,1,3677,673930 ,1,3678,10850 ,1,3679,65 ,1,3680,4170 ,1,3681,10960 ,1,3682,65 ,1,3683,420 ,1,3684,12040 ,1,3685,65 ,1,3686,65 ,1,3687,11175 ,1,3688,65 ,1,3689,1320 ,1,3690,65 ,1,3691,65 ,1,3692,669905 ,1,3693,65 ,1,3694,65 ,1,3695,65 ,1,3696,65 ,1,3697,65 ,1,3698,65 ,1,3699,65 ,1,3700,65 ,1,3701,65 ,1,3702,8660 ,1,3703,12300 ,1,3704,65 ,1,3705,65 ,1,3706,65 ,1,3707,65 ,1,3708,6230 ,1,3709,65 ,1,3710,65 ,1,3711,65 ,1,3712,65 ,1,3713,668650 ,1,3714,65 ,1,3715,65 ,1,3716,65 ,1,3717,65 ,1,3718,671090 ,1,3719,9005 ,1,3720,65 ,1,3721,65 ,1,3722,668655 ,1,3723,65 ,1,3724,65 ,1,3725,6330 ,1,3726,672385 ,1,3727,65 ,1,3728,669665 ,1,3729,65 ,1,3730,65 ,1,3731,725 ,1,3732,9985 ,1,3733,65 ,1,3734,669245 ,1,3735,65 ,1,3736,7545 ,1,3737,14690 ,1,3738,668530 ,1,3739,65 ,1,3740,3920 ,1,3741,340 ,1,3742,671860 ,1,3743,669300 ,1,3744,674855 ,1,3745,65 ,1,3746,672230 ,1,3747,7760 ,1,3748,671510 ,1,3749,673830 ,1,3750,65 ,1,3751,65 ,1,3752,11925 ,1,3753,65 ,1,3754,65 ,1,3755,65 ,1,3756,65 ,1,3757,10880 ,1,3758,5605 ,1,3759,671645 ,1,3760,65 ,1,3761,65 ,1,3762,7155 ,1,3763,3025 ,1,3764,65 ,1,3765,10670 ,1,3766,65 ,1,3767,65 ,1,3768,674985 ,1,3769,6320 ,1,3770,674745 ,1,3771,1835 ,1,3772,2915 ,1,3773,669035 ,1,3774,12240 ,1,3775,65 ,1,3776,10810 ,1,3777,8235 ,1,3778,65 ,1,3779,1140 ,1,3780,673365 ,1,3781,673245 ,1,3782,672175 ,1,3783,673405 ,1,3784,65 ,1,3785,673160 ,1,3786,4060 ,1,3787,4505 ,1,3788,65 ,1,3789,65 ,1,3790,1665 ,1,3791,65 ,1,3792,65 ,1,3793,65 ,1,3794,65 ,1,3795,65 ,1,3796,672145 ,1,3797,2935 ,1,3798,65 ,1,3799,65 ,1,3800,668500 ,1,3801,65 ,1,3802,65 ,1,3803,65 ,1,3804,65 ,1,3805,8375 ,1,3806,65 ,1,3807,65 ,1,3808,65 ,1,3809,65 ,1,3810,65 ,1,3811,6980 ,1,3812,3065 ,1,3813,7525 ,1,3814,673105 ,1,3815,65 ,1,3816,65 ,1,3817,65 ,1,3818,65 ,1,3819,5615 ,1,3820,65 ,1,3821,7405 ,1,3822,490 ,1,3823,672655 ,1,3824,669670 ,1,3825,65 ,1,3826,65 ,1,3827,65 ,1,3828,671095 ,1,3829,668935 ,1,3830,14360 ,1,3831,65 ,1,3832,65 ,1,3833,65 ,1,3834,1565 ,1,3835,14780 ,1,3836,65 ,1,3837,65 ,1,3838,6695 ,1,3839,13995 ,1,3840,670220 ,1,3841,674505 ,1,3842,14585 ,1,3843,10720 ,1,3844,65 ,1,3845,65 ,1,3846,8870 ,1,3847,65 ,1,3848,65 ,1,3849,671725 ,1,3850,6655 ,1,3851,2880 ,1,3852,65 ,1,3853,673850 ,1,3854,65 ,1,3855,65 ,1,3856,65 ,1,3857,673280 ,1,3858,65 ,1,3859,65 ,1,3860,65 ,1,3861,673090 ,1,3862,672265 ,1,3863,300 ,1,3864,672665 ,1,3865,65 ,1,3866,65 ,1,3867,5930 ,1,3868,65 ,1,3869,65 ,1,3870,13125 ,1,3871,14230 ,1,3872,65 ,1,3873,65 ,1,3874,65 ,1,3875,13820 ,1,3876,65 ,1,3877,65 ,1,3878,65 ,1,3879,65 ,1,3880,65 ,1,3881,670820 ,1,3882,670150 ,1,3883,65 ,1,3884,65 ,1,3885,65 ,1,3886,65 ,1,3887,65 ,1,3888,65 ,1,3889,9240 ,1,3890,674265 ,1,3891,65 ,1,3892,8175 ,1,3893,9475 ,1,3894,672515 ,1,3895,65 ,1,3896,65 ,1,3897,65 ,1,3898,672285 ,1,3899,669530 ,1,3900,13460 ,1,3901,65 ,1,3902,11080 ,1,3903,668945 ,1,3904,7625 ,1,3905,1420 ,1,3906,674865 ,1,3907,65 ,1,3908,65 ,1,3909,65 ,1,3910,14290 ,1,3911,674295 ,1,3912,65 ,1,3913,65 ,1,3914,670140 ,1,3915,673200 ,1,3916,672645 ,1,3917,671045 ,1,3918,65 ,1,3919,1940 ,1,3920,670070 ,1,3921,65 ,1,3922,669790 ,1,3923,1430 ,1,3924,669605 ,1,3925,65 ,1,3926,11685 ,1,3927,65 ,1,3928,65 ,1,3929,65 ,1,3930,65 ,1,3931,65 ,1,3932,65 ,1,3933,65 ,1,3934,65 ,1,3935,65 ,1,3936,65 ,1,3937,65 ,1,3938,65 ,1,3939,10860 ,1,3940,5850 ,1,3941,673795 ,1,3942,672490 ,1,3943,65 ,1,3944,65 ,1,3945,65 ,1,3946,6425 ,1,3947,65 ,1,3948,65 ,1,3949,65 ,1,3950,672865 ,1,3951,65 ,1,3952,65 ,1,3953,672650 ,1,3954,65 ,1,3955,65 ,1,3956,674605 ,1,3957,673615 ,1,3958,65 ,1,3959,672895 ,1,3960,65 ,1,3961,65 ,1,3962,670885 ,1,3963,3310 ,1,3964,3710 ,1,3965,65 ,1,3966,2605 ,1,3967,65 ,1,3968,14420 ,1,3969,65 ,1,3970,65 ,1,3971,65 ,1,3972,669405 ,1,3973,3995 ,1,3974,670330 ,1,3975,11260 ,1,3976,674595 ,1,3977,671820 ,1,3978,65 ,1,3979,10175 ,1,3980,65 ,1,3981,65 ,1,3982,65 ,1,3983,65 ,1,3984,6260 ,1,3985,11750 ,1,3986,65 ,1,3987,65 ,1,3988,65 ,1,3989,65 ,1,3990,65 ,1,3991,65 ,1,3992,65 ,1,3993,671930 ,1,3994,671015 ,1,3995,11720 ,1,3996,65 ,1,3997,65 ,1,3998,5735 ,1,3999,65 ,1,4000,65 ,1,4001,65 ,1,4002,1050 ,1,4003,65 ,1,4004,65 ,1,4005,65 ,1,4006,1545 ,1,4007,65 ,1,4008,672595 ,1,4009,2740 ,1,4010,65 ,1,4011,65 ,1,4012,65 ,1,4013,65 ,1,4014,669735 ,1,4015,8350 ,1,4016,673905 ,1,4017,65 ,1,4018,10830 ,1,4019,65 ,1,4020,65 ,1,4021,5755 ,1,4022,65 ,1,4023,65 ,1,4024,65 ,1,4025,65 ,1,4026,65 ,1,4027,65 ,1,4028,65 ,1,4029,65 ,1,4030,65 ,1,4031,668695 ,1,4032,673025 ,1,4033,670185 ,1,4034,673775 ,1,4035,672160 ,1,4036,65 ,1,4037,65 ,1,4038,65 ,1,4039,65 ,1,4040,65 ,1,4041,2440 ,1,4042,65 ,1,4043,10535 ,1,4044,670225 ,1,4045,2945 ,1,4046,65 ,1,4047,65 ,1,4048,65 ,1,4049,672660 ,1,4050,9875 ,1,4051,65 ,1,4052,12460 ,1,4053,8860 ,1,4054,673130 ,1,4055,65 ,1,4056,11555 ,1,4057,5485 ,1,4058,65 ,1,4059,673145 ,1,4060,672120 ,1,4061,14525 ,1,4062,440 ,1,4063,670545 ,1,4064,65 ,1,4065,668700 ,1,4066,13105 ,1,4067,65 ,1,4068,65 ,1,4069,65 ,1,4070,12215 ,1,4071,671865 ,1,4072,3595 ,1,4073,5425 ,1,4074,672165 ,1,4075,673330 ,1,4076,671580 ,1,4077,65 ,1,4078,7265 ,1,4079,65 ,1,4080,65 ,1,4081,65 ,1,4082,5345 ,1,4083,674020 ,1,4084,65 ,1,4085,65 ,1,4086,65 ,1,4087,670200 ,1,4088,65 ,1,4089,65 ,1,4090,65 ,1,4091,65 ,1,4092,65 ,1,4093,65 ,1,4094,674065 ,1,4095,6110 ,1,4096,65 ,1,4097,11365 ,2,14956,213375 ,2,822,36675 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160040 ,2,14979,362270 ,2,829,45 ,2,14956,265190 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410015 ,2,829,45 ,1,0,206885 ,1,1,206370 ,1,2,210505 ,1,3,210485 ,1,4,210375 ,2,14956,265200 ,2,822,36675 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340120 ,2,829,45 ,1,0,279530 ,1,1,45 ,1,2,228350 ,2,14956,213395 ,2,822,36675 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160275 ,2,14979,340130 ,2,829,45 ,1,0,210580 ,2,14956,213395 ,2,822,36675 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235370 ,2,14979,340140 ,2,829,45 ,2,14956,213425 ,2,822,36675 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411065 ,2,829,45 ,1,0,206900 ,1,1,206380 ,1,2,210525 ,1,3,210495 ,1,4,210580 ,1,5,210385 ,1,6,208985 ,1,7,209035 ,1,8,208995 ,1,9,209005 ,2,14956,213485 ,2,822,36675 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160350 ,2,14979,361945 ,2,829,45 ,1,0,166650 ,1,1,45 ,1,2,228555 ,1,3,176805 ,1,4,45 ,1,5,228545 ,1,6,351225 ,1,7,45 ,1,8,228515 ,1,9,350145 ,1,10,45 ,1,11,228505 ,1,12,349305 ,1,13,45 ,1,14,228495 ,1,15,176795 ,1,16,45 ,1,17,228485 ,1,18,279675 ,1,19,45 ,1,20,228450 ,1,21,350335 ,1,22,45 ,1,23,228405 ,1,24,204875 ,1,25,45 ,1,26,93515 ,1,27,236135 ,1,28,45 ,1,29,127950 ,1,30,350165 ,1,31,45 ,1,32,228395 ,1,33,318655 ,1,34,45 ,1,35,228375 ,1,36,279530 ,1,37,45 ,1,38,228360 ,1,39,45 ,1,40,45 ,1,41,45 ,1,42,45 ,1,43,45 ,1,44,45 ,1,45,45 ,1,46,45 ,1,47,45 ,2,14956,213475 ,2,822,36675 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235380 ,2,14979,340150 ,2,829,45 ,1,0,210570 ,2,14956,213505 ,2,822,36675 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160275 ,2,14979,361195 ,2,829,45 ,1,0,228385 ,2,14956,218410 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340190 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,213475 ,2,822,36675 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160350 ,2,14979,340180 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,262345 ,2,822,36675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340200 ,2,829,45 ,1,0,59370 ,2,14956,265210 ,2,822,36675 ,2,14975,580410 ,2,14976,34970 ,2,14977,34935 ,2,14965,45 ,2,14978,45 ,2,14979,340210 ,2,829,45 ,1,0,228440 ,2,14956,218310 ,2,822,36665 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260530 ,2,14979,353850 ,2,829,45 ,1,0,6400 ,1,1,6400 ,2,14956,217015 ,2,822,36725 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379610 ,2,829,45 ,1,0,100 ,1,1,100 ,2,14956,215285 ,2,822,36725 ,2,14975,580425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378880 ,2,829,45 ,1,0,351450 ,1,1,45 ,2,14956,217015 ,2,822,36735 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379770 ,2,829,45 ,1,0,228470 ,2,14956,215285 ,2,822,36735 ,2,14975,580435 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379065 ,2,829,45 ,1,0,206160 ,2,14956,217015 ,2,822,36745 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379840 ,2,829,45 ,1,0,57980 ,2,14956,215285 ,2,822,36745 ,2,14975,580450 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379135 ,2,829,45 ,1,0,210180 ,2,14956,265270 ,2,822,36745 ,2,14975,568845 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340235 ,2,829,45 ,1,0,210555 ,2,14956,248490 ,2,822,36755 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388240 ,2,829,45 ,1,0,203050 ,2,14956,217015 ,2,822,36765 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379855 ,2,829,45 ,1,0,203250 ,2,14956,215285 ,2,822,36765 ,2,14975,580470 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379170 ,2,829,45 ,1,0,599975 ,2,14956,10080 ,2,822,52760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160570 ,2,14979,383450 ,2,829,45 ,1,0,634020 ,1,1,615295 ,1,2,59345 ,1,3,71035 ,1,4,65 ,1,5,65 ,1,6,59325 ,1,7,81030 ,1,8,65 ,1,9,65 ,1,10,65 ,1,11,65 ,1,12,210345 ,1,13,59335 ,1,14,62030 ,1,15,59315 ,1,16,210555 ,1,17,210700 ,1,18,210365 ,1,19,59370 ,1,20,59380 ,1,21,57980 ,1,22,210235 ,1,23,210180 ,1,24,65 ,1,25,210050 ,1,26,114365 ,1,27,64320 ,1,28,65 ,1,29,210570 ,1,30,210135 ,1,31,65 ,1,32,64310 ,1,33,228460 ,1,34,210285 ,1,35,65 ,1,36,203320 ,1,37,65 ,1,38,210710 ,1,39,206160 ,1,40,65 ,1,41,65 ,1,42,203050 ,1,43,57970 ,1,44,64300 ,1,45,59500 ,1,46,210325 ,1,47,209065 ,1,48,65 ,1,49,65 ,1,50,65 ,1,51,65 ,1,52,228470 ,1,53,210740 ,1,54,62040 ,1,55,65 ,1,56,65 ,1,57,203250 ,1,58,64330 ,1,59,65 ,1,60,65 ,1,61,210430 ,1,62,65 ,1,63,65 ,1,64,65 ,1,65,210265 ,2,14956,10080 ,2,822,52760 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,235390 ,2,14979,340300 ,2,829,45 ,1,0,203250 ,1,1,203050 ,1,2,206160 ,1,3,59345 ,1,4,71035 ,1,5,62040 ,1,6,64310 ,1,7,210570 ,1,8,57980 ,1,9,59325 ,1,10,210365 ,1,11,57970 ,1,12,228460 ,1,13,210325 ,1,14,210285 ,1,15,210265 ,1,16,59335 ,1,17,62030 ,1,18,59315 ,1,19,228470 ,1,20,210555 ,1,21,210180 ,1,22,59370 ,1,23,59380 ,1,24,210235 ,1,25,210050 ,1,26,210740 ,1,27,114365 ,1,28,210135 ,1,29,81030 ,1,30,210430 ,1,31,210345 ,1,32,210700 ,1,33,203320 ,1,34,210710 ,1,35,209065 ,1,36,59500 ,1,37,64330 ,1,38,64320 ,1,39,64300 ,2,14956,166985 ,2,822,36825 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160570 ,2,14979,383040 ,2,829,45 ,1,0,9355 ,1,1,435 ,1,2,228605 ,1,3,9355 ,1,4,425 ,1,5,228595 ,1,6,9355 ,1,7,415 ,1,8,228585 ,1,9,9355 ,1,10,455 ,1,11,228575 ,1,12,9355 ,1,13,485 ,1,14,228565 ,1,15,45 ,1,16,45 ,1,17,45 ,1,18,45 ,1,19,45 ,1,20,45 ,1,21,45 ,1,22,45 ,1,23,45 ,2,14956,211080 ,2,822,52760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375290 ,2,829,45 ,1,0,600020 ,2,14956,207140 ,2,822,52760 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373450 ,2,829,45 ,1,0,265195 ,1,1,265185 ,1,2,265125 ,1,3,265115 ,1,4,265105 ,1,5,265095 ,2,14956,207085 ,2,822,52760 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378715 ,2,829,45 ,1,0,618130 ,1,1,615295 ,1,2,65 ,1,3,65 ,1,4,65 ,1,5,65 ,1,6,65 ,1,7,65 ,1,8,228775 ,1,9,228765 ,1,10,65 ,1,11,228755 ,1,12,65 ,1,13,65 ,1,14,228745 ,1,15,206920 ,1,16,65 ,1,17,228725 ,1,18,228715 ,1,19,228705 ,1,20,228695 ,1,21,228680 ,1,22,228670 ,1,23,65 ,1,24,228660 ,1,25,210105 ,1,26,65 ,1,27,228650 ,1,28,65 ,1,29,228615 ,1,30,65 ,1,31,65 ,1,32,65 ,1,33,206910 ,2,14956,207130 ,2,822,52760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373955 ,2,829,45 ,1,0,228680 ,1,1,228670 ,1,2,228660 ,1,3,228695 ,1,4,228775 ,1,5,228755 ,1,6,228745 ,1,7,228725 ,1,8,228765 ,1,9,228715 ,1,10,228705 ,1,11,228650 ,1,12,210105 ,1,13,206920 ,1,14,228615 ,1,15,206910 ,2,14956,217810 ,2,822,52760 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,383500 ,2,829,45 ,2,14956,171330 ,2,822,52760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359190 ,2,829,45 ,1,0,206310 ,1,1,206735 ,1,2,208880 ,2,14956,217820 ,2,822,52760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340320 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,543435 ,1,3,65 ,2,14956,171410 ,2,822,52760 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411485 ,2,829,45 ,2,14956,171725 ,2,822,52760 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,359785 ,2,829,45 ,1,0,264360 ,2,14956,217830 ,2,822,52760 ,2,14975,110 ,2,14976,23450 ,2,14977,60815 ,2,14965,45 ,2,14978,45 ,2,14979,340340 ,2,829,45 ,1,0,206390 ,1,1,206410 ,1,2,206420 ,1,3,57025 ,1,4,99470 ,1,5,228845 ,1,6,228815 ,1,7,228805 ,1,8,228795 ,1,9,210115 ,1,10,206490 ,1,11,209045 ,1,12,228785 ,1,13,206440 ,2,14956,265315 ,2,822,36825 ,2,14975,580535 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,348760 ,1,1,45 ,2,14956,217860 ,2,822,52770 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,340350 ,2,829,45 ,1,0,351615 ,1,1,45 ,2,14956,217870 ,2,822,52770 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,340360 ,2,829,557755 ,1,0,218890 ,1,1,218880 ,1,2,218855 ,1,3,218845 ,1,4,218835 ,2,14956,243450 ,2,822,52770 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340370 ,2,829,557765 ,1,0,14905 ,1,1,15620 ,1,2,15610 ,1,3,14895 ,2,14956,265340 ,2,822,36785 ,2,14975,580525 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,546780 ,1,0,372505 ,1,1,372880 ,1,2,372945 ,1,3,372645 ,2,14956,213290 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160830 ,2,14979,340400 ,2,829,45 ,1,0,646810 ,1,1,366500 ,1,2,646805 ,1,3,366300 ,1,4,646800 ,1,5,364010 ,1,6,646795 ,1,7,364730 ,1,8,646790 ,1,9,365250 ,1,10,646785 ,1,11,364030 ,1,12,646780 ,1,13,364355 ,1,14,646775 ,1,15,366060 ,1,16,646750 ,1,17,365745 ,1,18,646745 ,1,19,363480 ,1,20,646740 ,1,21,365485 ,1,22,646735 ,1,23,366685 ,1,24,646730 ,1,25,365145 ,1,26,646725 ,1,27,363465 ,1,28,646720 ,1,29,366080 ,2,14956,213290 ,2,822,36775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235400 ,2,14979,340440 ,2,829,45 ,1,0,646855 ,1,1,372955 ,1,2,646850 ,1,3,372740 ,1,4,646840 ,1,5,372925 ,1,6,646835 ,1,7,372405 ,1,8,634420 ,1,9,373030 ,1,10,636350 ,1,11,373125 ,1,12,642195 ,1,13,372615 ,1,14,638010 ,1,15,372625 ,1,16,642465 ,1,17,372890 ,1,18,646830 ,1,19,372755 ,1,20,634080 ,1,21,372445 ,1,22,646825 ,1,23,372555 ,2,14956,211025 ,2,822,36775 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378145 ,2,829,45 ,1,0,647560 ,1,1,360845 ,1,2,647555 ,1,3,361165 ,1,4,647550 ,1,5,360175 ,1,6,647545 ,1,7,362575 ,1,8,615940 ,1,9,361155 ,1,10,613280 ,1,11,360370 ,1,12,647540 ,1,13,360400 ,1,14,625360 ,1,15,361025 ,1,16,622995 ,1,17,362820 ,1,18,618495 ,1,19,361660 ,1,20,618890 ,1,21,362585 ,1,22,628950 ,1,23,362895 ,1,24,628550 ,1,25,360165 ,1,26,625595 ,1,27,363250 ,1,28,616130 ,1,29,361285 ,1,30,647535 ,1,31,362565 ,1,32,646855 ,1,33,360775 ,1,34,614645 ,1,35,360200 ,1,36,615220 ,1,37,363060 ,1,38,636580 ,1,39,362800 ,1,40,618130 ,1,41,360105 ,1,42,617155 ,1,43,362100 ,1,44,621235 ,1,45,361985 ,1,46,615300 ,1,47,360785 ,1,48,620270 ,1,49,361430 ,1,50,619705 ,1,51,360905 ,1,52,614710 ,1,53,363220 ,1,54,647530 ,1,55,360705 ,1,56,620685 ,1,57,359850 ,1,58,633960 ,1,59,362465 ,1,60,614705 ,1,61,362445 ,1,62,616170 ,1,63,361645 ,1,64,614045 ,1,65,362210 ,1,66,613975 ,1,67,361120 ,1,68,614020 ,1,69,361340 ,1,70,614025 ,1,71,363350 ,1,72,618550 ,1,73,360735 ,1,74,614390 ,1,75,361005 ,1,76,621000 ,1,77,362935 ,1,78,623955 ,1,79,362060 ,1,80,619445 ,1,81,362395 ,1,82,613640 ,1,83,362545 ,1,84,616545 ,1,85,363105 ,1,86,616230 ,1,87,361175 ,1,88,647525 ,1,89,362680 ,1,90,626560 ,1,91,360490 ,1,92,618545 ,1,93,363230 ,1,94,620805 ,1,95,362190 ,1,96,617450 ,1,97,361360 ,1,98,629995 ,1,99,363080 ,1,100,619075 ,1,101,363145 ,1,102,634020 ,1,103,360580 ,1,104,643500 ,1,105,361305 ,1,106,614600 ,1,107,363290 ,1,108,642630 ,1,109,362245 ,1,110,614635 ,1,111,361200 ,1,112,647485 ,1,113,360090 ,1,114,647480 ,1,115,361865 ,1,116,647475 ,1,117,360480 ,1,118,647470 ,1,119,361330 ,1,120,647465 ,1,121,362040 ,1,122,621765 ,1,123,359940 ,1,124,647460 ,1,125,363375 ,1,126,647455 ,1,127,362700 ,1,128,622625 ,1,129,363125 ,1,130,622650 ,1,131,362305 ,1,132,647450 ,1,133,361035 ,1,134,647425 ,1,135,361110 ,1,136,647420 ,1,137,360695 ,1,138,647415 ,1,139,361520 ,1,140,626295 ,1,141,362065 ,1,142,621100 ,1,143,362945 ,1,144,647410 ,1,145,360915 ,1,146,647405 ,1,147,360885 ,1,148,647400 ,1,149,360855 ,1,150,647395 ,1,151,361580 ,1,152,647390 ,1,153,361245 ,1,154,647360 ,1,155,362345 ,1,156,647355 ,1,157,361045 ,1,158,647350 ,1,159,360500 ,1,160,647345 ,1,161,361015 ,1,162,647340 ,1,163,361560 ,1,164,647335 ,1,165,360625 ,1,166,647330 ,1,167,362365 ,1,168,614195 ,1,169,360310 ,1,170,647325 ,1,171,362455 ,1,172,619270 ,1,173,362885 ,1,174,647300 ,1,175,359905 ,1,176,647295 ,1,177,362140 ,1,178,614145 ,1,179,361770 ,1,180,647290 ,1,181,361055 ,1,182,643550 ,1,183,361145 ,1,184,647285 ,1,185,362595 ,1,186,614160 ,1,187,361220 ,1,188,643140 ,1,189,360520 ,1,190,616615 ,1,191,360320 ,1,192,618860 ,1,193,363155 ,1,194,647280 ,1,195,362050 ,1,196,647275 ,1,197,362765 ,1,198,647270 ,1,199,361510 ,1,200,647265 ,1,201,363135 ,1,202,647250 ,1,203,360155 ,1,204,647245 ,1,205,361465 ,1,206,646850 ,1,207,360210 ,1,208,647240 ,1,209,362485 ,1,210,647235 ,1,211,363240 ,1,212,647230 ,1,213,363020 ,1,214,647225 ,1,215,360745 ,1,216,647220 ,1,217,362775 ,1,218,647215 ,1,219,360930 ,1,220,615830 ,1,221,362120 ,1,222,647185 ,1,223,361615 ,1,224,647180 ,1,225,361635 ,1,226,615515 ,1,227,361995 ,1,228,647175 ,1,229,360950 ,1,230,647170 ,1,231,360380 ,1,232,647165 ,1,233,361840 ,1,234,647160 ,1,235,360610 ,1,236,647155 ,1,237,361210 ,1,238,647150 ,1,239,363165 ,1,240,647120 ,1,241,360725 ,1,242,647115 ,1,243,363280 ,1,244,647110 ,1,245,361740 ,1,246,647105 ,1,247,361720 ,1,248,647095 ,1,249,360010 ,1,250,647090 ,1,251,362415 ,1,252,647085 ,1,253,361100 ,1,254,647080 ,1,255,362810 ,1,256,647060 ,1,257,361570 ,1,258,647055 ,1,259,362090 ,1,260,647050 ,1,261,361235 ,1,262,647045 ,1,263,360330 ,1,264,647030 ,1,265,361475 ,1,266,615610 ,1,267,359945 ,1,268,647025 ,1,269,360790 ,1,270,627185 ,1,271,362510 ,1,272,647020 ,1,273,360415 ,1,274,647015 ,1,275,360585 ,1,276,628415 ,1,277,362155 ,1,278,646995 ,1,279,361785 ,1,280,646990 ,1,281,360055 ,1,282,646985 ,1,283,360540 ,1,284,646980 ,1,285,360270 ,1,286,646975 ,1,287,361315 ,1,288,646970 ,1,289,360390 ,1,290,646965 ,1,291,363340 ,1,292,646960 ,1,293,360600 ,1,294,646940 ,1,295,361760 ,1,296,646935 ,1,297,361750 ,1,298,646930 ,1,299,360220 ,1,300,646925 ,1,301,360430 ,1,302,646910 ,1,303,363270 ,1,304,646905 ,1,305,362925 ,1,306,646900 ,1,307,361265 ,1,308,646895 ,1,309,362405 ,1,310,646865 ,1,311,362385 ,1,312,646860 ,1,313,359895 ,2,14956,265410 ,2,822,36775 ,2,14975,580475 ,2,14976,23450 ,2,14977,95415 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,643550 ,1,1,366500 ,1,2,622650 ,1,3,366300 ,1,4,619270 ,1,5,366025 ,1,6,621100 ,1,7,364010 ,1,8,647275 ,1,9,364730 ,1,10,647605 ,1,11,365250 ,1,12,647600 ,1,13,364030 ,1,14,647270 ,1,15,364355 ,1,16,647425 ,1,17,366060 ,1,18,647420 ,1,19,365745 ,1,20,647245 ,1,21,363480 ,1,22,647595 ,1,23,365485 ,1,24,647590 ,1,25,366685 ,1,26,647280 ,1,27,365145 ,1,28,647455 ,1,29,363465 ,1,30,647290 ,1,31,366080 ,1,32,647585 ,1,33,365055 ,2,14956,213375 ,2,822,36775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160920 ,2,14979,362290 ,2,829,45 ,1,0,7520 ,1,1,186970 ,1,2,272425 ,1,3,272415 ,1,4,272405 ,1,5,272395 ,1,6,272385 ,1,7,272345 ,1,8,272335 ,1,9,272325 ,1,10,272315 ,1,11,272305 ,1,12,272295 ,1,13,272285 ,1,14,272275 ,1,15,272255 ,1,16,272245 ,1,17,272235 ,1,18,272225 ,1,19,272210 ,1,20,272200 ,1,21,272190 ,1,22,272180 ,1,23,272145 ,1,24,272135 ,1,25,272125 ,1,26,272115 ,1,27,272105 ,1,28,272095 ,1,29,272085 ,1,30,272075 ,1,31,272055 ,1,32,272045 ,1,33,272035 ,1,34,272025 ,1,35,272010 ,1,36,272000 ,1,37,271990 ,1,38,271980 ,1,39,271945 ,1,40,271935 ,1,41,271925 ,1,42,271915 ,1,43,271905 ,1,44,271895 ,1,45,271885 ,1,46,271875 ,1,47,271850 ,1,48,271840 ,1,49,271830 ,1,50,271820 ,1,51,271805 ,1,52,271795 ,1,53,271785 ,1,54,271775 ,1,55,271755 ,1,56,271745 ,1,57,271735 ,1,58,271725 ,1,59,271705 ,1,60,271695 ,1,61,271685 ,1,62,271675 ,1,63,271645 ,1,64,271635 ,1,65,271625 ,1,66,271615 ,1,67,271605 ,1,68,271595 ,1,69,271585 ,1,70,271575 ,1,71,271515 ,1,72,271505 ,1,73,271625 ,1,74,271495 ,1,75,271625 ,1,76,271485 ,1,77,271470 ,1,78,271460 ,1,79,271450 ,1,80,271440 ,1,81,271410 ,1,82,271400 ,1,83,271390 ,1,84,271380 ,1,85,271925 ,1,86,271365 ,1,87,271390 ,1,88,271355 ,1,89,271345 ,1,90,271335 ,1,91,271305 ,1,92,271295 ,1,93,271285 ,1,94,271275 ,1,95,272055 ,1,96,271265 ,1,97,271925 ,1,98,271255 ,1,99,271245 ,1,100,271235 ,1,101,271215 ,1,102,271205 ,1,103,271195 ,1,104,271185 ,1,105,271175 ,1,106,271165 ,1,107,271155 ,1,108,271145 ,1,109,271115 ,1,110,271105 ,1,111,271095 ,1,112,271085 ,1,113,271075 ,1,114,271065 ,1,115,271755 ,1,116,271055 ,1,117,271625 ,1,118,271045 ,1,119,271010 ,1,120,271000 ,1,121,271755 ,1,122,270990 ,1,123,270980 ,1,124,270970 ,1,125,270960 ,1,126,270950 ,1,127,270940 ,1,128,270915 ,1,129,270905 ,1,130,270895 ,1,131,270885 ,1,132,270870 ,1,133,271990 ,1,134,270860 ,1,135,270850 ,1,136,270840 ,1,137,270815 ,1,138,270805 ,1,139,270795 ,1,140,270785 ,1,141,270775 ,1,142,270765 ,1,143,270755 ,1,144,270745 ,1,145,270705 ,1,146,270695 ,1,147,272145 ,1,148,270685 ,1,149,270675 ,1,150,270665 ,1,151,270655 ,1,152,270645 ,1,153,270635 ,1,154,270610 ,1,155,270600 ,2,14956,213225 ,2,822,36775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235410 ,2,14979,340450 ,2,829,45 ,1,0,647585 ,1,1,364500 ,1,2,647455 ,1,3,365800 ,1,4,622625 ,1,5,363685 ,1,6,622650 ,1,7,365765 ,1,8,647450 ,1,9,364805 ,1,10,621100 ,1,11,366930 ,1,12,626295 ,1,13,364085 ,1,14,643140 ,1,15,364590 ,1,16,616615 ,1,17,365090 ,1,18,618860 ,1,19,364020 ,1,20,647325 ,1,21,366910 ,1,22,643550 ,1,23,365985 ,1,24,647285 ,1,25,365005 ,1,26,614160 ,1,27,363960 ,1,28,619270 ,1,29,366535 ,1,30,647295 ,1,31,365440 ,1,32,614145 ,1,33,365100 ,1,34,647290 ,1,35,365430 ,1,36,647280 ,1,37,364345 ,1,38,647275 ,1,39,364240 ,1,40,647605 ,1,41,366840 ,1,42,647600 ,1,43,364250 ,1,44,647270 ,1,45,363790 ,1,46,647425 ,1,47,365645 ,1,48,647420 ,1,49,365570 ,1,50,647245 ,1,51,365325 ,1,52,647915 ,1,53,364685 ,1,54,618545 ,1,55,366885 ,1,56,617450 ,1,57,364900 ,1,58,618550 ,1,59,366920 ,1,60,614390 ,1,61,366425 ,1,62,625360 ,1,63,365670 ,1,64,647910 ,1,65,364520 ,1,66,647895 ,1,67,364710 ,1,68,647890 ,1,69,365550 ,1,70,647885 ,1,71,363950 ,1,72,647880 ,1,73,364490 ,1,74,647870 ,1,75,364260 ,1,76,647865 ,1,77,365460 ,1,78,647860 ,1,79,366805 ,1,80,647855 ,1,81,367045 ,1,82,647830 ,1,83,364890 ,1,84,615300 ,1,85,366600 ,1,86,647090 ,1,87,366370 ,1,88,647050 ,1,89,366270 ,1,90,647055 ,1,91,364675 ,1,92,647095 ,1,93,363675 ,1,94,647825 ,1,95,364280 ,1,96,647820 ,1,97,363595 ,1,98,647175 ,1,99,365790 ,1,100,647030 ,1,101,365110 ,1,102,647045 ,1,103,365925 ,1,104,647080 ,1,105,364815 ,1,106,615780 ,1,107,363930 ,1,108,647060 ,1,109,364140 ,1,110,617155 ,1,111,365775 ,1,112,647530 ,1,113,366825 ,1,114,625595 ,1,115,366015 ,1,116,647540 ,1,117,366955 ,1,118,628950 ,1,119,364795 ,1,120,619075 ,1,121,366705 ,1,122,616130 ,1,123,366440 ,1,124,634020 ,1,125,366585 ,1,126,647535 ,1,127,366125 ,1,128,647815 ,1,129,366500 ,1,130,647215 ,1,131,366300 ,1,132,647180 ,1,133,366025 ,1,134,615830 ,1,135,364010 ,1,136,647810 ,1,137,364730 ,1,138,647805 ,1,139,365250 ,1,140,647800 ,1,141,364030 ,1,142,646850 ,1,143,364355 ,1,144,647240 ,1,145,366060 ,1,146,647235 ,1,147,365745 ,1,148,647230 ,1,149,363480 ,1,150,647225 ,1,151,365485 ,1,152,647220 ,1,153,366685 ,1,154,647795 ,1,155,365145 ,1,156,615515 ,1,157,363465 ,1,158,647780 ,1,159,366080 ,1,160,642225 ,1,161,366860 ,1,162,647085 ,1,163,364445 ,1,164,647105 ,1,165,366795 ,1,166,647775 ,1,167,363445 ,1,168,615715 ,1,169,365975 ,1,170,647770 ,1,171,365155 ,1,172,647765 ,1,173,365995 ,1,174,647760 ,1,175,366950 ,1,176,647755 ,1,177,363605 ,1,178,647750 ,1,179,364560 ,1,180,647745 ,1,181,364270 ,1,182,647735 ,1,183,363510 ,1,184,619705 ,1,185,364465 ,1,186,643500 ,1,187,364610 ,1,188,619445 ,1,189,364120 ,1,190,647730 ,1,191,363965 ,1,192,647725 ,1,193,367000 ,1,194,647720 ,1,195,364820 ,1,196,647595 ,1,197,363810 ,1,198,647715 ,1,199,366310 ,1,200,647710 ,1,201,365030 ,1,202,647705 ,1,203,366190 ,1,204,647590 ,1,205,366810 ,1,206,647700 ,1,207,364930 ,1,208,647675 ,1,209,365965 ,1,210,647670 ,1,211,366675 ,1,212,647665 ,1,213,366545 ,1,214,647660 ,1,215,364335 ,1,216,647025 ,1,217,364175 ,1,218,647655 ,1,219,364380 ,1,220,647650 ,1,221,366480 ,1,222,647645 ,1,223,365560 ,1,224,647640 ,1,225,366235 ,1,226,647620 ,1,227,365385 ,1,228,647615 ,1,229,365450 ,1,230,647610 ,1,231,363625 ,2,14956,265420 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340410 ,2,829,45 ,1,0,670040 ,1,1,366290 ,1,2,670035 ,1,3,363740 ,1,4,670015 ,1,5,365200 ,1,6,670010 ,1,7,364755 ,1,8,670005 ,1,9,364075 ,1,10,670000 ,1,11,365135 ,1,12,669995 ,1,13,364290 ,1,14,669990 ,1,15,366595 ,1,16,669985 ,1,17,364500 ,1,18,669980 ,1,19,365655 ,1,20,669940 ,1,21,364880 ,1,22,669935 ,1,23,365240 ,1,24,669930 ,1,25,365610 ,1,26,669925 ,1,27,365355 ,1,28,669920 ,1,29,365505 ,1,30,647810 ,1,31,365800 ,1,32,647805 ,1,33,363685 ,1,34,647800 ,1,35,365765 ,1,36,646850 ,1,37,364805 ,1,38,647240 ,1,39,366930 ,1,40,647235 ,1,41,364085 ,1,42,647230 ,1,43,364590 ,1,44,647225 ,1,45,365090 ,1,46,647220 ,1,47,364020 ,1,48,647215 ,1,49,366910 ,1,50,615830 ,1,51,365985 ,1,52,647185 ,1,53,365005 ,1,54,647180 ,1,55,363960 ,1,56,615515 ,1,57,366535 ,1,58,647815 ,1,59,365440 ,1,60,647090 ,1,61,365100 ,1,62,647050 ,1,63,365430 ,1,64,647055 ,1,65,364345 ,1,66,647095 ,1,67,364240 ,1,68,647825 ,1,69,366840 ,1,70,647820 ,1,71,364250 ,1,72,647175 ,1,73,363790 ,1,74,647030 ,1,75,365645 ,1,76,647045 ,1,77,365570 ,1,78,647080 ,1,79,365325 ,1,80,615780 ,1,81,364685 ,1,82,614645 ,1,83,365755 ,1,84,646855 ,1,85,366050 ,1,86,614600 ,1,87,363800 ,1,88,642630 ,1,89,365210 ,1,90,614635 ,1,91,366005 ,1,92,628415 ,1,93,365885 ,1,94,614195 ,1,95,363780 ,1,96,627185 ,1,97,363900 ,1,98,647525 ,1,99,366715 ,1,100,613280 ,1,101,364410 ,1,102,669915 ,1,103,366885 ,1,104,669910 ,1,105,364900 ,1,106,669905 ,1,107,366920 ,1,108,669885 ,1,109,366425 ,1,110,625360 ,1,111,365670 ,1,112,647530 ,1,113,364520 ,1,114,647470 ,1,115,364710 ,1,116,647595 ,1,117,365550 ,1,118,647920 ,1,119,363950 ,1,120,647590 ,1,121,364490 ,1,122,647480 ,1,123,364260 ,1,124,619075 ,1,125,365460 ,1,126,647795 ,1,127,363615 ,1,128,633960 ,1,129,366805 ,1,130,647540 ,1,131,367045 ,1,132,619705 ,1,133,364890 ,1,134,669880 ,1,135,366600 ,1,136,669875 ,1,137,366370 ,1,138,669870 ,1,139,366270 ,1,140,669865 ,1,141,364675 ,1,142,669860 ,1,143,363675 ,1,144,669855 ,1,145,364280 ,1,146,669850 ,1,147,363595 ,1,148,669825 ,1,149,365790 ,1,150,669820 ,1,151,365110 ,1,152,669815 ,1,153,365925 ,1,154,669810 ,1,155,364815 ,1,156,669800 ,1,157,363930 ,1,158,669795 ,1,159,364140 ,1,160,669790 ,1,161,364455 ,1,162,669785 ,1,163,364935 ,1,164,669755 ,1,165,365775 ,1,166,669750 ,1,167,366825 ,1,168,669745 ,1,169,366015 ,1,170,669740 ,1,171,366275 ,1,172,669735 ,1,173,366955 ,1,174,669730 ,1,175,364795 ,1,176,669725 ,1,177,365815 ,1,178,669720 ,1,179,366705 ,1,180,669695 ,1,181,366440 ,1,182,669690 ,1,183,366585 ,1,184,669685 ,1,185,366125 ,1,186,669680 ,1,187,366740 ,1,188,669675 ,1,189,366500 ,1,190,669670 ,1,191,366300 ,1,192,669665 ,1,193,366025 ,1,194,669660 ,1,195,364010 ,1,196,669635 ,1,197,365665 ,1,198,669630 ,1,199,364730 ,1,200,669625 ,1,201,365250 ,1,202,669620 ,1,203,364030 ,1,204,669615 ,1,205,364355 ,1,206,669610 ,1,207,366060 ,1,208,669605 ,1,209,365745 ,1,210,669600 ,1,211,363480 ,1,212,669565 ,1,213,365485 ,1,214,669560 ,1,215,366685 ,1,216,669555 ,1,217,365145 ,1,218,669550 ,1,219,363465 ,1,220,669545 ,1,221,365405 ,1,222,669540 ,1,223,366490 ,1,224,669535 ,1,225,366695 ,1,226,669530 ,1,227,366080 ,1,228,669505 ,1,229,366860 ,1,230,669500 ,1,231,364445 ,1,232,669495 ,1,233,366795 ,1,234,669490 ,1,235,363445 ,1,236,669485 ,1,237,365975 ,1,238,669480 ,1,239,365155 ,1,240,669475 ,1,241,365995 ,1,242,669470 ,1,243,366950 ,1,244,669440 ,1,245,363605 ,1,246,669435 ,1,247,364560 ,1,248,669430 ,1,249,364270 ,1,250,669425 ,1,251,363510 ,1,252,669415 ,1,253,366335 ,1,254,669410 ,1,255,364465 ,1,256,669405 ,1,257,364610 ,1,258,669400 ,1,259,364870 ,1,260,669360 ,1,261,365260 ,1,262,669355 ,1,263,363665 ,1,264,669350 ,1,265,366900 ,1,266,669345 ,1,267,366615 ,1,268,669340 ,1,269,366625 ,1,270,669335 ,1,271,365705 ,1,272,669330 ,1,273,366070 ,1,274,669325 ,1,275,363825 ,1,276,669300 ,1,277,365055 ,1,278,669295 ,1,279,364665 ,1,280,669290 ,1,281,366185 ,1,282,669285 ,1,283,366215 ,1,284,669280 ,1,285,364120 ,1,286,669275 ,1,287,364785 ,1,288,669270 ,1,289,363845 ,1,290,669265 ,1,291,366525 ,1,292,669245 ,1,293,365475 ,1,294,669240 ,1,295,363920 ,1,296,669235 ,1,297,365715 ,1,298,669230 ,1,299,364775 ,1,300,669225 ,1,301,366380 ,1,302,669220 ,1,303,365620 ,1,304,669215 ,1,305,364570 ,1,306,669210 ,1,307,366420 ,1,308,669190 ,1,309,364655 ,1,310,669185 ,1,311,364700 ,1,312,669180 ,1,313,365015 ,1,314,669175 ,1,315,364985 ,1,316,669170 ,1,317,366470 ,1,318,669165 ,1,319,365230 ,1,320,669160 ,1,321,365915 ,1,322,669155 ,1,323,366725 ,1,324,669135 ,1,325,363965 ,1,326,669130 ,1,327,367000 ,1,328,669125 ,1,329,364820 ,1,330,669120 ,1,331,363810 ,1,332,669110 ,1,333,366310 ,1,334,669105 ,1,335,365030 ,1,336,669100 ,1,337,366190 ,1,338,669095 ,1,339,366810 ,1,340,669070 ,1,341,366645 ,1,342,669065 ,1,343,363435 ,1,344,669060 ,1,345,364055 ,1,346,669055 ,1,347,363500 ,1,348,669050 ,1,349,363940 ,1,350,669045 ,1,351,364400 ,1,352,669040 ,1,353,364065 ,1,354,669035 ,1,355,364600 ,1,356,669025 ,1,357,364540 ,1,358,669020 ,1,359,365045 ,1,360,669015 ,1,361,366325 ,1,362,669010 ,1,363,366035 ,1,364,669000 ,1,365,366205 ,1,366,668995 ,1,367,363770 ,1,368,668990 ,1,369,364110 ,1,370,668985 ,1,371,365905 ,1,372,668950 ,1,373,363490 ,1,374,668945 ,1,375,364165 ,1,376,668940 ,1,377,365600 ,1,378,668935 ,1,379,364765 ,1,380,668930 ,1,381,364155 ,1,382,668925 ,1,383,364930 ,1,384,668920 ,1,385,363695 ,1,386,668915 ,1,387,365965 ,1,388,668890 ,1,389,363575 ,1,390,668885 ,1,391,363565 ,1,392,668880 ,1,393,366225 ,1,394,668875 ,1,395,366115 ,1,396,668870 ,1,397,366940 ,1,398,668865 ,1,399,366675 ,1,400,668860 ,1,401,366515 ,1,402,668855 ,1,403,367035 ,1,404,668840 ,1,405,366545 ,1,406,668835 ,1,407,364335 ,1,408,668830 ,1,409,363910 ,1,410,668825 ,1,411,366850 ,1,412,668810 ,1,413,365895 ,1,414,668805 ,1,415,366175 ,1,416,668800 ,1,417,365025 ,1,418,668795 ,1,419,366095 ,1,420,668765 ,1,421,363455 ,1,422,668760 ,1,423,364130 ,1,424,668755 ,1,425,365220 ,1,426,668750 ,1,427,363555 ,1,428,668740 ,1,429,365855 ,1,430,668735 ,1,431,366635 ,1,432,668730 ,1,433,367015 ,1,434,668725 ,1,435,364550 ,1,436,668710 ,1,437,364175 ,1,438,668705 ,1,439,364380 ,1,440,668700 ,1,441,366480 ,1,442,668695 ,1,443,365560 ,1,444,668685 ,1,445,366235 ,1,446,668680 ,1,447,365385 ,1,448,668675 ,1,449,365450 ,1,450,668670 ,1,451,363625 ,1,452,668655 ,1,453,365875 ,1,454,668650 ,1,455,365375 ,1,456,668645 ,1,457,365395 ,1,458,668640 ,1,459,364580 ,1,460,668630 ,1,461,364510 ,1,462,668625 ,1,463,365165 ,1,464,668620 ,1,465,363710 ,1,466,668615 ,1,467,366390 ,1,468,668590 ,1,469,364995 ,1,470,668585 ,1,471,365495 ,1,472,668580 ,1,473,364910 ,1,474,668575 ,1,475,363730 ,1,476,668570 ,1,477,366165 ,1,478,668565 ,1,479,364300 ,1,480,668560 ,1,481,364390 ,1,482,668555 ,1,483,364230 ,1,484,668535 ,1,485,364720 ,1,486,668530 ,1,487,365120 ,1,488,668525 ,1,489,367025 ,1,490,668520 ,1,491,366735 ,1,492,668515 ,1,493,366345 ,1,494,668510 ,1,495,365810 ,1,496,668505 ,1,497,366410 ,1,498,668500 ,1,499,365590 ,1,500,668470 ,1,501,365335 ,1,502,668465 ,1,503,364470 ,1,504,668460 ,1,505,366105 ,1,506,668455 ,1,507,365695 ,1,508,668445 ,1,509,366870 ,1,510,668440 ,1,511,365685 ,1,512,668435 ,1,513,363835 ,1,514,668430 ,1,515,363720 ,1,516,668405 ,1,517,364920 ,1,518,668400 ,1,519,363545 ,1,520,668395 ,1,521,365540 ,1,522,668390 ,1,523,365345 ,1,524,668385 ,1,525,363405 ,1,526,668380 ,1,527,366575 ,1,528,668375 ,1,529,363395 ,1,530,668370 ,1,531,364185 ,1,532,668360 ,1,533,365190 ,2,14956,213395 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160950 ,2,14979,340470 ,2,829,45 ,1,0,615295 ,1,1,361410 ,1,2,618130 ,1,3,361455 ,1,4,614710 ,1,5,362785 ,1,6,617155 ,1,7,363320 ,1,8,615300 ,1,9,362265 ,1,10,620685 ,1,11,361295 ,1,12,620270 ,1,13,360940 ,1,14,628550 ,1,15,362865 ,1,16,649900 ,1,17,360845 ,1,18,649895 ,1,19,361165 ,1,20,649890 ,1,21,360000 ,1,22,649885 ,1,23,362200 ,1,24,649880 ,1,25,360175 ,1,26,649865 ,1,27,362575 ,1,28,649860 ,1,29,362110 ,1,30,649855 ,1,31,361155 ,1,32,649850 ,1,33,360370 ,1,34,649840 ,1,35,360400 ,1,36,649835 ,1,37,361025 ,1,38,649830 ,1,39,362820 ,1,40,649825 ,1,41,361660 ,1,42,649800 ,1,43,362585 ,1,44,649795 ,1,45,362895 ,1,46,649790 ,1,47,360165 ,1,48,649785 ,1,49,363250 ,1,50,649780 ,1,51,361285 ,1,52,649775 ,1,53,362565 ,1,54,649770 ,1,55,360775 ,1,56,649765 ,1,57,360200 ,1,58,649750 ,1,59,363060 ,1,60,649745 ,1,61,362800 ,1,62,649740 ,1,63,360105 ,1,64,649735 ,1,65,362100 ,1,66,649730 ,1,67,361985 ,1,68,649725 ,1,69,360785 ,1,70,649720 ,1,71,361430 ,1,72,649715 ,1,73,360905 ,1,74,649685 ,1,75,363220 ,1,76,649680 ,1,77,360705 ,1,78,649675 ,1,79,359850 ,1,80,649670 ,1,81,362465 ,1,82,649665 ,1,83,362445 ,1,84,649660 ,1,85,361645 ,1,86,649655 ,1,87,362210 ,1,88,649650 ,1,89,361120 ,1,90,649625 ,1,91,361340 ,1,92,649620 ,1,93,363350 ,1,94,649615 ,1,95,360735 ,1,96,649610 ,1,97,361005 ,1,98,649600 ,1,99,362935 ,1,100,649595 ,1,101,362060 ,1,102,649590 ,1,103,362395 ,1,104,649585 ,1,105,362545 ,1,106,649555 ,1,107,363105 ,1,108,649550 ,1,109,361175 ,1,110,649545 ,1,111,362680 ,1,112,649540 ,1,113,360490 ,1,114,649530 ,1,115,363230 ,1,116,649525 ,1,117,362190 ,1,118,649520 ,1,119,361360 ,1,120,649515 ,1,121,363080 ,1,122,649500 ,1,123,363145 ,1,124,649495 ,1,125,360580 ,1,126,649490 ,1,127,361305 ,1,128,649485 ,1,129,363290 ,1,130,649475 ,1,131,362245 ,1,132,649470 ,1,133,361200 ,1,134,649465 ,1,135,360090 ,1,136,649460 ,1,137,361865 ,1,138,649430 ,1,139,360480 ,1,140,649425 ,1,141,361330 ,1,142,649420 ,1,143,362040 ,1,144,649415 ,1,145,359940 ,1,146,649410 ,1,147,363375 ,1,148,649405 ,1,149,362700 ,1,150,649400 ,1,151,363125 ,1,152,649395 ,1,153,362305 ,1,154,649375 ,1,155,361035 ,1,156,649370 ,1,157,361110 ,1,158,649365 ,1,159,360695 ,1,160,649360 ,1,161,361520 ,1,162,649350 ,1,163,362065 ,1,164,649345 ,1,165,362945 ,1,166,649340 ,1,167,360915 ,1,168,649335 ,1,169,360885 ,1,170,649320 ,1,171,360855 ,1,172,649315 ,1,173,361580 ,1,174,649310 ,1,175,361245 ,1,176,649305 ,1,177,362345 ,1,178,649295 ,1,179,361045 ,1,180,649290 ,1,181,360500 ,1,182,649285 ,1,183,361015 ,1,184,649280 ,1,185,361560 ,1,186,649260 ,1,187,360625 ,1,188,649255 ,1,189,362365 ,1,190,649250 ,1,191,360310 ,1,192,649245 ,1,193,362455 ,1,194,649240 ,1,195,362885 ,1,196,649235 ,1,197,359905 ,1,198,649230 ,1,199,362140 ,1,200,649225 ,1,201,361770 ,1,202,649210 ,1,203,361055 ,1,204,649205 ,1,205,361145 ,1,206,649200 ,1,207,362595 ,1,208,649195 ,1,209,361220 ,1,210,649185 ,1,211,360520 ,1,212,649180 ,1,213,360320 ,1,214,649175 ,1,215,363155 ,1,216,649170 ,1,217,362050 ,1,218,649155 ,1,219,362765 ,1,220,649150 ,1,221,361510 ,1,222,649145 ,1,223,363135 ,1,224,649140 ,1,225,360155 ,1,226,649125 ,1,227,361465 ,1,228,649120 ,1,229,360210 ,1,230,649115 ,1,231,362485 ,1,232,649110 ,1,233,363240 ,1,234,649090 ,1,235,363020 ,1,236,649085 ,1,237,360745 ,1,238,649080 ,1,239,362775 ,1,240,649075 ,1,241,360930 ,1,242,649060 ,1,243,362120 ,1,244,649055 ,1,245,361615 ,1,246,649050 ,1,247,361635 ,1,248,649045 ,1,249,361995 ,1,250,649020 ,1,251,360950 ,1,252,649015 ,1,253,363000 ,1,254,649010 ,1,255,360380 ,1,256,649005 ,1,257,362325 ,1,258,648995 ,1,259,360960 ,1,260,648990 ,1,261,361840 ,1,262,648985 ,1,263,360610 ,1,264,648980 ,1,265,361210 ,1,266,648945 ,1,267,363165 ,1,268,648940 ,1,269,360650 ,1,270,648935 ,1,271,360725 ,1,272,648930 ,1,273,363280 ,1,274,648920 ,1,275,361740 ,1,276,648915 ,1,277,361720 ,1,278,648910 ,1,279,360010 ,1,280,648905 ,1,281,362415 ,1,282,648875 ,1,283,361100 ,1,284,648870 ,1,285,362810 ,1,286,648865 ,1,287,361570 ,1,288,648860 ,1,289,362090 ,1,290,648840 ,1,291,361235 ,1,292,648835 ,1,293,360330 ,1,294,648830 ,1,295,361475 ,1,296,648825 ,1,297,360550 ,1,298,648810 ,1,299,360805 ,1,300,648805 ,1,301,361895 ,1,302,648800 ,1,303,363330 ,1,304,648795 ,1,305,362150 ,1,306,648785 ,1,307,361420 ,1,308,648780 ,1,309,361130 ,1,310,648775 ,1,311,361625 ,1,312,648770 ,1,313,360040 ,1,314,648750 ,1,315,362605 ,1,316,648745 ,1,317,361960 ,1,318,648740 ,1,319,362535 ,1,320,648735 ,1,321,361850 ,1,322,648730 ,1,323,361550 ,1,324,648725 ,1,325,359945 ,1,326,648720 ,1,327,360790 ,1,328,648715 ,1,329,362510 ,1,330,648710 ,1,331,360415 ,1,332,648705 ,1,333,360585 ,1,334,648700 ,1,335,362155 ,1,336,648695 ,1,337,361785 ,1,338,648690 ,1,339,360055 ,1,340,648685 ,1,341,360835 ,1,342,648680 ,1,343,362275 ,1,344,648675 ,1,345,360050 ,1,346,648650 ,1,347,361820 ,1,348,648645 ,1,349,361680 ,1,350,648640 ,1,351,360185 ,1,352,648635 ,1,353,362670 ,1,354,648630 ,1,355,363070 ,1,356,648625 ,1,357,359970 ,1,358,648620 ,1,359,359980 ,1,360,648615 ,1,361,361975 ,1,362,648605 ,1,363,360115 ,1,364,648600 ,1,365,361540 ,1,366,648595 ,1,367,362495 ,1,368,648590 ,1,369,362755 ,1,370,648575 ,1,371,363175 ,1,372,648570 ,1,373,359885 ,1,374,648565 ,1,375,363030 ,1,376,648560 ,1,377,361485 ,1,378,648540 ,1,379,360540 ,1,380,648535 ,1,381,360270 ,1,382,648530 ,1,383,361315 ,1,384,648525 ,1,385,360390 ,1,386,648515 ,1,387,363340 ,1,388,648510 ,1,389,359990 ,1,390,648505 ,1,391,362375 ,1,392,648500 ,1,393,360600 ,1,394,648470 ,1,395,359960 ,1,396,648465 ,1,397,361940 ,1,398,648460 ,1,399,361760 ,1,400,648455 ,1,401,360340 ,1,402,648450 ,1,403,361875 ,1,404,648445 ,1,405,361750 ,1,406,648440 ,1,407,360220 ,1,408,648435 ,1,409,362170 ,1,410,648405 ,1,411,360640 ,1,412,648400 ,1,413,362505 ,1,414,648395 ,1,415,360685 ,1,416,648390 ,1,417,360620 ,1,418,648380 ,1,419,361780 ,1,420,648375 ,1,421,360260 ,1,422,648370 ,1,423,361350 ,1,424,648365 ,1,425,361885 ,1,426,648340 ,1,427,362005 ,1,428,648335 ,1,429,362875 ,1,430,648330 ,1,431,363385 ,1,432,648325 ,1,433,360510 ,1,434,648300 ,1,435,361690 ,1,436,648295 ,1,437,360825 ,1,438,648290 ,1,439,360430 ,1,440,648285 ,1,441,363270 ,1,442,648265 ,1,443,362925 ,1,444,648260 ,1,445,361265 ,1,446,648255 ,1,447,362405 ,1,448,648250 ,1,449,362385 ,1,450,648245 ,1,451,359895 ,1,452,648240 ,1,453,360450 ,1,454,648235 ,1,455,362830 ,1,456,648230 ,1,457,363050 ,1,458,648205 ,1,459,360715 ,1,460,648200 ,1,461,360675 ,1,462,648195 ,1,463,360070 ,1,464,648190 ,1,465,362720 ,1,466,648185 ,1,467,363010 ,1,468,648180 ,1,469,360290 ,1,470,648175 ,1,471,361255 ,1,472,648170 ,1,473,363115 ,1,474,648145 ,1,475,362435 ,1,476,648140 ,1,477,362295 ,1,478,648135 ,1,479,362555 ,1,480,648130 ,1,481,361930 ,1,482,648125 ,1,483,362315 ,1,484,648120 ,1,485,362650 ,1,486,648115 ,1,487,361730 ,1,488,648110 ,1,489,362255 ,1,490,648075 ,1,491,363260 ,1,492,648070 ,1,493,362660 ,1,494,648065 ,1,495,360085 ,1,496,648060 ,1,497,360895 ,1,498,648050 ,1,499,361440 ,1,500,648045 ,1,501,362690 ,1,502,648040 ,1,503,361670 ,1,504,648035 ,1,505,361950 ,1,506,648015 ,1,507,362915 ,1,508,648010 ,1,509,362180 ,1,510,648005 ,1,511,362710 ,1,512,648000 ,1,513,362355 ,1,514,647990 ,1,515,361065 ,1,516,647985 ,1,517,360280 ,1,518,647980 ,1,519,361830 ,1,520,647975 ,1,521,359875 ,1,522,647950 ,1,523,360440 ,1,524,647945 ,1,525,360995 ,1,526,647940 ,1,527,360230 ,1,528,647935 ,1,529,360530 ,1,530,647925 ,1,531,361190 ,1,532,622995 ,1,533,361525 ,2,14956,213395 ,2,822,36775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235440 ,2,14979,340500 ,2,829,45 ,1,0,613640 ,1,1,371655 ,1,2,614705 ,1,3,371835 ,1,4,614045 ,1,5,371865 ,1,6,618550 ,1,7,371695 ,1,8,618130 ,1,9,371685 ,1,10,625360 ,1,11,371755 ,1,12,647460 ,1,13,371710 ,1,14,615715 ,1,15,371650 ,1,16,649990 ,1,17,371825 ,1,18,626050 ,1,19,371875 ,1,20,649985 ,1,21,371885 ,1,22,617670 ,1,23,371615 ,1,24,649980 ,1,25,371765 ,1,26,649975 ,1,27,371815 ,1,28,649970 ,1,29,371625 ,1,30,649965 ,1,31,371680 ,1,32,649960 ,1,33,371810 ,1,34,649955 ,1,35,371670 ,1,36,649915 ,1,37,371775 ,1,38,649910 ,1,39,371785 ,1,40,649905 ,1,41,371715 ,2,14956,265430 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340420 ,2,829,45 ,1,0,370595 ,1,1,650005 ,2,14956,213225 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160920 ,2,14979,340460 ,2,829,45 ,1,0,272495 ,1,1,214165 ,2,14956,265450 ,2,822,36775 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340430 ,2,829,45 ,1,0,272635 ,1,1,272625 ,1,2,272615 ,1,3,272605 ,1,4,272595 ,1,5,272585 ,1,6,272555 ,1,7,272545 ,1,8,272535 ,1,9,272525 ,1,10,272515 ,1,11,272505 ,2,14956,213305 ,2,822,36775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160830 ,2,14979,361640 ,2,829,45 ,1,0,4555 ,1,1,4555 ,1,2,11265 ,1,3,273470 ,1,4,273460 ,1,5,273460 ,1,6,273450 ,1,7,273450 ,1,8,273440 ,1,9,273440 ,1,10,7745 ,1,11,11045 ,1,12,273410 ,1,13,273400 ,1,14,273390 ,1,15,273380 ,1,16,273370 ,1,17,273450 ,1,18,273360 ,1,19,273350 ,1,20,273340 ,1,21,273300 ,1,22,273290 ,1,23,273440 ,1,24,273280 ,1,25,273270 ,1,26,273260 ,1,27,273250 ,1,28,273240 ,1,29,273240 ,1,30,273230 ,1,31,273230 ,1,32,11900 ,1,33,11900 ,1,34,273190 ,1,35,273180 ,1,36,273170 ,1,37,273160 ,1,38,273140 ,1,39,273130 ,1,40,273120 ,1,41,273110 ,1,42,273070 ,1,43,273060 ,1,44,273050 ,1,45,273040 ,1,46,273025 ,1,47,273015 ,1,48,273005 ,1,49,272995 ,1,50,272970 ,1,51,272960 ,1,52,272950 ,1,53,272940 ,1,54,272925 ,1,55,272915 ,1,56,10170 ,1,57,272905 ,1,58,272895 ,1,59,272870 ,1,60,272860 ,1,61,272850 ,1,62,6860 ,1,63,272840 ,1,64,272825 ,1,65,272815 ,1,66,272805 ,1,67,272795 ,1,68,272770 ,1,69,272760 ,1,70,272750 ,1,71,272740 ,1,72,272730 ,1,73,272720 ,1,74,11340 ,1,75,11340 ,1,76,272710 ,1,77,272700 ,1,78,3525 ,1,79,3525 ,1,80,5410 ,1,81,5410 ,1,82,7150 ,1,83,7150 ,1,84,272655 ,1,85,272655 ,1,86,272645 ,1,87,272645 ,2,14956,213485 ,2,822,36775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,161020 ,2,14979,361955 ,2,829,45 ,1,0,647455 ,1,1,365800 ,1,2,622625 ,1,3,363685 ,1,4,622650 ,1,5,365765 ,1,6,647450 ,1,7,364805 ,1,8,621100 ,1,9,366930 ,1,10,626295 ,1,11,364085 ,1,12,643140 ,1,13,364590 ,1,14,616615 ,1,15,365090 ,1,16,618860 ,1,17,364020 ,1,18,647325 ,1,19,366910 ,1,20,643550 ,1,21,365985 ,1,22,647285 ,1,23,365005 ,1,24,614160 ,1,25,363960 ,1,26,619270 ,1,27,366535 ,1,28,647295 ,1,29,365440 ,1,30,614145 ,1,31,365100 ,1,32,647290 ,1,33,365430 ,1,34,647280 ,1,35,364345 ,1,36,647275 ,1,37,364240 ,1,38,647605 ,1,39,366840 ,1,40,647600 ,1,41,364250 ,1,42,647270 ,1,43,363790 ,1,44,647425 ,1,45,365645 ,1,46,647420 ,1,47,365570 ,1,48,647245 ,1,49,365325 ,1,50,647915 ,1,51,364685 ,1,52,614645 ,1,53,365755 ,1,54,646855 ,1,55,366050 ,1,56,614600 ,1,57,363800 ,1,58,642630 ,1,59,365210 ,1,60,614635 ,1,61,366005 ,1,62,628415 ,1,63,365885 ,1,64,614195 ,1,65,363780 ,1,66,627185 ,1,67,363900 ,1,68,647525 ,1,69,366715 ,1,70,613280 ,1,71,364410 ,1,72,650370 ,1,73,366885 ,1,74,649990 ,1,75,364900 ,1,76,650365 ,1,77,366920 ,1,78,650360 ,1,79,366425 ,1,80,625360 ,1,81,365670 ,1,82,647530 ,1,83,364520 ,1,84,647470 ,1,85,364710 ,1,86,647595 ,1,87,365550 ,1,88,647920 ,1,89,363950 ,1,90,647590 ,1,91,364490 ,1,92,647480 ,1,93,364260 ,1,94,619075 ,1,95,365460 ,1,96,647795 ,1,97,363615 ,1,98,633960 ,1,99,366805 ,1,100,647540 ,1,101,367045 ,1,102,619705 ,1,103,364890 ,1,104,650340 ,1,105,366600 ,1,106,650335 ,1,107,366370 ,1,108,650330 ,1,109,366270 ,1,110,650325 ,1,111,364675 ,1,112,650280 ,1,113,363675 ,1,114,650275 ,1,115,364280 ,1,116,650270 ,1,117,363595 ,1,118,650265 ,1,119,365790 ,1,120,650260 ,1,121,365110 ,1,122,650255 ,1,123,365925 ,1,124,650250 ,1,125,364815 ,1,126,646835 ,1,127,363930 ,1,128,650245 ,1,129,364140 ,1,130,650225 ,1,131,364455 ,1,132,650220 ,1,133,365775 ,1,134,650215 ,1,135,366825 ,1,136,650210 ,1,137,366015 ,1,138,650195 ,1,139,366275 ,1,140,650190 ,1,141,366955 ,1,142,650185 ,1,143,364795 ,1,144,641800 ,1,145,365815 ,1,146,650180 ,1,147,366705 ,1,148,650155 ,1,149,366440 ,1,150,650150 ,1,151,366585 ,1,152,650145 ,1,153,366125 ,1,154,650140 ,1,155,366740 ,1,156,646810 ,1,157,366500 ,1,158,646805 ,1,159,366300 ,1,160,646800 ,1,161,364010 ,1,162,650135 ,1,163,365665 ,1,164,646795 ,1,165,364730 ,1,166,646790 ,1,167,365250 ,1,168,646785 ,1,169,364030 ,1,170,646780 ,1,171,364355 ,1,172,646775 ,1,173,366060 ,1,174,646750 ,1,175,365745 ,1,176,646745 ,1,177,363480 ,1,178,646740 ,1,179,365485 ,1,180,646735 ,1,181,366685 ,1,182,646730 ,1,183,365145 ,1,184,646725 ,1,185,363465 ,1,186,642455 ,1,187,366490 ,1,188,646720 ,1,189,366080 ,1,190,650130 ,1,191,366860 ,1,192,650125 ,1,193,364445 ,1,194,650120 ,1,195,366795 ,1,196,650110 ,1,197,363445 ,1,198,650105 ,1,199,365975 ,1,200,650100 ,1,201,365155 ,1,202,650095 ,1,203,365995 ,1,204,650090 ,1,205,366950 ,1,206,650085 ,1,207,363605 ,1,208,650080 ,1,209,364560 ,1,210,650075 ,1,211,364270 ,1,212,650050 ,1,213,363965 ,1,214,650045 ,1,215,367000 ,1,216,650040 ,1,217,364820 ,1,218,650035 ,1,219,363810 ,1,220,642275 ,1,221,366310 ,1,222,650020 ,1,223,365030 ,1,224,642260 ,1,225,366190 ,1,226,643075 ,1,227,366810 ,2,14956,213475 ,2,822,36775 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,235450 ,2,14979,340510 ,2,829,45 ,1,0,276415 ,1,1,366290 ,1,2,276405 ,1,3,363740 ,1,4,276385 ,1,5,365200 ,1,6,276375 ,1,7,364755 ,1,8,276365 ,1,9,364075 ,1,10,276355 ,1,11,365135 ,1,12,276345 ,1,13,364290 ,1,14,276335 ,1,15,366595 ,1,16,276325 ,1,17,364500 ,1,18,276315 ,1,19,365655 ,1,20,276290 ,1,21,364880 ,1,22,276280 ,1,23,365800 ,1,24,276270 ,1,25,363685 ,1,26,276260 ,1,27,365765 ,1,28,276240 ,1,29,364805 ,1,30,276230 ,1,31,366930 ,1,32,276220 ,1,33,364085 ,1,34,276210 ,1,35,364590 ,1,36,276195 ,1,37,365090 ,1,38,276185 ,1,39,364020 ,1,40,276175 ,1,41,366910 ,1,42,276165 ,1,43,365985 ,1,44,276155 ,1,45,365005 ,1,46,276145 ,1,47,363960 ,1,48,276135 ,1,49,366535 ,1,50,276125 ,1,51,365440 ,1,52,276090 ,1,53,365100 ,1,54,276080 ,1,55,365430 ,1,56,276070 ,1,57,364345 ,1,58,276060 ,1,59,364240 ,1,60,276045 ,1,61,366840 ,1,62,276035 ,1,63,364250 ,1,64,276025 ,1,65,363790 ,1,66,276015 ,1,67,365645 ,1,68,275985 ,1,69,365570 ,1,70,275975 ,1,71,365325 ,1,72,275965 ,1,73,364685 ,1,74,275955 ,1,75,365755 ,1,76,275940 ,1,77,366050 ,1,78,275930 ,1,79,363800 ,1,80,275920 ,1,81,365210 ,1,82,275910 ,1,83,366005 ,1,84,275880 ,1,85,365885 ,1,86,275870 ,1,87,363780 ,1,88,275860 ,1,89,363900 ,1,90,275850 ,1,91,366715 ,1,92,275840 ,1,93,364410 ,1,94,275830 ,1,95,366885 ,1,96,275820 ,1,97,364900 ,1,98,275810 ,1,99,366920 ,1,100,275770 ,1,101,366425 ,1,102,275760 ,1,103,365670 ,1,104,275750 ,1,105,364520 ,1,106,275740 ,1,107,364710 ,1,108,275725 ,1,109,365550 ,1,110,275715 ,1,111,363950 ,1,112,275705 ,1,113,364490 ,1,114,275695 ,1,115,364260 ,1,116,275665 ,1,117,365460 ,1,118,275655 ,1,119,363615 ,1,120,275645 ,1,121,366805 ,1,122,275635 ,1,123,367045 ,1,124,275620 ,1,125,364890 ,1,126,275610 ,1,127,366600 ,1,128,275600 ,1,129,366370 ,1,130,275590 ,1,131,366270 ,1,132,275555 ,1,133,364675 ,1,134,275545 ,1,135,363675 ,1,136,275535 ,1,137,364280 ,1,138,275525 ,1,139,363595 ,1,140,275515 ,1,141,365790 ,1,142,275505 ,1,143,365110 ,1,144,275495 ,1,145,365925 ,1,146,275485 ,1,147,364815 ,1,148,275445 ,1,149,363930 ,1,150,275435 ,1,151,364140 ,1,152,275425 ,1,153,364455 ,1,154,275415 ,1,155,364935 ,1,156,275400 ,1,157,365775 ,1,158,275390 ,1,159,366825 ,1,160,275380 ,1,161,366015 ,1,162,275370 ,1,163,366275 ,1,164,275345 ,1,165,366955 ,1,166,275335 ,1,167,364795 ,1,168,275325 ,1,169,365815 ,1,170,275315 ,1,171,366705 ,1,172,275305 ,1,173,366440 ,1,174,275295 ,1,175,366585 ,1,176,275285 ,1,177,366125 ,1,178,275275 ,1,179,366740 ,1,180,275240 ,1,181,366500 ,1,182,275230 ,1,183,366300 ,1,184,275220 ,1,185,366025 ,1,186,275210 ,1,187,364010 ,1,188,275200 ,1,189,365665 ,1,190,275190 ,1,191,364730 ,1,192,275180 ,1,193,365250 ,1,194,275170 ,1,195,364030 ,1,196,275150 ,1,197,364355 ,1,198,275140 ,1,199,366060 ,1,200,275130 ,1,201,365745 ,1,202,275120 ,1,203,363480 ,1,204,275110 ,1,205,365485 ,1,206,275100 ,1,207,366685 ,1,208,275090 ,1,209,365145 ,1,210,275080 ,1,211,363465 ,1,212,275045 ,1,213,365405 ,1,214,275035 ,1,215,366490 ,1,216,275025 ,1,217,366695 ,1,218,275015 ,1,219,366080 ,1,220,274990 ,1,221,366860 ,1,222,274980 ,1,223,364445 ,1,224,274970 ,1,225,366795 ,1,226,274960 ,1,227,363445 ,1,228,274935 ,1,229,365975 ,1,230,274925 ,1,231,365155 ,1,232,274915 ,1,233,365995 ,1,234,274905 ,1,235,366950 ,1,236,274890 ,1,237,363605 ,1,238,274880 ,1,239,364560 ,1,240,274870 ,1,241,364270 ,1,242,274860 ,1,243,363510 ,1,244,274840 ,1,245,366335 ,1,246,274830 ,1,247,364465 ,1,248,274820 ,1,249,364610 ,1,250,274810 ,1,251,364870 ,1,252,274800 ,1,253,365260 ,1,254,274790 ,1,255,363665 ,1,256,274780 ,1,257,366900 ,1,258,274770 ,1,259,366615 ,1,260,274730 ,1,261,366625 ,1,262,274720 ,1,263,365705 ,1,264,274710 ,1,265,366070 ,1,266,274700 ,1,267,363825 ,1,268,274690 ,1,269,365055 ,1,270,274680 ,1,271,364665 ,1,272,274670 ,1,273,366185 ,1,274,274660 ,1,275,366215 ,1,276,274630 ,1,277,364120 ,1,278,274620 ,1,279,364785 ,1,280,274610 ,1,281,363845 ,1,282,274600 ,1,283,366525 ,1,284,274590 ,1,285,365475 ,1,286,274580 ,1,287,363920 ,1,288,274570 ,1,289,365715 ,1,290,274560 ,1,291,364775 ,1,292,274540 ,1,293,366380 ,1,294,274530 ,1,295,365620 ,1,296,274520 ,1,297,364570 ,1,298,274510 ,1,299,366420 ,1,300,274500 ,1,301,364655 ,1,302,274490 ,1,303,364700 ,1,304,274480 ,1,305,365015 ,1,306,274470 ,1,307,364985 ,1,308,274430 ,1,309,366470 ,1,310,274420 ,1,311,365915 ,1,312,274410 ,1,313,366725 ,1,314,274400 ,1,315,363965 ,1,316,274390 ,1,317,367000 ,1,318,274380 ,1,319,364820 ,1,320,274370 ,1,321,363810 ,1,322,274360 ,1,323,366310 ,1,324,274310 ,1,325,365030 ,1,326,274300 ,1,327,366190 ,1,328,274290 ,1,329,366810 ,1,330,274280 ,1,331,364055 ,1,332,274265 ,1,333,363500 ,1,334,274255 ,1,335,364110 ,1,336,274245 ,1,337,365905 ,1,338,274235 ,1,339,363490 ,1,340,274220 ,1,341,364165 ,1,342,274210 ,1,343,365600 ,1,344,274200 ,1,345,364765 ,1,346,274190 ,1,347,364155 ,1,348,274165 ,1,349,364930 ,1,350,274155 ,1,351,363695 ,1,352,274145 ,1,353,365965 ,1,354,274135 ,1,355,366225 ,1,356,274105 ,1,357,366675 ,1,358,274095 ,1,359,366545 ,1,360,274085 ,1,361,364335 ,1,362,274075 ,1,363,366175 ,1,364,274065 ,1,365,365025 ,1,366,274055 ,1,367,365220 ,1,368,274045 ,1,369,363555 ,1,370,274035 ,1,371,364380 ,1,372,274010 ,1,373,366480 ,1,374,274000 ,1,375,365560 ,1,376,273990 ,1,377,366235 ,1,378,273980 ,1,379,365385 ,1,380,273970 ,1,381,365450 ,1,382,273960 ,1,383,363625 ,1,384,273950 ,1,385,365395 ,1,386,273940 ,1,387,364510 ,1,388,273910 ,1,389,365165 ,1,390,273900 ,1,391,363710 ,1,392,273890 ,1,393,366390 ,1,394,273880 ,1,395,364995 ,1,396,273865 ,1,397,365495 ,1,398,273855 ,1,399,364910 ,1,400,273845 ,1,401,363730 ,1,402,273835 ,1,403,366165 ,1,404,273805 ,1,405,364300 ,1,406,273795 ,1,407,364390 ,1,408,273785 ,1,409,364230 ,1,410,273775 ,1,411,364720 ,1,412,273760 ,1,413,365120 ,1,414,273750 ,1,415,367025 ,1,416,273740 ,1,417,366735 ,1,418,273730 ,1,419,366345 ,1,420,273705 ,1,421,365810 ,1,422,273695 ,1,423,366410 ,1,424,273685 ,1,425,365590 ,1,426,273675 ,1,427,365335 ,1,428,273660 ,1,429,364470 ,1,430,273650 ,1,431,366105 ,1,432,273640 ,1,433,365695 ,1,434,273630 ,1,435,366870 ,1,436,273615 ,1,437,365685 ,1,438,273605 ,1,439,363835 ,1,440,273595 ,1,441,363720 ,1,442,273585 ,1,443,364920 ,1,444,273575 ,1,445,363545 ,1,446,273565 ,1,447,365540 ,1,448,273555 ,1,449,365345 ,1,450,273545 ,1,451,363405 ,1,452,273510 ,1,453,366575 ,1,454,273500 ,1,455,363395 ,1,456,273490 ,1,457,364185 ,1,458,273480 ,1,459,365190 ,2,14956,213385 ,2,822,36775 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,364160 ,2,829,45 ,1,0,646855 ,1,1,372490 ,1,2,646850 ,1,3,373090 ,1,4,646840 ,1,5,372435 ,1,6,646835 ,1,7,372860 ,1,8,636350 ,1,9,372425 ,1,10,642195 ,1,11,372775 ,1,12,638010 ,1,13,372520 ,1,14,642465 ,1,15,372985 ,1,16,646830 ,1,17,372280 ,1,18,646825 ,1,19,372355 ,2,14956,213505 ,2,822,36775 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,160950 ,2,14979,361205 ,2,829,45 ,2,14956,213530 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370525 ,2,829,45 ,1,0,646855 ,1,1,373100 ,1,2,646850 ,1,3,373050 ,1,4,646840 ,1,5,372935 ,1,6,646835 ,1,7,372240 ,1,8,636350 ,1,9,372635 ,1,10,642195 ,1,11,372605 ,1,12,638010 ,1,13,372230 ,1,14,642465 ,1,15,372345 ,1,16,646830 ,1,17,372335 ,1,18,646825 ,1,19,373165 ,2,14956,225500 ,2,822,36775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340530 ,2,829,45 ,1,0,631030 ,1,1,362865 ,1,2,631085 ,1,3,360845 ,1,4,650735 ,1,5,361165 ,1,6,650720 ,1,7,360000 ,1,8,647535 ,1,9,361155 ,1,10,627185 ,1,11,360370 ,1,12,628415 ,1,13,360400 ,1,14,634020 ,1,15,361025 ,1,16,620805 ,1,17,362820 ,1,18,643500 ,1,19,361660 ,1,20,647025 ,1,21,362585 ,1,22,629995 ,1,23,362895 ,1,24,621235 ,1,25,360165 ,1,26,633960 ,1,27,363250 ,1,28,647530 ,1,29,361285 ,1,30,647540 ,1,31,362565 ,1,32,647485 ,1,33,360775 ,1,34,647525 ,1,35,360200 ,1,36,625360 ,1,37,363060 ,1,38,618495 ,1,39,362800 ,1,40,615220 ,1,41,360105 ,1,42,617450 ,1,43,362100 ,1,44,619075 ,1,45,361985 ,1,46,619445 ,1,47,360785 ,1,48,615940 ,1,49,361430 ,1,50,614195 ,1,51,360905 ,1,52,636580 ,1,53,363220 ,1,54,614635 ,1,55,360705 ,1,56,615610 ,1,57,359850 ,1,58,642630 ,1,59,362465 ,1,60,621000 ,1,61,362445 ,1,62,623955 ,1,63,361645 ,1,64,626560 ,1,65,362210 ,1,66,618545 ,1,67,361120 ,1,68,616545 ,1,69,361340 ,1,70,616230 ,1,71,363350 ,1,72,618130 ,1,73,360735 ,1,74,614710 ,1,75,361005 ,1,76,622995 ,1,77,362935 ,1,78,617155 ,1,79,362060 ,1,80,625595 ,1,81,362395 ,1,82,614390 ,1,83,362545 ,1,84,620270 ,1,85,363105 ,1,86,628550 ,1,87,361175 ,1,88,647455 ,1,89,362680 ,1,90,615300 ,1,91,360490 ,1,92,620685 ,1,93,363230 ,1,94,618890 ,1,95,362190 ,1,96,628950 ,1,97,361360 ,1,98,614600 ,1,99,363080 ,1,100,619705 ,1,101,363145 ,1,102,613280 ,1,103,360580 ,1,104,614645 ,1,105,361305 ,1,106,647480 ,1,107,363290 ,1,108,647475 ,1,109,362245 ,1,110,647470 ,1,111,361200 ,1,112,622625 ,1,113,360090 ,1,114,622650 ,1,115,361865 ,1,116,647450 ,1,117,360480 ,1,118,621100 ,1,119,361330 ,1,120,626295 ,1,121,362040 ,1,122,643140 ,1,123,359940 ,1,124,616615 ,1,125,363375 ,1,126,618860 ,1,127,362700 ,1,128,647325 ,1,129,363125 ,1,130,643550 ,1,131,362305 ,1,132,647285 ,1,133,361035 ,1,134,647585 ,1,135,361110 ,1,136,647795 ,1,137,360695 ,1,138,615830 ,1,139,361520 ,1,140,619270 ,1,141,362065 ,1,142,647775 ,1,143,362945 ,1,144,647175 ,1,145,360915 ,1,146,615515 ,1,147,360885 ,1,148,647090 ,1,149,360855 ,1,150,647030 ,1,151,361580 ,1,152,647095 ,1,153,361245 ,1,154,647820 ,1,155,362345 ,1,156,647055 ,1,157,361045 ,1,158,647050 ,1,159,360500 ,1,160,647825 ,1,161,361015 ,1,162,647815 ,1,163,361560 ,1,164,614160 ,1,165,360625 ,1,166,647215 ,1,167,362365 ,1,168,621765 ,1,169,360310 ,1,170,647280 ,1,171,362455 ,1,172,647270 ,1,173,362885 ,1,174,647225 ,1,175,359905 ,1,176,647425 ,1,177,362140 ,1,178,647420 ,1,179,361770 ,1,180,647245 ,1,181,361055 ,1,182,647275 ,1,183,361145 ,1,184,647605 ,1,185,362595 ,1,186,647600 ,1,187,361220 ,1,188,647295 ,1,189,360520 ,1,190,614145 ,1,191,360320 ,1,192,647290 ,1,193,363155 ,1,194,647915 ,1,195,362050 ,1,196,647595 ,1,197,362765 ,1,198,650715 ,1,199,361510 ,1,200,647735 ,1,201,363135 ,1,202,642225 ,1,203,360155 ,1,204,647085 ,1,205,361465 ,1,206,647830 ,1,207,360210 ,1,208,650710 ,1,209,362485 ,1,210,650705 ,1,211,363240 ,1,212,650690 ,1,213,363020 ,1,214,650685 ,1,215,360745 ,1,216,650680 ,1,217,362775 ,1,218,650675 ,1,219,360930 ,1,220,650635 ,1,221,362120 ,1,222,650630 ,1,223,361615 ,1,224,646840 ,1,225,361635 ,1,226,650625 ,1,227,361995 ,1,228,650620 ,1,229,360950 ,1,230,650615 ,1,231,363000 ,1,232,647780 ,1,233,360380 ,1,234,650610 ,1,235,362325 ,1,236,615555 ,1,237,360960 ,1,238,650005 ,1,239,361840 ,1,240,650605 ,1,241,360610 ,1,242,650600 ,1,243,361210 ,1,244,650570 ,1,245,363165 ,1,246,650565 ,1,247,360650 ,1,248,647080 ,1,249,360725 ,1,250,647060 ,1,251,363280 ,1,252,615780 ,1,253,361740 ,1,254,647770 ,1,255,361720 ,1,256,647810 ,1,257,360010 ,1,258,647240 ,1,259,362415 ,1,260,647755 ,1,261,361100 ,1,262,646850 ,1,263,362810 ,1,264,647235 ,1,265,361570 ,1,266,647765 ,1,267,362090 ,1,268,647760 ,1,269,361235 ,1,270,647805 ,1,271,360330 ,1,272,647800 ,1,273,361475 ,1,274,647920 ,1,275,360550 ,1,276,647895 ,1,277,363330 ,1,278,647860 ,1,279,362150 ,1,280,647105 ,1,281,362535 ,1,282,616130 ,1,283,359945 ,1,284,646855 ,1,285,360790 ,1,286,647460 ,1,287,362510 ,1,288,647750 ,1,289,360415 ,1,290,647220 ,1,291,360585 ,1,292,647465 ,1,293,362155 ,1,294,647185 ,1,295,361785 ,1,296,647745 ,1,297,360055 ,1,298,634155 ,1,299,360835 ,1,300,632925 ,1,301,362275 ,1,302,650560 ,1,303,360050 ,1,304,650555 ,1,305,361820 ,1,306,630180 ,1,307,361680 ,1,308,638010 ,1,309,360185 ,1,310,628915 ,1,311,362670 ,1,312,647545 ,1,313,363070 ,1,314,638635 ,1,315,359970 ,1,316,650545 ,1,317,359980 ,1,318,632980 ,1,319,361975 ,1,320,647660 ,1,321,360115 ,1,322,637460 ,1,323,361540 ,1,324,635770 ,1,325,362495 ,1,326,650540 ,1,327,362755 ,1,328,650535 ,1,329,363175 ,1,330,650530 ,1,331,359885 ,1,332,650515 ,1,333,363030 ,1,334,650510 ,1,335,361485 ,1,336,647610 ,1,337,360540 ,1,338,650505 ,1,339,360270 ,1,340,650500 ,1,341,361315 ,1,342,647620 ,1,343,360390 ,1,344,647650 ,1,345,363340 ,1,346,628065 ,1,347,359990 ,1,348,650480 ,1,349,362375 ,1,350,647675 ,1,351,360600 ,1,352,645595 ,1,353,359960 ,1,354,630080 ,1,355,361940 ,1,356,647715 ,1,357,361760 ,1,358,645390 ,1,359,360340 ,1,360,636545 ,1,361,361875 ,1,362,615885 ,1,363,361750 ,1,364,650475 ,1,365,360220 ,1,366,650470 ,1,367,362170 ,1,368,638670 ,1,369,360640 ,1,370,647725 ,1,371,362505 ,1,372,629385 ,1,373,360685 ,1,374,629220 ,1,375,360620 ,1,376,650465 ,1,377,361780 ,1,378,645565 ,1,379,360260 ,1,380,636415 ,1,381,361350 ,1,382,629185 ,1,383,361885 ,1,384,627545 ,1,385,362005 ,1,386,636350 ,1,387,362875 ,1,388,647910 ,1,389,363385 ,1,390,650435 ,1,391,360510 ,1,392,650430 ,1,393,361690 ,1,394,650425 ,1,395,360825 ,1,396,650420 ,1,397,360430 ,1,398,647670 ,1,399,363270 ,1,400,647645 ,1,401,362925 ,1,402,647640 ,1,403,361265 ,1,404,650410 ,1,405,362405 ,1,406,650405 ,1,407,362385 ,1,408,647720 ,1,409,359895 ,1,410,633490 ,1,411,360450 ,1,412,633480 ,1,413,362830 ,1,414,640605 ,1,415,363050 ,1,416,647855 ,1,417,360715 ,1,418,650400 ,1,419,360675 ,1,420,650395 ,1,421,360070 ,1,422,650375 ,1,423,362720 ,1,424,628040 ,1,425,363010 ,1,426,615715 ,1,427,360290 ,2,14956,213475 ,2,822,36775 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,161020 ,2,14979,340520 ,2,829,45 ,1,0,359465 ,1,1,358460 ,1,2,359505 ,1,3,358455 ,1,4,359435 ,1,5,358460 ,1,6,359455 ,1,7,358455 ,1,8,359475 ,1,9,358460 ,2,14956,211385 ,2,822,36775 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366110 ,2,829,45 ,1,0,615295 ,1,1,277310 ,1,2,613640 ,1,3,277300 ,1,4,614705 ,1,5,277290 ,1,6,616170 ,1,7,277260 ,1,8,614045 ,1,9,277250 ,1,10,613975 ,1,11,277240 ,1,12,614020 ,1,13,277230 ,1,14,614025 ,1,15,277220 ,1,16,618550 ,1,17,277210 ,2,14956,213325 ,2,822,36775 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370865 ,2,829,45 ,1,0,670040 ,1,1,366290 ,1,2,670035 ,1,3,363740 ,1,4,670015 ,1,5,365200 ,1,6,670010 ,1,7,364755 ,1,8,670005 ,1,9,364075 ,1,10,670000 ,1,11,365135 ,1,12,669995 ,1,13,364290 ,1,14,669990 ,1,15,366595 ,1,16,669985 ,1,17,364500 ,1,18,669980 ,1,19,365655 ,1,20,669940 ,1,21,364880 ,1,22,669935 ,1,23,365240 ,1,24,669930 ,1,25,365610 ,1,26,669925 ,1,27,365355 ,1,28,669920 ,1,29,365505 ,1,30,647810 ,1,31,365800 ,1,32,647805 ,1,33,363685 ,1,34,647800 ,1,35,365765 ,1,36,646850 ,1,37,364805 ,1,38,647240 ,1,39,366930 ,1,40,647235 ,1,41,364085 ,1,42,647230 ,1,43,364590 ,1,44,647225 ,1,45,365090 ,1,46,647220 ,1,47,364020 ,1,48,647215 ,1,49,366910 ,1,50,615830 ,1,51,365985 ,1,52,647185 ,1,53,365005 ,1,54,647180 ,1,55,363960 ,1,56,615515 ,1,57,366535 ,1,58,647815 ,1,59,365440 ,1,60,647090 ,1,61,365100 ,1,62,647050 ,1,63,365430 ,1,64,647055 ,1,65,364345 ,1,66,647095 ,1,67,364240 ,1,68,647825 ,1,69,366840 ,1,70,647820 ,1,71,364250 ,1,72,647175 ,1,73,363790 ,1,74,647030 ,1,75,365645 ,1,76,647045 ,1,77,365570 ,1,78,647080 ,1,79,365325 ,1,80,615780 ,1,81,364685 ,1,82,614645 ,1,83,365755 ,1,84,646855 ,1,85,366050 ,1,86,614600 ,1,87,363800 ,1,88,642630 ,1,89,365210 ,1,90,614635 ,1,91,366005 ,1,92,628415 ,1,93,365885 ,1,94,614195 ,1,95,363780 ,1,96,627185 ,1,97,363900 ,1,98,647525 ,1,99,366715 ,1,100,613280 ,1,101,364410 ,1,102,669915 ,1,103,366885 ,1,104,669910 ,1,105,364900 ,1,106,669905 ,1,107,366920 ,1,108,669885 ,1,109,366425 ,1,110,625360 ,1,111,365670 ,1,112,647530 ,1,113,364520 ,1,114,647470 ,1,115,364710 ,1,116,647595 ,1,117,365550 ,1,118,647920 ,1,119,363950 ,1,120,647590 ,1,121,364490 ,1,122,647480 ,1,123,364260 ,1,124,619075 ,1,125,365460 ,1,126,647795 ,1,127,363615 ,1,128,633960 ,1,129,366805 ,1,130,647540 ,1,131,367045 ,1,132,619705 ,1,133,364890 ,1,134,669880 ,1,135,366600 ,1,136,669875 ,1,137,366370 ,1,138,669870 ,1,139,366270 ,1,140,669865 ,1,141,364675 ,1,142,669860 ,1,143,363675 ,1,144,669855 ,1,145,364280 ,1,146,669850 ,1,147,363595 ,1,148,669825 ,1,149,365790 ,1,150,669820 ,1,151,365110 ,1,152,669815 ,1,153,365925 ,1,154,669810 ,1,155,364815 ,1,156,669800 ,1,157,363930 ,1,158,669795 ,1,159,364140 ,1,160,669790 ,1,161,364455 ,1,162,669785 ,1,163,364935 ,1,164,669755 ,1,165,365775 ,1,166,669750 ,1,167,366825 ,1,168,669745 ,1,169,366015 ,1,170,669740 ,1,171,366275 ,1,172,669735 ,1,173,366955 ,1,174,669730 ,1,175,364795 ,1,176,669725 ,1,177,365815 ,1,178,669720 ,1,179,366705 ,1,180,669695 ,1,181,366440 ,1,182,669690 ,1,183,366585 ,1,184,669685 ,1,185,366125 ,1,186,669680 ,1,187,366740 ,1,188,669675 ,1,189,366500 ,1,190,669670 ,1,191,366300 ,1,192,669665 ,1,193,366025 ,1,194,669660 ,1,195,364010 ,1,196,669635 ,1,197,365665 ,1,198,669630 ,1,199,364730 ,1,200,669625 ,1,201,365250 ,1,202,669620 ,1,203,364030 ,1,204,669615 ,1,205,364355 ,1,206,669610 ,1,207,366060 ,1,208,669605 ,1,209,365745 ,1,210,669600 ,1,211,363480 ,1,212,669565 ,1,213,365485 ,1,214,669560 ,1,215,366685 ,1,216,669555 ,1,217,365145 ,1,218,669550 ,1,219,363465 ,1,220,669545 ,1,221,365405 ,1,222,669540 ,1,223,366490 ,1,224,669535 ,1,225,366695 ,1,226,669530 ,1,227,366080 ,1,228,669505 ,1,229,366860 ,1,230,669500 ,1,231,364445 ,1,232,669495 ,1,233,366795 ,1,234,669490 ,1,235,363445 ,1,236,669485 ,1,237,365975 ,1,238,669480 ,1,239,365155 ,1,240,669475 ,1,241,365995 ,1,242,669470 ,1,243,366950 ,1,244,669440 ,1,245,363605 ,1,246,669435 ,1,247,364560 ,1,248,669430 ,1,249,364270 ,1,250,669425 ,1,251,363510 ,1,252,669415 ,1,253,366335 ,1,254,669410 ,1,255,364465 ,1,256,669405 ,1,257,364610 ,1,258,669400 ,1,259,364870 ,1,260,669360 ,1,261,365260 ,1,262,669355 ,1,263,363665 ,1,264,669350 ,1,265,366900 ,1,266,669345 ,1,267,366615 ,1,268,669340 ,1,269,366625 ,1,270,669335 ,1,271,365705 ,1,272,669330 ,1,273,366070 ,1,274,669325 ,1,275,363825 ,1,276,669300 ,1,277,365055 ,1,278,669295 ,1,279,364665 ,1,280,669290 ,1,281,366185 ,1,282,669285 ,1,283,366215 ,1,284,669280 ,1,285,364120 ,1,286,669275 ,1,287,364785 ,1,288,669270 ,1,289,363845 ,1,290,669265 ,1,291,366525 ,1,292,669245 ,1,293,365475 ,1,294,669240 ,1,295,363920 ,1,296,669235 ,1,297,365715 ,1,298,669230 ,1,299,364775 ,1,300,669225 ,1,301,366380 ,1,302,669220 ,1,303,365620 ,1,304,669215 ,1,305,364570 ,1,306,669210 ,1,307,366420 ,1,308,669190 ,1,309,364655 ,1,310,669185 ,1,311,364700 ,1,312,669180 ,1,313,365015 ,1,314,669175 ,1,315,364985 ,1,316,669170 ,1,317,366470 ,1,318,669165 ,1,319,365230 ,1,320,669160 ,1,321,365915 ,1,322,669155 ,1,323,366725 ,1,324,669135 ,1,325,363965 ,1,326,669130 ,1,327,367000 ,1,328,669125 ,1,329,364820 ,1,330,669120 ,1,331,363810 ,1,332,669110 ,1,333,366310 ,1,334,669105 ,1,335,365030 ,1,336,669100 ,1,337,366190 ,1,338,669095 ,1,339,366810 ,1,340,669070 ,1,341,366645 ,1,342,669065 ,1,343,363435 ,1,344,669060 ,1,345,364055 ,1,346,669055 ,1,347,363500 ,1,348,669050 ,1,349,363940 ,1,350,669045 ,1,351,364400 ,1,352,669040 ,1,353,364065 ,1,354,669035 ,1,355,364600 ,1,356,669025 ,1,357,364540 ,1,358,669020 ,1,359,365045 ,1,360,669015 ,1,361,366325 ,1,362,669010 ,1,363,366035 ,1,364,669000 ,1,365,366205 ,1,366,668995 ,1,367,363770 ,1,368,668990 ,1,369,364110 ,1,370,668985 ,1,371,365905 ,1,372,668950 ,1,373,363490 ,1,374,668945 ,1,375,364165 ,1,376,668940 ,1,377,365600 ,1,378,668935 ,1,379,364765 ,1,380,668930 ,1,381,364155 ,1,382,668925 ,1,383,364930 ,1,384,668920 ,1,385,363695 ,1,386,668915 ,1,387,365965 ,1,388,668890 ,1,389,363575 ,1,390,668885 ,1,391,363565 ,1,392,668880 ,1,393,366225 ,1,394,668875 ,1,395,366115 ,1,396,668870 ,1,397,366940 ,1,398,668865 ,1,399,366675 ,1,400,668860 ,1,401,366515 ,1,402,668855 ,1,403,367035 ,1,404,668840 ,1,405,366545 ,1,406,668835 ,1,407,364335 ,1,408,668830 ,1,409,363910 ,1,410,668825 ,1,411,366850 ,1,412,668810 ,1,413,365895 ,1,414,668805 ,1,415,366175 ,1,416,668800 ,1,417,365025 ,1,418,668795 ,1,419,366095 ,1,420,668765 ,1,421,363455 ,1,422,668760 ,1,423,364130 ,1,424,668755 ,1,425,365220 ,1,426,668750 ,1,427,363555 ,1,428,668740 ,1,429,365855 ,1,430,668735 ,1,431,366635 ,1,432,668730 ,1,433,367015 ,1,434,668725 ,1,435,364550 ,1,436,668710 ,1,437,364175 ,1,438,668705 ,1,439,364380 ,1,440,668700 ,1,441,366480 ,1,442,668695 ,1,443,365560 ,1,444,668685 ,1,445,366235 ,1,446,668680 ,1,447,365385 ,1,448,668675 ,1,449,365450 ,1,450,668670 ,1,451,363625 ,1,452,668655 ,1,453,365875 ,1,454,668650 ,1,455,365375 ,1,456,668645 ,1,457,365395 ,1,458,668640 ,1,459,364580 ,1,460,668630 ,1,461,364510 ,1,462,668625 ,1,463,365165 ,1,464,668620 ,1,465,363710 ,1,466,668615 ,1,467,366390 ,1,468,668590 ,1,469,364995 ,1,470,668585 ,1,471,365495 ,1,472,668580 ,1,473,364910 ,1,474,668575 ,1,475,363730 ,1,476,668570 ,1,477,366165 ,1,478,668565 ,1,479,364300 ,1,480,668560 ,1,481,364390 ,1,482,668555 ,1,483,364230 ,1,484,668535 ,1,485,364720 ,1,486,668530 ,1,487,365120 ,1,488,668525 ,1,489,367025 ,1,490,668520 ,1,491,366735 ,1,492,668515 ,1,493,366345 ,1,494,668510 ,1,495,365810 ,1,496,668505 ,1,497,366410 ,1,498,668500 ,1,499,365590 ,1,500,668470 ,1,501,365335 ,1,502,668465 ,1,503,364470 ,1,504,668460 ,1,505,366105 ,1,506,668455 ,1,507,365695 ,1,508,668445 ,1,509,366870 ,1,510,668440 ,1,511,365685 ,1,512,668435 ,1,513,363835 ,1,514,668430 ,1,515,363720 ,1,516,668405 ,1,517,364920 ,1,518,668400 ,1,519,363545 ,1,520,668395 ,1,521,365540 ,1,522,668390 ,1,523,365345 ,1,524,668385 ,1,525,363405 ,1,526,668380 ,1,527,366575 ,1,528,668375 ,1,529,363395 ,1,530,668370 ,1,531,364185 ,1,532,668360 ,1,533,365190 ,1,534,670060 ,1,535,366395 ,1,536,670055 ,1,537,364035 ,1,538,670050 ,1,539,364360 ,1,540,670045 ,1,541,365860 ,2,14956,265470 ,2,822,36765 ,2,14975,568900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340545 ,2,829,45 ,1,0,626845 ,1,1,366500 ,1,2,626825 ,1,3,366300 ,1,4,626815 ,1,5,366025 ,1,6,626790 ,1,7,364010 ,1,8,650605 ,1,9,364730 ,1,10,647780 ,1,11,365250 ,1,12,651395 ,1,13,364030 ,1,14,615885 ,1,15,364355 ,1,16,615915 ,1,17,366060 ,1,18,631085 ,1,19,365745 ,1,20,650735 ,1,21,363480 ,1,22,650475 ,1,23,365485 ,1,24,651385 ,1,25,366685 ,1,26,650565 ,1,27,365145 ,1,28,650470 ,1,29,363465 ,1,30,647710 ,1,31,366080 ,1,32,651380 ,1,33,365055 ,1,34,647730 ,1,35,365620 ,1,36,647715 ,1,37,364570 ,2,14956,199915 ,2,822,36765 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260540 ,2,14979,414105 ,2,829,45 ,1,0,615295 ,1,1,366290 ,1,2,651510 ,1,3,364500 ,1,4,651505 ,1,5,365655 ,1,6,615610 ,1,7,365800 ,1,8,615940 ,1,9,363685 ,1,10,621235 ,1,11,365765 ,1,12,625360 ,1,13,364805 ,1,14,618495 ,1,15,366930 ,1,16,618890 ,1,17,364085 ,1,18,628950 ,1,19,364590 ,1,20,625595 ,1,21,365090 ,1,22,616130 ,1,23,364020 ,1,24,647535 ,1,25,366910 ,1,26,619075 ,1,27,365985 ,1,28,634020 ,1,29,365005 ,1,30,643500 ,1,31,363960 ,1,32,647025 ,1,33,366535 ,1,34,629995 ,1,35,365440 ,1,36,633960 ,1,37,365100 ,1,38,647530 ,1,39,365430 ,1,40,647540 ,1,41,364345 ,1,42,619705 ,1,43,364240 ,1,44,613280 ,1,45,366840 ,1,46,614645 ,1,47,364250 ,1,48,646855 ,1,49,363790 ,1,50,614600 ,1,51,365645 ,1,52,642630 ,1,53,365570 ,1,54,614635 ,1,55,365325 ,1,56,628415 ,1,57,364685 ,1,58,618550 ,1,59,365755 ,1,60,614390 ,1,61,366050 ,1,62,621000 ,1,63,363800 ,1,64,623955 ,1,65,365210 ,1,66,626560 ,1,67,366005 ,1,68,618545 ,1,69,365885 ,1,70,616545 ,1,71,363780 ,1,72,616230 ,1,73,363900 ,1,74,618130 ,1,75,366715 ,1,76,614025 ,1,77,364410 ,1,78,622625 ,1,79,366885 ,1,80,647815 ,1,81,364900 ,1,82,622650 ,1,83,366920 ,1,84,647470 ,1,85,366425 ,1,86,647465 ,1,87,365670 ,1,88,621100 ,1,89,364520 ,1,90,626295 ,1,91,364710 ,1,92,643140 ,1,93,365550 ,1,94,616615 ,1,95,363950 ,1,96,618860 ,1,97,364490 ,1,98,647325 ,1,99,364260 ,1,100,643550 ,1,101,365460 ,1,102,647450 ,1,103,363615 ,1,104,614195 ,1,105,366805 ,1,106,627185 ,1,107,367045 ,1,108,647285 ,1,109,364890 ,1,110,647095 ,1,111,366600 ,1,112,647760 ,1,113,366370 ,1,114,647755 ,1,115,366270 ,1,116,647750 ,1,117,364675 ,1,118,647745 ,1,119,363675 ,1,120,647735 ,1,121,364280 ,1,122,650410 ,1,123,363595 ,1,124,615555 ,1,125,365790 ,1,126,619710 ,1,127,365110 ,1,128,650005 ,1,129,365925 ,1,130,650610 ,1,131,364815 ,1,132,650600 ,1,133,363930 ,1,134,650615 ,1,135,364140 ,1,136,647045 ,1,137,364455 ,1,138,647825 ,1,139,364935 ,1,140,647080 ,1,141,365775 ,1,142,642225 ,1,143,366825 ,1,144,615780 ,1,145,366015 ,1,146,647590 ,1,147,366275 ,1,148,647090 ,1,149,366955 ,1,150,647060 ,1,151,364795 ,1,152,647920 ,1,153,365815 ,1,154,620270 ,1,155,366705 ,1,156,620685 ,1,157,366440 ,1,158,615300 ,1,159,366585 ,1,160,617155 ,1,161,366125 ,1,162,650570 ,1,163,366740 ,1,164,626845 ,1,165,366500 ,1,166,626825 ,1,167,366300 ,1,168,626815 ,1,169,366025 ,1,170,626790 ,1,171,364010 ,1,172,647725 ,1,173,365665 ,1,174,650605 ,1,175,364730 ,1,176,647780 ,1,177,365250 ,1,178,651395 ,1,179,364030 ,1,180,615885 ,1,181,364355 ,1,182,615915 ,1,183,366060 ,1,184,631085 ,1,185,365745 ,1,186,650735 ,1,187,363480 ,1,188,650475 ,1,189,365485 ,1,190,651385 ,1,191,366685 ,1,192,650565 ,1,193,365145 ,1,194,650470 ,1,195,363465 ,1,196,647280 ,1,197,366490 ,1,198,620805 ,1,199,366695 ,1,200,647710 ,1,201,366080 ,1,202,650365 ,1,203,364465 ,1,204,628550 ,1,205,364610 ,1,206,651500 ,1,207,363665 ,1,208,651435 ,1,209,366900 ,1,210,651430 ,1,211,366615 ,1,212,647720 ,1,213,365705 ,1,214,615220 ,1,215,366070 ,1,216,636580 ,1,217,363825 ,1,218,651380 ,1,219,365055 ,1,220,650435 ,1,221,364120 ,1,222,651425 ,1,223,364785 ,1,224,647730 ,1,225,365620 ,1,226,647715 ,1,227,364570 ,1,228,647050 ,1,229,363965 ,1,230,647480 ,1,231,367000 ,1,232,647525 ,1,233,364820 ,1,234,647820 ,1,235,363810 ,1,236,647055 ,1,237,366310 ,1,238,647475 ,1,239,365030 ,1,240,647485 ,1,241,366190 ,1,242,647175 ,1,243,366810 ,1,244,647705 ,1,245,366645 ,1,246,650530 ,1,247,363435 ,1,248,647885 ,1,249,364055 ,1,250,647880 ,1,251,363500 ,1,252,651420 ,1,253,364540 ,1,254,647645 ,1,255,366205 ,1,256,647640 ,1,257,363770 ,1,258,647105 ,1,259,364110 ,1,260,647775 ,1,261,365905 ,1,262,647765 ,1,263,363490 ,1,264,647915 ,1,265,364165 ,1,266,647245 ,1,267,365600 ,1,268,647425 ,1,269,364765 ,1,270,647420 ,1,271,364155 ,1,272,647270 ,1,273,364930 ,1,274,647770 ,1,275,363695 ,1,276,647600 ,1,277,365965 ,1,278,647455 ,1,279,366675 ,1,280,651410 ,1,281,366515 ,1,282,651405 ,1,283,367035 ,1,284,647890 ,1,285,363555 ,1,286,615715 ,1,287,367015 ,1,288,647605 ,1,289,364380 ,1,290,647085 ,1,291,366235 ,1,292,650500 ,1,293,363625 ,1,294,647615 ,1,295,365875 ,1,296,647620 ,1,297,365375 ,1,298,647550 ,1,299,365395 ,1,300,647860 ,1,301,365495 ,1,302,647910 ,1,303,364910 ,1,304,647855 ,1,305,363730 ,1,306,647830 ,1,307,366165 ,1,308,650710 ,1,309,364300 ,1,310,650705 ,1,311,364390 ,1,312,650690 ,1,313,364230 ,1,314,650685 ,1,315,364720 ,1,316,650680 ,1,317,365120 ,1,318,650675 ,1,319,367025 ,1,320,650635 ,1,321,366735 ,1,322,650630 ,1,323,366345 ,1,324,646840 ,1,325,365810 ,1,326,650625 ,1,327,366410 ,1,328,650620 ,1,329,365590 ,1,330,651400 ,1,331,365335 ,1,332,647795 ,1,333,364470 ,1,334,647810 ,1,335,366105 ,1,336,647805 ,1,337,365695 ,1,338,647235 ,1,339,366870 ,1,340,647225 ,1,341,365685 ,1,342,615515 ,1,343,363835 ,1,344,647230 ,1,345,363720 ,1,346,647220 ,1,347,364920 ,1,348,647180 ,1,349,363545 ,1,350,647185 ,1,351,365540 ,1,352,647215 ,1,353,365345 ,1,354,615830 ,1,355,363405 ,1,356,647800 ,1,357,366575 ,1,358,646850 ,1,359,363395 ,1,360,647240 ,1,361,364185 ,1,362,647030 ,1,363,365190 ,2,14956,216645 ,2,822,24710 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387140 ,2,829,45 ,1,0,276415 ,1,1,361410 ,1,2,276405 ,1,3,361455 ,1,4,276385 ,1,5,362785 ,1,6,276375 ,1,7,363320 ,1,8,276365 ,1,9,362265 ,1,10,276355 ,1,11,361295 ,1,12,276345 ,1,13,360940 ,1,14,276335 ,1,15,362865 ,1,16,276325 ,1,17,360845 ,1,18,276315 ,1,19,361165 ,1,20,276290 ,1,21,360000 ,1,22,276280 ,1,23,361155 ,1,24,276270 ,1,25,360370 ,1,26,276260 ,1,27,360400 ,1,28,276240 ,1,29,361025 ,1,30,276230 ,1,31,362820 ,1,32,276220 ,1,33,361660 ,1,34,276210 ,1,35,362585 ,1,36,276195 ,1,37,362895 ,1,38,276185 ,1,39,360165 ,1,40,276175 ,1,41,363250 ,1,42,276165 ,1,43,361285 ,1,44,276155 ,1,45,362565 ,1,46,276145 ,1,47,360775 ,1,48,276135 ,1,49,360200 ,1,50,276125 ,1,51,363060 ,1,52,276090 ,1,53,362800 ,1,54,276080 ,1,55,360105 ,1,56,276070 ,1,57,362100 ,1,58,276060 ,1,59,361985 ,1,60,276045 ,1,61,360785 ,1,62,276035 ,1,63,361430 ,1,64,276025 ,1,65,360905 ,1,66,276015 ,1,67,363220 ,1,68,275985 ,1,69,360705 ,1,70,275975 ,1,71,359850 ,1,72,275965 ,1,73,362465 ,1,74,275955 ,1,75,362445 ,1,76,275940 ,1,77,361645 ,1,78,275930 ,1,79,362210 ,1,80,275920 ,1,81,361120 ,1,82,275910 ,1,83,361340 ,1,84,275880 ,1,85,363350 ,1,86,275870 ,1,87,360735 ,1,88,275860 ,1,89,361005 ,1,90,275850 ,1,91,362935 ,1,92,275840 ,1,93,362060 ,1,94,275830 ,1,95,362395 ,1,96,275820 ,1,97,362545 ,1,98,275810 ,1,99,363105 ,1,100,275770 ,1,101,361175 ,1,102,275760 ,1,103,362680 ,1,104,275750 ,1,105,360490 ,1,106,275740 ,1,107,363230 ,1,108,275725 ,1,109,362190 ,1,110,275715 ,1,111,361360 ,1,112,275705 ,1,113,363080 ,1,114,275695 ,1,115,363145 ,1,116,275665 ,1,117,360580 ,1,118,275655 ,1,119,361305 ,1,120,275645 ,1,121,363290 ,1,122,275635 ,1,123,362245 ,1,124,275620 ,1,125,361200 ,1,126,275610 ,1,127,360090 ,1,128,275600 ,1,129,361865 ,1,130,275590 ,1,131,360480 ,1,132,275555 ,1,133,361330 ,1,134,275545 ,1,135,362040 ,1,136,275535 ,1,137,359940 ,1,138,275525 ,1,139,363375 ,1,140,275515 ,1,141,362700 ,1,142,275505 ,1,143,363125 ,1,144,275495 ,1,145,362305 ,1,146,275485 ,1,147,361035 ,1,148,275445 ,1,149,361110 ,1,150,275435 ,1,151,360695 ,1,152,275425 ,1,153,361520 ,1,154,275415 ,1,155,362065 ,1,156,275400 ,1,157,362945 ,1,158,275390 ,1,159,360915 ,1,160,275380 ,1,161,360885 ,1,162,275370 ,1,163,360855 ,1,164,275345 ,1,165,361580 ,1,166,275335 ,1,167,361245 ,1,168,275325 ,1,169,362345 ,1,170,275315 ,1,171,361045 ,1,172,275305 ,1,173,360500 ,1,174,275295 ,1,175,361015 ,1,176,275285 ,1,177,361560 ,1,178,275275 ,1,179,360625 ,1,180,275240 ,1,181,362365 ,1,182,275230 ,1,183,360310 ,1,184,275220 ,1,185,362455 ,1,186,275210 ,1,187,362885 ,1,188,275200 ,1,189,359905 ,1,190,275190 ,1,191,362140 ,1,192,275180 ,1,193,361770 ,1,194,275170 ,1,195,361055 ,1,196,275150 ,1,197,361145 ,1,198,275140 ,1,199,362595 ,1,200,275130 ,1,201,361220 ,1,202,275120 ,1,203,360520 ,1,204,275110 ,1,205,360320 ,1,206,275100 ,1,207,363155 ,1,208,275090 ,1,209,362050 ,1,210,275080 ,1,211,362765 ,1,212,275045 ,1,213,361510 ,1,214,275035 ,1,215,363135 ,1,216,275025 ,1,217,360155 ,1,218,275015 ,1,219,361465 ,1,220,274990 ,1,221,360210 ,1,222,274980 ,1,223,362485 ,1,224,274970 ,1,225,363240 ,1,226,274960 ,1,227,363020 ,1,228,274935 ,1,229,360745 ,1,230,274925 ,1,231,362775 ,1,232,274915 ,1,233,360930 ,1,234,274905 ,1,235,362120 ,1,236,274890 ,1,237,361615 ,1,238,274880 ,1,239,361635 ,1,240,274870 ,1,241,361995 ,1,242,274860 ,1,243,360950 ,1,244,274840 ,1,245,363000 ,1,246,274830 ,1,247,360380 ,1,248,274820 ,1,249,362325 ,1,250,274810 ,1,251,360960 ,1,252,274800 ,1,253,361840 ,1,254,274790 ,1,255,360610 ,1,256,274780 ,1,257,361210 ,1,258,274770 ,1,259,363165 ,1,260,274730 ,1,261,360650 ,1,262,274720 ,1,263,360725 ,1,264,274710 ,1,265,363280 ,1,266,274700 ,1,267,361740 ,1,268,274690 ,1,269,361720 ,1,270,274680 ,1,271,360010 ,1,272,274670 ,1,273,362415 ,1,274,274660 ,1,275,361100 ,1,276,274630 ,1,277,362810 ,1,278,274620 ,1,279,361570 ,1,280,274610 ,1,281,362090 ,1,282,274600 ,1,283,361235 ,1,284,274590 ,1,285,360330 ,1,286,274580 ,1,287,361475 ,1,288,274570 ,1,289,360550 ,1,290,274560 ,1,291,360805 ,1,292,274540 ,1,293,361895 ,1,294,274530 ,1,295,363330 ,1,296,274520 ,1,297,362150 ,1,298,274510 ,1,299,361420 ,1,300,274500 ,1,301,361130 ,1,302,274490 ,1,303,361625 ,1,304,274480 ,1,305,360040 ,1,306,274470 ,1,307,362605 ,1,308,274430 ,1,309,361960 ,1,310,274420 ,1,311,361850 ,1,312,274410 ,1,313,361550 ,1,314,274400 ,1,315,359945 ,1,316,274390 ,1,317,360790 ,1,318,274380 ,1,319,362510 ,1,320,274370 ,1,321,360415 ,1,322,274360 ,1,323,360585 ,1,324,274310 ,1,325,362155 ,1,326,274300 ,1,327,361785 ,1,328,274290 ,1,329,360055 ,1,330,274280 ,1,331,360050 ,1,332,274265 ,1,333,361820 ,1,334,274255 ,1,335,362755 ,1,336,274245 ,1,337,363175 ,1,338,274235 ,1,339,359885 ,1,340,274220 ,1,341,363030 ,1,342,274210 ,1,343,361485 ,1,344,274200 ,1,345,360540 ,1,346,274190 ,1,347,360270 ,1,348,274165 ,1,349,361315 ,1,350,274155 ,1,351,360390 ,1,352,274145 ,1,353,363340 ,1,354,274135 ,1,355,360600 ,1,356,274105 ,1,357,361760 ,1,358,274095 ,1,359,361750 ,1,360,274085 ,1,361,360220 ,1,362,274075 ,1,363,360685 ,1,364,274065 ,1,365,360620 ,1,366,274055 ,1,367,361885 ,1,368,274045 ,1,369,362005 ,1,370,274035 ,1,371,360430 ,1,372,274010 ,1,373,363270 ,1,374,274000 ,1,375,362925 ,1,376,273990 ,1,377,361265 ,1,378,273980 ,1,379,362405 ,1,380,273970 ,1,381,362385 ,1,382,273960 ,1,383,359895 ,1,384,273950 ,1,385,363050 ,1,386,273940 ,1,387,360675 ,1,388,273910 ,1,389,360070 ,1,390,273900 ,1,391,362720 ,1,392,273890 ,1,393,363010 ,1,394,273880 ,1,395,360290 ,1,396,273865 ,1,397,361255 ,1,398,273855 ,1,399,363115 ,1,400,273845 ,1,401,362435 ,1,402,273835 ,1,403,362295 ,1,404,273805 ,1,405,362555 ,1,406,273795 ,1,407,361930 ,1,408,273785 ,1,409,362315 ,1,410,273775 ,1,411,362650 ,1,412,273760 ,1,413,361730 ,1,414,273750 ,1,415,362255 ,1,416,273740 ,1,417,363260 ,1,418,273730 ,1,419,362660 ,1,420,273705 ,1,421,360085 ,1,422,273695 ,1,423,360895 ,1,424,273685 ,1,425,361440 ,1,426,273675 ,1,427,362690 ,1,428,273660 ,1,429,361670 ,1,430,273650 ,1,431,361950 ,1,432,273640 ,1,433,362915 ,1,434,273630 ,1,435,362180 ,1,436,273615 ,1,437,362710 ,1,438,273605 ,1,439,362355 ,1,440,273595 ,1,441,361065 ,1,442,273585 ,1,443,360280 ,1,444,273575 ,1,445,361830 ,1,446,273565 ,1,447,359875 ,1,448,273555 ,1,449,360440 ,1,450,273545 ,1,451,360995 ,1,452,273510 ,1,453,360230 ,1,454,273500 ,1,455,360530 ,1,456,273490 ,1,457,361190 ,1,458,273480 ,1,459,361525 ,2,14956,265685 ,2,822,24700 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340565 ,2,829,45 ,1,0,651630 ,1,1,362265 ,1,2,650615 ,1,3,360845 ,1,4,650570 ,1,5,361165 ,1,6,615940 ,1,7,361155 ,1,8,613280 ,1,9,360370 ,1,10,647540 ,1,11,360400 ,1,12,625360 ,1,13,361025 ,1,14,622995 ,1,15,362820 ,1,16,618495 ,1,17,361660 ,1,18,618890 ,1,19,362585 ,1,20,628950 ,1,21,362895 ,1,22,628550 ,1,23,360165 ,1,24,625595 ,1,25,363250 ,1,26,616130 ,1,27,361285 ,1,28,647535 ,1,29,362565 ,1,30,646855 ,1,31,360775 ,1,32,614645 ,1,33,360200 ,1,34,615220 ,1,35,363060 ,1,36,636580 ,1,37,362800 ,1,38,618130 ,1,39,360105 ,1,40,617155 ,1,41,362100 ,1,42,621235 ,1,43,361985 ,1,44,615300 ,1,45,360785 ,1,46,620270 ,1,47,361430 ,1,48,619705 ,1,49,360905 ,1,50,614710 ,1,51,363220 ,1,52,647530 ,1,53,360705 ,1,54,620685 ,1,55,359850 ,1,56,633960 ,1,57,362465 ,1,58,614705 ,1,59,362445 ,1,60,616170 ,1,61,361645 ,1,62,614045 ,1,63,362210 ,1,64,613975 ,1,65,361120 ,1,66,614020 ,1,67,361340 ,1,68,614025 ,1,69,363350 ,1,70,618550 ,1,71,360735 ,1,72,614390 ,1,73,361005 ,1,74,621000 ,1,75,362935 ,1,76,623955 ,1,77,362060 ,1,78,619445 ,1,79,362395 ,1,80,613640 ,1,81,362545 ,1,82,616545 ,1,83,363105 ,1,84,616230 ,1,85,361175 ,1,86,647525 ,1,87,362680 ,1,88,626560 ,1,89,360490 ,1,90,618545 ,1,91,363230 ,1,92,620805 ,1,93,362190 ,1,94,617450 ,1,95,361360 ,1,96,629995 ,1,97,363080 ,1,98,647270 ,1,99,363080 ,1,100,619075 ,1,101,363145 ,1,102,634020 ,1,103,360580 ,1,104,643500 ,1,105,361305 ,1,106,614600 ,1,107,363290 ,1,108,642630 ,1,109,362245 ,1,110,614635 ,1,111,361200 ,1,112,647485 ,1,113,360090 ,1,114,647480 ,1,115,361865 ,1,116,647475 ,1,117,360480 ,1,118,647470 ,1,119,361330 ,1,120,647465 ,1,121,362040 ,1,122,621765 ,1,123,359940 ,1,124,647460 ,1,125,363375 ,1,126,647455 ,1,127,362700 ,1,128,622625 ,1,129,363125 ,1,130,622650 ,1,131,362305 ,1,132,647450 ,1,133,361035 ,1,134,647425 ,1,135,361110 ,1,136,647420 ,1,137,360695 ,1,138,647800 ,1,139,361520 ,1,140,626295 ,1,141,362065 ,1,142,647030 ,1,143,362945 ,1,144,631750 ,1,145,362945 ,1,146,615515 ,1,147,360915 ,1,148,647235 ,1,149,360885 ,1,150,647225 ,1,151,360855 ,1,152,650545 ,1,153,360855 ,1,154,647815 ,1,155,361580 ,1,156,615830 ,1,157,361245 ,1,158,647180 ,1,159,362345 ,1,160,647700 ,1,161,362345 ,1,162,647215 ,1,163,361045 ,1,164,647220 ,1,165,360500 ,1,166,647185 ,1,167,361015 ,1,168,647230 ,1,169,361560 ,1,170,621100 ,1,171,360625 ,1,172,647805 ,1,173,362365 ,1,174,614195 ,1,175,360310 ,1,176,647325 ,1,177,362455 ,1,178,619270 ,1,179,362885 ,1,180,647795 ,1,181,359905 ,1,182,647295 ,1,183,362140 ,1,184,614145 ,1,185,361770 ,1,186,647290 ,1,187,361055 ,1,188,643550 ,1,189,361145 ,1,190,647285 ,1,191,362595 ,1,192,614160 ,1,193,361220 ,1,194,643140 ,1,195,360520 ,1,196,616615 ,1,197,360320 ,1,198,618860 ,1,199,363155 ,1,200,647280 ,1,201,362050 ,1,202,647275 ,1,203,362765 ,1,204,647775 ,1,205,363135 ,1,206,650005 ,1,207,363135 ,1,208,647825 ,1,209,360155 ,1,210,650475 ,1,211,360155 ,1,212,647820 ,1,213,361465 ,1,214,647665 ,1,215,360210 ,1,216,651595 ,1,217,362485 ,1,218,651590 ,1,219,363240 ,1,220,647870 ,1,221,363020 ,1,222,647895 ,1,223,360745 ,1,224,647860 ,1,225,362775 ,1,226,647910 ,1,227,360930 ,1,228,647855 ,1,229,362120 ,1,230,647830 ,1,231,361615 ,1,232,650710 ,1,233,361635 ,1,234,650705 ,1,235,361995 ,1,236,650690 ,1,237,360950 ,1,238,647745 ,1,239,363000 ,1,240,619710 ,1,241,360380 ,1,242,650885 ,1,243,362325 ,1,244,647770 ,1,245,360960 ,1,246,647760 ,1,247,361840 ,1,248,615555 ,1,249,360610 ,1,250,647750 ,1,251,361210 ,1,252,647735 ,1,253,363165 ,1,254,650410 ,1,255,360650 ,1,256,647050 ,1,257,360725 ,1,258,647095 ,1,259,363280 ,1,260,647055 ,1,261,361740 ,1,262,647585 ,1,263,361720 ,1,264,647080 ,1,265,361720 ,1,266,647590 ,1,267,362810 ,1,268,650715 ,1,269,361570 ,1,270,647915 ,1,271,360330 ,1,272,647595 ,1,273,361475 ,1,274,647765 ,1,275,361895 ,1,276,647675 ,1,277,363330 ,1,278,647670 ,1,279,362150 ,1,280,615610 ,1,281,359945 ,1,282,647025 ,1,283,360790 ,1,284,627185 ,1,285,362510 ,1,286,647085 ,1,287,360415 ,1,288,647810 ,1,289,360585 ,1,290,628415 ,1,291,362155 ,1,292,646850 ,1,293,361785 ,1,294,647105 ,1,295,360055 ,1,296,641130 ,1,297,360835 ,1,298,650420 ,1,299,360050 ,1,300,651505 ,1,301,361820 ,1,302,650500 ,1,303,360115 ,1,304,636175 ,1,305,361540 ,1,306,636265 ,1,307,362495 ,1,308,646840 ,1,309,362755 ,1,310,651410 ,1,311,362755 ,1,312,650625 ,1,313,363175 ,1,314,647640 ,1,315,359885 ,1,316,651405 ,1,317,363030 ,1,318,647615 ,1,319,361485 ,1,320,647715 ,1,321,360540 ,1,322,647705 ,1,323,360270 ,1,324,615715 ,1,325,361315 ,1,326,647645 ,1,327,361315 ,1,328,647710 ,1,329,360390 ,1,330,647730 ,1,331,360390 ,1,332,647720 ,1,333,363340 ,1,334,650535 ,1,335,362375 ,1,336,626825 ,1,337,361760 ,1,338,650540 ,1,339,361760 ,1,340,645595 ,1,341,360340 ,1,342,635960 ,1,343,361875 ,1,344,650405 ,1,345,363385 ,1,346,647725 ,1,347,360510 ,1,348,651585 ,1,349,360510 ,1,350,651580 ,1,351,360825 ,1,352,650480 ,1,353,360430 ,1,354,651380 ,1,355,361265 ,1,356,626815 ,1,357,359895 ,1,358,647660 ,1,359,360715 ,1,360,649990 ,1,361,361255 ,1,362,651560 ,1,363,361255 ,1,364,650370 ,1,365,363115 ,1,366,651555 ,1,367,363115 ,1,368,650360 ,1,369,362435 ,1,370,650335 ,1,371,362435 ,1,372,650365 ,1,373,362295 ,1,374,650330 ,1,375,362295 ,1,376,650215 ,1,377,362555 ,1,378,650325 ,1,379,362555 ,1,380,650190 ,1,381,361930 ,1,382,650280 ,1,383,361930 ,1,384,650180 ,1,385,362315 ,1,386,650275 ,1,387,362315 ,1,388,650155 ,1,389,362650 ,1,390,650270 ,1,391,362650 ,1,392,650150 ,1,393,361730 ,1,394,650265 ,1,395,361730 ,1,396,650145 ,1,397,362255 ,1,398,650260 ,1,399,362255 ,1,400,650195 ,1,401,363260 ,1,402,650255 ,1,403,363260 ,1,404,641800 ,1,405,362660 ,1,406,650250 ,1,407,362660 ,1,408,650210 ,1,409,360085 ,1,410,646835 ,1,411,360085 ,1,412,650185 ,1,413,360895 ,1,414,650245 ,1,415,360895 ,1,416,651550 ,1,417,361440 ,1,418,650130 ,1,419,361440 ,1,420,641775 ,1,421,362690 ,1,422,650125 ,1,423,362690 ,1,424,650120 ,1,425,361670 ,1,426,650110 ,1,427,361950 ,1,428,650105 ,1,429,362915 ,1,430,650085 ,1,431,362180 ,1,432,650075 ,1,433,362710 ,1,434,651545 ,1,435,362355 ,1,436,650080 ,1,437,361065 ,1,438,651535 ,1,439,360280 ,1,440,651530 ,1,441,361830 ,1,442,651525 ,1,443,359875 ,1,444,651520 ,1,445,360440 ,1,446,651515 ,1,447,360995 ,1,448,650100 ,1,449,360230 ,1,450,650095 ,1,451,360530 ,1,452,650090 ,1,453,361190 ,1,454,632365 ,1,455,361525 ,2,14956,265625 ,2,822,36855 ,2,14975,110 ,2,14976,35640 ,2,14977,35615 ,2,14965,550695 ,2,14978,45 ,2,14979,340615 ,2,829,45 ,1,0,647815 ,1,1,366500 ,1,2,647215 ,1,3,366300 ,1,4,647180 ,1,5,366025 ,1,6,615830 ,1,7,364010 ,1,8,647810 ,1,9,364730 ,1,10,647805 ,1,11,365250 ,1,12,647800 ,1,13,364030 ,1,14,646850 ,1,15,364355 ,1,16,647240 ,1,17,366060 ,1,18,647235 ,1,19,365745 ,1,20,647230 ,1,21,363480 ,1,22,647225 ,1,23,365485 ,1,24,647220 ,1,25,366685 ,1,26,647795 ,1,27,365145 ,1,28,615515 ,1,29,363465 ,1,30,647780 ,1,31,366080 ,2,14956,265555 ,2,822,36855 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,550700 ,2,14978,45 ,2,14979,340625 ,2,829,45 ,1,0,275240 ,1,1,366500 ,1,2,275230 ,1,3,366300 ,1,4,275220 ,1,5,366025 ,1,6,275210 ,1,7,364010 ,1,8,275190 ,1,9,364730 ,1,10,275180 ,1,11,365250 ,1,12,275170 ,1,13,364030 ,1,14,275150 ,1,15,364355 ,1,16,275140 ,1,17,366060 ,1,18,275130 ,1,19,365745 ,1,20,275120 ,1,21,363480 ,1,22,275110 ,1,23,365485 ,1,24,275100 ,1,25,366685 ,1,26,275090 ,1,27,365145 ,1,28,275080 ,1,29,363465 ,1,30,275015 ,1,31,366080 ,1,32,274690 ,1,33,365055 ,1,34,274530 ,1,35,365620 ,1,36,274520 ,1,37,364570 ,2,14956,265565 ,2,822,36855 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,550710 ,2,14978,45 ,2,14979,340645 ,2,829,45 ,1,0,615295 ,1,1,361155 ,1,2,623955 ,1,3,360370 ,1,4,618550 ,1,5,360400 ,1,6,614705 ,1,7,361025 ,1,8,616545 ,1,9,362820 ,1,10,616170 ,1,11,361660 ,1,12,613975 ,1,13,362585 ,1,14,614045 ,1,15,362895 ,1,16,618890 ,1,17,360165 ,1,18,647535 ,1,19,363250 ,1,20,634020 ,1,21,361285 ,1,22,616130 ,1,23,362565 ,1,24,647540 ,1,25,360775 ,1,26,647530 ,1,27,360200 ,1,28,621235 ,1,29,363060 ,1,30,628950 ,1,31,362800 ,1,32,626560 ,1,33,360105 ,1,34,616230 ,1,35,362100 ,1,36,613640 ,1,37,361985 ,1,38,614710 ,1,39,360785 ,1,40,625360 ,1,41,361430 ,1,42,614390 ,1,43,360905 ,1,44,618545 ,1,45,363220 ,1,46,614025 ,1,47,360705 ,1,48,618130 ,1,49,359850 ,1,50,614020 ,1,51,362465 ,1,52,622995 ,1,53,362445 ,1,54,617155 ,1,55,361645 ,1,56,615300 ,1,57,362210 ,1,58,620685 ,1,59,361120 ,1,60,628550 ,1,61,361340 ,1,62,620270 ,1,63,363350 ,1,64,620805 ,1,65,360735 ,1,66,619445 ,1,67,361005 ,1,68,636580 ,1,69,362935 ,1,70,615610 ,1,71,362060 ,1,72,625595 ,1,73,362395 ,1,74,614635 ,1,75,362545 ,1,76,614600 ,1,77,363105 ,1,78,613280 ,1,79,361175 ,1,80,614645 ,1,81,362680 ,1,82,617450 ,1,83,360490 ,1,84,615220 ,1,85,363230 ,1,86,618495 ,1,87,362190 ,1,88,615940 ,1,89,361360 ,1,90,647025 ,1,91,363080 ,1,92,643500 ,1,93,363145 ,1,94,619075 ,1,95,360580 ,1,96,646855 ,1,97,361305 ,1,98,629995 ,1,99,363290 ,1,100,619705 ,1,101,362245 ,1,102,633960 ,1,103,361200 ,1,104,647525 ,1,105,360090 ,1,106,615780 ,1,107,361865 ,1,108,647045 ,1,109,360480 ,1,110,647800 ,1,111,361330 ,1,112,647175 ,1,113,362040 ,1,114,647795 ,1,115,359940 ,1,116,647810 ,1,117,363375 ,1,118,647805 ,1,119,362700 ,1,120,646850 ,1,121,363125 ,1,122,647240 ,1,123,362305 ,1,124,647180 ,1,125,361035 ,1,126,647230 ,1,127,361110 ,1,128,647815 ,1,129,360695 ,1,130,647055 ,1,131,360915 ,1,132,647095 ,1,133,360885 ,1,134,647825 ,1,135,360855 ,1,136,647820 ,1,137,361580 ,1,138,647030 ,1,139,361245 ,1,140,647080 ,1,141,362345 ,1,142,642225 ,1,143,361045 ,1,144,647060 ,1,145,360500 ,1,146,647085 ,1,147,361015 ,1,148,647105 ,1,149,361560 ,1,150,643140 ,1,151,360625 ,1,152,643550 ,1,153,362365 ,1,154,622650 ,1,155,360310 ,1,156,619270 ,1,157,362455 ,1,158,621100 ,1,159,362885 ,1,160,647285 ,1,161,359905 ,1,162,647275 ,1,163,362140 ,1,164,647605 ,1,165,361770 ,1,166,647600 ,1,167,361055 ,1,168,647270 ,1,169,361145 ,1,170,647425 ,1,171,362595 ,1,172,647420 ,1,173,361220 ,1,174,647245 ,1,175,360520 ,1,176,647595 ,1,177,360320 ,1,178,647590 ,1,179,363155 ,1,180,647280 ,1,181,362050 ,1,182,647455 ,1,183,362765 ,1,184,621000 ,1,185,361510 ,1,186,615515 ,1,187,363135 ,1,188,647290 ,1,189,361465 ,1,190,647220 ,1,191,360210 ,1,192,615830 ,1,193,362485 ,1,194,647050 ,1,195,363240 ,1,196,647215 ,1,197,363020 ,1,198,647460 ,1,199,360745 ,1,200,647295 ,1,201,362775 ,1,202,614145 ,1,203,360930 ,1,204,647915 ,1,205,362120 ,1,206,647325 ,1,207,360725 ,1,208,616615 ,1,209,363280 ,1,210,618860 ,1,211,361740 ,1,212,647585 ,1,213,361720 ,1,214,650715 ,1,215,360010 ,1,216,647920 ,1,217,361100 ,1,218,647225 ,1,219,362090 ,1,220,647235 ,1,221,361235 ,1,222,647480 ,1,223,359945 ,1,224,627185 ,1,225,360790 ,1,226,647485 ,1,227,362510 ,1,228,614195 ,1,229,360415 ,1,230,647465 ,1,231,360585 ,1,232,647475 ,1,233,362155 ,1,234,647470 ,1,235,361785 ,1,236,628415 ,1,237,360055 ,1,238,621765 ,1,239,361525 ,2,14956,265575 ,2,822,36855 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,550715 ,2,14978,45 ,2,14979,340635 ,2,829,45 ,1,0,370450 ,1,1,290520 ,1,2,370440 ,1,3,290465 ,1,4,370430 ,1,5,290445 ,1,6,370410 ,1,7,290425 ,1,8,370400 ,1,9,290405 ,1,10,370390 ,1,11,290360 ,1,12,370375 ,1,13,277610 ,2,14956,265655 ,2,822,36865 ,2,14975,580560 ,2,14976,75 ,2,14977,75 ,2,14965,550720 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,244325 ,1,5,613640 ,1,6,45 ,2,14956,4490 ,2,822,36865 ,2,14975,599975 ,2,14976,95580 ,2,14977,95570 ,2,14965,45 ,2,14978,250815 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,613640 ,1,4,226975 ,1,5,613640 ,1,6,209800 ,1,7,614020 ,1,8,226800 ,1,9,613975 ,1,10,229400 ,1,11,614045 ,1,12,227845 ,1,13,614705 ,1,14,229410 ,1,15,616170 ,1,16,45 ,2,14956,265675 ,2,822,36855 ,2,14975,110 ,2,14976,24020 ,2,14977,95640 ,2,14965,550725 ,2,14978,45 ,2,14979,340575 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,242410 ,1,5,614705 ,1,6,45 ,2,14956,265710 ,2,822,24700 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340665 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,210905 ,1,5,616170 ,1,6,11510 ,1,7,614705 ,1,8,45 ,2,14956,265720 ,2,822,24700 ,2,14975,568855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,616170 ,1,4,258000 ,1,5,614045 ,1,6,257990 ,1,7,613975 ,1,8,258010 ,1,9,616170 ,1,10,182890 ,1,11,614020 ,1,12,45 ,2,14956,265685 ,2,822,36875 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340735 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,224990 ,1,5,614705 ,1,6,225025 ,1,7,613640 ,1,8,45 ,2,14956,265755 ,2,822,36875 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340755 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,179750 ,1,5,616170 ,1,6,45 ,2,14956,265765 ,2,822,36875 ,2,14975,568845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,245260 ,1,5,613640 ,1,6,45 ,2,14956,265815 ,2,822,36885 ,2,14975,580585 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340765 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,185400 ,1,5,614705 ,1,6,185390 ,1,7,616170 ,1,8,45 ,2,14956,265785 ,2,822,36885 ,2,14975,580595 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,243250 ,1,5,616170 ,1,6,243260 ,1,7,614705 ,1,8,243285 ,1,9,613640 ,1,10,45 ,2,14956,265825 ,2,822,36885 ,2,14975,580640 ,2,14976,95730 ,2,14977,23360 ,2,14965,45 ,2,14978,235460 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,613640 ,1,4,186340 ,1,5,613975 ,1,6,185785 ,1,7,616170 ,1,8,186360 ,1,9,614705 ,1,10,186180 ,1,11,614020 ,1,12,183195 ,1,13,613640 ,1,14,186350 ,1,15,614045 ,1,16,45 ,2,14956,265835 ,2,822,36885 ,2,14975,580615 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340695 ,2,829,45 ,1,0,615295 ,1,1,619075 ,1,2,619075 ,1,3,619075 ,1,4,45 ,2,14956,265845 ,2,822,36885 ,2,14975,568720 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,309710 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,221620 ,1,5,613640 ,1,6,45 ,2,14956,265875 ,2,822,36895 ,2,14975,568430 ,2,14976,23130 ,2,14977,95770 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,251815 ,1,5,613640 ,1,6,45 ,2,14956,265865 ,2,822,36895 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340840 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,251825 ,1,5,613640 ,1,6,251815 ,1,7,614705 ,1,8,45 ,2,14956,265895 ,2,822,24635 ,2,14975,568785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,255730 ,1,5,616170 ,1,6,180645 ,1,7,614045 ,1,8,255740 ,1,9,614705 ,1,10,45 ,2,14956,265905 ,2,822,24635 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340890 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,210905 ,1,5,614705 ,1,6,11510 ,1,7,616170 ,1,8,45 ,2,14956,265945 ,2,822,24645 ,2,14975,580645 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,309690 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,242505 ,1,5,614705 ,1,6,242245 ,1,7,616170 ,1,8,45 ,2,14956,265965 ,2,822,24645 ,2,14975,580650 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340805 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,209800 ,1,5,614045 ,1,6,185775 ,1,7,613640 ,1,8,241760 ,1,9,616170 ,1,10,222235 ,1,11,614705 ,1,12,45 ,2,14956,216645 ,2,822,36920 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413755 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,218370 ,1,5,613640 ,1,6,209800 ,1,7,614045 ,1,8,182815 ,1,9,616170 ,1,10,184220 ,1,11,614705 ,1,12,45 ,2,14956,233895 ,2,822,24645 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340910 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,613640 ,1,4,226975 ,1,5,613640 ,1,6,209800 ,1,7,614020 ,1,8,228960 ,1,9,614705 ,1,10,229060 ,1,11,616170 ,1,12,229035 ,1,13,614045 ,1,14,226800 ,1,15,613975 ,1,16,45 ,2,14956,176210 ,2,822,24645 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340950 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,174110 ,1,5,613640 ,1,6,252940 ,1,7,614705 ,1,8,45 ,2,14956,266025 ,2,822,24645 ,2,14975,580980 ,2,14976,23450 ,2,14977,95840 ,2,14965,45 ,2,14978,45 ,2,14979,340860 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,242090 ,1,5,614705 ,1,6,242080 ,1,7,616170 ,1,8,242070 ,1,9,614045 ,1,10,45 ,2,14956,266035 ,2,822,24645 ,2,14975,580980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340850 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,179640 ,1,5,616170 ,1,6,242275 ,1,7,614705 ,1,8,45 ,2,14956,234530 ,2,822,24645 ,2,14975,580980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,340870 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,185775 ,1,5,616170 ,1,6,182815 ,1,7,613640 ,1,8,241760 ,1,9,614705 ,1,10,45 ,2,14956,217455 ,2,822,36940 ,2,14975,580675 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384945 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,185785 ,1,5,614705 ,1,6,45 ,2,14956,217240 ,2,822,36940 ,2,14975,568790 ,2,14976,23130 ,2,14977,63205 ,2,14965,45 ,2,14978,45 ,2,14979,341215 ,2,829,45 ,1,0,615295 ,1,1,621000 ,1,2,621000 ,1,3,613640 ,1,4,231915 ,1,5,618550 ,1,6,231955 ,1,7,613640 ,1,8,180735 ,1,9,614045 ,1,10,231905 ,1,11,614390 ,1,12,231925 ,1,13,614025 ,1,14,211025 ,1,15,616170 ,1,16,231945 ,1,17,614020 ,1,18,182890 ,1,19,613975 ,1,20,183310 ,1,21,614705 ,1,22,45 ,2,14956,213590 ,2,822,36940 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260580 ,2,14979,413340 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,210905 ,1,5,614705 ,1,6,269095 ,1,7,616170 ,1,8,45 ,2,14956,240605 ,2,822,36950 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389435 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,261225 ,1,5,613640 ,1,6,45 ,2,14956,266075 ,2,822,36950 ,2,14975,580705 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,217490 ,1,5,613640 ,1,6,45 ,2,14956,240605 ,2,822,36970 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389445 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,226975 ,1,5,613640 ,1,6,209800 ,1,7,614045 ,1,8,228970 ,1,9,616170 ,1,10,226790 ,1,11,614705 ,1,12,45 ,2,14956,266135 ,2,822,36970 ,2,14975,580725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614045 ,1,4,209390 ,1,5,614045 ,1,6,45 ,2,14956,240605 ,2,822,36980 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389425 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,614020 ,1,4,262945 ,1,5,614020 ,1,6,45 ,2,14956,266155 ,2,822,36980 ,2,14975,580740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,253795 ,1,5,613640 ,1,6,45 ,2,14956,240605 ,2,822,36990 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389440 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,253795 ,1,5,614705 ,1,6,225320 ,1,7,613640 ,1,8,45 ,2,14956,266180 ,2,822,36990 ,2,14975,580795 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,253795 ,1,5,616170 ,1,6,225320 ,1,7,613640 ,1,8,225310 ,1,9,614705 ,1,10,45 ,2,14956,2855 ,2,822,37030 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415570 ,2,829,557785 ,1,0,621235 ,1,1,619805 ,1,2,621235 ,1,3,615940 ,1,4,621235 ,1,5,615940 ,1,6,621235 ,1,7,621235 ,1,8,615940 ,1,9,621235 ,1,10,615940 ,1,11,621235 ,2,14956,182390 ,2,822,37090 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385615 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,242480 ,1,5,614045 ,1,6,179640 ,1,7,614705 ,1,8,242450 ,1,9,616170 ,1,10,45 ,2,14956,184135 ,2,822,37090 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380770 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,234595 ,1,5,614705 ,1,6,215195 ,1,7,613640 ,1,8,266840 ,1,9,616170 ,1,10,234605 ,1,11,614045 ,1,12,45 ,2,14956,217195 ,2,822,37090 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369475 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,209800 ,1,5,614045 ,1,6,185785 ,1,7,613640 ,1,8,182815 ,1,9,614705 ,1,10,184220 ,1,11,616170 ,1,12,45 ,2,14956,266375 ,2,822,24635 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341110 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,184220 ,1,7,613640 ,1,8,45 ,2,14956,266385 ,2,822,24635 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,341120 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,185785 ,1,5,616170 ,1,6,182815 ,1,7,614705 ,1,8,184220 ,1,9,613640 ,1,10,45 ,2,14956,266395 ,2,822,24635 ,2,14975,599870 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,341185 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,179760 ,1,5,613640 ,1,6,45 ,2,14956,266405 ,2,822,24635 ,2,14975,568720 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,341175 ,2,829,45 ,1,0,615295 ,1,1,626560 ,1,2,626560 ,1,3,613640 ,1,4,231915 ,1,5,618550 ,1,6,185785 ,1,7,614045 ,1,8,240255 ,1,9,613975 ,1,10,5845 ,1,11,613640 ,1,12,231925 ,1,13,614390 ,1,14,240210 ,1,15,621000 ,1,16,212880 ,1,17,616170 ,1,18,231945 ,1,19,614025 ,1,20,240220 ,1,21,614020 ,1,22,240265 ,1,23,614705 ,1,24,182890 ,1,25,623955 ,1,26,45 ,2,14956,266435 ,2,822,24635 ,2,14975,568720 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,341165 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,192820 ,1,5,613640 ,1,6,45 ,2,14956,266455 ,2,822,24635 ,2,14975,580980 ,2,14976,24020 ,2,14977,96315 ,2,14965,45 ,2,14978,45 ,2,14979,341205 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,292855 ,1,5,613640 ,1,6,45 ,2,14956,266465 ,2,822,24635 ,2,14975,580980 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341195 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,11510 ,1,5,614705 ,1,6,45 ,2,14956,217240 ,2,822,37100 ,2,14975,580980 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341260 ,2,829,45 ,1,0,615295 ,1,1,614390 ,1,2,614390 ,1,3,613640 ,1,4,226975 ,1,5,614020 ,1,6,209800 ,1,7,618550 ,1,8,228970 ,1,9,614025 ,1,10,229325 ,1,11,614045 ,1,12,226790 ,1,13,613975 ,1,14,226800 ,1,15,614705 ,1,16,229400 ,1,17,616170 ,1,18,227845 ,1,19,613640 ,1,20,45 ,2,14956,266520 ,2,822,37150 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,161890 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614705 ,1,4,242495 ,1,5,614045 ,1,6,179640 ,1,7,613975 ,1,8,242275 ,1,9,616170 ,1,10,242285 ,1,11,614705 ,1,12,45 ,2,14956,266510 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235470 ,2,14979,341300 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,225320 ,1,5,613640 ,1,6,45 ,2,14956,182390 ,2,822,37150 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385610 ,2,829,45 ,1,0,615295 ,1,1,620805 ,1,2,620805 ,1,3,613640 ,1,4,258675 ,1,5,636580 ,1,6,258710 ,1,7,615220 ,1,8,258970 ,1,9,623955 ,1,10,258830 ,1,11,616545 ,1,12,258730 ,1,13,620270 ,1,14,258720 ,1,15,628550 ,1,16,258765 ,1,17,617155 ,1,18,259045 ,1,19,614020 ,1,20,259055 ,1,21,613975 ,1,22,258775 ,1,23,618130 ,1,24,258785 ,1,25,616230 ,1,26,259025 ,1,27,618550 ,1,28,245745 ,1,29,614710 ,1,30,258755 ,1,31,615300 ,1,32,258740 ,1,33,620685 ,1,34,259035 ,1,35,614025 ,1,36,259140 ,1,37,616170 ,1,38,259150 ,1,39,614705 ,1,40,259085 ,1,41,614045 ,1,42,245725 ,1,43,622995 ,1,44,258990 ,1,45,614390 ,1,46,258980 ,1,47,621000 ,1,48,244345 ,1,49,613640 ,1,50,258920 ,1,51,626560 ,1,52,258870 ,1,53,618545 ,1,54,45 ,2,14956,266510 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,161890 ,2,14979,341310 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,242470 ,1,5,613640 ,1,6,259075 ,1,7,614705 ,1,8,45 ,2,14956,223625 ,2,822,37150 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365545 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,198280 ,1,5,614705 ,1,6,45 ,2,14956,215455 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374810 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,260350 ,1,5,613640 ,1,6,45 ,2,14956,266555 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341320 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,217500 ,1,5,613640 ,1,6,45 ,2,14956,217240 ,2,822,37160 ,2,14975,573500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341330 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,183245 ,1,5,613640 ,1,6,45 ,2,14956,216035 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386215 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,252845 ,1,5,614705 ,1,6,221620 ,1,7,613640 ,1,8,45 ,2,14956,184135 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380765 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,217490 ,1,5,614705 ,1,6,217500 ,1,7,613640 ,1,8,45 ,2,14956,266565 ,2,822,37150 ,2,14975,580980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397075 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614045 ,1,4,256155 ,1,5,614045 ,1,6,45 ,2,14956,266575 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341370 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,221275 ,1,5,616170 ,1,6,221285 ,1,7,614705 ,1,8,45 ,2,14956,266565 ,2,822,37180 ,2,14975,573500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397070 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,221275 ,1,5,613640 ,1,6,45 ,2,14956,217195 ,2,822,37150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369465 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,252845 ,1,5,613640 ,1,6,45 ,2,14956,266585 ,2,822,37150 ,2,14975,580980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341400 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,613640 ,1,4,182835 ,1,5,613640 ,1,6,182825 ,1,7,614705 ,1,8,182790 ,1,9,616170 ,1,10,182880 ,1,11,613975 ,1,12,182890 ,1,13,614045 ,1,14,45 ,2,14956,217455 ,2,822,37160 ,2,14975,580910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384935 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,187220 ,1,5,616170 ,1,6,187230 ,1,7,614705 ,1,8,226800 ,1,9,614045 ,1,10,45 ,2,14956,182390 ,2,822,37180 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385605 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,226975 ,1,5,613640 ,1,6,209800 ,1,7,614705 ,1,8,45 ,2,14956,217455 ,2,822,37100 ,2,14975,580930 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384940 ,2,829,45 ,1,0,615295 ,1,1,642630 ,1,2,642630 ,1,3,642630 ,1,4,45 ,2,14956,213590 ,2,822,37100 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260590 ,2,14979,413335 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,613975 ,1,4,186340 ,1,5,613975 ,1,6,186180 ,1,7,614020 ,1,8,45 ,2,14956,207085 ,2,822,24590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,379960 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,263400 ,1,5,613640 ,1,6,45 ,2,14956,266720 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341450 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,223775 ,1,5,613640 ,1,6,45 ,2,14956,266730 ,2,822,24580 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341495 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,209800 ,1,5,614045 ,1,6,185775 ,1,7,613640 ,1,8,182815 ,1,9,614705 ,1,10,184220 ,1,11,616170 ,1,12,45 ,2,14956,266740 ,2,822,24580 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341475 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,242450 ,1,5,614705 ,1,6,45 ,2,14956,266775 ,2,822,24580 ,2,14975,110 ,2,14976,23450 ,2,14977,96505 ,2,14965,45 ,2,14978,45 ,2,14979,341235 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,184220 ,1,5,614705 ,1,6,45 ,2,14956,266785 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341380 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,613975 ,1,3,614705 ,1,4,198280 ,1,5,616170 ,1,6,210905 ,1,7,614705 ,1,8,45 ,2,14956,234570 ,2,822,24580 ,2,14975,573500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399435 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,198280 ,1,5,614705 ,1,6,210905 ,1,7,613640 ,1,8,45 ,2,14956,265755 ,2,822,24580 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,340675 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,210905 ,1,5,614045 ,1,6,269050 ,1,7,616170 ,1,8,11510 ,1,9,614705 ,1,10,45 ,2,14956,266795 ,2,822,24580 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341505 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,209800 ,1,5,616170 ,1,6,182815 ,1,7,614705 ,1,8,222235 ,1,9,613640 ,1,10,45 ,2,14956,266810 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341390 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,242410 ,1,5,614045 ,1,6,242480 ,1,7,616170 ,1,8,179640 ,1,9,614705 ,1,10,45 ,2,14956,266820 ,2,822,24580 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,335980 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,182815 ,1,7,613640 ,1,8,45 ,2,14956,234540 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,73200 ,2,14965,45 ,2,14978,45 ,2,14979,399415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,216560 ,1,5,614705 ,1,6,45 ,2,14956,266830 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341225 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,234595 ,1,5,614705 ,1,6,215195 ,1,7,613640 ,1,8,234605 ,1,9,616170 ,1,10,45 ,2,14956,266870 ,2,822,24580 ,2,14975,568715 ,2,14976,23675 ,2,14977,96515 ,2,14965,45 ,2,14978,45 ,2,14979,334010 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,242350 ,1,5,614705 ,1,6,242340 ,1,7,616170 ,1,8,45 ,2,14956,266880 ,2,822,24580 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341530 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,226125 ,1,5,616170 ,1,6,226135 ,1,7,614705 ,1,8,226145 ,1,9,613640 ,1,10,199455 ,1,11,614045 ,1,12,45 ,2,14956,266890 ,2,822,24580 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309565 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,5320 ,1,5,614705 ,1,6,297700 ,1,7,613640 ,1,8,45 ,2,14956,266900 ,2,822,24580 ,2,14975,573500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309555 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,242410 ,1,5,614705 ,1,6,242470 ,1,7,616170 ,1,8,45 ,2,14956,184135 ,2,822,24580 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382085 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,242495 ,1,5,616170 ,1,6,242285 ,1,7,614705 ,1,8,45 ,2,14956,266915 ,2,822,24580 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309655 ,2,829,45 ,1,0,613640 ,1,1,614020 ,1,2,614020 ,1,3,614020 ,1,4,45 ,2,14956,266925 ,2,822,24580 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341520 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,616170 ,1,4,231915 ,1,5,614045 ,1,6,222480 ,1,7,616170 ,1,8,182890 ,1,9,613975 ,1,10,45 ,2,14956,266975 ,2,822,24560 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235480 ,2,14979,341550 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,224980 ,1,5,616170 ,1,6,224990 ,1,7,614705 ,1,8,225025 ,1,9,613640 ,1,10,45 ,2,14956,266985 ,2,822,24560 ,2,14975,575310 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309375 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,11690 ,1,5,613640 ,1,6,225680 ,1,7,614705 ,1,8,45 ,2,14956,266720 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341485 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614025 ,1,3,614020 ,1,4,45 ,2,14956,267005 ,2,822,24560 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,162465 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,614045 ,1,3,614705 ,1,4,217770 ,1,5,614705 ,1,6,45 ,2,14956,266995 ,2,822,24560 ,2,14975,110 ,2,14976,88700 ,2,14977,23120 ,2,14965,45 ,2,14978,235490 ,2,14979,341580 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,217770 ,1,5,614705 ,1,6,211330 ,1,7,616170 ,1,8,45 ,2,14956,266995 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,162465 ,2,14979,341590 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614705 ,1,4,248365 ,1,5,614705 ,1,6,248330 ,1,7,616170 ,1,8,248320 ,1,9,614045 ,1,10,248310 ,1,11,613975 ,1,12,45 ,2,14956,267020 ,2,822,24560 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309340 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,616170 ,1,4,224780 ,1,5,614045 ,1,6,224825 ,1,7,616170 ,1,8,45 ,2,14956,267030 ,2,822,24560 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309350 ,2,829,45 ,1,0,615295 ,1,1,618550 ,1,2,618550 ,1,3,613640 ,1,4,225055 ,1,5,614705 ,1,6,224980 ,1,7,614020 ,1,8,225120 ,1,9,616170 ,1,10,225130 ,1,11,614025 ,1,12,225065 ,1,13,613975 ,1,14,225095 ,1,15,614045 ,1,16,225140 ,1,17,613640 ,1,18,45 ,2,14956,267040 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341600 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,225320 ,1,5,614705 ,1,6,225310 ,1,7,616170 ,1,8,45 ,2,14956,267050 ,2,822,24560 ,2,14975,575310 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,309360 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,613640 ,1,4,224835 ,1,5,614045 ,1,6,224780 ,1,7,614705 ,1,8,206975 ,1,9,614020 ,1,10,224845 ,1,11,616170 ,1,12,224825 ,1,13,613640 ,1,14,224855 ,1,15,613975 ,1,16,45 ,2,14956,267080 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,309605 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,224780 ,1,5,616170 ,1,6,224825 ,1,7,614705 ,1,8,45 ,2,14956,267090 ,2,822,24560 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,162415 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,613975 ,1,3,616170 ,1,4,183245 ,1,5,616170 ,1,6,45 ,2,14956,267100 ,2,822,24560 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341610 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,198280 ,1,5,616170 ,1,6,210905 ,1,7,614705 ,1,8,183245 ,1,9,613640 ,1,10,45 ,2,14956,2855 ,2,822,37190 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415550 ,2,829,45 ,1,0,615295 ,1,1,626560 ,1,2,626560 ,1,3,613640 ,1,4,225660 ,1,5,614390 ,1,6,225055 ,1,7,623955 ,1,8,209800 ,1,9,613640 ,1,10,224980 ,1,11,614025 ,1,12,225160 ,1,13,618550 ,1,14,225680 ,1,15,614045 ,1,16,225670 ,1,17,614020 ,1,18,225120 ,1,19,616170 ,1,20,225065 ,1,21,621000 ,1,22,225095 ,1,23,613975 ,1,24,225140 ,1,25,614705 ,1,26,45 ,2,14956,2855 ,2,822,37200 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415565 ,2,829,557755 ,1,0,214155 ,1,1,242295 ,1,2,317820 ,1,3,330525 ,1,4,317810 ,1,5,317800 ,1,6,305275 ,1,7,317775 ,1,8,3825 ,1,9,317765 ,2,14956,197265 ,2,822,24530 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,162645 ,2,14979,356205 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,199120 ,1,5,616170 ,1,6,266445 ,1,7,614705 ,1,8,45 ,2,14956,269360 ,2,822,51710 ,2,14975,110 ,2,14976,35265 ,2,14977,23120 ,2,14965,45 ,2,14978,235500 ,2,14979,341630 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,266015 ,1,5,614705 ,1,6,45 ,2,14956,184135 ,2,822,51710 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412405 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614705 ,1,4,218370 ,1,5,614705 ,1,6,226030 ,1,7,613975 ,1,8,198280 ,1,9,614045 ,1,10,210905 ,1,11,616170 ,1,12,45 ,2,14956,197280 ,2,822,51710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410520 ,2,829,45 ,1,0,613640 ,1,1,614390 ,1,2,616545 ,1,3,614390 ,1,4,45 ,2,14956,269360 ,2,822,51710 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,162645 ,2,14979,356010 ,2,829,45 ,1,0,613640 ,1,1,614020 ,1,2,614390 ,1,3,614020 ,1,4,45 ,2,14956,197415 ,2,822,51710 ,2,14975,563785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260600 ,2,14979,413785 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,265915 ,1,5,614705 ,1,6,45 ,2,14956,267255 ,2,822,24560 ,2,14975,568695 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,309290 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614045 ,1,4,230940 ,1,5,614045 ,1,6,223765 ,1,7,613975 ,1,8,45 ,2,14956,267275 ,2,822,37330 ,2,14975,580995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,614045 ,1,4,215195 ,1,5,614020 ,1,6,230940 ,1,7,614045 ,1,8,223765 ,1,9,613975 ,1,10,45 ,2,14956,6245 ,2,822,37210 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389125 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,195325 ,1,5,614705 ,1,6,45 ,2,14956,13210 ,2,822,37210 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397710 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,252845 ,1,5,616170 ,1,6,221620 ,1,7,614705 ,1,8,214155 ,1,9,613640 ,1,10,45 ,2,14956,173945 ,2,822,37210 ,2,14975,610530 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260610 ,2,14979,410915 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,614025 ,1,3,613975 ,1,4,45 ,2,14956,213590 ,2,822,37230 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260625 ,2,14979,413390 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,190430 ,1,5,614705 ,1,6,45 ,2,14956,2855 ,2,822,37240 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391360 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,169805 ,1,5,614705 ,1,6,169795 ,1,7,616170 ,1,8,45 ,2,14956,215350 ,2,822,37250 ,2,14975,569205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386630 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,290155 ,1,5,614705 ,1,6,45 ,2,14956,6245 ,2,822,37260 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414300 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,185785 ,1,7,613640 ,1,8,45 ,2,14956,13210 ,2,822,37260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396240 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,199455 ,1,5,613640 ,1,6,45 ,2,14956,173980 ,2,822,37260 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386810 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,242505 ,1,5,614705 ,1,6,45 ,2,14956,267375 ,2,822,37260 ,2,14975,581035 ,2,14976,23130 ,2,14977,96875 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,242495 ,1,5,614705 ,1,6,45 ,2,14956,175910 ,2,822,37260 ,2,14975,567680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260635 ,2,14979,413690 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,228260 ,1,5,613640 ,1,6,45 ,2,14956,216690 ,2,822,37270 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396800 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,218370 ,1,5,613640 ,1,6,209800 ,1,7,614045 ,1,8,211340 ,1,9,614705 ,1,10,222235 ,1,11,616170 ,1,12,45 ,2,14956,215640 ,2,822,37270 ,2,14975,581055 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373690 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,246850 ,1,5,613640 ,1,6,45 ,2,14956,267395 ,2,822,37270 ,2,14975,581040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,618550 ,1,2,618550 ,1,3,618550 ,1,4,45 ,2,14956,216035 ,2,822,37280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413550 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,198270 ,1,5,613640 ,1,6,45 ,2,14956,184135 ,2,822,37280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412190 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,223505 ,1,5,613640 ,1,6,45 ,2,14956,215455 ,2,822,37280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411720 ,2,829,554870 ,2,14956,223625 ,2,822,37280 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365990 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,186035 ,1,5,614705 ,1,6,186180 ,1,7,616170 ,1,8,45 ,2,14956,217195 ,2,822,37280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411355 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,182890 ,1,5,614705 ,1,6,45 ,2,14956,215640 ,2,822,37280 ,2,14975,609525 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373765 ,2,829,557755 ,1,0,324135 ,1,1,324115 ,1,2,324105 ,1,3,324095 ,1,4,324085 ,1,5,324055 ,1,6,324045 ,2,14956,215955 ,2,822,37300 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386300 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,234595 ,1,5,613640 ,1,6,215195 ,1,7,616170 ,1,8,234605 ,1,9,614705 ,1,10,45 ,2,14956,211080 ,2,822,37300 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375055 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614045 ,1,4,225470 ,1,5,614045 ,1,6,225460 ,1,7,613975 ,1,8,45 ,2,14956,215575 ,2,822,37300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386100 ,2,829,45 ,1,0,613640 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,227515 ,1,5,616170 ,1,6,45 ,2,14956,216260 ,2,822,37300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394330 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,212660 ,1,5,614705 ,1,6,212710 ,1,7,613640 ,1,8,45 ,2,14956,215595 ,2,822,37300 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386755 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,242410 ,1,5,616170 ,1,6,242505 ,1,7,614705 ,1,8,242470 ,1,9,614045 ,1,10,45 ,2,14956,166610 ,2,822,37330 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,96980 ,2,14979,341730 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,223165 ,1,5,613640 ,1,6,223155 ,1,7,614705 ,1,8,45 ,2,14956,10080 ,2,822,37330 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,163095 ,2,14979,385060 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,223155 ,1,5,613640 ,1,6,45 ,2,14956,10080 ,2,822,37330 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,235510 ,2,14979,341740 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,232600 ,1,5,614705 ,1,6,45 ,2,14956,166985 ,2,822,37330 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,163095 ,2,14979,383650 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,186340 ,1,5,614705 ,1,6,186180 ,1,7,616170 ,1,8,45 ,2,14956,267475 ,2,822,37330 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,163130 ,2,14979,2415 ,2,829,555010 ,1,0,371010 ,1,1,370970 ,2,14956,267445 ,2,822,37330 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,235560 ,2,14979,341750 ,2,829,45 ,1,0,615295 ,1,1,618545 ,1,2,618545 ,1,3,614705 ,1,4,182760 ,1,5,623955 ,1,6,182835 ,1,7,613975 ,1,8,182825 ,1,9,614020 ,1,10,182780 ,1,11,614045 ,1,12,182790 ,1,13,616170 ,1,14,182815 ,1,15,614025 ,1,16,182745 ,1,17,626560 ,1,18,182870 ,1,19,621000 ,1,20,182770 ,1,21,614390 ,1,22,182880 ,1,23,614705 ,1,24,182805 ,1,25,618550 ,1,26,45 ,2,14956,171330 ,2,822,37330 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410805 ,2,829,45 ,1,0,615295 ,1,1,614025 ,1,2,614025 ,1,3,614705 ,1,4,182760 ,1,5,613975 ,1,6,182745 ,1,7,614020 ,1,8,182870 ,1,9,616170 ,1,10,182880 ,1,11,614705 ,1,12,182805 ,1,13,614045 ,1,14,45 ,2,14956,267485 ,2,822,37330 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,163180 ,2,14979,341815 ,2,829,45 ,1,0,615295 ,1,1,614390 ,1,2,614390 ,1,3,613640 ,1,4,182760 ,1,5,614020 ,1,6,182745 ,1,7,614025 ,1,8,182870 ,1,9,614045 ,1,10,182770 ,1,11,618550 ,1,12,182880 ,1,13,613640 ,1,14,182890 ,1,15,614705 ,1,16,182805 ,1,17,613975 ,1,18,221020 ,1,19,616170 ,1,20,45 ,2,14956,267485 ,2,822,37330 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,235570 ,2,14979,341825 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,212700 ,1,5,614705 ,1,6,212710 ,1,7,613640 ,1,8,45 ,2,14956,267495 ,2,822,37330 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341835 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,616170 ,1,4,185400 ,1,5,616170 ,1,6,185390 ,1,7,614045 ,1,8,45 ,2,14956,267445 ,2,822,37330 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,163130 ,2,14979,341760 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,211820 ,1,5,613640 ,1,6,45 ,2,14956,215595 ,2,822,37340 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341845 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,182890 ,1,5,616170 ,1,6,45 ,2,14956,267515 ,2,822,37340 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341865 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,613975 ,1,4,186180 ,1,5,613975 ,1,6,45 ,2,14956,267525 ,2,822,37340 ,2,14975,581070 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614045 ,1,4,186180 ,1,5,614045 ,1,6,45 ,2,14956,215585 ,2,822,37350 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386995 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,200095 ,1,5,613640 ,1,6,45 ,2,14956,182390 ,2,822,37350 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385185 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614025 ,1,3,613975 ,1,4,199445 ,1,5,613975 ,1,6,45 ,2,14956,267545 ,2,822,37350 ,2,14975,581100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,212300 ,1,5,613640 ,1,6,212280 ,1,7,614705 ,1,8,45 ,2,14956,215350 ,2,822,37360 ,2,14975,581110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386565 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,212270 ,1,5,614705 ,1,6,212290 ,1,7,613640 ,1,8,45 ,2,14956,264175 ,2,822,37370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411580 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,179640 ,1,5,614705 ,1,6,182890 ,1,7,616170 ,1,8,45 ,2,14956,217015 ,2,822,37370 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,412110 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,194945 ,1,5,616170 ,1,6,194960 ,1,7,614705 ,1,8,45 ,2,14956,267595 ,2,822,37370 ,2,14975,581115 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,215505 ,1,5,616170 ,1,6,45 ,2,14956,215350 ,2,822,37380 ,2,14975,581125 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386580 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,209800 ,1,5,616170 ,1,6,185785 ,1,7,613640 ,1,8,222235 ,1,9,614705 ,1,10,45 ,2,14956,216690 ,2,822,37390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396830 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,234715 ,1,5,614705 ,1,6,45 ,2,14956,215795 ,2,822,37390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,235705 ,1,5,613640 ,1,6,45 ,2,14956,267625 ,2,822,37390 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,185775 ,1,5,614705 ,1,6,182815 ,1,7,613640 ,1,8,45 ,2,14956,267635 ,2,822,37390 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341895 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,209800 ,1,5,614045 ,1,6,185775 ,1,7,616170 ,1,8,182815 ,1,9,613640 ,1,10,184220 ,1,11,614705 ,1,12,45 ,2,14956,267645 ,2,822,37390 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,341920 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,222235 ,1,7,613640 ,1,8,45 ,2,14956,216135 ,2,822,37390 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385780 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,302395 ,1,5,614705 ,1,6,45 ,2,14956,2855 ,2,822,37400 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391355 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,295185 ,1,5,614705 ,1,6,45 ,2,14956,2855 ,2,822,37455 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392315 ,2,829,557755 ,1,0,326170 ,1,1,326160 ,2,14956,216200 ,2,822,37465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,557755 ,1,0,326245 ,1,1,326200 ,1,2,326190 ,1,3,326180 ,2,14956,216120 ,2,822,37465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,557755 ,1,0,326285 ,1,1,326275 ,1,2,326265 ,1,3,326255 ,2,14956,215350 ,2,822,37475 ,2,14975,580135 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386590 ,2,829,557755 ,1,0,6540 ,1,1,7745 ,1,2,6880 ,1,3,8190 ,1,4,6880 ,1,5,7400 ,1,6,6540 ,2,14956,213590 ,2,822,37475 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260645 ,2,14979,413395 ,2,829,557755 ,1,0,326360 ,1,1,326350 ,1,2,326340 ,1,3,326330 ,1,4,326315 ,1,5,326305 ,1,6,326295 ,2,14956,215685 ,2,822,37485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388315 ,2,829,557755 ,1,0,324045 ,1,1,324135 ,1,2,324115 ,1,3,324105 ,1,4,324095 ,1,5,324085 ,1,6,324055 ,2,14956,215695 ,2,822,37485 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,415965 ,2,829,557755 ,1,0,326520 ,1,1,326510 ,1,2,326500 ,1,3,326490 ,1,4,326475 ,1,5,326465 ,1,6,326455 ,1,7,326445 ,1,8,326405 ,1,9,326395 ,1,10,326385 ,1,11,326375 ,2,14956,215715 ,2,822,37485 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386520 ,2,829,557755 ,1,0,326655 ,1,1,326645 ,1,2,326635 ,1,3,326610 ,1,4,326475 ,1,5,326600 ,1,6,326590 ,1,7,326580 ,1,8,326570 ,1,9,326560 ,1,10,326550 ,1,11,326540 ,2,14956,215585 ,2,822,37485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386950 ,2,829,557755 ,1,0,6440 ,1,1,7400 ,1,2,7745 ,1,3,8030 ,1,4,7745 ,1,5,6440 ,1,6,6440 ,1,7,8030 ,1,8,6540 ,1,9,2735 ,1,10,8960 ,1,11,6385 ,2,14956,215595 ,2,822,37485 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386720 ,2,829,557755 ,1,0,326680 ,1,1,326665 ,2,14956,215955 ,2,822,37485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386275 ,2,829,557755 ,1,0,326700 ,1,1,326690 ,2,14956,211080 ,2,822,37485 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375025 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,299810 ,1,5,613640 ,1,6,45 ,2,14956,215640 ,2,822,37485 ,2,14975,569680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373600 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,171505 ,1,5,613640 ,1,6,171495 ,1,7,614705 ,1,8,171450 ,1,9,616170 ,1,10,45 ,2,14956,267735 ,2,822,37485 ,2,14975,581170 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,229955 ,1,5,614705 ,1,6,45 ,2,14956,215350 ,2,822,37495 ,2,14975,581180 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386645 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,613640 ,1,4,230035 ,1,5,614705 ,1,6,230015 ,1,7,614045 ,1,8,208595 ,1,9,613975 ,1,10,230025 ,1,11,616170 ,1,12,230060 ,1,13,613640 ,1,14,45 ,2,14956,267800 ,2,822,24520 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308480 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,227760 ,1,5,613640 ,1,6,45 ,2,14956,267820 ,2,822,20790 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,163660 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,227760 ,1,5,613640 ,1,6,227795 ,1,7,614705 ,1,8,45 ,2,14956,267810 ,2,822,51245 ,2,14975,110 ,2,14976,97580 ,2,14977,23120 ,2,14965,45 ,2,14978,235580 ,2,14979,341985 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,10825 ,1,5,614705 ,1,6,227760 ,1,7,613640 ,1,8,227750 ,1,9,616170 ,1,10,45 ,2,14956,267810 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,163660 ,2,14979,341995 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,179640 ,1,5,614705 ,1,6,11510 ,1,7,616170 ,1,8,45 ,2,14956,267830 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,341975 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,179760 ,1,7,613640 ,1,8,45 ,2,14956,267840 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308430 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,211340 ,1,7,613640 ,1,8,45 ,2,14956,267885 ,2,822,51465 ,2,14975,581195 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,308390 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,210905 ,1,5,614705 ,1,6,45 ,2,14956,267905 ,2,822,21455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,163750 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614705 ,1,4,210905 ,1,5,613975 ,1,6,269085 ,1,7,614705 ,1,8,269050 ,1,9,616170 ,1,10,11510 ,1,11,614045 ,1,12,45 ,2,14956,267895 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235620 ,2,14979,342025 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,212270 ,1,5,614045 ,1,6,212300 ,1,7,613640 ,1,8,212280 ,1,9,616170 ,1,10,212290 ,1,11,614705 ,1,12,45 ,2,14956,267865 ,2,822,51465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,104660 ,2,14979,308420 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,222235 ,1,5,613640 ,1,6,45 ,2,14956,267915 ,2,822,51465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342045 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,241100 ,1,5,613640 ,1,6,45 ,2,14956,267925 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342060 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,241100 ,1,5,614045 ,1,6,241130 ,1,7,613640 ,1,8,241110 ,1,9,616170 ,1,10,241120 ,1,11,614705 ,1,12,45 ,2,14956,212165 ,2,822,51465 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,95675 ,2,14979,303185 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,11510 ,1,5,616170 ,1,6,45 ,2,14956,267895 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,163750 ,2,14979,342035 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,198280 ,1,5,616170 ,1,6,210905 ,1,7,614705 ,1,8,45 ,2,14956,267935 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,163835 ,2,14979,342070 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,212270 ,1,5,613640 ,1,6,45 ,2,14956,267935 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235630 ,2,14979,342080 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,226975 ,1,5,613640 ,1,6,228970 ,1,7,616170 ,1,8,226800 ,1,9,614705 ,1,10,45 ,2,14956,267980 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342090 ,2,829,45 ,1,0,615295 ,1,1,618550 ,1,2,618550 ,1,3,614045 ,1,4,250670 ,1,5,614025 ,1,6,250725 ,1,7,614045 ,1,8,250680 ,1,9,614020 ,1,10,250715 ,1,11,613975 ,1,12,45 ,2,14956,267970 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342110 ,2,829,45 ,1,0,615295 ,1,1,614390 ,1,2,614390 ,1,3,614045 ,1,4,250660 ,1,5,618550 ,1,6,250670 ,1,7,614025 ,1,8,250725 ,1,9,614045 ,1,10,250680 ,1,11,614020 ,1,12,250715 ,1,13,613975 ,1,14,45 ,2,14956,267990 ,2,822,21455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,163835 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,179760 ,1,5,613640 ,1,6,203595 ,1,7,614705 ,1,8,203580 ,1,9,616170 ,1,10,45 ,2,14956,267840 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,341950 ,2,829,45 ,1,0,615295 ,1,1,615300 ,1,2,615300 ,1,3,614705 ,1,4,185680 ,1,5,614710 ,1,6,185775 ,1,7,614705 ,1,8,185765 ,1,9,616170 ,1,10,185755 ,1,11,614045 ,1,12,185740 ,1,13,613975 ,1,14,182835 ,1,15,614390 ,1,16,185720 ,1,17,621000 ,1,18,185645 ,1,19,617155 ,1,20,182825 ,1,21,623955 ,1,22,182780 ,1,23,614025 ,1,24,182790 ,1,25,614020 ,1,26,185670 ,1,27,618130 ,1,28,182815 ,1,29,616545 ,1,30,185710 ,1,31,626560 ,1,32,182745 ,1,33,616230 ,1,34,185660 ,1,35,622995 ,1,36,185730 ,1,37,618550 ,1,38,185690 ,1,39,618545 ,1,40,45 ,2,14956,268000 ,2,822,51465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342120 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,221505 ,1,5,616170 ,1,6,221020 ,1,7,614705 ,1,8,45 ,2,14956,268165 ,2,822,21455 ,2,14975,565735 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342130 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,221020 ,1,5,613640 ,1,6,45 ,2,14956,268010 ,2,822,20800 ,2,14975,564910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342150 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,212700 ,1,5,613640 ,1,6,45 ,2,14956,10080 ,2,822,37505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,163980 ,2,14979,382380 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,206975 ,1,5,616170 ,1,6,186035 ,1,7,613640 ,1,8,212880 ,1,9,614705 ,1,10,45 ,2,14956,10080 ,2,822,37505 ,2,14975,110 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,235640 ,2,14979,342170 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,182815 ,1,5,613640 ,1,6,45 ,2,14956,166985 ,2,822,37505 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,163980 ,2,14979,381905 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,184220 ,1,5,613640 ,1,6,45 ,2,14956,268080 ,2,822,37505 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342180 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,211330 ,1,5,614705 ,1,6,45 ,2,14956,268090 ,2,822,37505 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,342225 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,206975 ,1,5,616170 ,1,6,212880 ,1,7,614705 ,1,8,183310 ,1,9,613640 ,1,10,45 ,2,14956,268100 ,2,822,37505 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,342235 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,183165 ,1,5,614705 ,1,6,45 ,2,14956,268110 ,2,822,37505 ,2,14975,610555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342245 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614045 ,1,4,209910 ,1,5,614045 ,1,6,45 ,2,14956,268120 ,2,822,37505 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342255 ,2,829,45 ,1,0,615295 ,1,1,614635 ,1,2,614635 ,1,3,614635 ,1,4,45 ,2,14956,2855 ,2,822,37505 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390860 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,215195 ,1,5,616170 ,1,6,210905 ,1,7,614705 ,1,8,45 ,2,14956,175775 ,2,822,37505 ,2,14975,610555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342265 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,203365 ,1,5,616170 ,1,6,203375 ,1,7,614705 ,1,8,45 ,2,14956,10665 ,2,822,37505 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383140 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,217770 ,1,5,614705 ,1,6,45 ,2,14956,166515 ,2,822,37505 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377755 ,2,829,45 ,1,0,613640 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,200390 ,1,5,614705 ,1,6,45 ,2,14956,166680 ,2,822,37505 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412005 ,2,829,45 ,1,0,613640 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,234135 ,1,5,616170 ,1,6,200390 ,1,7,614705 ,1,8,45 ,2,14956,166485 ,2,822,37505 ,2,14975,610555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374825 ,2,829,555445 ,2,14956,268130 ,2,822,37505 ,2,14975,581225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,209400 ,1,5,613640 ,1,6,45 ,2,14956,268150 ,2,822,20790 ,2,14975,564900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342140 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,242505 ,1,5,614705 ,1,6,242255 ,1,7,616170 ,1,8,179640 ,1,9,614045 ,1,10,45 ,2,14956,268185 ,2,822,21455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164185 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,615295 ,1,2,615295 ,1,3,615295 ,1,4,45 ,2,14956,268175 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235650 ,2,14979,342275 ,2,829,45 ,1,0,614705 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,171605 ,1,5,613640 ,1,6,45 ,2,14956,206730 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342320 ,2,829,45 ,1,0,614045 ,1,1,613640 ,1,2,613640 ,1,3,613640 ,1,4,45 ,2,14956,268195 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,215195 ,1,5,614045 ,1,6,210905 ,1,7,614705 ,1,8,269095 ,1,9,616170 ,1,10,45 ,2,14956,268210 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164250 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,234095 ,1,5,613640 ,1,6,45 ,2,14956,206965 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235680 ,2,14979,342340 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,200095 ,1,5,614705 ,1,6,45 ,2,14956,206965 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164250 ,2,14979,342350 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,200160 ,1,5,613640 ,1,6,45 ,2,14956,268230 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164280 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,197850 ,1,5,616170 ,1,6,45 ,2,14956,268220 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235690 ,2,14979,342360 ,2,829,554715 ,1,0,164310 ,1,1,164300 ,2,14956,268220 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164280 ,2,14979,342370 ,2,829,557785 ,1,0,615295 ,1,1,621235 ,1,2,647475 ,1,3,647595 ,1,4,647080 ,1,5,650475 ,1,6,647660 ,1,7,651425 ,1,8,653215 ,1,9,651760 ,1,10,650110 ,1,11,650135 ,2,14956,268240 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164315 ,2,14979,2415 ,2,829,557785 ,1,0,615295 ,1,1,621235 ,1,2,647480 ,1,3,647915 ,1,4,647045 ,1,5,650735 ,1,6,650405 ,1,7,652645 ,1,8,650465 ,1,9,653540 ,1,10,650120 ,1,11,646800 ,2,14956,215065 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235700 ,2,14979,342380 ,2,829,555735 ,1,0,359020 ,1,1,359010 ,1,2,359040 ,1,3,359030 ,2,14956,215065 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164315 ,2,14979,342390 ,2,829,45 ,1,0,615295 ,1,1,616545 ,1,2,616545 ,1,3,613640 ,1,4,244875 ,1,5,614390 ,1,6,244865 ,1,7,621000 ,1,8,242410 ,1,9,626560 ,1,10,244855 ,1,11,623955 ,1,12,244970 ,1,13,613640 ,1,14,244960 ,1,15,614705 ,1,16,244950 ,1,17,616170 ,1,18,244930 ,1,19,614045 ,1,20,244920 ,1,21,613975 ,1,22,244910 ,1,23,614020 ,1,24,244840 ,1,25,618545 ,1,26,244900 ,1,27,614025 ,1,28,244885 ,1,29,618550 ,1,30,45 ,2,14956,268270 ,2,822,20790 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164370 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,245425 ,1,5,614705 ,1,6,245465 ,1,7,613640 ,1,8,222420 ,1,9,616170 ,1,10,45 ,2,14956,268260 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235710 ,2,14979,342425 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,185785 ,1,5,613640 ,1,6,185710 ,1,7,614705 ,1,8,45 ,2,14956,268260 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164370 ,2,14979,342435 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,176730 ,1,5,613640 ,1,6,45 ,2,14956,268220 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,170230 ,1,5,616170 ,1,6,45 ,2,14956,268175 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164185 ,2,14979,342285 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,613640 ,1,4,179760 ,1,5,613640 ,1,6,203595 ,1,7,614705 ,1,8,203570 ,1,9,614045 ,1,10,203560 ,1,11,613975 ,1,12,203580 ,1,13,616170 ,1,14,45 ,2,14956,268280 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342330 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,613640 ,1,4,179760 ,1,5,616170 ,1,6,203595 ,1,7,613640 ,1,8,203570 ,1,9,613975 ,1,10,203560 ,1,11,614045 ,1,12,203580 ,1,13,614705 ,1,14,45 ,2,14956,268290 ,2,822,51465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342295 ,2,829,549095 ,2,14956,268365 ,2,822,21445 ,2,14975,577485 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,164470 ,2,14979,342445 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,234510 ,1,5,613640 ,1,6,238185 ,1,7,614705 ,1,8,45 ,2,14956,268365 ,2,822,21445 ,2,14975,577485 ,2,14976,86310 ,2,14977,23120 ,2,14965,45 ,2,14978,235725 ,2,14979,342475 ,2,829,45 ,1,0,615295 ,1,1,620270 ,1,2,620270 ,1,3,613640 ,1,4,185680 ,1,5,616545 ,1,6,221200 ,1,7,614705 ,1,8,185785 ,1,9,613640 ,1,10,215195 ,1,11,620685 ,1,12,185775 ,1,13,614710 ,1,14,185765 ,1,15,622995 ,1,16,185755 ,1,17,617155 ,1,18,185740 ,1,19,615300 ,1,20,182835 ,1,21,616170 ,1,22,185720 ,1,23,614045 ,1,24,185645 ,1,25,618130 ,1,26,182825 ,1,27,613975 ,1,28,182780 ,1,29,614025 ,1,30,182790 ,1,31,614020 ,1,32,185670 ,1,33,618545 ,1,34,182815 ,1,35,623955 ,1,36,185710 ,1,37,618550 ,1,38,182745 ,1,39,626560 ,1,40,185660 ,1,41,616230 ,1,42,185730 ,1,43,621000 ,1,44,185690 ,1,45,614390 ,1,46,45 ,2,14956,268375 ,2,822,21445 ,2,14975,565725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342485 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,179640 ,1,5,616170 ,1,6,182890 ,1,7,614705 ,1,8,45 ,2,14956,268385 ,2,822,21445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342495 ,2,829,45 ,1,0,615295 ,1,1,626560 ,1,2,626560 ,1,3,614045 ,1,4,182745 ,1,5,613975 ,1,6,182870 ,1,7,618550 ,1,8,221855 ,1,9,614020 ,1,10,182770 ,1,11,614390 ,1,12,182880 ,1,13,614045 ,1,14,182805 ,1,15,623955 ,1,16,221020 ,1,17,614025 ,1,18,221835 ,1,19,621000 ,1,20,45 ,2,14956,268410 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164520 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,616170 ,1,4,227620 ,1,5,614045 ,1,6,227630 ,1,7,616170 ,1,8,45 ,2,14956,268400 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235735 ,2,14979,342535 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,227620 ,1,5,614705 ,1,6,45 ,2,14956,268420 ,2,822,21445 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342465 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,198260 ,1,5,616170 ,1,6,45 ,2,14956,268430 ,2,822,21445 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342455 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,213155 ,1,5,614705 ,1,6,45 ,2,14956,203425 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342555 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,237320 ,1,5,613640 ,1,6,45 ,2,14956,268520 ,2,822,21445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342565 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,238365 ,1,5,613640 ,1,6,45 ,2,14956,268510 ,2,822,37585 ,2,14975,581305 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,342575 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,216580 ,1,5,613640 ,1,6,216570 ,1,7,614705 ,1,8,45 ,2,14956,215685 ,2,822,37570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388320 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,266765 ,1,5,614705 ,1,6,45 ,2,14956,215695 ,2,822,37570 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,415970 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,215900 ,1,5,614705 ,1,6,45 ,2,14956,215715 ,2,822,37570 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386535 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,179750 ,1,5,613640 ,1,6,45 ,2,14956,215630 ,2,822,37570 ,2,14975,581320 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395595 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,179750 ,1,5,614705 ,1,6,45 ,2,14956,268455 ,2,822,37570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342595 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,179640 ,1,5,614705 ,1,6,45 ,2,14956,215575 ,2,822,37570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386060 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,182815 ,1,5,614705 ,1,6,184220 ,1,7,613640 ,1,8,45 ,2,14956,215585 ,2,822,37570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386955 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,302765 ,1,5,614045 ,1,6,302810 ,1,7,616170 ,1,8,302800 ,1,9,614705 ,1,10,302790 ,1,11,613640 ,1,12,45 ,2,14956,215595 ,2,822,37570 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386745 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,166955 ,1,5,614705 ,1,6,45 ,2,14956,215955 ,2,822,37570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386290 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,302915 ,1,5,614705 ,1,6,45 ,2,14956,211080 ,2,822,37570 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375035 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,302745 ,1,5,613640 ,1,6,302735 ,1,7,614705 ,1,8,45 ,2,14956,215640 ,2,822,37570 ,2,14975,581335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373635 ,2,829,556100 ,1,0,370535 ,1,1,370545 ,1,2,370555 ,2,14956,268465 ,2,822,37570 ,2,14975,581310 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,301565 ,1,5,613640 ,1,6,45 ,2,14956,173980 ,2,822,37585 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386785 ,2,829,547255 ,2,14956,217015 ,2,822,37585 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,412105 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,167555 ,1,5,613640 ,1,6,45 ,2,14956,215285 ,2,822,37585 ,2,14975,581345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379255 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,221040 ,1,5,614705 ,1,6,45 ,2,14956,215350 ,2,822,37585 ,2,14975,581305 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386650 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,233905 ,1,5,614045 ,1,6,233915 ,1,7,613640 ,1,8,233895 ,1,9,614705 ,1,10,233885 ,1,11,616170 ,1,12,45 ,2,14956,268485 ,2,822,37585 ,2,14975,581340 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,237840 ,1,5,614705 ,1,6,45 ,2,14956,213590 ,2,822,37585 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260685 ,2,14979,413400 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,226800 ,1,7,613640 ,1,8,45 ,2,14956,268530 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164470 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,209800 ,1,5,614705 ,1,6,185775 ,1,7,613640 ,1,8,45 ,2,14956,206845 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164855 ,2,14979,342675 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,209800 ,1,5,613640 ,1,6,45 ,2,14956,206845 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235745 ,2,14979,342685 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,243195 ,1,5,614705 ,1,6,45 ,2,14956,268555 ,2,822,21445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342695 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,234335 ,1,5,613640 ,1,6,45 ,2,14956,268565 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164855 ,2,14979,2415 ,2,829,556245 ,1,0,359465 ,1,1,359445 ,1,2,359505 ,1,3,359435 ,1,4,359455 ,1,5,359475 ,2,14956,206730 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342735 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,185785 ,1,5,613640 ,1,6,45 ,2,14956,268575 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164925 ,2,14979,342705 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,222470 ,1,5,613640 ,1,6,45 ,2,14956,268575 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235755 ,2,14979,342715 ,2,829,557380 ,1,0,370700 ,2,14956,268585 ,2,822,21445 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,164925 ,2,14979,2415 ,2,829,554955 ,2,14956,268400 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,164520 ,2,14979,342545 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,245625 ,1,5,616170 ,1,6,245260 ,1,7,614705 ,1,8,245540 ,1,9,613640 ,1,10,45 ,2,14956,188665 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,300205 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,222410 ,1,5,613640 ,1,6,45 ,2,14956,268620 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300195 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,616170 ,1,4,186015 ,1,5,616170 ,1,6,186005 ,1,7,614045 ,1,8,45 ,2,14956,268630 ,2,822,51245 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300185 ,2,829,45 ,1,0,614705 ,1,1,614020 ,1,2,614020 ,1,3,614020 ,1,4,45 ,2,14956,268630 ,2,822,21445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,300175 ,2,829,45 ,1,0,616170 ,1,1,614025 ,1,2,614025 ,1,3,614025 ,1,4,45 ,2,14956,202955 ,2,822,51300 ,2,14975,565700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,88945 ,2,14979,299040 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,194960 ,1,5,616170 ,1,6,170230 ,1,7,614705 ,1,8,45 ,2,14956,268680 ,2,822,51300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301735 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,613640 ,1,4,198280 ,1,5,614045 ,1,6,210915 ,1,7,613640 ,1,8,210905 ,1,9,616170 ,1,10,183245 ,1,11,614705 ,1,12,45 ,2,14956,203345 ,2,822,51300 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,342725 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,234530 ,1,5,613640 ,1,6,45 ,2,14956,206730 ,2,822,51300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,301010 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,166945 ,1,5,614705 ,1,6,45 ,2,14956,268690 ,2,822,20890 ,2,14975,564960 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,216455 ,1,5,613640 ,1,6,45 ,2,14956,200500 ,2,822,51465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298670 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,310980 ,1,5,614705 ,1,6,45 ,2,14956,200500 ,2,822,21445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,298660 ,2,829,557755 ,1,0,205195 ,1,1,333425 ,1,2,333415 ,1,3,333870 ,1,4,333860 ,2,14956,211300 ,2,822,20800 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165120 ,2,14979,376475 ,2,829,557785 ,1,0,613280 ,1,1,613280 ,1,2,613280 ,1,3,614645 ,1,4,613280 ,1,5,646855 ,1,6,613280 ,1,7,614600 ,1,8,613280 ,1,9,642630 ,1,10,613280 ,1,11,614635 ,1,12,613280 ,1,13,628415 ,1,14,613280 ,1,15,614195 ,1,16,613280 ,1,17,627185 ,1,18,613280 ,1,19,647525 ,1,20,614645 ,1,21,613280 ,1,22,614645 ,1,23,614645 ,1,24,614645 ,1,25,646855 ,1,26,614645 ,1,27,614600 ,1,28,614645 ,1,29,642630 ,1,30,614645 ,1,31,614635 ,1,32,614645 ,1,33,628415 ,1,34,614645 ,1,35,614195 ,1,36,614645 ,1,37,627185 ,1,38,614645 ,1,39,647525 ,1,40,646855 ,1,41,613280 ,1,42,646855 ,1,43,614645 ,1,44,646855 ,1,45,646855 ,1,46,646855 ,1,47,614600 ,1,48,646855 ,1,49,642630 ,1,50,646855 ,1,51,614635 ,1,52,646855 ,1,53,628415 ,1,54,646855 ,1,55,614195 ,1,56,646855 ,1,57,627185 ,1,58,646855 ,1,59,647525 ,1,60,614600 ,1,61,613280 ,1,62,614600 ,1,63,614645 ,1,64,614600 ,1,65,646855 ,1,66,614600 ,1,67,614600 ,1,68,614600 ,1,69,642630 ,1,70,614600 ,1,71,614635 ,1,72,614600 ,1,73,628415 ,1,74,614600 ,1,75,614195 ,1,76,614600 ,1,77,627185 ,1,78,614600 ,1,79,647525 ,1,80,642630 ,1,81,613280 ,1,82,642630 ,1,83,614645 ,1,84,642630 ,1,85,646855 ,1,86,642630 ,1,87,614600 ,1,88,642630 ,1,89,642630 ,1,90,642630 ,1,91,614635 ,1,92,642630 ,1,93,628415 ,1,94,642630 ,1,95,614195 ,1,96,642630 ,1,97,627185 ,1,98,642630 ,1,99,647525 ,1,100,614635 ,1,101,613280 ,1,102,614635 ,1,103,614645 ,1,104,614635 ,1,105,646855 ,1,106,614635 ,1,107,614600 ,1,108,614635 ,1,109,642630 ,1,110,614635 ,1,111,614635 ,1,112,614635 ,1,113,628415 ,1,114,614635 ,1,115,614195 ,1,116,614635 ,1,117,627185 ,1,118,614635 ,1,119,647525 ,1,120,628415 ,1,121,613280 ,1,122,628415 ,1,123,614645 ,1,124,628415 ,1,125,646855 ,1,126,628415 ,1,127,614600 ,1,128,628415 ,1,129,642630 ,1,130,628415 ,1,131,614635 ,1,132,628415 ,1,133,628415 ,1,134,628415 ,1,135,614195 ,1,136,628415 ,1,137,627185 ,1,138,628415 ,1,139,647525 ,1,140,614195 ,1,141,613280 ,1,142,614195 ,1,143,614645 ,1,144,614195 ,1,145,646855 ,1,146,614195 ,1,147,614600 ,1,148,614195 ,1,149,642630 ,1,150,614195 ,1,151,614635 ,1,152,614195 ,1,153,628415 ,1,154,614195 ,1,155,614195 ,1,156,614195 ,1,157,627185 ,1,158,614195 ,1,159,647525 ,1,160,627185 ,1,161,613280 ,1,162,627185 ,1,163,614645 ,1,164,627185 ,1,165,646855 ,1,166,627185 ,1,167,614600 ,1,168,627185 ,1,169,642630 ,1,170,627185 ,1,171,614635 ,1,172,627185 ,1,173,628415 ,1,174,627185 ,1,175,614195 ,1,176,627185 ,1,177,627185 ,1,178,627185 ,1,179,647525 ,1,180,647525 ,1,181,613280 ,1,182,647525 ,1,183,614645 ,1,184,647525 ,1,185,646855 ,1,186,647525 ,1,187,614600 ,1,188,647525 ,1,189,642630 ,1,190,647525 ,1,191,614635 ,1,192,647525 ,1,193,628415 ,1,194,647525 ,1,195,614195 ,1,196,647525 ,1,197,627185 ,1,198,647525 ,1,199,647525 ,2,14956,211035 ,2,822,51445 ,2,14975,110 ,2,14976,98045 ,2,14977,23360 ,2,14965,45 ,2,14978,235795 ,2,14979,342750 ,2,829,557755 ,1,0,336970 ,1,1,336960 ,1,2,336950 ,1,3,336940 ,1,4,336930 ,1,5,336920 ,1,6,336895 ,1,7,336885 ,1,8,336875 ,1,9,336865 ,1,10,336850 ,1,11,336840 ,1,12,336830 ,1,13,336820 ,1,14,336770 ,1,15,336760 ,1,16,336750 ,1,17,336740 ,1,18,336715 ,1,19,336705 ,1,20,336695 ,1,21,336685 ,1,22,336660 ,1,23,336650 ,1,24,336640 ,1,25,336630 ,1,26,336615 ,1,27,336605 ,1,28,336595 ,1,29,336585 ,1,30,336520 ,1,31,336510 ,1,32,336500 ,1,33,336490 ,1,34,336475 ,1,35,336465 ,1,36,336455 ,1,37,336445 ,1,38,336405 ,1,39,336395 ,1,40,336385 ,1,41,336375 ,1,42,336355 ,1,43,336345 ,1,44,336335 ,1,45,336325 ,1,46,336305 ,1,47,336295 ,1,48,336285 ,1,49,336275 ,1,50,336265 ,1,51,336255 ,1,52,336245 ,1,53,336235 ,1,54,336205 ,1,55,336195 ,1,56,336185 ,1,57,336175 ,1,58,336160 ,1,59,336150 ,1,60,336140 ,1,61,336130 ,1,62,336095 ,1,63,336085 ,1,64,336075 ,1,65,336065 ,1,66,336055 ,1,67,336045 ,1,68,336035 ,1,69,336025 ,1,70,335995 ,1,71,335985 ,1,72,335975 ,1,73,335965 ,1,74,335950 ,1,75,335940 ,1,76,335930 ,1,77,335920 ,1,78,335890 ,1,79,335880 ,1,80,335870 ,1,81,335860 ,1,82,335840 ,1,83,335830 ,1,84,335820 ,1,85,335810 ,1,86,335770 ,1,87,335760 ,1,88,335750 ,1,89,335740 ,1,90,335730 ,1,91,335720 ,1,92,335710 ,1,93,335700 ,1,94,335670 ,1,95,335660 ,1,96,335650 ,1,97,335640 ,1,98,335625 ,1,99,7300 ,1,100,12255 ,1,101,8940 ,1,102,2765 ,1,103,2725 ,1,104,9950 ,1,105,3970 ,1,106,11285 ,1,107,12665 ,1,108,5220 ,1,109,335615 ,1,110,335605 ,1,111,335595 ,1,112,335555 ,1,113,335545 ,1,114,335535 ,1,115,335525 ,1,116,335505 ,1,117,335495 ,1,118,335485 ,1,119,335475 ,1,120,335435 ,1,121,335425 ,1,122,335415 ,1,123,335405 ,1,124,345685 ,1,125,335390 ,1,126,335380 ,1,127,335370 ,1,128,335360 ,1,129,335330 ,1,130,335320 ,1,131,335310 ,1,132,335300 ,1,133,335285 ,1,134,335275 ,1,135,335265 ,1,136,335255 ,1,137,335200 ,1,138,335190 ,1,139,335180 ,1,140,335170 ,1,141,335155 ,1,142,335145 ,1,143,335135 ,1,144,335125 ,1,145,335090 ,1,146,335080 ,1,147,335070 ,1,148,335060 ,1,149,335045 ,1,150,335035 ,1,151,335025 ,1,152,335015 ,1,153,334985 ,1,154,334975 ,1,155,334965 ,1,156,334955 ,1,157,334935 ,1,158,334925 ,1,159,334915 ,1,160,334905 ,1,161,334880 ,1,162,334870 ,1,163,334860 ,1,164,334850 ,1,165,334840 ,1,166,334830 ,1,167,334820 ,1,168,334810 ,1,169,334780 ,1,170,334770 ,1,171,334760 ,1,172,334750 ,1,173,334740 ,1,174,334730 ,1,175,334720 ,1,176,334710 ,1,177,334675 ,1,178,334665 ,1,179,345060 ,1,180,334655 ,1,181,334645 ,1,182,334635 ,1,183,334625 ,1,184,334615 ,1,185,334605 ,1,186,334570 ,1,187,334560 ,1,188,334550 ,1,189,334540 ,1,190,334525 ,1,191,334515 ,1,192,334505 ,1,193,334495 ,1,194,334465 ,1,195,334455 ,1,196,334445 ,1,197,334435 ,1,198,334415 ,2,14956,207015 ,2,822,20800 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165145 ,2,14979,342760 ,2,829,45 ,1,0,614705 ,1,1,613975 ,1,2,613975 ,1,3,613975 ,1,4,45 ,2,14956,206975 ,2,822,51445 ,2,14975,110 ,2,14976,53260 ,2,14977,23360 ,2,14965,45 ,2,14978,235805 ,2,14979,342770 ,2,829,45 ,1,0,616170 ,1,1,614020 ,1,2,614020 ,1,3,614020 ,1,4,45 ,2,14956,268735 ,2,822,20800 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,94055 ,2,14979,2415 ,2,829,45 ,1,0,614705 ,1,1,614045 ,1,2,614045 ,1,3,614045 ,1,4,45 ,2,14956,268770 ,2,822,20800 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165175 ,2,14979,397320 ,2,829,556590 ,1,0,371135 ,1,1,371125 ,2,14956,268745 ,2,822,51445 ,2,14975,110 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,235815 ,2,14979,342790 ,2,829,556595 ,1,0,371055 ,1,1,371075 ,1,2,371085 ,1,3,371065 ,1,4,371045 ,2,14956,211035 ,2,822,51445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,165120 ,2,14979,372145 ,2,829,556640 ,1,0,371365 ,1,1,371355 ,2,14956,206975 ,2,822,51445 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,165145 ,2,14979,342780 ,2,829,556645 ,1,0,371280 ,1,1,371290 ,1,2,371325 ,1,3,371270 ,1,4,371335 ,1,5,371345 ,1,6,371255 ,1,7,371250 ,1,8,371240 ,2,14956,268745 ,2,822,51445 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,165175 ,2,14979,342800 ,2,829,556650 ,1,0,371030 ,1,1,371020 ,2,14956,268780 ,2,822,51445 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342810 ,2,829,556655 ,1,0,371155 ,1,1,371215 ,1,2,371165 ,1,3,371225 ,1,4,371185 ,1,5,371175 ,2,14956,268835 ,2,822,37595 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342820 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,190440 ,1,5,614705 ,1,6,45 ,2,14956,268800 ,2,822,37605 ,2,14975,581350 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,190770 ,1,5,614705 ,1,6,45 ,2,14956,268825 ,2,822,37605 ,2,14975,581235 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,342850 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614025 ,1,3,614045 ,1,4,45 ,2,14956,268880 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342870 ,2,829,557755 ,2,14956,268890 ,2,822,51245 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342880 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,304930 ,1,5,614705 ,1,6,45 ,2,14956,268900 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342890 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,616170 ,1,4,179760 ,1,5,616170 ,1,6,312220 ,1,7,614045 ,1,8,312210 ,1,9,613975 ,1,10,45 ,2,14956,268915 ,2,822,51245 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342900 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,206535 ,1,5,616170 ,1,6,45 ,2,14956,268925 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,165360 ,2,14979,342910 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,186180 ,1,5,614705 ,1,6,45 ,2,14956,268925 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,235825 ,2,14979,342920 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614020 ,1,3,616170 ,1,4,186180 ,1,5,616170 ,1,6,45 ,2,14956,268935 ,2,822,20790 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165360 ,2,14979,2415 ,2,829,547475 ,2,14956,268975 ,2,822,51245 ,2,14975,581380 ,2,14976,24120 ,2,14977,98250 ,2,14965,550970 ,2,14978,45 ,2,14979,342945 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,211775 ,1,5,614705 ,1,6,211820 ,1,7,613640 ,1,8,45 ,2,14956,268780 ,2,822,51245 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,342955 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,210925 ,1,5,613640 ,1,6,45 ,2,14956,269005 ,2,822,20780 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,298300 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,209790 ,1,5,613640 ,1,6,45 ,2,14956,269030 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,165440 ,2,14979,342990 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614025 ,1,3,616170 ,1,4,254950 ,1,5,613975 ,1,6,254960 ,1,7,614045 ,1,8,254825 ,1,9,616170 ,1,10,45 ,2,14956,269030 ,2,822,20715 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,235835 ,2,14979,343000 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,173965 ,1,5,613640 ,1,6,45 ,2,14956,269105 ,2,822,20715 ,2,14975,564815 ,2,14976,35640 ,2,14977,98300 ,2,14965,45 ,2,14978,45 ,2,14979,321170 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,189355 ,1,5,613640 ,1,6,45 ,2,14956,197600 ,2,822,20715 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391395 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,174110 ,1,5,613640 ,1,6,45 ,2,14956,269115 ,2,822,20715 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,313100 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,192805 ,1,5,613640 ,1,6,45 ,2,14956,189535 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,47455 ,2,14965,45 ,2,14978,45 ,2,14979,313130 ,2,829,45 ,1,0,616170 ,1,1,614705 ,1,2,614705 ,1,3,614705 ,1,4,45 ,2,14956,269125 ,2,822,20715 ,2,14975,564890 ,2,14976,24020 ,2,14977,98310 ,2,14965,45 ,2,14978,45 ,2,14979,321100 ,2,829,45 ,1,0,614705 ,1,1,614705 ,1,2,614705 ,1,3,614705 ,1,4,45 ,2,14956,269145 ,2,822,20715 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165540 ,2,14979,397405 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,194945 ,1,5,614705 ,1,6,45 ,2,14956,269135 ,2,822,20715 ,2,14975,110 ,2,14976,98320 ,2,14977,23120 ,2,14965,45 ,2,14978,235845 ,2,14979,343010 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,664800 ,1,3,664795 ,1,4,664790 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,181805 ,2,822,20715 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260695 ,2,14979,412635 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,183195 ,1,5,613640 ,1,6,45 ,2,14956,269155 ,2,822,20715 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165440 ,2,14979,397410 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,263900 ,1,5,614705 ,1,6,45 ,2,14956,199915 ,2,822,20715 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165580 ,2,14979,387540 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,202435 ,1,5,613640 ,1,6,45 ,2,14956,199905 ,2,822,20715 ,2,14975,564890 ,2,14976,57275 ,2,14977,98355 ,2,14965,45 ,2,14978,235855 ,2,14979,343070 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614705 ,1,4,194945 ,1,5,614045 ,1,6,194960 ,1,7,616170 ,1,8,170230 ,1,9,614705 ,1,10,45 ,2,14956,269175 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315595 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,200390 ,1,5,613640 ,1,6,200405 ,1,7,614705 ,1,8,45 ,2,14956,173945 ,2,822,20715 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357090 ,2,829,45 ,1,0,614705 ,1,1,613640 ,1,2,613640 ,1,3,613640 ,1,4,45 ,2,14956,269185 ,2,822,20715 ,2,14975,564890 ,2,14976,24020 ,2,14977,98310 ,2,14965,45 ,2,14978,45 ,2,14979,322825 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,200405 ,1,5,613640 ,1,6,45 ,2,14956,269195 ,2,822,20715 ,2,14975,564890 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,313090 ,2,829,45 ,1,0,614705 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,215195 ,1,5,614705 ,1,6,45 ,2,14956,269220 ,2,822,20715 ,2,14975,564890 ,2,14976,24120 ,2,14977,98365 ,2,14965,45 ,2,14978,45 ,2,14979,343080 ,2,829,45 ,1,0,614705 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,215195 ,1,5,616170 ,1,6,45 ,2,14956,199905 ,2,822,20715 ,2,14975,564890 ,2,14976,23130 ,2,14977,98375 ,2,14965,45 ,2,14978,165580 ,2,14979,397060 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,3825 ,1,5,613640 ,1,6,174110 ,1,7,614705 ,1,8,45 ,2,14956,269230 ,2,822,20715 ,2,14975,564815 ,2,14976,25600 ,2,14977,98385 ,2,14965,45 ,2,14978,45 ,2,14979,315565 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,174110 ,1,5,614705 ,1,6,45 ,2,14956,269240 ,2,822,20715 ,2,14975,564890 ,2,14976,23450 ,2,14977,98405 ,2,14965,45 ,2,14978,45 ,2,14979,313080 ,2,829,45 ,1,0,613640 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,208585 ,1,5,616170 ,1,6,45 ,2,14956,250315 ,2,822,20715 ,2,14975,564890 ,2,14976,24020 ,2,14977,98310 ,2,14965,45 ,2,14978,45 ,2,14979,322845 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,208005 ,1,5,616170 ,1,6,208015 ,1,7,614705 ,1,8,208025 ,1,9,613640 ,1,10,45 ,2,14956,269135 ,2,822,20715 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,165540 ,2,14979,343020 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,210560 ,1,5,613640 ,1,6,45 ,2,14956,184135 ,2,822,20715 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380295 ,2,829,45 ,1,0,615295 ,1,1,617450 ,1,2,617450 ,1,3,613640 ,1,4,187240 ,1,5,616170 ,1,6,187015 ,1,7,620805 ,1,8,187025 ,1,9,636580 ,1,10,187055 ,1,11,615220 ,1,12,187220 ,1,13,616230 ,1,14,187065 ,1,15,614025 ,1,16,186360 ,1,17,620270 ,1,18,187250 ,1,19,614705 ,1,20,186960 ,1,21,614390 ,1,22,186970 ,1,23,613640 ,1,24,187075 ,1,25,618550 ,1,26,179640 ,1,27,613975 ,1,28,187230 ,1,29,616545 ,1,30,187180 ,1,31,618545 ,1,32,183245 ,1,33,614045 ,1,34,187170 ,1,35,618130 ,1,36,187115 ,1,37,617155 ,1,38,187105 ,1,39,615300 ,1,40,187135 ,1,41,614710 ,1,42,187125 ,1,43,622995 ,1,44,182890 ,1,45,621000 ,1,46,187200 ,1,47,623955 ,1,48,187190 ,1,49,626560 ,1,50,187085 ,1,51,628550 ,1,52,183310 ,1,53,620685 ,1,54,11510 ,1,55,614020 ,1,56,45 ,2,14956,265915 ,2,822,20715 ,2,14975,564890 ,2,14976,23130 ,2,14977,98375 ,2,14965,45 ,2,14978,45 ,2,14979,321090 ,2,829,557075 ,1,0,355760 ,1,1,355830 ,1,2,355780 ,1,3,355745 ,1,4,355770 ,1,5,355735 ,1,6,355790 ,1,7,355840 ,1,8,355850 ,2,14956,269250 ,2,822,20715 ,2,14975,564890 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,315555 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,613640 ,1,4,234595 ,1,5,616170 ,1,6,215195 ,1,7,613640 ,1,8,266840 ,1,9,614045 ,1,10,216560 ,1,11,614705 ,1,12,234605 ,1,13,613975 ,1,14,45 ,2,14956,224525 ,2,822,20715 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380355 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,215195 ,1,5,613640 ,1,6,45 ,2,14956,2855 ,2,822,37615 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414990 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,204135 ,1,5,613640 ,1,6,192820 ,1,7,616170 ,1,8,167770 ,1,9,614705 ,1,10,45 ,2,14956,197265 ,2,822,19535 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,84280 ,2,14979,343185 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,615295 ,1,4,200590 ,1,5,615295 ,1,6,200580 ,1,7,613640 ,1,8,45 ,2,14956,197280 ,2,822,51065 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343745 ,2,829,45 ,1,0,613640 ,1,1,614045 ,1,2,614045 ,1,3,614705 ,1,4,200390 ,1,5,616170 ,1,6,205150 ,1,7,614705 ,1,8,45 ,2,14956,166740 ,2,822,37645 ,2,14975,581410 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375705 ,2,829,45 ,1,0,613640 ,1,1,614045 ,1,2,613975 ,1,3,614045 ,1,4,45 ,2,14956,167780 ,2,822,37655 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260705 ,2,14979,410090 ,2,829,45 ,1,0,613640 ,1,1,614045 ,1,2,614045 ,1,3,614045 ,1,4,45 ,2,14956,269415 ,2,822,52780 ,2,14975,581435 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,343405 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,203570 ,1,5,616170 ,1,6,45 ,2,14956,269455 ,2,822,52780 ,2,14975,581460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,343425 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,212880 ,1,5,614705 ,1,6,45 ,2,14956,269485 ,2,822,52780 ,2,14975,581450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,165890 ,2,14979,343505 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,200590 ,1,5,613640 ,1,6,200580 ,1,7,614705 ,1,8,45 ,2,14956,269485 ,2,822,52780 ,2,14975,581450 ,2,14976,98610 ,2,14977,23120 ,2,14965,45 ,2,14978,235865 ,2,14979,343515 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,200390 ,1,5,613640 ,1,6,45 ,2,14956,269495 ,2,822,52780 ,2,14975,581495 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,343445 ,2,829,554880 ,2,14956,269505 ,2,822,37720 ,2,14975,581510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397275 ,2,829,45 ,1,0,613640 ,1,1,613975 ,1,2,613975 ,1,3,613975 ,1,4,45 ,2,14956,269505 ,2,822,37745 ,2,14975,581510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,170230 ,1,5,614705 ,1,6,45 ,2,14956,269540 ,2,822,37755 ,2,14975,581530 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,614705 ,1,1,616170 ,1,2,616170 ,1,3,616170 ,1,4,45 ,2,14956,4490 ,2,822,37755 ,2,14975,110 ,2,14976,98725 ,2,14977,98715 ,2,14965,45 ,2,14978,250825 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,176020 ,1,5,614705 ,1,6,45 ,2,14956,269595 ,2,822,37765 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165970 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,613975 ,1,3,614045 ,1,4,45 ,2,14956,269560 ,2,822,37765 ,2,14975,561335 ,2,14976,86310 ,2,14977,23120 ,2,14965,45 ,2,14978,235895 ,2,14979,343585 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614020 ,1,3,614045 ,1,4,45 ,2,14956,269615 ,2,822,37765 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,165995 ,2,14979,390145 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665405 ,1,3,665395 ,1,4,664780 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,269605 ,2,822,37765 ,2,14975,561335 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,235905 ,2,14979,343605 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665410 ,1,3,664795 ,1,4,664790 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,269625 ,2,822,37765 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343625 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,166540 ,1,5,616170 ,1,6,45 ,2,14956,269560 ,2,822,37765 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,165970 ,2,14979,343595 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,616170 ,1,4,190330 ,1,5,616170 ,1,6,45 ,2,14956,269605 ,2,822,37765 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,165995 ,2,14979,343615 ,2,829,45 ,1,0,615295 ,1,1,614020 ,1,2,614020 ,1,3,614705 ,1,4,190430 ,1,5,616170 ,1,6,190410 ,1,7,613975 ,1,8,190440 ,1,9,614705 ,1,10,190420 ,1,11,614045 ,1,12,45 ,2,14956,269635 ,2,822,37765 ,2,14975,581565 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,343635 ,2,829,45 ,1,0,615295 ,1,1,614045 ,1,2,614045 ,1,3,613640 ,1,4,190125 ,1,5,614705 ,1,6,189970 ,1,7,616170 ,1,8,190145 ,1,9,613640 ,1,10,45 ,2,14956,269645 ,2,822,37765 ,2,14975,581570 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343645 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,168235 ,1,5,613640 ,1,6,45 ,2,14956,269705 ,2,822,37765 ,2,14975,581535 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,343685 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665440 ,1,3,665435 ,1,4,664780 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,269685 ,2,822,37795 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260715 ,2,14979,2415 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665445 ,1,3,620860 ,1,4,664780 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,269655 ,2,822,52790 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260715 ,2,14979,410095 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665485 ,1,3,665480 ,1,4,613640 ,1,5,665475 ,1,6,615295 ,1,7,615295 ,2,14956,269695 ,2,822,37795 ,2,14975,581575 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665405 ,1,3,665395 ,1,4,664790 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,2855 ,2,822,37775 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390930 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,613975 ,1,3,614045 ,1,4,191550 ,1,5,614045 ,1,6,45 ,2,14956,269800 ,2,822,37805 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,343695 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665410 ,1,3,665395 ,1,4,664790 ,1,5,664785 ,1,6,664780 ,1,7,664775 ,2,14956,269820 ,2,822,52815 ,2,14975,581560 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260730 ,2,14979,343705 ,2,829,557785 ,1,0,615295 ,1,1,615295 ,1,2,665490 ,1,3,620860 ,1,4,664780 ,1,5,617620 ,1,6,664780 ,1,7,617620 ,2,14956,206825 ,2,822,37795 ,2,14975,581560 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,343715 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,189970 ,1,5,613640 ,1,6,45 ,2,14956,269845 ,2,822,37795 ,2,14975,581560 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260730 ,2,14979,2415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,189970 ,1,5,614705 ,1,6,190145 ,1,7,613640 ,1,8,45 ,2,14956,218310 ,2,822,37825 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260740 ,2,14979,410150 ,2,829,557755 ,1,0,8820 ,1,1,7785 ,1,2,3575 ,1,3,346230 ,2,14956,182390 ,2,822,37825 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384215 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,614705 ,1,3,613640 ,1,4,166540 ,1,5,613640 ,1,6,45 ,2,14956,211235 ,2,822,37825 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260750 ,2,14979,371675 ,2,829,557765 ,1,0,14895 ,1,1,15345 ,1,2,15155 ,1,3,16290 ,1,4,15775 ,1,5,15160 ,1,6,16280 ,1,7,16225 ,1,8,16215 ,1,9,15105 ,1,10,16205 ,1,11,16195 ,1,12,16185 ,1,13,16175 ,1,14,16165 ,1,15,16155 ,1,16,16130 ,1,17,16120 ,1,18,16110 ,1,19,16100 ,1,20,16085 ,1,21,16075 ,1,22,16065 ,2,14956,270015 ,2,822,37870 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344010 ,2,829,45 ,1,0,615295 ,1,1,614705 ,1,2,616170 ,1,3,614705 ,1,4,45 ,2,14956,171930 ,2,822,37870 ,2,14975,581640 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374275 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,614045 ,1,3,616170 ,1,4,45 ,2,14956,166495 ,2,822,37870 ,2,14975,581645 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375140 ,2,829,45 ,1,0,613640 ,1,1,613640 ,1,2,613640 ,1,3,613640 ,1,4,45 ,2,14956,10665 ,2,822,37870 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382415 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,614705 ,1,4,166540 ,1,5,614705 ,1,6,45 ,2,14956,269960 ,2,822,37870 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344040 ,2,829,557785 ,1,0,665525 ,1,1,14495 ,2,14956,269970 ,2,822,37870 ,2,14975,581630 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,344030 ,2,829,557785 ,1,0,14505 ,1,1,616230 ,2,14956,166850 ,2,822,37870 ,2,14975,610620 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344000 ,2,829,557785 ,1,0,615940 ,1,1,14290 ,1,2,647465 ,1,3,14890 ,1,4,622995 ,1,5,665745 ,1,6,619075 ,1,7,14880 ,1,8,616230 ,1,9,14290 ,1,10,615940 ,1,11,14870 ,1,12,626560 ,1,13,665735 ,1,14,620805 ,1,15,14835 ,1,16,623955 ,1,17,665730 ,1,18,628550 ,1,19,14825 ,1,20,621000 ,1,21,665725 ,1,22,620270 ,1,23,14815 ,1,24,621000 ,1,25,14290 ,1,26,615300 ,1,27,14870 ,1,28,614390 ,1,29,665745 ,1,30,617155 ,1,31,14805 ,1,32,614390 ,1,33,665720 ,1,34,622995 ,1,35,14790 ,1,36,618550 ,1,37,665700 ,1,38,614710 ,1,39,14780 ,1,40,618550 ,1,41,665695 ,1,42,614710 ,1,43,14770 ,1,44,618550 ,1,45,665690 ,1,46,618130 ,1,47,14760 ,1,48,614025 ,1,49,665685 ,1,50,618130 ,1,51,14735 ,1,52,614025 ,1,53,665675 ,1,54,616230 ,1,55,14725 ,1,56,614025 ,1,57,665670 ,1,58,616230 ,1,59,14870 ,1,60,614025 ,1,61,665665 ,1,62,616230 ,1,63,14715 ,1,64,614025 ,1,65,665660 ,1,66,616545 ,1,67,14705 ,1,68,614025 ,1,69,665635 ,1,70,616545 ,1,71,14690 ,1,72,614020 ,1,73,665630 ,1,74,616545 ,1,75,14680 ,1,76,614020 ,1,77,665625 ,1,78,616545 ,1,79,14670 ,1,80,614020 ,1,81,665620 ,1,82,618545 ,1,83,14660 ,1,84,614020 ,1,85,665600 ,1,86,618545 ,1,87,14635 ,1,88,614020 ,1,89,665595 ,1,90,618545 ,1,91,14625 ,1,92,614020 ,1,93,665735 ,1,94,618545 ,1,95,14835 ,1,96,614020 ,1,97,665590 ,1,98,618545 ,1,99,14615 ,1,100,614020 ,1,101,665745 ,1,102,618545 ,1,103,14880 ,1,104,614020 ,1,105,665585 ,1,106,626560 ,1,107,14605 ,1,108,614020 ,1,109,665560 ,1,110,626560 ,1,111,14595 ,1,112,614020 ,1,113,665555 ,1,114,626560 ,1,115,14585 ,1,116,614020 ,1,117,665550 ,1,118,626560 ,1,119,14575 ,1,120,614020 ,1,121,14290 ,1,122,626560 ,1,123,14870 ,1,124,613975 ,1,125,665545 ,1,126,626560 ,1,127,14565 ,1,128,613975 ,1,129,665540 ,1,130,626560 ,1,131,14535 ,1,132,613975 ,1,133,665535 ,1,134,626560 ,1,135,14525 ,1,136,613975 ,1,137,665530 ,1,138,623955 ,1,139,14515 ,2,14956,166850 ,2,822,37880 ,2,14975,610625 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344050 ,2,829,45 ,1,0,615295 ,1,1,613975 ,1,2,614020 ,1,3,613975 ,1,4,45 ,2,14956,10665 ,2,822,37880 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382420 ,2,829,557435 ,1,0,371900 ,1,1,371925 ,1,2,371915 ,2,14956,218310 ,2,822,37890 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260760 ,2,14979,344115 ,2,829,557440 ,1,0,371930 ,1,1,372000 ,1,2,371990 ,1,3,371980 ,1,4,371940 ,2,14956,270235 ,2,822,37905 ,2,14975,581715 ,2,14976,23130 ,2,14977,99395 ,2,14965,45 ,2,14978,45 ,2,14979,344135 ,2,829,557445 ,1,0,372035 ,1,1,372085 ,1,2,372075 ,1,3,372045 ,1,4,372015 ,1,5,372025 ,1,6,372055 ,2,14956,270035 ,2,822,37935 ,2,14975,561590 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,344170 ,2,829,45 ,1,0,616170 ,1,1,613975 ,1,2,613975 ,1,3,613975 ,1,4,45 ,2,14956,235850 ,2,822,37935 ,2,14975,565940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393435 ,2,829,45 ,1,0,615295 ,1,1,616170 ,1,2,616170 ,1,3,613640 ,1,4,176730 ,1,5,613640 ,1,6,176720 ,1,7,614705 ,1,8,45 ,2,14956,2855 ,2,822,37970 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391830 ,2,829,45 ,1,0,616170 ,1,1,614045 ,1,2,614045 ,1,3,614045 ,1,4,45 ,2,14956,235850 ,2,822,37970 ,2,14975,565940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,2,829,45 ,1,0,613640 ,1,1,616170 ,1,2,616170 ,1,3,616170 ,1,4,45 ,2,14956,270065 ,2,822,37970 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,344180 ,2,829,45 ,1,0,613640 ,1,1,614705 ,1,2,614705 ,1,3,614705 ,1,4,45 ,2,14956,270075 ,2,822,37970 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,344215 ,1,0,24950 ,2,14956,270085 ,2,822,37970 ,2,14975,581700 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344225 ,1,0,25505 ,2,14956,179850 ,2,822,37970 ,2,14975,581700 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382195 ,1,0,25840 ,2,14956,2855 ,2,822,37980 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391835 ,1,0,26050 ,2,14956,6245 ,2,822,37980 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414465 ,1,0,26365 ,2,14956,13210 ,2,822,37980 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397385 ,1,0,26800 ,2,14956,270125 ,2,822,37990 ,2,14975,110 ,2,14976,23675 ,2,14977,50190 ,2,14965,45 ,2,14978,45 ,2,14979,344260 ,1,0,27015 ,2,14956,270135 ,2,822,37990 ,2,14975,581710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,27315 ,2,14956,2855 ,2,822,37915 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391820 ,1,0,27765 ,2,14956,6245 ,2,822,37915 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389035 ,1,0,28330 ,2,14956,13210 ,2,822,37915 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397345 ,1,0,28860 ,2,14956,212310 ,2,822,37915 ,2,14975,581715 ,2,14976,25600 ,2,14977,99385 ,2,14965,45 ,2,14978,45 ,2,14979,377630 ,1,0,29200 ,2,14956,251610 ,2,822,52825 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410175 ,1,0,29550 ,2,14956,251620 ,2,822,52825 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413865 ,1,0,30090 ,2,14956,251630 ,2,822,52825 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412470 ,1,0,30410 ,2,14956,251645 ,2,822,52825 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413845 ,1,0,30730 ,2,14956,251655 ,2,822,52825 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414355 ,1,0,31050 ,2,14956,251665 ,2,822,52825 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414160 ,1,0,31380 ,2,14956,256370 ,2,822,52825 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414135 ,1,0,31895 ,2,14956,251675 ,2,822,52825 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413525 ,1,0,32200 ,2,14956,251720 ,2,822,52825 ,2,14975,573425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383200 ,1,0,32520 ,2,14956,270265 ,2,822,38010 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,166770 ,2,14979,397685 ,1,0,33040 ,2,14956,270255 ,2,822,38010 ,2,14975,110 ,2,14976,99475 ,2,14977,23360 ,2,14965,45 ,2,14978,235915 ,2,14979,344290 ,1,0,33580 ,2,14956,182390 ,2,822,38010 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385630 ,1,0,33880 ,2,14956,270275 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344335 ,1,0,34215 ,2,14956,270285 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344355 ,1,0,34600 ,2,14956,270295 ,2,822,38010 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344370 ,1,0,34955 ,2,14956,270255 ,2,822,38010 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,166770 ,2,14979,344325 ,1,0,35320 ,2,14956,270330 ,2,822,38010 ,2,14975,565960 ,2,14976,23130 ,2,14977,99485 ,2,14965,45 ,2,14978,45 ,2,14979,344345 ,1,0,35630 ,2,14956,270550 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344380 ,1,0,35955 ,2,14956,270510 ,2,822,38020 ,2,14975,581860 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344400 ,1,0,36265 ,2,14956,270510 ,2,822,38040 ,2,14975,581825 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344435 ,1,0,36690 ,2,14956,270390 ,2,822,52835 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260785 ,2,14979,344455 ,1,0,37010 ,2,14956,2855 ,2,822,38040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391825 ,1,0,37315 ,2,14956,6245 ,2,822,38040 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389045 ,1,0,37640 ,2,14956,13210 ,2,822,38040 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397375 ,1,0,37955 ,2,14956,270435 ,2,822,38040 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344465 ,1,0,38160 ,2,14956,270445 ,2,822,38040 ,2,14975,599880 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,344480 ,1,0,38495 ,2,14956,270455 ,2,822,38040 ,2,14975,599880 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,344490 ,1,0,38905 ,2,14956,270465 ,2,822,38040 ,2,14975,581850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,167000 ,2,14979,344500 ,1,0,39240 ,2,14956,270465 ,2,822,38040 ,2,14975,581850 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,235925 ,2,14979,344510 ,1,0,39800 ,2,14956,270480 ,2,822,38040 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260785 ,2,14979,2415 ,1,0,40355 ,2,14956,270490 ,2,822,38040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260795 ,2,14979,416320 ,1,0,41095 ,2,14956,270065 ,2,822,38020 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,344540 ,1,0,41430 ,2,14956,270560 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344550 ,1,0,41735 ,2,14956,251610 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383325 ,1,0,42275 ,2,14956,223625 ,2,822,38010 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365565 ,1,0,42605 ,2,14956,216035 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386220 ,1,0,43345 ,2,14956,184135 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380780 ,1,0,43895 ,2,14956,217195 ,2,822,38010 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369495 ,1,0,44450 ,2,14956,217455 ,2,822,37890 ,2,14975,581865 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384965 ,1,0,44885 ,2,14956,171330 ,2,822,38080 ,2,14975,610690 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344570 ,1,0,45410 ,2,14956,171965 ,2,822,38080 ,2,14975,581895 ,2,14976,23075 ,2,14977,23065 ,2,14965,551105 ,2,14978,45 ,2,14979,379915 ,1,0,45735 ,2,14956,6550 ,2,822,38080 ,2,14975,610705 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370190 ,1,0,46350 ,2,14956,2855 ,2,822,38090 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390825 ,1,0,46775 ,2,14956,234800 ,2,822,38140 ,2,14975,568460 ,2,14976,23675 ,2,14977,23665 ,2,14965,551210 ,2,14978,45 ,2,14979,389275 ,1,0,47200 ,2,14956,276450 ,2,822,52845 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260805 ,2,14979,344600 ,1,0,47595 ,2,14956,276470 ,2,822,52855 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260815 ,2,14979,344610 ,1,0,48255 ,2,14956,276500 ,2,822,52865 ,2,14975,577165 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260830 ,2,14979,344650 ,1,0,48665 ,2,14956,182390 ,2,822,38170 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384235 ,1,0,49170 ,2,14956,276530 ,2,822,38170 ,2,14975,581965 ,2,14976,24020 ,2,14977,100050 ,2,14965,45 ,2,14978,45 ,2,14979,344660 ,1,0,49490 ,2,14956,213590 ,2,822,38170 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260840 ,2,14979,412965 ,1,0,50010 ,2,14956,276550 ,2,822,38170 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260805 ,2,14979,2415 ,1,0,50330 ,2,14956,276560 ,2,822,38170 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260815 ,2,14979,2415 ,1,0,50860 ,2,14956,276570 ,2,822,38170 ,2,14975,577165 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260830 ,2,14979,2415 ,1,0,51080 ,2,14956,6245 ,2,822,38180 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388695 ,1,0,51285 ,2,14956,13210 ,2,822,38180 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396510 ,1,0,51825 ,2,14956,276605 ,2,822,38180 ,2,14975,581975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344670 ,1,0,52245 ,2,14956,234800 ,2,822,38180 ,2,14975,568460 ,2,14976,23675 ,2,14977,23665 ,2,14965,551225 ,2,14978,45 ,2,14979,389090 ,1,0,52805 ,2,14956,234800 ,2,822,38110 ,2,14975,568460 ,2,14976,23675 ,2,14977,23665 ,2,14965,551230 ,2,14978,45 ,2,14979,389280 ,1,0,53345 ,2,14956,276660 ,2,822,52875 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260850 ,2,14979,344695 ,1,0,53550 ,2,14956,276680 ,2,822,52885 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260860 ,2,14979,344705 ,1,0,53760 ,2,14956,6245 ,2,822,38215 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389175 ,1,0,54005 ,2,14956,13210 ,2,822,38215 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397760 ,1,0,54230 ,2,14956,174925 ,2,822,38215 ,2,14975,582035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385055 ,1,0,54850 ,2,14956,276710 ,2,822,38215 ,2,14975,582030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,55285 ,2,14956,276720 ,2,822,38215 ,2,14975,582030 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,344715 ,1,0,55615 ,2,14956,276730 ,2,822,38215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260850 ,2,14979,2415 ,1,0,55935 ,2,14956,276755 ,2,822,38215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260860 ,2,14979,2415 ,1,0,56240 ,2,14956,2855 ,2,822,52940 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,392455 ,1,0,56555 ,2,14956,173980 ,2,822,52940 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413800 ,1,0,56895 ,2,14956,276775 ,2,822,38200 ,2,14975,582000 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,57220 ,2,14956,276785 ,2,822,38200 ,2,14975,582000 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,57560 ,2,14956,276995 ,2,822,38235 ,2,14975,599870 ,2,14976,24020 ,2,14977,100520 ,2,14965,45 ,2,14978,45 ,2,14979,344765 ,1,0,57895 ,2,14956,10080 ,2,822,38285 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,167635 ,2,14979,382385 ,1,0,58215 ,2,14956,10080 ,2,822,38285 ,2,14975,599870 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,235940 ,2,14979,344785 ,1,0,58740 ,2,14956,171965 ,2,822,38295 ,2,14975,582110 ,2,14976,23075 ,2,14977,23065 ,2,14965,551300 ,2,14978,45 ,2,14979,380515 ,1,0,59040 ,2,14956,166670 ,2,822,38315 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,167665 ,2,14979,377185 ,1,0,59555 ,2,14956,166660 ,2,822,38315 ,2,14975,599870 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,235950 ,2,14979,344795 ,1,0,60105 ,2,14956,2855 ,2,822,38315 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390865 ,1,0,60720 ,2,14956,166870 ,2,822,38315 ,2,14975,582140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375780 ,1,0,61285 ,2,14956,166495 ,2,822,38315 ,2,14975,582140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375970 ,1,0,61580 ,2,14956,171195 ,2,822,38315 ,2,14975,582145 ,2,14976,23130 ,2,14977,23120 ,2,14965,551340 ,2,14978,45 ,2,14979,376625 ,1,0,62000 ,2,14956,10665 ,2,822,38315 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383145 ,1,0,62430 ,2,14956,166530 ,2,822,38315 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376525 ,1,0,62740 ,2,14956,166740 ,2,822,38315 ,2,14975,582150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376385 ,1,0,63060 ,2,14956,166680 ,2,822,38315 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377860 ,1,0,63615 ,2,14956,166935 ,2,822,38315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380255 ,1,0,64025 ,2,14956,166660 ,2,822,38315 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,167665 ,2,14979,377620 ,1,0,64350 ,2,14956,171390 ,2,822,38295 ,2,14975,582180 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394730 ,1,0,64690 ,2,14956,276860 ,2,822,38295 ,2,14975,582180 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,65140 ,2,14956,276880 ,2,822,38340 ,2,14975,610815 ,2,14976,75 ,2,14977,75 ,2,14965,551390 ,2,14978,45 ,2,14979,344815 ,1,0,65545 ,2,14956,166985 ,2,822,38285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,167635 ,2,14979,381915 ,1,0,65945 ,2,14956,166485 ,2,822,49175 ,2,14975,606630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374410 ,1,0,66245 ,2,14956,276955 ,2,822,38190 ,2,14975,581990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,66460 ,2,14956,277005 ,2,822,38235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,344825 ,1,0,66875 ,2,14956,277040 ,2,822,38235 ,2,14975,582040 ,2,14976,23450 ,2,14977,100560 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,67190 ,2,14956,217455 ,2,822,38400 ,2,14975,582220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385020 ,1,0,67815 ,2,14956,213590 ,2,822,38400 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260895 ,2,14979,413370 ,1,0,68360 ,2,14956,2855 ,2,822,52950 ,2,14975,599880 ,2,14976,23130 ,2,14977,28475 ,2,14965,45 ,2,14978,45 ,2,14979,391330 ,1,0,68960 ,2,14956,173980 ,2,822,52950 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413730 ,1,0,69375 ,2,14956,277105 ,2,822,38410 ,2,14975,582250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410180 ,1,0,69780 ,2,14956,277135 ,2,822,38420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,168040 ,2,14979,2415 ,1,0,70205 ,2,14956,277125 ,2,822,38420 ,2,14975,599870 ,2,14976,100675 ,2,14977,23360 ,2,14965,45 ,2,14978,235960 ,2,14979,344880 ,1,0,70715 ,2,14956,182390 ,2,822,38420 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385685 ,1,0,71105 ,2,14956,277125 ,2,822,38420 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,168040 ,2,14979,344890 ,1,0,71410 ,2,14956,223625 ,2,822,38420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365970 ,1,0,71725 ,2,14956,217195 ,2,822,38420 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369595 ,1,0,72130 ,2,14956,184135 ,2,822,38420 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380820 ,1,0,72470 ,2,14956,277145 ,2,822,38420 ,2,14975,582205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,344900 ,1,0,72965 ,2,14956,277190 ,2,822,38190 ,2,14975,581990 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,73395 ,2,14956,4490 ,2,822,38430 ,2,14975,568460 ,2,14976,100720 ,2,14977,100710 ,2,14965,45 ,2,14978,250840 ,2,14979,2415 ,1,0,73995 ,2,14956,277545 ,2,822,38440 ,2,14975,582320 ,2,14976,24020 ,2,14977,100945 ,2,14965,551455 ,2,14978,45 ,2,14979,344930 ,1,0,74415 ,2,14956,277320 ,2,822,38430 ,2,14975,582280 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,344975 ,1,0,74910 ,2,14956,277535 ,2,822,38470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,168200 ,2,14979,2415 ,1,0,75625 ,2,14956,277490 ,2,822,38470 ,2,14975,568460 ,2,14976,100890 ,2,14977,24110 ,2,14965,45 ,2,14978,235970 ,2,14979,344985 ,1,0,75935 ,2,14956,277350 ,2,822,52960 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260905 ,2,14979,410185 ,1,0,76445 ,2,14956,277390 ,2,822,52970 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260915 ,2,14979,345025 ,1,0,77100 ,2,14956,277410 ,2,822,52980 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260925 ,2,14979,345035 ,1,0,77615 ,2,14956,182390 ,2,822,38450 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384080 ,1,0,77930 ,2,14956,277435 ,2,822,38450 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260905 ,2,14979,2415 ,1,0,78350 ,2,14956,277445 ,2,822,38450 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260915 ,2,14979,2415 ,1,0,78820 ,2,14956,277455 ,2,822,38450 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260925 ,2,14979,2415 ,1,0,79230 ,2,14956,213590 ,2,822,38450 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260945 ,2,14979,412920 ,1,0,79840 ,2,14956,277490 ,2,822,38470 ,2,14975,568460 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,168200 ,2,14979,344995 ,1,0,80480 ,2,14956,234800 ,2,822,38430 ,2,14975,568460 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,389975 ,1,0,80940 ,2,14956,235465 ,2,822,38430 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,399440 ,1,0,81375 ,2,14956,277695 ,2,822,38555 ,2,14975,582370 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,81975 ,2,14956,13210 ,2,822,38565 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396025 ,1,0,82495 ,2,14956,277705 ,2,822,38565 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345105 ,1,0,82960 ,2,14956,277715 ,2,822,38565 ,2,14975,582380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,83490 ,2,14956,277725 ,2,822,38565 ,2,14975,582380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,84015 ,2,14956,290135 ,2,822,38575 ,2,14975,584405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345125 ,1,0,84440 ,2,14956,289790 ,2,822,38635 ,2,14975,584290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345145 ,1,0,84955 ,2,14956,277975 ,2,822,41815 ,2,14975,582460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345220 ,1,0,85505 ,2,14956,278230 ,2,822,38645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345315 ,1,0,86280 ,2,14956,277985 ,2,822,52990 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260955 ,2,14979,345335 ,1,0,86810 ,2,14956,278025 ,2,822,53000 ,2,14975,582470 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260965 ,2,14979,345345 ,1,0,87235 ,2,14956,278015 ,2,822,38645 ,2,14975,582465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345360 ,1,0,87675 ,2,14956,278055 ,2,822,38655 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345370 ,1,0,88220 ,2,14956,278065 ,2,822,38655 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260955 ,2,14979,2415 ,1,0,88535 ,2,14956,278075 ,2,822,38655 ,2,14975,582470 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260965 ,2,14979,2415 ,1,0,88850 ,2,14956,278100 ,2,822,38675 ,2,14975,582505 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,89265 ,2,14956,4490 ,2,822,30010 ,2,14975,100 ,2,14976,101385 ,2,14977,101375 ,2,14965,45 ,2,14978,250850 ,2,14979,2415 ,1,0,89675 ,2,14956,278110 ,2,822,38675 ,2,14975,582480 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,345390 ,1,0,90090 ,2,14956,278120 ,2,822,38675 ,2,14975,582480 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,90700 ,2,14956,195335 ,2,822,38720 ,2,14975,567740 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,260975 ,2,14979,412785 ,1,0,91205 ,2,14956,278210 ,2,822,38645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345440 ,1,0,91715 ,2,14956,249335 ,2,822,38645 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,551480 ,2,14978,45 ,2,14979,345280 ,1,0,92465 ,2,14956,278455 ,2,822,38740 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260995 ,2,14979,2415 ,1,0,93100 ,2,14956,278260 ,2,822,53010 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,260995 ,2,14979,345450 ,1,0,93720 ,2,14956,278320 ,2,822,38750 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386035 ,1,0,94160 ,2,14956,278360 ,2,822,38740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345475 ,1,0,94580 ,2,14956,278370 ,2,822,38740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345485 ,1,0,95215 ,2,14956,278395 ,2,822,38740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345495 ,1,0,95750 ,2,14956,278405 ,2,822,38740 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,96075 ,2,14956,278415 ,2,822,38740 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,399805 ,1,0,96590 ,2,14956,278425 ,2,822,38740 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399945 ,1,0,97025 ,2,14956,187540 ,2,822,38740 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382160 ,1,0,97350 ,2,14956,278435 ,2,822,38740 ,2,14975,582520 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345505 ,1,0,97675 ,2,14956,278455 ,2,822,38785 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261005 ,2,14979,2415 ,1,0,98010 ,2,14956,278260 ,2,822,53045 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261005 ,2,14979,345540 ,1,0,98560 ,2,14956,278545 ,2,822,53055 ,2,14975,559345 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261015 ,2,14979,345560 ,1,0,99085 ,2,14956,166620 ,2,822,38815 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,101780 ,2,14979,345585 ,1,0,99415 ,2,14956,6550 ,2,822,38815 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370355 ,1,0,99850 ,2,14956,10080 ,2,822,38825 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,168915 ,2,14979,385925 ,1,0,100440 ,2,14956,10080 ,2,822,38825 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,235985 ,2,14979,345595 ,1,0,100965 ,2,14956,166985 ,2,822,38825 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,168915 ,2,14979,385170 ,1,0,101295 ,2,14956,171670 ,2,822,38825 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,357070 ,1,0,101650 ,2,14956,10580 ,2,822,38825 ,2,14975,610845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410900 ,1,0,102010 ,2,14956,171705 ,2,822,38825 ,2,14975,610845 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359565 ,1,0,102320 ,2,14956,171735 ,2,822,38825 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359215 ,1,0,102960 ,2,14956,171410 ,2,822,38825 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372105 ,1,0,103290 ,2,14956,171715 ,2,822,38825 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359830 ,1,0,103955 ,2,14956,171725 ,2,822,38825 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363430 ,1,0,104595 ,2,14956,6870 ,2,822,38825 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363225 ,1,0,105145 ,2,14956,10665 ,2,822,38815 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382730 ,1,0,105590 ,2,14956,278565 ,2,822,53065 ,2,14975,559345 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261025 ,2,14979,345605 ,1,0,105915 ,2,14956,278970 ,2,822,38785 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,345615 ,1,0,106650 ,2,14956,278930 ,2,822,38845 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261040 ,2,14979,2415 ,1,0,107210 ,2,14956,278600 ,2,822,53075 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261040 ,2,14979,345670 ,1,0,107770 ,2,14956,278625 ,2,822,38845 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345680 ,1,0,108065 ,2,14956,166620 ,2,822,38855 ,2,14975,582590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102025 ,2,14979,345700 ,1,0,108395 ,2,14956,6550 ,2,822,38855 ,2,14975,582590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411630 ,1,0,108725 ,2,14956,2855 ,2,822,38855 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392565 ,1,0,109270 ,2,14956,172065 ,2,822,38855 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,380235 ,1,0,109700 ,2,14956,10665 ,2,822,38855 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386305 ,1,0,110475 ,2,14956,278635 ,2,822,38855 ,2,14975,582595 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345720 ,1,0,110900 ,2,14956,278645 ,2,822,38855 ,2,14975,582595 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345735 ,1,0,111345 ,2,14956,278685 ,2,822,38845 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345745 ,1,0,111660 ,2,14956,278695 ,2,822,38845 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,112085 ,2,14956,278705 ,2,822,38845 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,112525 ,2,14956,278715 ,2,822,38845 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,345755 ,1,0,113065 ,2,14956,278730 ,2,822,38865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345775 ,1,0,113625 ,2,14956,2855 ,2,822,38865 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392560 ,1,0,114085 ,2,14956,278740 ,2,822,38865 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,345785 ,1,0,114665 ,2,14956,278750 ,2,822,38865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345795 ,1,0,115200 ,2,14956,278760 ,2,822,38865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345805 ,1,0,115520 ,2,14956,278800 ,2,822,38865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345835 ,1,0,115845 ,2,14956,278810 ,2,822,38865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345845 ,1,0,116275 ,2,14956,278820 ,2,822,38865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345855 ,1,0,116735 ,2,14956,278830 ,2,822,38865 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345865 ,1,0,117350 ,2,14956,278840 ,2,822,38865 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345875 ,1,0,117870 ,2,14956,11035 ,2,822,38865 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345885 ,1,0,118195 ,2,14956,8170 ,2,822,38865 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398540 ,1,0,118620 ,2,14956,13210 ,2,822,38865 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397900 ,1,0,118925 ,2,14956,278850 ,2,822,38865 ,2,14975,582655 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,119345 ,2,14956,278870 ,2,822,38865 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,261050 ,2,14979,410215 ,1,0,119665 ,2,14956,278940 ,2,822,38845 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345660 ,1,0,120095 ,2,14956,278950 ,2,822,38845 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,345650 ,1,0,120415 ,2,14956,278960 ,2,822,14490 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345895 ,1,0,121035 ,2,14956,278995 ,2,822,38785 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,121560 ,2,14956,279005 ,2,822,38785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345905 ,1,0,122225 ,2,14956,278415 ,2,822,38785 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,399825 ,1,0,122875 ,2,14956,278425 ,2,822,38785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399950 ,1,0,123365 ,2,14956,187540 ,2,822,38785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382165 ,1,0,123915 ,2,14956,279015 ,2,822,38785 ,2,14975,582540 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345950 ,1,0,124550 ,2,14956,279025 ,2,822,38785 ,2,14975,559345 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261015 ,2,14979,2415 ,1,0,125195 ,2,14956,279035 ,2,822,38785 ,2,14975,559345 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261025 ,2,14979,2415 ,1,0,125750 ,2,14956,278455 ,2,822,38875 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261060 ,2,14979,2415 ,1,0,126285 ,2,14956,278260 ,2,822,53085 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261060 ,2,14979,345960 ,1,0,127010 ,2,14956,279095 ,2,822,38875 ,2,14975,582660 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,127575 ,2,14956,279295 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345270 ,1,0,128195 ,2,14956,279115 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345980 ,1,0,128735 ,2,14956,279125 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347650 ,1,0,129350 ,2,14956,279135 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352945 ,1,0,129905 ,2,14956,279145 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348150 ,1,0,130330 ,2,14956,279155 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353215 ,1,0,130865 ,2,14956,279185 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347765 ,1,0,131200 ,2,14956,279195 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347715 ,1,0,131740 ,2,14956,279205 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351875 ,1,0,132045 ,2,14956,279215 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,346085 ,1,0,132380 ,2,14956,279225 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348020 ,1,0,132705 ,2,14956,279235 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348075 ,1,0,133030 ,2,14956,278455 ,2,822,38940 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261070 ,2,14979,2415 ,1,0,133310 ,2,14956,278260 ,2,822,53095 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261070 ,2,14979,345995 ,1,0,133635 ,2,14956,279340 ,2,822,53105 ,2,14975,581510 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261100 ,2,14979,346015 ,1,0,134040 ,2,14956,279360 ,2,822,38940 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346025 ,1,0,134455 ,2,14956,279395 ,2,822,38940 ,2,14975,582670 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,134790 ,2,14956,279405 ,2,822,38940 ,2,14975,581510 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261100 ,2,14979,2415 ,1,0,135100 ,2,14956,278455 ,2,822,38960 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261110 ,2,14979,2415 ,1,0,135445 ,2,14956,278260 ,2,822,53115 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261110 ,2,14979,346065 ,1,0,135755 ,2,14956,278455 ,2,822,38980 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261120 ,2,14979,2415 ,1,0,136300 ,2,14956,278260 ,2,822,53135 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261120 ,2,14979,346095 ,1,0,136745 ,2,14956,280785 ,2,822,38980 ,2,14975,582710 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399055 ,1,0,137085 ,2,14956,280765 ,2,822,53255 ,2,14975,582715 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346125 ,1,0,137735 ,2,14956,191620 ,2,822,39040 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346185 ,1,0,138275 ,2,14956,176805 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102605 ,2,14979,346195 ,1,0,138605 ,2,14956,5060 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373365 ,1,0,138825 ,2,14956,279530 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102615 ,2,14979,346205 ,1,0,139350 ,2,14956,6680 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396245 ,1,0,139675 ,2,14956,279675 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102670 ,2,14979,346215 ,1,0,140330 ,2,14956,279545 ,2,822,39040 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346235 ,1,0,140945 ,2,14956,279575 ,2,822,39040 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261130 ,2,14979,2415 ,1,0,141375 ,2,14956,279555 ,2,822,53145 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261130 ,2,14979,346290 ,1,0,141675 ,2,14956,279625 ,2,822,39040 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261140 ,2,14979,2415 ,1,0,142185 ,2,14956,279605 ,2,822,53155 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261140 ,2,14979,346300 ,1,0,142595 ,2,14956,10815 ,2,822,39040 ,2,14975,582725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,346310 ,1,0,143085 ,2,14956,279655 ,2,822,39040 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261150 ,2,14979,2415 ,1,0,143530 ,2,14956,279635 ,2,822,53165 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261150 ,2,14979,346320 ,1,0,144155 ,2,14956,279665 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346245 ,1,0,144485 ,2,14956,11350 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346225 ,1,0,145030 ,2,14956,166650 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102680 ,2,14979,346330 ,1,0,145600 ,2,14956,8315 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374425 ,1,0,145930 ,2,14956,236135 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102775 ,2,14979,346340 ,1,0,146590 ,2,14956,279695 ,2,822,39040 ,2,14975,558580 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346395 ,1,0,147020 ,2,14956,279705 ,2,822,39040 ,2,14975,599975 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,346415 ,1,0,147465 ,2,14956,279795 ,2,822,39040 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261160 ,2,14979,2415 ,1,0,148100 ,2,14956,279760 ,2,822,53190 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261160 ,2,14979,346440 ,1,0,148550 ,2,14956,279750 ,2,822,53180 ,2,14975,599875 ,2,14976,23450 ,2,14977,102725 ,2,14965,45 ,2,14978,102715 ,2,14979,346450 ,1,0,148975 ,2,14956,279805 ,2,822,39040 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346425 ,1,0,149625 ,2,14956,279815 ,2,822,39040 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,346460 ,1,0,150070 ,2,14956,279825 ,2,822,39040 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346470 ,1,0,150605 ,2,14956,279845 ,2,822,39040 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346510 ,1,0,151145 ,2,14956,279855 ,2,822,39040 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346530 ,1,0,151475 ,2,14956,279865 ,2,822,39040 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346520 ,1,0,151815 ,2,14956,279875 ,2,822,39040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346405 ,1,0,152125 ,2,14956,279915 ,2,822,39040 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261170 ,2,14979,2415 ,1,0,152565 ,2,14956,279935 ,2,822,39040 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261200 ,2,14979,2415 ,1,0,153005 ,2,14956,279960 ,2,822,39040 ,2,14975,558580 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261210 ,2,14979,2415 ,1,0,153440 ,2,14956,279970 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346360 ,1,0,153940 ,2,14956,279980 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346540 ,1,0,154390 ,2,14956,9585 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346350 ,1,0,155015 ,2,14956,176795 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,102785 ,2,14979,346550 ,1,0,155560 ,2,14956,4685 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381120 ,1,0,156225 ,2,14956,280005 ,2,822,53200 ,2,14975,562775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261220 ,2,14979,346560 ,1,0,156740 ,2,14956,280080 ,2,822,53210 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261315 ,2,14979,346570 ,1,0,157380 ,2,14956,280120 ,2,822,53245 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261325 ,2,14979,346580 ,1,0,157905 ,2,14956,280140 ,2,822,39040 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346600 ,1,0,158410 ,2,14956,179465 ,2,822,39040 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,346620 ,1,0,159145 ,2,14956,280155 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346630 ,1,0,159905 ,2,14956,280165 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346645 ,1,0,160440 ,2,14956,280390 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346665 ,1,0,160900 ,2,14956,280335 ,2,822,39050 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346725 ,1,0,161530 ,2,14956,280185 ,2,822,39050 ,2,14975,599975 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,395355 ,1,0,162190 ,2,14956,280225 ,2,822,39050 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,395540 ,1,0,162840 ,2,14956,280235 ,2,822,39050 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395530 ,1,0,163380 ,2,14956,280245 ,2,822,39050 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395550 ,1,0,163910 ,2,14956,280255 ,2,822,39050 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,346755 ,1,0,164230 ,2,14956,280275 ,2,822,39050 ,2,14975,582750 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346785 ,1,0,164885 ,2,14956,280295 ,2,822,39050 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,261335 ,2,14979,416520 ,1,0,165405 ,2,14956,280345 ,2,822,39050 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346715 ,1,0,165820 ,2,14956,189780 ,2,822,14490 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,102885 ,2,14979,346775 ,1,0,166365 ,2,14956,280185 ,2,822,39070 ,2,14975,599975 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,395365 ,1,0,166695 ,2,14956,280225 ,2,822,39070 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,395545 ,1,0,167020 ,2,14956,280345 ,2,822,39070 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346845 ,1,0,167350 ,2,14956,280235 ,2,822,39070 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395535 ,1,0,167915 ,2,14956,280245 ,2,822,39070 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,395555 ,1,0,168360 ,2,14956,280295 ,2,822,39070 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,261345 ,2,14979,416525 ,1,0,168820 ,2,14956,280380 ,2,822,39070 ,2,14975,582760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346825 ,1,0,169395 ,2,14956,6870 ,2,822,14490 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363235 ,1,0,169815 ,2,14956,280400 ,2,822,39040 ,2,14975,599975 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,346855 ,1,0,170245 ,2,14956,280410 ,2,822,39040 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,346765 ,1,0,170680 ,2,14956,2855 ,2,822,39040 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389470 ,1,0,171130 ,2,14956,280430 ,2,822,39040 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346960 ,1,0,171685 ,2,14956,280440 ,2,822,39040 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395270 ,1,0,172215 ,2,14956,280450 ,2,822,39040 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261315 ,2,14979,2415 ,1,0,172660 ,2,14956,280460 ,2,822,39040 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,346655 ,1,0,173230 ,2,14956,280475 ,2,822,39040 ,2,14975,582805 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346970 ,1,0,173775 ,2,14956,280485 ,2,822,39040 ,2,14975,582805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346980 ,1,0,174340 ,2,14956,12785 ,2,822,39040 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346950 ,1,0,174895 ,2,14956,280495 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347000 ,1,0,175445 ,2,14956,280505 ,2,822,39040 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396205 ,1,0,176425 ,2,14956,6800 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346880 ,1,0,177410 ,2,14956,280545 ,2,822,39040 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346705 ,1,0,178080 ,2,14956,4195 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,178545 ,2,14956,280555 ,2,822,39040 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346675 ,1,0,178980 ,2,14956,280565 ,2,822,39040 ,2,14975,582725 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261325 ,2,14979,2415 ,1,0,180265 ,2,14956,280575 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346870 ,1,0,181545 ,2,14956,280585 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347010 ,1,0,182100 ,2,14956,170285 ,2,822,39040 ,2,14975,582805 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,346990 ,1,0,182435 ,2,14956,6245 ,2,822,39040 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388000 ,1,0,182650 ,2,14956,280595 ,2,822,39040 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261230 ,2,14979,2415 ,1,0,183390 ,2,14956,4400 ,2,822,39040 ,2,14975,582725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396235 ,1,0,184805 ,2,14956,168095 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347045 ,1,0,186270 ,2,14956,280605 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347055 ,1,0,186715 ,2,14956,280615 ,2,822,39040 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,346940 ,1,0,187470 ,2,14956,169970 ,2,822,39040 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375100 ,1,0,188220 ,2,14956,280650 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347065 ,1,0,188980 ,2,14956,224335 ,2,822,39040 ,2,14975,582725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,346900 ,1,0,189300 ,2,14956,13210 ,2,822,39040 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395100 ,1,0,189730 ,2,14956,6450 ,2,822,39040 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346890 ,1,0,190065 ,2,14956,280660 ,2,822,39040 ,2,14975,582725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347075 ,1,0,190700 ,2,14956,280670 ,2,822,39040 ,2,14975,562775 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261220 ,2,14979,2415 ,1,0,191375 ,2,14956,280680 ,2,822,39040 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416445 ,1,0,191710 ,2,14956,280690 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347085 ,1,0,192035 ,2,14956,280700 ,2,822,39040 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346610 ,1,0,192350 ,2,14956,170200 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,192650 ,2,14956,280720 ,2,822,39040 ,2,14975,582725 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,346175 ,1,0,194040 ,2,14956,280745 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346145 ,1,0,195460 ,2,14956,280755 ,2,822,39040 ,2,14975,582725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,346135 ,1,0,196110 ,2,14956,168095 ,2,822,53255 ,2,14975,582715 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347105 ,1,0,196435 ,2,14956,280565 ,2,822,53255 ,2,14975,582715 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,347115 ,1,0,196765 ,2,14956,279575 ,2,822,53255 ,2,14975,582715 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,197105 ,2,14956,279655 ,2,822,53255 ,2,14975,582715 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,347145 ,1,0,197765 ,2,14956,281715 ,2,822,38980 ,2,14975,582685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347165 ,1,0,198180 ,2,14956,280985 ,2,822,39085 ,2,14975,582810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347175 ,1,0,198625 ,2,14956,280865 ,2,822,39095 ,2,14975,561570 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347190 ,1,0,199055 ,2,14956,280845 ,2,822,39085 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,199475 ,2,14956,280855 ,2,822,39085 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347200 ,1,0,200000 ,2,14956,280875 ,2,822,39095 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347210 ,1,0,200350 ,2,14956,280785 ,2,822,39095 ,2,14975,582710 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399050 ,1,0,200650 ,2,14956,278260 ,2,822,53265 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261355 ,2,14979,347220 ,1,0,200875 ,2,14956,280965 ,2,822,39085 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347245 ,1,0,201195 ,2,14956,278960 ,2,822,39150 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347255 ,1,0,201435 ,2,14956,8315 ,2,822,39150 ,2,14975,558275 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377150 ,1,0,201655 ,2,14956,171965 ,2,822,39150 ,2,14975,582830 ,2,14976,23075 ,2,14977,23065 ,2,14965,551530 ,2,14978,45 ,2,14979,382950 ,1,0,202540 ,2,14956,10080 ,2,822,39150 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,171710 ,2,14979,385900 ,1,0,202860 ,2,14956,10080 ,2,822,39150 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,235995 ,2,14979,347265 ,1,0,203195 ,2,14956,166850 ,2,822,39150 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410910 ,1,0,203520 ,2,14956,10580 ,2,822,39150 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410890 ,1,0,203845 ,2,14956,166985 ,2,822,39150 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,171710 ,2,14979,385165 ,1,0,204075 ,2,14956,166860 ,2,822,39150 ,2,14975,582840 ,2,14976,23130 ,2,14977,23120 ,2,14965,551540 ,2,14978,45 ,2,14979,359480 ,1,0,204595 ,2,14956,166495 ,2,822,39150 ,2,14975,558345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412000 ,1,0,204920 ,2,14956,171735 ,2,822,39150 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410710 ,1,0,205290 ,2,14956,166870 ,2,822,39150 ,2,14975,558345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411980 ,1,0,205920 ,2,14956,171930 ,2,822,39150 ,2,14975,558275 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,411865 ,1,0,206355 ,2,14956,166670 ,2,822,39150 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,171830 ,2,14979,379420 ,1,0,206675 ,2,14956,166660 ,2,822,39150 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236005 ,2,14979,347275 ,1,0,207105 ,2,14956,171715 ,2,822,39150 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359755 ,1,0,207435 ,2,14956,171410 ,2,822,39150 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372050 ,1,0,207750 ,2,14956,166880 ,2,822,39150 ,2,14975,558345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410645 ,1,0,208050 ,2,14956,166890 ,2,822,39150 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411560 ,1,0,208390 ,2,14956,166740 ,2,822,39150 ,2,14975,559275 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412070 ,1,0,208605 ,2,14956,166485 ,2,822,39150 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376810 ,1,0,209145 ,2,14956,166900 ,2,822,39150 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374580 ,1,0,209465 ,2,14956,166660 ,2,822,39150 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,171830 ,2,14979,412120 ,1,0,209770 ,2,14956,166935 ,2,822,39150 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412560 ,1,0,210085 ,2,14956,166965 ,2,822,39150 ,2,14975,599975 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,410575 ,1,0,210310 ,2,14956,171625 ,2,822,39150 ,2,14975,559330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374930 ,1,0,210625 ,2,14956,171640 ,2,822,39150 ,2,14975,610905 ,2,14976,23450 ,2,14977,23360 ,2,14965,551555 ,2,14978,45 ,2,14979,411710 ,1,0,211165 ,2,14956,171705 ,2,822,39150 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410785 ,1,0,211485 ,2,14956,171195 ,2,822,39150 ,2,14975,582845 ,2,14976,23130 ,2,14977,23120 ,2,14965,551560 ,2,14978,45 ,2,14979,378550 ,1,0,212255 ,2,14956,172055 ,2,822,39150 ,2,14975,558345 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355990 ,1,0,212680 ,2,14956,171650 ,2,822,39150 ,2,14975,558345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412665 ,1,0,213010 ,2,14956,171725 ,2,822,39150 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363390 ,1,0,213345 ,2,14956,172065 ,2,822,39150 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,380290 ,1,0,213780 ,2,14956,278260 ,2,822,53275 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261365 ,2,14979,347305 ,1,0,214355 ,2,14956,281025 ,2,822,39160 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347315 ,1,0,214570 ,2,14956,281050 ,2,822,39160 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347370 ,1,0,214895 ,2,14956,280875 ,2,822,39160 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347360 ,1,0,215540 ,2,14956,280785 ,2,822,39160 ,2,14975,582710 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399045 ,1,0,216055 ,2,14956,281060 ,2,822,39160 ,2,14975,582865 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,216490 ,2,14956,278320 ,2,822,39195 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385905 ,1,0,216930 ,2,14956,281125 ,2,822,53290 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261375 ,2,14979,347390 ,1,0,217470 ,2,14956,281155 ,2,822,53300 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261385 ,2,14979,347405 ,1,0,217900 ,2,14956,281175 ,2,822,53310 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261405 ,2,14979,347415 ,1,0,218435 ,2,14956,281195 ,2,822,53320 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261415 ,2,14979,347425 ,1,0,218870 ,2,14956,281215 ,2,822,53350 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261425 ,2,14979,347435 ,1,0,219200 ,2,14956,281265 ,2,822,53360 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261435 ,2,14979,347450 ,1,0,219725 ,2,14956,281285 ,2,822,53370 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261445 ,2,14979,347460 ,1,0,220660 ,2,14956,281310 ,2,822,53380 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261455 ,2,14979,347470 ,1,0,221010 ,2,14956,281330 ,2,822,53390 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261465 ,2,14979,347480 ,1,0,221645 ,2,14956,281370 ,2,822,53400 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261475 ,2,14979,347495 ,1,0,222920 ,2,14956,281390 ,2,822,53410 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261505 ,2,14979,347505 ,1,0,223360 ,2,14956,281410 ,2,822,39215 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347515 ,1,0,223935 ,2,14956,281420 ,2,822,39215 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,224595 ,2,14956,281430 ,2,822,39215 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347525 ,1,0,225215 ,2,14956,281450 ,2,822,39215 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347580 ,1,0,225745 ,2,14956,281460 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261375 ,2,14979,2415 ,1,0,226280 ,2,14956,281470 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261385 ,2,14979,2415 ,1,0,226820 ,2,14956,281480 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261405 ,2,14979,2415 ,1,0,227235 ,2,14956,281495 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261415 ,2,14979,2415 ,1,0,227670 ,2,14956,281505 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261425 ,2,14979,2415 ,1,0,228105 ,2,14956,281515 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261435 ,2,14979,2415 ,1,0,228535 ,2,14956,281525 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261445 ,2,14979,2415 ,1,0,228935 ,2,14956,281550 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261455 ,2,14979,2415 ,1,0,229450 ,2,14956,281560 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261465 ,2,14979,2415 ,1,0,229885 ,2,14956,281570 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261475 ,2,14979,2415 ,1,0,230325 ,2,14956,281580 ,2,822,39215 ,2,14975,561570 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261505 ,2,14979,2415 ,1,0,230745 ,2,14956,278260 ,2,822,53420 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261515 ,2,14979,347590 ,1,0,231205 ,2,14956,281620 ,2,822,39180 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347600 ,1,0,231815 ,2,14956,281655 ,2,822,39180 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347610 ,1,0,232380 ,2,14956,281665 ,2,822,39180 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347630 ,1,0,232890 ,2,14956,281675 ,2,822,39180 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347640 ,1,0,233325 ,2,14956,281685 ,2,822,39180 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399615 ,1,0,233860 ,2,14956,278425 ,2,822,39180 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399690 ,1,0,234385 ,2,14956,187540 ,2,822,39180 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381970 ,1,0,235550 ,2,14956,281695 ,2,822,39180 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417125 ,1,0,236205 ,2,14956,278455 ,2,822,39180 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261515 ,2,14979,2415 ,1,0,236835 ,2,14956,278455 ,2,822,39085 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261355 ,2,14979,2415 ,1,0,237390 ,2,14956,278455 ,2,822,39160 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261365 ,2,14979,2415 ,1,0,237695 ,2,14956,278455 ,2,822,39225 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261525 ,2,14979,2415 ,1,0,238885 ,2,14956,278260 ,2,822,53465 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261525 ,2,14979,347660 ,1,0,239500 ,2,14956,281810 ,2,822,39225 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399775 ,1,0,240130 ,2,14956,281835 ,2,822,39225 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399835 ,1,0,240650 ,2,14956,278425 ,2,822,39225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399920 ,1,0,241170 ,2,14956,278455 ,2,822,39305 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261535 ,2,14979,2415 ,1,0,241485 ,2,14956,278260 ,2,822,53475 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261535 ,2,14979,347695 ,1,0,242645 ,2,14956,281810 ,2,822,39305 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399780 ,1,0,243275 ,2,14956,281835 ,2,822,39305 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399840 ,1,0,243960 ,2,14956,278425 ,2,822,39305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,417170 ,1,0,244460 ,2,14956,278455 ,2,822,39330 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261550 ,2,14979,2415 ,1,0,244890 ,2,14956,278260 ,2,822,53485 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261550 ,2,14979,347735 ,1,0,245455 ,2,14956,281970 ,2,822,39330 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,347755 ,1,0,245800 ,2,14956,281685 ,2,822,39330 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399900 ,1,0,246415 ,2,14956,278320 ,2,822,39330 ,2,14975,559345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386030 ,1,0,247075 ,2,14956,278425 ,2,822,39330 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399915 ,1,0,247395 ,2,14956,187540 ,2,822,39330 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382140 ,1,0,247730 ,2,14956,281695 ,2,822,39330 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399970 ,1,0,248035 ,2,14956,278455 ,2,822,39350 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261560 ,2,14979,2415 ,1,0,248350 ,2,14956,278260 ,2,822,53495 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261560 ,2,14979,347800 ,1,0,248685 ,2,14956,282085 ,2,822,39350 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399060 ,1,0,248975 ,2,14956,282185 ,2,822,39350 ,2,14975,582965 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,347820 ,1,0,249300 ,2,14956,281695 ,2,822,39410 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399795 ,1,0,249600 ,2,14956,278260 ,2,822,53505 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261570 ,2,14979,347830 ,1,0,249945 ,2,14956,282130 ,2,822,39410 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,347840 ,1,0,250275 ,2,14956,282140 ,2,822,39410 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,347850 ,1,0,250595 ,2,14956,281685 ,2,822,39410 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399620 ,1,0,250905 ,2,14956,278425 ,2,822,39410 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399695 ,1,0,251365 ,2,14956,187540 ,2,822,39410 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381980 ,1,0,251920 ,2,14956,278455 ,2,822,39410 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261570 ,2,14979,2415 ,1,0,252350 ,2,14956,282175 ,2,822,39410 ,2,14975,583020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410220 ,1,0,252895 ,2,14956,282195 ,2,822,39350 ,2,14975,582965 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347870 ,1,0,253215 ,2,14956,278455 ,2,822,39435 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261580 ,2,14979,2415 ,1,0,253845 ,2,14956,278260 ,2,822,53515 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261580 ,2,14979,347910 ,1,0,254255 ,2,14956,282085 ,2,822,39435 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416895 ,1,0,254605 ,2,14956,282300 ,2,822,39435 ,2,14975,559345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,347930 ,1,0,255135 ,2,14956,282310 ,2,822,39435 ,2,14975,583025 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,347940 ,1,0,255955 ,2,14956,282320 ,2,822,39435 ,2,14975,583025 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,347955 ,1,0,257105 ,2,14956,278455 ,2,822,39455 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261610 ,2,14979,2415 ,1,0,257740 ,2,14956,278260 ,2,822,53525 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261610 ,2,14979,347965 ,1,0,258390 ,2,14956,282375 ,2,822,53535 ,2,14975,583035 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261620 ,2,14979,347985 ,1,0,258910 ,2,14956,282085 ,2,822,39455 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416900 ,1,0,259235 ,2,14956,282415 ,2,822,39455 ,2,14975,583030 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,348010 ,1,0,259665 ,2,14956,282425 ,2,822,39455 ,2,14975,583035 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261620 ,2,14979,2415 ,1,0,260055 ,2,14956,278455 ,2,822,39490 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261630 ,2,14979,2415 ,1,0,260455 ,2,14956,278260 ,2,822,53560 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261630 ,2,14979,348030 ,1,0,260780 ,2,14956,278455 ,2,822,39510 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261640 ,2,14979,2415 ,1,0,261085 ,2,14956,278260 ,2,822,53570 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261640 ,2,14979,348055 ,1,0,261600 ,2,14956,278455 ,2,822,39530 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261650 ,2,14979,2415 ,1,0,262020 ,2,14956,278260 ,2,822,53580 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261650 ,2,14979,348085 ,1,0,262435 ,2,14956,278455 ,2,822,39610 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261660 ,2,14979,2415 ,1,0,262735 ,2,14956,278260 ,2,822,53590 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261660 ,2,14979,348130 ,1,0,263030 ,2,14956,282680 ,2,822,39610 ,2,14975,583090 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,263360 ,2,14956,278455 ,2,822,39630 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261670 ,2,14979,2415 ,1,0,263665 ,2,14956,278260 ,2,822,53610 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261670 ,2,14979,348165 ,1,0,264115 ,2,14956,2855 ,2,822,39665 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415705 ,1,0,264415 ,2,14956,282935 ,2,822,39750 ,2,14975,582710 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,348185 ,1,0,264705 ,2,14956,282925 ,2,822,39760 ,2,14975,582710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348195 ,1,0,265150 ,2,14956,282825 ,2,822,39760 ,2,14975,559345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348230 ,1,0,265795 ,2,14956,282835 ,2,822,53620 ,2,14975,582710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261680 ,2,14979,348240 ,1,0,266100 ,2,14956,282865 ,2,822,39760 ,2,14975,582710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261680 ,2,14979,2415 ,1,0,266420 ,2,14956,283225 ,2,822,39750 ,2,14975,583280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,348250 ,1,0,266755 ,2,14956,283185 ,2,822,39770 ,2,14975,583185 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,348270 ,1,0,267460 ,2,14956,5060 ,2,822,39770 ,2,14975,583220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376395 ,1,0,267950 ,2,14956,8315 ,2,822,39770 ,2,14975,583220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377015 ,1,0,268340 ,2,14956,282945 ,2,822,39780 ,2,14975,561570 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,348290 ,1,0,268755 ,2,14956,283055 ,2,822,39780 ,2,14975,583280 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,173845 ,2,14979,348300 ,1,0,269265 ,2,14956,282960 ,2,822,39840 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410225 ,1,0,269675 ,2,14956,283025 ,2,822,39810 ,2,14975,583225 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,348365 ,1,0,270195 ,2,14956,4685 ,2,822,39810 ,2,14975,583230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385750 ,1,0,270625 ,2,14956,5060 ,2,822,39810 ,2,14975,583230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376390 ,1,0,271125 ,2,14956,8315 ,2,822,39810 ,2,14975,583230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377010 ,1,0,271540 ,2,14956,6245 ,2,822,39810 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389235 ,1,0,271955 ,2,14956,13210 ,2,822,39810 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397845 ,1,0,272470 ,2,14956,282970 ,2,822,39810 ,2,14975,583245 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,348375 ,1,0,272980 ,2,14956,282990 ,2,822,39810 ,2,14975,583230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348395 ,1,0,273520 ,2,14956,282980 ,2,822,41900 ,2,14975,582690 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,348405 ,1,0,273930 ,2,14956,283015 ,2,822,39810 ,2,14975,583230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348415 ,1,0,274325 ,2,14956,6530 ,2,822,39810 ,2,14975,583230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387610 ,1,0,275055 ,2,14956,10815 ,2,822,39810 ,2,14975,583230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348355 ,1,0,275580 ,2,14956,10815 ,2,822,39770 ,2,14975,583220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348345 ,1,0,275995 ,2,14956,283035 ,2,822,39770 ,2,14975,583220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348455 ,1,0,276305 ,2,14956,283055 ,2,822,39780 ,2,14975,583280 ,2,14976,105315 ,2,14977,24010 ,2,14965,45 ,2,14978,236015 ,2,14979,348480 ,1,0,276890 ,2,14956,283065 ,2,822,39780 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,348435 ,1,0,277375 ,2,14956,283075 ,2,822,39780 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348385 ,1,0,277780 ,2,14956,6245 ,2,822,39830 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389245 ,1,0,278185 ,2,14956,13210 ,2,822,39830 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397855 ,1,0,278480 ,2,14956,283085 ,2,822,39830 ,2,14975,583220 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,348560 ,1,0,278780 ,2,14956,283125 ,2,822,39830 ,2,14975,583230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,348540 ,1,0,279165 ,2,14956,283135 ,2,822,39830 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348570 ,1,0,279480 ,2,14956,283145 ,2,822,39830 ,2,14975,583260 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,348500 ,1,0,279885 ,2,14956,283195 ,2,822,39830 ,2,14975,583220 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,348260 ,1,0,280730 ,2,14956,283235 ,2,822,39750 ,2,14975,583175 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,348510 ,1,0,281535 ,2,14956,176795 ,2,822,39840 ,2,14975,583280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,105415 ,2,14979,348585 ,1,0,281920 ,2,14956,4685 ,2,822,39840 ,2,14975,583280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385755 ,1,0,282390 ,2,14956,6245 ,2,822,39840 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389240 ,1,0,282895 ,2,14956,2855 ,2,822,39840 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392555 ,1,0,283415 ,2,14956,13210 ,2,822,39840 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397850 ,1,0,283835 ,2,14956,283325 ,2,822,39645 ,2,14975,583110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,284245 ,2,14956,283370 ,2,822,39630 ,2,14975,583325 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174105 ,2,14979,348595 ,1,0,284560 ,2,14956,283370 ,2,822,39630 ,2,14975,583325 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236025 ,2,14979,348615 ,1,0,284880 ,2,14956,283450 ,2,822,39630 ,2,14975,583325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348655 ,1,0,285195 ,2,14956,283440 ,2,822,39870 ,2,14975,583105 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,348665 ,1,0,285730 ,2,14956,283460 ,2,822,39630 ,2,14975,583100 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,348605 ,1,0,286130 ,2,14956,278455 ,2,822,39880 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261715 ,2,14979,2415 ,1,0,286580 ,2,14956,278260 ,2,822,53630 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261715 ,2,14979,348675 ,1,0,287100 ,2,14956,283510 ,2,822,39880 ,2,14975,583360 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174190 ,2,14979,348700 ,1,0,287710 ,2,14956,283510 ,2,822,39880 ,2,14975,583360 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236035 ,2,14979,348720 ,1,0,288420 ,2,14956,283545 ,2,822,39880 ,2,14975,583360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348730 ,1,0,288945 ,2,14956,283555 ,2,822,39880 ,2,14975,583330 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,348710 ,1,0,289445 ,2,14956,278455 ,2,822,39950 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261725 ,2,14979,2415 ,1,0,289880 ,2,14956,278260 ,2,822,53640 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261725 ,2,14979,348755 ,1,0,290375 ,2,14956,283610 ,2,822,39950 ,2,14975,583370 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174295 ,2,14979,348775 ,1,0,290910 ,2,14956,283610 ,2,822,39950 ,2,14975,583370 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236045 ,2,14979,348795 ,1,0,291290 ,2,14956,283620 ,2,822,39950 ,2,14975,583370 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348805 ,1,0,291695 ,2,14956,283645 ,2,822,39950 ,2,14975,583365 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,348785 ,1,0,292115 ,2,14956,278455 ,2,822,39970 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261735 ,2,14979,2415 ,1,0,292600 ,2,14956,278260 ,2,822,53670 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261735 ,2,14979,348815 ,1,0,292930 ,2,14956,283705 ,2,822,39970 ,2,14975,583380 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174365 ,2,14979,348860 ,1,0,293755 ,2,14956,283705 ,2,822,39970 ,2,14975,583380 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236055 ,2,14979,348880 ,1,0,294245 ,2,14956,283715 ,2,822,39970 ,2,14975,583380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348890 ,1,0,295175 ,2,14956,283725 ,2,822,39970 ,2,14975,583375 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,348870 ,1,0,295490 ,2,14956,278455 ,2,822,39990 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261745 ,2,14979,2415 ,1,0,295790 ,2,14956,278260 ,2,822,53680 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261745 ,2,14979,348900 ,1,0,296315 ,2,14956,283790 ,2,822,39990 ,2,14975,583390 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174460 ,2,14979,348920 ,1,0,296855 ,2,14956,283790 ,2,822,39990 ,2,14975,583390 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236100 ,2,14979,348955 ,1,0,297255 ,2,14956,283800 ,2,822,39990 ,2,14975,583390 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,348965 ,1,0,297455 ,2,14956,283810 ,2,822,39990 ,2,14975,583385 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,348930 ,1,0,297655 ,2,14956,278455 ,2,822,40010 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261755 ,2,14979,2415 ,1,0,298070 ,2,14956,278260 ,2,822,53690 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261755 ,2,14979,348975 ,1,0,298475 ,2,14956,283880 ,2,822,40010 ,2,14975,583430 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174520 ,2,14979,348995 ,1,0,299025 ,2,14956,283880 ,2,822,40010 ,2,14975,583430 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236110 ,2,14979,349015 ,1,0,299455 ,2,14956,283895 ,2,822,40010 ,2,14975,583430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349025 ,1,0,299850 ,2,14956,283905 ,2,822,40010 ,2,14975,583395 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349005 ,1,0,300395 ,2,14956,278455 ,2,822,40050 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261765 ,2,14979,2415 ,1,0,300935 ,2,14956,278260 ,2,822,53700 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261765 ,2,14979,349070 ,1,0,301465 ,2,14956,283990 ,2,822,40050 ,2,14975,583440 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174615 ,2,14979,349090 ,1,0,302000 ,2,14956,283990 ,2,822,40050 ,2,14975,583440 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236120 ,2,14979,349115 ,1,0,302545 ,2,14956,284000 ,2,822,40050 ,2,14975,583440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349125 ,1,0,302990 ,2,14956,284020 ,2,822,40050 ,2,14975,583435 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349100 ,1,0,303520 ,2,14956,278455 ,2,822,40070 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261775 ,2,14979,2415 ,1,0,304055 ,2,14956,278260 ,2,822,53710 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261775 ,2,14979,349135 ,1,0,304800 ,2,14956,284075 ,2,822,40070 ,2,14975,583450 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174725 ,2,14979,349175 ,1,0,305535 ,2,14956,284075 ,2,822,40070 ,2,14975,583450 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236130 ,2,14979,349195 ,1,0,305950 ,2,14956,284085 ,2,822,40070 ,2,14975,583450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349205 ,1,0,306285 ,2,14956,284095 ,2,822,40070 ,2,14975,583445 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349185 ,1,0,306595 ,2,14956,278455 ,2,822,40090 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261785 ,2,14979,2415 ,1,0,307210 ,2,14956,278260 ,2,822,53720 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261785 ,2,14979,349225 ,1,0,307825 ,2,14956,284155 ,2,822,40090 ,2,14975,583460 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174805 ,2,14979,349245 ,1,0,308255 ,2,14956,284155 ,2,822,40090 ,2,14975,583460 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236150 ,2,14979,349300 ,1,0,308460 ,2,14956,284165 ,2,822,40090 ,2,14975,583460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349310 ,1,0,308680 ,2,14956,284175 ,2,822,40090 ,2,14975,583455 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349255 ,1,0,308890 ,2,14956,278455 ,2,822,40110 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261815 ,2,14979,2415 ,1,0,309110 ,2,14956,278260 ,2,822,53730 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261815 ,2,14979,349320 ,1,0,309425 ,2,14956,284230 ,2,822,40110 ,2,14975,583485 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174865 ,2,14979,349340 ,1,0,309945 ,2,14956,284230 ,2,822,40110 ,2,14975,583485 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236160 ,2,14979,349360 ,1,0,310580 ,2,14956,284255 ,2,822,40110 ,2,14975,583485 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349370 ,1,0,310895 ,2,14956,284265 ,2,822,40110 ,2,14975,583465 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349350 ,1,0,311205 ,2,14956,278455 ,2,822,40140 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261825 ,2,14979,2415 ,1,0,311560 ,2,14956,278260 ,2,822,53740 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261825 ,2,14979,349390 ,1,0,311905 ,2,14956,284320 ,2,822,40140 ,2,14975,583495 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,174960 ,2,14979,349410 ,1,0,312255 ,2,14956,284320 ,2,822,40140 ,2,14975,583495 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236170 ,2,14979,349440 ,1,0,312455 ,2,14956,284330 ,2,822,40140 ,2,14975,583495 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349450 ,1,0,312695 ,2,14956,284360 ,2,822,40140 ,2,14975,583490 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349420 ,1,0,313115 ,2,14956,278455 ,2,822,40160 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261835 ,2,14979,2415 ,1,0,313440 ,2,14956,278260 ,2,822,53790 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261835 ,2,14979,349460 ,1,0,314065 ,2,14956,284415 ,2,822,40160 ,2,14975,583510 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175040 ,2,14979,349490 ,1,0,315000 ,2,14956,284415 ,2,822,40160 ,2,14975,583510 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236180 ,2,14979,349510 ,1,0,315405 ,2,14956,284425 ,2,822,40160 ,2,14975,583510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349520 ,1,0,315985 ,2,14956,284435 ,2,822,40160 ,2,14975,583500 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349500 ,1,0,316420 ,2,14956,278455 ,2,822,40180 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261845 ,2,14979,2415 ,1,0,316640 ,2,14956,278260 ,2,822,53800 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261845 ,2,14979,349535 ,1,0,317140 ,2,14956,284515 ,2,822,40180 ,2,14975,583520 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175145 ,2,14979,349555 ,1,0,317680 ,2,14956,284515 ,2,822,40180 ,2,14975,583520 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236210 ,2,14979,349595 ,1,0,318200 ,2,14956,284525 ,2,822,40180 ,2,14975,583520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349605 ,1,0,318545 ,2,14956,284535 ,2,822,40180 ,2,14975,583515 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349565 ,1,0,319555 ,2,14956,278455 ,2,822,40200 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261860 ,2,14979,2415 ,1,0,320585 ,2,14956,278260 ,2,822,53810 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261860 ,2,14979,349615 ,1,0,321125 ,2,14956,284615 ,2,822,40200 ,2,14975,583540 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175210 ,2,14979,349635 ,1,0,321525 ,2,14956,284615 ,2,822,40200 ,2,14975,583540 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236220 ,2,14979,349655 ,1,0,321860 ,2,14956,284630 ,2,822,40200 ,2,14975,583540 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349665 ,1,0,322380 ,2,14956,284640 ,2,822,40200 ,2,14975,583525 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349645 ,1,0,323005 ,2,14956,278455 ,2,822,40265 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261870 ,2,14979,2415 ,1,0,323440 ,2,14956,278260 ,2,822,53820 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261870 ,2,14979,349695 ,1,0,323745 ,2,14956,284710 ,2,822,40265 ,2,14975,583550 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175305 ,2,14979,349715 ,1,0,324980 ,2,14956,284710 ,2,822,40265 ,2,14975,583550 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236230 ,2,14979,349735 ,1,0,325395 ,2,14956,284720 ,2,822,40265 ,2,14975,583550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349745 ,1,0,326620 ,2,14956,284735 ,2,822,40265 ,2,14975,583545 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349725 ,1,0,328080 ,2,14956,278455 ,2,822,40285 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261880 ,2,14979,2415 ,1,0,329515 ,2,14956,278260 ,2,822,53835 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261880 ,2,14979,349755 ,1,0,331300 ,2,14956,284805 ,2,822,40285 ,2,14975,583560 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175375 ,2,14979,349790 ,1,0,333140 ,2,14956,284805 ,2,822,40285 ,2,14975,583560 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236240 ,2,14979,349810 ,1,0,333935 ,2,14956,284815 ,2,822,40285 ,2,14975,583560 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349820 ,1,0,334690 ,2,14956,284825 ,2,822,40285 ,2,14975,583555 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349800 ,1,0,335220 ,2,14956,278455 ,2,822,40310 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261890 ,2,14979,2415 ,1,0,335685 ,2,14956,278260 ,2,822,53845 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261890 ,2,14979,349840 ,1,0,336105 ,2,14956,284895 ,2,822,40310 ,2,14975,583570 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175475 ,2,14979,349860 ,1,0,336675 ,2,14956,284895 ,2,822,40310 ,2,14975,583570 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236250 ,2,14979,349900 ,1,0,337235 ,2,14956,284905 ,2,822,40310 ,2,14975,583570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349910 ,1,0,337680 ,2,14956,284915 ,2,822,40310 ,2,14975,583565 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349870 ,1,0,338210 ,2,14956,278455 ,2,822,40330 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261910 ,2,14979,2415 ,1,0,338665 ,2,14956,278260 ,2,822,53855 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261910 ,2,14979,349920 ,1,0,339225 ,2,14956,284970 ,2,822,40330 ,2,14975,583600 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175535 ,2,14979,349940 ,1,0,339745 ,2,14956,284970 ,2,822,40330 ,2,14975,583600 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236260 ,2,14979,349960 ,1,0,340165 ,2,14956,284995 ,2,822,40330 ,2,14975,583600 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,349970 ,1,0,340715 ,2,14956,285005 ,2,822,40330 ,2,14975,583575 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,349950 ,1,0,341045 ,2,14956,278455 ,2,822,40390 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261920 ,2,14979,2415 ,1,0,341345 ,2,14956,278260 ,2,822,53865 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261920 ,2,14979,350005 ,1,0,341680 ,2,14956,285055 ,2,822,40390 ,2,14975,583610 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175605 ,2,14979,350025 ,1,0,342200 ,2,14956,285055 ,2,822,40390 ,2,14975,583610 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236270 ,2,14979,350045 ,1,0,342625 ,2,14956,285065 ,2,822,40390 ,2,14975,583610 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350055 ,1,0,343045 ,2,14956,285105 ,2,822,40390 ,2,14975,583605 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350035 ,1,0,343375 ,2,14956,278455 ,2,822,40410 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261930 ,2,14979,2415 ,1,0,343770 ,2,14956,278260 ,2,822,53900 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261930 ,2,14979,350065 ,1,0,344090 ,2,14956,285160 ,2,822,40410 ,2,14975,583620 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175685 ,2,14979,350090 ,1,0,344640 ,2,14956,285160 ,2,822,40410 ,2,14975,583620 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236280 ,2,14979,350110 ,1,0,345080 ,2,14956,285170 ,2,822,40410 ,2,14975,583620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350120 ,1,0,345415 ,2,14956,285180 ,2,822,40410 ,2,14975,583615 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350100 ,1,0,345925 ,2,14956,278455 ,2,822,40440 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261940 ,2,14979,2415 ,1,0,346485 ,2,14956,278260 ,2,822,53910 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261940 ,2,14979,350140 ,1,0,346810 ,2,14956,285250 ,2,822,40440 ,2,14975,583630 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175770 ,2,14979,350160 ,1,0,347235 ,2,14956,285250 ,2,822,40440 ,2,14975,583630 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236310 ,2,14979,350220 ,1,0,347555 ,2,14956,285260 ,2,822,40440 ,2,14975,583630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350230 ,1,0,347895 ,2,14956,285270 ,2,822,40440 ,2,14975,583625 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350170 ,1,0,348110 ,2,14956,278455 ,2,822,40460 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261965 ,2,14979,2415 ,1,0,348320 ,2,14956,278260 ,2,822,53920 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261965 ,2,14979,350240 ,1,0,348750 ,2,14956,285350 ,2,822,40460 ,2,14975,583655 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175830 ,2,14979,350265 ,1,0,349280 ,2,14956,285350 ,2,822,40460 ,2,14975,583655 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236320 ,2,14979,350285 ,1,0,349685 ,2,14956,285365 ,2,822,40460 ,2,14975,583655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350295 ,1,0,350185 ,2,14956,285375 ,2,822,40460 ,2,14975,583635 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350275 ,1,0,350535 ,2,14956,278455 ,2,822,40500 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261975 ,2,14979,2415 ,1,0,350880 ,2,14956,278260 ,2,822,53930 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261975 ,2,14979,350320 ,1,0,351080 ,2,14956,285435 ,2,822,40500 ,2,14975,583665 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,175930 ,2,14979,350340 ,1,0,351415 ,2,14956,285435 ,2,822,40500 ,2,14975,583665 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236330 ,2,14979,350365 ,1,0,351730 ,2,14956,285445 ,2,822,40500 ,2,14975,583665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350375 ,1,0,352045 ,2,14956,285455 ,2,822,40500 ,2,14975,583660 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350350 ,1,0,352920 ,2,14956,278455 ,2,822,40520 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261985 ,2,14979,2415 ,1,0,353250 ,2,14956,278260 ,2,822,53950 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261985 ,2,14979,350385 ,1,0,354435 ,2,14956,285530 ,2,822,40520 ,2,14975,583675 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176015 ,2,14979,350445 ,1,0,355710 ,2,14956,285530 ,2,822,40520 ,2,14975,583675 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236340 ,2,14979,350465 ,1,0,357480 ,2,14956,285540 ,2,822,40520 ,2,14975,583675 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350475 ,1,0,357905 ,2,14956,285550 ,2,822,40520 ,2,14975,583670 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350455 ,1,0,358225 ,2,14956,278455 ,2,822,40540 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261995 ,2,14979,2415 ,1,0,358760 ,2,14956,278260 ,2,822,53960 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,261995 ,2,14979,350490 ,1,0,359070 ,2,14956,285635 ,2,822,40540 ,2,14975,583685 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176105 ,2,14979,350510 ,1,0,359600 ,2,14956,285635 ,2,822,40540 ,2,14975,583685 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236360 ,2,14979,350555 ,1,0,359920 ,2,14956,285645 ,2,822,40540 ,2,14975,583685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350565 ,1,0,360240 ,2,14956,285655 ,2,822,40540 ,2,14975,583680 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350520 ,1,0,360660 ,2,14956,278455 ,2,822,40560 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262040 ,2,14979,2415 ,1,0,361085 ,2,14956,278260 ,2,822,53970 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262040 ,2,14979,350575 ,1,0,361910 ,2,14956,285715 ,2,822,40560 ,2,14975,583745 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176170 ,2,14979,350600 ,1,0,362520 ,2,14956,285715 ,2,822,40560 ,2,14975,583745 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236370 ,2,14979,350620 ,1,0,363195 ,2,14956,285755 ,2,822,40560 ,2,14975,583745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350630 ,1,0,363865 ,2,14956,285765 ,2,822,40560 ,2,14975,583690 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350610 ,1,0,364425 ,2,14956,278455 ,2,822,40600 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262050 ,2,14979,2415 ,1,0,364625 ,2,14956,278260 ,2,822,53980 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262050 ,2,14979,350655 ,1,0,364960 ,2,14956,285820 ,2,822,40600 ,2,14975,583755 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176250 ,2,14979,350675 ,1,0,365290 ,2,14956,285820 ,2,822,40600 ,2,14975,583755 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236380 ,2,14979,350700 ,1,0,365835 ,2,14956,285830 ,2,822,40600 ,2,14975,583755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350710 ,1,0,366450 ,2,14956,285855 ,2,822,40600 ,2,14975,583750 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350685 ,1,0,366985 ,2,14956,278455 ,2,822,40620 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262060 ,2,14979,2415 ,1,0,367525 ,2,14956,278260 ,2,822,54020 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262060 ,2,14979,350720 ,1,0,367955 ,2,14956,285905 ,2,822,40620 ,2,14975,583765 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176340 ,2,14979,350780 ,1,0,368465 ,2,14956,285905 ,2,822,40620 ,2,14975,583765 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236390 ,2,14979,350800 ,1,0,368895 ,2,14956,285915 ,2,822,40620 ,2,14975,583765 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350810 ,1,0,369330 ,2,14956,285925 ,2,822,40620 ,2,14975,583760 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350790 ,1,0,369740 ,2,14956,278455 ,2,822,40640 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262070 ,2,14979,2415 ,1,0,370265 ,2,14956,278260 ,2,822,54030 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262070 ,2,14979,350825 ,1,0,370580 ,2,14956,285985 ,2,822,40640 ,2,14975,583775 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176445 ,2,14979,350845 ,1,0,371200 ,2,14956,285985 ,2,822,40640 ,2,14975,583775 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236415 ,2,14979,350895 ,1,0,371730 ,2,14956,285995 ,2,822,40640 ,2,14975,583775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350905 ,1,0,372065 ,2,14956,286005 ,2,822,40640 ,2,14975,583770 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350855 ,1,0,372370 ,2,14956,278455 ,2,822,40660 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262080 ,2,14979,2415 ,1,0,372685 ,2,14956,278260 ,2,822,54040 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262080 ,2,14979,350915 ,1,0,373110 ,2,14956,286075 ,2,822,40660 ,2,14975,583805 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176505 ,2,14979,350940 ,1,0,373610 ,2,14956,286075 ,2,822,40660 ,2,14975,583805 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236425 ,2,14979,350960 ,1,0,374030 ,2,14956,286090 ,2,822,40660 ,2,14975,583805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,350970 ,1,0,374450 ,2,14956,286100 ,2,822,40660 ,2,14975,583780 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,350950 ,1,0,374870 ,2,14956,278455 ,2,822,40710 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262090 ,2,14979,2415 ,1,0,375180 ,2,14956,278260 ,2,822,54050 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262090 ,2,14979,350985 ,1,0,375450 ,2,14956,286170 ,2,822,40710 ,2,14975,583815 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176595 ,2,14979,351005 ,1,0,375685 ,2,14956,286170 ,2,822,40710 ,2,14975,583815 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236435 ,2,14979,351025 ,1,0,376000 ,2,14956,286180 ,2,822,40710 ,2,14975,583815 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351035 ,1,0,376305 ,2,14956,286205 ,2,822,40710 ,2,14975,583810 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351015 ,1,0,376600 ,2,14956,278455 ,2,822,40730 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262100 ,2,14979,2415 ,1,0,376905 ,2,14956,278260 ,2,822,54065 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262100 ,2,14979,351045 ,1,0,377090 ,2,14956,286265 ,2,822,40730 ,2,14975,583835 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176685 ,2,14979,351100 ,1,0,377410 ,2,14956,286265 ,2,822,40730 ,2,14975,583835 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236445 ,2,14979,351120 ,1,0,377650 ,2,14956,286275 ,2,822,40730 ,2,14975,583835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351130 ,1,0,377840 ,2,14956,286285 ,2,822,40730 ,2,14975,583820 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351110 ,1,0,378180 ,2,14956,278455 ,2,822,40750 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262110 ,2,14979,2415 ,1,0,378490 ,2,14956,278260 ,2,822,54075 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262110 ,2,14979,351145 ,1,0,378665 ,2,14956,286370 ,2,822,40750 ,2,14975,583845 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176780 ,2,14979,351165 ,1,0,378905 ,2,14956,286370 ,2,822,40750 ,2,14975,583845 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236455 ,2,14979,351200 ,1,0,379035 ,2,14956,286380 ,2,822,40750 ,2,14975,583845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351210 ,1,0,379280 ,2,14956,286390 ,2,822,40750 ,2,14975,583840 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351175 ,1,0,379460 ,2,14956,278455 ,2,822,40770 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262135 ,2,14979,2415 ,1,0,379635 ,2,14956,278260 ,2,822,54085 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262135 ,2,14979,351220 ,1,0,379940 ,2,14956,286450 ,2,822,40770 ,2,14975,583875 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176840 ,2,14979,351245 ,1,0,380205 ,2,14956,286450 ,2,822,40770 ,2,14975,583875 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236465 ,2,14979,351265 ,1,0,380475 ,2,14956,286485 ,2,822,40770 ,2,14975,583875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351275 ,1,0,380720 ,2,14956,286495 ,2,822,40770 ,2,14975,583850 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351255 ,1,0,380955 ,2,14956,278455 ,2,822,40800 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262145 ,2,14979,2415 ,1,0,381150 ,2,14956,278260 ,2,822,54095 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262145 ,2,14979,351320 ,1,0,381340 ,2,14956,286545 ,2,822,40800 ,2,14975,583885 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,176930 ,2,14979,351340 ,1,0,381525 ,2,14956,286545 ,2,822,40800 ,2,14975,583885 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236475 ,2,14979,351360 ,1,0,381765 ,2,14956,286555 ,2,822,40800 ,2,14975,583885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351370 ,1,0,381945 ,2,14956,286605 ,2,822,40800 ,2,14975,583880 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351350 ,1,0,382125 ,2,14956,278455 ,2,822,40820 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262155 ,2,14979,2415 ,1,0,382240 ,2,14956,278260 ,2,822,54125 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262155 ,2,14979,351380 ,1,0,382435 ,2,14956,286660 ,2,822,40820 ,2,14975,583895 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,177015 ,2,14979,351445 ,1,0,382610 ,2,14956,286660 ,2,822,40820 ,2,14975,583895 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236485 ,2,14979,351465 ,1,0,382920 ,2,14956,286670 ,2,822,40820 ,2,14975,583895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351475 ,1,0,383290 ,2,14956,286680 ,2,822,40820 ,2,14975,583890 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351455 ,1,0,383595 ,2,14956,278455 ,2,822,40840 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262165 ,2,14979,2415 ,1,0,383855 ,2,14956,278260 ,2,822,54135 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262165 ,2,14979,351485 ,1,0,383985 ,2,14956,286750 ,2,822,40840 ,2,14975,583905 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,177090 ,2,14979,351505 ,1,0,384255 ,2,14956,286750 ,2,822,40840 ,2,14975,583905 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236545 ,2,14979,351540 ,1,0,384435 ,2,14956,286760 ,2,822,40840 ,2,14975,583905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351550 ,1,0,384615 ,2,14956,286770 ,2,822,40840 ,2,14975,583900 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351515 ,1,0,384925 ,2,14956,278455 ,2,822,40860 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262175 ,2,14979,2415 ,1,0,385155 ,2,14956,278260 ,2,822,54145 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262175 ,2,14979,351560 ,1,0,385265 ,2,14956,286825 ,2,822,40860 ,2,14975,583940 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,177155 ,2,14979,351580 ,1,0,385400 ,2,14956,286825 ,2,822,40860 ,2,14975,583940 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236555 ,2,14979,351600 ,1,0,385700 ,2,14956,286835 ,2,822,40860 ,2,14975,583940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351610 ,1,0,385950 ,2,14956,286845 ,2,822,40860 ,2,14975,583910 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351590 ,1,0,386315 ,2,14956,278455 ,2,822,40905 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262185 ,2,14979,2415 ,1,0,386605 ,2,14956,278260 ,2,822,54155 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262185 ,2,14979,351645 ,1,0,386860 ,2,14956,286925 ,2,822,40905 ,2,14975,583950 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,177245 ,2,14979,351665 ,1,0,387080 ,2,14956,286925 ,2,822,40905 ,2,14975,583950 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236565 ,2,14979,351685 ,1,0,387260 ,2,14956,286935 ,2,822,40905 ,2,14975,583950 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351695 ,1,0,387450 ,2,14956,286945 ,2,822,40905 ,2,14975,583945 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351675 ,1,0,387635 ,2,14956,278455 ,2,822,40925 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262195 ,2,14979,2415 ,1,0,387950 ,2,14956,278260 ,2,822,54170 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262195 ,2,14979,351705 ,1,0,388205 ,2,14956,287015 ,2,822,40925 ,2,14975,583960 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,177330 ,2,14979,351755 ,1,0,388480 ,2,14956,287015 ,2,822,40925 ,2,14975,583960 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236575 ,2,14979,351775 ,1,0,388735 ,2,14956,287025 ,2,822,40925 ,2,14975,583960 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351785 ,1,0,388905 ,2,14956,287035 ,2,822,40925 ,2,14975,583955 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351765 ,1,0,389145 ,2,14956,278455 ,2,822,40945 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262205 ,2,14979,2415 ,1,0,389375 ,2,14956,278260 ,2,822,54180 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262205 ,2,14979,351795 ,1,0,389640 ,2,14956,287115 ,2,822,40945 ,2,14975,583970 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,177435 ,2,14979,351815 ,1,0,389900 ,2,14956,287115 ,2,822,40945 ,2,14975,583970 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,236585 ,2,14979,351855 ,1,0,390090 ,2,14956,287125 ,2,822,40945 ,2,14975,583970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351865 ,1,0,390395 ,2,14956,287135 ,2,822,40945 ,2,14975,583965 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,351825 ,1,0,390655 ,2,14956,278455 ,2,822,40965 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262245 ,2,14979,2415 ,1,0,390905 ,2,14956,278260 ,2,822,54190 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262245 ,2,14979,351885 ,1,0,391160 ,2,14956,187540 ,2,822,40965 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382055 ,1,0,391380 ,2,14956,287240 ,2,822,40965 ,2,14975,583975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351905 ,1,0,391565 ,2,14956,287265 ,2,822,40965 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262255 ,2,14979,393040 ,1,0,391800 ,2,14956,278455 ,2,822,41035 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262265 ,2,14979,2415 ,1,0,392040 ,2,14956,278260 ,2,822,54200 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262265 ,2,14979,351915 ,1,0,392390 ,2,14956,187540 ,2,822,41035 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382050 ,1,0,392580 ,2,14956,287345 ,2,822,41035 ,2,14975,584020 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,351955 ,1,0,392825 ,2,14956,287265 ,2,822,41035 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262275 ,2,14979,393035 ,1,0,393090 ,2,14956,278455 ,2,822,41060 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262285 ,2,14979,2415 ,1,0,393380 ,2,14956,278260 ,2,822,54255 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262285 ,2,14979,351965 ,1,0,393695 ,2,14956,287395 ,2,822,41060 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262295 ,2,14979,2415 ,1,0,393990 ,2,14956,287375 ,2,822,54245 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262295 ,2,14979,351975 ,1,0,394240 ,2,14956,287450 ,2,822,54265 ,2,14975,584045 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262305 ,2,14979,351995 ,1,0,394495 ,2,14956,287475 ,2,822,54275 ,2,14975,582590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262315 ,2,14979,352005 ,1,0,394820 ,2,14956,287495 ,2,822,41070 ,2,14975,582590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352015 ,1,0,395185 ,2,14956,287535 ,2,822,41070 ,2,14975,582590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352025 ,1,0,395570 ,2,14956,287545 ,2,822,41070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352055 ,1,0,395860 ,2,14956,287555 ,2,822,41070 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352065 ,1,0,396165 ,2,14956,287565 ,2,822,41070 ,2,14975,582590 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,396530 ,2,14956,287580 ,2,822,41070 ,2,14975,582590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352110 ,1,0,396765 ,2,14956,287590 ,2,822,41070 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352120 ,1,0,397050 ,2,14956,287600 ,2,822,41070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352130 ,1,0,397155 ,2,14956,287630 ,2,822,41070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,262340 ,2,14979,2415 ,1,0,397420 ,2,14956,287640 ,2,822,41070 ,2,14975,584040 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352160 ,1,0,397730 ,2,14956,287650 ,2,822,41070 ,2,14975,582590 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352100 ,1,0,398110 ,2,14956,287660 ,2,822,41070 ,2,14975,584045 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262305 ,2,14979,2415 ,1,0,398495 ,2,14956,187540 ,2,822,41070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352170 ,1,0,398895 ,2,14956,287670 ,2,822,41070 ,2,14975,582590 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,352085 ,1,0,399195 ,2,14956,287680 ,2,822,41070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352075 ,1,0,399520 ,2,14956,287690 ,2,822,41070 ,2,14975,582590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262315 ,2,14979,2415 ,1,0,399760 ,2,14956,200320 ,2,822,41070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352180 ,1,0,399995 ,2,14956,287755 ,2,822,54295 ,2,14975,582590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262350 ,2,14979,352190 ,1,0,400230 ,2,14956,287775 ,2,822,41060 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352220 ,1,0,400590 ,2,14956,187540 ,2,822,41060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382045 ,1,0,400980 ,2,14956,287785 ,2,822,41060 ,2,14975,584030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352230 ,1,0,401220 ,2,14956,287265 ,2,822,41060 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262360 ,2,14979,393030 ,1,0,401625 ,2,14956,287795 ,2,822,41060 ,2,14975,582590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262350 ,2,14979,2415 ,1,0,402010 ,2,14956,278455 ,2,822,41120 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262370 ,2,14979,2415 ,1,0,402450 ,2,14956,278260 ,2,822,54305 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262370 ,2,14979,352240 ,1,0,402870 ,2,14956,187540 ,2,822,41120 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382040 ,1,0,403260 ,2,14956,287875 ,2,822,41120 ,2,14975,584065 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,403580 ,2,14956,287265 ,2,822,41120 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262390 ,2,14979,415845 ,1,0,403930 ,2,14956,278455 ,2,822,41140 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262400 ,2,14979,2415 ,1,0,404235 ,2,14956,278260 ,2,822,54315 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262400 ,2,14979,352275 ,1,0,404565 ,2,14956,187540 ,2,822,41140 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382035 ,1,0,404890 ,2,14956,287935 ,2,822,41140 ,2,14975,584070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,405275 ,2,14956,287265 ,2,822,41140 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262410 ,2,14979,393020 ,1,0,405595 ,2,14956,278455 ,2,822,41165 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262420 ,2,14979,2415 ,1,0,405925 ,2,14956,278260 ,2,822,54325 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262420 ,2,14979,352295 ,1,0,406250 ,2,14956,288000 ,2,822,41175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352320 ,1,0,406665 ,2,14956,288010 ,2,822,41175 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352330 ,1,0,406975 ,2,14956,288045 ,2,822,41175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352350 ,1,0,407260 ,2,14956,288055 ,2,822,41175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352385 ,1,0,407640 ,2,14956,288065 ,2,822,41175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352340 ,1,0,407985 ,2,14956,288075 ,2,822,41175 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352395 ,1,0,408300 ,2,14956,281970 ,2,822,41175 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352415 ,1,0,408620 ,2,14956,287600 ,2,822,41175 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352405 ,1,0,409020 ,2,14956,187540 ,2,822,41175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382030 ,1,0,409295 ,2,14956,288085 ,2,822,41175 ,2,14975,584090 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,352425 ,1,0,409490 ,2,14956,173175 ,2,822,41175 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262440 ,2,14979,416925 ,1,0,409750 ,2,14956,288145 ,2,822,41165 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392305 ,1,0,409985 ,2,14956,288155 ,2,822,41165 ,2,14975,584075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352435 ,1,0,410260 ,2,14956,287265 ,2,822,41165 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262450 ,2,14979,415840 ,1,0,410595 ,2,14956,278455 ,2,822,41240 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262460 ,2,14979,2415 ,1,0,410980 ,2,14956,278260 ,2,822,54360 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262460 ,2,14979,352445 ,1,0,411240 ,2,14956,288145 ,2,822,41240 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392300 ,1,0,411605 ,2,14956,288205 ,2,822,41240 ,2,14975,584095 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352510 ,1,0,411940 ,2,14956,287265 ,2,822,41240 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262470 ,2,14979,415835 ,1,0,412275 ,2,14956,278455 ,2,822,41260 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262480 ,2,14979,2415 ,1,0,412515 ,2,14956,278260 ,2,822,54380 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262480 ,2,14979,352520 ,1,0,412800 ,2,14956,288265 ,2,822,41260 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262490 ,2,14979,2415 ,1,0,412980 ,2,14956,288245 ,2,822,54370 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262490 ,2,14979,352530 ,1,0,413250 ,2,14956,288295 ,2,822,41260 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352555 ,1,0,413435 ,2,14956,288305 ,2,822,41260 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,352565 ,1,0,413715 ,2,14956,287265 ,2,822,41260 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393015 ,1,0,414070 ,2,14956,288340 ,2,822,41260 ,2,14975,584100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,352575 ,1,0,414385 ,2,14956,278455 ,2,822,41280 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262500 ,2,14979,2415 ,1,0,414635 ,2,14956,278260 ,2,822,54390 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262500 ,2,14979,352585 ,1,0,414985 ,2,14956,288390 ,2,822,41280 ,2,14975,599970 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,415180 ,2,14956,288400 ,2,822,41280 ,2,14975,599970 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,415490 ,2,14956,288410 ,2,822,41280 ,2,14975,599970 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,415795 ,2,14956,281685 ,2,822,41280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399785 ,1,0,416035 ,2,14956,288145 ,2,822,41280 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392295 ,1,0,416370 ,2,14956,288435 ,2,822,41280 ,2,14975,584105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352615 ,1,0,416670 ,2,14956,287265 ,2,822,41280 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262510 ,2,14979,415830 ,1,0,416965 ,2,14956,278455 ,2,822,41300 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262535 ,2,14979,2415 ,1,0,417350 ,2,14956,278260 ,2,822,54405 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262535 ,2,14979,352625 ,1,0,417615 ,2,14956,288145 ,2,822,41300 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392290 ,1,0,417835 ,2,14956,288495 ,2,822,41300 ,2,14975,584135 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352645 ,1,0,418090 ,2,14956,287265 ,2,822,41300 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262545 ,2,14979,415825 ,1,0,418335 ,2,14956,278455 ,2,822,41345 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262555 ,2,14979,2415 ,1,0,418585 ,2,14956,278260 ,2,822,54415 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262555 ,2,14979,352655 ,1,0,418900 ,2,14956,288145 ,2,822,41345 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392285 ,1,0,419275 ,2,14956,288570 ,2,822,41345 ,2,14975,584140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352675 ,1,0,419675 ,2,14956,287265 ,2,822,41345 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262565 ,2,14979,415820 ,1,0,419960 ,2,14956,278455 ,2,822,41365 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262575 ,2,14979,2415 ,1,0,420310 ,2,14956,278260 ,2,822,54425 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262575 ,2,14979,352690 ,1,0,420710 ,2,14956,288145 ,2,822,41365 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392275 ,1,0,421100 ,2,14956,288620 ,2,822,41365 ,2,14975,584145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352710 ,1,0,421365 ,2,14956,287265 ,2,822,41365 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262585 ,2,14979,415775 ,1,0,421485 ,2,14956,278455 ,2,822,41390 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262595 ,2,14979,2415 ,1,0,421750 ,2,14956,278260 ,2,822,54435 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262595 ,2,14979,352720 ,1,0,422105 ,2,14956,288145 ,2,822,41390 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392270 ,1,0,422525 ,2,14956,288685 ,2,822,41390 ,2,14975,584150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352750 ,1,0,422795 ,2,14956,287265 ,2,822,41390 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262605 ,2,14979,415770 ,1,0,423035 ,2,14956,278455 ,2,822,41410 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262640 ,2,14979,2415 ,1,0,423435 ,2,14956,278260 ,2,822,54465 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262640 ,2,14979,352760 ,1,0,423760 ,2,14956,288145 ,2,822,41410 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392265 ,1,0,424110 ,2,14956,288760 ,2,822,41410 ,2,14975,584160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352820 ,1,0,424355 ,2,14956,287265 ,2,822,41410 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262650 ,2,14979,415765 ,1,0,424605 ,2,14956,278455 ,2,822,41465 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262660 ,2,14979,2415 ,1,0,425025 ,2,14956,278260 ,2,822,54475 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262660 ,2,14979,352830 ,1,0,425400 ,2,14956,288145 ,2,822,41465 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392260 ,1,0,425830 ,2,14956,288815 ,2,822,41465 ,2,14975,584165 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410230 ,1,0,426105 ,2,14956,287265 ,2,822,41465 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262670 ,2,14979,393010 ,1,0,426385 ,2,14956,278455 ,2,822,41485 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262685 ,2,14979,2415 ,1,0,426655 ,2,14956,278260 ,2,822,54485 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262685 ,2,14979,352850 ,1,0,426910 ,2,14956,287265 ,2,822,41485 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393005 ,1,0,427090 ,2,14956,288880 ,2,822,41485 ,2,14975,584170 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,352875 ,1,0,427390 ,2,14956,278455 ,2,822,41505 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262695 ,2,14979,2415 ,1,0,427705 ,2,14956,278260 ,2,822,54495 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262695 ,2,14979,352885 ,1,0,427900 ,2,14956,288915 ,2,822,54505 ,2,14975,584200 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262705 ,2,14979,352925 ,1,0,428150 ,2,14956,288970 ,2,822,41515 ,2,14975,584200 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262705 ,2,14979,2415 ,1,0,428345 ,2,14956,278425 ,2,822,41505 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399790 ,1,0,428775 ,2,14956,287265 ,2,822,41505 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392995 ,1,0,428935 ,2,14956,289025 ,2,822,41505 ,2,14975,584175 ,2,14976,24120 ,2,14977,110695 ,2,14965,45 ,2,14978,45 ,2,14979,352935 ,1,0,429115 ,2,14956,278455 ,2,822,41525 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262715 ,2,14979,2415 ,1,0,429375 ,2,14956,278260 ,2,822,54515 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262715 ,2,14979,352955 ,1,0,429690 ,2,14956,281685 ,2,822,41540 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399610 ,1,0,429875 ,2,14956,278425 ,2,822,41540 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399685 ,1,0,430125 ,2,14956,187540 ,2,822,41540 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381965 ,1,0,430405 ,2,14956,281695 ,2,822,41540 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262750 ,2,14979,417115 ,1,0,430655 ,2,14956,278455 ,2,822,41570 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262760 ,2,14979,2415 ,1,0,430920 ,2,14956,278260 ,2,822,54525 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262760 ,2,14979,352980 ,1,0,431240 ,2,14956,281685 ,2,822,41570 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399665 ,1,0,431500 ,2,14956,278425 ,2,822,41570 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399720 ,1,0,431735 ,2,14956,187540 ,2,822,41570 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412370 ,1,0,431995 ,2,14956,289190 ,2,822,41570 ,2,14975,584225 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,353000 ,1,0,432275 ,2,14956,281695 ,2,822,41570 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262770 ,2,14979,417140 ,1,0,432470 ,2,14956,278455 ,2,822,41590 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262780 ,2,14979,2415 ,1,0,432690 ,2,14956,278260 ,2,822,54535 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262780 ,2,14979,353060 ,1,0,432880 ,2,14956,289260 ,2,822,41590 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,353080 ,1,0,433065 ,2,14956,289270 ,2,822,41590 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,353090 ,1,0,433260 ,2,14956,281685 ,2,822,41590 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399660 ,1,0,433460 ,2,14956,278425 ,2,822,41590 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399715 ,1,0,433665 ,2,14956,187540 ,2,822,41590 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381995 ,1,0,433855 ,2,14956,281695 ,2,822,41590 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399800 ,1,0,434035 ,2,14956,289280 ,2,822,41590 ,2,14975,584230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353105 ,1,0,434290 ,2,14956,278455 ,2,822,41610 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262790 ,2,14979,2415 ,1,0,434480 ,2,14956,278260 ,2,822,54560 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262790 ,2,14979,353115 ,1,0,434735 ,2,14956,281685 ,2,822,41610 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399655 ,1,0,434945 ,2,14956,278425 ,2,822,41610 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399710 ,1,0,435135 ,2,14956,187540 ,2,822,41610 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381990 ,1,0,435275 ,2,14956,281695 ,2,822,41610 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417135 ,1,0,435545 ,2,14956,278455 ,2,822,41650 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262800 ,2,14979,2415 ,1,0,435810 ,2,14956,278260 ,2,822,54570 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262800 ,2,14979,353135 ,1,0,436060 ,2,14956,278455 ,2,822,41670 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262810 ,2,14979,2415 ,1,0,436280 ,2,14956,278260 ,2,822,54580 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262810 ,2,14979,353170 ,1,0,436540 ,2,14956,289435 ,2,822,41670 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,353190 ,1,0,436755 ,2,14956,289465 ,2,822,41670 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,353205 ,1,0,436930 ,2,14956,281685 ,2,822,41670 ,2,14975,599970 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,399650 ,1,0,437220 ,2,14956,278425 ,2,822,41670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399700 ,1,0,437420 ,2,14956,187540 ,2,822,41670 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381985 ,1,0,437985 ,2,14956,289475 ,2,822,41670 ,2,14975,584260 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,410235 ,1,0,438190 ,2,14956,281695 ,2,822,41670 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262820 ,2,14979,417130 ,1,0,438650 ,2,14956,278455 ,2,822,41690 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262845 ,2,14979,2415 ,1,0,438850 ,2,14956,278260 ,2,822,54590 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262845 ,2,14979,353225 ,1,0,439015 ,2,14956,278455 ,2,822,41765 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262855 ,2,14979,2415 ,1,0,439215 ,2,14956,278260 ,2,822,54605 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262855 ,2,14979,353265 ,1,0,439690 ,2,14956,278455 ,2,822,41785 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262865 ,2,14979,2415 ,1,0,440180 ,2,14956,278260 ,2,822,54615 ,2,14975,582485 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262865 ,2,14979,353285 ,1,0,440620 ,2,14956,289695 ,2,822,41785 ,2,14975,584285 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353305 ,1,0,440810 ,2,14956,289720 ,2,822,38930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345260 ,1,0,441005 ,2,14956,289730 ,2,822,38645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345250 ,1,0,441340 ,2,14956,289740 ,2,822,38645 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,345240 ,1,0,441645 ,2,14956,289750 ,2,822,38645 ,2,14975,582505 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345210 ,1,0,441905 ,2,14956,289780 ,2,822,38645 ,2,14975,582505 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,345165 ,1,0,442245 ,2,14956,240275 ,2,822,38645 ,2,14975,610920 ,2,14976,23130 ,2,14977,23120 ,2,14965,551585 ,2,14978,45 ,2,14979,345155 ,1,0,442490 ,2,14956,2855 ,2,822,41815 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392535 ,1,0,442760 ,2,14956,289840 ,2,822,41815 ,2,14975,582460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,353315 ,1,0,443210 ,2,14956,167780 ,2,822,41815 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262875 ,2,14979,410515 ,1,0,443480 ,2,14956,289895 ,2,822,41825 ,2,14975,584015 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353325 ,1,0,443865 ,2,14956,289945 ,2,822,41890 ,2,14975,582895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353335 ,1,0,444220 ,2,14956,290005 ,2,822,41935 ,2,14975,582935 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353370 ,1,0,444480 ,2,14956,290025 ,2,822,41970 ,2,14975,582950 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353380 ,1,0,444870 ,2,14956,290060 ,2,822,41990 ,2,14975,582980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353390 ,1,0,445220 ,2,14956,175910 ,2,822,38605 ,2,14975,559345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262885 ,2,14979,413780 ,1,0,445645 ,2,14956,290145 ,2,822,38575 ,2,14975,582405 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353430 ,1,0,446085 ,2,14956,290195 ,2,822,38575 ,2,14975,559345 ,2,14976,23450 ,2,14977,111940 ,2,14965,45 ,2,14978,45 ,2,14979,353440 ,1,0,446345 ,2,14956,290330 ,2,822,38575 ,2,14975,582375 ,2,14976,23450 ,2,14977,111950 ,2,14965,45 ,2,14978,45 ,2,14979,353475 ,1,0,446535 ,2,14956,290205 ,2,822,38575 ,2,14975,582385 ,2,14976,24020 ,2,14977,111970 ,2,14965,45 ,2,14978,45 ,2,14979,353485 ,1,0,446725 ,2,14956,175910 ,2,822,38575 ,2,14975,584410 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262895 ,2,14979,413685 ,1,0,447005 ,2,14956,290195 ,2,822,42000 ,2,14975,599880 ,2,14976,23450 ,2,14977,111940 ,2,14965,45 ,2,14978,45 ,2,14979,353505 ,1,0,447210 ,2,14956,290230 ,2,822,42000 ,2,14975,561570 ,2,14976,23450 ,2,14977,111940 ,2,14965,45 ,2,14978,45 ,2,14979,353525 ,1,0,447485 ,2,14956,290330 ,2,822,42000 ,2,14975,582375 ,2,14976,23450 ,2,14977,112015 ,2,14965,45 ,2,14978,45 ,2,14979,353535 ,1,0,447800 ,2,14956,290250 ,2,822,42000 ,2,14975,582375 ,2,14976,23450 ,2,14977,112015 ,2,14965,45 ,2,14978,45 ,2,14979,353545 ,1,0,448130 ,2,14956,290290 ,2,822,42010 ,2,14975,584425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,448460 ,2,14956,2855 ,2,822,38525 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414955 ,1,0,448705 ,2,14956,2855 ,2,822,38080 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389810 ,1,0,449020 ,2,14956,6870 ,2,822,38080 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354920 ,1,0,449285 ,2,14956,174935 ,2,822,38080 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394210 ,1,0,449490 ,2,14956,175265 ,2,822,38080 ,2,14975,584465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393045 ,1,0,449720 ,2,14956,174925 ,2,822,38080 ,2,14975,584470 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381070 ,1,0,450005 ,2,14956,166935 ,2,822,38080 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379260 ,1,0,450175 ,2,14956,10665 ,2,822,38080 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382360 ,1,0,450410 ,2,14956,166515 ,2,822,38080 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377255 ,1,0,450590 ,2,14956,166680 ,2,822,38080 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377370 ,1,0,450820 ,2,14956,290555 ,2,822,38080 ,2,14975,581900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410240 ,1,0,451030 ,2,14956,218310 ,2,822,42020 ,2,14975,569315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262905 ,2,14979,410245 ,1,0,451405 ,2,14956,217015 ,2,822,42020 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379565 ,1,0,451610 ,2,14956,215285 ,2,822,42020 ,2,14975,584480 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378825 ,1,0,451745 ,2,14956,2855 ,2,822,42080 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415355 ,1,0,451865 ,2,14956,211025 ,2,822,42040 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377880 ,1,0,452000 ,2,14956,290690 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353620 ,1,0,452120 ,2,14956,290710 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353640 ,1,0,452250 ,2,14956,290720 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353650 ,1,0,452430 ,2,14956,290730 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353680 ,1,0,452640 ,2,14956,290740 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353630 ,1,0,452915 ,2,14956,213325 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370600 ,1,0,453120 ,2,14956,290750 ,2,822,42040 ,2,14975,561515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353690 ,1,0,453350 ,2,14956,207085 ,2,822,42040 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378580 ,1,0,453560 ,2,14956,290760 ,2,822,42040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353700 ,1,0,453790 ,2,14956,290770 ,2,822,42040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353710 ,1,0,453970 ,2,14956,290780 ,2,822,42040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353725 ,1,0,454220 ,2,14956,290820 ,2,822,42040 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,353735 ,1,0,454435 ,2,14956,290830 ,2,822,42040 ,2,14975,584495 ,2,14976,34765 ,2,14977,112335 ,2,14965,45 ,2,14978,45 ,2,14979,353745 ,1,0,454695 ,2,14956,181805 ,2,822,42020 ,2,14975,560980 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262915 ,2,14979,412720 ,1,0,454840 ,2,14956,167780 ,2,822,42090 ,2,14975,610970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262940 ,2,14979,353915 ,1,0,454960 ,2,14956,290860 ,2,822,42100 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,551735 ,2,14978,180600 ,2,14979,353935 ,1,0,455180 ,2,14956,290860 ,2,822,42100 ,2,14975,561335 ,2,14976,112375 ,2,14977,23120 ,2,14965,551735 ,2,14978,236595 ,2,14979,353945 ,1,0,455375 ,2,14956,290870 ,2,822,42100 ,2,14975,584550 ,2,14976,23450 ,2,14977,112440 ,2,14965,551745 ,2,14978,180630 ,2,14979,353955 ,1,0,455630 ,2,14956,290870 ,2,822,42100 ,2,14975,584550 ,2,14976,112395 ,2,14977,112385 ,2,14965,551745 ,2,14978,236605 ,2,14979,353965 ,1,0,455820 ,2,14956,4490 ,2,822,42100 ,2,14975,584545 ,2,14976,112430 ,2,14977,112420 ,2,14965,45 ,2,14978,250860 ,2,14979,2415 ,1,0,456015 ,2,14956,221210 ,2,822,42090 ,2,14975,584565 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,353975 ,1,0,456200 ,2,14956,171330 ,2,822,49175 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354065 ,1,0,456395 ,2,14956,167780 ,2,822,42115 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,262950 ,2,14979,354175 ,1,0,456630 ,2,14956,290955 ,2,822,54625 ,2,14975,561380 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262960 ,2,14979,354240 ,1,0,456870 ,2,14956,290965 ,2,822,54635 ,2,14975,599940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262970 ,2,14979,354250 ,1,0,457140 ,2,14956,290985 ,2,822,54660 ,2,14975,567865 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262985 ,2,14979,354260 ,1,0,457340 ,2,14956,213375 ,2,822,42115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,180740 ,2,14979,362260 ,1,0,457560 ,2,14956,213225 ,2,822,42115 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,236615 ,2,14979,354280 ,1,0,457755 ,2,14956,213485 ,2,822,42115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,180760 ,2,14979,361935 ,1,0,457955 ,2,14956,213475 ,2,822,42115 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,236630 ,2,14979,354290 ,1,0,458090 ,2,14956,211025 ,2,822,42115 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378100 ,1,0,458285 ,2,14956,213435 ,2,822,42115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364340 ,1,0,458560 ,2,14956,213425 ,2,822,42115 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411040 ,1,0,458810 ,2,14956,211005 ,2,822,42115 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411220 ,1,0,458980 ,2,14956,213225 ,2,822,42115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,180740 ,2,14979,2415 ,1,0,459220 ,2,14956,213475 ,2,822,42115 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,180760 ,2,14979,2415 ,1,0,459350 ,2,14956,290995 ,2,822,42115 ,2,14975,584570 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354300 ,1,0,459585 ,2,14956,291015 ,2,822,42115 ,2,14975,561380 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262960 ,2,14979,2415 ,1,0,459755 ,2,14956,233095 ,2,822,42115 ,2,14975,567865 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262985 ,2,14979,2415 ,1,0,459990 ,2,14956,291755 ,2,822,42135 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354355 ,1,0,460170 ,2,14956,166610 ,2,822,42135 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112655 ,2,14979,354370 ,1,0,460375 ,2,14956,10080 ,2,822,42135 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,180955 ,2,14979,381920 ,1,0,460570 ,2,14956,10080 ,2,822,42135 ,2,14975,110 ,2,14976,112665 ,2,14977,23120 ,2,14965,45 ,2,14978,236640 ,2,14979,354395 ,1,0,460910 ,2,14956,291220 ,2,822,42145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354415 ,1,0,461185 ,2,14956,291035 ,2,822,42145 ,2,14975,563290 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354460 ,1,0,461385 ,2,14956,291045 ,2,822,42145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354450 ,1,0,461575 ,2,14956,291060 ,2,822,42145 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354470 ,1,0,461990 ,2,14956,291070 ,2,822,42145 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354480 ,1,0,462260 ,2,14956,291150 ,2,822,42145 ,2,14975,584620 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262995 ,2,14979,2415 ,1,0,462495 ,2,14956,291125 ,2,822,54680 ,2,14975,584620 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,262995 ,2,14979,354495 ,1,0,462770 ,2,14956,291105 ,2,822,42145 ,2,14975,584575 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263005 ,2,14979,2415 ,1,0,463040 ,2,14956,291080 ,2,822,54670 ,2,14975,584575 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263005 ,2,14979,354515 ,1,0,463340 ,2,14956,291115 ,2,822,42135 ,2,14975,584620 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354505 ,1,0,463540 ,2,14956,291160 ,2,822,42145 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354425 ,1,0,463870 ,2,14956,291170 ,2,822,42145 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354525 ,1,0,464145 ,2,14956,291210 ,2,822,42145 ,2,14975,584575 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263015 ,2,14979,2415 ,1,0,464400 ,2,14956,291180 ,2,822,54690 ,2,14975,584575 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263015 ,2,14979,354565 ,1,0,464675 ,2,14956,291245 ,2,822,42145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,464920 ,2,14956,291315 ,2,822,42145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112745 ,2,14979,2415 ,1,0,465160 ,2,14956,291275 ,2,822,42145 ,2,14975,110 ,2,14976,112765 ,2,14977,112755 ,2,14965,45 ,2,14978,263050 ,2,14979,2415 ,1,0,465395 ,2,14956,291345 ,2,822,42145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112775 ,2,14979,2415 ,1,0,465655 ,2,14956,291335 ,2,822,42145 ,2,14975,110 ,2,14976,112795 ,2,14977,112785 ,2,14965,45 ,2,14978,263060 ,2,14979,2415 ,1,0,465910 ,2,14956,291375 ,2,822,42145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112805 ,2,14979,2415 ,1,0,466230 ,2,14956,291365 ,2,822,42145 ,2,14975,110 ,2,14976,112855 ,2,14977,112815 ,2,14965,45 ,2,14978,263070 ,2,14979,2415 ,1,0,466475 ,2,14956,291420 ,2,822,42145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,112865 ,2,14979,354575 ,1,0,466775 ,2,14956,291410 ,2,822,42145 ,2,14975,110 ,2,14976,112885 ,2,14977,112875 ,2,14965,45 ,2,14978,263080 ,2,14979,2415 ,1,0,467080 ,2,14956,291430 ,2,822,54700 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263095 ,2,14979,410290 ,1,0,467315 ,2,14956,291450 ,2,822,54710 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263105 ,2,14979,410300 ,1,0,467575 ,2,14956,291505 ,2,822,54720 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263165 ,2,14979,410305 ,1,0,467810 ,2,14956,291535 ,2,822,42145 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,468070 ,2,14956,291545 ,2,822,42145 ,2,14975,561150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263070 ,2,14979,410310 ,1,0,468310 ,2,14956,291555 ,2,822,42145 ,2,14975,584575 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354585 ,1,0,468540 ,2,14956,10825 ,2,822,42145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382535 ,1,0,468800 ,2,14956,291565 ,2,822,42145 ,2,14975,584575 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354605 ,1,0,469050 ,2,14956,291575 ,2,822,42145 ,2,14975,584615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354615 ,1,0,469370 ,2,14956,175775 ,2,822,42135 ,2,14975,584575 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,469665 ,2,14956,166485 ,2,822,42135 ,2,14975,584575 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374635 ,1,0,469895 ,2,14956,291615 ,2,822,42145 ,2,14975,584615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,354635 ,1,0,470145 ,2,14956,291625 ,2,822,42145 ,2,14975,584575 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354650 ,1,0,470375 ,2,14956,291635 ,2,822,42145 ,2,14975,584575 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,354595 ,1,0,470610 ,2,14956,196415 ,2,822,42145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,181485 ,2,14979,354655 ,1,0,470910 ,2,14956,196415 ,2,822,42145 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,236650 ,2,14979,354675 ,1,0,471245 ,2,14956,291645 ,2,822,42145 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354665 ,1,0,471480 ,2,14956,291660 ,2,822,42145 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,471735 ,2,14956,291670 ,2,822,42145 ,2,14975,560665 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,181525 ,2,14979,354690 ,1,0,471990 ,2,14956,291670 ,2,822,42145 ,2,14975,560665 ,2,14976,113015 ,2,14977,24010 ,2,14965,45 ,2,14978,236660 ,2,14979,354700 ,1,0,472305 ,2,14956,166985 ,2,822,42135 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,180955 ,2,14979,381390 ,1,0,472620 ,2,14956,291690 ,2,822,42135 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,472910 ,2,14956,291705 ,2,822,42135 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,473195 ,2,14956,291715 ,2,822,42135 ,2,14975,584575 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,473470 ,2,14956,291725 ,2,822,42135 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354750 ,1,0,473910 ,2,14956,291735 ,2,822,42135 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354720 ,1,0,474175 ,2,14956,166680 ,2,822,42135 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411990 ,1,0,474590 ,2,14956,291765 ,2,822,42135 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354345 ,1,0,475005 ,2,14956,171330 ,2,822,42135 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354310 ,1,0,475355 ,2,14956,201410 ,2,822,42180 ,2,14975,558080 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,475720 ,2,14956,201915 ,2,822,42180 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,475990 ,2,14956,201520 ,2,822,42180 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,476160 ,2,14956,202070 ,2,822,42180 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,476370 ,2,14956,187610 ,2,822,42190 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,181730 ,2,14979,354790 ,1,0,476615 ,2,14956,187610 ,2,822,42190 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,236670 ,2,14979,354800 ,1,0,476835 ,2,14956,291830 ,2,822,54730 ,2,14975,584675 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354820 ,1,0,477060 ,2,14956,291800 ,2,822,42190 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,181730 ,2,14979,2415 ,1,0,477375 ,2,14956,291810 ,2,822,42190 ,2,14975,584640 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,354865 ,1,0,477665 ,2,14956,291820 ,2,822,42190 ,2,14975,584640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,477840 ,2,14956,194990 ,2,822,42190 ,2,14975,584680 ,2,14976,24120 ,2,14977,42770 ,2,14965,45 ,2,14978,45 ,2,14979,394760 ,1,0,478105 ,2,14956,196495 ,2,822,42190 ,2,14975,563290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354870 ,1,0,478290 ,2,14956,173945 ,2,822,42210 ,2,14975,611030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263185 ,2,14979,410355 ,1,0,478620 ,2,14956,291860 ,2,822,42210 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395295 ,1,0,478965 ,2,14956,292655 ,2,822,42225 ,2,14975,600025 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354975 ,1,0,479245 ,2,14956,291920 ,2,822,42225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,479450 ,2,14956,291930 ,2,822,42225 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,479760 ,2,14956,292390 ,2,822,42225 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,354985 ,1,0,480020 ,2,14956,292380 ,2,822,42235 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,354995 ,1,0,480290 ,2,14956,292280 ,2,822,42235 ,2,14975,599945 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355015 ,1,0,480555 ,2,14956,292270 ,2,822,54765 ,2,14975,599945 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,113345 ,2,14979,355025 ,1,0,480845 ,2,14956,291960 ,2,822,54775 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,181980 ,2,14979,355035 ,1,0,481150 ,2,14956,291960 ,2,822,54775 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,236680 ,2,14979,355070 ,1,0,481415 ,2,14956,292255 ,2,822,54765 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355080 ,1,0,481735 ,2,14956,292165 ,2,822,42255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355120 ,1,0,482140 ,2,14956,176480 ,2,822,42255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,113375 ,2,14979,355130 ,1,0,482515 ,2,14956,176470 ,2,822,42255 ,2,14975,110 ,2,14976,113415 ,2,14977,113385 ,2,14965,45 ,2,14978,263195 ,2,14979,2415 ,1,0,482900 ,2,14956,291980 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,483065 ,2,14956,291990 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355205 ,1,0,483310 ,2,14956,292030 ,2,822,42255 ,2,14975,584710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,483440 ,2,14956,292040 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396785 ,1,0,483585 ,2,14956,292050 ,2,822,42255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355140 ,1,0,483700 ,2,14956,175910 ,2,822,42255 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263205 ,2,14979,413620 ,1,0,483940 ,2,14956,292060 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,396770 ,1,0,484310 ,2,14956,292070 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355150 ,1,0,484715 ,2,14956,292080 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,485165 ,2,14956,292090 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,485450 ,2,14956,292100 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,485655 ,2,14956,173945 ,2,822,42255 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263195 ,2,14979,355650 ,1,0,485905 ,2,14956,292125 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,486155 ,2,14956,292135 ,2,822,42255 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,486530 ,2,14956,292145 ,2,822,42255 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410380 ,1,0,486925 ,2,14956,292245 ,2,822,42305 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355455 ,1,0,487300 ,2,14956,292280 ,2,822,42305 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355470 ,1,0,487550 ,2,14956,292175 ,2,822,42305 ,2,14975,600005 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355515 ,1,0,487830 ,2,14956,292185 ,2,822,42305 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355480 ,1,0,488095 ,2,14956,292195 ,2,822,42305 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,488345 ,2,14956,292225 ,2,822,42305 ,2,14975,584750 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355560 ,1,0,488605 ,2,14956,10665 ,2,822,42305 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263215 ,2,14979,412605 ,1,0,488865 ,2,14956,292290 ,2,822,42235 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355345 ,1,0,489125 ,2,14956,292300 ,2,822,42235 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355315 ,1,0,489370 ,2,14956,292330 ,2,822,42235 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355355 ,1,0,489715 ,2,14956,292340 ,2,822,42235 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,355365 ,1,0,489980 ,2,14956,292185 ,2,822,42235 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,355285 ,1,0,490170 ,2,14956,292350 ,2,822,42235 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355195 ,1,0,490520 ,2,14956,292360 ,2,822,42235 ,2,14975,584700 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,490795 ,2,14956,292400 ,2,822,42225 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355100 ,1,0,491005 ,2,14956,292425 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355305 ,1,0,491290 ,2,14956,292435 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355215 ,1,0,491620 ,2,14956,292445 ,2,822,42225 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,355450 ,1,0,491955 ,2,14956,173175 ,2,822,42225 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263225 ,2,14979,416530 ,1,0,492205 ,2,14956,168095 ,2,822,42225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355090 ,1,0,492500 ,2,14956,292455 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355265 ,1,0,492695 ,2,14956,292465 ,2,822,42225 ,2,14975,584695 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355535 ,1,0,493000 ,2,14956,292475 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355295 ,1,0,493355 ,2,14956,292485 ,2,822,42225 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355335 ,1,0,493615 ,2,14956,292495 ,2,822,42225 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,355435 ,1,0,493900 ,2,14956,292520 ,2,822,42225 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,355580 ,1,0,494160 ,2,14956,292530 ,2,822,42225 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,355225 ,1,0,494330 ,2,14956,292540 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355235 ,1,0,494535 ,2,14956,292550 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355255 ,1,0,494730 ,2,14956,292560 ,2,822,42225 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,263225 ,2,14979,2415 ,1,0,494910 ,2,14956,292570 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355405 ,1,0,495120 ,2,14956,292580 ,2,822,42225 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355525 ,1,0,495395 ,2,14956,292590 ,2,822,42225 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355415 ,1,0,495655 ,2,14956,292625 ,2,822,42225 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355420 ,1,0,495840 ,2,14956,292635 ,2,822,42225 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,355245 ,1,0,496115 ,2,14956,187610 ,2,822,42225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,354965 ,1,0,496370 ,2,14956,172055 ,2,822,42315 ,2,14975,584755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355680 ,1,0,496605 ,2,14956,8315 ,2,822,42315 ,2,14975,584760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377075 ,1,0,496775 ,2,14956,171965 ,2,822,42315 ,2,14975,584765 ,2,14976,23075 ,2,14977,23065 ,2,14965,551805 ,2,14978,45 ,2,14979,382885 ,1,0,497005 ,2,14956,10080 ,2,822,42315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,182785 ,2,14979,385830 ,1,0,497185 ,2,14956,10080 ,2,822,42315 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236690 ,2,14979,355690 ,1,0,497365 ,2,14956,166850 ,2,822,42315 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360045 ,1,0,497570 ,2,14956,10580 ,2,822,42315 ,2,14975,599895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410810 ,1,0,497830 ,2,14956,166985 ,2,822,42315 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,182785 ,2,14979,385085 ,1,0,498040 ,2,14956,166860 ,2,822,42315 ,2,14975,584780 ,2,14976,23130 ,2,14977,23120 ,2,14965,551825 ,2,14978,45 ,2,14979,359355 ,1,0,498250 ,2,14956,166495 ,2,822,42315 ,2,14975,584755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377790 ,1,0,498450 ,2,14956,171735 ,2,822,42315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359090 ,1,0,498650 ,2,14956,166870 ,2,822,42315 ,2,14975,584755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377670 ,1,0,498870 ,2,14956,171930 ,2,822,42315 ,2,14975,584760 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376830 ,1,0,499130 ,2,14956,166670 ,2,822,42315 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,182920 ,2,14979,379350 ,1,0,499395 ,2,14956,166660 ,2,822,42315 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236700 ,2,14979,355700 ,1,0,499635 ,2,14956,171715 ,2,822,42315 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359650 ,1,0,499985 ,2,14956,171410 ,2,822,42315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371935 ,1,0,500290 ,2,14956,166880 ,2,822,42315 ,2,14975,584755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359000 ,1,0,500685 ,2,14956,166890 ,2,822,42315 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371620 ,1,0,501010 ,2,14956,166740 ,2,822,42315 ,2,14975,584800 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378220 ,1,0,501410 ,2,14956,166485 ,2,822,42315 ,2,14975,599895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376735 ,1,0,501795 ,2,14956,166900 ,2,822,42315 ,2,14975,599895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374475 ,1,0,502065 ,2,14956,166660 ,2,822,42315 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,182920 ,2,14979,380090 ,1,0,502405 ,2,14956,171670 ,2,822,42315 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356290 ,1,0,502755 ,2,14956,166935 ,2,822,42315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382570 ,1,0,503100 ,2,14956,166965 ,2,822,42315 ,2,14975,599895 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,358885 ,1,0,503460 ,2,14956,166910 ,2,822,42315 ,2,14975,584805 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358465 ,1,0,503660 ,2,14956,8645 ,2,822,54785 ,2,14975,584805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,113755 ,2,14979,355720 ,1,0,503855 ,2,14956,171625 ,2,822,42315 ,2,14975,584810 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374835 ,1,0,504195 ,2,14956,171640 ,2,822,42315 ,2,14975,611055 ,2,14976,23450 ,2,14977,23360 ,2,14965,551835 ,2,14978,45 ,2,14979,374155 ,1,0,504450 ,2,14956,171705 ,2,822,42315 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359550 ,1,0,504700 ,2,14956,171195 ,2,822,42315 ,2,14975,584815 ,2,14976,23130 ,2,14977,23120 ,2,14965,551840 ,2,14978,45 ,2,14979,378480 ,1,0,504915 ,2,14956,171650 ,2,822,42315 ,2,14975,584755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383245 ,1,0,505165 ,2,14956,171725 ,2,822,42315 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363265 ,1,0,505350 ,2,14956,172055 ,2,822,42345 ,2,14975,584755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,410390 ,1,0,505495 ,2,14956,8315 ,2,822,42345 ,2,14975,584760 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377080 ,1,0,505690 ,2,14956,171965 ,2,822,42345 ,2,14975,584820 ,2,14976,23075 ,2,14977,23065 ,2,14965,551850 ,2,14978,45 ,2,14979,382890 ,1,0,505985 ,2,14956,10080 ,2,822,42345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,183240 ,2,14979,385835 ,1,0,506175 ,2,14956,10080 ,2,822,42345 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236730 ,2,14979,355730 ,1,0,506380 ,2,14956,166850 ,2,822,42345 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360060 ,1,0,506500 ,2,14956,10580 ,2,822,42345 ,2,14975,599895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410815 ,1,0,506700 ,2,14956,166985 ,2,822,42345 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,183240 ,2,14979,385110 ,1,0,506960 ,2,14956,166860 ,2,822,42345 ,2,14975,584830 ,2,14976,23130 ,2,14977,23120 ,2,14965,551890 ,2,14978,45 ,2,14979,359365 ,1,0,507150 ,2,14956,166495 ,2,822,42345 ,2,14975,584755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377795 ,1,0,507360 ,2,14956,171735 ,2,822,42345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410660 ,1,0,507545 ,2,14956,166870 ,2,822,42345 ,2,14975,584755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411965 ,1,0,507785 ,2,14956,171930 ,2,822,42345 ,2,14975,584760 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,411855 ,1,0,508035 ,2,14956,166670 ,2,822,42345 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,183370 ,2,14979,379355 ,1,0,508250 ,2,14956,166660 ,2,822,42345 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236740 ,2,14979,355740 ,1,0,508465 ,2,14956,171715 ,2,822,42345 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359670 ,1,0,508770 ,2,14956,171410 ,2,822,42345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371945 ,1,0,508995 ,2,14956,166880 ,2,822,42345 ,2,14975,584755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410625 ,1,0,509185 ,2,14956,166890 ,2,822,42345 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371630 ,1,0,509375 ,2,14956,166740 ,2,822,42345 ,2,14975,584800 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378245 ,1,0,509620 ,2,14956,166485 ,2,822,42345 ,2,14975,599895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376740 ,1,0,509935 ,2,14956,166900 ,2,822,42345 ,2,14975,599895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374485 ,1,0,510210 ,2,14956,166660 ,2,822,42345 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,183370 ,2,14979,380095 ,1,0,510460 ,2,14956,171670 ,2,822,42345 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356320 ,1,0,510700 ,2,14956,166935 ,2,822,42345 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382575 ,1,0,510945 ,2,14956,166965 ,2,822,42345 ,2,14975,599895 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,358895 ,1,0,511195 ,2,14956,166910 ,2,822,42345 ,2,14975,584805 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358475 ,1,0,511455 ,2,14956,171625 ,2,822,42345 ,2,14975,584810 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411730 ,1,0,511690 ,2,14956,171640 ,2,822,42345 ,2,14975,611095 ,2,14976,23450 ,2,14977,23360 ,2,14965,551900 ,2,14978,45 ,2,14979,374165 ,1,0,511945 ,2,14956,171705 ,2,822,42345 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359560 ,1,0,512200 ,2,14956,171195 ,2,822,42345 ,2,14975,584835 ,2,14976,23130 ,2,14977,23120 ,2,14965,551905 ,2,14978,45 ,2,14979,378500 ,1,0,512475 ,2,14956,171650 ,2,822,42345 ,2,14975,584755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383250 ,1,0,512670 ,2,14956,171725 ,2,822,42345 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363275 ,1,0,512865 ,2,14956,172055 ,2,822,42355 ,2,14975,584855 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355750 ,1,0,513085 ,2,14956,8315 ,2,822,42355 ,2,14975,584860 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377115 ,1,0,513375 ,2,14956,171965 ,2,822,42355 ,2,14975,584865 ,2,14976,23075 ,2,14977,23065 ,2,14965,551920 ,2,14978,45 ,2,14979,382895 ,1,0,513625 ,2,14956,10080 ,2,822,42355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,183695 ,2,14979,385840 ,1,0,513885 ,2,14956,10080 ,2,822,42355 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236750 ,2,14979,355765 ,1,0,514140 ,2,14956,166850 ,2,822,42355 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360100 ,1,0,514345 ,2,14956,10580 ,2,822,42355 ,2,14975,599900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410820 ,1,0,514555 ,2,14956,166985 ,2,822,42355 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,183695 ,2,14979,385115 ,1,0,514740 ,2,14956,166860 ,2,822,42355 ,2,14975,584885 ,2,14976,23130 ,2,14977,23120 ,2,14965,551940 ,2,14978,45 ,2,14979,359405 ,1,0,514975 ,2,14956,166495 ,2,822,42355 ,2,14975,584855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377800 ,1,0,515220 ,2,14956,171735 ,2,822,42355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359100 ,1,0,515470 ,2,14956,166870 ,2,822,42355 ,2,14975,584855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377675 ,1,0,515760 ,2,14956,171930 ,2,822,42355 ,2,14975,584860 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376835 ,1,0,516015 ,2,14956,166670 ,2,822,42355 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,183855 ,2,14979,379360 ,1,0,516215 ,2,14956,166660 ,2,822,42355 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236760 ,2,14979,355775 ,1,0,516475 ,2,14956,171715 ,2,822,42355 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359680 ,1,0,516730 ,2,14956,171410 ,2,822,42355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371985 ,1,0,516970 ,2,14956,166880 ,2,822,42355 ,2,14975,584855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359005 ,1,0,517245 ,2,14956,166890 ,2,822,42355 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371645 ,1,0,517480 ,2,14956,166740 ,2,822,42355 ,2,14975,584890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378250 ,1,0,517745 ,2,14956,166485 ,2,822,42355 ,2,14975,599900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376745 ,1,0,518015 ,2,14956,166900 ,2,822,42355 ,2,14975,599900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374490 ,1,0,518280 ,2,14956,166660 ,2,822,42355 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,183855 ,2,14979,380100 ,1,0,518455 ,2,14956,171670 ,2,822,42355 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356330 ,1,0,518585 ,2,14956,166935 ,2,822,42355 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382580 ,1,0,518815 ,2,14956,166965 ,2,822,42355 ,2,14975,599900 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,358905 ,1,0,519040 ,2,14956,166910 ,2,822,42355 ,2,14975,584895 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358480 ,1,0,519285 ,2,14956,7015 ,2,822,54795 ,2,14975,584895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,113930 ,2,14979,355785 ,1,0,519455 ,2,14956,171625 ,2,822,42355 ,2,14975,584940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374845 ,1,0,519645 ,2,14956,171640 ,2,822,42355 ,2,14975,611120 ,2,14976,23450 ,2,14977,23360 ,2,14965,551950 ,2,14978,45 ,2,14979,374175 ,1,0,519915 ,2,14956,171705 ,2,822,42355 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410750 ,1,0,520155 ,2,14956,171195 ,2,822,42355 ,2,14975,584945 ,2,14976,23130 ,2,14977,23120 ,2,14965,551955 ,2,14978,45 ,2,14979,378505 ,1,0,520340 ,2,14956,171650 ,2,822,42355 ,2,14975,584855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383255 ,1,0,520635 ,2,14956,171725 ,2,822,42355 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363285 ,1,0,520915 ,2,14956,172055 ,2,822,42410 ,2,14975,584855 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,410395 ,1,0,521095 ,2,14956,8315 ,2,822,42410 ,2,14975,584860 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377120 ,1,0,521335 ,2,14956,171965 ,2,822,42410 ,2,14975,584950 ,2,14976,23075 ,2,14977,23065 ,2,14965,551965 ,2,14978,45 ,2,14979,382900 ,1,0,521600 ,2,14956,10080 ,2,822,42410 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,184170 ,2,14979,385845 ,1,0,521875 ,2,14956,10080 ,2,822,42410 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236770 ,2,14979,355795 ,1,0,522080 ,2,14956,166850 ,2,822,42410 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360110 ,1,0,522350 ,2,14956,10580 ,2,822,42410 ,2,14975,599900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410825 ,1,0,522565 ,2,14956,166985 ,2,822,42410 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,184170 ,2,14979,385120 ,1,0,522770 ,2,14956,166860 ,2,822,42410 ,2,14975,584965 ,2,14976,23130 ,2,14977,23120 ,2,14965,551975 ,2,14978,45 ,2,14979,359415 ,1,0,522975 ,2,14956,166495 ,2,822,42410 ,2,14975,584855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377805 ,1,0,523180 ,2,14956,171735 ,2,822,42410 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410695 ,1,0,523350 ,2,14956,166870 ,2,822,42410 ,2,14975,584855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411970 ,1,0,523545 ,2,14956,171930 ,2,822,42410 ,2,14975,584860 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376840 ,1,0,523770 ,2,14956,166670 ,2,822,42410 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,184310 ,2,14979,379365 ,1,0,524040 ,2,14956,166660 ,2,822,42410 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236780 ,2,14979,355835 ,1,0,524325 ,2,14956,171715 ,2,822,42410 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359690 ,1,0,524575 ,2,14956,171410 ,2,822,42410 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371995 ,1,0,524845 ,2,14956,166880 ,2,822,42410 ,2,14975,584855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410630 ,1,0,525050 ,2,14956,166890 ,2,822,42410 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411525 ,1,0,525340 ,2,14956,166740 ,2,822,42410 ,2,14975,584890 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412050 ,1,0,525570 ,2,14956,166485 ,2,822,42410 ,2,14975,599900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376750 ,1,0,525775 ,2,14956,166900 ,2,822,42410 ,2,14975,599900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374505 ,1,0,526185 ,2,14956,166660 ,2,822,42410 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,184310 ,2,14979,380105 ,1,0,526550 ,2,14956,171670 ,2,822,42410 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356380 ,1,0,526950 ,2,14956,166935 ,2,822,42410 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382585 ,1,0,527325 ,2,14956,166965 ,2,822,42410 ,2,14975,599900 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,410550 ,1,0,527670 ,2,14956,166910 ,2,822,42410 ,2,14975,584895 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358490 ,1,0,528130 ,2,14956,171625 ,2,822,42410 ,2,14975,584940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411745 ,1,0,528570 ,2,14956,171640 ,2,822,42410 ,2,14975,611165 ,2,14976,23450 ,2,14977,23360 ,2,14965,552000 ,2,14978,45 ,2,14979,374180 ,1,0,528745 ,2,14956,171705 ,2,822,42410 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410755 ,1,0,528930 ,2,14956,171195 ,2,822,42410 ,2,14975,584970 ,2,14976,23130 ,2,14977,23120 ,2,14965,552005 ,2,14978,45 ,2,14979,378510 ,1,0,529235 ,2,14956,171650 ,2,822,42410 ,2,14975,584855 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412660 ,1,0,529490 ,2,14956,171725 ,2,822,42410 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363315 ,1,0,529740 ,2,14956,172055 ,2,822,42420 ,2,14975,584975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355845 ,1,0,529965 ,2,14956,8315 ,2,822,42420 ,2,14975,584980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377125 ,1,0,530245 ,2,14956,171965 ,2,822,42420 ,2,14975,584995 ,2,14976,23075 ,2,14977,23065 ,2,14965,552025 ,2,14978,45 ,2,14979,382905 ,1,0,530440 ,2,14956,10080 ,2,822,42420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,184615 ,2,14979,385855 ,1,0,530695 ,2,14956,10080 ,2,822,42420 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236790 ,2,14979,355855 ,1,0,530980 ,2,14956,166850 ,2,822,42420 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360160 ,1,0,531185 ,2,14956,10580 ,2,822,42420 ,2,14975,599905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410830 ,1,0,531370 ,2,14956,166985 ,2,822,42420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,184615 ,2,14979,385125 ,1,0,531575 ,2,14956,166860 ,2,822,42420 ,2,14975,585010 ,2,14976,23130 ,2,14977,23120 ,2,14965,552035 ,2,14978,45 ,2,14979,359425 ,1,0,531910 ,2,14956,166495 ,2,822,42420 ,2,14975,584975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377810 ,1,0,532195 ,2,14956,171735 ,2,822,42420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359110 ,1,0,532385 ,2,14956,166870 ,2,822,42420 ,2,14975,584975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377680 ,1,0,532585 ,2,14956,171930 ,2,822,42420 ,2,14975,584980 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376855 ,1,0,532860 ,2,14956,166670 ,2,822,42420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,184740 ,2,14979,379370 ,1,0,533055 ,2,14956,166660 ,2,822,42420 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236800 ,2,14979,355865 ,1,0,533315 ,2,14956,171715 ,2,822,42420 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359700 ,1,0,533585 ,2,14956,171410 ,2,822,42420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372005 ,1,0,534000 ,2,14956,166880 ,2,822,42420 ,2,14975,584975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,359015 ,1,0,534340 ,2,14956,166890 ,2,822,42420 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371660 ,1,0,534530 ,2,14956,166740 ,2,822,42420 ,2,14975,585015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378255 ,1,0,534790 ,2,14956,166485 ,2,822,42420 ,2,14975,599905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376760 ,1,0,535030 ,2,14956,166900 ,2,822,42420 ,2,14975,599905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374520 ,1,0,535410 ,2,14956,166660 ,2,822,42420 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,184740 ,2,14979,380120 ,1,0,535660 ,2,14956,171670 ,2,822,42420 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356390 ,1,0,535930 ,2,14956,166935 ,2,822,42420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382590 ,1,0,536120 ,2,14956,166965 ,2,822,42420 ,2,14975,599905 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,358925 ,1,0,536315 ,2,14956,166910 ,2,822,42420 ,2,14975,585020 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358500 ,1,0,536695 ,2,14956,6115 ,2,822,54805 ,2,14975,585020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114110 ,2,14979,355880 ,1,0,536930 ,2,14956,171625 ,2,822,42420 ,2,14975,585025 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374855 ,1,0,537105 ,2,14956,171640 ,2,822,42420 ,2,14975,611185 ,2,14976,23450 ,2,14977,23360 ,2,14965,552070 ,2,14978,45 ,2,14979,374200 ,1,0,537285 ,2,14956,171705 ,2,822,42420 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410760 ,1,0,537530 ,2,14956,171195 ,2,822,42420 ,2,14975,585030 ,2,14976,23130 ,2,14977,23120 ,2,14965,552075 ,2,14978,45 ,2,14979,378515 ,1,0,537775 ,2,14956,171650 ,2,822,42420 ,2,14975,584975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383260 ,1,0,538025 ,2,14956,171725 ,2,822,42420 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363325 ,1,0,538335 ,2,14956,172055 ,2,822,42455 ,2,14975,584975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,355890 ,1,0,538535 ,2,14956,8315 ,2,822,42455 ,2,14975,584980 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377130 ,1,0,538845 ,2,14956,171965 ,2,822,42455 ,2,14975,585060 ,2,14976,23075 ,2,14977,23065 ,2,14965,552090 ,2,14978,45 ,2,14979,382930 ,1,0,539105 ,2,14956,10080 ,2,822,42455 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,185080 ,2,14979,385860 ,1,0,539345 ,2,14956,10080 ,2,822,42455 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236855 ,2,14979,355900 ,1,0,539585 ,2,14956,166850 ,2,822,42455 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360170 ,1,0,539855 ,2,14956,10580 ,2,822,42455 ,2,14975,599905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410835 ,1,0,540195 ,2,14956,166985 ,2,822,42455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,185080 ,2,14979,385130 ,1,0,540550 ,2,14956,166860 ,2,822,42455 ,2,14975,585070 ,2,14976,23130 ,2,14977,23120 ,2,14965,552100 ,2,14978,45 ,2,14979,359440 ,1,0,540910 ,2,14956,166495 ,2,822,42455 ,2,14975,584975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411995 ,1,0,541260 ,2,14956,171735 ,2,822,42455 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410700 ,1,0,541590 ,2,14956,166870 ,2,822,42455 ,2,14975,584975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411975 ,1,0,541915 ,2,14956,171930 ,2,822,42455 ,2,14975,584980 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376860 ,1,0,542255 ,2,14956,166670 ,2,822,42455 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,185220 ,2,14979,379375 ,1,0,542590 ,2,14956,166660 ,2,822,42455 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236865 ,2,14979,355905 ,1,0,542840 ,2,14956,171715 ,2,822,42455 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359715 ,1,0,543220 ,2,14956,171410 ,2,822,42455 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372010 ,1,0,543535 ,2,14956,166880 ,2,822,42455 ,2,14975,584975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410635 ,1,0,543950 ,2,14956,166890 ,2,822,42455 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371665 ,1,0,544325 ,2,14956,166740 ,2,822,42455 ,2,14975,585015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378260 ,1,0,544550 ,2,14956,166485 ,2,822,42455 ,2,14975,599905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376765 ,1,0,544840 ,2,14956,166900 ,2,822,42455 ,2,14975,599905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374530 ,1,0,545165 ,2,14956,166660 ,2,822,42455 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,185220 ,2,14979,380125 ,1,0,545470 ,2,14956,171670 ,2,822,42455 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356430 ,1,0,545665 ,2,14956,166935 ,2,822,42455 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382595 ,1,0,545945 ,2,14956,166965 ,2,822,42455 ,2,14975,599905 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,358940 ,1,0,546285 ,2,14956,166910 ,2,822,42455 ,2,14975,585020 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358515 ,1,0,546535 ,2,14956,171625 ,2,822,42455 ,2,14975,585025 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411750 ,1,0,546820 ,2,14956,171640 ,2,822,42455 ,2,14975,611230 ,2,14976,23450 ,2,14977,23360 ,2,14965,552125 ,2,14978,45 ,2,14979,374210 ,1,0,547045 ,2,14956,171705 ,2,822,42455 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410765 ,1,0,547285 ,2,14956,171195 ,2,822,42455 ,2,14975,585075 ,2,14976,23130 ,2,14977,23120 ,2,14965,552130 ,2,14978,45 ,2,14979,378525 ,1,0,547590 ,2,14956,171650 ,2,822,42455 ,2,14975,584975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383265 ,1,0,547905 ,2,14956,171725 ,2,822,42455 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363335 ,1,0,548285 ,2,14956,172055 ,2,822,42465 ,2,14975,559140 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,410415 ,1,0,548650 ,2,14956,8315 ,2,822,42465 ,2,14975,559095 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377140 ,1,0,548890 ,2,14956,171965 ,2,822,42465 ,2,14975,585080 ,2,14976,23075 ,2,14977,23065 ,2,14965,552140 ,2,14978,45 ,2,14979,382940 ,1,0,549065 ,2,14956,10080 ,2,822,42465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,185530 ,2,14979,385870 ,1,0,549340 ,2,14956,10080 ,2,822,42465 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236875 ,2,14979,355960 ,1,0,549595 ,2,14956,166850 ,2,822,42465 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360205 ,1,0,549800 ,2,14956,10580 ,2,822,42465 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410880 ,1,0,550110 ,2,14956,166985 ,2,822,42465 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,185530 ,2,14979,385140 ,1,0,550365 ,2,14956,166860 ,2,822,42465 ,2,14975,585090 ,2,14976,23130 ,2,14977,23120 ,2,14965,552150 ,2,14978,45 ,2,14979,359460 ,1,0,550615 ,2,14956,166495 ,2,822,42465 ,2,14975,559140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377820 ,1,0,550880 ,2,14956,171735 ,2,822,42465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410705 ,1,0,551130 ,2,14956,166870 ,2,822,42465 ,2,14975,559140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377695 ,1,0,551325 ,2,14956,171930 ,2,822,42465 ,2,14975,559095 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,411860 ,1,0,551500 ,2,14956,166670 ,2,822,42465 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,185675 ,2,14979,379385 ,1,0,551695 ,2,14956,166660 ,2,822,42465 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236885 ,2,14979,355970 ,1,0,551870 ,2,14956,171715 ,2,822,42465 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359735 ,1,0,552060 ,2,14956,171410 ,2,822,42465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372030 ,1,0,552245 ,2,14956,166880 ,2,822,42465 ,2,14975,559140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410640 ,1,0,552515 ,2,14956,166890 ,2,822,42465 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,411550 ,1,0,552785 ,2,14956,166740 ,2,822,42465 ,2,14975,559145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412065 ,1,0,552995 ,2,14956,166485 ,2,822,42465 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376775 ,1,0,553255 ,2,14956,166900 ,2,822,42465 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374545 ,1,0,553530 ,2,14956,166660 ,2,822,42465 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,185675 ,2,14979,380135 ,1,0,553780 ,2,14956,166935 ,2,822,42465 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382625 ,1,0,554005 ,2,14956,166965 ,2,822,42465 ,2,14975,599945 ,2,14976,23450 ,2,14977,23470 ,2,14965,45 ,2,14978,45 ,2,14979,410565 ,1,0,554215 ,2,14956,171625 ,2,822,42465 ,2,14975,559150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374910 ,1,0,554375 ,2,14956,171640 ,2,822,42465 ,2,14975,611250 ,2,14976,23450 ,2,14977,23360 ,2,14965,552160 ,2,14978,45 ,2,14979,374225 ,1,0,554595 ,2,14956,171705 ,2,822,42465 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410775 ,1,0,554925 ,2,14956,171195 ,2,822,42465 ,2,14975,585095 ,2,14976,23130 ,2,14977,23120 ,2,14965,552195 ,2,14978,45 ,2,14979,378535 ,1,0,555220 ,2,14956,171650 ,2,822,42465 ,2,14975,559140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383275 ,1,0,555560 ,2,14956,171725 ,2,822,42465 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363370 ,1,0,555745 ,2,14956,167780 ,2,822,42475 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263235 ,2,14979,410420 ,1,0,555960 ,2,14956,2855 ,2,822,42515 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392090 ,1,0,556285 ,2,14956,292865 ,2,822,42515 ,2,14975,568030 ,2,14976,23130 ,2,14977,114300 ,2,14965,45 ,2,14978,45 ,2,14979,398510 ,1,0,556485 ,2,14956,195335 ,2,822,42515 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263260 ,2,14979,412650 ,1,0,556760 ,2,14956,292895 ,2,822,42535 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416915 ,1,0,557050 ,2,14956,292895 ,2,822,42545 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399220 ,1,0,557180 ,2,14956,167780 ,2,822,42545 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263270 ,2,14979,410425 ,1,0,557465 ,2,14956,292895 ,2,822,42560 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399225 ,1,0,557735 ,2,14956,292895 ,2,822,42475 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399215 ,1,0,557940 ,2,14956,172315 ,2,822,13515 ,2,14975,584805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387745 ,1,0,558135 ,2,14956,166620 ,2,822,13515 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114525 ,2,14979,356310 ,1,0,558330 ,2,14956,6550 ,2,822,13515 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372785 ,1,0,558610 ,2,14956,172325 ,2,822,13515 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417210 ,1,0,558865 ,2,14956,6870 ,2,822,13515 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362370 ,1,0,559040 ,2,14956,172315 ,2,822,13525 ,2,14975,584895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413960 ,1,0,559300 ,2,14956,166620 ,2,822,13525 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114625 ,2,14979,356340 ,1,0,559820 ,2,14956,6550 ,2,822,13525 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372835 ,1,0,560235 ,2,14956,172325 ,2,822,13525 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417225 ,1,0,560675 ,2,14956,6870 ,2,822,13525 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362410 ,1,0,561075 ,2,14956,172315 ,2,822,13535 ,2,14975,585020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413970 ,1,0,561285 ,2,14956,166620 ,2,822,13535 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114695 ,2,14979,356410 ,1,0,561480 ,2,14956,6550 ,2,822,13535 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372870 ,1,0,561735 ,2,14956,172325 ,2,822,13535 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417240 ,1,0,562100 ,2,14956,6870 ,2,822,13535 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362460 ,1,0,562430 ,2,14956,171670 ,2,822,42570 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356450 ,1,0,562555 ,2,14956,166910 ,2,822,42570 ,2,14975,559165 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358560 ,1,0,562705 ,2,14956,6870 ,2,822,13545 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362560 ,1,0,562905 ,2,14956,166620 ,2,822,13545 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114805 ,2,14979,356505 ,1,0,563210 ,2,14956,6550 ,2,822,13545 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372950 ,1,0,563535 ,2,14956,166910 ,2,822,42580 ,2,14975,561455 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358570 ,1,0,563820 ,2,14956,172325 ,2,822,13545 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417295 ,1,0,564165 ,2,14956,172315 ,2,822,13545 ,2,14975,561455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414010 ,1,0,564335 ,2,14956,171670 ,2,822,42580 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356460 ,1,0,564540 ,2,14956,171670 ,2,822,42590 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356515 ,1,0,564735 ,2,14956,166910 ,2,822,42590 ,2,14975,561455 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358580 ,1,0,564995 ,2,14956,7240 ,2,822,54815 ,2,14975,585210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114905 ,2,14979,356535 ,1,0,565310 ,2,14956,6870 ,2,822,13555 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362645 ,1,0,565645 ,2,14956,166620 ,2,822,13555 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,114995 ,2,14979,356545 ,1,0,565985 ,2,14956,6550 ,2,822,13555 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372990 ,1,0,566245 ,2,14956,166910 ,2,822,42620 ,2,14975,585210 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358590 ,1,0,566560 ,2,14956,172325 ,2,822,13555 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417330 ,1,0,566895 ,2,14956,172315 ,2,822,13555 ,2,14975,585210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414020 ,1,0,567115 ,2,14956,171670 ,2,822,42620 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356525 ,1,0,567485 ,2,14956,171670 ,2,822,42630 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356555 ,1,0,567885 ,2,14956,166910 ,2,822,42630 ,2,14975,585210 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358600 ,1,0,568260 ,2,14956,171670 ,2,822,42640 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356575 ,1,0,568605 ,2,14956,166910 ,2,822,42640 ,2,14975,558280 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358620 ,1,0,568960 ,2,14956,6870 ,2,822,13565 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362770 ,1,0,569170 ,2,14956,166620 ,2,822,13565 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115155 ,2,14979,356620 ,1,0,569355 ,2,14956,6550 ,2,822,13565 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373055 ,1,0,569565 ,2,14956,166910 ,2,822,42650 ,2,14975,558580 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358630 ,1,0,569925 ,2,14956,172325 ,2,822,13565 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417385 ,1,0,570250 ,2,14956,172315 ,2,822,13565 ,2,14975,558580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414040 ,1,0,570715 ,2,14956,171670 ,2,822,42650 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356610 ,1,0,571080 ,2,14956,171670 ,2,822,42660 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356630 ,1,0,571275 ,2,14956,166910 ,2,822,42660 ,2,14975,558580 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358665 ,1,0,571495 ,2,14956,171670 ,2,822,42670 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356660 ,1,0,571675 ,2,14956,166910 ,2,822,42670 ,2,14975,559210 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358685 ,1,0,571880 ,2,14956,171670 ,2,822,42680 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356670 ,1,0,572200 ,2,14956,166910 ,2,822,42680 ,2,14975,558415 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358710 ,1,0,572535 ,2,14956,6870 ,2,822,13575 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362910 ,1,0,572965 ,2,14956,166620 ,2,822,13575 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115375 ,2,14979,356745 ,1,0,573290 ,2,14956,6550 ,2,822,13575 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373130 ,1,0,573605 ,2,14956,166910 ,2,822,42715 ,2,14975,558415 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358695 ,1,0,573880 ,2,14956,172325 ,2,822,13575 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417435 ,1,0,574205 ,2,14956,172315 ,2,822,13575 ,2,14975,558415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414050 ,1,0,574460 ,2,14956,171670 ,2,822,42715 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356690 ,1,0,574785 ,2,14956,171670 ,2,822,13575 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356680 ,1,0,575105 ,2,14956,171670 ,2,822,13605 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356755 ,1,0,575445 ,2,14956,166620 ,2,822,13605 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115440 ,2,14979,356765 ,1,0,575740 ,2,14956,6550 ,2,822,13605 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373140 ,1,0,576010 ,2,14956,172315 ,2,822,13605 ,2,14975,558415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414075 ,1,0,576325 ,2,14956,172325 ,2,822,13605 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417440 ,1,0,576770 ,2,14956,6870 ,2,822,13605 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362920 ,1,0,577075 ,2,14956,171670 ,2,822,42725 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356775 ,1,0,577270 ,2,14956,4015 ,2,822,54825 ,2,14975,585400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115545 ,2,14979,356790 ,1,0,577385 ,2,14956,166910 ,2,822,42725 ,2,14975,585400 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358730 ,1,0,577510 ,2,14956,6870 ,2,822,13615 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362995 ,1,0,577790 ,2,14956,166620 ,2,822,13615 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115605 ,2,14979,356820 ,1,0,578175 ,2,14956,6550 ,2,822,13615 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373160 ,1,0,578440 ,2,14956,166910 ,2,822,42745 ,2,14975,585400 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358720 ,1,0,578730 ,2,14956,172325 ,2,822,13615 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417455 ,1,0,579045 ,2,14956,172315 ,2,822,13615 ,2,14975,585400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414080 ,1,0,579375 ,2,14956,171670 ,2,822,42745 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356810 ,1,0,579645 ,2,14956,171670 ,2,822,13615 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356800 ,1,0,579920 ,2,14956,171670 ,2,822,13625 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356835 ,1,0,580115 ,2,14956,166620 ,2,822,13625 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115680 ,2,14979,356845 ,1,0,580385 ,2,14956,6550 ,2,822,13625 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373175 ,1,0,580625 ,2,14956,172315 ,2,822,13625 ,2,14975,585400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414085 ,1,0,580890 ,2,14956,172325 ,2,822,13625 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417460 ,1,0,581090 ,2,14956,6870 ,2,822,13625 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363005 ,1,0,581360 ,2,14956,11795 ,2,822,54835 ,2,14975,585420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115710 ,2,14979,356865 ,1,0,581615 ,2,14956,6870 ,2,822,13635 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363045 ,1,0,581885 ,2,14956,166620 ,2,822,13635 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,115790 ,2,14979,356875 ,1,0,582165 ,2,14956,6550 ,2,822,13635 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373190 ,1,0,582425 ,2,14956,166910 ,2,822,42765 ,2,14975,585420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358740 ,1,0,582705 ,2,14956,172325 ,2,822,13635 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417470 ,1,0,582920 ,2,14956,172315 ,2,822,13635 ,2,14975,585420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387870 ,1,0,583125 ,2,14956,171670 ,2,822,42765 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356855 ,1,0,583350 ,2,14956,171670 ,2,822,42775 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356885 ,1,0,583710 ,2,14956,166910 ,2,822,42775 ,2,14975,585420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358780 ,1,0,584060 ,2,14956,171670 ,2,822,42785 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356905 ,1,0,584380 ,2,14956,166910 ,2,822,42785 ,2,14975,558990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358800 ,1,0,584720 ,2,14956,171670 ,2,822,42815 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,356930 ,1,0,584915 ,2,14956,166910 ,2,822,42815 ,2,14975,559255 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358820 ,1,0,585115 ,2,14956,173945 ,2,822,42825 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263280 ,2,14979,410445 ,1,0,585375 ,2,14956,293400 ,2,822,42845 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392925 ,1,0,585625 ,2,14956,171505 ,2,822,42845 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393490 ,1,0,585875 ,2,14956,293420 ,2,822,42860 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,187425 ,2,14979,2415 ,1,0,586150 ,2,14956,171450 ,2,822,42860 ,2,14975,599870 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,236895 ,2,14979,356965 ,1,0,586360 ,2,14956,293430 ,2,822,42860 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,187445 ,2,14979,2415 ,1,0,586560 ,2,14956,293400 ,2,822,42860 ,2,14975,599970 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,236905 ,2,14979,356985 ,1,0,586765 ,2,14956,293470 ,2,822,42860 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,187485 ,2,14979,2415 ,1,0,586965 ,2,14956,171505 ,2,822,42860 ,2,14975,599870 ,2,14976,116075 ,2,14977,23360 ,2,14965,45 ,2,14978,236915 ,2,14979,356990 ,1,0,587225 ,2,14956,171450 ,2,822,42860 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,187425 ,2,14979,356975 ,1,0,587425 ,2,14956,293400 ,2,822,42860 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,187445 ,2,14979,392990 ,1,0,587715 ,2,14956,171505 ,2,822,42860 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,187485 ,2,14979,393555 ,1,0,587925 ,2,14956,293400 ,2,822,42870 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392985 ,1,0,588120 ,2,14956,171505 ,2,822,42870 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393540 ,1,0,588320 ,2,14956,293400 ,2,822,42880 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392935 ,1,0,588520 ,2,14956,171505 ,2,822,42880 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393530 ,1,0,588715 ,2,14956,293400 ,2,822,42935 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392920 ,1,0,589000 ,2,14956,171505 ,2,822,42935 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,416000 ,1,0,589180 ,2,14956,293400 ,2,822,42945 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392930 ,1,0,589375 ,2,14956,171505 ,2,822,42945 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393525 ,1,0,589605 ,2,14956,13210 ,2,822,42825 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396010 ,1,0,589845 ,2,14956,6245 ,2,822,42825 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388525 ,1,0,590040 ,2,14956,175910 ,2,822,42825 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263290 ,2,14979,413680 ,1,0,590235 ,2,14956,10665 ,2,822,14490 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,116305 ,2,14979,413630 ,1,0,590425 ,2,14956,171670 ,2,822,14490 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,357080 ,1,0,590680 ,2,14956,10665 ,2,822,14470 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,116325 ,2,14979,413670 ,1,0,590990 ,2,14956,173945 ,2,822,42955 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263300 ,2,14979,410455 ,1,0,591260 ,2,14956,293625 ,2,822,54865 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263310 ,2,14979,357285 ,1,0,591395 ,2,14956,293645 ,2,822,54875 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263320 ,2,14979,357300 ,1,0,591650 ,2,14956,293675 ,2,822,54885 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263330 ,2,14979,357310 ,1,0,591915 ,2,14956,293695 ,2,822,54895 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263375 ,2,14979,357315 ,1,0,592170 ,2,14956,182390 ,2,822,42985 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385490 ,1,0,592435 ,2,14956,293720 ,2,822,42985 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357330 ,1,0,592735 ,2,14956,293775 ,2,822,42985 ,2,14975,568460 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,357380 ,1,0,593070 ,2,14956,293730 ,2,822,43005 ,2,14975,568460 ,2,14976,23450 ,2,14977,116430 ,2,14965,45 ,2,14978,45 ,2,14979,357390 ,1,0,593370 ,2,14956,293740 ,2,822,42955 ,2,14975,585605 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,357400 ,1,0,593640 ,2,14956,184135 ,2,822,42985 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380665 ,1,0,593900 ,2,14956,223625 ,2,822,42985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364875 ,1,0,594110 ,2,14956,217195 ,2,822,42985 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369285 ,1,0,594470 ,2,14956,293785 ,2,822,42985 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263310 ,2,14979,2415 ,1,0,594780 ,2,14956,293795 ,2,822,42985 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263320 ,2,14979,2415 ,1,0,595100 ,2,14956,293805 ,2,822,42985 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263330 ,2,14979,2415 ,1,0,595405 ,2,14956,293815 ,2,822,42985 ,2,14975,564325 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263375 ,2,14979,2415 ,1,0,595735 ,2,14956,217455 ,2,822,42995 ,2,14975,585665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384820 ,1,0,595985 ,2,14956,173945 ,2,822,43005 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263385 ,2,14979,410545 ,1,0,596175 ,2,14956,216035 ,2,822,54920 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413480 ,1,0,596380 ,2,14956,184135 ,2,822,54920 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410485 ,1,0,596640 ,2,14956,217345 ,2,822,54920 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412250 ,1,0,596845 ,2,14956,239550 ,2,822,42955 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395020 ,1,0,597070 ,2,14956,211025 ,2,822,42955 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377320 ,1,0,597370 ,2,14956,167780 ,2,822,43060 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263395 ,2,14979,410490 ,1,0,597640 ,2,14956,293920 ,2,822,43060 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,116575 ,2,14979,2415 ,1,0,597875 ,2,14956,174935 ,2,822,43060 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397235 ,1,0,598130 ,2,14956,166620 ,2,822,43060 ,2,14975,611325 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,116585 ,2,14979,357445 ,1,0,598360 ,2,14956,6550 ,2,822,43060 ,2,14975,611325 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372550 ,1,0,598690 ,2,14956,2855 ,2,822,43080 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392505 ,1,0,599005 ,2,14956,167780 ,2,822,43080 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263405 ,2,14979,410505 ,1,0,599210 ,2,14956,293985 ,2,822,43060 ,2,14975,611325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357495 ,1,0,599465 ,2,14956,295425 ,2,822,43060 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357505 ,1,0,599675 ,2,14956,295395 ,2,822,43110 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,357540 ,1,0,599865 ,2,14956,294025 ,2,822,54930 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357550 ,1,0,600060 ,2,14956,294035 ,2,822,54930 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357560 ,1,0,600230 ,2,14956,294055 ,2,822,54930 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,357570 ,1,0,600505 ,2,14956,294065 ,2,822,54940 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263420 ,2,14979,357615 ,1,0,600770 ,2,14956,294085 ,2,822,43130 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357625 ,1,0,601015 ,2,14956,294095 ,2,822,43130 ,2,14975,585735 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,601265 ,2,14956,294105 ,2,822,43130 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263420 ,2,14979,2415 ,1,0,601505 ,2,14956,184205 ,2,822,43160 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393165 ,1,0,601780 ,2,14956,2855 ,2,822,43160 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415700 ,1,0,602055 ,2,14956,180325 ,2,822,43160 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,602355 ,2,14956,294125 ,2,822,43160 ,2,14975,585765 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,602575 ,2,14956,294470 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357650 ,1,0,602840 ,2,14956,294425 ,2,822,43200 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263430 ,2,14979,2415 ,1,0,603195 ,2,14956,294310 ,2,822,54990 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263430 ,2,14979,357670 ,1,0,603565 ,2,14956,294285 ,2,822,43190 ,2,14975,585780 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263440 ,2,14979,2415 ,1,0,603770 ,2,14956,294265 ,2,822,54980 ,2,14975,585780 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263440 ,2,14979,357715 ,1,0,603975 ,2,14956,294170 ,2,822,43190 ,2,14975,581510 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263450 ,2,14979,2415 ,1,0,604315 ,2,14956,294180 ,2,822,54950 ,2,14975,581510 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263450 ,2,14979,357735 ,1,0,604650 ,2,14956,2855 ,2,822,43180 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415695 ,1,0,604840 ,2,14956,294340 ,2,822,55000 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263485 ,2,14979,357745 ,1,0,605185 ,2,14956,294380 ,2,822,43200 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263485 ,2,14979,2415 ,1,0,605445 ,2,14956,294435 ,2,822,43200 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,357755 ,1,0,605695 ,2,14956,294445 ,2,822,43210 ,2,14975,585780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357660 ,1,0,605980 ,2,14956,294675 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357760 ,1,0,606170 ,2,14956,294500 ,2,822,43210 ,2,14975,585785 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263505 ,2,14979,2415 ,1,0,606375 ,2,14956,294480 ,2,822,55010 ,2,14975,585785 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263505 ,2,14979,357875 ,1,0,606565 ,2,14956,294510 ,2,822,43210 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357865 ,1,0,606805 ,2,14956,294520 ,2,822,43210 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357855 ,1,0,607135 ,2,14956,294530 ,2,822,43210 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357845 ,1,0,607460 ,2,14956,294580 ,2,822,43210 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263515 ,2,14979,2415 ,1,0,607805 ,2,14956,294540 ,2,822,55025 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263515 ,2,14979,357925 ,1,0,608080 ,2,14956,294590 ,2,822,43210 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357895 ,1,0,608370 ,2,14956,294600 ,2,822,43210 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357885 ,1,0,608585 ,2,14956,294610 ,2,822,43210 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,608860 ,2,14956,294620 ,2,822,43210 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357830 ,1,0,609240 ,2,14956,294640 ,2,822,14570 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,117165 ,2,14979,357980 ,1,0,609495 ,2,14956,294665 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,609730 ,2,14956,184205 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393170 ,1,0,609995 ,2,14956,294685 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358140 ,1,0,610265 ,2,14956,294695 ,2,822,43170 ,2,14975,585780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357970 ,1,0,610575 ,2,14956,294710 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358075 ,1,0,610955 ,2,14956,294720 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358055 ,1,0,611275 ,2,14956,294730 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358095 ,1,0,611655 ,2,14956,294740 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358120 ,1,0,611915 ,2,14956,294780 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358065 ,1,0,612300 ,2,14956,294790 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358045 ,1,0,612600 ,2,14956,294800 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357955 ,1,0,612915 ,2,14956,294810 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410500 ,1,0,613235 ,2,14956,294820 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358105 ,1,0,613485 ,2,14956,294830 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357945 ,1,0,613750 ,2,14956,294840 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358150 ,1,0,613935 ,2,14956,294850 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357935 ,1,0,614230 ,2,14956,294865 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358085 ,1,0,614755 ,2,14956,294875 ,2,822,43170 ,2,14975,599880 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,357825 ,1,0,614990 ,2,14956,294885 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357775 ,1,0,615320 ,2,14956,294895 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357990 ,1,0,615570 ,2,14956,294910 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410495 ,1,0,615860 ,2,14956,236665 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,357785 ,1,0,616195 ,2,14956,294920 ,2,822,43170 ,2,14975,585770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,616455 ,2,14956,294930 ,2,822,43170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358000 ,1,0,616645 ,2,14956,294990 ,2,822,55035 ,2,14975,585795 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263525 ,2,14979,358170 ,1,0,616840 ,2,14956,184205 ,2,822,43210 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393160 ,1,0,617175 ,2,14956,295010 ,2,822,43210 ,2,14975,585795 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263525 ,2,14979,2415 ,1,0,617390 ,2,14956,295020 ,2,822,43210 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,189050 ,2,14979,358185 ,1,0,617585 ,2,14956,295020 ,2,822,43210 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,236925 ,2,14979,358195 ,1,0,617865 ,2,14956,295030 ,2,822,43210 ,2,14975,585815 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,358205 ,1,0,618025 ,2,14956,4490 ,2,822,43210 ,2,14975,585740 ,2,14976,117390 ,2,14977,117380 ,2,14965,45 ,2,14978,250870 ,2,14979,2415 ,1,0,618315 ,2,14956,295040 ,2,822,43210 ,2,14975,585825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,358215 ,1,0,618590 ,2,14956,295050 ,2,822,43210 ,2,14975,581465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,358265 ,1,0,618850 ,2,14956,295060 ,2,822,43210 ,2,14975,585830 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358285 ,1,0,619015 ,2,14956,295085 ,2,822,43210 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358275 ,1,0,619255 ,2,14956,295095 ,2,822,43210 ,2,14975,585825 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358255 ,1,0,619550 ,2,14956,295105 ,2,822,43210 ,2,14975,585740 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358300 ,1,0,619845 ,2,14956,295115 ,2,822,43210 ,2,14975,585830 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,358310 ,1,0,620030 ,2,14956,295130 ,2,822,43210 ,2,14975,585830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,358320 ,1,0,620250 ,2,14956,295140 ,2,822,43210 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,358330 ,1,0,620490 ,2,14956,295150 ,2,822,43210 ,2,14975,585825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,358355 ,1,0,620845 ,2,14956,295215 ,2,822,43210 ,2,14975,585790 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358365 ,1,0,621025 ,2,14956,295160 ,2,822,43110 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,358385 ,1,0,621505 ,2,14956,295205 ,2,822,43110 ,2,14975,599880 ,2,14976,23450 ,2,14977,117475 ,2,14965,45 ,2,14978,45 ,2,14979,358375 ,1,0,621790 ,2,14956,295240 ,2,822,43220 ,2,14975,585840 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,622085 ,2,14956,295330 ,2,822,55045 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263535 ,2,14979,358405 ,1,0,622340 ,2,14956,295360 ,2,822,43110 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,189275 ,2,14979,358420 ,1,0,622505 ,2,14956,295360 ,2,822,43110 ,2,14975,599880 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,236965 ,2,14979,358430 ,1,0,622680 ,2,14956,295405 ,2,822,43110 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,357525 ,1,0,622870 ,2,14956,295415 ,2,822,43110 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,357515 ,1,0,623285 ,2,14956,295440 ,2,822,43060 ,2,14975,585710 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,623530 ,2,14956,167780 ,2,822,43230 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263575 ,2,14979,410510 ,1,0,623720 ,2,14956,2855 ,2,822,43230 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392530 ,1,0,623920 ,2,14956,166910 ,2,822,14480 ,2,14975,585855 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358830 ,1,0,624260 ,2,14956,295525 ,2,822,14490 ,2,14975,599855 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,117805 ,2,14979,358850 ,1,0,624565 ,2,14956,295535 ,2,822,14490 ,2,14975,599855 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,624815 ,2,14956,166910 ,2,822,14490 ,2,14975,585895 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358840 ,1,0,625195 ,2,14956,166910 ,2,822,14470 ,2,14975,585900 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,358875 ,1,0,625515 ,2,14956,173945 ,2,822,43265 ,2,14975,611360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263585 ,2,14979,410580 ,1,0,625765 ,2,14956,217015 ,2,822,43265 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379580 ,1,0,626095 ,2,14956,215285 ,2,822,43265 ,2,14975,566930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378830 ,1,0,626340 ,2,14956,171705 ,2,822,43285 ,2,14975,611365 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,359580 ,1,0,626585 ,2,14956,10080 ,2,822,43285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,189490 ,2,14979,385930 ,1,0,626805 ,2,14956,10080 ,2,822,43285 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,236975 ,2,14979,359620 ,1,0,627135 ,2,14956,166985 ,2,822,43285 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,189490 ,2,14979,385175 ,1,0,627340 ,2,14956,10580 ,2,822,43285 ,2,14975,611365 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410905 ,1,0,627590 ,2,14956,171410 ,2,822,43285 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372115 ,1,0,627720 ,2,14956,171715 ,2,822,43285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359840 ,1,0,627960 ,2,14956,171725 ,2,822,43285 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363440 ,1,0,628270 ,2,14956,278960 ,2,822,14470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359950 ,1,0,628460 ,2,14956,171715 ,2,822,14470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,359935 ,1,0,628820 ,2,14956,173945 ,2,822,43305 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,410895 ,1,0,629205 ,2,14956,166650 ,2,822,43305 ,2,14975,585930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,117980 ,2,14979,359975 ,1,0,629590 ,2,14956,8315 ,2,822,43305 ,2,14975,585930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376585 ,1,0,629925 ,2,14956,176805 ,2,822,43305 ,2,14975,585930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,117990 ,2,14979,359985 ,1,0,630215 ,2,14956,5060 ,2,822,43305 ,2,14975,585930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375910 ,1,0,630465 ,2,14956,295665 ,2,822,13645 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360065 ,1,0,630650 ,2,14956,166620 ,2,822,13645 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118115 ,2,14979,360080 ,1,0,630995 ,2,14956,6550 ,2,822,13645 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372770 ,1,0,631280 ,2,14956,295645 ,2,822,13645 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,360095 ,1,0,631580 ,2,14956,172315 ,2,822,13645 ,2,14975,584805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387740 ,1,0,631910 ,2,14956,172325 ,2,822,13645 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417205 ,1,0,632330 ,2,14956,6870 ,2,822,13645 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362360 ,1,0,632640 ,2,14956,295715 ,2,822,13655 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,632840 ,2,14956,166620 ,2,822,13655 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118175 ,2,14979,360150 ,1,0,633135 ,2,14956,295675 ,2,822,13655 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,633400 ,2,14956,172315 ,2,822,13655 ,2,14975,584895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387750 ,1,0,633700 ,2,14956,172325 ,2,822,13655 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417220 ,1,0,633945 ,2,14956,6870 ,2,822,13655 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362400 ,1,0,634200 ,2,14956,6550 ,2,822,13655 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372825 ,1,0,634510 ,2,14956,295745 ,2,822,13665 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,634800 ,2,14956,166620 ,2,822,13665 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118250 ,2,14979,360180 ,1,0,635010 ,2,14956,295725 ,2,822,13665 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,635195 ,2,14956,172315 ,2,822,13665 ,2,14975,585020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387755 ,1,0,635430 ,2,14956,172325 ,2,822,13665 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417235 ,1,0,635690 ,2,14956,6870 ,2,822,13665 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362450 ,1,0,635975 ,2,14956,6550 ,2,822,13665 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372855 ,1,0,636210 ,2,14956,295775 ,2,822,13675 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,636405 ,2,14956,166620 ,2,822,13675 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118325 ,2,14979,360215 ,1,0,636730 ,2,14956,295755 ,2,822,13675 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,637020 ,2,14956,172315 ,2,822,13675 ,2,14975,559165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387785 ,1,0,637255 ,2,14956,172325 ,2,822,13675 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400010 ,1,0,637495 ,2,14956,6870 ,2,822,13675 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362500 ,1,0,637815 ,2,14956,6550 ,2,822,13675 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372885 ,1,0,638190 ,2,14956,295830 ,2,822,13705 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,638540 ,2,14956,166620 ,2,822,13705 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,118365 ,2,14979,360225 ,1,0,638840 ,2,14956,295810 ,2,822,13705 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,639025 ,2,14956,172315 ,2,822,13705 ,2,14975,561455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387790 ,1,0,639280 ,2,14956,172325 ,2,822,13705 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400015 ,1,0,639455 ,2,14956,6870 ,2,822,13705 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362550 ,1,0,639610 ,2,14956,6550 ,2,822,13705 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372940 ,1,0,639730 ,2,14956,295980 ,2,822,43325 ,2,14975,573425 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,360275 ,1,0,639920 ,2,14956,295860 ,2,822,55055 ,2,14975,585995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263595 ,2,14979,360305 ,1,0,640125 ,2,14956,206825 ,2,822,43360 ,2,14975,585995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,360315 ,1,0,640375 ,2,14956,295880 ,2,822,43360 ,2,14975,585995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263595 ,2,14979,2415 ,1,0,640660 ,2,14956,295945 ,2,822,43325 ,2,14975,586040 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360325 ,1,0,641050 ,2,14956,295960 ,2,822,43325 ,2,14975,573425 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,360335 ,1,0,641225 ,2,14956,171330 ,2,822,43325 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360265 ,1,0,641500 ,2,14956,166850 ,2,822,14470 ,2,14975,606515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360365 ,1,0,641825 ,2,14956,213505 ,2,822,43390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190285 ,2,14979,360425 ,1,0,642115 ,2,14956,213395 ,2,822,43390 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,236985 ,2,14979,360435 ,1,0,642360 ,2,14956,213395 ,2,822,43390 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190285 ,2,14979,360445 ,1,0,642600 ,2,14956,217455 ,2,822,43410 ,2,14975,586065 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384660 ,1,0,642785 ,2,14956,213590 ,2,822,43410 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263605 ,2,14979,413135 ,1,0,643045 ,2,14956,211235 ,2,822,43410 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263615 ,2,14979,371770 ,1,0,643275 ,2,14956,296015 ,2,822,43420 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,360515 ,1,0,643450 ,2,14956,296025 ,2,822,43420 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360525 ,1,0,643645 ,2,14956,296035 ,2,822,43420 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360535 ,1,0,643865 ,2,14956,217195 ,2,822,43420 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369155 ,1,0,644175 ,2,14956,182390 ,2,822,43420 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385350 ,1,0,644420 ,2,14956,296045 ,2,822,43420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190425 ,2,14979,360545 ,1,0,644585 ,2,14956,296045 ,2,822,43420 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,236995 ,2,14979,360575 ,1,0,644770 ,2,14956,296055 ,2,822,43420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190425 ,2,14979,2415 ,1,0,645015 ,2,14956,296075 ,2,822,43420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190455 ,2,14979,2415 ,1,0,645190 ,2,14956,296065 ,2,822,43420 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,237025 ,2,14979,360590 ,1,0,645485 ,2,14956,223625 ,2,822,43420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364770 ,1,0,645805 ,2,14956,296085 ,2,822,43420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190515 ,2,14979,360615 ,1,0,646115 ,2,14956,296085 ,2,822,43420 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,237035 ,2,14979,360635 ,1,0,646380 ,2,14956,296125 ,2,822,43420 ,2,14975,586075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,646710 ,2,14956,296135 ,2,822,43420 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360630 ,1,0,646950 ,2,14956,296065 ,2,822,43420 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190455 ,2,14979,360595 ,1,0,647260 ,2,14956,296145 ,2,822,43420 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360605 ,1,0,647500 ,2,14956,296155 ,2,822,43420 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360645 ,1,0,647785 ,2,14956,296170 ,2,822,43420 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190515 ,2,14979,2415 ,1,0,648095 ,2,14956,217015 ,2,822,43430 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379545 ,1,0,648350 ,2,14956,215285 ,2,822,43430 ,2,14975,566930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378805 ,1,0,648665 ,2,14956,207015 ,2,822,43390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190635 ,2,14979,372560 ,1,0,648895 ,2,14956,206975 ,2,822,43390 ,2,14975,599870 ,2,14976,57255 ,2,14977,57245 ,2,14965,45 ,2,14978,237045 ,2,14979,360680 ,1,0,649220 ,2,14956,213375 ,2,822,43390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190655 ,2,14979,362085 ,1,0,649445 ,2,14956,213225 ,2,822,43390 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237055 ,2,14979,360690 ,1,0,649700 ,2,14956,213485 ,2,822,43390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190675 ,2,14979,361735 ,1,0,649875 ,2,14956,213475 ,2,822,43390 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237085 ,2,14979,360710 ,1,0,650065 ,2,14956,213305 ,2,822,43390 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190735 ,2,14979,361450 ,1,0,650300 ,2,14956,213290 ,2,822,43390 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237095 ,2,14979,360730 ,1,0,650585 ,2,14956,206975 ,2,822,43390 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,190635 ,2,14979,372395 ,1,0,650795 ,2,14956,213325 ,2,822,43390 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370625 ,1,0,651040 ,2,14956,213225 ,2,822,43390 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190655 ,2,14979,360700 ,1,0,651260 ,2,14956,213475 ,2,822,43390 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190675 ,2,14979,360720 ,1,0,651465 ,2,14956,213290 ,2,822,43390 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190735 ,2,14979,360740 ,1,0,651750 ,2,14956,296245 ,2,822,43390 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410930 ,1,0,652080 ,2,14956,296255 ,2,822,43390 ,2,14975,586050 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,652520 ,2,14956,213505 ,2,822,43470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,190860 ,2,14979,360880 ,1,0,652835 ,2,14956,213395 ,2,822,43470 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237105 ,2,14979,360890 ,1,0,653005 ,2,14956,213395 ,2,822,43470 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,190860 ,2,14979,410935 ,1,0,653200 ,2,14956,217015 ,2,822,43490 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379800 ,1,0,653380 ,2,14956,215285 ,2,822,43490 ,2,14975,586105 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379110 ,1,0,653685 ,2,14956,182390 ,2,822,43500 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384415 ,1,0,653910 ,2,14956,296285 ,2,822,43500 ,2,14975,568900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,410940 ,1,0,654185 ,2,14956,213590 ,2,822,43500 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263625 ,2,14979,413080 ,1,0,654500 ,2,14956,199915 ,2,822,43500 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263635 ,2,14979,413930 ,1,0,654800 ,2,14956,211190 ,2,822,43470 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370115 ,1,0,655030 ,2,14956,296340 ,2,822,43470 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360935 ,1,0,655220 ,2,14956,296350 ,2,822,43470 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,360955 ,1,0,655565 ,2,14956,296360 ,2,822,43470 ,2,14975,586095 ,2,14976,24120 ,2,14977,118895 ,2,14965,45 ,2,14978,45 ,2,14979,360990 ,1,0,655915 ,2,14956,210875 ,2,822,43470 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366430 ,1,0,656185 ,2,14956,213225 ,2,822,43470 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191050 ,2,14979,410945 ,1,0,656495 ,2,14956,213225 ,2,822,43470 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237115 ,2,14979,361000 ,1,0,656780 ,2,14956,207130 ,2,822,43470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373860 ,1,0,657025 ,2,14956,210925 ,2,822,43470 ,2,14975,110 ,2,14976,24120 ,2,14977,55670 ,2,14965,45 ,2,14978,191080 ,2,14979,369910 ,1,0,657270 ,2,14956,210925 ,2,822,43470 ,2,14975,110 ,2,14976,55660 ,2,14977,55650 ,2,14965,45 ,2,14978,237130 ,2,14979,361010 ,1,0,657565 ,2,14956,213305 ,2,822,43470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191100 ,2,14979,361555 ,1,0,657840 ,2,14956,213290 ,2,822,43470 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237140 ,2,14979,361020 ,1,0,658070 ,2,14956,211220 ,2,822,43470 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411420 ,1,0,658265 ,2,14956,225500 ,2,822,43470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,361030 ,1,0,658585 ,2,14956,296380 ,2,822,43470 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,361040 ,1,0,658915 ,2,14956,207085 ,2,822,43470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378645 ,1,0,659150 ,2,14956,296400 ,2,822,43470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191185 ,2,14979,2415 ,1,0,659415 ,2,14956,296390 ,2,822,43470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237150 ,2,14979,361050 ,1,0,659700 ,2,14956,213325 ,2,822,43470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370795 ,1,0,660035 ,2,14956,296410 ,2,822,43470 ,2,14975,561460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,361095 ,1,0,660215 ,2,14956,213290 ,2,822,43470 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191100 ,2,14979,410950 ,1,0,660675 ,2,14956,296430 ,2,822,43470 ,2,14975,561460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,361105 ,1,0,660945 ,2,14956,210935 ,2,822,43470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371435 ,1,0,661285 ,2,14956,296440 ,2,822,43470 ,2,14975,567850 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,361115 ,1,0,661530 ,2,14956,296390 ,2,822,43470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,191185 ,2,14979,361060 ,1,0,661735 ,2,14956,225045 ,2,822,43470 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,360945 ,1,0,662045 ,2,14956,211025 ,2,822,43470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378055 ,1,0,662325 ,2,14956,208555 ,2,822,43470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,361125 ,1,0,662630 ,2,14956,213375 ,2,822,43470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191050 ,2,14979,362185 ,1,0,662825 ,2,14956,211070 ,2,822,43470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191080 ,2,14979,369840 ,1,0,663155 ,2,14956,225650 ,2,822,43470 ,2,14975,570955 ,2,14976,24020 ,2,14977,66075 ,2,14965,45 ,2,14978,45 ,2,14979,398195 ,1,0,663525 ,2,14956,213485 ,2,822,43470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191420 ,2,14979,361845 ,1,0,663710 ,2,14956,213475 ,2,822,43470 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237160 ,2,14979,361140 ,1,0,663965 ,2,14956,213385 ,2,822,43470 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363560 ,1,0,664200 ,2,14956,213475 ,2,822,43470 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191420 ,2,14979,410955 ,1,0,664530 ,2,14956,211385 ,2,822,43470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411165 ,1,0,664815 ,2,14956,213505 ,2,822,43515 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191470 ,2,14979,361240 ,1,0,665055 ,2,14956,213395 ,2,822,43515 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237195 ,2,14979,361250 ,1,0,665340 ,2,14956,213395 ,2,822,43515 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191470 ,2,14979,2415 ,1,0,665655 ,2,14956,213375 ,2,822,43515 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191515 ,2,14979,362310 ,1,0,665820 ,2,14956,213225 ,2,822,43515 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237205 ,2,14979,361280 ,1,0,666025 ,2,14956,213305 ,2,822,43515 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191535 ,2,14979,361665 ,1,0,666265 ,2,14956,213290 ,2,822,43515 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237215 ,2,14979,361310 ,1,0,666575 ,2,14956,213485 ,2,822,43515 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,191555 ,2,14979,362000 ,1,0,666805 ,2,14956,213475 ,2,822,43515 ,2,14975,599940 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,237225 ,2,14979,361335 ,1,0,667070 ,2,14956,211025 ,2,822,43515 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378155 ,1,0,667260 ,2,14956,213435 ,2,822,43515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364350 ,1,0,667460 ,2,14956,213225 ,2,822,43515 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191515 ,2,14979,361290 ,1,0,667830 ,2,14956,213290 ,2,822,43515 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191535 ,2,14979,361325 ,1,0,668080 ,2,14956,296500 ,2,822,43515 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,361300 ,1,0,668320 ,2,14956,213475 ,2,822,43515 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,191555 ,2,14979,2415 ,1,0,668495 ,2,14956,211290 ,2,822,43515 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411150 ,1,0,668720 ,2,14956,211005 ,2,822,43515 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411225 ,1,0,668900 ,2,14956,296510 ,2,822,43515 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,361345 ,1,0,669145 ,2,14956,296545 ,2,822,43515 ,2,14975,586115 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,361355 ,1,0,669380 ,2,14956,296575 ,2,822,14395 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,119000 ,2,14979,361980 ,1,0,669650 ,2,14956,173945 ,2,822,14395 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,361970 ,1,0,669960 ,2,14956,295645 ,2,822,13715 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,410960 ,1,0,670235 ,2,14956,166620 ,2,822,13715 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119060 ,2,14979,362390 ,1,0,670495 ,2,14956,6550 ,2,822,13715 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372815 ,1,0,670775 ,2,14956,295665 ,2,822,13715 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411000 ,1,0,670995 ,2,14956,172315 ,2,822,13715 ,2,14975,584805 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413955 ,1,0,671240 ,2,14956,172325 ,2,822,13715 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417215 ,1,0,671505 ,2,14956,6870 ,2,822,13715 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362380 ,1,0,671775 ,2,14956,295675 ,2,822,13725 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,672010 ,2,14956,166620 ,2,822,13725 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119125 ,2,14979,362440 ,1,0,672325 ,2,14956,6550 ,2,822,13725 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372845 ,1,0,672545 ,2,14956,295715 ,2,822,13725 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,672845 ,2,14956,172315 ,2,822,13725 ,2,14975,584895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413965 ,1,0,673115 ,2,14956,172325 ,2,822,13725 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417230 ,1,0,673380 ,2,14956,6870 ,2,822,13725 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362430 ,1,0,673635 ,2,14956,295725 ,2,822,13735 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,673820 ,2,14956,166620 ,2,822,13735 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119205 ,2,14979,362490 ,1,0,674080 ,2,14956,6550 ,2,822,13735 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372875 ,1,0,674395 ,2,14956,295745 ,2,822,13735 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,674775 ,2,14956,172315 ,2,822,13735 ,2,14975,585020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413975 ,1,0,674945 ,2,14956,172325 ,2,822,13735 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417280 ,1,0,30 ,2,14956,6870 ,2,822,13735 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362480 ,1,0,510 ,2,14956,295755 ,2,822,13755 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,855 ,2,14956,166620 ,2,822,13755 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119275 ,2,14979,362540 ,1,0,1290 ,2,14956,6550 ,2,822,13755 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372930 ,1,0,1815 ,2,14956,295775 ,2,822,13755 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,2150 ,2,14956,172315 ,2,822,13755 ,2,14975,559165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413985 ,1,0,2675 ,2,14956,172325 ,2,822,13755 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417290 ,1,0,3325 ,2,14956,6870 ,2,822,13755 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362530 ,1,0,3840 ,2,14956,295810 ,2,822,13765 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,4385 ,2,14956,166620 ,2,822,13765 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119365 ,2,14979,362580 ,1,0,4920 ,2,14956,6550 ,2,822,13765 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372970 ,1,0,5445 ,2,14956,295830 ,2,822,13765 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,5980 ,2,14956,172315 ,2,822,13765 ,2,14975,561455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414015 ,1,0,6300 ,2,14956,172325 ,2,822,13765 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417320 ,1,0,6825 ,2,14956,6870 ,2,822,13765 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362570 ,1,0,7385 ,2,14956,296670 ,2,822,13775 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,8050 ,2,14956,166620 ,2,822,13775 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119420 ,2,14979,362600 ,1,0,8360 ,2,14956,6550 ,2,822,13775 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372980 ,1,0,8690 ,2,14956,296650 ,2,822,13775 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,9205 ,2,14956,172315 ,2,822,13775 ,2,14975,585210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387795 ,1,0,9520 ,2,14956,172325 ,2,822,13775 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417325 ,1,0,9825 ,2,14956,6870 ,2,822,13775 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362590 ,1,0,10150 ,2,14956,296670 ,2,822,13785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,10465 ,2,14956,166620 ,2,822,13785 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119490 ,2,14979,362665 ,1,0,10795 ,2,14956,6550 ,2,822,13785 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373005 ,1,0,11225 ,2,14956,296650 ,2,822,13785 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,11770 ,2,14956,172315 ,2,822,13785 ,2,14975,585210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414025 ,1,0,12105 ,2,14956,172325 ,2,822,13785 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417335 ,1,0,12310 ,2,14956,6870 ,2,822,13785 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362655 ,1,0,12835 ,2,14956,296710 ,2,822,13805 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,13480 ,2,14956,166620 ,2,822,13805 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119545 ,2,14979,362685 ,1,0,13910 ,2,14956,6550 ,2,822,13805 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373025 ,1,0,14445 ,2,14956,296690 ,2,822,13805 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,14855 ,2,14956,172315 ,2,822,13805 ,2,14975,558280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387800 ,1,0,15295 ,2,14956,172325 ,2,822,13805 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417360 ,1,0,15735 ,2,14956,6870 ,2,822,13805 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362675 ,1,0,16145 ,2,14956,296710 ,2,822,13815 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,16800 ,2,14956,166620 ,2,822,13815 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119615 ,2,14979,362715 ,1,0,17230 ,2,14956,6550 ,2,822,13815 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411645 ,1,0,17540 ,2,14956,296690 ,2,822,13815 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,17965 ,2,14956,172315 ,2,822,13815 ,2,14975,558280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387810 ,1,0,18635 ,2,14956,172325 ,2,822,13815 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417370 ,1,0,19165 ,2,14956,6870 ,2,822,13815 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362705 ,1,0,19915 ,2,14956,296780 ,2,822,13825 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,20550 ,2,14956,166620 ,2,822,13825 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119695 ,2,14979,362760 ,1,0,21190 ,2,14956,6550 ,2,822,13825 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373045 ,1,0,21730 ,2,14956,296760 ,2,822,13825 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,22270 ,2,14956,172315 ,2,822,13825 ,2,14975,558580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387815 ,1,0,22820 ,2,14956,172325 ,2,822,13825 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417375 ,1,0,23390 ,2,14956,6870 ,2,822,13825 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362750 ,1,0,23935 ,2,14956,296780 ,2,822,13835 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,24610 ,2,14956,166620 ,2,822,13835 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119755 ,2,14979,362795 ,1,0,25190 ,2,14956,6550 ,2,822,13835 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373070 ,1,0,25835 ,2,14956,296760 ,2,822,13835 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,26485 ,2,14956,172315 ,2,822,13835 ,2,14975,558580 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414045 ,1,0,27010 ,2,14956,172325 ,2,822,13835 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417390 ,1,0,27665 ,2,14956,6870 ,2,822,13835 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362780 ,1,0,28205 ,2,14956,296825 ,2,822,13850 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,28550 ,2,14956,166620 ,2,822,13850 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119840 ,2,14979,362815 ,1,0,28955 ,2,14956,6550 ,2,822,13850 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373080 ,1,0,29305 ,2,14956,296805 ,2,822,13850 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,29765 ,2,14956,172315 ,2,822,13850 ,2,14975,559210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387820 ,1,0,30085 ,2,14956,172325 ,2,822,13850 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417395 ,1,0,30405 ,2,14956,6870 ,2,822,13850 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362805 ,1,0,30835 ,2,14956,296825 ,2,822,13860 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,31275 ,2,14956,166620 ,2,822,13860 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119910 ,2,14979,362870 ,1,0,31700 ,2,14956,6550 ,2,822,13860 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373095 ,1,0,32015 ,2,14956,296805 ,2,822,13860 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,32300 ,2,14956,172315 ,2,822,13860 ,2,14975,559210 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387840 ,1,0,32820 ,2,14956,172325 ,2,822,13860 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417430 ,1,0,33255 ,2,14956,6870 ,2,822,13860 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362860 ,1,0,33790 ,2,14956,296905 ,2,822,13870 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,34210 ,2,14956,166620 ,2,822,13870 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,119965 ,2,14979,362890 ,1,0,34830 ,2,14956,6550 ,2,822,13870 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373120 ,1,0,35315 ,2,14956,296885 ,2,822,13870 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,35835 ,2,14956,172315 ,2,822,13870 ,2,14975,558415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387845 ,1,0,36390 ,2,14956,172325 ,2,822,13870 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400020 ,1,0,36805 ,2,14956,6870 ,2,822,13870 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362880 ,1,0,37435 ,2,14956,296935 ,2,822,13880 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,37950 ,2,14956,166620 ,2,822,13880 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120055 ,2,14979,362940 ,1,0,38490 ,2,14956,6550 ,2,822,13880 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373155 ,1,0,39020 ,2,14956,296915 ,2,822,13880 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,39695 ,2,14956,172315 ,2,822,13880 ,2,14975,585400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387850 ,1,0,40220 ,2,14956,172325 ,2,822,13880 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417445 ,1,0,40675 ,2,14956,6870 ,2,822,13880 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,362930 ,1,0,41210 ,2,14956,6870 ,2,822,13920 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363015 ,1,0,41850 ,2,14956,166620 ,2,822,13920 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120135 ,2,14979,363025 ,1,0,42500 ,2,14956,6550 ,2,822,13920 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373180 ,1,0,43025 ,2,14956,172315 ,2,822,13920 ,2,14975,585420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387855 ,1,0,43450 ,2,14956,172325 ,2,822,13920 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417465 ,1,0,44240 ,2,14956,6870 ,2,822,13930 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363055 ,1,0,44775 ,2,14956,166620 ,2,822,13930 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120175 ,2,14979,363065 ,1,0,45310 ,2,14956,6550 ,2,822,13930 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373225 ,1,0,45935 ,2,14956,172315 ,2,822,13930 ,2,14975,585420 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414090 ,1,0,46475 ,2,14956,172325 ,2,822,13930 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417480 ,1,0,47000 ,2,14956,6870 ,2,822,13940 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363075 ,1,0,47495 ,2,14956,166620 ,2,822,13940 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120250 ,2,14979,363100 ,1,0,48250 ,2,14956,6550 ,2,822,13940 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411650 ,1,0,48870 ,2,14956,172315 ,2,822,13940 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387875 ,1,0,49485 ,2,14956,172325 ,2,822,13940 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417485 ,1,0,50110 ,2,14956,6870 ,2,822,13950 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363120 ,1,0,50755 ,2,14956,166620 ,2,822,13950 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120320 ,2,14979,363130 ,1,0,51405 ,2,14956,6550 ,2,822,13950 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411695 ,1,0,52045 ,2,14956,172315 ,2,822,13950 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387885 ,1,0,52570 ,2,14956,172325 ,2,822,13950 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417495 ,1,0,53225 ,2,14956,6870 ,2,822,13970 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363140 ,1,0,53660 ,2,14956,166620 ,2,822,13970 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120365 ,2,14979,363150 ,1,0,54115 ,2,14956,6550 ,2,822,13970 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373235 ,1,0,54650 ,2,14956,172315 ,2,822,13970 ,2,14975,559255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387900 ,1,0,55175 ,2,14956,172325 ,2,822,13970 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417505 ,1,0,55725 ,2,14956,6870 ,2,822,13980 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363170 ,1,0,56235 ,2,14956,166620 ,2,822,13980 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,120440 ,2,14979,363215 ,1,0,56890 ,2,14956,6550 ,2,822,13980 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373260 ,1,0,57215 ,2,14956,172315 ,2,822,13980 ,2,14975,559255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414100 ,1,0,57660 ,2,14956,172325 ,2,822,13980 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417515 ,1,0,58110 ,2,14956,171725 ,2,822,14470 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363495 ,1,0,58520 ,2,14956,297615 ,2,822,43545 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363590 ,1,0,59140 ,2,14956,297010 ,2,822,43585 ,2,14975,586330 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,59790 ,2,14956,297040 ,2,822,55080 ,2,14975,578995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263645 ,2,14979,363610 ,1,0,60290 ,2,14956,260640 ,2,822,43605 ,2,14975,561460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397240 ,1,0,60715 ,2,14956,260650 ,2,822,43605 ,2,14975,568460 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,395155 ,1,0,61280 ,2,14956,260660 ,2,822,43605 ,2,14975,568460 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,395050 ,1,0,61900 ,2,14956,260690 ,2,822,43605 ,2,14975,561515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397465 ,1,0,62425 ,2,14956,297060 ,2,822,43595 ,2,14975,578995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263645 ,2,14979,2415 ,1,0,62735 ,2,14956,211025 ,2,822,43615 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377875 ,1,0,63170 ,2,14956,297070 ,2,822,43615 ,2,14975,562300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,363670 ,1,0,63505 ,2,14956,213325 ,2,822,43615 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370590 ,1,0,63815 ,2,14956,211385 ,2,822,43615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366055 ,1,0,64245 ,2,14956,297085 ,2,822,43615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363680 ,1,0,64685 ,2,14956,297095 ,2,822,43615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363690 ,1,0,65135 ,2,14956,297105 ,2,822,43615 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363705 ,1,0,65650 ,2,14956,211220 ,2,822,43615 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411375 ,1,0,66155 ,2,14956,297115 ,2,822,43615 ,2,14975,586385 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,66565 ,2,14956,215350 ,2,822,43625 ,2,14975,586395 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386595 ,1,0,66995 ,2,14956,217015 ,2,822,43625 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379835 ,1,0,67600 ,2,14956,215285 ,2,822,43625 ,2,14975,586400 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379125 ,1,0,68035 ,2,14956,217015 ,2,822,43635 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379540 ,1,0,68545 ,2,14956,215285 ,2,822,43635 ,2,14975,586410 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378800 ,1,0,68955 ,2,14956,2855 ,2,822,43645 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415000 ,1,0,69370 ,2,14956,217455 ,2,822,43655 ,2,14975,586445 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384640 ,1,0,69885 ,2,14956,215585 ,2,822,43670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386930 ,1,0,70295 ,2,14956,215595 ,2,822,43670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386680 ,1,0,70810 ,2,14956,297265 ,2,822,43670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363785 ,1,0,71305 ,2,14956,215955 ,2,822,43670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386260 ,1,0,71845 ,2,14956,211080 ,2,822,43670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,374995 ,1,0,72360 ,2,14956,215685 ,2,822,43670 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388300 ,1,0,72970 ,2,14956,215695 ,2,822,43670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393400 ,1,0,73280 ,2,14956,215715 ,2,822,43670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386505 ,1,0,73695 ,2,14956,297315 ,2,822,43670 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,363795 ,1,0,74320 ,2,14956,297275 ,2,822,43545 ,2,14975,567805 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,363820 ,1,0,74605 ,2,14956,297285 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363815 ,1,0,75120 ,2,14956,297295 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363830 ,1,0,75730 ,2,14956,297305 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363840 ,1,0,76440 ,2,14956,215630 ,2,822,43670 ,2,14975,586400 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395560 ,1,0,76990 ,2,14956,215640 ,2,822,43670 ,2,14975,586460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373535 ,1,0,77405 ,2,14956,297325 ,2,822,43670 ,2,14975,586455 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,363895 ,1,0,77820 ,2,14956,2855 ,2,822,43680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391905 ,1,0,78460 ,2,14956,239550 ,2,822,43690 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394975 ,1,0,79125 ,2,14956,211025 ,2,822,43690 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377305 ,1,0,79640 ,2,14956,297385 ,2,822,43700 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194120 ,2,14979,2415 ,1,0,79955 ,2,14956,297375 ,2,822,43700 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237235 ,2,14979,363945 ,1,0,80260 ,2,14956,182390 ,2,822,43700 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385290 ,1,0,80595 ,2,14956,184135 ,2,822,43700 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380590 ,1,0,81265 ,2,14956,223625 ,2,822,43700 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364725 ,1,0,81875 ,2,14956,217195 ,2,822,43700 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369100 ,1,0,82195 ,2,14956,297375 ,2,822,43700 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,194120 ,2,14979,363955 ,1,0,82730 ,2,14956,216035 ,2,822,55090 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413415 ,1,0,83485 ,2,14956,184135 ,2,822,55090 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411010 ,1,0,84130 ,2,14956,217335 ,2,822,55090 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391235 ,1,0,84650 ,2,14956,217345 ,2,822,55090 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380865 ,1,0,85170 ,2,14956,297435 ,2,822,43730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194280 ,2,14979,2415 ,1,0,85625 ,2,14956,297425 ,2,822,43730 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,237245 ,2,14979,364005 ,1,0,86085 ,2,14956,297485 ,2,822,43730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194305 ,2,14979,2415 ,1,0,86385 ,2,14956,297475 ,2,822,43730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237255 ,2,14979,364025 ,1,0,86805 ,2,14956,297505 ,2,822,43730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194325 ,2,14979,2415 ,1,0,87230 ,2,14956,297495 ,2,822,43730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237265 ,2,14979,364050 ,1,0,87550 ,2,14956,182390 ,2,822,43730 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385320 ,1,0,87790 ,2,14956,184135 ,2,822,43730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380610 ,1,0,88115 ,2,14956,223625 ,2,822,43730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364750 ,1,0,88530 ,2,14956,217195 ,2,822,43730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369110 ,1,0,88845 ,2,14956,297425 ,2,822,43730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,194280 ,2,14979,364015 ,1,0,89360 ,2,14956,297475 ,2,822,43730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,194305 ,2,14979,364040 ,1,0,89875 ,2,14956,297495 ,2,822,43730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,194325 ,2,14979,364060 ,1,0,90300 ,2,14956,217455 ,2,822,43740 ,2,14975,586570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384635 ,1,0,90800 ,2,14956,211025 ,2,822,43545 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378065 ,1,0,91320 ,2,14956,297575 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364080 ,1,0,91815 ,2,14956,211080 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375245 ,1,0,92275 ,2,14956,297585 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364105 ,1,0,92775 ,2,14956,207130 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,373875 ,1,0,93200 ,2,14956,297595 ,2,822,43545 ,2,14975,586320 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,364115 ,1,0,93600 ,2,14956,211360 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366330 ,1,0,93935 ,2,14956,207085 ,2,822,43545 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378680 ,1,0,94155 ,2,14956,213325 ,2,822,43545 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370805 ,1,0,94680 ,2,14956,211385 ,2,822,43545 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411190 ,1,0,95100 ,2,14956,207140 ,2,822,43545 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373380 ,1,0,95655 ,2,14956,213385 ,2,822,43545 ,2,14975,599870 ,2,14976,23450 ,2,14977,57265 ,2,14965,45 ,2,14978,45 ,2,14979,363570 ,1,0,96185 ,2,14956,297740 ,2,822,43750 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364485 ,1,0,96480 ,2,14956,217455 ,2,822,43790 ,2,14975,586600 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384595 ,1,0,96810 ,2,14956,213590 ,2,822,43790 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263685 ,2,14979,413105 ,1,0,97345 ,2,14956,297690 ,2,822,43750 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194655 ,2,14979,2415 ,1,0,97780 ,2,14956,297680 ,2,822,43750 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,237295 ,2,14979,364535 ,1,0,98235 ,2,14956,182390 ,2,822,43750 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385250 ,1,0,98765 ,2,14956,184135 ,2,822,43750 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380575 ,1,0,99305 ,2,14956,297710 ,2,822,43750 ,2,14975,564000 ,2,14976,23450 ,2,14977,121175 ,2,14965,45 ,2,14978,45 ,2,14979,364555 ,1,0,99740 ,2,14956,217195 ,2,822,43750 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369065 ,1,0,100335 ,2,14956,297720 ,2,822,43750 ,2,14975,586575 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364545 ,1,0,100860 ,2,14956,297680 ,2,822,43750 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,194655 ,2,14979,364475 ,1,0,101290 ,2,14956,223625 ,2,822,43750 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364460 ,1,0,102005 ,2,14956,297930 ,2,822,43810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364575 ,1,0,102525 ,2,14956,217455 ,2,822,43820 ,2,14975,586635 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384625 ,1,0,103175 ,2,14956,213590 ,2,822,43820 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263695 ,2,14979,413110 ,1,0,103715 ,2,14956,216035 ,2,822,55100 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386150 ,1,0,104275 ,2,14956,184135 ,2,822,55100 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411080 ,1,0,104705 ,2,14956,217345 ,2,822,55100 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380860 ,1,0,105260 ,2,14956,297830 ,2,822,43810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194875 ,2,14979,2415 ,1,0,105795 ,2,14956,297815 ,2,822,43810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237305 ,2,14979,364650 ,1,0,106220 ,2,14956,297850 ,2,822,43810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194910 ,2,14979,2415 ,1,0,106645 ,2,14956,297840 ,2,822,43810 ,2,14975,110 ,2,14976,89110 ,2,14977,23120 ,2,14965,45 ,2,14978,237315 ,2,14979,364680 ,1,0,106975 ,2,14956,297890 ,2,822,43810 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,194930 ,2,14979,2415 ,1,0,107205 ,2,14956,297860 ,2,822,43810 ,2,14975,110 ,2,14976,78610 ,2,14977,23120 ,2,14965,45 ,2,14978,237325 ,2,14979,364705 ,1,0,107870 ,2,14956,182390 ,2,822,43810 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385255 ,1,0,108505 ,2,14956,297900 ,2,822,43810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,364670 ,1,0,108945 ,2,14956,297815 ,2,822,43810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,194875 ,2,14979,364660 ,1,0,109265 ,2,14956,297840 ,2,822,43810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,194910 ,2,14979,364695 ,1,0,109595 ,2,14956,297860 ,2,822,43810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,194930 ,2,14979,364715 ,1,0,110035 ,2,14956,184135 ,2,822,43810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380580 ,1,0,110360 ,2,14956,217195 ,2,822,43810 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369080 ,1,0,110675 ,2,14956,297910 ,2,822,43810 ,2,14975,586605 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,111120 ,2,14956,223625 ,2,822,43810 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364565 ,1,0,111655 ,2,14956,223625 ,2,822,43855 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,364940 ,1,0,112200 ,2,14956,297940 ,2,822,55110 ,2,14975,586705 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263705 ,2,14979,365000 ,1,0,112620 ,2,14956,297960 ,2,822,55120 ,2,14975,586710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263715 ,2,14979,365010 ,1,0,112945 ,2,14956,298000 ,2,822,55130 ,2,14975,586710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263725 ,2,14979,365020 ,1,0,113635 ,2,14956,298020 ,2,822,55140 ,2,14975,599870 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263735 ,2,14979,411085 ,1,0,114205 ,2,14956,217455 ,2,822,43865 ,2,14975,586715 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384885 ,1,0,114660 ,2,14956,298040 ,2,822,43865 ,2,14975,586710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,365035 ,1,0,114860 ,2,14956,298325 ,2,822,43865 ,2,14975,586670 ,2,14976,38230 ,2,14977,121475 ,2,14965,45 ,2,14978,45 ,2,14979,365040 ,1,0,115195 ,2,14956,298335 ,2,822,43865 ,2,14975,586705 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263705 ,2,14979,2415 ,1,0,115515 ,2,14956,298345 ,2,822,43865 ,2,14975,586710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263715 ,2,14979,2415 ,1,0,115840 ,2,14956,298355 ,2,822,43865 ,2,14975,586710 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263725 ,2,14979,2415 ,1,0,116395 ,2,14956,251610 ,2,822,55150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412680 ,1,0,116840 ,2,14956,251620 ,2,822,55150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413850 ,1,0,117345 ,2,14956,251630 ,2,822,55150 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412455 ,1,0,117755 ,2,14956,251655 ,2,822,55150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414345 ,1,0,118395 ,2,14956,251665 ,2,822,55150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414145 ,1,0,119025 ,2,14956,256370 ,2,822,55150 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414110 ,1,0,119555 ,2,14956,251620 ,2,822,55200 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413855 ,1,0,119985 ,2,14956,251630 ,2,822,55200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412460 ,1,0,120190 ,2,14956,251645 ,2,822,55200 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413815 ,1,0,120510 ,2,14956,251675 ,2,822,55200 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413515 ,1,0,120805 ,2,14956,251720 ,2,822,55200 ,2,14975,573425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383170 ,1,0,121445 ,2,14956,217455 ,2,822,43940 ,2,14975,586780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384890 ,1,0,122000 ,2,14956,213590 ,2,822,43940 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263745 ,2,14979,413305 ,1,0,122340 ,2,14956,184135 ,2,822,43960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412180 ,1,0,122975 ,2,14956,182390 ,2,822,43960 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385560 ,1,0,123590 ,2,14956,251655 ,2,822,43960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388885 ,1,0,124235 ,2,14956,251665 ,2,822,43960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387940 ,1,0,124755 ,2,14956,256370 ,2,822,43960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387915 ,1,0,125305 ,2,14956,251610 ,2,822,43960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383315 ,1,0,125970 ,2,14956,217195 ,2,822,43960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369390 ,1,0,126595 ,2,14956,298465 ,2,822,43855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,195525 ,2,14979,2415 ,1,0,127245 ,2,14956,298455 ,2,822,43855 ,2,14975,573440 ,2,14976,121650 ,2,14977,23120 ,2,14965,45 ,2,14978,237340 ,2,14979,365115 ,1,0,127570 ,2,14956,298520 ,2,822,43855 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,195545 ,2,14979,2415 ,1,0,127875 ,2,14956,298510 ,2,822,43855 ,2,14975,573440 ,2,14976,121650 ,2,14977,23120 ,2,14965,45 ,2,14978,237350 ,2,14979,365140 ,1,0,128520 ,2,14956,182390 ,2,822,43855 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385555 ,1,0,129040 ,2,14956,298530 ,2,822,43855 ,2,14975,577220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365160 ,1,0,129685 ,2,14956,251645 ,2,822,43855 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387380 ,1,0,130225 ,2,14956,298540 ,2,822,43855 ,2,14975,559725 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365185 ,1,0,130860 ,2,14956,298555 ,2,822,43855 ,2,14975,559725 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,365195 ,1,0,131420 ,2,14956,251675 ,2,822,43855 ,2,14975,573425 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386200 ,1,0,131945 ,2,14956,251720 ,2,822,43855 ,2,14975,573425 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383150 ,1,0,132500 ,2,14956,298455 ,2,822,43855 ,2,14975,573440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,195525 ,2,14979,365130 ,1,0,133025 ,2,14956,298510 ,2,822,43855 ,2,14975,573440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,195545 ,2,14979,365150 ,1,0,133530 ,2,14956,298565 ,2,822,43855 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365205 ,1,0,134035 ,2,14956,184135 ,2,822,43855 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380705 ,1,0,134575 ,2,14956,217195 ,2,822,43855 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369380 ,1,0,135095 ,2,14956,298585 ,2,822,43990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365480 ,1,0,135645 ,2,14956,184135 ,2,822,43990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380745 ,1,0,136185 ,2,14956,182390 ,2,822,43990 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385565 ,1,0,136740 ,2,14956,217195 ,2,822,43990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369400 ,1,0,137200 ,2,14956,217455 ,2,822,44030 ,2,14975,586850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384900 ,1,0,137625 ,2,14956,182390 ,2,822,44040 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,384695 ,1,0,137960 ,2,14956,298645 ,2,822,44040 ,2,14975,586865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365470 ,1,0,138490 ,2,14956,298655 ,2,822,44040 ,2,14975,586865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365380 ,1,0,138925 ,2,14956,298665 ,2,822,44040 ,2,14975,586865 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,365390 ,1,0,139560 ,2,14956,298675 ,2,822,44040 ,2,14975,586865 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,365400 ,1,0,140105 ,2,14956,298685 ,2,822,44040 ,2,14975,586865 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365425 ,1,0,140625 ,2,14956,217455 ,2,822,44050 ,2,14975,586905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384895 ,1,0,141150 ,2,14956,201390 ,2,822,44050 ,2,14975,586915 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263755 ,2,14979,416260 ,1,0,141575 ,2,14956,298585 ,2,822,44060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411090 ,1,0,142075 ,2,14956,298740 ,2,822,44060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365455 ,1,0,142590 ,2,14956,184135 ,2,822,44060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380750 ,1,0,143080 ,2,14956,182390 ,2,822,44060 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385570 ,1,0,143420 ,2,14956,223625 ,2,822,44060 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365490 ,1,0,143950 ,2,14956,217195 ,2,822,44060 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369410 ,1,0,145025 ,2,14956,2855 ,2,822,44085 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415545 ,1,0,145595 ,2,14956,6245 ,2,822,43970 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389120 ,1,0,145925 ,2,14956,13210 ,2,822,43970 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397690 ,1,0,146585 ,2,14956,2855 ,2,822,43970 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392245 ,1,0,147125 ,2,14956,298855 ,2,822,43970 ,2,14975,586940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365245 ,1,0,147580 ,2,14956,298870 ,2,822,44040 ,2,14975,586865 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365235 ,1,0,147995 ,2,14956,298740 ,2,822,43990 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365225 ,1,0,148330 ,2,14956,223625 ,2,822,43990 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365215 ,1,0,148855 ,2,14956,299310 ,2,822,44095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365615 ,1,0,149300 ,2,14956,298960 ,2,822,44115 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,196135 ,2,14979,2415 ,1,0,149845 ,2,14956,298950 ,2,822,44115 ,2,14975,599870 ,2,14976,64565 ,2,14977,23120 ,2,14965,45 ,2,14978,237360 ,2,14979,365675 ,1,0,150390 ,2,14956,298880 ,2,822,44095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365700 ,1,0,151140 ,2,14956,298890 ,2,822,44095 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365690 ,1,0,151700 ,2,14956,298900 ,2,822,44095 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,365710 ,1,0,152245 ,2,14956,298940 ,2,822,44095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365740 ,1,0,152685 ,2,14956,182390 ,2,822,44115 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385665 ,1,0,153000 ,2,14956,184135 ,2,822,44115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380805 ,1,0,153640 ,2,14956,298950 ,2,822,44115 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,196135 ,2,14979,365680 ,1,0,154165 ,2,14956,217195 ,2,822,44115 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369565 ,1,0,154820 ,2,14956,298970 ,2,822,44115 ,2,14975,586985 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365760 ,1,0,155445 ,2,14956,224005 ,2,822,44165 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,196265 ,2,14979,394200 ,1,0,155885 ,2,14956,223990 ,2,822,55210 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,237370 ,2,14979,365770 ,1,0,156425 ,2,14956,223805 ,2,822,55210 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,411100 ,1,0,156960 ,2,14956,223990 ,2,822,55210 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,196265 ,2,14979,411095 ,1,0,157470 ,2,14956,224070 ,2,822,55210 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,157900 ,2,14956,223805 ,2,822,44155 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387295 ,1,0,158415 ,2,14956,216035 ,2,822,55220 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413540 ,1,0,158915 ,2,14956,184135 ,2,822,55220 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411130 ,1,0,159140 ,2,14956,217335 ,2,822,55220 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415065 ,1,0,159685 ,2,14956,217345 ,2,822,55220 ,2,14975,569060 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412300 ,1,0,160330 ,2,14956,217455 ,2,822,44195 ,2,14975,587055 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385000 ,1,0,160895 ,2,14956,225045 ,2,822,44195 ,2,14975,570875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,365900 ,1,0,161635 ,2,14956,213590 ,2,822,44195 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263780 ,2,14979,413365 ,1,0,162295 ,2,14956,2855 ,2,822,44205 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415630 ,1,0,162950 ,2,14956,239550 ,2,822,44215 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395030 ,1,0,163485 ,2,14956,211025 ,2,822,44215 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377330 ,1,0,164035 ,2,14956,299145 ,2,822,44215 ,2,14975,110 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,365805 ,1,0,164675 ,2,14956,299185 ,2,822,55230 ,2,14975,560980 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263790 ,2,14979,365820 ,1,0,165205 ,2,14956,299215 ,2,822,44095 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,196515 ,2,14979,2415 ,1,0,165525 ,2,14956,299205 ,2,822,44095 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,237405 ,2,14979,365850 ,1,0,166045 ,2,14956,299270 ,2,822,44095 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,196535 ,2,14979,2415 ,1,0,166580 ,2,14956,299260 ,2,822,44095 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,237415 ,2,14979,365870 ,1,0,167135 ,2,14956,211025 ,2,822,44095 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,377855 ,1,0,167695 ,2,14956,299205 ,2,822,44095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,196515 ,2,14979,365865 ,1,0,168140 ,2,14956,299260 ,2,822,44095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,196535 ,2,14979,365880 ,1,0,168590 ,2,14956,184135 ,2,822,44095 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381015 ,1,0,169045 ,2,14956,184890 ,2,822,44095 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365910 ,1,0,169610 ,2,14956,299280 ,2,822,44095 ,2,14975,586980 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,365890 ,1,0,170145 ,2,14956,299290 ,2,822,44095 ,2,14975,560980 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263790 ,2,14979,2415 ,1,0,170675 ,2,14956,223625 ,2,822,44115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,365605 ,1,0,171125 ,2,14956,217195 ,2,822,44225 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366510 ,1,0,171580 ,2,14956,217455 ,2,822,44245 ,2,14975,587105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384515 ,1,0,172010 ,2,14956,299370 ,2,822,44225 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,196705 ,2,14979,2415 ,1,0,172550 ,2,14956,299360 ,2,822,44225 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237425 ,2,14979,366570 ,1,0,173110 ,2,14956,299380 ,2,822,44225 ,2,14975,587115 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,366590 ,1,0,173665 ,2,14956,299470 ,2,822,44225 ,2,14975,587130 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366605 ,1,0,174220 ,2,14956,182390 ,2,822,44290 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384160 ,1,0,174665 ,2,14956,182390 ,2,822,44265 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384155 ,1,0,175350 ,2,14956,213590 ,2,822,44265 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263800 ,2,14979,412940 ,1,0,175860 ,2,14956,299360 ,2,822,44225 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,196705 ,2,14979,366580 ,1,0,176295 ,2,14956,299775 ,2,822,44225 ,2,14975,587280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366630 ,1,0,176975 ,2,14956,299765 ,2,822,44300 ,2,14975,587155 ,2,14976,33630 ,2,14977,122680 ,2,14965,45 ,2,14978,45 ,2,14979,366640 ,1,0,177405 ,2,14956,182390 ,2,822,44320 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384400 ,1,0,177735 ,2,14956,299605 ,2,822,44320 ,2,14975,568460 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,366670 ,1,0,178075 ,2,14956,217015 ,2,822,44385 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379900 ,1,0,178435 ,2,14956,215285 ,2,822,44385 ,2,14975,587205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379195 ,1,0,178860 ,2,14956,299520 ,2,822,44395 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366700 ,1,0,179190 ,2,14956,215585 ,2,822,44395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,386940 ,1,0,179605 ,2,14956,215595 ,2,822,44395 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386710 ,1,0,179940 ,2,14956,215630 ,2,822,44395 ,2,14975,587255 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395590 ,1,0,180260 ,2,14956,215640 ,2,822,44395 ,2,14975,587260 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373570 ,1,0,180570 ,2,14956,299530 ,2,822,44395 ,2,14975,587250 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,180895 ,2,14956,215350 ,2,822,44365 ,2,14975,587265 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386625 ,1,0,181220 ,2,14956,217015 ,2,822,44365 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379895 ,1,0,181880 ,2,14956,215285 ,2,822,44365 ,2,14975,587255 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379190 ,1,0,182320 ,2,14956,299585 ,2,822,44365 ,2,14975,568900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366710 ,1,0,182645 ,2,14956,253045 ,2,822,44320 ,2,14975,568900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366730 ,1,0,183075 ,2,14956,199915 ,2,822,44320 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263810 ,2,14979,413925 ,1,0,183515 ,2,14956,299670 ,2,822,44310 ,2,14975,569665 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,366745 ,1,0,183820 ,2,14956,299625 ,2,822,44300 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,184145 ,2,14956,299625 ,2,822,44405 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,184480 ,2,14956,299635 ,2,822,44405 ,2,14975,587270 ,2,14976,33630 ,2,14977,122920 ,2,14965,45 ,2,14978,45 ,2,14979,366800 ,1,0,184800 ,2,14956,2855 ,2,822,44425 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415660 ,1,0,185265 ,2,14956,302280 ,2,822,44225 ,2,14975,587900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366820 ,1,0,185930 ,2,14956,13210 ,2,822,44470 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395220 ,1,0,186265 ,2,14956,6245 ,2,822,44470 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388055 ,1,0,186605 ,2,14956,195055 ,2,822,44470 ,2,14975,587320 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,395280 ,1,0,187035 ,2,14956,300180 ,2,822,44520 ,2,14975,587325 ,2,14976,23130 ,2,14977,123065 ,2,14965,45 ,2,14978,45 ,2,14979,366855 ,1,0,187375 ,2,14956,299840 ,2,822,55240 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263820 ,2,14979,411275 ,1,0,187695 ,2,14956,299875 ,2,822,44480 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,366895 ,1,0,188535 ,2,14956,299885 ,2,822,44480 ,2,14975,587335 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,188975 ,2,14956,299940 ,2,822,44480 ,2,14975,587340 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263830 ,2,14979,411280 ,1,0,189410 ,2,14956,166620 ,2,822,44500 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,123185 ,2,14979,366915 ,1,0,189820 ,2,14956,6550 ,2,822,44500 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371245 ,1,0,190275 ,2,14956,299975 ,2,822,44480 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263820 ,2,14979,2415 ,1,0,190695 ,2,14956,300015 ,2,822,55250 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263840 ,2,14979,411295 ,1,0,191145 ,2,14956,190865 ,2,822,44530 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394525 ,1,0,191585 ,2,14956,300035 ,2,822,44530 ,2,14975,587395 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,366945 ,1,0,192030 ,2,14956,300045 ,2,822,44530 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263840 ,2,14979,2415 ,1,0,192450 ,2,14956,300150 ,2,822,44520 ,2,14975,587385 ,2,14976,24120 ,2,14977,123410 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,192865 ,2,14956,300180 ,2,822,44975 ,2,14975,587400 ,2,14976,23130 ,2,14977,123065 ,2,14965,45 ,2,14978,45 ,2,14979,366845 ,1,0,193310 ,2,14956,166610 ,2,822,44595 ,2,14975,587415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,123460 ,2,14979,367010 ,1,0,193615 ,2,14956,10080 ,2,822,44595 ,2,14975,587415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,197400 ,2,14979,382330 ,1,0,194450 ,2,14956,10080 ,2,822,44595 ,2,14975,587415 ,2,14976,123495 ,2,14977,23120 ,2,14965,45 ,2,14978,237435 ,2,14979,367020 ,1,0,194900 ,2,14956,166985 ,2,822,44595 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,197400 ,2,14979,381840 ,1,0,195235 ,2,14956,300250 ,2,822,44595 ,2,14975,587440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367830 ,1,0,195795 ,2,14956,300305 ,2,822,44605 ,2,14975,587465 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367860 ,1,0,196225 ,2,14956,206825 ,2,822,44605 ,2,14975,587470 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,196760 ,2,14956,301605 ,2,822,44605 ,2,14975,587730 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367055 ,1,0,197220 ,2,14956,301285 ,2,822,44635 ,2,14975,566215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263850 ,2,14979,2415 ,1,0,197540 ,2,14956,300355 ,2,822,55260 ,2,14975,566215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263850 ,2,14979,367105 ,1,0,198405 ,2,14956,204680 ,2,822,44615 ,2,14975,100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397020 ,1,0,198725 ,2,14956,204700 ,2,822,44615 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397250 ,1,0,199270 ,2,14956,300425 ,2,822,55270 ,2,14975,587515 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263895 ,2,14979,367125 ,1,0,199790 ,2,14956,4490 ,2,822,44635 ,2,14975,605725 ,2,14976,123720 ,2,14977,123710 ,2,14965,45 ,2,14978,250925 ,2,14979,2415 ,1,0,200345 ,2,14956,300460 ,2,822,55305 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263905 ,2,14979,411300 ,1,0,200870 ,2,14956,200320 ,2,822,44700 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367135 ,1,0,201325 ,2,14956,300480 ,2,822,44700 ,2,14975,587530 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,201650 ,2,14956,300490 ,2,822,44700 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263905 ,2,14979,2415 ,1,0,202410 ,2,14956,300550 ,2,822,55315 ,2,14975,587535 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263915 ,2,14979,367150 ,1,0,202855 ,2,14956,300580 ,2,822,55325 ,2,14975,587545 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263925 ,2,14979,367160 ,1,0,203405 ,2,14956,300600 ,2,822,55335 ,2,14975,599870 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263945 ,2,14979,411305 ,1,0,203955 ,2,14956,300250 ,2,822,44635 ,2,14975,587605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367170 ,1,0,204470 ,2,14956,300755 ,2,822,44720 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367225 ,1,0,204815 ,2,14956,190865 ,2,822,44740 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394555 ,1,0,205500 ,2,14956,300685 ,2,822,55360 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263955 ,2,14979,411310 ,1,0,206035 ,2,14956,6245 ,2,822,44740 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388500 ,1,0,206465 ,2,14956,13210 ,2,822,44740 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395950 ,1,0,206895 ,2,14956,299875 ,2,822,44740 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367235 ,1,0,208385 ,2,14956,300705 ,2,822,44740 ,2,14975,587585 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,210410 ,2,14956,300715 ,2,822,44740 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263955 ,2,14979,2415 ,1,0,212355 ,2,14956,10000 ,2,822,44720 ,2,14975,587590 ,2,14976,23130 ,2,14977,123990 ,2,14965,45 ,2,14978,45 ,2,14979,367245 ,1,0,213005 ,2,14956,300765 ,2,822,44720 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367255 ,1,0,213680 ,2,14956,256845 ,2,822,44720 ,2,14975,561335 ,2,14976,23450 ,2,14977,124015 ,2,14965,45 ,2,14978,45 ,2,14979,367265 ,1,0,214350 ,2,14956,300775 ,2,822,44720 ,2,14975,587580 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,215000 ,2,14956,300305 ,2,822,44635 ,2,14975,587670 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367285 ,1,0,215315 ,2,14956,166610 ,2,822,44760 ,2,14975,587610 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,124045 ,2,14979,367325 ,1,0,215775 ,2,14956,10080 ,2,822,44760 ,2,14975,587610 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,197885 ,2,14979,382345 ,1,0,216180 ,2,14956,10080 ,2,822,44760 ,2,14975,587610 ,2,14976,123495 ,2,14977,23120 ,2,14965,45 ,2,14978,237445 ,2,14979,367335 ,1,0,216710 ,2,14956,166985 ,2,822,44760 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,197885 ,2,14979,381850 ,1,0,217255 ,2,14956,300250 ,2,822,44760 ,2,14975,587605 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367345 ,1,0,217795 ,2,14956,301015 ,2,822,44795 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,124145 ,2,14979,367380 ,1,0,218215 ,2,14956,300960 ,2,822,55380 ,2,14975,587655 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367400 ,1,0,218660 ,2,14956,300870 ,2,822,44795 ,2,14975,558580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,124190 ,2,14979,367430 ,1,0,218980 ,2,14956,300925 ,2,822,44795 ,2,14975,587650 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263965 ,2,14979,2415 ,1,0,220345 ,2,14956,300905 ,2,822,55370 ,2,14975,587650 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263965 ,2,14979,367450 ,1,0,222270 ,2,14956,300895 ,2,822,44795 ,2,14975,558580 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,124210 ,2,14979,367460 ,1,0,222720 ,2,14956,300950 ,2,822,44795 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,367440 ,1,0,223130 ,2,14956,300995 ,2,822,44795 ,2,14975,558580 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,263975 ,2,14979,411340 ,1,0,223715 ,2,14956,301025 ,2,822,44795 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367370 ,1,0,225640 ,2,14956,301125 ,2,822,44815 ,2,14975,587660 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264005 ,2,14979,2415 ,1,0,226070 ,2,14956,301085 ,2,822,55390 ,2,14975,587660 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264005 ,2,14979,367475 ,1,0,226405 ,2,14956,301135 ,2,822,44815 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,367355 ,1,0,226915 ,2,14956,301145 ,2,822,44760 ,2,14975,587615 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,227450 ,2,14956,301225 ,2,822,44635 ,2,14975,587730 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367485 ,1,0,228005 ,2,14956,301235 ,2,822,44635 ,2,14975,587515 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263895 ,2,14979,2415 ,1,0,229445 ,2,14956,301245 ,2,822,44635 ,2,14975,587535 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263915 ,2,14979,2415 ,1,0,230975 ,2,14956,301255 ,2,822,44635 ,2,14975,587545 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,263925 ,2,14979,2415 ,1,0,231415 ,2,14956,301395 ,2,822,44860 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264015 ,2,14979,2415 ,1,0,231810 ,2,14956,301305 ,2,822,55415 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264015 ,2,14979,411345 ,1,0,232480 ,2,14956,13210 ,2,822,44860 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395940 ,1,0,232885 ,2,14956,6245 ,2,822,44860 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388495 ,1,0,233210 ,2,14956,301375 ,2,822,44860 ,2,14975,587730 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367495 ,1,0,233960 ,2,14956,301405 ,2,822,44860 ,2,14975,587680 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,235005 ,2,14956,206825 ,2,822,44920 ,2,14975,587685 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264035 ,2,14979,2415 ,1,0,235665 ,2,14956,255415 ,2,822,55445 ,2,14975,587685 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264035 ,2,14979,367505 ,1,0,236305 ,2,14956,301535 ,2,822,44920 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264045 ,2,14979,2415 ,1,0,236950 ,2,14956,301505 ,2,822,55435 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264045 ,2,14979,367550 ,1,0,237285 ,2,14956,301485 ,2,822,44910 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264055 ,2,14979,2415 ,1,0,237595 ,2,14956,301425 ,2,822,55425 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264055 ,2,14979,367560 ,1,0,237910 ,2,14956,2855 ,2,822,44920 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390935 ,1,0,238325 ,2,14956,6245 ,2,822,44920 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414295 ,1,0,238760 ,2,14956,13210 ,2,822,44920 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396030 ,1,0,239290 ,2,14956,301595 ,2,822,44635 ,2,14975,587510 ,2,14976,23130 ,2,14977,124685 ,2,14965,45 ,2,14978,45 ,2,14979,367070 ,1,0,239730 ,2,14956,206825 ,2,822,44860 ,2,14975,587730 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,367060 ,1,0,240780 ,2,14956,301615 ,2,822,44605 ,2,14975,587455 ,2,14976,23130 ,2,14977,124685 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,242115 ,2,14956,300305 ,2,822,44945 ,2,14975,587465 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367820 ,1,0,243160 ,2,14956,300755 ,2,822,44945 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367600 ,1,0,243610 ,2,14956,10000 ,2,822,44945 ,2,14975,587740 ,2,14976,23130 ,2,14977,123990 ,2,14965,45 ,2,14978,45 ,2,14979,367605 ,1,0,244165 ,2,14956,300765 ,2,822,44945 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367645 ,1,0,244680 ,2,14956,301635 ,2,822,44955 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367655 ,1,0,245015 ,2,14956,256845 ,2,822,44945 ,2,14975,561335 ,2,14976,23450 ,2,14977,124015 ,2,14965,45 ,2,14978,45 ,2,14979,367665 ,1,0,245450 ,2,14956,190865 ,2,822,44945 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394470 ,1,0,245895 ,2,14956,6245 ,2,822,44945 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388490 ,1,0,246195 ,2,14956,13210 ,2,822,44945 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395935 ,1,0,247520 ,2,14956,301645 ,2,822,44945 ,2,14975,587735 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,248030 ,2,14956,301665 ,2,822,44955 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367675 ,1,0,248345 ,2,14956,301695 ,2,822,44955 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367715 ,1,0,249415 ,2,14956,301705 ,2,822,44955 ,2,14975,587755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367705 ,1,0,249940 ,2,14956,301715 ,2,822,44955 ,2,14975,568030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367695 ,1,0,250590 ,2,14956,301725 ,2,822,44955 ,2,14975,587755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367725 ,1,0,250900 ,2,14956,166620 ,2,822,44965 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,124780 ,2,14979,367775 ,1,0,251580 ,2,14956,6550 ,2,822,44965 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371235 ,1,0,252155 ,2,14956,301750 ,2,822,44965 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367785 ,1,0,252470 ,2,14956,301760 ,2,822,44965 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367800 ,1,0,252780 ,2,14956,299940 ,2,822,44575 ,2,14975,587785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,367810 ,1,0,253100 ,2,14956,301855 ,2,822,44575 ,2,14975,587410 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,253730 ,2,14956,302135 ,2,822,45010 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,254050 ,2,14956,301955 ,2,822,45030 ,2,14975,581505 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,367880 ,1,0,254375 ,2,14956,2855 ,2,822,45040 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390895 ,1,0,254720 ,2,14956,301975 ,2,822,45040 ,2,14975,587810 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,367905 ,1,0,255335 ,2,14956,2855 ,2,822,45050 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390890 ,1,0,255860 ,2,14956,302025 ,2,822,45050 ,2,14975,587820 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,367925 ,1,0,257325 ,2,14956,255415 ,2,822,55460 ,2,14975,587865 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264065 ,2,14979,367980 ,1,0,259230 ,2,14956,269615 ,2,822,45060 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,198760 ,2,14979,390375 ,1,0,259765 ,2,14956,269605 ,2,822,45060 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237455 ,2,14979,367990 ,1,0,260155 ,2,14956,302045 ,2,822,45060 ,2,14975,587870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368010 ,1,0,260560 ,2,14956,269605 ,2,822,45060 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,198760 ,2,14979,368000 ,1,0,260875 ,2,14956,269635 ,2,822,45060 ,2,14975,587880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368045 ,1,0,261185 ,2,14956,206825 ,2,822,45060 ,2,14975,587865 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264065 ,2,14979,2415 ,1,0,261595 ,2,14956,2855 ,2,822,45010 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390925 ,1,0,261905 ,2,14956,302270 ,2,822,45070 ,2,14975,587400 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,366835 ,1,0,262220 ,2,14956,302170 ,2,822,45070 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,368080 ,1,0,262730 ,2,14956,302180 ,2,822,45070 ,2,14975,561335 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,368090 ,1,0,263145 ,2,14956,302190 ,2,822,45070 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,368100 ,1,0,263465 ,2,14956,302200 ,2,822,45070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368110 ,1,0,263770 ,2,14956,302250 ,2,822,45070 ,2,14975,587895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,264110 ,2,14956,302415 ,2,822,44225 ,2,14975,568460 ,2,14976,23450 ,2,14977,125345 ,2,14965,45 ,2,14978,45 ,2,14979,368120 ,1,0,264810 ,2,14956,2855 ,2,822,45120 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392345 ,1,0,265145 ,2,14956,6245 ,2,822,45120 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389160 ,1,0,265600 ,2,14956,13210 ,2,822,45120 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397715 ,1,0,265885 ,2,14956,182390 ,2,822,45110 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384330 ,1,0,266535 ,2,14956,302425 ,2,822,44225 ,2,14975,587940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368140 ,1,0,267065 ,2,14956,302435 ,2,822,44225 ,2,14975,587945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368150 ,1,0,267660 ,2,14956,302465 ,2,822,44225 ,2,14975,587955 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,368180 ,1,0,267945 ,2,14956,302475 ,2,822,44225 ,2,14975,587945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368200 ,1,0,268960 ,2,14956,182390 ,2,822,44225 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385230 ,1,0,269465 ,2,14956,303180 ,2,822,44225 ,2,14975,587070 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368210 ,1,0,270095 ,2,14956,2855 ,2,822,45170 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392490 ,1,0,270725 ,2,14956,2855 ,2,822,45180 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392495 ,1,0,271420 ,2,14956,6245 ,2,822,45180 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414500 ,1,0,272160 ,2,14956,13210 ,2,822,45180 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397765 ,1,0,272565 ,2,14956,302525 ,2,822,45180 ,2,14975,588015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368285 ,1,0,272880 ,2,14956,269615 ,2,822,45150 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,199175 ,2,14979,391870 ,1,0,273320 ,2,14956,269605 ,2,822,45150 ,2,14975,588105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237500 ,2,14979,368305 ,1,0,273925 ,2,14956,302905 ,2,822,45315 ,2,14975,588095 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264075 ,2,14979,2415 ,1,0,274445 ,2,14956,302845 ,2,822,55470 ,2,14975,588095 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264075 ,2,14979,368335 ,1,0,276300 ,2,14956,269615 ,2,822,45240 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,199220 ,2,14979,391875 ,1,0,277680 ,2,14956,269605 ,2,822,45240 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237465 ,2,14979,368355 ,1,0,277995 ,2,14956,302725 ,2,822,45240 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,199240 ,2,14979,398875 ,1,0,278775 ,2,14956,302715 ,2,822,45240 ,2,14975,588035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237475 ,2,14979,368385 ,1,0,279265 ,2,14956,2855 ,2,822,45280 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392500 ,1,0,280320 ,2,14956,13210 ,2,822,45290 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397775 ,1,0,280625 ,2,14956,6245 ,2,822,45290 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389215 ,1,0,280935 ,2,14956,13210 ,2,822,45260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397770 ,1,0,281340 ,2,14956,6245 ,2,822,45260 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389180 ,1,0,281635 ,2,14956,269605 ,2,822,45240 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,199220 ,2,14979,368375 ,1,0,281915 ,2,14956,302755 ,2,822,45240 ,2,14975,588085 ,2,14976,23450 ,2,14977,125780 ,2,14965,45 ,2,14978,45 ,2,14979,368425 ,1,0,282260 ,2,14956,302715 ,2,822,45240 ,2,14975,588035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,199240 ,2,14979,368395 ,1,0,282580 ,2,14956,278425 ,2,822,45240 ,2,14975,561335 ,2,14976,24120 ,2,14977,125790 ,2,14965,45 ,2,14978,45 ,2,14979,399545 ,1,0,283305 ,2,14956,206825 ,2,822,45315 ,2,14975,588095 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,368435 ,1,0,283935 ,2,14956,302725 ,2,822,45150 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,199410 ,2,14979,398870 ,1,0,284240 ,2,14956,302715 ,2,822,45150 ,2,14975,588105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237510 ,2,14979,368490 ,1,0,284555 ,2,14956,269605 ,2,822,45150 ,2,14975,588105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,199175 ,2,14979,368315 ,1,0,284980 ,2,14956,302715 ,2,822,45150 ,2,14975,588105 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,199410 ,2,14979,368500 ,1,0,285305 ,2,14956,302925 ,2,822,45150 ,2,14975,588105 ,2,14976,23450 ,2,14977,125905 ,2,14965,45 ,2,14978,45 ,2,14979,368325 ,1,0,286350 ,2,14956,302940 ,2,822,45150 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368510 ,1,0,286695 ,2,14956,302950 ,2,822,45150 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368520 ,1,0,286990 ,2,14956,302960 ,2,822,45150 ,2,14975,588150 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368530 ,1,0,287305 ,2,14956,302970 ,2,822,45150 ,2,14975,588105 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368540 ,1,0,287820 ,2,14956,303010 ,2,822,45150 ,2,14975,587960 ,2,14976,24120 ,2,14977,125930 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,288315 ,2,14956,303070 ,2,822,45335 ,2,14975,588155 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368220 ,1,0,288840 ,2,14956,269615 ,2,822,45335 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,199540 ,2,14979,390065 ,1,0,289350 ,2,14956,269605 ,2,822,45335 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237520 ,2,14979,368550 ,1,0,289875 ,2,14956,302725 ,2,822,45335 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,199560 ,2,14979,396735 ,1,0,290370 ,2,14956,302715 ,2,822,45335 ,2,14975,587870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237530 ,2,14979,368595 ,1,0,290905 ,2,14956,269605 ,2,822,45335 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,199540 ,2,14979,368560 ,1,0,291190 ,2,14956,302715 ,2,822,45335 ,2,14975,587870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,199560 ,2,14979,368605 ,1,0,291790 ,2,14956,269645 ,2,822,45335 ,2,14975,587870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368615 ,1,0,292410 ,2,14956,303130 ,2,822,45355 ,2,14975,565160 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,368645 ,1,0,292925 ,2,14956,303140 ,2,822,45355 ,2,14975,565160 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,368655 ,1,0,293440 ,2,14956,303150 ,2,822,45355 ,2,14975,565160 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368665 ,1,0,293750 ,2,14956,303160 ,2,822,45355 ,2,14975,588160 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,294455 ,2,14956,303360 ,2,822,45375 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368705 ,1,0,294760 ,2,14956,217455 ,2,822,45385 ,2,14975,588180 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384520 ,1,0,295075 ,2,14956,2855 ,2,822,45445 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414935 ,1,0,295485 ,2,14956,303295 ,2,822,45375 ,2,14975,587115 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,368750 ,1,0,295890 ,2,14956,299380 ,2,822,45375 ,2,14975,587115 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,368760 ,1,0,296520 ,2,14956,303305 ,2,822,45375 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368770 ,1,0,297130 ,2,14956,303330 ,2,822,45375 ,2,14975,588205 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368790 ,1,0,297450 ,2,14956,303340 ,2,822,45375 ,2,14975,588210 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368800 ,1,0,298275 ,2,14956,182390 ,2,822,45375 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385235 ,1,0,298710 ,2,14956,217195 ,2,822,45375 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368695 ,1,0,299450 ,2,14956,217195 ,2,822,45455 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368810 ,1,0,300065 ,2,14956,217455 ,2,822,45465 ,2,14975,588230 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384525 ,1,0,300830 ,2,14956,216035 ,2,822,55480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413410 ,1,0,301460 ,2,14956,184135 ,2,822,55480 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412170 ,1,0,302105 ,2,14956,303440 ,2,822,45455 ,2,14975,587940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368855 ,1,0,302665 ,2,14956,303450 ,2,822,45455 ,2,14975,587940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368865 ,1,0,303215 ,2,14956,303460 ,2,822,45455 ,2,14975,587940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368920 ,1,0,303835 ,2,14956,303470 ,2,822,45455 ,2,14975,588280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368930 ,1,0,304455 ,2,14956,303480 ,2,822,45455 ,2,14975,578290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368950 ,1,0,304795 ,2,14956,303490 ,2,822,45455 ,2,14975,588210 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,368965 ,1,0,305130 ,2,14956,303500 ,2,822,45455 ,2,14975,587955 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,368975 ,1,0,305750 ,2,14956,303510 ,2,822,45455 ,2,14975,587115 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,368985 ,1,0,306045 ,2,14956,303545 ,2,822,45455 ,2,14975,587115 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,369000 ,1,0,306385 ,2,14956,303555 ,2,822,45455 ,2,14975,587945 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,369035 ,1,0,306815 ,2,14956,303565 ,2,822,45455 ,2,14975,588285 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369045 ,1,0,307205 ,2,14956,303575 ,2,822,45455 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,369055 ,1,0,307725 ,2,14956,182390 ,2,822,45455 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385240 ,1,0,308250 ,2,14956,184135 ,2,822,45510 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382075 ,1,0,308585 ,2,14956,303615 ,2,822,45510 ,2,14975,568430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376020 ,1,0,309000 ,2,14956,166485 ,2,822,14490 ,2,14975,606510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411850 ,1,0,309420 ,2,14956,6550 ,2,822,45535 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370205 ,1,0,309855 ,2,14956,166620 ,2,822,45535 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,126845 ,2,14979,370230 ,1,0,310260 ,2,14956,169470 ,2,822,45535 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396310 ,1,0,310680 ,2,14956,169460 ,2,822,45535 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416510 ,1,0,311005 ,2,14956,170435 ,2,822,45535 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382205 ,1,0,311340 ,2,14956,169490 ,2,822,45535 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264120 ,2,14979,380325 ,1,0,311900 ,2,14956,303700 ,2,822,45545 ,2,14975,561460 ,2,14976,23675 ,2,14977,126920 ,2,14965,45 ,2,14978,45 ,2,14979,370675 ,1,0,312250 ,2,14956,211235 ,2,822,45555 ,2,14975,567850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,312690 ,2,14956,6550 ,2,822,45580 ,2,14975,561380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,370955 ,1,0,313005 ,2,14956,2855 ,2,822,45580 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390620 ,1,0,313335 ,2,14956,6245 ,2,822,45580 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388415 ,1,0,313655 ,2,14956,13210 ,2,822,45580 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395825 ,1,0,314375 ,2,14956,231635 ,2,822,45600 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,370975 ,1,0,314805 ,2,14956,303820 ,2,822,45600 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371015 ,1,0,315205 ,2,14956,303865 ,2,822,45600 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371025 ,1,0,315890 ,2,14956,231450 ,2,822,45600 ,2,14975,599940 ,2,14976,23675 ,2,14977,83740 ,2,14965,45 ,2,14978,45 ,2,14979,387455 ,1,0,316190 ,2,14956,231680 ,2,822,45600 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371035 ,1,0,316950 ,2,14956,231730 ,2,822,45600 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,371040 ,1,0,317255 ,2,14956,303875 ,2,822,45600 ,2,14975,599940 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,317565 ,2,14956,303885 ,2,822,45600 ,2,14975,588340 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,317990 ,2,14956,303970 ,2,822,45635 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,318440 ,2,14956,248905 ,2,822,45635 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371060 ,1,0,318840 ,2,14956,303925 ,2,822,45635 ,2,14975,588345 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,319245 ,2,14956,213325 ,2,822,45600 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,370965 ,1,0,319550 ,2,14956,304075 ,2,822,45655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371130 ,1,0,319765 ,2,14956,217015 ,2,822,45675 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379825 ,1,0,320090 ,2,14956,215285 ,2,822,45675 ,2,14975,566930 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379115 ,1,0,320400 ,2,14956,217015 ,2,822,45685 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379970 ,1,0,320710 ,2,14956,215285 ,2,822,45685 ,2,14975,588375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379290 ,1,0,321010 ,2,14956,182390 ,2,822,45695 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384420 ,1,0,321430 ,2,14956,304030 ,2,822,45655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371190 ,1,0,321740 ,2,14956,248905 ,2,822,45655 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,371220 ,1,0,322060 ,2,14956,304040 ,2,822,45655 ,2,14975,588360 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,322610 ,2,14956,213325 ,2,822,45655 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,371115 ,1,0,323325 ,2,14956,13175 ,2,822,45705 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394170 ,1,0,323855 ,2,14956,168920 ,2,822,45705 ,2,14975,611490 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394020 ,1,0,324370 ,2,14956,166740 ,2,822,45745 ,2,14975,588430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375725 ,1,0,324890 ,2,14956,171410 ,2,822,14470 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,372135 ,1,0,325205 ,2,14956,6550 ,2,822,14480 ,2,14975,611355 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,128045 ,2,14979,373280 ,1,0,325505 ,2,14956,6550 ,2,822,14490 ,2,14975,606510 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,128055 ,2,14979,373295 ,1,0,326010 ,2,14956,6550 ,2,822,14470 ,2,14975,606515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,128065 ,2,14979,373320 ,1,0,326420 ,2,14956,171940 ,2,822,14470 ,2,14975,606515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,373340 ,1,0,327040 ,2,14956,171930 ,2,822,45755 ,2,14975,588435 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,374290 ,1,0,327665 ,2,14956,166670 ,2,822,45755 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,200675 ,2,14979,376505 ,1,0,328305 ,2,14956,166660 ,2,822,45755 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,237545 ,2,14979,374315 ,1,0,328950 ,2,14956,166495 ,2,822,45755 ,2,14975,588470 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375150 ,1,0,329405 ,2,14956,171195 ,2,822,45755 ,2,14975,588475 ,2,14976,23130 ,2,14977,23120 ,2,14965,553075 ,2,14978,45 ,2,14979,375935 ,1,0,329820 ,2,14956,166870 ,2,822,45755 ,2,14975,588470 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375090 ,1,0,330325 ,2,14956,166530 ,2,822,45755 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375820 ,1,0,330775 ,2,14956,166660 ,2,822,45755 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,200675 ,2,14979,411890 ,1,0,331410 ,2,14956,10665 ,2,822,45755 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382450 ,1,0,332060 ,2,14956,166680 ,2,822,45755 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411905 ,1,0,332385 ,2,14956,166935 ,2,822,45755 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,412075 ,1,0,332815 ,2,14956,166740 ,2,822,45755 ,2,14975,588480 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375560 ,1,0,333380 ,2,14956,166900 ,2,822,14480 ,2,14975,611355 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,374625 ,1,0,333825 ,2,14956,166900 ,2,822,14490 ,2,14975,606510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411715 ,1,0,334795 ,2,14956,168920 ,2,822,45765 ,2,14975,611510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416150 ,1,0,335340 ,2,14956,13175 ,2,822,45765 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394780 ,1,0,335680 ,2,14956,171625 ,2,822,14470 ,2,14975,588500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411755 ,1,0,336540 ,2,14956,166740 ,2,822,45775 ,2,14975,588535 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375550 ,1,0,337015 ,2,14956,166680 ,2,822,45775 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411900 ,1,0,337460 ,2,14956,10665 ,2,822,45775 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412525 ,1,0,338010 ,2,14956,166740 ,2,822,45795 ,2,14975,588560 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375715 ,1,0,338555 ,2,14956,166495 ,2,822,45795 ,2,14975,588555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375220 ,1,0,339115 ,2,14956,304190 ,2,822,45795 ,2,14975,588550 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,375210 ,1,0,339535 ,2,14956,304180 ,2,822,45785 ,2,14975,588540 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,375215 ,1,0,340055 ,2,14956,304200 ,2,822,45795 ,2,14975,588550 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,340595 ,2,14956,10665 ,2,822,45785 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382470 ,1,0,341250 ,2,14956,304225 ,2,822,45785 ,2,14975,588540 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,341795 ,2,14956,166495 ,2,822,45785 ,2,14975,588585 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375160 ,1,0,342310 ,2,14956,168920 ,2,822,45805 ,2,14975,611555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394090 ,1,0,342935 ,2,14956,13175 ,2,822,45805 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394265 ,1,0,343265 ,2,14956,166740 ,2,822,45815 ,2,14975,588600 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375375 ,1,0,343660 ,2,14956,10665 ,2,822,45815 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382390 ,1,0,344315 ,2,14956,168920 ,2,822,45845 ,2,14975,611565 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416055 ,1,0,344635 ,2,14956,13175 ,2,822,45845 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394270 ,1,0,345185 ,2,14956,166740 ,2,822,45855 ,2,14975,588655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375400 ,1,0,345520 ,2,14956,10665 ,2,822,45855 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382395 ,1,0,345920 ,2,14956,13175 ,2,822,45875 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394770 ,1,0,346270 ,2,14956,168920 ,2,822,45865 ,2,14975,611585 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394460 ,1,0,347025 ,2,14956,166740 ,2,822,45885 ,2,14975,588700 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375415 ,1,0,347550 ,2,14956,166680 ,2,822,45895 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377385 ,1,0,348105 ,2,14956,10665 ,2,822,45895 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382405 ,1,0,348530 ,2,14956,166670 ,2,822,45885 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,201230 ,2,14979,376480 ,1,0,349165 ,2,14956,166660 ,2,822,45885 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,237555 ,2,14979,375465 ,1,0,349890 ,2,14956,166935 ,2,822,45885 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379295 ,1,0,350420 ,2,14956,166660 ,2,822,45885 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,201230 ,2,14979,376875 ,1,0,350875 ,2,14956,168920 ,2,822,45905 ,2,14975,611645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394465 ,1,0,351300 ,2,14956,166740 ,2,822,45915 ,2,14975,588780 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375470 ,1,0,351940 ,2,14956,166670 ,2,822,45915 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,201295 ,2,14979,376485 ,1,0,352370 ,2,14956,166660 ,2,822,45915 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,237565 ,2,14979,375490 ,1,0,352790 ,2,14956,166935 ,2,822,45915 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379300 ,1,0,353025 ,2,14956,166660 ,2,822,45915 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,201295 ,2,14979,376880 ,1,0,353350 ,2,14956,13175 ,2,822,45945 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394930 ,1,0,353670 ,2,14956,168920 ,2,822,45945 ,2,14975,611680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394670 ,1,0,354200 ,2,14956,304405 ,2,822,45955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,354540 ,2,14956,13175 ,2,822,45955 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394960 ,1,0,354830 ,2,14956,304380 ,2,822,45955 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375535 ,1,0,355275 ,2,14956,168920 ,2,822,45955 ,2,14975,611685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394720 ,1,0,355815 ,2,14956,304415 ,2,822,45955 ,2,14975,588810 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375530 ,1,0,356140 ,2,14956,304425 ,2,822,45965 ,2,14975,588830 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,356595 ,2,14956,166740 ,2,822,45975 ,2,14975,588870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375525 ,1,0,357120 ,2,14956,166680 ,2,822,45975 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,411895 ,1,0,357580 ,2,14956,10665 ,2,822,45975 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382445 ,1,0,357915 ,2,14956,304505 ,2,822,45985 ,2,14975,588905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,358340 ,2,14956,168920 ,2,822,45995 ,2,14975,558310 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416090 ,1,0,358755 ,2,14956,13175 ,2,822,45995 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394375 ,1,0,359160 ,2,14956,166740 ,2,822,46005 ,2,14975,588960 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375575 ,1,0,359595 ,2,14956,304565 ,2,822,46015 ,2,14975,588980 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,375600 ,1,0,359915 ,2,14956,168920 ,2,822,46015 ,2,14975,611760 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394605 ,1,0,360350 ,2,14956,13175 ,2,822,46015 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394860 ,1,0,360865 ,2,14956,171045 ,2,822,46015 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264130 ,2,14979,393195 ,1,0,361275 ,2,14956,13175 ,2,822,46045 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394885 ,1,0,361700 ,2,14956,168920 ,2,822,46045 ,2,14975,611765 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394615 ,1,0,362130 ,2,14956,168920 ,2,822,46055 ,2,14975,611770 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394835 ,1,0,362620 ,2,14956,13175 ,2,822,46055 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395080 ,1,0,362955 ,2,14956,166740 ,2,822,46065 ,2,14975,589025 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375660 ,1,0,363425 ,2,14956,166680 ,2,822,46065 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377445 ,1,0,363995 ,2,14956,10665 ,2,822,46065 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,412530 ,1,0,364420 ,2,14956,304625 ,2,822,46065 ,2,14975,589035 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,375670 ,1,0,364845 ,2,14956,13175 ,2,822,46085 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395090 ,1,0,365285 ,2,14956,168920 ,2,822,46085 ,2,14975,611815 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416220 ,1,0,365730 ,2,14956,168920 ,2,822,46095 ,2,14975,611825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416015 ,1,0,366250 ,2,14956,13175 ,2,822,46095 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394175 ,1,0,366655 ,2,14956,168920 ,2,822,46105 ,2,14975,611850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416020 ,1,0,367200 ,2,14956,13175 ,2,822,46105 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394185 ,1,0,367740 ,2,14956,166740 ,2,822,49175 ,2,14975,589100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,375840 ,1,0,368270 ,2,14956,169970 ,2,822,46115 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375845 ,1,0,369010 ,2,14956,304690 ,2,822,46140 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,375900 ,1,0,369735 ,2,14956,304720 ,2,822,46115 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,375905 ,1,0,370260 ,2,14956,2855 ,2,822,46115 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390855 ,1,0,371000 ,2,14956,13210 ,2,822,46115 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396005 ,1,0,371410 ,2,14956,6245 ,2,822,46115 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414290 ,1,0,371960 ,2,14956,304740 ,2,822,46115 ,2,14975,589105 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,372480 ,2,14956,304760 ,2,822,46160 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376080 ,1,0,373020 ,2,14956,304770 ,2,822,46160 ,2,14975,589140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376085 ,1,0,373425 ,2,14956,305385 ,2,822,46160 ,2,14975,589215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,376095 ,1,0,373925 ,2,14956,305365 ,2,822,46290 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264140 ,2,14979,2415 ,1,0,374445 ,2,14956,305305 ,2,822,55545 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264140 ,2,14979,376100 ,1,0,374775 ,2,14956,305220 ,2,822,46290 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264150 ,2,14979,2415 ,1,0,375175 ,2,14956,305200 ,2,822,55490 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264150 ,2,14979,376110 ,1,0,375445 ,2,14956,305175 ,2,822,46170 ,2,14975,589155 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376130 ,1,0,375745 ,2,14956,304845 ,2,822,46185 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399470 ,1,0,375995 ,2,14956,304855 ,2,822,46185 ,2,14975,589140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398970 ,1,0,376240 ,2,14956,305110 ,2,822,46185 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376135 ,1,0,376490 ,2,14956,305055 ,2,822,46205 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399490 ,1,0,376900 ,2,14956,304890 ,2,822,46205 ,2,14975,589140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416875 ,1,0,377160 ,2,14956,304855 ,2,822,46205 ,2,14975,589140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398965 ,1,0,377535 ,2,14956,304900 ,2,822,46205 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398915 ,1,0,377900 ,2,14956,304940 ,2,822,46205 ,2,14975,599970 ,2,14976,23450 ,2,14977,129540 ,2,14965,45 ,2,14978,45 ,2,14979,399590 ,1,0,378300 ,2,14956,304950 ,2,822,46205 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399505 ,1,0,378660 ,2,14956,304960 ,2,822,46205 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,417110 ,1,0,379030 ,2,14956,304980 ,2,822,46205 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416865 ,1,0,379405 ,2,14956,304990 ,2,822,46205 ,2,14975,589170 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376145 ,1,0,379630 ,2,14956,305010 ,2,822,46205 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264160 ,2,14979,417070 ,1,0,379870 ,2,14956,305055 ,2,822,46260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399495 ,1,0,380200 ,2,14956,304845 ,2,822,46260 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399475 ,1,0,380395 ,2,14956,304890 ,2,822,46260 ,2,14975,589140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399035 ,1,0,380605 ,2,14956,304900 ,2,822,46260 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398920 ,1,0,380900 ,2,14956,304940 ,2,822,46260 ,2,14975,599970 ,2,14976,23450 ,2,14977,129540 ,2,14965,45 ,2,14978,45 ,2,14979,399595 ,1,0,381100 ,2,14956,304950 ,2,822,46260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399525 ,1,0,381410 ,2,14956,304960 ,2,822,46260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399730 ,1,0,381685 ,2,14956,304980 ,2,822,46260 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416870 ,1,0,381875 ,2,14956,305090 ,2,822,46260 ,2,14975,589200 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376155 ,1,0,382180 ,2,14956,305010 ,2,822,46260 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264170 ,2,14979,417100 ,1,0,382375 ,2,14956,304940 ,2,822,46170 ,2,14975,599970 ,2,14976,23450 ,2,14977,129540 ,2,14965,45 ,2,14978,45 ,2,14979,399585 ,1,0,382550 ,2,14956,304890 ,2,822,46170 ,2,14975,589140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399030 ,1,0,382750 ,2,14956,304900 ,2,822,46170 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398910 ,1,0,383055 ,2,14956,305055 ,2,822,46170 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,417015 ,1,0,383355 ,2,14956,304950 ,2,822,46170 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399500 ,1,0,383715 ,2,14956,304960 ,2,822,46170 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399725 ,1,0,384195 ,2,14956,304980 ,2,822,46170 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398905 ,1,0,384610 ,2,14956,305010 ,2,822,46170 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264180 ,2,14979,417065 ,1,0,384735 ,2,14956,305255 ,2,822,46290 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264190 ,2,14979,2415 ,1,0,385040 ,2,14956,305245 ,2,822,55525 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264190 ,2,14979,376165 ,1,0,385395 ,2,14956,305285 ,2,822,46290 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264220 ,2,14979,2415 ,1,0,385645 ,2,14956,305265 ,2,822,55535 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264220 ,2,14979,376195 ,1,0,385885 ,2,14956,305295 ,2,822,46290 ,2,14975,589205 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,376105 ,1,0,386195 ,2,14956,2855 ,2,822,46290 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392515 ,1,0,386500 ,2,14956,305375 ,2,822,46150 ,2,14975,589135 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,386735 ,2,14956,305505 ,2,822,46150 ,2,14975,589225 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376200 ,1,0,387030 ,2,14956,2855 ,2,822,46310 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392525 ,1,0,387330 ,2,14956,192230 ,2,822,46310 ,2,14975,110 ,2,14976,23130 ,2,14977,129880 ,2,14965,45 ,2,14978,45 ,2,14979,376215 ,1,0,387775 ,2,14956,305460 ,2,822,46310 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376220 ,1,0,388140 ,2,14956,305470 ,2,822,46310 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376225 ,1,0,388430 ,2,14956,305495 ,2,822,46310 ,2,14975,589225 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,376205 ,1,0,388680 ,2,14956,305515 ,2,822,46150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376230 ,1,0,388955 ,2,14956,305525 ,2,822,46150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376260 ,1,0,389260 ,2,14956,305550 ,2,822,46150 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376280 ,1,0,389490 ,2,14956,192230 ,2,822,46150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376285 ,1,0,389770 ,2,14956,305010 ,2,822,46150 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399600 ,1,0,390025 ,2,14956,166530 ,2,822,46150 ,2,14975,599880 ,2,14976,35640 ,2,14977,35615 ,2,14965,45 ,2,14978,45 ,2,14979,378215 ,1,0,390215 ,2,14956,305560 ,2,822,46150 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376290 ,1,0,390515 ,2,14956,305570 ,2,822,46150 ,2,14975,599880 ,2,14976,23450 ,2,14977,129965 ,2,14965,45 ,2,14978,45 ,2,14979,376265 ,1,0,390840 ,2,14956,168995 ,2,822,46150 ,2,14975,561435 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399770 ,1,0,391085 ,2,14956,305580 ,2,822,46150 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376295 ,1,0,391375 ,2,14956,305600 ,2,822,46150 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376275 ,1,0,391690 ,2,14956,168920 ,2,822,46150 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397030 ,1,0,392095 ,2,14956,305610 ,2,822,46150 ,2,14975,589140 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376315 ,1,0,392465 ,2,14956,305055 ,2,822,46150 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399480 ,1,0,392650 ,2,14956,305620 ,2,822,46150 ,2,14975,599880 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,376270 ,1,0,392885 ,2,14956,168920 ,2,822,46330 ,2,14975,599880 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,376320 ,1,0,393085 ,2,14956,305620 ,2,822,46330 ,2,14975,599880 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,376325 ,1,0,393260 ,2,14956,303615 ,2,822,46330 ,2,14975,589215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264260 ,2,14979,2415 ,1,0,393510 ,2,14956,305525 ,2,822,46330 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376330 ,1,0,393780 ,2,14956,305245 ,2,822,55555 ,2,14975,589215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264230 ,2,14979,376340 ,1,0,394050 ,2,14956,305610 ,2,822,46330 ,2,14975,589140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376345 ,1,0,394420 ,2,14956,305255 ,2,822,46330 ,2,14975,589215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264230 ,2,14979,2415 ,1,0,394630 ,2,14956,305675 ,2,822,55570 ,2,14975,589215 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264260 ,2,14979,376350 ,1,0,394815 ,2,14956,305580 ,2,822,46330 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376355 ,1,0,395005 ,2,14956,305705 ,2,822,46150 ,2,14975,589215 ,2,14976,23450 ,2,14977,130150 ,2,14965,45 ,2,14978,45 ,2,14979,376070 ,1,0,395390 ,2,14956,303615 ,2,822,46290 ,2,14975,589215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376055 ,1,0,395695 ,2,14956,5060 ,2,822,14405 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130185 ,2,14979,376550 ,1,0,395985 ,2,14956,5060 ,2,822,14415 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130195 ,2,14979,376555 ,1,0,396350 ,2,14956,5060 ,2,822,14425 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130205 ,2,14979,376560 ,1,0,396585 ,2,14956,5060 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376565 ,1,0,396900 ,2,14956,5060 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,376575 ,1,0,397290 ,2,14956,166670 ,2,822,49175 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,203070 ,2,14979,376685 ,1,0,397605 ,2,14956,166660 ,2,822,49175 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,237575 ,2,14979,376690 ,1,0,397865 ,2,14956,166660 ,2,822,49175 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,203070 ,2,14979,377200 ,1,0,398170 ,2,14956,166485 ,2,822,14480 ,2,14975,611355 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376820 ,1,0,398550 ,2,14956,166485 ,2,822,14470 ,2,14975,606515 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,376825 ,1,0,398955 ,2,14956,171930 ,2,822,14480 ,2,14975,585855 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376935 ,1,0,399515 ,2,14956,171930 ,2,822,14490 ,2,14975,585895 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,376940 ,1,0,399875 ,2,14956,171930 ,2,822,14470 ,2,14975,585900 ,2,14976,23130 ,2,14977,23140 ,2,14965,45 ,2,14978,45 ,2,14979,377005 ,1,0,400225 ,2,14956,305770 ,2,822,49175 ,2,14975,600035 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377205 ,1,0,400400 ,2,14956,8315 ,2,822,14405 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130300 ,2,14979,377210 ,1,0,400850 ,2,14956,8315 ,2,822,14415 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130310 ,2,14979,377225 ,1,0,401100 ,2,14956,8315 ,2,822,14425 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,130320 ,2,14979,377230 ,1,0,401360 ,2,14956,8315 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377240 ,1,0,401620 ,2,14956,8315 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377250 ,1,0,401815 ,2,14956,166680 ,2,822,46370 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,377555 ,1,0,402325 ,2,14956,201950 ,2,822,46370 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396145 ,1,0,402525 ,2,14956,305815 ,2,822,46370 ,2,14975,589230 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,402740 ,2,14956,169970 ,2,822,14570 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377770 ,1,0,402930 ,2,14956,169970 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,377785 ,1,0,403185 ,2,14956,305835 ,2,822,43470 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,237600 ,2,14979,378060 ,1,0,403450 ,2,14956,305845 ,2,822,34865 ,2,14975,110 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,237610 ,2,14979,2415 ,1,0,403720 ,2,14956,2855 ,2,822,46400 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415330 ,1,0,403990 ,2,14956,305990 ,2,822,46390 ,2,14975,589280 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,378125 ,1,0,404310 ,2,14956,306060 ,2,822,46420 ,2,14975,110 ,2,14976,35820 ,2,14977,73935 ,2,14965,45 ,2,14978,45 ,2,14979,378120 ,1,0,404485 ,2,14956,2855 ,2,822,46430 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415340 ,1,0,404680 ,2,14956,168920 ,2,822,46440 ,2,14975,611860 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416275 ,1,0,404885 ,2,14956,13175 ,2,822,46440 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395140 ,1,0,405205 ,2,14956,166740 ,2,822,14480 ,2,14975,589300 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378285 ,1,0,405460 ,2,14956,166740 ,2,822,14490 ,2,14975,589305 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,378305 ,1,0,405790 ,2,14956,211025 ,2,822,46450 ,2,14975,110 ,2,14976,24020 ,2,14977,76785 ,2,14965,45 ,2,14978,45 ,2,14979,378325 ,1,0,406135 ,2,14956,2855 ,2,822,46450 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391630 ,1,0,406385 ,2,14956,6245 ,2,822,46450 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414415 ,1,0,406600 ,2,14956,13210 ,2,822,46450 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397090 ,1,0,407080 ,2,14956,232805 ,2,822,46450 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398395 ,1,0,407385 ,2,14956,232720 ,2,822,46450 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386400 ,1,0,407705 ,2,14956,232735 ,2,822,46450 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383805 ,1,0,407890 ,2,14956,183640 ,2,822,46450 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382770 ,1,0,408105 ,2,14956,211025 ,2,822,46495 ,2,14975,110 ,2,14976,24020 ,2,14977,76785 ,2,14965,45 ,2,14978,45 ,2,14979,378375 ,1,0,408355 ,2,14956,2855 ,2,822,46515 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391665 ,1,0,408555 ,2,14956,6245 ,2,822,46515 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414430 ,1,0,408760 ,2,14956,13210 ,2,822,46515 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397115 ,1,0,408950 ,2,14956,211025 ,2,822,46515 ,2,14975,110 ,2,14976,24020 ,2,14977,76785 ,2,14965,45 ,2,14978,45 ,2,14979,378440 ,1,0,409290 ,2,14956,232805 ,2,822,46515 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398445 ,1,0,409695 ,2,14956,306115 ,2,822,46515 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378390 ,1,0,409980 ,2,14956,232720 ,2,822,46515 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386450 ,1,0,410410 ,2,14956,232735 ,2,822,46515 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383830 ,1,0,410675 ,2,14956,183640 ,2,822,46515 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382795 ,1,0,410975 ,2,14956,2855 ,2,822,46525 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391660 ,1,0,411335 ,2,14956,6245 ,2,822,46525 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414425 ,1,0,411800 ,2,14956,13210 ,2,822,46525 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397110 ,1,0,412200 ,2,14956,211025 ,2,822,46525 ,2,14975,110 ,2,14976,24020 ,2,14977,76785 ,2,14965,45 ,2,14978,45 ,2,14979,378420 ,1,0,412510 ,2,14956,232805 ,2,822,46525 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398440 ,1,0,412675 ,2,14956,306115 ,2,822,46525 ,2,14975,572380 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378410 ,1,0,412870 ,2,14956,306135 ,2,822,46525 ,2,14975,561500 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378415 ,1,0,413245 ,2,14956,232720 ,2,822,46525 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386425 ,1,0,413655 ,2,14956,232735 ,2,822,46525 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383825 ,1,0,413825 ,2,14956,183640 ,2,822,46525 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382790 ,1,0,413995 ,2,14956,2855 ,2,822,46495 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391645 ,1,0,414250 ,2,14956,6245 ,2,822,46495 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388960 ,1,0,414460 ,2,14956,13210 ,2,822,46495 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397105 ,1,0,414700 ,2,14956,232805 ,2,822,46495 ,2,14975,562300 ,2,14976,23450 ,2,14977,71805 ,2,14965,45 ,2,14978,45 ,2,14979,398435 ,1,0,414900 ,2,14956,232720 ,2,822,46495 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,386420 ,1,0,415430 ,2,14956,232735 ,2,822,46495 ,2,14975,572770 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,383820 ,1,0,415790 ,2,14956,183640 ,2,822,46495 ,2,14975,572770 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382785 ,1,0,416170 ,2,14956,306230 ,2,822,14470 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378475 ,1,0,416425 ,2,14956,166530 ,2,822,14470 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,378470 ,1,0,416735 ,2,14956,215285 ,2,822,46535 ,2,14975,589350 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,379240 ,1,0,416960 ,2,14956,217015 ,2,822,46535 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,379955 ,1,0,417150 ,2,14956,166670 ,2,822,14560 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204005 ,2,14979,379430 ,1,0,417345 ,2,14956,166660 ,2,822,14560 ,2,14975,599875 ,2,14976,24765 ,2,14977,23360 ,2,14965,45 ,2,14978,237620 ,2,14979,379435 ,1,0,417530 ,2,14956,166660 ,2,822,14560 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,204005 ,2,14979,380190 ,1,0,417735 ,2,14956,166740 ,2,822,46555 ,2,14975,589360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,417970 ,2,14956,208980 ,2,822,46555 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204050 ,2,14979,2415 ,1,0,418290 ,2,14956,208965 ,2,822,46555 ,2,14975,589400 ,2,14976,23075 ,2,14977,23065 ,2,14965,553765 ,2,14978,237630 ,2,14979,379450 ,1,0,418465 ,2,14956,10665 ,2,822,46555 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382650 ,1,0,418655 ,2,14956,208965 ,2,822,46555 ,2,14975,589400 ,2,14976,23075 ,2,14977,23065 ,2,14965,553765 ,2,14978,204050 ,2,14979,379475 ,1,0,418895 ,2,14956,208945 ,2,822,46555 ,2,14975,589405 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,419085 ,2,14956,306315 ,2,822,46570 ,2,14975,589410 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,419590 ,2,14956,171965 ,2,822,49175 ,2,14975,589435 ,2,14976,23075 ,2,14977,23065 ,2,14965,553825 ,2,14978,45 ,2,14979,380180 ,1,0,419815 ,2,14956,166515 ,2,822,14470 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380375 ,1,0,419955 ,2,14956,224525 ,2,822,46580 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264270 ,2,14979,380380 ,1,0,420220 ,2,14956,2855 ,2,822,46600 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391030 ,1,0,420570 ,2,14956,199660 ,2,822,46600 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394395 ,1,0,420845 ,2,14956,186250 ,2,822,46600 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381640 ,1,0,421095 ,2,14956,5370 ,2,822,46600 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381505 ,1,0,421360 ,2,14956,306335 ,2,822,46600 ,2,14975,564755 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380420 ,1,0,421610 ,2,14956,306345 ,2,822,46600 ,2,14975,564755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,380425 ,1,0,421870 ,2,14956,306355 ,2,822,46600 ,2,14975,564755 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,380445 ,1,0,422100 ,2,14956,306445 ,2,822,46600 ,2,14975,589480 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,380450 ,1,0,422370 ,2,14956,306420 ,2,822,46615 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,422600 ,2,14956,199660 ,2,822,46615 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394385 ,1,0,422860 ,2,14956,186250 ,2,822,46615 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381630 ,1,0,423030 ,2,14956,5370 ,2,822,46615 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381490 ,1,0,423570 ,2,14956,306400 ,2,822,46615 ,2,14975,589485 ,2,14976,24120 ,2,14977,132120 ,2,14965,45 ,2,14978,45 ,2,14979,380460 ,1,0,423755 ,2,14956,306430 ,2,822,46615 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380455 ,1,0,423880 ,2,14956,306510 ,2,822,55580 ,2,14975,599940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264280 ,2,14979,380485 ,1,0,424165 ,2,14956,199660 ,2,822,46580 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394400 ,1,0,424410 ,2,14956,186250 ,2,822,46580 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381655 ,1,0,424600 ,2,14956,5370 ,2,822,46580 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381510 ,1,0,424805 ,2,14956,306530 ,2,822,46580 ,2,14975,599940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,380490 ,1,0,425020 ,2,14956,306555 ,2,822,46580 ,2,14975,589440 ,2,14976,24120 ,2,14977,132250 ,2,14965,45 ,2,14978,45 ,2,14979,380495 ,1,0,425200 ,2,14956,306565 ,2,822,46580 ,2,14975,599940 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264280 ,2,14979,2415 ,1,0,425395 ,2,14956,166680 ,2,822,14470 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,380560 ,1,0,425620 ,2,14956,166985 ,2,822,49175 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204445 ,2,14979,381080 ,1,0,425825 ,2,14956,10080 ,2,822,49175 ,2,14975,599875 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,237640 ,2,14979,381085 ,1,0,426030 ,2,14956,10080 ,2,822,49175 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,204445 ,2,14979,381735 ,1,0,426250 ,2,14956,195335 ,2,822,46635 ,2,14975,581910 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264290 ,2,14979,412340 ,1,0,426455 ,2,14956,306950 ,2,822,46705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204520 ,2,14979,2415 ,1,0,426650 ,2,14956,306770 ,2,822,46705 ,2,14975,110 ,2,14976,132475 ,2,14977,23120 ,2,14965,45 ,2,14978,237650 ,2,14979,381175 ,1,0,426840 ,2,14956,306770 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,204520 ,2,14979,381375 ,1,0,427325 ,2,14956,306640 ,2,822,46695 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204550 ,2,14979,2415 ,1,0,427585 ,2,14956,306630 ,2,822,46695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237660 ,2,14979,381190 ,1,0,427770 ,2,14956,306630 ,2,822,46695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,204550 ,2,14979,381225 ,1,0,427970 ,2,14956,306655 ,2,822,46695 ,2,14975,589505 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381230 ,1,0,428145 ,2,14956,306720 ,2,822,46675 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381235 ,1,0,428425 ,2,14956,306730 ,2,822,46675 ,2,14975,599870 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,381240 ,1,0,428680 ,2,14956,228780 ,2,822,46675 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381255 ,1,0,429000 ,2,14956,228590 ,2,822,46675 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390630 ,1,0,429185 ,2,14956,306740 ,2,822,46675 ,2,14975,589500 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,381260 ,1,0,429370 ,2,14956,227505 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413740 ,1,0,429570 ,2,14956,306780 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381290 ,1,0,429795 ,2,14956,306790 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,204725 ,2,14979,381305 ,1,0,430010 ,2,14956,306790 ,2,822,46705 ,2,14975,110 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,237670 ,2,14979,381320 ,1,0,430210 ,2,14956,227495 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393360 ,1,0,430465 ,2,14956,306800 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381310 ,1,0,430795 ,2,14956,227610 ,2,822,46705 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,388825 ,1,0,431045 ,2,14956,306825 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381300 ,1,0,431315 ,2,14956,306835 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381295 ,1,0,431555 ,2,14956,228600 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391300 ,1,0,431940 ,2,14956,306845 ,2,822,46705 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381325 ,1,0,432270 ,2,14956,306855 ,2,822,46705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204725 ,2,14979,2415 ,1,0,432545 ,2,14956,306865 ,2,822,46705 ,2,14975,589510 ,2,14976,23450 ,2,14977,69080 ,2,14965,45 ,2,14978,45 ,2,14979,381365 ,1,0,432755 ,2,14956,306885 ,2,822,46705 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,204860 ,2,14979,2415 ,1,0,433060 ,2,14956,306875 ,2,822,46705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237715 ,2,14979,381370 ,1,0,433395 ,2,14956,306895 ,2,822,46705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381315 ,1,0,433725 ,2,14956,306930 ,2,822,46705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381380 ,1,0,433915 ,2,14956,306960 ,2,822,46705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381170 ,1,0,434160 ,2,14956,306875 ,2,822,46705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,204860 ,2,14979,381165 ,1,0,434425 ,2,14956,184135 ,2,822,46705 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381160 ,1,0,434665 ,2,14956,306980 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,132685 ,2,14979,381485 ,1,0,434860 ,2,14956,9585 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,381480 ,1,0,435215 ,2,14956,175285 ,2,822,49175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,381740 ,1,0,435405 ,2,14956,10825 ,2,822,46720 ,2,14975,565620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382220 ,1,0,435900 ,2,14956,179120 ,2,822,46720 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393365 ,1,0,436355 ,2,14956,201560 ,2,822,46720 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394345 ,1,0,436750 ,2,14956,195515 ,2,822,46720 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394315 ,1,0,437215 ,2,14956,306990 ,2,822,46720 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,437615 ,2,14956,307000 ,2,822,46720 ,2,14975,589515 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,382265 ,1,0,438045 ,2,14956,10825 ,2,822,46730 ,2,14975,561220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382270 ,1,0,438470 ,2,14956,307030 ,2,822,46730 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,205115 ,2,14979,2415 ,1,0,438705 ,2,14956,202070 ,2,822,46730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237725 ,2,14979,382280 ,1,0,439080 ,2,14956,202070 ,2,822,46730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,205115 ,2,14979,394475 ,1,0,439340 ,2,14956,201560 ,2,822,46730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394355 ,1,0,439610 ,2,14956,195515 ,2,822,46730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394320 ,1,0,439830 ,2,14956,170230 ,2,822,46730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,415895 ,1,0,440045 ,2,14956,194970 ,2,822,46730 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,413895 ,1,0,440250 ,2,14956,307040 ,2,822,46730 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382285 ,1,0,440545 ,2,14956,201420 ,2,822,46730 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393420 ,1,0,440805 ,2,14956,307050 ,2,822,46730 ,2,14975,589550 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,441070 ,2,14956,166935 ,2,822,14480 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382660 ,1,0,441335 ,2,14956,166935 ,2,822,14490 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,382665 ,1,0,441575 ,2,14956,10665 ,2,822,49175 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,382700 ,1,0,441900 ,2,14956,171975 ,2,822,55590 ,2,14975,589560 ,2,14976,23075 ,2,14977,23065 ,2,14965,553890 ,2,14978,132925 ,2,14979,383035 ,1,0,442095 ,2,14956,6245 ,2,822,13990 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389305 ,1,0,442615 ,2,14956,13210 ,2,822,13990 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397945 ,1,0,442890 ,2,14956,307090 ,2,822,55590 ,2,14975,589565 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,443150 ,2,14956,307125 ,2,822,55600 ,2,14975,589580 ,2,14976,23075 ,2,14977,23065 ,2,14965,553910 ,2,14978,132995 ,2,14979,2415 ,1,0,443410 ,2,14956,171965 ,2,822,55590 ,2,14975,589560 ,2,14976,23075 ,2,14977,23065 ,2,14965,553890 ,2,14978,45 ,2,14979,383025 ,1,0,443585 ,2,14956,307145 ,2,822,14395 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133055 ,2,14979,383630 ,1,0,443795 ,2,14956,176470 ,2,822,14395 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,383625 ,1,0,444070 ,2,14956,166985 ,2,822,46750 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,205420 ,2,14979,383900 ,1,0,444340 ,2,14956,10080 ,2,822,46750 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,237735 ,2,14979,383905 ,1,0,444605 ,2,14956,10080 ,2,822,46750 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,205420 ,2,14979,385180 ,1,0,444810 ,2,14956,166610 ,2,822,46750 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,133095 ,2,14979,383915 ,1,0,445025 ,2,14956,307170 ,2,822,46785 ,2,14975,589610 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383940 ,1,0,445215 ,2,14956,307180 ,2,822,46785 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383945 ,1,0,445425 ,2,14956,307345 ,2,822,46785 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383950 ,1,0,445885 ,2,14956,307325 ,2,822,46805 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383955 ,1,0,446150 ,2,14956,307255 ,2,822,55635 ,2,14975,589625 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264320 ,2,14979,383965 ,1,0,446410 ,2,14956,307190 ,2,822,46750 ,2,14975,589590 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383975 ,1,0,446660 ,2,14956,307225 ,2,822,46835 ,2,14975,589640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,446855 ,2,14956,307245 ,2,822,46805 ,2,14975,589620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,383970 ,1,0,447355 ,2,14956,206825 ,2,822,46815 ,2,14975,589625 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,384010 ,1,0,447795 ,2,14956,307280 ,2,822,46815 ,2,14975,589625 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264320 ,2,14979,2415 ,1,0,448195 ,2,14956,307335 ,2,822,46785 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,237745 ,2,14979,384015 ,1,0,448360 ,2,14956,307355 ,2,822,46785 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384020 ,1,0,448835 ,2,14956,307370 ,2,822,46785 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,205630 ,2,14979,384025 ,1,0,449095 ,2,14956,307370 ,2,822,46785 ,2,14975,589645 ,2,14976,133265 ,2,14977,23120 ,2,14965,45 ,2,14978,237755 ,2,14979,384030 ,1,0,449340 ,2,14956,182390 ,2,822,46865 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384035 ,1,0,449585 ,2,14956,242525 ,2,822,46910 ,2,14975,568460 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,390880 ,1,0,449790 ,2,14956,216645 ,2,822,46910 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387110 ,1,0,450000 ,2,14956,307505 ,2,822,46910 ,2,14975,575995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384105 ,1,0,450235 ,2,14956,217240 ,2,822,46910 ,2,14975,575995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384110 ,1,0,450470 ,2,14956,221040 ,2,822,46910 ,2,14975,568460 ,2,14976,23450 ,2,14977,133465 ,2,14965,45 ,2,14978,45 ,2,14979,384115 ,1,0,450815 ,2,14956,307585 ,2,822,46930 ,2,14975,589720 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384145 ,1,0,451025 ,2,14956,182390 ,2,822,46950 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384150 ,1,0,451270 ,2,14956,182390 ,2,822,46930 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384120 ,1,0,451680 ,2,14956,307640 ,2,822,46960 ,2,14975,572785 ,2,14976,23450 ,2,14977,133595 ,2,14965,45 ,2,14978,45 ,2,14979,384170 ,1,0,452060 ,2,14956,182390 ,2,822,46960 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384165 ,1,0,452305 ,2,14956,182390 ,2,822,46980 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384205 ,1,0,452500 ,2,14956,2855 ,2,822,47030 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391595 ,1,0,452910 ,2,14956,213590 ,2,822,46980 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264330 ,2,14979,412950 ,1,0,453180 ,2,14956,182390 ,2,822,47040 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384390 ,1,0,453415 ,2,14956,213590 ,2,822,47040 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264340 ,2,14979,413075 ,1,0,453670 ,2,14956,216645 ,2,822,47070 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387180 ,1,0,453905 ,2,14956,217240 ,2,822,47070 ,2,14975,572065 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384410 ,1,0,454295 ,2,14956,182390 ,2,822,47090 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384425 ,1,0,454560 ,2,14956,182390 ,2,822,47115 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384460 ,1,0,454835 ,2,14956,213590 ,2,822,47115 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264350 ,2,14979,413095 ,1,0,455115 ,2,14956,307945 ,2,822,47155 ,2,14975,589810 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384535 ,1,0,455370 ,2,14956,307895 ,2,822,47155 ,2,14975,587940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384570 ,1,0,455635 ,2,14956,307905 ,2,822,47155 ,2,14975,587940 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,384575 ,1,0,455885 ,2,14956,307915 ,2,822,47155 ,2,14975,587115 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,384580 ,1,0,456070 ,2,14956,299380 ,2,822,47155 ,2,14975,587115 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,384585 ,1,0,456500 ,2,14956,182390 ,2,822,47155 ,2,14975,568460 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385245 ,1,0,457005 ,2,14956,217455 ,2,822,47135 ,2,14975,589870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,384530 ,1,0,457555 ,2,14956,166985 ,2,822,14470 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,57805 ,2,14979,385225 ,1,0,458085 ,2,14956,217240 ,2,822,47165 ,2,14975,589875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385295 ,1,0,458280 ,2,14956,2855 ,2,822,47185 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,391125 ,1,0,458405 ,2,14956,235870 ,2,822,47185 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394560 ,1,0,458625 ,2,14956,235850 ,2,822,47185 ,2,14975,589895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391720 ,1,0,458805 ,2,14956,235900 ,2,822,47185 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395435 ,1,0,458975 ,2,14956,235850 ,2,822,47215 ,2,14975,589895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,385315 ,1,0,459165 ,2,14956,308060 ,2,822,47225 ,2,14975,561380 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,385380 ,1,0,459345 ,2,14956,4685 ,2,822,14405 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,134995 ,2,14979,385935 ,1,0,459525 ,2,14956,4685 ,2,822,14425 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,135015 ,2,14979,385960 ,1,0,459705 ,2,14956,4685 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385965 ,1,0,459885 ,2,14956,4685 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,385970 ,1,0,460050 ,2,14956,217240 ,2,822,47290 ,2,14975,589915 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386210 ,1,0,460250 ,2,14956,10665 ,2,822,14480 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,135270 ,2,14979,413625 ,1,0,460450 ,2,14956,308205 ,2,822,47305 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,386845 ,1,0,460655 ,2,14956,308225 ,2,822,14395 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,135725 ,2,14979,387235 ,1,0,461120 ,2,14956,175910 ,2,822,14395 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387225 ,1,0,461380 ,2,14956,194970 ,2,822,47315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387415 ,1,0,461910 ,2,14956,308270 ,2,822,47315 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,206265 ,2,14979,2415 ,1,0,462105 ,2,14956,308235 ,2,822,47315 ,2,14975,110 ,2,14976,23230 ,2,14977,23120 ,2,14965,45 ,2,14978,237765 ,2,14979,387425 ,1,0,462315 ,2,14956,308235 ,2,822,47315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,206265 ,2,14979,387430 ,1,0,462560 ,2,14956,170230 ,2,822,47315 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393605 ,1,0,462765 ,2,14956,308280 ,2,822,47315 ,2,14975,589995 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387435 ,1,0,462975 ,2,14956,168730 ,2,822,55645 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387465 ,1,0,463215 ,2,14956,168730 ,2,822,53180 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387480 ,1,0,463420 ,2,14956,168730 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,135895 ,2,14979,387485 ,1,0,463675 ,2,14956,168730 ,2,822,14580 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387490 ,1,0,463865 ,2,14956,168730 ,2,822,14590 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,413900 ,1,0,464140 ,2,14956,308340 ,2,822,49280 ,2,14975,587655 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264360 ,2,14979,2415 ,1,0,464340 ,2,14956,308320 ,2,822,55655 ,2,14975,587655 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264360 ,2,14979,413905 ,1,0,464545 ,2,14956,308365 ,2,822,49280 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387535 ,1,0,464870 ,2,14956,168730 ,2,822,49280 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,387495 ,1,0,465045 ,2,14956,6530 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,387905 ,1,0,465215 ,2,14956,3545 ,2,822,49280 ,2,14975,600010 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,135925 ,2,14979,387970 ,1,0,465390 ,2,14956,200320 ,2,822,39040 ,2,14975,599975 ,2,14976,135945 ,2,14977,23120 ,2,14965,45 ,2,14978,237775 ,2,14979,2415 ,1,0,465595 ,2,14956,6920 ,2,822,15125 ,2,14975,599975 ,2,14976,135945 ,2,14977,23120 ,2,14965,45 ,2,14978,237785 ,2,14979,388015 ,1,0,465795 ,2,14956,6245 ,2,822,49280 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414570 ,1,0,465970 ,2,14956,308385 ,2,822,34375 ,2,14975,577880 ,2,14976,135995 ,2,14977,24010 ,2,14965,45 ,2,14978,237815 ,2,14979,2415 ,1,0,466290 ,2,14956,6245 ,2,822,55665 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388250 ,1,0,466470 ,2,14956,308435 ,2,822,55665 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388280 ,1,0,466665 ,2,14956,308445 ,2,822,47325 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,466960 ,2,14956,2855 ,2,822,55665 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390385 ,1,0,467260 ,2,14956,13210 ,2,822,47325 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395445 ,1,0,467570 ,2,14956,6245 ,2,822,47335 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,388505 ,1,0,467805 ,2,14956,13210 ,2,822,47335 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395965 ,1,0,468130 ,2,14956,6245 ,2,822,47355 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414285 ,1,0,468360 ,2,14956,13210 ,2,822,47355 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395970 ,1,0,468545 ,2,14956,308635 ,2,822,55675 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389190 ,1,0,468925 ,2,14956,308565 ,2,822,55675 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,469125 ,2,14956,308595 ,2,822,55675 ,2,14975,599970 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,389195 ,1,0,469550 ,2,14956,308645 ,2,822,55675 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389185 ,1,0,469845 ,2,14956,308715 ,2,822,47410 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389270 ,1,0,470140 ,2,14956,308655 ,2,822,47410 ,2,14975,599970 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,470500 ,2,14956,308645 ,2,822,47410 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389265 ,1,0,470905 ,2,14956,6245 ,2,822,55645 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414540 ,1,0,471175 ,2,14956,308755 ,2,822,55685 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136385 ,2,14979,389300 ,1,0,472190 ,2,14956,13210 ,2,822,55685 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397935 ,1,0,473125 ,2,14956,6245 ,2,822,55685 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389295 ,1,0,473315 ,2,14956,6245 ,2,822,14560 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136430 ,2,14979,389325 ,1,0,473725 ,2,14956,196285 ,2,822,14045 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136440 ,2,14979,389345 ,1,0,473990 ,2,14956,308805 ,2,822,14045 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,136485 ,2,14979,389350 ,1,0,474170 ,2,14956,13210 ,2,822,14045 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398010 ,1,0,474435 ,2,14956,6245 ,2,822,14045 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389340 ,1,0,474845 ,2,14956,6245 ,2,822,53180 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414555 ,1,0,476060 ,2,14956,6245 ,2,822,14570 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136505 ,2,14979,389400 ,1,0,477225 ,2,14956,6245 ,2,822,14580 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414560 ,1,0,477930 ,2,14956,6245 ,2,822,14590 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414565 ,1,0,478765 ,2,14956,308835 ,2,822,14610 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136545 ,2,14979,389410 ,1,0,479755 ,2,14956,6245 ,2,822,14610 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389405 ,1,0,480840 ,2,14956,6245 ,2,822,14055 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136555 ,2,14979,389415 ,1,0,481030 ,2,14956,2855 ,2,822,47420 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,136585 ,2,14979,392865 ,1,0,481495 ,2,14956,13210 ,2,822,14055 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,136615 ,2,14979,398035 ,1,0,481730 ,2,14956,2855 ,2,822,47430 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414595 ,1,0,481995 ,2,14956,173755 ,2,822,47430 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,136705 ,2,14979,389500 ,1,0,482375 ,2,14956,308965 ,2,822,47430 ,2,14975,590080 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,389505 ,1,0,482590 ,2,14956,2855 ,2,822,47460 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414600 ,1,0,482770 ,2,14956,308985 ,2,822,47460 ,2,14975,590130 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,414605 ,1,0,482955 ,2,14956,2855 ,2,822,47470 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414610 ,1,0,483370 ,2,14956,2855 ,2,822,47480 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389520 ,1,0,483580 ,2,14956,309045 ,2,822,47480 ,2,14975,590140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414615 ,1,0,483820 ,2,14956,2855 ,2,822,55695 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389530 ,1,0,484000 ,2,14956,309055 ,2,822,55695 ,2,14975,590145 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,389545 ,1,0,484170 ,2,14956,2855 ,2,822,55705 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389550 ,1,0,484390 ,2,14956,309070 ,2,822,55705 ,2,14975,590150 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,389555 ,1,0,484580 ,2,14956,309295 ,2,822,47525 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389570 ,1,0,484835 ,2,14956,309125 ,2,822,47525 ,2,14975,100 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,389580 ,1,0,485035 ,2,14956,309135 ,2,822,47525 ,2,14975,100 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,389590 ,1,0,485305 ,2,14956,309145 ,2,822,47525 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389610 ,1,0,485590 ,2,14956,309155 ,2,822,47525 ,2,14975,590165 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389690 ,1,0,485815 ,2,14956,309170 ,2,822,47525 ,2,14975,584615 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389695 ,1,0,486090 ,2,14956,309190 ,2,822,47525 ,2,14975,590190 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,136925 ,2,14979,389595 ,1,0,486350 ,2,14956,309200 ,2,822,47525 ,2,14975,590190 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389720 ,1,0,486525 ,2,14956,309240 ,2,822,47525 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389600 ,1,0,486795 ,2,14956,309250 ,2,822,47525 ,2,14975,582335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389725 ,1,0,487050 ,2,14956,309260 ,2,822,47525 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389675 ,1,0,487350 ,2,14956,309270 ,2,822,47525 ,2,14975,590155 ,2,14976,23675 ,2,14977,23665 ,2,14965,45 ,2,14978,45 ,2,14979,389605 ,1,0,487700 ,2,14956,309355 ,2,822,55740 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389615 ,1,0,487955 ,2,14956,309315 ,2,822,55740 ,2,14975,558420 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,136955 ,2,14979,389680 ,1,0,488150 ,2,14956,309335 ,2,822,55740 ,2,14975,590165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389625 ,1,0,488420 ,2,14956,173755 ,2,822,55740 ,2,14975,110 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,45 ,2,14979,389665 ,1,0,488685 ,2,14956,309345 ,2,822,55740 ,2,14975,590195 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,389670 ,1,0,488935 ,2,14956,309365 ,2,822,55740 ,2,14975,599885 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389565 ,1,0,489320 ,2,14956,309390 ,2,822,14480 ,2,14975,590200 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,136995 ,2,14979,389700 ,1,0,489575 ,2,14956,2855 ,2,822,55740 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389560 ,1,0,489835 ,2,14956,2855 ,2,822,47555 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389750 ,1,0,490105 ,2,14956,309400 ,2,822,47555 ,2,14975,590205 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,389755 ,1,0,490320 ,2,14956,2855 ,2,822,47565 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389780 ,1,0,490585 ,2,14956,2855 ,2,822,47575 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389795 ,1,0,491000 ,2,14956,2855 ,2,822,47610 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389805 ,1,0,491130 ,2,14956,309460 ,2,822,47610 ,2,14975,590220 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,414620 ,1,0,491410 ,2,14956,309480 ,2,822,16875 ,2,14975,599885 ,2,14976,135945 ,2,14977,23120 ,2,14965,45 ,2,14978,237825 ,2,14979,2415 ,1,0,491685 ,2,14956,6920 ,2,822,15125 ,2,14975,599885 ,2,14976,135945 ,2,14977,23120 ,2,14965,45 ,2,14978,237835 ,2,14979,389875 ,1,0,491950 ,2,14956,309495 ,2,822,16875 ,2,14975,599885 ,2,14976,135945 ,2,14977,23120 ,2,14965,45 ,2,14978,237845 ,2,14979,2415 ,1,0,492200 ,2,14956,2855 ,2,822,47620 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389880 ,1,0,492575 ,2,14956,167205 ,2,822,47620 ,2,14975,558085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415855 ,1,0,492825 ,2,14956,309505 ,2,822,47620 ,2,14975,590250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414655 ,1,0,493060 ,2,14956,2855 ,2,822,47630 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389885 ,1,0,493420 ,2,14956,167205 ,2,822,47630 ,2,14975,558085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415865 ,1,0,493675 ,2,14956,309515 ,2,822,47630 ,2,14975,590255 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414660 ,1,0,493895 ,2,14956,2855 ,2,822,47640 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389915 ,1,0,494095 ,2,14956,309525 ,2,822,47640 ,2,14975,590260 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414665 ,1,0,494325 ,2,14956,2855 ,2,822,47650 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,389930 ,1,0,494595 ,2,14956,189055 ,2,822,47660 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390225 ,1,0,495000 ,2,14956,309560 ,2,822,55750 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264370 ,2,14979,390235 ,1,0,495195 ,2,14956,309580 ,2,822,55760 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264380 ,2,14979,390240 ,1,0,495595 ,2,14956,309600 ,2,822,55770 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264390 ,2,14979,390250 ,1,0,495835 ,2,14956,309620 ,2,822,55780 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264420 ,2,14979,390255 ,1,0,496110 ,2,14956,309660 ,2,822,55790 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264430 ,2,14979,390260 ,1,0,496365 ,2,14956,309680 ,2,822,55800 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264440 ,2,14979,390265 ,1,0,496600 ,2,14956,309705 ,2,822,55810 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264450 ,2,14979,390285 ,1,0,496850 ,2,14956,309725 ,2,822,55850 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264460 ,2,14979,390290 ,1,0,497065 ,2,14956,309770 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264370 ,2,14979,2415 ,1,0,497300 ,2,14956,309780 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264380 ,2,14979,2415 ,1,0,497695 ,2,14956,309790 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264390 ,2,14979,2415 ,1,0,498100 ,2,14956,309805 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264420 ,2,14979,2415 ,1,0,498445 ,2,14956,309815 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264430 ,2,14979,2415 ,1,0,498730 ,2,14956,309825 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264440 ,2,14979,2415 ,1,0,498925 ,2,14956,309835 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264450 ,2,14979,2415 ,1,0,499125 ,2,14956,309865 ,2,822,47670 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264460 ,2,14979,2415 ,1,0,499390 ,2,14956,309895 ,2,822,55860 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264470 ,2,14979,390295 ,1,0,499720 ,2,14956,309915 ,2,822,55870 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264480 ,2,14979,390300 ,1,0,500095 ,2,14956,310130 ,2,822,47660 ,2,14975,590290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390310 ,1,0,500505 ,2,14956,310120 ,2,822,47680 ,2,14975,590280 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390320 ,1,0,500745 ,2,14956,2855 ,2,822,47680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415740 ,1,0,501130 ,2,14956,309990 ,2,822,47680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264490 ,2,14979,417190 ,1,0,501535 ,2,14956,310020 ,2,822,47680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264525 ,2,14979,417175 ,1,0,501865 ,2,14956,270490 ,2,822,47680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264535 ,2,14979,416400 ,1,0,502060 ,2,14956,189055 ,2,822,47680 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264545 ,2,14979,414720 ,1,0,502335 ,2,14956,310040 ,2,822,47680 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264555 ,2,14979,416930 ,1,0,502610 ,2,14956,310070 ,2,822,47680 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264565 ,2,14979,416380 ,1,0,502965 ,2,14956,310090 ,2,822,47680 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264575 ,2,14979,417165 ,1,0,503175 ,2,14956,191935 ,2,822,47680 ,2,14975,589140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264585 ,2,14979,416705 ,1,0,503455 ,2,14956,310040 ,2,822,47660 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399365 ,1,0,503725 ,2,14956,310140 ,2,822,47660 ,2,14975,590290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390345 ,1,0,504070 ,2,14956,310175 ,2,822,47660 ,2,14975,590290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390350 ,1,0,504325 ,2,14956,310185 ,2,822,47660 ,2,14975,590290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390315 ,1,0,504785 ,2,14956,310090 ,2,822,47660 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264595 ,2,14979,417160 ,1,0,505160 ,2,14956,310195 ,2,822,47660 ,2,14975,590290 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390355 ,1,0,505560 ,2,14956,270490 ,2,822,47660 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,395765 ,1,0,505820 ,2,14956,191935 ,2,822,47660 ,2,14975,589140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264610 ,2,14979,416700 ,1,0,506250 ,2,14956,310020 ,2,822,47660 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399975 ,1,0,506630 ,2,14956,2855 ,2,822,47660 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392755 ,1,0,507030 ,2,14956,310205 ,2,822,47660 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264480 ,2,14979,2415 ,1,0,507480 ,2,14956,310070 ,2,822,47660 ,2,14975,599970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264620 ,2,14979,416350 ,1,0,507920 ,2,14956,310215 ,2,822,47660 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264470 ,2,14979,2415 ,1,0,508120 ,2,14956,309990 ,2,822,47660 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264630 ,2,14979,417185 ,1,0,508335 ,2,14956,310225 ,2,822,47660 ,2,14975,589140 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390370 ,1,0,508660 ,2,14956,2855 ,2,822,17075 ,2,14975,599880 ,2,14976,137610 ,2,14977,23360 ,2,14965,45 ,2,14978,237860 ,2,14979,2415 ,1,0,508840 ,2,14956,2855 ,2,822,47725 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,390795 ,1,0,509245 ,2,14956,310295 ,2,822,47725 ,2,14975,590325 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,390815 ,1,0,509615 ,2,14956,2855 ,2,822,47745 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414940 ,1,0,509815 ,2,14956,310350 ,2,822,55880 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264640 ,2,14979,414945 ,1,0,510000 ,2,14956,310380 ,2,822,47770 ,2,14975,590335 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,510340 ,2,14956,310390 ,2,822,47770 ,2,14975,600040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264640 ,2,14979,2415 ,1,0,510760 ,2,14956,2855 ,2,822,47780 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,414950 ,1,0,511190 ,2,14956,217240 ,2,822,47850 ,2,14975,590345 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,391190 ,1,0,511390 ,2,14956,310550 ,2,822,32665 ,2,14975,561380 ,2,14976,138145 ,2,14977,23120 ,2,14965,45 ,2,14978,237870 ,2,14979,2415 ,1,0,511755 ,2,14956,6920 ,2,822,29170 ,2,14975,561380 ,2,14976,138145 ,2,14977,23120 ,2,14965,45 ,2,14978,237880 ,2,14979,391580 ,1,0,512075 ,2,14956,310550 ,2,822,32555 ,2,14975,561380 ,2,14976,138145 ,2,14977,23120 ,2,14965,45 ,2,14978,237890 ,2,14979,2415 ,1,0,512360 ,2,14956,2855 ,2,822,47860 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,415265 ,1,0,512665 ,2,14956,310550 ,2,822,32635 ,2,14975,561380 ,2,14976,138145 ,2,14977,23120 ,2,14965,45 ,2,14978,237915 ,2,14979,2415 ,1,0,513015 ,2,14956,310635 ,2,822,24215 ,2,14975,599880 ,2,14976,58470 ,2,14977,23120 ,2,14965,45 ,2,14978,237925 ,2,14979,2415 ,1,0,513370 ,2,14956,2855 ,2,822,47880 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392225 ,1,0,513620 ,2,14956,310655 ,2,822,47900 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392230 ,1,0,513830 ,2,14956,2855 ,2,822,47925 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392600 ,1,0,514290 ,2,14956,311260 ,2,822,47925 ,2,14975,590440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392610 ,1,0,514550 ,2,14956,310750 ,2,822,55890 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264655 ,2,14979,392620 ,1,0,514795 ,2,14956,310770 ,2,822,55900 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264665 ,2,14979,392625 ,1,0,515040 ,2,14956,310810 ,2,822,55910 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264675 ,2,14979,392630 ,1,0,515215 ,2,14956,310830 ,2,822,55920 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264685 ,2,14979,392635 ,1,0,515465 ,2,14956,310860 ,2,822,55955 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264710 ,2,14979,392665 ,1,0,515680 ,2,14956,310880 ,2,822,47955 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264655 ,2,14979,2415 ,1,0,515880 ,2,14956,310910 ,2,822,47955 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264665 ,2,14979,2415 ,1,0,516095 ,2,14956,310920 ,2,822,47955 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264675 ,2,14979,2415 ,1,0,516290 ,2,14956,310930 ,2,822,47955 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264685 ,2,14979,2415 ,1,0,516545 ,2,14956,310940 ,2,822,47955 ,2,14975,562990 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264710 ,2,14979,2415 ,1,0,516725 ,2,14956,2855 ,2,822,47945 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392775 ,1,0,516965 ,2,14956,311015 ,2,822,47945 ,2,14975,590440 ,2,14976,23450 ,2,14977,138685 ,2,14965,45 ,2,14978,45 ,2,14979,392670 ,1,0,517180 ,2,14956,311025 ,2,822,47945 ,2,14975,590440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399895 ,1,0,517680 ,2,14956,311035 ,2,822,47945 ,2,14975,590430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392675 ,1,0,517960 ,2,14956,311045 ,2,822,47945 ,2,14975,590440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392680 ,1,0,518145 ,2,14956,311130 ,2,822,47945 ,2,14975,590440 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392730 ,1,0,518395 ,2,14956,2855 ,2,822,47965 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392760 ,1,0,518640 ,2,14956,311025 ,2,822,47965 ,2,14975,590440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399890 ,1,0,518940 ,2,14956,311080 ,2,822,47965 ,2,14975,590430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400005 ,1,0,519215 ,2,14956,311090 ,2,822,47965 ,2,14975,590440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392740 ,1,0,519390 ,2,14956,184205 ,2,822,47945 ,2,14975,599880 ,2,14976,23130 ,2,14977,138840 ,2,14965,45 ,2,14978,45 ,2,14979,392745 ,1,0,519580 ,2,14956,311165 ,2,822,47945 ,2,14975,590415 ,2,14976,23450 ,2,14977,138850 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,519845 ,2,14956,311175 ,2,822,47945 ,2,14975,590415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392685 ,1,0,520040 ,2,14956,311185 ,2,822,47945 ,2,14975,590415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392695 ,1,0,520280 ,2,14956,311195 ,2,822,47945 ,2,14975,590415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392700 ,1,0,520630 ,2,14956,311230 ,2,822,47945 ,2,14975,590415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392725 ,1,0,520910 ,2,14956,311240 ,2,822,47945 ,2,14975,590415 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,521155 ,2,14956,311080 ,2,822,47945 ,2,14975,590430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264720 ,2,14979,417180 ,1,0,521470 ,2,14956,311275 ,2,822,47925 ,2,14975,590445 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,392690 ,1,0,521725 ,2,14956,311285 ,2,822,47925 ,2,14975,590410 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,522140 ,2,14956,2855 ,2,822,14630 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392800 ,1,0,522420 ,2,14956,2855 ,2,822,14470 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392810 ,1,0,522620 ,2,14956,2855 ,2,822,14500 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392815 ,1,0,522825 ,2,14956,167265 ,2,822,14570 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,138870 ,2,14979,392835 ,1,0,523035 ,2,14956,190555 ,2,822,14570 ,2,14975,584615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264730 ,2,14979,2415 ,1,0,523290 ,2,14956,190510 ,2,822,55965 ,2,14975,584615 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264730 ,2,14979,392840 ,1,0,523605 ,2,14956,2855 ,2,822,14570 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392830 ,1,0,523890 ,2,14956,311380 ,2,822,14590 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392850 ,1,0,524270 ,2,14956,311390 ,2,822,14590 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392860 ,1,0,524570 ,2,14956,311400 ,2,822,14590 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392855 ,1,0,524905 ,2,14956,2855 ,2,822,14590 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,392845 ,1,0,525275 ,2,14956,2855 ,2,822,49280 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,138910 ,2,14979,392900 ,1,0,525565 ,2,14956,212320 ,2,822,14570 ,2,14975,600005 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393180 ,1,0,525865 ,2,14956,212320 ,2,822,14600 ,2,14975,600005 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393185 ,1,0,526105 ,2,14956,167205 ,2,822,47985 ,2,14975,558090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,264740 ,2,14979,415945 ,1,0,526300 ,2,14956,291860 ,2,822,47985 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395300 ,1,0,526680 ,2,14956,311430 ,2,822,47995 ,2,14975,590455 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,393345 ,1,0,527120 ,2,14956,177160 ,2,822,48025 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,396125 ,1,0,527385 ,2,14956,311505 ,2,822,48035 ,2,14975,110 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,393760 ,1,0,527600 ,2,14956,311475 ,2,822,48035 ,2,14975,558990 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,527850 ,2,14956,311485 ,2,822,48035 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,528075 ,2,14956,311520 ,2,822,48035 ,2,14975,599975 ,2,14976,34765 ,2,14977,34755 ,2,14965,45 ,2,14978,45 ,2,14979,393755 ,1,0,528385 ,2,14956,167610 ,2,822,48035 ,2,14975,562945 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,393750 ,1,0,528680 ,2,14956,167510 ,2,822,48045 ,2,14975,558990 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393795 ,1,0,528925 ,2,14956,311710 ,2,822,48055 ,2,14975,558420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393825 ,1,0,529095 ,2,14956,311540 ,2,822,48070 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396660 ,1,0,529370 ,2,14956,311550 ,2,822,48070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,396720 ,1,0,529620 ,2,14956,311575 ,2,822,48070 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393870 ,1,0,529830 ,2,14956,311585 ,2,822,48070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,530030 ,2,14956,311595 ,2,822,48070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393855 ,1,0,530315 ,2,14956,311635 ,2,822,48070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393830 ,1,0,530785 ,2,14956,311605 ,2,822,48055 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393840 ,1,0,531060 ,2,14956,311625 ,2,822,48055 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393845 ,1,0,531310 ,2,14956,169195 ,2,822,48055 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,531655 ,2,14956,311645 ,2,822,48070 ,2,14975,590525 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,531970 ,2,14956,311680 ,2,822,48055 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393850 ,1,0,532135 ,2,14956,311690 ,2,822,48055 ,2,14975,590520 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,532380 ,2,14956,311720 ,2,822,48070 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393820 ,1,0,532580 ,2,14956,311730 ,2,822,48055 ,2,14975,110 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393815 ,1,0,532725 ,2,14956,311740 ,2,822,48055 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393805 ,1,0,533050 ,2,14956,167510 ,2,822,48080 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,393880 ,1,0,533310 ,2,14956,311875 ,2,822,48090 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,264755 ,2,14979,2415 ,1,0,533510 ,2,14956,311815 ,2,822,48090 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393935 ,1,0,533735 ,2,14956,311825 ,2,822,48090 ,2,14975,599875 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,393930 ,1,0,533995 ,2,14956,311835 ,2,822,48090 ,2,14975,558990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,534270 ,2,14956,311855 ,2,822,48090 ,2,14975,590540 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,534525 ,2,14956,311885 ,2,822,48090 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,393925 ,1,0,534725 ,2,14956,312050 ,2,822,48100 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,264765 ,2,14979,2415 ,1,0,534900 ,2,14956,311930 ,2,822,48100 ,2,14975,558990 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,394000 ,1,0,535355 ,2,14956,311940 ,2,822,48100 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,535605 ,2,14956,311950 ,2,822,55975 ,2,14975,599885 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,393975 ,1,0,535730 ,2,14956,311965 ,2,822,55975 ,2,14975,599885 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,393995 ,1,0,536015 ,2,14956,311975 ,2,822,55975 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,536260 ,2,14956,311985 ,2,822,55975 ,2,14975,599975 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,536510 ,2,14956,311995 ,2,822,55975 ,2,14975,599975 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,536690 ,2,14956,312060 ,2,822,48100 ,2,14975,599885 ,2,14976,24120 ,2,14977,24110 ,2,14965,45 ,2,14978,45 ,2,14979,393970 ,1,0,536925 ,2,14956,312070 ,2,822,55975 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393965 ,1,0,537100 ,2,14956,167510 ,2,822,48145 ,2,14975,599885 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,393960 ,1,0,537400 ,2,14956,176230 ,2,822,48155 ,2,14975,565525 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416065 ,1,0,537580 ,2,14956,176220 ,2,822,48155 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,394350 ,1,0,537845 ,2,14956,291860 ,2,822,48155 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,395305 ,1,0,538125 ,2,14956,168920 ,2,822,48165 ,2,14975,611990 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,394840 ,1,0,538450 ,2,14956,13175 ,2,822,48165 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,416310 ,1,0,538645 ,2,14956,179120 ,2,822,21105 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,237935 ,2,14979,394895 ,1,0,538840 ,2,14956,312300 ,2,822,48175 ,2,14975,100 ,2,14976,23075 ,2,14977,190 ,2,14965,45 ,2,14978,209750 ,2,14979,397130 ,1,0,539210 ,2,14956,312115 ,2,822,48175 ,2,14975,561335 ,2,14976,58950 ,2,14977,23120 ,2,14965,45 ,2,14978,237945 ,2,14979,397135 ,1,0,539510 ,2,14956,312115 ,2,822,48175 ,2,14975,561335 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,209750 ,2,14979,397140 ,1,0,539720 ,2,14956,255415 ,2,822,55985 ,2,14975,590590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264775 ,2,14979,397180 ,1,0,540065 ,2,14956,312200 ,2,822,48175 ,2,14975,590585 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397185 ,1,0,540270 ,2,14956,312230 ,2,822,48175 ,2,14975,561335 ,2,14976,23675 ,2,14977,140370 ,2,14965,45 ,2,14978,45 ,2,14979,397190 ,1,0,540680 ,2,14956,312270 ,2,822,48175 ,2,14975,590595 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397200 ,1,0,540905 ,2,14956,312280 ,2,822,48175 ,2,14975,590600 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,397205 ,1,0,541255 ,2,14956,206825 ,2,822,48175 ,2,14975,590590 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264775 ,2,14979,2415 ,1,0,541465 ,2,14956,312340 ,2,822,48195 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,541670 ,2,14956,174935 ,2,822,48215 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397540 ,1,0,541850 ,2,14956,312405 ,2,822,48215 ,2,14975,586040 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,397560 ,1,0,542115 ,2,14956,312415 ,2,822,48215 ,2,14975,573425 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,45 ,2,14979,397565 ,1,0,542395 ,2,14956,312425 ,2,822,48215 ,2,14975,573425 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,397570 ,1,0,542720 ,2,14956,292185 ,2,822,48215 ,2,14975,599880 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397580 ,1,0,542970 ,2,14956,10000 ,2,822,48215 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397585 ,1,0,543160 ,2,14956,312435 ,2,822,48215 ,2,14975,590650 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,397590 ,1,0,543360 ,2,14956,312445 ,2,822,48215 ,2,14975,585995 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,397595 ,1,0,543675 ,2,14956,13210 ,2,822,14510 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397950 ,1,0,543945 ,2,14956,13210 ,2,822,14520 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,416650 ,1,0,544205 ,2,14956,13210 ,2,822,14530 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397965 ,1,0,544485 ,2,14956,13210 ,2,822,14560 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,397970 ,1,0,544780 ,2,14956,13210 ,2,822,14065 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140570 ,2,14979,397975 ,1,0,545095 ,2,14956,312540 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140600 ,2,14979,398020 ,1,0,545405 ,2,14956,13210 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398015 ,1,0,545530 ,2,14956,13210 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398025 ,1,0,545835 ,2,14956,13210 ,2,822,14610 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140610 ,2,14979,398030 ,1,0,546075 ,2,14956,13210 ,2,822,49280 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140640 ,2,14979,398040 ,1,0,546410 ,2,14956,280440 ,2,822,14570 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398500 ,1,0,546735 ,2,14956,280440 ,2,822,14600 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,398505 ,1,0,547100 ,2,14956,280185 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140755 ,2,14979,398645 ,1,0,547345 ,2,14956,312610 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140785 ,2,14979,398845 ,1,0,547655 ,2,14956,8170 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398840 ,1,0,547900 ,2,14956,8170 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398850 ,1,0,548205 ,2,14956,312650 ,2,822,48280 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,398930 ,1,0,548470 ,2,14956,312670 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140865 ,2,14979,398940 ,1,0,548715 ,2,14956,312670 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140875 ,2,14979,398945 ,1,0,548950 ,2,14956,169015 ,2,822,14560 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,140900 ,2,14979,399095 ,1,0,549265 ,2,14956,312725 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399100 ,1,0,549530 ,2,14956,312725 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140910 ,2,14979,399105 ,1,0,549735 ,2,14956,312750 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399115 ,1,0,550050 ,2,14956,312750 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140920 ,2,14979,399120 ,1,0,550360 ,2,14956,312770 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399235 ,1,0,550610 ,2,14956,312770 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,140960 ,2,14979,399240 ,1,0,550875 ,2,14956,280680 ,2,822,14570 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,140970 ,2,14979,399375 ,1,0,551125 ,2,14956,280680 ,2,822,14600 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399380 ,1,0,551605 ,2,14956,312845 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141010 ,2,14979,399740 ,1,0,552055 ,2,14956,312855 ,2,822,14580 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,399735 ,1,0,552590 ,2,14956,312855 ,2,822,14590 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141020 ,2,14979,399745 ,1,0,552990 ,2,14956,312895 ,2,822,14570 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141090 ,2,14979,399830 ,1,0,553400 ,2,14956,312895 ,2,822,14600 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417155 ,1,0,553775 ,2,14956,169910 ,2,822,14560 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399850 ,1,0,554210 ,2,14956,170125 ,2,822,14560 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,399860 ,1,0,554590 ,2,14956,169920 ,2,822,14560 ,2,14975,599885 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399910 ,1,0,554920 ,2,14956,169880 ,2,822,14560 ,2,14975,599975 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,399965 ,1,0,555295 ,2,14956,280505 ,2,822,14580 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141105 ,2,14979,399980 ,1,0,555640 ,2,14956,280505 ,2,822,14590 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141115 ,2,14979,400000 ,1,0,555905 ,2,14956,4400 ,2,822,14580 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141125 ,2,14979,400025 ,1,0,556155 ,2,14956,4400 ,2,822,14590 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,141135 ,2,14979,400030 ,1,0,556425 ,2,14956,169070 ,2,822,14560 ,2,14975,599885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,400065 ,1,0,556690 ,2,14956,9535 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400070 ,1,0,556970 ,2,14956,9535 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400075 ,1,0,557460 ,2,14956,6680 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400080 ,1,0,557730 ,2,14956,6680 ,2,822,14590 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400085 ,1,0,558130 ,2,14956,312960 ,2,822,14560 ,2,14975,558375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141170 ,2,14979,400100 ,1,0,558460 ,2,14956,168995 ,2,822,14560 ,2,14975,558375 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,400095 ,1,0,558750 ,2,14956,221390 ,2,822,14510 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141180 ,2,14979,400125 ,1,0,559125 ,2,14956,221390 ,2,822,14520 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141190 ,2,14979,400130 ,1,0,559295 ,2,14956,221390 ,2,822,14530 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141200 ,2,14979,400135 ,1,0,559560 ,2,14956,221390 ,2,822,14560 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141210 ,2,14979,400140 ,1,0,559960 ,2,14956,170415 ,2,822,14570 ,2,14975,599945 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417520 ,1,0,560185 ,2,14956,262405 ,2,822,14600 ,2,14975,599875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417550 ,1,0,560435 ,2,14956,179510 ,2,822,14600 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417555 ,1,0,560805 ,2,14956,312990 ,2,822,14570 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141220 ,2,14979,400175 ,1,0,561070 ,2,14956,312990 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,141230 ,2,14979,400180 ,1,0,561545 ,2,14956,6920 ,2,822,43545 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,237960 ,2,14979,400435 ,1,0,561885 ,2,14956,6920 ,2,822,43545 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,237970 ,2,14979,400445 ,1,0,562275 ,2,14956,6920 ,2,822,43545 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,237980 ,2,14979,400450 ,1,0,562485 ,2,14956,6920 ,2,822,43545 ,2,14975,600030 ,2,14976,141290 ,2,14977,23360 ,2,14965,45 ,2,14978,237990 ,2,14979,400455 ,1,0,562700 ,2,14956,6920 ,2,822,43545 ,2,14975,600030 ,2,14976,141290 ,2,14977,23360 ,2,14965,45 ,2,14978,238015 ,2,14979,400475 ,1,0,562965 ,2,14956,6920 ,2,822,43545 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,238025 ,2,14979,400480 ,1,0,563205 ,2,14956,6920 ,2,822,43545 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,238035 ,2,14979,400485 ,1,0,563475 ,2,14956,6920 ,2,822,43810 ,2,14975,600030 ,2,14976,141300 ,2,14977,23120 ,2,14965,45 ,2,14978,238045 ,2,14979,400490 ,1,0,563695 ,2,14956,6920 ,2,822,43730 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238055 ,2,14979,400500 ,1,0,563975 ,2,14956,6920 ,2,822,22910 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,238065 ,2,14979,400505 ,1,0,564280 ,2,14956,6920 ,2,822,22900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238075 ,2,14979,400510 ,1,0,564470 ,2,14956,6920 ,2,822,43615 ,2,14975,110 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,238085 ,2,14979,400515 ,1,0,564790 ,2,14956,6920 ,2,822,35485 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,238125 ,2,14979,400535 ,1,0,564990 ,2,14956,6920 ,2,822,35485 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,238135 ,2,14979,400540 ,1,0,565185 ,2,14956,6920 ,2,822,35485 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,238145 ,2,14979,400545 ,1,0,565375 ,2,14956,6920 ,2,822,35485 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,238155 ,2,14979,400550 ,1,0,565640 ,2,14956,6920 ,2,822,35485 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,238170 ,2,14979,400555 ,1,0,565900 ,2,14956,6920 ,2,822,35395 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,238180 ,2,14979,400560 ,1,0,566165 ,2,14956,6920 ,2,822,31810 ,2,14975,599940 ,2,14976,141310 ,2,14977,23360 ,2,14965,45 ,2,14978,238190 ,2,14979,400565 ,1,0,566625 ,2,14956,6920 ,2,822,31810 ,2,14975,599940 ,2,14976,141310 ,2,14977,23360 ,2,14965,45 ,2,14978,238200 ,2,14979,400570 ,1,0,566890 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238235 ,2,14979,400600 ,1,0,567180 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238245 ,2,14979,400605 ,1,0,567370 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238255 ,2,14979,400610 ,1,0,567570 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238265 ,2,14979,400615 ,1,0,567830 ,2,14956,6920 ,2,822,24810 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238275 ,2,14979,400625 ,1,0,568070 ,2,14956,6920 ,2,822,24810 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238285 ,2,14979,400630 ,1,0,568340 ,2,14956,6920 ,2,822,25080 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238295 ,2,14979,400635 ,1,0,568600 ,2,14956,6920 ,2,822,25080 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238305 ,2,14979,400640 ,1,0,568825 ,2,14956,313315 ,2,822,34865 ,2,14975,599940 ,2,14976,141310 ,2,14977,23360 ,2,14965,45 ,2,14978,238340 ,2,14979,400655 ,1,0,569095 ,2,14956,313325 ,2,822,34865 ,2,14975,599940 ,2,14976,141310 ,2,14977,23360 ,2,14965,45 ,2,14978,238350 ,2,14979,400660 ,1,0,569495 ,2,14956,6920 ,2,822,34865 ,2,14975,599870 ,2,14976,141345 ,2,14977,23120 ,2,14965,45 ,2,14978,238360 ,2,14979,400670 ,1,0,569845 ,2,14956,313355 ,2,822,34865 ,2,14975,590785 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238370 ,2,14979,400680 ,1,0,570115 ,2,14956,4490 ,2,822,34865 ,2,14975,599870 ,2,14976,141415 ,2,14977,141405 ,2,14965,45 ,2,14978,250935 ,2,14979,2415 ,1,0,570430 ,2,14956,4490 ,2,822,34865 ,2,14975,590785 ,2,14976,141395 ,2,14977,141355 ,2,14965,45 ,2,14978,250945 ,2,14979,2415 ,1,0,570845 ,2,14956,6920 ,2,822,34865 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,238385 ,2,14979,400685 ,1,0,571195 ,2,14956,6920 ,2,822,34975 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238395 ,2,14979,400690 ,1,0,571555 ,2,14956,6920 ,2,822,22670 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,238405 ,2,14979,400735 ,1,0,571820 ,2,14956,6920 ,2,822,22670 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,238415 ,2,14979,400740 ,1,0,572085 ,2,14956,6920 ,2,822,22670 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,238450 ,2,14979,400745 ,1,0,572400 ,2,14956,6920 ,2,822,22670 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,238460 ,2,14979,400750 ,1,0,572875 ,2,14956,6920 ,2,822,22670 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,238470 ,2,14979,400760 ,1,0,573225 ,2,14956,6920 ,2,822,31810 ,2,14975,599940 ,2,14976,141310 ,2,14977,23360 ,2,14965,45 ,2,14978,238480 ,2,14979,400765 ,1,0,573480 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238505 ,2,14979,400770 ,1,0,573730 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238515 ,2,14979,400775 ,1,0,574005 ,2,14956,6920 ,2,822,24810 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238525 ,2,14979,400795 ,1,0,574275 ,2,14956,6920 ,2,822,28835 ,2,14975,591365 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,238535 ,2,14979,400800 ,1,0,574455 ,2,14956,6920 ,2,822,25080 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238550 ,2,14979,400805 ,1,0,574780 ,2,14956,6920 ,2,822,42040 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238560 ,2,14979,400810 ,1,0,575100 ,2,14956,6920 ,2,822,43700 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238570 ,2,14979,417560 ,1,0,575365 ,2,14956,313505 ,2,822,43700 ,2,14975,110 ,2,14976,141425 ,2,14977,23360 ,2,14965,45 ,2,14978,238580 ,2,14979,400825 ,1,0,575555 ,2,14956,6920 ,2,822,28030 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238595 ,2,14979,400830 ,1,0,576005 ,2,14956,6920 ,2,822,28030 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238605 ,2,14979,417565 ,1,0,576385 ,2,14956,6920 ,2,822,28030 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238615 ,2,14979,400835 ,1,0,576640 ,2,14956,6920 ,2,822,35435 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238625 ,2,14979,417590 ,1,0,576955 ,2,14956,6920 ,2,822,35435 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238655 ,2,14979,400840 ,1,0,577380 ,2,14956,6920 ,2,822,35435 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238665 ,2,14979,400870 ,1,0,577720 ,2,14956,6920 ,2,822,31810 ,2,14975,599940 ,2,14976,141310 ,2,14977,23360 ,2,14965,45 ,2,14978,238675 ,2,14979,400875 ,1,0,578050 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238685 ,2,14979,400885 ,1,0,578435 ,2,14956,6920 ,2,822,36775 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238705 ,2,14979,400890 ,1,0,578910 ,2,14956,6920 ,2,822,35985 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,238715 ,2,14979,400895 ,1,0,579245 ,2,14956,6920 ,2,822,24810 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238725 ,2,14979,400900 ,1,0,579455 ,2,14956,6920 ,2,822,25080 ,2,14975,599940 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,238735 ,2,14979,400905 ,1,0,579915 ,2,14956,313830 ,2,822,34115 ,2,14975,599970 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,238795 ,2,14979,400930 ,1,0,580500 ,2,14956,313840 ,2,822,34115 ,2,14975,599970 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,238805 ,2,14979,400935 ,1,0,580755 ,2,14956,13090 ,2,822,34115 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,238815 ,2,14979,400940 ,1,0,580940 ,2,14956,6920 ,2,822,34900 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238825 ,2,14979,417595 ,1,0,581215 ,2,14956,6920 ,2,822,52770 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,238835 ,2,14979,400945 ,1,0,581545 ,2,14956,6920 ,2,822,23660 ,2,14975,599940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238845 ,2,14979,400955 ,1,0,581880 ,2,14956,6920 ,2,822,35885 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,238855 ,2,14979,400965 ,1,0,582300 ,2,14956,6920 ,2,822,34645 ,2,14975,600030 ,2,14976,141495 ,2,14977,23120 ,2,14965,45 ,2,14978,238865 ,2,14979,400990 ,1,0,582625 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,141495 ,2,14977,23120 ,2,14965,45 ,2,14978,238890 ,2,14979,2415 ,1,0,582860 ,2,14956,6920 ,2,822,34645 ,2,14975,590900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238900 ,2,14979,400995 ,1,0,583345 ,2,14956,6920 ,2,822,27950 ,2,14975,590900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238910 ,2,14979,2415 ,1,0,583585 ,2,14956,6920 ,2,822,34645 ,2,14975,600030 ,2,14976,141505 ,2,14977,23120 ,2,14965,45 ,2,14978,238920 ,2,14979,401000 ,1,0,583795 ,2,14956,6920 ,2,822,34645 ,2,14975,594825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238935 ,2,14979,401005 ,1,0,584250 ,2,14956,6920 ,2,822,34645 ,2,14975,600030 ,2,14976,141530 ,2,14977,23120 ,2,14965,45 ,2,14978,238945 ,2,14979,401015 ,1,0,584600 ,2,14956,6920 ,2,822,34645 ,2,14975,594835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,238955 ,2,14979,401020 ,1,0,584910 ,2,14956,6920 ,2,822,34645 ,2,14975,600030 ,2,14976,141550 ,2,14977,23120 ,2,14965,45 ,2,14978,238965 ,2,14979,401030 ,1,0,585305 ,2,14956,6920 ,2,822,34645 ,2,14975,590950 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239000 ,2,14979,401050 ,1,0,585620 ,2,14956,6920 ,2,822,25080 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,239010 ,2,14979,401055 ,1,0,585950 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239020 ,2,14979,401060 ,1,0,586145 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,239030 ,2,14979,401065 ,1,0,586355 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239040 ,2,14979,417600 ,1,0,586630 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239050 ,2,14979,417605 ,1,0,586960 ,2,14956,6920 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239060 ,2,14979,401070 ,1,0,587295 ,2,14956,6920 ,2,822,33695 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239070 ,2,14979,401075 ,1,0,587495 ,2,14956,6920 ,2,822,33695 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239115 ,2,14979,401080 ,1,0,587710 ,2,14956,6920 ,2,822,33695 ,2,14975,591010 ,2,14976,141610 ,2,14977,23360 ,2,14965,45 ,2,14978,239125 ,2,14979,401085 ,1,0,587990 ,2,14956,6920 ,2,822,44095 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239135 ,2,14979,401120 ,1,0,588315 ,2,14956,6920 ,2,822,33205 ,2,14975,587260 ,2,14976,141610 ,2,14977,23360 ,2,14965,45 ,2,14978,239145 ,2,14979,401125 ,1,0,588515 ,2,14956,6920 ,2,822,33205 ,2,14975,599870 ,2,14976,64565 ,2,14977,23120 ,2,14965,45 ,2,14978,239155 ,2,14979,401130 ,1,0,589005 ,2,14956,6920 ,2,822,29260 ,2,14975,599975 ,2,14976,141620 ,2,14977,23360 ,2,14965,45 ,2,14978,239165 ,2,14979,401135 ,1,0,589115 ,2,14956,6920 ,2,822,16940 ,2,14975,110 ,2,14976,141630 ,2,14977,23120 ,2,14965,45 ,2,14978,239175 ,2,14979,401140 ,1,0,589460 ,2,14956,6920 ,2,822,16785 ,2,14975,110 ,2,14976,141640 ,2,14977,23120 ,2,14965,45 ,2,14978,239185 ,2,14979,401145 ,1,0,589670 ,2,14956,314850 ,2,822,29440 ,2,14975,599870 ,2,14976,75290 ,2,14977,23120 ,2,14965,45 ,2,14978,239200 ,2,14979,401150 ,1,0,589960 ,2,14956,6920 ,2,822,29345 ,2,14975,600030 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,239210 ,2,14979,401155 ,1,0,590485 ,2,14956,6920 ,2,822,43605 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239220 ,2,14979,401170 ,1,0,590675 ,2,14956,6920 ,2,822,43605 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239230 ,2,14979,401175 ,1,0,590870 ,2,14956,6920 ,2,822,43605 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239240 ,2,14979,401180 ,1,0,591205 ,2,14956,6920 ,2,822,43605 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239250 ,2,14979,401185 ,1,0,591510 ,2,14956,13090 ,2,822,34675 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239260 ,2,14979,401195 ,1,0,591715 ,2,14956,6920 ,2,822,35250 ,2,14975,600030 ,2,14976,141670 ,2,14977,23120 ,2,14965,45 ,2,14978,239270 ,2,14979,401200 ,1,0,591975 ,2,14956,13090 ,2,822,34675 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239295 ,2,14979,401205 ,1,0,592285 ,2,14956,13090 ,2,822,34655 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239305 ,2,14979,401210 ,1,0,592730 ,2,14956,6920 ,2,822,33665 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239315 ,2,14979,401240 ,1,0,593000 ,2,14956,6920 ,2,822,33665 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239325 ,2,14979,401245 ,1,0,593365 ,2,14956,6920 ,2,822,33665 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239335 ,2,14979,401250 ,1,0,593750 ,2,14956,6920 ,2,822,33665 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239345 ,2,14979,401255 ,1,0,594175 ,2,14956,6920 ,2,822,35550 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239355 ,2,14979,401260 ,1,0,594385 ,2,14956,13090 ,2,822,32940 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239365 ,2,14979,401265 ,1,0,594775 ,2,14956,6920 ,2,822,35550 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,239395 ,2,14979,401270 ,1,0,594980 ,2,14956,6920 ,2,822,35550 ,2,14975,110 ,2,14976,78255 ,2,14977,23120 ,2,14965,45 ,2,14978,239405 ,2,14979,401275 ,1,0,595215 ,2,14956,6920 ,2,822,35550 ,2,14975,110 ,2,14976,78265 ,2,14977,23120 ,2,14965,45 ,2,14978,239415 ,2,14979,401305 ,1,0,595400 ,2,14956,6920 ,2,822,34060 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239425 ,2,14979,401310 ,1,0,595615 ,2,14956,6920 ,2,822,32895 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239435 ,2,14979,401315 ,1,0,595730 ,2,14956,6920 ,2,822,43470 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,239445 ,2,14979,401320 ,1,0,595870 ,2,14956,6920 ,2,822,47155 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239455 ,2,14979,401330 ,1,0,596040 ,2,14956,6920 ,2,822,47155 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239465 ,2,14979,401335 ,1,0,596250 ,2,14956,6920 ,2,822,31075 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239515 ,2,14979,401340 ,1,0,596440 ,2,14956,6920 ,2,822,31085 ,2,14975,561500 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239525 ,2,14979,401345 ,1,0,596705 ,2,14956,240210 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239535 ,2,14979,401375 ,1,0,597065 ,2,14956,13090 ,2,822,47900 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239545 ,2,14979,401385 ,1,0,597245 ,2,14956,13090 ,2,822,31125 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239565 ,2,14979,401390 ,1,0,597560 ,2,14956,315395 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239575 ,2,14979,401400 ,1,0,597870 ,2,14956,6920 ,2,822,31075 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239585 ,2,14979,401405 ,1,0,598200 ,2,14956,6920 ,2,822,31075 ,2,14975,599870 ,2,14976,141825 ,2,14977,23120 ,2,14965,45 ,2,14978,239595 ,2,14979,401415 ,1,0,598355 ,2,14956,6920 ,2,822,30765 ,2,14975,591165 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,239620 ,2,14979,401435 ,1,0,598870 ,2,14956,6920 ,2,822,30765 ,2,14975,591360 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,239630 ,2,14979,401440 ,1,0,599080 ,2,14956,6920 ,2,822,30765 ,2,14975,591365 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,239640 ,2,14979,401445 ,1,0,599335 ,2,14956,6920 ,2,822,30270 ,2,14975,591190 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,239650 ,2,14979,401450 ,1,0,599595 ,2,14956,6920 ,2,822,30270 ,2,14975,600030 ,2,14976,141845 ,2,14977,23120 ,2,14965,45 ,2,14978,239665 ,2,14979,401455 ,1,0,599810 ,2,14956,6920 ,2,822,34740 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239675 ,2,14979,401460 ,1,0,600055 ,2,14956,6920 ,2,822,34740 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239685 ,2,14979,401465 ,1,0,600305 ,2,14956,6920 ,2,822,33695 ,2,14975,110 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,239695 ,2,14979,401470 ,1,0,600500 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,239735 ,2,14979,401490 ,1,0,600765 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239745 ,2,14979,401495 ,1,0,601010 ,2,14956,315880 ,2,822,34070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239755 ,2,14979,401500 ,1,0,601260 ,2,14956,315905 ,2,822,34070 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239765 ,2,14979,401505 ,1,0,601500 ,2,14956,6920 ,2,822,34550 ,2,14975,600030 ,2,14976,87730 ,2,14977,23120 ,2,14965,45 ,2,14978,239775 ,2,14979,401510 ,1,0,601775 ,2,14956,6920 ,2,822,34550 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,239785 ,2,14979,401515 ,1,0,602050 ,2,14956,6920 ,2,822,34550 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,239795 ,2,14979,401520 ,1,0,602350 ,2,14956,6920 ,2,822,33695 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239805 ,2,14979,401525 ,1,0,602835 ,2,14956,13090 ,2,822,34060 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,239840 ,2,14979,401565 ,1,0,603055 ,2,14956,6920 ,2,822,34740 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239850 ,2,14979,401570 ,1,0,603245 ,2,14956,6920 ,2,822,34740 ,2,14975,591230 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,239860 ,2,14979,401575 ,1,0,603470 ,2,14956,6920 ,2,822,34740 ,2,14975,110 ,2,14976,78255 ,2,14977,23120 ,2,14965,45 ,2,14978,239870 ,2,14979,401580 ,1,0,603685 ,2,14956,6920 ,2,822,34740 ,2,14975,110 ,2,14976,78265 ,2,14977,23120 ,2,14965,45 ,2,14978,239885 ,2,14979,401590 ,1,0,604060 ,2,14956,6920 ,2,822,34740 ,2,14975,578475 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,239895 ,2,14979,401595 ,1,0,604245 ,2,14956,6920 ,2,822,26965 ,2,14975,599870 ,2,14976,141920 ,2,14977,23120 ,2,14965,45 ,2,14978,239905 ,2,14979,401600 ,1,0,604460 ,2,14956,313355 ,2,822,26965 ,2,14975,591250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239915 ,2,14979,401605 ,1,0,604725 ,2,14956,4490 ,2,822,26965 ,2,14975,599870 ,2,14976,141960 ,2,14977,141950 ,2,14965,45 ,2,14978,250955 ,2,14979,2415 ,1,0,604900 ,2,14956,4490 ,2,822,26965 ,2,14975,591250 ,2,14976,141940 ,2,14977,141930 ,2,14965,45 ,2,14978,250965 ,2,14979,2415 ,1,0,605180 ,2,14956,6920 ,2,822,26975 ,2,14975,599870 ,2,14976,141920 ,2,14977,23120 ,2,14965,45 ,2,14978,239940 ,2,14979,401635 ,1,0,605375 ,2,14956,313355 ,2,822,26975 ,2,14975,591250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,239950 ,2,14979,401640 ,1,0,605645 ,2,14956,6920 ,2,822,30635 ,2,14975,591295 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,239960 ,2,14979,401645 ,1,0,606055 ,2,14956,6920 ,2,822,29260 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,239970 ,2,14979,401650 ,1,0,606370 ,2,14956,4490 ,2,822,16820 ,2,14975,599875 ,2,14976,141990 ,2,14977,141970 ,2,14965,45 ,2,14978,250975 ,2,14979,2415 ,1,0,606730 ,2,14956,6920 ,2,822,29215 ,2,14975,599870 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,239985 ,2,14979,401655 ,1,0,607060 ,2,14956,6920 ,2,822,29215 ,2,14975,561380 ,2,14976,57275 ,2,14977,23120 ,2,14965,45 ,2,14978,239995 ,2,14979,401660 ,1,0,607455 ,2,14956,6920 ,2,822,30600 ,2,14975,591360 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,240005 ,2,14979,401665 ,1,0,607670 ,2,14956,6920 ,2,822,30600 ,2,14975,591360 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,240015 ,2,14979,401670 ,1,0,607935 ,2,14956,6920 ,2,822,30600 ,2,14975,591365 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,240045 ,2,14979,401700 ,1,0,608240 ,2,14956,6920 ,2,822,30600 ,2,14975,591370 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,240055 ,2,14979,401705 ,1,0,608580 ,2,14956,6920 ,2,822,28620 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240065 ,2,14979,401710 ,1,0,608925 ,2,14956,6920 ,2,822,24885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240075 ,2,14979,401720 ,1,0,609190 ,2,14956,6920 ,2,822,37150 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240085 ,2,14979,401725 ,1,0,609365 ,2,14956,6920 ,2,822,37150 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240095 ,2,14979,401730 ,1,0,609615 ,2,14956,6920 ,2,822,37150 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240105 ,2,14979,401735 ,1,0,609875 ,2,14956,6920 ,2,822,44060 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240115 ,2,14979,401755 ,1,0,610135 ,2,14956,6920 ,2,822,44060 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240145 ,2,14979,401760 ,1,0,610860 ,2,14956,6920 ,2,822,44060 ,2,14975,600030 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,240155 ,2,14979,401765 ,1,0,611220 ,2,14956,6920 ,2,822,44060 ,2,14975,600030 ,2,14976,142010 ,2,14977,23120 ,2,14965,45 ,2,14978,240165 ,2,14979,401770 ,1,0,611465 ,2,14956,4490 ,2,822,44060 ,2,14975,568460 ,2,14976,142035 ,2,14977,142020 ,2,14965,45 ,2,14978,250985 ,2,14979,2415 ,1,0,611710 ,2,14956,6920 ,2,822,26705 ,2,14975,600030 ,2,14976,141505 ,2,14977,23120 ,2,14965,45 ,2,14978,240175 ,2,14979,401780 ,1,0,612190 ,2,14956,6920 ,2,822,26705 ,2,14975,594825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240185 ,2,14979,401785 ,1,0,612370 ,2,14956,6920 ,2,822,26705 ,2,14975,600030 ,2,14976,142045 ,2,14977,23120 ,2,14965,45 ,2,14978,240195 ,2,14979,401790 ,1,0,612780 ,2,14956,6920 ,2,822,26705 ,2,14975,594830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240205 ,2,14979,401795 ,1,0,612975 ,2,14956,4490 ,2,822,16830 ,2,14975,607590 ,2,14976,142090 ,2,14977,142065 ,2,14965,45 ,2,14978,250995 ,2,14979,2415 ,1,0,613160 ,2,14956,4490 ,2,822,16820 ,2,14975,607565 ,2,14976,142110 ,2,14977,142100 ,2,14965,45 ,2,14978,251030 ,2,14979,2415 ,1,0,613360 ,2,14956,4490 ,2,822,33080 ,2,14975,610325 ,2,14976,142135 ,2,14977,142120 ,2,14965,45 ,2,14978,251040 ,2,14979,2415 ,1,0,613625 ,2,14956,4490 ,2,822,16865 ,2,14975,607690 ,2,14976,142155 ,2,14977,142145 ,2,14965,45 ,2,14978,251050 ,2,14979,2415 ,1,0,613880 ,2,14956,4490 ,2,822,16445 ,2,14975,607235 ,2,14976,142200 ,2,14977,142165 ,2,14965,45 ,2,14978,251060 ,2,14979,2415 ,1,0,614180 ,2,14956,6920 ,2,822,38430 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,240215 ,2,14979,401840 ,1,0,614420 ,2,14956,6920 ,2,822,29590 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240250 ,2,14979,401845 ,1,0,614750 ,2,14956,6920 ,2,822,46950 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240260 ,2,14979,401850 ,1,0,614915 ,2,14956,6920 ,2,822,43390 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,240270 ,2,14979,401855 ,1,0,615140 ,2,14956,6920 ,2,822,30540 ,2,14975,591550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240280 ,2,14979,401865 ,1,0,615440 ,2,14956,6920 ,2,822,30540 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240290 ,2,14979,401870 ,1,0,615740 ,2,14956,6920 ,2,822,29920 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,240300 ,2,14979,401875 ,1,0,616080 ,2,14956,6920 ,2,822,29840 ,2,14975,591565 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,240310 ,2,14979,401905 ,1,0,616325 ,2,14956,6920 ,2,822,28415 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240320 ,2,14979,401910 ,1,0,616580 ,2,14956,6920 ,2,822,33015 ,2,14975,599870 ,2,14976,70635 ,2,14977,23120 ,2,14965,45 ,2,14978,240345 ,2,14979,401915 ,1,0,616835 ,2,14956,6920 ,2,822,33015 ,2,14975,600030 ,2,14976,142255 ,2,14977,23120 ,2,14965,45 ,2,14978,240355 ,2,14979,401920 ,1,0,617225 ,2,14956,6920 ,2,822,23445 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240365 ,2,14979,401930 ,1,0,617580 ,2,14956,6920 ,2,822,28415 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240375 ,2,14979,401935 ,1,0,617860 ,2,14956,6920 ,2,822,33015 ,2,14975,600030 ,2,14976,142255 ,2,14977,23120 ,2,14965,45 ,2,14978,240390 ,2,14979,401940 ,1,0,618150 ,2,14956,225660 ,2,822,33115 ,2,14975,599870 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240400 ,2,14979,401945 ,1,0,618390 ,2,14956,6920 ,2,822,52255 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,240410 ,2,14979,401960 ,1,0,618585 ,2,14956,6920 ,2,822,26760 ,2,14975,599870 ,2,14976,142330 ,2,14977,23120 ,2,14965,45 ,2,14978,240420 ,2,14979,401965 ,1,0,618845 ,2,14956,6920 ,2,822,26965 ,2,14975,599870 ,2,14976,141920 ,2,14977,23120 ,2,14965,45 ,2,14978,240435 ,2,14979,401970 ,1,0,619120 ,2,14956,6920 ,2,822,26975 ,2,14975,599870 ,2,14976,141920 ,2,14977,23120 ,2,14965,45 ,2,14978,240445 ,2,14979,401980 ,1,0,619415 ,2,14956,313355 ,2,822,26975 ,2,14975,591250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240455 ,2,14979,401985 ,1,0,619720 ,2,14956,313355 ,2,822,26965 ,2,14975,591250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240465 ,2,14979,401990 ,1,0,619900 ,2,14956,6920 ,2,822,26760 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,240480 ,2,14979,401995 ,1,0,620190 ,2,14956,6920 ,2,822,31065 ,2,14975,600030 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,240490 ,2,14979,402025 ,1,0,620435 ,2,14956,6920 ,2,822,31065 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240500 ,2,14979,417625 ,1,0,620790 ,2,14956,6920 ,2,822,31065 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240510 ,2,14979,402030 ,1,0,621085 ,2,14956,6920 ,2,822,31065 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240545 ,2,14979,402035 ,1,0,621260 ,2,14956,6920 ,2,822,31065 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,240555 ,2,14979,402045 ,1,0,621445 ,2,14956,6920 ,2,822,31065 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240565 ,2,14979,402050 ,1,0,621610 ,2,14956,6920 ,2,822,30665 ,2,14975,591695 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,240575 ,2,14979,402055 ,1,0,622215 ,2,14956,6920 ,2,822,28415 ,2,14975,568460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240590 ,2,14979,402060 ,1,0,622810 ,2,14956,6920 ,2,822,28415 ,2,14975,568420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240600 ,2,14979,402080 ,1,0,622985 ,2,14956,6920 ,2,822,28415 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,240610 ,2,14979,417630 ,1,0,623225 ,2,14956,307335 ,2,822,28415 ,2,14975,110 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,240620 ,2,14979,402085 ,1,0,623415 ,2,14956,187610 ,2,822,27400 ,2,14975,110 ,2,14976,142350 ,2,14977,142340 ,2,14965,45 ,2,14978,240675 ,2,14979,2415 ,1,0,623860 ,2,14956,6920 ,2,822,24635 ,2,14975,599970 ,2,14976,142365 ,2,14977,23360 ,2,14965,45 ,2,14978,240685 ,2,14979,402095 ,1,0,624325 ,2,14956,317970 ,2,822,24635 ,2,14975,599870 ,2,14976,142385 ,2,14977,23120 ,2,14965,45 ,2,14978,240695 ,2,14979,402100 ,1,0,624560 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240705 ,2,14979,402105 ,1,0,624750 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240720 ,2,14979,402110 ,1,0,624990 ,2,14956,6920 ,2,822,24635 ,2,14975,599970 ,2,14976,142365 ,2,14977,23360 ,2,14965,45 ,2,14978,240730 ,2,14979,402115 ,1,0,625405 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240740 ,2,14979,402150 ,1,0,625640 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240750 ,2,14979,402155 ,1,0,625905 ,2,14956,6920 ,2,822,24635 ,2,14975,599970 ,2,14976,142365 ,2,14977,23360 ,2,14965,45 ,2,14978,240785 ,2,14979,402160 ,1,0,626220 ,2,14956,6920 ,2,822,24580 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240795 ,2,14979,402165 ,1,0,626465 ,2,14956,6920 ,2,822,24635 ,2,14975,599970 ,2,14976,142365 ,2,14977,23360 ,2,14965,45 ,2,14978,240805 ,2,14979,402170 ,1,0,626675 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240815 ,2,14979,402175 ,1,0,627195 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240825 ,2,14979,402180 ,1,0,627520 ,2,14956,6920 ,2,822,24635 ,2,14975,599970 ,2,14976,142365 ,2,14977,23360 ,2,14965,45 ,2,14978,240835 ,2,14979,402185 ,1,0,627880 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240845 ,2,14979,402210 ,1,0,628265 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,240855 ,2,14979,402215 ,1,0,628580 ,2,14956,6920 ,2,822,26715 ,2,14975,600030 ,2,14976,142415 ,2,14977,23120 ,2,14965,45 ,2,14978,240875 ,2,14979,402220 ,1,0,628755 ,2,14956,6920 ,2,822,36865 ,2,14975,599970 ,2,14976,142425 ,2,14977,23360 ,2,14965,45 ,2,14978,240885 ,2,14979,402230 ,1,0,629065 ,2,14956,318025 ,2,822,24700 ,2,14975,591815 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,240895 ,2,14979,402235 ,1,0,629340 ,2,14956,6920 ,2,822,24700 ,2,14975,591820 ,2,14976,142445 ,2,14977,23120 ,2,14965,45 ,2,14978,240905 ,2,14979,402240 ,1,0,629665 ,2,14956,6920 ,2,822,24700 ,2,14975,599970 ,2,14976,142455 ,2,14977,23360 ,2,14965,45 ,2,14978,240920 ,2,14979,402245 ,1,0,629930 ,2,14956,6920 ,2,822,36875 ,2,14975,561500 ,2,14976,142445 ,2,14977,23120 ,2,14965,45 ,2,14978,240930 ,2,14979,402270 ,1,0,630210 ,2,14956,6920 ,2,822,36875 ,2,14975,599970 ,2,14976,142465 ,2,14977,23360 ,2,14965,45 ,2,14978,240940 ,2,14979,402275 ,1,0,630540 ,2,14956,6920 ,2,822,36885 ,2,14975,599870 ,2,14976,142445 ,2,14977,23120 ,2,14965,45 ,2,14978,240950 ,2,14979,402280 ,1,0,630805 ,2,14956,6920 ,2,822,36885 ,2,14975,599970 ,2,14976,142455 ,2,14977,23360 ,2,14965,45 ,2,14978,240985 ,2,14979,402285 ,1,0,630990 ,2,14956,6920 ,2,822,36895 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,240995 ,2,14979,402300 ,1,0,631455 ,2,14956,318045 ,2,822,24645 ,2,14975,110 ,2,14976,142485 ,2,14977,23120 ,2,14965,45 ,2,14978,241005 ,2,14979,402305 ,1,0,631725 ,2,14956,6920 ,2,822,24470 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,241015 ,2,14979,402345 ,1,0,631905 ,2,14956,6920 ,2,822,43500 ,2,14975,591900 ,2,14976,141610 ,2,14977,23360 ,2,14965,45 ,2,14978,241030 ,2,14979,402350 ,1,0,632440 ,2,14956,6920 ,2,822,39180 ,2,14975,561570 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,241040 ,2,14979,402355 ,1,0,632780 ,2,14956,6920 ,2,822,39160 ,2,14975,559345 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241050 ,2,14979,402360 ,1,0,633130 ,2,14956,6920 ,2,822,39160 ,2,14975,582710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241060 ,2,14979,402375 ,1,0,633635 ,2,14956,6920 ,2,822,45455 ,2,14975,589815 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,241075 ,2,14979,402385 ,1,0,633815 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241085 ,2,14979,402400 ,1,0,633940 ,2,14956,6920 ,2,822,45455 ,2,14975,591980 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,241095 ,2,14979,402405 ,1,0,634135 ,2,14956,6920 ,2,822,45455 ,2,14975,591980 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,241105 ,2,14979,402410 ,1,0,634400 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,241115 ,2,14979,402415 ,1,0,634625 ,2,14956,13090 ,2,822,45355 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,241125 ,2,14979,402420 ,1,0,634865 ,2,14956,6920 ,2,822,45455 ,2,14975,569070 ,2,14976,142540 ,2,14977,23360 ,2,14965,45 ,2,14978,241135 ,2,14979,402425 ,1,0,635070 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241145 ,2,14979,402430 ,1,0,635425 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241185 ,2,14979,402435 ,1,0,635685 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241195 ,2,14979,402475 ,1,0,635925 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241205 ,2,14979,402480 ,1,0,636285 ,2,14956,13090 ,2,822,45070 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,241215 ,2,14979,402485 ,1,0,636475 ,2,14956,6920 ,2,822,54615 ,2,14975,592015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241230 ,2,14979,402490 ,1,0,636725 ,2,14956,6920 ,2,822,54615 ,2,14975,592065 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241240 ,2,14979,402495 ,1,0,636905 ,2,14956,4490 ,2,822,41785 ,2,14975,592015 ,2,14976,142635 ,2,14977,142625 ,2,14965,45 ,2,14978,251085 ,2,14979,2415 ,1,0,637185 ,2,14956,6920 ,2,822,54605 ,2,14975,592075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241250 ,2,14979,402500 ,1,0,637490 ,2,14956,6920 ,2,822,54605 ,2,14975,592085 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241260 ,2,14979,402505 ,1,0,637810 ,2,14956,4490 ,2,822,41765 ,2,14975,592075 ,2,14976,142660 ,2,14977,142645 ,2,14965,45 ,2,14978,251095 ,2,14979,2415 ,1,0,638115 ,2,14956,6920 ,2,822,54590 ,2,14975,592095 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241290 ,2,14979,402510 ,1,0,638410 ,2,14956,6920 ,2,822,53420 ,2,14975,592120 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241300 ,2,14979,402540 ,1,0,638650 ,2,14956,6920 ,2,822,53505 ,2,14975,592130 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241310 ,2,14979,402545 ,1,0,639020 ,2,14956,6920 ,2,822,53505 ,2,14975,592140 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241320 ,2,14979,402550 ,1,0,639215 ,2,14956,4490 ,2,822,39410 ,2,14975,592130 ,2,14976,142690 ,2,14977,142680 ,2,14965,45 ,2,14978,251105 ,2,14979,2415 ,1,0,639535 ,2,14956,6920 ,2,822,54580 ,2,14975,592150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241335 ,2,14979,402555 ,1,0,639725 ,2,14956,6920 ,2,822,54580 ,2,14975,592190 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241345 ,2,14979,402570 ,1,0,640250 ,2,14956,4490 ,2,822,41670 ,2,14975,592150 ,2,14976,142720 ,2,14977,142710 ,2,14965,45 ,2,14978,251115 ,2,14979,2415 ,1,0,640590 ,2,14956,6920 ,2,822,54570 ,2,14975,592200 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241355 ,2,14979,402575 ,1,0,640785 ,2,14956,6920 ,2,822,54570 ,2,14975,592210 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241365 ,2,14979,402580 ,1,0,641220 ,2,14956,4490 ,2,822,41650 ,2,14975,592200 ,2,14976,142750 ,2,14977,142740 ,2,14965,45 ,2,14978,251155 ,2,14979,2415 ,1,0,641565 ,2,14956,6920 ,2,822,54560 ,2,14975,592220 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241395 ,2,14979,402585 ,1,0,641820 ,2,14956,6920 ,2,822,54560 ,2,14975,592240 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241405 ,2,14979,402615 ,1,0,642110 ,2,14956,4490 ,2,822,41610 ,2,14975,592220 ,2,14976,142770 ,2,14977,142760 ,2,14965,45 ,2,14978,251165 ,2,14979,2415 ,1,0,642710 ,2,14956,6920 ,2,822,54535 ,2,14975,592250 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241415 ,2,14979,402620 ,1,0,643340 ,2,14956,6920 ,2,822,54535 ,2,14975,592260 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241425 ,2,14979,402625 ,1,0,643575 ,2,14956,4490 ,2,822,41590 ,2,14975,592250 ,2,14976,142810 ,2,14977,142780 ,2,14965,45 ,2,14978,251175 ,2,14979,2415 ,1,0,643860 ,2,14956,6920 ,2,822,54525 ,2,14975,592270 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241440 ,2,14979,402630 ,1,0,644170 ,2,14956,6920 ,2,822,54525 ,2,14975,592305 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241450 ,2,14979,402635 ,1,0,644475 ,2,14956,4490 ,2,822,41570 ,2,14975,592270 ,2,14976,142830 ,2,14977,142820 ,2,14965,45 ,2,14978,251185 ,2,14979,2415 ,1,0,644885 ,2,14956,6920 ,2,822,54515 ,2,14975,592315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241460 ,2,14979,402640 ,1,0,645675 ,2,14956,6920 ,2,822,54515 ,2,14975,592340 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241470 ,2,14979,402645 ,1,0,646510 ,2,14956,4490 ,2,822,41525 ,2,14975,592315 ,2,14976,142850 ,2,14977,142840 ,2,14965,45 ,2,14978,251200 ,2,14979,2415 ,1,0,646880 ,2,14956,6920 ,2,822,38855 ,2,14975,582590 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,241490 ,2,14979,402650 ,1,0,647200 ,2,14956,6920 ,2,822,54495 ,2,14975,592355 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241500 ,2,14979,402685 ,1,0,647495 ,2,14956,6920 ,2,822,54485 ,2,14975,592390 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241510 ,2,14979,402690 ,1,0,647790 ,2,14956,6920 ,2,822,54475 ,2,14975,592400 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241520 ,2,14979,402695 ,1,0,648090 ,2,14956,6920 ,2,822,54465 ,2,14975,592410 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241530 ,2,14979,402700 ,1,0,648485 ,2,14956,6920 ,2,822,54435 ,2,14975,592420 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241540 ,2,14979,402710 ,1,0,648760 ,2,14956,6920 ,2,822,54425 ,2,14975,592450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241550 ,2,14979,402715 ,1,0,649165 ,2,14956,6920 ,2,822,54415 ,2,14975,592460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241560 ,2,14979,402720 ,1,0,649390 ,2,14956,6920 ,2,822,54405 ,2,14975,592475 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241600 ,2,14979,402725 ,1,0,649640 ,2,14956,6920 ,2,822,54390 ,2,14975,592485 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241610 ,2,14979,402750 ,1,0,649935 ,2,14956,6920 ,2,822,54380 ,2,14975,592520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241620 ,2,14979,402755 ,1,0,650165 ,2,14956,6920 ,2,822,54380 ,2,14975,592530 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241630 ,2,14979,402760 ,1,0,650455 ,2,14956,4490 ,2,822,41260 ,2,14975,592520 ,2,14976,142870 ,2,14977,142860 ,2,14965,45 ,2,14978,251210 ,2,14979,2415 ,1,0,650660 ,2,14956,6920 ,2,822,54360 ,2,14975,592545 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241645 ,2,14979,402765 ,1,0,650975 ,2,14956,6920 ,2,822,54325 ,2,14975,592555 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241655 ,2,14979,402770 ,1,0,651190 ,2,14956,6920 ,2,822,54315 ,2,14975,592595 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241665 ,2,14979,402775 ,1,0,651745 ,2,14956,6920 ,2,822,54305 ,2,14975,592605 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241675 ,2,14979,402780 ,1,0,651950 ,2,14956,6920 ,2,822,54255 ,2,14975,592620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241715 ,2,14979,402785 ,1,0,652140 ,2,14956,6920 ,2,822,54255 ,2,14975,592630 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,241725 ,2,14979,402820 ,1,0,652330 ,2,14956,4490 ,2,822,41060 ,2,14975,592620 ,2,14976,142950 ,2,14977,142935 ,2,14965,45 ,2,14978,251220 ,2,14979,2415 ,1,0,652655 ,2,14956,6920 ,2,822,54200 ,2,14975,592640 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241735 ,2,14979,402825 ,1,0,652895 ,2,14956,6920 ,2,822,38855 ,2,14975,582590 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,241745 ,2,14979,402830 ,1,0,653195 ,2,14956,6920 ,2,822,54190 ,2,14975,592650 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241755 ,2,14979,402835 ,1,0,653435 ,2,14956,6920 ,2,822,54180 ,2,14975,583970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241765 ,2,14979,402840 ,1,0,653695 ,2,14956,6920 ,2,822,54170 ,2,14975,583960 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241775 ,2,14979,402845 ,1,0,653915 ,2,14956,6920 ,2,822,54155 ,2,14975,583950 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241785 ,2,14979,402850 ,1,0,654105 ,2,14956,6920 ,2,822,54145 ,2,14975,583940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241810 ,2,14979,402855 ,1,0,654355 ,2,14956,6920 ,2,822,54135 ,2,14975,583905 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241820 ,2,14979,402875 ,1,0,654625 ,2,14956,6920 ,2,822,54125 ,2,14975,583895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241830 ,2,14979,402880 ,1,0,654860 ,2,14956,6920 ,2,822,54095 ,2,14975,583885 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241840 ,2,14979,402885 ,1,0,655145 ,2,14956,6920 ,2,822,54085 ,2,14975,583875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241855 ,2,14979,402890 ,1,0,655380 ,2,14956,6920 ,2,822,54075 ,2,14975,583845 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241865 ,2,14979,402900 ,1,0,655670 ,2,14956,6920 ,2,822,54065 ,2,14975,583835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241875 ,2,14979,402905 ,1,0,655995 ,2,14956,6920 ,2,822,54050 ,2,14975,583815 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241885 ,2,14979,402910 ,1,0,656235 ,2,14956,6920 ,2,822,54040 ,2,14975,583805 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241915 ,2,14979,402915 ,1,0,656490 ,2,14956,6920 ,2,822,54030 ,2,14975,583775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241925 ,2,14979,402955 ,1,0,656720 ,2,14956,6920 ,2,822,54020 ,2,14975,583765 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241935 ,2,14979,402960 ,1,0,657020 ,2,14956,6920 ,2,822,53980 ,2,14975,583755 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241945 ,2,14979,402965 ,1,0,657265 ,2,14956,6920 ,2,822,53970 ,2,14975,583745 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241960 ,2,14979,402970 ,1,0,657505 ,2,14956,6920 ,2,822,53960 ,2,14975,583685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241970 ,2,14979,402980 ,1,0,657700 ,2,14956,6920 ,2,822,53950 ,2,14975,583675 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241980 ,2,14979,402985 ,1,0,657890 ,2,14956,6920 ,2,822,53930 ,2,14975,583665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,241990 ,2,14979,402990 ,1,0,658180 ,2,14956,6920 ,2,822,53920 ,2,14975,583655 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242020 ,2,14979,402995 ,1,0,658390 ,2,14956,6920 ,2,822,53910 ,2,14975,583630 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242030 ,2,14979,403015 ,1,0,658580 ,2,14956,6920 ,2,822,53900 ,2,14975,583620 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242040 ,2,14979,403020 ,1,0,658790 ,2,14956,6920 ,2,822,53865 ,2,14975,583610 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242050 ,2,14979,403025 ,1,0,659015 ,2,14956,6920 ,2,822,53855 ,2,14975,583600 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242065 ,2,14979,403030 ,1,0,659410 ,2,14956,6920 ,2,822,53845 ,2,14975,583570 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242075 ,2,14979,403040 ,1,0,659695 ,2,14956,6920 ,2,822,53835 ,2,14975,583560 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242085 ,2,14979,403045 ,1,0,659905 ,2,14956,6920 ,2,822,53820 ,2,14975,583550 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242095 ,2,14979,403050 ,1,0,660090 ,2,14956,6920 ,2,822,53810 ,2,14975,583540 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242130 ,2,14979,403055 ,1,0,660335 ,2,14956,6920 ,2,822,53800 ,2,14975,583520 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242140 ,2,14979,403075 ,1,0,660570 ,2,14956,6920 ,2,822,53790 ,2,14975,583510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242150 ,2,14979,403080 ,1,0,660825 ,2,14956,6920 ,2,822,53740 ,2,14975,583495 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242160 ,2,14979,403085 ,1,0,661065 ,2,14956,6920 ,2,822,53730 ,2,14975,583485 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242170 ,2,14979,403090 ,1,0,661345 ,2,14956,6920 ,2,822,53720 ,2,14975,583460 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242180 ,2,14979,403095 ,1,0,661670 ,2,14956,6920 ,2,822,53710 ,2,14975,583450 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242190 ,2,14979,403100 ,1,0,661855 ,2,14956,6920 ,2,822,53700 ,2,14975,583440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242200 ,2,14979,403105 ,1,0,662040 ,2,14956,6920 ,2,822,53690 ,2,14975,583430 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242240 ,2,14979,403110 ,1,0,662320 ,2,14956,6920 ,2,822,53680 ,2,14975,583390 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242250 ,2,14979,403130 ,1,0,662525 ,2,14956,6920 ,2,822,53670 ,2,14975,583380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242260 ,2,14979,403135 ,1,0,662820 ,2,14956,6920 ,2,822,53640 ,2,14975,583370 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242270 ,2,14979,403140 ,1,0,663085 ,2,14956,6920 ,2,822,53630 ,2,14975,583360 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242280 ,2,14979,403145 ,1,0,663285 ,2,14956,6920 ,2,822,53610 ,2,14975,583325 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242290 ,2,14979,403155 ,1,0,663475 ,2,14956,6920 ,2,822,53590 ,2,14975,593005 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242300 ,2,14979,403160 ,1,0,663715 ,2,14956,6920 ,2,822,53590 ,2,14975,593015 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242310 ,2,14979,403165 ,1,0,663960 ,2,14956,4490 ,2,822,39610 ,2,14975,593005 ,2,14976,142980 ,2,14977,142970 ,2,14965,45 ,2,14978,251230 ,2,14979,2415 ,1,0,664140 ,2,14956,6920 ,2,822,53580 ,2,14975,593035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242335 ,2,14979,403170 ,1,0,664330 ,2,14956,6920 ,2,822,53570 ,2,14975,593045 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242345 ,2,14979,403210 ,1,0,664750 ,2,14956,6920 ,2,822,53560 ,2,14975,593075 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242355 ,2,14979,403215 ,1,0,665160 ,2,14956,6920 ,2,822,53525 ,2,14975,593085 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242365 ,2,14979,403220 ,1,0,665400 ,2,14956,6920 ,2,822,53525 ,2,14975,593100 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242385 ,2,14979,403225 ,1,0,665570 ,2,14956,4490 ,2,822,39455 ,2,14975,593085 ,2,14976,143025 ,2,14977,143015 ,2,14965,45 ,2,14978,251270 ,2,14979,2415 ,1,0,665815 ,2,14956,6920 ,2,822,53515 ,2,14975,593110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242395 ,2,14979,403235 ,1,0,666080 ,2,14956,6920 ,2,822,53515 ,2,14975,593135 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242405 ,2,14979,403240 ,1,0,666395 ,2,14956,4490 ,2,822,39435 ,2,14975,593110 ,2,14976,143050 ,2,14977,143040 ,2,14965,45 ,2,14978,251280 ,2,14979,2415 ,1,0,666690 ,2,14956,6920 ,2,822,53495 ,2,14975,593145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242415 ,2,14979,403245 ,1,0,667015 ,2,14956,6920 ,2,822,53495 ,2,14975,593165 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242445 ,2,14979,403250 ,1,0,667330 ,2,14956,4490 ,2,822,39350 ,2,14975,593145 ,2,14976,143105 ,2,14977,143070 ,2,14965,45 ,2,14978,251290 ,2,14979,2415 ,1,0,667635 ,2,14956,6920 ,2,822,53485 ,2,14975,593175 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242455 ,2,14979,403280 ,1,0,667900 ,2,14956,6920 ,2,822,53485 ,2,14975,593205 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242465 ,2,14979,403285 ,1,0,668075 ,2,14956,4490 ,2,822,39330 ,2,14975,593175 ,2,14976,143125 ,2,14977,143115 ,2,14965,45 ,2,14978,251300 ,2,14979,2415 ,1,0,668315 ,2,14956,6920 ,2,822,53475 ,2,14975,593215 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242475 ,2,14979,403290 ,1,0,668490 ,2,14956,6920 ,2,822,53465 ,2,14975,593225 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242490 ,2,14979,403295 ,1,0,668780 ,2,14956,6920 ,2,822,53275 ,2,14975,593235 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242500 ,2,14979,403300 ,1,0,669080 ,2,14956,6920 ,2,822,53275 ,2,14975,593255 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242510 ,2,14979,403305 ,1,0,669525 ,2,14956,4490 ,2,822,39160 ,2,14975,593235 ,2,14976,143155 ,2,14977,143145 ,2,14965,45 ,2,14978,251315 ,2,14979,2415 ,1,0,669770 ,2,14956,6920 ,2,822,53265 ,2,14975,593265 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242520 ,2,14979,403310 ,1,0,669955 ,2,14956,6920 ,2,822,53265 ,2,14975,593275 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242560 ,2,14979,403315 ,1,0,670180 ,2,14956,4490 ,2,822,39085 ,2,14975,593265 ,2,14976,143175 ,2,14977,143165 ,2,14965,45 ,2,14978,251325 ,2,14979,2415 ,1,0,670490 ,2,14956,6920 ,2,822,53135 ,2,14975,593285 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242570 ,2,14979,403335 ,1,0,670705 ,2,14956,6920 ,2,822,53115 ,2,14975,593315 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242580 ,2,14979,403340 ,1,0,671075 ,2,14956,6920 ,2,822,53115 ,2,14975,593325 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242590 ,2,14979,403345 ,1,0,671300 ,2,14956,4490 ,2,822,38960 ,2,14975,593315 ,2,14976,143230 ,2,14977,143220 ,2,14965,45 ,2,14978,251335 ,2,14979,2415 ,1,0,671685 ,2,14956,6920 ,2,822,53095 ,2,14975,593340 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242600 ,2,14979,403350 ,1,0,671960 ,2,14956,6920 ,2,822,53095 ,2,14975,593350 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242610 ,2,14979,403355 ,1,0,672135 ,2,14956,4490 ,2,822,38940 ,2,14975,593340 ,2,14976,143280 ,2,14977,143270 ,2,14965,45 ,2,14978,251345 ,2,14979,2415 ,1,0,672610 ,2,14956,6920 ,2,822,53085 ,2,14975,593380 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242620 ,2,14979,403360 ,1,0,672910 ,2,14956,6920 ,2,822,53085 ,2,14975,593390 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242630 ,2,14979,403365 ,1,0,673255 ,2,14956,4490 ,2,822,38875 ,2,14975,593380 ,2,14976,143300 ,2,14977,143290 ,2,14965,45 ,2,14978,251385 ,2,14979,2415 ,1,0,673630 ,2,14956,6920 ,2,822,53045 ,2,14975,593400 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242650 ,2,14979,403370 ,1,0,673880 ,2,14956,6920 ,2,822,38655 ,2,14975,599880 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,242660 ,2,14979,403390 ,1,0,674160 ,2,14956,6920 ,2,822,38655 ,2,14975,599880 ,2,14976,143325 ,2,14977,23120 ,2,14965,45 ,2,14978,242670 ,2,14979,403395 ,1,0,674465 ,2,14956,6920 ,2,822,53010 ,2,14975,582665 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242680 ,2,14979,403400 ,1,0,674700 ,2,14956,6920 ,2,822,53010 ,2,14975,593435 ,2,14976,142615 ,2,14977,23360 ,2,14965,45 ,2,14978,242695 ,2,14979,403405 ,1,0,675015 ,2,14956,4490 ,2,822,38740 ,2,14975,582665 ,2,14976,143345 ,2,14977,143335 ,2,14965,45 ,2,14978,251395 ,2,14979,2415 ,1,0,135 ,2,14956,6920 ,2,822,38645 ,2,14975,592005 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242705 ,2,14979,403415 ,1,0,630 ,2,14956,6920 ,2,822,38645 ,2,14975,591995 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242715 ,2,14979,403425 ,1,0,1185 ,2,14956,13090 ,2,822,45355 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,242725 ,2,14979,403430 ,1,0,1705 ,2,14956,13090 ,2,822,45070 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,242750 ,2,14979,403475 ,1,0,2255 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242760 ,2,14979,403480 ,1,0,2555 ,2,14956,6920 ,2,822,45455 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242770 ,2,14979,403485 ,1,0,3200 ,2,14956,6920 ,2,822,29590 ,2,14975,593470 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,242780 ,2,14979,403490 ,1,0,3640 ,2,14956,6920 ,2,822,29590 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,242795 ,2,14979,403505 ,1,0,4250 ,2,14956,6920 ,2,822,29590 ,2,14975,568460 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,242805 ,2,14979,403510 ,1,0,4590 ,2,14956,6920 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242815 ,2,14979,403515 ,1,0,4915 ,2,14956,6920 ,2,822,22175 ,2,14975,593510 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242825 ,2,14979,403520 ,1,0,5565 ,2,14956,6920 ,2,822,27515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242865 ,2,14979,403530 ,1,0,6170 ,2,14956,6920 ,2,822,27470 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242875 ,2,14979,403535 ,1,0,6615 ,2,14956,6920 ,2,822,30780 ,2,14975,599870 ,2,14976,143400 ,2,14977,23120 ,2,14965,45 ,2,14978,242885 ,2,14979,403540 ,1,0,7070 ,2,14956,4490 ,2,822,30180 ,2,14975,110 ,2,14976,143445 ,2,14977,143435 ,2,14965,45 ,2,14978,251405 ,2,14979,2415 ,1,0,7490 ,2,14956,6920 ,2,822,30180 ,2,14975,600030 ,2,14976,143455 ,2,14977,23120 ,2,14965,45 ,2,14978,242895 ,2,14979,403545 ,1,0,7935 ,2,14956,6920 ,2,822,26185 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242910 ,2,14979,403550 ,1,0,8365 ,2,14956,6920 ,2,822,51830 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,242920 ,2,14979,403555 ,1,0,8790 ,2,14956,6920 ,2,822,29990 ,2,14975,573960 ,2,14976,143480 ,2,14977,23120 ,2,14965,45 ,2,14978,242930 ,2,14979,403565 ,1,0,9105 ,2,14956,6920 ,2,822,29990 ,2,14975,577485 ,2,14976,143490 ,2,14977,23120 ,2,14965,45 ,2,14978,242940 ,2,14979,403595 ,1,0,9415 ,2,14956,6920 ,2,822,29950 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242955 ,2,14979,403600 ,1,0,10250 ,2,14956,6920 ,2,822,29950 ,2,14975,600030 ,2,14976,143500 ,2,14977,23120 ,2,14965,45 ,2,14978,242965 ,2,14979,403605 ,1,0,10890 ,2,14956,6920 ,2,822,29950 ,2,14975,573960 ,2,14976,143500 ,2,14977,23120 ,2,14965,45 ,2,14978,242975 ,2,14979,403610 ,1,0,11435 ,2,14956,6920 ,2,822,32885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,242985 ,2,14979,403625 ,1,0,12100 ,2,14956,6920 ,2,822,32885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243000 ,2,14979,403630 ,1,0,12635 ,2,14956,6920 ,2,822,32885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243010 ,2,14979,403635 ,1,0,13055 ,2,14956,13090 ,2,822,31145 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243020 ,2,14979,403640 ,1,0,13475 ,2,14956,13090 ,2,822,21790 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243030 ,2,14979,403665 ,1,0,13800 ,2,14956,13090 ,2,822,32940 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243055 ,2,14979,403670 ,1,0,14120 ,2,14956,6920 ,2,822,32885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243065 ,2,14979,403675 ,1,0,14440 ,2,14956,6920 ,2,822,32885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243075 ,2,14979,403680 ,1,0,14970 ,2,14956,6920 ,2,822,31345 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243085 ,2,14979,403690 ,1,0,15410 ,2,14956,6920 ,2,822,31230 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,243095 ,2,14979,403695 ,1,0,15835 ,2,14956,6920 ,2,822,31250 ,2,14975,599870 ,2,14976,143600 ,2,14977,23120 ,2,14965,45 ,2,14978,243105 ,2,14979,403700 ,1,0,16250 ,2,14956,6920 ,2,822,31250 ,2,14975,599870 ,2,14976,143600 ,2,14977,23120 ,2,14965,45 ,2,14978,243115 ,2,14979,403750 ,1,0,16580 ,2,14956,6920 ,2,822,43960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243125 ,2,14979,417635 ,1,0,16905 ,2,14956,6920 ,2,822,43960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243170 ,2,14979,417640 ,1,0,17110 ,2,14956,6920 ,2,822,43960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243180 ,2,14979,417655 ,1,0,17740 ,2,14956,6920 ,2,822,43960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243190 ,2,14979,417660 ,1,0,18080 ,2,14956,6920 ,2,822,29510 ,2,14975,573370 ,2,14976,143610 ,2,14977,23120 ,2,14965,45 ,2,14978,243200 ,2,14979,403760 ,1,0,18955 ,2,14956,6920 ,2,822,43990 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243225 ,2,14979,403765 ,1,0,19385 ,2,14956,6920 ,2,822,43990 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243235 ,2,14979,403780 ,1,0,19785 ,2,14956,6920 ,2,822,43990 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243245 ,2,14979,403785 ,1,0,20345 ,2,14956,6920 ,2,822,43990 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243255 ,2,14979,403790 ,1,0,20870 ,2,14956,6920 ,2,822,43990 ,2,14975,600030 ,2,14976,26570 ,2,14977,23120 ,2,14965,45 ,2,14978,243280 ,2,14979,403795 ,1,0,21295 ,2,14956,6920 ,2,822,43990 ,2,14975,600030 ,2,14976,143620 ,2,14977,23120 ,2,14965,45 ,2,14978,243290 ,2,14979,403815 ,1,0,21725 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243300 ,2,14979,403820 ,1,0,22380 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243310 ,2,14979,403825 ,1,0,23040 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,243325 ,2,14979,403830 ,1,0,23510 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,243335 ,2,14979,403835 ,1,0,23930 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,243345 ,2,14979,403840 ,1,0,24385 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,243355 ,2,14979,403845 ,1,0,24830 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,243400 ,2,14979,403850 ,1,0,25410 ,2,14956,6920 ,2,822,28055 ,2,14975,600030 ,2,14976,76155 ,2,14977,23120 ,2,14965,45 ,2,14978,243410 ,2,14979,403875 ,1,0,25945 ,2,14956,6920 ,2,822,44575 ,2,14975,587745 ,2,14976,143650 ,2,14977,23120 ,2,14965,45 ,2,14978,243420 ,2,14979,403880 ,1,0,26480 ,2,14956,6920 ,2,822,38450 ,2,14975,593740 ,2,14976,143670 ,2,14977,24010 ,2,14965,45 ,2,14978,243430 ,2,14979,403885 ,1,0,27005 ,2,14956,6920 ,2,822,38450 ,2,14975,593740 ,2,14976,143670 ,2,14977,24010 ,2,14965,45 ,2,14978,243445 ,2,14979,403890 ,1,0,27445 ,2,14956,13090 ,2,822,29680 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243455 ,2,14979,403900 ,1,0,27875 ,2,14956,13090 ,2,822,29625 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243465 ,2,14979,403905 ,1,0,28325 ,2,14956,6920 ,2,822,27515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243475 ,2,14979,403910 ,1,0,28545 ,2,14956,6920 ,2,822,27515 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243515 ,2,14979,403940 ,1,0,29080 ,2,14956,6920 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243525 ,2,14979,403950 ,1,0,29545 ,2,14956,6920 ,2,822,28065 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243535 ,2,14979,403955 ,1,0,29875 ,2,14956,6920 ,2,822,28065 ,2,14975,599880 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243545 ,2,14979,403965 ,1,0,30725 ,2,14956,6920 ,2,822,27575 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243555 ,2,14979,403970 ,1,0,31170 ,2,14956,6920 ,2,822,27575 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243565 ,2,14979,417665 ,1,0,32010 ,2,14956,6920 ,2,822,46910 ,2,14975,593725 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,243575 ,2,14979,403975 ,1,0,32410 ,2,14956,6920 ,2,822,43420 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243585 ,2,14979,403980 ,1,0,33250 ,2,14956,6920 ,2,822,43420 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243625 ,2,14979,404020 ,1,0,33575 ,2,14956,6920 ,2,822,43420 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243635 ,2,14979,404025 ,1,0,34205 ,2,14956,6920 ,2,822,32750 ,2,14975,593820 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,243645 ,2,14979,404030 ,1,0,34595 ,2,14956,6920 ,2,822,25280 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,243655 ,2,14979,404035 ,1,0,34950 ,2,14956,6920 ,2,822,25535 ,2,14975,599870 ,2,14976,143770 ,2,14977,23120 ,2,14965,45 ,2,14978,243680 ,2,14979,404040 ,1,0,35310 ,2,14956,6920 ,2,822,25280 ,2,14975,600030 ,2,14976,55690 ,2,14977,23360 ,2,14965,45 ,2,14978,243690 ,2,14979,404045 ,1,0,35625 ,2,14956,6920 ,2,822,25280 ,2,14975,599870 ,2,14976,143780 ,2,14977,23120 ,2,14965,45 ,2,14978,243700 ,2,14979,404050 ,1,0,36490 ,2,14956,6920 ,2,822,35765 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,243710 ,2,14979,404065 ,1,0,36800 ,2,14956,6920 ,2,822,22670 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,243755 ,2,14979,404070 ,1,0,37120 ,2,14956,6920 ,2,822,27850 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243765 ,2,14979,417670 ,1,0,37430 ,2,14956,6920 ,2,822,44320 ,2,14975,568460 ,2,14976,141610 ,2,14977,23360 ,2,14965,45 ,2,14978,243775 ,2,14979,404075 ,1,0,37735 ,2,14956,6920 ,2,822,30430 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243785 ,2,14979,417675 ,1,0,38060 ,2,14956,13090 ,2,822,30430 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243800 ,2,14979,404080 ,1,0,38390 ,2,14956,325800 ,2,822,30360 ,2,14975,110 ,2,14976,143825 ,2,14977,23360 ,2,14965,45 ,2,14978,243810 ,2,14979,404085 ,1,0,38695 ,2,14956,13090 ,2,822,23885 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243820 ,2,14979,404090 ,1,0,39140 ,2,14956,6920 ,2,822,38010 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243830 ,2,14979,404095 ,1,0,39470 ,2,14956,3255 ,2,822,14500 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,40030 ,2,14956,6920 ,2,822,27685 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243870 ,2,14979,404100 ,1,0,40215 ,2,14956,6920 ,2,822,14720 ,2,14975,599975 ,2,14976,143880 ,2,14977,23360 ,2,14965,45 ,2,14978,243880 ,2,14979,404115 ,1,0,40580 ,2,14956,6920 ,2,822,16330 ,2,14975,600030 ,2,14976,143890 ,2,14977,23360 ,2,14965,45 ,2,14978,243890 ,2,14979,404120 ,1,0,41205 ,2,14956,325960 ,2,822,37270 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,243900 ,2,14979,404125 ,1,0,41845 ,2,14956,13090 ,2,822,45335 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,243915 ,2,14979,404140 ,1,0,42160 ,2,14956,6920 ,2,822,44225 ,2,14975,588170 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,243925 ,2,14979,404145 ,1,0,42700 ,2,14956,6920 ,2,822,44225 ,2,14975,591980 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,243935 ,2,14979,404175 ,1,0,43245 ,2,14956,6920 ,2,822,44225 ,2,14975,600030 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,243945 ,2,14979,404180 ,1,0,43560 ,2,14956,6920 ,2,822,44225 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243965 ,2,14979,404185 ,1,0,44560 ,2,14956,6920 ,2,822,44225 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243975 ,2,14979,404190 ,1,0,45105 ,2,14956,6920 ,2,822,44225 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,243985 ,2,14979,404195 ,1,0,45730 ,2,14956,6920 ,2,822,44225 ,2,14975,600030 ,2,14976,83025 ,2,14977,23120 ,2,14965,45 ,2,14978,243995 ,2,14979,404200 ,1,0,46135 ,2,14956,6920 ,2,822,44225 ,2,14975,587130 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,244010 ,2,14979,404205 ,1,0,46470 ,2,14956,13090 ,2,822,44225 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244020 ,2,14979,404210 ,1,0,46885 ,2,14956,6920 ,2,822,43210 ,2,14975,576430 ,2,14976,143970 ,2,14977,35615 ,2,14965,45 ,2,14978,244030 ,2,14979,404255 ,1,0,47300 ,2,14956,6920 ,2,822,43210 ,2,14975,594060 ,2,14976,143990 ,2,14977,23360 ,2,14965,45 ,2,14978,244040 ,2,14979,404260 ,1,0,47590 ,2,14956,6920 ,2,822,43210 ,2,14975,594070 ,2,14976,143990 ,2,14977,23360 ,2,14965,45 ,2,14978,244070 ,2,14979,404265 ,1,0,47920 ,2,14956,6920 ,2,822,43210 ,2,14975,594080 ,2,14976,143990 ,2,14977,23360 ,2,14965,45 ,2,14978,244080 ,2,14979,404270 ,1,0,48360 ,2,14956,6920 ,2,822,44520 ,2,14975,600030 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,244090 ,2,14979,404285 ,1,0,48660 ,2,14956,6920 ,2,822,44520 ,2,14975,594085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,244100 ,2,14979,404290 ,1,0,48980 ,2,14956,13090 ,2,822,44520 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244110 ,2,14979,404295 ,1,0,49480 ,2,14956,6920 ,2,822,44520 ,2,14975,594145 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,244120 ,2,14979,404300 ,1,0,50005 ,2,14956,6920 ,2,822,44520 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244130 ,2,14979,404330 ,1,0,50325 ,2,14956,6920 ,2,822,44520 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244140 ,2,14979,404335 ,1,0,50750 ,2,14956,6920 ,2,822,44975 ,2,14975,587405 ,2,14976,144095 ,2,14977,23120 ,2,14965,45 ,2,14978,244170 ,2,14979,404340 ,1,0,51280 ,2,14956,6920 ,2,822,44225 ,2,14975,588205 ,2,14976,82680 ,2,14977,23360 ,2,14965,45 ,2,14978,244180 ,2,14979,404345 ,1,0,51920 ,2,14956,13090 ,2,822,44225 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244190 ,2,14979,404350 ,1,0,52345 ,2,14956,6920 ,2,822,44225 ,2,14975,594145 ,2,14976,144135 ,2,14977,23120 ,2,14965,45 ,2,14978,244200 ,2,14979,404355 ,1,0,53030 ,2,14956,6920 ,2,822,44225 ,2,14975,587280 ,2,14976,142540 ,2,14977,23360 ,2,14965,45 ,2,14978,244215 ,2,14979,404360 ,1,0,53440 ,2,14956,6920 ,2,822,30010 ,2,14975,610040 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,244225 ,2,14979,404375 ,1,0,54110 ,2,14956,6920 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244235 ,2,14979,404380 ,1,0,55170 ,2,14956,6920 ,2,822,28065 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244245 ,2,14979,404385 ,1,0,55520 ,2,14956,6920 ,2,822,42985 ,2,14975,568460 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,244280 ,2,14979,404395 ,1,0,55835 ,2,14956,6920 ,2,822,29690 ,2,14975,599870 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,244290 ,2,14979,404400 ,1,0,56360 ,2,14956,6920 ,2,822,26205 ,2,14975,600030 ,2,14976,142415 ,2,14977,23120 ,2,14965,45 ,2,14978,244300 ,2,14979,404410 ,1,0,56885 ,2,14956,6920 ,2,822,25865 ,2,14975,594225 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,244310 ,2,14979,404425 ,1,0,57325 ,2,14956,6920 ,2,822,21705 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244320 ,2,14979,404440 ,1,0,58005 ,2,14956,13090 ,2,822,21705 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244330 ,2,14979,404455 ,1,0,58330 ,2,14956,6920 ,2,822,25535 ,2,14975,599870 ,2,14976,143770 ,2,14977,23120 ,2,14965,45 ,2,14978,244340 ,2,14979,404460 ,1,0,59035 ,2,14956,6920 ,2,822,52180 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,244350 ,2,14979,404470 ,1,0,59465 ,2,14956,6920 ,2,822,35590 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,244365 ,2,14979,404505 ,1,0,59785 ,2,14956,6920 ,2,822,51755 ,2,14975,599870 ,2,14976,57255 ,2,14977,23360 ,2,14965,45 ,2,14978,244375 ,2,14979,404510 ,1,0,59990 ,2,14956,6920 ,2,822,22910 ,2,14975,110 ,2,14976,29015 ,2,14977,23120 ,2,14965,45 ,2,14978,244385 ,2,14979,404515 ,1,0,60615 ,2,14956,6920 ,2,822,22900 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244395 ,2,14979,417680 ,1,0,61275 ,2,14956,6920 ,2,822,25280 ,2,14975,599870 ,2,14976,143770 ,2,14977,23120 ,2,14965,45 ,2,14978,244405 ,2,14979,404520 ,1,0,62320 ,2,14956,6920 ,2,822,28880 ,2,14975,600030 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,244415 ,2,14979,404540 ,1,0,62630 ,2,14956,6920 ,2,822,28880 ,2,14975,594330 ,2,14976,144295 ,2,14977,24010 ,2,14965,45 ,2,14978,244425 ,2,14979,404545 ,1,0,63165 ,2,14956,4490 ,2,822,28880 ,2,14975,594330 ,2,14976,144340 ,2,14977,144330 ,2,14965,45 ,2,14978,251415 ,2,14979,2415 ,1,0,64020 ,2,14956,4490 ,2,822,28880 ,2,14975,594330 ,2,14976,144315 ,2,14977,144305 ,2,14965,45 ,2,14978,251425 ,2,14979,2415 ,1,0,65440 ,2,14956,6920 ,2,822,28880 ,2,14975,594330 ,2,14976,144295 ,2,14977,24010 ,2,14965,45 ,2,14978,244435 ,2,14979,404550 ,1,0,66780 ,2,14956,6920 ,2,822,30645 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244465 ,2,14979,417685 ,1,0,67185 ,2,14956,4490 ,2,822,16285 ,2,14975,110 ,2,14976,144360 ,2,14977,144350 ,2,14965,45 ,2,14978,251435 ,2,14979,2415 ,1,0,67505 ,2,14956,6920 ,2,822,49940 ,2,14975,599880 ,2,14976,144390 ,2,14977,23120 ,2,14965,45 ,2,14978,244475 ,2,14979,404575 ,1,0,67930 ,2,14956,6920 ,2,822,29510 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244485 ,2,14979,417690 ,1,0,68355 ,2,14956,6920 ,2,822,29510 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244495 ,2,14979,417700 ,1,0,68750 ,2,14956,13090 ,2,822,29510 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244510 ,2,14979,404580 ,1,0,69065 ,2,14956,13090 ,2,822,43855 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244520 ,2,14979,404585 ,1,0,69570 ,2,14956,13090 ,2,822,43855 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244530 ,2,14979,404590 ,1,0,70110 ,2,14956,6920 ,2,822,43855 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244540 ,2,14979,417705 ,1,0,70395 ,2,14956,4490 ,2,822,31240 ,2,14975,110 ,2,14976,144505 ,2,14977,144470 ,2,14965,45 ,2,14978,251445 ,2,14979,2415 ,1,0,70710 ,2,14956,6920 ,2,822,43855 ,2,14975,599870 ,2,14976,144525 ,2,14977,23120 ,2,14965,45 ,2,14978,244585 ,2,14979,404600 ,1,0,71405 ,2,14956,313355 ,2,822,43855 ,2,14975,594365 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244595 ,2,14979,404605 ,1,0,71730 ,2,14956,4490 ,2,822,33490 ,2,14975,599870 ,2,14976,144575 ,2,14977,144565 ,2,14965,45 ,2,14978,251455 ,2,14979,2415 ,1,0,72355 ,2,14956,4490 ,2,822,33490 ,2,14975,594365 ,2,14976,144555 ,2,14977,144535 ,2,14965,45 ,2,14978,251480 ,2,14979,2415 ,1,0,72760 ,2,14956,6920 ,2,822,43855 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,244605 ,2,14979,404610 ,1,0,73275 ,2,14956,6920 ,2,822,30490 ,2,14975,599870 ,2,14976,143610 ,2,14977,23120 ,2,14965,45 ,2,14978,244615 ,2,14979,404615 ,1,0,73785 ,2,14956,6920 ,2,822,43855 ,2,14975,568460 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,244625 ,2,14979,404635 ,1,0,74205 ,2,14956,6920 ,2,822,38010 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244635 ,2,14979,404640 ,1,0,74600 ,2,14956,6920 ,2,822,38010 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244645 ,2,14979,404645 ,1,0,74905 ,2,14956,6920 ,2,822,38010 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244655 ,2,14979,404650 ,1,0,75220 ,2,14956,6920 ,2,822,55675 ,2,14975,599970 ,2,14976,144605 ,2,14977,23360 ,2,14965,45 ,2,14978,244690 ,2,14979,404655 ,1,0,75530 ,2,14956,171235 ,2,822,49175 ,2,14975,594455 ,2,14976,23075 ,2,14977,23065 ,2,14965,555515 ,2,14978,244700 ,2,14979,404660 ,1,0,75825 ,2,14956,171235 ,2,822,49175 ,2,14975,594455 ,2,14976,75 ,2,14977,75 ,2,14965,555515 ,2,14978,218185 ,2,14979,404665 ,1,0,76235 ,2,14956,4490 ,2,822,16455 ,2,14975,607280 ,2,14976,144625 ,2,14977,144615 ,2,14965,45 ,2,14978,251490 ,2,14979,2415 ,1,0,76565 ,2,14956,4490 ,2,822,16655 ,2,14975,607520 ,2,14976,144650 ,2,14977,144635 ,2,14965,45 ,2,14978,251500 ,2,14979,2415 ,1,0,76880 ,2,14956,6920 ,2,822,42180 ,2,14975,600030 ,2,14976,144660 ,2,14977,23120 ,2,14965,45 ,2,14978,244710 ,2,14979,404705 ,1,0,77400 ,2,14956,6920 ,2,822,42180 ,2,14975,600030 ,2,14976,144660 ,2,14977,23120 ,2,14965,45 ,2,14978,244720 ,2,14979,2415 ,1,0,77815 ,2,14956,6920 ,2,822,42180 ,2,14975,600030 ,2,14976,144660 ,2,14977,23120 ,2,14965,45 ,2,14978,244730 ,2,14979,404715 ,1,0,78135 ,2,14956,13090 ,2,822,44595 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244740 ,2,14979,404720 ,1,0,78915 ,2,14956,6920 ,2,822,29680 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244750 ,2,14979,417710 ,1,0,79330 ,2,14956,6920 ,2,822,24885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244760 ,2,14979,417715 ,1,0,79735 ,2,14956,6920 ,2,822,30430 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244805 ,2,14979,417745 ,1,0,80160 ,2,14956,6920 ,2,822,30450 ,2,14975,599870 ,2,14976,144715 ,2,14977,23120 ,2,14965,45 ,2,14978,244815 ,2,14979,404725 ,1,0,80475 ,2,14956,6920 ,2,822,29785 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,244825 ,2,14979,404730 ,1,0,80705 ,2,14956,6920 ,2,822,29785 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244835 ,2,14979,404735 ,1,0,81045 ,2,14956,6920 ,2,822,29785 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244850 ,2,14979,404750 ,1,0,81370 ,2,14956,328675 ,2,822,29785 ,2,14975,110 ,2,14976,44845 ,2,14977,23120 ,2,14965,45 ,2,14978,244860 ,2,14979,404755 ,1,0,81755 ,2,14956,6920 ,2,822,29680 ,2,14975,599870 ,2,14976,144735 ,2,14977,23120 ,2,14965,45 ,2,14978,244870 ,2,14979,404760 ,1,0,82300 ,2,14956,313355 ,2,822,29680 ,2,14975,594545 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244880 ,2,14979,404765 ,1,0,82625 ,2,14956,4490 ,2,822,29510 ,2,14975,599870 ,2,14976,144780 ,2,14977,144770 ,2,14965,45 ,2,14978,251510 ,2,14979,2415 ,1,0,82955 ,2,14956,4490 ,2,822,29510 ,2,14975,594545 ,2,14976,144760 ,2,14977,144745 ,2,14965,45 ,2,14978,251520 ,2,14979,2415 ,1,0,83280 ,2,14956,13090 ,2,822,44760 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244895 ,2,14979,404775 ,1,0,83690 ,2,14956,6920 ,2,822,33500 ,2,14975,599940 ,2,14976,144825 ,2,14977,23120 ,2,14965,45 ,2,14978,244905 ,2,14979,404780 ,1,0,84125 ,2,14956,4490 ,2,822,32535 ,2,14975,610315 ,2,14976,144845 ,2,14977,144835 ,2,14965,45 ,2,14978,251530 ,2,14979,2415 ,1,0,85165 ,2,14956,6920 ,2,822,31615 ,2,14975,575465 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,244915 ,2,14979,404785 ,1,0,85500 ,2,14956,13090 ,2,822,37970 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,244925 ,2,14979,404835 ,1,0,85970 ,2,14956,6920 ,2,822,36015 ,2,14975,600030 ,2,14976,144955 ,2,14977,23120 ,2,14965,45 ,2,14978,244945 ,2,14979,404840 ,1,0,87010 ,2,14956,6920 ,2,822,38040 ,2,14975,561435 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,244955 ,2,14979,404845 ,1,0,88525 ,2,14956,6920 ,2,822,33080 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,244965 ,2,14979,404855 ,1,0,89970 ,2,14956,6920 ,2,822,38040 ,2,14975,600030 ,2,14976,144980 ,2,14977,23360 ,2,14965,45 ,2,14978,244975 ,2,14979,404865 ,1,0,90400 ,2,14956,6920 ,2,822,38040 ,2,14975,600030 ,2,14976,144990 ,2,14977,23120 ,2,14965,45 ,2,14978,245030 ,2,14979,404870 ,1,0,92270 ,2,14956,6920 ,2,822,37970 ,2,14975,600030 ,2,14976,145050 ,2,14977,23120 ,2,14965,45 ,2,14978,245040 ,2,14979,404910 ,1,0,94150 ,2,14956,6920 ,2,822,37970 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245050 ,2,14979,404915 ,1,0,94575 ,2,14956,6920 ,2,822,37970 ,2,14975,600030 ,2,14976,145080 ,2,14977,23665 ,2,14965,45 ,2,14978,245060 ,2,14979,404920 ,1,0,94980 ,2,14956,178470 ,2,822,37970 ,2,14975,561335 ,2,14976,144980 ,2,14977,23360 ,2,14965,45 ,2,14978,245075 ,2,14979,404925 ,1,0,95435 ,2,14956,6920 ,2,822,21595 ,2,14975,594725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245085 ,2,14979,404935 ,1,0,95955 ,2,14956,6920 ,2,822,21595 ,2,14975,594725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245095 ,2,14979,404945 ,1,0,96280 ,2,14956,210655 ,2,822,21595 ,2,14975,110 ,2,14976,99475 ,2,14977,23360 ,2,14965,45 ,2,14978,245105 ,2,14979,404950 ,1,0,96585 ,2,14956,6920 ,2,822,21595 ,2,14975,594725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245145 ,2,14979,417750 ,1,0,97340 ,2,14956,6920 ,2,822,21595 ,2,14975,594725 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245155 ,2,14979,417755 ,1,0,97670 ,2,14956,13090 ,2,822,37935 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245165 ,2,14979,404960 ,1,0,98005 ,2,14956,6920 ,2,822,21705 ,2,14975,600030 ,2,14976,144980 ,2,14977,23360 ,2,14965,45 ,2,14978,245175 ,2,14979,404965 ,1,0,98555 ,2,14956,6920 ,2,822,37970 ,2,14975,565940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245195 ,2,14979,404970 ,1,0,99080 ,2,14956,6920 ,2,822,37970 ,2,14975,565940 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245205 ,2,14979,404975 ,1,0,99515 ,2,14956,6920 ,2,822,38020 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245215 ,2,14979,404985 ,1,0,100095 ,2,14956,6920 ,2,822,38020 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,245225 ,2,14979,404990 ,1,0,100435 ,2,14956,4490 ,2,822,21595 ,2,14975,110 ,2,14976,145170 ,2,14977,145160 ,2,14965,45 ,2,14978,251540 ,2,14979,2415 ,1,0,101285 ,2,14956,6920 ,2,822,21685 ,2,14975,599870 ,2,14976,145180 ,2,14977,23120 ,2,14965,45 ,2,14978,245245 ,2,14979,404995 ,1,0,101870 ,2,14956,6920 ,2,822,21685 ,2,14975,594740 ,2,14976,50160 ,2,14977,23120 ,2,14965,45 ,2,14978,245255 ,2,14979,405000 ,1,0,102210 ,2,14956,13090 ,2,822,37970 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245265 ,2,14979,405010 ,1,0,102640 ,2,14956,6920 ,2,822,37970 ,2,14975,594145 ,2,14976,145225 ,2,14977,24010 ,2,14965,45 ,2,14978,245275 ,2,14979,405015 ,1,0,102955 ,2,14956,6920 ,2,822,37970 ,2,14975,600030 ,2,14976,145235 ,2,14977,23360 ,2,14965,45 ,2,14978,245285 ,2,14979,405020 ,1,0,103285 ,2,14956,6920 ,2,822,30430 ,2,14975,600030 ,2,14976,141300 ,2,14977,23120 ,2,14965,45 ,2,14978,245295 ,2,14979,405040 ,1,0,103590 ,2,14956,6920 ,2,822,30430 ,2,14975,600030 ,2,14976,141300 ,2,14977,23120 ,2,14965,45 ,2,14978,245305 ,2,14979,405045 ,1,0,103950 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,145265 ,2,14977,23120 ,2,14965,45 ,2,14978,245315 ,2,14979,405090 ,1,0,104500 ,2,14956,6920 ,2,822,27950 ,2,14975,594810 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245350 ,2,14979,405095 ,1,0,104815 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,141505 ,2,14977,23120 ,2,14965,45 ,2,14978,245360 ,2,14979,405105 ,1,0,105380 ,2,14956,6920 ,2,822,27950 ,2,14975,594825 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245370 ,2,14979,405110 ,1,0,105910 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,142045 ,2,14977,23120 ,2,14965,45 ,2,14978,245380 ,2,14979,405120 ,1,0,106330 ,2,14956,6920 ,2,822,27950 ,2,14975,594830 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245390 ,2,14979,405125 ,1,0,106865 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,141530 ,2,14977,23120 ,2,14965,45 ,2,14978,245400 ,2,14979,405155 ,1,0,107325 ,2,14956,6920 ,2,822,27950 ,2,14975,594835 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245410 ,2,14979,405160 ,1,0,107765 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,145285 ,2,14977,23120 ,2,14965,45 ,2,14978,245420 ,2,14979,405175 ,1,0,108290 ,2,14956,6920 ,2,822,27950 ,2,14975,594850 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245460 ,2,14979,405180 ,1,0,108835 ,2,14956,6920 ,2,822,27950 ,2,14975,600030 ,2,14976,145295 ,2,14977,23120 ,2,14965,45 ,2,14978,245470 ,2,14979,405185 ,1,0,109385 ,2,14956,6920 ,2,822,27950 ,2,14975,578895 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245480 ,2,14979,405190 ,1,0,109920 ,2,14956,6920 ,2,822,30430 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245490 ,2,14979,417760 ,1,0,110470 ,2,14956,6920 ,2,822,52120 ,2,14975,568460 ,2,14976,145325 ,2,14977,23665 ,2,14965,45 ,2,14978,245505 ,2,14979,405225 ,1,0,111005 ,2,14956,329870 ,2,822,29380 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,245515 ,2,14979,405230 ,1,0,111455 ,2,14956,329880 ,2,822,29380 ,2,14975,110 ,2,14976,145335 ,2,14977,23360 ,2,14965,45 ,2,14978,245525 ,2,14979,405235 ,1,0,111985 ,2,14956,6920 ,2,822,25010 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245535 ,2,14979,417765 ,1,0,112520 ,2,14956,6920 ,2,822,29370 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245580 ,2,14979,405240 ,1,0,113060 ,2,14956,6920 ,2,822,24885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245590 ,2,14979,405250 ,1,0,113630 ,2,14956,6920 ,2,822,30500 ,2,14975,579970 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,245600 ,2,14979,405255 ,1,0,114080 ,2,14956,6920 ,2,822,29370 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245610 ,2,14979,417770 ,1,0,114655 ,2,14956,6920 ,2,822,24635 ,2,14975,599870 ,2,14976,145370 ,2,14977,23120 ,2,14965,45 ,2,14978,245620 ,2,14979,405265 ,1,0,115190 ,2,14956,6920 ,2,822,29680 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245630 ,2,14979,405295 ,1,0,115735 ,2,14956,6920 ,2,822,29440 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,245640 ,2,14979,405300 ,1,0,116050 ,2,14956,6920 ,2,822,25270 ,2,14975,599870 ,2,14976,143770 ,2,14977,23120 ,2,14965,45 ,2,14978,245650 ,2,14979,405305 ,1,0,116615 ,2,14956,330270 ,2,822,48365 ,2,14975,588040 ,2,14976,123495 ,2,14977,23120 ,2,14965,45 ,2,14978,245690 ,2,14979,405310 ,1,0,117140 ,2,14956,330270 ,2,822,48365 ,2,14975,588040 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,219255 ,2,14979,405320 ,1,0,117660 ,2,14956,330240 ,2,822,48365 ,2,14975,588090 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,219315 ,2,14979,405325 ,1,0,118190 ,2,14956,330240 ,2,822,48365 ,2,14975,588090 ,2,14976,123495 ,2,14977,23120 ,2,14965,45 ,2,14978,245700 ,2,14979,405330 ,1,0,118715 ,2,14956,13090 ,2,822,37765 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245710 ,2,14979,405335 ,1,0,119245 ,2,14956,13090 ,2,822,45060 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245720 ,2,14979,405360 ,1,0,119775 ,2,14956,13090 ,2,822,45335 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245740 ,2,14979,405365 ,1,0,120290 ,2,14956,6920 ,2,822,45375 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245750 ,2,14979,405370 ,1,0,120800 ,2,14956,6920 ,2,822,45375 ,2,14975,587095 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,245760 ,2,14979,405375 ,1,0,121345 ,2,14956,6920 ,2,822,45375 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245770 ,2,14979,405385 ,1,0,121890 ,2,14956,6920 ,2,822,45375 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,245805 ,2,14979,417775 ,1,0,122460 ,2,14956,13090 ,2,822,45375 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245815 ,2,14979,405390 ,1,0,122870 ,2,14956,6920 ,2,822,45150 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,245825 ,2,14979,405395 ,1,0,123360 ,2,14956,13090 ,2,822,45150 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245835 ,2,14979,405400 ,1,0,123910 ,2,14956,6920 ,2,822,45150 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,245850 ,2,14979,405405 ,1,0,124340 ,2,14956,6920 ,2,822,45150 ,2,14975,594945 ,2,14976,141300 ,2,14977,23120 ,2,14965,45 ,2,14978,245860 ,2,14979,405410 ,1,0,124750 ,2,14956,13090 ,2,822,45150 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245870 ,2,14979,405415 ,1,0,125300 ,2,14956,6920 ,2,822,45150 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,245880 ,2,14979,417780 ,1,0,125845 ,2,14956,330355 ,2,822,45150 ,2,14975,599870 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,245915 ,2,14979,405420 ,1,0,126390 ,2,14956,13090 ,2,822,45180 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245925 ,2,14979,405425 ,1,0,126910 ,2,14956,13090 ,2,822,37765 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245935 ,2,14979,405430 ,1,0,127455 ,2,14956,13090 ,2,822,37765 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245945 ,2,14979,405440 ,1,0,127995 ,2,14956,6920 ,2,822,45040 ,2,14975,587815 ,2,14976,145715 ,2,14977,23120 ,2,14965,45 ,2,14978,245955 ,2,14979,405485 ,1,0,128515 ,2,14956,13090 ,2,822,45060 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245965 ,2,14979,405490 ,1,0,129045 ,2,14956,6920 ,2,822,45335 ,2,14975,587875 ,2,14976,145745 ,2,14977,23120 ,2,14965,45 ,2,14978,245975 ,2,14979,405495 ,1,0,129580 ,2,14956,13090 ,2,822,45335 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,245985 ,2,14979,405500 ,1,0,130125 ,2,14956,6920 ,2,822,48385 ,2,14975,599870 ,2,14976,145860 ,2,14977,23120 ,2,14965,45 ,2,14978,246010 ,2,14979,405505 ,1,0,130525 ,2,14956,330935 ,2,822,48385 ,2,14975,595010 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,405510 ,1,0,131100 ,2,14956,330925 ,2,822,48375 ,2,14975,568030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,405515 ,1,0,131535 ,2,14956,6920 ,2,822,48405 ,2,14975,595055 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,246020 ,2,14979,405550 ,1,0,132040 ,2,14956,330990 ,2,822,48405 ,2,14975,595025 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,405555 ,1,0,132495 ,2,14956,6920 ,2,822,48405 ,2,14975,587345 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,246030 ,2,14979,405570 ,1,0,133020 ,2,14956,6920 ,2,822,49185 ,2,14975,600030 ,2,14976,146030 ,2,14977,23120 ,2,14965,45 ,2,14978,246040 ,2,14979,405575 ,1,0,133435 ,2,14956,178470 ,2,822,49185 ,2,14975,110 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,246050 ,2,14979,405580 ,1,0,133920 ,2,14956,13090 ,2,822,44635 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246060 ,2,14979,405585 ,1,0,134350 ,2,14956,331160 ,2,822,48425 ,2,14975,595070 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,45 ,2,14979,405600 ,1,0,134785 ,2,14956,6920 ,2,822,44635 ,2,14975,577485 ,2,14976,86310 ,2,14977,23120 ,2,14965,45 ,2,14978,246070 ,2,14979,405615 ,1,0,135325 ,2,14956,13090 ,2,822,44720 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246080 ,2,14979,405620 ,1,0,135870 ,2,14956,13090 ,2,822,44945 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246100 ,2,14979,405625 ,1,0,136295 ,2,14956,6920 ,2,822,44955 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,246110 ,2,14979,405630 ,1,0,136735 ,2,14956,6920 ,2,822,44955 ,2,14975,100 ,2,14976,146270 ,2,14977,23360 ,2,14965,45 ,2,14978,246120 ,2,14979,405635 ,1,0,137195 ,2,14956,6920 ,2,822,43325 ,2,14975,595085 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,246130 ,2,14979,405655 ,1,0,137730 ,2,14956,13090 ,2,822,45355 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246140 ,2,14979,405660 ,1,0,138280 ,2,14956,6920 ,2,822,44955 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,246150 ,2,14979,405665 ,1,0,138725 ,2,14956,6920 ,2,822,44955 ,2,14975,100 ,2,14976,146270 ,2,14977,23360 ,2,14965,45 ,2,14978,246160 ,2,14979,405670 ,1,0,139235 ,2,14956,13090 ,2,822,22015 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246170 ,2,14979,405675 ,1,0,139785 ,2,14956,13090 ,2,822,48215 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246220 ,2,14979,405680 ,1,0,140325 ,2,14956,13090 ,2,822,48215 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246230 ,2,14979,405685 ,1,0,140725 ,2,14956,13090 ,2,822,45070 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246240 ,2,14979,405690 ,1,0,141255 ,2,14956,6920 ,2,822,52090 ,2,14975,599870 ,2,14976,144715 ,2,14977,23120 ,2,14965,45 ,2,14978,246250 ,2,14979,405725 ,1,0,141775 ,2,14956,6920 ,2,822,52080 ,2,14975,599870 ,2,14976,144715 ,2,14977,23120 ,2,14965,45 ,2,14978,246260 ,2,14979,405730 ,1,0,142300 ,2,14956,331475 ,2,822,20745 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,246270 ,2,14979,405735 ,1,0,142700 ,2,14956,207780 ,2,822,22670 ,2,14975,110 ,2,14976,146445 ,2,14977,146435 ,2,14965,45 ,2,14978,246280 ,2,14979,2415 ,1,0,143200 ,2,14956,6920 ,2,822,30450 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246290 ,2,14979,405740 ,1,0,143755 ,2,14956,6920 ,2,822,52070 ,2,14975,599870 ,2,14976,144715 ,2,14977,23120 ,2,14965,45 ,2,14978,246315 ,2,14979,405760 ,1,0,144150 ,2,14956,6920 ,2,822,29510 ,2,14975,599870 ,2,14976,144735 ,2,14977,23120 ,2,14965,45 ,2,14978,246325 ,2,14979,405770 ,1,0,144690 ,2,14956,313355 ,2,822,29510 ,2,14975,594545 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246335 ,2,14979,405775 ,1,0,145255 ,2,14956,6920 ,2,822,24885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246345 ,2,14979,405810 ,1,0,145815 ,2,14956,6920 ,2,822,24885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246360 ,2,14979,405815 ,1,0,146360 ,2,14956,6920 ,2,822,25020 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,246370 ,2,14979,405820 ,1,0,146895 ,2,14956,6920 ,2,822,29510 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246380 ,2,14979,417790 ,1,0,147460 ,2,14956,6920 ,2,822,29510 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246390 ,2,14979,405825 ,1,0,147990 ,2,14956,6920 ,2,822,45375 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246420 ,2,14979,405835 ,1,0,148970 ,2,14956,6920 ,2,822,45375 ,2,14975,587095 ,2,14976,73430 ,2,14977,23120 ,2,14965,45 ,2,14978,246430 ,2,14979,405840 ,1,0,149295 ,2,14956,6920 ,2,822,45375 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246440 ,2,14979,405845 ,1,0,149840 ,2,14956,13090 ,2,822,45375 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,246450 ,2,14979,405850 ,1,0,150385 ,2,14956,6920 ,2,822,45375 ,2,14975,594145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246465 ,2,14979,405870 ,1,0,150820 ,2,14956,6920 ,2,822,33490 ,2,14975,599870 ,2,14976,144525 ,2,14977,23120 ,2,14965,45 ,2,14978,246475 ,2,14979,405880 ,1,0,151370 ,2,14956,313355 ,2,822,33490 ,2,14975,594365 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246485 ,2,14979,405885 ,1,0,151810 ,2,14956,4490 ,2,822,19555 ,2,14975,110 ,2,14976,146535 ,2,14977,146510 ,2,14965,45 ,2,14978,251550 ,2,14979,2415 ,1,0,152345 ,2,14956,4490 ,2,822,29680 ,2,14975,605955 ,2,14976,146555 ,2,14977,146545 ,2,14965,45 ,2,14978,251595 ,2,14979,2415 ,1,0,152790 ,2,14956,6920 ,2,822,33490 ,2,14975,595165 ,2,14976,146565 ,2,14977,23360 ,2,14965,45 ,2,14978,246495 ,2,14979,405900 ,1,0,153330 ,2,14956,6920 ,2,822,33490 ,2,14975,576285 ,2,14976,141835 ,2,14977,23360 ,2,14965,45 ,2,14978,246525 ,2,14979,405905 ,1,0,153835 ,2,14956,6920 ,2,822,33490 ,2,14975,595185 ,2,14976,146615 ,2,14977,23360 ,2,14965,556240 ,2,14978,246535 ,2,14979,405910 ,1,0,154400 ,2,14956,6920 ,2,822,38180 ,2,14975,581930 ,2,14976,146625 ,2,14977,23120 ,2,14965,45 ,2,14978,246545 ,2,14979,405915 ,1,0,154815 ,2,14956,6920 ,2,822,45915 ,2,14975,600030 ,2,14976,146690 ,2,14977,23360 ,2,14965,45 ,2,14978,246555 ,2,14979,405935 ,1,0,155245 ,2,14956,6920 ,2,822,45885 ,2,14975,600030 ,2,14976,146715 ,2,14977,23360 ,2,14965,45 ,2,14978,246565 ,2,14979,405940 ,1,0,155685 ,2,14956,6920 ,2,822,16940 ,2,14975,607965 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246575 ,2,14979,405945 ,1,0,156220 ,2,14956,6920 ,2,822,16940 ,2,14975,608015 ,2,14976,146725 ,2,14977,23120 ,2,14965,45 ,2,14978,246585 ,2,14979,405950 ,1,0,156735 ,2,14956,6920 ,2,822,16940 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246595 ,2,14979,405960 ,1,0,157275 ,2,14956,6920 ,2,822,16785 ,2,14975,607845 ,2,14976,146735 ,2,14977,23120 ,2,14965,45 ,2,14978,246625 ,2,14979,405965 ,1,0,157670 ,2,14956,6920 ,2,822,21105 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246635 ,2,14979,405970 ,1,0,158220 ,2,14956,6920 ,2,822,37300 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,246645 ,2,14979,405975 ,1,0,158725 ,2,14956,313355 ,2,822,37300 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246655 ,2,14979,406015 ,1,0,159260 ,2,14956,4490 ,2,822,20790 ,2,14975,599870 ,2,14976,146785 ,2,14977,146775 ,2,14965,45 ,2,14978,251605 ,2,14979,2415 ,1,0,159800 ,2,14956,4490 ,2,822,20790 ,2,14975,595295 ,2,14976,146765 ,2,14977,146755 ,2,14965,45 ,2,14978,251615 ,2,14979,2415 ,1,0,160325 ,2,14956,6920 ,2,822,37300 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,246670 ,2,14979,406020 ,1,0,160760 ,2,14956,313355 ,2,822,37300 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246680 ,2,14979,406025 ,1,0,161330 ,2,14956,6920 ,2,822,37300 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246690 ,2,14979,406030 ,1,0,161855 ,2,14956,6920 ,2,822,51245 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246700 ,2,14979,2415 ,1,0,162405 ,2,14956,6920 ,2,822,37300 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246730 ,2,14979,406055 ,1,0,162945 ,2,14956,6920 ,2,822,27390 ,2,14975,599880 ,2,14976,67165 ,2,14977,23120 ,2,14965,45 ,2,14978,246740 ,2,14979,406060 ,1,0,163480 ,2,14956,332905 ,2,822,23690 ,2,14975,599880 ,2,14976,146805 ,2,14977,24010 ,2,14965,45 ,2,14978,246750 ,2,14979,406065 ,1,0,164030 ,2,14956,6920 ,2,822,51710 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,246760 ,2,14979,406070 ,1,0,164460 ,2,14956,313355 ,2,822,51710 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246770 ,2,14979,406085 ,1,0,164980 ,2,14956,6920 ,2,822,51710 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246780 ,2,14979,406090 ,1,0,165520 ,2,14956,4490 ,2,822,15615 ,2,14975,606770 ,2,14976,146825 ,2,14977,146815 ,2,14965,45 ,2,14978,251625 ,2,14979,2415 ,1,0,166040 ,2,14956,6920 ,2,822,24580 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,246790 ,2,14979,417795 ,1,0,166575 ,2,14956,6920 ,2,822,24580 ,2,14975,599870 ,2,14976,142395 ,2,14977,23120 ,2,14965,45 ,2,14978,246800 ,2,14979,406095 ,1,0,167130 ,2,14956,6920 ,2,822,46150 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,246835 ,2,14979,406100 ,1,0,167690 ,2,14956,6920 ,2,822,46260 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,246845 ,2,14979,406105 ,1,0,168245 ,2,14956,6920 ,2,822,47925 ,2,14975,599970 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,246855 ,2,14979,406110 ,1,0,168815 ,2,14956,6920 ,2,822,47925 ,2,14975,599880 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,246865 ,2,14979,406115 ,1,0,169390 ,2,14956,6920 ,2,822,47925 ,2,14975,599880 ,2,14976,146850 ,2,14977,23120 ,2,14965,45 ,2,14978,246880 ,2,14979,406120 ,1,0,169950 ,2,14956,6920 ,2,822,47925 ,2,14975,599970 ,2,14976,146850 ,2,14977,23120 ,2,14965,45 ,2,14978,246890 ,2,14979,406140 ,1,0,170360 ,2,14956,6920 ,2,822,46310 ,2,14975,599880 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,246900 ,2,14979,406145 ,1,0,170915 ,2,14956,6920 ,2,822,47945 ,2,14975,590290 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,246910 ,2,14979,406150 ,1,0,171470 ,2,14956,6920 ,2,822,47945 ,2,14975,599870 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,246970 ,2,14979,406155 ,1,0,172005 ,2,14956,6920 ,2,822,47945 ,2,14975,599870 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,246980 ,2,14979,406165 ,1,0,172435 ,2,14956,6920 ,2,822,47945 ,2,14975,599880 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,246990 ,2,14979,406170 ,1,0,172865 ,2,14956,6920 ,2,822,47945 ,2,14975,599970 ,2,14976,146835 ,2,14977,23120 ,2,14965,45 ,2,14978,247000 ,2,14979,406175 ,1,0,173440 ,2,14956,6920 ,2,822,47965 ,2,14975,590440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247015 ,2,14979,406180 ,1,0,174025 ,2,14956,6920 ,2,822,55740 ,2,14975,600030 ,2,14976,146870 ,2,14977,23360 ,2,14965,45 ,2,14978,247025 ,2,14979,406205 ,1,0,174560 ,2,14956,6920 ,2,822,16340 ,2,14975,600030 ,2,14976,25335 ,2,14977,23360 ,2,14965,45 ,2,14978,247035 ,2,14979,406210 ,1,0,175125 ,2,14956,6920 ,2,822,19140 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247045 ,2,14979,406215 ,1,0,175650 ,2,14956,6920 ,2,822,19140 ,2,14975,600030 ,2,14976,146880 ,2,14977,23120 ,2,14965,45 ,2,14978,247080 ,2,14979,406220 ,1,0,176195 ,2,14956,6920 ,2,822,16785 ,2,14975,607815 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247090 ,2,14979,406225 ,1,0,176765 ,2,14956,6920 ,2,822,16785 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247100 ,2,14979,406230 ,1,0,177295 ,2,14956,6920 ,2,822,16840 ,2,14975,600030 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,247110 ,2,14979,406235 ,1,0,177640 ,2,14956,6920 ,2,822,49770 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247125 ,2,14979,406240 ,1,0,178200 ,2,14956,6920 ,2,822,49815 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,247135 ,2,14979,417800 ,1,0,178755 ,2,14956,337340 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247145 ,2,14979,406265 ,1,0,179285 ,2,14956,6920 ,2,822,46720 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247155 ,2,14979,406270 ,1,0,179835 ,2,14956,195925 ,2,822,19345 ,2,14975,110 ,2,14976,147085 ,2,14977,147075 ,2,14965,45 ,2,14978,247180 ,2,14979,2415 ,1,0,180155 ,2,14956,4490 ,2,822,16720 ,2,14975,110 ,2,14976,147105 ,2,14977,147095 ,2,14965,45 ,2,14978,251640 ,2,14979,2415 ,1,0,180890 ,2,14956,6920 ,2,822,48070 ,2,14975,600030 ,2,14976,25335 ,2,14977,23360 ,2,14965,45 ,2,14978,247190 ,2,14979,406280 ,1,0,181215 ,2,14956,6920 ,2,822,50875 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,247200 ,2,14979,406295 ,1,0,182095 ,2,14956,6920 ,2,822,19455 ,2,14975,595575 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,247210 ,2,14979,406300 ,1,0,182430 ,2,14956,6920 ,2,822,47925 ,2,14975,590430 ,2,14976,146850 ,2,14977,23120 ,2,14965,45 ,2,14978,247230 ,2,14979,406305 ,1,0,182750 ,2,14956,6920 ,2,822,47945 ,2,14975,590290 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247240 ,2,14979,406310 ,1,0,183175 ,2,14956,6920 ,2,822,47945 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247250 ,2,14979,406330 ,1,0,183510 ,2,14956,339155 ,2,822,47660 ,2,14975,590290 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,247260 ,2,14979,406335 ,1,0,184040 ,2,14956,6920 ,2,822,47660 ,2,14975,590290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247295 ,2,14979,406340 ,1,0,184475 ,2,14956,6920 ,2,822,47945 ,2,14975,590290 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247305 ,2,14979,406345 ,1,0,184935 ,2,14956,6920 ,2,822,47945 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247315 ,2,14979,406355 ,1,0,185260 ,2,14956,6920 ,2,822,47660 ,2,14975,590290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247325 ,2,14979,406360 ,1,0,185580 ,2,14956,6920 ,2,822,47945 ,2,14975,590290 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247335 ,2,14979,406365 ,1,0,185925 ,2,14956,6920 ,2,822,47945 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247345 ,2,14979,406370 ,1,0,186375 ,2,14956,6920 ,2,822,47925 ,2,14975,590440 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247355 ,2,14979,406405 ,1,0,186815 ,2,14956,6920 ,2,822,47925 ,2,14975,590440 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247365 ,2,14979,406410 ,1,0,187265 ,2,14956,6920 ,2,822,46160 ,2,14975,599880 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247410 ,2,14979,406415 ,1,0,187690 ,2,14956,6920 ,2,822,46150 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247420 ,2,14979,406420 ,1,0,188110 ,2,14956,6920 ,2,822,46150 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247430 ,2,14979,406430 ,1,0,188530 ,2,14956,6920 ,2,822,47660 ,2,14975,590290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247440 ,2,14979,406435 ,1,0,188970 ,2,14956,6920 ,2,822,47945 ,2,14975,590290 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247455 ,2,14979,406440 ,1,0,189505 ,2,14956,6920 ,2,822,47945 ,2,14975,599870 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247465 ,2,14979,406445 ,1,0,190060 ,2,14956,6920 ,2,822,47660 ,2,14975,590290 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247475 ,2,14979,406475 ,1,0,190480 ,2,14956,6920 ,2,822,47945 ,2,14975,590290 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247485 ,2,14979,406480 ,1,0,190820 ,2,14956,6920 ,2,822,47945 ,2,14975,590440 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247535 ,2,14979,406485 ,1,0,191140 ,2,14956,13090 ,2,822,48175 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247545 ,2,14979,406490 ,1,0,191705 ,2,14956,13090 ,2,822,48175 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247555 ,2,14979,406505 ,1,0,192025 ,2,14956,340195 ,2,822,24460 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,247565 ,2,14979,406510 ,1,0,192555 ,2,14956,6920 ,2,822,24460 ,2,14975,600030 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,247580 ,2,14979,406515 ,1,0,192975 ,2,14956,6920 ,2,822,24460 ,2,14975,600030 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,247590 ,2,14979,406520 ,1,0,193515 ,2,14956,6920 ,2,822,21800 ,2,14975,600030 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,247600 ,2,14979,406545 ,1,0,193820 ,2,14956,4490 ,2,822,16640 ,2,14975,607495 ,2,14976,147310 ,2,14977,147300 ,2,14965,45 ,2,14978,251650 ,2,14979,2415 ,1,0,194445 ,2,14956,6920 ,2,822,27400 ,2,14975,595680 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247610 ,2,14979,406550 ,1,0,194785 ,2,14956,6920 ,2,822,27400 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247635 ,2,14979,406560 ,1,0,195125 ,2,14956,6920 ,2,822,47410 ,2,14975,599970 ,2,14976,147365 ,2,14977,23360 ,2,14965,45 ,2,14978,247645 ,2,14979,406565 ,1,0,195455 ,2,14956,6920 ,2,822,22745 ,2,14975,599870 ,2,14976,147385 ,2,14977,23120 ,2,14965,45 ,2,14978,247655 ,2,14979,406575 ,1,0,196325 ,2,14956,313355 ,2,822,22745 ,2,14975,595710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247665 ,2,14979,406580 ,1,0,196655 ,2,14956,4490 ,2,822,22755 ,2,14975,599870 ,2,14976,147425 ,2,14977,147415 ,2,14965,45 ,2,14978,251660 ,2,14979,2415 ,1,0,197215 ,2,14956,4490 ,2,822,22755 ,2,14975,595710 ,2,14976,147405 ,2,14977,147395 ,2,14965,45 ,2,14978,251670 ,2,14979,2415 ,1,0,197760 ,2,14956,6920 ,2,822,22660 ,2,14975,566860 ,2,14976,147435 ,2,14977,23120 ,2,14965,45 ,2,14978,247675 ,2,14979,406610 ,1,0,198175 ,2,14956,6920 ,2,822,22660 ,2,14975,599870 ,2,14976,147385 ,2,14977,23120 ,2,14965,45 ,2,14978,247685 ,2,14979,406615 ,1,0,198500 ,2,14956,313355 ,2,822,22660 ,2,14975,595710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247695 ,2,14979,406620 ,1,0,198835 ,2,14956,6920 ,2,822,22755 ,2,14975,566860 ,2,14976,147435 ,2,14977,23120 ,2,14965,45 ,2,14978,247705 ,2,14979,406625 ,1,0,199575 ,2,14956,6920 ,2,822,22755 ,2,14975,599870 ,2,14976,147385 ,2,14977,23120 ,2,14965,45 ,2,14978,247740 ,2,14979,406640 ,1,0,199995 ,2,14956,313355 ,2,822,22755 ,2,14975,595710 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247750 ,2,14979,406645 ,1,0,200545 ,2,14956,6920 ,2,822,22975 ,2,14975,599870 ,2,14976,147515 ,2,14977,23120 ,2,14965,45 ,2,14978,247760 ,2,14979,406680 ,1,0,200865 ,2,14956,313355 ,2,822,22975 ,2,14975,595775 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247770 ,2,14979,406685 ,1,0,201190 ,2,14956,4490 ,2,822,22975 ,2,14975,599870 ,2,14976,147560 ,2,14977,147550 ,2,14965,45 ,2,14978,251715 ,2,14979,2415 ,1,0,201645 ,2,14956,4490 ,2,822,22975 ,2,14975,595775 ,2,14976,147540 ,2,14977,147530 ,2,14965,45 ,2,14978,251725 ,2,14979,2415 ,1,0,201980 ,2,14956,177360 ,2,822,49835 ,2,14975,100 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,247780 ,2,14979,406690 ,1,0,202640 ,2,14956,6920 ,2,822,18385 ,2,14975,599870 ,2,14976,147600 ,2,14977,23120 ,2,14965,45 ,2,14978,247790 ,2,14979,406700 ,1,0,203085 ,2,14956,313355 ,2,822,18385 ,2,14975,595820 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247800 ,2,14979,406705 ,1,0,203515 ,2,14956,4490 ,2,822,18385 ,2,14975,599870 ,2,14976,147640 ,2,14977,147630 ,2,14965,45 ,2,14978,251735 ,2,14979,2415 ,1,0,203840 ,2,14956,4490 ,2,822,18385 ,2,14975,595820 ,2,14976,147620 ,2,14977,147610 ,2,14965,45 ,2,14978,251745 ,2,14979,2415 ,1,0,204280 ,2,14956,6920 ,2,822,18385 ,2,14975,563015 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,247810 ,2,14979,406710 ,1,0,204590 ,2,14956,6920 ,2,822,50075 ,2,14975,110 ,2,14976,58950 ,2,14977,23120 ,2,14965,45 ,2,14978,247830 ,2,14979,406715 ,1,0,205050 ,2,14956,6920 ,2,822,22455 ,2,14975,599870 ,2,14976,147695 ,2,14977,23120 ,2,14965,45 ,2,14978,247840 ,2,14979,406725 ,1,0,205605 ,2,14956,313355 ,2,822,22455 ,2,14975,595875 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247850 ,2,14979,406730 ,1,0,205915 ,2,14956,4490 ,2,822,22455 ,2,14975,599870 ,2,14976,147735 ,2,14977,147725 ,2,14965,45 ,2,14978,251755 ,2,14979,2415 ,1,0,206460 ,2,14956,4490 ,2,822,22455 ,2,14975,595875 ,2,14976,147715 ,2,14977,147705 ,2,14965,45 ,2,14978,251765 ,2,14979,2415 ,1,0,206995 ,2,14956,6920 ,2,822,19140 ,2,14975,595900 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247860 ,2,14979,406735 ,1,0,207660 ,2,14956,6920 ,2,822,21435 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,247880 ,2,14979,406740 ,1,0,208270 ,2,14956,13090 ,2,822,36025 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247890 ,2,14979,406745 ,1,0,208910 ,2,14956,13090 ,2,822,36035 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247900 ,2,14979,406750 ,1,0,209235 ,2,14956,341285 ,2,822,48585 ,2,14975,595910 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264895 ,2,14979,2415 ,1,0,209670 ,2,14956,4490 ,2,822,48585 ,2,14975,595950 ,2,14976,147825 ,2,14977,147815 ,2,14965,556765 ,2,14978,251775 ,2,14979,2415 ,1,0,210080 ,2,14956,4490 ,2,822,48585 ,2,14975,595945 ,2,14976,147845 ,2,14977,147835 ,2,14965,45 ,2,14978,251785 ,2,14979,2415 ,1,0,210520 ,2,14956,13090 ,2,822,51300 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247910 ,2,14979,406755 ,1,0,210835 ,2,14956,6920 ,2,822,55995 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,247945 ,2,14979,406785 ,1,0,211480 ,2,14956,341710 ,2,822,55995 ,2,14975,110 ,2,14976,23130 ,2,14977,148030 ,2,14965,45 ,2,14978,45 ,2,14979,406800 ,1,0,211800 ,2,14956,341375 ,2,822,55995 ,2,14975,595965 ,2,14976,25600 ,2,14977,148040 ,2,14965,556775 ,2,14978,45 ,2,14979,406810 ,1,0,212455 ,2,14956,341385 ,2,822,55995 ,2,14975,595970 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,406815 ,1,0,212900 ,2,14956,341405 ,2,822,55995 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,148055 ,2,14979,406805 ,1,0,213240 ,2,14956,341425 ,2,822,55995 ,2,14975,595965 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,406820 ,1,0,213675 ,2,14956,13090 ,2,822,55995 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247955 ,2,14979,406845 ,1,0,214565 ,2,14956,341545 ,2,822,48610 ,2,14975,100 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,45 ,2,14979,406850 ,1,0,214890 ,2,14956,341595 ,2,822,21285 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247965 ,2,14979,406855 ,1,0,215770 ,2,14956,6920 ,2,822,21315 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247975 ,2,14979,406860 ,1,0,216175 ,2,14956,13090 ,2,822,42100 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,247985 ,2,14979,406885 ,1,0,216825 ,2,14956,6920 ,2,822,42100 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,247995 ,2,14979,406890 ,1,0,217370 ,2,14956,6920 ,2,822,42100 ,2,14975,594145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248005 ,2,14979,406915 ,1,0,217790 ,2,14956,13090 ,2,822,42100 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248015 ,2,14979,406920 ,1,0,218655 ,2,14956,167895 ,2,822,48620 ,2,14975,596015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,406935 ,1,0,218975 ,2,14956,198665 ,2,822,48620 ,2,14975,596015 ,2,14976,23075 ,2,14977,148235 ,2,14965,45 ,2,14978,45 ,2,14979,406940 ,1,0,219625 ,2,14956,341700 ,2,822,48620 ,2,14975,596015 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,406925 ,1,0,220150 ,2,14956,6920 ,2,822,42100 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,248040 ,2,14979,406945 ,1,0,220655 ,2,14956,6920 ,2,822,42100 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,248050 ,2,14979,406950 ,1,0,221220 ,2,14956,13090 ,2,822,42100 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248060 ,2,14979,406990 ,1,0,221845 ,2,14956,341820 ,2,822,56005 ,2,14975,595910 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264895 ,2,14979,406995 ,1,0,222265 ,2,14956,13090 ,2,822,51300 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248070 ,2,14979,407000 ,1,0,222915 ,2,14956,6920 ,2,822,51300 ,2,14975,594145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248080 ,2,14979,407005 ,1,0,223485 ,2,14956,6920 ,2,822,51300 ,2,14975,594145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248090 ,2,14979,407010 ,1,0,223930 ,2,14956,13090 ,2,822,51300 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248100 ,2,14979,407015 ,1,0,224490 ,2,14956,13090 ,2,822,51300 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248110 ,2,14979,407020 ,1,0,224800 ,2,14956,13090 ,2,822,51370 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248135 ,2,14979,407025 ,1,0,225105 ,2,14956,13090 ,2,822,51300 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248145 ,2,14979,407035 ,1,0,225420 ,2,14956,13090 ,2,822,21585 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248155 ,2,14979,407045 ,1,0,226065 ,2,14956,6920 ,2,822,49940 ,2,14975,600030 ,2,14976,148535 ,2,14977,23120 ,2,14965,45 ,2,14978,248165 ,2,14979,407050 ,1,0,226510 ,2,14956,4490 ,2,822,17690 ,2,14975,110 ,2,14976,148580 ,2,14977,148570 ,2,14965,45 ,2,14978,251810 ,2,14979,2415 ,1,0,227005 ,2,14956,6920 ,2,822,17690 ,2,14975,599880 ,2,14976,148590 ,2,14977,23120 ,2,14965,45 ,2,14978,248185 ,2,14979,407055 ,1,0,227565 ,2,14956,341925 ,2,822,48630 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,407065 ,1,0,227880 ,2,14956,341945 ,2,822,48630 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,407070 ,1,0,228220 ,2,14956,13090 ,2,822,21560 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248195 ,2,14979,407095 ,1,0,228635 ,2,14956,200320 ,2,822,48640 ,2,14975,110 ,2,14976,23130 ,2,14977,148620 ,2,14965,45 ,2,14978,45 ,2,14979,407100 ,1,0,229050 ,2,14956,3770 ,2,822,48640 ,2,14975,110 ,2,14976,23450 ,2,14977,148665 ,2,14965,45 ,2,14978,45 ,2,14979,407105 ,1,0,229440 ,2,14956,341980 ,2,822,48640 ,2,14975,596090 ,2,14976,23450 ,2,14977,148675 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,229770 ,2,14956,6920 ,2,822,24280 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248205 ,2,14979,407115 ,1,0,230635 ,2,14956,6920 ,2,822,24280 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248215 ,2,14979,407120 ,1,0,231090 ,2,14956,6920 ,2,822,23445 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,248255 ,2,14979,407160 ,1,0,231700 ,2,14956,6920 ,2,822,23425 ,2,14975,599870 ,2,14976,148725 ,2,14977,23120 ,2,14965,45 ,2,14978,248265 ,2,14979,407165 ,1,0,232160 ,2,14956,6920 ,2,822,23305 ,2,14975,599970 ,2,14976,148735 ,2,14977,23360 ,2,14965,45 ,2,14978,248275 ,2,14979,407170 ,1,0,232580 ,2,14956,6920 ,2,822,23445 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,248285 ,2,14979,407175 ,1,0,232880 ,2,14956,6920 ,2,822,23305 ,2,14975,599970 ,2,14976,148735 ,2,14977,23360 ,2,14965,45 ,2,14978,248295 ,2,14979,407180 ,1,0,233450 ,2,14956,6920 ,2,822,23445 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,248305 ,2,14979,407185 ,1,0,233750 ,2,14956,313355 ,2,822,23445 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248315 ,2,14979,407190 ,1,0,234055 ,2,14956,6920 ,2,822,23445 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248325 ,2,14979,407195 ,1,0,234390 ,2,14956,6920 ,2,822,23305 ,2,14975,599970 ,2,14976,148735 ,2,14977,23360 ,2,14965,45 ,2,14978,248360 ,2,14979,407205 ,1,0,234780 ,2,14956,6920 ,2,822,23885 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248370 ,2,14979,407210 ,1,0,235110 ,2,14956,6920 ,2,822,22765 ,2,14975,599870 ,2,14976,148770 ,2,14977,23120 ,2,14965,45 ,2,14978,248380 ,2,14979,407220 ,1,0,235425 ,2,14956,313355 ,2,822,22765 ,2,14975,596150 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248390 ,2,14979,407230 ,1,0,235775 ,2,14956,4490 ,2,822,22765 ,2,14975,599870 ,2,14976,148815 ,2,14977,148800 ,2,14965,45 ,2,14978,251820 ,2,14979,2415 ,1,0,236200 ,2,14956,4490 ,2,822,22765 ,2,14975,596150 ,2,14976,148790 ,2,14977,148780 ,2,14965,45 ,2,14978,251830 ,2,14979,2415 ,1,0,236515 ,2,14956,6920 ,2,822,23445 ,2,14975,600030 ,2,14976,55680 ,2,14977,23120 ,2,14965,45 ,2,14978,248400 ,2,14979,407235 ,1,0,237075 ,2,14956,4490 ,2,822,26955 ,2,14975,596165 ,2,14976,148845 ,2,14977,148835 ,2,14965,45 ,2,14978,251840 ,2,14979,2415 ,1,0,237385 ,2,14956,4490 ,2,822,26955 ,2,14975,599875 ,2,14976,148890 ,2,14977,148880 ,2,14965,45 ,2,14978,251870 ,2,14979,2415 ,1,0,237690 ,2,14956,6920 ,2,822,19610 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,248410 ,2,14979,407240 ,1,0,238110 ,2,14956,313355 ,2,822,19610 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248420 ,2,14979,407245 ,1,0,239285 ,2,14956,6920 ,2,822,19610 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248430 ,2,14979,407275 ,1,0,239725 ,2,14956,6920 ,2,822,22590 ,2,14975,599870 ,2,14976,148725 ,2,14977,23120 ,2,14965,45 ,2,14978,248475 ,2,14979,407280 ,1,0,240040 ,2,14956,6920 ,2,822,22685 ,2,14975,566855 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,248485 ,2,14979,407290 ,1,0,240775 ,2,14956,6920 ,2,822,22685 ,2,14975,599970 ,2,14976,148725 ,2,14977,23120 ,2,14965,45 ,2,14978,248495 ,2,14979,407300 ,1,0,241285 ,2,14956,342490 ,2,822,22685 ,2,14975,110 ,2,14976,34860 ,2,14977,23120 ,2,14965,45 ,2,14978,248505 ,2,14979,407305 ,1,0,241905 ,2,14956,6920 ,2,822,22685 ,2,14975,599970 ,2,14976,148920 ,2,14977,23360 ,2,14965,45 ,2,14978,248525 ,2,14979,407310 ,1,0,242430 ,2,14956,6920 ,2,822,22685 ,2,14975,566850 ,2,14976,148930 ,2,14977,23120 ,2,14965,45 ,2,14978,248535 ,2,14979,407315 ,1,0,242950 ,2,14956,6920 ,2,822,22680 ,2,14975,566850 ,2,14976,148930 ,2,14977,23120 ,2,14965,45 ,2,14978,248545 ,2,14979,407335 ,1,0,243155 ,2,14956,6920 ,2,822,22590 ,2,14975,566855 ,2,14976,148940 ,2,14977,23120 ,2,14965,45 ,2,14978,248555 ,2,14979,407340 ,1,0,243505 ,2,14956,6920 ,2,822,23425 ,2,14975,599970 ,2,14976,148920 ,2,14977,23360 ,2,14965,45 ,2,14978,248585 ,2,14979,407345 ,1,0,244455 ,2,14956,6920 ,2,822,23425 ,2,14975,599970 ,2,14976,148920 ,2,14977,23360 ,2,14965,45 ,2,14978,248595 ,2,14979,407360 ,1,0,245010 ,2,14956,6920 ,2,822,23425 ,2,14975,599870 ,2,14976,148725 ,2,14977,23120 ,2,14965,45 ,2,14978,248605 ,2,14979,407365 ,1,0,245795 ,2,14956,6920 ,2,822,23305 ,2,14975,599970 ,2,14976,148735 ,2,14977,23360 ,2,14965,45 ,2,14978,248615 ,2,14979,407370 ,1,0,247070 ,2,14956,6920 ,2,822,37330 ,2,14975,600030 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,248635 ,2,14979,407375 ,1,0,248240 ,2,14956,6920 ,2,822,24520 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248645 ,2,14979,407405 ,1,0,248580 ,2,14956,6920 ,2,822,21445 ,2,14975,600030 ,2,14976,97580 ,2,14977,23120 ,2,14965,45 ,2,14978,248655 ,2,14979,407410 ,1,0,249410 ,2,14956,6920 ,2,822,51660 ,2,14975,568125 ,2,14976,148950 ,2,14977,23120 ,2,14965,45 ,2,14978,248665 ,2,14979,407415 ,1,0,251135 ,2,14956,6920 ,2,822,24280 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248690 ,2,14979,407425 ,1,0,252775 ,2,14956,6920 ,2,822,24280 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,248700 ,2,14979,407430 ,1,0,253210 ,2,14956,13090 ,2,822,21790 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248710 ,2,14979,407435 ,1,0,253535 ,2,14956,6920 ,2,822,21790 ,2,14975,565100 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,248720 ,2,14979,407440 ,1,0,254160 ,2,14956,4490 ,2,822,21790 ,2,14975,566225 ,2,14976,149035 ,2,14977,149015 ,2,14965,45 ,2,14978,251880 ,2,14979,2415 ,1,0,254600 ,2,14956,6920 ,2,822,49710 ,2,14975,560355 ,2,14976,149045 ,2,14977,23120 ,2,14965,45 ,2,14978,248740 ,2,14979,407445 ,1,0,255020 ,2,14956,13090 ,2,822,34540 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248750 ,2,14979,407450 ,1,0,255535 ,2,14956,6920 ,2,822,16015 ,2,14975,596320 ,2,14976,34990 ,2,14977,23120 ,2,14965,45 ,2,14978,248760 ,2,14979,407455 ,1,0,255950 ,2,14956,4490 ,2,822,24560 ,2,14975,110 ,2,14976,149115 ,2,14977,149105 ,2,14965,45 ,2,14978,251890 ,2,14979,2415 ,1,0,256485 ,2,14956,13090 ,2,822,16485 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248770 ,2,14979,407470 ,1,0,256780 ,2,14956,13090 ,2,822,21005 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248790 ,2,14979,407475 ,1,0,257635 ,2,14956,13090 ,2,822,21005 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248800 ,2,14979,407480 ,1,0,258170 ,2,14956,6920 ,2,822,21005 ,2,14975,594145 ,2,14976,149250 ,2,14977,23360 ,2,14965,45 ,2,14978,248810 ,2,14979,407485 ,1,0,258795 ,2,14956,13090 ,2,822,22015 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248820 ,2,14979,407520 ,1,0,259335 ,2,14956,6920 ,2,822,22015 ,2,14975,565100 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,248835 ,2,14979,407525 ,1,0,259660 ,2,14956,13090 ,2,822,48685 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248845 ,2,14979,407530 ,1,0,260460 ,2,14956,175785 ,2,822,48685 ,2,14975,561335 ,2,14976,23075 ,2,14977,149340 ,2,14965,45 ,2,14978,45 ,2,14979,407535 ,1,0,260775 ,2,14956,13090 ,2,822,21445 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248855 ,2,14979,407545 ,1,0,261300 ,2,14956,13090 ,2,822,21445 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248865 ,2,14979,407550 ,1,0,261700 ,2,14956,6920 ,2,822,46785 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,248890 ,2,14979,407590 ,1,0,262015 ,2,14956,313355 ,2,822,46785 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248900 ,2,14979,407595 ,1,0,262330 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,149485 ,2,14977,149475 ,2,14965,45 ,2,14978,251900 ,2,14979,2415 ,1,0,262835 ,2,14956,6920 ,2,822,18285 ,2,14975,600030 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,248910 ,2,14979,407605 ,1,0,263355 ,2,14956,6920 ,2,822,21005 ,2,14975,600030 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,248920 ,2,14979,407615 ,1,0,263875 ,2,14956,13090 ,2,822,22015 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248930 ,2,14979,407620 ,1,0,264410 ,2,14956,13090 ,2,822,22025 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248940 ,2,14979,407625 ,1,0,264940 ,2,14956,13090 ,2,822,23885 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,248950 ,2,14979,407630 ,1,0,265595 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,248960 ,2,14979,407650 ,1,0,265975 ,2,14956,6920 ,2,822,24520 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,249000 ,2,14979,407655 ,1,0,266530 ,2,14956,313355 ,2,822,24520 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249010 ,2,14979,407660 ,1,0,267060 ,2,14956,6920 ,2,822,24520 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249020 ,2,14979,407665 ,1,0,267555 ,2,14956,340195 ,2,822,24460 ,2,14975,110 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,249030 ,2,14979,407670 ,1,0,268050 ,2,14956,6920 ,2,822,24460 ,2,14975,600030 ,2,14976,59010 ,2,14977,23120 ,2,14965,45 ,2,14978,249040 ,2,14979,407675 ,1,0,268655 ,2,14956,6920 ,2,822,37585 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249050 ,2,14979,407680 ,1,0,269060 ,2,14956,6920 ,2,822,37585 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249060 ,2,14979,407685 ,1,0,269570 ,2,14956,6920 ,2,822,21445 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249070 ,2,14979,407725 ,1,0,270190 ,2,14956,6920 ,2,822,16300 ,2,14975,600030 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,249100 ,2,14979,407730 ,1,0,270620 ,2,14956,4490 ,2,822,46675 ,2,14975,110 ,2,14976,149635 ,2,14977,149600 ,2,14965,45 ,2,14978,251935 ,2,14979,2415 ,1,0,271020 ,2,14956,6920 ,2,822,22175 ,2,14975,600030 ,2,14976,149645 ,2,14977,23360 ,2,14965,45 ,2,14978,249110 ,2,14979,407735 ,1,0,271535 ,2,14956,6920 ,2,822,51445 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,249120 ,2,14979,407740 ,1,0,272155 ,2,14956,313355 ,2,822,51445 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249130 ,2,14979,407750 ,1,0,272670 ,2,14956,6920 ,2,822,51445 ,2,14975,599870 ,2,14976,146745 ,2,14977,23120 ,2,14965,45 ,2,14978,249140 ,2,14979,407760 ,1,0,273205 ,2,14956,313355 ,2,822,51445 ,2,14975,595295 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249150 ,2,14979,407765 ,1,0,274440 ,2,14956,6920 ,2,822,51445 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249160 ,2,14979,407780 ,1,0,274945 ,2,14956,6920 ,2,822,51445 ,2,14975,589645 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249170 ,2,14979,407785 ,1,0,275575 ,2,14956,6920 ,2,822,20825 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249200 ,2,14979,407790 ,1,0,276200 ,2,14956,6920 ,2,822,51245 ,2,14975,600030 ,2,14976,149655 ,2,14977,23360 ,2,14965,45 ,2,14978,249210 ,2,14979,407805 ,1,0,276800 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,149675 ,2,14977,149665 ,2,14965,45 ,2,14978,251945 ,2,14979,2415 ,1,0,277275 ,2,14956,6920 ,2,822,51245 ,2,14975,600030 ,2,14976,47425 ,2,14977,23120 ,2,14965,45 ,2,14978,249220 ,2,14979,407810 ,1,0,277775 ,2,14956,13090 ,2,822,51245 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,249230 ,2,14979,407815 ,1,0,278290 ,2,14956,6920 ,2,822,51245 ,2,14975,594145 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249245 ,2,14979,407820 ,1,0,278770 ,2,14956,6920 ,2,822,51245 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249255 ,2,14979,407830 ,1,0,279370 ,2,14956,6920 ,2,822,51245 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249265 ,2,14979,407835 ,1,0,280200 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249275 ,2,14979,407840 ,1,0,281035 ,2,14956,13090 ,2,822,48705 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,249320 ,2,14979,407855 ,1,0,281630 ,2,14956,344110 ,2,822,48705 ,2,14975,561335 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,223630 ,2,14979,407860 ,1,0,282155 ,2,14956,344110 ,2,822,48705 ,2,14975,561335 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249330 ,2,14979,407865 ,1,0,282575 ,2,14956,4490 ,2,822,19445 ,2,14975,100 ,2,14976,149790 ,2,14977,149775 ,2,14965,45 ,2,14978,251955 ,2,14979,2415 ,1,0,283210 ,2,14956,4490 ,2,822,19445 ,2,14975,100 ,2,14976,149810 ,2,14977,149800 ,2,14965,45 ,2,14978,251965 ,2,14979,2415 ,1,0,284055 ,2,14956,6920 ,2,822,50905 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,249340 ,2,14979,407870 ,1,0,284675 ,2,14956,6920 ,2,822,50905 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,249350 ,2,14979,417805 ,1,0,285300 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249360 ,2,14979,407920 ,1,0,285615 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249370 ,2,14979,417810 ,1,0,286345 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249380 ,2,14979,417815 ,1,0,287095 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,249390 ,2,14979,407925 ,1,0,287815 ,2,14956,6920 ,2,822,46720 ,2,14975,600030 ,2,14976,32360 ,2,14977,23360 ,2,14965,45 ,2,14978,249425 ,2,14979,2415 ,1,0,288125 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,249435 ,2,14979,407930 ,1,0,288530 ,2,14956,6920 ,2,822,16960 ,2,14975,561110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,249445 ,2,14979,407935 ,1,0,288940 ,2,14956,4490 ,2,822,16970 ,2,14975,100 ,2,14976,149855 ,2,14977,149820 ,2,14965,45 ,2,14978,251980 ,2,14979,2415 ,1,0,289345 ,2,14956,178470 ,2,822,16960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249455 ,2,14979,407945 ,1,0,289655 ,2,14956,344275 ,2,822,16960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249465 ,2,14979,407950 ,1,0,290480 ,2,14956,344285 ,2,822,16960 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249475 ,2,14979,407955 ,1,0,290900 ,2,14956,6920 ,2,822,16960 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249485 ,2,14979,407960 ,1,0,291395 ,2,14956,344340 ,2,822,56015 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264905 ,2,14979,417820 ,1,0,291785 ,2,14956,344360 ,2,822,48715 ,2,14975,596555 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,417825 ,1,0,292310 ,2,14956,344375 ,2,822,48715 ,2,14975,599970 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264905 ,2,14979,407990 ,1,0,292720 ,2,14956,344460 ,2,822,48735 ,2,14975,600020 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,223905 ,2,14979,407995 ,1,0,293035 ,2,14956,344460 ,2,822,48735 ,2,14975,600020 ,2,14976,150060 ,2,14977,23360 ,2,14965,45 ,2,14978,249495 ,2,14979,408000 ,1,0,293865 ,2,14956,6920 ,2,822,19365 ,2,14975,596605 ,2,14976,150080 ,2,14977,23120 ,2,14965,45 ,2,14978,249510 ,2,14979,408005 ,1,0,294355 ,2,14956,6920 ,2,822,50165 ,2,14975,558990 ,2,14976,135945 ,2,14977,23120 ,2,14965,45 ,2,14978,249520 ,2,14979,408010 ,1,0,294755 ,2,14956,6920 ,2,822,50695 ,2,14975,562685 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249530 ,2,14979,408015 ,1,0,295170 ,2,14956,345675 ,2,822,18450 ,2,14975,599975 ,2,14976,150110 ,2,14977,23360 ,2,14965,45 ,2,14978,249540 ,2,14979,408020 ,1,0,295480 ,2,14956,4490 ,2,822,18450 ,2,14975,599975 ,2,14976,150100 ,2,14977,150090 ,2,14965,45 ,2,14978,251990 ,2,14979,2415 ,1,0,296420 ,2,14956,189760 ,2,822,18450 ,2,14975,110 ,2,14976,150145 ,2,14977,23360 ,2,14965,45 ,2,14978,249555 ,2,14979,408025 ,1,0,296850 ,2,14956,4490 ,2,822,18450 ,2,14975,110 ,2,14976,150135 ,2,14977,150125 ,2,14965,45 ,2,14978,252000 ,2,14979,2415 ,1,0,297250 ,2,14956,6920 ,2,822,18460 ,2,14975,599885 ,2,14976,25480 ,2,14977,23120 ,2,14965,45 ,2,14978,249565 ,2,14979,408045 ,1,0,297560 ,2,14956,4490 ,2,822,15125 ,2,14975,599885 ,2,14976,150190 ,2,14977,150155 ,2,14965,45 ,2,14978,252010 ,2,14979,2415 ,1,0,297875 ,2,14956,6920 ,2,822,50040 ,2,14975,600030 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,249575 ,2,14979,408055 ,1,0,298380 ,2,14956,6920 ,2,822,50040 ,2,14975,600030 ,2,14976,34980 ,2,14977,23120 ,2,14965,45 ,2,14978,249585 ,2,14979,408060 ,1,0,298705 ,2,14956,6920 ,2,822,50040 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249630 ,2,14979,408075 ,1,0,299955 ,2,14956,6920 ,2,822,49770 ,2,14975,600030 ,2,14976,150220 ,2,14977,23665 ,2,14965,45 ,2,14978,249640 ,2,14979,408080 ,1,0,300390 ,2,14956,4490 ,2,822,16720 ,2,14975,608195 ,2,14976,150245 ,2,14977,150235 ,2,14965,45 ,2,14978,252065 ,2,14979,2415 ,1,0,301050 ,2,14956,4490 ,2,822,16285 ,2,14975,100 ,2,14976,150265 ,2,14977,150255 ,2,14965,45 ,2,14978,252075 ,2,14979,2415 ,1,0,301360 ,2,14956,4490 ,2,822,16285 ,2,14975,100 ,2,14976,150310 ,2,14977,150300 ,2,14965,45 ,2,14978,252085 ,2,14979,2415 ,1,0,301780 ,2,14956,6920 ,2,822,50040 ,2,14975,600030 ,2,14976,150320 ,2,14977,23360 ,2,14965,45 ,2,14978,249650 ,2,14979,408085 ,1,0,302220 ,2,14956,6920 ,2,822,50040 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249660 ,2,14979,408125 ,1,0,302660 ,2,14956,6920 ,2,822,50040 ,2,14975,600030 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,249680 ,2,14979,408130 ,1,0,302985 ,2,14956,347260 ,2,822,49835 ,2,14975,110 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,150330 ,2,14979,408135 ,1,0,303830 ,2,14956,184135 ,2,822,48820 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,304050 ,2,14956,347440 ,2,822,48905 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,304450 ,2,14956,184135 ,2,822,48905 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,304920 ,2,14956,347475 ,2,822,48930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,305330 ,2,14956,347485 ,2,822,48930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,305745 ,2,14956,347500 ,2,822,48930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,306150 ,2,14956,184135 ,2,822,48930 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,306485 ,2,14956,347635 ,2,822,56025 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264915 ,2,14979,417845 ,1,0,307200 ,2,14956,347665 ,2,822,56055 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264960 ,2,14979,417850 ,1,0,307625 ,2,14956,347700 ,2,822,56065 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264970 ,2,14979,417855 ,1,0,308030 ,2,14956,347740 ,2,822,56075 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,264990 ,2,14979,417860 ,1,0,308355 ,2,14956,347760 ,2,822,56085 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,265000 ,2,14979,417865 ,1,0,308580 ,2,14956,347805 ,2,822,56095 ,2,14975,599875 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,265010 ,2,14979,417870 ,1,0,308995 ,2,14956,347825 ,2,822,56105 ,2,14975,599885 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,265020 ,2,14979,417875 ,1,0,309325 ,2,14956,347845 ,2,822,56115 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,265045 ,2,14979,417880 ,1,0,309740 ,2,14956,5730 ,2,822,49095 ,2,14975,599975 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,151395 ,2,14979,408140 ,1,0,310155 ,2,14956,4490 ,2,822,49145 ,2,14975,110 ,2,14976,151980 ,2,14977,151965 ,2,14965,45 ,2,14978,252095 ,2,14979,2415 ,1,0,310575 ,2,14956,348610 ,2,822,49155 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265065 ,2,14979,417915 ,1,0,311000 ,2,14956,348620 ,2,822,49155 ,2,14975,600035 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265065 ,2,14979,417920 ,1,0,311460 ,2,14956,4490 ,2,822,43865 ,2,14975,597170 ,2,14976,152060 ,2,14977,152050 ,2,14965,557565 ,2,14978,252110 ,2,14979,2415 ,1,0,312015 ,2,14956,4490 ,2,822,14800 ,2,14975,597205 ,2,14976,152085 ,2,14977,152070 ,2,14965,557580 ,2,14978,252120 ,2,14979,2415 ,1,0,312360 ,2,14956,4490 ,2,822,45755 ,2,14975,611505 ,2,14976,152115 ,2,14977,152105 ,2,14965,45 ,2,14978,252130 ,2,14979,2415 ,1,0,313220 ,2,14956,4490 ,2,822,34115 ,2,14975,110 ,2,14976,152165 ,2,14977,152155 ,2,14965,45 ,2,14978,252140 ,2,14979,2415 ,1,0,313650 ,2,14956,4490 ,2,822,14730 ,2,14975,110 ,2,14976,152185 ,2,14977,152175 ,2,14965,45 ,2,14978,252160 ,2,14979,2415 ,1,0,313960 ,2,14956,4490 ,2,822,16920 ,2,14975,560665 ,2,14976,152210 ,2,14977,152200 ,2,14965,45 ,2,14978,252170 ,2,14979,2415 ,1,0,314280 ,2,14956,4490 ,2,822,23080 ,2,14975,599875 ,2,14976,152230 ,2,14977,152220 ,2,14965,45 ,2,14978,252180 ,2,14979,2415 ,1,0,314700 ,2,14956,4490 ,2,822,22015 ,2,14975,577485 ,2,14976,152265 ,2,14977,152255 ,2,14965,45 ,2,14978,252190 ,2,14979,2415 ,1,0,315095 ,2,14956,4490 ,2,822,45755 ,2,14975,110 ,2,14976,152285 ,2,14977,152275 ,2,14965,45 ,2,14978,252200 ,2,14979,2415 ,1,0,315585 ,2,14956,4490 ,2,822,36855 ,2,14975,599970 ,2,14976,152310 ,2,14977,152300 ,2,14965,45 ,2,14978,252210 ,2,14979,2415 ,1,0,316085 ,2,14956,4490 ,2,822,43110 ,2,14975,599870 ,2,14976,152330 ,2,14977,152320 ,2,14965,45 ,2,14978,252220 ,2,14979,2415 ,1,0,316635 ,2,14956,4490 ,2,822,38315 ,2,14975,110 ,2,14976,152385 ,2,14977,152375 ,2,14965,45 ,2,14978,252230 ,2,14979,2415 ,1,0,317135 ,2,14956,4490 ,2,822,15015 ,2,14975,599945 ,2,14976,152405 ,2,14977,152395 ,2,14965,45 ,2,14978,252260 ,2,14979,2415 ,1,0,317455 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,152435 ,2,14977,152425 ,2,14965,45 ,2,14978,252270 ,2,14979,2415 ,1,0,318315 ,2,14956,4490 ,2,822,33480 ,2,14975,573440 ,2,14976,152455 ,2,14977,152445 ,2,14965,45 ,2,14978,252280 ,2,14979,2415 ,1,0,318845 ,2,14956,4490 ,2,822,33520 ,2,14975,599940 ,2,14976,152485 ,2,14977,152475 ,2,14965,45 ,2,14978,252290 ,2,14979,2415 ,1,0,319140 ,2,14956,4490 ,2,822,16720 ,2,14975,100 ,2,14976,152505 ,2,14977,152495 ,2,14965,45 ,2,14978,252305 ,2,14979,2415 ,1,0,319455 ,2,14956,4490 ,2,822,16550 ,2,14975,607395 ,2,14976,152525 ,2,14977,152515 ,2,14965,45 ,2,14978,252315 ,2,14979,2415 ,1,0,319760 ,2,14956,4490 ,2,822,32895 ,2,14975,599870 ,2,14976,152545 ,2,14977,152535 ,2,14965,45 ,2,14978,252325 ,2,14979,2415 ,1,0,320085 ,2,14956,4490 ,2,822,16960 ,2,14975,595905 ,2,14976,152600 ,2,14977,152590 ,2,14965,45 ,2,14978,252335 ,2,14979,2415 ,1,0,320305 ,2,14956,4490 ,2,822,37505 ,2,14975,599970 ,2,14976,152620 ,2,14977,152610 ,2,14965,45 ,2,14978,252380 ,2,14979,2415 ,1,0,320810 ,2,14956,4490 ,2,822,14730 ,2,14975,599875 ,2,14976,152645 ,2,14977,152635 ,2,14965,45 ,2,14978,252390 ,2,14979,2415 ,1,0,321320 ,2,14956,4490 ,2,822,21595 ,2,14975,565940 ,2,14976,152665 ,2,14977,152655 ,2,14965,45 ,2,14978,252400 ,2,14979,2415 ,1,0,321735 ,2,14956,4490 ,2,822,29260 ,2,14975,599975 ,2,14976,152720 ,2,14977,152710 ,2,14965,45 ,2,14978,252410 ,2,14979,2415 ,1,0,322505 ,2,14956,4490 ,2,822,14490 ,2,14975,100 ,2,14976,152740 ,2,14977,152730 ,2,14965,45 ,2,14978,252420 ,2,14979,2415 ,1,0,323105 ,2,14956,4490 ,2,822,16920 ,2,14975,612195 ,2,14976,152780 ,2,14977,152770 ,2,14965,45 ,2,14978,252430 ,2,14979,2415 ,1,0,323540 ,2,14956,4490 ,2,822,16920 ,2,14975,597450 ,2,14976,152760 ,2,14977,152750 ,2,14965,557610 ,2,14978,252440 ,2,14979,2415 ,1,0,323955 ,2,14956,4490 ,2,822,16920 ,2,14975,612210 ,2,14976,152835 ,2,14977,152825 ,2,14965,45 ,2,14978,252450 ,2,14979,2415 ,1,0,324365 ,2,14956,4490 ,2,822,16920 ,2,14975,612210 ,2,14976,152815 ,2,14977,152805 ,2,14965,557615 ,2,14978,252480 ,2,14979,2415 ,1,0,324785 ,2,14956,4490 ,2,822,16920 ,2,14975,110 ,2,14976,152860 ,2,14977,152850 ,2,14965,45 ,2,14978,252490 ,2,14979,2415 ,1,0,325200 ,2,14956,4490 ,2,822,20745 ,2,14975,597465 ,2,14976,152880 ,2,14977,152870 ,2,14965,45 ,2,14978,252500 ,2,14979,2415 ,1,0,325500 ,2,14956,4490 ,2,822,15565 ,2,14975,599875 ,2,14976,152925 ,2,14977,152915 ,2,14965,45 ,2,14978,252510 ,2,14979,2415 ,1,0,325915 ,2,14956,4490 ,2,822,37970 ,2,14975,110 ,2,14976,152945 ,2,14977,152935 ,2,14965,45 ,2,14978,252520 ,2,14979,2415 ,1,0,326415 ,2,14956,4490 ,2,822,31250 ,2,14975,599870 ,2,14976,152965 ,2,14977,152955 ,2,14965,45 ,2,14978,252530 ,2,14979,2415 ,1,0,326845 ,2,14956,4490 ,2,822,16820 ,2,14975,599875 ,2,14976,152985 ,2,14977,152975 ,2,14965,45 ,2,14978,252540 ,2,14979,2415 ,1,0,327460 ,2,14956,4490 ,2,822,33705 ,2,14975,110 ,2,14976,153035 ,2,14977,153025 ,2,14965,45 ,2,14978,252550 ,2,14979,2415 ,1,0,328840 ,2,14956,4490 ,2,822,47315 ,2,14975,110 ,2,14976,153055 ,2,14977,153045 ,2,14965,45 ,2,14978,252580 ,2,14979,2415 ,1,0,329400 ,2,14956,4490 ,2,822,39150 ,2,14975,599975 ,2,14976,153080 ,2,14977,153070 ,2,14965,45 ,2,14978,252590 ,2,14979,2415 ,1,0,330880 ,2,14956,4490 ,2,822,28065 ,2,14975,110 ,2,14976,153100 ,2,14977,153090 ,2,14965,45 ,2,14978,252600 ,2,14979,2415 ,1,0,331295 ,2,14956,4490 ,2,822,43110 ,2,14975,599880 ,2,14976,153120 ,2,14977,153110 ,2,14965,45 ,2,14978,252610 ,2,14979,2415 ,1,0,331715 ,2,14956,4490 ,2,822,14675 ,2,14975,606685 ,2,14976,153140 ,2,14977,153130 ,2,14965,45 ,2,14978,252620 ,2,14979,2415 ,1,0,332380 ,2,14956,4490 ,2,822,21105 ,2,14975,110 ,2,14976,153170 ,2,14977,153160 ,2,14965,45 ,2,14978,252630 ,2,14979,2415 ,1,0,332810 ,2,14956,4490 ,2,822,22590 ,2,14975,599870 ,2,14976,153190 ,2,14977,153180 ,2,14965,45 ,2,14978,252640 ,2,14979,2415 ,1,0,333135 ,2,14956,4490 ,2,822,19150 ,2,14975,110 ,2,14976,153235 ,2,14977,153225 ,2,14965,45 ,2,14978,252650 ,2,14979,2415 ,1,0,333485 ,2,14956,4490 ,2,822,21255 ,2,14975,110 ,2,14976,153255 ,2,14977,153245 ,2,14965,45 ,2,14978,252680 ,2,14979,2415 ,1,0,333930 ,2,14956,4490 ,2,822,48595 ,2,14975,110 ,2,14976,153285 ,2,14977,153275 ,2,14965,45 ,2,14978,252690 ,2,14979,2415 ,1,0,334255 ,2,14956,4490 ,2,822,21325 ,2,14975,110 ,2,14976,153305 ,2,14977,153295 ,2,14965,45 ,2,14978,252700 ,2,14979,2415 ,1,0,334580 ,2,14956,4490 ,2,822,21265 ,2,14975,110 ,2,14976,153365 ,2,14977,153355 ,2,14965,45 ,2,14978,252710 ,2,14979,2415 ,1,0,334995 ,2,14956,4490 ,2,822,16920 ,2,14975,110 ,2,14976,153385 ,2,14977,153375 ,2,14965,45 ,2,14978,252725 ,2,14979,2415 ,1,0,335570 ,2,14956,4490 ,2,822,32895 ,2,14975,110 ,2,14976,153410 ,2,14977,153400 ,2,14965,45 ,2,14978,252735 ,2,14979,2415 ,1,0,336010 ,2,14956,4490 ,2,822,23660 ,2,14975,599940 ,2,14976,153430 ,2,14977,153420 ,2,14965,45 ,2,14978,252745 ,2,14979,2415 ,1,0,336420 ,2,14956,4490 ,2,822,26815 ,2,14975,599870 ,2,14976,153470 ,2,14977,153460 ,2,14965,45 ,2,14978,252755 ,2,14979,2415 ,1,0,336795 ,2,14956,4490 ,2,822,42315 ,2,14975,611060 ,2,14976,153490 ,2,14977,153480 ,2,14965,45 ,2,14978,252795 ,2,14979,2415 ,1,0,337350 ,2,14956,4490 ,2,822,42345 ,2,14975,611100 ,2,14976,153510 ,2,14977,153500 ,2,14965,45 ,2,14978,252805 ,2,14979,2415 ,1,0,337675 ,2,14956,4490 ,2,822,21335 ,2,14975,110 ,2,14976,153530 ,2,14977,153520 ,2,14965,45 ,2,14978,252815 ,2,14979,2415 ,1,0,338105 ,2,14956,4490 ,2,822,19200 ,2,14975,110 ,2,14976,153570 ,2,14977,153560 ,2,14965,45 ,2,14978,252825 ,2,14979,2415 ,1,0,338550 ,2,14956,4490 ,2,822,14675 ,2,14975,606700 ,2,14976,153590 ,2,14977,153580 ,2,14965,45 ,2,14978,252840 ,2,14979,2415 ,1,0,339005 ,2,14956,4490 ,2,822,37465 ,2,14975,599870 ,2,14976,153610 ,2,14977,153600 ,2,14965,45 ,2,14978,252850 ,2,14979,2415 ,1,0,339430 ,2,14956,4490 ,2,822,16395 ,2,14975,110 ,2,14976,153630 ,2,14977,153620 ,2,14965,45 ,2,14978,252860 ,2,14979,2415 ,1,0,339955 ,2,14956,4490 ,2,822,25535 ,2,14975,599870 ,2,14976,153670 ,2,14977,153660 ,2,14965,45 ,2,14978,252870 ,2,14979,2415 ,1,0,340490 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,153690 ,2,14977,153680 ,2,14965,45 ,2,14978,252905 ,2,14979,2415 ,1,0,340930 ,2,14956,4490 ,2,822,49185 ,2,14975,599875 ,2,14976,153710 ,2,14977,153700 ,2,14965,45 ,2,14978,252915 ,2,14979,2415 ,1,0,341465 ,2,14956,10760 ,2,822,49185 ,2,14975,563560 ,2,14976,23450 ,2,14977,32540 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,341790 ,2,14956,4490 ,2,822,15125 ,2,14975,599885 ,2,14976,153730 ,2,14977,153720 ,2,14965,45 ,2,14978,252925 ,2,14979,2415 ,1,0,342515 ,2,14956,4490 ,2,822,23445 ,2,14975,110 ,2,14976,153765 ,2,14977,153755 ,2,14965,45 ,2,14978,252935 ,2,14979,2415 ,1,0,343040 ,2,14956,4490 ,2,822,15615 ,2,14975,599975 ,2,14976,153785 ,2,14977,153775 ,2,14965,45 ,2,14978,252945 ,2,14979,2415 ,1,0,343260 ,2,14956,4490 ,2,822,20855 ,2,14975,608705 ,2,14976,153805 ,2,14977,153795 ,2,14965,45 ,2,14978,252955 ,2,14979,2415 ,1,0,343470 ,2,14956,4490 ,2,822,15660 ,2,14975,559270 ,2,14976,153825 ,2,14977,153815 ,2,14965,45 ,2,14978,252965 ,2,14979,2415 ,1,0,343875 ,2,14956,4490 ,2,822,39150 ,2,14975,582840 ,2,14976,153865 ,2,14977,153855 ,2,14965,45 ,2,14978,252975 ,2,14979,2415 ,1,0,344310 ,2,14956,4490 ,2,822,16485 ,2,14975,561335 ,2,14976,153885 ,2,14977,153875 ,2,14965,45 ,2,14978,253010 ,2,14979,2415 ,1,0,344630 ,2,14956,4490 ,2,822,44470 ,2,14975,110 ,2,14976,153905 ,2,14977,153895 ,2,14965,45 ,2,14978,253020 ,2,14979,2415 ,1,0,345075 ,2,14956,4490 ,2,822,16920 ,2,14975,612220 ,2,14976,153985 ,2,14977,153975 ,2,14965,45 ,2,14978,253030 ,2,14979,2415 ,1,0,345410 ,2,14956,4490 ,2,822,16920 ,2,14975,597915 ,2,14976,153925 ,2,14977,153915 ,2,14965,557620 ,2,14978,253040 ,2,14979,2415 ,1,0,345825 ,2,14956,4490 ,2,822,23345 ,2,14975,599975 ,2,14976,154005 ,2,14977,153995 ,2,14965,45 ,2,14978,253055 ,2,14979,2415 ,1,0,346375 ,2,14956,4490 ,2,822,16920 ,2,14975,612230 ,2,14976,154050 ,2,14977,154040 ,2,14965,45 ,2,14978,253065 ,2,14979,2415 ,1,0,346805 ,2,14956,4490 ,2,822,16920 ,2,14975,612230 ,2,14976,154030 ,2,14977,154020 ,2,14965,557625 ,2,14978,253075 ,2,14979,2415 ,1,0,347890 ,2,14956,4490 ,2,822,16920 ,2,14975,560665 ,2,14976,154080 ,2,14977,154070 ,2,14965,45 ,2,14978,253085 ,2,14979,2415 ,1,0,348315 ,2,14956,4490 ,2,822,24280 ,2,14975,568055 ,2,14976,154100 ,2,14977,154090 ,2,14965,45 ,2,14978,253110 ,2,14979,2415 ,1,0,348630 ,2,14956,4490 ,2,822,42465 ,2,14975,599945 ,2,14976,154130 ,2,14977,154120 ,2,14965,45 ,2,14978,253120 ,2,14979,2415 ,1,0,349040 ,2,14956,4490 ,2,822,33080 ,2,14975,110 ,2,14976,154150 ,2,14977,154140 ,2,14965,45 ,2,14978,253130 ,2,14979,2415 ,1,0,349580 ,2,14956,4490 ,2,822,23080 ,2,14975,110 ,2,14976,154200 ,2,14977,154190 ,2,14965,45 ,2,14978,253140 ,2,14979,2415 ,1,0,349990 ,2,14956,4490 ,2,822,16920 ,2,14975,612255 ,2,14976,154220 ,2,14977,154210 ,2,14965,557640 ,2,14978,253160 ,2,14979,2415 ,1,0,350415 ,2,14956,4490 ,2,822,42345 ,2,14975,599875 ,2,14976,154240 ,2,14977,154230 ,2,14965,45 ,2,14978,253170 ,2,14979,2415 ,1,0,350870 ,2,14956,4490 ,2,822,42245 ,2,14975,600035 ,2,14976,154260 ,2,14977,154250 ,2,14965,45 ,2,14978,253180 ,2,14979,2415 ,1,0,351410 ,2,14956,4490 ,2,822,23125 ,2,14975,599975 ,2,14976,154315 ,2,14977,154305 ,2,14965,45 ,2,14978,253190 ,2,14979,2415 ,1,0,352040 ,2,14956,4490 ,2,822,15450 ,2,14975,606580 ,2,14976,154335 ,2,14977,154325 ,2,14965,45 ,2,14978,253230 ,2,14979,2415 ,1,0,352480 ,2,14956,4490 ,2,822,35815 ,2,14975,110 ,2,14976,154355 ,2,14977,154345 ,2,14965,45 ,2,14978,253240 ,2,14979,2415 ,1,0,352915 ,2,14956,4490 ,2,822,37465 ,2,14975,110 ,2,14976,154375 ,2,14977,154365 ,2,14965,45 ,2,14978,253250 ,2,14979,2415 ,1,0,353455 ,2,14956,4490 ,2,822,24310 ,2,14975,589645 ,2,14976,154420 ,2,14977,154410 ,2,14965,45 ,2,14978,253260 ,2,14979,2415 ,1,0,354000 ,2,14956,4490 ,2,822,21285 ,2,14975,110 ,2,14976,154440 ,2,14977,154430 ,2,14965,45 ,2,14978,253270 ,2,14979,2415 ,1,0,354535 ,2,14956,4490 ,2,822,19315 ,2,14975,563580 ,2,14976,154460 ,2,14977,154450 ,2,14965,45 ,2,14978,253280 ,2,14979,2415 ,1,0,355045 ,2,14956,4490 ,2,822,23125 ,2,14975,599875 ,2,14976,154480 ,2,14977,154470 ,2,14965,45 ,2,14978,253290 ,2,14979,2415 ,1,0,355490 ,2,14956,4490 ,2,822,16960 ,2,14975,598500 ,2,14976,154525 ,2,14977,154515 ,2,14965,45 ,2,14978,253300 ,2,14979,2415 ,1,0,355810 ,2,14956,4490 ,2,822,15615 ,2,14975,606895 ,2,14976,154545 ,2,14977,154535 ,2,14965,45 ,2,14978,253335 ,2,14979,2415 ,1,0,356250 ,2,14956,4490 ,2,822,34115 ,2,14975,110 ,2,14976,154565 ,2,14977,154555 ,2,14965,45 ,2,14978,253345 ,2,14979,2415 ,1,0,356590 ,2,14956,4490 ,2,822,16785 ,2,14975,607715 ,2,14976,154585 ,2,14977,154575 ,2,14965,45 ,2,14978,253355 ,2,14979,2415 ,1,0,357020 ,2,14956,4490 ,2,822,16940 ,2,14975,607855 ,2,14976,154615 ,2,14977,154605 ,2,14965,45 ,2,14978,253365 ,2,14979,2415 ,1,0,357475 ,2,14956,4490 ,2,822,16285 ,2,14975,110 ,2,14976,154635 ,2,14977,154625 ,2,14965,45 ,2,14978,253375 ,2,14979,2415 ,1,0,357910 ,2,14956,4490 ,2,822,16285 ,2,14975,110 ,2,14976,154675 ,2,14977,154665 ,2,14965,45 ,2,14978,253385 ,2,14979,2415 ,1,0,358440 ,2,14956,4490 ,2,822,16285 ,2,14975,599880 ,2,14976,154655 ,2,14977,154645 ,2,14965,45 ,2,14978,253395 ,2,14979,2415 ,1,0,358965 ,2,14956,4490 ,2,822,14915 ,2,14975,600035 ,2,14976,154735 ,2,14977,154725 ,2,14965,45 ,2,14978,253405 ,2,14979,2415 ,1,0,359590 ,2,14956,4490 ,2,822,14470 ,2,14975,100 ,2,14976,154755 ,2,14977,154745 ,2,14965,45 ,2,14978,253435 ,2,14979,2415 ,1,0,360025 ,2,14956,4490 ,2,822,16285 ,2,14975,110 ,2,14976,154775 ,2,14977,154765 ,2,14965,45 ,2,14978,253445 ,2,14979,2415 ,1,0,360560 ,2,14956,4490 ,2,822,16830 ,2,14975,110 ,2,14976,154795 ,2,14977,154785 ,2,14965,45 ,2,14978,253455 ,2,14979,2415 ,1,0,360970 ,2,14956,4490 ,2,822,16445 ,2,14975,110 ,2,14976,154840 ,2,14977,154830 ,2,14965,45 ,2,14978,253465 ,2,14979,2415 ,1,0,361370 ,2,14956,4490 ,2,822,42410 ,2,14975,599875 ,2,14976,154860 ,2,14977,154850 ,2,14965,45 ,2,14978,253485 ,2,14979,2415 ,1,0,361905 ,2,14956,4490 ,2,822,15705 ,2,14975,606830 ,2,14976,154885 ,2,14977,154875 ,2,14965,45 ,2,14978,253495 ,2,14979,2415 ,1,0,362525 ,2,14956,4490 ,2,822,42465 ,2,14975,611255 ,2,14976,154905 ,2,14977,154895 ,2,14965,45 ,2,14978,253505 ,2,14979,2415 ,1,0,363095 ,2,14956,4490 ,2,822,24580 ,2,14975,599870 ,2,14976,154945 ,2,14977,154935 ,2,14965,45 ,2,14978,253515 ,2,14979,2415 ,1,0,363420 ,2,14956,4490 ,2,822,21255 ,2,14975,110 ,2,14976,154965 ,2,14977,154955 ,2,14965,45 ,2,14978,253550 ,2,14979,2415 ,1,0,363860 ,2,14956,4490 ,2,822,42355 ,2,14975,584885 ,2,14976,154985 ,2,14977,154975 ,2,14965,45 ,2,14978,253560 ,2,14979,2415 ,1,0,364200 ,2,14956,4490 ,2,822,19140 ,2,14975,608425 ,2,14976,155005 ,2,14977,154995 ,2,14965,45 ,2,14978,253570 ,2,14979,2415 ,1,0,364620 ,2,14956,4490 ,2,822,42410 ,2,14975,584965 ,2,14976,155055 ,2,14977,155045 ,2,14965,45 ,2,14978,253580 ,2,14979,2415 ,1,0,364955 ,2,14956,4490 ,2,822,44300 ,2,14975,568460 ,2,14976,155075 ,2,14977,155065 ,2,14965,45 ,2,14978,253590 ,2,14979,2415 ,1,0,365280 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,155105 ,2,14977,155095 ,2,14965,45 ,2,14978,253600 ,2,14979,2415 ,1,0,365725 ,2,14956,4490 ,2,822,16940 ,2,14975,110 ,2,14976,155125 ,2,14977,155115 ,2,14965,45 ,2,14978,253610 ,2,14979,2415 ,1,0,366760 ,2,14956,4490 ,2,822,15565 ,2,14975,599975 ,2,14976,155175 ,2,14977,155165 ,2,14965,45 ,2,14978,253620 ,2,14979,2415 ,1,0,367195 ,2,14956,4490 ,2,822,33480 ,2,14975,559725 ,2,14976,155195 ,2,14977,155185 ,2,14965,45 ,2,14978,253630 ,2,14979,2415 ,1,0,367520 ,2,14956,4490 ,2,822,16720 ,2,14975,608025 ,2,14976,155215 ,2,14977,155205 ,2,14965,45 ,2,14978,253640 ,2,14979,2415 ,1,0,368265 ,2,14956,4490 ,2,822,42455 ,2,14975,599975 ,2,14976,155235 ,2,14977,155225 ,2,14965,45 ,2,14978,253650 ,2,14979,2415 ,1,0,368785 ,2,14956,4490 ,2,822,16920 ,2,14975,599500 ,2,14976,155270 ,2,14977,155260 ,2,14965,557645 ,2,14978,253660 ,2,14979,2415 ,1,0,369230 ,2,14956,4490 ,2,822,15065 ,2,14975,599975 ,2,14976,155290 ,2,14977,155280 ,2,14965,45 ,2,14978,253675 ,2,14979,2415 ,1,0,369540 ,2,14956,4490 ,2,822,29270 ,2,14975,110 ,2,14976,155310 ,2,14977,155300 ,2,14965,45 ,2,14978,253685 ,2,14979,2415 ,1,0,369955 ,2,14956,4490 ,2,822,30500 ,2,14975,110 ,2,14976,155330 ,2,14977,155320 ,2,14965,45 ,2,14978,253695 ,2,14979,2415 ,1,0,370470 ,2,14956,4490 ,2,822,37970 ,2,14975,561335 ,2,14976,155375 ,2,14977,155365 ,2,14965,45 ,2,14978,253705 ,2,14979,2415 ,1,0,370995 ,2,14956,4490 ,2,822,14730 ,2,14975,606650 ,2,14976,155395 ,2,14977,155385 ,2,14965,45 ,2,14978,253750 ,2,14979,2415 ,1,0,371310 ,2,14956,4490 ,2,822,33480 ,2,14975,574420 ,2,14976,155415 ,2,14977,155405 ,2,14965,45 ,2,14978,253760 ,2,14979,2415 ,1,0,371850 ,2,14956,4490 ,2,822,35655 ,2,14975,110 ,2,14976,155435 ,2,14977,155425 ,2,14965,45 ,2,14978,253770 ,2,14979,2415 ,1,0,372155 ,2,14956,4490 ,2,822,23445 ,2,14975,110 ,2,14976,155480 ,2,14977,155470 ,2,14965,45 ,2,14978,253780 ,2,14979,2415 ,1,0,372475 ,2,14956,4490 ,2,822,31810 ,2,14975,599940 ,2,14976,155500 ,2,14977,155490 ,2,14965,45 ,2,14978,253790 ,2,14979,2415 ,1,0,372795 ,2,14956,4490 ,2,822,48820 ,2,14975,110 ,2,14976,155525 ,2,14977,155515 ,2,14965,45 ,2,14978,253800 ,2,14979,2415 ,1,0,373420 ,2,14956,4490 ,2,822,16520 ,2,14975,110 ,2,14976,155545 ,2,14977,155535 ,2,14965,45 ,2,14978,253810 ,2,14979,2415 ,1,0,374025 ,2,14956,4490 ,2,822,36855 ,2,14975,599970 ,2,14976,155610 ,2,14977,155600 ,2,14965,45 ,2,14978,253820 ,2,14979,2415 ,1,0,374655 ,2,14956,4490 ,2,822,15125 ,2,14975,599885 ,2,14976,155630 ,2,14977,155620 ,2,14965,45 ,2,14978,253855 ,2,14979,2415 ,1,0,375065 ,2,14956,4490 ,2,822,16550 ,2,14975,607390 ,2,14976,155655 ,2,14977,155645 ,2,14965,45 ,2,14978,253865 ,2,14979,2415 ,1,0,375320 ,2,14956,4490 ,2,822,16920 ,2,14975,560725 ,2,14976,155675 ,2,14977,155665 ,2,14965,45 ,2,14978,253875 ,2,14979,2415 ,1,0,375620 ,2,14956,4490 ,2,822,18285 ,2,14975,110 ,2,14976,155705 ,2,14977,155695 ,2,14965,45 ,2,14978,253885 ,2,14979,2415 ,1,0,375865 ,2,14956,4490 ,2,822,42455 ,2,14975,599875 ,2,14976,155725 ,2,14977,155715 ,2,14965,45 ,2,14978,253900 ,2,14979,2415 ,1,0,376175 ,2,14956,4490 ,2,822,36775 ,2,14975,599940 ,2,14976,155745 ,2,14977,155735 ,2,14965,45 ,2,14978,253910 ,2,14979,2415 ,1,0,376495 ,2,14956,4490 ,2,822,14720 ,2,14975,599975 ,2,14976,155765 ,2,14977,155755 ,2,14965,45 ,2,14978,253920 ,2,14979,2415 ,1,0,376850 ,2,14956,4490 ,2,822,16330 ,2,14975,110 ,2,14976,155805 ,2,14977,155795 ,2,14965,45 ,2,14978,253930 ,2,14979,2415 ,1,0,377035 ,2,14956,4490 ,2,822,47945 ,2,14975,599870 ,2,14976,155825 ,2,14977,155815 ,2,14965,45 ,2,14978,253960 ,2,14979,2415 ,1,0,377530 ,2,14956,4490 ,2,822,45915 ,2,14975,110 ,2,14976,155845 ,2,14977,155835 ,2,14965,45 ,2,14978,253970 ,2,14979,2415 ,1,0,377720 ,2,14956,4490 ,2,822,15125 ,2,14975,599885 ,2,14976,155865 ,2,14977,155855 ,2,14965,45 ,2,14978,253980 ,2,14979,2415 ,1,0,378175 ,2,14956,4490 ,2,822,42410 ,2,14975,110 ,2,14976,155910 ,2,14977,155900 ,2,14965,45 ,2,14978,253990 ,2,14979,2415 ,1,0,378355 ,2,14956,4490 ,2,822,47660 ,2,14975,590290 ,2,14976,155930 ,2,14977,155920 ,2,14965,45 ,2,14978,254000 ,2,14979,2415 ,1,0,378735 ,2,14956,4490 ,2,822,36855 ,2,14975,599970 ,2,14976,155960 ,2,14977,155950 ,2,14965,45 ,2,14978,254010 ,2,14979,2415 ,1,0,379025 ,2,14956,4490 ,2,822,15615 ,2,14975,599875 ,2,14976,155980 ,2,14977,155970 ,2,14965,45 ,2,14978,254020 ,2,14979,2415 ,1,0,379400 ,2,14956,4490 ,2,822,20950 ,2,14975,608710 ,2,14976,156025 ,2,14977,156015 ,2,14965,45 ,2,14978,254030 ,2,14979,2415 ,1,0,379695 ,2,14956,4490 ,2,822,20825 ,2,14975,561335 ,2,14976,156045 ,2,14977,156035 ,2,14965,45 ,2,14978,254070 ,2,14979,2415 ,1,0,380075 ,2,14956,4490 ,2,822,38315 ,2,14975,599870 ,2,14976,156065 ,2,14977,156055 ,2,14965,45 ,2,14978,254080 ,2,14979,2415 ,1,0,380275 ,2,14956,4490 ,2,822,42465 ,2,14975,110 ,2,14976,156085 ,2,14977,156075 ,2,14965,45 ,2,14978,254090 ,2,14979,2415 ,1,0,380530 ,2,14956,4490 ,2,822,48820 ,2,14975,110 ,2,14976,156145 ,2,14977,156135 ,2,14965,45 ,2,14978,254100 ,2,14979,2415 ,1,0,380715 ,2,14956,4490 ,2,822,14730 ,2,14975,606235 ,2,14976,156165 ,2,14977,156155 ,2,14965,45 ,2,14978,254110 ,2,14979,2415 ,1,0,380950 ,2,14956,4490 ,2,822,15660 ,2,14975,606855 ,2,14976,156185 ,2,14977,156175 ,2,14965,45 ,2,14978,254120 ,2,14979,2415 ,1,0,381335 ,2,14956,4490 ,2,822,39150 ,2,14975,610905 ,2,14976,156205 ,2,14977,156195 ,2,14965,45 ,2,14978,254130 ,2,14979,2415 ,1,0,381610 ,2,14956,4490 ,2,822,36855 ,2,14975,599970 ,2,14976,156255 ,2,14977,156245 ,2,14965,45 ,2,14978,254140 ,2,14979,2415 ,1,0,381940 ,2,14956,4490 ,2,822,42315 ,2,14975,611055 ,2,14976,156275 ,2,14977,156265 ,2,14965,45 ,2,14978,254170 ,2,14979,2415 ,1,0,382185 ,2,14956,4490 ,2,822,42345 ,2,14975,611095 ,2,14976,156300 ,2,14977,156290 ,2,14965,45 ,2,14978,254180 ,2,14979,2415 ,1,0,382490 ,2,14956,4490 ,2,822,45885 ,2,14975,110 ,2,14976,156320 ,2,14977,156310 ,2,14965,45 ,2,14978,254190 ,2,14979,2415 ,1,0,382745 ,2,14956,4490 ,2,822,16785 ,2,14975,607830 ,2,14976,156345 ,2,14977,156335 ,2,14965,45 ,2,14978,254200 ,2,14979,2415 ,1,0,382915 ,2,14956,4490 ,2,822,16940 ,2,14975,607980 ,2,14976,156365 ,2,14977,156355 ,2,14965,45 ,2,14978,254210 ,2,14979,2415 ,1,0,383540 ,2,14956,4490 ,2,822,14685 ,2,14975,606195 ,2,14976,156390 ,2,14977,156380 ,2,14965,45 ,2,14978,254220 ,2,14979,2415 ,1,0,383780 ,2,14956,4490 ,2,822,16300 ,2,14975,599975 ,2,14976,156410 ,2,14977,156400 ,2,14965,45 ,2,14978,254230 ,2,14979,2415 ,1,0,384135 ,2,14956,4490 ,2,822,15615 ,2,14975,558955 ,2,14976,156450 ,2,14977,156440 ,2,14965,45 ,2,14978,254240 ,2,14979,2415 ,1,0,384380 ,2,14956,4490 ,2,822,33480 ,2,14975,568460 ,2,14976,156470 ,2,14977,156460 ,2,14965,45 ,2,14978,254275 ,2,14979,2415 ,1,0,384605 ,2,14956,4490 ,2,822,15450 ,2,14975,110 ,2,14976,156490 ,2,14977,156480 ,2,14965,45 ,2,14978,254285 ,2,14979,2415 ,1,0,384865 ,2,14956,4490 ,2,822,46730 ,2,14975,110 ,2,14976,156510 ,2,14977,156500 ,2,14965,45 ,2,14978,254295 ,2,14979,2415 ,1,0,385035 ,2,14956,4490 ,2,822,29270 ,2,14975,599875 ,2,14976,156560 ,2,14977,156550 ,2,14965,45 ,2,14978,254305 ,2,14979,2415 ,1,0,385215 ,2,14956,4490 ,2,822,46065 ,2,14975,611785 ,2,14976,156580 ,2,14977,156570 ,2,14965,45 ,2,14978,254320 ,2,14979,2415 ,1,0,385455 ,2,14956,4490 ,2,822,33395 ,2,14975,110 ,2,14976,156600 ,2,14977,156590 ,2,14965,45 ,2,14978,254330 ,2,14979,2415 ,1,0,385695 ,2,14956,4490 ,2,822,16785 ,2,14975,110 ,2,14976,156620 ,2,14977,156610 ,2,14965,45 ,2,14978,254340 ,2,14979,2415 ,1,0,385945 ,2,14956,4490 ,2,822,16940 ,2,14975,110 ,2,14976,156660 ,2,14977,156650 ,2,14965,45 ,2,14978,254350 ,2,14979,2415 ,1,0,386250 ,2,14956,4490 ,2,822,16300 ,2,14975,599875 ,2,14976,156680 ,2,14977,156670 ,2,14965,45 ,2,14978,254410 ,2,14979,2415 ,1,0,386445 ,2,14956,4490 ,2,822,23780 ,2,14975,599870 ,2,14976,156700 ,2,14977,156690 ,2,14965,45 ,2,14978,254420 ,2,14979,2415 ,1,0,386660 ,2,14956,4490 ,2,822,29270 ,2,14975,609840 ,2,14976,156720 ,2,14977,156710 ,2,14965,45 ,2,14978,254430 ,2,14979,2415 ,1,0,386975 ,2,14956,4490 ,2,822,36855 ,2,14975,599970 ,2,14976,156760 ,2,14977,156750 ,2,14965,45 ,2,14978,254440 ,2,14979,2415 ,1,0,387150 ,2,14956,4490 ,2,822,42420 ,2,14975,611185 ,2,14976,156780 ,2,14977,156770 ,2,14965,45 ,2,14978,254450 ,2,14979,2415 ,1,0,387325 ,2,14956,4490 ,2,822,42455 ,2,14975,611230 ,2,14976,156810 ,2,14977,156800 ,2,14965,45 ,2,14978,254460 ,2,14979,2415 ,1,0,387690 ,2,14956,4490 ,2,822,16785 ,2,14975,607720 ,2,14976,156830 ,2,14977,156820 ,2,14965,45 ,2,14978,254470 ,2,14979,2415 ,1,0,388135 ,2,14956,4490 ,2,822,16940 ,2,14975,607900 ,2,14976,156885 ,2,14977,156875 ,2,14965,45 ,2,14978,254480 ,2,14979,2415 ,1,0,388540 ,2,14956,4490 ,2,822,16720 ,2,14975,100 ,2,14976,156905 ,2,14977,156895 ,2,14965,45 ,2,14978,254505 ,2,14979,2415 ,1,0,388845 ,2,14956,4490 ,2,822,33080 ,2,14975,599975 ,2,14976,156930 ,2,14977,156920 ,2,14965,45 ,2,14978,254515 ,2,14979,2415 ,1,0,389140 ,2,14956,4490 ,2,822,23435 ,2,14975,609350 ,2,14976,156950 ,2,14977,156940 ,2,14965,45 ,2,14978,254525 ,2,14979,2415 ,1,0,389485 ,2,14956,4490 ,2,822,30010 ,2,14975,599870 ,2,14976,156990 ,2,14977,156980 ,2,14965,45 ,2,14978,254535 ,2,14979,2415 ,1,0,389830 ,2,14956,4490 ,2,822,18485 ,2,14975,110 ,2,14976,157010 ,2,14977,157000 ,2,14965,45 ,2,14978,254550 ,2,14979,2415 ,1,0,390280 ,2,14956,4490 ,2,822,20790 ,2,14975,610595 ,2,14976,157030 ,2,14977,157020 ,2,14965,45 ,2,14978,254560 ,2,14979,2415 ,1,0,390580 ,2,14956,4490 ,2,822,36015 ,2,14975,579705 ,2,14976,157050 ,2,14977,157040 ,2,14965,45 ,2,14978,254570 ,2,14979,2415 ,1,0,391025 ,2,14956,4490 ,2,822,23345 ,2,14975,599975 ,2,14976,157080 ,2,14977,157070 ,2,14965,45 ,2,14978,254580 ,2,14979,2415 ,1,0,391370 ,2,14956,4490 ,2,822,30010 ,2,14975,597470 ,2,14976,157100 ,2,14977,157090 ,2,14965,45 ,2,14978,254625 ,2,14979,2415 ,1,0,391805 ,2,14956,4490 ,2,822,38430 ,2,14975,568460 ,2,14976,157125 ,2,14977,157115 ,2,14965,45 ,2,14978,254635 ,2,14979,2415 ,1,0,392150 ,2,14956,4490 ,2,822,48070 ,2,14975,100 ,2,14976,157145 ,2,14977,157135 ,2,14965,45 ,2,14978,254645 ,2,14979,2415 ,1,0,392385 ,2,14956,4490 ,2,822,42345 ,2,14975,599895 ,2,14976,157195 ,2,14977,157185 ,2,14965,45 ,2,14978,254655 ,2,14979,2415 ,1,0,392575 ,2,14956,4490 ,2,822,16640 ,2,14975,110 ,2,14976,157215 ,2,14977,157205 ,2,14965,45 ,2,14978,254665 ,2,14979,2415 ,1,0,392880 ,2,14956,4490 ,2,822,28405 ,2,14975,599970 ,2,14976,157240 ,2,14977,157230 ,2,14965,45 ,2,14978,254675 ,2,14979,2415 ,1,0,393205 ,2,14956,4490 ,2,822,23090 ,2,14975,599875 ,2,14976,157260 ,2,14977,157250 ,2,14965,45 ,2,14978,254685 ,2,14979,2415 ,1,0,393505 ,2,14956,4490 ,2,822,39150 ,2,14975,599975 ,2,14976,157305 ,2,14977,157295 ,2,14965,45 ,2,14978,254695 ,2,14979,2415 ,1,0,393775 ,2,14956,4490 ,2,822,15615 ,2,14975,110 ,2,14976,157325 ,2,14977,157315 ,2,14965,45 ,2,14978,254740 ,2,14979,2415 ,1,0,393985 ,2,14956,4490 ,2,822,15615 ,2,14975,606900 ,2,14976,157350 ,2,14977,157340 ,2,14965,45 ,2,14978,254750 ,2,14979,2415 ,1,0,394235 ,2,14956,4490 ,2,822,13330 ,2,14975,600005 ,2,14976,157370 ,2,14977,157360 ,2,14965,45 ,2,14978,254760 ,2,14979,2415 ,1,0,394490 ,2,14956,4490 ,2,822,42455 ,2,14975,599905 ,2,14976,157400 ,2,14977,157390 ,2,14965,45 ,2,14978,254770 ,2,14979,2415 ,1,0,394810 ,2,14956,4490 ,2,822,15565 ,2,14975,599875 ,2,14976,157420 ,2,14977,157410 ,2,14965,45 ,2,14978,254790 ,2,14979,2415 ,1,0,395120 ,2,14956,4490 ,2,822,39150 ,2,14975,110 ,2,14976,157440 ,2,14977,157430 ,2,14965,45 ,2,14978,254800 ,2,14979,2415 ,1,0,395395 ,2,14956,4490 ,2,822,28360 ,2,14975,110 ,2,14976,157460 ,2,14977,157450 ,2,14965,45 ,2,14978,254810 ,2,14979,2415 ,1,0,395690 ,2,14956,4490 ,2,822,14480 ,2,14975,100 ,2,14976,157495 ,2,14977,157485 ,2,14965,45 ,2,14978,254820 ,2,14979,2415 ,1,0,395980 ,2,14956,4490 ,2,822,16920 ,2,14975,110 ,2,14976,157515 ,2,14977,157505 ,2,14965,45 ,2,14978,254835 ,2,14979,2415 ,1,0,396285 ,2,14956,4490 ,2,822,42355 ,2,14975,611125 ,2,14976,157535 ,2,14977,157525 ,2,14965,45 ,2,14978,254845 ,2,14979,2415 ,1,0,396580 ,2,14956,4490 ,2,822,42410 ,2,14975,611170 ,2,14976,157555 ,2,14977,157545 ,2,14965,45 ,2,14978,254855 ,2,14979,2415 ,1,0,396895 ,2,14956,4490 ,2,822,48820 ,2,14975,110 ,2,14976,157595 ,2,14977,157585 ,2,14965,45 ,2,14978,254865 ,2,14979,2415 ,1,0,397150 ,2,14956,4490 ,2,822,14675 ,2,14975,599875 ,2,14976,157615 ,2,14977,157605 ,2,14965,45 ,2,14978,254880 ,2,14979,2415 ,1,0,397360 ,2,14956,4490 ,2,822,38315 ,2,14975,610805 ,2,14976,157635 ,2,14977,157625 ,2,14965,45 ,2,14978,254890 ,2,14979,2415 ,1,0,397490 ,2,14956,4490 ,2,822,15450 ,2,14975,599875 ,2,14976,157655 ,2,14977,157645 ,2,14965,45 ,2,14978,254900 ,2,14979,2415 ,1,0,397680 ,2,14956,4490 ,2,822,30530 ,2,14975,564580 ,2,14976,157700 ,2,14977,157690 ,2,14965,45 ,2,14978,254910 ,2,14979,2415 ,1,0,397930 ,2,14956,4490 ,2,822,42345 ,2,14975,599975 ,2,14976,157720 ,2,14977,157710 ,2,14965,45 ,2,14978,254935 ,2,14979,2415 ,1,0,398165 ,2,14956,4490 ,2,822,42465 ,2,14975,599875 ,2,14976,157745 ,2,14977,157735 ,2,14965,45 ,2,14978,254945 ,2,14979,2415 ,1,0,398350 ,2,14956,4490 ,2,822,23345 ,2,14975,599975 ,2,14976,157765 ,2,14977,157755 ,2,14965,45 ,2,14978,254955 ,2,14979,2415 ,1,0,398805 ,2,14956,4490 ,2,822,22900 ,2,14975,110 ,2,14976,157810 ,2,14977,157800 ,2,14965,45 ,2,14978,254965 ,2,14979,2415 ,1,0,399075 ,2,14956,4490 ,2,822,42455 ,2,14975,110 ,2,14976,157830 ,2,14977,157820 ,2,14965,45 ,2,14978,254975 ,2,14979,2415 ,1,0,399755 ,2,14956,4490 ,2,822,16840 ,2,14975,599875 ,2,14976,157855 ,2,14977,157845 ,2,14965,45 ,2,14978,254985 ,2,14979,2415 ,1,0,400045 ,2,14956,4490 ,2,822,42190 ,2,14975,110 ,2,14976,157875 ,2,14977,157865 ,2,14965,45 ,2,14978,254995 ,2,14979,2415 ,1,0,400335 ,2,14956,4490 ,2,822,42355 ,2,14975,611120 ,2,14976,157940 ,2,14977,157930 ,2,14965,45 ,2,14978,255005 ,2,14979,2415 ,1,0,400585 ,2,14956,4490 ,2,822,42410 ,2,14975,611165 ,2,14976,157960 ,2,14977,157950 ,2,14965,45 ,2,14978,255045 ,2,14979,2415 ,1,0,400920 ,2,14956,4490 ,2,822,33480 ,2,14975,599880 ,2,14976,157980 ,2,14977,157970 ,2,14965,45 ,2,14978,255055 ,2,14979,2415 ,1,0,401285 ,2,14956,4490 ,2,822,37970 ,2,14975,561590 ,2,14976,158000 ,2,14977,157990 ,2,14965,45 ,2,14978,255065 ,2,14979,2415 ,1,0,401680 ,2,14956,4490 ,2,822,21275 ,2,14975,110 ,2,14976,158030 ,2,14977,158020 ,2,14965,45 ,2,14978,255075 ,2,14979,2415 ,1,0,402005 ,2,14956,4490 ,2,822,27290 ,2,14975,609645 ,2,14976,158050 ,2,14977,158040 ,2,14965,45 ,2,14978,255085 ,2,14979,2415 ,1,0,402320 ,2,14956,4490 ,2,822,38080 ,2,14975,110 ,2,14976,158070 ,2,14977,158060 ,2,14965,45 ,2,14978,255095 ,2,14979,2415 ,1,0,402595 ,2,14956,4490 ,2,822,39150 ,2,14975,599875 ,2,14976,158090 ,2,14977,158080 ,2,14965,45 ,2,14978,255105 ,2,14979,2415 ,1,0,402925 ,2,14956,4490 ,2,822,42420 ,2,14975,585010 ,2,14976,158135 ,2,14977,158125 ,2,14965,45 ,2,14978,255115 ,2,14979,2415 ,1,0,403180 ,2,14956,4490 ,2,822,42455 ,2,14975,585070 ,2,14976,158155 ,2,14977,158145 ,2,14965,45 ,2,14978,255145 ,2,14979,2415 ,1,0,403445 ,2,14956,4490 ,2,822,14675 ,2,14975,110 ,2,14976,158180 ,2,14977,158170 ,2,14965,45 ,2,14978,255155 ,2,14979,2415 ,1,0,403660 ,2,14956,4490 ,2,822,16550 ,2,14975,110 ,2,14976,158200 ,2,14977,158190 ,2,14965,45 ,2,14978,255165 ,2,14979,2415 ,1,0,403925 ,2,14956,4490 ,2,822,14730 ,2,14975,606655 ,2,14976,158240 ,2,14977,158230 ,2,14965,45 ,2,14978,255175 ,2,14979,2415 ,1,0,404230 ,2,14956,4490 ,2,822,23080 ,2,14975,609150 ,2,14976,158260 ,2,14977,158250 ,2,14965,45 ,2,14978,255185 ,2,14979,2415 ,1,0,404480 ,2,14956,4490 ,2,822,16610 ,2,14975,100 ,2,14976,158285 ,2,14977,158275 ,2,14965,45 ,2,14978,255195 ,2,14979,2415 ,1,0,404815 ,2,14956,4490 ,2,822,15705 ,2,14975,559135 ,2,14976,158305 ,2,14977,158295 ,2,14965,45 ,2,14978,255205 ,2,14979,2415 ,1,0,405200 ,2,14956,4490 ,2,822,42465 ,2,14975,585090 ,2,14976,158340 ,2,14977,158330 ,2,14965,45 ,2,14978,255215 ,2,14979,2415 ,1,0,405455 ,2,14956,4490 ,2,822,23090 ,2,14975,599975 ,2,14976,158360 ,2,14977,158350 ,2,14965,45 ,2,14978,255250 ,2,14979,2415 ,1,0,405710 ,2,14956,4490 ,2,822,20745 ,2,14975,599870 ,2,14976,158380 ,2,14977,158370 ,2,14965,45 ,2,14978,255260 ,2,14979,2415 ,1,0,405990 ,2,14956,4490 ,2,822,15705 ,2,14975,606825 ,2,14976,158400 ,2,14977,158390 ,2,14965,45 ,2,14978,255270 ,2,14979,2415 ,1,0,406130 ,2,14956,4490 ,2,822,42465 ,2,14975,611250 ,2,14976,158435 ,2,14977,158425 ,2,14965,45 ,2,14978,255280 ,2,14979,2415 ,1,0,406455 ,2,14956,4490 ,2,822,21285 ,2,14975,110 ,2,14976,158455 ,2,14977,158445 ,2,14965,45 ,2,14978,255290 ,2,14979,2415 ,1,0,406660 ,2,14956,4490 ,2,822,16920 ,2,14975,612260 ,2,14976,158480 ,2,14977,158470 ,2,14965,45 ,2,14978,255300 ,2,14979,2415 ,1,0,406970 ,2,14956,4490 ,2,822,16920 ,2,14975,612255 ,2,14976,158500 ,2,14977,158490 ,2,14965,45 ,2,14978,255310 ,2,14979,2415 ,1,0,407255 ,2,14956,4490 ,2,822,43865 ,2,14975,568460 ,2,14976,158540 ,2,14977,158530 ,2,14965,45 ,2,14978,255320 ,2,14979,2415 ,1,0,407505 ,2,14956,4490 ,2,822,42410 ,2,14975,599975 ,2,14976,158560 ,2,14977,158550 ,2,14965,45 ,2,14978,255360 ,2,14979,2415 ,1,0,407700 ,2,14956,4490 ,2,822,16920 ,2,14975,560465 ,2,14976,158585 ,2,14977,158575 ,2,14965,45 ,2,14978,255370 ,2,14979,2415 ,1,0,408175 ,2,14956,4490 ,2,822,23345 ,2,14975,599975 ,2,14976,158605 ,2,14977,158595 ,2,14965,45 ,2,14978,255380 ,2,14979,2415 ,1,0,408505 ,2,14956,4490 ,2,822,20705 ,2,14975,110 ,2,14976,158645 ,2,14977,158635 ,2,14965,45 ,2,14978,255390 ,2,14979,2415 ,1,0,408895 ,2,14956,4490 ,2,822,42420 ,2,14975,611190 ,2,14976,158665 ,2,14977,158655 ,2,14965,45 ,2,14978,255400 ,2,14979,2415 ,1,0,409085 ,2,14956,4490 ,2,822,42455 ,2,14975,611235 ,2,14976,158690 ,2,14977,158680 ,2,14965,45 ,2,14978,255410 ,2,14979,2415 ,1,0,409215 ,2,14956,4490 ,2,822,35815 ,2,14975,110 ,2,14976,158710 ,2,14977,158700 ,2,14965,45 ,2,14978,255420 ,2,14979,2415 ,1,0,409485 ,2,14956,4490 ,2,822,35815 ,2,14975,110 ,2,14976,158760 ,2,14977,158750 ,2,14965,45 ,2,14978,255430 ,2,14979,2415 ,1,0,409620 ,2,14956,4490 ,2,822,28030 ,2,14975,599940 ,2,14976,158780 ,2,14977,158770 ,2,14965,45 ,2,14978,255450 ,2,14979,2415 ,1,0,409800 ,2,14956,4490 ,2,822,42410 ,2,14975,599900 ,2,14976,158800 ,2,14977,158790 ,2,14965,45 ,2,14978,255460 ,2,14979,2415 ,1,0,410065 ,2,14956,4490 ,2,822,26760 ,2,14975,570750 ,2,14976,158820 ,2,14977,158810 ,2,14965,45 ,2,14978,255470 ,2,14979,2415 ,1,0,410405 ,2,14956,4490 ,2,822,33480 ,2,14975,559725 ,2,14976,158840 ,2,14977,158830 ,2,14965,45 ,2,14978,255480 ,2,14979,2415 ,1,0,410590 ,2,14956,4490 ,2,822,16820 ,2,14975,599975 ,2,14976,158860 ,2,14977,158850 ,2,14965,45 ,2,14978,255490 ,2,14979,2415 ,1,0,410855 ,2,14956,4490 ,2,822,38825 ,2,14975,599975 ,2,14976,158885 ,2,14977,158875 ,2,14965,45 ,2,14978,255500 ,2,14979,2415 ,1,0,411110 ,2,14956,4490 ,2,822,14730 ,2,14975,557975 ,2,14976,158905 ,2,14977,158895 ,2,14965,45 ,2,14978,255510 ,2,14979,2415 ,1,0,411330 ,2,14956,4490 ,2,822,35815 ,2,14975,110 ,2,14976,158950 ,2,14977,158940 ,2,14965,45 ,2,14978,255520 ,2,14979,2415 ,1,0,411600 ,2,14956,4490 ,2,822,16840 ,2,14975,599975 ,2,14976,158970 ,2,14977,158960 ,2,14965,45 ,2,14978,255545 ,2,14979,2415 ,1,0,411795 ,2,14956,4490 ,2,822,49185 ,2,14975,110 ,2,14976,158995 ,2,14977,158985 ,2,14965,45 ,2,14978,255555 ,2,14979,2415 ,1,0,412270 ,2,14956,4490 ,2,822,19190 ,2,14975,110 ,2,14976,159015 ,2,14977,159005 ,2,14965,45 ,2,14978,255565 ,2,14979,2415 ,1,0,412505 ,2,14956,4490 ,2,822,42345 ,2,14975,110 ,2,14976,159065 ,2,14977,159055 ,2,14965,45 ,2,14978,255575 ,2,14979,2415 ,1,0,412795 ,2,14956,4490 ,2,822,45755 ,2,14975,599875 ,2,14976,159085 ,2,14977,159075 ,2,14965,45 ,2,14978,255600 ,2,14979,2415 ,1,0,412975 ,2,14956,4490 ,2,822,42465 ,2,14975,599975 ,2,14976,159105 ,2,14977,159095 ,2,14965,45 ,2,14978,255610 ,2,14979,2415 ,1,0,413180 ,2,14956,4490 ,2,822,31305 ,2,14975,600040 ,2,14976,159125 ,2,14977,159115 ,2,14965,45 ,2,14978,255620 ,2,14979,2415 ,1,0,413650 ,2,14956,4490 ,2,822,42315 ,2,14975,584780 ,2,14976,159170 ,2,14977,159160 ,2,14965,45 ,2,14978,255630 ,2,14979,2415 ,1,0,414065 ,2,14956,4490 ,2,822,42345 ,2,14975,584830 ,2,14976,159190 ,2,14977,159180 ,2,14965,45 ,2,14978,255675 ,2,14979,2415 ,1,0,414310 ,2,14956,4490 ,2,822,16550 ,2,14975,599875 ,2,14976,159215 ,2,14977,159205 ,2,14965,45 ,2,14978,255685 ,2,14979,2415 ,1,0,414755 ,2,14956,4490 ,2,822,15660 ,2,14975,606860 ,2,14976,159235 ,2,14977,159225 ,2,14965,45 ,2,14978,255695 ,2,14979,2415 ,1,0,414980 ,2,14956,4490 ,2,822,39150 ,2,14975,610915 ,2,14976,159280 ,2,14977,159270 ,2,14965,45 ,2,14978,255705 ,2,14979,2415 ,1,0,415605 ,2,14956,4490 ,2,822,38675 ,2,14975,582505 ,2,14976,159300 ,2,14977,159290 ,2,14965,45 ,2,14978,255715 ,2,14979,2415 ,1,0,415860 ,2,14956,4490 ,2,822,30170 ,2,14975,110 ,2,14976,159325 ,2,14977,159315 ,2,14965,45 ,2,14978,255725 ,2,14979,2415 ,1,0,416490 ,2,14956,176795 ,2,822,14405 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159425 ,2,14979,408145 ,1,0,417080 ,2,14956,166650 ,2,822,14405 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159440 ,2,14979,408150 ,1,0,417410 ,2,14956,176805 ,2,822,14405 ,2,14975,599895 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159450 ,2,14979,408155 ,1,0,417730 ,2,14956,166650 ,2,822,14415 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159505 ,2,14979,408160 ,1,0,418035 ,2,14956,176805 ,2,822,14415 ,2,14975,599900 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159515 ,2,14979,408190 ,1,0,418340 ,2,14956,176795 ,2,822,14425 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159560 ,2,14979,408195 ,1,0,418525 ,2,14956,166650 ,2,822,14425 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159570 ,2,14979,408200 ,1,0,419405 ,2,14956,176805 ,2,822,14425 ,2,14975,599905 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159585 ,2,14979,408205 ,1,0,420365 ,2,14956,175095 ,2,822,49175 ,2,14975,110 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,408210 ,1,0,421025 ,2,14956,166620 ,2,822,14470 ,2,14975,606515 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159725 ,2,14979,408215 ,1,0,421810 ,2,14956,166620 ,2,822,14480 ,2,14975,611355 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159810 ,2,14979,408220 ,1,0,422030 ,2,14956,166620 ,2,822,14490 ,2,14975,606510 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,159865 ,2,14979,408225 ,1,0,422240 ,2,14956,175890 ,2,822,14490 ,2,14975,110 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,159875 ,2,14979,2415 ,1,0,422595 ,2,14956,176795 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160130 ,2,14979,408310 ,1,0,422915 ,2,14956,166650 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160140 ,2,14979,408315 ,1,0,423230 ,2,14956,176805 ,2,822,14570 ,2,14975,599945 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160150 ,2,14979,408320 ,1,0,423505 ,2,14956,350945 ,2,822,56125 ,2,14975,599975 ,2,14976,75 ,2,14977,75 ,2,14965,45 ,2,14978,265075 ,2,14979,417925 ,1,0,423685 ,2,14956,279530 ,2,822,14590 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160270 ,2,14979,408325 ,1,0,423960 ,2,14956,279530 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160355 ,2,14979,408330 ,1,0,424240 ,2,14956,318655 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160365 ,2,14979,2415 ,1,0,424545 ,2,14956,10435 ,2,822,14600 ,2,14975,599975 ,2,14976,160385 ,2,14977,160375 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,424885 ,2,14956,350165 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160395 ,2,14979,2415 ,1,0,425195 ,2,14956,350335 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160405 ,2,14979,2415 ,1,0,425535 ,2,14956,6800 ,2,822,14600 ,2,14975,599975 ,2,14976,160425 ,2,14977,160415 ,2,14965,45 ,2,14978,45 ,2,14979,2415 ,1,0,425765 ,2,14956,279675 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160470 ,2,14979,408335 ,1,0,426025 ,2,14956,348970 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160460 ,2,14979,408345 ,1,0,426245 ,2,14956,11350 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408340 ,1,0,426520 ,2,14956,176795 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160480 ,2,14979,408370 ,1,0,426705 ,2,14956,349305 ,2,822,14600 ,2,14975,599975 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160490 ,2,14979,2415 ,1,0,427150 ,2,14956,350145 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160500 ,2,14979,2415 ,1,0,427385 ,2,14956,351225 ,2,822,14600 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160510 ,2,14979,2415 ,1,0,427645 ,2,14956,176805 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160520 ,2,14979,408375 ,1,0,427840 ,2,14956,166650 ,2,822,14600 ,2,14975,600005 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160530 ,2,14979,408380 ,1,0,428340 ,2,14956,9355 ,2,822,14610 ,2,14975,100 ,2,14976,25600 ,2,14977,25590 ,2,14965,45 ,2,14978,485 ,2,14979,408405 ,1,0,428770 ,2,14956,9355 ,2,822,14610 ,2,14975,100 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,455 ,2,14979,408410 ,1,0,429110 ,2,14956,9355 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,415 ,2,14979,408415 ,1,0,429365 ,2,14956,9355 ,2,822,14610 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,425 ,2,14979,408445 ,1,0,429625 ,2,14956,9355 ,2,822,14610 ,2,14975,100 ,2,14976,23450 ,2,14977,23360 ,2,14965,45 ,2,14978,435 ,2,14979,408450 ,1,0,429870 ,2,14956,9265 ,2,822,14610 ,2,14975,597855 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,45 ,2,14979,417930 ,1,0,430205 ,2,14956,351460 ,2,822,14610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265095 ,2,14979,408455 ,1,0,430540 ,2,14956,349020 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265185 ,2,14979,417935 ,1,0,430790 ,2,14956,350155 ,2,822,14610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265195 ,2,14979,417940 ,1,0,431105 ,2,14956,350115 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265195 ,2,14979,417945 ,1,0,431370 ,2,14956,350125 ,2,822,14610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265185 ,2,14979,417950 ,1,0,431730 ,2,14956,350615 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265095 ,2,14979,417980 ,1,0,432075 ,2,14956,348725 ,2,822,14610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265105 ,2,14979,417985 ,1,0,432265 ,2,14956,348830 ,2,822,14610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265115 ,2,14979,417990 ,1,0,432685 ,2,14956,349345 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265115 ,2,14979,417995 ,1,0,433055 ,2,14956,349525 ,2,822,14610 ,2,14975,110 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,265125 ,2,14979,418000 ,1,0,433390 ,2,14956,351160 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265105 ,2,14979,418005 ,1,0,433580 ,2,14956,350390 ,2,822,14610 ,2,14975,100 ,2,14976,23075 ,2,14977,23065 ,2,14965,45 ,2,14978,265125 ,2,14979,418010 ,1,0,433965 ,2,14956,10875 ,2,822,49280 ,2,14975,100 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,408470 ,1,0,434230 ,2,14956,350080 ,2,822,49280 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,418015 ,1,0,434535 ,2,14956,351500 ,2,822,49280 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,45 ,2,14979,418040 ,1,0,434800 ,2,14956,349200 ,2,822,49280 ,2,14975,599875 ,2,14976,23130 ,2,14977,23120 ,2,14965,45 ,2,14978,160740 ,2,14979,408475 ,1,0,435130 ,2,14956,349750 ,2,822,49280 ,2,14975,599875 ,2,14976,24020 ,2,14977,24010 ,2,14965,45 ,2,14978,160750 ,2,14979,408480 ,1,0,435470 ,2,14981,56280 ,2,14982,600075 ,2,14983,45 ,1,0,435670 ,2,14981,56385 ,2,14982,600080 ,2,14983,45 ,1,0,436210 ,2,14981,56470 ,2,14982,600095 ,2,14983,612265 ,1,0,436485 ,2,14981,56435 ,2,14982,600110 ,2,14983,612270 ,1,0,436680 ,2,14981,56695 ,2,14982,600115 ,2,14983,45 ,1,0,436925 ,2,14981,56795 ,2,14982,600125 ,2,14983,45 ,1,0,437340 ,2,14981,57795 ,2,14982,600145 ,2,14983,45 ,1,0,437680 ,2,14981,58245 ,2,14982,600150 ,2,14983,45 ,1,0,437980 ,2,14981,58195 ,2,14982,600155 ,2,14983,612275 ,1,0,438260 ,2,14981,58865 ,2,14982,600180 ,2,14983,612280 ,1,0,438520 ,2,14981,58905 ,2,14982,600185 ,2,14983,612285 ,1,0,438700 ,2,14981,58925 ,2,14982,600190 ,2,14983,612290 ,1,0,438955 ,2,14981,59285 ,2,14982,600195 ,2,14983,612320 ,1,0,439155 ,2,14981,59440 ,2,14982,558515 ,2,14983,612325 ,1,0,439335 ,2,14981,59745 ,2,14982,600200 ,2,14983,612330 ,1,0,439545 ,2,14981,60175 ,2,14982,600210 ,2,14983,612335 ,1,0,439760 ,2,14981,60245 ,2,14982,600255 ,2,14983,45 ,1,0,439960 ,2,14981,60345 ,2,14982,600260 ,2,14983,45 ,1,0,440175 ,2,14981,60800 ,2,14982,600265 ,2,14983,45 ,1,0,440425 ,2,14981,61015 ,2,14982,600280 ,2,14983,45 ,1,0,440690 ,2,14981,61390 ,2,14982,600290 ,2,14983,45 ,1,0,440920 ,2,14981,61565 ,2,14982,600295 ,2,14983,45 ,1,0,441185 ,2,14981,61815 ,2,14982,600315 ,2,14983,45 ,1,0,441515 ,2,14981,63200 ,2,14982,600330 ,2,14983,45 ,1,0,441790 ,2,14981,63755 ,2,14982,600335 ,2,14983,45 ,1,0,442090 ,2,14981,64620 ,2,14982,559720 ,2,14983,45 ,1,0,442360 ,2,14981,64720 ,2,14982,600350 ,2,14983,45 ,1,0,442610 ,2,14981,70945 ,2,14982,600365 ,2,14983,45 ,1,0,442885 ,2,14981,65710 ,2,14982,600375 ,2,14983,45 ,1,0,443155 ,2,14981,65755 ,2,14982,600380 ,2,14983,45 ,1,0,443405 ,2,14981,65890 ,2,14982,600385 ,2,14983,45 ,1,0,443730 ,2,14981,66705 ,2,14982,600390 ,2,14983,45 ,1,0,444065 ,2,14981,66825 ,2,14982,600435 ,2,14983,45 ,1,0,444475 ,2,14981,70475 ,2,14982,600445 ,2,14983,612340 ,1,0,444805 ,2,14981,69495 ,2,14982,600480 ,2,14983,612345 ,1,0,445095 ,2,14981,69525 ,2,14982,600515 ,2,14983,612350 ,1,0,445355 ,2,14981,69385 ,2,14982,600520 ,2,14983,612355 ,1,0,445640 ,2,14981,69395 ,2,14982,600525 ,2,14983,612375 ,1,0,445955 ,2,14981,69415 ,2,14982,600530 ,2,14983,612380 ,1,0,446215 ,2,14981,70425 ,2,14982,600545 ,2,14983,612385 ,1,0,446405 ,2,14981,69290 ,2,14982,600550 ,2,14983,612390 ,1,0,446655 ,2,14981,69310 ,2,14982,600555 ,2,14983,612400 ,1,0,446940 ,2,14981,69340 ,2,14982,600560 ,2,14983,612405 ,1,0,447205 ,2,14981,69425 ,2,14982,600570 ,2,14983,612410 ,1,0,447480 ,2,14981,69555 ,2,14982,600575 ,2,14983,612415 ,1,0,447665 ,2,14981,69585 ,2,14982,600580 ,2,14983,612435 ,1,0,447860 ,2,14981,69755 ,2,14982,600585 ,2,14983,45 ,1,0,448125 ,2,14981,70280 ,2,14982,600595 ,2,14983,45 ,1,0,448365 ,2,14981,70315 ,2,14982,600600 ,2,14983,612440 ,1,0,448590 ,2,14981,70365 ,2,14982,600605 ,2,14983,612445 ,1,0,448830 ,2,14981,70445 ,2,14982,600610 ,2,14983,612450 ,1,0,449090 ,2,14981,70540 ,2,14982,600635 ,2,14983,612455 ,1,0,449335 ,2,14981,70565 ,2,14982,600640 ,2,14983,612460 ,1,0,449655 ,2,14981,70735 ,2,14982,600645 ,2,14983,45 ,1,0,449850 ,2,14981,70815 ,2,14982,600650 ,2,14983,45 ,1,0,450360 ,2,14981,71355 ,2,14982,600665 ,2,14983,612465 ,1,0,450585 ,2,14981,71375 ,2,14982,600670 ,2,14983,45 ,1,0,450895 ,2,14981,71480 ,2,14982,600675 ,2,14983,45 ,1,0,451145 ,2,14981,71500 ,2,14982,600680 ,2,14983,45 ,1,0,451330 ,2,14981,71555 ,2,14982,600710 ,2,14983,45 ,1,0,451605 ,2,14981,71585 ,2,14982,600715 ,2,14983,45 ,1,0,451925 ,2,14981,71605 ,2,14982,600720 ,2,14983,45 ,1,0,452245 ,2,14981,71700 ,2,14982,600725 ,2,14983,45 ,1,0,452495 ,2,14981,71755 ,2,14982,600735 ,2,14983,45 ,1,0,452840 ,2,14981,72415 ,2,14982,600740 ,2,14983,45 ,1,0,453115 ,2,14981,72265 ,2,14982,600745 ,2,14983,612470 ,1,0,453410 ,2,14981,72540 ,2,14982,600750 ,2,14983,45 ,1,0,453785 ,2,14981,72935 ,2,14982,600785 ,2,14983,45 ,1,0,454165 ,2,14981,73325 ,2,14982,600790 ,2,14983,45 ,1,0,454430 ,2,14981,73425 ,2,14982,600795 ,2,14983,45 ,1,0,454830 ,2,14981,73455 ,2,14982,600800 ,2,14983,45 ,1,0,455250 ,2,14981,73475 ,2,14982,600805 ,2,14983,45 ,1,0,455570 ,2,14981,73650 ,2,14982,600810 ,2,14983,45 ,1,0,455815 ,2,14981,73720 ,2,14982,600815 ,2,14983,612490 ,1,0,456195 ,2,14981,73740 ,2,14982,600820 ,2,14983,45 ,1,0,456570 ,2,14981,73795 ,2,14982,600840 ,2,14983,45 ,1,0,456815 ,2,14981,73845 ,2,14982,600845 ,2,14983,45 ,1,0,457075 ,2,14981,73900 ,2,14982,600850 ,2,14983,45 ,1,0,457335 ,2,14981,73945 ,2,14982,600855 ,2,14983,45 ,1,0,457625 ,2,14981,76710 ,2,14982,600865 ,2,14983,45 ,1,0,457815 ,2,14981,77145 ,2,14982,600870 ,2,14983,45 ,1,0,458275 ,2,14981,77860 ,2,14982,559720 ,2,14983,612495 ,1,0,458555 ,2,14981,78370 ,2,14982,600875 ,2,14983,45 ,1,0,458870 ,2,14981,78380 ,2,14982,600880 ,2,14983,45 ,1,0,459160 ,2,14981,78505 ,2,14982,562660 ,2,14983,45 ,1,0,459475 ,2,14981,78505 ,2,14982,562660 ,2,14983,45 ,1,0,459655 ,2,14981,78505 ,2,14982,562665 ,2,14983,45 ,1,0,459820 ,2,14981,78640 ,2,14982,562690 ,2,14983,45 ,1,0,460115 ,2,14981,78945 ,2,14982,600900 ,2,14983,45 ,1,0,460370 ,2,14981,80180 ,2,14982,600905 ,2,14983,612500 ,1,0,460650 ,2,14981,81110 ,2,14982,600910 ,2,14983,612505 ,1,0,460830 ,2,14981,81130 ,2,14982,600915 ,2,14983,612510 ,1,0,461045 ,2,14981,81175 ,2,14982,600920 ,2,14983,612515 ,1,0,461320 ,2,14981,78290 ,2,14982,600925 ,2,14983,612520 ,1,0,461640 ,2,14981,81330 ,2,14982,600930 ,2,14983,612525 ,1,0,461905 ,2,14981,78060 ,2,14982,600935 ,2,14983,612550 ,1,0,462255 ,2,14981,81605 ,2,14982,600955 ,2,14983,612555 ,1,0,462700 ,2,14981,82790 ,2,14982,600965 ,2,14983,612560 ,1,0,463155 ,2,14981,82810 ,2,14982,600970 ,2,14983,612565 ,1,0,463535 ,2,14981,82910 ,2,14982,600980 ,2,14983,612570 ,1,0,463860 ,2,14981,82970 ,2,14982,600985 ,2,14983,612575 ,1,0,464335 ,2,14981,83120 ,2,14982,600990 ,2,14983,45 ,1,0,464540 ,2,14981,83350 ,2,14982,600995 ,2,14983,45 ,1,0,465040 ,2,14981,83640 ,2,14982,601025 ,2,14983,612580 ,1,0,465445 ,2,14981,83670 ,2,14982,601030 ,2,14983,612585 ,1,0,465975 ,2,14981,83965 ,2,14982,601035 ,2,14983,45 ,1,0,466295 ,2,14981,84270 ,2,14982,601040 ,2,14983,45 ,1,0,466660 ,2,14981,84400 ,2,14982,601045 ,2,14983,45 ,1,0,467010 ,2,14981,84450 ,2,14982,601050 ,2,14983,45 ,1,0,467265 ,2,14981,84495 ,2,14982,601055 ,2,14983,45 ,1,0,467565 ,2,14981,84515 ,2,14982,601060 ,2,14983,45 ,1,0,467880 ,2,14981,84610 ,2,14982,601105 ,2,14983,45 ,1,0,468200 ,2,14981,84735 ,2,14982,601110 ,2,14983,45 ,1,0,468420 ,2,14981,84815 ,2,14982,601115 ,2,14983,45 ,1,0,468795 ,2,14981,85035 ,2,14982,601140 ,2,14983,45 ,1,0,468980 ,2,14981,85080 ,2,14982,601145 ,2,14983,45 ,1,0,469250 ,2,14981,85200 ,2,14982,601150 ,2,14983,45 ,1,0,469495 ,2,14981,85220 ,2,14982,601165 ,2,14983,45 ,1,0,469840 ,2,14981,85540 ,2,14982,601170 ,2,14983,45 ,1,0,470005 ,2,14981,85585 ,2,14982,601175 ,2,14983,45 ,1,0,470255 ,2,14981,85720 ,2,14982,601180 ,2,14983,45 ,1,0,470560 ,2,14981,85825 ,2,14982,601190 ,2,14983,45 ,1,0,470850 ,2,14981,85910 ,2,14982,601195 ,2,14983,45 ,1,0,471040 ,2,14981,86020 ,2,14982,601200 ,2,14983,45 ,1,0,471365 ,2,14981,86735 ,2,14982,601205 ,2,14983,45 ,1,0,471615 ,2,14981,86750 ,2,14982,601215 ,2,14983,45 ,1,0,471985 ,2,14981,86955 ,2,14982,601220 ,2,14983,45 ,1,0,472380 ,2,14981,87070 ,2,14982,601225 ,2,14983,45 ,1,0,472765 ,2,14981,87170 ,2,14982,601230 ,2,14983,45 ,1,0,473020 ,2,14981,87275 ,2,14982,601235 ,2,14983,45 ,1,0,473255 ,2,14981,88225 ,2,14982,564885 ,2,14983,45 ,1,0,473475 ,2,14981,88545 ,2,14982,601240 ,2,14983,612610 ,1,0,473720 ,2,14981,88640 ,2,14982,601245 ,2,14983,612615 ,1,0,473905 ,2,14981,88780 ,2,14982,601250 ,2,14983,45 ,1,0,474375 ,2,14981,88860 ,2,14982,601290 ,2,14983,612620 ,1,0,474505 ,2,14981,91590 ,2,14982,601295 ,2,14983,45 ,1,0,475000 ,2,14981,88955 ,2,14982,601300 ,2,14983,45 ,1,0,475300 ,2,14981,88995 ,2,14982,601320 ,2,14983,45 ,1,0,475650 ,2,14981,89065 ,2,14982,601325 ,2,14983,45 ,1,0,475985 ,2,14981,89085 ,2,14982,601340 ,2,14983,45 ,1,0,476235 ,2,14981,89300 ,2,14982,601345 ,2,14983,45 ,1,0,476445 ,2,14981,89320 ,2,14982,601350 ,2,14983,45 ,1,0,476990 ,2,14981,89900 ,2,14982,601355 ,2,14983,45 ,1,0,477310 ,2,14981,89945 ,2,14982,601360 ,2,14983,45 ,1,0,477485 ,2,14981,89485 ,2,14982,601365 ,2,14983,45 ,1,0,477600 ,2,14981,89505 ,2,14982,601370 ,2,14983,45 ,1,0,477835 ,2,14981,89530 ,2,14982,601375 ,2,14983,45 ,1,0,478100 ,2,14981,89605 ,2,14982,601385 ,2,14983,45 ,1,0,478565 ,2,14981,89625 ,2,14982,601390 ,2,14983,45 ,1,0,478890 ,2,14981,89685 ,2,14982,601395 ,2,14983,45 ,1,0,479165 ,2,14981,89820 ,2,14982,601400 ,2,14983,45 ,1,0,479375 ,2,14981,89860 ,2,14982,601405 ,2,14983,45 ,1,0,479625 ,2,14981,89840 ,2,14982,601410 ,2,14983,45 ,1,0,479870 ,2,14981,89995 ,2,14982,601415 ,2,14983,45 ,1,0,480085 ,2,14981,90125 ,2,14982,601420 ,2,14983,45 ,1,0,480350 ,2,14981,90420 ,2,14982,601455 ,2,14983,45 ,1,0,480965 ,2,14981,90430 ,2,14982,601460 ,2,14983,45 ,1,0,481230 ,2,14981,90480 ,2,14982,601465 ,2,14983,45 ,1,0,481490 ,2,14981,90740 ,2,14982,601470 ,2,14983,45 ,1,0,481670 ,2,14981,90775 ,2,14982,601475 ,2,14983,45 ,1,0,482065 ,2,14981,90980 ,2,14982,601480 ,2,14983,45 ,1,0,482260 ,2,14981,91360 ,2,14982,601485 ,2,14983,45 ,1,0,482650 ,2,14981,91380 ,2,14982,601490 ,2,14983,45 ,1,0,482895 ,2,14981,91390 ,2,14982,601525 ,2,14983,45 ,1,0,483120 ,2,14981,91430 ,2,14982,601530 ,2,14983,45 ,1,0,483305 ,2,14981,91490 ,2,14982,601535 ,2,14983,45 ,1,0,483575 ,2,14981,165020 ,2,14982,601540 ,2,14983,45 ,1,0,483815 ,2,14981,91675 ,2,14982,601550 ,2,14983,45 ,1,0,484055 ,2,14981,91745 ,2,14982,601555 ,2,14983,45 ,1,0,484305 ,2,14981,91835 ,2,14982,601560 ,2,14983,45 ,1,0,484575 ,2,14981,91970 ,2,14982,601565 ,2,14983,45 ,1,0,484830 ,2,14981,91995 ,2,14982,601580 ,2,14983,45 ,1,0,485030 ,2,14981,92305 ,2,14982,601585 ,2,14983,45 ,1,0,485585 ,2,14981,92375 ,2,14982,601590 ,2,14983,45 ,1,0,485810 ,2,14981,92385 ,2,14982,601595 ,2,14983,45 ,1,0,486215 ,2,14981,92480 ,2,14982,601600 ,2,14983,45 ,1,0,486470 ,2,14981,92640 ,2,14982,601605 ,2,14983,45 ,1,0,486720 ,2,14981,93750 ,2,14982,601615 ,2,14983,45 ,1,0,486920 ,2,14981,94020 ,2,14982,601660 ,2,14983,45 ,1,0,487110 ,2,14981,94315 ,2,14982,601665 ,2,14983,45 ,1,0,487295 ,2,14981,94450 ,2,14982,601670 ,2,14983,45 ,1,0,487430 ,2,14981,94765 ,2,14982,601675 ,2,14983,45 ,1,0,487695 ,2,14981,95470 ,2,14982,601685 ,2,14983,45 ,1,0,487895 ,2,14981,95615 ,2,14982,601690 ,2,14983,45 ,1,0,488090 ,2,14981,95775 ,2,14982,601695 ,2,14983,45 ,1,0,488340 ,2,14981,97060 ,2,14982,601725 ,2,14983,45 ,1,0,488600 ,2,14981,97410 ,2,14982,601730 ,2,14983,45 ,1,0,489070 ,2,14981,97750 ,2,14982,601745 ,2,14983,45 ,1,0,489445 ,2,14981,97880 ,2,14982,601750 ,2,14983,45 ,1,0,489830 ,2,14981,97925 ,2,14982,601755 ,2,14983,45 ,1,0,490165 ,2,14981,98140 ,2,14982,601760 ,2,14983,45 ,1,0,490470 ,2,14981,97985 ,2,14982,601790 ,2,14983,45 ,1,0,490730 ,2,14981,100130 ,2,14982,601795 ,2,14983,45 ,1,0,490995 ,2,14981,100195 ,2,14982,601800 ,2,14983,45 ,1,0,491350 ,2,14981,100390 ,2,14982,601805 ,2,14983,45 ,1,0,491615 ,2,14981,100455 ,2,14982,601815 ,2,14983,612625 ,1,0,491945 ,2,14981,100495 ,2,14982,601820 ,2,14983,45 ,1,0,492390 ,2,14981,100515 ,2,14982,601825 ,2,14983,45 ,1,0,492635 ,2,14981,163805 ,2,14982,601830 ,2,14983,45 ,1,0,492940 ,2,14981,101705 ,2,14982,601875 ,2,14983,45 ,1,0,493215 ,2,14981,101835 ,2,14982,601880 ,2,14983,45 ,1,0,493530 ,2,14981,102080 ,2,14982,601885 ,2,14983,45 ,1,0,493815 ,2,14981,102880 ,2,14982,601895 ,2,14983,45 ,1,0,494155 ,2,14981,103260 ,2,14982,601900 ,2,14983,45 ,1,0,494410 ,2,14981,102985 ,2,14982,601905 ,2,14983,45 ,1,0,494725 ,2,14981,103085 ,2,14982,601920 ,2,14983,45 ,1,0,494995 ,2,14981,103115 ,2,14982,601925 ,2,14983,45 ,1,0,495340 ,2,14981,103205 ,2,14982,601930 ,2,14983,45 ,1,0,495650 ,2,14981,103360 ,2,14982,601935 ,2,14983,45 ,1,0,495925 ,2,14981,103565 ,2,14982,601950 ,2,14983,45 ,1,0,496230 ,2,14981,104540 ,2,14982,601955 ,2,14983,45 ,1,0,496535 ,2,14981,104305 ,2,14982,601965 ,2,14983,45 ,1,0,496845 ,2,14981,104910 ,2,14982,601990 ,2,14983,612630 ,1,0,497295 ,2,14981,105075 ,2,14982,568495 ,2,14983,45 ,1,0,497430 ,2,14981,105815 ,2,14982,601995 ,2,14983,612635 ,1,0,497825 ,2,14981,105940 ,2,14982,602000 ,2,14983,612640 ,1,0,498095 ,2,14981,106395 ,2,14982,602005 ,2,14983,45 ,1,0,498370 ,2,14981,106820 ,2,14982,602015 ,2,14983,45 ,1,0,498800 ,2,14981,107040 ,2,14982,602020 ,2,14983,45 ,1,0,499120 ,2,14981,107555 ,2,14982,602080 ,2,14983,45 ,1,0,499385 ,2,14981,107595 ,2,14982,602085 ,2,14983,45 ,1,0,499630 ,2,14981,107730 ,2,14982,602090 ,2,14983,45 ,1,0,499910 ,2,14981,107810 ,2,14982,602095 ,2,14983,45 ,1,0,500175 ,2,14981,107930 ,2,14982,602100 ,2,14983,45 ,1,0,500430 ,2,14981,108350 ,2,14982,602105 ,2,14983,45 ,1,0,500620 ,2,14981,108420 ,2,14982,602110 ,2,14983,45 ,1,0,501125 ,2,14981,109185 ,2,14982,602115 ,2,14983,45 ,1,0,501330 ,2,14981,108490 ,2,14982,602135 ,2,14983,45 ,1,0,501730 ,2,14981,108645 ,2,14982,602140 ,2,14983,45 ,1,0,502055 ,2,14981,108960 ,2,14982,602145 ,2,14983,45 ,1,0,502265 ,2,14981,109295 ,2,14982,602150 ,2,14983,45 ,1,0,502475 ,2,14981,109395 ,2,14982,602160 ,2,14983,45 ,1,0,502690 ,2,14981,109455 ,2,14982,602165 ,2,14983,45 ,1,0,502880 ,2,14981,110830 ,2,14982,602170 ,2,14983,45 ,1,0,503095 ,2,14981,111370 ,2,14982,602175 ,2,14983,45 ,1,0,503380 ,2,14981,110975 ,2,14982,602215 ,2,14983,45 ,1,0,503605 ,2,14981,111400 ,2,14982,602220 ,2,14983,45 ,1,0,503850 ,2,14981,111200 ,2,14982,602225 ,2,14983,45 ,1,0,504130 ,2,14981,111500 ,2,14982,602230 ,2,14983,45 ,1,0,504445 ,2,14981,111810 ,2,14982,602235 ,2,14983,45 ,1,0,504780 ,2,14981,111820 ,2,14982,602240 ,2,14983,45 ,1,0,504980 ,2,14981,111840 ,2,14982,602245 ,2,14983,45 ,1,0,505490 ,2,14981,111850 ,2,14982,602250 ,2,14983,45 ,1,0,505685 ,2,14981,112035 ,2,14982,602290 ,2,14983,45 ,1,0,505880 ,2,14981,112045 ,2,14982,602295 ,2,14983,45 ,1,0,506170 ,2,14981,112055 ,2,14982,602300 ,2,14983,45 ,1,0,506440 ,2,14981,112065 ,2,14982,602305 ,2,14983,45 ,1,0,506695 ,2,14981,112445 ,2,14982,602315 ,2,14983,45 ,1,0,506955 ,2,14981,112675 ,2,14982,602320 ,2,14983,45 ,1,0,507295 ,2,14981,112800 ,2,14982,602325 ,2,14983,45 ,1,0,507540 ,2,14981,112770 ,2,14982,602330 ,2,14983,45 ,1,0,507780 ,2,14981,112965 ,2,14982,602360 ,2,14983,45 ,1,0,507985 ,2,14981,113410 ,2,14982,602370 ,2,14983,45 ,1,0,508245 ,2,14981,113430 ,2,14982,602375 ,2,14983,45 ,1,0,508535 ,2,14981,113890 ,2,14982,570375 ,2,14983,45 ,1,0,508835 ,2,14981,113955 ,2,14982,602385 ,2,14983,45 ,1,0,509120 ,2,14981,114000 ,2,14982,602390 ,2,14983,612645 ,1,0,509370 ,2,14981,115160 ,2,14982,602395 ,2,14983,45 ,1,0,509555 ,2,14981,115255 ,2,14982,602400 ,2,14983,45 ,1,0,509930 ,2,14981,115415 ,2,14982,602435 ,2,14983,45 ,1,0,510265 ,2,14981,115590 ,2,14982,602440 ,2,14983,45 ,1,0,510455 ,2,14981,115560 ,2,14982,602445 ,2,14983,45 ,1,0,511000 ,2,14981,115655 ,2,14982,570950 ,2,14983,45 ,1,0,511255 ,2,14981,115815 ,2,14982,602450 ,2,14983,45 ,1,0,511450 ,2,14981,115930 ,2,14982,602465 ,2,14983,45 ,1,0,511830 ,2,14981,116100 ,2,14982,602470 ,2,14983,45 ,1,0,512070 ,2,14981,116220 ,2,14982,602475 ,2,14983,45 ,1,0,512410 ,2,14981,116425 ,2,14982,602480 ,2,14983,45 ,1,0,512735 ,2,14981,120870 ,2,14982,602525 ,2,14983,45 ,1,0,513080 ,2,14981,117365 ,2,14982,602530 ,2,14983,45 ,1,0,513495 ,2,14981,117405 ,2,14982,602535 ,2,14983,45 ,1,0,513825 ,2,14981,117515 ,2,14982,602540 ,2,14983,45 ,1,0,514225 ,2,14981,117545 ,2,14982,602545 ,2,14983,45 ,1,0,514970 ,2,14981,117675 ,2,14982,602550 ,2,14983,45 ,1,0,515160 ,2,14981,117740 ,2,14982,602555 ,2,14983,45 ,1,0,515345 ,2,14981,119475 ,2,14982,602560 ,2,14983,45 ,1,0,515825 ,2,14981,118695 ,2,14982,602595 ,2,14983,45 ,1,0,516010 ,2,14981,118735 ,2,14982,602600 ,2,14983,45 ,1,0,516470 ,2,14981,118745 ,2,14982,602605 ,2,14983,45 ,1,0,516655 ,2,14981,118755 ,2,14982,602615 ,2,14983,45 ,1,0,516845 ,2,14981,118635 ,2,14982,602620 ,2,14983,45 ,1,0,517040 ,2,14981,118850 ,2,14982,602630 ,2,14983,45 ,1,0,517240 ,2,14981,119130 ,2,14982,602640 ,2,14983,45 ,1,0,517420 ,2,14981,120020 ,2,14982,602650 ,2,14983,45 ,1,0,517675 ,2,14981,119940 ,2,14982,602655 ,2,14983,612685 ,1,0,517955 ,2,14981,120325 ,2,14982,602670 ,2,14983,45 ,1,0,518140 ,2,14981,120615 ,2,14982,602675 ,2,14983,45 ,1,0,518330 ,2,14981,120635 ,2,14982,602680 ,2,14983,45 ,1,0,518580 ,2,14981,120890 ,2,14982,602685 ,2,14983,45 ,1,0,518750 ,2,14981,121085 ,2,14982,602730 ,2,14983,45 ,1,0,518935 ,2,14981,121095 ,2,14982,602735 ,2,14983,45 ,1,0,519340 ,2,14981,121690 ,2,14982,602740 ,2,14983,45 ,1,0,519515 ,2,14981,121765 ,2,14982,602745 ,2,14983,45 ,1,0,519705 ,2,14981,122320 ,2,14982,602750 ,2,14983,612690 ,1,0,519910 ,2,14981,131865 ,2,14982,602755 ,2,14983,45 ,1,0,520335 ,2,14981,122915 ,2,14982,602760 ,2,14983,45 ,1,0,520825 ,2,14981,122945 ,2,14982,602765 ,2,14983,45 ,1,0,521265 ,2,14981,123625 ,2,14982,602780 ,2,14983,45 ,1,0,521465 ,2,14981,123820 ,2,14982,602785 ,2,14983,45 ,1,0,521655 ,2,14981,124085 ,2,14982,602790 ,2,14983,45 ,1,0,521930 ,2,14981,124525 ,2,14982,602795 ,2,14983,45 ,1,0,522200 ,2,14981,124700 ,2,14982,602805 ,2,14983,45 ,1,0,522415 ,2,14981,125035 ,2,14982,602815 ,2,14983,45 ,1,0,522680 ,2,14981,125085 ,2,14982,602865 ,2,14983,45 ,1,0,522970 ,2,14981,125420 ,2,14982,602870 ,2,14983,45 ,1,0,523175 ,2,14981,125465 ,2,14982,602875 ,2,14983,45 ,1,0,523345 ,2,14981,126105 ,2,14982,602880 ,2,14983,45 ,1,0,523540 ,2,14981,129325 ,2,14982,602890 ,2,14983,45 ,1,0,523970 ,2,14981,126500 ,2,14982,602895 ,2,14983,45 ,1,0,524265 ,2,14981,126885 ,2,14982,602900 ,2,14983,45 ,1,0,524650 ,2,14981,127055 ,2,14982,573760 ,2,14983,45 ,1,0,524975 ,2,14981,127805 ,2,14982,602935 ,2,14983,45 ,1,0,525270 ,2,14981,128485 ,2,14982,602940 ,2,14983,45 ,1,0,525655 ,2,14981,128720 ,2,14982,602950 ,2,14983,45 ,1,0,526055 ,2,14981,129070 ,2,14982,602965 ,2,14983,45 ,1,0,526250 ,2,14981,130070 ,2,14982,602970 ,2,14983,45 ,1,0,526735 ,2,14981,129175 ,2,14982,602975 ,2,14983,45 ,1,0,527005 ,2,14981,129420 ,2,14982,602980 ,2,14983,45 ,1,0,527250 ,2,14981,129500 ,2,14982,603005 ,2,14983,45 ,1,0,527435 ,2,14981,129855 ,2,14982,603015 ,2,14983,612695 ,1,0,527665 ,2,14981,130415 ,2,14982,603025 ,2,14983,45 ,1,0,527930 ,2,14981,130430 ,2,14982,603030 ,2,14983,45 ,1,0,528245 ,2,14981,130440 ,2,14982,603035 ,2,14983,45 ,1,0,528380 ,2,14981,130450 ,2,14982,603040 ,2,14983,45 ,1,0,528565 ,2,14981,130460 ,2,14982,603065 ,2,14983,45 ,1,0,528740 ,2,14981,130795 ,2,14982,603070 ,2,14983,45 ,1,0,529040 ,2,14981,131720 ,2,14982,603075 ,2,14983,45 ,1,0,529365 ,2,14981,131770 ,2,14982,603080 ,2,14983,45 ,1,0,529615 ,2,14981,132105 ,2,14982,603090 ,2,14983,45 ,1,0,529895 ,2,14981,132360 ,2,14982,603095 ,2,14983,45 ,1,0,530165 ,2,14981,132575 ,2,14982,603100 ,2,14983,45 ,1,0,530435 ,2,14981,132470 ,2,14982,603135 ,2,14983,45 ,1,0,530690 ,2,14981,132970 ,2,14982,603140 ,2,14983,45 ,1,0,530975 ,2,14981,133180 ,2,14982,603145 ,2,14983,45 ,1,0,531255 ,2,14981,133050 ,2,14982,575265 ,2,14983,45 ,1,0,531495 ,2,14981,133160 ,2,14982,603150 ,2,14983,45 ,1,0,532020 ,2,14981,133495 ,2,14982,603165 ,2,14983,45 ,1,0,532575 ,2,14981,133590 ,2,14982,603170 ,2,14983,45 ,1,0,532855 ,2,14981,133660 ,2,14982,603175 ,2,14983,45 ,1,0,533110 ,2,14981,133770 ,2,14982,603180 ,2,14983,45 ,1,0,533380 ,2,14981,134385 ,2,14982,603200 ,2,14983,45 ,1,0,533580 ,2,14981,134495 ,2,14982,603205 ,2,14983,45 ,1,0,533855 ,2,14981,134595 ,2,14982,603210 ,2,14983,45 ,1,0,534265 ,2,14981,134720 ,2,14982,603215 ,2,14983,45 ,1,0,534520 ,2,14981,134810 ,2,14982,603220 ,2,14983,45 ,1,0,534720 ,2,14981,134855 ,2,14982,603225 ,2,14983,45 ,1,0,535175 ,2,14981,137145 ,2,14982,603230 ,2,14983,45 ,1,0,535350 ,2,14981,137535 ,2,14982,603235 ,2,14983,45 ,1,0,535610 ,2,14981,137545 ,2,14982,603265 ,2,14983,45 ,1,0,536010 ,2,14981,137555 ,2,14982,603270 ,2,14983,45 ,1,0,536380 ,2,14981,137820 ,2,14982,603275 ,2,14983,45 ,1,0,536755 ,2,14981,137875 ,2,14982,603280 ,2,14983,45 ,1,0,537050 ,2,14981,137885 ,2,14982,603290 ,2,14983,45 ,1,0,537395 ,2,14981,137895 ,2,14982,603295 ,2,14983,45 ,1,0,537715 ,2,14981,138080 ,2,14982,603300 ,2,14983,45 ,1,0,538120 ,2,14981,138450 ,2,14982,576600 ,2,14983,45 ,1,0,538530 ,2,14981,140035 ,2,14982,603305 ,2,14983,45 ,1,0,538920 ,2,14981,140060 ,2,14982,603335 ,2,14983,45 ,1,0,539205 ,2,14981,140250 ,2,14982,603340 ,2,14983,45 ,1,0,539340 ,2,14981,140240 ,2,14982,603345 ,2,14983,45 ,1,0,539655 ,2,14981,140185 ,2,14982,603350 ,2,14983,45 ,1,0,540005 ,2,14981,140495 ,2,14982,603365 ,2,14983,45 ,1,0,540355 ,2,14981,140290 ,2,14982,603370 ,2,14983,45 ,1,0,540625 ,2,14981,140310 ,2,14982,603375 ,2,14983,45 ,1,0,540820 ,2,14981,140365 ,2,14982,603380 ,2,14983,45 ,1,0,541040 ,2,14981,140850 ,2,14982,577180 ,2,14983,45 ,1,0,541460 ,2,14981,103270 ,2,14982,577180 ,2,14983,45 ,1,0,541910 ,2,14981,141005 ,2,14982,603410 ,2,14983,45 ,1,0,542195 ,2,14981,141625 ,2,14982,603415 ,2,14983,45 ,1,0,542390 ,2,14981,141705 ,2,14982,603420 ,2,14983,45 ,1,0,542965 ,2,14981,141715 ,2,14982,603425 ,2,14983,45 ,1,0,543280 ,2,14981,142380 ,2,14982,577480 ,2,14983,45 ,1,0,543615 ,2,14981,143020 ,2,14982,603430 ,2,14983,45 ,1,0,543795 ,2,14981,143440 ,2,14982,603435 ,2,14983,45 ,1,0,544125 ,2,14981,144240 ,2,14982,603440 ,2,14983,45 ,1,0,544545 ,2,14981,143505 ,2,14982,603445 ,2,14983,45 ,1,0,544960 ,2,14981,143715 ,2,14982,603495 ,2,14983,45 ,1,0,545400 ,2,14981,145855 ,2,14982,603500 ,2,14983,45 ,1,0,545660 ,2,14981,143905 ,2,14982,603505 ,2,14983,45 ,1,0,545830 ,2,14981,144200 ,2,14982,603510 ,2,14983,45 ,1,0,546010 ,2,14981,146300 ,2,14982,603525 ,2,14983,45 ,1,0,546215 ,2,14981,145680 ,2,14982,603530 ,2,14983,45 ,1,0,546405 ,2,14981,144345 ,2,14982,603535 ,2,14983,45 ,1,0,546610 ,2,14981,145290 ,2,14982,603540 ,2,14983,45 ,1,0,546875 ,2,14981,146015 ,2,14982,603575 ,2,14983,45 ,1,0,547040 ,2,14981,145615 ,2,14982,603580 ,2,14983,45 ,1,0,547340 ,2,14981,145980 ,2,14982,578065 ,2,14983,45 ,1,0,547650 ,2,14981,145995 ,2,14982,603585 ,2,14983,45 ,1,0,547975 ,2,14981,145740 ,2,14982,603590 ,2,14983,45 ,1,0,548200 ,2,14981,146230 ,2,14982,603595 ,2,14983,45 ,1,0,548415 ,2,14981,147090 ,2,14982,603600 ,2,14983,45 ,1,0,548590 ,2,14981,146640 ,2,14982,603605 ,2,14983,45 ,1,0,548885 ,2,14981,146665 ,2,14982,603610 ,2,14983,45 ,1,0,549130 ,2,14981,147070 ,2,14982,603630 ,2,14983,45 ,1,0,549460 ,2,14981,146740 ,2,14982,603635 ,2,14983,45 ,1,0,549730 ,2,14981,146770 ,2,14982,603640 ,2,14983,45 ,1,0,550105 ,2,14981,147160 ,2,14982,603645 ,2,14983,45 ,1,0,550540 ,2,14981,146830 ,2,14982,603655 ,2,14983,45 ,1,0,550950 ,2,14981,146980 ,2,14982,603660 ,2,14983,45 ,1,0,551120 ,2,14981,146875 ,2,14982,603665 ,2,14983,45 ,1,0,551430 ,2,14981,147080 ,2,14982,603670 ,2,14983,45 ,1,0,551760 ,2,14981,147140 ,2,14982,603710 ,2,14983,45 ,1,0,552050 ,2,14981,147055 ,2,14982,603715 ,2,14983,45 ,1,0,552440 ,2,14981,150240 ,2,14982,603720 ,2,14983,45 ,1,0,552925 ,2,14981,147370 ,2,14982,603725 ,2,14983,45 ,1,0,553250 ,2,14981,147490 ,2,14982,578280 ,2,14983,45 ,1,0,553595 ,2,14981,147700 ,2,14982,603735 ,2,14983,45 ,1,0,553925 ,2,14981,147710 ,2,14982,603740 ,2,14983,45 ,1,0,554320 ,2,14981,147720 ,2,14982,603745 ,2,14983,45 ,1,0,554735 ,2,14981,147730 ,2,14982,603750 ,2,14983,45 ,1,0,554915 ,2,14981,147740 ,2,14982,603780 ,2,14983,45 ,1,0,555170 ,2,14981,147790 ,2,14982,603785 ,2,14983,45 ,1,0,555365 ,2,14981,150130 ,2,14982,603790 ,2,14983,45 ,1,0,555555 ,2,14981,148595 ,2,14982,603795 ,2,14983,45 ,1,0,555900 ,2,14981,148060 ,2,14982,603800 ,2,14983,45 ,1,0,556150 ,2,14981,148585 ,2,14982,603805 ,2,14983,45 ,1,0,556355 ,2,14981,148635 ,2,14982,603810 ,2,14983,45 ,1,0,556610 ,2,14981,148730 ,2,14982,603815 ,2,14983,45 ,1,0,556965 ,2,14981,148935 ,2,14982,603840 ,2,14983,45 ,1,0,557390 ,2,14981,149415 ,2,14982,603845 ,2,14983,45 ,1,0,557880 ,2,14981,150355 ,2,14982,603850 ,2,14983,45 ,1,0,558325 ,2,14981,150260 ,2,14982,603855 ,2,14983,45 ,1,0,558525 ,2,14981,150295 ,2,14982,603870 ,2,14983,45 ,1,0,558745 ,2,14981,150450 ,2,14982,603875 ,2,14983,45 ,1,0,559120 ,2,14981,150460 ,2,14982,603880 ,2,14983,45 ,1,0,559220 ,2,14981,150470 ,2,14982,603885 ,2,14983,45 ,1,0,559440 ,2,14981,150640 ,2,14982,603920 ,2,14983,45 ,1,0,559705 ,2,14981,150650 ,2,14982,603925 ,2,14983,45 ,1,0,559955 ,2,14981,150665 ,2,14982,603930 ,2,14983,45 ,1,0,560305 ,2,14981,150695 ,2,14982,603935 ,2,14983,45 ,1,0,560500 ,2,14981,151175 ,2,14982,603945 ,2,14983,45 ,1,0,560740 ,2,14981,151430 ,2,14982,603950 ,2,14983,45 ,1,0,561000 ,2,14981,151520 ,2,14982,603955 ,2,14983,45 ,1,0,561280 ,2,14981,151540 ,2,14982,603960 ,2,14983,45 ,1,0,561540 ,2,14981,152315 ,2,14982,603995 ,2,14983,45 ,1,0,561815 ,2,14981,151715 ,2,14982,604000 ,2,14983,45 ,1,0,562095 ,2,14981,151785 ,2,14982,604005 ,2,14983,45 ,1,0,562350 ,2,14981,152325 ,2,14982,604010 ,2,14983,45 ,1,0,562635 ,2,14981,152110 ,2,14982,604025 ,2,14983,45 ,1,0,562960 ,2,14981,151960 ,2,14982,604030 ,2,14983,45 ,1,0,563150 ,2,14981,152380 ,2,14982,604035 ,2,14983,45 ,1,0,563345 ,2,14981,152745 ,2,14982,604040 ,2,14983,45 ,1,0,563905 ,2,14981,153040 ,2,14982,604075 ,2,14983,45 ,1,0,564475 ,2,14981,153495 ,2,14982,579270 ,2,14983,45 ,1,0,564680 ,2,14981,153565 ,2,14982,604080 ,2,14983,45 ,1,0,564865 ,2,14981,153465 ,2,14982,604085 ,2,14983,45 ,1,0,565065 ,2,14981,153505 ,2,14982,604090 ,2,14983,45 ,1,0,565370 ,2,14981,153625 ,2,14982,604095 ,2,14983,45 ,1,0,565635 ,2,14981,154000 ,2,14982,604100 ,2,14983,45 ,1,0,565895 ,2,14981,154015 ,2,14982,604105 ,2,14983,45 ,1,0,566160 ,2,14981,154025 ,2,14982,604110 ,2,14983,45 ,1,0,566495 ,2,14981,154035 ,2,14982,604135 ,2,14983,45 ,1,0,566885 ,2,14981,153970 ,2,14982,604140 ,2,14983,45 ,1,0,567055 ,2,14981,154350 ,2,14982,604145 ,2,14983,45 ,1,0,567365 ,2,14981,154360 ,2,14982,604150 ,2,14983,45 ,1,0,567565 ,2,14981,154370 ,2,14982,604165 ,2,14983,45 ,1,0,567765 ,2,14981,154405 ,2,14982,604170 ,2,14983,45 ,1,0,567975 ,2,14981,154255 ,2,14982,604175 ,2,14983,45 ,1,0,568200 ,2,14981,154455 ,2,14982,604180 ,2,14983,45 ,1,0,568470 ,2,14981,154670 ,2,14982,604190 ,2,14983,45 ,1,0,568755 ,2,14981,155605 ,2,14982,604195 ,2,14983,45 ,1,0,568955 ,2,14981,154940 ,2,14982,604200 ,2,14983,45 ,1,0,569090 ,2,14981,154845 ,2,14982,604205 ,2,14983,45 ,1,0,569490 ,2,14981,155520 ,2,14982,604210 ,2,14983,45 ,1,0,569775 ,2,14981,155810 ,2,14982,604215 ,2,14983,45 ,1,0,570005 ,2,14981,155820 ,2,14982,604220 ,2,14983,45 ,1,0,570500 ,2,14981,155830 ,2,14982,604225 ,2,14983,45 ,1,0,570710 ,2,14981,155840 ,2,14982,604255 ,2,14983,45 ,1,0,570915 ,2,14981,156030 ,2,14982,604260 ,2,14983,45 ,1,0,571085 ,2,14981,156160 ,2,14982,604265 ,2,14983,45 ,1,0,571425 ,2,14981,156315 ,2,14982,604270 ,2,14983,45 ,1,0,571670 ,2,14981,156250 ,2,14982,604280 ,2,14983,45 ,1,0,571990 ,2,14981,156295 ,2,14982,604285 ,2,14983,45 ,1,0,572265 ,2,14981,156405 ,2,14982,604290 ,2,14983,45 ,1,0,572470 ,2,14981,156595 ,2,14982,604295 ,2,14983,45 ,1,0,572725 ,2,14981,156915 ,2,14982,604340 ,2,14983,45 ,1,0,573090 ,2,14981,157005 ,2,14982,604345 ,2,14983,45 ,1,0,573475 ,2,14981,157095 ,2,14982,604350 ,2,14983,45 ,1,0,573725 ,2,14981,157255 ,2,14982,604355 ,2,14983,45 ,1,0,574000 ,2,14981,157290 ,2,14982,604365 ,2,14983,45 ,1,0,574200 ,2,14981,157300 ,2,14982,604370 ,2,14983,45 ,1,0,574450 ,2,14981,157310 ,2,14982,604375 ,2,14983,45 ,1,0,574650 ,2,14981,157510 ,2,14982,604380 ,2,14983,45 ,1,0,574900 ,2,14981,157750 ,2,14982,604410 ,2,14983,45 ,1,0,575240 ,2,14981,157945 ,2,14982,604415 ,2,14983,45 ,1,0,575495 ,2,14981,158120 ,2,14982,604420 ,2,14983,45 ,1,0,575685 ,2,14981,158325 ,2,14982,604425 ,2,14983,612700 ,1,0,575945 ,2,14981,159465 ,2,14982,580280 ,2,14983,45 ,1,0,576215 ,2,14981,160030 ,2,14982,604440 ,2,14983,45 ,1,0,576380 ,2,14981,160145 ,2,14982,604445 ,2,14983,45 ,1,0,576765 ,2,14981,160265 ,2,14982,604450 ,2,14983,45 ,1,0,577130 ,2,14981,160380 ,2,14982,604455 ,2,14983,45 ,1,0,577505 ,2,14981,160560 ,2,14982,604465 ,2,14983,45 ,1,0,577715 ,2,14981,160810 ,2,14982,604470 ,2,14983,45 ,1,0,578170 ,2,14981,160970 ,2,14982,604475 ,2,14983,45 ,1,0,578365 ,2,14981,160940 ,2,14982,604480 ,2,14983,45 ,1,0,578580 ,2,14981,161075 ,2,14982,604485 ,2,14983,45 ,1,0,578790 ,2,14981,161390 ,2,14982,580605 ,2,14983,45 ,1,0,579240 ,2,14981,161920 ,2,14982,604490 ,2,14983,45 ,1,0,579450 ,2,14981,106475 ,2,14982,604495 ,2,14983,45 ,1,0,579730 ,2,14981,162475 ,2,14982,604500 ,2,14983,45 ,1,0,579980 ,2,14981,162675 ,2,14982,604520 ,2,14983,45 ,1,0,580240 ,2,14981,163085 ,2,14982,604525 ,2,14983,45 ,1,0,580495 ,2,14981,163200 ,2,14982,604530 ,2,14983,45 ,1,0,580750 ,2,14981,163150 ,2,14982,604535 ,2,14983,612710 ,1,0,581085 ,2,14981,163670 ,2,14982,604545 ,2,14983,45 ,1,0,581285 ,2,14981,163760 ,2,14982,604550 ,2,14983,45 ,1,0,581800 ,2,14981,163815 ,2,14982,604555 ,2,14983,45 ,1,0,582085 ,2,14981,163825 ,2,14982,604560 ,2,14983,45 ,1,0,582420 ,2,14981,163960 ,2,14982,604595 ,2,14983,45 ,1,0,582620 ,2,14981,164405 ,2,14982,604605 ,2,14983,45 ,1,0,583205 ,2,14981,164260 ,2,14982,604610 ,2,14983,45 ,1,0,583410 ,2,14981,164295 ,2,14982,604615 ,2,14983,45 ,1,0,583645 ,2,14981,164325 ,2,14982,604620 ,2,14983,45 ,1,0,583920 ,2,14981,164380 ,2,14982,604625 ,2,14983,45 ,1,0,584185 ,2,14981,164435 ,2,14982,604630 ,2,14983,45 ,1,0,584375 ,2,14981,164945 ,2,14982,604675 ,2,14983,45 ,1,0,584665 ,2,14981,164845 ,2,14982,604680 ,2,14983,45 ,1,0,584905 ,2,14981,164915 ,2,14982,604685 ,2,14983,45 ,1,0,585110 ,2,14981,165215 ,2,14982,604690 ,2,14983,45 ,1,0,585690 ,2,14981,165225 ,2,14982,604700 ,2,14983,45 ,1,0,585945 ,2,14981,165235 ,2,14982,604705 ,2,14983,45 ,1,0,586285 ,2,14981,165345 ,2,14982,604710 ,2,14983,45 ,1,0,586555 ,2,14981,165430 ,2,14982,604715 ,2,14983,45 ,1,0,586815 ,2,14981,165700 ,2,14982,604745 ,2,14983,45 ,1,0,587220 ,2,14981,165660 ,2,14982,604750 ,2,14983,45 ,1,0,587360 ,2,14981,165880 ,2,14982,604755 ,2,14983,612715 ,1,0,587705 ,2,14981,166015 ,2,14982,604760 ,2,14983,45 ,1,0,587920 ,2,14981,166060 ,2,14982,604765 ,2,14983,45 ,1,0,588115 ,2,14981,166855 ,2,14982,581775 ,2,14983,45 ,1,0,588575 ,2,14981,166990 ,2,14982,604770 ,2,14983,612720 ,1,0,588790 ,2,14981,167615 ,2,14982,604780 ,2,14983,45 ,1,0,589320 ,2,14981,167835 ,2,14982,604800 ,2,14983,45 ,1,0,589665 ,2,14981,168060 ,2,14982,604805 ,2,14983,45 ,1,0,590100 ,2,14981,168320 ,2,14982,604810 ,2,14983,45 ,1,0,590480 ,2,14981,168905 ,2,14982,604815 ,2,14983,45 ,1,0,590865 ,2,14981,171700 ,2,14982,604820 ,2,14983,45 ,1,0,591065 ,2,14981,171945 ,2,14982,604825 ,2,14983,45 ,1,0,591505 ,2,14981,173625 ,2,14982,604830 ,2,14983,612725 ,1,0,591780 ,2,14981,174095 ,2,14982,604845 ,2,14983,612735 ,1,0,592165 ,2,14981,174180 ,2,14982,604850 ,2,14983,612740 ,1,0,592505 ,2,14981,174275 ,2,14982,604855 ,2,14983,612745 ,1,0,592805 ,2,14981,174355 ,2,14982,604860 ,2,14983,612750 ,1,0,593190 ,2,14981,174420 ,2,14982,604865 ,2,14983,612755 ,1,0,593695 ,2,14981,174510 ,2,14982,604870 ,2,14983,612760 ,1,0,593895 ,2,14981,174595 ,2,14982,604875 ,2,14983,612765 ,1,0,594105 ,2,14981,174715 ,2,14982,604880 ,2,14983,612770 ,1,0,594380 ,2,14981,174785 ,2,14982,604915 ,2,14983,612795 ,1,0,594590 ,2,14981,174855 ,2,14982,604920 ,2,14983,612800 ,1,0,594975 ,2,14981,174950 ,2,14982,604925 ,2,14983,612805 ,1,0,595210 ,2,14981,175030 ,2,14982,604930 ,2,14983,612810 ,1,0,595535 ,2,14981,175100 ,2,14982,604935 ,2,14983,612820 ,1,0,595865 ,2,14981,175200 ,2,14982,604940 ,2,14983,612825 ,1,0,596245 ,2,14981,175280 ,2,14982,604945 ,2,14983,612830 ,1,0,596505 ,2,14981,175365 ,2,14982,604950 ,2,14983,612835 ,1,0,596700 ,2,14981,175425 ,2,14982,604975 ,2,14983,612860 ,1,0,596925 ,2,14981,175525 ,2,14982,604980 ,2,14983,612865 ,1,0,597130 ,2,14981,175595 ,2,14982,604985 ,2,14983,612870 ,1,0,597500 ,2,14981,175675 ,2,14982,604990 ,2,14983,612875 ,1,0,597790 ,2,14981,175735 ,2,14982,604995 ,2,14983,612885 ,1,0,598000 ,2,14981,175820 ,2,14982,605000 ,2,14983,612890 ,1,0,598250 ,2,14981,175915 ,2,14982,605005 ,2,14983,612895 ,1,0,598550 ,2,14981,176005 ,2,14982,605010 ,2,14983,612900 ,1,0,598745 ,2,14981,176075 ,2,14982,605035 ,2,14983,612925 ,1,0,599205 ,2,14981,176160 ,2,14982,605040 ,2,14983,612930 ,1,0,599670 ,2,14981,176235 ,2,14982,605045 ,2,14983,612935 ,1,0,599925 ,2,14981,176330 ,2,14982,605050 ,2,14983,612940 ,1,0,600225 ,2,14981,176405 ,2,14982,605060 ,2,14983,612945 ,1,0,600495 ,2,14981,176495 ,2,14982,605065 ,2,14983,612950 ,1,0,600690 ,2,14981,176570 ,2,14982,605070 ,2,14983,612955 ,1,0,600945 ,2,14981,176675 ,2,14982,605075 ,2,14983,612960 ,1,0,601335 ,2,14981,176735 ,2,14982,605120 ,2,14983,612985 ,1,0,601630 ,2,14981,176830 ,2,14982,605125 ,2,14983,612990 ,1,0,601975 ,2,14981,176910 ,2,14982,605130 ,2,14983,612995 ,1,0,602195 ,2,14981,177005 ,2,14982,605135 ,2,14983,613000 ,1,0,602570 ,2,14981,177070 ,2,14982,605150 ,2,14983,613005 ,1,0,602990 ,2,14981,177145 ,2,14982,605155 ,2,14983,613010 ,1,0,603190 ,2,14981,177225 ,2,14982,605160 ,2,14983,613015 ,1,0,603560 ,2,14981,177320 ,2,14982,605165 ,2,14983,613020 ,1,0,603765 ,2,14981,177385 ,2,14982,605195 ,2,14983,613045 ,1,0,603970 ,2,14981,180590 ,2,14982,605210 ,2,14983,613050 ,1,0,604310 ,2,14981,180610 ,2,14982,605220 ,2,14983,613055 ,1,0,604580 ,2,14981,180840 ,2,14982,605225 ,2,14983,45 ,1,0,604895 ,2,14981,180850 ,2,14982,605230 ,2,14983,45 ,1,0,605100 ,2,14981,180940 ,2,14982,605235 ,2,14983,45 ,1,0,605310 ,2,14981,181475 ,2,14982,605255 ,2,14983,613060 ,1,0,605585 ,2,14981,181515 ,2,14982,605260 ,2,14983,613070 ,1,0,605830 ,2,14981,181720 ,2,14982,605265 ,2,14983,45 ,1,0,606050 ,2,14981,181970 ,2,14982,605270 ,2,14983,613075 ,1,0,606365 ,2,14981,182775 ,2,14982,605275 ,2,14983,45 ,1,0,606560 ,2,14981,183030 ,2,14982,605280 ,2,14983,45 ,1,0,607130 ,2,14981,183230 ,2,14982,605285 ,2,14983,45 ,1,0,607450 ,2,14981,183485 ,2,14982,605290 ,2,14983,45 ,1,0,607745 ,2,14981,183685 ,2,14982,605325 ,2,14983,45 ,1,0,608000 ,2,14981,183950 ,2,14982,605330 ,2,14983,45 ,1,0,608235 ,2,14981,184130 ,2,14982,605335 ,2,14983,45 ,1,0,608440 ,2,14981,184400 ,2,14982,605340 ,2,14983,45 ,1,0,608790 ,2,14981,184605 ,2,14982,605345 ,2,14983,45 ,1,0,608985 ,2,14981,184865 ,2,14982,605350 ,2,14983,45 ,1,0,609300 ,2,14981,185070 ,2,14982,605355 ,2,14983,45 ,1,0,609610 ,2,14981,185340 ,2,14982,605360 ,2,14983,45 ,1,0,609870 ,2,14981,185510 ,2,14982,605385 ,2,14983,45 ,1,0,610130 ,2,14981,185770 ,2,14982,605390 ,2,14983,45 ,1,0,610390 ,2,14981,187495 ,2,14982,605395 ,2,14983,45 ,1,0,610655 ,2,14981,187505 ,2,14982,605400 ,2,14983,45 ,1,0,610950 ,2,14981,187515 ,2,14982,605410 ,2,14983,45 ,1,0,611215 ,2,14981,189030 ,2,14982,585800 ,2,14983,613080 ,1,0,611535 ,2,14981,189265 ,2,14982,585845 ,2,14983,613085 ,1,0,611910 ,2,14981,189480 ,2,14982,605425 ,2,14983,45 ,1,0,612185 ,2,14981,190295 ,2,14982,605460 ,2,14983,45 ,1,0,612425 ,2,14981,190415 ,2,14982,605465 ,2,14983,45 ,1,0,612655 ,2,14981,190550 ,2,14982,605470 ,2,14983,45 ,1,0,612845 ,2,14981,190505 ,2,14982,605475 ,2,14983,45 ,1,0,613100 ,2,14981,190745 ,2,14982,605500 ,2,14983,45 ,1,0,613310 ,2,14981,190765 ,2,14982,605505 ,2,14983,45 ,1,0,613575 ,2,14981,190775 ,2,14982,605510 ,2,14983,45 ,1,0,613745 ,2,14981,190785 ,2,14982,605515 ,2,14983,45 ,1,0,614175 ,2,14981,190870 ,2,14982,605530 ,2,14983,45 ,1,0,614500 ,2,14981,191010 ,2,14982,605535 ,2,14983,45 ,1,0,614745 ,2,14981,191070 ,2,14982,605540 ,2,14983,45 ,1,0,615055 ,2,14981,191215 ,2,14982,605545 ,2,14983,45 ,1,0,615255 ,2,14981,191280 ,2,14982,605555 ,2,14983,45 ,1,0,615625 ,2,14981,191440 ,2,14982,605560 ,2,14983,45 ,1,0,615855 ,2,14981,191495 ,2,14982,605565 ,2,14983,45 ,1,0,616145 ,2,14981,191615 ,2,14982,605570 ,2,14983,45 ,1,0,616320 ,2,14981,191625 ,2,14982,605600 ,2,14983,45 ,1,0,616775 ,2,14981,191660 ,2,14982,605605 ,2,14983,45 ,1,0,617090 ,2,14981,194205 ,2,14982,605610 ,2,14983,45 ,1,0,617385 ,2,14981,194385 ,2,14982,605615 ,2,14983,45 ,1,0,617710 ,2,14981,194395 ,2,14982,605620 ,2,14983,45 ,1,0,618145 ,2,14981,194405 ,2,14982,605625 ,2,14983,45 ,1,0,618385 ,2,14981,194740 ,2,14982,605630 ,2,14983,45 ,1,0,618720 ,2,14981,194965 ,2,14982,605635 ,2,14983,45 ,1,0,618905 ,2,14981,194975 ,2,14982,605650 ,2,14983,45 ,1,0,619185 ,2,14981,194985 ,2,14982,605655 ,2,14983,45 ,1,0,619545 ,2,14981,195630 ,2,14982,605660 ,2,14983,45 ,1,0,619725 ,2,14981,195640 ,2,14982,605665 ,2,14983,45 ,1,0,619965 ,2,14981,196205 ,2,14982,587000 ,2,14983,45 ,1,0,620255 ,2,14981,196290 ,2,14982,605670 ,2,14983,45 ,1,0,620545 ,2,14981,196570 ,2,14982,605675 ,2,14983,45 ,1,0,620725 ,2,14981,196580 ,2,14982,605680 ,2,14983,45 ,1,0,621080 ,2,14981,196805 ,2,14982,605685 ,2,14983,45 ,1,0,621440 ,2,14981,197390 ,2,14982,605720 ,2,14983,45 ,1,0,621735 ,2,14981,197865 ,2,14982,605730 ,2,14983,45 ,1,0,621915 ,2,14981,198790 ,2,14982,605735 ,2,14983,45 ,1,0,622210 ,2,14981,199330 ,2,14982,588030 ,2,14983,45 ,1,0,622560 ,2,14981,199350 ,2,14982,605740 ,2,14983,45 ,1,0,623035 ,2,14981,199420 ,2,14982,605745 ,2,14983,45 ,1,0,623470 ,2,14981,199430 ,2,14982,605750 ,2,14983,45 ,1,0,623985 ,2,14981,199580 ,2,14982,605775 ,2,14983,45 ,1,0,624320 ,2,14981,199590 ,2,14982,605780 ,2,14983,45 ,1,0,624690 ,2,14981,200730 ,2,14982,605785 ,2,14983,45 ,1,0,624940 ,2,14981,201250 ,2,14982,605790 ,2,14983,45 ,1,0,625200 ,2,14981,201350 ,2,14982,605805 ,2,14983,45 ,1,0,625510 ,2,14981,203100 ,2,14982,605815 ,2,14983,45 ,1,0,625700 ,2,14981,191315 ,2,14982,570950 ,2,14983,45 ,1,0,625975 ,2,14981,148285 ,2,14982,576600 ,2,14983,45 ,1,0,626285 ,2,14981,204020 ,2,14982,605820 ,2,14983,45 ,1,0,626580 ,2,14981,204090 ,2,14982,605845 ,2,14983,45 ,1,0,626935 ,2,14981,204455 ,2,14982,605850 ,2,14983,45 ,1,0,627265 ,2,14981,204530 ,2,14982,605855 ,2,14983,45 ,1,0,627585 ,2,14981,204560 ,2,14982,605860 ,2,14983,45 ,1,0,627875 ,2,14981,204695 ,2,14982,605870 ,2,14983,45 ,1,0,628155 ,2,14981,204900 ,2,14982,605875 ,2,14983,45 ,1,0,628575 ,2,14981,205125 ,2,14982,605880 ,2,14983,45 ,1,0,628885 ,2,14981,205430 ,2,14982,589585 ,2,14983,45 ,1,0,629200 ,2,14981,205470 ,2,14982,570375 ,2,14983,45 ,1,0,629470 ,2,14981,205620 ,2,14982,605885 ,2,14983,613105 ,1,0,629785 ,2,14981,206275 ,2,14982,605920 ,2,14983,45 ,1,0,630030 ,2,14981,171200 ,2,14982,590010 ,2,14983,45 ,1,0,630410 ,2,14981,57960 ,2,14982,590010 ,2,14983,45 ,1,0,630590 ,2,14981,144580 ,2,14982,590015 ,2,14983,45 ,1,0,630800 ,2,14981,67840 ,2,14982,590225 ,2,14983,45 ,1,0,630985 ,2,14981,58335 ,2,14982,590225 ,2,14983,45 ,1,0,631385 ,2,14981,67840 ,2,14982,590225 ,2,14983,45 ,1,0,631575 ,2,14981,71255 ,2,14982,590315 ,2,14983,45 ,1,0,631780 ,2,14981,136600 ,2,14982,590380 ,2,14983,45 ,1,0,631970 ,2,14981,125165 ,2,14982,590380 ,2,14983,45 ,1,0,632255 ,2,14981,136710 ,2,14982,590380 ,2,14983,45 ,1,0,632575 ,2,14981,136580 ,2,14982,590380 ,2,14983,45 ,1,0,632900 ,2,14981,104145 ,2,14982,590390 ,2,14983,45 ,1,0,633195 ,2,14981,90875 ,2,14982,560425 ,2,14983,45 ,1,0,633525 ,2,14981,209785 ,2,14982,605925 ,2,14983,45 ,1,0,633810 ,2,14981,194550 ,2,14982,590660 ,2,14983,45 ,1,0,634070 ,2,14981,194425 ,2,14982,590660 ,2,14983,45 ,1,0,634345 ,2,14981,193555 ,2,14982,590665 ,2,14983,45 ,1,0,634620 ,2,14981,194505 ,2,14982,590695 ,2,14983,45 ,1,0,634860 ,2,14981,194540 ,2,14982,590695 ,2,14983,45 ,1,0,635190 ,2,14981,194595 ,2,14982,590660 ,2,14983,45 ,1,0,635495 ,2,14981,194530 ,2,14982,590660 ,2,14983,45 ,1,0,635810 ,2,14981,194955 ,2,14982,590705 ,2,14983,45 ,1,0,636085 ,2,14981,194385 ,2,14982,590710 ,2,14983,45 ,1,0,636400 ,2,14981,99130 ,2,14982,578065 ,2,14983,45 ,1,0,636650 ,2,14981,99260 ,2,14982,560425 ,2,14983,45 ,1,0,636960 ,2,14981,193665 ,2,14982,570950 ,2,14983,45 ,1,0,637075 ,2,14981,153185 ,2,14982,590660 ,2,14983,45 ,1,0,637620 ,2,14981,153165 ,2,14982,590660 ,2,14983,45 ,1,0,637935 ,2,14981,153135 ,2,14982,590660 ,2,14983,45 ,1,0,638110 ,2,14981,153115 ,2,14982,590665 ,2,14983,45 ,1,0,638315 ,2,14981,153105 ,2,14982,590660 ,2,14983,45 ,1,0,638715 ,2,14981,152660 ,2,14982,590665 ,2,14983,45 ,1,0,638960 ,2,14981,134595 ,2,14982,590735 ,2,14983,45 ,1,0,639160 ,2,14981,134495 ,2,14982,590735 ,2,14983,45 ,1,0,639390 ,2,14981,160940 ,2,14982,590740 ,2,14983,45 ,1,0,639660 ,2,14981,160940 ,2,14982,590740 ,2,14983,45 ,1,0,639990 ,2,14981,160810 ,2,14982,590740 ,2,14983,45 ,1,0,640310 ,2,14981,160810 ,2,14982,590740 ,2,14983,45 ,1,0,640655 ,2,14981,109295 ,2,14982,590740 ,2,14983,45 ,1,0,640990 ,2,14981,109185 ,2,14982,590740 ,2,14983,45 ,1,0,641375 ,2,14981,107810 ,2,14982,590740 ,2,14983,45 ,1,0,641560 ,2,14981,107730 ,2,14982,590740 ,2,14983,45 ,1,0,642030 ,2,14981,148190 ,2,14982,590735 ,2,14983,45 ,1,0,642365 ,2,14981,148190 ,2,14982,590735 ,2,14983,45 ,1,0,642595 ,2,14981,211185 ,2,14982,590775 ,2,14983,45 ,1,0,642905 ,2,14981,148480 ,2,14982,590780 ,2,14983,45 ,1,0,643160 ,2,14981,148710 ,2,14982,590665 ,2,14983,45 ,1,0,643335 ,2,14981,149415 ,2,14982,590710 ,2,14983,45 ,1,0,643570 ,2,14981,96500 ,2,14982,558515 ,2,14983,45 ,1,0,643780 ,2,14981,96365 ,2,14982,558515 ,2,14983,45 ,1,0,644040 ,2,14981,96345 ,2,14982,558515 ,2,14983,45 ,1,0,644240 ,2,14981,96140 ,2,14982,558515 ,2,14983,45 ,1,0,644415 ,2,14981,96050 ,2,14982,558515 ,2,14983,45 ,1,0,644580 ,2,14981,134385 ,2,14982,590735 ,2,14983,45 ,1,0,645010 ,2,14981,160970 ,2,14982,590740 ,2,14983,45 ,1,0,645415 ,2,14981,160970 ,2,14982,590740 ,2,14983,45 ,1,0,645735 ,2,14981,108420 ,2,14982,590740 ,2,14983,45 ,1,0,646045 ,2,14981,123385 ,2,14982,590830 ,2,14983,45 ,1,0,646315 ,2,14981,107595 ,2,14982,590740 ,2,14983,45 ,1,0,646630 ,2,14981,180545 ,2,14982,590710 ,2,14983,45 ,1,0,646875 ,2,14981,194205 ,2,14982,590710 ,2,14983,45 ,1,0,647195 ,2,14981,194165 ,2,14982,590840 ,2,14983,45 ,1,0,647570 ,2,14981,120020 ,2,14982,560425 ,2,14983,45 ,1,0,647845 ,2,14981,120010 ,2,14982,560425 ,2,14983,45 ,1,0,648085 ,2,14981,120000 ,2,14982,560425 ,2,14983,45 ,1,0,648550 ,2,14981,153040 ,2,14982,590710 ,2,14983,45 ,1,0,648965 ,2,14981,211500 ,2,14982,590710 ,2,14983,45 ,1,0,649270 ,2,14981,152970 ,2,14982,590710 ,2,14983,45 ,1,0,649635 ,2,14981,134720 ,2,14982,590735 ,2,14983,45 ,1,0,649930 ,2,14981,161075 ,2,14982,590740 ,2,14983,45 ,1,0,650295 ,2,14981,161075 ,2,14982,590740 ,2,14983,45 ,1,0,650655 ,2,14981,158085 ,2,14982,590665 ,2,14983,45 ,1,0,650970 ,2,14981,109395 ,2,14982,590740 ,2,14983,45 ,1,0,651325 ,2,14981,107930 ,2,14982,590740 ,2,14983,45 ,1,0,651740 ,2,14981,145770 ,2,14982,590850 ,2,14983,45 ,1,0,652075 ,2,14981,145770 ,2,14982,590850 ,2,14983,45 ,1,0,652450 ,2,14981,144090 ,2,14982,590855 ,2,14983,45 ,1,0,652780 ,2,14981,148935 ,2,14982,590710 ,2,14983,45 ,1,0,653190 ,2,14981,160780 ,2,14982,590665 ,2,14983,45 ,1,0,653510 ,2,14981,103135 ,2,14982,577180 ,2,14983,45 ,1,0,653690 ,2,14981,157500 ,2,14982,590665 ,2,14983,45 ,1,0,654100 ,2,14981,146730 ,2,14982,590905 ,2,14983,45 ,1,0,654570 ,2,14981,119845 ,2,14982,590905 ,2,14983,45 ,1,0,654740 ,2,14981,146730 ,2,14982,590915 ,2,14983,45 ,1,0,654965 ,2,14981,119845 ,2,14982,590915 ,2,14983,45 ,1,0,655215 ,2,14981,146730 ,2,14982,590920 ,2,14983,45 ,1,0,655615 ,2,14981,146730 ,2,14982,590925 ,2,14983,45 ,1,0,656055 ,2,14981,146730 ,2,14982,590930 ,2,14983,45 ,1,0,656420 ,2,14981,146730 ,2,14982,590945 ,2,14983,45 ,1,0,656845 ,2,14981,146730 ,2,14982,590955 ,2,14983,45 ,1,0,657150 ,2,14981,146730 ,2,14982,590960 ,2,14983,45 ,1,0,657435 ,2,14981,107910 ,2,14982,590665 ,2,14983,45 ,1,0,657835 ,2,14981,151855 ,2,14982,590710 ,2,14983,45 ,1,0,658065 ,2,14981,151875 ,2,14982,590975 ,2,14983,45 ,1,0,658320 ,2,14981,152325 ,2,14982,590710 ,2,14983,45 ,1,0,658655 ,2,14981,152380 ,2,14982,590710 ,2,14983,45 ,1,0,658855 ,2,14981,152250 ,2,14982,560425 ,2,14983,45 ,1,0,659340 ,2,14981,151675 ,2,14982,560425 ,2,14983,45 ,1,0,659635 ,2,14981,152295 ,2,14982,588030 ,2,14983,45 ,1,0,659970 ,2,14981,152150 ,2,14982,590980 ,2,14983,45 ,1,0,660210 ,2,14981,196165 ,2,14982,560425 ,2,14983,45 ,1,0,660510 ,2,14981,139495 ,2,14982,591020 ,2,14983,45 ,1,0,660820 ,2,14981,139495 ,2,14982,587000 ,2,14983,45 ,1,0,661140 ,2,14981,125085 ,2,14982,591025 ,2,14983,45 ,1,0,661525 ,2,14981,68725 ,2,14982,560900 ,2,14983,45 ,1,0,661920 ,2,14981,68080 ,2,14982,560705 ,2,14983,45 ,1,0,662255 ,2,14981,130080 ,2,14982,591045 ,2,14983,45 ,1,0,662695 ,2,14981,125310 ,2,14982,591050 ,2,14983,45 ,1,0,662885 ,2,14981,193635 ,2,14982,560425 ,2,14983,45 ,1,0,663470 ,2,14981,193635 ,2,14982,588030 ,2,14983,45 ,1,0,663770 ,2,14981,193635 ,2,14982,560425 ,2,14983,45 ,1,0,664020 ,2,14981,193635 ,2,14982,560425 ,2,14983,45 ,1,0,664395 ,2,14981,147215 ,2,14982,590855 ,2,14983,45 ,1,0,664745 ,2,14981,151185 ,2,14982,591095 ,2,14983,45 ,1,0,665050 ,2,14981,147225 ,2,14982,590855 ,2,14983,45 ,1,0,665335 ,2,14981,147195 ,2,14982,590855 ,2,14983,45 ,1,0,665650 ,2,14981,152470 ,2,14982,560425 ,2,14983,45 ,1,0,665955 ,2,14981,152470 ,2,14982,588030 ,2,14983,45 ,1,0,666140 ,2,14981,152470 ,2,14982,560425 ,2,14983,45 ,1,0,666390 ,2,14981,152470 ,2,14982,560425 ,2,14983,45 ,1,0,666570 ,2,14981,153465 ,2,14982,590710 ,2,14983,45 ,1,0,666800 ,2,14981,137755 ,2,14982,590855 ,2,14983,45 ,1,0,667065 ,2,14981,153555 ,2,14982,578280 ,2,14983,45 ,1,0,667455 ,2,14981,153455 ,2,14982,580280 ,2,14983,45 ,1,0,667760 ,2,14981,153455 ,2,14982,575265 ,2,14983,45 ,1,0,668070 ,2,14981,142715 ,2,14982,590710 ,2,14983,45 ,1,0,668420 ,2,14981,137650 ,2,14982,560425 ,2,14983,45 ,1,0,668775 ,2,14981,191430 ,2,14982,590665 ,2,14983,45 ,1,0,668965 ,2,14981,205955 ,2,14982,560425 ,2,14983,45 ,1,0,669260 ,2,14981,205945 ,2,14982,590710 ,2,14983,45 ,1,0,669520 ,2,14981,133590 ,2,14982,590710 ,2,14983,45 ,1,0,669765 ,2,14981,132420 ,2,14982,591120 ,2,14983,45 ,1,0,669950 ,2,14981,132300 ,2,14982,560425 ,2,14983,45 ,1,0,670425 ,2,14981,208460 ,2,14982,590855 ,2,14983,45 ,1,0,670700 ,2,14981,132515 ,2,14982,590855 ,2,14983,45 ,1,0,670940 ,2,14981,133090 ,2,14982,560425 ,2,14983,45 ,1,0,671295 ,2,14981,132460 ,2,14982,560425 ,2,14983,45 ,1,0,671500 ,2,14981,132195 ,2,14982,591155 ,2,14983,45 ,1,0,671955 ,2,14981,131060 ,2,14982,591170 ,2,14983,45 ,1,0,672185 ,2,14981,131060 ,2,14982,591180 ,2,14983,45 ,1,0,672380 ,2,14981,131060 ,2,14982,590830 ,2,14983,45 ,1,0,672685 ,2,14981,128665 ,2,14982,591185 ,2,14983,45 ,1,0,672915 ,2,14981,128665 ,2,14982,591195 ,2,14983,45 ,1,0,673180 ,2,14981,150130 ,2,14982,590710 ,2,14983,45 ,1,0,673375 ,2,14981,147910 ,2,14982,590710 ,2,14983,45 ,1,0,673960 ,2,14981,151560 ,2,14982,564885 ,2,14983,45 ,1,0,674230 ,2,14981,152005 ,2,14982,590975 ,2,14983,45 ,1,0,674520 ,2,14981,151520 ,2,14982,590710 ,2,14983,45 ,1,0,674770 ,2,14981,142945 ,2,14982,560425 ,2,14983,45 ,1,0,675075 ,2,14981,142945 ,2,14982,560425 ,2,14983,45 ,1,0,625 ,2,14981,151290 ,2,14982,591220 ,2,14983,45 ,1,0,1180 ,2,14981,146420 ,2,14982,578280 ,2,14983,45 ,1,0,1810 ,2,14981,146420 ,2,14982,578280 ,2,14983,45 ,1,0,2250 ,2,14981,152420 ,2,14982,590710 ,2,14983,45 ,1,0,2670 ,2,14981,142380 ,2,14982,590855 ,2,14983,45 ,1,0,3085 ,2,14981,212705 ,2,14982,590710 ,2,14983,45 ,1,0,3635 ,2,14981,147850 ,2,14982,591225 ,2,14983,45 ,1,0,4150 ,2,14981,147850 ,2,14982,580280 ,2,14983,45 ,1,0,4585 ,2,14981,147850 ,2,14982,575265 ,2,14983,45 ,1,0,5040 ,2,14981,147850 ,2,14982,591235 ,2,14983,45 ,1,0,5560 ,2,14981,212760 ,2,14982,591240 ,2,14983,45 ,1,0,6070 ,2,14981,115980 ,2,14982,591245 ,2,14983,45 ,1,0,6720 ,2,14981,212825 ,2,14982,591240 ,2,14983,45 ,1,0,7275 ,2,14981,116345 ,2,14982,591245 ,2,14983,45 ,1,0,7830 ,2,14981,130765 ,2,14982,591300 ,2,14983,45 ,1,0,8465 ,2,14981,124660 ,2,14982,591315 ,2,14983,45 ,1,0,8785 ,2,14981,125105 ,2,14982,591325 ,2,14983,45 ,1,0,9420 ,2,14981,124635 ,2,14982,591330 ,2,14983,45 ,1,0,9820 ,2,14981,130715 ,2,14982,591180 ,2,14983,45 ,1,0,10245 ,2,14981,130715 ,2,14982,591180 ,2,14983,45 ,1,0,10680 ,2,14981,130715 ,2,14982,590830 ,2,14983,45 ,1,0,11220 ,2,14981,130715 ,2,14982,591375 ,2,14983,45 ,1,0,11765 ,2,14981,137145 ,2,14982,590710 ,2,14983,45 ,1,0,12830 ,2,14981,107165 ,2,14982,590710 ,2,14983,45 ,1,0,13365 ,2,14981,161920 ,2,14982,590710 ,2,14983,45 ,1,0,14020 ,2,14981,161920 ,2,14982,590710 ,2,14983,45 ,1,0,14745 ,2,14981,161920 ,2,14982,590710 ,2,14983,45 ,1,0,15075 ,2,14981,213080 ,2,14982,590710 ,2,14983,45 ,1,0,15405 ,2,14981,213060 ,2,14982,590710 ,2,14983,45 ,1,0,15730 ,2,14981,195910 ,2,14982,591385 ,2,14983,45 ,1,0,16245 ,2,14981,195910 ,2,14982,591420 ,2,14983,45 ,1,0,16575 ,2,14981,140420 ,2,14982,590920 ,2,14983,45 ,1,0,17335 ,2,14981,140420 ,2,14982,590925 ,2,14983,45 ,1,0,18075 ,2,14981,140420 ,2,14982,591435 ,2,14983,45 ,1,0,18630 ,2,14981,140420 ,2,14982,591440 ,2,14983,45 ,1,0,18950 ,2,14981,168340 ,2,14982,578280 ,2,14983,45 ,1,0,19275 ,2,14981,128870 ,2,14982,590710 ,2,14983,45 ,1,0,19600 ,2,14981,205730 ,2,14982,590710 ,2,14983,45 ,1,0,20030 ,2,14981,190745 ,2,14982,590665 ,2,14983,45 ,1,0,20340 ,2,14981,130155 ,2,14982,591545 ,2,14983,45 ,1,0,20660 ,2,14981,130155 ,2,14982,579270 ,2,14983,45 ,1,0,21185 ,2,14981,127350 ,2,14982,570375 ,2,14983,45 ,1,0,21505 ,2,14981,128755 ,2,14982,591560 ,2,14983,45 ,1,0,22265 ,2,14981,138450 ,2,14982,590710 ,2,14983,45 ,1,0,22705 ,2,14981,213370 ,2,14982,591575 ,2,14983,45 ,1,0,23035 ,2,14981,138315 ,2,14982,591600 ,2,14983,45 ,1,0,23925 ,2,14981,100565 ,2,14982,590710 ,2,14983,45 ,1,0,24380 ,2,14981,138745 ,2,14982,590710 ,2,14983,45 ,1,0,24725 ,2,14981,138340 ,2,14982,591600 ,2,14983,45 ,1,0,25060 ,2,14981,139260 ,2,14982,579270 ,2,14983,45 ,1,0,25405 ,2,14981,138030 ,2,14982,590665 ,2,14983,45 ,1,0,25735 ,2,14981,115970 ,2,14982,591610 ,2,14983,45 ,1,0,26360 ,2,14981,213500 ,2,14982,591240 ,2,14983,45 ,1,0,26695 ,2,14981,213490 ,2,14982,591240 ,2,14983,45 ,1,0,27555 ,2,14981,115745 ,2,14982,591245 ,2,14983,45 ,1,0,28100 ,2,14981,115755 ,2,14982,591245 ,2,14983,45 ,1,0,28430 ,2,14981,115920 ,2,14982,590665 ,2,14983,45 ,1,0,29195 ,2,14981,132085 ,2,14982,591690 ,2,14983,45 ,1,0,29650 ,2,14981,213545 ,2,14982,590710 ,2,14983,45 ,1,0,29980 ,2,14981,213595 ,2,14982,590710 ,2,14983,45 ,1,0,30400 ,2,14981,213595 ,2,14982,590710 ,2,14983,45 ,1,0,30830 ,2,14981,132105 ,2,14982,590975 ,2,14983,45 ,1,0,31270 ,2,14981,132065 ,2,14982,590710 ,2,14983,45 ,1,0,31600 ,2,14981,130845 ,2,14982,591700 ,2,14983,45 ,1,0,31890 ,2,14981,138855 ,2,14982,591705 ,2,14983,45 ,1,0,32195 ,2,14981,138875 ,2,14982,591720 ,2,14983,45 ,1,0,32515 ,2,14981,138875 ,2,14982,590710 ,2,14983,45 ,1,0,32815 ,2,14981,138875 ,2,14982,591725 ,2,14983,45 ,1,0,33360 ,2,14981,117885 ,2,14982,591725 ,2,14983,45 ,1,0,33990 ,2,14981,161820 ,2,14982,591735 ,2,14983,45 ,1,0,34320 ,2,14981,161785 ,2,14982,591750 ,2,14983,45 ,1,0,34725 ,2,14981,161800 ,2,14982,591755 ,2,14983,45 ,1,0,35305 ,2,14981,161800 ,2,14982,591755 ,2,14983,45 ,1,0,35725 ,2,14981,161800 ,2,14982,591735 ,2,14983,45 ,1,0,36155 ,2,14981,161810 ,2,14982,591755 ,2,14983,45 ,1,0,36595 ,2,14981,161810 ,2,14982,591755 ,2,14983,45 ,1,0,37005 ,2,14981,161810 ,2,14982,591735 ,2,14983,45 ,1,0,37425 ,2,14981,106605 ,2,14982,591755 ,2,14983,45 ,1,0,38055 ,2,14981,161765 ,2,14982,591735 ,2,14983,45 ,1,0,38690 ,2,14981,161765 ,2,14982,591755 ,2,14983,45 ,1,0,39370 ,2,14981,161765 ,2,14982,591755 ,2,14983,45 ,1,0,39900 ,2,14981,161765 ,2,14982,591735 ,2,14983,45 ,1,0,40475 ,2,14981,161765 ,2,14982,591755 ,2,14983,45 ,1,0,40875 ,2,14981,161765 ,2,14982,591755 ,2,14983,45 ,1,0,41200 ,2,14981,114680 ,2,14982,591760 ,2,14983,45 ,1,0,41960 ,2,14981,161250 ,2,14982,591805 ,2,14983,45 ,1,0,42390 ,2,14981,106925 ,2,14982,591810 ,2,14983,45 ,1,0,42910 ,2,14981,161280 ,2,14982,591825 ,2,14983,45 ,1,0,43445 ,2,14981,161165 ,2,14982,591830 ,2,14983,45 ,1,0,44135 ,2,14981,161310 ,2,14982,591835 ,2,14983,45 ,1,0,44660 ,2,14981,161300 ,2,14982,591865 ,2,14983,45 ,1,0,45100 ,2,14981,161375 ,2,14982,591870 ,2,14983,45 ,1,0,45835 ,2,14981,161390 ,2,14982,591830 ,2,14983,45 ,1,0,46235 ,2,14981,161410 ,2,14982,570375 ,2,14983,45 ,1,0,46770 ,2,14981,161460 ,2,14982,591880 ,2,14983,45 ,1,0,47395 ,2,14981,106075 ,2,14982,570375 ,2,14983,45 ,1,0,47915 ,2,14981,190900 ,2,14982,591895 ,2,14983,45 ,1,0,48245 ,2,14981,172615 ,2,14982,591925 ,2,14983,45 ,1,0,48865 ,2,14981,172135 ,2,14982,591935 ,2,14983,45 ,1,0,49375 ,2,14981,172145 ,2,14982,591945 ,2,14983,45 ,1,0,49900 ,2,14981,214190 ,2,14982,591955 ,2,14983,45 ,1,0,50320 ,2,14981,214190 ,2,14982,590710 ,2,14983,45 ,1,0,50640 ,2,14981,199930 ,2,14982,591960 ,2,14983,45 ,1,0,51400 ,2,14981,199930 ,2,14982,591960 ,2,14983,45 ,1,0,51725 ,2,14981,199930 ,2,14982,591985 ,2,14983,45 ,1,0,52040 ,2,14981,199610 ,2,14982,590855 ,2,14983,45 ,1,0,52340 ,2,14981,199900 ,2,14982,591990 ,2,14983,45 ,1,0,52690 ,2,14981,214255 ,2,14982,590710 ,2,14983,45 ,1,0,53130 ,2,14981,199880 ,2,14982,590710 ,2,14983,45 ,1,0,53555 ,2,14981,214275 ,2,14982,590710 ,2,14983,45 ,1,0,54000 ,2,14981,199870 ,2,14982,590710 ,2,14983,45 ,1,0,54345 ,2,14981,198900 ,2,14982,590855 ,2,14983,45 ,1,0,54755 ,2,14981,214310 ,2,14982,592010 ,2,14983,45 ,1,0,55075 ,2,14981,179810 ,2,14982,592020 ,2,14983,45 ,1,0,55515 ,2,14981,214360 ,2,14982,592070 ,2,14983,45 ,1,0,55830 ,2,14981,179790 ,2,14982,592080 ,2,14983,45 ,1,0,56355 ,2,14981,179765 ,2,14982,592090 ,2,14983,45 ,1,0,56780 ,2,14981,172530 ,2,14982,592100 ,2,14983,45 ,1,0,57210 ,2,14981,214415 ,2,14982,592125 ,2,14983,45 ,1,0,57555 ,2,14981,173040 ,2,14982,592135 ,2,14983,45 ,1,0,57890 ,2,14981,214475 ,2,14982,592145 ,2,14983,45 ,1,0,58325 ,2,14981,179635 ,2,14982,592155 ,2,14983,45 ,1,0,58735 ,2,14981,214505 ,2,14982,592195 ,2,14983,45 ,1,0,59265 ,2,14981,179615 ,2,14982,592205 ,2,14983,45 ,1,0,59685 ,2,14981,214535 ,2,14982,592215 ,2,14983,45 ,1,0,60100 ,2,14981,179525 ,2,14982,592225 ,2,14983,45 ,1,0,60515 ,2,14981,214590 ,2,14982,592245 ,2,14983,45 ,1,0,61045 ,2,14981,179420 ,2,14982,592255 ,2,14983,45 ,1,0,61585 ,2,14981,214620 ,2,14982,592265 ,2,14983,45 ,1,0,61895 ,2,14981,179320 ,2,14982,592275 ,2,14983,45 ,1,0,62420 ,2,14981,214650 ,2,14982,592310 ,2,14983,45 ,1,0,63055 ,2,14981,179240 ,2,14982,592320 ,2,14983,45 ,1,0,63610 ,2,14981,169230 ,2,14982,592345 ,2,14983,45 ,1,0,64150 ,2,14981,179155 ,2,14982,592350 ,2,14983,45 ,1,0,64785 ,2,14981,179115 ,2,14982,592385 ,2,14983,45 ,1,0,65330 ,2,14981,179035 ,2,14982,592395 ,2,14983,45 ,1,0,65850 ,2,14981,178960 ,2,14982,592405 ,2,14983,45 ,1,0,66350 ,2,14981,178900 ,2,14982,592415 ,2,14983,45 ,1,0,66870 ,2,14981,178825 ,2,14982,592445 ,2,14983,45 ,1,0,67500 ,2,14981,178775 ,2,14982,592455 ,2,14983,45 ,1,0,67925 ,2,14981,178700 ,2,14982,592470 ,2,14983,45 ,1,0,68650 ,2,14981,178580 ,2,14982,592480 ,2,14983,45 ,1,0,69470 ,2,14981,214835 ,2,14982,592515 ,2,14983,45 ,1,0,70000 ,2,14981,178465 ,2,14982,592525 ,2,14983,45 ,1,0,70500 ,2,14981,178400 ,2,14982,592540 ,2,14983,45 ,1,0,71100 ,2,14981,178155 ,2,14982,592550 ,2,14983,45 ,1,0,71625 ,2,14981,178100 ,2,14982,592590 ,2,14983,45 ,1,0,72125 ,2,14981,178005 ,2,14982,592600 ,2,14983,45 ,1,0,72755 ,2,14981,214930 ,2,14982,592615 ,2,14983,45 ,1,0,73270 ,2,14981,177595 ,2,14982,592625 ,2,14983,45 ,1,0,73890 ,2,14981,177535 ,2,14982,592635 ,2,14983,45 ,1,0,74200 ,2,14981,169220 ,2,14982,592345 ,2,14983,45 ,1,0,74900 ,2,14981,177480 ,2,14982,592645 ,2,14983,45 ,1,0,75215 ,2,14981,177375 ,2,14982,592655 ,2,14983,45 ,1,0,75525 ,2,14981,177310 ,2,14982,592660 ,2,14983,45 ,1,0,75930 ,2,14981,177215 ,2,14982,592665 ,2,14983,45 ,1,0,76435 ,2,14981,177135 ,2,14982,592685 ,2,14983,45 ,1,0,76875 ,2,14981,177060 ,2,14982,592690 ,2,14983,45 ,1,0,77190 ,2,14981,176995 ,2,14982,592695 ,2,14983,45 ,1,0,77505 ,2,14981,176900 ,2,14982,592700 ,2,14983,45 ,1,0,78030 ,2,14981,176820 ,2,14982,592705 ,2,14983,45 ,1,0,78345 ,2,14981,176725 ,2,14982,592710 ,2,14983,45 ,1,0,78815 ,2,14981,176665 ,2,14982,592715 ,2,14983,45 ,1,0,79225 ,2,14981,176560 ,2,14982,592720 ,2,14983,45 ,1,0,79635 ,2,14981,176485 ,2,14982,592760 ,2,14983,45 ,1,0,79950 ,2,14981,176395 ,2,14982,592765 ,2,14983,45 ,1,0,80255 ,2,14981,176320 ,2,14982,592770 ,2,14983,45 ,1,0,81050 ,2,14981,176225 ,2,14982,592775 ,2,14983,45 ,1,0,81750 ,2,14981,176150 ,2,14982,592780 ,2,14983,45 ,1,0,82085 ,2,14981,176065 ,2,14982,592785 ,2,14983,45 ,1,0,82395 ,2,14981,175995 ,2,14982,592790 ,2,14983,45 ,1,0,82950 ,2,14981,175905 ,2,14982,592795 ,2,14983,45 ,1,0,83480 ,2,14981,175810 ,2,14982,592820 ,2,14983,45 ,1,0,84010 ,2,14981,175725 ,2,14982,592825 ,2,14983,45 ,1,0,84435 ,2,14981,175665 ,2,14982,592830 ,2,14983,45 ,1,0,85055 ,2,14981,175585 ,2,14982,592835 ,2,14983,45 ,1,0,85735 ,2,14981,175515 ,2,14982,592845 ,2,14983,45 ,1,0,86080 ,2,14981,175415 ,2,14982,592850 ,2,14983,45 ,1,0,86380 ,2,14981,175355 ,2,14982,592855 ,2,14983,45 ,1,0,86690 ,2,14981,175270 ,2,14982,592860 ,2,14983,45 ,1,0,87005 ,2,14981,175190 ,2,14982,592880 ,2,14983,45 ,1,0,87345 ,2,14981,175090 ,2,14982,592885 ,2,14983,45 ,1,0,87670 ,2,14981,175020 ,2,14982,592890 ,2,14983,45 ,1,0,88000 ,2,14981,174940 ,2,14982,592895 ,2,14983,45 ,1,0,88320 ,2,14981,174845 ,2,14982,592900 ,2,14983,45 ,1,0,88735 ,2,14981,174775 ,2,14982,592905 ,2,14983,45 ,1,0,89040 ,2,14981,174705 ,2,14982,592910 ,2,14983,45 ,1,0,89355 ,2,14981,174585 ,2,14982,592915 ,2,14983,45 ,1,0,89785 ,2,14981,174500 ,2,14982,592945 ,2,14983,45 ,1,0,90085 ,2,14981,174410 ,2,14982,592950 ,2,14983,45 ,1,0,90395 ,2,14981,174345 ,2,14982,592955 ,2,14983,45 ,1,0,90695 ,2,14981,174265 ,2,14982,592960 ,2,14983,45 ,1,0,90995 ,2,14981,174170 ,2,14982,592975 ,2,14983,45 ,1,0,91315 ,2,14981,173470 ,2,14982,592985 ,2,14983,45 ,1,0,91615 ,2,14981,215580 ,2,14982,592990 ,2,14983,45 ,1,0,91930 ,2,14981,173405 ,2,14982,593010 ,2,14983,45 ,1,0,92265 ,2,14981,173385 ,2,14982,593020 ,2,14983,45 ,1,0,92770 ,2,14981,173365 ,2,14982,593040 ,2,14983,45 ,1,0,93095 ,2,14981,173345 ,2,14982,593050 ,2,14983,45 ,1,0,93405 ,2,14981,215660 ,2,14982,593080 ,2,14983,45 ,1,0,93715 ,2,14981,173265 ,2,14982,593090 ,2,14983,45 ,1,0,94040 ,2,14981,215690 ,2,14982,593105 ,2,14983,45 ,1,0,94365 ,2,14981,173170 ,2,14982,593115 ,2,14983,45 ,1,0,94570 ,2,14981,215730 ,2,14982,593140 ,2,14983,45 ,1,0,94880 ,2,14981,172960 ,2,14982,593150 ,2,14983,45 ,1,0,95210 ,2,14981,215800 ,2,14982,593170 ,2,14983,45 ,1,0,95530 ,2,14981,172835 ,2,14982,593180 ,2,14983,45 ,1,0,95860 ,2,14981,172780 ,2,14982,593210 ,2,14983,45 ,1,0,96180 ,2,14981,172725 ,2,14982,593220 ,2,14983,45 ,1,0,96580 ,2,14981,215850 ,2,14982,593230 ,2,14983,45 ,1,0,97020 ,2,14981,172090 ,2,14982,593240 ,2,14983,45 ,1,0,97335 ,2,14981,215885 ,2,14982,593260 ,2,14983,45 ,1,0,97665 ,2,14981,171620 ,2,14982,593270 ,2,14983,45 ,1,0,97895 ,2,14981,170005 ,2,14982,593280 ,2,14983,45 ,1,0,98330 ,2,14981,215930 ,2,14982,593290 ,2,14983,45 ,1,0,98655 ,2,14981,169975 ,2,14982,593320 ,2,14983,45 ,1,0,99410 ,2,14981,215970 ,2,14982,593330 ,2,14983,45 ,1,0,99630 ,2,14981,169885 ,2,14982,593345 ,2,14983,45 ,1,0,100215 ,2,14981,216000 ,2,14982,593355 ,2,14983,45 ,1,0,100855 ,2,14981,169685 ,2,14982,593385 ,2,14983,45 ,1,0,101405 ,2,14981,168855 ,2,14982,593395 ,2,14983,45 ,1,0,102000 ,2,14981,168530 ,2,14982,585845 ,2,14983,45 ,1,0,102755 ,2,14981,168530 ,2,14982,593405 ,2,14983,45 ,1,0,103390 ,2,14981,216095 ,2,14982,593410 ,2,14983,45 ,1,0,103710 ,2,14981,168685 ,2,14982,593430 ,2,14983,45 ,1,0,104810 ,2,14981,168655 ,2,14982,593440 ,2,14983,45 ,1,0,105140 ,2,14981,168480 ,2,14982,593455 ,2,14983,45 ,1,0,106100 ,2,14981,199625 ,2,14982,590855 ,2,14983,45 ,1,0,106640 ,2,14981,198885 ,2,14982,590855 ,2,14983,45 ,1,0,107200 ,2,14981,216195 ,2,14982,590710 ,2,14983,45 ,1,0,107545 ,2,14981,199860 ,2,14982,590710 ,2,14983,45 ,1,0,108390 ,2,14981,216225 ,2,14982,593465 ,2,14983,45 ,1,0,108940 ,2,14981,128845 ,2,14982,578280 ,2,14983,45 ,1,0,109590 ,2,14981,128845 ,2,14982,593500 ,2,14983,45 ,1,0,110260 ,2,14981,120275 ,2,14982,560425 ,2,14983,45 ,1,0,110795 ,2,14981,93965 ,2,14982,593505 ,2,14983,45 ,1,0,111340 ,2,14981,118245 ,2,14982,560425 ,2,14983,45 ,1,0,111980 ,2,14981,119485 ,2,14982,560425 ,2,14983,45 ,1,0,112940 ,2,14981,131360 ,2,14982,593535 ,2,14983,45 ,1,0,113500 ,2,14981,128485 ,2,14982,593550 ,2,14983,45 ,1,0,114075 ,2,14981,113430 ,2,14982,590710 ,2,14983,45 ,1,0,114410 ,2,14981,112650 ,2,14982,590665 ,2,14983,45 ,1,0,114975 ,2,14981,127420 ,2,14982,593615 ,2,14983,45 ,1,0,115950 ,2,14981,127420 ,2,14982,593620 ,2,14983,45 ,1,0,117340 ,2,14981,216395 ,2,14982,590710 ,2,14983,45 ,1,0,119150 ,2,14981,127620 ,2,14982,593625 ,2,14983,45 ,1,0,120915 ,2,14981,127620 ,2,14982,593645 ,2,14983,45 ,1,0,121340 ,2,14981,137535 ,2,14982,590710 ,2,14983,45 ,1,0,121790 ,2,14981,137555 ,2,14982,590710 ,2,14983,45 ,1,0,122115 ,2,14981,137545 ,2,14982,590710 ,2,14983,45 ,1,0,122560 ,2,14981,132545 ,2,14982,590855 ,2,14983,45 ,1,0,122980 ,2,14981,93680 ,2,14982,590855 ,2,14983,45 ,1,0,123355 ,2,14981,137710 ,2,14982,590855 ,2,14983,45 ,1,0,123695 ,2,14981,137575 ,2,14982,590710 ,2,14983,45 ,1,0,124230 ,2,14981,137490 ,2,14982,590710 ,2,14983,45 ,1,0,124655 ,2,14981,132970 ,2,14982,590710 ,2,14983,45 ,1,0,125190 ,2,14981,132680 ,2,14982,570375 ,2,14983,45 ,1,0,125745 ,2,14981,132780 ,2,14982,593650 ,2,14983,45 ,1,0,126165 ,2,14981,132760 ,2,14982,593650 ,2,14983,45 ,1,0,126695 ,2,14981,195490 ,2,14982,590710 ,2,14983,45 ,1,0,127240 ,2,14981,195480 ,2,14982,590710 ,2,14983,45 ,1,0,127760 ,2,14981,195435 ,2,14982,590710 ,2,14983,45 ,1,0,128190 ,2,14981,195425 ,2,14982,590710 ,2,14983,45 ,1,0,128510 ,2,14981,126005 ,2,14982,593705 ,2,14983,45 ,1,0,128925 ,2,14981,216715 ,2,14982,590710 ,2,14983,45 ,1,0,129240 ,2,14981,216695 ,2,14982,590710 ,2,14983,45 ,1,0,129680 ,2,14981,216685 ,2,14982,590710 ,2,14983,45 ,1,0,130010 ,2,14981,196065 ,2,14982,590710 ,2,14983,45 ,1,0,130335 ,2,14981,196065 ,2,14982,591385 ,2,14983,45 ,1,0,130635 ,2,14981,196065 ,2,14982,593710 ,2,14983,45 ,1,0,131095 ,2,14981,120535 ,2,14982,590710 ,2,14983,45 ,1,0,131635 ,2,14981,120525 ,2,14982,590710 ,2,14983,45 ,1,0,132035 ,2,14981,120515 ,2,14982,593715 ,2,14983,45 ,1,0,132490 ,2,14981,120515 ,2,14982,593715 ,2,14983,45 ,1,0,132810 ,2,14981,120515 ,2,14982,593715 ,2,14983,45 ,1,0,133305 ,2,14981,120110 ,2,14982,593715 ,2,14983,45 ,1,0,133825 ,2,14981,120110 ,2,14982,593715 ,2,14983,45 ,1,0,134345 ,2,14981,120110 ,2,14982,593715 ,2,14983,45 ,1,0,134905 ,2,14981,198650 ,2,14982,593730 ,2,14983,45 ,1,0,135440 ,2,14981,168265 ,2,14982,593735 ,2,14983,45 ,1,0,135875 ,2,14981,168265 ,2,14982,593735 ,2,14983,45 ,1,0,136290 ,2,14981,126840 ,2,14982,590855 ,2,14983,45 ,1,0,137080 ,2,14981,126335 ,2,14982,590855 ,2,14983,45 ,1,0,138485 ,2,14981,118150 ,2,14982,560425 ,2,14983,45 ,1,0,139465 ,2,14981,118160 ,2,14982,560425 ,2,14983,45 ,1,0,139780 ,2,14981,120485 ,2,14982,560425 ,2,14983,45 ,1,0,140520 ,2,14981,120485 ,2,14982,559720 ,2,14983,45 ,1,0,140940 ,2,14981,120485 ,2,14982,559720 ,2,14983,45 ,1,0,141370 ,2,14981,118300 ,2,14982,560425 ,2,14983,45 ,1,0,141680 ,2,14981,118275 ,2,14982,560425 ,2,14983,45 ,1,0,141980 ,2,14981,205695 ,2,14982,593810 ,2,14983,45 ,1,0,142790 ,2,14981,190505 ,2,14982,590710 ,2,14983,45 ,1,0,143195 ,2,14981,190415 ,2,14982,590710 ,2,14983,45 ,1,0,143525 ,2,14981,190550 ,2,14982,590710 ,2,14983,45 ,1,0,144375 ,2,14981,137020 ,2,14982,593835 ,2,14983,45 ,1,0,144910 ,2,14981,111470 ,2,14982,590665 ,2,14983,45 ,1,0,145250 ,2,14981,110245 ,2,14982,593840 ,2,14983,45 ,1,0,146140 ,2,14981,110965 ,2,14982,593845 ,2,14983,45 ,1,0,146580 ,2,14981,111305 ,2,14982,593850 ,2,14983,45 ,1,0,147015 ,2,14981,156585 ,2,14982,590665 ,2,14983,45 ,1,0,147345 ,2,14981,96455 ,2,14982,558515 ,2,14983,45 ,1,0,148220 ,2,14981,119130 ,2,14982,590710 ,2,14983,45 ,1,0,148650 ,2,14981,196845 ,2,14982,593910 ,2,14983,45 ,1,0,149190 ,2,14981,126530 ,2,14982,590710 ,2,14983,45 ,1,0,149620 ,2,14981,129655 ,2,14982,590855 ,2,14983,45 ,1,0,149955 ,2,14981,129430 ,2,14982,593915 ,2,14983,45 ,1,0,150725 ,2,14981,103745 ,2,14982,590855 ,2,14983,45 ,1,0,151365 ,2,14981,166855 ,2,14982,590710 ,2,14983,45 ,1,0,151585 ,2,14981,118490 ,2,14982,590710 ,2,14983,45 ,1,0,151910 ,2,14981,60650 ,2,14982,593935 ,2,14983,45 ,1,0,152240 ,2,14981,64935 ,2,14982,593940 ,2,14983,45 ,1,0,152560 ,2,14981,132010 ,2,14982,589585 ,2,14983,45 ,1,0,152895 ,2,14981,199580 ,2,14982,590855 ,2,14983,45 ,1,0,153200 ,2,14981,217350 ,2,14982,594010 ,2,14983,45 ,1,0,153745 ,2,14981,199030 ,2,14982,591960 ,2,14983,45 ,1,0,154060 ,2,14981,199030 ,2,14982,591985 ,2,14983,45 ,1,0,154395 ,2,14981,217390 ,2,14982,590710 ,2,14983,45 ,1,0,155345 ,2,14981,198930 ,2,14982,590710 ,2,14983,45 ,1,0,155880 ,2,14981,217410 ,2,14982,590710 ,2,14983,45 ,1,0,156215 ,2,14981,196725 ,2,14982,594020 ,2,14983,45 ,1,0,157270 ,2,14981,217430 ,2,14982,594025 ,2,14983,45 ,1,0,157895 ,2,14981,196805 ,2,14982,590855 ,2,14983,45 ,1,0,158215 ,2,14981,189215 ,2,14982,594050 ,2,14983,45 ,1,0,159040 ,2,14981,189060 ,2,14982,594055 ,2,14983,45 ,1,0,159360 ,2,14981,189060 ,2,14982,594065 ,2,14983,45 ,1,0,159680 ,2,14981,189060 ,2,14982,594075 ,2,14983,45 ,1,0,160540 ,2,14981,217560 ,2,14982,594130 ,2,14983,45 ,1,0,160890 ,2,14981,217560 ,2,14982,594135 ,2,14983,45 ,1,0,161210 ,2,14981,217540 ,2,14982,590855 ,2,14983,45 ,1,0,161525 ,2,14981,217550 ,2,14982,594140 ,2,14983,45 ,1,0,161850 ,2,14981,197180 ,2,14982,590710 ,2,14983,45 ,1,0,162185 ,2,14981,197180 ,2,14982,590710 ,2,14983,45 ,1,0,162630 ,2,14981,197365 ,2,14982,594150 ,2,14983,45 ,1,0,162940 ,2,14981,196815 ,2,14982,594155 ,2,14983,45 ,1,0,163375 ,2,14981,217615 ,2,14982,590855 ,2,14983,45 ,1,0,163905 ,2,14981,217625 ,2,14982,594160 ,2,14983,45 ,1,0,164455 ,2,14981,197135 ,2,14982,594165 ,2,14983,45 ,1,0,164780 ,2,14981,127430 ,2,14982,594205 ,2,14983,45 ,1,0,165095 ,2,14981,120370 ,2,14982,560425 ,2,14983,45 ,1,0,166035 ,2,14981,120475 ,2,14982,560425 ,2,14983,45 ,1,0,166465 ,2,14981,187805 ,2,14982,593500 ,2,14983,45 ,1,0,166815 ,2,14981,126755 ,2,14982,570375 ,2,14983,45 ,1,0,167685 ,2,14981,141490 ,2,14982,591760 ,2,14983,45 ,1,0,168025 ,2,14981,113640 ,2,14982,594220 ,2,14983,45 ,1,0,168355 ,2,14981,92375 ,2,14982,590710 ,2,14983,45 ,1,0,169150 ,2,14981,92345 ,2,14982,590855 ,2,14983,45 ,1,0,169505 ,2,14981,110215 ,2,14982,593840 ,2,14983,45 ,1,0,169945 ,2,14981,134820 ,2,14982,590665 ,2,14983,45 ,1,0,170240 ,2,14981,153920 ,2,14982,590665 ,2,14983,45 ,1,0,170790 ,2,14981,108215 ,2,14982,590665 ,2,14983,45 ,1,0,171250 ,2,14981,96985 ,2,14982,578065 ,2,14983,45 ,1,0,171575 ,2,14981,99335 ,2,14982,560425 ,2,14983,45 ,1,0,172335 ,2,14981,111295 ,2,14982,593840 ,2,14983,45 ,1,0,172655 ,2,14981,123530 ,2,14982,591050 ,2,14983,45 ,1,0,172995 ,2,14981,123445 ,2,14982,594295 ,2,14983,45 ,1,0,173340 ,2,14981,123520 ,2,14982,594295 ,2,14983,45 ,1,0,174230 ,2,14981,130795 ,2,14982,590710 ,2,14983,45 ,1,0,174690 ,2,14981,73510 ,2,14982,594340 ,2,14983,45 ,1,0,175015 ,2,14981,217990 ,2,14982,590710 ,2,14983,45 ,1,0,175875 ,2,14981,217990 ,2,14982,590710 ,2,14983,45 ,1,0,176190 ,2,14981,125985 ,2,14982,590855 ,2,14983,45 ,1,0,176660 ,2,14981,195620 ,2,14982,590855 ,2,14983,45 ,1,0,176985 ,2,14981,195610 ,2,14982,590855 ,2,14983,45 ,1,0,177290 ,2,14981,195580 ,2,14982,590710 ,2,14983,45 ,1,0,178215 ,2,14981,218065 ,2,14982,594355 ,2,14983,45 ,1,0,178665 ,2,14981,195570 ,2,14982,594360 ,2,14983,45 ,1,0,178990 ,2,14981,195640 ,2,14982,578280 ,2,14983,45 ,1,0,179840 ,2,14981,129855 ,2,14982,594415 ,2,14983,45 ,1,0,180280 ,2,14981,195555 ,2,14982,578280 ,2,14983,45 ,1,0,181330 ,2,14981,166845 ,2,14982,590710 ,2,14983,45 ,1,0,181650 ,2,14981,166845 ,2,14982,590710 ,2,14983,45 ,1,0,182535 ,2,14981,167080 ,2,14982,590710 ,2,14983,45 ,1,0,183070 ,2,14981,206695 ,2,14982,594445 ,2,14983,45 ,1,0,183505 ,2,14981,218225 ,2,14982,605935 ,2,14983,613110 ,1,0,183840 ,2,14981,181710 ,2,14982,594490 ,2,14983,45 ,1,0,184595 ,2,14981,181690 ,2,14982,594490 ,2,14983,45 ,1,0,184930 ,2,14981,181680 ,2,14982,594490 ,2,14983,45 ,1,0,185280 ,2,14981,197390 ,2,14982,590855 ,2,14983,45 ,1,0,185600 ,2,14981,126785 ,2,14982,590710 ,2,14983,45 ,1,0,185920 ,2,14981,107070 ,2,14982,590710 ,2,14983,45 ,1,0,186260 ,2,14981,129510 ,2,14982,590710 ,2,14983,45 ,1,0,186600 ,2,14981,126935 ,2,14982,594505 ,2,14983,45 ,1,0,186940 ,2,14981,127085 ,2,14982,558515 ,2,14983,45 ,1,0,187275 ,2,14981,128825 ,2,14982,590710 ,2,14983,45 ,1,0,187590 ,2,14981,128825 ,2,14982,590710 ,2,14983,45 ,1,0,187895 ,2,14981,128825 ,2,14982,573760 ,2,14983,45 ,1,0,188215 ,2,14981,218460 ,2,14982,594510 ,2,14983,45 ,1,0,188550 ,2,14981,126435 ,2,14982,594540 ,2,14983,45 ,1,0,188850 ,2,14981,197865 ,2,14982,590855 ,2,14983,45 ,1,0,189200 ,2,14981,140975 ,2,14982,594565 ,2,14983,45 ,1,0,189500 ,2,14981,136930 ,2,14982,594575 ,2,14983,45 ,1,0,189845 ,2,14981,218685 ,2,14982,590855 ,2,14983,45 ,1,0,190170 ,2,14981,158355 ,2,14982,594640 ,2,14983,45 ,1,0,190475 ,2,14981,166990 ,2,14982,594645 ,2,14983,45 ,1,0,190835 ,2,14981,138905 ,2,14982,591315 ,2,14983,45 ,1,0,191135 ,2,14981,166895 ,2,14982,594675 ,2,14983,45 ,1,0,191485 ,2,14981,166895 ,2,14982,594680 ,2,14983,45 ,1,0,191820 ,2,14981,218620 ,2,14982,594685 ,2,14983,45 ,1,0,192160 ,2,14981,166450 ,2,14982,590710 ,2,14983,45 ,1,0,193075 ,2,14981,166450 ,2,14982,594690 ,2,14983,45 ,1,0,193610 ,2,14981,166450 ,2,14982,594695 ,2,14983,45 ,1,0,194150 ,2,14981,92650 ,2,14982,594700 ,2,14983,45 ,1,0,194670 ,2,14981,218715 ,2,14982,594700 ,2,14983,45 ,1,0,195255 ,2,14981,92120 ,2,14982,581775 ,2,14983,45 ,1,0,195680 ,2,14981,92120 ,2,14982,594700 ,2,14983,45 ,1,0,195990 ,2,14981,92120 ,2,14982,594700 ,2,14983,45 ,1,0,196320 ,2,14981,166395 ,2,14982,590855 ,2,14983,45 ,1,0,196790 ,2,14981,92395 ,2,14982,594675 ,2,14983,45 ,1,0,197210 ,2,14981,166440 ,2,14982,594730 ,2,14983,45 ,1,0,197660 ,2,14981,166440 ,2,14982,594730 ,2,14983,45 ,1,0,198205 ,2,14981,218810 ,2,14982,560425 ,2,14983,45 ,1,0,198530 ,2,14981,167055 ,2,14982,590975 ,2,14983,45 ,1,0,198965 ,2,14981,92205 ,2,14982,594750 ,2,14983,45 ,1,0,199480 ,2,14981,92205 ,2,14982,594755 ,2,14983,45 ,1,0,199805 ,2,14981,218875 ,2,14982,590855 ,2,14983,45 ,1,0,200115 ,2,14981,166490 ,2,14982,594760 ,2,14983,45 ,1,0,200560 ,2,14981,166490 ,2,14982,594765 ,2,14983,45 ,1,0,200890 ,2,14981,129555 ,2,14982,590705 ,2,14983,45 ,1,0,201320 ,2,14981,129615 ,2,14982,590705 ,2,14983,45 ,1,0,201875 ,2,14981,119845 ,2,14982,594815 ,2,14983,45 ,1,0,202420 ,2,14981,119845 ,2,14982,594820 ,2,14983,45 ,1,0,202745 ,2,14981,119845 ,2,14982,590920 ,2,14983,45 ,1,0,203080 ,2,14981,119845 ,2,14982,590925 ,2,14983,45 ,1,0,203400 ,2,14981,119845 ,2,14982,591435 ,2,14983,45 ,1,0,203740 ,2,14981,119845 ,2,14982,591440 ,2,14983,45 ,1,0,204070 ,2,14981,119845 ,2,14982,590930 ,2,14983,45 ,1,0,204495 ,2,14981,119845 ,2,14982,590945 ,2,14983,45 ,1,0,204930 ,2,14981,119845 ,2,14982,594855 ,2,14983,45 ,1,0,205405 ,2,14981,119845 ,2,14982,594860 ,2,14983,45 ,1,0,205825 ,2,14981,119845 ,2,14982,594865 ,2,14983,45 ,1,0,206245 ,2,14981,119845 ,2,14982,594870 ,2,14983,45 ,1,0,206795 ,2,14981,128960 ,2,14982,590710 ,2,14983,45 ,1,0,207115 ,2,14981,129195 ,2,14982,594875 ,2,14983,45 ,1,0,207430 ,2,14981,125340 ,2,14982,589585 ,2,14983,45 ,1,0,207865 ,2,14981,125340 ,2,14982,594880 ,2,14983,45 ,1,0,208405 ,2,14981,107365 ,2,14982,590710 ,2,14983,45 ,1,0,208905 ,2,14981,129015 ,2,14982,590710 ,2,14983,45 ,1,0,209245 ,2,14981,107175 ,2,14982,590710 ,2,14983,45 ,1,0,209665 ,2,14981,129070 ,2,14982,594885 ,2,14983,45 ,1,0,210095 ,2,14981,125320 ,2,14982,590710 ,2,14983,45 ,1,0,210420 ,2,14981,106710 ,2,14982,594920 ,2,14983,45 ,1,0,210850 ,2,14981,128995 ,2,14982,590710 ,2,14983,45 ,1,0,211160 ,2,14981,129245 ,2,14982,590975 ,2,14983,45 ,1,0,211585 ,2,14981,111535 ,2,14982,593840 ,2,14983,45 ,1,0,212135 ,2,14981,219265 ,2,14982,605945 ,2,14983,613115 ,1,0,212575 ,2,14981,219275 ,2,14982,605950 ,2,14983,613120 ,1,0,213020 ,2,14981,166080 ,2,14982,590855 ,2,14983,45 ,1,0,213355 ,2,14981,198780 ,2,14982,590855 ,2,14983,45 ,1,0,213775 ,2,14981,199600 ,2,14982,590855 ,2,14983,45 ,1,0,214130 ,2,14981,219425 ,2,14982,590710 ,2,14983,45 ,1,0,214465 ,2,14981,219425 ,2,14982,594930 ,2,14983,45 ,1,0,214780 ,2,14981,219425 ,2,14982,590710 ,2,14983,45 ,1,0,215110 ,2,14981,219425 ,2,14982,590710 ,2,14983,45 ,1,0,215555 ,2,14981,199655 ,2,14982,590855 ,2,14983,45 ,1,0,216075 ,2,14981,199460 ,2,14982,558515 ,2,14983,45 ,1,0,216380 ,2,14981,199495 ,2,14982,590855 ,2,14983,45 ,1,0,216950 ,2,14981,199450 ,2,14982,558515 ,2,14983,45 ,1,0,217250 ,2,14981,219475 ,2,14982,594940 ,2,14983,45 ,1,0,217675 ,2,14981,199440 ,2,14982,590855 ,2,14983,45 ,1,0,218095 ,2,14981,199430 ,2,14982,558515 ,2,14983,45 ,1,0,218680 ,2,14981,199430 ,2,14982,585800 ,2,14983,45 ,1,0,219095 ,2,14981,199125 ,2,14982,590855 ,2,14983,45 ,1,0,219420 ,2,14981,166015 ,2,14982,590855 ,2,14983,45 ,1,0,220035 ,2,14981,166070 ,2,14982,590855 ,2,14983,45 ,1,0,220555 ,2,14981,198700 ,2,14982,594990 ,2,14983,45 ,1,0,221115 ,2,14981,198800 ,2,14982,590855 ,2,14983,45 ,1,0,221640 ,2,14981,219600 ,2,14982,594995 ,2,14983,45 ,1,0,222170 ,2,14981,199590 ,2,14982,590855 ,2,14983,45 ,1,0,222620 ,2,14981,219630 ,2,14982,595005 ,2,14983,45 ,1,0,222940 ,2,14981,219660 ,2,14982,595020 ,2,14983,45 ,1,0,223820 ,2,14981,219660 ,2,14982,595060 ,2,14983,45 ,1,0,224275 ,2,14981,114700 ,2,14982,595065 ,2,14983,45 ,1,0,224690 ,2,14981,114700 ,2,14982,595515 ,2,14983,45 ,1,0,225100 ,2,14981,219745 ,2,14982,590855 ,2,14983,45 ,1,0,225440 ,2,14981,198345 ,2,14982,577480 ,2,14983,45 ,1,0,225760 ,2,14981,197805 ,2,14982,590855 ,2,14983,45 ,1,0,226175 ,2,14981,198410 ,2,14982,590855 ,2,14983,45 ,1,0,226635 ,2,14981,198555 ,2,14982,561240 ,2,14983,45 ,1,0,227020 ,2,14981,198565 ,2,14982,595080 ,2,14983,45 ,1,0,227465 ,2,14981,190140 ,2,14982,595090 ,2,14983,45 ,1,0,227770 ,2,14981,199635 ,2,14982,590855 ,2,14983,45 ,1,0,228120 ,2,14981,198580 ,2,14982,561240 ,2,14983,45 ,1,0,228540 ,2,14981,198430 ,2,14982,595080 ,2,14983,45 ,1,0,228950 ,2,14981,93620 ,2,14982,590855 ,2,14983,45 ,1,0,229345 ,2,14981,209885 ,2,14982,590855 ,2,14983,45 ,1,0,229790 ,2,14981,209945 ,2,14982,590855 ,2,14983,45 ,1,0,230230 ,2,14981,198910 ,2,14982,590855 ,2,14983,45 ,1,0,230630 ,2,14981,125765 ,2,14982,594505 ,2,14983,45 ,1,0,230990 ,2,14981,125680 ,2,14982,594505 ,2,14983,45 ,1,0,231710 ,2,14981,88085 ,2,14982,595105 ,2,14983,45 ,1,0,232055 ,2,14981,96465 ,2,14982,595105 ,2,14983,45 ,1,0,232485 ,2,14981,125590 ,2,14982,590710 ,2,14983,45 ,1,0,233005 ,2,14981,125565 ,2,14982,594505 ,2,14983,45 ,1,0,233350 ,2,14981,219995 ,2,14982,594510 ,2,14983,45 ,1,0,234165 ,2,14981,125785 ,2,14982,594540 ,2,14983,45 ,1,0,234785 ,2,14981,107125 ,2,14982,590710 ,2,14983,45 ,1,0,235330 ,2,14981,107115 ,2,14982,590710 ,2,14983,45 ,1,0,235780 ,2,14981,107405 ,2,14982,590975 ,2,14983,45 ,1,0,236540 ,2,14981,125485 ,2,14982,590710 ,2,14983,45 ,1,0,236960 ,2,14981,126145 ,2,14982,590710 ,2,14983,45 ,1,0,237710 ,2,14981,220120 ,2,14982,590710 ,2,14983,45 ,1,0,238120 ,2,14981,220120 ,2,14982,594930 ,2,14983,45 ,1,0,238785 ,2,14981,220120 ,2,14982,590710 ,2,14983,45 ,1,0,239390 ,2,14981,220130 ,2,14982,590855 ,2,14983,45 ,1,0,240125 ,2,14981,199735 ,2,14982,595115 ,2,14983,45 ,1,0,240540 ,2,14981,220170 ,2,14982,594355 ,2,14983,45 ,1,0,240865 ,2,14981,140995 ,2,14982,594360 ,2,14983,45 ,1,0,241585 ,2,14981,140985 ,2,14982,595160 ,2,14983,45 ,1,0,242015 ,2,14981,140985 ,2,14982,595170 ,2,14983,45 ,1,0,242320 ,2,14981,140985 ,2,14982,595175 ,2,14983,45 ,1,0,243045 ,2,14981,167380 ,2,14982,595190 ,2,14983,45 ,1,0,243390 ,2,14981,201340 ,2,14982,595235 ,2,14983,45 ,1,0,243865 ,2,14981,201240 ,2,14982,595240 ,2,14983,45 ,1,0,244260 ,2,14981,68875 ,2,14982,560925 ,2,14983,45 ,1,0,244800 ,2,14981,68940 ,2,14982,560930 ,2,14983,45 ,1,0,245240 ,2,14981,68660 ,2,14982,560425 ,2,14983,45 ,1,0,245890 ,2,14981,68455 ,2,14982,560825 ,2,14983,45 ,1,0,246520 ,2,14981,90910 ,2,14982,590710 ,2,14983,45 ,1,0,246955 ,2,14981,220360 ,2,14982,595285 ,2,14983,45 ,1,0,247530 ,2,14981,220435 ,2,14982,595290 ,2,14983,45 ,1,0,247940 ,2,14981,220405 ,2,14982,595285 ,2,14983,45 ,1,0,248235 ,2,14981,220415 ,2,14982,595290 ,2,14983,45 ,1,0,248995 ,2,14981,163020 ,2,14982,595305 ,2,14983,45 ,1,0,249625 ,2,14981,91640 ,2,14982,595305 ,2,14983,45 ,1,0,249960 ,2,14981,163020 ,2,14982,595305 ,2,14983,45 ,1,0,250685 ,2,14981,117710 ,2,14982,595310 ,2,14983,45 ,1,0,251360 ,2,14981,102355 ,2,14982,595320 ,2,14983,45 ,1,0,251915 ,2,14981,220490 ,2,14982,595285 ,2,14983,45 ,1,0,252345 ,2,14981,220500 ,2,14982,595290 ,2,14983,45 ,1,0,252790 ,2,14981,106485 ,2,14982,595305 ,2,14983,45 ,1,0,253430 ,2,14981,162355 ,2,14982,590710 ,2,14983,45 ,1,0,253950 ,2,14981,162355 ,2,14982,591755 ,2,14983,45 ,1,0,254270 ,2,14981,202730 ,2,14982,595355 ,2,14983,45 ,1,0,254620 ,2,14981,202215 ,2,14982,595355 ,2,14983,45 ,1,0,255230 ,2,14981,220615 ,2,14982,595360 ,2,14983,45 ,1,0,255665 ,2,14981,220605 ,2,14982,595365 ,2,14983,45 ,1,0,256185 ,2,14981,208470 ,2,14982,595370 ,2,14983,45 ,1,0,256685 ,2,14981,208470 ,2,14982,595375 ,2,14983,45 ,1,0,257215 ,2,14981,202580 ,2,14982,595385 ,2,14983,45 ,1,0,257735 ,2,14981,208640 ,2,14982,595420 ,2,14983,45 ,1,0,258285 ,2,14981,208640 ,2,14982,595425 ,2,14983,45 ,1,0,258790 ,2,14981,208655 ,2,14982,595425 ,2,14983,45 ,1,0,260065 ,2,14981,208630 ,2,14982,595365 ,2,14983,45 ,1,0,260575 ,2,14981,208630 ,2,14982,595360 ,2,14983,45 ,1,0,261080 ,2,14981,208720 ,2,14982,595430 ,2,14983,45 ,1,0,261795 ,2,14981,207395 ,2,14982,595435 ,2,14983,45 ,1,0,262130 ,2,14981,64860 ,2,14982,595445 ,2,14983,45 ,1,0,262525 ,2,14981,82600 ,2,14982,590710 ,2,14983,45 ,1,0,262830 ,2,14981,82600 ,2,14982,595450 ,2,14983,45 ,1,0,263255 ,2,14981,68375 ,2,14982,560820 ,2,14983,45 ,1,0,263660 ,2,14981,67975 ,2,14982,560425 ,2,14983,45 ,1,0,264000 ,2,14981,67095 ,2,14982,595455 ,2,14983,45 ,1,0,264830 ,2,14981,70475 ,2,14982,590710 ,2,14983,45 ,1,0,265180 ,2,14981,67900 ,2,14982,558515 ,2,14983,45 ,1,0,265690 ,2,14981,90015 ,2,14982,560425 ,2,14983,45 ,1,0,266115 ,2,14981,204995 ,2,14982,590710 ,2,14983,45 ,1,0,266660 ,2,14981,83320 ,2,14982,595510 ,2,14983,45 ,1,0,266955 ,2,14981,209220 ,2,14982,595445 ,2,14983,45 ,1,0,267365 ,2,14981,83870 ,2,14982,558515 ,2,14983,45 ,1,0,267675 ,2,14981,83965 ,2,14982,595580 ,2,14983,45 ,1,0,267940 ,2,14981,208480 ,2,14982,595595 ,2,14983,45 ,1,0,268245 ,2,14981,208830 ,2,14982,595625 ,2,14983,45 ,1,0,268650 ,2,14981,208830 ,2,14982,595355 ,2,14983,45 ,1,0,269075 ,2,14981,221025 ,2,14982,595630 ,2,14983,45 ,1,0,269585 ,2,14981,208065 ,2,14982,595635 ,2,14983,45 ,1,0,270215 ,2,14981,208820 ,2,14982,595625 ,2,14983,45 ,1,0,270735 ,2,14981,208820 ,2,14982,595355 ,2,14983,45 ,1,0,271315 ,2,14981,208030 ,2,14982,595635 ,2,14983,45 ,1,0,271970 ,2,14981,208790 ,2,14982,595625 ,2,14983,45 ,1,0,272575 ,2,14981,208790 ,2,14982,595355 ,2,14983,45 ,1,0,273100 ,2,14981,208860 ,2,14982,595640 ,2,14983,45 ,1,0,273620 ,2,14981,208860 ,2,14982,595640 ,2,14983,45 ,1,0,274020 ,2,14981,201910 ,2,14982,585845 ,2,14983,45 ,1,0,274645 ,2,14981,202620 ,2,14982,595355 ,2,14983,45 ,1,0,275245 ,2,14981,202700 ,2,14982,595355 ,2,14983,45 ,1,0,275675 ,2,14981,207905 ,2,14982,595635 ,2,14983,45 ,1,0,276390 ,2,14981,208780 ,2,14982,595625 ,2,14983,45 ,1,0,276885 ,2,14981,208780 ,2,14982,595355 ,2,14983,45 ,1,0,277380 ,2,14981,208095 ,2,14982,595635 ,2,14983,45 ,1,0,277685 ,2,14981,208665 ,2,14982,595625 ,2,14983,45 ,1,0,278475 ,2,14981,208685 ,2,14982,595430 ,2,14983,45 ,1,0,278785 ,2,14981,209815 ,2,14982,590855 ,2,14983,45 ,1,0,279175 ,2,14981,209785 ,2,14982,590855 ,2,14983,45 ,1,0,279490 ,2,14981,105565 ,2,14982,589585 ,2,14983,45 ,1,0,280095 ,2,14981,105555 ,2,14982,591690 ,2,14983,45 ,1,0,280725 ,2,14981,105745 ,2,14982,591690 ,2,14983,45 ,1,0,281245 ,2,14981,93365 ,2,14982,595455 ,2,14983,45 ,1,0,281820 ,2,14981,117740 ,2,14982,595660 ,2,14983,45 ,1,0,282485 ,2,14981,117820 ,2,14982,560425 ,2,14983,45 ,1,0,283215 ,2,14981,206725 ,2,14982,595685 ,2,14983,45 ,1,0,283830 ,2,14981,221395 ,2,14982,595695 ,2,14983,45 ,1,0,284575 ,2,14981,96745 ,2,14982,595705 ,2,14983,45 ,1,0,285085 ,2,14981,221455 ,2,14982,595720 ,2,14983,45 ,1,0,285405 ,2,14981,221465 ,2,14982,595695 ,2,14983,45 ,1,0,286470 ,2,14981,96675 ,2,14982,595705 ,2,14983,45 ,1,0,287105 ,2,14981,221490 ,2,14982,595720 ,2,14983,45 ,1,0,287525 ,2,14981,221500 ,2,14982,595695 ,2,14983,45 ,1,0,288735 ,2,14981,96850 ,2,14982,595705 ,2,14983,45 ,1,0,290590 ,2,14981,221520 ,2,14982,595755 ,2,14983,45 ,1,0,291095 ,2,14981,97095 ,2,14982,595760 ,2,14983,45 ,1,0,291495 ,2,14981,70620 ,2,14982,561245 ,2,14983,45 ,1,0,291890 ,2,14981,221595 ,2,14982,595790 ,2,14983,45 ,1,0,292500 ,2,14981,81390 ,2,14982,595815 ,2,14983,45 ,1,0,292920 ,2,14981,78290 ,2,14982,595830 ,2,14983,45 ,1,0,293435 ,2,14981,78005 ,2,14982,595840 ,2,14983,45 ,1,0,294855 ,2,14981,221675 ,2,14982,595850 ,2,14983,45 ,1,0,296310 ,2,14981,94065 ,2,14982,595855 ,2,14983,45 ,1,0,296860 ,2,14981,82660 ,2,14982,595895 ,2,14983,45 ,1,0,298700 ,2,14981,91470 ,2,14982,558515 ,2,14983,45 ,1,0,299125 ,2,14981,158280 ,2,14982,590855 ,2,14983,45 ,1,0,300405 ,2,14981,158345 ,2,14982,590855 ,2,14983,45 ,1,0,301065 ,2,14981,222115 ,2,14982,590855 ,2,14983,45 ,1,0,302775 ,2,14981,221870 ,2,14982,558515 ,2,14983,45 ,1,0,303220 ,2,14981,221830 ,2,14982,590855 ,2,14983,45 ,1,0,303855 ,2,14981,90315 ,2,14982,560425 ,2,14983,45 ,1,0,304255 ,2,14981,89435 ,2,14982,590710 ,2,14983,45 ,1,0,304680 ,2,14981,221985 ,2,14982,590855 ,2,14983,45 ,1,0,305030 ,2,14981,221995 ,2,14982,590710 ,2,14983,45 ,1,0,305650 ,2,14981,221995 ,2,14982,595115 ,2,14983,45 ,1,0,306050 ,2,14981,180590 ,2,14982,590855 ,2,14983,45 ,1,0,306500 ,2,14981,222075 ,2,14982,558515 ,2,14983,45 ,1,0,306915 ,2,14981,222075 ,2,14982,558515 ,2,14983,45 ,1,0,307425 ,2,14981,180610 ,2,14982,590855 ,2,14983,45 ,1,0,307930 ,2,14981,222105 ,2,14982,590855 ,2,14983,45 ,1,0,308575 ,2,14981,222125 ,2,14982,595115 ,2,14983,45 ,1,0,309940 ,2,14981,222125 ,2,14982,595115 ,2,14983,45 ,1,0,310270 ,2,14981,165020 ,2,14982,590855 ,2,14983,45 ,1,0,311200 ,2,14981,165045 ,2,14982,590855 ,2,14983,45 ,1,0,311790 ,2,14981,91970 ,2,14982,590855 ,2,14983,45 ,1,0,312120 ,2,14981,91590 ,2,14982,590855 ,2,14983,45 ,1,0,312570 ,2,14981,91875 ,2,14982,590855 ,2,14983,45 ,1,0,313000 ,2,14981,71670 ,2,14982,596065 ,2,14983,45 ,1,0,313755 ,2,14981,75160 ,2,14982,596075 ,2,14983,45 ,1,0,314175 ,2,14981,91885 ,2,14982,590855 ,2,14983,45 ,1,0,314710 ,2,14981,222325 ,2,14982,590710 ,2,14983,45 ,1,0,315400 ,2,14981,104305 ,2,14982,590710 ,2,14983,45 ,1,0,315800 ,2,14981,100680 ,2,14982,590660 ,2,14983,45 ,1,0,316200 ,2,14981,101535 ,2,14982,596100 ,2,14983,45 ,1,0,316525 ,2,14981,100185 ,2,14982,596125 ,2,14983,45 ,1,0,316850 ,2,14981,100165 ,2,14982,590660 ,2,14983,45 ,1,0,317150 ,2,14981,100120 ,2,14982,596125 ,2,14983,45 ,1,0,317585 ,2,14981,222415 ,2,14982,595285 ,2,14983,45 ,1,0,318215 ,2,14981,222445 ,2,14982,595290 ,2,14983,45 ,1,0,318645 ,2,14981,99180 ,2,14982,595305 ,2,14983,45 ,1,0,319040 ,2,14981,100075 ,2,14982,596125 ,2,14983,45 ,1,0,319355 ,2,14981,103630 ,2,14982,590710 ,2,14983,45 ,1,0,319655 ,2,14981,222515 ,2,14982,596135 ,2,14983,45 ,1,0,320080 ,2,14981,96890 ,2,14982,596140 ,2,14983,45 ,1,0,320600 ,2,14981,100020 ,2,14982,590660 ,2,14983,45 ,1,0,320910 ,2,14981,222590 ,2,14982,595285 ,2,14983,45 ,1,0,321755 ,2,14981,222630 ,2,14982,595290 ,2,14983,45 ,1,0,322185 ,2,14981,84400 ,2,14982,595305 ,2,14983,45 ,1,0,322625 ,2,14981,99705 ,2,14982,596100 ,2,14983,45 ,1,0,322915 ,2,14981,96560 ,2,14982,596200 ,2,14983,45 ,1,0,323230 ,2,14981,96560 ,2,14982,596205 ,2,14983,45 ,1,0,323650 ,2,14981,96560 ,2,14982,591725 ,2,14983,45 ,1,0,323960 ,2,14981,96560 ,2,14982,596220 ,2,14983,45 ,1,0,324490 ,2,14981,96605 ,2,14982,596225 ,2,14983,45 ,1,0,324995 ,2,14981,96550 ,2,14982,596225 ,2,14983,45 ,1,0,325495 ,2,14981,99545 ,2,14982,596235 ,2,14983,45 ,1,0,326025 ,2,14981,100000 ,2,14982,596220 ,2,14983,45 ,1,0,326530 ,2,14981,100000 ,2,14982,596220 ,2,14983,45 ,1,0,326855 ,2,14981,100000 ,2,14982,596100 ,2,14983,45 ,1,0,327150 ,2,14981,99390 ,2,14982,596125 ,2,14983,45 ,1,0,327465 ,2,14981,163200 ,2,14982,591690 ,2,14983,45 ,1,0,327765 ,2,14981,163640 ,2,14982,590710 ,2,14983,45 ,1,0,328540 ,2,14981,163720 ,2,14982,596260 ,2,14983,45 ,1,0,329065 ,2,14981,104100 ,2,14982,596265 ,2,14983,45 ,1,0,329615 ,2,14981,104295 ,2,14982,590710 ,2,14983,45 ,1,0,329925 ,2,14981,104400 ,2,14982,590975 ,2,14983,45 ,1,0,330320 ,2,14981,222870 ,2,14982,590855 ,2,14983,45 ,1,0,330790 ,2,14981,93690 ,2,14982,596275 ,2,14983,45 ,1,0,331075 ,2,14981,66420 ,2,14982,596290 ,2,14983,45 ,1,0,331415 ,2,14981,145290 ,2,14982,590855 ,2,14983,45 ,1,0,331820 ,2,14981,81420 ,2,14982,596300 ,2,14983,45 ,1,0,332170 ,2,14981,66815 ,2,14982,590855 ,2,14983,45 ,1,0,332705 ,2,14981,88780 ,2,14982,590855 ,2,14983,45 ,1,0,333275 ,2,14981,222995 ,2,14982,590855 ,2,14983,45 ,1,0,334055 ,2,14981,88760 ,2,14982,596335 ,2,14983,45 ,1,0,334370 ,2,14981,93575 ,2,14982,590855 ,2,14983,45 ,1,0,335105 ,2,14981,93585 ,2,14982,596275 ,2,14983,45 ,1,0,335460 ,2,14981,223050 ,2,14982,590855 ,2,14983,45 ,1,0,336015 ,2,14981,164530 ,2,14982,590855 ,2,14983,45 ,1,0,336565 ,2,14981,164540 ,2,14982,590855 ,2,14983,45 ,1,0,337040 ,2,14981,223095 ,2,14982,595285 ,2,14983,45 ,1,0,337480 ,2,14981,205620 ,2,14982,595290 ,2,14983,45 ,1,0,337800 ,2,14981,77740 ,2,14982,596420 ,2,14983,45 ,1,0,338225 ,2,14981,88795 ,2,14982,596420 ,2,14983,45 ,1,0,338795 ,2,14981,93640 ,2,14982,590855 ,2,14983,45 ,1,0,339335 ,2,14981,93670 ,2,14982,590855 ,2,14983,45 ,1,0,339950 ,2,14981,103755 ,2,14982,590855 ,2,14983,45 ,1,0,340280 ,2,14981,70240 ,2,14982,590710 ,2,14983,45 ,1,0,341245 ,2,14981,223210 ,2,14982,595285 ,2,14983,45 ,1,0,341800 ,2,14981,223220 ,2,14982,595290 ,2,14983,45 ,1,0,342305 ,2,14981,106295 ,2,14982,595305 ,2,14983,45 ,1,0,342655 ,2,14981,105535 ,2,14982,589585 ,2,14983,45 ,1,0,343155 ,2,14981,105615 ,2,14982,591690 ,2,14983,45 ,1,0,343675 ,2,14981,164585 ,2,14982,590710 ,2,14983,45 ,1,0,344095 ,2,14981,164585 ,2,14982,590710 ,2,14983,45 ,1,0,344760 ,2,14981,164865 ,2,14982,590710 ,2,14983,45 ,1,0,345425 ,2,14981,64990 ,2,14982,595455 ,2,14983,45 ,1,0,345935 ,2,14981,93895 ,2,14982,596430 ,2,14983,45 ,1,0,346505 ,2,14981,223380 ,2,14982,595285 ,2,14983,45 ,1,0,346800 ,2,14981,223435 ,2,14982,595290 ,2,14983,45 ,1,0,347445 ,2,14981,223400 ,2,14982,595285 ,2,14983,45 ,1,0,347905 ,2,14981,223425 ,2,14982,595290 ,2,14983,45 ,1,0,348225 ,2,14981,94000 ,2,14982,595305 ,2,14983,45 ,1,0,348650 ,2,14981,94000 ,2,14982,595305 ,2,14983,45 ,1,0,349160 ,2,14981,88355 ,2,14982,590710 ,2,14983,45 ,1,0,349480 ,2,14981,91735 ,2,14982,596470 ,2,14983,45 ,1,0,350205 ,2,14981,165315 ,2,14982,590975 ,2,14983,45 ,1,0,350530 ,2,14981,223530 ,2,14982,590855 ,2,14983,45 ,1,0,351405 ,2,14981,163860 ,2,14982,595115 ,2,14983,45 ,1,0,351850 ,2,14981,163860 ,2,14982,590710 ,2,14983,45 ,1,0,352505 ,2,14981,163860 ,2,14982,590710 ,2,14983,45 ,1,0,353045 ,2,14981,69975 ,2,14982,590710 ,2,14983,45 ,1,0,353365 ,2,14981,223620 ,2,14982,590855 ,2,14983,45 ,1,0,354335 ,2,14981,223620 ,2,14982,606000 ,2,14983,613130 ,1,0,354850 ,2,14981,83555 ,2,14982,558515 ,2,14983,45 ,1,0,355160 ,2,14981,83555 ,2,14982,558515 ,2,14983,45 ,1,0,355825 ,2,14981,69915 ,2,14982,590710 ,2,14983,45 ,1,0,356495 ,2,14981,69825 ,2,14982,590710 ,2,14983,45 ,1,0,357015 ,2,14981,70185 ,2,14982,590710 ,2,14983,45 ,1,0,357700 ,2,14981,70185 ,2,14982,596535 ,2,14983,45 ,1,0,358240 ,2,14981,205065 ,2,14982,596535 ,2,14983,45 ,1,0,358865 ,2,14981,70185 ,2,14982,558515 ,2,14983,45 ,1,0,359400 ,2,14981,223835 ,2,14982,596540 ,2,14983,45 ,1,0,359910 ,2,14981,69745 ,2,14982,560425 ,2,14983,45 ,1,0,360465 ,2,14981,69745 ,2,14982,560425 ,2,14983,45 ,1,0,360985 ,2,14981,69745 ,2,14982,560425 ,2,14983,45 ,1,0,361500 ,2,14981,69935 ,2,14982,590710 ,2,14983,45 ,1,0,362025 ,2,14981,223895 ,2,14982,606005 ,2,14983,45 ,1,0,362845 ,2,14981,83100 ,2,14982,596615 ,2,14983,45 ,1,0,363515 ,2,14981,78505 ,2,14982,596620 ,2,14983,45 ,1,0,363890 ,2,14981,82325 ,2,14982,562680 ,2,14983,45 ,1,0,364430 ,2,14981,78550 ,2,14982,596630 ,2,14983,45 ,1,0,365080 ,2,14981,78550 ,2,14982,596650 ,2,14983,45 ,1,0,365525 ,2,14981,79470 ,2,14982,596655 ,2,14983,45 ,1,0,366155 ,2,14981,73740 ,2,14982,596420 ,2,14983,45 ,1,0,366775 ,2,14981,73740 ,2,14982,596420 ,2,14983,45 ,1,0,367220 ,2,14981,73815 ,2,14982,590710 ,2,14983,45 ,1,0,367535 ,2,14981,70435 ,2,14982,596725 ,2,14983,45 ,1,0,368480 ,2,14981,224175 ,2,14982,596755 ,2,14983,45 ,1,0,368915 ,2,14981,224175 ,2,14982,590710 ,2,14983,45 ,1,0,369335 ,2,14981,71500 ,2,14982,590710 ,2,14983,45 ,1,0,369640 ,2,14981,45 ,2,14982,558045 ,1,0,370165 ,2,14981,45 ,2,14982,558050 ,1,0,370775 ,2,14981,58830 ,2,14982,558485 ,1,0,371405 ,2,14981,45 ,2,14982,559715 ,1,0,371845 ,2,14981,66855 ,2,14982,560425 ,1,0,372255 ,2,14981,66895 ,2,14982,560445 ,1,0,372805 ,2,14981,69190 ,2,14982,560635 ,1,0,373220 ,2,14981,69210 ,2,14982,560650 ,1,0,373625 ,2,14981,67630 ,2,14982,600450 ,1,0,374045 ,2,14981,68000 ,2,14982,560690 ,1,0,374355 ,2,14981,69200 ,2,14982,560700 ,1,0,374670 ,2,14981,68060 ,2,14982,600465 ,1,0,375075 ,2,14981,68080 ,2,14982,560705 ,1,0,375270 ,2,14981,69235 ,2,14982,560720 ,1,0,375570 ,2,14981,69180 ,2,14982,560760 ,1,0,375890 ,2,14981,68265 ,2,14982,560780 ,1,0,376115 ,2,14981,68335 ,2,14982,560785 ,1,0,376300 ,2,14981,68375 ,2,14982,560820 ,1,0,376720 ,2,14981,68455 ,2,14982,560825 ,1,0,376930 ,2,14981,69225 ,2,14982,560835 ,1,0,377105 ,2,14981,68485 ,2,14982,600475 ,1,0,377355 ,2,14981,68020 ,2,14982,560845 ,1,0,377655 ,2,14981,67570 ,2,14982,560885 ,1,0,377905 ,2,14981,68670 ,2,14982,560895 ,1,0,378235 ,2,14981,68725 ,2,14982,560900 ,1,0,378600 ,2,14981,68765 ,2,14982,560915 ,1,0,379050 ,2,14981,68835 ,2,14982,560920 ,1,0,379345 ,2,14981,68875 ,2,14982,560925 ,1,0,379570 ,2,14981,68940 ,2,14982,560930 ,1,0,379760 ,2,14981,68200 ,2,14982,560950 ,1,0,379950 ,2,14981,67620 ,2,14982,560970 ,1,0,380405 ,2,14981,45 ,2,14982,560975 ,1,0,380790 ,2,14981,69395 ,2,14982,561020 ,1,0,380975 ,2,14981,68050 ,2,14982,561025 ,1,0,381200 ,2,14981,69085 ,2,14982,561030 ,1,0,381540 ,2,14981,68475 ,2,14982,561035 ,1,0,381825 ,2,14981,68110 ,2,14982,561045 ,1,0,382065 ,2,14981,67000 ,2,14982,561055 ,1,0,382370 ,2,14981,69310 ,2,14982,561060 ,1,0,382680 ,2,14981,69425 ,2,14982,561085 ,1,0,383000 ,2,14981,69585 ,2,14982,561090 ,1,0,383235 ,2,14981,70070 ,2,14982,561160 ,1,0,383430 ,2,14981,70090 ,2,14982,561165 ,1,0,383665 ,2,14981,70155 ,2,14982,561170 ,1,0,383865 ,2,14981,70315 ,2,14982,561225 ,1,0,384060 ,2,14981,70365 ,2,14982,561230 ,1,0,384490 ,2,14981,70445 ,2,14982,561235 ,1,0,384670 ,2,14981,70520 ,2,14982,561240 ,1,0,384860 ,2,14981,70620 ,2,14982,561245 ,1,0,385100 ,2,14981,71375 ,2,14982,561425 ,1,0,385340 ,2,14981,73650 ,2,14982,561645 ,1,0,385535 ,2,14981,77770 ,2,14982,562475 ,1,0,385770 ,2,14981,45 ,2,14982,562500 ,1,0,386330 ,2,14981,45 ,2,14982,562590 ,1,0,386805 ,2,14981,45 ,2,14982,562600 ,1,0,387265 ,2,14981,78505 ,2,14982,562660 ,1,0,387705 ,2,14981,78505 ,2,14982,562665 ,1,0,388070 ,2,14981,45 ,2,14982,562680 ,1,0,388265 ,2,14981,78640 ,2,14982,562690 ,1,0,388730 ,2,14981,45 ,2,14982,563245 ,1,0,389015 ,2,14981,83210 ,2,14982,563585 ,1,0,389210 ,2,14981,69455 ,2,14982,563675 ,1,0,389430 ,2,14981,88670 ,2,14982,565095 ,1,0,389655 ,2,14981,45 ,2,14982,565150 ,1,0,389850 ,2,14981,45 ,2,14982,565420 ,1,0,390085 ,2,14981,90045 ,2,14982,565485 ,1,0,390330 ,2,14981,101535 ,2,14982,567745 ,1,0,390595 ,2,14981,104450 ,2,14982,568320 ,1,0,390835 ,2,14981,104470 ,2,14982,568325 ,1,0,391175 ,2,14981,104510 ,2,14982,568350 ,1,0,391365 ,2,14981,45 ,2,14982,568455 ,1,0,391700 ,2,14981,45 ,2,14982,571445 ,1,0,391865 ,2,14981,45 ,2,14982,571835 ,1,0,392170 ,2,14981,45 ,2,14982,571875 ,1,0,392400 ,2,14981,122770 ,2,14982,572350 ,1,0,392645 ,2,14981,125900 ,2,14982,573365 ,1,0,392875 ,2,14981,45 ,2,14982,574285 ,1,0,393150 ,2,14981,45 ,2,14982,577820 ,1,0,393375 ,2,14981,45 ,2,14982,578850 ,1,0,393580 ,2,14981,45 ,2,14982,578855 ,1,0,393920 ,2,14981,45 ,2,14982,578865 ,1,0,394300 ,2,14981,45 ,2,14982,578870 ,1,0,394690 ,2,14981,45 ,2,14982,578875 ,1,0,394935 ,2,14981,45 ,2,14982,578880 ,1,0,395200 ,2,14981,45 ,2,14982,578885 ,1,0,395565 ,2,14981,161250 ,2,14982,580560 ,1,0,395925 ,2,14981,165940 ,2,14982,581530 ,1,0,396295 ,2,14981,45 ,2,14982,582275 ,1,0,396640 ,2,14981,127430 ,2,14982,582505 ,1,0,396985 ,2,14981,180610 ,2,14982,584540 ,1,0,397170 ,2,14981,189060 ,2,14982,585820 ,1,0,397620 ,2,14981,45 ,2,14982,587520 ,1,0,398000 ,2,14981,211205 ,2,14982,590785 ,1,0,398220 ,2,14981,148480 ,2,14982,590790 ,1,0,398625 ,2,14981,212805 ,2,14982,591250 ,1,0,398950 ,2,14981,115755 ,2,14982,591285 ,1,0,399190 ,2,14981,45 ,2,14982,591315 ,1,0,399385 ,2,14981,195930 ,2,14982,591425 ,1,0,399645 ,2,14981,67105 ,2,14982,591445 ,1,0,399870 ,2,14981,67410 ,2,14982,591450 ,1,0,400110 ,2,14981,139000 ,2,14982,591455 ,1,0,400350 ,2,14981,67460 ,2,14982,591460 ,1,0,400580 ,2,14981,65305 ,2,14982,591475 ,1,0,400865 ,2,14981,214310 ,2,14982,592065 ,1,0,401035 ,2,14981,214360 ,2,14982,592085 ,1,0,401300 ,2,14981,214415 ,2,14982,592140 ,1,0,401555 ,2,14981,214475 ,2,14982,592190 ,1,0,401835 ,2,14981,214505 ,2,14982,592210 ,1,0,402065 ,2,14981,214535 ,2,14982,592240 ,1,0,402315 ,2,14981,214590 ,2,14982,592260 ,1,0,402590 ,2,14981,214620 ,2,14982,592305 ,1,0,402865 ,2,14981,214650 ,2,14982,592340 ,1,0,403200 ,2,14981,214835 ,2,14982,592530 ,1,0,403465 ,2,14981,214930 ,2,14982,592630 ,1,0,403655 ,2,14981,215580 ,2,14982,593015 ,1,0,404015 ,2,14981,215660 ,2,14982,593100 ,1,0,404225 ,2,14981,215690 ,2,14982,593135 ,1,0,404495 ,2,14981,215730 ,2,14982,593165 ,1,0,404695 ,2,14981,215800 ,2,14982,593205 ,1,0,404955 ,2,14981,215850 ,2,14982,593255 ,1,0,405145 ,2,14981,215885 ,2,14982,593275 ,1,0,405345 ,2,14981,215930 ,2,14982,593325 ,1,0,405525 ,2,14981,215970 ,2,14982,593350 ,1,0,405720 ,2,14981,216000 ,2,14982,593390 ,1,0,406005 ,2,14981,216095 ,2,14982,593435 ,1,0,406260 ,2,14981,216320 ,2,14982,593545 ,1,0,406465 ,2,14981,217915 ,2,14982,594300 ,1,0,406675 ,2,14981,123435 ,2,14982,594305 ,1,0,406895 ,2,14981,73930 ,2,14982,594335 ,1,0,407200 ,2,14981,45 ,2,14982,594345 ,1,0,407380 ,2,14981,218085 ,2,14982,594365 ,1,0,407570 ,2,14981,140995 ,2,14982,594410 ,1,0,407910 ,2,14981,65265 ,2,14982,594475 ,1,0,408120 ,2,14981,66480 ,2,14982,594480 ,1,0,408440 ,2,14981,218480 ,2,14982,594545 ,1,0,408695 ,2,14981,125785 ,2,14982,594550 ,1,0,409030 ,2,14981,136480 ,2,14982,594570 ,1,0,409230 ,2,14981,92120 ,2,14982,594740 ,1,0,409480 ,2,14981,87435 ,2,14982,595125 ,1,0,409705 ,2,14981,45 ,2,14982,595140 ,1,0,410350 ,2,14981,220380 ,2,14982,595295 ,1,0,410690 ,2,14981,91640 ,2,14982,595300 ,1,0,411060 ,2,14981,63795 ,2,14982,595350 ,1,0,411410 ,2,14981,70435 ,2,14982,595515 ,1,0,411740 ,2,14981,66530 ,2,14982,595655 ,1,0,412015 ,2,14981,221415 ,2,14982,595710 ,1,0,412320 ,2,14981,96850 ,2,14982,595715 ,1,0,412620 ,2,14981,221565 ,2,14982,595775 ,1,0,412815 ,2,14981,97095 ,2,14982,595780 ,1,0,412990 ,2,14981,221615 ,2,14982,595820 ,1,0,413835 ,2,14981,81390 ,2,14982,595825 ,1,0,414850 ,2,14981,221700 ,2,14982,595875 ,1,0,415130 ,2,14981,94065 ,2,14982,595880 ,1,0,415305 ,2,14981,45 ,2,14982,595910 ,1,0,415815 ,2,14981,221780 ,2,14982,595940 ,1,0,416045 ,2,14981,75150 ,2,14982,596070 ,1,0,416235 ,2,14981,222535 ,2,14982,596150 ,1,0,416420 ,2,14981,96890 ,2,14982,596155 ,1,0,416610 ,2,14981,115695 ,2,14982,596160 ,1,0,416780 ,2,14981,45 ,2,14982,596165 ,1,0,417095 ,2,14981,93690 ,2,14982,596285 ,1,0,417340 ,2,14981,45 ,2,14982,596325 ,1,0,417610 ,2,14981,45 ,2,14982,596415 ,1,0,417910 ,2,14981,204645 ,2,14982,596425 ,1,0,418240 ,2,14981,45 ,2,14982,596475 ,1,0,418530 ,2,14981,223660 ,2,14982,596490 ,1,0,418910 ,2,14981,223660 ,2,14982,596520 ,1,0,419285 ,2,14981,70015 ,2,14982,596545 ,1,0,419605 ,2,14981,78550 ,2,14982,596630 ,1,0,420040 ,2,14981,78550 ,2,14982,596650 ,1,0,420445 ,2,14981,58300 ,2,14982,596655 ,1,0,420840 ,2,14981,70435 ,2,14982,596730 ,1,0,421090 ,2,14981,224165 ,2,14982,596745 ,1,0,421420 ,2,14981,224165 ,2,14982,596750 ,1,0,421680 ,2,14981,45 ,2,14982,597155 ,1,0,421980 ,2,14981,195170 ,2,14982,597165 ,1,0,422235 ,2,14981,56760 ,2,14982,597200 ,1,0,422545 ,2,14981,200695 ,2,14982,597210 ,1,0,422805 ,2,14981,45 ,2,14982,597225 ,1,0,423110 ,2,14981,56730 ,2,14982,597230 ,1,0,423445 ,2,14981,68255 ,2,14982,597270 ,1,0,423750 ,2,14981,97485 ,2,14982,597275 ,1,0,424045 ,2,14981,93585 ,2,14982,597280 ,1,0,424295 ,2,14981,200775 ,2,14982,597290 ,1,0,424625 ,2,14981,161185 ,2,14982,597295 ,1,0,424955 ,2,14981,189235 ,2,14982,597315 ,1,0,425290 ,2,14981,167825 ,2,14982,597320 ,1,0,425550 ,2,14981,57460 ,2,14982,597325 ,1,0,425960 ,2,14981,45 ,2,14982,597330 ,1,0,426465 ,2,14981,45 ,2,14982,597340 ,1,0,426785 ,2,14981,140655 ,2,14982,597345 ,1,0,427100 ,2,14981,70620 ,2,14982,597350 ,1,0,427335 ,2,14981,65860 ,2,14982,597355 ,1,0,427640 ,2,14981,45 ,2,14982,597390 ,1,0,427965 ,2,14981,69650 ,2,14982,597395 ,1,0,428235 ,2,14981,164155 ,2,14982,597400 ,1,0,428420 ,2,14981,56740 ,2,14982,597405 ,1,0,428880 ,2,14981,92120 ,2,14982,597415 ,1,0,429180 ,2,14981,124660 ,2,14982,597420 ,1,0,429390 ,2,14981,205255 ,2,14982,597425 ,1,0,429700 ,2,14981,224820 ,2,14982,597450 ,1,0,429955 ,2,14981,68255 ,2,14982,598600 ,1,0,430280 ,2,14981,224840 ,2,14982,597455 ,1,0,430545 ,2,14981,68255 ,2,14982,598025 ,1,0,430805 ,2,14981,68255 ,2,14982,597480 ,1,0,430915 ,2,14981,88055 ,2,14982,597515 ,1,0,431100 ,2,14981,60470 ,2,14982,597520 ,1,0,431495 ,2,14981,166450 ,2,14982,597525 ,1,0,431755 ,2,14981,132790 ,2,14982,597530 ,1,0,432070 ,2,14981,45 ,2,14982,597535 ,1,0,432345 ,2,14981,45 ,2,14982,597540 ,1,0,432630 ,2,14981,45 ,2,14982,597545 ,1,0,432940 ,2,14981,171770 ,2,14982,597550 ,1,0,433190 ,2,14981,45 ,2,14982,597575 ,1,0,433525 ,2,14981,189235 ,2,14982,597580 ,1,0,433795 ,2,14981,60905 ,2,14982,597585 ,1,0,434045 ,2,14981,90910 ,2,14982,597590 ,1,0,434305 ,2,14981,101480 ,2,14982,597600 ,1,0,434530 ,2,14981,82650 ,2,14982,597605 ,1,0,434795 ,2,14981,90625 ,2,14982,597610 ,1,0,435020 ,2,14981,221830 ,2,14982,597615 ,1,0,435465 ,2,14981,89830 ,2,14982,597655 ,1,0,435825 ,2,14981,90450 ,2,14982,597660 ,1,0,436055 ,2,14981,68255 ,2,14982,597665 ,1,0,436420 ,2,14981,45 ,2,14982,597670 ,1,0,436695 ,2,14981,103135 ,2,14982,597680 ,1,0,437010 ,2,14981,114780 ,2,14982,597685 ,1,0,437335 ,2,14981,183150 ,2,14982,597690 ,1,0,437675 ,2,14981,183600 ,2,14982,597715 ,1,0,437920 ,2,14981,89585 ,2,14982,597720 ,1,0,438115 ,2,14981,82675 ,2,14982,597725 ,1,0,438325 ,2,14981,60925 ,2,14982,597730 ,1,0,438795 ,2,14981,163460 ,2,14982,597760 ,1,0,438950 ,2,14981,65115 ,2,14982,597765 ,1,0,439275 ,2,14981,110265 ,2,14982,597770 ,1,0,439540 ,2,14981,45 ,2,14982,597775 ,1,0,439895 ,2,14981,225285 ,2,14982,597820 ,1,0,440195 ,2,14981,58375 ,2,14982,597825 ,1,0,440430 ,2,14981,100585 ,2,14982,597830 ,1,0,440710 ,2,14981,61190 ,2,14982,597845 ,1,0,440945 ,2,14981,88430 ,2,14982,597850 ,1,0,441200 ,2,14981,62995 ,2,14982,597860 ,1,0,441590 ,2,14981,171750 ,2,14982,597885 ,1,0,441925 ,2,14981,66815 ,2,14982,597900 ,1,0,442240 ,2,14981,197170 ,2,14982,597910 ,1,0,442420 ,2,14981,225395 ,2,14982,597915 ,1,0,442940 ,2,14981,68255 ,2,14982,598610 ,1,0,443225 ,2,14981,99440 ,2,14982,597920 ,1,0,443400 ,2,14981,225455 ,2,14982,597945 ,1,0,443600 ,2,14981,68255 ,2,14982,598510 ,1,0,443880 ,2,14981,68255 ,2,14982,597955 ,1,0,444425 ,2,14981,45 ,2,14982,597970 ,1,0,444895 ,2,14981,185825 ,2,14982,597980 ,1,0,445090 ,2,14981,139055 ,2,14982,597985 ,1,0,445660 ,2,14981,97475 ,2,14982,598035 ,1,0,446350 ,2,14981,68255 ,2,14982,598045 ,1,0,447065 ,2,14981,183445 ,2,14982,598050 ,1,0,447475 ,2,14981,182005 ,2,14982,598055 ,1,0,447855 ,2,14981,45 ,2,14982,598060 ,1,0,448190 ,2,14981,60080 ,2,14982,598085 ,1,0,448530 ,2,14981,45 ,2,14982,598090 ,1,0,448910 ,2,14981,163450 ,2,14982,598095 ,1,0,449205 ,2,14981,104680 ,2,14982,598100 ,1,0,449600 ,2,14981,90045 ,2,14982,598105 ,1,0,449930 ,2,14981,83250 ,2,14982,598110 ,1,0,450180 ,2,14981,45 ,2,14982,598115 ,1,0,450355 ,2,14981,70250 ,2,14982,598120 ,1,0,450755 ,2,14981,63845 ,2,14982,598140 ,1,0,451160 ,2,14981,45 ,2,14982,598145 ,1,0,451535 ,2,14981,67530 ,2,14982,598150 ,1,0,451870 ,2,14981,68600 ,2,14982,598155 ,1,0,452240 ,2,14981,71445 ,2,14982,598175 ,1,0,452435 ,2,14981,225780 ,2,14982,598180 ,1,0,452705 ,2,14981,71670 ,2,14982,599755 ,1,0,452905 ,2,14981,45 ,2,14982,598185 ,1,0,453405 ,2,14981,92500 ,2,14982,598190 ,1,0,453720 ,2,14981,73815 ,2,14982,598205 ,1,0,453990 ,2,14981,67225 ,2,14982,598210 ,1,0,454230 ,2,14981,65355 ,2,14982,598215 ,1,0,454425 ,2,14981,184355 ,2,14982,598220 ,1,0,454715 ,2,14981,61905 ,2,14982,598225 ,1,0,454975 ,2,14981,185880 ,2,14982,598230 ,1,0,455310 ,2,14981,45 ,2,14982,598235 ,1,0,455565 ,2,14981,89215 ,2,14982,598240 ,1,0,455895 ,2,14981,183750 ,2,14982,598260 ,1,0,456265 ,2,14981,82610 ,2,14982,598265 ,1,0,456565 ,2,14981,184215 ,2,14982,598270 ,1,0,456900 ,2,14981,196825 ,2,14982,598275 ,1,0,457225 ,2,14981,68190 ,2,14982,598280 ,1,0,457550 ,2,14981,68755 ,2,14982,598285 ,1,0,457900 ,2,14981,60470 ,2,14982,598290 ,1,0,458295 ,2,14981,45 ,2,14982,598295 ,1,0,458645 ,2,14981,69405 ,2,14982,598310 ,1,0,458915 ,2,14981,185180 ,2,14982,598315 ,1,0,459215 ,2,14981,68255 ,2,14982,598320 ,1,0,459520 ,2,14981,57610 ,2,14982,598325 ,1,0,459835 ,2,14981,124890 ,2,14982,598330 ,1,0,460245 ,2,14981,45 ,2,14982,598335 ,1,0,460505 ,2,14981,166450 ,2,14982,598340 ,1,0,460925 ,2,14981,60540 ,2,14982,598385 ,1,0,461255 ,2,14981,45 ,2,14982,598390 ,1,0,461570 ,2,14981,45 ,2,14982,598395 ,1,0,461925 ,2,14981,100565 ,2,14982,598400 ,1,0,462100 ,2,14981,134615 ,2,14982,598405 ,1,0,462430 ,2,14981,45 ,2,14982,598410 ,1,0,462625 ,2,14981,66170 ,2,14982,598415 ,1,0,462920 ,2,14981,161240 ,2,14982,598420 ,1,0,463210 ,2,14981,58375 ,2,14982,598440 ,1,0,463555 ,2,14981,65825 ,2,14982,598445 ,1,0,463940 ,2,14981,68255 ,2,14982,598450 ,1,0,464195 ,2,14981,45 ,2,14982,598460 ,1,0,464565 ,2,14981,185295 ,2,14982,598470 ,1,0,464810 ,2,14981,160930 ,2,14982,598475 ,1,0,465165 ,2,14981,60650 ,2,14982,598495 ,1,0,465535 ,2,14981,64935 ,2,14982,598505 ,1,0,465790 ,2,14981,208640 ,2,14982,598520 ,1,0,466050 ,2,14981,201340 ,2,14982,598525 ,1,0,466355 ,2,14981,58300 ,2,14982,598530 ,1,0,466590 ,2,14981,184425 ,2,14982,598535 ,1,0,466910 ,2,14981,208075 ,2,14982,598570 ,1,0,467085 ,2,14981,161175 ,2,14982,598575 ,1,0,467435 ,2,14981,61230 ,2,14982,598580 ,1,0,467750 ,2,14981,45 ,2,14982,598585 ,1,0,468010 ,2,14981,88355 ,2,14982,598605 ,1,0,468255 ,2,14981,167725 ,2,14982,598640 ,1,0,468625 ,2,14981,185780 ,2,14982,598645 ,1,0,469065 ,2,14981,45 ,2,14982,598650 ,1,0,469310 ,2,14981,56740 ,2,14982,598655 ,1,0,469610 ,2,14981,63250 ,2,14982,598660 ,1,0,469900 ,2,14981,171990 ,2,14982,598665 ,1,0,470135 ,2,14981,161195 ,2,14982,598670 ,1,0,470430 ,2,14981,183130 ,2,14982,598700 ,1,0,470740 ,2,14981,183580 ,2,14982,598705 ,1,0,470985 ,2,14981,201240 ,2,14982,598710 ,1,0,471185 ,2,14981,68425 ,2,14982,598715 ,1,0,471490 ,2,14981,68920 ,2,14982,598720 ,1,0,471730 ,2,14981,60695 ,2,14982,598725 ,1,0,471980 ,2,14981,64760 ,2,14982,598735 ,1,0,472235 ,2,14981,61170 ,2,14982,598760 ,1,0,472490 ,2,14981,45 ,2,14982,598765 ,1,0,472835 ,2,14981,60050 ,2,14982,598770 ,1,0,473190 ,2,14981,205200 ,2,14982,598780 ,1,0,473545 ,2,14981,124900 ,2,14982,598785 ,1,0,473845 ,2,14981,45 ,2,14982,598790 ,1,0,474180 ,2,14981,45 ,2,14982,598795 ,1,0,474525 ,2,14981,68285 ,2,14982,598820 ,1,0,474930 ,2,14981,68785 ,2,14982,598825 ,1,0,475195 ,2,14981,64760 ,2,14982,598830 ,1,0,475450 ,2,14981,102675 ,2,14982,598835 ,1,0,475745 ,2,14981,124910 ,2,14982,598840 ,1,0,475980 ,2,14981,161270 ,2,14982,598850 ,1,0,476250 ,2,14981,184965 ,2,14982,598855 ,1,0,476505 ,2,14981,185405 ,2,14982,598890 ,1,0,476710 ,2,14981,67990 ,2,14982,598895 ,1,0,477000 ,2,14981,68715 ,2,14982,598900 ,1,0,477255 ,2,14981,69620 ,2,14982,598915 ,1,0,477550 ,2,14981,138905 ,2,14982,598920 ,1,0,477855 ,2,14981,99940 ,2,14982,598925 ,1,0,478160 ,2,14981,127480 ,2,14982,598950 ,1,0,478505 ,2,14981,78995 ,2,14982,598955 ,1,0,478825 ,2,14981,165380 ,2,14982,598960 ,1,0,479240 ,2,14981,158355 ,2,14982,598975 ,1,0,479570 ,2,14981,99450 ,2,14982,598980 ,1,0,479865 ,2,14981,127470 ,2,14982,598985 ,1,0,480230 ,2,14981,45 ,2,14982,599030 ,1,0,480575 ,2,14981,209365 ,2,14982,599035 ,1,0,480775 ,2,14981,183550 ,2,14982,599040 ,1,0,480960 ,2,14981,66540 ,2,14982,599045 ,1,0,481500 ,2,14981,45 ,2,14982,599050 ,1,0,481750 ,2,14981,97595 ,2,14982,599100 ,1,0,482010 ,2,14981,171970 ,2,14982,599110 ,1,0,482255 ,2,14981,63785 ,2,14982,599115 ,1,0,482530 ,2,14981,63865 ,2,14982,599135 ,1,0,482785 ,2,14981,59530 ,2,14982,599140 ,1,0,483005 ,2,14981,185375 ,2,14982,599145 ,1,0,483240 ,2,14981,60470 ,2,14982,599150 ,1,0,483455 ,2,14981,171960 ,2,14982,599160 ,1,0,483645 ,2,14981,45 ,2,14982,599165 ,1,0,484195 ,2,14981,205245 ,2,14982,599170 ,1,0,484440 ,2,14981,68255 ,2,14982,599180 ,1,0,484595 ,2,14981,184060 ,2,14982,599185 ,1,0,484855 ,2,14981,184520 ,2,14982,599190 ,1,0,485330 ,2,14981,45 ,2,14982,599195 ,1,0,485530 ,2,14981,60820 ,2,14982,599220 ,1,0,485840 ,2,14981,167745 ,2,14982,599225 ,1,0,486035 ,2,14981,60060 ,2,14982,599230 ,1,0,486520 ,2,14981,45 ,2,14982,599235 ,1,0,486790 ,2,14981,183325 ,2,14982,599250 ,1,0,486995 ,2,14981,185725 ,2,14982,599255 ,1,0,487170 ,2,14981,99430 ,2,14982,599260 ,1,0,487375 ,2,14981,99345 ,2,14982,599285 ,1,0,487560 ,2,14981,185360 ,2,14982,599290 ,1,0,487770 ,2,14981,67520 ,2,14982,599295 ,1,0,488085 ,2,14981,181820 ,2,14982,599305 ,1,0,488365 ,2,14981,184020 ,2,14982,599310 ,1,0,488540 ,2,14981,184500 ,2,14982,599315 ,1,0,488745 ,2,14981,45 ,2,14982,599320 ,1,0,489185 ,2,14981,166430 ,2,14982,599355 ,1,0,489385 ,2,14981,90345 ,2,14982,599360 ,1,0,489920 ,2,14981,118110 ,2,14982,599365 ,1,0,490190 ,2,14981,180290 ,2,14982,599375 ,1,0,490395 ,2,14981,171880 ,2,14982,599380 ,1,0,490940 ,2,14981,184655 ,2,14982,599385 ,1,0,491285 ,2,14981,185135 ,2,14982,599390 ,1,0,491745 ,2,14981,60875 ,2,14982,599410 ,1,0,492020 ,2,14981,65910 ,2,14982,599415 ,1,0,492220 ,2,14981,60550 ,2,14982,599420 ,1,0,492760 ,2,14981,97505 ,2,14982,599425 ,1,0,493210 ,2,14981,45 ,2,14982,599435 ,1,0,493555 ,2,14981,61630 ,2,14982,599440 ,1,0,493760 ,2,14981,185610 ,2,14982,599445 ,1,0,494345 ,2,14981,97595 ,2,14982,599450 ,1,0,494785 ,2,14981,88065 ,2,14982,599480 ,1,0,495115 ,2,14981,61860 ,2,14982,599485 ,1,0,495480 ,2,14981,185845 ,2,14982,599490 ,1,0,495670 ,2,14981,89880 ,2,14982,599495 ,1,0,496055 ,2,14981,226035 ,2,14982,599500 ,1,0,496375 ,2,14981,225515 ,2,14982,599505 ,1,0,496660 ,2,14981,195170 ,2,14982,599510 ,1,0,497080 ,2,14981,184235 ,2,14982,599515 ,1,0,497425 ,2,14981,68255 ,2,14982,599550 ,1,0,497820 ,2,14981,99460 ,2,14982,599555 ,1,0,498190 ,2,14981,45 ,2,14982,599560 ,1,0,498535 ,2,14981,184990 ,2,14982,599565 ,1,0,498945 ,2,14981,185425 ,2,14982,599570 ,1,0,499260 ,2,14981,45 ,2,14982,599575 ,1,0,499520 ,2,14981,45 ,2,14982,599580 ,1,0,499715 ,2,14981,45 ,2,14982,599585 ,1,0,500105 ,2,14981,184435 ,2,14982,599615 ,1,0,500440 ,2,14981,115900 ,2,14982,599620 ,1,0,500835 ,2,14981,45 ,2,14982,599625 ,1,0,501005 ,2,14981,45 ,2,14982,599635 ,1,0,501180 ,2,14981,168990 ,2,14982,599640 ,1,0,501540 ,2,14981,56510 ,2,14982,599650 ,1,0,501805 ,2,14981,45 ,2,14982,599685 ,1,0,502135 ,2,14981,67520 ,2,14982,599695 ,1,0,502630 ,2,14981,114700 ,2,14982,599700 ,1,0,503190 ,2,14981,82685 ,2,14982,599710 ,1,0,503545 ,2,14981,183540 ,2,14982,599715 ,1,0,503800 ,2,14981,200710 ,2,14982,599770 ,1,0,504210 ,2,14981,185630 ,2,14982,599780 ,1,0,504460 ,2,14981,45 ,2,14982,599785 ,1,0,504800 ,2,14981,182830 ,2,14982,599820 ,1,0,505050 ,2,14981,183305 ,2,14982,599825 ,1,0,505370 ,2,14981,65870 ,2,14982,599830 ,1,0,505890 ,2,14981,63270 ,2,14982,599835 ,1,0,506375 ,2,14981,172040 ,2,14982,599840 ,1,0,506895 ,2,14981,45 ,2,14982,599845 ,1,0,507420 ,2,14981,45 ,2,14982,599850 ,1,0,507775 ,2,14956,170810 ,2,822,49455 ,2,14985,599875 ,2,14986,56860 ,2,14987,55 ,1,0,507980 ,2,14956,167085 ,2,822,49220 ,2,14985,558045 ,2,14986,45 ,2,14987,45 ,1,0,508185 ,2,14956,167115 ,2,822,49240 ,2,14985,558050 ,2,14986,56925 ,2,14987,55 ,1,0,508555 ,2,14956,167195 ,2,822,49250 ,2,14985,558085 ,2,14986,45 ,2,14988,613640 ,1,0,508765 ,2,14956,167770 ,2,822,14865 ,2,14985,100 ,2,14986,45 ,2,14988,613975 ,1,0,509055 ,2,14956,6145 ,2,822,15005 ,2,14985,599975 ,2,14986,45 ,2,14988,614020 ,1,0,509505 ,2,14956,167895 ,2,822,14830 ,2,14985,558215 ,2,14986,45 ,2,14988,614025 ,1,0,509810 ,2,14956,167770 ,2,822,15055 ,2,14985,100 ,2,14986,45 ,2,14988,613640 ,1,0,510135 ,2,14956,167770 ,2,822,15030 ,2,14985,599885 ,2,14986,45 ,2,14988,613640 ,1,0,510520 ,2,14956,168225 ,2,822,49300 ,2,14985,558280 ,2,14986,57580 ,2,14987,55 ,1,0,510825 ,2,14956,168390 ,2,822,14470 ,2,14985,599855 ,2,14986,57735 ,2,14987,55 ,1,0,511130 ,2,14956,169320 ,2,822,49340 ,2,14985,599975 ,2,14986,45 ,2,14988,614390 ,1,0,511385 ,2,14956,169710 ,2,822,49435 ,2,14985,558490 ,2,14986,58820 ,2,14987,55 ,1,0,511615 ,2,14956,3770 ,2,822,14830 ,2,14985,558215 ,2,14986,45 ,2,14988,614020 ,1,0,511890 ,2,14956,167770 ,2,822,15340 ,2,14985,558420 ,2,14986,45 ,2,14988,614705 ,1,0,512130 ,2,14956,170980 ,2,822,15385 ,2,14985,599975 ,2,14986,45 ,2,14988,613975 ,1,0,512415 ,2,14956,167770 ,2,822,15955 ,2,14985,599885 ,2,14986,45 ,2,14988,614705 ,1,0,512605 ,2,14956,167770 ,2,822,15980 ,2,14985,600035 ,2,14986,45 ,2,14988,614020 ,1,0,512885 ,2,14956,167770 ,2,822,15995 ,2,14985,600035 ,2,14986,45 ,2,14988,614705 ,1,0,513170 ,2,14956,167770 ,2,822,16005 ,2,14985,558420 ,2,14986,45 ,2,14988,614705 ,1,0,513635 ,2,14956,11510 ,2,822,16070 ,2,14985,606920 ,2,14986,45 ,2,14988,614705 ,1,0,513900 ,2,14956,174415 ,2,822,16220 ,2,14985,559680 ,2,14986,64550 ,2,14987,55 ,1,0,514160 ,2,14956,174740 ,2,822,49655 ,2,14985,559745 ,2,14986,64665 ,2,14987,55 ,1,0,514545 ,2,14956,179360 ,2,822,49920 ,2,14985,561365 ,2,14986,64740 ,2,14987,55 ,1,0,514965 ,2,14956,175600 ,2,822,16520 ,2,14985,599975 ,2,14986,45 ,2,14988,613975 ,1,0,515290 ,2,14956,11510 ,2,822,16665 ,2,14985,607530 ,2,14986,45 ,2,14988,616170 ,1,0,515675 ,2,14956,175900 ,2,822,16665 ,2,14985,607550 ,2,14986,45 ,2,14988,614705 ,1,0,516035 ,2,14956,176185 ,2,822,49740 ,2,14985,599875 ,2,14986,66905 ,2,14987,170 ,1,0,516300 ,2,14956,176255 ,2,822,49740 ,2,14985,560450 ,2,14986,45 ,2,14987,45 ,1,0,516675 ,2,14956,176210 ,2,822,16730 ,2,14985,560450 ,2,14986,45 ,2,14988,614705 ,1,0,516905 ,2,14956,176265 ,2,822,49740 ,2,14985,560450 ,2,14986,45 ,2,14987,45 ,1,0,517175 ,2,14956,176275 ,2,822,49740 ,2,14985,560450 ,2,14986,45 ,2,14987,45 ,1,0,517370 ,2,14956,176335 ,2,822,16950 ,2,14985,560460 ,2,14986,66970 ,2,14987,55 ,1,0,517615 ,2,14956,176410 ,2,822,16785 ,2,14985,560480 ,2,14986,45 ,2,14987,45 ,1,0,517885 ,2,14956,176680 ,2,822,16785 ,2,14985,560625 ,2,14986,67045 ,2,14987,55 ,1,0,518155 ,2,14956,176210 ,2,822,16850 ,2,14985,560570 ,2,14986,45 ,2,14988,614020 ,1,0,518400 ,2,14956,11510 ,2,822,16850 ,2,14985,607630 ,2,14986,45 ,2,14988,616170 ,1,0,518760 ,2,14956,171495 ,2,822,16850 ,2,14985,599975 ,2,14986,45 ,2,14988,614045 ,1,0,519050 ,2,14956,175900 ,2,822,16850 ,2,14985,607635 ,2,14986,45 ,2,14988,614705 ,1,0,519280 ,2,14956,177250 ,2,822,16895 ,2,14985,558090 ,2,14986,45 ,2,14988,614705 ,1,0,519510 ,2,14956,177580 ,2,822,16940 ,2,14985,560470 ,2,14986,45 ,2,14988,618545 ,1,0,519725 ,2,14956,177590 ,2,822,16940 ,2,14985,560830 ,2,14986,45 ,2,14988,618550 ,1,0,520215 ,2,14956,178105 ,2,822,16960 ,2,14985,100 ,2,14986,45 ,2,14988,613975 ,1,0,520510 ,2,14956,5080 ,2,822,16970 ,2,14985,561150 ,2,14986,45 ,2,14988,614020 ,1,0,520845 ,2,14956,7080 ,2,822,17035 ,2,14985,599875 ,2,14986,45 ,2,14988,616170 ,1,0,521150 ,2,14956,179160 ,2,822,17035 ,2,14985,561330 ,2,14986,45 ,2,14988,614705 ,1,0,521485 ,2,14956,11510 ,2,822,17085 ,2,14985,599970 ,2,14986,45 ,2,14988,613640 ,1,0,521800 ,2,14956,167895 ,2,822,17400 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,522075 ,2,14956,3770 ,2,822,17400 ,2,14985,599970 ,2,14986,45 ,2,14988,613640 ,1,0,522560 ,2,14956,184195 ,2,822,17605 ,2,14985,599970 ,2,14986,45 ,2,14988,614045 ,1,0,522910 ,2,14956,184205 ,2,822,17605 ,2,14985,599970 ,2,14986,45 ,2,14988,616170 ,1,0,523170 ,2,14956,182815 ,2,822,17605 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,523830 ,2,14956,184220 ,2,822,17605 ,2,14985,599970 ,2,14986,45 ,2,14988,613640 ,1,0,524565 ,2,14956,184460 ,2,822,17675 ,2,14985,561935 ,2,14986,45 ,2,14988,614705 ,1,0,524995 ,2,14956,184745 ,2,822,17790 ,2,14985,599870 ,2,14986,75350 ,2,14987,170 ,1,0,525450 ,2,14956,184770 ,2,822,17790 ,2,14985,599970 ,2,14986,75360 ,2,14987,55 ,1,0,525795 ,2,14956,188500 ,2,822,16275 ,2,14985,599880 ,2,14986,45 ,2,14987,45 ,1,0,526100 ,2,14956,188510 ,2,822,16275 ,2,14985,559725 ,2,14986,45 ,2,14987,45 ,1,0,526435 ,2,14956,4000 ,2,822,16220 ,2,14985,599880 ,2,14986,45 ,2,14988,616170 ,1,0,526810 ,2,14956,189240 ,2,822,16015 ,2,14985,599970 ,2,14986,77975 ,2,14987,615295 ,1,0,527130 ,2,14956,189260 ,2,822,16015 ,2,14985,562590 ,2,14986,77985 ,2,14987,55 ,1,0,527455 ,2,14956,170230 ,2,822,16015 ,2,14985,562590 ,2,14986,78005 ,2,14987,55 ,1,0,527845 ,2,14956,189345 ,2,822,18385 ,2,14985,562600 ,2,14986,78085 ,2,14987,55 ,1,0,528180 ,2,14956,189370 ,2,822,18385 ,2,14985,562605 ,2,14986,45 ,2,14987,45 ,1,0,528560 ,2,14956,189455 ,2,822,18395 ,2,14985,599975 ,2,14986,78115 ,2,14987,55 ,1,0,528860 ,2,14956,189605 ,2,822,18385 ,2,14985,599870 ,2,14986,78280 ,2,14987,170 ,1,0,529185 ,2,14956,189715 ,2,822,50165 ,2,14985,562675 ,2,14986,78410 ,2,14987,55 ,1,0,529550 ,2,14956,192385 ,2,822,50365 ,2,14985,562680 ,2,14986,78530 ,2,14987,55 ,1,0,529890 ,2,14956,171495 ,2,822,18460 ,2,14985,599975 ,2,14986,78735 ,2,14988,621000 ,1,0,530260 ,2,14956,189970 ,2,822,18460 ,2,14985,558375 ,2,14986,78760 ,2,14988,614390 ,1,0,530625 ,2,14956,190020 ,2,822,18460 ,2,14985,599885 ,2,14986,78780 ,2,14988,618550 ,1,0,531055 ,2,14956,190075 ,2,822,50185 ,2,14985,599875 ,2,14986,78835 ,2,14987,55 ,1,0,531440 ,2,14956,190195 ,2,822,18470 ,2,14985,608330 ,2,14986,45 ,2,14988,614045 ,1,0,531905 ,2,14956,190250 ,2,822,18470 ,2,14985,608345 ,2,14986,45 ,2,14988,616170 ,1,0,532250 ,2,14956,190310 ,2,822,18470 ,2,14985,562725 ,2,14986,45 ,2,14988,614705 ,1,0,532600 ,2,14956,190470 ,2,822,50265 ,2,14985,562780 ,2,14986,79135 ,2,14987,55 ,1,0,532985 ,2,14956,190530 ,2,822,50265 ,2,14985,562810 ,2,14986,79165 ,2,14987,55 ,1,0,533330 ,2,14956,175900 ,2,822,18515 ,2,14985,562785 ,2,14986,45 ,2,14988,614705 ,1,0,533730 ,2,14956,190145 ,2,822,18460 ,2,14985,599885 ,2,14986,45 ,2,14988,613640 ,1,0,534205 ,2,14956,183195 ,2,822,18460 ,2,14985,599885 ,2,14986,45 ,2,14988,613975 ,1,0,534600 ,2,14956,192115 ,2,822,18655 ,2,14985,558275 ,2,14986,80900 ,2,14987,55 ,1,0,535045 ,2,14956,192135 ,2,822,18655 ,2,14985,558990 ,2,14986,80910 ,2,14987,55 ,1,0,535290 ,2,14956,192545 ,2,822,18385 ,2,14985,562950 ,2,14986,81280 ,2,14987,55 ,1,0,535475 ,2,14956,192580 ,2,822,18385 ,2,14985,599970 ,2,14986,81290 ,2,14987,615295 ,1,0,535745 ,2,14956,192600 ,2,822,18385 ,2,14985,562990 ,2,14986,81300 ,2,14987,55 ,1,0,535940 ,2,14956,192700 ,2,822,18385 ,2,14985,562610 ,2,14986,81350 ,2,14987,55 ,1,0,536375 ,2,14956,167770 ,2,822,18695 ,2,14985,599885 ,2,14986,45 ,2,14988,613640 ,1,0,536580 ,2,14956,167770 ,2,822,18705 ,2,14985,599885 ,2,14986,45 ,2,14988,613640 ,1,0,536750 ,2,14956,193380 ,2,822,50460 ,2,14985,600065 ,2,14986,81530 ,2,14987,55 ,1,0,536945 ,2,14956,193445 ,2,822,50490 ,2,14985,563055 ,2,14986,81540 ,2,14987,55 ,1,0,537095 ,2,14956,183195 ,2,822,18765 ,2,14985,558420 ,2,14986,45 ,2,14988,614705 ,1,0,537280 ,2,14956,167770 ,2,822,18765 ,2,14985,599885 ,2,14986,45 ,2,14988,613640 ,1,0,537475 ,2,14956,193800 ,2,822,18825 ,2,14985,563160 ,2,14986,45 ,2,14987,45 ,1,0,537655 ,2,14956,194095 ,2,822,50625 ,2,14985,599875 ,2,14986,82155 ,2,14987,160 ,1,0,537855 ,2,14956,194180 ,2,822,18900 ,2,14985,599875 ,2,14986,82165 ,2,14987,170 ,1,0,538200 ,2,14956,194285 ,2,822,18980 ,2,14985,563230 ,2,14986,45 ,2,14988,614705 ,1,0,538590 ,2,14956,194310 ,2,822,18980 ,2,14985,599975 ,2,14986,82225 ,2,14987,55 ,1,0,538915 ,2,14956,194330 ,2,822,18980 ,2,14985,599975 ,2,14986,82235 ,2,14987,55 ,1,0,539280 ,2,14956,194390 ,2,822,18990 ,2,14985,563245 ,2,14986,45 ,2,14987,45 ,1,0,539595 ,2,14956,194735 ,2,822,19090 ,2,14985,599875 ,2,14986,82455 ,2,14987,160 ,1,0,539850 ,2,14956,194755 ,2,822,19090 ,2,14985,599875 ,2,14986,82465 ,2,14987,160 ,1,0,540200 ,2,14956,194805 ,2,822,19090 ,2,14985,599875 ,2,14986,82475 ,2,14987,160 ,1,0,540545 ,2,14956,194825 ,2,822,19090 ,2,14985,599875 ,2,14986,82535 ,2,14987,160 ,1,0,540840 ,2,14956,167895 ,2,822,19210 ,2,14985,599975 ,2,14986,45 ,2,14988,616170 ,1,0,541280 ,2,14956,3770 ,2,822,19210 ,2,14985,599975 ,2,14986,45 ,2,14988,614705 ,1,0,541605 ,2,14956,195155 ,2,822,19210 ,2,14985,562820 ,2,14986,45 ,2,14988,613640 ,1,0,541905 ,2,14956,167770 ,2,822,19245 ,2,14985,599885 ,2,14986,45 ,2,14988,614705 ,1,0,542250 ,2,14956,195325 ,2,822,19245 ,2,14985,599885 ,2,14986,45 ,2,14988,613640 ,1,0,542480 ,2,14956,195495 ,2,822,19365 ,2,14985,563565 ,2,14986,83040 ,2,14987,55 ,1,0,542660 ,2,14956,195875 ,2,822,19335 ,2,14985,558420 ,2,14986,45 ,2,14988,614705 ,1,0,542905 ,2,14956,195885 ,2,822,19335 ,2,14985,599965 ,2,14986,45 ,2,14988,613640 ,1,0,543215 ,2,14956,196050 ,2,822,50875 ,2,14985,599975 ,2,14986,83385 ,2,14987,615295 ,1,0,543555 ,2,14956,196080 ,2,822,50875 ,2,14985,563640 ,2,14986,83395 ,2,14987,55 ,1,0,543890 ,2,14956,196090 ,2,822,50875 ,2,14985,563290 ,2,14986,45 ,2,14987,55 ,1,0,544135 ,2,14956,196595 ,2,822,50875 ,2,14985,563655 ,2,14986,45 ,2,14987,45 ,1,0,544385 ,2,14956,196170 ,2,822,13455 ,2,14985,563670 ,2,14986,83425 ,2,14987,55 ,1,0,544680 ,2,14956,196210 ,2,822,50905 ,2,14985,563675 ,2,14986,45 ,2,14987,45 ,1,0,545035 ,2,14956,196615 ,2,822,50875 ,2,14985,563270 ,2,14986,83830 ,2,14987,55 ,1,0,545540 ,2,14956,196830 ,2,822,19465 ,2,14985,599875 ,2,14986,84025 ,2,14987,55 ,1,0,545735 ,2,14956,196860 ,2,822,19465 ,2,14985,599875 ,2,14986,84045 ,2,14987,55 ,1,0,546145 ,2,14956,196880 ,2,822,19465 ,2,14985,599875 ,2,14986,84055 ,2,14987,55 ,1,0,546555 ,2,14956,196915 ,2,822,19465 ,2,14985,599875 ,2,14986,84075 ,2,14987,55 ,1,0,546920 ,2,14956,196935 ,2,822,19465 ,2,14985,599875 ,2,14986,84085 ,2,14987,55 ,1,0,547335 ,2,14956,196960 ,2,822,19465 ,2,14985,599875 ,2,14986,84095 ,2,14987,55 ,1,0,547730 ,2,14956,194420 ,2,822,19465 ,2,14985,599885 ,2,14986,84105 ,2,14987,55 ,1,0,548140 ,2,14956,197310 ,2,822,19610 ,2,14985,563785 ,2,14986,45 ,2,14988,613640 ,1,0,548585 ,2,14956,198655 ,2,822,20200 ,2,14985,564325 ,2,14986,86215 ,2,14987,55 ,1,0,548880 ,2,14956,198705 ,2,822,20200 ,2,14985,564325 ,2,14986,86295 ,2,14987,55 ,1,0,549195 ,2,14956,167895 ,2,822,20245 ,2,14985,608645 ,2,14986,45 ,2,14988,616170 ,1,0,549590 ,2,14956,198665 ,2,822,20245 ,2,14985,608645 ,2,14986,45 ,2,14988,614705 ,1,0,549910 ,2,14956,167895 ,2,822,20380 ,2,14985,599940 ,2,14986,45 ,2,14988,616170 ,1,0,550250 ,2,14956,176210 ,2,822,20055 ,2,14985,564495 ,2,14986,45 ,2,14988,614025 ,1,0,550550 ,2,14956,199120 ,2,822,20055 ,2,14985,564495 ,2,14986,45 ,2,14988,614020 ,1,0,550815 ,2,14956,11510 ,2,822,20400 ,2,14985,608680 ,2,14986,45 ,2,14988,614705 ,1,0,551115 ,2,14956,199815 ,2,822,20515 ,2,14985,564775 ,2,14986,87470 ,2,14987,55 ,1,0,551375 ,2,14956,199905 ,2,822,20705 ,2,14985,599870 ,2,14986,45 ,2,14988,614020 ,1,0,551600 ,2,14956,200380 ,2,822,20855 ,2,14985,564940 ,2,14986,88410 ,2,14987,55 ,1,0,551885 ,2,14956,200530 ,2,822,20930 ,2,14985,599940 ,2,14986,88510 ,2,14987,14895 ,1,0,552190 ,2,14956,200770 ,2,822,20920 ,2,14985,565015 ,2,14986,45 ,2,14987,45 ,1,0,552530 ,2,14956,200925 ,2,822,21005 ,2,14985,565085 ,2,14986,88685 ,2,14987,55 ,1,0,552855 ,2,14956,200955 ,2,822,21005 ,2,14985,565085 ,2,14986,88705 ,2,14987,55 ,1,0,553175 ,2,14956,201050 ,2,822,20900 ,2,14985,564970 ,2,14986,45 ,2,14987,45 ,1,0,553475 ,2,14956,201080 ,2,822,21070 ,2,14985,565145 ,2,14986,45 ,2,14987,45 ,1,0,553675 ,2,14956,201500 ,2,822,21265 ,2,14985,565345 ,2,14986,45 ,2,14988,618545 ,1,0,553865 ,2,14956,201510 ,2,822,21285 ,2,14985,565420 ,2,14986,45 ,2,14988,614705 ,1,0,554150 ,2,14956,176210 ,2,822,21365 ,2,14985,565525 ,2,14986,45 ,2,14988,614705 ,1,0,554390 ,2,14956,202165 ,2,822,21265 ,2,14985,565345 ,2,14986,45 ,2,14988,616545 ,1,0,554810 ,2,14956,202200 ,2,822,21255 ,2,14985,563675 ,2,14986,45 ,2,14988,614705 ,1,0,555065 ,2,14956,202295 ,2,822,21255 ,2,14985,563675 ,2,14986,45 ,2,14988,616170 ,1,0,555230 ,2,14956,202465 ,2,822,21105 ,2,14985,599975 ,2,14986,45 ,2,14988,616170 ,1,0,555580 ,2,14956,202480 ,2,822,21105 ,2,14985,600035 ,2,14986,45 ,2,14988,614705 ,1,0,555760 ,2,14956,202200 ,2,822,21105 ,2,14985,563675 ,2,14986,45 ,2,14988,613975 ,1,0,556090 ,2,14956,202660 ,2,822,49185 ,2,14985,565615 ,2,14986,91130 ,2,14987,55 ,1,0,556435 ,2,14956,202690 ,2,822,21105 ,2,14985,563675 ,2,14986,45 ,2,14988,614025 ,1,0,556630 ,2,14956,202295 ,2,822,21105 ,2,14985,563675 ,2,14986,45 ,2,14988,618550 ,1,0,556895 ,2,14956,5845 ,2,822,21435 ,2,14985,565690 ,2,14986,45 ,2,14988,614705 ,1,0,557255 ,2,14956,203295 ,2,822,21485 ,2,14985,565820 ,2,14986,91865 ,2,14987,55 ,1,0,557545 ,2,14956,203305 ,2,822,21485 ,2,14985,565785 ,2,14986,45 ,2,14987,45 ,1,0,557725 ,2,14956,167770 ,2,822,21880 ,2,14985,599880 ,2,14986,45 ,2,14988,613640 ,1,0,558065 ,2,14956,167770 ,2,822,21910 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,558320 ,2,14956,204620 ,2,822,21965 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,558685 ,2,14956,205000 ,2,822,21995 ,2,14985,566135 ,2,14986,93420 ,2,14987,55 ,1,0,559065 ,2,14956,204865 ,2,822,51380 ,2,14985,566130 ,2,14986,93440 ,2,14987,55 ,1,0,559450 ,2,14956,205425 ,2,822,22155 ,2,14985,566265 ,2,14986,45 ,2,14988,613640 ,1,0,559760 ,2,14956,205485 ,2,822,22095 ,2,14985,566350 ,2,14986,45 ,2,14987,45 ,1,0,560125 ,2,14956,206815 ,2,822,22475 ,2,14985,566640 ,2,14986,45 ,2,14987,45 ,1,0,560430 ,2,14956,206945 ,2,822,22530 ,2,14985,566650 ,2,14986,45 ,2,14987,45 ,1,0,560735 ,2,14956,208660 ,2,822,23005 ,2,14985,566105 ,2,14986,45 ,2,14987,45 ,1,0,561015 ,2,14956,176210 ,2,822,23105 ,2,14985,567205 ,2,14986,45 ,2,14988,613975 ,1,0,561355 ,2,14956,171495 ,2,822,23105 ,2,14985,599975 ,2,14986,45 ,2,14988,616170 ,1,0,561755 ,2,14956,175900 ,2,822,23105 ,2,14985,609160 ,2,14986,45 ,2,14988,614705 ,1,0,562005 ,2,14956,11510 ,2,822,23225 ,2,14985,609265 ,2,14986,45 ,2,14988,626560 ,1,0,562295 ,2,14956,11510 ,2,822,23355 ,2,14985,599880 ,2,14986,45 ,2,14988,614020 ,1,0,562570 ,2,14956,210185 ,2,822,23365 ,2,14985,567465 ,2,14986,99640 ,2,14987,55 ,1,0,562765 ,2,14956,210230 ,2,822,23365 ,2,14985,567515 ,2,14986,99650 ,2,14987,55 ,1,0,562985 ,2,14956,210250 ,2,822,23365 ,2,14985,599970 ,2,14986,99660 ,2,14987,615295 ,1,0,563225 ,2,14956,210350 ,2,822,22590 ,2,14985,561400 ,2,14986,99755 ,2,14987,55 ,1,0,563530 ,2,14956,210400 ,2,822,22590 ,2,14985,566105 ,2,14986,99775 ,2,14987,55 ,1,0,563715 ,2,14956,210455 ,2,822,22590 ,2,14985,561400 ,2,14986,99815 ,2,14987,55 ,1,0,563915 ,2,14956,211415 ,2,822,23455 ,2,14985,566615 ,2,14986,100930 ,2,14987,55 ,1,0,564425 ,2,14956,11510 ,2,822,23540 ,2,14985,599880 ,2,14986,45 ,2,14988,628550 ,1,0,564625 ,2,14956,211745 ,2,822,22590 ,2,14985,566775 ,2,14986,101135 ,2,14987,55 ,1,0,564875 ,2,14956,211765 ,2,822,22590 ,2,14985,599970 ,2,14986,101145 ,2,14987,615295 ,1,0,565180 ,2,14956,175900 ,2,822,22590 ,2,14985,567680 ,2,14986,45 ,2,14988,613975 ,1,0,565510 ,2,14956,11510 ,2,822,23575 ,2,14985,609375 ,2,14986,45 ,2,14988,614705 ,1,0,565920 ,2,14956,167895 ,2,822,23745 ,2,14985,599940 ,2,14986,45 ,2,14988,616170 ,1,0,566250 ,2,14956,3770 ,2,822,23745 ,2,14985,599940 ,2,14986,45 ,2,14988,613640 ,1,0,566500 ,2,14956,212395 ,2,822,23755 ,2,14985,599940 ,2,14986,45 ,2,14988,613640 ,1,0,566805 ,2,14956,212975 ,2,822,51640 ,2,14985,609395 ,2,14986,45 ,2,14988,614045 ,1,0,567200 ,2,14956,212995 ,2,822,51640 ,2,14985,609395 ,2,14986,45 ,2,14988,616170 ,1,0,567580 ,2,14956,213835 ,2,822,23885 ,2,14985,568040 ,2,14986,45 ,2,14987,45 ,1,0,567910 ,2,14956,213855 ,2,822,23885 ,2,14985,568040 ,2,14986,45 ,2,14987,45 ,1,0,568525 ,2,14956,11510 ,2,822,24330 ,2,14985,600040 ,2,14986,45 ,2,14988,614705 ,1,0,568765 ,2,14956,215130 ,2,822,24350 ,2,14985,568395 ,2,14986,104765 ,2,14987,55 ,1,0,569020 ,2,14956,215275 ,2,822,24360 ,2,14985,568455 ,2,14986,104880 ,2,14987,55 ,1,0,569430 ,2,14956,167770 ,2,822,24360 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,569790 ,2,14956,215835 ,2,822,24460 ,2,14985,599970 ,2,14986,105400 ,2,14987,613640 ,1,0,570000 ,2,14956,216270 ,2,822,37280 ,2,14985,609525 ,2,14986,45 ,2,14988,614705 ,1,0,570325 ,2,14956,209800 ,2,822,24975 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,570655 ,2,14956,218240 ,2,822,25250 ,2,14985,599940 ,2,14986,45 ,2,14988,613640 ,1,0,571270 ,2,14956,3770 ,2,822,25260 ,2,14985,599940 ,2,14986,45 ,2,14988,613640 ,1,0,571605 ,2,14956,218370 ,2,822,24800 ,2,14985,569315 ,2,14986,45 ,2,14988,616170 ,1,0,572005 ,2,14956,209800 ,2,822,25915 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,572280 ,2,14956,223460 ,2,822,26185 ,2,14985,564325 ,2,14986,113320 ,2,14987,55 ,1,0,572675 ,2,14956,209800 ,2,822,26335 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,573020 ,2,14956,224115 ,2,822,26435 ,2,14985,570460 ,2,14986,45 ,2,14988,613975 ,1,0,573420 ,2,14956,199455 ,2,822,26445 ,2,14985,570490 ,2,14986,45 ,2,14988,613640 ,1,0,573805 ,2,14956,210905 ,2,822,26635 ,2,14985,560980 ,2,14986,45 ,2,14988,614045 ,1,0,574475 ,2,14956,224420 ,2,822,26635 ,2,14985,561460 ,2,14986,45 ,2,14988,613640 ,1,0,574730 ,2,14956,224420 ,2,822,26525 ,2,14985,561460 ,2,14986,45 ,2,14988,613640 ,1,0,575120 ,2,14956,224115 ,2,822,26660 ,2,14985,570620 ,2,14986,45 ,2,14988,613975 ,1,0,575490 ,2,14956,224115 ,2,822,26670 ,2,14985,570630 ,2,14986,45 ,2,14988,613975 ,1,0,575815 ,2,14956,199455 ,2,822,26680 ,2,14985,599940 ,2,14986,45 ,2,14988,614025 ,1,0,576155 ,2,14956,224115 ,2,822,26680 ,2,14985,570630 ,2,14986,45 ,2,14988,613975 ,1,0,576460 ,2,14956,212975 ,2,822,51860 ,2,14985,570750 ,2,14986,45 ,2,14988,616170 ,1,0,576695 ,2,14956,212995 ,2,822,51860 ,2,14985,570750 ,2,14986,45 ,2,14988,614705 ,1,0,577015 ,2,14956,212975 ,2,822,51875 ,2,14985,570750 ,2,14986,45 ,2,14988,616170 ,1,0,577280 ,2,14956,212995 ,2,822,51875 ,2,14985,570750 ,2,14986,45 ,2,14988,614705 ,1,0,577590 ,2,14956,225550 ,2,822,26955 ,2,14985,570940 ,2,14986,45 ,2,14988,614020 ,1,0,577915 ,2,14956,225570 ,2,822,26955 ,2,14985,609635 ,2,14986,45 ,2,14988,613975 ,1,0,578255 ,2,14956,226385 ,2,822,27045 ,2,14985,571105 ,2,14986,116880 ,2,14987,55 ,1,0,578575 ,2,14956,199455 ,2,822,27105 ,2,14985,599940 ,2,14986,45 ,2,14988,613975 ,1,0,578905 ,2,14956,226425 ,2,822,27045 ,2,14985,564775 ,2,14986,116910 ,2,14987,55 ,1,0,579260 ,2,14956,226975 ,2,822,27245 ,2,14985,571215 ,2,14986,45 ,2,14988,614045 ,1,0,579445 ,2,14956,209800 ,2,822,27245 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,580010 ,2,14956,199455 ,2,822,27525 ,2,14985,570490 ,2,14986,45 ,2,14988,616170 ,1,0,580245 ,2,14956,227845 ,2,822,27575 ,2,14985,571445 ,2,14986,45 ,2,14988,617155 ,1,0,580515 ,2,14956,209800 ,2,822,27645 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,580695 ,2,14956,209800 ,2,822,27820 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,580935 ,2,14956,218370 ,2,822,27820 ,2,14985,569335 ,2,14986,45 ,2,14988,616170 ,1,0,581210 ,2,14956,209800 ,2,822,27830 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,581475 ,2,14956,209800 ,2,822,27840 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,581740 ,2,14956,209800 ,2,822,27885 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,581955 ,2,14956,209800 ,2,822,27895 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,582175 ,2,14956,218370 ,2,822,27895 ,2,14985,569335 ,2,14986,45 ,2,14988,616170 ,1,0,582365 ,2,14956,226975 ,2,822,27950 ,2,14985,571215 ,2,14986,45 ,2,14988,633960 ,1,0,582545 ,2,14956,229080 ,2,822,27950 ,2,14985,571835 ,2,14986,45 ,2,14988,629995 ,1,0,582800 ,2,14956,229115 ,2,822,27950 ,2,14985,571835 ,2,14986,45 ,2,14988,634020 ,1,0,583015 ,2,14956,227845 ,2,822,27950 ,2,14985,571445 ,2,14986,45 ,2,14988,616170 ,1,0,583340 ,2,14956,209800 ,2,822,27950 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,583530 ,2,14956,230005 ,2,822,28065 ,2,14985,599940 ,2,14986,45 ,2,14988,618545 ,1,0,583740 ,2,14956,202295 ,2,822,28065 ,2,14985,560975 ,2,14986,45 ,2,14988,623955 ,1,0,583935 ,2,14956,231355 ,2,822,28300 ,2,14985,572070 ,2,14986,121975 ,2,14987,55 ,1,0,584130 ,2,14956,232220 ,2,822,28695 ,2,14985,572445 ,2,14986,122780 ,2,14987,55 ,1,0,584305 ,2,14956,232010 ,2,822,28735 ,2,14985,562205 ,2,14986,45 ,2,14988,613640 ,1,0,584660 ,2,14956,195325 ,2,822,28785 ,2,14985,572450 ,2,14986,45 ,2,14988,616170 ,1,0,584840 ,2,14956,209800 ,2,822,28785 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,585055 ,2,14956,209800 ,2,822,28870 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,585220 ,2,14956,212280 ,2,822,29250 ,2,14985,609720 ,2,14986,45 ,2,14988,614045 ,1,0,585495 ,2,14956,212300 ,2,822,29250 ,2,14985,609745 ,2,14986,45 ,2,14988,616170 ,1,0,585685 ,2,14956,175900 ,2,822,29250 ,2,14985,609715 ,2,14986,45 ,2,14988,614705 ,1,0,585870 ,2,14956,233380 ,2,822,29260 ,2,14985,573180 ,2,14986,45 ,2,14988,618550 ,1,0,586230 ,2,14956,167895 ,2,822,29170 ,2,14985,569315 ,2,14986,45 ,2,14988,613975 ,1,0,586550 ,2,14956,233520 ,2,822,29335 ,2,14985,573200 ,2,14986,125230 ,2,14987,55 ,1,0,586835 ,2,14956,233540 ,2,822,29335 ,2,14985,573205 ,2,14986,125240 ,2,14987,55 ,1,0,587020 ,2,14956,233565 ,2,822,29335 ,2,14985,573205 ,2,14986,125250 ,2,14987,55 ,1,0,587215 ,2,14956,209800 ,2,822,29380 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,587435 ,2,14956,233845 ,2,822,30450 ,2,14985,573365 ,2,14986,125565 ,2,14987,55 ,1,0,587625 ,2,14956,233995 ,2,822,30450 ,2,14985,573365 ,2,14986,125680 ,2,14987,55 ,1,0,587855 ,2,14956,234075 ,2,822,30450 ,2,14985,573365 ,2,14986,125765 ,2,14987,55 ,1,0,588145 ,2,14956,234375 ,2,822,30450 ,2,14985,573440 ,2,14986,126035 ,2,14987,55 ,1,0,588330 ,2,14956,209800 ,2,822,29720 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,588525 ,2,14956,234970 ,2,822,29730 ,2,14985,573670 ,2,14986,45 ,2,14988,613640 ,1,0,588735 ,2,14956,217425 ,2,822,29795 ,2,14985,599870 ,2,14986,45 ,2,14988,636580 ,1,0,588860 ,2,14956,209800 ,2,822,29940 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,589120 ,2,14956,209800 ,2,822,29960 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,589385 ,2,14956,209800 ,2,822,30220 ,2,14985,568460 ,2,14986,45 ,2,14988,614390 ,1,0,589860 ,2,14956,11510 ,2,822,30220 ,2,14985,610090 ,2,14986,45 ,2,14988,616170 ,1,0,590180 ,2,14956,209800 ,2,822,30230 ,2,14985,568460 ,2,14986,45 ,2,14988,621000 ,1,0,590620 ,2,14956,237480 ,2,822,29440 ,2,14985,574285 ,2,14986,129195 ,2,14987,55 ,1,0,590940 ,2,14956,238250 ,2,822,30500 ,2,14985,564325 ,2,14986,129945 ,2,14987,55 ,1,0,591275 ,2,14956,195325 ,2,822,30530 ,2,14985,574290 ,2,14986,45 ,2,14988,613640 ,1,0,591530 ,2,14956,209800 ,2,822,30550 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,591795 ,2,14956,209800 ,2,822,30580 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,592060 ,2,14956,209800 ,2,822,30590 ,2,14985,568460 ,2,14986,45 ,2,14988,614020 ,1,0,592370 ,2,14956,209800 ,2,822,30680 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,592670 ,2,14956,209800 ,2,822,30700 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,592940 ,2,14956,210905 ,2,822,28815 ,2,14985,560980 ,2,14986,45 ,2,14988,616170 ,1,0,593185 ,2,14956,209800 ,2,822,28805 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,593490 ,2,14956,209800 ,2,822,30745 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,593780 ,2,14956,239340 ,2,822,30885 ,2,14985,599870 ,2,14986,45 ,2,14988,636580 ,1,0,594035 ,2,14956,227845 ,2,822,28640 ,2,14985,571445 ,2,14986,45 ,2,14988,614045 ,1,0,594405 ,2,14956,209800 ,2,822,28640 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,594790 ,2,14956,227845 ,2,822,30915 ,2,14985,571445 ,2,14986,45 ,2,14988,614045 ,1,0,595050 ,2,14956,209800 ,2,822,30915 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,595345 ,2,14956,209800 ,2,822,31010 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,595675 ,2,14956,209800 ,2,822,31250 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,596050 ,2,14956,211340 ,2,822,31445 ,2,14985,567850 ,2,14986,45 ,2,14988,618550 ,1,0,596500 ,2,14956,218370 ,2,822,31445 ,2,14985,569315 ,2,14986,45 ,2,14988,616170 ,1,0,596840 ,2,14956,209800 ,2,822,31445 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,597190 ,2,14956,242665 ,2,822,31615 ,2,14985,575460 ,2,14986,134065 ,2,14987,55 ,1,0,597650 ,2,14956,195325 ,2,822,31625 ,2,14985,575480 ,2,14986,45 ,2,14988,623955 ,1,0,597995 ,2,14956,218370 ,2,822,31675 ,2,14985,575515 ,2,14986,45 ,2,14988,613640 ,1,0,598430 ,2,14956,226975 ,2,822,31965 ,2,14985,575725 ,2,14986,45 ,2,14988,614025 ,1,0,598885 ,2,14956,211340 ,2,822,32445 ,2,14985,567850 ,2,14986,45 ,2,14988,614705 ,1,0,599095 ,2,14956,209800 ,2,822,32675 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,599545 ,2,14956,246745 ,2,822,32695 ,2,14985,575465 ,2,14986,136950 ,2,14987,55 ,1,0,599920 ,2,14956,209800 ,2,822,32730 ,2,14985,568460 ,2,14986,45 ,2,14988,614025 ,1,0,600300 ,2,14956,209800 ,2,822,32695 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,600780 ,2,14956,212975 ,2,822,52275 ,2,14985,567805 ,2,14986,45 ,2,14988,616170 ,1,0,601100 ,2,14956,212995 ,2,822,52275 ,2,14985,567805 ,2,14986,45 ,2,14988,614705 ,1,0,601380 ,2,14956,11510 ,2,822,33070 ,2,14985,610340 ,2,14986,45 ,2,14988,613975 ,1,0,602210 ,2,14956,233380 ,2,822,33080 ,2,14985,576740 ,2,14986,45 ,2,14988,618550 ,1,0,602425 ,2,14956,199905 ,2,822,28360 ,2,14985,599870 ,2,14986,45 ,2,14988,614045 ,1,0,602985 ,2,14956,248660 ,2,822,28360 ,2,14985,599870 ,2,14986,45 ,2,14988,614705 ,1,0,603130 ,2,14956,248660 ,2,822,33215 ,2,14985,599870 ,2,14986,45 ,2,14988,614705 ,1,0,603325 ,2,14956,195325 ,2,822,33285 ,2,14985,576965 ,2,14986,45 ,2,14988,614705 ,1,0,603825 ,2,14956,248660 ,2,822,33340 ,2,14985,599870 ,2,14986,45 ,2,14988,614045 ,1,0,604070 ,2,14956,226975 ,2,822,33445 ,2,14985,577060 ,2,14986,45 ,2,14988,616170 ,1,0,604390 ,2,14956,260720 ,2,822,33655 ,2,14985,578995 ,2,14986,141790 ,2,14987,55 ,1,0,604645 ,2,14956,250950 ,2,822,33705 ,2,14985,599870 ,2,14986,141820 ,2,14987,170 ,1,0,604890 ,2,14956,252225 ,2,822,33895 ,2,14985,599970 ,2,14986,142315 ,2,14987,613640 ,1,0,605190 ,2,14956,252295 ,2,822,34060 ,2,14985,577535 ,2,14986,142345 ,2,14987,55 ,1,0,605440 ,2,14956,253520 ,2,822,34115 ,2,14985,577740 ,2,14986,143130 ,2,14987,55 ,1,0,605710 ,2,14956,253440 ,2,822,34235 ,2,14985,577805 ,2,14986,143225 ,2,14987,55 ,1,0,605995 ,2,14956,253565 ,2,822,34115 ,2,14985,577740 ,2,14986,143330 ,2,14987,55 ,1,0,606300 ,2,14956,253585 ,2,822,34115 ,2,14985,577740 ,2,14986,143340 ,2,14987,55 ,1,0,606620 ,2,14956,253625 ,2,822,34115 ,2,14985,577740 ,2,14986,143350 ,2,14987,55 ,1,0,607005 ,2,14956,253645 ,2,822,34115 ,2,14985,577740 ,2,14986,143385 ,2,14987,55 ,1,0,607480 ,2,14956,253665 ,2,822,34115 ,2,14985,577740 ,2,14986,143395 ,2,14987,55 ,1,0,607680 ,2,14956,175900 ,2,822,34395 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,607930 ,2,14956,255305 ,2,822,34540 ,2,14985,578030 ,2,14986,145200 ,2,14987,55 ,1,0,608165 ,2,14956,255325 ,2,822,34540 ,2,14985,578030 ,2,14986,145220 ,2,14987,55 ,1,0,608460 ,2,14956,255375 ,2,822,34540 ,2,14985,578035 ,2,14986,145230 ,2,14987,55 ,1,0,608720 ,2,14956,255425 ,2,822,34540 ,2,14985,578060 ,2,14986,145260 ,2,14987,55 ,1,0,609065 ,2,14956,11510 ,2,822,34105 ,2,14985,577415 ,2,14986,45 ,2,14988,616170 ,1,0,609435 ,2,14956,209800 ,2,822,34885 ,2,14985,568460 ,2,14986,45 ,2,14988,618550 ,1,0,609815 ,2,14956,209800 ,2,822,34995 ,2,14985,568460 ,2,14986,45 ,2,14988,621000 ,1,0,610070 ,2,14956,258250 ,2,822,34995 ,2,14985,599870 ,2,14986,45 ,2,14988,614390 ,1,0,610260 ,2,14956,209800 ,2,822,35200 ,2,14985,568460 ,2,14986,45 ,2,14988,616230 ,1,0,610675 ,2,14956,226975 ,2,822,35200 ,2,14985,571215 ,2,14986,45 ,2,14988,616545 ,1,0,611080 ,2,14956,259310 ,2,822,35200 ,2,14985,578850 ,2,14986,45 ,2,14988,618545 ,1,0,611460 ,2,14956,257025 ,2,822,35200 ,2,14985,578855 ,2,14986,45 ,2,14988,626560 ,1,0,611845 ,2,14956,259400 ,2,822,35200 ,2,14985,578865 ,2,14986,45 ,2,14988,623955 ,1,0,612235 ,2,14956,259290 ,2,822,35200 ,2,14985,571445 ,2,14986,45 ,2,14988,621000 ,1,0,612650 ,2,14956,259370 ,2,822,35200 ,2,14985,578870 ,2,14986,45 ,2,14988,614390 ,1,0,612970 ,2,14956,257235 ,2,822,35200 ,2,14985,578875 ,2,14986,45 ,2,14988,618550 ,1,0,613505 ,2,14956,257150 ,2,822,35200 ,2,14985,578880 ,2,14986,45 ,2,14988,614025 ,1,0,613930 ,2,14956,257045 ,2,822,35200 ,2,14985,560975 ,2,14986,45 ,2,14988,614020 ,1,0,614170 ,2,14956,257195 ,2,822,35200 ,2,14985,578885 ,2,14986,45 ,2,14988,613975 ,1,0,614565 ,2,14956,229080 ,2,822,35200 ,2,14985,571835 ,2,14986,45 ,2,14988,614045 ,1,0,614985 ,2,14956,229115 ,2,822,35200 ,2,14985,571835 ,2,14986,45 ,2,14988,616170 ,1,0,615315 ,2,14956,227845 ,2,822,35200 ,2,14985,571445 ,2,14986,45 ,2,14988,614705 ,1,0,615640 ,2,14956,259605 ,2,822,35220 ,2,14985,577690 ,2,14986,45 ,2,14988,614020 ,1,0,615905 ,2,14956,217425 ,2,822,35270 ,2,14985,599870 ,2,14986,45 ,2,14988,613975 ,1,0,616315 ,2,14956,209800 ,2,822,35270 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,616695 ,2,14956,259605 ,2,822,34550 ,2,14985,577690 ,2,14986,45 ,2,14988,614020 ,1,0,617115 ,2,14956,209800 ,2,822,35455 ,2,14985,568460 ,2,14986,45 ,2,14988,620685 ,1,0,617410 ,2,14956,209800 ,2,822,35540 ,2,14985,568460 ,2,14986,45 ,2,14988,614390 ,1,0,617790 ,2,14956,167770 ,2,822,35540 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,618020 ,2,14956,205425 ,2,822,35570 ,2,14985,561460 ,2,14986,45 ,2,14988,614390 ,1,0,618330 ,2,14956,167770 ,2,822,35570 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,618650 ,2,14956,205425 ,2,822,35495 ,2,14985,561460 ,2,14986,45 ,2,14988,614705 ,1,0,619010 ,2,14956,226975 ,2,822,35635 ,2,14985,571215 ,2,14986,45 ,2,14988,620270 ,1,0,619425 ,2,14956,262765 ,2,822,35755 ,2,14985,599870 ,2,14986,45 ,2,14988,636580 ,1,0,619660 ,2,14956,211340 ,2,822,35995 ,2,14985,567850 ,2,14986,45 ,2,14988,616170 ,1,0,619980 ,2,14956,264030 ,2,822,36060 ,2,14985,579710 ,2,14986,158255 ,2,14987,55 ,1,0,620315 ,2,14956,226975 ,2,822,36070 ,2,14985,571215 ,2,14986,45 ,2,14988,621000 ,1,0,620660 ,2,14956,226975 ,2,822,36105 ,2,14985,571215 ,2,14986,45 ,2,14988,618550 ,1,0,620895 ,2,14956,239340 ,2,822,36170 ,2,14985,599870 ,2,14986,45 ,2,14988,614020 ,1,0,621385 ,2,14956,209800 ,2,822,36190 ,2,14985,568460 ,2,14986,45 ,2,14988,614025 ,1,0,621785 ,2,14956,209800 ,2,822,36200 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,622150 ,2,14956,218370 ,2,822,36245 ,2,14985,569315 ,2,14986,45 ,2,14988,613975 ,1,0,622390 ,2,14956,218370 ,2,822,36345 ,2,14985,569315 ,2,14986,45 ,2,14988,616170 ,1,0,622750 ,2,14956,264530 ,2,822,36415 ,2,14985,580100 ,2,14986,45 ,2,14988,616170 ,1,0,623045 ,2,14956,209800 ,2,822,36535 ,2,14985,568460 ,2,14986,45 ,2,14988,626560 ,1,0,623345 ,2,14956,167895 ,2,822,36535 ,2,14985,599940 ,2,14986,45 ,2,14988,614020 ,1,0,623605 ,2,14956,3770 ,2,822,36535 ,2,14985,599940 ,2,14986,45 ,2,14988,614705 ,1,0,623930 ,2,14956,218370 ,2,822,36665 ,2,14985,569315 ,2,14986,45 ,2,14988,623955 ,1,0,624150 ,2,14956,199905 ,2,822,36765 ,2,14985,599870 ,2,14986,45 ,2,14988,614045 ,1,0,624385 ,2,14956,209800 ,2,822,36940 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,624685 ,2,14956,209800 ,2,822,37100 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,625000 ,2,14956,197310 ,2,822,51710 ,2,14985,563785 ,2,14986,45 ,2,14988,613640 ,1,0,625340 ,2,14956,11510 ,2,822,37210 ,2,14985,610530 ,2,14986,45 ,2,14988,614705 ,1,0,625585 ,2,14956,209800 ,2,822,37230 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,625850 ,2,14956,175900 ,2,822,37260 ,2,14985,567680 ,2,14986,45 ,2,14988,613640 ,1,0,626045 ,2,14956,209800 ,2,822,37475 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,626280 ,2,14956,268330 ,2,822,37540 ,2,14985,581235 ,2,14986,45 ,2,14987,45 ,1,0,626475 ,2,14956,209800 ,2,822,37585 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,626690 ,2,14956,210905 ,2,822,20715 ,2,14985,560980 ,2,14986,45 ,2,14988,621000 ,1,0,626930 ,2,14956,167770 ,2,822,37655 ,2,14985,599880 ,2,14986,45 ,2,14988,613640 ,1,0,627405 ,2,14956,269665 ,2,822,37795 ,2,14985,600040 ,2,14986,166115 ,2,14987,55 ,1,0,627800 ,2,14956,269830 ,2,822,37795 ,2,14985,581560 ,2,14986,166175 ,2,14987,55 ,1,0,628215 ,2,14956,218370 ,2,822,37825 ,2,14985,569315 ,2,14986,45 ,2,14988,614020 ,1,0,628590 ,2,14956,211340 ,2,822,37825 ,2,14985,567850 ,2,14986,45 ,2,14988,620685 ,1,0,628935 ,2,14956,218370 ,2,822,37890 ,2,14985,569315 ,2,14986,45 ,2,14988,626560 ,1,0,629410 ,2,14956,270400 ,2,822,38040 ,2,14985,562990 ,2,14986,166905 ,2,14987,55 ,1,0,629880 ,2,14956,220955 ,2,822,38040 ,2,14985,599880 ,2,14986,45 ,2,14988,614045 ,1,0,630485 ,2,14956,276460 ,2,822,38170 ,2,14985,564325 ,2,14986,167220 ,2,14987,55 ,1,0,630930 ,2,14956,276480 ,2,822,38170 ,2,14985,564325 ,2,14986,167260 ,2,14987,55 ,1,0,631395 ,2,14956,276510 ,2,822,38170 ,2,14985,577165 ,2,14986,167270 ,2,14987,55 ,1,0,631660 ,2,14956,209800 ,2,822,38170 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,632200 ,2,14956,276670 ,2,822,38215 ,2,14985,561570 ,2,14986,167425 ,2,14987,55 ,1,0,632715 ,2,14956,276700 ,2,822,38215 ,2,14985,561570 ,2,14986,167435 ,2,14987,55 ,1,0,633470 ,2,14956,209800 ,2,822,38400 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,634195 ,2,14956,277360 ,2,822,38450 ,2,14985,564325 ,2,14986,168210 ,2,14987,55 ,1,0,634560 ,2,14956,277400 ,2,822,38450 ,2,14985,564325 ,2,14986,168220 ,2,14987,55 ,1,0,634930 ,2,14956,277420 ,2,822,38450 ,2,14985,564325 ,2,14986,168230 ,2,14987,55 ,1,0,635370 ,2,14956,209800 ,2,822,38450 ,2,14985,568460 ,2,14986,45 ,2,14988,616170 ,1,0,635610 ,2,14956,278005 ,2,822,38655 ,2,14985,562990 ,2,14986,168490 ,2,14987,55 ,1,0,635805 ,2,14956,278045 ,2,822,38655 ,2,14985,582470 ,2,14986,168500 ,2,14987,55 ,1,0,636290 ,2,14956,195325 ,2,822,38720 ,2,14985,567740 ,2,14986,45 ,2,14988,613640 ,1,0,636525 ,2,14956,278270 ,2,822,38740 ,2,14985,582485 ,2,14986,168685 ,2,14987,55 ,1,0,636720 ,2,14956,278270 ,2,822,38785 ,2,14985,582485 ,2,14986,168855 ,2,14987,55 ,1,0,637195 ,2,14956,278555 ,2,822,38785 ,2,14985,559345 ,2,14986,168865 ,2,14987,55 ,1,0,637350 ,2,14956,278580 ,2,822,38785 ,2,14985,559345 ,2,14986,169075 ,2,14987,55 ,1,0,637615 ,2,14956,278610 ,2,822,38845 ,2,14985,561570 ,2,14986,169110 ,2,14987,55 ,1,0,638060 ,2,14956,278860 ,2,822,38865 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,638405 ,2,14956,278270 ,2,822,38875 ,2,14985,582485 ,2,14986,169685 ,2,14987,55 ,1,0,638735 ,2,14956,278270 ,2,822,38940 ,2,14985,582485 ,2,14986,169885 ,2,14987,55 ,1,0,639035 ,2,14956,279350 ,2,822,38940 ,2,14985,581510 ,2,14986,169895 ,2,14987,55 ,1,0,639335 ,2,14956,278270 ,2,822,38960 ,2,14985,582485 ,2,14986,169975 ,2,14987,55 ,1,0,639530 ,2,14956,278270 ,2,822,38980 ,2,14985,582485 ,2,14986,170005 ,2,14987,55 ,1,0,640060 ,2,14956,279565 ,2,822,39040 ,2,14985,582725 ,2,14986,170130 ,2,14987,55 ,1,0,640600 ,2,14956,279615 ,2,822,39040 ,2,14985,582725 ,2,14986,170160 ,2,14987,55 ,1,0,640790 ,2,14956,279645 ,2,822,39040 ,2,14985,582725 ,2,14986,170195 ,2,14987,55 ,1,0,641310 ,2,14956,279770 ,2,822,39040 ,2,14985,599875 ,2,14986,170320 ,2,14987,55 ,1,0,641555 ,2,14956,279905 ,2,822,39040 ,2,14985,599975 ,2,14986,45 ,2,14987,55 ,1,0,642050 ,2,14956,279925 ,2,822,39040 ,2,14985,599975 ,2,14986,45 ,2,14987,55 ,1,0,642245 ,2,14956,279950 ,2,822,39040 ,2,14985,558580 ,2,14986,45 ,2,14987,55 ,1,0,642470 ,2,14956,280015 ,2,822,39040 ,2,14985,562775 ,2,14986,170540 ,2,14987,55 ,1,0,642780 ,2,14956,280025 ,2,822,39040 ,2,14985,599975 ,2,14986,45 ,2,14987,55 ,1,0,642980 ,2,14956,280035 ,2,822,39040 ,2,14985,599965 ,2,14986,45 ,2,14987,45 ,1,0,643285 ,2,14956,280050 ,2,822,39040 ,2,14985,582745 ,2,14986,45 ,2,14987,45 ,1,0,643640 ,2,14956,280060 ,2,822,39040 ,2,14985,599965 ,2,14986,45 ,2,14987,45 ,1,0,644035 ,2,14956,280070 ,2,822,39040 ,2,14985,582745 ,2,14986,45 ,2,14987,45 ,1,0,644410 ,2,14956,280110 ,2,822,39040 ,2,14985,582725 ,2,14986,170550 ,2,14987,55 ,1,0,644835 ,2,14956,280130 ,2,822,39040 ,2,14985,582725 ,2,14986,170575 ,2,14987,55 ,1,0,645185 ,2,14956,280285 ,2,822,39050 ,2,14985,599975 ,2,14986,45 ,2,14988,614705 ,1,0,645480 ,2,14956,280285 ,2,822,39070 ,2,14985,599975 ,2,14986,45 ,2,14988,614705 ,1,0,645825 ,2,14956,278270 ,2,822,39085 ,2,14985,582485 ,2,14986,171620 ,2,14987,55 ,1,0,646110 ,2,14956,278270 ,2,822,39160 ,2,14985,582485 ,2,14986,172090 ,2,14987,55 ,1,0,646505 ,2,14956,281145 ,2,822,39215 ,2,14985,561570 ,2,14986,172175 ,2,14987,55 ,1,0,646890 ,2,14956,281165 ,2,822,39215 ,2,14985,561570 ,2,14986,172185 ,2,14987,55 ,1,0,647210 ,2,14956,281185 ,2,822,39215 ,2,14985,561570 ,2,14986,172195 ,2,14987,55 ,1,0,647510 ,2,14956,281205 ,2,822,39215 ,2,14985,561570 ,2,14986,172240 ,2,14987,55 ,1,0,648100 ,2,14956,281255 ,2,822,39215 ,2,14985,561570 ,2,14986,172250 ,2,14987,55 ,1,0,648410 ,2,14956,281275 ,2,822,39215 ,2,14985,561570 ,2,14986,172260 ,2,14987,55 ,1,0,648610 ,2,14956,281300 ,2,822,39215 ,2,14985,561570 ,2,14986,172270 ,2,14987,55 ,1,0,649040 ,2,14956,281320 ,2,822,39215 ,2,14985,561570 ,2,14986,172290 ,2,14987,55 ,1,0,649385 ,2,14956,281360 ,2,822,39215 ,2,14985,561570 ,2,14986,172300 ,2,14987,55 ,1,0,649580 ,2,14956,281380 ,2,822,39215 ,2,14985,561570 ,2,14986,172310 ,2,14987,55 ,1,0,649950 ,2,14956,281400 ,2,822,39215 ,2,14985,561570 ,2,14986,172320 ,2,14987,55 ,1,0,650320 ,2,14956,278270 ,2,822,39180 ,2,14985,582485 ,2,14986,172530 ,2,14987,55 ,1,0,650595 ,2,14956,278270 ,2,822,39225 ,2,14985,582485 ,2,14986,172725 ,2,14987,55 ,1,0,650850 ,2,14956,278270 ,2,822,39305 ,2,14985,582485 ,2,14986,172780 ,2,14987,55 ,1,0,651050 ,2,14956,278270 ,2,822,39330 ,2,14985,582485 ,2,14986,172835 ,2,14987,55 ,1,0,651320 ,2,14956,278270 ,2,822,39350 ,2,14985,582485 ,2,14986,172960 ,2,14987,55 ,1,0,651625 ,2,14956,278270 ,2,822,39410 ,2,14985,582485 ,2,14986,173040 ,2,14987,55 ,1,0,651875 ,2,14956,278270 ,2,822,39435 ,2,14985,582485 ,2,14986,173170 ,2,14987,55 ,1,0,652135 ,2,14956,278270 ,2,822,39455 ,2,14985,582485 ,2,14986,173265 ,2,14987,55 ,1,0,652445 ,2,14956,282405 ,2,822,39455 ,2,14985,583035 ,2,14986,173275 ,2,14987,55 ,1,0,652650 ,2,14956,278270 ,2,822,39490 ,2,14985,582485 ,2,14986,173345 ,2,14987,55 ,1,0,653125 ,2,14956,278270 ,2,822,39510 ,2,14985,582485 ,2,14986,173365 ,2,14987,55 ,1,0,653750 ,2,14956,278270 ,2,822,39530 ,2,14985,582485 ,2,14986,173385 ,2,14987,55 ,1,0,654495 ,2,14956,278270 ,2,822,39610 ,2,14985,582485 ,2,14986,173405 ,2,14987,55 ,1,0,654735 ,2,14956,278270 ,2,822,39630 ,2,14985,582485 ,2,14986,173470 ,2,14987,55 ,1,0,655095 ,2,14956,282855 ,2,822,39760 ,2,14985,582710 ,2,14986,173520 ,2,14987,55 ,1,0,655445 ,2,14956,278270 ,2,822,39880 ,2,14985,582485 ,2,14986,174170 ,2,14987,55 ,1,0,655685 ,2,14956,278270 ,2,822,39950 ,2,14985,582485 ,2,14986,174265 ,2,14987,55 ,1,0,655940 ,2,14956,278270 ,2,822,39970 ,2,14985,582485 ,2,14986,174345 ,2,14987,55 ,1,0,656115 ,2,14956,278270 ,2,822,39990 ,2,14985,582485 ,2,14986,174410 ,2,14987,55 ,1,0,656435 ,2,14956,278270 ,2,822,40010 ,2,14985,582485 ,2,14986,174500 ,2,14987,55 ,1,0,656610 ,2,14956,278270 ,2,822,40050 ,2,14985,582485 ,2,14986,174585 ,2,14987,55 ,1,0,656895 ,2,14956,278270 ,2,822,40070 ,2,14985,582485 ,2,14986,174705 ,2,14987,55 ,1,0,657210 ,2,14956,278270 ,2,822,40090 ,2,14985,582485 ,2,14986,174775 ,2,14987,55 ,1,0,657445 ,2,14956,278270 ,2,822,40110 ,2,14985,582485 ,2,14986,174845 ,2,14987,55 ,1,0,657755 ,2,14956,278270 ,2,822,40140 ,2,14985,582485 ,2,14986,174940 ,2,14987,55 ,1,0,658060 ,2,14956,278270 ,2,822,40160 ,2,14985,582485 ,2,14986,175020 ,2,14987,55 ,1,0,658385 ,2,14956,278270 ,2,822,40180 ,2,14985,582485 ,2,14986,175090 ,2,14987,55 ,1,0,658740 ,2,14956,278270 ,2,822,40200 ,2,14985,582485 ,2,14986,175190 ,2,14987,55 ,1,0,659030 ,2,14956,278270 ,2,822,40265 ,2,14985,582485 ,2,14986,175270 ,2,14987,55 ,1,0,659285 ,2,14956,278270 ,2,822,40285 ,2,14985,582485 ,2,14986,175355 ,2,14987,55 ,1,0,659575 ,2,14956,278270 ,2,822,40310 ,2,14985,582485 ,2,14986,175415 ,2,14987,55 ,1,0,659900 ,2,14956,278270 ,2,822,40330 ,2,14985,582485 ,2,14986,175515 ,2,14987,55 ,1,0,660205 ,2,14956,278270 ,2,822,40390 ,2,14985,582485 ,2,14986,175585 ,2,14987,55 ,1,0,660520 ,2,14956,278270 ,2,822,40410 ,2,14985,582485 ,2,14986,175665 ,2,14987,55 ,1,0,660670 ,2,14956,278270 ,2,822,40440 ,2,14985,582485 ,2,14986,175725 ,2,14987,55 ,1,0,660940 ,2,14956,278270 ,2,822,40460 ,2,14985,582485 ,2,14986,175810 ,2,14987,55 ,1,0,661215 ,2,14956,278270 ,2,822,40500 ,2,14985,582485 ,2,14986,175905 ,2,14987,55 ,1,0,661610 ,2,14956,278270 ,2,822,40520 ,2,14985,582485 ,2,14986,175995 ,2,14987,55 ,1,0,661785 ,2,14956,278270 ,2,822,40540 ,2,14985,582485 ,2,14986,176065 ,2,14987,55 ,1,0,662110 ,2,14956,278270 ,2,822,40560 ,2,14985,582485 ,2,14986,176150 ,2,14987,55 ,1,0,662315 ,2,14956,278270 ,2,822,40600 ,2,14985,582485 ,2,14986,176225 ,2,14987,55 ,1,0,662625 ,2,14956,278270 ,2,822,40620 ,2,14985,582485 ,2,14986,176320 ,2,14987,55 ,1,0,662940 ,2,14956,278270 ,2,822,40640 ,2,14985,582485 ,2,14986,176395 ,2,14987,55 ,1,0,663280 ,2,14956,278270 ,2,822,40660 ,2,14985,582485 ,2,14986,176485 ,2,14987,55 ,1,0,663520 ,2,14956,278270 ,2,822,40710 ,2,14985,582485 ,2,14986,176560 ,2,14987,55 ,1,0,663955 ,2,14956,278270 ,2,822,40730 ,2,14985,582485 ,2,14986,176665 ,2,14987,55 ,1,0,664275 ,2,14956,278270 ,2,822,40750 ,2,14985,582485 ,2,14986,176725 ,2,14987,55 ,1,0,664475 ,2,14956,278270 ,2,822,40770 ,2,14985,582485 ,2,14986,176820 ,2,14987,55 ,1,0,664740 ,2,14956,278270 ,2,822,40800 ,2,14985,582485 ,2,14986,176900 ,2,14987,55 ,1,0,665000 ,2,14956,278270 ,2,822,40820 ,2,14985,582485 ,2,14986,176995 ,2,14987,55 ,1,0,665215 ,2,14956,278270 ,2,822,40840 ,2,14985,582485 ,2,14986,177060 ,2,14987,55 ,1,0,665565 ,2,14956,278270 ,2,822,40860 ,2,14985,582485 ,2,14986,177135 ,2,14987,55 ,1,0,665835 ,2,14956,278270 ,2,822,40905 ,2,14985,582485 ,2,14986,177215 ,2,14987,55 ,1,0,666075 ,2,14956,278270 ,2,822,40925 ,2,14985,582485 ,2,14986,177310 ,2,14987,55 ,1,0,666275 ,2,14956,278270 ,2,822,40945 ,2,14985,582485 ,2,14986,177375 ,2,14987,55 ,1,0,666580 ,2,14956,278270 ,2,822,40965 ,2,14985,582485 ,2,14986,177480 ,2,14987,55 ,1,0,666945 ,2,14956,287255 ,2,822,40965 ,2,14985,599970 ,2,14986,45 ,2,14988,618550 ,1,0,667125 ,2,14956,278270 ,2,822,41035 ,2,14985,582485 ,2,14986,177535 ,2,14987,55 ,1,0,667325 ,2,14956,287255 ,2,822,41035 ,2,14985,599970 ,2,14986,45 ,2,14988,614025 ,1,0,667580 ,2,14956,278270 ,2,822,41060 ,2,14985,582485 ,2,14986,177595 ,2,14987,55 ,1,0,667950 ,2,14956,287385 ,2,822,41060 ,2,14985,562990 ,2,14986,177650 ,2,14987,55 ,1,0,668200 ,2,14956,287465 ,2,822,41070 ,2,14985,584045 ,2,14986,177660 ,2,14987,55 ,1,0,668595 ,2,14956,287485 ,2,822,41070 ,2,14985,582590 ,2,14986,177670 ,2,14987,55 ,1,0,668910 ,2,14956,287610 ,2,822,41070 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,669195 ,2,14956,287765 ,2,822,41060 ,2,14985,582590 ,2,14986,177910 ,2,14987,55 ,1,0,669395 ,2,14956,287255 ,2,822,41060 ,2,14985,599970 ,2,14986,45 ,2,14988,614710 ,1,0,669575 ,2,14956,278270 ,2,822,41120 ,2,14985,582485 ,2,14986,178005 ,2,14987,55 ,1,0,669890 ,2,14956,287255 ,2,822,41120 ,2,14985,599970 ,2,14986,45 ,2,14988,614710 ,1,0,670115 ,2,14956,278270 ,2,822,41140 ,2,14985,582485 ,2,14986,178100 ,2,14987,55 ,1,0,670355 ,2,14956,287255 ,2,822,41140 ,2,14985,599970 ,2,14986,45 ,2,14988,614710 ,1,0,670585 ,2,14956,278270 ,2,822,41165 ,2,14985,582485 ,2,14986,178155 ,2,14987,55 ,1,0,670825 ,2,14956,221295 ,2,822,41175 ,2,14985,100 ,2,14986,45 ,2,14988,618550 ,1,0,671070 ,2,14956,287255 ,2,822,41165 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,671320 ,2,14956,278270 ,2,822,41240 ,2,14985,582485 ,2,14986,178400 ,2,14987,55 ,1,0,671495 ,2,14956,287255 ,2,822,41240 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,671705 ,2,14956,278270 ,2,822,41260 ,2,14985,582485 ,2,14986,178465 ,2,14987,55 ,1,0,672015 ,2,14956,288255 ,2,822,41260 ,2,14985,562990 ,2,14986,178495 ,2,14987,55 ,1,0,672255 ,2,14956,278270 ,2,822,41280 ,2,14985,582485 ,2,14986,178580 ,2,14987,55 ,1,0,672550 ,2,14956,287255 ,2,822,41280 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,672860 ,2,14956,278270 ,2,822,41300 ,2,14985,582485 ,2,14986,178700 ,2,14987,55 ,1,0,673195 ,2,14956,287255 ,2,822,41300 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,673425 ,2,14956,278270 ,2,822,41345 ,2,14985,582485 ,2,14986,178775 ,2,14987,55 ,1,0,673700 ,2,14956,287255 ,2,822,41345 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,673955 ,2,14956,278270 ,2,822,41365 ,2,14985,582485 ,2,14986,178825 ,2,14987,55 ,1,0,674165 ,2,14956,287255 ,2,822,41365 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,674405 ,2,14956,278270 ,2,822,41390 ,2,14985,582485 ,2,14986,178900 ,2,14987,55 ,1,0,674645 ,2,14956,287255 ,2,822,41390 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,674950 ,2,14956,278270 ,2,822,41410 ,2,14985,582485 ,2,14986,178960 ,2,14987,55 ,1,0,155 ,2,14956,287255 ,2,822,41410 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,525 ,2,14956,278270 ,2,822,41465 ,2,14985,582485 ,2,14986,179035 ,2,14987,55 ,1,0,955 ,2,14956,287255 ,2,822,41465 ,2,14985,599970 ,2,14986,45 ,2,14988,621000 ,1,0,1385 ,2,14956,278270 ,2,822,41485 ,2,14985,582485 ,2,14986,179115 ,2,14987,55 ,1,0,1710 ,2,14956,278270 ,2,822,41505 ,2,14985,582485 ,2,14986,179155 ,2,14987,55 ,1,0,2145 ,2,14956,288925 ,2,822,41515 ,2,14985,584200 ,2,14986,179165 ,2,14987,55 ,1,0,2565 ,2,14956,278270 ,2,822,41525 ,2,14985,582485 ,2,14986,179240 ,2,14987,55 ,1,0,2905 ,2,14956,289095 ,2,822,41540 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,3215 ,2,14956,278270 ,2,822,41570 ,2,14985,582485 ,2,14986,179320 ,2,14987,55 ,1,0,3740 ,2,14956,289095 ,2,822,41570 ,2,14985,599970 ,2,14986,45 ,2,14988,613640 ,1,0,4285 ,2,14956,278270 ,2,822,41590 ,2,14985,582485 ,2,14986,179420 ,2,14987,55 ,1,0,4800 ,2,14956,278270 ,2,822,41610 ,2,14985,582485 ,2,14986,179525 ,2,14987,55 ,1,0,5465 ,2,14956,278270 ,2,822,41650 ,2,14985,582485 ,2,14986,179615 ,2,14987,55 ,1,0,5770 ,2,14956,278270 ,2,822,41670 ,2,14985,582485 ,2,14986,179635 ,2,14987,55 ,1,0,6195 ,2,14956,289095 ,2,822,41670 ,2,14985,599970 ,2,14986,45 ,2,14988,613640 ,1,0,6515 ,2,14956,278270 ,2,822,41690 ,2,14985,582485 ,2,14986,179765 ,2,14987,55 ,1,0,6950 ,2,14956,278270 ,2,822,41765 ,2,14985,582485 ,2,14986,179790 ,2,14987,55 ,1,0,7380 ,2,14956,278270 ,2,822,41785 ,2,14985,582485 ,2,14986,179810 ,2,14987,55 ,1,0,7955 ,2,14956,167770 ,2,822,41815 ,2,14985,599880 ,2,14986,45 ,2,14988,613640 ,1,0,8460 ,2,14956,175900 ,2,822,38605 ,2,14985,559345 ,2,14986,45 ,2,14988,613640 ,1,0,9010 ,2,14956,175900 ,2,822,38575 ,2,14985,584410 ,2,14986,45 ,2,14988,613640 ,1,0,9330 ,2,14956,218370 ,2,822,42020 ,2,14985,569315 ,2,14986,45 ,2,14988,616170 ,1,0,9840 ,2,14956,210905 ,2,822,42020 ,2,14985,560980 ,2,14986,45 ,2,14988,613975 ,1,0,10355 ,2,14956,167770 ,2,822,42090 ,2,14985,610970 ,2,14986,45 ,2,14988,616170 ,1,0,10675 ,2,14956,167770 ,2,822,42115 ,2,14985,599880 ,2,14986,45 ,2,14988,620685 ,1,0,10985 ,2,14956,221200 ,2,822,42115 ,2,14985,561380 ,2,14986,180700 ,2,14987,55 ,1,0,11645 ,2,14956,290975 ,2,822,42115 ,2,14985,599940 ,2,14986,180710 ,2,14987,15645 ,1,0,12130 ,2,14956,222235 ,2,822,42115 ,2,14985,567865 ,2,14986,180720 ,2,14987,55 ,1,0,12520 ,2,14956,291135 ,2,822,42145 ,2,14985,584620 ,2,14986,181055 ,2,14987,55 ,1,0,12935 ,2,14956,291090 ,2,822,42145 ,2,14985,584575 ,2,14986,181085 ,2,14987,55 ,1,0,13275 ,2,14956,291200 ,2,822,42145 ,2,14985,584575 ,2,14986,181150 ,2,14987,55 ,1,0,13700 ,2,14956,291265 ,2,822,42145 ,2,14985,599975 ,2,14986,45 ,2,14988,618550 ,1,0,14145 ,2,14956,291325 ,2,822,42145 ,2,14985,599975 ,2,14986,45 ,2,14988,614705 ,1,0,14455 ,2,14956,291355 ,2,822,42145 ,2,14985,561150 ,2,14986,45 ,2,14988,613640 ,1,0,14850 ,2,14956,291385 ,2,822,42145 ,2,14985,100 ,2,14986,45 ,2,14988,614020 ,1,0,15305 ,2,14956,291440 ,2,822,42145 ,2,14985,599875 ,2,14986,181285 ,2,14987,170 ,1,0,15750 ,2,14956,291460 ,2,822,42145 ,2,14985,599975 ,2,14986,181295 ,2,14987,615295 ,1,0,16140 ,2,14956,291470 ,2,822,42145 ,2,14985,584580 ,2,14986,45 ,2,14987,45 ,1,0,16700 ,2,14956,291480 ,2,822,42145 ,2,14985,563655 ,2,14986,45 ,2,14987,45 ,1,0,17240 ,2,14956,291515 ,2,822,42145 ,2,14985,599975 ,2,14986,181305 ,2,14987,615295 ,1,0,17765 ,2,14956,291525 ,2,822,42145 ,2,14985,584610 ,2,14986,45 ,2,14987,45 ,1,0,18295 ,2,14956,11510 ,2,822,42210 ,2,14985,611030 ,2,14986,45 ,2,14988,616170 ,1,0,18835 ,2,14956,11510 ,2,822,42255 ,2,14985,100 ,2,14986,45 ,2,14988,614045 ,1,0,19285 ,2,14956,175900 ,2,822,42255 ,2,14985,599885 ,2,14986,45 ,2,14988,616170 ,1,0,19690 ,2,14956,6145 ,2,822,42305 ,2,14985,599975 ,2,14986,45 ,2,14988,614705 ,1,0,20145 ,2,14956,221295 ,2,822,42225 ,2,14985,100 ,2,14986,45 ,2,14988,614025 ,1,0,20750 ,2,14956,167770 ,2,822,42475 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,21180 ,2,14956,195325 ,2,822,42515 ,2,14985,599880 ,2,14986,45 ,2,14988,613640 ,1,0,21615 ,2,14956,167770 ,2,822,42545 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,22070 ,2,14956,11510 ,2,822,42825 ,2,14985,100 ,2,14986,45 ,2,14988,616170 ,1,0,22510 ,2,14956,175900 ,2,822,42825 ,2,14985,100 ,2,14986,45 ,2,14988,614705 ,1,0,22935 ,2,14956,11510 ,2,822,42955 ,2,14985,599940 ,2,14986,45 ,2,14988,614045 ,1,0,23420 ,2,14956,293635 ,2,822,42985 ,2,14985,564325 ,2,14986,187730 ,2,14987,55 ,1,0,23720 ,2,14956,293665 ,2,822,42985 ,2,14985,564325 ,2,14986,187745 ,2,14987,55 ,1,0,24250 ,2,14956,293685 ,2,822,42985 ,2,14985,564325 ,2,14986,187755 ,2,14987,55 ,1,0,24825 ,2,14956,293710 ,2,822,42985 ,2,14985,564325 ,2,14986,187765 ,2,14987,55 ,1,0,25635 ,2,14956,11510 ,2,822,43005 ,2,14985,599940 ,2,14986,45 ,2,14988,614705 ,1,0,26355 ,2,14956,167770 ,2,822,43060 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,27030 ,2,14956,167770 ,2,822,43080 ,2,14985,599880 ,2,14986,45 ,2,14988,613640 ,1,0,27335 ,2,14956,294075 ,2,822,43130 ,2,14985,562990 ,2,14986,188200 ,2,14987,55 ,1,0,28005 ,2,14956,294320 ,2,822,43200 ,2,14985,100 ,2,14986,188350 ,2,14987,55 ,1,0,28320 ,2,14956,294275 ,2,822,43190 ,2,14985,585780 ,2,14986,188370 ,2,14987,55 ,1,0,28670 ,2,14956,294190 ,2,822,43190 ,2,14985,581510 ,2,14986,188390 ,2,14987,55 ,1,0,28975 ,2,14956,294330 ,2,822,43200 ,2,14985,585780 ,2,14986,45 ,2,14987,45 ,1,0,29300 ,2,14956,294370 ,2,822,43200 ,2,14985,100 ,2,14986,188410 ,2,14987,55 ,1,0,29645 ,2,14956,294390 ,2,822,43200 ,2,14985,599880 ,2,14986,45 ,2,14987,45 ,1,0,29985 ,2,14956,294490 ,2,822,43210 ,2,14985,585785 ,2,14986,188485 ,2,14987,55 ,1,0,30305 ,2,14956,294570 ,2,822,43210 ,2,14985,599970 ,2,14986,188575 ,2,14987,55 ,1,0,30610 ,2,14956,295000 ,2,822,43210 ,2,14985,585795 ,2,14986,189000 ,2,14987,55 ,1,0,31060 ,2,14956,295340 ,2,822,43110 ,2,14985,599880 ,2,14986,189255 ,2,14987,295320 ,1,0,31495 ,2,14956,295350 ,2,822,43110 ,2,14985,599880 ,2,14986,45 ,2,14987,45 ,1,0,31885 ,2,14956,167770 ,2,822,43230 ,2,14985,599880 ,2,14986,45 ,2,14988,613640 ,1,0,32315 ,2,14956,11510 ,2,822,43265 ,2,14985,611360 ,2,14986,45 ,2,14988,614045 ,1,0,32935 ,2,14956,295870 ,2,822,43360 ,2,14985,585995 ,2,14986,190180 ,2,14987,55 ,1,0,33570 ,2,14956,209800 ,2,822,43410 ,2,14985,568460 ,2,14986,45 ,2,14988,620270 ,1,0,33985 ,2,14956,211340 ,2,822,43410 ,2,14985,567850 ,2,14986,45 ,2,14988,617155 ,1,0,34315 ,2,14956,209800 ,2,822,43500 ,2,14985,568460 ,2,14986,45 ,2,14988,618550 ,1,0,34590 ,2,14956,199905 ,2,822,43500 ,2,14985,599870 ,2,14986,45 ,2,14988,616170 ,1,0,35175 ,2,14956,297050 ,2,822,43595 ,2,14985,578995 ,2,14986,193575 ,2,14987,55 ,1,0,35720 ,2,14956,209800 ,2,822,43790 ,2,14985,568460 ,2,14986,45 ,2,14988,613975 ,1,0,36280 ,2,14956,209800 ,2,822,43820 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,36710 ,2,14956,297950 ,2,822,43865 ,2,14985,586705 ,2,14986,195090 ,2,14987,55 ,1,0,37115 ,2,14956,297990 ,2,822,43865 ,2,14985,586710 ,2,14986,195100 ,2,14987,55 ,1,0,37420 ,2,14956,298010 ,2,822,43865 ,2,14985,586710 ,2,14986,195110 ,2,14987,55 ,1,0,37945 ,2,14956,298030 ,2,822,43865 ,2,14985,599870 ,2,14986,195140 ,2,14987,170 ,1,0,38485 ,2,14956,209800 ,2,822,43940 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,38810 ,2,14956,8855 ,2,822,44050 ,2,14985,586915 ,2,14986,45 ,2,14988,616170 ,1,0,39595 ,2,14956,209800 ,2,822,44195 ,2,14985,568460 ,2,14986,45 ,2,14988,614025 ,1,0,39895 ,2,14956,299195 ,2,822,44095 ,2,14985,560980 ,2,14986,196490 ,2,14987,55 ,1,0,40250 ,2,14956,209800 ,2,822,44265 ,2,14985,568460 ,2,14986,45 ,2,14988,614390 ,1,0,40785 ,2,14956,199905 ,2,822,44320 ,2,14985,599870 ,2,14986,45 ,2,14988,616170 ,1,0,41220 ,2,14956,299865 ,2,822,44480 ,2,14985,600040 ,2,14986,197190 ,2,14987,55 ,1,0,41625 ,2,14956,299895 ,2,822,44480 ,2,14985,587340 ,2,14986,45 ,2,14988,614705 ,1,0,42050 ,2,14956,300025 ,2,822,44530 ,2,14985,600040 ,2,14986,197285 ,2,14987,55 ,1,0,42495 ,2,14956,300365 ,2,822,44635 ,2,14985,566215 ,2,14986,197490 ,2,14987,55 ,1,0,42920 ,2,14956,300540 ,2,822,44635 ,2,14985,587515 ,2,14986,197520 ,2,14987,55 ,1,0,43440 ,2,14956,300470 ,2,822,44700 ,2,14985,600040 ,2,14986,197565 ,2,14987,55 ,1,0,43765 ,2,14956,300560 ,2,822,44635 ,2,14985,587535 ,2,14986,197605 ,2,14987,55 ,1,0,44130 ,2,14956,300590 ,2,822,44635 ,2,14985,587545 ,2,14986,197615 ,2,14987,55 ,1,0,44465 ,2,14956,300610 ,2,822,44635 ,2,14985,599870 ,2,14986,197625 ,2,14987,170 ,1,0,44770 ,2,14956,300695 ,2,822,44740 ,2,14985,600040 ,2,14986,197695 ,2,14987,55 ,1,0,45630 ,2,14956,300915 ,2,822,44795 ,2,14985,587650 ,2,14986,197955 ,2,14987,55 ,1,0,46030 ,2,14956,300980 ,2,822,44795 ,2,14985,558580 ,2,14986,45 ,2,14988,613640 ,1,0,46465 ,2,14956,301095 ,2,822,44815 ,2,14985,587660 ,2,14986,198040 ,2,14987,55 ,1,0,46900 ,2,14956,301320 ,2,822,44860 ,2,14985,600040 ,2,14986,198135 ,2,14987,55 ,1,0,47405 ,2,14956,301350 ,2,822,44860 ,2,14985,587730 ,2,14986,45 ,2,14987,45 ,1,0,47825 ,2,14956,255425 ,2,822,44920 ,2,14985,587685 ,2,14986,198240 ,2,14987,55 ,1,0,48140 ,2,14956,301515 ,2,822,44920 ,2,14985,599880 ,2,14986,198265 ,2,14987,55 ,1,0,48550 ,2,14956,301435 ,2,822,44910 ,2,14985,599880 ,2,14986,198285 ,2,14987,55 ,1,0,48990 ,2,14956,255425 ,2,822,45060 ,2,14985,587865 ,2,14986,198740 ,2,14987,55 ,1,0,49275 ,2,14956,302855 ,2,822,45315 ,2,14985,588095 ,2,14986,199195 ,2,14987,55 ,1,0,49590 ,2,14956,3770 ,2,822,45535 ,2,14985,599975 ,2,14986,45 ,2,14988,613640 ,1,0,50105 ,2,14956,304545 ,2,822,46015 ,2,14985,599975 ,2,14986,45 ,2,14988,621000 ,1,0,50660 ,2,14956,243905 ,2,822,46290 ,2,14985,589205 ,2,14986,201955 ,2,14987,55 ,1,0,50960 ,2,14956,305210 ,2,822,46290 ,2,14985,589205 ,2,14986,202005 ,2,14987,55 ,1,0,51295 ,2,14956,305000 ,2,822,46205 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,51630 ,2,14956,305000 ,2,822,46260 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,52035 ,2,14956,305000 ,2,822,46170 ,2,14985,599880 ,2,14986,45 ,2,14988,614705 ,1,0,52565 ,2,14956,190770 ,2,822,46290 ,2,14985,589205 ,2,14986,202460 ,2,14987,55 ,1,0,52915 ,2,14956,305275 ,2,822,46290 ,2,14985,589205 ,2,14986,202485 ,2,14987,55 ,1,0,53455 ,2,14956,190770 ,2,822,46330 ,2,14985,589215 ,2,14986,202895 ,2,14987,55 ,1,0,53755 ,2,14956,305630 ,2,822,46330 ,2,14985,599880 ,2,14986,45 ,2,14987,45 ,1,0,54105 ,2,14956,305665 ,2,822,46330 ,2,14985,589140 ,2,14986,45 ,2,14987,45 ,1,0,54645 ,2,14956,179760 ,2,822,46330 ,2,14985,589215 ,2,14986,202930 ,2,14987,55 ,1,0,54965 ,2,14956,199455 ,2,822,46580 ,2,14985,599940 ,2,14986,45 ,2,14988,616170 ,1,0,55300 ,2,14956,306520 ,2,822,46580 ,2,14985,599940 ,2,14986,204340 ,2,14987,55 ,1,0,55630 ,2,14956,195325 ,2,822,46635 ,2,14985,581910 ,2,14986,45 ,2,14988,613640 ,1,0,56040 ,2,14956,307270 ,2,822,46815 ,2,14985,589625 ,2,14986,205510 ,2,14987,55 ,1,0,56350 ,2,14956,209800 ,2,822,46980 ,2,14985,568460 ,2,14986,45 ,2,14988,614705 ,1,0,56790 ,2,14956,209800 ,2,822,47040 ,2,14985,568460 ,2,14986,45 ,2,14988,618550 ,1,0,57335 ,2,14956,209800 ,2,822,47115 ,2,14985,568460 ,2,14986,45 ,2,14988,614045 ,1,0,57885 ,2,14956,308330 ,2,822,49280 ,2,14985,587655 ,2,14986,206400 ,2,14987,55 ,1,0,58430 ,2,14956,309570 ,2,822,47670 ,2,14985,562990 ,2,14986,207675 ,2,14987,55 ,1,0,58730 ,2,14956,309590 ,2,822,47670 ,2,14985,562990 ,2,14986,207685 ,2,14987,55 ,1,0,59260 ,2,14956,309610 ,2,822,47670 ,2,14985,562990 ,2,14986,207695 ,2,14987,55 ,1,0,59805 ,2,14956,309650 ,2,822,47670 ,2,14985,562990 ,2,14986,207705 ,2,14987,55 ,1,0,60095 ,2,14956,309670 ,2,822,47670 ,2,14985,562990 ,2,14986,207715 ,2,14987,55 ,1,0,60395 ,2,14956,309695 ,2,822,47670 ,2,14985,562990 ,2,14986,207725 ,2,14987,55 ,1,0,60860 ,2,14956,309715 ,2,822,47670 ,2,14985,562990 ,2,14986,207735 ,2,14987,55 ,1,0,61385 ,2,14956,309760 ,2,822,47670 ,2,14985,562990 ,2,14986,207755 ,2,14987,55 ,1,0,61770 ,2,14956,309905 ,2,822,47660 ,2,14985,562990 ,2,14986,207885 ,2,14987,55 ,1,0,62220 ,2,14956,309925 ,2,822,47660 ,2,14985,562990 ,2,14986,207895 ,2,14987,55 ,1,0,62850 ,2,14956,309980 ,2,822,47680 ,2,14985,599880 ,2,14986,45 ,2,14988,618550 ,1,0,63180 ,2,14956,310000 ,2,822,47680 ,2,14985,599880 ,2,14986,45 ,2,14988,614025 ,1,0,63715 ,2,14956,220955 ,2,822,47680 ,2,14985,599880 ,2,14986,45 ,2,14988,614020 ,1,0,64040 ,2,14956,4000 ,2,822,47680 ,2,14985,599880 ,2,14986,45 ,2,14988,613975 ,1,0,64480 ,2,14956,310030 ,2,822,47680 ,2,14985,599870 ,2,14986,45 ,2,14988,614045 ,1,0,64805 ,2,14956,310050 ,2,822,47680 ,2,14985,599970 ,2,14986,45 ,2,14988,616170 ,1,0,65350 ,2,14956,310080 ,2,822,47680 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,65845 ,2,14956,310100 ,2,822,47680 ,2,14985,589140 ,2,14986,45 ,2,14988,613640 ,1,0,66065 ,2,14956,310080 ,2,822,47660 ,2,14985,599970 ,2,14986,45 ,2,14988,614705 ,1,0,66575 ,2,14956,310100 ,2,822,47660 ,2,14985,589140 ,2,14986,45 ,2,14988,613640 ,1,0,66990 ,2,14956,310050 ,2,822,47660 ,2,14985,599970 ,2,14986,45 ,2,14988,616170 ,1,0,67305 ,2,14956,309980 ,2,822,47660 ,2,14985,599880 ,2,14986,45 ,2,14988,614045 ,1,0,67615 ,2,14956,310360 ,2,822,47770 ,2,14985,600040 ,2,14986,208295 ,2,14987,55 ,1,0,67920 ,2,14956,310760 ,2,822,47955 ,2,14985,562990 ,2,14986,208520 ,2,14987,55 ,1,0,68445 ,2,14956,310800 ,2,822,47955 ,2,14985,562990 ,2,14986,208530 ,2,14987,55 ,1,0,68950 ,2,14956,310820 ,2,822,47955 ,2,14985,562990 ,2,14986,208540 ,2,14987,55 ,1,0,69380 ,2,14956,310850 ,2,822,47955 ,2,14985,562990 ,2,14986,208550 ,2,14987,55 ,1,0,69680 ,2,14956,310870 ,2,822,47955 ,2,14985,562990 ,2,14986,208560 ,2,14987,55 ,1,0,70115 ,2,14956,311150 ,2,822,47945 ,2,14985,590430 ,2,14986,45 ,2,14988,613640 ,1,0,70495 ,2,14956,190530 ,2,822,14570 ,2,14985,584615 ,2,14986,208960 ,2,14987,55 ,1,0,71010 ,2,14956,177250 ,2,822,47985 ,2,14985,558090 ,2,14986,45 ,2,14988,614045 ,1,0,71300 ,2,14956,311805 ,2,822,48090 ,2,14985,599975 ,2,14986,45 ,2,14988,613640 ,1,0,71635 ,2,14956,311920 ,2,822,48100 ,2,14985,599975 ,2,14986,45 ,2,14988,614045 ,1,0,71940 ,2,14956,255425 ,2,822,48175 ,2,14985,590590 ,2,14986,209795 ,2,14987,55 ,1,0,72775 ,2,14956,312395 ,2,822,48215 ,2,14985,590640 ,2,14986,45 ,2,14987,45 ,1,0,74005 ,2,14956,341480 ,2,822,48610 ,2,14985,100 ,2,14986,45 ,2,14987,45 ,1,0,75210 ,2,14956,341490 ,2,822,48610 ,2,14985,100 ,2,14986,45 ,2,14987,45 ,1,0,75640 ,2,14956,341500 ,2,822,48610 ,2,14985,100 ,2,14986,45 ,2,14987,45 ,1,0,76045 ,2,14956,341510 ,2,822,48610 ,2,14985,100 ,2,14986,45 ,2,14987,45 ,1,0,76460 ,2,14956,341525 ,2,822,48610 ,2,14985,100 ,2,14986,45 ,2,14987,45 ,1,0,76870 ,2,14956,290870 ,2,822,48585 ,2,14985,595910 ,2,14986,222085 ,2,14987,55 ,1,0,77510 ,2,14956,8200 ,2,822,48715 ,2,14985,599970 ,2,14986,223855 ,2,14987,55 ,1,0,78130 ,2,14956,347645 ,2,822,48995 ,2,14985,599875 ,2,14986,224300 ,2,14987,170 ,1,0,78470 ,2,14956,347655 ,2,822,48995 ,2,14985,100 ,2,14986,45 ,2,14987,45 ,1,0,79325 ,2,14956,347690 ,2,822,48995 ,2,14985,599875 ,2,14986,224310 ,2,14987,170 ,1,0,79945 ,2,14956,347710 ,2,822,48995 ,2,14985,599875 ,2,14986,224320 ,2,14987,170 ,1,0,80370 ,2,14956,347720 ,2,822,48995 ,2,14985,558420 ,2,14986,45 ,2,14987,45 ,1,0,80815 ,2,14956,347750 ,2,822,48995 ,2,14985,599875 ,2,14986,224330 ,2,14987,170 ,1,0,81275 ,2,14956,347770 ,2,822,48995 ,2,14985,599875 ,2,14986,224340 ,2,14987,170 ,1,0,81655 ,2,14956,347815 ,2,822,48995 ,2,14985,599875 ,2,14986,224350 ,2,14987,170 ,1,0,81985 ,2,14956,347835 ,2,822,48995 ,2,14985,599885 ,2,14986,224395 ,2,14987,13320 ,1,0,82735 ,2,14956,347855 ,2,822,48995 ,2,14985,599975 ,2,14986,224405 ,2,14987,615295 ,1,0,83065 ,2,14956,348575 ,2,822,49145 ,2,14985,597155 ,2,14986,45 ,2,14987,45 ,1,0,83510 ,2,14956,348600 ,2,822,49155 ,2,14985,600035 ,2,14986,45 ,2,14988,613640 ,1,0,83810 ,2,14956,349240 ,2,822,14570 ,2,14985,599975 ,2,14986,228340 ,2,14987,615295 ,1,0,84230 ,2,14956,350735 ,2,822,14610 ,2,14985,100 ,2,14986,45 ,2,14988,614020 ,1,0,84860 ,2,14956,349905 ,2,822,14610 ,2,14985,100 ,2,14986,45 ,2,14988,613975 ,1,0,85185 ,2,14956,350370 ,2,822,14610 ,2,14985,100 ,2,14986,45 ,2,14988,614045 ,1,0,85520 ,2,14956,351020 ,2,822,14610 ,2,14985,100 ,2,14986,45 ,2,14988,616170 ,1,0,85965 ,2,14956,350095 ,2,822,14610 ,2,14985,100 ,2,14986,45 ,2,14988,614705 ,1,0,86585 ,2,14956,351050 ,2,822,14610 ,2,14985,100 ,2,14986,45 ,2,14988,613640 ,1,0,87125 ,2,14989,166455 ,1,0,87665 ,2,14989,166550 ,1,0,88020 ,2,14989,166560 ,1,0,88330 ,2,14989,166630 ,1,0,88635 ,2,14989,166720 ,1,0,89050 ,2,14989,166765 ,1,0,89480 ,2,14989,166975 ,1,0,89965 ,2,14989,167040 ,1,0,90190 ,2,14989,6335 ,1,0,90500 ,2,14989,167070 ,1,0,90905 ,2,14989,167095 ,1,0,91935 ,2,14989,167165 ,1,0,93005 ,2,14989,167185 ,1,0,94470 ,2,14989,167225 ,1,0,95970 ,2,14989,167295 ,1,0,96275 ,2,14989,167320 ,1,0,97040 ,2,14989,167365 ,1,0,97450 ,2,14989,167395 ,1,0,98135 ,2,14989,167480 ,1,0,98780 ,2,14989,167790 ,1,0,99090 ,2,14989,167905 ,1,0,99540 ,2,14989,167950 ,1,0,100105 ,2,14989,167960 ,1,0,100430 ,2,14989,168010 ,1,0,100750 ,2,14989,168125 ,1,0,101520 ,2,14989,168160 ,1,0,101995 ,2,14989,168180 ,1,0,102520 ,2,14989,10510 ,1,0,103190 ,2,14989,168345 ,1,0,103605 ,2,14989,168630 ,1,0,104065 ,2,14989,168740 ,1,0,104395 ,2,14989,168900 ,1,0,105155 ,2,14989,169080 ,1,0,105600 ,2,14989,169090 ,1,0,105905 ,2,14989,169105 ,1,0,106515 ,2,14989,169425 ,1,0,106970 ,2,14989,169435 ,1,0,107225 ,2,14989,169565 ,1,0,107540 ,2,14989,4430 ,1,0,108085 ,2,14989,169575 ,1,0,108620 ,2,14989,169640 ,1,0,109280 ,2,14989,169680 ,1,0,109940 ,2,14989,171175 ,1,0,110570 ,2,14989,171295 ,1,0,110895 ,2,14989,171515 ,1,0,111335 ,2,14989,171775 ,1,0,112100 ,2,14989,171985 ,1,0,112615 ,2,14989,173570 ,1,0,113195 ,2,14989,174350 ,1,0,113970 ,2,14989,174485 ,1,0,114320 ,2,14989,174495 ,1,0,114755 ,2,14989,174505 ,1,0,115185 ,2,14989,174515 ,1,0,115530 ,2,14989,174525 ,1,0,116160 ,2,14989,174535 ,1,0,116740 ,2,14989,174570 ,1,0,118185 ,2,14989,174580 ,1,0,118615 ,2,14989,174590 ,1,0,118920 ,2,14989,174600 ,1,0,119240 ,2,14989,174620 ,1,0,119660 ,2,14989,174630 ,1,0,120305 ,2,14989,188470 ,1,0,120935 ,2,14989,174770 ,1,0,121355 ,2,14989,174780 ,1,0,121685 ,2,14989,174850 ,1,0,122240 ,2,14989,175045 ,1,0,122665 ,2,14989,175590 ,1,0,123075 ,2,14989,176050 ,1,0,123690 ,2,14989,176070 ,1,0,124125 ,2,14989,176140 ,1,0,124560 ,2,14989,6005 ,1,0,124990 ,2,14989,176165 ,1,0,125625 ,2,14989,176285 ,1,0,126160 ,2,14989,176815 ,1,0,126720 ,2,14989,177010 ,1,0,127125 ,2,14989,177020 ,1,0,127565 ,2,14989,177790 ,1,0,128005 ,2,14989,177810 ,1,0,128405 ,2,14989,177830 ,1,0,128920 ,2,14989,177925 ,1,0,129480 ,2,14989,178055 ,1,0,130030 ,2,14989,178425 ,1,0,130540 ,2,14989,178460 ,1,0,130980 ,2,14989,179740 ,1,0,131755 ,2,14989,180340 ,1,0,132165 ,2,14989,180350 ,1,0,132700 ,2,14989,8885 ,1,0,133125 ,2,14989,188490 ,1,0,133535 ,2,14989,189220 ,1,0,134140 ,2,14989,189325 ,1,0,134470 ,2,14989,189380 ,1,0,135340 ,2,14989,189400 ,1,0,135640 ,2,14989,189665 ,1,0,136195 ,2,14989,5805 ,1,0,136870 ,2,14989,189695 ,1,0,137520 ,2,14989,189740 ,1,0,138165 ,2,14989,190205 ,1,0,138480 ,2,14989,191955 ,1,0,139130 ,2,14989,192075 ,1,0,139685 ,2,14989,192395 ,1,0,141160 ,2,14989,192495 ,1,0,141475 ,2,14989,192720 ,1,0,142080 ,2,14989,192910 ,1,0,142695 ,2,14989,4535 ,1,0,143210 ,2,14989,192940 ,1,0,143750 ,2,14989,192950 ,1,0,144175 ,2,14989,192960 ,1,0,144595 ,2,14989,192995 ,1,0,145150 ,2,14989,193005 ,1,0,145465 ,2,14989,193015 ,1,0,146050 ,2,14989,193025 ,1,0,146605 ,2,14989,193040 ,1,0,146910 ,2,14989,193050 ,1,0,147675 ,2,14989,193060 ,1,0,148000 ,2,14989,193070 ,1,0,148325 ,2,14989,193105 ,1,0,148760 ,2,14989,193115 ,1,0,149310 ,2,14989,193125 ,1,0,149735 ,2,14989,193135 ,1,0,150180 ,2,14989,193155 ,1,0,150615 ,2,14989,193165 ,1,0,151135 ,2,14989,193175 ,1,0,151580 ,2,14989,193185 ,1,0,151920 ,2,14989,193220 ,1,0,152465 ,2,14989,193230 ,1,0,152890 ,2,14989,193240 ,1,0,153450 ,2,14989,193250 ,1,0,153965 ,2,14989,193265 ,1,0,154290 ,2,14989,193275 ,1,0,154710 ,2,14989,193285 ,1,0,155035 ,2,14989,193295 ,1,0,155460 ,2,14989,193330 ,1,0,155875 ,2,14989,193340 ,1,0,156325 ,2,14989,193350 ,1,0,156640 ,2,14989,193360 ,1,0,157285 ,2,14989,197150 ,1,0,157790 ,2,14989,194070 ,1,0,158210 ,2,14989,194115 ,1,0,158740 ,2,14989,194600 ,1,0,159385 ,2,14989,195400 ,1,0,160025 ,2,14989,195560 ,1,0,160755 ,2,14989,9395 ,1,0,161340 ,2,14989,195585 ,1,0,162090 ,2,14989,195705 ,1,0,162745 ,2,14989,196140 ,1,0,163370 ,2,14989,196240 ,1,0,163925 ,2,14989,197160 ,1,0,164240 ,2,14989,197195 ,1,0,164670 ,2,14989,197380 ,1,0,165090 ,2,14989,197480 ,1,0,165835 ,2,14989,197590 ,1,0,166370 ,2,14989,198160 ,1,0,166825 ,2,14989,198925 ,1,0,167460 ,2,14989,199035 ,1,0,168035 ,2,14989,199225 ,1,0,168370 ,2,14989,199355 ,1,0,169275 ,2,14989,199640 ,1,0,170385 ,2,14989,199750 ,1,0,171465 ,2,14989,200215 ,1,0,171905 ,2,14989,200270 ,1,0,172450 ,2,14989,200300 ,1,0,172885 ,2,14989,200510 ,1,0,173225 ,2,14989,200830 ,1,0,173555 ,2,14989,201140 ,1,0,173925 ,2,14989,201290 ,1,0,174235 ,2,14989,202380 ,1,0,174695 ,2,14989,203165 ,1,0,175235 ,2,14989,203255 ,1,0,175560 ,2,14989,203480 ,1,0,175880 ,2,14989,203880 ,1,0,176315 ,2,14989,204105 ,1,0,176775 ,2,14989,204300 ,1,0,177080 ,2,14989,204525 ,1,0,177635 ,2,14989,204785 ,1,0,178070 ,2,14989,204795 ,1,0,178555 ,2,14989,205310 ,1,0,179095 ,2,14989,205465 ,1,0,179725 ,2,14989,205535 ,1,0,180150 ,2,14989,205585 ,1,0,180685 ,2,14989,205970 ,1,0,181000 ,2,14989,205980 ,1,0,181540 ,2,14989,205990 ,1,0,182090 ,2,14989,206000 ,1,0,182540 ,2,14989,206195 ,1,0,182975 ,2,14989,206215 ,1,0,183385 ,2,14989,206640 ,1,0,183845 ,2,14989,206770 ,1,0,184285 ,2,14989,206935 ,1,0,184705 ,2,14989,207035 ,1,0,185160 ,2,14989,208465 ,1,0,185605 ,2,14989,208645 ,1,0,186055 ,2,14989,208865 ,1,0,186510 ,2,14989,209530 ,1,0,186825 ,2,14989,210010 ,1,0,187150 ,2,14989,211555 ,1,0,187480 ,2,14989,211720 ,1,0,188120 ,2,14989,211895 ,1,0,188760 ,2,14989,211940 ,1,0,189415 ,2,14989,212430 ,1,0,189940 ,2,14989,213115 ,1,0,190270 ,2,14989,213655 ,1,0,191040 ,2,14989,213825 ,1,0,191720 ,2,14989,214030 ,1,0,192055 ,2,14989,214060 ,1,0,192645 ,2,14989,214100 ,1,0,193415 ,2,14989,214440 ,1,0,193835 ,2,14989,214870 ,1,0,194155 ,2,14989,216635 ,1,0,194895 ,2,14989,216975 ,1,0,195685 ,2,14989,217025 ,1,0,196230 ,2,14989,217100 ,1,0,197010 ,2,14989,217750 ,1,0,197785 ,2,14989,218050 ,1,0,198170 ,2,14989,218290 ,1,0,198630 ,2,14989,218720 ,1,0,199385 ,2,14989,218815 ,1,0,199785 ,2,14989,220925 ,1,0,200235 ,2,14989,220945 ,1,0,200990 ,2,14989,221375 ,1,0,201445 ,2,14989,221470 ,1,0,202425 ,2,14989,222310 ,1,0,202865 ,2,14989,222645 ,1,0,203210 ,2,14989,222795 ,1,0,203970 ,2,14989,222970 ,1,0,204380 ,2,14989,223020 ,1,0,204935 ,2,14989,223685 ,1,0,205390 ,2,14989,223795 ,1,0,205935 ,2,14989,223900 ,1,0,206350 ,2,14989,223980 ,1,0,206800 ,2,14989,224180 ,1,0,207215 ,2,14989,224295 ,1,0,208515 ,2,14989,224470 ,1,0,210620 ,2,14989,224625 ,1,0,211375 ,2,14989,225290 ,1,0,212140 ,2,14989,226005 ,1,0,212690 ,2,14989,226320 ,1,0,213340 ,2,14989,226355 ,1,0,213915 ,2,14989,226590 ,1,0,214560 ,2,14989,227310 ,1,0,215100 ,2,14989,227715 ,1,0,215535 ,2,14989,227925 ,1,0,216080 ,2,14989,228490 ,1,0,216505 ,2,14989,228550 ,1,0,216955 ,2,14989,228860 ,1,0,219100 ,2,14989,229545 ,1,0,220650 ,2,14989,229905 ,1,0,222490 ,2,14989,230200 ,1,0,222910 ,2,14989,230600 ,1,0,223355 ,2,14989,230710 ,1,0,224155 ,2,14989,231150 ,1,0,226515 ,2,14989,231860 ,1,0,227000 ,2,14989,232080 ,1,0,227470 ,2,14989,232525 ,1,0,228010 ,2,14989,232550 ,1,0,228435 ,2,14989,232710 ,1,0,228835 ,2,14989,232930 ,1,0,229240 ,2,14989,233045 ,1,0,229765 ,2,14989,233475 ,1,0,230335 ,2,14989,233785 ,1,0,230865 ,2,14989,235035 ,1,0,231425 ,2,14989,235395 ,1,0,231840 ,2,14989,235455 ,1,0,232270 ,2,14989,235585 ,1,0,232985 ,2,14989,235645 ,1,0,233545 ,2,14989,235760 ,1,0,234295 ,2,14989,235930 ,1,0,234900 ,2,14989,236020 ,1,0,235545 ,2,14989,236030 ,1,0,237810 ,2,14989,236695 ,1,0,238225 ,2,14989,237090 ,1,0,238880 ,2,14989,237210 ,1,0,239495 ,2,14989,238160 ,1,0,240245 ,2,14989,238300 ,1,0,240525 ,2,14989,238850 ,1,0,242005 ,2,14989,239055 ,1,0,243395 ,2,14989,239215 ,1,0,243750 ,2,14989,239530 ,1,0,244065 ,2,14989,239590 ,1,0,244780 ,2,14989,239680 ,1,0,245235 ,2,14989,240170 ,1,0,245685 ,2,14989,240305 ,1,0,246005 ,2,14989,240350 ,1,0,246960 ,2,14989,240440 ,1,0,247515 ,2,14989,240860 ,1,0,248025 ,2,14989,241090 ,1,0,248470 ,2,14989,241740 ,1,0,248780 ,2,14989,241930 ,1,0,249090 ,2,14989,242585 ,1,0,249835 ,2,14989,242685 ,1,0,250490 ,2,14989,242710 ,1,0,250920 ,2,14989,242765 ,1,0,251260 ,2,14989,242870 ,1,0,251805 ,2,14989,243520 ,1,0,252255 ,2,14989,243570 ,1,0,252770 ,2,14989,243630 ,1,0,253005 ,2,14989,243660 ,1,0,253315 ,2,14989,243715 ,1,0,254495 ,2,14989,243805 ,1,0,255040 ,2,14989,243950 ,1,0,255355 ,2,14989,243990 ,1,0,255670 ,2,14989,244025 ,1,0,256085 ,2,14989,244075 ,1,0,256480 ,2,14989,244230 ,1,0,256775 ,2,14989,244285 ,1,0,257120 ,2,14989,244315 ,1,0,257540 ,2,14989,244390 ,1,0,257970 ,2,14989,244430 ,1,0,258600 ,2,14989,244480 ,1,0,259105 ,2,14989,244535 ,1,0,259655 ,2,14989,244600 ,1,0,260265 ,2,14989,244640 ,1,0,260680 ,2,14989,244705 ,1,0,261195 ,2,14989,245045 ,1,0,261490 ,2,14989,246015 ,1,0,262035 ,2,14989,246320 ,1,0,262325 ,2,14989,246530 ,1,0,262630 ,2,14989,246675 ,1,0,263250 ,2,14989,246705 ,1,0,263560 ,2,14989,247105 ,1,0,263870 ,2,14989,247480 ,1,0,264300 ,2,14989,247680 ,1,0,264835 ,2,14989,248095 ,1,0,265365 ,2,14989,248405 ,1,0,265790 ,2,14989,248640 ,1,0,266095 ,2,14989,248815 ,1,0,267055 ,2,14989,249205 ,1,0,268440 ,2,14989,249225 ,1,0,268760 ,2,14989,249280 ,1,0,269165 ,2,14989,249635 ,1,0,270420 ,2,14989,249685 ,1,0,270930 ,2,14989,249910 ,1,0,271560 ,2,14989,250105 ,1,0,271950 ,2,14989,250295 ,1,0,272375 ,2,14989,250455 ,1,0,272685 ,2,14989,250865 ,1,0,273220 ,2,14989,251770 ,1,0,273720 ,2,14989,252685 ,1,0,274225 ,2,14989,252830 ,1,0,274650 ,2,14989,253025 ,1,0,275050 ,2,14989,253125 ,1,0,275475 ,2,14989,253295 ,1,0,276005 ,2,14989,253400 ,1,0,276585 ,2,14989,254660 ,1,0,277095 ,2,14989,254805 ,1,0,277575 ,2,14989,254895 ,1,0,277900 ,2,14989,255070 ,1,0,278190 ,2,14989,255100 ,1,0,278790 ,2,14989,255170 ,1,0,279160 ,2,14989,255210 ,1,0,279595 ,2,14989,256260 ,1,0,280100 ,2,14989,256815 ,1,0,280535 ,2,14989,257280 ,1,0,280930 ,2,14989,258085 ,1,0,281435 ,2,14989,258665 ,1,0,281950 ,2,14989,259725 ,1,0,282480 ,2,14989,259755 ,1,0,282890 ,2,14989,260960 ,1,0,283205 ,2,14989,261000 ,1,0,284235 ,2,14989,261145 ,1,0,284785 ,2,14989,261440 ,1,0,285090 ,2,14989,261625 ,1,0,285505 ,2,14989,263750 ,1,0,286035 ,2,14989,263950 ,1,0,286475 ,2,14989,264770 ,1,0,286995 ,2,14989,264920 ,1,0,287405 ,2,14989,265015 ,1,0,287725 ,2,14989,265400 ,1,0,288960 ,2,14989,265520 ,1,0,289560 ,2,14989,265615 ,1,0,290500 ,2,14989,265645 ,1,0,290895 ,2,14989,266360 ,1,0,291185 ,2,14989,266680 ,1,0,292010 ,2,14989,267225 ,1,0,292320 ,2,14989,267780 ,1,0,292835 ,2,14989,268040 ,1,0,293255 ,2,14989,268870 ,1,0,293655 ,2,14989,269340 ,1,0,294150 ,2,14989,269395 ,1,0,294560 ,2,14989,269875 ,1,0,294980 ,2,14989,269765 ,1,0,295475 ,2,14989,269905 ,1,0,295885 ,2,14989,269940 ,1,0,296535 ,2,14989,270165 ,1,0,296865 ,2,14989,270350 ,1,0,297245 ,2,14989,270380 ,1,0,297665 ,2,14989,270590 ,1,0,297970 ,2,14989,272455 ,1,0,298615 ,2,14989,276635 ,1,0,299240 ,2,14989,276850 ,1,0,299545 ,2,14989,276935 ,1,0,300385 ,2,14989,277175 ,1,0,300735 ,2,14989,277340 ,1,0,301165 ,2,14989,277565 ,1,0,301800 ,2,14989,277600 ,1,0,302685 ,2,14989,277630 ,1,0,303210 ,2,14989,277640 ,1,0,303825 ,2,14989,277650 ,1,0,304480 ,2,14989,290320 ,1,0,305035 ,2,14989,277745 ,1,0,305655 ,2,14989,277765 ,1,0,306040 ,2,14989,277800 ,1,0,306590 ,2,14989,277810 ,1,0,306920 ,2,14989,277820 ,1,0,307835 ,2,14989,277830 ,1,0,308155 ,2,14989,277855 ,1,0,309015 ,2,14989,277865 ,1,0,309625 ,2,14989,277875 ,1,0,310275 ,2,14989,277885 ,1,0,310775 ,2,14989,277910 ,1,0,311355 ,2,14989,277920 ,1,0,311895 ,2,14989,277930 ,1,0,312475 ,2,14989,277940 ,1,0,313110 ,2,14989,277955 ,1,0,313435 ,2,14989,277965 ,1,0,313760 ,2,14989,290095 ,1,0,314060 ,2,14989,278175 ,1,0,314595 ,2,14989,278250 ,1,0,315090 ,2,14989,278300 ,1,0,315705 ,2,14989,278465 ,1,0,316205 ,2,14989,278590 ,1,0,316515 ,2,14989,279055 ,1,0,317260 ,2,14989,279255 ,1,0,317450 ,2,14989,279305 ,1,0,317695 ,2,14989,279425 ,1,0,317885 ,2,14989,279470 ,1,0,318095 ,2,14989,279520 ,1,0,318310 ,2,14989,279740 ,1,0,318555 ,2,14989,280805 ,1,0,318745 ,2,14989,280915 ,1,0,318945 ,2,14989,281005 ,1,0,319155 ,2,14989,281095 ,1,0,319360 ,2,14989,281600 ,1,0,319545 ,2,14989,281740 ,1,0,319755 ,2,14989,281760 ,1,0,319985 ,2,14989,281855 ,1,0,320205 ,2,14989,281895 ,1,0,320395 ,2,14989,281990 ,1,0,320605 ,2,14989,282015 ,1,0,320815 ,2,14989,282110 ,1,0,321030 ,2,14989,282230 ,1,0,321210 ,2,14989,282345 ,1,0,321425 ,2,14989,282445 ,1,0,321625 ,2,14989,282495 ,1,0,321855 ,2,14989,282535 ,1,0,322075 ,2,14989,282555 ,1,0,322285 ,2,14989,282650 ,1,0,322510 ,2,14989,282720 ,1,0,322715 ,2,14989,282770 ,1,0,322905 ,2,14989,282885 ,1,0,323100 ,2,14989,283165 ,1,0,323320 ,2,14989,283285 ,1,0,323550 ,2,14989,283390 ,1,0,323765 ,2,14989,283480 ,1,0,323950 ,2,14989,283575 ,1,0,324180 ,2,14989,283665 ,1,0,324360 ,2,14989,283760 ,1,0,324580 ,2,14989,283850 ,1,0,324790 ,2,14989,283925 ,1,0,324975 ,2,14989,284040 ,1,0,325195 ,2,14989,284115 ,1,0,325390 ,2,14989,284200 ,1,0,325620 ,2,14989,284285 ,1,0,325820 ,2,14989,284380 ,1,0,326005 ,2,14989,284485 ,1,0,326235 ,2,14989,284585 ,1,0,326410 ,2,14989,284660 ,1,0,326615 ,2,14989,284755 ,1,0,326860 ,2,14989,284850 ,1,0,327035 ,2,14989,284940 ,1,0,327255 ,2,14989,285025 ,1,0,327470 ,2,14989,285125 ,1,0,327675 ,2,14989,285220 ,1,0,327875 ,2,14989,285320 ,1,0,328075 ,2,14989,285395 ,1,0,328300 ,2,14989,285475 ,1,0,328545 ,2,14989,285585 ,1,0,328720 ,2,14989,285685 ,1,0,328965 ,2,14989,285785 ,1,0,329200 ,2,14989,285875 ,1,0,329395 ,2,14989,285955 ,1,0,329620 ,2,14989,286045 ,1,0,329830 ,2,14989,286120 ,1,0,330030 ,2,14989,286225 ,1,0,330230 ,2,14989,286310 ,1,0,330450 ,2,14989,286420 ,1,0,330675 ,2,14989,286515 ,1,0,330885 ,2,14989,286625 ,1,0,331080 ,2,14989,286720 ,1,0,331315 ,2,14989,286795 ,1,0,331525 ,2,14989,286865 ,1,0,331730 ,2,14989,286965 ,1,0,331940 ,2,14989,287065 ,1,0,332150 ,2,14989,287155 ,1,0,332400 ,2,14989,287175 ,1,0,332600 ,2,14989,287285 ,1,0,332840 ,2,14989,287365 ,1,0,333035 ,2,14989,287430 ,1,0,333280 ,2,14989,287845 ,1,0,333480 ,2,14989,287900 ,1,0,333710 ,2,14989,287955 ,1,0,333925 ,2,14989,287980 ,1,0,334150 ,2,14989,288175 ,1,0,334375 ,2,14989,288235 ,1,0,334590 ,2,14989,288360 ,1,0,334790 ,2,14989,288455 ,1,0,335005 ,2,14989,288515 ,1,0,335240 ,2,14989,288590 ,1,0,335465 ,2,14989,288655 ,1,0,335675 ,2,14989,288705 ,1,0,335895 ,2,14989,288780 ,1,0,336120 ,2,14989,288850 ,1,0,336310 ,2,14989,288905 ,1,0,336570 ,2,14989,289045 ,1,0,336790 ,2,14989,289075 ,1,0,337010 ,2,14989,289160 ,1,0,337250 ,2,14989,289210 ,1,0,337455 ,2,14989,289300 ,1,0,337690 ,2,14989,289365 ,1,0,337910 ,2,14989,289405 ,1,0,338100 ,2,14989,289495 ,1,0,338335 ,2,14989,289515 ,1,0,338545 ,2,14989,289600 ,1,0,338800 ,2,14989,289645 ,1,0,339000 ,2,14989,290115 ,1,0,339240 ,2,14989,290340 ,1,0,339425 ,2,14989,290540 ,1,0,339640 ,2,14989,290585 ,1,0,339855 ,2,14989,290680 ,1,0,340075 ,2,14989,290890 ,1,0,340285 ,2,14989,290945 ,1,0,340485 ,2,14989,291910 ,1,0,340710 ,2,14989,291940 ,1,0,340945 ,2,14989,292975 ,1,0,341160 ,2,14989,293585 ,1,0,341360 ,2,14989,293900 ,1,0,341565 ,2,14989,293965 ,1,0,341805 ,2,14989,293995 ,1,0,342005 ,2,14989,294005 ,1,0,342215 ,2,14989,294015 ,1,0,342410 ,2,14989,294215 ,1,0,342660 ,2,14989,294295 ,1,0,342845 ,2,14989,295300 ,1,0,343065 ,2,14989,295470 ,1,0,343270 ,2,14989,295555 ,1,0,343480 ,2,14989,295625 ,1,0,343680 ,2,14989,295850 ,1,0,343890 ,2,14989,295935 ,1,0,344100 ,2,14989,296235 ,1,0,344305 ,2,14989,296330 ,1,0,344535 ,2,14989,296490 ,1,0,344740 ,2,14989,297545 ,1,0,344970 ,2,14989,297645 ,1,0,345205 ,2,14989,297805 ,1,0,345405 ,2,14989,298445 ,1,0,345630 ,2,14989,298835 ,1,0,345820 ,2,14989,299000 ,1,0,346045 ,2,14989,299175 ,1,0,346285 ,2,14989,299350 ,1,0,346480 ,2,14989,299420 ,1,0,346700 ,2,14989,299575 ,1,0,346925 ,2,14989,299725 ,1,0,347135 ,2,14989,299830 ,1,0,347355 ,2,14989,299920 ,1,0,347545 ,2,14989,300005 ,1,0,347795 ,2,14989,300105 ,1,0,348340 ,2,14989,300190 ,1,0,348625 ,2,14989,300200 ,1,0,349785 ,2,14989,300210 ,1,0,350210 ,2,14989,300220 ,1,0,350410 ,2,14989,300230 ,1,0,350650 ,2,14989,300240 ,1,0,350890 ,2,14989,301820 ,1,0,351095 ,2,14989,300325 ,1,0,351315 ,2,14989,300345 ,1,0,351525 ,2,14989,300445 ,1,0,351750 ,2,14989,300655 ,1,0,351950 ,2,14989,300675 ,1,0,352155 ,2,14989,300805 ,1,0,352365 ,2,14989,300850 ,1,0,352600 ,2,14989,301075 ,1,0,352815 ,2,14989,301200 ,1,0,353050 ,2,14989,301295 ,1,0,353245 ,2,14989,301415 ,1,0,353450 ,2,14989,301495 ,1,0,353785 ,2,14989,301840 ,1,0,353995 ,2,14989,301885 ,1,0,354315 ,2,14989,301915 ,1,0,354530 ,2,14989,301925 ,1,0,354855 ,2,14989,301935 ,1,0,355060 ,2,14989,301945 ,1,0,355390 ,2,14989,302075 ,1,0,355605 ,2,14989,302095 ,1,0,355940 ,2,14989,302155 ,1,0,356135 ,2,14989,302320 ,1,0,356475 ,2,14989,302375 ,1,0,356700 ,2,14989,302505 ,1,0,356910 ,2,14989,302580 ,1,0,357240 ,2,14989,302600 ,1,0,357470 ,2,14989,302695 ,1,0,357815 ,2,14989,302835 ,1,0,358005 ,2,14989,303040 ,1,0,358245 ,2,14989,303090 ,1,0,358550 ,2,14989,303285 ,1,0,358855 ,2,14989,303400 ,1,0,359185 ,2,14989,303605 ,1,0,359375 ,2,14989,303690 ,1,0,359805 ,2,14989,303745 ,1,0,360140 ,2,14989,303775 ,1,0,360470 ,2,14989,303810 ,1,0,360755 ,2,14989,303915 ,1,0,361080 ,2,14989,304020 ,1,0,361395 ,2,14989,304710 ,1,0,361805 ,2,14989,304835 ,1,0,362125 ,2,14989,304880 ,1,0,362420 ,2,14989,305075 ,1,0,362735 ,2,14989,305155 ,1,0,363090 ,2,14989,305190 ,1,0,363310 ,2,14989,305410 ,1,0,363650 ,2,14989,305430 ,1,0,363855 ,2,14989,305695 ,1,0,364220 ,2,14989,305970 ,1,0,364435 ,2,14989,306030 ,1,0,364645 ,2,14989,306090 ,1,0,364840 ,2,14989,306200 ,1,0,365065 ,2,14989,306250 ,1,0,365315 ,2,14989,306375 ,1,0,365625 ,2,14989,306475 ,1,0,365955 ,2,14989,306610 ,1,0,366245 ,2,14989,306685 ,1,0,366555 ,2,14989,307070 ,1,0,366780 ,2,14989,307080 ,1,0,367090 ,2,14989,8505 ,1,0,367415 ,2,14989,307435 ,1,0,367735 ,2,14989,307455 ,1,0,367975 ,2,14989,307495 ,1,0,368160 ,2,14989,307565 ,1,0,368485 ,2,14989,307605 ,1,0,368680 ,2,14989,307670 ,1,0,368890 ,2,14989,307700 ,1,0,369125 ,2,14989,307750 ,1,0,369340 ,2,14989,307780 ,1,0,369535 ,2,14989,307810 ,1,0,369760 ,2,14989,307870 ,1,0,369970 ,2,14989,307990 ,1,0,370170 ,2,14989,308020 ,1,0,370465 ,2,14989,308125 ,1,0,370780 ,2,14989,308195 ,1,0,371090 ,2,14989,308300 ,1,0,371545 ,2,14989,308395 ,1,0,371975 ,2,14989,308425 ,1,0,372385 ,2,14989,308495 ,1,0,372790 ,2,14989,308535 ,1,0,373200 ,2,14989,308555 ,1,0,373630 ,2,14989,308615 ,1,0,374050 ,2,14989,308705 ,1,0,374465 ,2,14989,308735 ,1,0,374865 ,2,14989,308745 ,1,0,375120 ,2,14989,308880 ,1,0,375315 ,2,14989,309080 ,1,0,375510 ,2,14989,309090 ,1,0,375680 ,2,14989,309885 ,1,0,375895 ,2,14989,309970 ,1,0,376060 ,2,14989,310285 ,1,0,376255 ,2,14989,310430 ,1,0,376440 ,2,14989,310485 ,1,0,376620 ,2,14989,310515 ,1,0,376800 ,2,14989,310610 ,1,0,376985 ,2,14989,310705 ,1,0,377155 ,2,14989,310740 ,1,0,377335 ,2,14989,310970 ,1,0,377525 ,2,14989,311070 ,1,0,377730 ,2,14989,311370 ,1,0,377895 ,2,14989,312160 ,1,0,378110 ,2,14989,312180 ,1,0,378295 ,2,14989,312320 ,1,0,378495 ,2,14989,312385 ,1,0,378730 ,2,14989,312505 ,1,0,378960 ,2,14989,312640 ,1,0,379165 ,2,14989,327995 ,1,0,379340 ,2,14989,329100 ,1,0,379525 ,2,14989,330260 ,1,0,379690 ,2,14989,330915 ,1,0,379935 ,2,14989,330955 ,1,0,380195 ,2,14989,331010 ,1,0,380390 ,2,14989,331140 ,1,0,380660 ,2,14989,331200 ,1,0,380850 ,2,14989,332075 ,1,0,381045 ,2,14989,341275 ,1,0,381275 ,2,14989,343345 ,1,0,381545 ,2,14989,344350 ,1,0,381815 ,2,14989,344440 ,1,0,382020 ,2,14989,6585 ,1,0,382255 ,2,14989,347290 ,1,0,382430 ,2,14989,347320 ,1,0,382605 ,2,14989,347430 ,1,0,382810 ,2,14989,347585 ,1,0,382975 ,2,14989,347615 ,1,0,383240 ,2,14989,7970 ,1,0,383435 ,2,14989,9275 ,1,0,383615 ,2,14989,8230 ,1,0,383870 ,2,14989,348090 ,1,0,384130 ,2,14989,348125 ,1,0,384315 ,2,14989,348170 ,1,0,384555 ,2,14989,348245 ,1,0,384730 ,2,14989,348255 ,1,0,384920 ,2,14989,348305 ,1,0,385105 ,2,14989,348390 ,1,0,385345 ,2,14989,348400 ,1,0,385540 ,2,14989,348410 ,1,0,385720 ,2,14989,348420 ,1,0,385880 ,2,14989,348440 ,1,0,386065 ,2,14989,348450 ,1,0,386255 ,2,14989,348460 ,1,0,386440 ,2,14989,348470 ,1,0,386600 ,2,14989,348485 ,1,0,386790 ,2,14956,173580 ,2,14989,173570 ,2,14990,173535 ,2,14991,28160 ,2,14992,45 ,2,14993,15975 ,2,14994,16325 ,2,14995,28135 ,2,14996,75 ,1,0,386970 ,2,14956,13320 ,2,14989,174350 ,2,14990,174330 ,2,14991,28400 ,2,14992,45 ,2,14993,16060 ,2,14994,16335 ,2,14995,28355 ,2,14996,75 ,1,0,387200 ,2,14956,13320 ,2,14989,189220 ,2,14990,189210 ,2,14991,28810 ,2,14992,45 ,2,14993,16200 ,2,14994,16345 ,2,14995,28790 ,2,14996,75 ,1,0,387395 ,2,14956,188480 ,2,14989,188470 ,2,14990,188460 ,2,14991,35460 ,2,14992,45 ,2,14993,16285 ,2,14994,16355 ,2,14995,28935 ,2,14996,75 ,1,0,387640 ,2,14956,13320 ,2,14989,179740 ,2,14990,179700 ,2,14991,33525 ,2,14992,45 ,2,14993,17130 ,2,14994,16380 ,2,14995,33495 ,2,14996,75 ,1,0,387890 ,2,14956,13320 ,2,14989,189325 ,2,14990,192785 ,2,14991,39755 ,2,14992,45 ,2,14993,18385 ,2,14994,16390 ,2,14995,39730 ,2,14996,75 ,1,0,388155 ,2,14956,5690 ,2,14989,197150 ,2,14990,197140 ,2,14991,42250 ,2,14992,45 ,2,14993,18715 ,2,14994,16400 ,2,14995,41685 ,2,14996,75 ,1,0,388375 ,2,14956,194125 ,2,14989,194115 ,2,14990,194105 ,2,14991,42185 ,2,14992,45 ,2,14993,18910 ,2,14994,16410 ,2,14995,42130 ,2,14996,75 ,1,0,388615 ,2,14956,13320 ,2,14989,197480 ,2,14990,197470 ,2,14991,44180 ,2,14992,45 ,2,14993,19575 ,2,14994,16420 ,2,14995,44160 ,2,14996,75 ,1,0,388855 ,2,14956,13320 ,2,14989,197380 ,2,14990,197370 ,2,14991,44315 ,2,14992,45 ,2,14993,19630 ,2,14994,16430 ,2,14995,44295 ,2,14996,75 ,1,0,389080 ,2,14956,13320 ,2,14989,197590 ,2,14990,197580 ,2,14991,44495 ,2,14992,45 ,2,14993,19670 ,2,14994,16440 ,2,14995,44475 ,2,14996,75 ,1,0,389315 ,2,14956,13320 ,2,14989,199225 ,2,14990,199210 ,2,14991,44600 ,2,14992,45 ,2,14993,19735 ,2,14994,16450 ,2,14995,44580 ,2,14996,75 ,1,0,389480 ,2,14956,13320 ,2,14989,197195 ,2,14990,197670 ,2,14991,44640 ,2,14992,45 ,2,14993,19775 ,2,14994,16470 ,2,14995,44620 ,2,14996,75 ,1,0,389660 ,2,14956,13320 ,2,14989,198160 ,2,14990,198150 ,2,14991,45235 ,2,14992,45 ,2,14993,19985 ,2,14994,16480 ,2,14995,45185 ,2,14996,75 ,1,0,389825 ,2,14956,13320 ,2,14989,199035 ,2,14990,199025 ,2,14991,45525 ,2,14992,45 ,2,14993,20075 ,2,14994,16490 ,2,14995,45505 ,2,14996,75 ,1,0,390040 ,2,14956,13320 ,2,14989,198925 ,2,14990,198915 ,2,14991,45990 ,2,14992,45 ,2,14993,20290 ,2,14994,16500 ,2,14995,45970 ,2,14996,75 ,1,0,390210 ,2,14956,13320 ,2,14989,199355 ,2,14990,199345 ,2,14991,46530 ,2,14992,45 ,2,14993,20430 ,2,14994,16515 ,2,14995,46510 ,2,14996,75 ,1,0,390390 ,2,14956,13320 ,2,14989,269340 ,2,14990,269330 ,2,14991,47130 ,2,14992,45 ,2,14993,20515 ,2,14994,16525 ,2,14995,46710 ,2,14996,75 ,1,0,390600 ,2,14956,13320 ,2,14989,199750 ,2,14990,199740 ,2,14991,46790 ,2,14992,45 ,2,14993,20535 ,2,14994,16535 ,2,14995,46745 ,2,14996,75 ,1,0,390760 ,2,14956,13320 ,2,14989,199640 ,2,14990,199630 ,2,14991,46965 ,2,14992,45 ,2,14993,20635 ,2,14994,16545 ,2,14995,46945 ,2,14996,75 ,1,0,390975 ,2,14956,13320 ,2,14989,200215 ,2,14990,200205 ,2,14991,47320 ,2,14992,45 ,2,14993,20735 ,2,14994,16605 ,2,14995,47295 ,2,14996,75 ,1,0,391180 ,2,14956,13320 ,2,14989,200300 ,2,14990,200280 ,2,14991,47530 ,2,14992,45 ,2,14993,20835 ,2,14994,16615 ,2,14995,47510 ,2,14996,75 ,1,0,391320 ,2,14956,13320 ,2,14989,200270 ,2,14990,200745 ,2,14991,47845 ,2,14992,45 ,2,14993,20930 ,2,14994,16625 ,2,14995,47740 ,2,14996,75 ,1,0,391500 ,2,14956,13320 ,2,14989,200510 ,2,14990,201035 ,2,14991,48000 ,2,14992,45 ,2,14993,20995 ,2,14994,16635 ,2,14995,47980 ,2,14996,75 ,1,0,391705 ,2,14956,13320 ,2,14989,200830 ,2,14990,200820 ,2,14991,48075 ,2,14992,45 ,2,14993,21025 ,2,14994,16650 ,2,14995,48040 ,2,14996,75 ,1,0,391930 ,2,14956,13320 ,2,14989,201140 ,2,14990,201130 ,2,14991,48335 ,2,14992,45 ,2,14993,21060 ,2,14994,16660 ,2,14995,48315 ,2,14996,75 ,1,0,392175 ,2,14956,13320 ,2,14989,203165 ,2,14990,203155 ,2,14991,49680 ,2,14992,45 ,2,14993,21540 ,2,14994,16670 ,2,14995,49660 ,2,14996,75 ,1,0,392405 ,2,14956,13320 ,2,14989,203255 ,2,14990,203245 ,2,14991,49765 ,2,14992,45 ,2,14993,21575 ,2,14994,16680 ,2,14995,49745 ,2,14996,75 ,1,0,392520 ,2,14956,13320 ,2,14989,203480 ,2,14990,203470 ,2,14991,49935 ,2,14992,45 ,2,14993,21605 ,2,14994,16705 ,2,14995,49915 ,2,14996,75 ,1,0,392720 ,2,14956,13320 ,2,14989,203880 ,2,14990,203870 ,2,14991,50130 ,2,14992,45 ,2,14993,21695 ,2,14994,16715 ,2,14995,50090 ,2,14996,75 ,1,0,392820 ,2,14956,13320 ,2,14989,204300 ,2,14990,204290 ,2,14991,50525 ,2,14992,45 ,2,14993,21810 ,2,14994,16725 ,2,14995,50505 ,2,14996,75 ,1,0,392970 ,2,14956,13320 ,2,14989,204105 ,2,14990,204095 ,2,14991,50600 ,2,14992,45 ,2,14993,21870 ,2,14994,16735 ,2,14995,50580 ,2,14996,75 ,1,0,393080 ,2,14956,13320 ,2,14989,204525 ,2,14990,204515 ,2,14991,50930 ,2,14992,45 ,2,14993,21975 ,2,14994,16750 ,2,14995,50910 ,2,14996,75 ,1,0,393255 ,2,14956,13320 ,2,14989,205310 ,2,14990,205270 ,2,14991,51365 ,2,14992,45 ,2,14993,21995 ,2,14994,16760 ,2,14995,51200 ,2,14996,75 ,1,0,393440 ,2,14956,13320 ,2,14989,205535 ,2,14990,205525 ,2,14991,51575 ,2,14992,45 ,2,14993,22085 ,2,14994,16770 ,2,14995,51555 ,2,14996,75 ,1,0,393585 ,2,14956,13320 ,2,14989,205465 ,2,14990,205455 ,2,14991,51655 ,2,14992,45 ,2,14993,22115 ,2,14994,16780 ,2,14995,51595 ,2,14996,75 ,1,0,393720 ,2,14956,13320 ,2,14989,205585 ,2,14990,205575 ,2,14991,51835 ,2,14992,45 ,2,14993,22185 ,2,14994,16815 ,2,14995,51800 ,2,14996,75 ,1,0,393835 ,2,14956,13320 ,2,14989,205970 ,2,14990,205960 ,2,14991,51995 ,2,14992,45 ,2,14993,22215 ,2,14994,16825 ,2,14995,51975 ,2,14996,75 ,1,0,393980 ,2,14956,206205 ,2,14989,206195 ,2,14990,206185 ,2,14991,52410 ,2,14992,45 ,2,14993,22410 ,2,14994,16835 ,2,14995,52385 ,2,14996,75 ,1,0,394130 ,2,14956,13320 ,2,14989,206640 ,2,14990,206630 ,2,14991,52880 ,2,14992,45 ,2,14993,22465 ,2,14994,16845 ,2,14995,52850 ,2,14996,75 ,1,0,394230 ,2,14956,13320 ,2,14989,206770 ,2,14990,206760 ,2,14991,53050 ,2,14992,45 ,2,14993,22520 ,2,14994,16860 ,2,14995,53005 ,2,14996,75 ,1,0,394360 ,2,14956,13320 ,2,14989,206935 ,2,14990,206925 ,2,14991,53195 ,2,14992,45 ,2,14993,22580 ,2,14994,16870 ,2,14995,53170 ,2,14996,75 ,1,0,394510 ,2,14956,13320 ,2,14989,207035 ,2,14990,207025 ,2,14991,53295 ,2,14992,45 ,2,14993,22640 ,2,14994,16880 ,2,14995,53270 ,2,14996,75 ,1,0,394625 ,2,14956,13320 ,2,14989,211555 ,2,14990,211545 ,2,14991,53375 ,2,14992,45 ,2,14993,22650 ,2,14994,16890 ,2,14995,53355 ,2,14996,75 ,1,0,394755 ,2,14956,13320 ,2,14989,208465 ,2,14990,208455 ,2,14991,53915 ,2,14992,45 ,2,14993,22945 ,2,14994,16915 ,2,14995,53870 ,2,14996,75 ,1,0,394880 ,2,14956,13320 ,2,14989,209530 ,2,14990,209520 ,2,14991,53975 ,2,14992,45 ,2,14993,22965 ,2,14994,16925 ,2,14995,53955 ,2,14996,75 ,1,0,395000 ,2,14956,13320 ,2,14989,208645 ,2,14990,208635 ,2,14991,54150 ,2,14992,45 ,2,14993,23010 ,2,14994,16935 ,2,14995,54130 ,2,14996,75 ,1,0,395115 ,2,14956,13320 ,2,14989,211720 ,2,14990,211710 ,2,14991,55925 ,2,14992,45 ,2,14993,22680 ,2,14994,16945 ,2,14995,55905 ,2,14996,75 ,1,0,395265 ,2,14956,13320 ,2,14989,211940 ,2,14990,211930 ,2,14991,56205 ,2,14992,45 ,2,14993,23565 ,2,14994,16955 ,2,14995,56185 ,2,14996,75 ,1,0,395455 ,2,14956,13320 ,2,14989,213115 ,2,14990,213105 ,2,14991,56430 ,2,14992,45 ,2,14993,23670 ,2,14994,16965 ,2,14995,56410 ,2,14996,75 ,1,0,395635 ,2,14956,13320 ,2,14989,212430 ,2,14990,212420 ,2,14991,56590 ,2,14992,45 ,2,14993,23725 ,2,14994,16975 ,2,14995,56545 ,2,14996,75 ,1,0,395805 ,2,14956,13320 ,2,14989,213655 ,2,14990,213645 ,2,14991,57355 ,2,14992,45 ,2,14993,23865 ,2,14994,16985 ,2,14995,57315 ,2,14996,75 ,1,0,396040 ,2,14956,13320 ,2,14989,213825 ,2,14990,213815 ,2,14991,57505 ,2,14992,45 ,2,14993,23895 ,2,14994,17020 ,2,14995,57465 ,2,14996,75 ,1,0,396280 ,2,14956,13320 ,2,14989,214030 ,2,14990,213995 ,2,14991,57730 ,2,14992,45 ,2,14993,23975 ,2,14994,17030 ,2,14995,57695 ,2,14996,75 ,1,0,396475 ,2,14956,13320 ,2,14989,214060 ,2,14990,214050 ,2,14991,57810 ,2,14992,45 ,2,14993,23985 ,2,14994,17040 ,2,14995,57760 ,2,14996,75 ,1,0,396645 ,2,14956,13320 ,2,14989,214870 ,2,14990,214860 ,2,14991,57860 ,2,14992,45 ,2,14993,24005 ,2,14994,17050 ,2,14995,57840 ,2,14996,75 ,1,0,396825 ,2,14956,13320 ,2,14989,214100 ,2,14990,214305 ,2,14991,57930 ,2,14992,45 ,2,14993,24065 ,2,14994,17060 ,2,14995,57910 ,2,14996,75 ,1,0,397045 ,2,14956,13320 ,2,14989,214440 ,2,14990,214430 ,2,14991,58190 ,2,14992,45 ,2,14993,24170 ,2,14994,17070 ,2,14995,58170 ,2,14996,75 ,1,0,397225 ,2,14956,13320 ,2,14989,267780 ,2,14990,267770 ,2,14991,58760 ,2,14992,45 ,2,14993,24310 ,2,14994,17080 ,2,14995,58700 ,2,14996,75 ,1,0,397430 ,2,14956,13320 ,2,14989,267225 ,2,14990,267215 ,2,14991,96565 ,2,14992,45 ,2,14993,24550 ,2,14994,17090 ,2,14995,59375 ,2,14996,75 ,1,0,397625 ,2,14956,13320 ,2,14989,216635 ,2,14990,216625 ,2,14991,59760 ,2,14992,45 ,2,14993,24680 ,2,14994,17125 ,2,14995,59740 ,2,14996,75 ,1,0,397805 ,2,14956,13320 ,2,14989,265520 ,2,14990,265510 ,2,14991,60120 ,2,14992,45 ,2,14993,24740 ,2,14994,17135 ,2,14995,59880 ,2,14996,75 ,1,0,397985 ,2,14956,13320 ,2,14989,216975 ,2,14990,216965 ,2,14991,59950 ,2,14992,45 ,2,14993,24760 ,2,14994,17145 ,2,14995,59930 ,2,14996,75 ,1,0,398160 ,2,14956,13320 ,2,14989,217750 ,2,14990,217740 ,2,14991,60180 ,2,14992,45 ,2,14993,24875 ,2,14994,17155 ,2,14995,60160 ,2,14996,75 ,1,0,398360 ,2,14956,13320 ,2,14989,217100 ,2,14990,217090 ,2,14991,60240 ,2,14992,45 ,2,14993,24900 ,2,14994,17180 ,2,14995,60220 ,2,14996,75 ,1,0,398545 ,2,14956,13320 ,2,14989,217025 ,2,14990,217305 ,2,14991,60360 ,2,14992,45 ,2,14993,24930 ,2,14994,17190 ,2,14995,60340 ,2,14996,75 ,1,0,398800 ,2,14956,13320 ,2,14989,218050 ,2,14990,218040 ,2,14991,60920 ,2,14992,45 ,2,14993,25130 ,2,14994,17200 ,2,14995,60900 ,2,14996,75 ,1,0,399070 ,2,14956,13320 ,2,14989,218290 ,2,14990,218280 ,2,14991,61120 ,2,14992,45 ,2,14993,25215 ,2,14994,17210 ,2,14995,61095 ,2,14996,75 ,1,0,399285 ,2,14956,13320 ,2,14989,218720 ,2,14990,218710 ,2,14991,61705 ,2,14992,45 ,2,14993,25350 ,2,14994,17245 ,2,14995,61665 ,2,14996,75 ,1,0,399450 ,2,14956,13320 ,2,14989,218815 ,2,14990,218805 ,2,14991,61820 ,2,14992,45 ,2,14993,25380 ,2,14994,17255 ,2,14995,61800 ,2,14996,75 ,1,0,399630 ,2,14956,13320 ,2,14989,220925 ,2,14990,220875 ,2,14991,61980 ,2,14992,45 ,2,14993,25455 ,2,14994,17265 ,2,14995,61960 ,2,14996,75 ,1,0,399815 ,2,14956,13320 ,2,14989,220945 ,2,14990,220935 ,2,14991,62055 ,2,14992,45 ,2,14993,25475 ,2,14994,17275 ,2,14995,62035 ,2,14996,75 ,1,0,399990 ,2,14956,13320 ,2,14989,221375 ,2,14990,221365 ,2,14991,62250 ,2,14992,45 ,2,14993,25545 ,2,14994,17290 ,2,14995,62230 ,2,14996,75 ,1,0,400170 ,2,14956,13320 ,2,14989,221470 ,2,14990,221460 ,2,14991,62370 ,2,14992,45 ,2,14993,25575 ,2,14994,17300 ,2,14995,62350 ,2,14996,75 ,1,0,400330 ,2,14956,13320 ,2,14989,261625 ,2,14990,261615 ,2,14991,62700 ,2,14992,45 ,2,14993,25660 ,2,14994,17310 ,2,14995,62675 ,2,14996,75 ,1,0,400465 ,2,14956,13320 ,2,14989,250865 ,2,14990,250855 ,2,14991,62880 ,2,14992,45 ,2,14993,25715 ,2,14994,17320 ,2,14995,62860 ,2,14996,75 ,1,0,400645 ,2,14956,13320 ,2,14989,222310 ,2,14990,222300 ,2,14991,62920 ,2,14992,45 ,2,14993,25770 ,2,14994,17345 ,2,14995,62900 ,2,14996,75 ,1,0,400845 ,2,14956,13320 ,2,14989,222645 ,2,14990,222635 ,2,14991,63105 ,2,14992,45 ,2,14993,25820 ,2,14994,17355 ,2,14995,63085 ,2,14996,75 ,1,0,400975 ,2,14956,13320 ,2,14989,223685 ,2,14990,223675 ,2,14991,63275 ,2,14992,45 ,2,14993,25895 ,2,14994,17365 ,2,14995,63255 ,2,14996,75 ,1,0,401160 ,2,14956,13320 ,2,14989,223020 ,2,14990,223010 ,2,14991,63375 ,2,14992,45 ,2,14993,25975 ,2,14994,17375 ,2,14995,63355 ,2,14996,75 ,1,0,401355 ,2,14956,13320 ,2,14989,222795 ,2,14990,222785 ,2,14991,63455 ,2,14992,45 ,2,14993,26015 ,2,14994,17385 ,2,14995,63430 ,2,14996,75 ,1,0,401560 ,2,14956,13320 ,2,14989,222970 ,2,14990,222960 ,2,14991,63575 ,2,14992,45 ,2,14993,26035 ,2,14994,17395 ,2,14995,63555 ,2,14996,75 ,1,0,401750 ,2,14956,13320 ,2,14989,223795 ,2,14990,223785 ,2,14991,64180 ,2,14992,45 ,2,14993,26215 ,2,14994,17405 ,2,14995,64160 ,2,14996,75 ,1,0,401890 ,2,14956,13320 ,2,14989,223900 ,2,14990,223890 ,2,14991,64235 ,2,14992,45 ,2,14993,26275 ,2,14994,17415 ,2,14995,64215 ,2,14996,75 ,1,0,402000 ,2,14956,13320 ,2,14989,223980 ,2,14990,223970 ,2,14991,64335 ,2,14992,45 ,2,14993,26315 ,2,14994,17445 ,2,14995,64315 ,2,14996,75 ,1,0,402140 ,2,14956,13320 ,2,14989,224625 ,2,14990,224615 ,2,14991,64595 ,2,14992,45 ,2,14993,26425 ,2,14994,17455 ,2,14995,64535 ,2,14996,75 ,1,0,402265 ,2,14956,13320 ,2,14989,224180 ,2,14990,224170 ,2,14991,64650 ,2,14992,45 ,2,14993,26455 ,2,14994,17465 ,2,14995,64625 ,2,14996,75 ,1,0,402390 ,2,14956,13320 ,2,14989,224470 ,2,14990,224460 ,2,14991,64855 ,2,14992,45 ,2,14993,26535 ,2,14994,17475 ,2,14995,64835 ,2,14996,75 ,1,0,402520 ,2,14956,13320 ,2,14989,224295 ,2,14990,224285 ,2,14991,64930 ,2,14992,45 ,2,14993,26565 ,2,14994,17490 ,2,14995,64885 ,2,14996,75 ,1,0,402675 ,2,14956,13320 ,2,14989,226005 ,2,14990,225995 ,2,14991,65420 ,2,14992,45 ,2,14993,26735 ,2,14994,17500 ,2,14995,65400 ,2,14996,75 ,1,0,402810 ,2,14956,13320 ,2,14989,225290 ,2,14990,225270 ,2,14991,65505 ,2,14992,45 ,2,14993,26780 ,2,14994,17510 ,2,14995,65475 ,2,14996,75 ,1,0,402920 ,2,14956,13320 ,2,14989,226320 ,2,14990,226310 ,2,14991,66375 ,2,14992,45 ,2,14993,27055 ,2,14994,17520 ,2,14995,66340 ,2,14996,75 ,1,0,403070 ,2,14956,13320 ,2,14989,226355 ,2,14990,226330 ,2,14991,66635 ,2,14992,45 ,2,14993,27120 ,2,14994,17545 ,2,14995,66605 ,2,14996,75 ,1,0,403205 ,2,14956,13320 ,2,14989,226590 ,2,14990,226580 ,2,14991,66740 ,2,14992,45 ,2,14993,27140 ,2,14994,17555 ,2,14995,66720 ,2,14996,75 ,1,0,403330 ,2,14956,13320 ,2,14989,230710 ,2,14990,230700 ,2,14991,66800 ,2,14992,45 ,2,14993,27165 ,2,14994,17565 ,2,14995,66760 ,2,14996,75 ,1,0,403525 ,2,14956,13320 ,2,14989,230200 ,2,14990,230190 ,2,14991,67035 ,2,14992,45 ,2,14993,27270 ,2,14994,17575 ,2,14995,67015 ,2,14996,75 ,1,0,403740 ,2,14956,13320 ,2,14989,227310 ,2,14990,227295 ,2,14991,67070 ,2,14992,45 ,2,14993,27350 ,2,14994,17590 ,2,14995,67050 ,2,14996,75 ,1,0,403920 ,2,14956,13320 ,2,14989,228860 ,2,14990,228850 ,2,14991,67360 ,2,14992,45 ,2,14993,27410 ,2,14994,17600 ,2,14995,67335 ,2,14996,75 ,1,0,404105 ,2,14956,13320 ,2,14989,227715 ,2,14990,227705 ,2,14991,67545 ,2,14992,45 ,2,14993,27490 ,2,14994,17610 ,2,14995,67525 ,2,14996,75 ,1,0,404320 ,2,14956,13320 ,2,14989,227925 ,2,14990,227915 ,2,14991,67690 ,2,14992,45 ,2,14993,27565 ,2,14994,17620 ,2,14995,67670 ,2,14996,75 ,1,0,404500 ,2,14956,13320 ,2,14989,228550 ,2,14990,228520 ,2,14991,67885 ,2,14992,45 ,2,14993,27625 ,2,14994,17640 ,2,14995,67855 ,2,14996,75 ,1,0,404675 ,2,14956,13320 ,2,14989,228490 ,2,14990,228475 ,2,14991,68045 ,2,14992,45 ,2,14993,27715 ,2,14994,17650 ,2,14995,68015 ,2,14996,75 ,1,0,404905 ,2,14956,13320 ,2,14989,229545 ,2,14990,229535 ,2,14991,68810 ,2,14992,45 ,2,14993,28010 ,2,14994,17660 ,2,14995,68780 ,2,14996,75 ,1,0,405085 ,2,14956,13320 ,2,14989,229905 ,2,14990,229875 ,2,14991,69025 ,2,14992,45 ,2,14993,28075 ,2,14994,17670 ,2,14995,69005 ,2,14996,75 ,1,0,405290 ,2,14956,13320 ,2,14989,230600 ,2,14990,230590 ,2,14991,69490 ,2,14992,45 ,2,14993,28235 ,2,14994,17685 ,2,14995,69450 ,2,14996,75 ,1,0,405480 ,2,14956,13320 ,2,14989,231150 ,2,14990,231140 ,2,14991,69730 ,2,14992,45 ,2,14993,28290 ,2,14994,17695 ,2,14995,69710 ,2,14996,75 ,1,0,405640 ,2,14956,13320 ,2,14989,248815 ,2,14990,248805 ,2,14991,69960 ,2,14992,45 ,2,14993,28300 ,2,14994,17705 ,2,14995,69760 ,2,14996,75 ,1,0,405865 ,2,14956,13320 ,2,14989,248640 ,2,14990,248620 ,2,14991,70140 ,2,14992,45 ,2,14993,28395 ,2,14994,17715 ,2,14995,70065 ,2,14996,75 ,1,0,406010 ,2,14956,13320 ,2,14989,248095 ,2,14990,248085 ,2,14991,70215 ,2,14992,45 ,2,14993,28460 ,2,14994,17775 ,2,14995,70190 ,2,14996,75 ,1,0,406190 ,2,14956,13320 ,2,14989,231860 ,2,14990,231850 ,2,14991,70285 ,2,14992,45 ,2,14993,28500 ,2,14994,17785 ,2,14995,70265 ,2,14996,75 ,1,0,406380 ,2,14956,13320 ,2,14989,247680 ,2,14990,247670 ,2,14991,70525 ,2,14992,45 ,2,14993,28595 ,2,14994,17795 ,2,14995,70490 ,2,14996,75 ,1,0,406595 ,2,14956,13320 ,2,14989,239590 ,2,14990,239580 ,2,14991,71020 ,2,14992,45 ,2,14993,28695 ,2,14994,17805 ,2,14995,70675 ,2,14996,75 ,1,0,406770 ,2,14956,13320 ,2,14989,232080 ,2,14990,232070 ,2,14991,70890 ,2,14992,45 ,2,14993,28725 ,2,14994,17815 ,2,14995,70870 ,2,14996,75 ,1,0,406980 ,2,14956,13320 ,2,14989,239055 ,2,14990,239045 ,2,14991,71145 ,2,14992,45 ,2,14993,28825 ,2,14994,17825 ,2,14995,71125 ,2,14996,75 ,1,0,407145 ,2,14956,13320 ,2,14989,232525 ,2,14990,232515 ,2,14991,71290 ,2,14992,45 ,2,14993,28920 ,2,14994,17835 ,2,14995,71270 ,2,14996,75 ,1,0,407325 ,2,14956,13320 ,2,14989,232550 ,2,14990,232540 ,2,14991,71440 ,2,14992,45 ,2,14993,28980 ,2,14994,17845 ,2,14995,71390 ,2,14996,75 ,1,0,407500 ,2,14956,13320 ,2,14989,232710 ,2,14990,232700 ,2,14991,71645 ,2,14992,45 ,2,14993,29030 ,2,14994,17870 ,2,14995,71580 ,2,14996,75 ,1,0,407720 ,2,14956,13320 ,2,14989,232930 ,2,14990,232920 ,2,14991,71870 ,2,14992,45 ,2,14993,29095 ,2,14994,17880 ,2,14995,71815 ,2,14996,75 ,1,0,407915 ,2,14956,13320 ,2,14989,233045 ,2,14990,233035 ,2,14991,72055 ,2,14992,45 ,2,14993,29140 ,2,14994,17890 ,2,14995,72020 ,2,14996,75 ,1,0,408100 ,2,14956,13320 ,2,14989,233475 ,2,14990,233465 ,2,14991,72485 ,2,14992,45 ,2,14993,29215 ,2,14994,17900 ,2,14995,72175 ,2,14996,75 ,1,0,408295 ,2,14956,13320 ,2,14989,238850 ,2,14990,238840 ,2,14991,72555 ,2,14992,45 ,2,14993,29335 ,2,14994,17915 ,2,14995,72515 ,2,14996,75 ,1,0,408500 ,2,14956,13320 ,2,14989,238300 ,2,14990,238290 ,2,14991,72655 ,2,14992,45 ,2,14993,29390 ,2,14994,17925 ,2,14995,72625 ,2,14996,75 ,1,0,408635 ,2,14956,13320 ,2,14989,238160 ,2,14990,238150 ,2,14991,72725 ,2,14992,45 ,2,14993,29460 ,2,14994,17935 ,2,14995,72705 ,2,14996,75 ,1,0,408755 ,2,14956,13320 ,2,14989,233785 ,2,14990,233775 ,2,14991,72900 ,2,14992,45 ,2,14993,29560 ,2,14994,17945 ,2,14995,72880 ,2,14996,75 ,1,0,408890 ,2,14956,13320 ,2,14989,237210 ,2,14990,237200 ,2,14991,73310 ,2,14992,45 ,2,14993,29615 ,2,14994,17980 ,2,14995,73245 ,2,14996,75 ,1,0,409015 ,2,14956,13320 ,2,14989,235035 ,2,14990,235025 ,2,14991,73480 ,2,14992,45 ,2,14993,29700 ,2,14994,17990 ,2,14995,73460 ,2,14996,75 ,1,0,409150 ,2,14956,13320 ,2,14989,235395 ,2,14990,235385 ,2,14991,73755 ,2,14992,45 ,2,14993,29820 ,2,14994,18000 ,2,14995,73735 ,2,14996,75 ,1,0,409285 ,2,14956,13320 ,2,14989,235455 ,2,14990,235445 ,2,14991,73820 ,2,14992,45 ,2,14993,29830 ,2,14994,18010 ,2,14995,73800 ,2,14996,75 ,1,0,409430 ,2,14956,13320 ,2,14989,237090 ,2,14990,237060 ,2,14991,74880 ,2,14992,45 ,2,14993,29850 ,2,14994,18025 ,2,14995,73880 ,2,14996,75 ,1,0,409565 ,2,14956,13320 ,2,14989,235585 ,2,14990,235575 ,2,14991,73980 ,2,14992,45 ,2,14993,29900 ,2,14994,18035 ,2,14995,73960 ,2,14996,75 ,1,0,409690 ,2,14956,13320 ,2,14989,235645 ,2,14990,235635 ,2,14991,74055 ,2,14992,45 ,2,14993,29930 ,2,14994,18045 ,2,14995,74035 ,2,14996,75 ,1,0,409825 ,2,14956,13320 ,2,14989,235930 ,2,14990,235920 ,2,14991,74355 ,2,14992,45 ,2,14993,29990 ,2,14994,18055 ,2,14995,74175 ,2,14996,75 ,1,0,409925 ,2,14956,13320 ,2,14989,235760 ,2,14990,235750 ,2,14991,74280 ,2,14992,45 ,2,14993,30020 ,2,14994,18110 ,2,14995,74245 ,2,14996,75 ,1,0,410060 ,2,14956,13320 ,2,14989,236695 ,2,14990,236685 ,2,14991,74520 ,2,14992,45 ,2,14993,30130 ,2,14994,18120 ,2,14995,74490 ,2,14996,75 ,1,0,410210 ,2,14956,13320 ,2,14989,239215 ,2,14990,239205 ,2,14991,76735 ,2,14992,45 ,2,14993,30800 ,2,14994,18130 ,2,14995,76715 ,2,14996,75 ,1,0,410325 ,2,14956,13320 ,2,14989,239530 ,2,14990,239520 ,2,14991,76855 ,2,14992,45 ,2,14993,30865 ,2,14994,18140 ,2,14995,76835 ,2,14996,75 ,1,0,410475 ,2,14956,13320 ,2,14989,241740 ,2,14990,241730 ,2,14991,77140 ,2,14992,45 ,2,14993,30895 ,2,14994,18150 ,2,14995,77120 ,2,14996,75 ,1,0,410620 ,2,14956,13320 ,2,14989,239680 ,2,14990,239965 ,2,14991,77270 ,2,14992,45 ,2,14993,30990 ,2,14994,18160 ,2,14995,77250 ,2,14996,75 ,1,0,410740 ,2,14956,13320 ,2,14989,240170 ,2,14990,240160 ,2,14991,77520 ,2,14992,45 ,2,14993,31085 ,2,14994,18170 ,2,14995,77480 ,2,14996,75 ,1,0,410870 ,2,14956,13320 ,2,14989,240305 ,2,14990,240295 ,2,14991,77660 ,2,14992,45 ,2,14993,31135 ,2,14994,18180 ,2,14995,77640 ,2,14996,75 ,1,0,410995 ,2,14956,13320 ,2,14989,240350 ,2,14990,240325 ,2,14991,77725 ,2,14992,45 ,2,14993,31180 ,2,14994,18205 ,2,14995,77695 ,2,14996,75 ,1,0,411105 ,2,14956,13320 ,2,14989,240440 ,2,14990,240425 ,2,14991,77795 ,2,14992,45 ,2,14993,31200 ,2,14994,18215 ,2,14995,77775 ,2,14996,75 ,1,0,411260 ,2,14956,13320 ,2,14989,240860 ,2,14990,240850 ,2,14991,77950 ,2,14992,45 ,2,14993,31230 ,2,14994,18225 ,2,14995,77885 ,2,14996,75 ,1,0,411390 ,2,14956,13320 ,2,14989,241090 ,2,14990,241080 ,2,14991,78365 ,2,14992,45 ,2,14993,31395 ,2,14994,18235 ,2,14995,78315 ,2,14996,75 ,1,0,411535 ,2,14956,13320 ,2,14989,241930 ,2,14990,241920 ,2,14991,78730 ,2,14992,45 ,2,14993,31455 ,2,14994,18250 ,2,14995,78675 ,2,14996,75 ,1,0,411690 ,2,14956,13320 ,2,14989,242585 ,2,14990,242575 ,2,14991,78960 ,2,14992,45 ,2,14993,31555 ,2,14994,18260 ,2,14995,78940 ,2,14996,75 ,1,0,411790 ,2,14956,13320 ,2,14989,246675 ,2,14990,246660 ,2,14991,79065 ,2,14992,45 ,2,14993,31585 ,2,14994,18270 ,2,14995,79045 ,2,14996,75 ,1,0,411955 ,2,14956,13320 ,2,14989,242685 ,2,14990,242675 ,2,14991,79190 ,2,14992,45 ,2,14993,31635 ,2,14994,18280 ,2,14995,79170 ,2,14996,75 ,1,0,412215 ,2,14956,13320 ,2,14989,242710 ,2,14990,242700 ,2,14991,79260 ,2,14992,45 ,2,14993,31665 ,2,14994,18315 ,2,14995,79240 ,2,14996,75 ,1,0,412380 ,2,14956,13320 ,2,14989,242765 ,2,14990,242755 ,2,14991,79315 ,2,14992,45 ,2,14993,31685 ,2,14994,18325 ,2,14995,79295 ,2,14996,75 ,1,0,412570 ,2,14956,13320 ,2,14989,243520 ,2,14990,243480 ,2,14991,79405 ,2,14992,45 ,2,14993,31720 ,2,14994,18335 ,2,14995,79370 ,2,14996,75 ,1,0,412820 ,2,14956,13320 ,2,14989,242870 ,2,14990,242900 ,2,14991,79475 ,2,14992,45 ,2,14993,31750 ,2,14994,18345 ,2,14995,79455 ,2,14996,75 ,1,0,412995 ,2,14956,13320 ,2,14989,243570 ,2,14990,243560 ,2,14991,79875 ,2,14992,45 ,2,14993,31860 ,2,14994,18370 ,2,14995,79855 ,2,14996,75 ,1,0,413190 ,2,14956,13320 ,2,14989,243630 ,2,14990,243590 ,2,14991,79990 ,2,14992,45 ,2,14993,31930 ,2,14994,18380 ,2,14995,79970 ,2,14996,75 ,1,0,413380 ,2,14956,13320 ,2,14989,243660 ,2,14990,243650 ,2,14991,80075 ,2,14992,45 ,2,14993,31950 ,2,14994,18390 ,2,14995,80040 ,2,14996,75 ,1,0,413585 ,2,14956,13320 ,2,14989,243715 ,2,14990,243705 ,2,14991,80140 ,2,14992,45 ,2,14993,31975 ,2,14994,18400 ,2,14995,80120 ,2,14996,75 ,1,0,413760 ,2,14956,13320 ,2,14989,243805 ,2,14990,243790 ,2,14991,80215 ,2,14992,45 ,2,14993,32025 ,2,14994,18435 ,2,14995,80195 ,2,14996,75 ,1,0,413935 ,2,14956,13320 ,2,14989,243950 ,2,14990,243940 ,2,14991,80350 ,2,14992,45 ,2,14993,32055 ,2,14994,18445 ,2,14995,80330 ,2,14996,75 ,1,0,414060 ,2,14956,13320 ,2,14989,243990 ,2,14990,243980 ,2,14991,80430 ,2,14992,45 ,2,14993,32075 ,2,14994,18455 ,2,14995,80405 ,2,14996,75 ,1,0,414380 ,2,14956,13320 ,2,14989,244025 ,2,14990,244015 ,2,14991,80520 ,2,14992,45 ,2,14993,32095 ,2,14994,18465 ,2,14995,80500 ,2,14996,75 ,1,0,414775 ,2,14956,13320 ,2,14989,244075 ,2,14990,244045 ,2,14991,80580 ,2,14992,45 ,2,14993,32120 ,2,14994,18480 ,2,14995,80560 ,2,14996,75 ,1,0,415105 ,2,14956,13320 ,2,14989,244230 ,2,14990,244220 ,2,14991,80680 ,2,14992,45 ,2,14993,32140 ,2,14994,18490 ,2,14995,80660 ,2,14996,75 ,1,0,415425 ,2,14956,13320 ,2,14989,244285 ,2,14990,244250 ,2,14991,80775 ,2,14992,45 ,2,14993,32160 ,2,14994,18500 ,2,14995,80740 ,2,14996,75 ,1,0,415785 ,2,14956,13320 ,2,14989,244315 ,2,14990,244305 ,2,14991,80855 ,2,14992,45 ,2,14993,32180 ,2,14994,18510 ,2,14995,80805 ,2,14996,75 ,1,0,416180 ,2,14956,13320 ,2,14989,244390 ,2,14990,244380 ,2,14991,80965 ,2,14992,45 ,2,14993,32215 ,2,14994,18540 ,2,14995,80915 ,2,14996,75 ,1,0,416540 ,2,14956,13320 ,2,14989,244430 ,2,14990,244420 ,2,14991,81025 ,2,14992,45 ,2,14993,32235 ,2,14994,18550 ,2,14995,81005 ,2,14996,75 ,1,0,416850 ,2,14956,13320 ,2,14989,244480 ,2,14990,244470 ,2,14991,81125 ,2,14992,45 ,2,14993,32270 ,2,14994,18560 ,2,14995,81105 ,2,14996,75 ,1,0,417075 ,2,14956,13320 ,2,14989,244535 ,2,14990,244525 ,2,14991,81215 ,2,14992,45 ,2,14993,32325 ,2,14994,18570 ,2,14995,81190 ,2,14996,75 ,1,0,417525 ,2,14956,13320 ,2,14989,244600 ,2,14990,244590 ,2,14991,81325 ,2,14992,45 ,2,14993,32365 ,2,14994,18580 ,2,14995,81305 ,2,14996,75 ,1,0,417830 ,2,14956,13320 ,2,14989,244640 ,2,14990,244630 ,2,14991,81415 ,2,14992,45 ,2,14993,32395 ,2,14994,18590 ,2,14995,81395 ,2,14996,75 ,1,0,418215 ,2,14956,13320 ,2,14989,244705 ,2,14990,244695 ,2,14991,81515 ,2,14992,45 ,2,14993,32435 ,2,14994,18600 ,2,14995,81495 ,2,14996,75 ,1,0,418535 ,2,14956,13320 ,2,14989,245045 ,2,14990,245035 ,2,14991,81590 ,2,14992,45 ,2,14993,32455 ,2,14994,18610 ,2,14995,81570 ,2,14996,75 ,1,0,418915 ,2,14956,13320 ,2,14989,246015 ,2,14990,245990 ,2,14991,81675 ,2,14992,45 ,2,14993,32475 ,2,14994,18640 ,2,14995,81640 ,2,14996,75 ,1,0,419130 ,2,14956,13320 ,2,14989,246320 ,2,14990,246295 ,2,14991,82045 ,2,14992,45 ,2,14993,32600 ,2,14994,18650 ,2,14995,82020 ,2,14996,75 ,1,0,419400 ,2,14956,13320 ,2,14989,246530 ,2,14990,246500 ,2,14991,82210 ,2,14992,45 ,2,14993,32645 ,2,14994,18660 ,2,14995,82170 ,2,14996,75 ,1,0,419610 ,2,14956,13320 ,2,14989,246705 ,2,14990,246795 ,2,14991,82470 ,2,14992,45 ,2,14993,32720 ,2,14994,18670 ,2,14995,82450 ,2,14996,75 ,1,0,420255 ,2,14956,13320 ,2,14989,247105 ,2,14990,247095 ,2,14991,82905 ,2,14992,45 ,2,14993,32870 ,2,14994,18680 ,2,14995,82875 ,2,14996,75 ,1,0,420645 ,2,14956,13320 ,2,14989,247480 ,2,14990,247470 ,2,14991,83145 ,2,14992,45 ,2,14993,32950 ,2,14994,18690 ,2,14995,83125 ,2,14996,75 ,1,0,421040 ,2,14956,13320 ,2,14989,248405 ,2,14990,248395 ,2,14991,83835 ,2,14992,45 ,2,14993,33125 ,2,14994,18700 ,2,14995,83785 ,2,14996,75 ,1,0,421375 ,2,14956,13320 ,2,14989,249205 ,2,14990,249175 ,2,14991,84245 ,2,14992,45 ,2,14993,33275 ,2,14994,18710 ,2,14995,84210 ,2,14996,75 ,1,0,421745 ,2,14956,13320 ,2,14989,249225 ,2,14990,249215 ,2,14991,84510 ,2,14992,45 ,2,14993,33385 ,2,14994,18750 ,2,14995,84485 ,2,14996,75 ,1,0,422025 ,2,14956,13320 ,2,14989,249280 ,2,14990,249270 ,2,14991,84585 ,2,14992,45 ,2,14993,33405 ,2,14994,18760 ,2,14995,84565 ,2,14996,75 ,1,0,422315 ,2,14956,13320 ,2,14989,249635 ,2,14990,249590 ,2,14991,84740 ,2,14992,45 ,2,14993,33435 ,2,14994,18770 ,2,14995,84720 ,2,14996,75 ,1,0,422520 ,2,14956,13320 ,2,14989,250105 ,2,14990,250095 ,2,14991,84820 ,2,14992,45 ,2,14993,33470 ,2,14994,18780 ,2,14995,84800 ,2,14996,75 ,1,0,422930 ,2,14956,13320 ,2,14989,249910 ,2,14990,249900 ,2,14991,84970 ,2,14992,45 ,2,14993,33520 ,2,14994,18790 ,2,14995,84890 ,2,14996,75 ,1,0,423310 ,2,14956,13320 ,2,14989,250295 ,2,14990,250285 ,2,14991,85330 ,2,14992,45 ,2,14993,33615 ,2,14994,18800 ,2,14995,85275 ,2,14996,75 ,1,0,423500 ,2,14956,13320 ,2,14989,250455 ,2,14990,250445 ,2,14991,85440 ,2,14992,45 ,2,14993,33625 ,2,14994,18810 ,2,14995,85420 ,2,14996,75 ,1,0,424105 ,2,14956,13320 ,2,14989,261145 ,2,14990,261135 ,2,14991,91365 ,2,14992,45 ,2,14993,33655 ,2,14994,18820 ,2,14995,85670 ,2,14996,75 ,1,0,424595 ,2,14956,13320 ,2,14989,256260 ,2,14990,256250 ,2,14991,85935 ,2,14992,45 ,2,14993,33760 ,2,14994,18840 ,2,14995,85915 ,2,14996,75 ,1,0,425140 ,2,14956,13320 ,2,14989,251770 ,2,14990,251760 ,2,14991,86035 ,2,14992,45 ,2,14993,33825 ,2,14994,18850 ,2,14995,86015 ,2,14996,75 ,1,0,425530 ,2,14956,13320 ,2,14989,252830 ,2,14990,252820 ,2,14991,86240 ,2,14992,45 ,2,14993,33835 ,2,14994,18860 ,2,14995,86130 ,2,14996,75 ,1,0,425820 ,2,14956,13320 ,2,14989,252685 ,2,14990,252655 ,2,14991,86525 ,2,14992,45 ,2,14993,33970 ,2,14994,18870 ,2,14995,86505 ,2,14996,75 ,1,0,426040 ,2,14956,13320 ,2,14989,253025 ,2,14990,253015 ,2,14991,86930 ,2,14992,45 ,2,14993,34095 ,2,14994,18895 ,2,14995,86895 ,2,14996,75 ,1,0,426450 ,2,14956,13320 ,2,14989,253125 ,2,14990,253115 ,2,14991,87030 ,2,14992,45 ,2,14993,34145 ,2,14994,18905 ,2,14995,86990 ,2,14996,75 ,1,0,426755 ,2,14956,13320 ,2,14989,253295 ,2,14990,253285 ,2,14991,87145 ,2,14992,45 ,2,14993,34155 ,2,14994,18915 ,2,14995,87085 ,2,14996,75 ,1,0,427025 ,2,14956,13320 ,2,14989,253400 ,2,14990,253390 ,2,14991,87315 ,2,14992,45 ,2,14993,34255 ,2,14994,18925 ,2,14995,87290 ,2,14996,75 ,1,0,427270 ,2,14956,13320 ,2,14989,254660 ,2,14990,254650 ,2,14991,87865 ,2,14992,45 ,2,14993,34285 ,2,14994,18975 ,2,14995,87835 ,2,14996,75 ,1,0,427515 ,2,14956,13320 ,2,14989,254805 ,2,14990,254795 ,2,14991,88135 ,2,14992,45 ,2,14993,34385 ,2,14994,18985 ,2,14995,88090 ,2,14996,75 ,1,0,428165 ,2,14956,13320 ,2,14989,254895 ,2,14990,254885 ,2,14991,88195 ,2,14992,45 ,2,14993,34405 ,2,14994,18995 ,2,14995,88175 ,2,14996,75 ,1,0,428365 ,2,14956,13320 ,2,14989,255070 ,2,14990,255060 ,2,14991,88260 ,2,14992,45 ,2,14993,34435 ,2,14994,19005 ,2,14995,88240 ,2,14996,75 ,1,0,428870 ,2,14956,13320 ,2,14989,255100 ,2,14990,255090 ,2,14991,88415 ,2,14992,45 ,2,14993,34485 ,2,14994,19015 ,2,14995,88395 ,2,14996,75 ,1,0,429130 ,2,14956,13320 ,2,14989,255170 ,2,14990,255160 ,2,14991,88485 ,2,14992,45 ,2,14993,34510 ,2,14994,19025 ,2,14995,88455 ,2,14996,75 ,1,0,429450 ,2,14956,13320 ,2,14989,255210 ,2,14990,255200 ,2,14991,88560 ,2,14992,45 ,2,14993,34530 ,2,14994,19035 ,2,14995,88515 ,2,14996,75 ,1,0,429640 ,2,14956,13320 ,2,14989,259725 ,2,14990,259715 ,2,14991,88950 ,2,14992,45 ,2,14993,34560 ,2,14994,19045 ,2,14995,88925 ,2,14996,75 ,1,0,429815 ,2,14956,13320 ,2,14989,256815 ,2,14990,256805 ,2,14991,89275 ,2,14992,45 ,2,14993,34685 ,2,14994,19075 ,2,14995,89240 ,2,14996,75 ,1,0,430065 ,2,14956,13320 ,2,14989,257280 ,2,14990,257265 ,2,14991,89500 ,2,14992,45 ,2,14993,34760 ,2,14994,19085 ,2,14995,89450 ,2,14996,75 ,1,0,430345 ,2,14956,13320 ,2,14989,258665 ,2,14990,258655 ,2,14991,89690 ,2,14992,45 ,2,14993,34795 ,2,14994,19095 ,2,14995,89650 ,2,14996,75 ,1,0,430535 ,2,14956,13320 ,2,14989,258085 ,2,14990,258060 ,2,14991,89950 ,2,14992,45 ,2,14993,34920 ,2,14994,19105 ,2,14995,89930 ,2,14996,75 ,1,0,430720 ,2,14956,13320 ,2,14989,259755 ,2,14990,259745 ,2,14991,91045 ,2,14992,45 ,2,14993,35280 ,2,14994,19115 ,2,14995,91025 ,2,14996,75 ,1,0,430995 ,2,14956,13320 ,2,14989,260960 ,2,14990,260950 ,2,14991,91635 ,2,14992,45 ,2,14993,35465 ,2,14994,19125 ,2,14995,91605 ,2,14996,75 ,1,0,431255 ,2,14956,13320 ,2,14989,261000 ,2,14990,260980 ,2,14991,91690 ,2,14992,45 ,2,14993,35475 ,2,14994,19135 ,2,14995,91670 ,2,14996,75 ,1,0,431550 ,2,14956,13320 ,2,14989,261440 ,2,14990,261430 ,2,14991,91840 ,2,14992,45 ,2,14993,35505 ,2,14994,19145 ,2,14995,91790 ,2,14996,75 ,1,0,431725 ,2,14956,13320 ,2,14989,263750 ,2,14990,263740 ,2,14991,92220 ,2,14992,45 ,2,14993,35610 ,2,14994,19175 ,2,14995,92195 ,2,14996,75 ,1,0,432330 ,2,14956,13320 ,2,14989,263950 ,2,14990,263930 ,2,14991,93580 ,2,14992,45 ,2,14993,36060 ,2,14994,19185 ,2,14995,93560 ,2,14996,75 ,1,0,432925 ,2,14956,13320 ,2,14989,264770 ,2,14990,264760 ,2,14991,94855 ,2,14992,45 ,2,14993,36645 ,2,14994,19195 ,2,14995,94835 ,2,14996,75 ,1,0,433280 ,2,14956,13320 ,2,14989,264920 ,2,14990,264910 ,2,14991,94970 ,2,14992,45 ,2,14993,36655 ,2,14994,19205 ,2,14995,94950 ,2,14996,75 ,1,0,433575 ,2,14956,13320 ,2,14989,265015 ,2,14990,265005 ,2,14991,95075 ,2,14992,45 ,2,14993,36715 ,2,14994,19220 ,2,14995,95055 ,2,14996,75 ,1,0,433785 ,2,14956,13320 ,2,14989,265400 ,2,14990,265360 ,2,14991,95385 ,2,14992,45 ,2,14993,36845 ,2,14994,19230 ,2,14995,95360 ,2,14996,75 ,1,0,434095 ,2,14956,13320 ,2,14989,265615 ,2,14990,265585 ,2,14991,95495 ,2,14992,45 ,2,14993,36855 ,2,14994,19240 ,2,14995,95475 ,2,14996,75 ,1,0,434310 ,2,14956,13320 ,2,14989,265645 ,2,14990,265635 ,2,14991,95610 ,2,14992,45 ,2,14993,36865 ,2,14994,19250 ,2,14995,95590 ,2,14996,75 ,1,0,434730 ,2,14956,13320 ,2,14989,266360 ,2,14990,266350 ,2,14991,95890 ,2,14992,45 ,2,14993,36895 ,2,14994,19290 ,2,14995,95870 ,2,14996,75 ,1,0,435000 ,2,14956,13320 ,2,14989,266680 ,2,14990,266670 ,2,14991,96360 ,2,14992,45 ,2,14993,37140 ,2,14994,19300 ,2,14995,96335 ,2,14996,75 ,1,0,435290 ,2,14956,13320 ,2,14989,268040 ,2,14990,268030 ,2,14991,97645 ,2,14992,45 ,2,14993,37515 ,2,14994,19310 ,2,14995,97625 ,2,14996,75 ,1,0,435560 ,2,14956,13320 ,2,14989,268870 ,2,14990,268845 ,2,14991,98155 ,2,14992,45 ,2,14993,37595 ,2,14994,19320 ,2,14995,98065 ,2,14996,75 ,1,0,435830 ,2,14956,269895 ,2,14989,269875 ,2,14990,269865 ,2,14991,98620 ,2,14992,45 ,2,14993,37665 ,2,14994,19330 ,2,14995,98520 ,2,14996,75 ,1,0,436150 ,2,14956,269775 ,2,14989,269765 ,2,14990,269755 ,2,14991,98850 ,2,14992,45 ,2,14993,37815 ,2,14994,19340 ,2,14995,98825 ,2,14996,75 ,1,0,436425 ,2,14956,13320 ,2,14989,269940 ,2,14990,269925 ,2,14991,99005 ,2,14992,45 ,2,14993,37860 ,2,14994,19350 ,2,14995,98960 ,2,14996,75 ,1,0,436700 ,2,14956,13320 ,2,14989,270590 ,2,14990,270580 ,2,14991,99425 ,2,14992,45 ,2,14993,37905 ,2,14994,19360 ,2,14995,99175 ,2,14996,75 ,1,0,436920 ,2,14956,13320 ,2,14989,270165 ,2,14990,270155 ,2,14991,99245 ,2,14992,45 ,2,14993,37925 ,2,14994,19395 ,2,14995,99225 ,2,14996,75 ,1,0,437235 ,2,14956,13320 ,2,14989,270350 ,2,14990,270340 ,2,14991,99560 ,2,14992,45 ,2,14993,38030 ,2,14994,19405 ,2,14995,99495 ,2,14996,75 ,1,0,437490 ,2,14956,13320 ,2,14989,270380 ,2,14990,270370 ,2,14991,99620 ,2,14992,45 ,2,14993,38070 ,2,14994,19415 ,2,14995,99600 ,2,14996,75 ,1,0,437745 ,2,14956,13320 ,2,14989,272455 ,2,14990,272445 ,2,14991,99820 ,2,14992,45 ,2,14993,38100 ,2,14994,19425 ,2,14995,99790 ,2,14996,75 ,1,0,438050 ,2,14956,13320 ,2,14989,276635 ,2,14990,276625 ,2,14991,99945 ,2,14992,45 ,2,14993,38130 ,2,14994,19440 ,2,14995,99905 ,2,14996,75 ,1,0,438275 ,2,14956,13320 ,2,14989,277175 ,2,14990,277165 ,2,14991,100260 ,2,14992,45 ,2,14993,38225 ,2,14994,19450 ,2,14995,100200 ,2,14996,75 ,1,0,438800 ,2,14956,13320 ,2,14989,276850 ,2,14990,276840 ,2,14991,100385 ,2,14992,45 ,2,14993,38330 ,2,14994,19460 ,2,14995,100365 ,2,14996,75 ,1,0,439150 ,2,14956,13320 ,2,14989,276935 ,2,14990,276925 ,2,14991,100490 ,2,14992,45 ,2,14993,38350 ,2,14994,19470 ,2,14995,100470 ,2,14996,75 ,1,0,439495 ,2,14956,13320 ,2,14989,277565 ,2,14990,277555 ,2,14991,100955 ,2,14992,45 ,2,14993,38440 ,2,14994,19510 ,2,14995,100730 ,2,14996,75 ,1,0,439900 ,2,14956,13320 ,2,14989,277340 ,2,14990,277330 ,2,14991,100815 ,2,14992,45 ,2,14993,38460 ,2,14994,19520 ,2,14995,100790 ,2,14996,75 ,1,0,440265 ,2,14956,290330 ,2,14989,290320 ,2,14990,290310 ,2,14991,101035 ,2,14992,45 ,2,14993,38535 ,2,14994,19530 ,2,14995,101015 ,2,14996,75 ,1,0,440615 ,2,14956,290105 ,2,14989,290095 ,2,14990,290085 ,2,14991,101205 ,2,14992,45 ,2,14993,38625 ,2,14994,19540 ,2,14995,101160 ,2,14996,75 ,1,0,440950 ,2,14956,278200 ,2,14989,278175 ,2,14990,278165 ,2,14991,101335 ,2,14992,45 ,2,14993,38655 ,2,14994,19550 ,2,14995,101240 ,2,14996,75 ,1,0,441355 ,2,14956,278310 ,2,14989,278300 ,2,14990,278280 ,2,14991,101550 ,2,14992,45 ,2,14993,38765 ,2,14994,19560 ,2,14995,101515 ,2,14996,75 ,1,0,441730 ,2,14956,278350 ,2,14989,278250 ,2,14990,278340 ,2,14991,101610 ,2,14992,45 ,2,14993,38775 ,2,14994,19570 ,2,14995,101590 ,2,14996,75 ,1,0,442120 ,2,14956,278505 ,2,14989,278465 ,2,14990,278495 ,2,14991,101710 ,2,14992,45 ,2,14993,38795 ,2,14994,19580 ,2,14995,101690 ,2,14996,75 ,1,0,442370 ,2,14956,278920 ,2,14989,278590 ,2,14990,278910 ,2,14991,101955 ,2,14992,45 ,2,14993,38845 ,2,14994,19605 ,2,14995,101925 ,2,14996,75 ,1,0,442630 ,2,14956,279085 ,2,14989,279055 ,2,14990,279065 ,2,14991,102185 ,2,14992,45 ,2,14993,38885 ,2,14994,19615 ,2,14995,102165 ,2,14996,75 ,1,0,442830 ,2,14956,279285 ,2,14989,279255 ,2,14990,279245 ,2,14991,102280 ,2,14992,45 ,2,14993,38930 ,2,14994,19625 ,2,14995,102260 ,2,14996,75 ,1,0,443090 ,2,14956,279330 ,2,14989,279305 ,2,14990,279315 ,2,14991,102340 ,2,14992,45 ,2,14993,38950 ,2,14994,19635 ,2,14995,102310 ,2,14996,75 ,1,0,443475 ,2,14956,279450 ,2,14989,279425 ,2,14990,279440 ,2,14991,102405 ,2,14992,45 ,2,14993,38970 ,2,14994,19645 ,2,14995,102385 ,2,14996,75 ,1,0,443790 ,2,14956,279510 ,2,14989,279470 ,2,14990,279500 ,2,14991,102505 ,2,14992,45 ,2,14993,38990 ,2,14994,19655 ,2,14995,102485 ,2,14996,75 ,1,0,444010 ,2,14956,280815 ,2,14989,280805 ,2,14990,280795 ,2,14991,103110 ,2,14992,45 ,2,14993,39105 ,2,14994,19665 ,2,14995,103090 ,2,14996,75 ,1,0,444215 ,2,14956,280925 ,2,14989,280915 ,2,14990,280905 ,2,14991,103200 ,2,14992,45 ,2,14993,39115 ,2,14994,19675 ,2,14995,103150 ,2,14996,75 ,1,0,444600 ,2,14956,281015 ,2,14989,281005 ,2,14990,280995 ,2,14991,103325 ,2,14992,45 ,2,14993,39170 ,2,14994,19700 ,2,14995,103305 ,2,14996,75 ,1,0,444900 ,2,14956,281105 ,2,14989,281095 ,2,14990,281080 ,2,14991,103415 ,2,14992,45 ,2,14993,39205 ,2,14994,19710 ,2,14995,103365 ,2,14996,75 ,1,0,445240 ,2,14956,281610 ,2,14989,281600 ,2,14990,281590 ,2,14991,103500 ,2,14992,45 ,2,14993,39215 ,2,14994,19720 ,2,14995,103445 ,2,14996,75 ,1,0,445350 ,2,14956,281770 ,2,14989,281760 ,2,14990,281750 ,2,14991,103655 ,2,14992,45 ,2,14993,39285 ,2,14994,19730 ,2,14995,103635 ,2,14996,75 ,1,0,445580 ,2,14956,281800 ,2,14989,281740 ,2,14990,281790 ,2,14991,103740 ,2,14992,45 ,2,14993,39295 ,2,14994,19740 ,2,14995,103675 ,2,14996,75 ,1,0,445950 ,2,14956,281875 ,2,14989,281855 ,2,14990,281865 ,2,14991,103805 ,2,14992,45 ,2,14993,39320 ,2,14994,19750 ,2,14995,103785 ,2,14996,75 ,1,0,446340 ,2,14956,281960 ,2,14989,281895 ,2,14990,281905 ,2,14991,103910 ,2,14992,45 ,2,14993,39340 ,2,14994,19760 ,2,14995,103885 ,2,14996,75 ,1,0,446720 ,2,14956,282025 ,2,14989,282015 ,2,14990,282005 ,2,14991,104035 ,2,14992,45 ,2,14993,39390 ,2,14994,19770 ,2,14995,104015 ,2,14996,75 ,1,0,446935 ,2,14956,282075 ,2,14989,281990 ,2,14990,282065 ,2,14991,104085 ,2,14992,45 ,2,14993,39400 ,2,14994,19805 ,2,14995,104055 ,2,14996,75 ,1,0,447225 ,2,14956,282120 ,2,14989,282110 ,2,14990,282095 ,2,14991,104190 ,2,14992,45 ,2,14993,39425 ,2,14994,19815 ,2,14995,104140 ,2,14996,75 ,1,0,447430 ,2,14956,282250 ,2,14989,282230 ,2,14990,282240 ,2,14991,104250 ,2,14992,45 ,2,14993,39445 ,2,14994,19825 ,2,14995,104230 ,2,14996,75 ,1,0,447660 ,2,14956,282365 ,2,14989,282345 ,2,14990,282355 ,2,14991,104335 ,2,14992,45 ,2,14993,39480 ,2,14994,19835 ,2,14995,104310 ,2,14996,75 ,1,0,447930 ,2,14956,282465 ,2,14989,282445 ,2,14990,282455 ,2,14991,104435 ,2,14992,45 ,2,14993,39500 ,2,14994,19860 ,2,14995,104415 ,2,14996,75 ,1,0,448120 ,2,14956,282515 ,2,14989,282495 ,2,14990,282505 ,2,14991,104525 ,2,14992,45 ,2,14993,39520 ,2,14994,19870 ,2,14995,104485 ,2,14996,75 ,1,0,448585 ,2,14956,282565 ,2,14989,282555 ,2,14990,282545 ,2,14991,104615 ,2,14992,45 ,2,14993,39550 ,2,14994,19880 ,2,14995,104575 ,2,14996,75 ,1,0,448825 ,2,14956,282630 ,2,14989,282535 ,2,14990,282620 ,2,14991,104655 ,2,14992,45 ,2,14993,39600 ,2,14994,19890 ,2,14995,104635 ,2,14996,75 ,1,0,449370 ,2,14956,282670 ,2,14989,282650 ,2,14990,282660 ,2,14991,104740 ,2,14992,45 ,2,14993,39620 ,2,14994,19935 ,2,14995,104720 ,2,14996,75 ,1,0,449785 ,2,14956,283295 ,2,14989,283285 ,2,14990,283275 ,2,14991,104850 ,2,14992,45 ,2,14993,39655 ,2,14994,19945 ,2,14995,104800 ,2,14996,75 ,1,0,450290 ,2,14956,282780 ,2,14989,282770 ,2,14990,282760 ,2,14991,104895 ,2,14992,45 ,2,14993,39705 ,2,14994,19955 ,2,14995,104870 ,2,14996,75 ,1,0,450825 ,2,14956,282915 ,2,14989,282885 ,2,14990,282875 ,2,14991,105050 ,2,14992,45 ,2,14993,39760 ,2,14994,19965 ,2,14995,105010 ,2,14996,75 ,1,0,451325 ,2,14956,283175 ,2,14989,283165 ,2,14990,283155 ,2,14991,105330 ,2,14992,45 ,2,14993,39780 ,2,14994,19980 ,2,14995,105100 ,2,14996,75 ,1,0,451795 ,2,14956,283355 ,2,14989,282720 ,2,14990,283345 ,2,14991,105530 ,2,14992,45 ,2,14993,39860 ,2,14994,19990 ,2,14995,105510 ,2,14996,75 ,1,0,452425 ,2,14956,283400 ,2,14989,283390 ,2,14990,283380 ,2,14991,105620 ,2,14992,45 ,2,14993,39870 ,2,14994,20000 ,2,14995,105580 ,2,14996,75 ,1,0,453045 ,2,14956,283500 ,2,14989,283480 ,2,14990,283490 ,2,14991,105665 ,2,14992,45 ,2,14993,39940 ,2,14994,20010 ,2,14995,105640 ,2,14996,75 ,1,0,453485 ,2,14956,283600 ,2,14989,283575 ,2,14990,283590 ,2,14991,105735 ,2,14992,45 ,2,14993,39960 ,2,14994,20040 ,2,14995,105715 ,2,14996,75 ,1,0,453965 ,2,14956,283695 ,2,14989,283665 ,2,14990,283675 ,2,14991,105830 ,2,14992,45 ,2,14993,39980 ,2,14994,20050 ,2,14995,105780 ,2,14996,75 ,1,0,454490 ,2,14956,283780 ,2,14989,283760 ,2,14990,283770 ,2,14991,105890 ,2,14992,45 ,2,14993,40000 ,2,14994,20060 ,2,14995,105870 ,2,14996,75 ,1,0,454955 ,2,14956,283870 ,2,14989,283850 ,2,14990,283860 ,2,14991,105975 ,2,14992,45 ,2,14993,40040 ,2,14994,20070 ,2,14995,105955 ,2,14996,75 ,1,0,455490 ,2,14956,283980 ,2,14989,283925 ,2,14990,283970 ,2,14991,106050 ,2,14992,45 ,2,14993,40060 ,2,14994,20090 ,2,14995,106030 ,2,14996,75 ,1,0,456065 ,2,14956,284065 ,2,14989,284040 ,2,14990,284050 ,2,14991,106130 ,2,14992,45 ,2,14993,40080 ,2,14994,20100 ,2,14995,106090 ,2,14996,75 ,1,0,456510 ,2,14956,284135 ,2,14989,284115 ,2,14990,284125 ,2,14991,106200 ,2,14992,45 ,2,14993,40100 ,2,14994,20110 ,2,14995,106180 ,2,14996,75 ,1,0,456905 ,2,14956,284220 ,2,14989,284200 ,2,14990,284210 ,2,14991,106300 ,2,14992,45 ,2,14993,40130 ,2,14994,20120 ,2,14995,106275 ,2,14996,75 ,1,0,457285 ,2,14956,284310 ,2,14989,284285 ,2,14990,284300 ,2,14991,106370 ,2,14992,45 ,2,14993,40150 ,2,14994,20155 ,2,14995,106350 ,2,14996,75 ,1,0,457695 ,2,14956,284405 ,2,14989,284380 ,2,14990,284390 ,2,14991,106450 ,2,14992,45 ,2,14993,40170 ,2,14994,20165 ,2,14995,106410 ,2,14996,75 ,1,0,458020 ,2,14956,284505 ,2,14989,284485 ,2,14990,284495 ,2,14991,106510 ,2,14992,45 ,2,14993,40190 ,2,14994,20175 ,2,14995,106490 ,2,14996,75 ,1,0,458300 ,2,14956,284605 ,2,14989,284585 ,2,14990,284595 ,2,14991,106600 ,2,14992,45 ,2,14993,40255 ,2,14994,20185 ,2,14995,106575 ,2,14996,75 ,1,0,458570 ,2,14956,284700 ,2,14989,284660 ,2,14990,284690 ,2,14991,106695 ,2,14992,45 ,2,14993,40275 ,2,14994,20195 ,2,14995,106675 ,2,14996,75 ,1,0,458750 ,2,14956,284795 ,2,14989,284755 ,2,14990,284765 ,2,14991,106780 ,2,14992,45 ,2,14993,40300 ,2,14994,20205 ,2,14995,106745 ,2,14996,75 ,1,0,459030 ,2,14956,284870 ,2,14989,284850 ,2,14990,284860 ,2,14991,106845 ,2,14992,45 ,2,14993,40320 ,2,14994,20215 ,2,14995,106825 ,2,14996,75 ,1,0,459405 ,2,14956,284960 ,2,14989,284940 ,2,14990,284950 ,2,14991,106940 ,2,14992,45 ,2,14993,40380 ,2,14994,20225 ,2,14995,106920 ,2,14996,75 ,1,0,459580 ,2,14956,285045 ,2,14989,285025 ,2,14990,285035 ,2,14991,107030 ,2,14992,45 ,2,14993,40400 ,2,14994,20240 ,2,14995,107010 ,2,14996,75 ,1,0,459765 ,2,14956,285150 ,2,14989,285125 ,2,14990,285135 ,2,14991,107120 ,2,14992,45 ,2,14993,40430 ,2,14994,20250 ,2,14995,107075 ,2,14996,75 ,1,0,460065 ,2,14956,285240 ,2,14989,285220 ,2,14990,285230 ,2,14991,107180 ,2,14992,45 ,2,14993,40450 ,2,14994,20260 ,2,14995,107160 ,2,14996,75 ,1,0,460390 ,2,14956,285340 ,2,14989,285320 ,2,14990,285330 ,2,14991,107285 ,2,14992,45 ,2,14993,40490 ,2,14994,20270 ,2,14995,107265 ,2,14996,75 ,1,0,460645 ,2,14956,285425 ,2,14989,285395 ,2,14990,285415 ,2,14991,107370 ,2,14992,45 ,2,14993,40510 ,2,14994,20285 ,2,14995,107350 ,2,14996,75 ,1,0,460930 ,2,14956,285520 ,2,14989,285475 ,2,14990,285485 ,2,14991,107440 ,2,14992,45 ,2,14993,40530 ,2,14994,20295 ,2,14995,107410 ,2,14996,75 ,1,0,461210 ,2,14956,285605 ,2,14989,285585 ,2,14990,285595 ,2,14991,107525 ,2,14992,45 ,2,14993,40550 ,2,14994,20305 ,2,14995,107505 ,2,14996,75 ,1,0,461400 ,2,14956,285705 ,2,14989,285685 ,2,14990,285695 ,2,14991,107610 ,2,14992,45 ,2,14993,40590 ,2,14994,20315 ,2,14995,107590 ,2,14996,75 ,1,0,461930 ,2,14956,285810 ,2,14989,285785 ,2,14990,285800 ,2,14991,107700 ,2,14992,45 ,2,14993,40610 ,2,14994,20355 ,2,14995,107680 ,2,14996,75 ,1,0,462250 ,2,14956,285895 ,2,14989,285875 ,2,14990,285885 ,2,14991,107795 ,2,14992,45 ,2,14993,40630 ,2,14994,20365 ,2,14995,107745 ,2,14996,75 ,1,0,462630 ,2,14956,285975 ,2,14989,285955 ,2,14990,285965 ,2,14991,107860 ,2,14992,45 ,2,14993,40650 ,2,14994,20375 ,2,14995,107840 ,2,14996,75 ,1,0,462970 ,2,14956,286065 ,2,14989,286045 ,2,14990,286055 ,2,14991,107945 ,2,14992,45 ,2,14993,40700 ,2,14994,20385 ,2,14995,107925 ,2,14996,75 ,1,0,463335 ,2,14956,286160 ,2,14989,286120 ,2,14990,286150 ,2,14991,108015 ,2,14992,45 ,2,14993,40720 ,2,14994,20395 ,2,14995,107995 ,2,14996,75 ,1,0,463735 ,2,14956,286255 ,2,14989,286225 ,2,14990,286235 ,2,14991,108105 ,2,14992,45 ,2,14993,40740 ,2,14994,20405 ,2,14995,108055 ,2,14996,75 ,1,0,464020 ,2,14956,286330 ,2,14989,286310 ,2,14990,286320 ,2,14991,108170 ,2,14992,45 ,2,14993,40760 ,2,14994,20415 ,2,14995,108150 ,2,14996,75 ,1,0,464270 ,2,14956,286440 ,2,14989,286420 ,2,14990,286430 ,2,14991,108255 ,2,14992,45 ,2,14993,40790 ,2,14994,20425 ,2,14995,108230 ,2,14996,75 ,1,0,464475 ,2,14956,286535 ,2,14989,286515 ,2,14990,286525 ,2,14991,108330 ,2,14992,45 ,2,14993,40810 ,2,14994,20455 ,2,14995,108310 ,2,14996,75 ,1,0,465060 ,2,14956,286650 ,2,14989,286625 ,2,14990,286635 ,2,14991,108425 ,2,14992,45 ,2,14993,40830 ,2,14994,20465 ,2,14995,108375 ,2,14996,75 ,1,0,465460 ,2,14956,286740 ,2,14989,286720 ,2,14990,286730 ,2,14991,108495 ,2,14992,45 ,2,14993,40850 ,2,14994,20475 ,2,14995,108475 ,2,14996,75 ,1,0,465670 ,2,14956,286815 ,2,14989,286795 ,2,14990,286805 ,2,14991,108585 ,2,14992,45 ,2,14993,40895 ,2,14994,20485 ,2,14995,108555 ,2,14996,75 ,1,0,465905 ,2,14956,286915 ,2,14989,286865 ,2,14990,286905 ,2,14991,108670 ,2,14992,45 ,2,14993,40915 ,2,14994,20500 ,2,14995,108650 ,2,14996,75 ,1,0,466110 ,2,14956,287005 ,2,14989,286965 ,2,14990,286975 ,2,14991,108750 ,2,14992,45 ,2,14993,40935 ,2,14994,20510 ,2,14995,108710 ,2,14996,75 ,1,0,466465 ,2,14956,287085 ,2,14989,287065 ,2,14990,287075 ,2,14991,108810 ,2,14992,45 ,2,14993,40955 ,2,14994,20520 ,2,14995,108790 ,2,14996,75 ,1,0,466790 ,2,14956,287185 ,2,14989,287175 ,2,14990,287165 ,2,14991,108915 ,2,14992,45 ,2,14993,41015 ,2,14994,20530 ,2,14995,108895 ,2,14996,75 ,1,0,467075 ,2,14956,287230 ,2,14989,287155 ,2,14990,287220 ,2,14991,108985 ,2,14992,45 ,2,14993,41025 ,2,14994,20570 ,2,14995,108965 ,2,14996,75 ,1,0,467430 ,2,14956,287335 ,2,14989,287285 ,2,14990,287325 ,2,14991,109060 ,2,14992,45 ,2,14993,41050 ,2,14994,20580 ,2,14995,109030 ,2,14996,75 ,1,0,467645 ,2,14956,287440 ,2,14989,287430 ,2,14990,287420 ,2,14991,109170 ,2,14992,45 ,2,14993,41080 ,2,14994,20590 ,2,14995,109130 ,2,14996,75 ,1,0,467820 ,2,14956,287745 ,2,14989,287365 ,2,14990,287735 ,2,14991,109330 ,2,14992,45 ,2,14993,41110 ,2,14994,20600 ,2,14995,109310 ,2,14996,75 ,1,0,467940 ,2,14956,287865 ,2,14989,287845 ,2,14990,287855 ,2,14991,109420 ,2,14992,45 ,2,14993,41130 ,2,14994,20610 ,2,14995,109400 ,2,14996,75 ,1,0,468195 ,2,14956,287920 ,2,14989,287900 ,2,14990,287910 ,2,14991,109495 ,2,14992,45 ,2,14993,41155 ,2,14994,20620 ,2,14995,109470 ,2,14996,75 ,1,0,468430 ,2,14956,287990 ,2,14989,287980 ,2,14990,287965 ,2,14991,109560 ,2,14992,45 ,2,14993,41185 ,2,14994,20630 ,2,14995,109540 ,2,14996,75 ,1,0,468695 ,2,14956,288115 ,2,14989,287955 ,2,14990,288105 ,2,14991,109680 ,2,14992,45 ,2,14993,41230 ,2,14994,20640 ,2,14995,109660 ,2,14996,75 ,1,0,469140 ,2,14956,288195 ,2,14989,288175 ,2,14990,288185 ,2,14991,109765 ,2,14992,45 ,2,14993,41250 ,2,14994,20670 ,2,14995,109740 ,2,14996,75 ,1,0,469315 ,2,14956,288285 ,2,14989,288235 ,2,14990,288275 ,2,14991,109865 ,2,14992,45 ,2,14993,41270 ,2,14994,20680 ,2,14995,109835 ,2,14996,75 ,1,0,469730 ,2,14956,288380 ,2,14989,288360 ,2,14990,288370 ,2,14991,109970 ,2,14992,45 ,2,14993,41290 ,2,14994,20690 ,2,14995,109950 ,2,14996,75 ,1,0,470020 ,2,14956,288485 ,2,14989,288455 ,2,14990,288465 ,2,14991,110050 ,2,14992,45 ,2,14993,41335 ,2,14994,20700 ,2,14995,110015 ,2,14996,75 ,1,0,470265 ,2,14956,288560 ,2,14989,288515 ,2,14990,288550 ,2,14991,110130 ,2,14992,45 ,2,14993,41355 ,2,14994,20710 ,2,14995,110110 ,2,14996,75 ,1,0,470435 ,2,14956,288610 ,2,14989,288590 ,2,14990,288600 ,2,14991,110220 ,2,14992,45 ,2,14993,41380 ,2,14994,20720 ,2,14995,110195 ,2,14996,75 ,1,0,470695 ,2,14956,288675 ,2,14989,288655 ,2,14990,288665 ,2,14991,110290 ,2,14992,45 ,2,14993,41400 ,2,14994,20730 ,2,14995,110270 ,2,14996,75 ,1,0,470925 ,2,14956,288750 ,2,14989,288705 ,2,14990,288715 ,2,14991,110385 ,2,14992,45 ,2,14993,41455 ,2,14994,20740 ,2,14995,110335 ,2,14996,75 ,1,0,471240 ,2,14956,288805 ,2,14989,288780 ,2,14990,288795 ,2,14991,110450 ,2,14992,45 ,2,14993,41475 ,2,14994,20765 ,2,14995,110430 ,2,14996,75 ,1,0,471475 ,2,14956,288870 ,2,14989,288850 ,2,14990,288860 ,2,14991,110535 ,2,14992,45 ,2,14993,41495 ,2,14994,20775 ,2,14995,110515 ,2,14996,75 ,1,0,471910 ,2,14956,288990 ,2,14989,288905 ,2,14990,288980 ,2,14991,110630 ,2,14992,45 ,2,14993,41515 ,2,14994,20785 ,2,14995,110590 ,2,14996,75 ,1,0,472325 ,2,14956,289085 ,2,14989,289075 ,2,14990,289065 ,2,14991,110750 ,2,14992,45 ,2,14993,41550 ,2,14994,20795 ,2,14995,110715 ,2,14996,75 ,1,0,472615 ,2,14956,289130 ,2,14989,289045 ,2,14990,289120 ,2,14991,110825 ,2,14992,45 ,2,14993,41560 ,2,14994,20820 ,2,14995,110780 ,2,14996,75 ,1,0,472830 ,2,14956,289180 ,2,14989,289160 ,2,14990,289170 ,2,14991,110885 ,2,14992,45 ,2,14993,41580 ,2,14994,20830 ,2,14995,110865 ,2,14996,75 ,1,0,473065 ,2,14956,289230 ,2,14989,289210 ,2,14990,289220 ,2,14991,110970 ,2,14992,45 ,2,14993,41600 ,2,14994,20840 ,2,14995,110950 ,2,14996,75 ,1,0,473330 ,2,14956,289320 ,2,14989,289300 ,2,14990,289310 ,2,14991,111070 ,2,14992,45 ,2,14993,41640 ,2,14994,20850 ,2,14995,111045 ,2,14996,75 ,1,0,473530 ,2,14956,289385 ,2,14989,289365 ,2,14990,289375 ,2,14991,111165 ,2,14992,45 ,2,14993,41660 ,2,14994,20885 ,2,14995,111145 ,2,14996,75 ,1,0,473715 ,2,14956,289425 ,2,14989,289405 ,2,14990,289415 ,2,14991,111245 ,2,14992,45 ,2,14993,41680 ,2,14994,20895 ,2,14995,111215 ,2,14996,75 ,1,0,473930 ,2,14956,289525 ,2,14989,289515 ,2,14990,289505 ,2,14991,111320 ,2,14992,45 ,2,14993,41710 ,2,14994,20905 ,2,14995,111300 ,2,14996,75 ,1,0,474110 ,2,14956,289580 ,2,14989,289495 ,2,14990,289570 ,2,14991,111395 ,2,14992,45 ,2,14993,41755 ,2,14994,20915 ,2,14995,111375 ,2,14996,75 ,1,0,474320 ,2,14956,289625 ,2,14989,289600 ,2,14990,289615 ,2,14991,111485 ,2,14992,45 ,2,14993,41775 ,2,14994,20925 ,2,14995,111435 ,2,14996,75 ,1,0,474605 ,2,14956,289685 ,2,14989,289645 ,2,14990,289675 ,2,14991,111550 ,2,14992,45 ,2,14993,41795 ,2,14994,20935 ,2,14995,111530 ,2,14996,75 ,1,0,474790 ,2,14956,13320 ,2,14989,290585 ,2,14990,290575 ,2,14991,112140 ,2,14992,45 ,2,14993,42030 ,2,14994,20945 ,2,14995,112120 ,2,14996,75 ,1,0,474935 ,2,14956,13320 ,2,14989,290680 ,2,14990,290670 ,2,14991,112215 ,2,14992,45 ,2,14993,42070 ,2,14994,20955 ,2,14995,112180 ,2,14996,75 ,1,0,475125 ,2,14956,13320 ,2,14989,290890 ,2,14990,290880 ,2,14991,112450 ,2,14992,45 ,2,14993,42100 ,2,14994,20990 ,2,14995,112345 ,2,14996,75 ,1,0,475295 ,2,14956,13320 ,2,14989,290945 ,2,14990,290935 ,2,14991,112570 ,2,14992,45 ,2,14993,42125 ,2,14994,21000 ,2,14995,112550 ,2,14996,75 ,1,0,475435 ,2,14956,13320 ,2,14989,292975 ,2,14990,292965 ,2,14991,114350 ,2,14992,45 ,2,14993,42525 ,2,14994,21010 ,2,14995,114330 ,2,14996,75 ,1,0,475590 ,2,14956,13320 ,2,14989,293585 ,2,14990,293575 ,2,14991,115995 ,2,14992,45 ,2,14993,42835 ,2,14994,21020 ,2,14995,115975 ,2,14996,75 ,1,0,475715 ,2,14956,13320 ,2,14989,293900 ,2,14990,293890 ,2,14991,116370 ,2,14992,45 ,2,14993,42975 ,2,14994,21035 ,2,14995,116350 ,2,14996,75 ,1,0,475855 ,2,14956,293975 ,2,14989,293965 ,2,14990,293950 ,2,14991,116640 ,2,14992,45 ,2,14993,43070 ,2,14994,21045 ,2,14995,116595 ,2,14996,75 ,1,0,476055 ,2,14956,295310 ,2,14989,295300 ,2,14990,295260 ,2,14991,116765 ,2,14992,45 ,2,14993,43120 ,2,14994,21055 ,2,14995,116710 ,2,14996,75 ,1,0,476300 ,2,14956,294225 ,2,14989,294215 ,2,14990,294205 ,2,14991,116925 ,2,14992,45 ,2,14993,43190 ,2,14994,21065 ,2,14995,116905 ,2,14996,75 ,1,0,476550 ,2,14956,294415 ,2,14989,294295 ,2,14990,294400 ,2,14991,117015 ,2,14992,45 ,2,14993,43200 ,2,14994,21090 ,2,14995,116985 ,2,14996,75 ,1,0,476760 ,2,14956,13320 ,2,14989,295470 ,2,14990,295460 ,2,14991,117580 ,2,14992,45 ,2,14993,43255 ,2,14994,21100 ,2,14995,117550 ,2,14996,75 ,1,0,476985 ,2,14956,13320 ,2,14989,295555 ,2,14990,295545 ,2,14991,117880 ,2,14992,45 ,2,14993,43275 ,2,14994,21110 ,2,14995,117845 ,2,14996,75 ,1,0,477305 ,2,14956,13320 ,2,14989,295625 ,2,14990,295615 ,2,14991,118040 ,2,14992,45 ,2,14993,43315 ,2,14994,21120 ,2,14995,118010 ,2,14996,75 ,1,0,477660 ,2,14956,13320 ,2,14989,295850 ,2,14990,295840 ,2,14991,118455 ,2,14992,45 ,2,14993,43370 ,2,14994,21135 ,2,14995,118435 ,2,14996,75 ,1,0,477860 ,2,14956,13320 ,2,14989,295935 ,2,14990,295925 ,2,14991,118540 ,2,14992,45 ,2,14993,43380 ,2,14994,21145 ,2,14995,118520 ,2,14996,75 ,1,0,478030 ,2,14956,13320 ,2,14989,296235 ,2,14990,296200 ,2,14991,118600 ,2,14992,45 ,2,14993,43400 ,2,14994,21155 ,2,14995,118580 ,2,14996,75 ,1,0,478225 ,2,14956,13320 ,2,14989,296330 ,2,14990,296305 ,2,14991,118785 ,2,14992,45 ,2,14993,43480 ,2,14994,21165 ,2,14995,118760 ,2,14996,75 ,1,0,478560 ,2,14956,13320 ,2,14989,296490 ,2,14990,296480 ,2,14991,118955 ,2,14992,45 ,2,14993,43525 ,2,14994,21210 ,2,14995,118935 ,2,14996,75 ,1,0,478910 ,2,14956,13320 ,2,14989,297545 ,2,14990,297535 ,2,14991,120570 ,2,14992,45 ,2,14993,43595 ,2,14994,21220 ,2,14995,120500 ,2,14996,75 ,1,0,479160 ,2,14956,13320 ,2,14989,297645 ,2,14990,297635 ,2,14991,121120 ,2,14992,45 ,2,14993,43800 ,2,14994,21230 ,2,14995,121100 ,2,14996,75 ,1,0,479445 ,2,14956,13320 ,2,14989,297805 ,2,14990,297795 ,2,14991,121280 ,2,14992,45 ,2,14993,43845 ,2,14994,21240 ,2,14995,121260 ,2,14996,75 ,1,0,479685 ,2,14956,13320 ,2,14989,298445 ,2,14990,298435 ,2,14991,121535 ,2,14992,45 ,2,14993,43920 ,2,14994,21250 ,2,14995,121515 ,2,14996,75 ,1,0,479965 ,2,14956,13320 ,2,14989,298835 ,2,14990,298825 ,2,14991,121725 ,2,14992,45 ,2,14993,43980 ,2,14994,21260 ,2,14995,121705 ,2,14996,75 ,1,0,480235 ,2,14956,13320 ,2,14989,299175 ,2,14990,299165 ,2,14991,122025 ,2,14992,45 ,2,14993,44105 ,2,14994,21270 ,2,14995,121970 ,2,14996,75 ,1,0,480625 ,2,14956,13320 ,2,14989,299000 ,2,14990,298990 ,2,14991,122125 ,2,14992,45 ,2,14993,44175 ,2,14994,21280 ,2,14995,122100 ,2,14996,75 ,1,0,480835 ,2,14956,13320 ,2,14989,299350 ,2,14990,299330 ,2,14991,122540 ,2,14992,45 ,2,14993,44255 ,2,14994,21310 ,2,14995,122520 ,2,14996,75 ,1,0,481245 ,2,14956,13320 ,2,14989,299420 ,2,14990,299410 ,2,14991,122605 ,2,14992,45 ,2,14993,44275 ,2,14994,21320 ,2,14995,122585 ,2,14996,75 ,1,0,481485 ,2,14956,13320 ,2,14989,299575 ,2,14990,299565 ,2,14991,122730 ,2,14992,45 ,2,14993,44375 ,2,14994,21330 ,2,14995,122710 ,2,14996,75 ,1,0,481725 ,2,14956,13320 ,2,14989,299725 ,2,14990,299715 ,2,14991,122950 ,2,14992,45 ,2,14993,44415 ,2,14994,21340 ,2,14995,122930 ,2,14996,75 ,1,0,482060 ,2,14956,13320 ,2,14989,299830 ,2,14990,299820 ,2,14991,123115 ,2,14992,45 ,2,14993,44490 ,2,14994,21350 ,2,14995,123095 ,2,14996,75 ,1,0,482395 ,2,14956,13320 ,2,14989,299920 ,2,14990,299910 ,2,14991,123215 ,2,14992,45 ,2,14993,44510 ,2,14994,21360 ,2,14995,123195 ,2,14996,75 ,1,0,482765 ,2,14956,13320 ,2,14989,300005 ,2,14990,299995 ,2,14991,123275 ,2,14992,45 ,2,14993,44540 ,2,14994,21370 ,2,14995,123250 ,2,14996,75 ,1,0,483060 ,2,14956,13320 ,2,14989,300105 ,2,14990,300095 ,2,14991,123345 ,2,14992,45 ,2,14993,44565 ,2,14994,21380 ,2,14995,123325 ,2,14996,75 ,1,0,483435 ,2,14956,301830 ,2,14989,301820 ,2,14990,301810 ,2,14991,123440 ,2,14992,45 ,2,14993,44585 ,2,14994,21410 ,2,14995,123420 ,2,14996,75 ,1,0,483760 ,2,14956,13320 ,2,14989,300325 ,2,14990,300315 ,2,14991,123600 ,2,14992,45 ,2,14993,44625 ,2,14994,21420 ,2,14995,123555 ,2,14996,75 ,1,0,484165 ,2,14956,13320 ,2,14989,300345 ,2,14990,300415 ,2,14991,123660 ,2,14992,45 ,2,14993,44690 ,2,14994,21430 ,2,14995,123630 ,2,14996,75 ,1,0,484510 ,2,14956,13320 ,2,14989,300445 ,2,14990,300435 ,2,14991,123755 ,2,14992,45 ,2,14993,44710 ,2,14994,21440 ,2,14995,123730 ,2,14996,75 ,1,0,484825 ,2,14956,13320 ,2,14989,300655 ,2,14990,300645 ,2,14991,123855 ,2,14992,45 ,2,14993,44730 ,2,14994,21450 ,2,14995,123835 ,2,14996,75 ,1,0,485225 ,2,14956,13320 ,2,14989,300675 ,2,14990,300665 ,2,14991,123940 ,2,14992,45 ,2,14993,44750 ,2,14994,21460 ,2,14995,123900 ,2,14996,75 ,1,0,485650 ,2,14956,13320 ,2,14989,300805 ,2,14990,300795 ,2,14991,124080 ,2,14992,45 ,2,14993,44785 ,2,14994,21470 ,2,14995,124060 ,2,14996,75 ,1,0,485845 ,2,14956,13320 ,2,14989,301075 ,2,14990,301105 ,2,14991,124315 ,2,14992,45 ,2,14993,44830 ,2,14994,21480 ,2,14995,124290 ,2,14996,75 ,1,0,486345 ,2,14956,13320 ,2,14989,301200 ,2,14990,301190 ,2,14991,124395 ,2,14992,45 ,2,14993,44850 ,2,14994,21525 ,2,14995,124370 ,2,14996,75 ,1,0,486730 ,2,14956,301340 ,2,14989,301295 ,2,14990,301330 ,2,14991,124470 ,2,14992,45 ,2,14993,44900 ,2,14994,21535 ,2,14995,124415 ,2,14996,75 ,1,0,487120 ,2,14956,13320 ,2,14989,301415 ,2,14990,301445 ,2,14991,124580 ,2,14992,45 ,2,14993,44910 ,2,14994,21545 ,2,14995,124540 ,2,14996,75 ,1,0,487565 ,2,14956,13320 ,2,14989,301495 ,2,14990,301545 ,2,14991,124630 ,2,14992,45 ,2,14993,44930 ,2,14994,21555 ,2,14995,124610 ,2,14996,75 ,1,0,487775 ,2,14956,302085 ,2,14989,302075 ,2,14990,302065 ,2,14991,124935 ,2,14992,45 ,2,14993,45020 ,2,14994,21570 ,2,14995,124915 ,2,14996,75 ,1,0,488165 ,2,14956,13320 ,2,14989,302155 ,2,14990,302145 ,2,14991,125140 ,2,14992,45 ,2,14993,45080 ,2,14994,21580 ,2,14995,125110 ,2,14996,75 ,1,0,488625 ,2,14956,13320 ,2,14989,302320 ,2,14990,302310 ,2,14991,125245 ,2,14992,45 ,2,14993,45130 ,2,14994,21590 ,2,14995,125225 ,2,14996,75 ,1,0,489000 ,2,14956,13320 ,2,14989,302375 ,2,14990,302365 ,2,14991,125315 ,2,14992,45 ,2,14993,45140 ,2,14994,21600 ,2,14995,125275 ,2,14996,75 ,1,0,489315 ,2,14956,13320 ,2,14989,302580 ,2,14990,302570 ,2,14991,125390 ,2,14992,45 ,2,14993,45160 ,2,14994,21635 ,2,14995,125370 ,2,14996,75 ,1,0,489505 ,2,14956,13320 ,2,14989,302505 ,2,14990,302495 ,2,14991,125480 ,2,14992,45 ,2,14993,45230 ,2,14994,21645 ,2,14995,125445 ,2,14996,75 ,1,0,489995 ,2,14956,13320 ,2,14989,302600 ,2,14990,302590 ,2,14991,125595 ,2,14992,45 ,2,14993,45250 ,2,14994,21655 ,2,14995,125570 ,2,14996,75 ,1,0,490160 ,2,14956,13320 ,2,14989,302695 ,2,14990,302640 ,2,14991,125660 ,2,14992,45 ,2,14993,45270 ,2,14994,21665 ,2,14995,125640 ,2,14996,75 ,1,0,490745 ,2,14956,13320 ,2,14989,302835 ,2,14990,302865 ,2,14991,125825 ,2,14992,45 ,2,14993,45325 ,2,14994,21680 ,2,14995,125805 ,2,14996,75 ,1,0,490935 ,2,14956,13320 ,2,14989,303040 ,2,14990,303030 ,2,14991,126000 ,2,14992,45 ,2,14993,45345 ,2,14994,21690 ,2,14995,125950 ,2,14996,75 ,1,0,491405 ,2,14956,13320 ,2,14989,303090 ,2,14990,303080 ,2,14991,126050 ,2,14992,45 ,2,14993,45365 ,2,14994,21700 ,2,14995,126030 ,2,14996,75 ,1,0,491610 ,2,14956,13320 ,2,14989,303285 ,2,14990,303275 ,2,14991,126140 ,2,14992,45 ,2,14993,45435 ,2,14994,21710 ,2,14995,126120 ,2,14996,75 ,1,0,492140 ,2,14956,13320 ,2,14989,303400 ,2,14990,303390 ,2,14991,126320 ,2,14992,45 ,2,14993,45500 ,2,14994,21755 ,2,14995,126300 ,2,14996,75 ,1,0,492325 ,2,14956,13320 ,2,14989,303605 ,2,14990,303595 ,2,14991,126580 ,2,14992,45 ,2,14993,45520 ,2,14994,21765 ,2,14995,126560 ,2,14996,75 ,1,0,492820 ,2,14956,13320 ,2,14989,303690 ,2,14990,303680 ,2,14991,126950 ,2,14992,45 ,2,14993,45545 ,2,14994,21775 ,2,14995,126930 ,2,14996,75 ,1,0,493120 ,2,14956,13320 ,2,14989,303745 ,2,14990,303710 ,2,14991,127060 ,2,14992,45 ,2,14993,45565 ,2,14994,21785 ,2,14995,127040 ,2,14996,75 ,1,0,493350 ,2,14956,13320 ,2,14989,303775 ,2,14990,303765 ,2,14991,127210 ,2,14992,45 ,2,14993,45590 ,2,14994,21795 ,2,14995,127180 ,2,14996,75 ,1,0,493560 ,2,14956,13320 ,2,14989,303810 ,2,14990,303800 ,2,14991,127275 ,2,14992,45 ,2,14993,45610 ,2,14994,21805 ,2,14995,127255 ,2,14996,75 ,1,0,493745 ,2,14956,13320 ,2,14989,303915 ,2,14990,303905 ,2,14991,127365 ,2,14992,45 ,2,14993,45645 ,2,14994,21815 ,2,14995,127330 ,2,14996,75 ,1,0,493890 ,2,14956,13320 ,2,14989,304020 ,2,14990,304010 ,2,14991,127475 ,2,14992,45 ,2,14993,45665 ,2,14994,21825 ,2,14995,127425 ,2,14996,75 ,1,0,494105 ,2,14956,13320 ,2,14989,304710 ,2,14990,304700 ,2,14991,129250 ,2,14992,45 ,2,14993,46140 ,2,14994,21865 ,2,14995,129200 ,2,14996,75 ,1,0,494420 ,2,14956,13320 ,2,14989,305410 ,2,14990,305400 ,2,14991,129770 ,2,14992,45 ,2,14993,46160 ,2,14994,21875 ,2,14995,129300 ,2,14996,75 ,1,0,494665 ,2,14956,13320 ,2,14989,304835 ,2,14990,304825 ,2,14991,129390 ,2,14992,45 ,2,14993,46195 ,2,14994,21885 ,2,14995,129370 ,2,14996,75 ,1,0,494990 ,2,14956,13320 ,2,14989,304880 ,2,14990,304870 ,2,14991,129505 ,2,14992,45 ,2,14993,46215 ,2,14994,21895 ,2,14995,129445 ,2,14996,75 ,1,0,495220 ,2,14956,13320 ,2,14989,305075 ,2,14990,305065 ,2,14991,129570 ,2,14992,45 ,2,14993,46270 ,2,14994,21905 ,2,14995,129550 ,2,14996,75 ,1,0,495335 ,2,14956,13320 ,2,14989,305155 ,2,14990,305145 ,2,14991,129640 ,2,14992,45 ,2,14993,46280 ,2,14994,21915 ,2,14995,129620 ,2,14996,75 ,1,0,495535 ,2,14956,13320 ,2,14989,305190 ,2,14990,305315 ,2,14991,129720 ,2,14992,45 ,2,14993,46300 ,2,14994,21925 ,2,14995,129670 ,2,14996,75 ,1,0,495785 ,2,14956,13320 ,2,14989,305430 ,2,14990,305420 ,2,14991,129830 ,2,14992,45 ,2,14993,46320 ,2,14994,21935 ,2,14995,129810 ,2,14996,75 ,1,0,496005 ,2,14956,13320 ,2,14989,305695 ,2,14990,305685 ,2,14991,130075 ,2,14992,45 ,2,14993,46330 ,2,14994,21960 ,2,14995,130055 ,2,14996,75 ,1,0,496225 ,2,14956,13320 ,2,14989,305970 ,2,14990,305960 ,2,14991,130680 ,2,14992,45 ,2,14993,46390 ,2,14994,21970 ,2,14995,130650 ,2,14996,75 ,1,0,496475 ,2,14956,13320 ,2,14989,306030 ,2,14990,306020 ,2,14991,130800 ,2,14992,45 ,2,14993,46420 ,2,14994,21980 ,2,14995,130780 ,2,14996,75 ,1,0,496725 ,2,14956,13320 ,2,14989,306090 ,2,14990,306080 ,2,14991,131045 ,2,14992,45 ,2,14993,46485 ,2,14994,21990 ,2,14995,131020 ,2,14996,75 ,1,0,496940 ,2,14956,13320 ,2,14989,306200 ,2,14990,306190 ,2,14991,131135 ,2,14992,45 ,2,14993,46505 ,2,14994,22000 ,2,14995,131115 ,2,14996,75 ,1,0,497315 ,2,14956,13320 ,2,14989,306250 ,2,14990,306240 ,2,14991,131680 ,2,14992,45 ,2,14993,46545 ,2,14994,22010 ,2,14995,131660 ,2,14996,75 ,1,0,497565 ,2,14956,13320 ,2,14989,306475 ,2,14990,306465 ,2,14991,131985 ,2,14992,45 ,2,14993,46590 ,2,14994,22020 ,2,14995,131965 ,2,14996,75 ,1,0,497900 ,2,14956,13320 ,2,14989,306375 ,2,14990,306365 ,2,14991,132080 ,2,14992,45 ,2,14993,46625 ,2,14994,22030 ,2,14995,132060 ,2,14996,75 ,1,0,498265 ,2,14956,13320 ,2,14989,306610 ,2,14990,306585 ,2,14991,132425 ,2,14992,45 ,2,14993,46645 ,2,14994,22080 ,2,14995,132405 ,2,14996,75 ,1,0,498580 ,2,14956,13320 ,2,14989,306685 ,2,14990,306675 ,2,14991,132540 ,2,14992,45 ,2,14993,46685 ,2,14994,22090 ,2,14995,132520 ,2,14996,75 ,1,0,499005 ,2,14956,13320 ,2,14989,307435 ,2,14990,307400 ,2,14991,133275 ,2,14992,45 ,2,14993,46785 ,2,14994,22100 ,2,14995,133105 ,2,14996,75 ,1,0,499265 ,2,14956,13320 ,2,14989,307495 ,2,14990,307485 ,2,14991,133395 ,2,14992,45 ,2,14993,46920 ,2,14994,22110 ,2,14995,133375 ,2,14996,75 ,1,0,499580 ,2,14956,13320 ,2,14989,307565 ,2,14990,307555 ,2,14991,133510 ,2,14992,45 ,2,14993,46940 ,2,14994,22120 ,2,14995,133490 ,2,14996,75 ,1,0,499930 ,2,14956,13320 ,2,14989,307605 ,2,14990,307595 ,2,14991,133645 ,2,14992,45 ,2,14993,46970 ,2,14994,22130 ,2,14995,133615 ,2,14996,75 ,1,0,500110 ,2,14956,13320 ,2,14989,307670 ,2,14990,307660 ,2,14991,133700 ,2,14992,45 ,2,14993,47020 ,2,14994,22140 ,2,14995,133675 ,2,14996,75 ,1,0,500445 ,2,14956,13320 ,2,14989,307700 ,2,14990,307690 ,2,14991,133845 ,2,14992,45 ,2,14993,47050 ,2,14994,22150 ,2,14995,133815 ,2,14996,75 ,1,0,500680 ,2,14956,13320 ,2,14989,307750 ,2,14990,307740 ,2,14991,133895 ,2,14992,45 ,2,14993,47080 ,2,14994,22170 ,2,14995,133875 ,2,14996,75 ,1,0,500945 ,2,14956,13320 ,2,14989,307780 ,2,14990,307770 ,2,14991,133990 ,2,14992,45 ,2,14993,47100 ,2,14994,22180 ,2,14995,133965 ,2,14996,75 ,1,0,501260 ,2,14956,13320 ,2,14989,307810 ,2,14990,307800 ,2,14991,134060 ,2,14992,45 ,2,14993,47125 ,2,14994,22190 ,2,14995,134020 ,2,14996,75 ,1,0,501545 ,2,14956,13320 ,2,14989,307870 ,2,14990,307860 ,2,14991,134185 ,2,14992,45 ,2,14993,47145 ,2,14994,22200 ,2,14995,134165 ,2,14996,75 ,1,0,501880 ,2,14956,13320 ,2,14989,307990 ,2,14990,307975 ,2,14991,134500 ,2,14992,45 ,2,14993,47175 ,2,14994,22210 ,2,14995,134480 ,2,14996,75 ,1,0,502200 ,2,14956,13320 ,2,14989,308020 ,2,14990,308010 ,2,14991,134715 ,2,14992,45 ,2,14993,47235 ,2,14994,22220 ,2,14995,134695 ,2,14996,75 ,1,0,502605 ,2,14956,13320 ,2,14989,308125 ,2,14990,308115 ,2,14991,135200 ,2,14992,45 ,2,14993,47270 ,2,14994,22230 ,2,14995,135180 ,2,14996,75 ,1,0,502825 ,2,14956,13320 ,2,14989,308195 ,2,14990,308185 ,2,14991,135600 ,2,14992,45 ,2,14993,47305 ,2,14994,22240 ,2,14995,135580 ,2,14996,75 ,1,0,503195 ,2,14956,13320 ,2,14989,308495 ,2,14990,308485 ,2,14991,136140 ,2,14992,45 ,2,14993,47345 ,2,14994,22285 ,2,14995,136120 ,2,14996,75 ,1,0,503520 ,2,14956,13320 ,2,14989,308535 ,2,14990,308515 ,2,14991,136215 ,2,14992,45 ,2,14993,47365 ,2,14994,22295 ,2,14995,136170 ,2,14996,75 ,1,0,503780 ,2,14956,308625 ,2,14989,308615 ,2,14990,308605 ,2,14991,136320 ,2,14992,45 ,2,14993,47375 ,2,14994,22305 ,2,14995,136265 ,2,14996,75 ,1,0,504125 ,2,14956,13320 ,2,14989,308705 ,2,14990,308665 ,2,14991,136365 ,2,14992,45 ,2,14993,47410 ,2,14994,22315 ,2,14995,136340 ,2,14996,75 ,1,0,504465 ,2,14956,13320 ,2,14989,309885 ,2,14990,309875 ,2,14991,137380 ,2,14992,45 ,2,14993,47670 ,2,14994,22325 ,2,14995,137340 ,2,14996,75 ,1,0,504775 ,2,14956,13320 ,2,14989,309970 ,2,14990,309935 ,2,14991,137455 ,2,14992,45 ,2,14993,47715 ,2,14994,22335 ,2,14995,137435 ,2,14996,75 ,1,0,505095 ,2,14956,13320 ,2,14989,310285 ,2,14990,310245 ,2,14991,137685 ,2,14992,45 ,2,14993,47735 ,2,14994,22345 ,2,14995,137665 ,2,14996,75 ,1,0,505435 ,2,14956,13320 ,2,14989,310430 ,2,14990,310410 ,2,14991,137780 ,2,14992,45 ,2,14993,47760 ,2,14994,22355 ,2,14995,137760 ,2,14996,75 ,1,0,505760 ,2,14956,13320 ,2,14989,310485 ,2,14990,310460 ,2,14991,137900 ,2,14992,45 ,2,14993,47790 ,2,14994,22395 ,2,14995,137880 ,2,14996,75 ,1,0,506000 ,2,14956,13320 ,2,14989,310515 ,2,14990,310505 ,2,14991,137995 ,2,14992,45 ,2,14993,47840 ,2,14994,22405 ,2,14995,137975 ,2,14996,75 ,1,0,506185 ,2,14956,13320 ,2,14989,310610 ,2,14990,310600 ,2,14991,138225 ,2,14992,45 ,2,14993,47870 ,2,14994,22415 ,2,14995,138200 ,2,14996,75 ,1,0,506325 ,2,14956,13320 ,2,14989,310705 ,2,14990,310695 ,2,14991,138410 ,2,14992,45 ,2,14993,47890 ,2,14994,22425 ,2,14995,138365 ,2,14996,75 ,1,0,506640 ,2,14956,13320 ,2,14989,310740 ,2,14990,310725 ,2,14991,138525 ,2,14992,45 ,2,14993,47935 ,2,14994,22440 ,2,14995,138505 ,2,14996,75 ,1,0,506950 ,2,14956,13320 ,2,14989,310970 ,2,14990,310960 ,2,14991,138635 ,2,14992,45 ,2,14993,47955 ,2,14994,22450 ,2,14995,138565 ,2,14996,75 ,1,0,507245 ,2,14956,13320 ,2,14989,311070 ,2,14990,311060 ,2,14991,138795 ,2,14992,45 ,2,14993,47975 ,2,14994,22460 ,2,14995,138770 ,2,14996,75 ,1,0,507550 ,2,14956,312170 ,2,14989,312160 ,2,14990,312150 ,2,14991,140305 ,2,14992,45 ,2,14993,48185 ,2,14994,22470 ,2,14995,140285 ,2,14996,75 ,1,0,507730 ,2,14956,13320 ,2,14989,312320 ,2,14990,312310 ,2,14991,140450 ,2,14992,45 ,2,14993,48205 ,2,14994,22515 ,2,14995,140425 ,2,14996,75 ,1,0,507925 ,2,14956,13320 ,2,14989,312385 ,2,14990,312375 ,2,14991,140500 ,2,14992,45 ,2,14993,48270 ,2,14994,22525 ,2,14995,140480 ,2,14996,75 ,1,0,508180 ,2,14956,13320 ,2,14989,312640 ,2,14990,312620 ,2,14991,140845 ,2,14992,45 ,2,14993,48280 ,2,14994,22535 ,2,14995,140805 ,2,14996,75 ,1,0,508460 ,2,14956,13320 ,2,14989,327995 ,2,14990,327965 ,2,14991,144255 ,2,14992,45 ,2,14993,48310 ,2,14994,22555 ,2,14995,144235 ,2,14996,75 ,1,0,508715 ,2,14956,13320 ,2,14989,329100 ,2,14990,329090 ,2,14991,144890 ,2,14992,45 ,2,14993,48330 ,2,14994,22565 ,2,14995,144870 ,2,14996,75 ,1,0,509060 ,2,14956,13320 ,2,14989,330260 ,2,14990,330250 ,2,14991,145400 ,2,14992,45 ,2,14993,48365 ,2,14994,22575 ,2,14995,145380 ,2,14996,75 ,1,0,509380 ,2,14956,13320 ,2,14989,330915 ,2,14990,330905 ,2,14991,145830 ,2,14992,45 ,2,14993,48375 ,2,14994,22585 ,2,14995,145785 ,2,14996,75 ,1,0,509690 ,2,14956,13320 ,2,14989,330955 ,2,14990,330945 ,2,14991,145890 ,2,14992,45 ,2,14993,48395 ,2,14994,22615 ,2,14995,145870 ,2,14996,75 ,1,0,510080 ,2,14956,13320 ,2,14989,331010 ,2,14990,331000 ,2,14991,146000 ,2,14992,45 ,2,14993,48415 ,2,14994,22625 ,2,14995,145975 ,2,14996,75 ,1,0,510350 ,2,14956,13320 ,2,14989,331140 ,2,14990,331130 ,2,14991,146090 ,2,14992,45 ,2,14993,48435 ,2,14994,22635 ,2,14995,146070 ,2,14996,75 ,1,0,510570 ,2,14956,13320 ,2,14989,331200 ,2,14990,331190 ,2,14991,146150 ,2,14992,45 ,2,14993,48465 ,2,14994,22645 ,2,14995,146120 ,2,14996,75 ,1,0,510830 ,2,14956,13320 ,2,14989,332075 ,2,14990,332040 ,2,14991,146670 ,2,14992,45 ,2,14993,48485 ,2,14994,22655 ,2,14995,146645 ,2,14996,75 ,1,0,511185 ,2,14956,13320 ,2,14989,341275 ,2,14990,341265 ,2,14991,147905 ,2,14992,45 ,2,14993,48585 ,2,14994,22665 ,2,14995,147855 ,2,14996,75 ,1,0,511570 ,2,14956,13320 ,2,14989,343345 ,2,14990,343335 ,2,14991,149370 ,2,14992,45 ,2,14993,48695 ,2,14994,22675 ,2,14995,149350 ,2,14996,75 ,1,0,511765 ,2,14956,13320 ,2,14989,347290 ,2,14990,347280 ,2,14991,150405 ,2,14992,45 ,2,14993,48755 ,2,14994,22740 ,2,14995,150360 ,2,14996,75 ,1,0,512010 ,2,14956,13320 ,2,14989,347320 ,2,14990,347310 ,2,14991,150455 ,2,14992,45 ,2,14993,48790 ,2,14994,22750 ,2,14995,150425 ,2,14996,75 ,1,0,512295 ,2,14956,13320 ,2,14989,347430 ,2,14990,347420 ,2,14991,150520 ,2,14992,45 ,2,14993,48810 ,2,14994,22760 ,2,14995,150475 ,2,14996,75 ,1,0,512535 ,2,14956,13320 ,2,14989,347585 ,2,14990,347530 ,2,14991,150635 ,2,14992,45 ,2,14993,48895 ,2,14994,22770 ,2,14995,150595 ,2,14996,75 ,1,0,512730 ,2,14956,13320 ,2,14989,347615 ,2,14990,347605 ,2,14991,150760 ,2,14992,45 ,2,14993,48950 ,2,14994,22780 ,2,14995,150740 ,2,14996,75 ,1,0,513100 ,2,14956,347875 ,2,14989,7970 ,2,14990,347865 ,2,14991,150810 ,2,14992,45 ,2,14993,48995 ,2,14994,22790 ,2,14995,150780 ,2,14996,75 ,1,0,513390 ,2,14956,347925 ,2,14989,6585 ,2,14990,347915 ,2,14991,150885 ,2,14992,45 ,2,14993,49005 ,2,14994,22835 ,2,14995,150865 ,2,14996,75 ,1,0,513640 ,2,14956,347945 ,2,14989,9275 ,2,14990,347935 ,2,14991,150980 ,2,14992,45 ,2,14993,49015 ,2,14994,22845 ,2,14995,150960 ,2,14996,75 ,1,0,513905 ,2,14956,347970 ,2,14989,10510 ,2,14990,347960 ,2,14991,151015 ,2,14992,45 ,2,14993,15780 ,2,14994,22855 ,2,14995,150995 ,2,14996,75 ,1,0,514080 ,2,14956,13320 ,2,14989,307455 ,2,14990,347980 ,2,14991,151100 ,2,14992,45 ,2,14993,48705 ,2,14994,22865 ,2,14995,151075 ,2,14996,75 ,1,0,514370 ,2,14956,6035 ,2,14989,8885 ,2,14990,347990 ,2,14991,151130 ,2,14992,45 ,2,14993,49060 ,2,14994,22875 ,2,14995,151110 ,2,14996,75 ,1,0,514620 ,2,14956,348025 ,2,14989,8230 ,2,14990,348015 ,2,14991,151180 ,2,14992,45 ,2,14993,49070 ,2,14994,22885 ,2,14995,151160 ,2,14996,75 ,1,0,514865 ,2,14956,348045 ,2,14989,180350 ,2,14990,348035 ,2,14991,151220 ,2,14992,45 ,2,14993,17205 ,2,14994,22895 ,2,14995,151190 ,2,14996,75 ,1,0,515055 ,2,14956,348080 ,2,14989,4535 ,2,14990,348070 ,2,14991,151275 ,2,14992,45 ,2,14993,19445 ,2,14994,22905 ,2,14995,151230 ,2,14996,75 ,1,0,515275 ,2,14956,348155 ,2,14989,6335 ,2,14990,348145 ,2,14991,151325 ,2,14992,45 ,2,14993,14820 ,2,14994,22940 ,2,14995,151305 ,2,14996,75 ,1,0,515615 ,2,14956,348235 ,2,14989,8505 ,2,14990,348200 ,2,14991,151425 ,2,14992,45 ,2,14993,46740 ,2,14994,22950 ,2,14995,151405 ,2,14996,75 ,1,0,515945 ,2,14956,348295 ,2,14989,9395 ,2,14990,348285 ,2,14991,151660 ,2,14992,45 ,2,14993,19315 ,2,14994,22960 ,2,14995,151640 ,2,14996,75 ,1,0,516285 ,2,14956,348360 ,2,14989,291940 ,2,14990,348350 ,2,14991,151740 ,2,14992,45 ,2,14993,42245 ,2,14994,22970 ,2,14995,151720 ,2,14996,75 ,1,0,516495 ,2,14956,348380 ,2,14989,4430 ,2,14990,348370 ,2,14991,151770 ,2,14992,45 ,2,14993,15330 ,2,14994,22980 ,2,14995,151750 ,2,14996,75 ,1,0,516795 ,2,14956,348565 ,2,14989,5805 ,2,14990,348555 ,2,14991,151830 ,2,14992,45 ,2,14993,18440 ,2,14994,22990 ,2,14995,151780 ,2,14996,75 ,1,0,517100 ,2,14956,348680 ,2,14989,6005 ,2,14990,348670 ,2,14991,151935 ,2,14992,45 ,2,14993,16720 ,2,14994,23000 ,2,14995,151890 ,2,14996,75 ,1,0,517350 ,2,821,380 ,2,822,60995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492850 ,2,827,75 ,2,828,420920 ,1,0,517595 ,2,821,1920 ,1,0,542745 ,1,1,594450 ,1,2,542745 ,2,822,60985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492810 ,2,827,75 ,2,828,420895 ,1,0,517805 ,2,821,4795 ,2,822,14665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,518160 ,2,821,4990 ,1,0,555705 ,2,822,56260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,420855 ,1,0,518390 ,2,821,6570 ,2,822,14710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,518745 ,2,821,6705 ,2,822,56290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491605 ,2,827,75 ,2,828,419455 ,1,0,519110 ,2,821,8570 ,1,0,45 ,1,1,11690 ,2,822,56310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,419475 ,1,0,519400 ,2,821,10035 ,2,822,56365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,419480 ,1,0,519575 ,2,821,11865 ,1,0,557970 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,2,822,56435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491655 ,2,827,75 ,2,828,419500 ,1,0,519790 ,2,821,13585 ,1,0,169970 ,2,822,56470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491640 ,2,827,75 ,2,828,419485 ,1,0,520035 ,2,821,14955 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,56480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491645 ,2,827,75 ,2,828,419490 ,1,0,520220 ,2,821,18365 ,2,822,557970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,520850 ,2,821,20085 ,2,822,56490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491660 ,2,827,75 ,2,828,419505 ,1,0,521330 ,2,821,22255 ,2,822,56585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,419510 ,1,0,521675 ,2,821,24145 ,1,0,171605 ,1,1,555585 ,2,822,56760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492775 ,2,827,75 ,2,828,420835 ,1,0,521870 ,2,821,27430 ,2,822,14810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,522225 ,2,821,27610 ,2,822,56805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,419515 ,1,0,522410 ,2,821,29480 ,1,0,45 ,1,1,5900 ,2,822,56840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492750 ,2,827,26010 ,2,828,420735 ,1,0,522710 ,2,821,36210 ,2,822,59915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492670 ,2,827,25980 ,2,828,420730 ,1,0,522915 ,2,821,39420 ,2,822,59830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492660 ,2,827,23545 ,2,828,419535 ,1,0,523420 ,2,821,44870 ,2,822,56860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,419545 ,1,0,523885 ,2,821,45305 ,1,1,2395 ,1,2,599875 ,1,3,45 ,1,4,9470 ,2,822,56870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491665 ,2,827,75 ,2,828,419540 ,1,0,524385 ,2,821,46715 ,1,0,612330 ,2,822,56925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,524515 ,2,821,47065 ,2,822,56945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491695 ,2,827,23655 ,2,828,419560 ,1,0,524765 ,2,821,48505 ,2,822,56960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492585 ,2,827,75 ,2,828,420625 ,1,0,525045 ,2,821,49585 ,2,822,59590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492555 ,2,827,75 ,2,828,420615 ,1,0,525265 ,2,821,52750 ,1,0,344120 ,2,822,56970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,525875 ,2,821,58060 ,2,822,14865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,526440 ,2,821,58205 ,2,822,56990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,419570 ,1,0,526755 ,2,821,58795 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,57025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491700 ,2,827,75 ,2,828,419565 ,1,0,527135 ,2,821,60560 ,2,822,57035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,419630 ,1,0,527460 ,2,821,61265 ,1,0,167285 ,1,1,374160 ,2,822,57045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491710 ,2,827,75 ,2,828,419575 ,1,0,527795 ,2,821,62940 ,1,0,606340 ,1,1,45 ,1,2,290240 ,2,822,57055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491715 ,2,827,75 ,2,828,419615 ,1,0,528010 ,2,821,64955 ,1,0,555720 ,2,822,57085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,419620 ,1,0,528510 ,2,821,66515 ,2,822,15000 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,528920 ,2,821,66670 ,1,0,167545 ,1,1,374150 ,2,822,57130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491710 ,2,827,75 ,2,828,419625 ,1,0,529175 ,2,821,68345 ,2,822,57140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491725 ,2,827,75 ,2,828,419650 ,1,0,529500 ,2,821,72295 ,2,822,57150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,529735 ,2,821,73015 ,2,822,57160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,530105 ,2,821,73160 ,2,822,57250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,530360 ,2,821,76555 ,2,822,57260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,530715 ,2,821,78525 ,2,822,57290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491730 ,2,827,75 ,2,828,419660 ,1,0,531000 ,2,821,86635 ,1,0,2280 ,1,1,542270 ,2,822,57300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491755 ,2,827,75 ,2,828,419700 ,1,0,531305 ,2,821,92825 ,1,0,2280 ,1,1,542270 ,1,2,346720 ,2,822,57310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491750 ,2,827,75 ,2,828,419665 ,1,0,531595 ,2,821,97950 ,2,822,15005 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,531840 ,2,821,98115 ,2,822,57360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491760 ,2,827,75 ,2,828,419705 ,1,0,532065 ,2,821,101345 ,2,822,57400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,532315 ,2,821,102365 ,1,0,170065 ,2,822,57420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492550 ,2,827,75 ,2,828,420600 ,1,0,532605 ,2,821,103825 ,2,822,59520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,420585 ,1,0,532850 ,2,821,104445 ,2,822,59510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492530 ,2,827,75 ,2,828,420550 ,1,0,533130 ,2,821,108565 ,1,1,2395 ,1,2,599910 ,1,3,45 ,1,4,9470 ,2,822,57430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491765 ,2,827,75 ,2,828,419710 ,1,0,533390 ,2,821,110305 ,1,0,346335 ,2,822,57460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491785 ,2,827,75 ,2,828,419735 ,1,0,533670 ,2,821,112305 ,2,822,15030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,533920 ,2,821,112455 ,2,822,57470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,419715 ,1,0,534210 ,2,821,112820 ,2,822,15055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,534460 ,2,821,113000 ,2,822,57510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,534740 ,2,821,116995 ,1,0,346325 ,1,1,16295 ,1,2,166240 ,2,822,57530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492480 ,2,827,25645 ,2,828,420535 ,1,0,534970 ,2,821,159665 ,2,822,14570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,535180 ,2,821,159845 ,2,822,57570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491790 ,2,827,23545 ,2,828,419740 ,1,0,535425 ,2,821,173215 ,2,822,57580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,419750 ,1,0,535680 ,2,821,173880 ,1,1,2395 ,1,2,558280 ,1,3,45 ,1,4,9470 ,2,822,57590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491795 ,2,827,75 ,2,828,419745 ,1,0,535945 ,2,821,177840 ,1,0,168235 ,1,1,346780 ,1,2,346770 ,1,3,346760 ,2,822,57610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492460 ,2,827,75 ,2,828,420505 ,1,0,536205 ,2,821,186440 ,2,822,59305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492405 ,2,827,75 ,2,828,420415 ,1,0,536455 ,2,821,200105 ,1,0,558285 ,1,1,45 ,1,2,13320 ,2,822,57630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491830 ,2,827,24440 ,2,828,419775 ,1,0,536685 ,2,821,212065 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,59620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491825 ,2,827,75 ,2,828,419770 ,1,0,536920 ,2,821,215600 ,1,1,2395 ,1,2,599885 ,1,3,45 ,1,4,9470 ,2,822,57640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491835 ,2,827,75 ,2,828,419780 ,1,0,537175 ,2,821,217360 ,1,0,339390 ,1,1,165280 ,2,822,57690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491930 ,2,827,75 ,2,828,419855 ,1,0,537420 ,2,821,223880 ,1,0,168515 ,2,822,57905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491925 ,2,827,24575 ,2,828,419850 ,1,0,537660 ,2,821,240715 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,57700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,419785 ,1,0,537920 ,2,821,242485 ,1,0,6870 ,2,822,57755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491860 ,2,827,75 ,2,828,419800 ,1,0,538205 ,2,821,249400 ,1,0,255865 ,1,1,3255 ,2,822,57745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491855 ,2,827,24525 ,2,828,419790 ,1,0,538475 ,2,821,251685 ,2,822,57735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,419795 ,1,0,538725 ,2,821,252105 ,2,822,57815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491895 ,2,827,24545 ,2,828,419805 ,1,0,538985 ,2,821,265485 ,1,0,45 ,1,1,11510 ,2,822,57805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491890 ,2,827,24545 ,2,828,419825 ,1,0,539155 ,2,821,270875 ,2,822,60790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491915 ,2,827,75 ,2,828,419840 ,1,0,539600 ,2,821,273150 ,1,1,2395 ,1,2,558295 ,1,3,45 ,1,4,9470 ,2,822,57825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491900 ,2,827,75 ,2,828,419830 ,1,0,540060 ,2,821,275405 ,2,822,558295 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,540350 ,2,821,276535 ,2,822,57835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491905 ,2,827,75 ,2,828,419835 ,1,0,540705 ,2,821,278240 ,2,822,57855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491920 ,2,827,24565 ,2,828,419845 ,1,0,541035 ,2,821,282840 ,1,0,45 ,1,1,9435 ,2,822,57915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,419860 ,1,0,541405 ,2,821,284290 ,1,0,45 ,1,1,11690 ,2,822,57935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491970 ,2,827,75 ,2,828,419890 ,1,0,541610 ,2,821,287245 ,1,0,543405 ,1,1,1945 ,1,2,596675 ,1,3,543405 ,1,4,557790 ,1,5,166290 ,1,6,168920 ,1,7,166280 ,1,8,206480 ,2,822,57960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492040 ,2,827,24545 ,2,828,419990 ,1,0,541860 ,2,821,316035 ,2,822,59175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491975 ,2,827,24685 ,2,828,419895 ,1,0,542110 ,2,821,324310 ,1,0,166540 ,2,822,60695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491980 ,2,827,25980 ,2,828,419900 ,1,0,542410 ,2,821,332320 ,2,822,14610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,542665 ,2,821,332495 ,1,1,2395 ,1,2,558545 ,1,3,45 ,1,4,9470 ,2,822,59665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491985 ,2,827,75 ,2,828,419905 ,1,0,543085 ,2,821,334530 ,1,0,168650 ,2,822,57980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492005 ,2,827,75 ,2,828,419925 ,1,0,543295 ,2,821,335780 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,57970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492000 ,2,827,75 ,2,828,419920 ,1,0,543790 ,2,821,338005 ,2,822,59110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492030 ,2,827,24715 ,2,828,419980 ,1,0,544215 ,2,821,352470 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,59240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,419930 ,1,0,544390 ,2,821,354270 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,58020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,419935 ,1,0,544565 ,2,821,356025 ,2,822,59220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492015 ,2,827,75 ,2,828,419975 ,1,0,544895 ,2,821,360410 ,1,0,543400 ,1,1,557840 ,1,2,543400 ,1,3,543395 ,1,4,596670 ,1,5,543395 ,1,6,606515 ,1,7,45 ,1,8,11510 ,1,9,606195 ,1,10,45 ,1,11,13320 ,1,12,45 ,1,13,11510 ,2,822,60755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492035 ,2,827,24745 ,2,828,419985 ,1,0,545090 ,2,821,383465 ,1,0,558305 ,1,1,45 ,1,2,169850 ,1,3,45 ,1,4,339390 ,2,822,58065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492045 ,2,827,75 ,2,828,420000 ,1,0,545285 ,2,821,386185 ,2,822,58075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492055 ,2,827,75 ,2,828,420005 ,1,0,545545 ,2,821,395385 ,2,822,58095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492065 ,2,827,75 ,2,828,420015 ,1,0,545960 ,2,821,417500 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,58185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492060 ,2,827,75 ,2,828,420010 ,1,0,546150 ,2,821,420560 ,2,822,58120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492070 ,2,827,75 ,2,828,420045 ,1,0,546560 ,2,821,424540 ,2,822,58130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492095 ,2,827,75 ,2,828,420050 ,1,0,546755 ,2,821,432790 ,2,822,58195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492100 ,2,827,75 ,2,828,420055 ,1,0,547415 ,2,821,433450 ,1,0,558310 ,1,1,45 ,1,2,322830 ,2,822,58235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492105 ,2,827,75 ,2,828,420060 ,1,0,547585 ,2,821,434975 ,2,822,558310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,548195 ,2,821,435440 ,2,822,58255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492110 ,2,827,75 ,2,828,420085 ,1,0,548410 ,2,821,435705 ,2,822,15165 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,548730 ,2,821,435800 ,2,822,15170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,549200 ,2,821,435950 ,1,0,169805 ,1,1,169795 ,1,2,612275 ,1,3,612320 ,2,822,58375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492355 ,2,827,25220 ,2,828,420265 ,1,0,549385 ,2,821,445945 ,2,822,58385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492120 ,2,827,75 ,2,828,420090 ,1,0,549855 ,2,821,447285 ,2,822,58435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492125 ,2,827,75 ,2,828,420095 ,1,0,550255 ,2,821,448515 ,2,822,58445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492130 ,2,827,24980 ,2,828,420100 ,1,0,550415 ,2,821,456040 ,2,822,58455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492160 ,2,827,25025 ,2,828,420130 ,1,0,550630 ,2,821,464325 ,2,822,58570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492155 ,2,827,75 ,2,828,420125 ,1,0,551055 ,2,821,465720 ,1,1,2395 ,1,2,558415 ,1,3,45 ,1,4,9470 ,2,822,58465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492135 ,2,827,75 ,2,828,420120 ,1,0,551265 ,2,821,467970 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,58485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,420135 ,1,0,551440 ,2,821,468970 ,1,0,45 ,2,822,58495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492180 ,2,827,24545 ,2,828,420155 ,1,0,551865 ,2,821,472820 ,2,822,58540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492170 ,2,827,75 ,2,828,420145 ,1,0,552315 ,2,821,476435 ,2,822,58505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492165 ,2,827,75 ,2,828,420140 ,1,0,552645 ,2,821,480540 ,2,822,59005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492175 ,2,827,75 ,2,828,420150 ,1,0,553010 ,2,821,482195 ,2,822,58605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492185 ,2,827,75 ,2,828,420170 ,1,0,553260 ,2,821,483405 ,2,822,15250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,553540 ,2,821,483500 ,1,0,45 ,1,1,333355 ,2,822,58615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,420175 ,1,0,553770 ,2,821,484380 ,2,822,58635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492190 ,2,827,24440 ,2,828,420180 ,1,0,554260 ,2,821,489310 ,2,822,58645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492225 ,2,827,75 ,2,828,420185 ,1,0,554520 ,2,821,490910 ,2,822,558420 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,554935 ,2,821,491315 ,2,822,558435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,555115 ,2,821,491735 ,1,0,557760 ,2,822,58550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492235 ,2,827,24545 ,2,828,420195 ,1,0,555440 ,2,821,497530 ,2,822,58755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492230 ,2,827,25155 ,2,828,420190 ,1,0,555635 ,2,821,498000 ,2,822,58560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492240 ,2,827,75 ,2,828,420200 ,1,0,555840 ,2,821,500140 ,2,822,58685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492245 ,2,827,75 ,2,828,420205 ,1,0,556095 ,2,821,501240 ,2,822,15275 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,556225 ,2,821,501370 ,2,822,58585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492250 ,2,827,75 ,2,828,420260 ,1,0,556635 ,2,821,502870 ,2,822,15215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,556825 ,2,821,502990 ,2,822,15315 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,557175 ,2,821,503085 ,1,0,255885 ,1,1,10580 ,2,822,58800 ,2,823,540605 ,2,824,418050 ,2,825,351920 ,2,826,492345 ,2,827,25345 ,2,828,420345 ,1,0,557590 ,2,821,509110 ,1,0,2135 ,2,822,58965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492315 ,2,827,25255 ,2,828,420270 ,1,0,558000 ,2,821,511860 ,2,822,58820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,420275 ,1,0,558205 ,2,821,512265 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,58865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492255 ,2,827,75 ,2,828,420285 ,1,0,558605 ,2,821,513360 ,2,822,58875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492260 ,2,827,75 ,2,828,420290 ,1,0,558760 ,2,821,514705 ,2,822,58885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492285 ,2,827,25325 ,2,828,420300 ,1,0,559325 ,2,821,552170 ,2,822,14580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,559510 ,2,821,552275 ,2,822,59100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492280 ,2,827,75 ,2,828,420295 ,1,0,560025 ,2,821,553915 ,2,822,58905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,420320 ,1,0,560325 ,2,821,554515 ,2,822,58915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492295 ,2,827,75 ,2,828,420325 ,1,0,560880 ,2,821,555490 ,2,822,58925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,420330 ,1,0,561065 ,2,821,556070 ,2,822,58945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492305 ,2,827,75 ,2,828,420335 ,1,0,561595 ,2,821,557170 ,1,0,2280 ,1,1,542240 ,2,822,58955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492310 ,2,827,75 ,2,828,420340 ,1,0,561900 ,2,821,560015 ,1,0,334140 ,2,822,58975 ,2,823,540610 ,2,824,418055 ,2,825,351930 ,2,826,492350 ,2,827,25345 ,2,828,420350 ,1,0,562425 ,2,821,565865 ,2,822,59075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491640 ,2,827,75 ,2,828,420355 ,1,0,562630 ,2,821,566525 ,2,822,59120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492360 ,2,827,75 ,2,828,420390 ,1,0,563200 ,2,821,589345 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,59165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492365 ,2,827,24440 ,2,828,420395 ,1,0,563645 ,2,821,603865 ,1,0,169490 ,1,1,169850 ,2,822,59185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492370 ,2,827,24545 ,2,828,420400 ,1,0,563900 ,2,821,616640 ,2,822,59195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492375 ,2,827,75 ,2,828,420405 ,1,0,564095 ,2,821,622550 ,1,0,45 ,1,1,341075 ,2,822,59295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492380 ,2,827,75 ,2,828,420410 ,1,0,564535 ,2,821,623750 ,2,822,59470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492450 ,2,827,75 ,2,828,420485 ,1,0,564730 ,2,821,641990 ,1,0,166325 ,1,1,255735 ,1,2,255845 ,1,3,6450 ,1,4,166315 ,1,5,166300 ,1,6,346740 ,1,7,346730 ,2,822,59420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492440 ,2,827,25570 ,2,828,420480 ,1,0,565240 ,2,821,667295 ,1,0,14485 ,1,1,14475 ,2,822,59390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492420 ,2,827,25560 ,2,828,420455 ,1,0,565435 ,2,821,673950 ,1,0,170185 ,2,822,59325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492410 ,2,827,25540 ,2,828,420420 ,1,0,565925 ,2,821,265 ,1,0,374215 ,1,1,170220 ,2,822,59345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492415 ,2,827,75 ,2,828,420450 ,1,0,566185 ,2,821,2775 ,1,1,2395 ,1,2,599975 ,1,3,45 ,1,4,9470 ,2,822,59335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491835 ,2,827,75 ,2,828,420425 ,1,0,566420 ,2,821,4530 ,2,822,59370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492425 ,2,827,75 ,2,828,420460 ,1,0,566945 ,2,821,8110 ,1,0,599955 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,2,822,59400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492430 ,2,827,75 ,2,828,420465 ,1,0,567130 ,2,821,24325 ,2,822,59380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492435 ,2,827,75 ,2,828,420475 ,1,0,567310 ,2,821,27755 ,1,0,2280 ,1,1,542265 ,1,2,45 ,1,3,13320 ,1,4,346710 ,1,5,346680 ,1,6,346670 ,2,822,59430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492455 ,2,827,75 ,2,828,420490 ,1,0,567560 ,2,821,33935 ,2,822,59450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,420510 ,1,0,567775 ,2,821,35125 ,1,1,2395 ,1,2,558540 ,1,3,45 ,1,4,9470 ,2,822,59490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492470 ,2,827,75 ,2,828,420515 ,1,0,568140 ,2,821,37790 ,1,0,169900 ,2,822,58985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492475 ,2,827,75 ,2,828,420520 ,1,0,568400 ,2,821,44080 ,2,822,58175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492485 ,2,827,75 ,2,828,420540 ,1,0,568670 ,2,821,79070 ,2,822,58355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492525 ,2,827,75 ,2,828,420545 ,1,0,568950 ,2,821,114315 ,1,0,612325 ,2,822,57600 ,2,823,540615 ,2,824,418060 ,2,825,351960 ,2,826,492540 ,2,827,75 ,2,828,420590 ,1,0,569195 ,2,821,118070 ,2,822,59210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492545 ,2,827,75 ,2,828,420595 ,1,0,569510 ,2,821,122285 ,2,822,59530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491785 ,2,827,75 ,2,828,420610 ,1,0,569770 ,2,821,124215 ,2,822,14830 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,570110 ,2,821,124385 ,1,0,347170 ,2,822,57240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492560 ,2,827,75 ,2,828,420620 ,1,0,570330 ,2,821,125455 ,1,1,2395 ,2,822,59600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492590 ,2,827,75 ,2,828,420650 ,1,0,570735 ,2,821,127000 ,2,822,59610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,571030 ,2,821,127445 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,59635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492595 ,2,827,75 ,2,828,420655 ,1,0,571210 ,2,821,130810 ,1,0,255770 ,2,822,59645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492600 ,2,827,75 ,2,828,420660 ,1,0,571510 ,2,821,131470 ,1,1,2395 ,2,822,59655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492610 ,2,827,75 ,2,828,420665 ,1,0,571755 ,2,821,132480 ,1,1,2395 ,2,822,59695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,420680 ,1,0,572010 ,2,821,133585 ,1,1,2395 ,1,2,558550 ,1,3,45 ,1,4,9470 ,2,822,59705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492620 ,2,827,75 ,2,828,420685 ,1,0,572325 ,2,821,135745 ,2,822,59715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492625 ,2,827,75 ,2,828,420690 ,1,0,572590 ,2,821,138325 ,2,822,59735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,572720 ,2,821,138715 ,1,0,344485 ,2,822,59745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,420695 ,1,0,572960 ,2,821,139125 ,2,822,15340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573220 ,2,821,139300 ,2,822,59765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,573395 ,2,821,140045 ,1,0,45 ,1,1,310080 ,2,822,59820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,420720 ,1,0,573720 ,2,821,142355 ,1,1,2395 ,1,2,558580 ,1,3,45 ,1,4,9470 ,2,822,59905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492665 ,2,827,75 ,2,828,420725 ,1,0,574075 ,2,821,146190 ,2,822,49175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,574330 ,2,821,146340 ,2,822,59935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492675 ,2,827,75 ,2,828,420740 ,1,0,574585 ,2,821,147185 ,2,822,60125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492725 ,2,827,26290 ,2,828,420805 ,1,0,574835 ,2,821,154110 ,2,822,15475 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,575095 ,2,821,154270 ,2,822,60175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492680 ,2,827,26190 ,2,828,420745 ,1,0,575360 ,2,821,155985 ,2,822,60185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492685 ,2,827,75 ,2,828,420750 ,1,0,575565 ,2,821,158865 ,2,822,60255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492720 ,2,827,26230 ,2,828,420795 ,1,0,575735 ,2,821,162575 ,2,822,15545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,576160 ,2,821,162725 ,1,0,100 ,1,1,600035 ,1,2,110 ,1,3,600005 ,1,4,543345 ,1,5,606605 ,1,6,543345 ,2,822,60235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492715 ,2,827,26220 ,2,828,420755 ,1,0,576465 ,2,821,166685 ,2,822,60315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,420800 ,1,0,576635 ,2,821,168575 ,2,822,15555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,576845 ,2,821,168755 ,1,0,2280 ,1,1,542265 ,1,2,45 ,1,3,13320 ,2,822,60410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492730 ,2,827,26310 ,2,828,420810 ,1,0,577020 ,2,821,174540 ,2,822,60470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492735 ,2,827,26320 ,2,828,420820 ,1,0,577215 ,2,821,177845 ,2,822,60480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492740 ,2,827,26010 ,2,828,420825 ,1,0,577375 ,2,821,179340 ,1,0,606635 ,1,1,45 ,1,2,5900 ,2,822,60490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492745 ,2,827,75 ,2,828,420830 ,1,0,577575 ,2,821,183270 ,2,822,60685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492785 ,2,827,75 ,2,828,420860 ,1,0,577800 ,2,821,184330 ,2,822,60745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,420865 ,1,0,577985 ,2,821,185090 ,2,822,60765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492795 ,2,827,75 ,2,828,420870 ,1,0,578450 ,2,821,186145 ,2,822,60775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492800 ,2,827,25980 ,2,828,420880 ,1,0,578860 ,2,821,193255 ,2,822,60810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,420885 ,1,0,579170 ,2,821,195075 ,1,0,555470 ,2,822,60865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492805 ,2,827,75 ,2,828,420890 ,1,0,579515 ,2,821,196840 ,2,822,15575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,579725 ,2,821,196990 ,1,0,45 ,1,1,346875 ,2,822,60585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492855 ,2,827,75 ,2,828,420925 ,1,0,580250 ,2,821,201965 ,1,0,45 ,1,1,167555 ,2,822,64100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493115 ,2,827,75 ,2,828,421335 ,1,0,580520 ,2,821,207535 ,1,0,542485 ,1,1,591290 ,1,2,542485 ,2,822,61005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492860 ,2,827,75 ,2,828,420930 ,1,0,580700 ,2,821,212240 ,2,822,61025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,420935 ,1,0,581280 ,2,821,214120 ,1,0,45 ,1,1,11690 ,2,822,61060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,420945 ,1,0,581875 ,2,821,215645 ,2,822,61230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492865 ,2,827,75 ,2,828,420950 ,1,0,582230 ,2,821,221535 ,2,822,15625 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,582500 ,2,821,221695 ,2,822,61250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,420960 ,1,0,582915 ,2,821,222435 ,1,0,45 ,1,1,11510 ,2,822,63700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492870 ,2,827,24545 ,2,828,420955 ,1,0,583200 ,2,821,234155 ,2,822,61290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493040 ,2,827,28015 ,2,828,421250 ,1,0,583705 ,2,821,243795 ,2,822,63470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493035 ,2,827,27935 ,2,828,421225 ,1,0,583915 ,2,821,252025 ,2,822,61300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492880 ,2,827,27935 ,2,828,420980 ,1,0,584455 ,2,821,255645 ,1,1,2395 ,1,2,558990 ,1,3,45 ,1,4,9470 ,2,822,61310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492885 ,2,827,75 ,2,828,420985 ,1,0,584735 ,2,821,259495 ,2,822,61320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,421215 ,1,0,584985 ,2,821,260210 ,2,822,63425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493020 ,2,827,27920 ,2,828,421210 ,1,0,585395 ,2,821,266160 ,2,822,13340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,585635 ,2,821,266290 ,1,0,45 ,1,1,11690 ,2,822,61330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492895 ,2,827,26740 ,2,828,420990 ,1,0,586140 ,2,821,270470 ,2,822,61400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,420995 ,1,0,586350 ,2,821,272215 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,61410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492900 ,2,827,75 ,2,828,421000 ,1,0,586900 ,2,821,274110 ,2,822,13350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,587150 ,2,821,274270 ,2,822,61515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492920 ,2,827,27135 ,2,828,421055 ,1,0,587420 ,2,821,281815 ,2,822,13380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,587860 ,2,821,281995 ,1,0,45 ,1,1,11690 ,2,822,61525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492905 ,2,827,26925 ,2,828,421005 ,1,0,588110 ,2,821,288475 ,2,822,61590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421010 ,1,0,588625 ,2,821,290220 ,2,822,61710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421015 ,1,0,588840 ,2,821,291945 ,1,0,340305 ,1,1,340295 ,1,2,340260 ,2,822,62050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492915 ,2,827,27110 ,2,828,421050 ,1,0,589390 ,2,821,296725 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,62030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492910 ,2,827,75 ,2,828,421045 ,1,0,589700 ,2,821,300495 ,1,1,2395 ,1,2,559165 ,1,3,45 ,1,4,9470 ,2,822,62195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492925 ,2,827,75 ,2,828,421060 ,1,0,589980 ,2,821,304575 ,2,822,62225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492920 ,2,827,27345 ,2,828,421075 ,1,0,590370 ,2,821,312520 ,2,822,13390 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590625 ,2,821,312680 ,1,0,45 ,1,1,11690 ,2,822,62235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492930 ,2,827,27200 ,2,828,421070 ,1,0,591150 ,2,821,318490 ,2,822,62335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492920 ,2,827,27475 ,2,828,421085 ,1,0,591335 ,2,821,326215 ,2,822,13400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,591840 ,2,821,326365 ,1,0,45 ,1,1,11690 ,2,822,62345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492955 ,2,827,27365 ,2,828,421080 ,1,0,592105 ,2,821,332555 ,1,1,2395 ,1,2,559210 ,1,3,45 ,1,4,9470 ,2,822,62465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492960 ,2,827,75 ,2,828,421120 ,1,0,592375 ,2,821,336725 ,2,822,62475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492970 ,2,827,27630 ,2,828,421130 ,1,0,592750 ,2,821,340480 ,2,822,13410 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,592995 ,2,821,340660 ,1,0,45 ,1,1,11690 ,2,822,62485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492965 ,2,827,27530 ,2,828,421125 ,1,0,593495 ,2,821,345020 ,1,0,165965 ,2,822,62580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492975 ,2,827,75 ,2,828,421140 ,1,0,593690 ,2,821,346595 ,1,1,2395 ,1,2,559255 ,1,3,45 ,1,4,9470 ,2,822,62590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492135 ,2,827,75 ,2,828,421135 ,1,0,594235 ,2,821,350485 ,2,822,62600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492980 ,2,827,27750 ,2,828,421145 ,1,0,594535 ,2,821,356235 ,2,822,13425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,594795 ,2,821,356415 ,2,822,62855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,421150 ,1,0,595145 ,2,821,357185 ,2,822,62865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492985 ,2,827,27750 ,2,828,421155 ,1,0,595395 ,2,821,359490 ,2,822,62875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492990 ,2,827,27750 ,2,828,421190 ,1,0,595915 ,2,821,361495 ,1,0,561575 ,1,1,45 ,1,2,13320 ,2,822,62915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493010 ,2,827,75 ,2,828,421195 ,1,0,596110 ,2,821,362475 ,2,822,63080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421200 ,1,0,596645 ,2,821,364370 ,1,0,346545 ,2,822,62060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493015 ,2,827,27910 ,2,828,421205 ,1,0,596920 ,2,821,368880 ,2,822,63435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493025 ,2,827,75 ,2,828,421220 ,1,0,597180 ,2,821,371150 ,2,822,558990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,597555 ,2,821,371800 ,2,822,15900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,597880 ,2,821,371950 ,2,822,63530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421255 ,1,0,598380 ,2,821,373720 ,2,822,63540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,421260 ,1,0,598565 ,2,821,374725 ,2,822,15920 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599075 ,2,821,374860 ,1,0,45 ,1,1,166945 ,2,822,63630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493075 ,2,827,75 ,2,828,421285 ,1,0,599345 ,2,821,380465 ,1,0,346860 ,2,822,63660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,421265 ,1,0,599610 ,2,821,380685 ,2,822,15955 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599995 ,2,821,380785 ,1,0,346315 ,2,822,63670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,421275 ,1,0,600245 ,2,821,381005 ,1,0,342395 ,2,822,63680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,421280 ,1,0,600760 ,2,821,381250 ,2,822,63895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,421290 ,1,0,600940 ,2,821,381675 ,2,822,63930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493080 ,2,827,75 ,2,828,421305 ,1,0,601450 ,2,821,384830 ,2,822,63950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493085 ,2,827,75 ,2,828,421310 ,1,0,601710 ,2,821,385985 ,1,0,543105 ,1,1,587755 ,1,2,543105 ,2,822,63960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493100 ,2,827,75 ,2,828,421320 ,1,0,601970 ,2,821,393000 ,2,822,64050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493090 ,2,827,75 ,2,828,421315 ,1,0,602430 ,2,821,394865 ,1,0,543110 ,1,1,587755 ,1,2,543110 ,2,822,64005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493110 ,2,827,28190 ,2,828,421330 ,1,0,602690 ,2,821,402565 ,2,822,64090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493105 ,2,827,75 ,2,828,421325 ,1,0,603240 ,2,821,404530 ,2,822,56715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493145 ,2,827,75 ,2,828,421340 ,1,0,603465 ,2,821,406585 ,2,822,64110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,604055 ,2,821,406765 ,2,822,15995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,604335 ,2,821,406870 ,1,0,333995 ,2,822,64175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493150 ,2,827,75 ,2,828,421380 ,1,0,604590 ,2,821,408265 ,1,0,2280 ,1,1,542275 ,1,2,543210 ,1,3,600020 ,1,4,543210 ,1,5,2280 ,1,6,542275 ,2,822,64185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493155 ,2,827,75 ,2,828,421385 ,1,0,604960 ,2,821,411320 ,1,1,2395 ,2,822,64200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,421390 ,1,0,605245 ,2,821,412010 ,2,822,64210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,421395 ,1,0,605760 ,2,821,412440 ,2,822,64220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,605975 ,2,821,414055 ,2,822,64155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,606495 ,2,821,414235 ,2,822,57270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,606750 ,2,821,414450 ,2,822,16005 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,606995 ,2,821,414550 ,2,822,64260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,421400 ,1,0,607370 ,2,821,415035 ,2,822,16015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,607685 ,2,821,415155 ,2,822,64270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493175 ,2,827,75 ,2,828,421405 ,1,0,608255 ,2,821,416580 ,2,822,64280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493250 ,2,827,75 ,2,828,421450 ,1,0,608435 ,2,821,417720 ,1,0,340790 ,1,1,7300 ,1,2,169920 ,2,822,64380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493245 ,2,827,75 ,2,828,421445 ,1,0,608980 ,2,821,419315 ,2,822,64330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,421440 ,1,0,609235 ,2,821,419725 ,1,0,340780 ,2,822,64320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493235 ,2,827,24440 ,2,828,421435 ,1,0,609490 ,2,821,428550 ,2,822,64300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493180 ,2,827,28390 ,2,828,421410 ,1,0,609865 ,2,821,438565 ,2,822,64310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493185 ,2,827,75 ,2,828,421415 ,1,0,610125 ,2,821,439070 ,2,822,559540 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,610680 ,2,821,439475 ,2,822,64425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,610885 ,2,821,439655 ,2,822,16115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,611415 ,2,821,439750 ,2,822,64455 ,2,823,540635 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,611650 ,2,821,440480 ,1,0,174090 ,1,1,174100 ,2,822,64505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493255 ,2,827,75 ,2,828,421460 ,1,0,611905 ,2,821,442295 ,2,822,16190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,612315 ,2,821,442395 ,2,822,16210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,612530 ,2,821,442480 ,2,822,16220 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,613030 ,2,821,442580 ,1,0,544695 ,2,822,64550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,421465 ,1,0,613230 ,2,821,442990 ,1,0,170010 ,2,822,64620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496075 ,2,827,28915 ,2,828,421475 ,1,0,613740 ,2,821,444540 ,1,0,2280 ,1,1,542150 ,1,2,341105 ,1,3,341095 ,1,4,45 ,1,5,5900 ,1,6,543125 ,1,7,564895 ,1,8,543125 ,1,9,3565 ,1,10,168785 ,1,11,341085 ,2,822,77870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493260 ,2,827,75 ,2,828,421470 ,1,0,614005 ,2,821,461290 ,2,822,64645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,425720 ,1,0,614250 ,2,821,462160 ,1,0,188955 ,2,822,77860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496065 ,2,827,39440 ,2,828,425715 ,1,0,614615 ,2,821,463730 ,2,822,64655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493265 ,2,827,75 ,2,828,421500 ,1,0,614855 ,2,821,464610 ,2,822,16275 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,615385 ,2,821,464700 ,2,822,64665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,421520 ,1,0,615575 ,2,821,465130 ,1,0,14895 ,1,1,373545 ,1,2,16305 ,1,3,370705 ,1,4,370670 ,1,5,370685 ,1,6,64710 ,2,822,64730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493305 ,2,827,28995 ,2,828,421505 ,1,0,616015 ,2,821,467460 ,1,0,599870 ,1,1,45 ,1,2,11510 ,2,822,64710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493300 ,2,827,75 ,2,828,421515 ,1,0,616270 ,2,821,468920 ,1,1,2395 ,2,822,64720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493270 ,2,827,75 ,2,828,421510 ,1,0,616505 ,2,821,469480 ,2,822,18285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,616895 ,2,821,469580 ,1,0,557410 ,2,822,64740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,33270 ,2,828,422880 ,1,0,617170 ,2,821,470345 ,1,0,606970 ,1,1,45 ,1,2,13320 ,1,3,606965 ,1,4,45 ,1,5,13320 ,2,822,65590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493450 ,2,827,75 ,2,828,421650 ,1,0,617640 ,2,821,475120 ,2,822,64760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493330 ,2,827,75 ,2,828,421530 ,1,0,617855 ,2,821,476875 ,2,822,64750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493315 ,2,827,75 ,2,828,421525 ,1,0,618335 ,2,821,478660 ,2,822,14460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,618605 ,2,821,478760 ,1,0,555595 ,2,822,64770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,421560 ,1,0,618840 ,2,821,479745 ,2,822,16330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,619195 ,2,821,479840 ,1,0,329345 ,2,822,64850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493335 ,2,827,75 ,2,828,421535 ,1,0,619430 ,2,821,484270 ,1,0,337150 ,1,1,220760 ,2,822,64860 ,2,823,540640 ,2,824,418065 ,2,825,351980 ,2,826,493340 ,2,827,25345 ,2,828,421555 ,1,0,619895 ,2,821,490985 ,2,822,64980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493365 ,2,827,75 ,2,828,421570 ,1,0,620080 ,2,821,491910 ,1,0,223315 ,1,1,166935 ,2,822,64990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493345 ,2,827,29220 ,2,828,421565 ,1,0,620555 ,2,821,493325 ,2,822,16360 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,620785 ,2,821,493410 ,2,822,65185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493370 ,2,827,29220 ,2,828,421580 ,1,0,621030 ,2,821,493930 ,2,822,65200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493375 ,2,827,29220 ,2,828,421585 ,1,0,621375 ,2,821,494585 ,2,822,65210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493445 ,2,827,29620 ,2,828,421645 ,1,0,621605 ,2,821,495330 ,2,822,16415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,622080 ,2,821,495440 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,65230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493380 ,2,827,75 ,2,828,421590 ,1,0,622290 ,2,821,501095 ,2,822,65295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493395 ,2,827,29475 ,2,828,421630 ,1,0,622755 ,2,821,506080 ,2,822,65480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493390 ,2,827,75 ,2,828,421625 ,1,0,622980 ,2,821,508635 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,65395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493385 ,2,827,25980 ,2,828,421595 ,1,0,623220 ,2,821,514605 ,1,0,2135 ,2,822,65315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493400 ,2,827,29495 ,2,828,421635 ,1,0,623610 ,2,821,523955 ,1,0,2135 ,2,822,65385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493440 ,2,827,29505 ,2,828,421640 ,1,0,623855 ,2,821,533660 ,2,822,16485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,624315 ,2,821,533770 ,1,0,560100 ,1,1,45 ,1,2,167770 ,2,822,65610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,421660 ,1,0,624510 ,2,821,535340 ,1,0,178585 ,2,822,70945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493455 ,2,827,75 ,2,828,421655 ,1,0,624985 ,2,821,536110 ,2,822,16495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,625245 ,2,821,536230 ,2,822,560100 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,625505 ,2,821,536630 ,1,0,7990 ,1,1,168995 ,1,2,175845 ,1,3,346850 ,1,4,346840 ,1,5,10715 ,1,6,2210 ,1,7,542350 ,2,822,65620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493665 ,2,827,75 ,2,828,421940 ,1,0,625900 ,2,821,541215 ,1,0,346830 ,1,1,346790 ,2,822,70865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493650 ,2,827,30175 ,2,828,421910 ,1,0,626150 ,2,821,543665 ,1,1,2395 ,2,822,65630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,421690 ,1,0,626670 ,2,821,544195 ,1,1,2395 ,2,822,65665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,421695 ,1,0,626860 ,2,821,544665 ,2,822,66325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493580 ,2,827,75 ,2,828,421845 ,1,0,627400 ,2,821,545135 ,2,822,66230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493520 ,2,827,75 ,2,828,421825 ,1,0,627660 ,2,821,547815 ,2,822,65675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493470 ,2,827,75 ,2,828,421700 ,1,0,627955 ,2,821,550095 ,2,822,16520 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,628340 ,2,821,550205 ,1,0,555615 ,2,822,65695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,421725 ,1,0,628570 ,2,821,551160 ,2,822,16540 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,629085 ,2,821,551245 ,2,822,65720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421705 ,1,0,629270 ,2,821,552310 ,2,822,65765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421730 ,1,0,629780 ,2,821,553460 ,2,822,65785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421735 ,1,0,630050 ,2,821,554580 ,1,0,606510 ,1,1,45 ,1,2,11510 ,2,822,65985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493485 ,2,827,75 ,2,828,421765 ,1,0,630270 ,2,821,557865 ,1,0,557415 ,1,1,1450 ,1,2,166335 ,2,822,66140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493475 ,2,827,25980 ,2,828,421740 ,1,0,630645 ,2,821,561720 ,2,822,66015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493495 ,2,827,29895 ,2,828,421775 ,1,0,630920 ,2,821,565410 ,2,822,66220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493490 ,2,827,75 ,2,828,421770 ,1,0,631475 ,2,821,569595 ,1,0,45 ,1,1,11510 ,2,822,66090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493500 ,2,827,75 ,2,828,421780 ,1,0,631665 ,2,821,572955 ,2,822,66160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493510 ,2,827,25980 ,2,828,421790 ,1,0,632175 ,2,821,575090 ,2,822,66180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493505 ,2,827,29905 ,2,828,421785 ,1,0,632435 ,2,821,577495 ,2,822,66190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493515 ,2,827,75 ,2,828,421795 ,1,0,632705 ,2,821,578160 ,2,822,66200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,421800 ,1,0,633080 ,2,821,578620 ,2,822,16610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,633325 ,2,821,578720 ,2,822,66265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493565 ,2,827,75 ,2,828,421830 ,1,0,633935 ,2,821,579415 ,1,0,607400 ,1,1,45 ,1,2,346885 ,2,822,66275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493570 ,2,827,75 ,2,828,421835 ,1,0,634130 ,2,821,581605 ,2,822,66285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,634750 ,2,821,582075 ,1,0,545195 ,2,822,66315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493575 ,2,827,75 ,2,828,421840 ,1,0,635005 ,2,821,583785 ,1,0,545935 ,1,1,65610 ,2,822,70955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493590 ,2,827,29945 ,2,828,421850 ,1,0,635440 ,2,821,584875 ,2,822,66745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493645 ,2,827,29955 ,2,828,421855 ,1,0,635980 ,2,821,594965 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,66370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493595 ,2,827,75 ,2,828,421860 ,1,0,636395 ,2,821,600540 ,1,0,545270 ,1,1,222890 ,2,822,66420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493600 ,2,827,75 ,2,828,421880 ,1,0,637015 ,2,821,601945 ,2,822,16665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,637200 ,2,821,602040 ,2,822,66520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493635 ,2,827,75 ,2,828,421895 ,1,0,637805 ,2,821,607865 ,2,822,66695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493630 ,2,827,75 ,2,828,421890 ,1,0,638050 ,2,821,610615 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,66600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493605 ,2,827,30070 ,2,828,421885 ,1,0,638485 ,2,821,616445 ,2,822,66590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493640 ,2,827,30115 ,2,828,421900 ,1,0,639015 ,2,821,625810 ,2,822,66650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,421905 ,1,0,639450 ,2,821,626905 ,1,0,173175 ,1,1,373855 ,2,822,66805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493660 ,2,827,30295 ,2,828,421935 ,1,0,640120 ,2,821,627930 ,1,0,176020 ,1,1,558275 ,1,2,45 ,1,3,176030 ,1,4,374115 ,1,5,374105 ,2,822,66755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493655 ,2,827,75 ,2,828,421915 ,1,0,640305 ,2,821,629775 ,1,0,222965 ,2,822,66815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494440 ,2,827,75 ,2,828,422840 ,1,0,640985 ,2,821,632700 ,2,822,66825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493690 ,2,827,75 ,2,828,421945 ,1,0,641240 ,2,821,633395 ,1,0,560425 ,1,1,45 ,1,2,2820 ,2,822,66835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493695 ,2,827,75 ,2,828,421950 ,1,0,641640 ,2,821,634735 ,2,822,66895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,642185 ,2,821,635000 ,2,822,66905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,642520 ,2,821,635155 ,2,822,16730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,643155 ,2,821,635255 ,2,822,66950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494020 ,2,827,30445 ,2,828,421960 ,1,0,643330 ,2,821,636465 ,1,0,373880 ,2,822,66970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,643985 ,2,821,636610 ,2,822,66980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493700 ,2,827,75 ,2,828,421965 ,1,0,644235 ,2,821,637650 ,2,822,16755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,644575 ,2,821,637745 ,1,0,560515 ,1,1,45 ,1,2,347195 ,1,3,560480 ,1,4,45 ,1,5,198270 ,1,6,45 ,1,7,347180 ,1,8,45 ,1,9,177250 ,2,822,67010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493730 ,2,827,75 ,2,828,421995 ,1,0,645075 ,2,821,641155 ,1,0,220840 ,2,822,70475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493725 ,2,827,75 ,2,828,421990 ,1,0,645410 ,2,821,642020 ,2,822,69505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493720 ,2,827,75 ,2,828,421985 ,1,0,646060 ,2,821,643890 ,2,822,69515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493715 ,2,827,75 ,2,828,421975 ,1,0,646255 ,2,821,645385 ,1,0,344330 ,2,822,67020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493705 ,2,827,75 ,2,828,421970 ,1,0,646870 ,2,821,646280 ,2,822,67045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,422060 ,1,0,647145 ,2,821,646670 ,1,0,171505 ,1,1,171495 ,1,2,171450 ,1,3,612285 ,1,4,612505 ,1,5,612510 ,1,6,612290 ,2,822,67520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493800 ,2,827,30815 ,2,828,422055 ,1,0,647515 ,2,821,651080 ,1,0,60235 ,2,822,67055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493765 ,2,827,30585 ,2,828,422000 ,1,0,647955 ,2,821,652995 ,1,0,220830 ,2,822,67095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493770 ,2,827,75 ,2,828,422005 ,1,0,648345 ,2,821,654390 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,67115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493775 ,2,827,30685 ,2,828,422010 ,1,0,648815 ,2,821,660615 ,2,822,560570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,649030 ,2,821,661635 ,2,822,16850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,649565 ,2,821,661725 ,1,0,45 ,1,1,11510 ,2,822,67310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493780 ,2,827,75 ,2,828,422015 ,1,0,649820 ,2,821,665860 ,1,0,45 ,1,1,11510 ,1,2,560570 ,1,3,45 ,1,4,11510 ,2,822,67355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493785 ,2,827,30740 ,2,828,422020 ,1,0,650115 ,2,821,668475 ,2,822,67375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493790 ,2,827,75 ,2,828,422045 ,1,0,650580 ,2,821,671615 ,2,822,16820 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,650910 ,2,821,671735 ,2,822,16865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,651495 ,2,821,671825 ,1,0,557365 ,2,822,67215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493795 ,2,827,75 ,2,828,422050 ,1,0,651680 ,2,821,672885 ,2,822,16830 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,652270 ,2,821,672970 ,2,822,16875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,652545 ,2,821,673070 ,1,0,45 ,1,1,318420 ,2,822,67650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493835 ,2,827,75 ,2,828,422075 ,1,0,652830 ,2,821,674000 ,1,0,45 ,1,1,9435 ,2,822,67675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493840 ,2,827,75 ,2,828,422080 ,1,0,653270 ,2,821,674910 ,1,0,45 ,1,1,9435 ,2,822,67695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493845 ,2,827,30980 ,2,828,422085 ,1,0,653565 ,2,821,1655 ,2,822,67745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,422090 ,1,0,654040 ,2,821,2505 ,1,0,2280 ,1,1,542230 ,1,2,45 ,1,3,13320 ,2,822,67890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493860 ,2,827,31120 ,2,828,422135 ,1,0,654245 ,2,821,7060 ,1,0,176845 ,1,1,220850 ,1,2,2280 ,1,3,542230 ,1,4,560665 ,1,5,45 ,1,6,13320 ,1,7,337310 ,2,822,67900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493865 ,2,827,31120 ,2,828,422140 ,1,0,654795 ,2,821,12405 ,2,822,67945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,422150 ,1,0,655045 ,2,821,13205 ,1,0,177335 ,2,822,67965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493870 ,2,827,30445 ,2,828,422145 ,1,0,655325 ,2,821,16460 ,1,0,554415 ,1,1,177200 ,2,822,67955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493910 ,2,827,30445 ,2,828,422160 ,1,0,655740 ,2,821,19855 ,2,822,16895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,656050 ,2,821,20020 ,1,0,374205 ,2,822,68160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493915 ,2,827,75 ,2,828,422165 ,1,0,656540 ,2,821,22600 ,1,0,543965 ,1,1,189760 ,2,822,68170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493920 ,2,827,75 ,2,828,422170 ,1,0,656715 ,2,821,25175 ,1,0,177325 ,2,822,68255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493925 ,2,827,75 ,2,828,422175 ,1,0,657280 ,2,821,33135 ,2,822,16930 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,657500 ,2,821,33305 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,45 ,1,7,310080 ,2,822,68530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493935 ,2,827,75 ,2,828,422195 ,1,0,657830 ,2,821,38370 ,2,822,69495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,422190 ,1,0,658260 ,2,821,39010 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,560765 ,1,7,45 ,1,8,176730 ,1,9,560945 ,1,10,45 ,1,11,176720 ,2,822,68565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493950 ,2,827,75 ,2,828,422215 ,1,0,658575 ,2,821,44985 ,1,0,612405 ,1,1,373890 ,1,2,256190 ,1,3,337285 ,2,822,69525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493945 ,2,827,31835 ,2,828,422205 ,1,0,659090 ,2,821,50950 ,1,0,373980 ,1,1,373970 ,1,2,373960 ,1,3,373950 ,1,4,373940 ,1,5,373900 ,1,6,374085 ,1,7,374075 ,1,8,374055 ,1,9,374065 ,1,10,374000 ,1,11,374010 ,1,12,373990 ,1,13,545755 ,2,822,68575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493940 ,2,827,75 ,2,828,422200 ,1,0,659260 ,2,821,62620 ,2,822,16940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,659840 ,2,821,62790 ,2,822,560945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,660085 ,2,821,64140 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,45 ,1,7,210905 ,1,8,45 ,1,9,5080 ,2,822,69010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493985 ,2,827,75 ,2,828,422225 ,1,0,660400 ,2,821,69765 ,2,822,69385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493980 ,2,827,75 ,2,828,422220 ,1,0,660835 ,2,821,71205 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,560655 ,1,7,45 ,1,8,210905 ,1,9,45 ,1,10,5080 ,2,822,69040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493985 ,2,827,75 ,2,828,422255 ,1,0,661155 ,2,821,76760 ,1,0,556375 ,1,1,177515 ,2,822,69395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493990 ,2,827,75 ,2,828,422230 ,1,0,661665 ,2,821,78330 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,45 ,1,7,2820 ,2,822,69105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494005 ,2,827,75 ,2,828,422265 ,1,0,661850 ,2,821,83265 ,1,0,177495 ,2,822,69415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493995 ,2,827,75 ,2,828,422260 ,1,0,662455 ,2,821,85795 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,558085 ,1,7,45 ,1,8,177250 ,2,822,69125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494010 ,2,827,75 ,2,828,422270 ,1,0,662690 ,2,821,90385 ,2,822,69245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,32185 ,2,828,422275 ,1,0,663020 ,2,821,91260 ,1,0,179120 ,2,822,69280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,422280 ,1,0,663465 ,2,821,92250 ,2,822,69300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,422285 ,1,0,663780 ,2,821,93395 ,2,822,69310 ,2,823,540645 ,2,824,418070 ,2,825,351990 ,2,826,494040 ,2,827,32185 ,2,828,422290 ,1,0,664255 ,2,821,98395 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,561060 ,1,7,45 ,1,8,2820 ,2,822,69320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494045 ,2,827,75 ,2,828,422320 ,1,0,664450 ,2,821,106005 ,1,0,10540 ,2,822,69340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494050 ,2,827,30445 ,2,828,422325 ,1,0,664985 ,2,821,107310 ,1,0,45 ,1,1,310080 ,2,822,69350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,422330 ,1,0,665220 ,2,821,109685 ,1,0,166410 ,1,1,176740 ,1,2,177055 ,2,822,69405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494055 ,2,827,30445 ,2,828,422335 ,1,0,665515 ,2,821,112255 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,561085 ,1,7,45 ,1,8,2820 ,2,822,69435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494060 ,2,827,75 ,2,828,422340 ,1,0,665950 ,2,821,119095 ,2,822,69455 ,2,823,540650 ,2,824,418075 ,2,825,352000 ,2,826,494065 ,2,827,30445 ,2,828,422345 ,1,0,666260 ,2,821,121505 ,1,1,2395 ,2,822,69485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493270 ,2,827,75 ,2,828,422350 ,1,0,666745 ,2,821,122510 ,2,822,69535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494070 ,2,827,75 ,2,828,422380 ,1,0,666940 ,2,821,124740 ,1,1,2395 ,2,822,70640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493270 ,2,827,75 ,2,828,422355 ,1,0,667520 ,2,821,125725 ,2,822,69545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494075 ,2,827,75 ,2,828,422385 ,1,0,667755 ,2,821,127820 ,2,822,69555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494110 ,2,827,30445 ,2,828,422390 ,1,0,668090 ,2,821,129135 ,1,0,45 ,1,1,177250 ,2,822,69575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494115 ,2,827,75 ,2,828,422395 ,1,0,668485 ,2,821,132100 ,2,822,69585 ,2,823,540655 ,2,824,418110 ,2,825,352010 ,2,826,494120 ,2,827,32185 ,2,828,422410 ,1,0,668790 ,2,821,137255 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,561090 ,1,7,45 ,1,8,2820 ,1,9,608050 ,1,10,45 ,1,11,340435 ,2,822,69595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494125 ,2,827,75 ,2,828,422415 ,1,0,669255 ,2,821,145700 ,1,0,543185 ,1,1,561220 ,1,2,543185 ,1,3,12865 ,2,822,69620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494300 ,2,827,32775 ,2,828,422680 ,1,0,669450 ,2,821,153060 ,1,0,557230 ,2,822,70250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494290 ,2,827,32775 ,2,828,422645 ,1,0,670020 ,2,821,157660 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,223190 ,2,822,70240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494285 ,2,827,32735 ,2,828,422635 ,1,0,670240 ,2,821,165085 ,2,822,69630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,670555 ,2,821,166210 ,2,822,69640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494135 ,2,827,32185 ,2,828,422425 ,1,0,671005 ,2,821,168130 ,1,0,223565 ,2,822,69975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494130 ,2,827,75 ,2,828,422420 ,1,0,671325 ,2,821,170305 ,2,822,69735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,671830 ,2,821,170890 ,1,0,344240 ,1,1,561110 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,2,822,69695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494195 ,2,827,32735 ,2,828,422505 ,1,0,672020 ,2,821,176415 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,344230 ,1,5,223690 ,2,822,69825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494145 ,2,827,32735 ,2,828,422455 ,1,0,672540 ,2,821,185745 ,2,822,70195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494140 ,2,827,75 ,2,828,422450 ,1,0,672795 ,2,821,187095 ,2,822,69845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,673125 ,2,821,188095 ,1,0,344295 ,1,1,178685 ,1,2,176345 ,1,3,177485 ,1,4,223835 ,1,5,223800 ,1,6,223790 ,1,7,543300 ,1,8,561220 ,1,9,543300 ,1,10,344265 ,1,11,561115 ,1,12,45 ,1,13,13320 ,1,14,45 ,1,15,13320 ,1,16,45 ,1,17,11510 ,1,18,560750 ,1,19,45 ,1,20,13320 ,2,822,69745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494185 ,2,827,32530 ,2,828,422495 ,1,0,673570 ,2,821,228210 ,1,0,223760 ,1,1,223740 ,1,2,547255 ,1,3,165925 ,1,4,12355 ,1,5,223730 ,2,822,70185 ,2,823,540660 ,2,824,418115 ,2,825,352020 ,2,826,494175 ,2,827,75 ,2,828,422465 ,1,0,673900 ,2,821,232320 ,1,0,177530 ,1,1,165915 ,1,2,177115 ,2,822,70355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494170 ,2,827,32480 ,2,828,422460 ,1,0,674410 ,2,821,238380 ,1,0,45 ,1,1,13320 ,2,822,69955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494180 ,2,827,75 ,2,828,422490 ,1,0,674585 ,2,821,239610 ,1,0,45 ,1,1,13320 ,2,822,69985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494190 ,2,827,75 ,2,828,422500 ,1,0,25 ,2,821,241375 ,2,822,69705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,505 ,2,821,242380 ,2,822,69715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,1075 ,2,821,243215 ,1,0,596550 ,1,1,45 ,1,2,11510 ,1,3,543305 ,1,4,561100 ,1,5,543305 ,1,6,608060 ,1,7,45 ,1,8,13320 ,2,822,69725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494230 ,2,827,75 ,2,828,422560 ,1,0,1805 ,2,821,247720 ,1,0,223845 ,1,1,177345 ,2,822,69935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494200 ,2,827,75 ,2,828,422550 ,1,0,2370 ,2,821,249675 ,1,0,45 ,1,1,11510 ,1,2,543245 ,1,3,561095 ,1,4,543245 ,1,5,223680 ,2,822,69915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494205 ,2,827,75 ,2,828,422555 ,1,0,3220 ,2,821,255590 ,1,0,45 ,1,1,177250 ,2,822,69795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,422565 ,1,0,3540 ,2,821,258745 ,1,0,45 ,1,1,11510 ,2,822,69805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494240 ,2,827,75 ,2,828,422570 ,1,0,4480 ,2,821,260725 ,2,822,69835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,4945 ,2,821,261285 ,2,822,69865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494245 ,2,827,75 ,2,828,422575 ,1,0,5440 ,2,821,262430 ,1,0,561160 ,1,1,45 ,1,2,13320 ,2,822,70005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494255 ,2,827,32595 ,2,828,422580 ,1,0,6200 ,2,821,264200 ,1,0,543265 ,1,1,561245 ,1,2,543265 ,1,3,557340 ,1,4,561155 ,1,5,45 ,1,6,13320 ,1,7,596545 ,1,8,45 ,1,9,13320 ,1,10,557310 ,1,11,165945 ,1,12,176690 ,1,13,45 ,1,14,13320 ,2,822,70015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494260 ,2,827,75 ,2,828,422585 ,1,0,6715 ,2,821,270820 ,1,0,561165 ,1,1,45 ,1,2,13320 ,1,3,557305 ,2,822,70025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494265 ,2,827,32630 ,2,828,422620 ,1,0,7615 ,2,821,273870 ,1,0,608115 ,1,1,45 ,1,2,344250 ,1,3,557300 ,1,4,561170 ,1,5,45 ,1,6,13320 ,2,822,70035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494270 ,2,827,32640 ,2,828,422625 ,1,0,7930 ,2,821,277030 ,2,822,70060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,8920 ,2,821,277525 ,2,822,70165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,9315 ,2,821,277670 ,2,822,70220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,9845 ,2,821,277840 ,1,0,45 ,1,1,11510 ,1,2,543255 ,1,3,561100 ,1,4,543255 ,1,5,543250 ,1,6,561095 ,1,7,543250 ,1,8,45 ,1,9,13320 ,2,822,70230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494280 ,2,827,75 ,2,828,422630 ,1,0,10560 ,2,821,284930 ,2,822,16970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,11120 ,2,821,285070 ,2,822,70280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494295 ,2,827,75 ,2,828,422650 ,1,0,11990 ,2,821,285555 ,2,822,16990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,12305 ,2,821,285720 ,1,0,45 ,1,1,3825 ,2,822,70305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,422655 ,1,0,13260 ,2,821,288015 ,1,0,45 ,1,1,11510 ,2,822,69905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,422660 ,1,0,13690 ,2,821,289865 ,2,822,16960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,14245 ,2,821,290030 ,1,0,347180 ,1,1,337295 ,2,822,70315 ,2,823,540665 ,2,824,418120 ,2,825,352030 ,2,826,494305 ,2,827,32185 ,2,828,422685 ,1,0,14980 ,2,821,295065 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,561225 ,1,7,45 ,1,8,2820 ,1,9,608150 ,1,10,45 ,1,11,337180 ,1,12,608145 ,1,13,45 ,1,14,337170 ,2,822,70325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494310 ,2,827,75 ,2,828,422690 ,1,0,15520 ,2,821,304440 ,1,0,543170 ,1,1,561245 ,1,2,543170 ,1,3,165495 ,1,4,177150 ,1,5,543140 ,1,6,596545 ,1,7,543140 ,1,8,341200 ,1,9,341190 ,1,10,341180 ,2,822,70345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494315 ,2,827,75 ,2,828,422695 ,1,0,16270 ,2,821,311840 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,561230 ,1,7,45 ,1,8,2820 ,2,822,70375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494350 ,2,827,75 ,2,828,422700 ,1,0,16570 ,2,821,318375 ,1,0,178840 ,1,1,176720 ,1,2,557515 ,1,3,1460 ,1,4,178850 ,1,5,557510 ,1,6,170230 ,1,7,256160 ,1,8,224095 ,1,9,166435 ,1,10,9355 ,2,822,70435 ,2,823,540670 ,2,824,418125 ,2,825,352060 ,2,826,494355 ,2,827,32185 ,2,828,422705 ,1,0,17430 ,2,821,325490 ,1,0,45 ,1,1,347195 ,1,2,45 ,1,3,198270 ,1,4,45 ,1,5,347180 ,1,6,561235 ,1,7,45 ,1,8,2820 ,2,822,70455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494350 ,2,827,75 ,2,828,422700 ,1,0,18100 ,2,821,332050 ,1,0,612460 ,2,822,70485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,422710 ,1,0,18430 ,2,821,332760 ,1,1,2395 ,2,822,70510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492610 ,2,827,75 ,2,828,422715 ,1,0,18725 ,2,821,333810 ,2,822,70565 ,2,823,540710 ,2,824,418130 ,2,825,352070 ,2,826,494360 ,2,827,75 ,2,828,422750 ,1,0,19390 ,2,821,336530 ,2,822,70575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494365 ,2,827,75 ,2,828,422755 ,1,0,19800 ,2,821,338000 ,1,1,2395 ,2,822,70585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494375 ,2,827,75 ,2,828,422760 ,1,0,20150 ,2,821,338995 ,2,822,70650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493370 ,2,827,33210 ,2,828,422780 ,1,0,20565 ,2,821,339810 ,2,822,70660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494380 ,2,827,32775 ,2,828,422765 ,1,0,20985 ,2,821,341860 ,1,0,177360 ,2,822,70680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494385 ,2,827,30445 ,2,828,422770 ,1,0,21720 ,2,821,347540 ,2,822,17065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,22075 ,2,821,347725 ,1,0,45 ,1,1,177250 ,2,822,70725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,422775 ,1,0,22700 ,2,821,350935 ,2,822,70785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494390 ,2,827,75 ,2,828,422810 ,1,0,23030 ,2,821,353145 ,2,822,70795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494425 ,2,827,75 ,2,828,422815 ,1,0,23385 ,2,821,357010 ,2,822,70835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,24150 ,2,821,357465 ,2,822,70845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,24720 ,2,821,357630 ,2,822,70855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,25290 ,2,821,357790 ,1,0,221575 ,2,822,70620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494430 ,2,827,30445 ,2,828,422820 ,1,0,25830 ,2,821,360750 ,2,822,70520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494435 ,2,827,30445 ,2,828,422825 ,1,0,26145 ,2,821,362905 ,2,822,70825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494380 ,2,827,32775 ,2,828,422835 ,1,0,27115 ,2,821,365125 ,2,822,17035 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,28105 ,2,821,365265 ,2,822,561335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,28540 ,2,821,366240 ,2,822,70875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494445 ,2,827,30175 ,2,828,422845 ,1,0,28855 ,2,821,367900 ,2,822,70885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494445 ,2,827,30175 ,2,828,422850 ,1,0,29540 ,2,821,369530 ,1,0,346965 ,1,1,346955 ,1,2,346945 ,1,3,346905 ,1,4,346895 ,2,822,70925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494450 ,2,827,75 ,2,828,422875 ,1,0,30080 ,2,821,373865 ,2,822,70935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,422870 ,1,0,30525 ,2,821,374510 ,2,822,561340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,30940 ,2,821,375485 ,1,0,173945 ,2,822,70975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494580 ,2,827,33290 ,2,828,422885 ,1,0,31500 ,2,821,382230 ,2,822,17075 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,32005 ,2,821,382340 ,2,822,17085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,32405 ,2,821,382425 ,2,822,70995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494490 ,2,827,33345 ,2,828,422905 ,1,0,32835 ,2,821,401610 ,2,822,71170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494460 ,2,827,33290 ,2,828,422890 ,1,0,33370 ,2,821,402660 ,2,822,71075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494485 ,2,827,33290 ,2,828,422895 ,1,0,33675 ,2,821,404280 ,2,822,71055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494485 ,2,827,33290 ,2,828,422900 ,1,0,34230 ,2,821,405855 ,2,822,561380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,34845 ,2,821,406290 ,2,822,71015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494495 ,2,827,75 ,2,828,422935 ,1,0,35425 ,2,821,406830 ,2,822,71025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494500 ,2,827,33380 ,2,828,422940 ,1,0,35830 ,2,821,409655 ,2,822,71045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494510 ,2,827,33390 ,2,828,422945 ,1,0,36285 ,2,821,413125 ,2,822,71085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494525 ,2,827,33420 ,2,828,422960 ,1,0,36685 ,2,821,414830 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,71120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494515 ,2,827,75 ,2,828,422950 ,1,0,37220 ,2,821,416285 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,71130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494520 ,2,827,75 ,2,828,422955 ,1,0,37845 ,2,821,418185 ,2,822,71160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494545 ,2,827,33420 ,2,828,422965 ,1,0,38260 ,2,821,419645 ,2,822,71180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494555 ,2,827,33440 ,2,828,422980 ,1,0,38600 ,2,821,435985 ,2,822,71470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494550 ,2,827,33430 ,2,828,422970 ,1,0,39235 ,2,821,439145 ,2,822,71190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494560 ,2,827,33450 ,2,828,422985 ,1,0,39795 ,2,821,452950 ,1,0,561375 ,2,822,71315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494565 ,2,827,33600 ,2,828,422990 ,1,0,40210 ,2,821,457040 ,2,822,71325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494565 ,2,827,33600 ,2,828,422995 ,1,0,40780 ,2,821,461150 ,2,822,71335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494570 ,2,827,33600 ,2,828,423005 ,1,0,41225 ,2,821,465305 ,1,0,164635 ,2,822,71345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494575 ,2,827,75 ,2,828,423010 ,1,0,41750 ,2,821,466880 ,1,0,415 ,2,822,71355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494600 ,2,827,75 ,2,828,423015 ,1,0,42155 ,2,821,467555 ,2,822,71365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492295 ,2,827,75 ,2,828,423020 ,1,0,42905 ,2,821,468475 ,2,822,71375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,43240 ,2,821,468655 ,1,0,612495 ,2,822,71385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494605 ,2,827,75 ,2,828,423055 ,1,0,43890 ,2,821,469340 ,1,0,557495 ,1,1,1435 ,1,2,177280 ,2,822,71445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494610 ,2,827,30445 ,2,828,423060 ,1,0,44335 ,2,821,471535 ,1,0,346420 ,2,822,71455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494615 ,2,827,39440 ,2,828,423065 ,1,0,44685 ,2,821,472295 ,1,0,347090 ,1,1,374685 ,1,2,557485 ,1,3,166400 ,2,822,71480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494625 ,2,827,39440 ,2,828,423080 ,1,0,45405 ,2,821,473595 ,1,0,455 ,1,1,224085 ,2,822,73815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494620 ,2,827,30445 ,2,828,423070 ,1,0,45740 ,2,821,476825 ,1,0,45 ,1,1,186970 ,1,2,45 ,1,3,347100 ,1,4,561430 ,1,5,45 ,1,6,347205 ,2,822,71490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494630 ,2,827,75 ,2,828,423085 ,1,0,46345 ,2,821,479155 ,2,822,561430 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,46765 ,2,821,479545 ,1,0,224175 ,1,1,2280 ,1,2,542290 ,2,822,71500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494635 ,2,827,75 ,2,828,423090 ,1,0,47110 ,2,821,480545 ,1,0,600015 ,1,1,45 ,1,2,347225 ,1,3,45 ,1,4,347215 ,1,5,561435 ,1,6,45 ,1,7,347205 ,2,822,71525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494670 ,2,827,75 ,2,828,423095 ,1,0,47810 ,2,821,482345 ,1,0,346410 ,2,822,71545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494680 ,2,827,39440 ,2,828,423120 ,1,0,48125 ,2,821,483295 ,1,0,177540 ,2,822,71690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494675 ,2,827,30445 ,2,828,423115 ,1,0,48975 ,2,821,484680 ,1,0,4195 ,1,1,557380 ,1,2,346180 ,1,3,346150 ,1,4,346140 ,2,822,71555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494685 ,2,827,33700 ,2,828,423125 ,1,0,49800 ,2,821,494080 ,1,0,45 ,1,1,346190 ,2,822,71575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494695 ,2,827,75 ,2,828,423130 ,1,0,50215 ,2,821,495305 ,1,0,346515 ,2,822,71585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494700 ,2,827,39440 ,2,828,423150 ,1,0,50765 ,2,821,496270 ,1,0,45 ,1,1,242470 ,2,822,71595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494705 ,2,827,75 ,2,828,423155 ,1,0,51275 ,2,821,497610 ,2,822,71605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,51945 ,2,821,497750 ,1,0,612490 ,2,822,71640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,423160 ,1,0,52470 ,2,821,498510 ,2,822,71650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494740 ,2,827,33720 ,2,828,423165 ,1,0,53025 ,2,821,505725 ,2,822,71660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494710 ,2,827,75 ,2,828,423180 ,1,0,53460 ,2,821,508325 ,1,0,545975 ,1,1,222195 ,2,822,71670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494745 ,2,827,33755 ,2,828,423185 ,1,0,53895 ,2,821,510970 ,2,822,71680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494750 ,2,827,75 ,2,828,423190 ,1,0,54240 ,2,821,513000 ,2,822,71700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,54860 ,2,821,513195 ,1,0,612465 ,2,822,71710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,423195 ,1,0,55195 ,2,821,513930 ,2,822,71735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494755 ,2,827,75 ,2,828,423205 ,1,0,55610 ,2,821,517450 ,2,822,71745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494760 ,2,827,75 ,2,828,423210 ,1,0,55950 ,2,821,520785 ,2,822,71780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495010 ,2,827,33830 ,2,828,423250 ,1,0,56670 ,2,821,522455 ,1,1,2395 ,1,2,561455 ,1,3,45 ,1,4,9470 ,2,822,71790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492925 ,2,827,75 ,2,828,423220 ,1,0,57020 ,2,821,524935 ,2,822,71800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493025 ,2,827,75 ,2,828,423245 ,1,0,57675 ,2,821,526375 ,2,822,17160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,58105 ,2,821,526465 ,2,822,71855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,423255 ,1,0,58420 ,2,821,526940 ,2,822,561460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,59155 ,2,821,527360 ,1,0,45 ,1,1,9435 ,2,822,71875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,423260 ,1,0,59680 ,2,821,528330 ,1,0,45 ,1,1,9435 ,2,822,71895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,423270 ,1,0,60200 ,2,821,529265 ,2,822,71945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494770 ,2,827,75 ,2,828,423275 ,1,0,60710 ,2,821,531465 ,2,822,17195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,61040 ,2,821,531565 ,2,822,71965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494795 ,2,827,75 ,2,828,423285 ,1,0,61685 ,2,821,532760 ,2,822,72700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494775 ,2,827,75 ,2,828,423280 ,1,0,62205 ,2,821,537765 ,2,822,71985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,423315 ,1,0,62635 ,2,821,538100 ,2,822,71995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,423320 ,1,0,62950 ,2,821,538440 ,2,822,72015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,423325 ,1,0,63285 ,2,821,539500 ,2,822,72050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494805 ,2,827,75 ,2,828,423340 ,1,0,64045 ,2,821,540590 ,2,822,72375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494800 ,2,827,75 ,2,828,423330 ,1,0,64375 ,2,821,545130 ,2,822,72060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494810 ,2,827,34025 ,2,828,423345 ,1,0,65035 ,2,821,546645 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,72080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494835 ,2,827,34035 ,2,828,423350 ,1,0,65325 ,2,821,560020 ,2,822,72140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494820 ,2,827,75 ,2,828,423380 ,1,0,65645 ,2,821,561470 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,72200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,423355 ,1,0,65940 ,2,821,562595 ,2,822,72150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494820 ,2,827,75 ,2,828,423390 ,1,0,66240 ,2,821,564005 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,72210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,423385 ,1,0,66560 ,2,821,565055 ,2,822,72170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494825 ,2,827,75 ,2,828,423410 ,1,0,67295 ,2,821,566870 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,72255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,423395 ,1,0,67595 ,2,821,567965 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,72180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,423415 ,1,0,68235 ,2,821,569055 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,72190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492010 ,2,827,75 ,2,828,423420 ,1,0,68655 ,2,821,570170 ,1,0,543865 ,1,1,608290 ,1,2,6880 ,1,3,45 ,1,4,7585 ,1,5,45 ,1,6,11085 ,1,7,45 ,1,8,5900 ,1,9,2210 ,1,10,542350 ,2,822,72275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494830 ,2,827,34110 ,2,828,423425 ,1,0,69060 ,2,821,579165 ,2,822,72310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494855 ,2,827,34130 ,2,828,423455 ,1,0,69775 ,2,821,582045 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,72320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494860 ,2,827,34150 ,2,828,423460 ,1,0,70120 ,2,821,595525 ,2,822,72385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494865 ,2,827,75 ,2,828,423465 ,1,0,70705 ,2,821,600405 ,2,822,72395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494870 ,2,827,75 ,2,828,423470 ,1,0,71115 ,2,821,605215 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,72405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494880 ,2,827,34160 ,2,828,423475 ,1,0,71520 ,2,821,618180 ,2,822,72425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,423480 ,1,0,72250 ,2,821,619335 ,2,822,72435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494950 ,2,827,34130 ,2,828,423575 ,1,0,72570 ,2,821,621650 ,2,822,17215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,73165 ,2,821,621730 ,2,822,72445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,423485 ,1,0,73590 ,2,821,622175 ,1,0,45 ,1,1,9435 ,2,822,72490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,423490 ,1,0,73990 ,2,821,623075 ,1,0,561490 ,1,1,45 ,1,2,9435 ,2,822,72510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,423525 ,1,0,74705 ,2,821,624020 ,2,822,72530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494885 ,2,827,75 ,2,828,423530 ,1,0,75010 ,2,821,626770 ,2,822,72550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,423535 ,1,0,75645 ,2,821,627925 ,2,822,72580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494890 ,2,827,75 ,2,828,423540 ,1,0,76030 ,2,821,629115 ,2,822,72610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494895 ,2,827,75 ,2,828,423545 ,1,0,76465 ,2,821,631265 ,2,822,72650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494940 ,2,827,34290 ,2,828,423550 ,1,0,77195 ,2,821,635795 ,2,822,72670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494945 ,2,827,75 ,2,828,423555 ,1,0,77500 ,2,821,637925 ,2,822,72680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494890 ,2,827,75 ,2,828,423560 ,1,0,78035 ,2,821,639085 ,2,822,561515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,78340 ,2,821,639495 ,2,822,72720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494955 ,2,827,34310 ,2,828,423580 ,1,0,78710 ,2,821,645070 ,2,822,72730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494970 ,2,827,34290 ,2,828,423585 ,1,0,79440 ,2,821,659600 ,2,822,561500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,79750 ,2,821,660025 ,2,822,72790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494975 ,2,827,75 ,2,828,423590 ,1,0,80275 ,2,821,662175 ,2,822,72810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494980 ,2,827,75 ,2,828,423600 ,1,0,80605 ,2,821,663440 ,2,822,72825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494985 ,2,827,75 ,2,828,423605 ,1,0,80950 ,2,821,664605 ,2,822,72855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494940 ,2,827,34290 ,2,828,423610 ,1,0,81650 ,2,821,669005 ,1,0,173075 ,1,1,557450 ,1,2,166390 ,1,3,166380 ,1,4,166345 ,1,5,347060 ,1,6,465 ,2,822,72905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495015 ,2,827,34410 ,2,828,423615 ,1,0,81990 ,2,821,167230 ,2,822,17250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,82530 ,2,821,167405 ,2,822,17260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,82845 ,2,821,167560 ,1,0,550905 ,1,1,75 ,1,2,10665 ,1,3,9535 ,1,4,347120 ,1,5,557500 ,2,822,72935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495040 ,2,827,34470 ,2,828,423665 ,1,0,83175 ,2,821,178385 ,2,822,17270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,83905 ,2,821,178535 ,1,0,15970 ,1,1,272710 ,2,822,72975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495020 ,2,827,34450 ,2,828,423635 ,1,0,84430 ,2,821,181115 ,1,0,370810 ,1,1,370790 ,2,822,72985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495035 ,2,827,30980 ,2,828,423645 ,1,0,84950 ,2,821,182905 ,2,822,73020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495025 ,2,827,34460 ,2,828,423640 ,1,0,85525 ,2,821,184915 ,1,0,370755 ,2,822,72995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495035 ,2,827,30980 ,2,828,423650 ,1,0,85860 ,2,821,186765 ,1,0,370800 ,2,822,73005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495035 ,2,827,30980 ,2,828,423660 ,1,0,86485 ,2,821,188515 ,1,0,561570 ,1,1,45 ,1,2,347150 ,2,822,73030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494695 ,2,827,75 ,2,828,423670 ,1,0,86900 ,2,821,190545 ,2,822,73040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495070 ,2,827,34490 ,2,828,423675 ,1,0,87130 ,2,821,207310 ,2,822,561575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,87545 ,2,821,210060 ,1,1,2395 ,2,822,73085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,423705 ,1,0,87995 ,2,821,211225 ,1,1,2395 ,2,822,73095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423710 ,1,0,88745 ,2,821,212345 ,1,1,2395 ,2,822,73105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423715 ,1,0,89035 ,2,821,213510 ,1,1,2395 ,2,822,73115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423720 ,1,0,90100 ,2,821,214660 ,1,0,337510 ,2,822,73125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495050 ,2,827,34565 ,2,828,423725 ,1,0,90990 ,2,821,222160 ,1,1,2395 ,2,822,73145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,423730 ,1,0,91310 ,2,821,223300 ,1,1,2395 ,2,822,73175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,423735 ,1,0,91830 ,2,821,224475 ,1,1,2395 ,2,822,73185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423740 ,1,0,92150 ,2,821,225585 ,1,1,2395 ,2,822,73195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423785 ,1,0,92895 ,2,821,226725 ,1,1,2395 ,2,822,73205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,423790 ,1,0,93290 ,2,821,227825 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495065 ,2,827,75 ,2,828,423795 ,1,0,94035 ,2,821,229710 ,1,1,2395 ,2,822,73230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423800 ,1,0,94375 ,2,821,230855 ,1,1,2395 ,2,822,73240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,423805 ,1,0,95115 ,2,821,231990 ,1,1,2395 ,2,822,73305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,423810 ,1,0,95560 ,2,821,233100 ,1,1,2395 ,2,822,73315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,423815 ,1,0,95975 ,2,821,234220 ,1,0,346535 ,1,1,561580 ,1,2,346525 ,1,3,2210 ,1,4,542350 ,2,822,73325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495075 ,2,827,34810 ,2,828,423820 ,1,0,96710 ,2,821,238590 ,2,822,17295 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,97045 ,2,821,238750 ,1,0,45 ,1,1,4765 ,2,822,73415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495080 ,2,827,75 ,2,828,423835 ,1,0,97795 ,2,821,241025 ,1,0,345955 ,1,1,14905 ,1,2,345910 ,2,822,73425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495090 ,2,827,34905 ,2,828,423840 ,1,0,98345 ,2,821,285185 ,2,822,17305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,98875 ,2,821,285355 ,1,0,599940 ,1,1,45 ,1,2,241340 ,1,3,45 ,1,4,184220 ,1,5,45 ,1,6,182815 ,1,7,45 ,1,8,346130 ,1,9,45 ,1,10,346120 ,1,11,45 ,1,12,346100 ,1,13,45 ,1,14,346090 ,1,15,45 ,1,16,346080 ,1,17,45 ,1,18,346070 ,1,19,45 ,1,20,346030 ,1,21,45 ,1,22,346020 ,1,23,45 ,1,24,346010 ,1,25,45 ,1,26,346000 ,1,27,45 ,1,28,345985 ,1,29,45 ,1,30,345975 ,1,31,45 ,1,32,345965 ,2,822,73445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495095 ,2,827,75 ,2,828,423845 ,1,0,99300 ,2,821,299750 ,1,0,347070 ,1,1,557480 ,2,822,73455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495100 ,2,827,39440 ,2,828,423850 ,1,0,99735 ,2,821,301990 ,1,0,45 ,1,1,347080 ,2,822,73465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494705 ,2,827,75 ,2,828,423855 ,1,0,100530 ,2,821,304250 ,1,0,373835 ,1,1,568030 ,1,2,45 ,1,3,5900 ,1,4,221020 ,1,5,599980 ,1,6,45 ,1,7,5900 ,1,8,170415 ,1,9,241255 ,1,10,45 ,1,11,5900 ,1,12,241325 ,1,13,45 ,1,14,5900 ,2,822,73475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495130 ,2,827,75 ,2,828,423865 ,1,0,100850 ,2,821,311320 ,1,0,346455 ,1,1,370660 ,1,2,346445 ,1,3,346430 ,2,822,73965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495105 ,2,827,39440 ,2,828,423860 ,1,0,101645 ,2,821,314590 ,1,0,45 ,1,1,346465 ,2,822,73500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495080 ,2,827,75 ,2,828,423870 ,1,0,102115 ,2,821,316805 ,1,0,217960 ,2,822,73510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495135 ,2,827,75 ,2,828,423905 ,1,0,102845 ,2,821,318380 ,1,0,561645 ,1,1,45 ,1,2,5080 ,2,822,73530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493695 ,2,827,75 ,2,828,423915 ,1,0,103170 ,2,821,320655 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495140 ,2,827,75 ,2,828,423910 ,1,0,103945 ,2,821,322555 ,1,1,2395 ,1,2,561660 ,1,3,45 ,1,4,9470 ,2,822,73555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495145 ,2,827,75 ,2,828,423920 ,1,0,104375 ,2,821,324430 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495160 ,2,827,75 ,2,828,423930 ,1,0,105135 ,2,821,326205 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,423935 ,1,0,105500 ,2,821,328030 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495160 ,2,827,75 ,2,828,423945 ,1,0,106215 ,2,821,329920 ,1,0,73530 ,1,1,545995 ,2,822,73660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495170 ,2,827,35215 ,2,828,423970 ,1,0,106755 ,2,821,331285 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,423975 ,1,0,107320 ,2,821,333205 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,423980 ,1,0,107775 ,2,821,335100 ,2,822,561625 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,108175 ,2,821,335850 ,1,1,2395 ,2,822,73720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495175 ,2,827,75 ,2,828,423985 ,1,0,108935 ,2,821,336730 ,1,0,560975 ,1,1,45 ,1,2,5080 ,2,822,73730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494695 ,2,827,75 ,2,828,424000 ,1,0,109285 ,2,821,338765 ,1,0,347015 ,1,1,256050 ,1,2,176120 ,1,3,347005 ,1,4,224075 ,1,5,557420 ,1,6,224065 ,1,7,175795 ,1,8,346995 ,1,9,346985 ,1,10,182020 ,2,822,73740 ,2,823,540715 ,2,824,418135 ,2,825,352080 ,2,826,495230 ,2,827,35285 ,2,828,424010 ,1,0,110375 ,2,821,349155 ,1,1,2395 ,2,822,73750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424005 ,1,0,111235 ,2,821,350135 ,1,0,599880 ,1,1,45 ,1,2,3825 ,1,3,45 ,1,4,195155 ,1,5,45 ,1,6,347050 ,2,822,73760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495235 ,2,827,75 ,2,828,424015 ,1,0,111770 ,2,821,354050 ,1,0,65 ,1,1,256040 ,1,2,347160 ,2,822,73795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495240 ,2,827,39440 ,2,828,424050 ,1,0,112080 ,2,821,355550 ,2,822,73805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,424055 ,1,0,112935 ,2,821,356955 ,1,1,2395 ,2,822,73825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495245 ,2,827,75 ,2,828,424060 ,1,0,113305 ,2,821,357900 ,1,0,346200 ,2,822,73845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495255 ,2,827,39440 ,2,828,424065 ,1,0,114100 ,2,821,362790 ,1,0,45 ,1,1,346210 ,2,822,73855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494695 ,2,827,75 ,2,828,424080 ,1,0,114440 ,2,821,364835 ,1,0,2210 ,1,1,542350 ,2,822,73865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495260 ,2,827,75 ,2,828,424085 ,1,0,115320 ,2,821,374330 ,1,0,373350 ,2,822,73875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495265 ,2,827,75 ,2,828,424090 ,1,0,115730 ,2,821,418025 ,1,0,347110 ,1,1,8315 ,1,2,557490 ,2,822,73900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495270 ,2,827,35420 ,2,828,424095 ,1,0,116505 ,2,821,419730 ,1,0,599970 ,1,1,45 ,1,2,176895 ,2,822,73910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495080 ,2,827,75 ,2,828,424115 ,1,0,116835 ,2,821,421165 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,73930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495280 ,2,827,75 ,2,828,424120 ,1,0,117655 ,2,821,422360 ,1,0,346475 ,2,822,73945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495285 ,2,827,39440 ,2,828,424125 ,1,0,118095 ,2,821,423495 ,1,0,45 ,1,1,249115 ,2,822,73955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495080 ,2,827,75 ,2,828,424130 ,1,0,118415 ,2,821,424915 ,2,822,17380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,118825 ,2,821,425010 ,1,1,2395 ,2,822,74010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424135 ,1,0,119340 ,2,821,425680 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,74030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495140 ,2,827,75 ,2,828,424140 ,1,0,119785 ,2,821,426895 ,2,822,74040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495290 ,2,827,75 ,2,828,424145 ,1,0,120310 ,2,821,427760 ,1,1,2395 ,2,822,74050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424150 ,1,0,120690 ,2,821,428395 ,2,822,74060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495295 ,2,827,75 ,2,828,424190 ,1,0,121235 ,2,821,429155 ,1,1,2395 ,2,822,74070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495310 ,2,827,75 ,2,828,424195 ,1,0,121785 ,2,821,430235 ,1,0,341850 ,2,822,74080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495315 ,2,827,35595 ,2,828,424200 ,1,0,122335 ,2,821,435205 ,1,1,2395 ,2,822,74115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,424205 ,1,0,122890 ,2,821,436105 ,1,0,557765 ,1,1,345880 ,1,2,557755 ,2,822,74125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495325 ,2,827,24545 ,2,828,424210 ,1,0,123380 ,2,821,441175 ,2,822,17400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,124005 ,2,821,441295 ,2,822,74180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495350 ,2,827,75 ,2,828,424215 ,1,0,124545 ,2,821,441950 ,2,822,74220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495355 ,2,827,75 ,2,828,424220 ,1,0,124865 ,2,821,442520 ,2,822,74230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495360 ,2,827,75 ,2,828,424225 ,1,0,125185 ,2,821,443145 ,2,822,17450 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,125515 ,2,821,443250 ,1,0,182760 ,1,1,182870 ,1,2,182770 ,1,3,182880 ,1,4,182805 ,2,822,74350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495365 ,2,827,75 ,2,828,424250 ,1,0,125965 ,2,821,452680 ,2,822,17495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,126385 ,2,821,452765 ,2,822,561795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,126690 ,2,821,453210 ,2,822,74380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495370 ,2,827,35990 ,2,828,424255 ,1,0,127030 ,2,821,454370 ,2,822,17515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,127340 ,2,821,454465 ,2,822,17525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,127670 ,2,821,454550 ,2,822,74440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495375 ,2,827,75 ,2,828,424265 ,1,0,127990 ,2,821,455980 ,1,1,2395 ,2,822,74710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,424260 ,1,0,128320 ,2,821,456620 ,2,822,74450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495415 ,2,827,75 ,2,828,424280 ,1,0,128740 ,2,821,457460 ,1,1,2395 ,2,822,74660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,424270 ,1,0,129140 ,2,821,458180 ,2,822,74465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495385 ,2,827,75 ,2,828,424275 ,1,0,129485 ,2,821,467605 ,1,0,183235 ,1,1,183165 ,2,822,74475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495420 ,2,827,75 ,2,828,424305 ,1,0,129675 ,2,821,469760 ,1,1,2395 ,2,822,74650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,424285 ,1,0,129900 ,2,821,470490 ,2,822,74485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495430 ,2,827,75 ,2,828,424315 ,1,0,130220 ,2,821,471805 ,1,1,2395 ,2,822,74610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495425 ,2,827,75 ,2,828,424310 ,1,0,130855 ,2,821,472825 ,2,822,74495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495445 ,2,827,75 ,2,828,424335 ,1,0,131320 ,2,821,473760 ,1,1,2395 ,2,822,74825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,424320 ,1,0,132170 ,2,821,474580 ,2,822,74525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495450 ,2,827,75 ,2,828,424345 ,1,0,132485 ,2,821,476955 ,1,1,2395 ,2,822,74835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492590 ,2,827,75 ,2,828,424340 ,1,0,133015 ,2,821,477820 ,1,1,2395 ,2,822,74535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424350 ,1,0,133525 ,2,821,478470 ,2,822,74545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495460 ,2,827,75 ,2,828,424365 ,1,0,133735 ,2,821,479440 ,1,1,2395 ,2,822,74630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495455 ,2,827,75 ,2,828,424360 ,1,0,134030 ,2,821,480205 ,2,822,74555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495485 ,2,827,75 ,2,828,424375 ,1,0,134340 ,2,821,481195 ,1,1,2395 ,2,822,74845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,424370 ,1,0,134570 ,2,821,481985 ,1,0,183420 ,1,1,373495 ,1,2,345890 ,2,822,74565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495495 ,2,827,75 ,2,828,424390 ,1,0,134780 ,2,821,484295 ,1,1,2395 ,2,822,74815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,424380 ,1,0,135120 ,2,821,485015 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,74575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495490 ,2,827,75 ,2,828,424385 ,1,0,135465 ,2,821,486060 ,2,822,74585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495500 ,2,827,75 ,2,828,424445 ,1,0,135775 ,2,821,486970 ,1,1,2395 ,2,822,74785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495455 ,2,827,75 ,2,828,424395 ,1,0,136075 ,2,821,487735 ,1,1,2395 ,2,822,74620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,424450 ,1,0,136535 ,2,821,488470 ,1,1,2395 ,2,822,74640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,424455 ,1,0,136730 ,2,821,489160 ,1,1,2395 ,2,822,74720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,424460 ,1,0,137095 ,2,821,489820 ,1,1,2395 ,2,822,74730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,424470 ,1,0,137620 ,2,821,490555 ,2,822,74740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495515 ,2,827,75 ,2,828,424480 ,1,0,137965 ,2,821,491250 ,1,1,2395 ,2,822,74925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,424475 ,1,0,138720 ,2,821,491995 ,2,822,74755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495520 ,2,827,75 ,2,828,424500 ,1,0,139035 ,2,821,492755 ,1,1,2395 ,2,822,74865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,424485 ,1,0,139345 ,2,821,493585 ,1,0,180935 ,1,1,183755 ,2,822,74765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495525 ,2,827,75 ,2,828,424510 ,1,0,139775 ,2,821,494370 ,1,1,2395 ,2,822,74775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,424505 ,1,0,140120 ,2,821,495085 ,1,1,2395 ,2,822,74805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,424515 ,1,0,140530 ,2,821,495775 ,1,1,2395 ,2,822,74855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424520 ,1,0,140735 ,2,821,496405 ,1,1,2395 ,2,822,74875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424525 ,1,0,141050 ,2,821,496995 ,2,822,74915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495545 ,2,827,75 ,2,828,424530 ,1,0,141250 ,2,821,497930 ,2,822,17595 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,141585 ,2,821,498030 ,2,822,74975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,141875 ,2,821,498145 ,2,822,17615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,142295 ,2,821,498240 ,2,822,17655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,142500 ,2,821,498340 ,2,822,17675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,142800 ,2,821,498435 ,1,1,2395 ,2,822,75060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424550 ,1,0,143425 ,2,821,499090 ,1,1,2395 ,2,822,75070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424555 ,1,0,144145 ,2,821,499705 ,1,1,2395 ,2,822,75080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424560 ,1,0,144705 ,2,821,500330 ,2,822,17690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,145020 ,2,821,500420 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495280 ,2,827,75 ,2,828,424565 ,1,0,145945 ,2,821,501660 ,1,0,222220 ,1,1,546030 ,1,2,341890 ,2,822,75160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495550 ,2,827,33755 ,2,828,424570 ,1,0,146575 ,2,821,503920 ,2,822,17710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,147240 ,2,821,504035 ,2,822,75235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,424575 ,1,0,147895 ,2,821,505425 ,2,822,17780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,148545 ,2,821,505525 ,2,822,17790 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,149080 ,2,821,505615 ,2,822,75360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,149405 ,2,821,505790 ,2,822,75370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495555 ,2,827,75 ,2,828,424580 ,1,0,150270 ,2,821,507120 ,2,822,75380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495560 ,2,827,37035 ,2,828,424585 ,1,0,150845 ,2,821,509860 ,2,822,75390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495565 ,2,827,37045 ,2,828,424630 ,1,0,151385 ,2,821,511795 ,2,822,75440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495570 ,2,827,37055 ,2,828,424635 ,1,0,151925 ,2,821,514730 ,1,0,14270 ,2,822,75450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495575 ,2,827,37045 ,2,828,424640 ,1,0,152460 ,2,821,518130 ,1,0,2280 ,1,1,542060 ,2,822,75460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495605 ,2,827,75 ,2,828,424655 ,1,0,153015 ,2,821,521400 ,1,0,323890 ,1,1,323880 ,2,822,75470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495580 ,2,827,37065 ,2,828,424645 ,1,0,153550 ,2,821,524835 ,2,822,75480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495610 ,2,827,37045 ,2,828,424660 ,1,0,153845 ,2,821,527520 ,2,822,75490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495615 ,2,827,37075 ,2,828,424665 ,1,0,154160 ,2,821,530210 ,1,0,256445 ,2,822,75560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495620 ,2,827,37085 ,2,828,424670 ,1,0,154590 ,2,821,533720 ,2,822,17800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,154925 ,2,821,533825 ,2,822,75580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,424710 ,1,0,155355 ,2,821,534330 ,1,0,546035 ,2,822,75735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495625 ,2,827,37155 ,2,828,424700 ,1,0,155785 ,2,821,543840 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495630 ,2,827,75 ,2,828,424705 ,1,0,156125 ,2,821,544930 ,2,822,562035 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,156540 ,2,821,545345 ,2,822,75590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495680 ,2,827,75 ,2,828,424720 ,1,0,156865 ,2,821,546725 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495640 ,2,827,75 ,2,828,424715 ,1,0,157155 ,2,821,547640 ,2,822,75600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495680 ,2,827,75 ,2,828,424730 ,1,0,158005 ,2,821,549000 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495640 ,2,827,75 ,2,828,424725 ,1,0,158620 ,2,821,549965 ,1,1,2395 ,2,822,75610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424735 ,1,0,158930 ,2,821,550595 ,1,1,2395 ,1,2,561520 ,1,3,45 ,1,4,9470 ,2,822,75660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495685 ,2,827,75 ,2,828,424760 ,1,0,159675 ,2,821,551860 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,424765 ,1,0,160120 ,2,821,552980 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,424770 ,1,0,160535 ,2,821,554115 ,1,0,163125 ,2,822,75690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495695 ,2,827,75 ,2,828,424780 ,1,0,160915 ,2,821,556200 ,2,822,18125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,161235 ,2,821,556275 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495690 ,2,827,75 ,2,828,424775 ,1,0,161630 ,2,821,557360 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495705 ,2,827,75 ,2,828,424785 ,1,0,162075 ,2,821,558495 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,424790 ,1,0,162515 ,2,821,559590 ,2,822,75755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,424795 ,1,0,163070 ,2,821,560010 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495705 ,2,827,75 ,2,828,424835 ,1,0,163585 ,2,821,561130 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495705 ,2,827,75 ,2,828,424840 ,1,0,164245 ,2,821,562265 ,2,822,75785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495710 ,2,827,75 ,2,828,424845 ,1,0,164785 ,2,821,564390 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,75795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,424850 ,1,0,165300 ,2,821,565505 ,2,822,17810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,165840 ,2,821,565600 ,2,822,17820 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,166360 ,2,821,565705 ,2,822,17840 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,166830 ,2,821,565805 ,1,0,325270 ,1,1,325260 ,1,2,2210 ,1,3,542350 ,2,822,75880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495715 ,2,827,75 ,2,828,424860 ,1,0,167255 ,2,821,568500 ,1,1,2395 ,2,822,75890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495455 ,2,827,75 ,2,828,424865 ,1,0,167710 ,2,821,569325 ,1,1,2395 ,2,822,75900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424870 ,1,0,168135 ,2,821,569995 ,2,822,75910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495720 ,2,827,75 ,2,828,424875 ,1,0,168710 ,2,821,572995 ,2,822,17850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,169280 ,2,821,573080 ,1,0,185680 ,1,1,185775 ,1,2,185765 ,1,3,185755 ,1,4,185740 ,1,5,182835 ,1,6,185720 ,1,7,185645 ,1,8,182825 ,1,9,182780 ,1,10,182790 ,1,11,185670 ,1,12,182815 ,1,13,185710 ,1,14,182745 ,1,15,185660 ,1,16,185730 ,1,17,185690 ,2,822,75970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495735 ,2,827,75 ,2,828,424895 ,1,0,169840 ,2,821,587980 ,1,1,2395 ,2,822,75985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,424900 ,1,0,170355 ,2,821,588680 ,1,1,2395 ,2,822,75995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495740 ,2,827,75 ,2,828,424905 ,1,0,170920 ,2,821,589240 ,1,0,6400 ,1,1,263620 ,1,2,345900 ,2,822,76005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495745 ,2,827,75 ,2,828,424910 ,1,0,171365 ,2,821,590935 ,2,822,17895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,171795 ,2,821,591030 ,1,0,186015 ,1,1,186005 ,2,822,76050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495750 ,2,827,75 ,2,828,424925 ,1,0,172330 ,2,821,594285 ,1,1,2395 ,2,822,76260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,424920 ,1,0,172990 ,2,821,595030 ,2,822,76060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495755 ,2,827,37620 ,2,828,424935 ,1,0,173435 ,2,821,596145 ,1,1,2395 ,2,822,76070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,424930 ,1,0,173890 ,2,821,596775 ,1,0,557375 ,1,1,557370 ,2,822,76080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495760 ,2,827,75 ,2,828,424970 ,1,0,174455 ,2,821,598165 ,1,1,2395 ,2,822,76290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495245 ,2,827,75 ,2,828,424965 ,1,0,174915 ,2,821,598675 ,1,0,340445 ,2,822,76095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495765 ,2,827,75 ,2,828,424980 ,1,0,175465 ,2,821,599240 ,1,1,2395 ,2,822,76205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424975 ,1,0,175975 ,2,821,599890 ,1,1,2395 ,2,822,76115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424985 ,1,0,176440 ,2,821,600535 ,1,1,2395 ,2,822,76125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424990 ,1,0,176990 ,2,821,601185 ,1,1,2395 ,2,822,76140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,424995 ,1,0,177520 ,2,821,601810 ,2,822,76150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495770 ,2,827,75 ,2,828,425035 ,1,0,177950 ,2,821,603395 ,1,1,2395 ,2,822,76225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,425000 ,1,0,178540 ,2,821,604160 ,2,822,17995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,179100 ,2,821,604235 ,1,1,2395 ,2,822,76160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,425040 ,1,0,179730 ,2,821,604955 ,1,0,186180 ,2,822,76170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495790 ,2,827,75 ,2,828,425050 ,1,0,180285 ,2,821,607990 ,2,822,18175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,180885 ,2,821,608130 ,1,1,2395 ,2,822,76240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,425045 ,1,0,181450 ,2,821,608890 ,1,1,2395 ,2,822,76195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,425055 ,1,0,181890 ,2,821,609665 ,1,0,186350 ,2,822,76215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495800 ,2,827,33290 ,2,828,425065 ,1,0,182315 ,2,821,616110 ,1,1,2395 ,1,2,562180 ,1,3,45 ,1,4,9470 ,2,822,76280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495795 ,2,827,75 ,2,828,425060 ,1,0,182850 ,2,821,617570 ,2,822,76250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495805 ,2,827,75 ,2,828,425090 ,1,0,183290 ,2,821,618510 ,1,1,2395 ,2,822,76270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495455 ,2,827,75 ,2,828,425070 ,1,0,183850 ,2,821,619245 ,2,822,562180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,184270 ,2,821,619755 ,2,822,76300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495810 ,2,827,75 ,2,828,425095 ,1,0,184795 ,2,821,621760 ,2,822,76310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495815 ,2,827,75 ,2,828,425105 ,1,0,185255 ,2,821,623820 ,1,1,2395 ,2,822,76340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,425100 ,1,0,185820 ,2,821,624490 ,1,1,2395 ,2,822,76350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,425110 ,1,0,186395 ,2,821,625125 ,2,822,76360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495820 ,2,827,75 ,2,828,425115 ,1,0,187030 ,2,821,627645 ,2,822,18275 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,187465 ,2,821,627770 ,2,822,17905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,188125 ,2,821,627865 ,2,822,76370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,425120 ,1,0,188525 ,2,821,628375 ,1,0,45 ,1,1,9435 ,2,822,76395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,425125 ,1,0,188965 ,2,821,629305 ,1,0,562205 ,1,1,45 ,1,2,9435 ,2,822,76415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,425145 ,1,0,189405 ,2,821,630240 ,2,822,76510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495860 ,2,827,34290 ,2,828,425150 ,1,0,189815 ,2,821,633225 ,2,822,17940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,190375 ,2,821,633315 ,2,822,17985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,190815 ,2,821,633425 ,1,1,2395 ,2,822,76570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495865 ,2,827,75 ,2,828,425155 ,1,0,191240 ,2,821,634035 ,1,1,2395 ,2,822,76590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,425160 ,1,0,191700 ,2,821,634730 ,1,1,2395 ,2,822,76615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495870 ,2,827,75 ,2,828,425165 ,1,0,192145 ,2,821,636315 ,1,0,187240 ,1,1,187015 ,1,2,187025 ,1,3,187055 ,1,4,187220 ,1,5,187065 ,1,6,186360 ,1,7,186960 ,1,8,186970 ,1,9,187075 ,1,10,179640 ,1,11,187230 ,1,12,187180 ,1,13,183245 ,1,14,187170 ,1,15,187115 ,1,16,187105 ,1,17,187135 ,1,18,187125 ,1,19,182890 ,1,20,187200 ,1,21,187190 ,1,22,187085 ,1,23,183310 ,1,24,11510 ,1,25,342570 ,2,822,76625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495875 ,2,827,75 ,2,828,425170 ,1,0,192560 ,2,821,655435 ,1,1,2395 ,2,822,76635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495740 ,2,827,75 ,2,828,425175 ,1,0,192970 ,2,821,655970 ,2,822,76645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,425180 ,1,0,193405 ,2,821,656315 ,2,822,18015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,194160 ,2,821,656405 ,2,822,76675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495895 ,2,827,75 ,2,828,425215 ,1,0,194440 ,2,821,657140 ,1,1,2395 ,2,822,76830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495380 ,2,827,75 ,2,828,425210 ,1,0,195260 ,2,821,657825 ,2,822,562300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,195790 ,2,821,658230 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,76685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495900 ,2,827,75 ,2,828,425220 ,1,0,196130 ,2,821,659370 ,1,1,2395 ,2,822,76695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,425225 ,1,0,196430 ,2,821,660000 ,2,822,76720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495905 ,2,827,75 ,2,828,425235 ,1,0,197015 ,2,821,661035 ,2,822,76730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,425245 ,1,0,197325 ,2,821,661700 ,1,1,2395 ,2,822,76895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,425240 ,1,0,197790 ,2,821,662435 ,2,822,76740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,425250 ,1,0,198495 ,2,821,662935 ,2,822,76770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,425300 ,1,0,198830 ,2,821,663335 ,1,1,2395 ,2,822,76820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495245 ,2,827,75 ,2,828,425295 ,1,0,199160 ,2,821,663850 ,2,822,76780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,425310 ,1,0,199470 ,2,821,664500 ,1,1,2395 ,2,822,76940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,425305 ,1,0,199990 ,2,821,665150 ,1,0,313145 ,2,822,76790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495940 ,2,827,38415 ,2,828,425320 ,1,0,200540 ,2,821,666250 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,76915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495935 ,2,827,75 ,2,828,425315 ,1,0,200895 ,2,821,667420 ,1,1,2395 ,2,822,76840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,425325 ,1,0,201185 ,2,821,668060 ,1,1,2395 ,2,822,76925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,425330 ,1,0,201760 ,2,821,668690 ,1,1,2395 ,2,822,76950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,425340 ,1,0,202180 ,2,821,669445 ,1,0,179510 ,2,822,77105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495945 ,2,827,33420 ,2,828,425345 ,1,0,202535 ,2,821,673225 ,2,822,18185 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,202870 ,2,821,673300 ,2,822,77115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,425350 ,1,0,203215 ,2,821,673760 ,2,822,77125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495950 ,2,827,75 ,2,828,425355 ,1,0,203535 ,2,821,7820 ,2,822,77135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495965 ,2,827,75 ,2,828,425370 ,1,0,203850 ,2,821,18245 ,2,822,77155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,425375 ,1,0,204275 ,2,821,20080 ,2,822,77175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,425380 ,1,0,204585 ,2,821,20810 ,2,822,77245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495970 ,2,827,75 ,2,828,425385 ,1,0,204940 ,2,821,21565 ,2,822,77255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495975 ,2,827,75 ,2,828,425420 ,1,0,205300 ,2,821,25245 ,2,822,77265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495980 ,2,827,75 ,2,828,425425 ,1,0,205815 ,2,821,30300 ,2,822,77315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,425430 ,1,0,206130 ,2,821,31040 ,2,822,77335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,206455 ,2,821,34190 ,2,822,77345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496010 ,2,827,38955 ,2,828,425435 ,1,0,206805 ,2,821,66510 ,2,822,77355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,425445 ,1,0,207315 ,2,821,67245 ,2,822,77365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,425450 ,1,0,207870 ,2,821,67985 ,2,822,18265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,208380 ,2,821,68120 ,1,1,2395 ,2,822,77435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,425455 ,1,0,208810 ,2,821,69155 ,2,822,77445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496015 ,2,827,75 ,2,828,425460 ,1,0,209230 ,2,821,69945 ,1,1,2395 ,2,822,77455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495740 ,2,827,75 ,2,828,425480 ,1,0,209765 ,2,821,70805 ,2,822,77465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,425485 ,1,0,210100 ,2,821,71395 ,2,822,77475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496025 ,2,827,75 ,2,828,425505 ,1,0,210425 ,2,821,76090 ,1,0,374730 ,2,822,77535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496020 ,2,827,75 ,2,828,425490 ,1,0,210855 ,2,821,77095 ,1,0,374620 ,2,822,77545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496020 ,2,827,75 ,2,828,425495 ,1,0,211280 ,2,821,78080 ,2,822,559725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,211590 ,2,821,78805 ,2,822,77560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,425515 ,1,0,211900 ,2,821,79375 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,77690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,425510 ,1,0,212450 ,2,821,81250 ,2,822,77570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425520 ,1,0,213025 ,2,821,82940 ,2,822,77580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425555 ,1,0,213460 ,2,821,84640 ,1,1,2395 ,2,822,77590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,425560 ,1,0,213900 ,2,821,85685 ,2,822,77625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425565 ,1,0,214245 ,2,821,87400 ,2,822,77635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425570 ,1,0,214685 ,2,821,89100 ,2,822,77645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425580 ,1,0,214995 ,2,821,90750 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,77655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495280 ,2,827,75 ,2,828,425585 ,1,0,215420 ,2,821,92715 ,2,822,77670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496040 ,2,827,30445 ,2,828,425590 ,1,0,215785 ,2,821,95905 ,2,822,77680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425595 ,1,0,216295 ,2,821,97615 ,1,1,2395 ,2,822,77700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,425635 ,1,0,216705 ,2,821,98705 ,1,1,2395 ,2,822,77720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,425640 ,1,0,217145 ,2,821,99800 ,2,822,77730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425645 ,1,0,217575 ,2,821,101580 ,1,0,223115 ,2,822,77740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496045 ,2,827,30445 ,2,828,425650 ,1,0,218000 ,2,821,103580 ,2,822,77780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425660 ,1,0,218455 ,2,821,105365 ,2,822,77790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425665 ,1,0,218770 ,2,821,107085 ,2,822,77800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496050 ,2,827,33755 ,2,828,425670 ,1,0,219105 ,2,821,108820 ,2,822,77830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,219405 ,2,821,109250 ,2,822,77840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425675 ,1,0,219720 ,2,821,110995 ,2,822,77850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,30445 ,2,828,425710 ,1,0,220145 ,2,821,112715 ,2,822,18320 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,220545 ,2,821,112890 ,2,822,77945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496080 ,2,827,39505 ,2,828,425725 ,1,0,221005 ,2,821,115460 ,1,0,174110 ,1,1,544690 ,2,822,77955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496085 ,2,827,75 ,2,828,425735 ,1,0,221315 ,2,821,119335 ,2,822,18340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,221840 ,2,821,119505 ,2,822,18350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,222065 ,2,821,119655 ,2,822,18375 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,222625 ,2,821,119830 ,2,822,77975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,223125 ,2,821,120090 ,1,0,612550 ,2,822,77985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,224255 ,2,821,120405 ,1,0,221655 ,2,822,78005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,425740 ,1,0,225230 ,2,821,120790 ,1,0,256535 ,2,822,78015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496090 ,2,827,39670 ,2,828,425745 ,1,0,225765 ,2,821,122610 ,1,0,341125 ,1,1,256545 ,1,2,359545 ,1,3,165475 ,1,4,341115 ,2,822,78060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496960 ,2,827,39680 ,2,828,425750 ,1,0,226275 ,2,821,133120 ,1,0,612520 ,2,822,78085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,227230 ,2,821,133420 ,2,822,18395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,228100 ,2,821,133580 ,2,822,78115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,425780 ,1,0,228630 ,2,821,133980 ,2,822,78160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,425775 ,1,0,229150 ,2,821,134405 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,78150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496095 ,2,827,75 ,2,828,425770 ,1,0,230220 ,2,821,136070 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,78170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496100 ,2,827,75 ,2,828,425785 ,1,0,231200 ,2,821,137795 ,1,0,256565 ,2,822,78180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496135 ,2,827,39835 ,2,828,425795 ,1,0,232060 ,2,821,147445 ,2,822,78200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496130 ,2,827,75 ,2,828,425790 ,1,0,232375 ,2,821,149825 ,2,822,78190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496140 ,2,827,75 ,2,828,425800 ,1,0,232680 ,2,821,151355 ,2,822,78220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496145 ,2,827,75 ,2,828,425805 ,1,0,233110 ,2,821,152670 ,2,822,78250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496150 ,2,827,75 ,2,828,425845 ,1,0,233320 ,2,821,156095 ,1,0,256790 ,1,1,221625 ,2,822,78290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496895 ,2,827,41405 ,2,828,426865 ,1,0,233645 ,2,821,164665 ,1,0,256820 ,1,1,189495 ,1,2,189535 ,1,3,187540 ,1,4,374565 ,1,5,612525 ,2,822,81330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496890 ,2,827,39865 ,2,828,425860 ,1,0,234065 ,2,821,179655 ,2,822,18405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,234580 ,2,821,179820 ,1,0,45 ,1,1,177250 ,2,822,78310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,425850 ,1,0,234890 ,2,821,183060 ,2,822,78360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494390 ,2,827,75 ,2,828,425855 ,1,0,235435 ,2,821,185325 ,2,822,78400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496155 ,2,827,75 ,2,828,425880 ,1,0,235785 ,2,821,187365 ,2,822,78410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496165 ,2,827,75 ,2,828,425890 ,1,0,236625 ,2,821,187785 ,1,0,223955 ,1,1,544570 ,1,2,165975 ,1,3,172065 ,1,4,345010 ,1,5,11450 ,1,6,3505 ,1,7,4995 ,1,8,3370 ,1,9,345000 ,2,822,78505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496160 ,2,827,39885 ,2,828,425885 ,1,0,237185 ,2,821,476690 ,1,0,612515 ,2,822,78530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,237685 ,2,821,476905 ,1,0,224000 ,1,1,223975 ,1,2,345665 ,1,3,345655 ,1,4,345620 ,1,5,345610 ,1,6,345600 ,1,7,345590 ,1,8,345575 ,1,9,11350 ,1,10,2210 ,1,11,542350 ,2,822,78550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496190 ,2,827,40115 ,2,828,425925 ,1,0,238230 ,2,821,514850 ,1,0,345500 ,1,1,345490 ,1,2,345480 ,1,3,345465 ,1,4,345455 ,1,5,345445 ,1,6,345435 ,2,822,78640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496180 ,2,827,40055 ,2,828,425895 ,1,0,238790 ,2,821,528065 ,1,1,2395 ,2,822,78605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496185 ,2,827,75 ,2,828,425915 ,1,0,239935 ,2,821,529400 ,1,1,2395 ,2,822,78615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,425920 ,1,0,241165 ,2,821,530235 ,1,0,165545 ,2,822,78650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,426495 ,1,0,241710 ,2,821,530745 ,1,0,345740 ,2,822,78660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496195 ,2,827,40135 ,2,828,425930 ,1,0,242860 ,2,821,546695 ,2,822,18460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,243375 ,2,821,546805 ,2,822,78670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,425945 ,1,0,244580 ,2,821,547245 ,2,822,78725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496210 ,2,827,75 ,2,828,425940 ,1,0,245140 ,2,821,548190 ,2,822,78715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496205 ,2,827,75 ,2,828,425935 ,1,0,246190 ,2,821,553170 ,2,822,78735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496215 ,2,827,40185 ,2,828,425950 ,1,0,247290 ,2,821,553960 ,2,822,78760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,425985 ,1,0,248455 ,2,821,554345 ,1,0,165290 ,1,1,612500 ,1,2,171195 ,2,822,78770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496220 ,2,827,75 ,2,828,425980 ,1,0,248970 ,2,821,556875 ,2,822,78780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,426000 ,1,0,250055 ,2,821,557290 ,2,822,78825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496255 ,2,827,75 ,2,828,425995 ,1,0,251130 ,2,821,560910 ,2,822,78790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496250 ,2,827,75 ,2,828,425990 ,1,0,252250 ,2,821,562800 ,2,822,78835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,426010 ,1,0,253415 ,2,821,563065 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,78845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496260 ,2,827,75 ,2,828,426005 ,1,0,253955 ,2,821,563895 ,1,0,190085 ,1,1,190125 ,1,2,183195 ,1,3,189970 ,1,4,190115 ,1,5,190105 ,1,6,190095 ,1,7,190145 ,1,8,190135 ,1,9,345790 ,2,822,78855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496410 ,2,827,75 ,2,828,426185 ,1,0,254370 ,2,821,573870 ,1,0,12015 ,2,822,79860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496280 ,2,827,40260 ,2,828,426045 ,1,0,254920 ,2,821,584415 ,1,0,169870 ,1,1,345780 ,2,822,79560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496265 ,2,827,75 ,2,828,426015 ,1,0,255980 ,2,821,585865 ,1,0,345770 ,2,822,79920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496290 ,2,827,40270 ,2,828,426055 ,1,0,257100 ,2,821,600460 ,1,0,345760 ,1,1,166180 ,2,822,79705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496285 ,2,827,75 ,2,828,426050 ,1,0,257630 ,2,821,609415 ,1,0,224020 ,1,1,166530 ,1,2,166170 ,1,3,166140 ,1,4,345750 ,2,822,79470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496335 ,2,827,75 ,2,828,426130 ,1,0,258070 ,2,821,613560 ,2,822,79765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496295 ,2,827,75 ,2,828,426060 ,1,0,258690 ,2,821,615045 ,1,0,191550 ,2,822,80135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496330 ,2,827,75 ,2,828,426125 ,1,0,259955 ,2,821,617080 ,1,0,9585 ,1,1,345725 ,1,2,166120 ,1,3,345715 ,1,4,345705 ,2,822,80145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496325 ,2,827,40315 ,2,828,426085 ,1,0,260555 ,2,821,638400 ,2,822,79600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496310 ,2,827,40280 ,2,828,426070 ,1,0,261695 ,2,821,639060 ,2,822,79825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496315 ,2,827,40290 ,2,828,426075 ,1,0,262725 ,2,821,650645 ,1,0,166110 ,1,1,170125 ,2,822,80015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496320 ,2,827,40305 ,2,828,426080 ,1,0,263775 ,2,821,663585 ,1,0,345695 ,1,1,345685 ,1,2,169070 ,1,3,7290 ,1,4,12395 ,1,5,2210 ,1,6,542350 ,2,822,79755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496390 ,2,827,75 ,2,828,426150 ,1,0,263990 ,2,821,5135 ,1,0,166095 ,2,822,79815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496340 ,2,827,40325 ,2,828,426135 ,1,0,264405 ,2,821,63495 ,1,0,345395 ,2,822,79580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496345 ,2,827,40335 ,2,828,426140 ,1,0,264805 ,2,821,107415 ,2,822,79985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496385 ,2,827,75 ,2,828,426145 ,1,0,265140 ,2,821,110740 ,1,0,345385 ,1,1,345375 ,2,822,79880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496400 ,2,827,40385 ,2,828,426160 ,1,0,265500 ,2,821,126685 ,1,0,345365 ,1,1,345350 ,1,2,220955 ,2,822,80035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496395 ,2,827,75 ,2,828,426155 ,1,0,266005 ,2,821,129955 ,2,822,78875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496495 ,2,827,40765 ,2,828,426355 ,1,0,266295 ,2,821,133630 ,1,0,6530 ,1,1,166515 ,1,2,345800 ,1,3,166200 ,1,4,166190 ,2,822,79480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496415 ,2,827,75 ,2,828,426190 ,1,0,266845 ,2,821,138265 ,1,0,345340 ,1,1,345330 ,1,2,9070 ,1,3,166900 ,1,4,166075 ,1,5,345320 ,1,6,345285 ,2,822,79590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496490 ,2,827,75 ,2,828,426350 ,1,0,267165 ,2,821,168805 ,1,0,166495 ,1,1,345275 ,1,2,166660 ,1,3,345265 ,1,4,345255 ,1,5,2210 ,1,6,542350 ,2,822,79380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496480 ,2,827,40735 ,2,828,426340 ,1,0,267455 ,2,821,181065 ,1,0,190430 ,1,1,190410 ,1,2,190440 ,1,3,190420 ,1,4,546095 ,1,5,256715 ,1,6,256705 ,1,7,171330 ,1,8,166065 ,1,9,175640 ,2,822,79310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496470 ,2,827,40715 ,2,828,426335 ,1,0,267855 ,2,821,193605 ,1,0,166020 ,2,822,79095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,426220 ,1,0,268155 ,2,821,195070 ,1,0,190330 ,1,1,345245 ,1,2,562725 ,1,3,45 ,1,4,11510 ,1,5,608345 ,1,6,45 ,1,7,11510 ,1,8,608330 ,1,9,45 ,1,10,11510 ,1,11,45 ,1,12,11510 ,1,13,45 ,1,14,11510 ,1,15,345235 ,2,822,79085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496425 ,2,827,40405 ,2,828,426195 ,1,0,268445 ,2,821,208650 ,2,822,18485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,269055 ,2,821,208800 ,2,822,78955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,426200 ,1,0,269460 ,2,821,210615 ,1,0,608350 ,1,1,45 ,1,2,190350 ,1,3,45 ,1,4,11510 ,1,5,45 ,1,6,11510 ,2,822,78975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496420 ,2,827,40495 ,2,828,426215 ,1,0,269880 ,2,821,217200 ,2,822,562725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,270425 ,2,821,218505 ,1,0,608340 ,1,1,45 ,1,2,5900 ,2,822,78895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496440 ,2,827,75 ,2,828,426225 ,1,0,271015 ,2,821,220140 ,1,1,2395 ,1,2,562760 ,1,3,45 ,1,4,9470 ,2,822,79105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496445 ,2,827,75 ,2,828,426230 ,1,0,271565 ,2,821,225690 ,1,0,546090 ,2,822,79135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,426275 ,1,0,272065 ,2,821,226455 ,2,822,562785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,272560 ,2,821,227110 ,1,0,546105 ,2,822,79165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,426280 ,1,0,273200 ,2,821,227765 ,2,822,562815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,273710 ,2,821,228480 ,1,1,2395 ,1,2,562820 ,1,3,45 ,1,4,9470 ,2,822,79205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496450 ,2,827,75 ,2,828,426285 ,1,0,274320 ,2,821,230165 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,79235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496455 ,2,827,75 ,2,828,426290 ,1,0,274845 ,2,821,231885 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,79245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,426305 ,1,0,275360 ,2,821,233740 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,79255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491845 ,2,827,75 ,2,828,426310 ,1,0,275990 ,2,821,235525 ,2,822,79265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496460 ,2,827,75 ,2,828,426315 ,1,0,276685 ,2,821,237275 ,1,0,290240 ,2,822,79300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496465 ,2,827,75 ,2,828,426320 ,1,0,277180 ,2,821,239560 ,2,822,18515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,277675 ,2,821,239710 ,2,822,18505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,278180 ,2,821,239880 ,2,822,18545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,278765 ,2,821,240030 ,1,0,345215 ,2,822,79550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496485 ,2,827,75 ,2,828,426345 ,1,0,279365 ,2,821,245545 ,1,0,339570 ,2,822,79490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496500 ,2,827,75 ,2,828,426360 ,1,0,280085 ,2,821,258230 ,1,0,168840 ,2,822,79570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496505 ,2,827,40795 ,2,828,426365 ,1,0,280620 ,2,821,280880 ,2,822,79665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,426400 ,1,0,281030 ,2,821,282145 ,2,822,79715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496510 ,2,827,75 ,2,828,426370 ,1,0,282290 ,2,821,284445 ,1,0,166000 ,2,822,79685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496550 ,2,827,75 ,2,828,426405 ,1,0,282570 ,2,821,286570 ,1,0,165990 ,2,822,79775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496555 ,2,827,75 ,2,828,426410 ,1,0,283430 ,2,821,288635 ,1,0,339560 ,2,822,79795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496560 ,2,827,75 ,2,828,426415 ,1,0,284140 ,2,821,293025 ,1,0,345040 ,1,1,345030 ,2,822,79910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496575 ,2,827,75 ,2,828,426425 ,1,0,284550 ,2,821,308780 ,2,822,80125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496565 ,2,827,75 ,2,828,426420 ,1,0,284975 ,2,821,310885 ,1,0,339600 ,1,1,339580 ,2,822,79975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496580 ,2,827,24545 ,2,828,426430 ,1,0,285400 ,2,821,339590 ,1,0,190770 ,2,822,79995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496585 ,2,827,75 ,2,828,426470 ,1,0,285725 ,2,821,342405 ,1,0,256650 ,2,822,80070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,40815 ,2,828,426435 ,1,0,286340 ,2,821,343150 ,2,822,80100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,426475 ,1,0,286690 ,2,821,343815 ,2,822,80115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496620 ,2,827,75 ,2,828,426480 ,1,0,287190 ,2,821,357290 ,1,0,256630 ,1,1,339660 ,1,2,339630 ,1,3,339620 ,2,822,80170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496625 ,2,827,40835 ,2,828,426485 ,1,0,288035 ,2,821,362280 ,2,822,80180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496635 ,2,827,75 ,2,828,426500 ,1,0,288740 ,2,821,363365 ,1,0,45 ,1,1,339610 ,2,822,80190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,426505 ,1,0,289440 ,2,821,365780 ,1,0,166010 ,1,1,345120 ,1,2,345110 ,1,3,345100 ,1,4,345060 ,1,5,345050 ,1,6,2210 ,1,7,542350 ,2,822,80200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496820 ,2,827,34565 ,2,828,426745 ,1,0,289970 ,2,821,418285 ,2,822,18555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,290365 ,2,821,418365 ,2,822,80210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,426545 ,1,0,290795 ,2,821,418805 ,2,822,80220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496640 ,2,827,75 ,2,828,426510 ,1,0,291400 ,2,821,419720 ,2,822,80230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496645 ,2,827,75 ,2,828,426550 ,1,0,291895 ,2,821,420675 ,1,0,2210 ,1,1,542350 ,2,822,80335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496650 ,2,827,75 ,2,828,426555 ,1,0,292405 ,2,821,423140 ,2,822,80345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496645 ,2,827,75 ,2,828,426560 ,1,0,293060 ,2,821,424075 ,2,822,80380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496655 ,2,827,75 ,2,828,426575 ,1,0,293650 ,2,821,426955 ,2,822,80620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496645 ,2,827,75 ,2,828,426565 ,1,0,294255 ,2,821,427835 ,2,822,80575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496645 ,2,827,75 ,2,828,426570 ,1,0,294750 ,2,821,428755 ,1,0,333975 ,1,1,2210 ,1,2,542350 ,1,3,2210 ,1,4,542350 ,1,5,2210 ,1,6,542350 ,2,822,80390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496695 ,2,827,40940 ,2,828,426600 ,1,0,295275 ,2,821,479065 ,2,822,80640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496685 ,2,827,40920 ,2,828,426580 ,1,0,295690 ,2,821,482735 ,2,822,80410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496690 ,2,827,40930 ,2,828,426595 ,1,0,296095 ,2,821,489745 ,2,822,80630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496700 ,2,827,75 ,2,828,426605 ,1,0,296515 ,2,821,491340 ,1,0,256600 ,2,822,80665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496705 ,2,827,40960 ,2,828,426610 ,1,0,296845 ,2,821,497175 ,1,0,192280 ,1,1,373845 ,1,2,344990 ,1,3,344980 ,1,4,2210 ,1,5,542350 ,1,6,2210 ,1,7,542350 ,2,822,81055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496805 ,2,827,41295 ,2,828,426735 ,1,0,297445 ,2,821,526145 ,2,822,18565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,297760 ,2,821,526245 ,1,0,339465 ,2,822,80685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496710 ,2,827,75 ,2,828,426615 ,1,0,298075 ,2,821,535855 ,1,0,169880 ,2,822,80715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496715 ,2,827,75 ,2,828,426620 ,1,0,298500 ,2,821,539575 ,1,0,195155 ,2,822,80725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,298810 ,2,821,540810 ,2,822,18575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,299245 ,2,821,540945 ,2,822,80745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496720 ,2,827,75 ,2,828,426625 ,1,0,299950 ,2,821,541640 ,1,0,373870 ,2,822,80770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496730 ,2,827,24545 ,2,828,426660 ,1,0,300635 ,2,821,546335 ,1,0,374195 ,2,822,80780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,426630 ,1,0,301170 ,2,821,546810 ,1,0,256755 ,1,1,344935 ,1,2,4890 ,1,3,13210 ,1,4,344925 ,1,5,344915 ,2,822,81020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496795 ,2,827,41235 ,2,828,426675 ,1,0,301580 ,2,821,582130 ,1,0,344905 ,1,1,344895 ,1,2,344885 ,1,3,344875 ,2,822,80840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496735 ,2,827,75 ,2,828,426665 ,1,0,302115 ,2,821,586485 ,1,0,374170 ,2,822,80860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,426670 ,1,0,302560 ,2,821,586950 ,2,822,80900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496740 ,2,827,75 ,2,828,426680 ,1,0,302980 ,2,821,602340 ,2,822,18655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,303430 ,2,821,602455 ,2,822,80910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,426685 ,1,0,303735 ,2,821,602885 ,1,0,318605 ,2,822,80920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496745 ,2,827,75 ,2,828,426690 ,1,0,304155 ,2,821,617520 ,2,822,80960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496750 ,2,827,75 ,2,828,426695 ,1,0,304815 ,2,821,624625 ,1,0,256765 ,2,822,80970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496755 ,2,827,41275 ,2,828,426715 ,1,0,305225 ,2,821,628210 ,1,0,318615 ,2,822,80980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496760 ,2,827,41285 ,2,828,426720 ,1,0,305640 ,2,821,655845 ,2,822,81000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496765 ,2,827,75 ,2,828,426725 ,1,0,305945 ,2,821,658440 ,1,0,2210 ,1,1,542345 ,2,822,81030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496800 ,2,827,75 ,2,828,426730 ,1,0,306710 ,2,821,659535 ,2,822,81065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496810 ,2,827,75 ,2,828,426740 ,1,0,307305 ,2,821,663255 ,1,0,192300 ,1,1,192310 ,1,2,192290 ,2,822,81075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496825 ,2,827,41305 ,2,828,426750 ,1,0,308025 ,2,821,665885 ,1,0,256610 ,2,822,81085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496835 ,2,827,41350 ,2,828,426790 ,1,0,308695 ,2,821,666630 ,2,822,81100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496830 ,2,827,75 ,2,828,426795 ,1,0,309105 ,2,821,666975 ,2,822,81110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,426800 ,1,0,309535 ,2,821,667545 ,2,822,81120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492295 ,2,827,75 ,2,828,420325 ,1,0,310150 ,2,821,668450 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,81130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496860 ,2,827,75 ,2,828,426805 ,1,0,310675 ,2,821,669370 ,2,822,81165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496865 ,2,827,75 ,2,828,426815 ,1,0,311360 ,2,821,670350 ,1,0,344130 ,2,822,81175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,426820 ,1,0,311795 ,2,821,670635 ,2,822,81185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,426825 ,1,0,312245 ,2,821,671430 ,1,1,2395 ,2,822,81195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492610 ,2,827,75 ,2,828,426830 ,1,0,312810 ,2,821,672045 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,81210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496875 ,2,827,75 ,2,828,426855 ,1,0,313330 ,2,821,673075 ,2,822,81220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496885 ,2,827,75 ,2,828,426860 ,1,0,313750 ,2,821,674220 ,2,822,81230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,314170 ,2,821,674760 ,1,0,189355 ,1,1,45 ,1,2,167770 ,1,3,45 ,1,4,189355 ,1,5,165455 ,2,822,81240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496900 ,2,827,75 ,2,828,426870 ,1,0,314495 ,2,821,4010 ,2,822,81280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496945 ,2,827,75 ,2,828,426875 ,1,0,314800 ,2,821,4855 ,1,0,341065 ,2,822,81300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,426880 ,1,0,315200 ,2,821,5620 ,2,822,562990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,315490 ,2,821,6160 ,2,822,81340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,426885 ,1,0,315885 ,2,821,7610 ,2,822,81350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496950 ,2,827,41510 ,2,828,426890 ,1,0,316300 ,2,821,8845 ,1,0,192740 ,1,1,221595 ,2,822,81390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496955 ,2,827,75 ,2,828,426915 ,1,0,316755 ,2,821,11585 ,2,822,18675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,317130 ,2,821,11755 ,1,0,192805 ,1,1,45 ,1,2,192820 ,1,3,45 ,1,4,192805 ,1,5,165485 ,2,822,81410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496970 ,2,827,75 ,2,828,426920 ,1,0,317560 ,2,821,16365 ,1,0,5400 ,1,1,166485 ,1,2,359575 ,1,3,222945 ,1,4,2210 ,1,5,542350 ,2,822,81420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496975 ,2,827,41605 ,2,828,426925 ,1,0,318100 ,2,821,33515 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,56740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496980 ,2,827,41615 ,2,828,426930 ,1,0,318540 ,2,821,45395 ,2,822,57490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,318950 ,2,821,45720 ,2,822,56595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,426935 ,1,0,319335 ,2,821,46180 ,2,822,18685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,319880 ,2,821,46340 ,2,822,63775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496985 ,2,827,75 ,2,828,426940 ,1,0,320185 ,2,821,49845 ,1,0,217280 ,2,822,60650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497010 ,2,827,75 ,2,828,426945 ,1,0,320610 ,2,821,53605 ,2,822,18695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,321005 ,2,821,53750 ,2,822,18705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,321315 ,2,821,53945 ,2,822,81530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,426950 ,1,0,321760 ,2,821,54215 ,2,822,14655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,322170 ,2,821,54400 ,1,0,546190 ,2,822,81540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,426980 ,1,0,322605 ,2,821,54740 ,2,822,563070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,323235 ,2,821,55455 ,2,822,81585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497015 ,2,827,75 ,2,828,426985 ,1,0,323535 ,2,821,56615 ,1,0,45 ,1,1,13320 ,1,2,345810 ,2,822,81605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497115 ,2,827,75 ,2,828,427125 ,1,0,324170 ,2,821,59205 ,2,822,18765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,324690 ,2,821,59360 ,2,822,81625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,325095 ,2,821,62935 ,1,1,2395 ,2,822,81670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,426990 ,1,0,325625 ,2,821,63805 ,2,822,18785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,325920 ,2,821,63970 ,1,0,165955 ,2,822,81680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497020 ,2,827,41875 ,2,828,426995 ,1,0,326525 ,2,821,67290 ,2,822,81690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497025 ,2,827,75 ,2,828,427005 ,1,0,326840 ,2,821,71510 ,1,0,374125 ,2,822,81700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497035 ,2,827,75 ,2,828,427010 ,1,0,327455 ,2,821,72345 ,2,822,81710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,427045 ,1,0,327985 ,2,821,73155 ,2,822,81730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497045 ,2,827,75 ,2,828,427020 ,1,0,328525 ,2,821,74690 ,2,822,81720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497040 ,2,827,75 ,2,828,427015 ,1,0,328855 ,2,821,75920 ,2,822,81780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497085 ,2,827,41950 ,2,828,427055 ,1,0,329305 ,2,821,77665 ,1,0,256850 ,1,1,563120 ,1,2,45 ,1,3,13320 ,2,822,81790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497050 ,2,827,41920 ,2,828,427050 ,1,0,329625 ,2,821,80420 ,2,822,81935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427120 ,1,0,330135 ,2,821,80885 ,2,822,81925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497110 ,2,827,75 ,2,828,427115 ,1,0,330665 ,2,821,82285 ,1,1,2395 ,1,2,563130 ,1,3,45 ,1,4,9470 ,2,822,81835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497090 ,2,827,75 ,2,828,427060 ,1,0,330975 ,2,821,84070 ,2,822,81845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,427070 ,1,0,331290 ,2,821,84700 ,2,822,81855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497095 ,2,827,75 ,2,828,427065 ,1,0,331610 ,2,821,85615 ,2,822,81885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427105 ,1,0,331945 ,2,821,86065 ,2,822,81905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497100 ,2,827,75 ,2,828,427080 ,1,0,332375 ,2,821,86630 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,81895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491700 ,2,827,75 ,2,828,427075 ,1,0,332710 ,2,821,88475 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,81915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497105 ,2,827,75 ,2,828,427110 ,1,0,333025 ,2,821,89920 ,2,822,18825 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,333715 ,2,821,90065 ,2,822,81945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,427130 ,1,0,334350 ,2,821,91415 ,1,0,612555 ,2,822,81955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,334685 ,2,821,91660 ,1,0,543050 ,1,1,584615 ,1,2,543050 ,1,3,2210 ,1,4,542350 ,2,822,81995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497120 ,2,827,75 ,2,828,427135 ,1,0,335245 ,2,821,97285 ,1,0,612570 ,2,822,82005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,335440 ,2,821,97550 ,2,822,82015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,427165 ,1,0,335800 ,2,821,98440 ,1,0,373750 ,1,1,373760 ,1,2,373780 ,1,3,345870 ,2,822,82025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497135 ,2,827,75 ,2,828,427140 ,1,0,336215 ,2,821,101275 ,2,822,18875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,336575 ,2,821,101465 ,1,0,344545 ,1,1,242470 ,2,822,82070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497140 ,2,827,75 ,2,828,427170 ,1,0,337135 ,2,821,103235 ,1,0,612560 ,1,1,612565 ,2,822,82110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,337695 ,2,821,103830 ,1,0,344665 ,1,1,557710 ,2,822,82120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497145 ,2,827,75 ,2,828,427175 ,1,0,337885 ,2,821,105205 ,1,0,344605 ,1,1,174935 ,1,2,344595 ,1,3,344585 ,1,4,344575 ,1,5,344565 ,1,6,344555 ,2,822,82130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497150 ,2,827,42230 ,2,828,427180 ,1,0,338325 ,2,821,111600 ,2,822,82145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,338775 ,2,821,112030 ,2,822,82155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,339220 ,2,821,112300 ,1,0,2280 ,1,1,542160 ,1,2,2280 ,1,3,542160 ,1,4,45 ,1,5,13320 ,1,6,2280 ,1,7,542160 ,1,8,45 ,1,9,13320 ,1,10,337850 ,1,11,337840 ,1,12,2210 ,1,13,542350 ,1,14,2210 ,1,15,542350 ,1,16,2210 ,1,17,542350 ,2,822,82175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497155 ,2,827,33755 ,2,828,427190 ,1,0,339755 ,2,821,123475 ,1,0,194275 ,2,822,82215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,340270 ,2,821,126260 ,2,822,82225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,340835 ,2,821,126540 ,2,822,82235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,341135 ,2,821,126810 ,1,0,256960 ,2,822,82255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492600 ,2,827,75 ,2,828,420660 ,1,0,341810 ,2,821,127440 ,1,0,256970 ,2,822,82265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492600 ,2,827,75 ,2,828,420660 ,1,0,342220 ,2,821,128090 ,2,822,82305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427200 ,1,0,342530 ,2,821,128495 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,82315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496095 ,2,827,75 ,2,828,427195 ,1,0,343035 ,2,821,130175 ,1,0,223965 ,2,822,82325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497160 ,2,827,75 ,2,828,427205 ,1,0,343465 ,2,821,131370 ,2,822,82335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,427240 ,1,0,343765 ,2,821,132230 ,1,0,344865 ,2,822,82360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497165 ,2,827,75 ,2,828,427235 ,1,0,344625 ,2,821,134190 ,2,822,19455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,345070 ,2,821,134335 ,2,822,82370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497190 ,2,827,75 ,2,828,427250 ,1,0,345530 ,2,821,135255 ,2,822,82380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497170 ,2,827,75 ,2,828,427245 ,1,0,345940 ,2,821,137300 ,2,822,82405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,427255 ,1,0,346265 ,2,821,137910 ,2,822,19120 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,347020 ,2,821,138055 ,2,822,19020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,347335 ,2,821,138215 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,82415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497195 ,2,827,75 ,2,828,427260 ,1,0,347885 ,2,821,139835 ,2,822,563290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,348525 ,2,821,140430 ,2,822,82425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497200 ,2,827,24545 ,2,828,427265 ,1,0,349065 ,2,821,145240 ,2,822,82435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497205 ,2,827,42565 ,2,828,427280 ,1,0,349575 ,2,821,158715 ,1,0,556570 ,1,1,556565 ,2,822,82445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497215 ,2,827,75 ,2,828,427285 ,1,0,350215 ,2,821,161730 ,2,822,563300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,350755 ,2,821,162460 ,2,822,82545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497220 ,2,827,42645 ,2,828,427290 ,1,0,351295 ,2,821,163890 ,2,822,19515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,351935 ,2,821,164085 ,2,822,82565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497225 ,2,827,42655 ,2,828,427295 ,1,0,352475 ,2,821,165040 ,1,0,555625 ,2,822,82630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,427300 ,1,0,353055 ,2,821,166640 ,2,822,19150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,353665 ,2,821,166800 ,1,0,221710 ,2,822,82660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497245 ,2,827,75 ,2,828,427305 ,1,0,354220 ,2,821,168420 ,2,822,19190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,354735 ,2,821,168570 ,2,822,82740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,355395 ,2,821,169495 ,2,822,82760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,355915 ,2,821,170350 ,2,822,563505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,356245 ,2,821,170895 ,1,1,2395 ,2,822,82790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493270 ,2,827,75 ,2,828,427310 ,1,0,357705 ,2,821,171895 ,1,0,563290 ,1,1,45 ,1,2,345170 ,1,3,45 ,1,4,195155 ,2,822,82800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497250 ,2,827,75 ,2,828,427315 ,1,0,358220 ,2,821,175230 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,82810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497105 ,2,827,75 ,2,828,427340 ,1,0,358640 ,2,821,176750 ,2,822,82850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,427345 ,1,0,359155 ,2,821,178185 ,1,0,195345 ,2,822,82870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,359810 ,2,821,180995 ,1,0,256860 ,1,1,345850 ,1,2,345840 ,2,822,82910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497255 ,2,827,43075 ,2,828,427350 ,1,0,360145 ,2,821,182310 ,1,0,563505 ,1,1,45 ,1,2,345860 ,2,822,82920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497260 ,2,827,75 ,2,828,427355 ,1,0,361400 ,2,821,184465 ,1,0,195325 ,1,1,344700 ,1,2,344685 ,1,3,344675 ,1,4,557355 ,2,822,82930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497270 ,2,827,75 ,2,828,427360 ,1,0,361695 ,2,821,186555 ,1,0,208615 ,1,1,546390 ,1,2,344770 ,1,3,344730 ,1,4,45 ,1,5,13320 ,2,822,82970 ,2,823,540720 ,2,824,418140 ,2,825,352090 ,2,826,497325 ,2,827,43185 ,2,828,427440 ,1,0,362030 ,2,821,196275 ,1,0,344720 ,1,1,344710 ,2,822,82980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497275 ,2,827,75 ,2,828,427365 ,1,0,362640 ,2,821,198940 ,2,822,563555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,363190 ,2,821,199620 ,2,822,83020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497280 ,2,827,43165 ,2,828,427370 ,1,0,363655 ,2,821,202630 ,2,822,19305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,364195 ,2,821,202800 ,1,0,257145 ,1,1,5700 ,2,822,83050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497285 ,2,827,43175 ,2,828,427375 ,1,0,364735 ,2,821,204015 ,1,0,546385 ,2,822,83040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,427415 ,1,0,365275 ,2,821,204660 ,2,822,563570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,365935 ,2,821,205230 ,2,822,83080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427420 ,1,0,366650 ,2,821,205660 ,1,0,344655 ,1,1,344615 ,1,2,175265 ,1,3,223915 ,1,4,557350 ,2,822,83100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497320 ,2,827,43175 ,2,828,427430 ,1,0,367310 ,2,821,209405 ,1,0,45 ,1,1,205195 ,1,2,563575 ,1,3,45 ,1,4,192290 ,2,822,83110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497330 ,2,827,75 ,2,828,427445 ,1,0,367950 ,2,821,212190 ,1,0,344850 ,1,1,612575 ,1,2,344840 ,1,3,344830 ,1,4,344820 ,1,5,344800 ,1,6,344790 ,1,7,344780 ,2,822,83120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497385 ,2,827,75 ,2,828,427510 ,1,0,368590 ,2,821,214555 ,1,0,344515 ,1,1,205195 ,1,2,344505 ,1,3,344495 ,2,822,83250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497355 ,2,827,75 ,2,828,427505 ,1,0,369225 ,2,821,218640 ,1,1,2395 ,2,822,83130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427450 ,1,0,369730 ,2,821,219675 ,1,1,2395 ,2,822,83140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497335 ,2,827,75 ,2,828,427455 ,1,0,370255 ,2,821,220960 ,1,1,2395 ,2,822,83150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,427470 ,1,0,370870 ,2,821,222155 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,83180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496100 ,2,827,75 ,2,828,427475 ,1,0,371520 ,2,821,223875 ,2,822,83190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,372150 ,2,821,223995 ,2,822,83200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497340 ,2,827,75 ,2,828,427480 ,1,0,372680 ,2,821,226160 ,1,1,2395 ,2,822,83230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,427485 ,1,0,373015 ,2,821,227225 ,2,822,83240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497345 ,2,827,75 ,2,828,427495 ,1,0,373725 ,2,821,228265 ,1,1,2395 ,1,2,563585 ,1,3,45 ,1,4,9470 ,2,822,83210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497350 ,2,827,75 ,2,828,427500 ,1,0,374020 ,2,821,229755 ,2,822,83290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,427535 ,1,0,374650 ,2,821,231190 ,2,822,83310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,375200 ,2,821,232035 ,1,0,400430 ,1,1,83340 ,2,822,83330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,375565 ,2,821,232530 ,2,822,83340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,427545 ,1,0,375860 ,2,821,234215 ,1,1,2395 ,2,822,83350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427540 ,1,0,376170 ,2,821,235205 ,1,0,196030 ,2,822,83360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,376365 ,2,821,238005 ,1,0,546425 ,2,822,83395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,427550 ,1,0,376895 ,2,821,238700 ,2,822,563650 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,377290 ,2,821,239480 ,1,0,196180 ,1,1,257240 ,2,822,83405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497455 ,2,827,43860 ,2,828,427690 ,1,0,377660 ,2,821,242790 ,1,1,2395 ,2,822,83415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427560 ,1,0,378105 ,2,821,243845 ,2,822,83425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496165 ,2,827,75 ,2,828,427570 ,1,0,378485 ,2,821,244255 ,2,822,83435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497395 ,2,827,75 ,2,828,427565 ,1,0,378790 ,2,821,246505 ,2,822,563670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,379105 ,2,821,247875 ,1,1,2395 ,2,822,83455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427575 ,1,0,379455 ,2,821,248875 ,1,0,2280 ,1,1,542280 ,2,822,83515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497420 ,2,827,75 ,2,828,427670 ,1,0,379750 ,2,821,249890 ,2,822,83525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497400 ,2,827,75 ,2,828,427600 ,1,0,380140 ,2,821,251075 ,1,0,613070 ,2,822,83545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,380525 ,2,821,251565 ,1,0,223670 ,1,1,45 ,1,2,13320 ,1,3,223660 ,1,4,45 ,1,5,13320 ,1,6,196345 ,2,822,83555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497405 ,2,827,43805 ,2,828,427630 ,1,0,380840 ,2,821,261690 ,2,822,83620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,427620 ,1,0,381030 ,2,821,262380 ,1,1,2395 ,2,822,83565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495865 ,2,827,75 ,2,828,427605 ,1,0,381620 ,2,821,263415 ,1,1,2395 ,2,822,83575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427610 ,1,0,382005 ,2,821,264400 ,1,1,2395 ,2,822,83585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427615 ,1,0,382260 ,2,821,265435 ,1,1,2395 ,2,822,83725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,427625 ,1,0,382545 ,2,821,266410 ,1,0,612580 ,2,822,83630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,382860 ,2,821,266745 ,2,822,83640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,427635 ,1,0,383155 ,2,821,267650 ,1,0,600020 ,1,1,45 ,1,2,344140 ,1,3,558375 ,1,4,45 ,1,5,347205 ,2,822,83650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497410 ,2,827,75 ,2,828,427660 ,1,0,383440 ,2,821,270180 ,1,0,612585 ,2,822,83660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,383710 ,2,821,270515 ,1,0,45 ,1,1,5080 ,2,822,83705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497415 ,2,827,75 ,2,828,427665 ,1,0,384000 ,2,821,272350 ,2,822,83715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497445 ,2,827,43825 ,2,828,427675 ,1,0,384305 ,2,821,273665 ,1,0,45 ,1,1,13320 ,2,822,83760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497450 ,2,827,75 ,2,828,427680 ,1,0,384545 ,2,821,275005 ,1,1,2395 ,1,2,563665 ,1,3,45 ,1,4,9470 ,2,822,83780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491700 ,2,827,75 ,2,828,427685 ,1,0,384795 ,2,821,276745 ,2,822,83830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,427695 ,1,0,385090 ,2,821,277425 ,1,0,257190 ,1,1,257260 ,1,2,194650 ,1,3,257200 ,1,4,2210 ,1,5,542350 ,2,822,83840 ,2,823,540725 ,2,824,418145 ,2,825,352105 ,2,826,497470 ,2,827,43925 ,2,828,427725 ,1,0,385390 ,2,821,290160 ,2,822,83860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497460 ,2,827,75 ,2,828,427715 ,1,0,385690 ,2,821,291280 ,1,0,45 ,1,1,13320 ,1,2,220950 ,2,822,83870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497465 ,2,827,43915 ,2,828,427720 ,1,0,385940 ,2,821,295220 ,1,0,400430 ,1,1,83935 ,2,822,83925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,386245 ,2,821,295685 ,2,822,83935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,427745 ,1,0,386555 ,2,821,297340 ,1,0,220965 ,2,822,83965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497480 ,2,827,75 ,2,828,427740 ,1,0,386855 ,2,821,299945 ,2,822,83975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497475 ,2,827,75 ,2,828,427735 ,1,0,387075 ,2,821,301845 ,2,822,83985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427730 ,1,0,387385 ,2,821,302285 ,1,0,343115 ,2,822,84025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497515 ,2,827,44035 ,2,828,427750 ,1,0,387685 ,2,821,303620 ,1,0,343105 ,2,822,84045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497515 ,2,827,44035 ,2,828,427790 ,1,0,388005 ,2,821,304970 ,1,0,343095 ,2,822,84055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497515 ,2,827,44035 ,2,828,427795 ,1,0,388270 ,2,821,306270 ,2,822,84075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497520 ,2,827,44035 ,2,828,427800 ,1,0,388535 ,2,821,307520 ,1,0,343135 ,2,822,84085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497515 ,2,827,44035 ,2,828,427805 ,1,0,388840 ,2,821,308840 ,1,0,343125 ,2,822,84095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497515 ,2,827,44035 ,2,828,427810 ,1,0,389135 ,2,821,310145 ,2,822,84105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427815 ,1,0,389385 ,2,821,310565 ,1,0,257350 ,2,822,84145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,44035 ,2,828,427820 ,1,0,389635 ,2,821,311450 ,2,822,84260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,389950 ,2,821,314270 ,2,822,84270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,427825 ,1,0,390275 ,2,821,314990 ,1,0,45 ,1,1,210655 ,2,822,84280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,427845 ,1,0,390575 ,2,821,317195 ,2,822,19585 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,390900 ,2,821,317360 ,2,822,84365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,427855 ,1,0,391225 ,2,821,319035 ,1,0,222630 ,1,1,342460 ,2,822,84400 ,2,823,540730 ,2,824,418165 ,2,825,352115 ,2,826,497545 ,2,827,44250 ,2,828,427850 ,1,0,391560 ,2,821,328140 ,1,0,45 ,1,1,210655 ,2,822,84390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,427860 ,1,0,391850 ,2,821,330440 ,2,822,84460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497550 ,2,827,75 ,2,828,427870 ,1,0,392180 ,2,821,331505 ,2,822,19620 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,392410 ,2,821,331660 ,2,822,84505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,427875 ,1,0,392710 ,2,821,333545 ,2,822,19640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,392975 ,2,821,333690 ,2,822,84525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,427880 ,1,0,394120 ,2,821,335560 ,2,822,84570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,427885 ,1,0,395180 ,2,821,337450 ,2,822,84665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,427920 ,1,0,395620 ,2,821,339325 ,2,822,19650 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,395995 ,2,821,339485 ,1,0,45 ,1,1,210655 ,2,822,84785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,427925 ,1,0,396345 ,2,821,341775 ,2,822,563745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,396690 ,2,821,342830 ,1,0,563735 ,1,1,45 ,1,2,5900 ,1,3,199395 ,2,822,84875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497815 ,2,827,75 ,2,828,428290 ,1,0,396990 ,2,821,344080 ,1,0,546630 ,2,822,87405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497810 ,2,827,75 ,2,828,428280 ,1,0,397285 ,2,821,345295 ,2,822,19705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,397550 ,2,821,345470 ,2,822,19745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,397725 ,2,821,345625 ,2,822,84885 ,2,823,540735 ,2,824,418170 ,2,825,352125 ,2,826,497555 ,2,827,44250 ,2,828,427930 ,1,0,398060 ,2,821,353520 ,2,822,84920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497590 ,2,827,44765 ,2,828,427935 ,1,0,398365 ,2,821,357340 ,2,822,84965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,427960 ,1,0,398900 ,2,821,359065 ,1,0,370225 ,1,1,370215 ,2,822,85035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497600 ,2,827,44835 ,2,828,427955 ,1,0,399265 ,2,821,372900 ,2,822,84975 ,2,823,540740 ,2,824,418175 ,2,825,352135 ,2,826,497595 ,2,827,44250 ,2,828,427945 ,1,0,399820 ,2,821,378080 ,2,822,85080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,427950 ,1,0,400280 ,2,821,378845 ,1,0,45 ,1,1,330070 ,2,822,84995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,427980 ,1,0,400780 ,2,821,380435 ,1,0,197850 ,2,822,85090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497615 ,2,827,75 ,2,828,427985 ,1,0,401280 ,2,821,387765 ,2,822,19840 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,401810 ,2,821,387865 ,1,0,197840 ,2,822,85190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497625 ,2,827,75 ,2,828,428005 ,1,0,402145 ,2,821,393175 ,1,0,330100 ,1,1,330090 ,2,822,85200 ,2,823,540745 ,2,824,418170 ,2,825,352125 ,2,826,497620 ,2,827,44250 ,2,828,427930 ,1,0,402470 ,2,821,397795 ,1,0,564000 ,1,1,45 ,1,2,330070 ,2,822,85210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,427990 ,1,0,402815 ,2,821,399425 ,1,0,330080 ,2,822,85220 ,2,823,540765 ,2,824,418175 ,2,825,352135 ,2,826,497595 ,2,827,44250 ,2,828,427945 ,1,0,403065 ,2,821,403855 ,2,822,85240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,427995 ,1,0,403320 ,2,821,404875 ,1,0,556205 ,1,1,370350 ,2,822,85250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497630 ,2,827,44960 ,2,828,428010 ,1,0,403745 ,2,821,408665 ,2,822,19875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,404325 ,2,821,408750 ,2,822,85380 ,2,823,540770 ,2,824,418170 ,2,825,352125 ,2,826,497650 ,2,827,44250 ,2,828,427930 ,1,0,404810 ,2,821,413535 ,2,822,19940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,405140 ,2,821,413640 ,1,0,45 ,1,1,330070 ,2,822,85435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,428020 ,1,0,405590 ,2,821,415280 ,2,822,85540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497655 ,2,827,75 ,2,828,428015 ,1,0,405985 ,2,821,416575 ,1,0,45 ,1,1,210655 ,2,822,85455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,428030 ,1,0,406470 ,2,821,417890 ,2,822,85595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497660 ,2,827,45145 ,2,828,428035 ,1,0,406985 ,2,821,419635 ,1,0,45 ,1,1,210655 ,2,822,85645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497665 ,2,827,75 ,2,828,428040 ,1,0,407695 ,2,821,420670 ,2,822,19960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,408040 ,2,821,420765 ,1,0,45 ,1,1,210655 ,2,822,85755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,428045 ,1,0,408420 ,2,821,422155 ,1,0,45 ,1,1,330070 ,2,822,85865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,428055 ,1,0,408830 ,2,821,423825 ,1,0,370330 ,2,822,85910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,409210 ,2,821,425255 ,2,822,85895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497670 ,2,827,75 ,2,828,428060 ,1,0,409545 ,2,821,426445 ,1,0,198260 ,2,822,85920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497675 ,2,827,75 ,2,828,428065 ,1,0,409915 ,2,821,429535 ,2,822,85930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497680 ,2,827,45340 ,2,828,428070 ,1,0,410480 ,2,821,432845 ,1,0,85435 ,2,822,85980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497685 ,2,827,45350 ,2,828,428100 ,1,0,410970 ,2,821,436475 ,1,0,45 ,1,1,210655 ,2,822,86000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,427845 ,1,0,411185 ,2,821,437895 ,2,822,86030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497710 ,2,827,75 ,2,828,428105 ,1,0,411735 ,2,821,438770 ,2,822,86040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497715 ,2,827,75 ,2,828,428110 ,1,0,411960 ,2,821,439860 ,2,822,86105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428240 ,1,0,412195 ,2,821,440890 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,2210 ,1,5,542350 ,1,6,2210 ,1,7,542350 ,2,822,86735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497795 ,2,827,45495 ,2,828,428120 ,1,0,412730 ,2,821,457190 ,2,822,86115 ,2,823,540775 ,2,824,418175 ,2,825,352135 ,2,826,497720 ,2,827,44250 ,2,828,428115 ,1,0,413320 ,2,821,461630 ,2,822,20065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,413500 ,2,821,461755 ,2,822,86135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497725 ,2,827,75 ,2,828,428125 ,1,0,413820 ,2,821,462900 ,2,822,86170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497730 ,2,827,34150 ,2,828,428130 ,1,0,413990 ,2,821,471290 ,2,822,86180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497735 ,2,827,45650 ,2,828,428135 ,1,0,414510 ,2,821,473570 ,1,0,370060 ,2,822,86215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,428170 ,1,0,414835 ,2,821,473840 ,2,822,20210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,415255 ,2,821,473960 ,2,822,86245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497810 ,2,827,75 ,2,828,428175 ,1,0,415510 ,2,821,474690 ,2,822,20230 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,415930 ,2,821,474785 ,2,822,86285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497740 ,2,827,75 ,2,828,428180 ,1,0,416365 ,2,821,475685 ,2,822,86295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497745 ,2,827,75 ,2,828,428185 ,1,0,416730 ,2,821,476800 ,2,822,20245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,417030 ,2,821,476910 ,1,0,198270 ,1,1,257385 ,1,2,257375 ,2,822,86400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497785 ,2,827,45890 ,2,828,428195 ,1,0,417270 ,2,821,480800 ,2,822,86420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497780 ,2,827,45880 ,2,828,428190 ,1,0,417965 ,2,821,483235 ,1,0,370070 ,2,822,86440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497790 ,2,827,46275 ,2,828,428205 ,1,0,418160 ,2,821,486780 ,2,822,20255 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,418580 ,2,821,486885 ,2,822,86470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,428200 ,1,0,418890 ,2,821,487145 ,2,822,20380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,419290 ,2,821,487225 ,1,0,45 ,1,1,4315 ,2,822,86715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,428255 ,1,0,419585 ,2,821,488905 ,2,822,86750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497800 ,2,827,75 ,2,828,428250 ,1,0,419950 ,2,821,490040 ,2,822,86725 ,2,823,540780 ,2,824,418180 ,2,825,352125 ,2,826,497555 ,2,827,44250 ,2,828,428245 ,1,0,420305 ,2,821,494875 ,1,0,45 ,1,1,210655 ,2,822,86870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497665 ,2,827,75 ,2,828,428265 ,1,0,420630 ,2,821,495885 ,2,822,20400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,420915 ,2,821,495985 ,1,0,45 ,1,1,210655 ,2,822,86975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497665 ,2,827,75 ,2,828,428270 ,1,0,421295 ,2,821,496910 ,1,0,45 ,1,1,210655 ,2,822,87150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,427845 ,1,0,421685 ,2,821,498335 ,1,0,45 ,1,1,210655 ,2,822,87190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,428045 ,1,0,421920 ,2,821,499785 ,2,822,20460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,422180 ,2,821,499870 ,2,822,20470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,422435 ,2,821,499975 ,2,822,20480 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,422910 ,2,821,500065 ,2,822,87320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497805 ,2,827,75 ,2,828,428275 ,1,0,423290 ,2,821,501320 ,2,822,20490 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,423680 ,2,821,501435 ,2,822,20505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,424030 ,2,821,501525 ,2,822,87425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,428295 ,1,0,424440 ,2,821,502230 ,2,822,563735 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,424830 ,2,821,503145 ,2,822,87470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,428325 ,1,0,425075 ,2,821,503910 ,2,822,20525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,425390 ,2,821,504030 ,2,822,20575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,425705 ,2,821,504120 ,2,822,20585 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,426020 ,2,821,504245 ,2,822,87535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497850 ,2,827,75 ,2,828,428300 ,1,0,426380 ,2,821,505195 ,1,0,325680 ,2,822,87580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497865 ,2,827,75 ,2,828,428315 ,1,0,426590 ,2,821,507020 ,2,822,87590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497855 ,2,827,75 ,2,828,428305 ,1,0,426835 ,2,821,508500 ,2,822,20675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,427085 ,2,821,508605 ,2,822,87600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497860 ,2,827,75 ,2,828,428310 ,1,0,427320 ,2,821,510105 ,2,822,20645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,427595 ,2,821,510200 ,2,822,20615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,427915 ,2,821,510300 ,2,822,87715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497870 ,2,827,75 ,2,828,428320 ,1,0,428140 ,2,821,513220 ,2,822,20685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,428370 ,2,821,513330 ,1,0,357085 ,2,822,87870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497875 ,2,827,34450 ,2,828,428375 ,1,0,428700 ,2,821,515975 ,2,822,20705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,428995 ,2,821,516085 ,1,0,176835 ,2,822,87940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497880 ,2,827,47230 ,2,828,428380 ,1,0,429290 ,2,821,519445 ,2,822,20715 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,429620 ,2,821,519550 ,1,0,45 ,1,1,327595 ,2,822,87965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497885 ,2,827,75 ,2,828,428385 ,1,0,429790 ,2,821,520400 ,2,822,88025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511030 ,2,827,98280 ,2,828,448995 ,1,0,429940 ,2,821,521760 ,1,0,313475 ,2,822,165420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511025 ,2,827,98270 ,2,828,448990 ,1,0,430260 ,2,821,524735 ,2,822,88295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497955 ,2,827,75 ,2,828,428455 ,1,0,430670 ,2,821,525645 ,2,822,20725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,430965 ,2,821,525745 ,2,822,20745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,431170 ,2,821,525855 ,1,0,356195 ,2,822,88075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497905 ,2,827,47360 ,2,828,428390 ,1,0,431435 ,2,821,527630 ,1,0,219945 ,2,822,88085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497910 ,2,827,75 ,2,828,428400 ,1,0,431820 ,2,821,528730 ,2,822,88095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497915 ,2,827,75 ,2,828,428405 ,1,0,432185 ,2,821,529605 ,2,822,20780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,432420 ,2,821,529710 ,1,0,45 ,1,1,344025 ,2,822,88160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,428415 ,1,0,432985 ,2,821,531425 ,1,0,163245 ,2,822,88225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497920 ,2,827,30980 ,2,828,428410 ,1,0,433660 ,2,821,533985 ,2,822,88245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497940 ,2,827,75 ,2,828,428440 ,1,0,434030 ,2,821,536285 ,2,822,88255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497945 ,2,827,47465 ,2,828,428445 ,1,0,434485 ,2,821,538970 ,1,0,268610 ,2,822,88265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497950 ,2,827,75 ,2,828,428450 ,1,0,434670 ,2,821,540320 ,1,0,268995 ,2,822,88190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511015 ,2,827,75 ,2,828,448980 ,1,0,435075 ,2,821,541170 ,2,822,88335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497975 ,2,827,75 ,2,828,428465 ,1,0,435400 ,2,821,541840 ,1,0,343920 ,1,1,223445 ,1,2,178295 ,2,822,88355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498015 ,2,827,75 ,2,828,428515 ,1,0,435805 ,2,821,543730 ,1,0,200390 ,1,1,200405 ,1,2,3825 ,2,822,88450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498010 ,2,827,47580 ,2,828,428480 ,1,0,436205 ,2,821,550995 ,1,0,4755 ,2,822,88365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497980 ,2,827,75 ,2,828,428470 ,1,0,436595 ,2,821,551785 ,1,0,11265 ,1,1,344045 ,1,2,344035 ,2,822,88390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497985 ,2,827,75 ,2,828,428475 ,1,0,437070 ,2,821,553520 ,2,822,88380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,437445 ,2,821,553995 ,2,822,20845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,437750 ,2,821,554090 ,1,0,546835 ,2,822,88410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,428500 ,1,0,438055 ,2,821,554510 ,2,822,564945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,438395 ,2,821,554965 ,1,0,165595 ,2,822,88430 ,2,823,540785 ,2,824,418190 ,2,825,352165 ,2,826,498005 ,2,827,75 ,2,828,428510 ,1,0,438695 ,2,821,557040 ,1,0,257495 ,1,1,344055 ,2,822,88440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497990 ,2,827,47645 ,2,828,428505 ,1,0,439095 ,2,821,559110 ,2,822,88460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,39440 ,2,828,428530 ,1,0,439330 ,2,821,559695 ,1,0,343510 ,1,1,557705 ,1,2,343500 ,2,822,88480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510960 ,2,827,75 ,2,828,448860 ,1,0,439630 ,2,821,560990 ,2,822,165100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,448810 ,1,0,439825 ,2,821,561405 ,2,822,165075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,448805 ,1,0,440040 ,2,821,561805 ,2,822,88500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,428535 ,1,0,440245 ,2,821,562220 ,2,822,88510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,440435 ,2,821,562390 ,1,0,200570 ,2,822,88545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498050 ,2,827,75 ,2,828,428540 ,1,0,440685 ,2,821,565405 ,2,822,88555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,440915 ,2,821,566150 ,1,0,200590 ,1,1,200580 ,1,2,45 ,1,3,200590 ,1,4,565015 ,1,5,45 ,1,6,200580 ,1,7,165785 ,2,822,88565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498055 ,2,827,75 ,2,828,428545 ,1,0,441205 ,2,821,569600 ,2,822,20950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,441570 ,2,821,569695 ,1,0,546845 ,2,822,88605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498060 ,2,827,47360 ,2,828,428580 ,1,0,441895 ,2,821,571260 ,2,822,20960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,442185 ,2,821,571395 ,2,822,88640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498065 ,2,827,75 ,2,828,428585 ,1,0,442485 ,2,821,572765 ,1,0,565045 ,1,1,45 ,1,2,343535 ,1,3,45 ,1,4,343520 ,2,822,88650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498070 ,2,827,75 ,2,828,428590 ,1,0,442755 ,2,821,575030 ,2,822,565045 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,443010 ,2,821,575410 ,1,0,200810 ,2,822,88660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498075 ,2,827,75 ,2,828,428595 ,1,0,443205 ,2,821,575730 ,1,0,546855 ,2,822,88685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,428610 ,1,0,443670 ,2,821,576185 ,1,0,45 ,1,1,300365 ,1,2,45 ,1,3,195155 ,1,4,45 ,1,5,5080 ,2,822,88750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498085 ,2,827,75 ,2,828,428625 ,1,0,443930 ,2,821,578570 ,1,0,222975 ,2,822,88780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498080 ,2,827,75 ,2,828,428620 ,1,0,444145 ,2,821,581675 ,1,0,257565 ,1,1,222995 ,1,2,179245 ,2,822,88760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498115 ,2,827,48200 ,2,828,428635 ,1,0,444410 ,2,821,585100 ,1,0,257555 ,2,822,88770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498125 ,2,827,48220 ,2,828,428645 ,1,0,444695 ,2,821,586945 ,1,0,546860 ,1,1,223150 ,1,2,188900 ,2,822,88795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498120 ,2,827,48210 ,2,828,428640 ,1,0,444865 ,2,821,588895 ,1,0,341745 ,2,822,88860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498150 ,2,827,48420 ,2,828,428655 ,1,0,445040 ,2,821,601570 ,2,822,21040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,445245 ,2,821,601680 ,2,822,565130 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,445665 ,2,821,602120 ,1,0,546865 ,1,1,45 ,1,2,11510 ,2,822,88880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498130 ,2,827,24545 ,2,828,428650 ,1,0,446095 ,2,821,605435 ,1,0,45 ,1,1,341755 ,2,822,88900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,428660 ,1,0,446540 ,2,821,606865 ,1,0,45 ,1,1,167770 ,2,822,88920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,428670 ,1,0,447015 ,2,821,608535 ,1,0,222175 ,2,822,91590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,428665 ,1,0,447230 ,2,821,610760 ,2,822,88945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,429235 ,1,0,447810 ,2,821,611805 ,1,0,222125 ,1,1,546885 ,2,822,165020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498470 ,2,827,75 ,2,828,429230 ,1,0,448535 ,2,821,614825 ,1,0,91500 ,1,1,202210 ,1,2,91440 ,1,3,202260 ,1,4,91330 ,1,5,202305 ,2,822,91580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498465 ,2,827,49405 ,2,828,429145 ,1,0,448900 ,2,821,618230 ,1,0,202295 ,1,1,202200 ,1,2,202790 ,1,3,202690 ,1,4,202435 ,2,822,91285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498420 ,2,827,75 ,2,828,429140 ,1,0,449580 ,2,821,621115 ,2,822,21095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,449920 ,2,821,621210 ,2,822,88965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,428705 ,1,0,450170 ,2,821,622200 ,2,822,88985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498350 ,2,827,75 ,2,828,429050 ,1,0,450405 ,2,821,624495 ,2,822,21245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,450645 ,2,821,624600 ,2,822,89005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,428710 ,1,0,450890 ,2,821,625665 ,2,822,89075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,428715 ,1,0,451165 ,2,821,626775 ,2,822,89105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428720 ,1,0,451400 ,2,821,627840 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,89235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498305 ,2,827,48645 ,2,828,428725 ,1,0,451860 ,2,821,630400 ,2,822,565345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,452055 ,2,821,631165 ,2,822,21265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,452635 ,2,821,631270 ,2,822,21275 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,453050 ,2,821,631355 ,2,822,21285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,453345 ,2,821,631445 ,2,822,89310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,428730 ,1,0,453665 ,2,821,632565 ,2,822,89330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428720 ,1,0,454040 ,2,821,633575 ,2,822,89415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494605 ,2,827,75 ,2,828,428740 ,1,0,454375 ,2,821,634270 ,2,822,89425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498280 ,2,827,75 ,2,828,428925 ,1,0,454720 ,2,821,636120 ,2,822,90230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498275 ,2,827,48760 ,2,828,428790 ,1,0,455035 ,2,821,645065 ,1,0,596000 ,1,1,45 ,1,2,224025 ,1,3,221915 ,2,822,89435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498160 ,2,827,75 ,2,828,428785 ,1,0,455425 ,2,821,647100 ,2,822,89445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,455755 ,2,821,647680 ,2,822,90210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,455940 ,2,821,649070 ,2,822,89495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428795 ,1,0,456135 ,2,821,650030 ,2,822,89515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428800 ,1,0,456315 ,2,821,651075 ,2,822,21325 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,456765 ,2,821,651175 ,2,822,89530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,428815 ,1,0,456950 ,2,821,651730 ,1,0,45 ,1,1,332340 ,2,822,89540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498165 ,2,827,75 ,2,828,428805 ,1,0,457220 ,2,821,652510 ,1,0,595260 ,1,1,45 ,1,2,332340 ,2,822,89550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498195 ,2,827,75 ,2,828,428810 ,1,0,457500 ,2,821,653180 ,1,0,45 ,1,1,177250 ,2,822,89595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,428820 ,1,0,457700 ,2,821,655020 ,1,0,45 ,1,1,177250 ,2,822,89615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,428830 ,1,0,457885 ,2,821,656835 ,1,0,608875 ,1,1,45 ,1,2,195155 ,2,822,89625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498205 ,2,827,75 ,2,828,428840 ,1,0,458345 ,2,821,657730 ,1,0,608900 ,1,1,45 ,1,2,332330 ,1,3,595255 ,1,4,45 ,1,5,332340 ,2,822,89635 ,2,823,540790 ,2,824,418195 ,2,825,352175 ,2,826,498200 ,2,827,75 ,2,828,428835 ,1,0,458550 ,2,821,659685 ,2,822,21345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,458800 ,2,821,659795 ,2,822,89645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,428845 ,1,0,459085 ,2,821,660860 ,2,822,89695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,428850 ,1,0,459280 ,2,821,661950 ,2,822,89725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428860 ,1,0,459470 ,2,821,662975 ,2,822,89820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,428855 ,1,0,459750 ,2,821,663390 ,2,822,89800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428865 ,1,0,460045 ,2,821,664385 ,1,0,89645 ,1,1,89595 ,1,2,89725 ,1,3,165025 ,2,822,89830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498270 ,2,827,48900 ,2,828,428915 ,1,0,460365 ,2,821,666905 ,2,822,89880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498235 ,2,827,30445 ,2,828,428910 ,1,0,460735 ,2,821,667680 ,2,822,90305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498230 ,2,827,75 ,2,828,428900 ,1,0,460935 ,2,821,669805 ,1,0,612390 ,2,822,89985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498210 ,2,827,75 ,2,828,428885 ,1,0,461375 ,2,821,670630 ,1,0,612415 ,1,1,542945 ,1,2,595515 ,1,3,542945 ,1,4,542940 ,1,5,595510 ,1,6,542940 ,1,7,337390 ,1,8,337380 ,1,9,337370 ,2,822,90025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498220 ,2,827,75 ,2,828,428890 ,1,0,461725 ,2,821,15 ,1,0,556385 ,1,1,612455 ,2,822,90045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498225 ,2,827,75 ,2,828,428895 ,1,0,461900 ,2,821,2615 ,2,822,89850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,428920 ,1,0,462205 ,2,821,4335 ,1,0,595520 ,1,1,45 ,1,2,337420 ,2,822,89925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498285 ,2,827,75 ,2,828,428950 ,1,0,462370 ,2,821,7605 ,2,822,89935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,462635 ,2,821,8415 ,1,0,45 ,1,1,177250 ,2,822,90005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,428955 ,1,0,462925 ,2,821,11590 ,1,0,596005 ,1,1,45 ,1,2,13320 ,2,822,90105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498290 ,2,827,75 ,2,828,428970 ,1,0,463100 ,2,821,16560 ,2,822,21355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,463280 ,2,821,16745 ,1,0,45 ,1,1,276975 ,2,822,90115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493840 ,2,827,75 ,2,828,428960 ,1,0,463530 ,2,821,18360 ,1,0,565490 ,1,1,45 ,1,2,276975 ,2,822,90135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,428965 ,1,0,463995 ,2,821,21075 ,2,822,90270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498295 ,2,827,49045 ,2,828,428975 ,1,0,464395 ,2,821,27205 ,2,822,90440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,464615 ,2,821,28050 ,2,822,90450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498300 ,2,827,49110 ,2,828,429015 ,1,0,465035 ,2,821,29865 ,1,0,45 ,1,1,177250 ,2,822,90515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498315 ,2,827,75 ,2,828,429020 ,1,0,465210 ,2,821,33025 ,2,822,90525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498320 ,2,827,75 ,2,828,429025 ,1,0,465440 ,2,821,35380 ,2,822,90555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498325 ,2,827,32775 ,2,828,429030 ,1,0,465730 ,2,821,37685 ,2,822,90625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498345 ,2,827,75 ,2,828,429045 ,1,0,466025 ,2,821,47695 ,1,0,565345 ,1,1,45 ,1,2,11510 ,1,3,45 ,1,4,11510 ,1,5,45 ,1,6,11510 ,2,822,90635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498330 ,2,827,49130 ,2,828,429040 ,1,0,466340 ,2,821,52560 ,2,822,90755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,429055 ,1,0,466675 ,2,821,54450 ,1,0,565550 ,1,1,45 ,1,2,13320 ,1,3,596010 ,1,4,45 ,1,5,13320 ,1,6,341605 ,1,7,45 ,1,8,13320 ,2,822,90765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498355 ,2,827,49210 ,2,828,429065 ,1,0,466835 ,2,821,60605 ,2,822,565550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,467650 ,2,821,61880 ,2,822,90785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,429070 ,1,0,467875 ,2,821,63600 ,1,0,201245 ,1,1,202000 ,1,2,374095 ,2,822,90920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498390 ,2,827,49225 ,2,828,429080 ,1,0,468145 ,2,821,68795 ,1,0,595995 ,1,1,45 ,1,2,13320 ,1,3,565665 ,1,4,45 ,1,5,13320 ,2,822,91190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498360 ,2,827,49210 ,2,828,429075 ,1,0,468355 ,2,821,72025 ,1,0,45 ,1,1,177250 ,2,822,91020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494235 ,2,827,75 ,2,828,429085 ,1,0,468680 ,2,821,75110 ,1,0,341625 ,1,1,341615 ,2,822,91075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498395 ,2,827,49295 ,2,828,429090 ,1,0,468865 ,2,821,76815 ,2,822,91095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498405 ,2,827,49305 ,2,828,429095 ,1,0,469045 ,2,821,80760 ,2,822,91130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498400 ,2,827,49315 ,2,828,429100 ,1,0,469735 ,2,821,82140 ,1,0,565660 ,1,1,45 ,1,2,13320 ,1,3,45 ,1,4,13320 ,1,5,45 ,1,6,13320 ,2,822,91180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498415 ,2,827,49210 ,2,828,429135 ,1,0,470025 ,2,821,85800 ,2,822,565660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,470270 ,2,821,87060 ,2,822,565665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,470495 ,2,821,88305 ,2,822,21375 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,470790 ,2,821,88470 ,2,822,91330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,429175 ,1,0,470975 ,2,821,90145 ,1,0,202315 ,2,822,91380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498430 ,2,827,32775 ,2,828,429170 ,1,0,471665 ,2,821,93660 ,1,0,201420 ,1,1,91350 ,2,822,91370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498425 ,2,827,49415 ,2,828,429150 ,1,0,471890 ,2,821,96340 ,2,822,91350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,429165 ,1,0,472185 ,2,821,98070 ,1,0,2280 ,1,1,542275 ,2,822,91360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493565 ,2,827,75 ,2,828,429160 ,1,0,472430 ,2,821,99255 ,2,822,91400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,429200 ,1,0,472695 ,2,821,101115 ,2,822,91430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,429205 ,1,0,472975 ,2,821,101985 ,2,822,91440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,429210 ,1,0,473140 ,2,821,103690 ,1,0,565690 ,1,1,45 ,1,2,11510 ,2,822,91460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,429215 ,1,0,473935 ,2,821,105030 ,2,822,91490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,429220 ,1,0,474165 ,2,821,105785 ,2,822,91500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,429225 ,1,0,474430 ,2,821,107530 ,2,822,21435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,474650 ,2,821,107705 ,1,0,188910 ,2,822,91600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510950 ,2,827,97970 ,2,828,448795 ,1,0,474905 ,2,821,113005 ,1,0,251630 ,1,1,2210 ,1,2,542350 ,2,822,165010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510935 ,2,827,40735 ,2,828,448790 ,1,0,475180 ,2,821,119760 ,2,822,165000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510930 ,2,827,75 ,2,828,448785 ,1,0,475380 ,2,821,122070 ,2,822,164965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,448780 ,1,0,475930 ,2,821,123220 ,1,0,188665 ,2,822,164955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510920 ,2,827,75 ,2,828,448755 ,1,0,476365 ,2,821,125350 ,1,0,91695 ,1,1,91630 ,2,822,91755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498540 ,2,827,49510 ,2,828,429250 ,1,0,476830 ,2,821,129400 ,2,822,91630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,429270 ,1,0,477370 ,2,821,131150 ,2,822,91675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,429265 ,1,0,477865 ,2,821,132235 ,1,0,356275 ,1,1,356265 ,1,2,557275 ,1,3,2210 ,1,4,542350 ,2,822,91665 ,2,823,540800 ,2,824,418205 ,2,825,352195 ,2,826,498480 ,2,827,49550 ,2,828,429260 ,1,0,478410 ,2,821,144475 ,1,0,544655 ,1,1,344005 ,1,2,359615 ,1,3,343975 ,2,822,91640 ,2,823,540795 ,2,824,418200 ,2,825,352185 ,2,826,498475 ,2,827,44250 ,2,828,429255 ,1,0,478615 ,2,821,148430 ,1,0,45 ,1,1,343965 ,2,822,91695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,429315 ,1,0,478885 ,2,821,151195 ,2,822,91745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498495 ,2,827,75 ,2,828,429285 ,1,0,479110 ,2,821,152415 ,1,0,310235 ,1,1,374705 ,1,2,165895 ,1,3,343955 ,1,4,356215 ,1,5,557270 ,1,6,223455 ,1,7,356225 ,2,822,91735 ,2,823,540845 ,2,824,418245 ,2,825,352225 ,2,826,498490 ,2,827,75 ,2,828,429280 ,1,0,479315 ,2,821,159245 ,1,0,374515 ,2,822,91725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498485 ,2,827,49580 ,2,828,429275 ,1,0,480240 ,2,821,163055 ,2,822,91765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,480550 ,2,821,163685 ,2,822,21550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,481410 ,2,821,163845 ,1,0,45 ,1,1,210655 ,2,822,91785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,429320 ,1,0,481615 ,2,821,166145 ,2,822,91845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498545 ,2,827,75 ,2,828,429325 ,1,0,481825 ,2,821,168195 ,1,0,357165 ,2,822,91865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,482015 ,2,821,168525 ,1,0,222185 ,2,822,91875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,429330 ,1,0,482370 ,2,821,172285 ,1,0,222250 ,2,822,91885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,429335 ,1,0,482595 ,2,821,177035 ,2,822,91940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,429345 ,1,0,483300 ,2,821,178925 ,1,0,222145 ,2,822,91970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498555 ,2,827,75 ,2,828,429340 ,1,0,483570 ,2,821,183670 ,1,0,203365 ,1,1,203375 ,1,2,559345 ,1,3,45 ,1,4,203385 ,1,5,45 ,1,6,203375 ,1,7,45 ,1,8,203365 ,1,9,164095 ,2,822,91960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498565 ,2,827,75 ,2,828,429395 ,1,0,483810 ,2,821,190810 ,2,822,91995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498560 ,2,827,75 ,2,828,429350 ,1,0,484075 ,2,821,194130 ,2,822,91985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,429400 ,1,0,484325 ,2,821,195005 ,2,822,92005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,429585 ,1,0,484570 ,2,821,195780 ,1,0,556860 ,1,1,556855 ,1,2,556845 ,2,822,92015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498570 ,2,827,75 ,2,828,429405 ,1,0,484960 ,2,821,199775 ,2,822,21640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,485300 ,2,821,199945 ,2,822,21650 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,485580 ,2,821,200100 ,2,822,21660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,485850 ,2,821,200285 ,2,822,565875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,486085 ,2,821,200945 ,1,0,329390 ,2,822,92070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498575 ,2,827,50070 ,2,828,429410 ,1,0,486415 ,2,821,211110 ,2,822,21670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,486715 ,2,821,211275 ,2,822,21705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,486915 ,2,821,211420 ,1,0,45 ,1,1,210655 ,2,822,92170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,429415 ,1,0,487825 ,2,821,214235 ,2,822,565960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,488030 ,2,821,214940 ,1,0,45 ,1,1,327800 ,2,822,92190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,429475 ,1,0,488860 ,2,821,217670 ,1,0,181910 ,1,1,217735 ,1,2,2210 ,1,3,542350 ,2,822,92375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498625 ,2,827,30980 ,2,828,429470 ,1,0,489120 ,2,821,230850 ,1,0,217745 ,2,822,92345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498595 ,2,827,75 ,2,828,429420 ,1,0,489365 ,2,821,235530 ,2,822,92315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494760 ,2,827,75 ,2,828,429460 ,1,0,489710 ,2,821,236815 ,1,0,327790 ,1,1,163875 ,1,2,327755 ,2,822,92215 ,2,823,540855 ,2,824,418255 ,2,825,352245 ,2,826,498605 ,2,827,44250 ,2,828,429430 ,1,0,489975 ,2,821,243490 ,1,0,329550 ,1,1,218840 ,1,2,555880 ,1,3,218830 ,1,4,329540 ,2,822,92205 ,2,823,540850 ,2,824,418250 ,2,825,352235 ,2,826,498600 ,2,827,44250 ,2,828,429425 ,1,0,490315 ,2,821,258015 ,2,822,21770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,490515 ,2,821,258160 ,2,822,92355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498610 ,2,827,50240 ,2,828,429465 ,1,0,490725 ,2,821,259910 ,1,0,561625 ,1,1,45 ,1,2,203765 ,2,822,92235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,429485 ,1,0,491145 ,2,821,262520 ,2,822,92385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498630 ,2,827,75 ,2,828,429480 ,1,0,491545 ,2,821,263865 ,2,822,92285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,491740 ,2,821,264695 ,1,0,92190 ,2,822,92325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498640 ,2,827,50280 ,2,828,429495 ,1,0,492690 ,2,821,267010 ,1,0,200095 ,2,822,92335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498635 ,2,827,50260 ,2,828,429490 ,1,0,492950 ,2,821,270715 ,1,0,203755 ,1,1,218760 ,2,822,92395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498670 ,2,827,75 ,2,828,429515 ,1,0,493295 ,2,821,275670 ,1,0,555875 ,2,822,92405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498665 ,2,827,75 ,2,828,429510 ,1,0,493525 ,2,821,277665 ,2,822,21715 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,493830 ,2,821,277845 ,2,822,92430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,429520 ,1,0,494090 ,2,821,279535 ,2,822,92490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498675 ,2,827,50370 ,2,828,429525 ,1,0,494405 ,2,821,286190 ,2,822,21780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,494645 ,2,821,286335 ,1,0,45 ,1,1,210655 ,2,822,92600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,429545 ,1,0,494935 ,2,821,289005 ,2,822,92610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,429550 ,1,0,495225 ,2,821,289710 ,1,0,218695 ,2,822,92650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498680 ,2,827,75 ,2,828,429555 ,1,0,495465 ,2,821,292260 ,2,822,92660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498695 ,2,827,75 ,2,828,429560 ,1,0,495675 ,2,821,294745 ,1,0,203980 ,2,822,92675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498700 ,2,827,75 ,2,828,429580 ,1,0,495830 ,2,821,299640 ,2,822,21595 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,496105 ,2,821,299800 ,1,0,257770 ,2,822,92695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499470 ,2,827,52985 ,2,828,430580 ,1,0,496380 ,2,821,302340 ,1,0,356120 ,1,1,200975 ,1,2,188890 ,1,3,91940 ,1,4,356050 ,1,5,88920 ,1,6,356070 ,2,822,165055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499465 ,2,827,52975 ,2,828,430575 ,1,0,496595 ,2,821,307260 ,1,0,596285 ,1,1,45 ,1,2,342765 ,1,3,222870 ,2,822,93690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499020 ,2,827,51525 ,2,828,429935 ,1,0,496840 ,2,821,311100 ,2,822,21880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,497060 ,2,821,311265 ,2,822,21900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,497890 ,2,821,311445 ,2,822,21910 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,498245 ,2,821,311615 ,2,822,21940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,498515 ,2,821,311760 ,2,822,92970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498895 ,2,827,75 ,2,828,429770 ,1,0,498725 ,2,821,314545 ,1,0,204310 ,1,1,172905 ,2,822,93010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498705 ,2,827,50890 ,2,828,429595 ,1,0,498995 ,2,821,321950 ,2,822,21965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,499245 ,2,821,322120 ,2,822,21985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,499450 ,2,821,322270 ,2,822,93020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498710 ,2,827,75 ,2,828,429600 ,1,0,499840 ,2,821,324125 ,2,822,93030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498745 ,2,827,51000 ,2,828,429605 ,1,0,500225 ,2,821,328830 ,2,822,93040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498750 ,2,827,75 ,2,828,429610 ,1,0,500425 ,2,821,332695 ,2,822,93050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498755 ,2,827,75 ,2,828,429615 ,1,0,501265 ,2,821,336665 ,2,822,93060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498755 ,2,827,75 ,2,828,429645 ,1,0,501605 ,2,821,340585 ,2,822,93070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498760 ,2,827,75 ,2,828,429650 ,1,0,501810 ,2,821,341560 ,1,0,173025 ,2,822,93080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498770 ,2,827,51010 ,2,828,429655 ,1,0,502185 ,2,821,348050 ,1,0,172965 ,2,822,93120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498775 ,2,827,51040 ,2,828,429660 ,1,0,502555 ,2,821,353885 ,1,0,173055 ,2,822,93130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498780 ,2,827,37045 ,2,828,429665 ,1,0,502810 ,2,821,358700 ,1,0,172925 ,2,822,93140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498785 ,2,827,51050 ,2,828,429670 ,1,0,503170 ,2,821,363850 ,1,0,173065 ,2,822,93150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498815 ,2,827,51060 ,2,828,429675 ,1,0,503375 ,2,821,368830 ,2,822,93160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,429680 ,1,0,504215 ,2,821,369725 ,2,822,93170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498825 ,2,827,51070 ,2,828,429705 ,1,0,504440 ,2,821,373360 ,2,822,93180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498830 ,2,827,27110 ,2,828,429710 ,1,0,504720 ,2,821,375920 ,2,822,93190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498840 ,2,827,51110 ,2,828,429715 ,1,0,504910 ,2,821,378400 ,2,822,93205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498840 ,2,827,51110 ,2,828,429720 ,1,0,505270 ,2,821,380875 ,2,822,93215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498840 ,2,827,51110 ,2,828,429725 ,1,0,505555 ,2,821,383385 ,2,822,93225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498845 ,2,827,51110 ,2,828,429730 ,1,0,505935 ,2,821,385210 ,1,0,173035 ,2,822,93235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498850 ,2,827,51120 ,2,828,429735 ,1,0,506190 ,2,821,389760 ,1,0,173045 ,2,822,93245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498855 ,2,827,51135 ,2,828,429740 ,1,0,506450 ,2,821,394040 ,1,0,172945 ,2,822,93255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498705 ,2,827,51145 ,2,828,429750 ,1,0,506690 ,2,821,398520 ,2,822,93310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498880 ,2,827,75 ,2,828,429755 ,1,0,507235 ,2,821,399230 ,1,0,172975 ,2,822,93265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498885 ,2,827,51155 ,2,828,429760 ,1,0,507555 ,2,821,403060 ,1,0,172915 ,2,822,93275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498890 ,2,827,51165 ,2,828,429765 ,1,0,507860 ,2,821,405780 ,2,822,93330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498900 ,2,827,75 ,2,828,429775 ,1,0,508030 ,2,821,408095 ,2,822,93355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498905 ,2,827,51190 ,2,828,429780 ,1,0,508405 ,2,821,409520 ,2,822,93420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498960 ,2,827,51335 ,2,828,429855 ,1,0,508850 ,2,821,410195 ,2,822,22005 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,509065 ,2,821,410295 ,2,822,93440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,51305 ,2,828,429820 ,1,0,509295 ,2,821,410715 ,1,1,2395 ,1,2,566130 ,1,3,45 ,1,4,9470 ,2,822,93450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,429785 ,1,0,509565 ,2,821,411875 ,2,822,93460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,429825 ,1,0,509750 ,2,821,412260 ,2,822,93490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498915 ,2,827,75 ,2,828,429835 ,1,0,509925 ,2,821,413315 ,2,822,93515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498910 ,2,827,75 ,2,828,429830 ,1,0,510070 ,2,821,414370 ,1,0,343240 ,2,822,93525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498950 ,2,827,75 ,2,828,429845 ,1,0,510395 ,2,821,416290 ,1,0,2280 ,1,1,542180 ,1,2,2280 ,1,3,542170 ,1,4,2280 ,1,5,542180 ,2,822,93535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498955 ,2,827,25980 ,2,828,429850 ,1,0,510695 ,2,821,425875 ,2,822,22015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,510885 ,2,821,425955 ,1,0,223005 ,2,822,93575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498965 ,2,827,75 ,2,828,429860 ,1,0,511070 ,2,821,429035 ,1,0,257825 ,1,1,223015 ,1,2,200840 ,2,822,93585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498970 ,2,827,51440 ,2,828,429890 ,1,0,511445 ,2,821,431470 ,1,0,547375 ,1,1,219855 ,2,822,93620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498975 ,2,827,75 ,2,828,429895 ,1,0,511750 ,2,821,435880 ,1,0,547390 ,2,822,93630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498985 ,2,827,75 ,2,828,429905 ,1,0,512015 ,2,821,437950 ,1,0,205150 ,1,1,547420 ,1,2,223160 ,2,822,93640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498980 ,2,827,75 ,2,828,429900 ,1,0,512195 ,2,821,443395 ,2,822,93650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,429920 ,1,0,512420 ,2,821,443645 ,1,0,547430 ,1,1,223170 ,2,822,93670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499010 ,2,827,75 ,2,828,429925 ,1,0,512800 ,2,821,447635 ,1,0,608995 ,1,1,45 ,1,2,167770 ,1,3,547315 ,1,4,216460 ,2,822,93680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499015 ,2,827,75 ,2,828,429930 ,1,0,513225 ,2,821,451235 ,1,0,88945 ,2,822,165030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499025 ,2,827,51535 ,2,828,429960 ,1,0,513645 ,2,821,452030 ,2,822,95490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,430570 ,1,0,513955 ,2,821,452540 ,1,0,93730 ,1,1,188685 ,2,822,95480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499445 ,2,827,51545 ,2,828,429965 ,1,0,514135 ,2,821,453935 ,1,0,561560 ,1,1,45 ,1,2,347080 ,2,822,93730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,430565 ,1,0,514340 ,2,821,455625 ,2,822,95470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499440 ,2,827,52955 ,2,828,430560 ,1,0,514610 ,2,821,457405 ,2,822,94020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499110 ,2,827,75 ,2,828,430080 ,1,0,514790 ,2,821,458470 ,1,0,343855 ,2,822,94010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499105 ,2,827,30175 ,2,828,430075 ,1,0,515230 ,2,821,462190 ,1,0,343845 ,1,1,223435 ,1,2,343835 ,1,3,343825 ,1,4,223425 ,1,5,205435 ,1,6,205770 ,1,7,2210 ,1,8,542350 ,2,822,94000 ,2,823,540870 ,2,824,418265 ,2,825,352280 ,2,826,499095 ,2,827,51900 ,2,828,430055 ,1,0,515460 ,2,821,471105 ,2,822,22035 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,516005 ,2,821,471215 ,1,0,45 ,1,1,190350 ,2,822,93740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,429970 ,1,0,516350 ,2,821,472150 ,1,0,566285 ,1,1,45 ,1,2,190350 ,2,822,93760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,429975 ,1,0,516595 ,2,821,473710 ,2,822,566285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,516780 ,2,821,474135 ,2,822,93795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,429980 ,1,0,517235 ,2,821,474575 ,2,822,93805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499035 ,2,827,75 ,2,828,429985 ,1,0,517670 ,2,821,475690 ,2,822,22155 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,518165 ,2,821,475790 ,1,0,557240 ,2,822,93990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499080 ,2,827,30175 ,2,828,430050 ,1,0,518575 ,2,821,477770 ,1,0,223335 ,2,822,93895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499040 ,2,827,75 ,2,828,429990 ,1,0,519155 ,2,821,478880 ,2,822,22175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,519385 ,2,821,478990 ,2,822,22195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,519640 ,2,821,479090 ,1,0,343810 ,2,822,93905 ,2,823,540860 ,2,824,418260 ,2,825,352255 ,2,826,499045 ,2,827,44250 ,2,828,429995 ,1,0,519980 ,2,821,481350 ,2,822,93915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,430025 ,1,0,520150 ,2,821,481795 ,2,822,93945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499050 ,2,827,75 ,2,828,430030 ,1,0,520515 ,2,821,482760 ,2,822,93955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499065 ,2,827,30175 ,2,828,430035 ,1,0,520695 ,2,821,484470 ,1,0,216245 ,2,822,93965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499070 ,2,827,75 ,2,828,430040 ,1,0,520905 ,2,821,486395 ,1,0,556725 ,2,822,93975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499075 ,2,827,75 ,2,828,430045 ,1,0,521105 ,2,821,487685 ,1,0,547435 ,1,1,557235 ,2,822,93865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499100 ,2,827,75 ,2,828,430060 ,1,0,521275 ,2,821,489060 ,2,822,22145 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,521720 ,2,821,489155 ,2,822,94055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,430085 ,1,0,522030 ,2,821,490220 ,1,0,221675 ,2,822,94065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499135 ,2,827,75 ,2,828,430090 ,1,0,522505 ,2,821,491055 ,2,822,22235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,522715 ,2,821,491175 ,2,822,22245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,522920 ,2,821,491280 ,2,822,22290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,523115 ,2,821,491380 ,2,822,22300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,523600 ,2,821,491470 ,2,822,22310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,523780 ,2,821,491585 ,2,822,22320 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,523965 ,2,821,491675 ,2,822,22330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,524175 ,2,821,491770 ,2,822,22340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,524380 ,2,821,491865 ,2,822,22350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,524660 ,2,821,491990 ,2,822,22360 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,524900 ,2,821,492075 ,1,0,206070 ,2,822,94235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499415 ,2,827,75 ,2,828,430525 ,1,0,525125 ,2,821,494250 ,2,822,94245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499140 ,2,827,75 ,2,828,430100 ,1,0,525405 ,2,821,500475 ,2,822,22400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,525650 ,2,821,500555 ,1,0,45 ,1,1,340435 ,2,822,94275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493835 ,2,827,75 ,2,828,430105 ,1,0,525860 ,2,821,501465 ,1,0,45 ,1,1,4610 ,2,822,94305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,430110 ,1,0,526320 ,2,821,502395 ,1,0,45 ,1,1,4610 ,2,822,94325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,430115 ,1,0,526490 ,2,821,504095 ,1,0,45 ,1,1,340435 ,2,822,94335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493835 ,2,827,75 ,2,828,430155 ,1,0,526675 ,2,821,505020 ,1,0,45 ,1,1,8740 ,2,822,94380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499145 ,2,827,75 ,2,828,430160 ,1,0,527115 ,2,821,506620 ,2,822,22430 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,527245 ,2,821,506730 ,2,822,94400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,430165 ,1,0,527525 ,2,821,507225 ,1,0,45 ,1,1,9435 ,2,822,94420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493835 ,2,827,75 ,2,828,430170 ,1,0,527735 ,2,821,508110 ,1,0,45 ,1,1,340435 ,2,822,94440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499160 ,2,827,52490 ,2,828,430180 ,1,0,528000 ,2,821,510665 ,1,0,566590 ,1,1,45 ,1,2,340435 ,1,3,340365 ,2,822,94485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499150 ,2,827,52490 ,2,828,430185 ,1,0,528305 ,2,821,514050 ,1,0,45 ,1,1,8740 ,2,822,94495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499145 ,2,827,75 ,2,828,430160 ,1,0,528505 ,2,821,515670 ,1,0,45 ,1,1,9435 ,2,822,94515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493835 ,2,827,75 ,2,828,430190 ,1,0,528735 ,2,821,516590 ,2,822,94590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499170 ,2,827,52605 ,2,828,430220 ,1,0,528985 ,2,821,517860 ,2,822,94640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,430215 ,1,0,529290 ,2,821,518270 ,2,822,94705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499165 ,2,827,52595 ,2,828,430195 ,1,0,529505 ,2,821,520395 ,2,822,94620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499175 ,2,827,75 ,2,828,430225 ,1,0,529960 ,2,821,521790 ,2,822,94695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499195 ,2,827,52595 ,2,828,430230 ,1,0,530240 ,2,821,522885 ,2,822,22445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,530515 ,2,821,523005 ,2,822,94715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,430240 ,1,0,530780 ,2,821,523475 ,1,0,45 ,1,1,9435 ,2,822,94735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,430245 ,1,0,530970 ,2,821,524375 ,1,0,45 ,1,1,340435 ,2,822,94755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,430250 ,1,0,531430 ,2,821,525325 ,1,0,566605 ,1,1,45 ,1,2,340435 ,2,822,94790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,430255 ,1,0,531650 ,2,821,526915 ,1,0,45 ,1,1,8740 ,2,822,94800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499145 ,2,827,75 ,2,828,430285 ,1,0,532405 ,2,821,528555 ,1,0,45 ,1,1,9435 ,2,822,94820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,430290 ,1,0,532720 ,2,821,529430 ,2,822,94850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499200 ,2,827,75 ,2,828,430295 ,1,0,532935 ,2,821,532125 ,2,822,94905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499205 ,2,827,75 ,2,828,430300 ,1,0,533240 ,2,821,533420 ,2,822,94935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499210 ,2,827,52765 ,2,828,430305 ,1,0,533455 ,2,821,535165 ,2,822,94945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,430310 ,1,0,534080 ,2,821,535535 ,2,822,95020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499220 ,2,827,75 ,2,828,430315 ,1,0,534335 ,2,821,539330 ,2,822,95040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499225 ,2,827,75 ,2,828,430320 ,1,0,534515 ,2,821,540390 ,2,822,95050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499230 ,2,827,75 ,2,828,430350 ,1,0,534715 ,2,821,549500 ,2,822,95070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499275 ,2,827,52820 ,2,828,430365 ,1,0,534955 ,2,821,550655 ,1,0,340525 ,2,822,95170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499270 ,2,827,75 ,2,828,430360 ,1,0,535170 ,2,821,566415 ,2,822,95335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499235 ,2,827,75 ,2,828,430355 ,1,0,535345 ,2,821,571740 ,2,822,95080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499280 ,2,827,75 ,2,828,430375 ,1,0,535550 ,2,821,573860 ,2,822,95120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499285 ,2,827,75 ,2,828,430380 ,1,0,535750 ,2,821,577980 ,2,822,95130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499295 ,2,827,75 ,2,828,430385 ,1,0,535950 ,2,821,582770 ,2,822,95150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499300 ,2,827,52765 ,2,828,430390 ,1,0,536135 ,2,821,588355 ,2,822,95160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499310 ,2,827,52820 ,2,828,430420 ,1,0,536460 ,2,821,589450 ,2,822,95245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499305 ,2,827,75 ,2,828,430415 ,1,0,537155 ,2,821,593030 ,2,822,95225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499335 ,2,827,52820 ,2,828,430430 ,1,0,537470 ,2,821,593885 ,2,822,95300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499330 ,2,827,75 ,2,828,430425 ,1,0,537710 ,2,821,597935 ,2,822,95235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499275 ,2,827,52820 ,2,828,430435 ,1,0,537925 ,2,821,598805 ,2,822,95255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499340 ,2,827,75 ,2,828,430440 ,1,0,538210 ,2,821,604785 ,2,822,95290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499345 ,2,827,52820 ,2,828,430445 ,1,0,538545 ,2,821,605940 ,2,822,95345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499355 ,2,827,75 ,2,828,430450 ,1,0,538730 ,2,821,606910 ,2,822,95365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499360 ,2,827,75 ,2,828,430485 ,1,0,539050 ,2,821,613125 ,2,822,95380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499365 ,2,827,75 ,2,828,430490 ,1,0,539285 ,2,821,625370 ,2,822,95390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499370 ,2,827,75 ,2,828,430495 ,1,0,539580 ,2,821,625965 ,2,822,95400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499405 ,2,827,52820 ,2,828,430500 ,1,0,539940 ,2,821,627640 ,2,822,95355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,430515 ,1,0,540190 ,2,821,628075 ,2,822,94955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499410 ,2,827,52765 ,2,828,430520 ,1,0,540490 ,2,821,629145 ,2,822,566615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,540675 ,2,821,629510 ,1,0,206535 ,2,822,95410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499430 ,2,827,75 ,2,828,430550 ,1,0,540900 ,2,821,632145 ,2,822,95440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499420 ,2,827,75 ,2,828,430530 ,1,0,541410 ,2,821,635250 ,2,822,566370 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,541585 ,2,821,635650 ,2,822,95450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499435 ,2,827,75 ,2,828,430555 ,1,0,541845 ,2,821,637425 ,2,822,95510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,542045 ,2,821,637655 ,2,822,95565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499475 ,2,827,53100 ,2,828,430585 ,1,0,542465 ,2,821,638510 ,1,0,343305 ,2,822,95575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494615 ,2,827,52955 ,2,828,430605 ,1,0,542650 ,2,821,639500 ,2,822,95585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499480 ,2,827,52955 ,2,828,430610 ,1,0,542850 ,2,821,640820 ,2,822,95625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499485 ,2,827,75 ,2,828,430615 ,1,0,543155 ,2,821,641985 ,2,822,566715 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,543355 ,2,821,642420 ,1,0,45 ,1,1,186970 ,1,2,567750 ,1,3,45 ,1,4,347100 ,1,5,45 ,1,6,347205 ,2,822,95675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500760 ,2,827,75 ,2,828,432365 ,1,0,543560 ,2,821,644940 ,1,0,342095 ,1,1,370560 ,2,822,163805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500730 ,2,827,75 ,2,828,432360 ,1,0,543895 ,2,821,646035 ,1,0,371825 ,1,1,342085 ,2,822,101555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500725 ,2,827,30175 ,2,828,432355 ,1,0,544200 ,2,821,649535 ,1,0,222345 ,1,1,210280 ,2,822,101535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500720 ,2,827,30175 ,2,828,432350 ,1,0,544395 ,2,821,653100 ,1,0,212095 ,2,822,95685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499490 ,2,827,75 ,2,828,430620 ,1,0,544685 ,2,821,656020 ,2,822,22590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,544955 ,2,821,656110 ,1,0,566755 ,1,1,45 ,1,2,209800 ,2,822,95705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,430635 ,1,0,545235 ,2,821,657670 ,1,0,342000 ,2,822,95775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499495 ,2,827,75 ,2,828,430630 ,1,0,545395 ,2,821,658845 ,2,822,95715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499500 ,2,827,75 ,2,828,430640 ,1,0,545595 ,2,821,659565 ,1,0,342020 ,2,822,95725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499525 ,2,827,75 ,2,828,430645 ,1,0,546005 ,2,821,660785 ,2,822,22660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,546280 ,2,821,660885 ,2,822,566770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,546530 ,2,821,661315 ,2,822,22670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,546815 ,2,821,661395 ,1,0,45 ,1,1,11510 ,2,822,95825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,430675 ,1,0,547095 ,2,821,662310 ,1,0,371490 ,2,822,95865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430685 ,1,0,547405 ,2,821,662790 ,2,822,96395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499530 ,2,827,75 ,2,828,430680 ,1,0,547670 ,2,821,664050 ,2,822,95875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,430690 ,1,0,547925 ,2,821,664905 ,1,0,371570 ,2,822,95885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430695 ,1,0,548525 ,2,821,665325 ,2,822,95895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,548710 ,2,821,665945 ,1,0,371440 ,2,822,95910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430700 ,1,0,549205 ,2,821,666430 ,2,822,95920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499535 ,2,827,75 ,2,828,430705 ,1,0,549475 ,2,821,667515 ,1,0,371450 ,1,1,371380 ,2,822,95930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499540 ,2,827,75 ,2,828,430710 ,1,0,549745 ,2,821,668195 ,1,0,371500 ,2,822,95940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430735 ,1,0,549985 ,2,821,668635 ,1,0,556940 ,1,1,556935 ,2,822,95980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499550 ,2,827,75 ,2,828,430740 ,1,0,550260 ,2,821,671060 ,1,0,371765 ,2,822,96010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430750 ,1,0,550475 ,2,821,671535 ,1,0,217125 ,2,822,96455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499555 ,2,827,75 ,2,828,430745 ,1,0,550730 ,2,821,672350 ,2,822,96020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,551010 ,2,821,674800 ,1,0,211295 ,1,1,371875 ,2,822,96050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499560 ,2,827,75 ,2,828,430755 ,1,0,551270 ,2,821,950 ,1,0,371460 ,2,822,96090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430760 ,1,0,551495 ,2,821,1755 ,2,822,96100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,551705 ,2,821,2610 ,2,822,96120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,551935 ,2,821,3490 ,1,0,371775 ,2,822,96130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,430765 ,1,0,552110 ,2,821,4235 ,1,0,211285 ,1,1,371785 ,2,822,96140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499560 ,2,827,75 ,2,828,430770 ,1,0,552535 ,2,821,5725 ,2,822,96150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499565 ,2,827,75 ,2,828,430810 ,1,0,552720 ,2,821,17005 ,2,822,96160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499585 ,2,827,26010 ,2,828,430815 ,1,0,553330 ,2,821,19485 ,2,822,96190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,0,553525 ,2,821,20325 ,1,0,371510 ,2,822,96200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430825 ,1,0,553870 ,2,821,21130 ,1,0,371605 ,2,822,96210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430830 ,1,0,554155 ,2,821,21945 ,2,822,96220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,554395 ,2,821,22480 ,1,0,371580 ,2,822,96240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430835 ,1,0,554585 ,2,821,23325 ,2,822,96250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,554800 ,2,821,23765 ,2,822,96260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,555235 ,2,821,24675 ,1,0,371815 ,2,822,96300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430840 ,1,0,555495 ,2,821,25495 ,1,0,371560 ,2,822,96310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,430845 ,1,0,555690 ,2,821,26295 ,2,822,96320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,556175 ,2,821,27160 ,1,0,2210 ,1,1,542350 ,2,822,96330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499590 ,2,827,75 ,2,828,430870 ,1,0,556540 ,2,821,29715 ,1,0,211260 ,1,1,371885 ,2,822,96345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499560 ,2,827,75 ,2,828,430875 ,1,0,556755 ,2,821,31155 ,1,0,371595 ,2,822,96355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430880 ,1,0,557260 ,2,821,31960 ,1,0,211250 ,1,1,371715 ,2,822,96365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499560 ,2,827,75 ,2,828,430885 ,1,0,557455 ,2,821,33350 ,1,0,371550 ,2,822,96375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430890 ,1,0,557675 ,2,821,34140 ,1,0,2210 ,1,1,542350 ,2,822,96405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499590 ,2,827,75 ,2,828,430895 ,1,0,558270 ,2,821,36640 ,1,0,371430 ,2,822,96415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430900 ,1,0,558690 ,2,821,37410 ,2,822,96425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,559035 ,2,821,38255 ,1,0,371655 ,2,822,96435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430905 ,1,0,559290 ,2,821,39080 ,1,0,371480 ,2,822,96445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430925 ,1,0,559710 ,2,821,39890 ,1,0,2210 ,1,1,542350 ,2,822,96490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499595 ,2,827,75 ,2,828,430930 ,1,0,560130 ,2,821,42375 ,1,0,211240 ,1,1,371615 ,2,822,96500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499560 ,2,827,75 ,2,828,430935 ,1,0,560300 ,2,821,43830 ,1,0,371625 ,2,822,96510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,430940 ,1,0,560815 ,2,821,44650 ,1,0,371390 ,2,822,96520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,430945 ,1,0,561140 ,2,821,45480 ,1,0,340680 ,2,822,96530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499655 ,2,827,75 ,2,828,431010 ,1,0,561485 ,2,821,65535 ,1,0,351910 ,1,1,351900 ,1,2,351890 ,2,822,96540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499600 ,2,827,75 ,2,828,430950 ,1,0,561730 ,2,821,71200 ,1,0,547460 ,1,1,265755 ,1,2,180305 ,1,3,557025 ,1,4,222705 ,1,5,342500 ,1,6,547450 ,1,7,2210 ,1,8,542350 ,2,822,96550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499620 ,2,827,53565 ,2,828,431005 ,1,0,562155 ,2,821,105740 ,2,822,22685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,562695 ,2,821,105895 ,1,0,557020 ,1,1,557015 ,1,2,222685 ,1,3,222675 ,1,4,222660 ,1,5,222650 ,1,6,180595 ,1,7,371020 ,1,8,16050 ,1,9,2210 ,1,10,542350 ,1,11,2210 ,1,12,542350 ,2,822,96560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499605 ,2,827,53510 ,2,828,430955 ,1,0,562955 ,2,821,151350 ,1,0,371030 ,1,1,222695 ,1,2,166860 ,1,3,2210 ,1,4,542350 ,1,5,2210 ,1,6,542350 ,2,822,96605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499610 ,2,827,53520 ,2,828,430960 ,1,0,563145 ,2,821,191970 ,2,822,22730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,563595 ,2,821,192140 ,2,822,566845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,563970 ,2,821,192745 ,1,0,342480 ,1,1,206225 ,2,822,96645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499615 ,2,827,75 ,2,828,431000 ,1,0,564400 ,2,821,198450 ,2,822,566855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,564880 ,2,821,199100 ,2,822,96655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,565125 ,2,821,200055 ,1,0,371370 ,2,822,96665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,431015 ,1,0,565365 ,2,821,200850 ,2,822,96715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499660 ,2,827,53595 ,2,828,431020 ,1,0,565630 ,2,821,203585 ,2,822,22745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,565930 ,2,821,203735 ,2,822,22755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,566240 ,2,821,203895 ,2,822,96820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499665 ,2,827,75 ,2,828,431025 ,1,0,566490 ,2,821,205555 ,2,822,96860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499670 ,2,827,53595 ,2,828,431030 ,1,0,566810 ,2,821,208970 ,2,822,96915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,431035 ,1,0,567175 ,2,821,209620 ,2,822,566930 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,567510 ,2,821,210300 ,2,822,22785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,567760 ,2,821,210470 ,2,822,22800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,568085 ,2,821,210610 ,2,822,22850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,568275 ,2,821,210780 ,2,822,22880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,568770 ,2,821,210940 ,2,822,22890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,569085 ,2,821,211115 ,2,822,96975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499680 ,2,827,75 ,2,828,431050 ,1,0,569485 ,2,821,213120 ,2,822,22900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,569920 ,2,821,213295 ,1,0,217825 ,2,822,96985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494635 ,2,827,75 ,2,828,431535 ,1,0,570295 ,2,821,214985 ,1,0,183955 ,1,1,372110 ,1,2,372130 ,1,3,183735 ,1,4,183995 ,2,822,99150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500060 ,2,827,54935 ,2,828,431525 ,1,0,570705 ,2,821,225280 ,2,822,99110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500055 ,2,827,54925 ,2,828,431520 ,1,0,571005 ,2,821,228995 ,1,0,340760 ,2,822,99100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500050 ,2,827,75 ,2,828,431515 ,1,0,571350 ,2,821,232105 ,2,822,99065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500045 ,2,827,75 ,2,828,431510 ,1,0,571665 ,2,821,233500 ,2,822,97050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,572015 ,2,821,234270 ,2,822,22975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,572420 ,2,821,234435 ,1,0,595690 ,1,1,45 ,1,2,190350 ,1,3,45 ,1,4,11510 ,2,822,97070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499685 ,2,827,54025 ,2,828,431055 ,1,0,572800 ,2,821,240635 ,1,0,221520 ,1,1,547550 ,2,822,97095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499690 ,2,827,75 ,2,828,431060 ,1,0,573150 ,2,821,242540 ,2,822,22985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573490 ,2,821,242690 ,2,822,567045 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573810 ,2,821,243320 ,2,822,97155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499695 ,2,827,75 ,2,828,431065 ,1,0,574195 ,2,821,244990 ,1,0,2210 ,1,1,542350 ,2,822,97165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499735 ,2,827,75 ,2,828,431070 ,1,0,574520 ,2,821,247450 ,2,822,22995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,574895 ,2,821,247620 ,2,822,97195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499805 ,2,827,75 ,2,828,431160 ,1,0,575300 ,2,821,249775 ,2,822,97205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499740 ,2,827,75 ,2,828,431075 ,1,0,575680 ,2,821,260045 ,2,822,97215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499745 ,2,827,54195 ,2,828,431080 ,1,0,576070 ,2,821,263655 ,2,822,97225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499780 ,2,827,75 ,2,828,431140 ,1,0,576450 ,2,821,265320 ,2,822,97245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499770 ,2,827,75 ,2,828,431130 ,1,0,576835 ,2,821,291585 ,2,822,97265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499765 ,2,827,75 ,2,828,431125 ,1,0,577205 ,2,821,304730 ,2,822,97255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499750 ,2,827,75 ,2,828,431085 ,1,0,577450 ,2,821,315575 ,1,0,340550 ,2,822,97275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499775 ,2,827,75 ,2,828,431135 ,1,0,577785 ,2,821,325715 ,2,822,97290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499795 ,2,827,75 ,2,828,431150 ,1,0,578095 ,2,821,343325 ,2,822,97300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499800 ,2,827,75 ,2,828,431155 ,1,0,578455 ,2,821,355270 ,2,822,97320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499810 ,2,827,75 ,2,828,431165 ,1,0,578670 ,2,821,357235 ,2,822,23060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,579070 ,2,821,357415 ,1,0,554230 ,1,1,554225 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,554220 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,2,822,97395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499945 ,2,827,54530 ,2,828,431320 ,1,0,579305 ,2,821,376695 ,1,0,208545 ,2,822,98215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499820 ,2,827,54195 ,2,828,431185 ,1,0,579590 ,2,821,380440 ,2,822,23070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,579840 ,2,821,380520 ,2,822,97420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499825 ,2,827,75 ,2,828,431190 ,1,0,580055 ,2,821,381595 ,1,0,609155 ,1,1,45 ,1,2,5900 ,2,822,97575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499830 ,2,827,54365 ,2,828,431195 ,1,0,580305 ,2,821,384185 ,2,822,97595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499835 ,2,827,54375 ,2,828,431200 ,1,0,580565 ,2,821,386285 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,2135 ,1,5,45 ,1,6,11510 ,1,7,45 ,1,8,11510 ,2,822,97630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499885 ,2,827,54395 ,2,828,431210 ,1,0,580745 ,2,821,394570 ,2,822,567205 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,581420 ,2,821,395315 ,2,822,23105 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,581725 ,2,821,395425 ,2,822,23115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,581940 ,2,821,395505 ,2,822,97740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499855 ,2,827,75 ,2,828,431220 ,1,0,582160 ,2,821,397255 ,2,822,97750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499850 ,2,827,54470 ,2,828,431215 ,1,0,582490 ,2,821,398480 ,2,822,23125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,582775 ,2,821,398590 ,2,822,97850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499865 ,2,827,75 ,2,828,431260 ,1,0,582995 ,2,821,400325 ,2,822,97880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499860 ,2,827,54375 ,2,828,431225 ,1,0,583405 ,2,821,401585 ,2,822,97870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,431265 ,1,0,583580 ,2,821,402705 ,2,822,97955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499880 ,2,827,54500 ,2,828,431270 ,1,0,583865 ,2,821,405315 ,2,822,97975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499865 ,2,827,75 ,2,828,431280 ,1,0,584055 ,2,821,407135 ,2,822,98140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499890 ,2,827,54375 ,2,828,431275 ,1,0,584460 ,2,821,408390 ,2,822,98030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,431285 ,1,0,584740 ,2,821,409515 ,1,0,567205 ,1,1,45 ,1,2,11510 ,1,3,45 ,1,4,11510 ,2,822,98060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499895 ,2,827,54510 ,2,828,431290 ,1,0,584900 ,2,821,416075 ,1,0,45 ,1,1,11510 ,2,822,98170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499935 ,2,827,75 ,2,828,431295 ,1,0,585105 ,2,821,420470 ,1,0,45 ,1,1,5900 ,2,822,98205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499940 ,2,827,75 ,2,828,431325 ,1,0,585300 ,2,821,421160 ,2,822,98245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499950 ,2,827,75 ,2,828,431330 ,1,0,585545 ,2,821,424290 ,2,822,98265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499955 ,2,827,75 ,2,828,431335 ,1,0,585745 ,2,821,428990 ,2,822,98275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,586035 ,2,821,429440 ,2,822,23135 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,586215 ,2,821,429540 ,2,822,98315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499960 ,2,827,75 ,2,828,431345 ,1,0,586420 ,2,821,430625 ,2,822,23165 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,586700 ,2,821,430715 ,2,822,567285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,586880 ,2,821,431090 ,2,822,98370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,587135 ,2,821,432230 ,2,822,23175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,587355 ,2,821,432325 ,2,822,98410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,431350 ,1,0,587765 ,2,821,433130 ,2,822,98420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499970 ,2,827,75 ,2,828,431355 ,1,0,588065 ,2,821,434025 ,2,822,98470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495295 ,2,827,75 ,2,828,431360 ,1,0,588245 ,2,821,434600 ,2,822,98480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,431395 ,1,0,588450 ,2,821,435320 ,2,822,23195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,588740 ,2,821,435395 ,2,822,98515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499990 ,2,827,54695 ,2,828,431400 ,1,0,588945 ,2,821,438745 ,2,822,98565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499995 ,2,827,54705 ,2,828,431405 ,1,0,589315 ,2,821,440395 ,2,822,98575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500045 ,2,827,75 ,2,828,431410 ,1,0,589545 ,2,821,441230 ,2,822,98585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500000 ,2,827,75 ,2,828,431415 ,1,0,589755 ,2,821,443135 ,2,822,98635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500005 ,2,827,75 ,2,828,431420 ,1,0,590125 ,2,821,444120 ,2,822,23225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590295 ,2,821,444210 ,1,0,209390 ,2,822,98670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,0,590505 ,2,821,446930 ,2,822,23235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590670 ,2,821,447040 ,2,822,23245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590885 ,2,821,447130 ,2,822,98740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,431430 ,1,0,591060 ,2,821,447925 ,2,822,23275 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,591280 ,2,821,448030 ,2,822,98810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499695 ,2,827,75 ,2,828,431450 ,1,0,591415 ,2,821,448960 ,2,822,98820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499695 ,2,827,75 ,2,828,431455 ,1,0,591585 ,2,821,449955 ,2,822,98835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499695 ,2,827,75 ,2,828,431460 ,1,0,591920 ,2,821,450885 ,2,822,98855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,431475 ,1,0,592185 ,2,821,451670 ,2,822,23285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,592380 ,2,821,451770 ,1,0,547865 ,2,822,98955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500015 ,2,827,54890 ,2,828,431480 ,1,0,592585 ,2,821,454520 ,1,0,556915 ,1,1,556910 ,1,2,165685 ,1,3,342250 ,2,822,98990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500020 ,2,827,54890 ,2,828,431485 ,1,0,592755 ,2,821,458050 ,1,0,567045 ,1,1,45 ,1,2,5900 ,1,3,209630 ,2,822,99045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500025 ,2,827,54900 ,2,828,431490 ,1,0,593065 ,2,821,460215 ,2,822,23185 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,593300 ,2,821,460300 ,2,822,99120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,431530 ,1,0,593475 ,2,821,460960 ,1,0,210880 ,2,822,99130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494635 ,2,827,75 ,2,828,431540 ,1,0,593890 ,2,821,461980 ,1,0,209640 ,2,822,99160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500070 ,2,827,75 ,2,828,431545 ,1,0,594100 ,2,821,462755 ,1,0,209755 ,1,1,567065 ,1,2,45 ,1,3,5900 ,1,4,213315 ,2,822,99170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500115 ,2,827,75 ,2,828,431595 ,1,0,594515 ,2,821,466585 ,1,0,188395 ,1,1,209255 ,2,822,99230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500075 ,2,827,75 ,2,828,431580 ,1,0,594705 ,2,821,467845 ,1,0,211025 ,2,822,99210 ,2,823,540875 ,2,824,418270 ,2,825,352290 ,2,826,500085 ,2,827,75 ,2,828,431590 ,1,0,595035 ,2,821,469095 ,1,0,342230 ,1,1,342185 ,1,2,222445 ,1,3,342175 ,2,822,99180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500080 ,2,827,44250 ,2,828,431585 ,1,0,595330 ,2,821,471165 ,2,822,99220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500120 ,2,827,75 ,2,828,431605 ,1,0,595530 ,2,821,471705 ,1,0,211220 ,2,822,99240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500145 ,2,827,75 ,2,828,431620 ,1,0,595800 ,2,821,472815 ,1,0,165425 ,1,1,45 ,1,2,5900 ,1,3,208555 ,2,822,99325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500130 ,2,827,75 ,2,828,431615 ,1,0,596055 ,2,821,474425 ,1,0,209790 ,2,822,99360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500125 ,2,827,75 ,2,828,431610 ,1,0,596240 ,2,821,475825 ,1,0,210890 ,2,822,99260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500155 ,2,827,75 ,2,828,431635 ,1,0,596435 ,2,821,481545 ,1,0,209910 ,1,1,210140 ,2,822,99345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500150 ,2,827,75 ,2,828,431630 ,1,0,596635 ,2,821,485060 ,2,822,99370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,431625 ,1,0,597080 ,2,821,485375 ,2,822,99280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500160 ,2,827,75 ,2,828,431640 ,1,0,597240 ,2,821,488140 ,2,822,99290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500180 ,2,827,75 ,2,828,431645 ,1,0,597445 ,2,821,488715 ,2,822,99315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500185 ,2,827,54935 ,2,828,431650 ,1,0,597635 ,2,821,496990 ,1,0,372140 ,1,1,180645 ,1,2,164060 ,1,3,217835 ,2,822,99335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500190 ,2,827,75 ,2,828,431655 ,1,0,597865 ,2,821,502370 ,2,822,23305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,598070 ,2,821,502465 ,1,0,222770 ,1,1,342680 ,1,2,567585 ,1,3,45 ,1,4,5900 ,1,5,210540 ,2,822,99390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500340 ,2,827,55475 ,2,828,431870 ,1,0,598300 ,2,821,506410 ,1,0,547475 ,1,1,222760 ,1,2,222750 ,1,3,342670 ,1,4,566855 ,1,5,45 ,1,6,5900 ,1,7,342610 ,1,8,222740 ,1,9,258005 ,1,10,342600 ,1,11,182040 ,1,12,188800 ,1,13,342590 ,1,14,2210 ,1,15,542350 ,2,822,100000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500305 ,2,827,55420 ,2,828,431835 ,1,0,598625 ,2,821,523640 ,1,0,258080 ,1,1,342580 ,1,2,258055 ,1,3,258045 ,1,4,165725 ,2,822,99825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500250 ,2,827,55330 ,2,828,431770 ,1,0,598810 ,2,821,547440 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,547875 ,1,5,342560 ,1,6,193955 ,1,7,222730 ,2,822,99545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500215 ,2,827,55235 ,2,828,431700 ,1,0,599020 ,2,821,560530 ,2,822,23335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599330 ,2,821,560605 ,2,822,567445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599530 ,2,821,560965 ,1,0,165855 ,2,822,99460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500210 ,2,827,75 ,2,828,431690 ,1,0,599815 ,2,821,563060 ,1,0,165805 ,2,822,99450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500205 ,2,827,75 ,2,828,431685 ,1,0,600000 ,2,821,565280 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,1,6,2210 ,1,7,542350 ,1,8,2210 ,1,9,542350 ,1,10,2210 ,1,11,542350 ,1,12,2210 ,1,13,542350 ,2,822,99430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500195 ,2,827,75 ,2,828,431660 ,1,0,600250 ,2,821,642015 ,2,822,99440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500200 ,2,827,75 ,2,828,431680 ,1,0,600565 ,2,821,649130 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,99470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492885 ,2,827,75 ,2,828,431695 ,1,0,600825 ,2,821,651445 ,2,822,99555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500235 ,2,827,75 ,2,828,431705 ,1,0,601005 ,2,821,652385 ,1,0,557005 ,1,1,258025 ,1,2,222640 ,2,822,99705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500245 ,2,827,55265 ,2,828,431715 ,1,0,601280 ,2,821,666790 ,2,822,23355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,601655 ,2,821,666900 ,1,0,2210 ,1,1,542350 ,2,822,99565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500240 ,2,827,75 ,2,828,431710 ,1,0,602045 ,2,821,671890 ,1,0,547935 ,2,822,99640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,431760 ,1,0,602345 ,2,821,672280 ,2,822,567470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,602565 ,2,821,672675 ,1,0,547940 ,2,822,99650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,431765 ,1,0,602830 ,2,821,673080 ,2,822,99755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,431775 ,1,0,603105 ,2,821,673475 ,2,822,99775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,431785 ,1,0,603330 ,2,821,673735 ,2,822,99785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,431780 ,1,0,603620 ,2,821,674150 ,2,822,99815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,431790 ,1,0,603895 ,2,821,674510 ,1,0,567525 ,1,1,45 ,1,2,5900 ,2,822,99835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500255 ,2,827,75 ,2,828,431795 ,1,0,604115 ,2,821,270 ,2,822,23425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,604305 ,2,821,450 ,2,822,99900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500260 ,2,827,55375 ,2,828,431825 ,1,0,604505 ,2,821,5205 ,1,0,45 ,1,1,13320 ,2,822,99910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500265 ,2,827,25980 ,2,828,431830 ,1,0,604720 ,2,821,13750 ,2,822,23435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,605175 ,2,821,13895 ,1,0,45 ,1,1,5900 ,2,822,99960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500270 ,2,827,55430 ,2,828,431840 ,1,0,605370 ,2,821,16320 ,1,0,45 ,1,1,5900 ,1,2,165705 ,1,3,566770 ,1,4,45 ,1,5,5900 ,1,6,165695 ,2,822,100030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500320 ,2,827,55465 ,2,828,431865 ,1,0,605580 ,2,821,24030 ,1,0,210560 ,1,1,342385 ,1,2,547480 ,1,3,222545 ,1,4,207160 ,2,822,100020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500315 ,2,827,55440 ,2,828,431860 ,1,0,605825 ,2,821,41835 ,2,822,100010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500310 ,2,827,75 ,2,828,431855 ,1,0,606045 ,2,821,44005 ,1,0,184135 ,2,822,100055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500345 ,2,827,75 ,2,828,431885 ,1,0,606245 ,2,821,46415 ,1,0,210655 ,2,822,100065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500350 ,2,827,75 ,2,828,431890 ,1,0,606725 ,2,821,50855 ,1,0,222455 ,1,1,342240 ,1,2,45 ,1,3,5900 ,1,4,252495 ,1,5,2210 ,1,6,542350 ,2,822,100075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500380 ,2,827,55495 ,2,828,431900 ,1,0,606945 ,2,821,61215 ,2,822,100110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500355 ,2,827,75 ,2,828,431895 ,1,0,607260 ,2,821,65240 ,1,0,222395 ,1,1,342155 ,1,2,45 ,1,3,5900 ,1,4,2210 ,1,5,542350 ,2,822,100120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500400 ,2,827,55540 ,2,828,431950 ,1,0,607485 ,2,821,73540 ,1,0,222385 ,2,822,100165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500395 ,2,827,75 ,2,828,431920 ,1,0,607995 ,2,821,77910 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,210790 ,1,5,45 ,1,6,5900 ,1,7,210695 ,1,8,45 ,1,9,5900 ,2,822,100130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500390 ,2,827,55530 ,2,828,431910 ,1,0,608230 ,2,821,88790 ,2,822,100275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500385 ,2,827,75 ,2,828,431905 ,1,0,608655 ,2,821,89770 ,2,822,100140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,431915 ,1,0,609120 ,2,821,91410 ,2,822,100175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500405 ,2,827,75 ,2,828,431955 ,1,0,609440 ,2,821,92415 ,1,0,222355 ,1,1,342145 ,1,2,45 ,1,3,5900 ,1,4,2210 ,1,5,542350 ,2,822,100185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500450 ,2,827,55585 ,2,828,431975 ,1,0,609820 ,2,821,102630 ,1,0,213325 ,2,822,100255 ,2,823,540880 ,2,824,418275 ,2,825,352300 ,2,826,500415 ,2,827,75 ,2,828,431970 ,1,0,609990 ,2,821,104755 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,210550 ,1,5,45 ,1,6,5900 ,1,7,342135 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,2,822,100195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500410 ,2,827,55550 ,2,828,431960 ,1,0,610510 ,2,821,121135 ,2,822,100245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,431965 ,1,0,610790 ,2,821,122855 ,2,822,100265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500455 ,2,827,75 ,2,828,431980 ,1,0,611140 ,2,821,124805 ,2,822,100285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500460 ,2,827,75 ,2,828,431985 ,1,0,611335 ,2,821,130280 ,2,822,100295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500465 ,2,827,75 ,2,828,432015 ,1,0,611835 ,2,821,132955 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,100315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500480 ,2,827,55640 ,2,828,432020 ,1,0,612105 ,2,821,149780 ,1,0,198280 ,1,1,369975 ,1,2,210915 ,1,3,210905 ,1,4,45 ,1,5,210915 ,1,6,561500 ,1,7,45 ,1,8,183245 ,1,9,45 ,1,10,210905 ,1,11,564435 ,1,12,45 ,1,13,198280 ,1,14,165035 ,2,822,100400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500485 ,2,827,75 ,2,828,432025 ,1,0,612420 ,2,821,160005 ,1,0,359555 ,1,1,165665 ,2,822,100420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500490 ,2,827,75 ,2,828,432030 ,1,0,612775 ,2,821,162455 ,2,822,100455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500515 ,2,827,75 ,2,828,432045 ,1,0,613155 ,2,821,163265 ,1,0,612625 ,2,822,100705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500495 ,2,827,75 ,2,828,432040 ,1,0,613510 ,2,821,165295 ,1,0,45 ,1,1,209800 ,2,822,100465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500520 ,2,827,75 ,2,828,432050 ,1,0,613875 ,2,821,167805 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,100485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500525 ,2,827,55475 ,2,828,432055 ,1,0,614225 ,2,821,171070 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,100505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500530 ,2,827,75 ,2,828,432085 ,1,0,614415 ,2,821,174015 ,1,0,45 ,1,1,276975 ,2,822,100555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500535 ,2,827,75 ,2,828,432090 ,1,0,614935 ,2,821,176085 ,1,0,554555 ,1,1,45 ,1,2,5900 ,1,3,213380 ,1,4,210725 ,2,822,100565 ,2,823,540885 ,2,824,418280 ,2,825,352310 ,2,826,500540 ,2,827,55475 ,2,828,432095 ,1,0,615200 ,2,821,180835 ,1,0,45 ,1,1,5900 ,1,2,342040 ,2,822,100600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500545 ,2,827,55530 ,2,828,432100 ,1,0,615435 ,2,821,185870 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,100610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500575 ,2,827,55475 ,2,828,432110 ,1,0,615620 ,2,821,189890 ,1,0,161825 ,2,822,100620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500550 ,2,827,75 ,2,828,432105 ,1,0,615790 ,2,821,191360 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,100630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500580 ,2,827,55530 ,2,828,432115 ,1,0,616085 ,2,821,200750 ,2,822,100660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500585 ,2,827,75 ,2,828,432120 ,1,0,616385 ,2,821,202915 ,1,0,211200 ,2,822,100715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500590 ,2,827,75 ,2,828,432140 ,1,0,616595 ,2,821,205550 ,1,0,207085 ,2,822,100775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500595 ,2,827,75 ,2,828,432145 ,1,0,617085 ,2,821,207165 ,1,0,45 ,1,1,5900 ,1,2,342030 ,2,822,100785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500600 ,2,827,55530 ,2,828,432150 ,1,0,617460 ,2,821,211680 ,2,822,100800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,432165 ,1,0,617770 ,2,821,212565 ,1,0,45 ,1,1,5900 ,1,2,211320 ,2,822,100895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500605 ,2,827,75 ,2,828,432155 ,1,0,618075 ,2,821,214880 ,1,0,211330 ,1,1,212530 ,1,2,45 ,1,3,5900 ,1,4,340750 ,1,5,213435 ,2,822,100885 ,2,823,540925 ,2,824,418295 ,2,825,352325 ,2,826,500610 ,2,827,75 ,2,828,432170 ,1,0,618255 ,2,821,229330 ,2,822,23455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,618580 ,2,821,229510 ,2,822,100930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,52820 ,2,828,432175 ,1,0,618955 ,2,821,230805 ,2,822,100940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500635 ,2,827,55865 ,2,828,432180 ,1,0,619250 ,2,821,233305 ,1,0,45 ,1,1,5900 ,1,2,210935 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,2,822,100970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500640 ,2,827,75 ,2,828,432210 ,1,0,619435 ,2,821,239485 ,1,0,211190 ,1,1,258090 ,1,2,206415 ,1,3,206445 ,1,4,213520 ,2,822,100990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500645 ,2,827,55875 ,2,828,432215 ,1,0,620025 ,2,821,276095 ,2,822,101030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,432220 ,1,0,620205 ,2,821,276640 ,2,822,23475 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,620430 ,2,821,276790 ,2,822,101085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500650 ,2,827,75 ,2,828,432225 ,1,0,620740 ,2,821,280040 ,2,822,23530 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,621020 ,2,821,280190 ,2,822,23540 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,621320 ,2,821,280370 ,2,822,101135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,432235 ,1,0,621500 ,2,821,281085 ,1,0,211775 ,1,1,211820 ,1,2,258110 ,1,3,165375 ,2,822,101155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500670 ,2,827,56155 ,2,828,432250 ,1,0,621910 ,2,821,297075 ,1,0,340620 ,1,1,340580 ,1,2,45 ,1,3,5900 ,1,4,209070 ,1,5,45 ,1,6,5900 ,1,7,2210 ,1,8,542350 ,2,822,101490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500660 ,2,827,56130 ,2,828,432240 ,1,0,622135 ,2,821,320250 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,101415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500665 ,2,827,75 ,2,828,432245 ,1,0,622455 ,2,821,332650 ,1,0,210925 ,1,1,373485 ,1,2,340535 ,2,822,101190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500690 ,2,827,56155 ,2,828,432290 ,1,0,622735 ,2,821,342985 ,2,822,101445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500675 ,2,827,27110 ,2,828,432285 ,1,0,623050 ,2,821,345015 ,2,822,101220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,432295 ,1,0,623295 ,2,821,346110 ,2,822,23575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,623595 ,2,821,346260 ,2,822,567740 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,623915 ,2,821,346915 ,2,822,567680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,624205 ,2,821,347625 ,2,822,101370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500695 ,2,827,56155 ,2,828,432300 ,1,0,624500 ,2,821,356780 ,2,822,101425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500700 ,2,827,75 ,2,828,432305 ,1,0,624745 ,2,821,358080 ,2,822,101500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500705 ,2,827,75 ,2,828,432310 ,1,0,625070 ,2,821,360300 ,2,822,101510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500715 ,2,827,75 ,2,828,432315 ,1,0,625400 ,2,821,361965 ,2,822,101330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,432320 ,1,0,625695 ,2,821,362840 ,2,822,567750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,625970 ,2,821,363585 ,1,0,343780 ,2,822,101565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,432375 ,1,0,626230 ,2,821,364145 ,2,822,23640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,626620 ,2,821,364305 ,2,822,23690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,627020 ,2,821,364480 ,2,822,101585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500765 ,2,827,75 ,2,828,432380 ,1,0,627335 ,2,821,373775 ,2,822,101615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500770 ,2,827,75 ,2,828,432385 ,1,0,627650 ,2,821,377515 ,2,822,101665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,432390 ,1,0,628025 ,2,821,377995 ,1,0,212480 ,2,822,101675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500870 ,2,827,75 ,2,828,432585 ,1,0,628285 ,2,821,386690 ,2,822,101685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500775 ,2,827,75 ,2,828,432425 ,1,0,628505 ,2,821,387805 ,1,0,45 ,1,1,9435 ,2,822,101695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,432430 ,1,0,628750 ,2,821,388670 ,1,0,45 ,1,1,9435 ,2,822,101715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,432435 ,1,0,629090 ,2,821,390155 ,2,822,567855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,629415 ,2,821,390505 ,2,822,23735 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,629720 ,2,821,390625 ,2,822,101725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,432440 ,1,0,629975 ,2,821,391075 ,1,0,45 ,1,1,9435 ,2,822,101765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,432445 ,1,0,630345 ,2,821,391980 ,1,0,567865 ,1,1,45 ,1,2,9435 ,2,822,101785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,432450 ,1,0,630740 ,2,821,392870 ,1,0,45 ,1,1,9435 ,2,822,101825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,432455 ,1,0,631120 ,2,821,393810 ,1,0,567855 ,1,1,45 ,1,2,9435 ,2,822,101845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,432460 ,1,0,631450 ,2,821,395430 ,2,822,101910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500805 ,2,827,56720 ,2,828,432485 ,1,0,631720 ,2,821,402730 ,2,822,101940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500810 ,2,827,75 ,2,828,432490 ,1,0,631965 ,2,821,407970 ,2,822,101960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500845 ,2,827,75 ,2,828,432495 ,1,0,632275 ,2,821,413025 ,2,822,23745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,632590 ,2,821,413115 ,2,822,101970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,432500 ,1,0,632835 ,2,821,413610 ,1,0,567875 ,1,1,45 ,1,2,9435 ,2,822,102030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500850 ,2,827,75 ,2,828,432505 ,1,0,633065 ,2,821,414505 ,1,0,45 ,1,1,9435 ,2,822,102050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,432510 ,1,0,633475 ,2,821,415460 ,1,0,45 ,1,1,9435 ,2,822,102070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,432515 ,1,0,633845 ,2,821,416360 ,1,0,45 ,1,1,9435 ,2,822,102090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,432520 ,1,0,634275 ,2,821,417895 ,2,822,102140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500805 ,2,827,56720 ,2,828,432555 ,1,0,634505 ,2,821,425500 ,2,822,23755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,634740 ,2,821,425605 ,2,822,102285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500855 ,2,827,56930 ,2,828,432560 ,1,0,635130 ,2,821,459310 ,2,822,102305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500860 ,2,827,56940 ,2,828,432565 ,1,0,635420 ,2,821,461110 ,2,822,102325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500865 ,2,827,75 ,2,828,432570 ,1,0,635680 ,2,821,463985 ,2,822,102335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500875 ,2,827,75 ,2,828,432590 ,1,0,635970 ,2,821,465270 ,1,0,15120 ,1,1,212320 ,2,822,102380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500875 ,2,827,75 ,2,828,432595 ,1,0,636280 ,2,821,466525 ,2,822,102465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500880 ,2,827,75 ,2,828,432600 ,1,0,636645 ,2,821,469015 ,2,822,102480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,432635 ,1,0,636955 ,2,821,469485 ,2,822,102490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500900 ,2,827,75 ,2,828,432645 ,1,0,637180 ,2,821,476225 ,2,822,102590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500895 ,2,827,75 ,2,828,432640 ,1,0,637550 ,2,821,478850 ,2,822,102560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500905 ,2,827,75 ,2,828,432650 ,1,0,637945 ,2,821,481480 ,2,822,102570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,432660 ,1,0,638240 ,2,821,481930 ,1,0,262405 ,2,822,102600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500910 ,2,827,75 ,2,828,432665 ,1,0,638535 ,2,821,492115 ,2,822,102620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500915 ,2,827,75 ,2,828,432670 ,1,0,638900 ,2,821,494900 ,2,822,23780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,639090 ,2,821,495030 ,2,822,102655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500920 ,2,827,75 ,2,828,432675 ,1,0,639605 ,2,821,499350 ,1,0,186035 ,2,822,102665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500925 ,2,827,75 ,2,828,432695 ,1,0,640045 ,2,821,504665 ,2,822,102675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500930 ,2,827,75 ,2,828,432700 ,1,0,640370 ,2,821,508080 ,2,822,23835 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,640585 ,2,821,508175 ,2,822,23845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,640780 ,2,821,508295 ,2,822,23855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,641215 ,2,821,508395 ,2,822,102835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,641615 ,2,821,508825 ,1,0,213155 ,2,822,102860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500955 ,2,827,75 ,2,828,432705 ,1,0,641815 ,2,821,510330 ,2,822,102870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500960 ,2,827,75 ,2,828,432710 ,1,0,642025 ,2,821,519615 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,102890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500965 ,2,827,75 ,2,828,432720 ,1,0,642235 ,2,821,522815 ,2,822,102910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497015 ,2,827,75 ,2,828,432730 ,1,0,642705 ,2,821,523530 ,1,0,554240 ,1,1,211635 ,2,822,103135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500970 ,2,827,75 ,2,828,432725 ,1,0,642965 ,2,821,525735 ,2,822,102930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,432735 ,1,0,643270 ,2,821,526785 ,1,0,45 ,1,1,184220 ,2,822,102995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500975 ,2,827,75 ,2,828,432765 ,1,0,643445 ,2,821,527915 ,1,0,213260 ,2,822,103005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500985 ,2,827,75 ,2,828,432775 ,1,0,643925 ,2,821,530060 ,1,0,555385 ,1,1,140790 ,2,822,103270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500980 ,2,827,30175 ,2,828,432770 ,1,0,644090 ,2,821,532535 ,1,0,45 ,1,1,184220 ,2,822,103030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500975 ,2,827,75 ,2,828,432780 ,1,0,644360 ,2,821,533725 ,1,0,356890 ,2,822,103105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497015 ,2,827,75 ,2,828,432795 ,1,0,644670 ,2,821,534435 ,1,0,45 ,1,1,276975 ,2,822,103125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500990 ,2,827,75 ,2,828,432800 ,1,0,644830 ,2,821,536185 ,1,0,45 ,1,1,182815 ,2,822,103215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500975 ,2,827,75 ,2,828,432805 ,1,0,645360 ,2,821,537255 ,1,0,356870 ,2,822,103225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497015 ,2,827,75 ,2,828,432810 ,1,0,645615 ,2,821,537950 ,1,0,45 ,1,1,182815 ,2,822,103310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,432825 ,1,0,645800 ,2,821,539100 ,1,0,356860 ,2,822,103370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501020 ,2,827,75 ,2,828,432830 ,1,0,646240 ,2,821,539785 ,2,822,567805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,646460 ,2,821,540230 ,2,822,23875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,646625 ,2,821,540345 ,2,822,103505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,432835 ,1,0,647190 ,2,821,540865 ,2,822,103525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501025 ,2,827,75 ,2,828,432840 ,1,0,647520 ,2,821,542440 ,1,0,566715 ,1,1,45 ,1,2,208615 ,1,3,45 ,1,4,212880 ,2,822,103555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501030 ,2,827,75 ,2,828,432850 ,1,0,647690 ,2,821,545500 ,1,0,209800 ,2,822,103610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501035 ,2,827,57425 ,2,828,432855 ,1,0,648105 ,2,821,547495 ,1,0,233095 ,1,1,209550 ,1,2,556930 ,2,822,103620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501080 ,2,827,57830 ,2,828,432910 ,1,0,648280 ,2,821,555545 ,1,0,222465 ,2,822,103630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501040 ,2,827,75 ,2,828,432860 ,1,0,648480 ,2,821,557035 ,1,0,2210 ,1,1,542350 ,2,822,103640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501045 ,2,827,57495 ,2,828,432865 ,1,0,648890 ,2,821,563250 ,2,822,23905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,649105 ,2,821,563335 ,1,0,342325 ,1,1,342300 ,1,2,342290 ,1,3,342280 ,1,4,342270 ,1,5,342260 ,2,822,103680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501050 ,2,827,75 ,2,828,432885 ,1,0,649265 ,2,821,567430 ,2,822,568040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,649695 ,2,821,567820 ,1,0,217215 ,2,822,103745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,432890 ,1,0,649925 ,2,821,570700 ,1,0,223180 ,2,822,103755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,432895 ,1,0,650160 ,2,821,573540 ,2,822,23945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,650450 ,2,821,573630 ,1,0,257295 ,1,1,257285 ,1,2,257275 ,1,3,257340 ,1,4,257330 ,1,5,257305 ,1,6,343180 ,1,7,343170 ,1,8,343145 ,2,822,103765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501075 ,2,827,57645 ,2,828,432900 ,1,0,650725 ,2,821,579585 ,2,822,103780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496165 ,2,827,75 ,2,828,432905 ,1,0,651035 ,2,821,579835 ,1,0,561460 ,1,1,45 ,1,2,212880 ,2,822,103810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,432920 ,1,0,651460 ,2,821,581515 ,1,0,209540 ,2,822,104540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501085 ,2,827,75 ,2,828,432915 ,1,0,651965 ,2,821,582695 ,2,822,24085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,652325 ,2,821,582825 ,2,822,568160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,652515 ,2,821,583240 ,1,0,369375 ,2,822,103915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501090 ,2,827,58055 ,2,828,432945 ,1,0,653000 ,2,821,586255 ,2,822,24115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,653325 ,2,821,586345 ,1,0,214490 ,1,1,557070 ,2,822,104020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501110 ,2,827,58155 ,2,828,432955 ,1,0,653505 ,2,821,590720 ,1,0,222830 ,1,1,548120 ,2,822,104100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501100 ,2,827,75 ,2,828,432950 ,1,0,653985 ,2,821,591555 ,1,0,542560 ,1,1,593805 ,1,2,542560 ,2,822,104080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501105 ,2,827,75 ,2,828,432960 ,1,0,654250 ,2,821,593450 ,2,822,104115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,432965 ,1,0,654435 ,2,821,593880 ,1,0,556905 ,2,822,104125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499075 ,2,827,75 ,2,828,432975 ,1,0,654685 ,2,821,594895 ,1,0,556900 ,2,822,104135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501115 ,2,827,55375 ,2,828,432970 ,1,0,654910 ,2,821,597700 ,2,822,24215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,655440 ,2,821,597840 ,2,822,104185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,432980 ,1,0,655735 ,2,821,598170 ,2,822,104195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,655945 ,2,821,598620 ,2,822,104205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,656345 ,2,821,599125 ,2,822,104225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501145 ,2,827,75 ,2,828,433015 ,1,0,656615 ,2,821,599660 ,1,0,214925 ,1,1,566475 ,1,2,45 ,1,3,5900 ,1,4,166880 ,1,5,214905 ,1,6,214915 ,1,7,566390 ,1,8,45 ,1,9,5900 ,1,10,2210 ,1,11,542350 ,1,12,2210 ,1,13,542350 ,2,822,104235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501140 ,2,827,58390 ,2,828,433010 ,1,0,656850 ,2,821,627000 ,1,0,45 ,1,1,276975 ,2,822,104285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,433035 ,1,0,657015 ,2,821,628665 ,1,0,222325 ,2,822,104305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501160 ,2,827,30175 ,2,828,433030 ,1,0,657450 ,2,821,631260 ,2,822,104350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501150 ,2,827,58460 ,2,828,433020 ,1,0,657695 ,2,821,632555 ,2,822,104330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501155 ,2,827,75 ,2,828,433025 ,1,0,657940 ,2,821,634100 ,1,0,222840 ,2,822,104295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,433045 ,1,0,658200 ,2,821,634850 ,2,822,104315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501170 ,2,827,75 ,2,828,433085 ,1,0,658465 ,2,821,636340 ,2,822,104360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,433090 ,1,0,658725 ,2,821,636715 ,1,0,222850 ,1,1,214795 ,1,2,45 ,1,3,11510 ,2,822,104400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501195 ,2,827,58480 ,2,828,433095 ,1,0,659035 ,2,821,640340 ,2,822,24290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,659335 ,2,821,640445 ,2,822,24300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,659690 ,2,821,640540 ,2,822,568060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,659965 ,2,821,640975 ,2,822,104530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501200 ,2,827,75 ,2,828,433100 ,1,0,660275 ,2,821,642145 ,2,822,104560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501205 ,2,827,75 ,2,828,433110 ,1,0,660505 ,2,821,642755 ,1,0,342345 ,1,1,209370 ,1,2,188820 ,2,822,104620 ,2,823,540930 ,2,824,418300 ,2,825,352335 ,2,826,501210 ,2,827,75 ,2,828,433115 ,1,0,660815 ,2,821,644630 ,1,0,214970 ,2,822,104630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501230 ,2,827,58680 ,2,828,433140 ,1,0,661135 ,2,821,645580 ,2,822,104640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501220 ,2,827,52955 ,2,828,433120 ,1,0,661400 ,2,821,647000 ,1,0,342075 ,2,822,163730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501225 ,2,827,52955 ,2,828,433125 ,1,0,661585 ,2,821,648020 ,1,0,45 ,1,1,344025 ,2,822,104660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,448400 ,1,0,662035 ,2,821,649605 ,1,0,214805 ,2,822,163760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510730 ,2,827,75 ,2,828,448395 ,1,0,662250 ,2,821,650205 ,1,0,222800 ,1,1,267830 ,1,2,267800 ,1,3,215075 ,2,822,163720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510725 ,2,827,75 ,2,828,448390 ,1,0,662570 ,2,821,653590 ,1,0,188725 ,2,822,104670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501235 ,2,827,52955 ,2,828,433145 ,1,0,662815 ,2,821,654995 ,1,0,342700 ,1,1,222790 ,1,2,342690 ,2,822,163640 ,2,823,540995 ,2,824,418345 ,2,825,352430 ,2,826,510675 ,2,827,97425 ,2,828,448350 ,1,0,663000 ,2,821,657135 ,1,0,203570 ,2,822,104680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501270 ,2,827,75 ,2,828,433150 ,1,0,663220 ,2,821,659140 ,2,822,24330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,663765 ,2,821,659235 ,1,0,548160 ,2,822,104765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,433155 ,1,0,663885 ,2,821,659625 ,2,822,568420 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,664075 ,2,821,660060 ,1,0,542815 ,1,1,609460 ,1,2,542815 ,2,822,104775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501280 ,2,827,75 ,2,828,433165 ,1,0,664690 ,2,821,662490 ,1,0,258265 ,2,822,104795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501275 ,2,827,58835 ,2,828,433160 ,1,0,664880 ,2,821,663555 ,2,822,104785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,433170 ,1,0,665205 ,2,821,663880 ,2,822,104835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501285 ,2,827,58835 ,2,828,433175 ,1,0,665470 ,2,821,665680 ,2,822,104845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501295 ,2,827,58860 ,2,828,433205 ,1,0,665645 ,2,821,666560 ,1,0,548150 ,2,822,104855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501300 ,2,827,75 ,2,828,433210 ,1,0,665810 ,2,821,668055 ,2,822,37240 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,666145 ,2,821,668170 ,2,822,24360 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,666320 ,2,821,668250 ,1,0,612630 ,2,822,104880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,666565 ,2,821,668410 ,2,822,568460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,666735 ,2,821,668820 ,1,0,343690 ,2,822,104910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501305 ,2,827,58930 ,2,828,433215 ,1,0,667010 ,2,821,669310 ,2,822,37400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,667195 ,2,821,669420 ,1,0,562575 ,1,1,45 ,1,2,192820 ,2,822,104935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500520 ,2,827,75 ,2,828,433220 ,1,0,667585 ,2,821,670870 ,1,0,248490 ,2,822,105045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501310 ,2,827,75 ,2,828,433225 ,1,0,667825 ,2,821,671675 ,1,0,215505 ,1,1,555205 ,1,2,2210 ,1,3,542350 ,2,822,105075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501360 ,2,827,59000 ,2,828,433230 ,1,0,668065 ,2,821,59250 ,2,822,37210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,668550 ,2,821,59415 ,1,0,343710 ,2,822,105085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501350 ,2,827,75 ,2,828,433235 ,1,0,668895 ,2,821,61100 ,2,822,105095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501355 ,2,827,75 ,2,828,433240 ,1,0,669075 ,2,821,62725 ,2,822,568510 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,669375 ,2,821,64145 ,2,822,24425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,669700 ,2,821,64290 ,2,822,568565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,669975 ,2,821,65000 ,1,0,568560 ,1,1,45 ,1,2,5900 ,2,822,105355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501365 ,2,827,75 ,2,828,433285 ,1,0,670230 ,2,821,66150 ,2,822,105400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,670505 ,2,821,66405 ,2,822,105410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,670770 ,2,821,67135 ,1,0,609465 ,2,822,105420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501375 ,2,827,75 ,2,828,433290 ,1,0,671010 ,2,821,70055 ,1,0,175910 ,1,1,543205 ,1,2,568425 ,1,3,543205 ,2,822,105430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501420 ,2,827,75 ,2,828,433320 ,1,0,671290 ,2,821,75510 ,2,822,105625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501390 ,2,827,75 ,2,828,433310 ,1,0,671620 ,2,821,77495 ,1,0,214205 ,1,1,612640 ,2,822,105940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501380 ,2,827,75 ,2,828,433295 ,1,0,672005 ,2,821,79005 ,1,0,223265 ,2,822,105615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501385 ,2,827,75 ,2,828,433300 ,1,0,672235 ,2,821,83015 ,1,0,343720 ,2,822,105650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501415 ,2,827,75 ,2,828,433315 ,1,0,672495 ,2,821,86745 ,2,822,105450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501425 ,2,827,75 ,2,828,433325 ,1,0,672680 ,2,821,89025 ,1,0,542810 ,1,1,609470 ,1,2,542810 ,1,3,45 ,1,4,5900 ,2,822,105460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501430 ,2,827,75 ,2,828,433345 ,1,0,672840 ,2,821,95420 ,1,0,215900 ,1,1,556030 ,1,2,609475 ,1,3,164610 ,1,4,45 ,1,5,5900 ,2,822,105505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501445 ,2,827,75 ,2,828,433350 ,1,0,673110 ,2,821,101935 ,2,822,105515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,433355 ,1,0,673510 ,2,821,102745 ,1,0,609480 ,1,1,45 ,1,2,5900 ,2,822,105525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501450 ,2,827,75 ,2,828,433360 ,1,0,673770 ,2,821,108380 ,1,0,223255 ,2,822,105535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501455 ,2,827,75 ,2,828,433365 ,1,0,674170 ,2,821,110090 ,1,0,216015 ,2,822,105660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501485 ,2,827,75 ,2,828,433375 ,1,0,674390 ,2,821,111830 ,2,822,105670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501460 ,2,827,24545 ,2,828,433370 ,1,0,674695 ,2,821,117190 ,1,0,216220 ,1,1,340185 ,1,2,351880 ,1,3,351870 ,2,822,105710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501490 ,2,827,59190 ,2,828,433380 ,1,0,674955 ,2,821,127980 ,2,822,105730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497670 ,2,827,75 ,2,828,433405 ,1,0,385 ,2,821,129340 ,1,0,543195 ,1,1,568425 ,1,2,543195 ,2,822,105755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501495 ,2,827,75 ,2,828,433410 ,1,0,1300 ,2,821,137250 ,2,822,105765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501500 ,2,827,75 ,2,828,433415 ,1,0,2055 ,2,821,139225 ,1,0,224070 ,2,822,105815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501505 ,2,827,75 ,2,828,433420 ,1,0,2550 ,2,821,143260 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,105825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501510 ,2,827,75 ,2,828,433425 ,1,0,2885 ,2,821,147235 ,2,822,105865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501515 ,2,827,75 ,2,828,433430 ,1,0,3650 ,2,821,149610 ,1,0,542805 ,1,1,609515 ,1,2,542805 ,1,3,45 ,1,4,5900 ,2,822,105885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501520 ,2,827,75 ,2,828,433435 ,1,0,4290 ,2,821,156280 ,1,0,548170 ,2,822,105920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501550 ,2,827,27110 ,2,828,433440 ,1,0,4695 ,2,821,160430 ,1,0,568420 ,1,1,45 ,1,2,343730 ,2,822,105950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500520 ,2,827,75 ,2,828,433480 ,1,0,5145 ,2,821,162930 ,2,822,105960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,433485 ,1,0,5670 ,2,821,163970 ,1,0,542860 ,1,1,609520 ,1,2,542860 ,1,3,45 ,1,4,5900 ,2,822,105980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501555 ,2,827,75 ,2,828,433490 ,1,0,6295 ,2,821,172540 ,2,822,24470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,6820 ,2,821,172720 ,1,0,214055 ,2,822,106075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501560 ,2,827,75 ,2,828,433495 ,1,0,7270 ,2,821,174435 ,2,822,24480 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,7845 ,2,821,174610 ,1,0,331910 ,1,1,609525 ,1,2,45 ,1,3,11510 ,2,822,106260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501565 ,2,827,59300 ,2,828,433500 ,1,0,8270 ,2,821,178310 ,2,822,24520 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,8925 ,2,821,178490 ,1,0,267285 ,1,1,557100 ,2,822,106315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510650 ,2,827,96730 ,2,828,448285 ,1,0,9620 ,2,821,183665 ,1,0,354990 ,1,1,557095 ,1,2,557090 ,1,3,343230 ,1,4,165755 ,1,5,548265 ,1,6,259980 ,1,7,162465 ,1,8,269360 ,1,9,45 ,1,10,11510 ,1,11,343220 ,1,12,106405 ,2,822,162695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510645 ,2,827,96720 ,2,828,448280 ,1,0,10145 ,2,821,195305 ,2,822,106335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501575 ,2,827,59330 ,2,828,433505 ,1,0,10460 ,2,821,197485 ,2,822,106375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510620 ,2,827,59405 ,2,828,433510 ,1,0,11215 ,2,821,198355 ,1,0,343210 ,1,1,371930 ,1,2,371990 ,1,3,371980 ,1,4,355000 ,1,5,372000 ,1,6,371940 ,1,7,355010 ,2,822,106395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501610 ,2,827,75 ,2,828,433545 ,1,0,11875 ,2,821,201750 ,2,822,162485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501590 ,2,827,59485 ,2,828,433535 ,1,0,12430 ,2,821,204325 ,1,0,343200 ,1,1,568695 ,2,822,162495 ,2,823,540935 ,2,824,418305 ,2,825,352345 ,2,826,501580 ,2,827,59445 ,2,828,433515 ,1,0,13050 ,2,821,212445 ,1,0,359465 ,1,1,359445 ,1,2,359505 ,1,3,343190 ,1,4,214775 ,1,5,359435 ,1,6,359455 ,1,7,359475 ,2,822,162535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501585 ,2,827,75 ,2,828,433530 ,1,0,13590 ,2,821,215755 ,2,822,162425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,433540 ,1,0,14115 ,2,821,216550 ,1,0,566370 ,1,1,45 ,1,2,276975 ,2,822,106405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,433555 ,1,0,14540 ,2,821,219295 ,2,822,106435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,433560 ,1,0,15185 ,2,821,221170 ,2,822,106445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510620 ,2,827,59405 ,2,828,433565 ,1,0,15725 ,2,821,221935 ,1,0,162415 ,2,822,106465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501620 ,2,827,59495 ,2,828,433570 ,1,0,16240 ,2,821,223815 ,1,0,171625 ,1,1,266740 ,2,822,106475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510610 ,2,827,96535 ,2,828,448225 ,1,0,16695 ,2,821,236820 ,1,0,220500 ,2,822,106485 ,2,823,540940 ,2,824,418310 ,2,825,352355 ,2,826,501625 ,2,827,44250 ,2,828,433605 ,1,0,17225 ,2,821,245660 ,1,0,173390 ,1,1,556320 ,1,2,542880 ,1,3,609530 ,1,4,542880 ,1,5,333160 ,1,6,2210 ,1,7,542350 ,2,822,106550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501635 ,2,827,59525 ,2,828,433610 ,1,0,17770 ,2,821,264930 ,2,822,24570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,18105 ,2,821,265090 ,2,822,24580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,18410 ,2,821,265275 ,1,0,216445 ,1,1,2210 ,1,2,542350 ,2,822,106560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501640 ,2,827,57495 ,2,828,433615 ,1,0,18830 ,2,821,276050 ,1,0,216455 ,1,1,355030 ,1,2,216525 ,1,3,45 ,1,4,5900 ,1,5,165050 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,2,822,106570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501680 ,2,827,59615 ,2,828,433645 ,1,0,19270 ,2,821,298910 ,1,0,333115 ,1,1,2210 ,1,2,542350 ,2,822,106615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501645 ,2,827,40735 ,2,828,433620 ,1,0,19910 ,2,821,307815 ,1,0,220530 ,1,1,220520 ,1,2,166965 ,1,3,165060 ,1,4,573500 ,1,5,45 ,1,6,5900 ,2,822,162355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501650 ,2,827,75 ,2,828,433635 ,1,0,20440 ,2,821,310465 ,2,822,162345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501675 ,2,827,75 ,2,828,433640 ,1,0,20965 ,2,821,313380 ,2,822,106595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501685 ,2,827,75 ,2,828,433650 ,1,0,21500 ,2,821,314985 ,2,822,106605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501690 ,2,827,75 ,2,828,433675 ,1,0,22045 ,2,821,316180 ,2,822,106660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491640 ,2,827,75 ,2,828,433685 ,1,0,22490 ,2,821,317315 ,2,822,162545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501705 ,2,827,75 ,2,828,433680 ,1,0,23150 ,2,821,318260 ,2,822,24590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,23715 ,2,821,318430 ,2,822,106690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510555 ,2,827,75 ,2,828,448150 ,1,0,24375 ,2,821,321805 ,1,0,164600 ,1,1,164590 ,1,2,2210 ,1,3,542350 ,2,822,162375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510500 ,2,827,96325 ,2,828,448055 ,1,0,25075 ,2,821,340655 ,1,0,216580 ,1,1,216570 ,1,2,219215 ,2,822,106710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501710 ,2,827,30175 ,2,828,433690 ,1,0,25730 ,2,821,346105 ,1,0,234560 ,1,1,354275 ,1,2,354255 ,1,3,2210 ,1,4,542350 ,2,822,106720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510430 ,2,827,95790 ,2,828,447950 ,1,0,26235 ,2,821,365465 ,1,0,554640 ,1,1,318055 ,1,2,214045 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,5900 ,1,13,580650 ,1,14,45 ,1,15,5900 ,1,16,214035 ,1,17,45 ,1,18,5900 ,1,19,45 ,1,20,5900 ,1,21,45 ,1,22,5900 ,1,23,45 ,1,24,5900 ,1,25,45 ,1,26,5900 ,1,27,45 ,1,28,5900 ,1,29,2210 ,1,30,542350 ,2,822,161460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510415 ,2,827,95760 ,2,828,447890 ,1,0,26885 ,2,821,398340 ,2,822,24655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,27440 ,2,821,398455 ,1,0,550755 ,1,1,2210 ,1,2,542350 ,2,822,161400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510390 ,2,827,95740 ,2,828,447880 ,1,0,27980 ,2,821,414240 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,568865 ,1,11,45 ,1,12,5900 ,2,822,106915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501720 ,2,827,59730 ,2,828,433700 ,1,0,28425 ,2,821,418150 ,2,822,568810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,28950 ,2,821,418885 ,2,822,24690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,29420 ,2,821,418990 ,2,822,106785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,433710 ,1,0,29975 ,2,821,420070 ,2,822,106820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,433705 ,1,0,30515 ,2,821,420530 ,1,0,106785 ,2,822,106885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501715 ,2,827,59845 ,2,828,433715 ,1,0,31045 ,2,821,422510 ,1,0,213940 ,2,822,106925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501740 ,2,827,75 ,2,828,433745 ,1,0,31695 ,2,821,423925 ,2,822,24710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,32320 ,2,821,424025 ,2,822,106935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,32810 ,2,821,424230 ,2,822,24800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,33355 ,2,821,424330 ,2,822,24810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,33890 ,2,821,424400 ,2,822,107050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,433750 ,1,0,34200 ,2,821,425525 ,2,822,24885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,34850 ,2,821,425655 ,2,822,569000 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,35520 ,2,821,426095 ,1,0,218335 ,2,822,107070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,433760 ,1,0,36055 ,2,821,426640 ,1,0,216025 ,2,822,107105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501745 ,2,827,75 ,2,828,433755 ,1,0,36590 ,2,821,427490 ,1,0,220015 ,2,822,107115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501755 ,2,827,75 ,2,828,433765 ,1,0,37000 ,2,821,428525 ,1,0,217120 ,1,1,217130 ,1,2,542820 ,1,3,573705 ,1,4,542820 ,1,5,331535 ,1,6,220005 ,2,822,107125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501785 ,2,827,75 ,2,828,433800 ,1,0,37325 ,2,821,435990 ,1,0,2210 ,1,1,542350 ,2,822,107135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501770 ,2,827,75 ,2,828,433770 ,1,0,38050 ,2,821,442060 ,2,822,107145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501775 ,2,827,75 ,2,828,433775 ,1,0,38385 ,2,821,445995 ,2,822,107155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501780 ,2,827,60250 ,2,828,433780 ,1,0,38685 ,2,821,451530 ,2,822,24965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,39035 ,2,821,451645 ,2,822,24975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,39365 ,2,821,451735 ,1,0,555455 ,2,822,107270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,433805 ,1,0,39690 ,2,821,452675 ,2,822,24995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,40035 ,2,821,452760 ,2,822,25010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,40375 ,2,821,452880 ,2,822,569125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,40695 ,2,821,453295 ,1,0,219150 ,2,822,107365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,433810 ,1,0,40870 ,2,821,453775 ,2,822,25020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,41195 ,2,821,453875 ,2,822,107395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501820 ,2,827,75 ,2,828,433815 ,1,0,41450 ,2,821,454545 ,2,822,107435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,433825 ,1,0,41840 ,2,821,455360 ,2,822,25030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,42290 ,2,821,455460 ,1,0,217490 ,1,1,217500 ,2,822,107490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501825 ,2,827,75 ,2,828,433830 ,1,0,42710 ,2,821,458075 ,2,822,25040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,43145 ,2,821,458185 ,2,822,25080 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,43580 ,2,821,458265 ,1,0,45 ,1,1,5900 ,2,822,107555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501835 ,2,827,60645 ,2,828,433840 ,1,0,44235 ,2,821,463505 ,1,0,45 ,1,1,5900 ,2,822,107695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501830 ,2,827,75 ,2,828,433835 ,1,0,44655 ,2,821,465945 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,107565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,433870 ,1,0,45215 ,2,821,468065 ,2,822,107585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495520 ,2,827,75 ,2,828,433875 ,1,0,45725 ,2,821,468840 ,1,0,211355 ,2,822,107595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501850 ,2,827,75 ,2,828,433885 ,1,0,46255 ,2,821,469710 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,107605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501845 ,2,827,34110 ,2,828,433880 ,1,0,46565 ,2,821,476360 ,1,0,45 ,1,1,184220 ,2,822,107615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,433890 ,1,0,46905 ,2,821,477920 ,2,822,107625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,433895 ,1,0,47490 ,2,821,478355 ,1,0,45 ,1,1,184220 ,2,822,107675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,433905 ,1,0,47910 ,2,821,479935 ,1,0,211120 ,2,822,107730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501850 ,2,827,75 ,2,828,433900 ,1,0,48240 ,2,821,480930 ,2,822,107685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501890 ,2,827,75 ,2,828,433920 ,1,0,48765 ,2,821,481870 ,2,822,107790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,433925 ,1,0,49260 ,2,821,482725 ,1,0,211095 ,2,822,107810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501850 ,2,827,75 ,2,828,433930 ,1,0,49790 ,2,821,483635 ,1,0,45 ,1,1,182815 ,2,822,107825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,433935 ,1,0,50220 ,2,821,485150 ,1,0,45 ,1,1,182815 ,2,822,107890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,433945 ,1,0,50635 ,2,821,486710 ,1,0,211560 ,2,822,107930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501850 ,2,827,75 ,2,828,433940 ,1,0,51180 ,2,821,487655 ,2,822,107900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,51635 ,2,821,488195 ,2,822,107960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501900 ,2,827,60655 ,2,828,433950 ,1,0,52140 ,2,821,490095 ,2,822,25090 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,52460 ,2,821,490215 ,2,822,25100 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,53880 ,2,821,490310 ,2,822,25110 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,54340 ,2,821,490440 ,1,0,45 ,1,1,5900 ,1,2,209580 ,1,3,45 ,1,4,5900 ,1,5,212985 ,1,6,45 ,1,7,5900 ,1,8,213035 ,2,822,108145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501915 ,2,827,75 ,2,828,433955 ,1,0,54845 ,2,821,494845 ,1,0,45 ,1,1,5900 ,1,2,609395 ,1,3,45 ,1,4,11510 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,11510 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,11510 ,1,13,45 ,1,14,11510 ,1,15,45 ,1,16,11510 ,1,17,45 ,1,18,5900 ,1,19,45 ,1,20,11510 ,2,822,108195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501920 ,2,827,60825 ,2,828,433985 ,1,0,55165 ,2,821,506105 ,1,0,45 ,1,1,5900 ,1,2,209840 ,2,822,108205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501925 ,2,827,60645 ,2,828,433990 ,1,0,56140 ,2,821,511225 ,1,0,45 ,1,1,5900 ,1,2,217815 ,1,3,212935 ,1,4,164015 ,2,822,108215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501930 ,2,827,60890 ,2,828,433995 ,1,0,56465 ,2,821,518040 ,1,0,45 ,1,1,5900 ,2,822,108225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501955 ,2,827,34150 ,2,828,434000 ,1,0,56775 ,2,821,524030 ,2,822,25160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,57655 ,2,821,524145 ,2,822,108315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501960 ,2,827,75 ,2,828,434005 ,1,0,58320 ,2,821,527995 ,2,822,108325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501965 ,2,827,75 ,2,828,434010 ,1,0,58840 ,2,821,529355 ,2,822,108350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,434015 ,1,0,59160 ,2,821,529810 ,1,0,567415 ,1,1,45 ,1,2,179760 ,1,3,45 ,1,4,186035 ,2,822,108360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,434020 ,1,0,59585 ,2,821,532095 ,2,822,108410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,434050 ,1,0,59985 ,2,821,532540 ,1,0,211335 ,2,822,108420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501970 ,2,827,75 ,2,828,434055 ,1,0,60310 ,2,821,533450 ,1,0,45 ,1,1,184220 ,2,822,108430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434060 ,1,0,61270 ,2,821,535020 ,1,0,45 ,1,1,184220 ,2,822,108460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434075 ,1,0,61675 ,2,821,536555 ,1,0,211085 ,2,822,109185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501970 ,2,827,75 ,2,828,434065 ,1,0,62100 ,2,821,537365 ,1,0,45 ,1,1,9435 ,2,822,108480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,434080 ,1,0,62625 ,2,821,538330 ,1,0,569315 ,1,1,45 ,1,2,9435 ,2,822,108520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,434085 ,1,0,62835 ,2,821,539905 ,2,822,25235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,63185 ,2,821,540030 ,2,822,108540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,434090 ,1,0,63515 ,2,821,540540 ,1,0,45 ,1,1,9435 ,2,822,108570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,423260 ,1,0,64345 ,2,821,541580 ,1,0,569335 ,1,1,45 ,1,2,9435 ,2,822,108590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,434110 ,1,0,64780 ,2,821,542580 ,1,0,45 ,1,1,9435 ,2,822,108635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,434115 ,1,0,65130 ,2,821,543500 ,1,0,45 ,1,1,9435 ,2,822,108655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,434120 ,1,0,65750 ,2,821,545065 ,1,0,329210 ,1,1,329160 ,1,2,180715 ,1,3,329150 ,1,4,329140 ,1,5,180745 ,1,6,329130 ,1,7,180725 ,1,8,329120 ,2,822,108685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501980 ,2,827,75 ,2,828,434135 ,1,0,66345 ,2,821,555610 ,1,0,340700 ,1,1,340690 ,2,822,108705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501975 ,2,827,75 ,2,828,434130 ,1,0,66865 ,2,821,558230 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,108695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495065 ,2,827,75 ,2,828,434125 ,1,0,67495 ,2,821,559405 ,2,822,108745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501985 ,2,827,34130 ,2,828,434140 ,1,0,68130 ,2,821,565470 ,2,822,108755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501990 ,2,827,34130 ,2,828,434145 ,1,0,68645 ,2,821,569160 ,2,822,108765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502005 ,2,827,75 ,2,828,434190 ,1,0,69160 ,2,821,572190 ,2,822,108775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502010 ,2,827,75 ,2,828,434195 ,1,0,69660 ,2,821,575150 ,2,822,25250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,70105 ,2,821,575225 ,2,822,25260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,70600 ,2,821,575335 ,2,822,108860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,434200 ,1,0,71095 ,2,821,575810 ,1,0,45 ,1,1,9435 ,2,822,108880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,434205 ,1,0,71620 ,2,821,576735 ,1,0,569375 ,1,1,45 ,1,2,9435 ,2,822,108900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,434210 ,1,0,72225 ,2,821,577640 ,1,0,45 ,1,1,9435 ,2,822,108920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,434215 ,1,0,72750 ,2,821,578615 ,1,0,45 ,1,1,9435 ,2,822,108970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,434220 ,1,0,73300 ,2,821,580275 ,1,0,329335 ,1,1,329325 ,1,2,329315 ,1,3,329280 ,1,4,329270 ,1,5,329260 ,1,6,329250 ,1,7,329240 ,1,8,329230 ,1,9,329220 ,2,822,109005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502015 ,2,827,75 ,2,828,434225 ,1,0,73790 ,2,821,591305 ,2,822,109025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502020 ,2,827,56720 ,2,828,434235 ,1,0,74095 ,2,821,595180 ,2,822,109115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502030 ,2,827,61455 ,2,828,434240 ,1,0,74695 ,2,821,613450 ,2,822,109125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502035 ,2,827,61465 ,2,828,434245 ,1,0,75000 ,2,821,616740 ,2,822,109175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502040 ,2,827,61500 ,2,828,434250 ,1,0,75335 ,2,821,619005 ,2,822,109195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502045 ,2,827,75 ,2,828,434260 ,1,0,75620 ,2,821,619935 ,1,0,356970 ,1,1,163995 ,1,2,163985 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,2,822,109210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502070 ,2,827,75 ,2,828,434265 ,1,0,75925 ,2,821,633690 ,2,822,109230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,434270 ,1,0,76320 ,2,821,634535 ,1,0,211075 ,2,822,109295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501970 ,2,827,75 ,2,828,434275 ,1,0,76660 ,2,821,635365 ,1,0,45 ,1,1,182815 ,2,822,109305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434315 ,1,0,76985 ,2,821,636840 ,1,0,45 ,1,1,182815 ,2,822,109325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434325 ,1,0,77710 ,2,821,638300 ,1,0,211550 ,2,822,109395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501970 ,2,827,75 ,2,828,434320 ,1,0,78025 ,2,821,639130 ,2,822,109370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,434330 ,1,0,78455 ,2,821,639880 ,2,822,25270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,78810 ,2,821,639980 ,2,822,25280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,79120 ,2,821,640095 ,2,822,109465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,434340 ,1,0,79445 ,2,821,641185 ,2,822,25340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,79730 ,2,821,641295 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,11510 ,2,822,109490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502075 ,2,827,60825 ,2,828,434345 ,1,0,80055 ,2,821,651810 ,1,0,45 ,1,1,5900 ,2,822,109545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502080 ,2,827,75 ,2,828,434350 ,1,0,80470 ,2,821,653500 ,2,822,109600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,80955 ,2,821,653680 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,109630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502085 ,2,827,75 ,2,828,434355 ,1,0,81365 ,2,821,657595 ,1,0,45 ,1,1,5900 ,2,822,109645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502095 ,2,827,75 ,2,828,434380 ,1,0,81775 ,2,821,659200 ,2,822,109725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,434385 ,1,0,82190 ,2,821,659560 ,2,822,109760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502440 ,2,827,62565 ,2,828,434765 ,1,0,82490 ,2,821,661105 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,109770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502100 ,2,827,75 ,2,828,434390 ,1,0,82825 ,2,821,663075 ,2,822,111240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502425 ,2,827,75 ,2,828,434750 ,1,0,83160 ,2,821,665640 ,1,0,218745 ,1,1,185025 ,2,822,110775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502390 ,2,827,62520 ,2,828,434720 ,1,0,83475 ,2,821,674615 ,1,0,185205 ,2,822,109780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502105 ,2,827,62520 ,2,828,434395 ,1,0,83815 ,2,821,255 ,2,822,25370 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,84235 ,2,821,445 ,2,822,25435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,84755 ,2,821,615 ,1,0,185055 ,2,822,109820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,434405 ,1,0,85400 ,2,821,1500 ,1,0,370930 ,2,822,109830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502170 ,2,827,75 ,2,828,434445 ,1,0,86075 ,2,821,6895 ,1,0,163885 ,2,822,110065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502165 ,2,827,61930 ,2,828,434410 ,1,0,86575 ,2,821,15585 ,2,822,25445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,87135 ,2,821,15715 ,1,0,163135 ,2,822,109945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502140 ,2,827,62025 ,2,828,434415 ,1,0,87905 ,2,821,34820 ,2,822,25465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,88625 ,2,821,35010 ,2,822,110000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502110 ,2,827,61930 ,2,828,434420 ,1,0,89170 ,2,821,43510 ,2,822,110010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502145 ,2,827,61930 ,2,828,434430 ,1,0,89465 ,2,821,113490 ,2,822,569580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,89870 ,2,821,114260 ,1,0,164475 ,2,822,110020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502150 ,2,827,61930 ,2,828,434435 ,1,0,90390 ,2,821,118560 ,1,0,221180 ,1,1,221190 ,1,2,221150 ,1,3,221160 ,1,4,221140 ,1,5,221050 ,1,6,221060 ,1,7,221090 ,1,8,221130 ,1,9,221070 ,1,10,221080 ,2,822,110045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502155 ,2,827,61930 ,2,828,434440 ,1,0,90795 ,2,821,152075 ,1,0,221560 ,1,1,162035 ,1,2,45 ,1,3,5900 ,2,822,110075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502255 ,2,827,62460 ,2,828,434515 ,1,0,91110 ,2,821,193880 ,1,0,221275 ,1,1,221285 ,1,2,162025 ,2,822,110390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502250 ,2,827,75 ,2,828,434510 ,1,0,91510 ,2,821,197530 ,1,0,221525 ,1,1,2210 ,1,2,542350 ,2,822,110105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502175 ,2,827,40735 ,2,828,434450 ,1,0,91810 ,2,821,207835 ,2,822,25485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,92155 ,2,821,207995 ,2,822,25555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,92585 ,2,821,208155 ,2,822,25565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,92995 ,2,821,208330 ,2,822,110170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,93415 ,2,821,209080 ,2,822,110190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,434455 ,1,0,93830 ,2,821,209920 ,2,822,110200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502205 ,2,827,75 ,2,828,434460 ,1,0,94145 ,2,821,212665 ,2,822,110225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502215 ,2,827,75 ,2,828,434490 ,1,0,94565 ,2,821,213770 ,1,0,221400 ,1,1,2210 ,1,2,542350 ,2,822,110235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502210 ,2,827,62340 ,2,828,434465 ,1,0,95095 ,2,821,224580 ,2,822,569660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,95650 ,2,821,225200 ,1,0,217085 ,2,822,110245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502220 ,2,827,75 ,2,828,434495 ,1,0,95950 ,2,821,227220 ,2,822,110320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502240 ,2,827,75 ,2,828,434500 ,1,0,96575 ,2,821,230385 ,1,0,371010 ,1,1,2210 ,1,2,542350 ,2,822,110330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502245 ,2,827,75 ,2,828,434505 ,1,0,97235 ,2,821,236290 ,1,0,185185 ,2,822,110400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502280 ,2,827,75 ,2,828,434520 ,1,0,97775 ,2,821,237125 ,2,822,110410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502285 ,2,827,75 ,2,828,434525 ,1,0,98120 ,2,821,241275 ,2,822,110425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502105 ,2,827,62520 ,2,828,434560 ,1,0,98450 ,2,821,242375 ,2,822,110435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502310 ,2,827,75 ,2,828,434580 ,1,0,98785 ,2,821,243370 ,2,822,110625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502305 ,2,827,75 ,2,828,434575 ,1,0,99095 ,2,821,253720 ,1,0,371155 ,1,1,371215 ,1,2,371165 ,1,3,371225 ,1,4,371175 ,2,822,110540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502290 ,2,827,62470 ,2,828,434565 ,1,0,99625 ,2,821,265035 ,2,822,110605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502295 ,2,827,62480 ,2,828,434570 ,1,0,100090 ,2,821,307405 ,2,822,110445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502315 ,2,827,75 ,2,828,434585 ,1,0,100655 ,2,821,309275 ,2,822,110455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502320 ,2,827,75 ,2,828,434590 ,1,0,101175 ,2,821,313210 ,1,0,185400 ,1,1,185390 ,1,2,185410 ,1,3,370920 ,1,4,370910 ,1,5,163195 ,2,822,110490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502345 ,2,827,75 ,2,828,434595 ,1,0,101865 ,2,821,316175 ,2,822,110500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502105 ,2,827,62520 ,2,828,434615 ,1,0,102430 ,2,821,317310 ,1,0,555020 ,2,822,110510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502350 ,2,827,75 ,2,828,434620 ,1,0,102980 ,2,821,319750 ,2,822,110520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502355 ,2,827,75 ,2,828,434625 ,1,0,103585 ,2,821,323095 ,1,0,313420 ,2,822,110530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502310 ,2,827,75 ,2,828,434630 ,1,0,104060 ,2,821,324120 ,2,822,110585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502360 ,2,827,75 ,2,828,434640 ,1,0,104590 ,2,821,325670 ,2,822,110595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502375 ,2,827,62500 ,2,828,434645 ,1,0,104920 ,2,821,328785 ,1,0,185065 ,2,822,110615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,434650 ,1,0,105255 ,2,821,329670 ,1,0,185215 ,2,822,110635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,434655 ,1,0,105585 ,2,821,330500 ,2,822,110645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502315 ,2,827,75 ,2,828,434675 ,1,0,106010 ,2,821,332370 ,2,822,110655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502360 ,2,827,75 ,2,828,434680 ,1,0,106430 ,2,821,333880 ,2,822,110690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,434685 ,1,0,106635 ,2,821,335775 ,2,822,110710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502380 ,2,827,75 ,2,828,434690 ,1,0,107195 ,2,821,337400 ,2,822,110720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,434705 ,1,0,107635 ,2,821,338495 ,1,0,185430 ,2,822,110755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502105 ,2,827,62520 ,2,828,434710 ,1,0,108060 ,2,821,339635 ,1,0,163155 ,1,1,163145 ,2,822,110560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502385 ,2,827,75 ,2,828,434715 ,1,0,108515 ,2,821,346155 ,2,822,110915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502430 ,2,827,62555 ,2,828,434755 ,1,0,108830 ,2,821,350820 ,1,0,370860 ,1,1,370840 ,1,2,370850 ,1,3,370820 ,1,4,370830 ,1,5,2210 ,1,6,542350 ,2,822,111220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502435 ,2,827,40735 ,2,828,434760 ,1,0,109290 ,2,821,358955 ,2,822,110810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502450 ,2,827,62575 ,2,828,434775 ,1,0,109695 ,2,821,365825 ,1,0,555390 ,1,1,217855 ,2,822,111295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502445 ,2,827,75 ,2,828,434770 ,1,0,110150 ,2,821,368030 ,2,822,110820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502455 ,2,827,62555 ,2,828,434780 ,1,0,110465 ,2,821,372360 ,2,822,110830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499355 ,2,827,75 ,2,828,434785 ,1,0,111450 ,2,821,373915 ,1,0,45 ,1,1,184220 ,2,822,110840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434815 ,1,0,111885 ,2,821,375855 ,2,822,110850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,112845 ,2,821,376090 ,1,0,45 ,1,1,184220 ,2,822,110870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434825 ,1,0,113175 ,2,821,377565 ,1,0,358050 ,2,822,110945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502460 ,2,827,75 ,2,828,434830 ,1,0,113520 ,2,821,379905 ,1,0,45 ,1,1,276975 ,2,822,110985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500990 ,2,827,75 ,2,828,434835 ,1,0,113850 ,2,821,381650 ,1,0,163185 ,2,822,111020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502480 ,2,827,75 ,2,828,434840 ,1,0,114445 ,2,821,382520 ,1,0,218310 ,1,1,370900 ,1,2,325245 ,2,822,111040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502485 ,2,827,62595 ,2,828,434845 ,1,0,114985 ,2,821,387360 ,2,822,111050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,115535 ,2,821,387580 ,2,822,111065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502430 ,2,827,62555 ,2,828,434850 ,1,0,115855 ,2,821,390185 ,2,822,111075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,434880 ,1,0,116390 ,2,821,390800 ,2,822,111085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502490 ,2,827,75 ,2,828,434885 ,1,0,116745 ,2,821,391550 ,2,822,111095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502495 ,2,827,75 ,2,828,434890 ,1,0,117965 ,2,821,392705 ,2,822,111140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502505 ,2,827,75 ,2,828,434895 ,1,0,118390 ,2,821,393685 ,2,822,111150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,118730 ,2,821,393945 ,2,822,111160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502510 ,2,827,75 ,2,828,434910 ,1,0,119050 ,2,821,394800 ,1,0,45 ,1,1,182815 ,2,822,111190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434920 ,1,0,119875 ,2,821,396275 ,2,822,111400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502515 ,2,827,75 ,2,828,434915 ,1,0,120285 ,2,821,397280 ,2,822,111200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502520 ,2,827,75 ,2,828,434925 ,1,0,120940 ,2,821,397835 ,2,822,111210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,434955 ,1,0,121335 ,2,821,398860 ,1,0,356560 ,1,1,351800 ,2,822,111250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502560 ,2,827,75 ,2,828,434960 ,1,0,121660 ,2,821,400105 ,2,822,111315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502565 ,2,827,75 ,2,828,434965 ,1,0,121995 ,2,821,400910 ,2,822,111360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502495 ,2,827,75 ,2,828,434970 ,1,0,122455 ,2,821,402120 ,2,822,111380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502490 ,2,827,75 ,2,828,434980 ,1,0,122865 ,2,821,402975 ,1,0,45 ,1,1,182815 ,2,822,111430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,434990 ,1,0,123350 ,2,821,404525 ,2,822,111500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502570 ,2,827,62605 ,2,828,434985 ,1,0,124100 ,2,821,405895 ,1,0,548405 ,1,1,325315 ,1,2,2210 ,1,3,542350 ,2,822,111490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502575 ,2,827,57495 ,2,828,434995 ,1,0,124650 ,2,821,419060 ,1,0,45 ,1,1,5900 ,2,822,111525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502585 ,2,827,75 ,2,828,435025 ,1,0,124975 ,2,821,425005 ,1,0,219245 ,2,822,111535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502590 ,2,827,75 ,2,828,435030 ,1,0,125400 ,2,821,425815 ,1,0,221855 ,1,1,371185 ,1,2,221835 ,1,3,357155 ,2,822,111545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502595 ,2,827,75 ,2,828,435035 ,1,0,125865 ,2,821,433105 ,2,822,25585 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,126280 ,2,821,433180 ,2,822,25595 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,126590 ,2,821,433305 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,111575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502635 ,2,827,75 ,2,828,435045 ,1,0,127005 ,2,821,435975 ,2,822,111635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502600 ,2,827,75 ,2,828,435040 ,1,0,127450 ,2,821,437205 ,2,822,111585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,435055 ,1,0,127755 ,2,821,438080 ,2,822,111625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,435050 ,1,0,128305 ,2,821,438570 ,2,822,111605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,435060 ,1,0,128730 ,2,821,439680 ,2,822,25685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,129345 ,2,821,439795 ,1,0,45 ,1,1,184220 ,2,822,111700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,435090 ,1,0,130035 ,2,821,441380 ,2,822,111810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502645 ,2,827,75 ,2,828,435085 ,1,0,130630 ,2,821,446500 ,2,822,111905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502640 ,2,827,75 ,2,828,435080 ,1,0,131325 ,2,821,447700 ,1,0,45 ,1,1,184220 ,2,822,111725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435100 ,1,0,131850 ,2,821,449180 ,2,822,111820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502645 ,2,827,75 ,2,828,435095 ,1,0,132375 ,2,821,454130 ,1,0,45 ,1,1,182815 ,2,822,111745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435110 ,1,0,132905 ,2,821,455730 ,2,822,111840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502665 ,2,827,75 ,2,828,435105 ,1,0,133430 ,2,821,460690 ,1,0,45 ,1,1,182815 ,2,822,111790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435165 ,1,0,133915 ,2,821,462285 ,2,822,111850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502665 ,2,827,75 ,2,828,435115 ,1,0,134450 ,2,821,467235 ,2,822,111860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502360 ,2,827,75 ,2,828,435175 ,1,0,134915 ,2,821,468055 ,2,822,111870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,435180 ,1,0,135435 ,2,821,469170 ,2,822,25695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,135975 ,2,821,469240 ,1,0,45 ,1,1,184220 ,2,822,111935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,435195 ,1,0,136520 ,2,821,470665 ,2,822,112035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502675 ,2,827,62810 ,2,828,435190 ,1,0,136960 ,2,821,474960 ,2,822,112105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502670 ,2,827,75 ,2,828,435185 ,1,0,137415 ,2,821,475850 ,1,0,45 ,1,1,184220 ,2,822,111955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435225 ,1,0,137750 ,2,821,477435 ,1,0,45 ,1,1,182815 ,2,822,111990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435235 ,1,0,138170 ,2,821,478955 ,2,822,112055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502680 ,2,827,62810 ,2,828,435230 ,1,0,138615 ,2,821,483055 ,1,0,45 ,1,1,182815 ,2,822,112010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435245 ,1,0,139040 ,2,821,484565 ,1,0,591630 ,1,1,45 ,1,2,325430 ,1,3,591625 ,1,4,45 ,1,5,325430 ,1,6,591620 ,1,7,45 ,1,8,325430 ,2,822,112135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509730 ,2,827,62820 ,2,828,435250 ,1,0,139470 ,2,821,489435 ,2,822,25750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,140125 ,2,821,489540 ,2,822,569855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,140620 ,2,821,489970 ,1,0,323305 ,2,822,112175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494495 ,2,827,75 ,2,828,435255 ,1,0,141040 ,2,821,491935 ,1,0,222450 ,1,1,222540 ,1,2,222340 ,1,3,222400 ,1,4,222390 ,1,5,222520 ,1,6,220970 ,1,7,222480 ,1,8,222360 ,1,9,222350 ,2,822,112185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,141590 ,2,821,498990 ,2,822,25780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,142070 ,2,821,499085 ,2,822,112220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,442500 ,1,0,142605 ,2,821,500135 ,1,0,250790 ,2,822,141705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507685 ,2,827,75 ,2,828,442470 ,1,0,143075 ,2,821,500785 ,2,822,112330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502720 ,2,827,75 ,2,828,435325 ,1,0,143520 ,2,821,502660 ,1,0,269240 ,1,1,162815 ,1,2,323315 ,2,822,112230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502710 ,2,827,75 ,2,828,435310 ,1,0,143945 ,2,821,503960 ,1,0,199455 ,1,1,357075 ,1,2,257475 ,2,822,165680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502705 ,2,827,63020 ,2,828,435305 ,1,0,144495 ,2,821,510880 ,2,822,165640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502695 ,2,827,75 ,2,828,435295 ,1,0,144915 ,2,821,515030 ,2,822,165480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495520 ,2,827,75 ,2,828,435260 ,1,0,145360 ,2,821,515850 ,1,0,200160 ,1,1,164265 ,2,822,165490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502700 ,2,827,75 ,2,828,435300 ,1,0,145920 ,2,821,517445 ,2,822,25865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,146355 ,2,821,517535 ,2,822,25875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,147875 ,2,821,517645 ,2,822,569970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,148455 ,2,821,518070 ,1,0,200185 ,2,822,112360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502725 ,2,827,63245 ,2,828,435330 ,1,0,148745 ,2,821,520250 ,2,822,25905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,149085 ,2,821,520325 ,2,822,25915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,149515 ,2,821,520455 ,2,822,570050 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,149980 ,2,821,520895 ,2,822,25925 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,150395 ,2,821,521000 ,2,822,25985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,150935 ,2,821,521085 ,2,822,112465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,433750 ,1,0,151360 ,2,821,522190 ,1,0,45 ,1,1,5900 ,2,822,112535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502730 ,2,827,75 ,2,828,435335 ,1,0,151805 ,2,821,523925 ,1,0,45 ,1,1,5900 ,2,822,112545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502735 ,2,827,75 ,2,828,435340 ,1,0,152145 ,2,821,525825 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,112575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501915 ,2,827,75 ,2,828,435355 ,1,0,152580 ,2,821,530155 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,11510 ,2,822,112605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502770 ,2,827,60825 ,2,828,433985 ,1,0,152795 ,2,821,541330 ,1,0,45 ,1,1,5900 ,2,822,112640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502775 ,2,827,60645 ,2,828,435360 ,1,0,153215 ,2,821,546255 ,1,0,45 ,1,1,5900 ,1,2,216340 ,2,822,112650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502780 ,2,827,75 ,2,828,435365 ,1,0,153540 ,2,821,550230 ,2,822,112675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502675 ,2,827,62810 ,2,828,435375 ,1,0,153935 ,2,821,554630 ,2,822,112695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502785 ,2,827,75 ,2,828,435370 ,1,0,154295 ,2,821,555330 ,1,0,45 ,1,1,184220 ,2,822,112685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435380 ,1,0,154715 ,2,821,556920 ,1,0,45 ,1,1,184220 ,2,822,112750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435390 ,1,0,155010 ,2,821,558560 ,2,822,112770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502680 ,2,827,62810 ,2,828,435415 ,1,0,155440 ,2,821,562735 ,1,0,45 ,1,1,182815 ,2,822,112780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435420 ,1,0,155680 ,2,821,564255 ,1,0,45 ,1,1,182815 ,2,822,112870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435430 ,1,0,156110 ,2,821,565800 ,1,0,593865 ,1,1,45 ,1,2,325430 ,2,822,112880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502790 ,2,827,63545 ,2,828,435445 ,1,0,156520 ,2,821,568645 ,2,822,26025 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,156955 ,2,821,568740 ,2,822,26065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,157475 ,2,821,568850 ,2,822,26085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,157780 ,2,821,568945 ,1,0,554845 ,1,1,45 ,1,2,5900 ,2,822,113090 ,2,823,540955 ,2,824,418315 ,2,825,352390 ,2,826,502795 ,2,827,75 ,2,828,435450 ,1,0,158115 ,2,821,572760 ,1,0,45 ,1,1,5900 ,2,822,113100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502800 ,2,827,30175 ,2,828,435455 ,1,0,158520 ,2,821,574640 ,2,822,113110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502805 ,2,827,30175 ,2,828,435460 ,1,0,159035 ,2,821,575940 ,2,822,113120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502830 ,2,827,30175 ,2,828,435495 ,1,0,159480 ,2,821,576890 ,2,822,113150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,159900 ,2,821,579115 ,2,822,26095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,160320 ,2,821,579210 ,1,0,163090 ,2,822,113200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502835 ,2,827,75 ,2,828,435500 ,1,0,161205 ,2,821,581470 ,2,822,26115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,161845 ,2,821,581580 ,2,822,26155 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,162195 ,2,821,581670 ,2,822,26165 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,162730 ,2,821,581765 ,2,822,26185 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,163165 ,2,821,581870 ,2,822,113320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502840 ,2,827,75 ,2,828,435505 ,1,0,163495 ,2,821,583505 ,2,822,113340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,435525 ,1,0,163705 ,2,821,584560 ,2,822,113410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502855 ,2,827,34110 ,2,828,435520 ,1,0,164225 ,2,821,587350 ,1,0,323680 ,1,1,162910 ,2,822,113380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502850 ,2,827,75 ,2,828,435515 ,1,0,164570 ,2,821,588190 ,1,0,223505 ,2,822,113350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502845 ,2,827,75 ,2,828,435510 ,1,0,164880 ,2,821,591905 ,1,0,45 ,1,1,330070 ,2,822,113370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,435565 ,1,0,165415 ,2,821,593530 ,1,0,216330 ,2,822,113430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502860 ,2,827,75 ,2,828,435530 ,1,0,165845 ,2,821,594460 ,1,0,370015 ,1,1,323670 ,1,2,258420 ,1,3,323660 ,1,4,198975 ,1,5,162900 ,1,6,198755 ,1,7,370090 ,1,8,113340 ,2,822,113440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502865 ,2,827,64075 ,2,828,435570 ,1,0,166155 ,2,821,603550 ,2,822,26195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,166570 ,2,821,603650 ,2,822,113535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502910 ,2,827,55375 ,2,828,435575 ,1,0,166810 ,2,821,605140 ,2,822,113545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,435580 ,1,0,167240 ,2,821,605485 ,1,0,327530 ,2,822,113555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502915 ,2,827,75 ,2,828,435595 ,1,0,167680 ,2,821,605890 ,2,822,113570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502720 ,2,827,75 ,2,828,435600 ,1,0,167910 ,2,821,607735 ,2,822,113600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,435605 ,1,0,168350 ,2,821,608070 ,1,0,555810 ,1,1,555800 ,1,2,555795 ,2,822,113650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507650 ,2,827,85565 ,2,828,442415 ,1,0,168810 ,2,821,611015 ,1,0,223775 ,1,1,223765 ,1,2,555780 ,2,822,113660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502920 ,2,827,55375 ,2,828,435610 ,1,0,169265 ,2,821,614715 ,1,0,316725 ,2,822,113715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502925 ,2,827,24545 ,2,828,435625 ,1,0,169720 ,2,821,617850 ,2,822,113760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507585 ,2,827,75 ,2,828,442335 ,1,0,170255 ,2,821,621180 ,1,0,226485 ,1,1,180865 ,2,822,141225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507575 ,2,827,85365 ,2,828,442320 ,1,0,170565 ,2,821,624930 ,1,0,226600 ,1,1,356305 ,2,822,141195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507530 ,2,827,75 ,2,828,442285 ,1,0,170925 ,2,821,626395 ,2,822,141120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498210 ,2,827,75 ,2,828,442265 ,1,0,171370 ,2,821,627330 ,2,822,141110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507505 ,2,827,85245 ,2,828,442260 ,1,0,171680 ,2,821,630895 ,2,822,113770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502940 ,2,827,75 ,2,828,435630 ,1,0,172025 ,2,821,631715 ,2,822,26335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,172545 ,2,821,631820 ,1,0,542570 ,1,1,609590 ,1,2,542570 ,2,822,113800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502945 ,2,827,75 ,2,828,435635 ,1,0,173125 ,2,821,634680 ,1,0,45 ,1,1,343730 ,2,822,113830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,435645 ,1,0,173560 ,2,821,636240 ,1,0,45 ,1,1,5900 ,1,2,542575 ,1,3,593925 ,1,4,542575 ,2,822,113890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502950 ,2,827,64440 ,2,828,435640 ,1,0,174240 ,2,821,638705 ,2,822,26385 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,174700 ,2,821,638805 ,1,0,45 ,1,1,343730 ,2,822,113935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,435655 ,1,0,175005 ,2,821,640450 ,2,822,113955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502955 ,2,827,75 ,2,828,435650 ,1,0,175470 ,2,821,642875 ,1,0,324345 ,1,1,324335 ,1,2,324325 ,2,822,113945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502970 ,2,827,64500 ,2,828,435660 ,1,0,175855 ,2,821,646920 ,2,822,113990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502975 ,2,827,24545 ,2,828,435685 ,1,0,176420 ,2,821,649190 ,2,822,114000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502980 ,2,827,75 ,2,828,435690 ,1,0,176760 ,2,821,649690 ,1,0,570385 ,1,1,45 ,1,2,323485 ,2,822,114010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502985 ,2,827,75 ,2,828,435695 ,1,0,177175 ,2,821,651145 ,2,822,26435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,177730 ,2,821,651245 ,2,822,26445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,178220 ,2,821,651365 ,2,822,26495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,178655 ,2,821,651450 ,2,822,26505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,178975 ,2,821,651570 ,2,822,26515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,179390 ,2,821,651675 ,2,822,26525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,179830 ,2,821,651785 ,1,0,570490 ,1,1,45 ,1,2,9435 ,2,822,114135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,435700 ,1,0,180255 ,2,821,652745 ,1,0,45 ,1,1,9435 ,2,822,114160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,435710 ,1,0,180675 ,2,821,653655 ,2,822,26545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,181120 ,2,821,653745 ,2,822,114180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503055 ,2,827,65110 ,2,828,435780 ,1,0,181430 ,2,821,9305 ,2,822,26635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,181760 ,2,821,9465 ,2,822,114355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503050 ,2,827,65100 ,2,828,435760 ,1,0,182195 ,2,821,91915 ,2,822,114220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502995 ,2,827,75 ,2,828,435715 ,1,0,182545 ,2,821,93925 ,1,0,45 ,1,1,8740 ,2,822,114230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503000 ,2,827,64950 ,2,828,435720 ,1,0,182950 ,2,821,97845 ,2,822,114285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503005 ,2,827,75 ,2,828,435725 ,1,0,183280 ,2,821,99505 ,2,822,26605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,183715 ,2,821,99680 ,2,822,114250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503010 ,2,827,75 ,2,828,435745 ,1,0,184140 ,2,821,101390 ,2,822,114325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503040 ,2,827,75 ,2,828,435750 ,1,0,184685 ,2,821,102690 ,2,822,114335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503045 ,2,827,75 ,2,828,435755 ,1,0,185165 ,2,821,105125 ,2,822,26555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,185575 ,2,821,105320 ,2,822,26625 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,186045 ,2,821,105480 ,2,822,26615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,186495 ,2,821,105645 ,2,822,114375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503065 ,2,827,75 ,2,828,435785 ,1,0,186810 ,2,821,109905 ,2,822,26650 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,187280 ,2,821,110095 ,2,822,114510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503070 ,2,827,75 ,2,828,435790 ,1,0,187685 ,2,821,116140 ,2,822,26660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,188105 ,2,821,116340 ,2,822,26670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,188420 ,2,821,116495 ,2,822,26680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,188750 ,2,821,116680 ,2,822,114670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,65300 ,2,828,435795 ,1,0,189090 ,2,821,117290 ,2,822,26705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,189615 ,2,821,117440 ,2,822,26715 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,190175 ,2,821,117605 ,1,0,226050 ,1,1,162660 ,1,2,45 ,1,3,11510 ,1,4,213920 ,2,822,114680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503330 ,2,827,66320 ,2,828,436225 ,1,0,190690 ,2,821,130805 ,1,0,224655 ,1,1,224665 ,1,2,548510 ,1,3,219700 ,1,4,219690 ,1,5,164760 ,1,6,556115 ,2,822,114700 ,2,823,540960 ,2,824,418320 ,2,825,352400 ,2,826,503080 ,2,827,65360 ,2,828,435840 ,1,0,191045 ,2,821,148540 ,2,822,114690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503075 ,2,827,30445 ,2,828,435835 ,1,0,191580 ,2,821,152410 ,1,0,226030 ,1,1,354285 ,1,2,225650 ,2,822,116635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503320 ,2,827,75 ,2,828,436195 ,1,0,192020 ,2,821,168880 ,1,0,45 ,1,1,5900 ,2,822,114710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503120 ,2,827,75 ,2,828,435845 ,1,0,192550 ,2,821,172115 ,1,0,356295 ,1,1,356315 ,2,822,114730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,192880 ,2,821,174430 ,2,822,114740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,193305 ,2,821,177130 ,2,822,26805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,193720 ,2,821,177285 ,2,822,26815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,194135 ,2,821,177475 ,1,0,224835 ,1,1,224845 ,1,2,224855 ,2,822,114780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503125 ,2,827,75 ,2,828,435850 ,1,0,194570 ,2,821,194850 ,2,822,26825 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,195015 ,2,821,194995 ,2,822,26845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,195660 ,2,821,195180 ,2,822,26875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,196220 ,2,821,195355 ,2,822,26910 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,196650 ,2,821,195520 ,2,822,26920 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,197100 ,2,821,195650 ,1,0,224990 ,1,1,225025 ,2,822,115045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503130 ,2,827,75 ,2,828,435855 ,1,0,197640 ,2,821,202530 ,2,822,115065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,198075 ,2,821,204120 ,1,0,45 ,1,1,276975 ,1,2,591570 ,1,3,45 ,1,4,190350 ,2,822,115130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503135 ,2,827,65885 ,2,828,435860 ,1,0,198635 ,2,821,207095 ,1,0,570900 ,1,1,45 ,1,2,208615 ,1,3,45 ,1,4,224825 ,1,5,45 ,1,6,224780 ,2,822,115150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503150 ,2,827,75 ,2,828,435865 ,1,0,199370 ,2,821,214005 ,2,822,115225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503155 ,2,827,75 ,2,828,435870 ,1,0,199675 ,2,821,224150 ,1,0,225310 ,1,1,317490 ,2,822,115235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503160 ,2,827,75 ,2,828,435925 ,1,0,200240 ,2,821,234150 ,2,822,115295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,200645 ,2,821,234885 ,2,822,570750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,201090 ,2,821,235615 ,2,822,115370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,435930 ,1,0,201540 ,2,821,237065 ,2,822,115380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,435935 ,1,0,201975 ,2,821,238495 ,1,0,225460 ,1,1,15840 ,2,822,115390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503165 ,2,827,65980 ,2,828,435940 ,1,0,202405 ,2,821,244940 ,1,0,45 ,1,1,184220 ,2,822,115425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,435955 ,1,0,202970 ,2,821,246810 ,1,0,317595 ,2,822,115465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503200 ,2,827,75 ,2,828,435960 ,1,0,203540 ,2,821,255225 ,1,0,45 ,1,1,184220 ,2,822,115485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,435965 ,1,0,203950 ,2,821,257055 ,2,822,115540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,435970 ,1,0,204370 ,2,821,258490 ,1,0,45 ,1,1,210915 ,1,2,45 ,1,3,183245 ,1,4,45 ,1,5,210905 ,1,6,45 ,1,7,198280 ,2,822,115570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500485 ,2,827,75 ,2,828,436005 ,1,0,204710 ,2,821,268390 ,1,0,162560 ,1,1,45 ,1,2,5900 ,2,822,115600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503210 ,2,827,75 ,2,828,436015 ,1,0,205165 ,2,821,279730 ,2,822,115610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503205 ,2,827,75 ,2,828,436010 ,1,0,205600 ,2,821,284665 ,2,822,115645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,205940 ,2,821,286195 ,1,0,213500 ,1,1,548545 ,1,2,213490 ,1,3,570795 ,1,4,45 ,1,5,5900 ,1,6,317615 ,1,7,45 ,1,8,5900 ,1,9,317605 ,2,822,115655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503215 ,2,827,66010 ,2,828,436020 ,1,0,206250 ,2,821,301730 ,2,822,26955 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,206670 ,2,821,301890 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,115765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,436035 ,1,0,207120 ,2,821,305590 ,1,0,102930 ,2,822,115775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503220 ,2,827,66040 ,2,828,436040 ,1,0,207550 ,2,821,310250 ,1,0,45 ,1,1,182815 ,2,822,115860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,436045 ,1,0,207845 ,2,821,312190 ,1,0,45 ,1,1,182815 ,2,822,115890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,436050 ,1,0,208280 ,2,821,314055 ,1,0,225660 ,1,1,225055 ,1,2,224980 ,1,3,225160 ,1,4,225680 ,1,5,225670 ,1,6,225120 ,1,7,225065 ,1,8,225095 ,1,9,225140 ,1,10,317660 ,1,11,317650 ,2,822,115900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503225 ,2,827,34035 ,2,828,436080 ,1,0,208495 ,2,821,365060 ,2,822,115960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503230 ,2,827,75 ,2,828,436085 ,1,0,208695 ,2,821,366970 ,2,822,26965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,209030 ,2,821,367145 ,2,822,570965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,209335 ,2,821,367795 ,2,822,116070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503270 ,2,827,66125 ,2,828,436090 ,1,0,209965 ,2,821,378935 ,2,822,116090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,436110 ,1,0,210405 ,2,821,379985 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,5900 ,2,822,116100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503235 ,2,827,75 ,2,828,436095 ,1,0,210950 ,2,821,381645 ,2,822,26975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,211365 ,2,821,381750 ,2,822,570985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,211795 ,2,821,382155 ,1,0,356335 ,1,1,116230 ,1,2,356435 ,1,3,162595 ,1,4,116090 ,1,5,356425 ,2,822,116195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503275 ,2,827,66175 ,2,828,436125 ,1,0,212145 ,2,821,405135 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,5900 ,2,822,116220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503235 ,2,827,75 ,2,828,436115 ,1,0,212675 ,2,821,406835 ,2,822,116230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,436120 ,1,0,213130 ,2,821,407880 ,1,0,163015 ,2,822,116250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503280 ,2,827,75 ,2,828,436155 ,1,0,213570 ,2,821,410665 ,2,822,116300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,436160 ,1,0,214015 ,2,821,411385 ,2,822,116310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503285 ,2,827,75 ,2,828,436165 ,1,0,214470 ,2,821,412495 ,2,822,116435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,433750 ,1,0,214670 ,2,821,413565 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,2,822,116445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503290 ,2,827,75 ,2,828,436170 ,1,0,215225 ,2,821,423145 ,1,0,45 ,1,1,5900 ,2,822,116475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503295 ,2,827,75 ,2,828,436180 ,1,0,216050 ,2,821,425230 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,116555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503300 ,2,827,75 ,2,828,436185 ,1,0,216485 ,2,821,432395 ,1,0,45 ,1,1,5900 ,2,822,116570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503305 ,2,827,75 ,2,828,436190 ,1,0,216925 ,2,821,434400 ,2,822,27035 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,217375 ,2,821,434470 ,2,822,139700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503325 ,2,827,75 ,2,828,436220 ,1,0,217785 ,2,821,435315 ,1,0,215845 ,1,1,555870 ,1,2,45 ,1,3,5900 ,1,4,568590 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,568810 ,1,12,45 ,1,13,5900 ,1,14,594735 ,1,15,45 ,1,16,5900 ,1,17,226555 ,2,822,116645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507300 ,2,827,59730 ,2,828,441875 ,1,0,218210 ,2,821,439725 ,1,0,224525 ,2,822,139690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507285 ,2,827,69645 ,2,828,437375 ,1,0,218650 ,2,821,442875 ,1,0,329480 ,2,822,116655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503335 ,2,827,52955 ,2,828,436230 ,1,0,219080 ,2,821,445395 ,2,822,27065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,219530 ,2,821,445495 ,2,822,27075 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,219940 ,2,821,445605 ,2,822,27085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,220355 ,2,821,445715 ,2,822,27095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,220795 ,2,821,445800 ,2,822,116880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503355 ,2,827,52955 ,2,828,436235 ,1,0,221120 ,2,821,448035 ,2,822,27105 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,221540 ,2,821,448115 ,2,822,116910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,436255 ,1,0,221940 ,2,821,448935 ,1,0,258650 ,2,822,116960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503360 ,2,827,66690 ,2,828,436260 ,1,0,222375 ,2,821,450050 ,2,822,117000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503365 ,2,827,75 ,2,828,436265 ,1,0,222815 ,2,821,451570 ,2,822,117020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497400 ,2,827,75 ,2,828,436270 ,1,0,223235 ,2,821,452480 ,2,822,117075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503370 ,2,827,75 ,2,828,436305 ,1,0,223595 ,2,821,453960 ,1,0,226570 ,2,822,117115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,436310 ,1,0,224060 ,2,821,454285 ,2,822,117150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498075 ,2,827,66710 ,2,828,436315 ,1,0,224365 ,2,821,454660 ,2,822,27130 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,224795 ,2,821,454765 ,2,822,27175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,225415 ,2,821,454870 ,2,822,27195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,225740 ,2,821,454945 ,2,822,117215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,436370 ,1,0,226180 ,2,821,456005 ,2,822,120870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503430 ,2,827,75 ,2,828,436365 ,1,0,226605 ,2,821,456560 ,1,0,226085 ,2,822,117245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503425 ,2,827,75 ,2,828,436360 ,1,0,227130 ,2,821,458175 ,2,822,117225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503400 ,2,827,75 ,2,828,436320 ,1,0,227475 ,2,821,458720 ,1,0,117265 ,1,1,117215 ,2,822,120955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503420 ,2,827,66860 ,2,828,436340 ,1,0,228015 ,2,821,461145 ,2,822,165740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503405 ,2,827,75 ,2,828,436325 ,1,0,228425 ,2,821,461840 ,2,822,165670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503415 ,2,827,75 ,2,828,436335 ,1,0,229140 ,2,821,466285 ,1,0,370290 ,2,822,165590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503410 ,2,827,75 ,2,828,436330 ,1,0,229660 ,2,821,470220 ,2,822,117265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,437185 ,1,0,230100 ,2,821,471210 ,1,0,226690 ,2,822,120890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503965 ,2,827,75 ,2,828,437180 ,1,0,230530 ,2,821,472090 ,1,0,230365 ,2,822,120880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503950 ,2,827,75 ,2,828,437170 ,1,0,230970 ,2,821,472860 ,2,822,120755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,437165 ,1,0,231430 ,2,821,473220 ,2,822,120745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503945 ,2,827,75 ,2,828,437160 ,1,0,231695 ,2,821,477300 ,1,0,230410 ,2,822,117275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503435 ,2,827,85245 ,2,828,436375 ,1,0,232040 ,2,821,480600 ,1,0,230515 ,2,822,117295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503475 ,2,827,85245 ,2,828,436380 ,1,0,232475 ,2,821,483870 ,2,822,120730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503940 ,2,827,75 ,2,828,437155 ,1,0,232780 ,2,821,484375 ,1,0,357940 ,1,1,371755 ,1,2,371685 ,1,3,357930 ,1,4,371865 ,1,5,371695 ,1,6,357920 ,1,7,357890 ,1,8,555315 ,2,822,120720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503935 ,2,827,69325 ,2,828,437125 ,1,0,233115 ,2,821,489280 ,1,0,230315 ,2,822,120710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503905 ,2,827,75 ,2,828,437120 ,1,0,233455 ,2,821,490360 ,1,0,327585 ,1,1,571800 ,1,2,45 ,1,3,5900 ,1,4,226965 ,2,822,117575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503500 ,2,827,75 ,2,828,436510 ,1,0,233855 ,2,821,492050 ,2,822,117305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503285 ,2,827,75 ,2,828,436385 ,1,0,234280 ,2,821,493095 ,2,822,27225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,234790 ,2,821,493205 ,2,822,117355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,436395 ,1,0,235210 ,2,821,494275 ,2,822,117365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503480 ,2,827,75 ,2,828,436390 ,1,0,235790 ,2,821,497210 ,2,822,117375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503485 ,2,827,75 ,2,828,436430 ,1,0,236400 ,2,821,499030 ,2,822,117385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503490 ,2,827,75 ,2,828,436435 ,1,0,236945 ,2,821,500790 ,2,822,117395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503485 ,2,827,75 ,2,828,436440 ,1,0,237490 ,2,821,502580 ,2,822,117405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503495 ,2,827,75 ,2,828,436445 ,1,0,238105 ,2,821,505655 ,2,822,117415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,436450 ,1,0,238755 ,2,821,506665 ,2,822,117470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,436460 ,1,0,238995 ,2,821,507695 ,2,822,117515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503480 ,2,827,75 ,2,828,436455 ,1,0,239720 ,2,821,510565 ,2,822,117480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,75 ,2,828,436465 ,1,0,241380 ,2,821,511330 ,2,822,117535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,436500 ,1,0,241805 ,2,821,512350 ,2,822,117545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503495 ,2,827,75 ,2,828,436495 ,1,0,242110 ,2,821,515335 ,2,822,117565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503485 ,2,827,75 ,2,828,436505 ,1,0,242550 ,2,821,517095 ,2,822,27235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,242845 ,2,821,517210 ,2,822,27245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,243270 ,2,821,517295 ,2,822,571170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,243725 ,2,821,517640 ,2,822,27280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,244050 ,2,821,517735 ,2,822,27360 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,244550 ,2,821,517835 ,2,822,27390 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,245120 ,2,821,517940 ,1,0,45 ,1,1,309980 ,2,822,117665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503510 ,2,827,67155 ,2,828,436515 ,1,0,245665 ,2,821,520485 ,1,0,45 ,1,1,309980 ,2,822,117685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503505 ,2,827,67155 ,2,828,436520 ,1,0,246300 ,2,821,523960 ,2,822,27400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,246965 ,2,821,524075 ,1,0,45 ,1,1,309980 ,2,822,117730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503550 ,2,827,75 ,2,828,436525 ,1,0,247390 ,2,821,525120 ,1,0,571305 ,1,1,45 ,1,2,309980 ,2,822,117780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503555 ,2,827,75 ,2,828,436530 ,1,0,247925 ,2,821,526880 ,2,822,571330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,248680 ,2,821,527290 ,1,0,2210 ,1,1,542350 ,2,822,117800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503560 ,2,827,40735 ,2,828,436555 ,1,0,249315 ,2,821,532225 ,2,822,117810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503565 ,2,827,75 ,2,828,436560 ,1,0,249965 ,2,821,533635 ,1,0,221360 ,2,822,117820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503585 ,2,827,75 ,2,828,436565 ,1,0,250585 ,2,821,535600 ,1,0,359350 ,2,822,117830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503590 ,2,827,30175 ,2,828,436570 ,1,0,251265 ,2,821,538320 ,2,822,117840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503600 ,2,827,30175 ,2,828,436580 ,1,0,251690 ,2,821,539545 ,1,0,227505 ,1,1,227495 ,2,822,117875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503595 ,2,827,30175 ,2,828,436575 ,1,0,252465 ,2,821,544040 ,2,822,117850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496020 ,2,827,30175 ,2,828,436585 ,1,0,252985 ,2,821,544920 ,2,822,571305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,253725 ,2,821,545340 ,1,0,45 ,1,1,276975 ,2,822,117985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,436590 ,1,0,254155 ,2,821,546960 ,1,0,327390 ,2,822,117995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503610 ,2,827,75 ,2,828,436630 ,1,0,254595 ,2,821,547695 ,2,822,118005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,436635 ,1,0,255130 ,2,821,548275 ,1,0,2210 ,1,1,542350 ,2,822,118055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503620 ,2,827,75 ,2,828,436640 ,1,0,255530 ,2,821,549450 ,2,822,118100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503715 ,2,827,68480 ,2,828,436845 ,1,0,255985 ,2,821,550705 ,1,0,216255 ,2,822,118245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503645 ,2,827,75 ,2,828,436665 ,1,0,256380 ,2,821,552745 ,1,0,227515 ,1,1,327325 ,1,2,327315 ,2,822,118110 ,2,823,540965 ,2,824,418325 ,2,825,352410 ,2,826,503625 ,2,827,44250 ,2,828,436645 ,1,0,256880 ,2,821,555285 ,2,822,27480 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,257320 ,2,821,555405 ,2,822,27505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,257835 ,2,821,555485 ,2,822,27515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,258165 ,2,821,555605 ,2,822,118140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,258605 ,2,821,556045 ,1,0,216900 ,2,822,118150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503635 ,2,827,75 ,2,828,436655 ,1,0,259015 ,2,821,558255 ,2,822,27525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,259545 ,2,821,558365 ,1,0,216910 ,2,822,118160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503640 ,2,827,75 ,2,828,436660 ,1,0,260255 ,2,821,561125 ,1,0,163645 ,2,822,118255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503650 ,2,827,75 ,2,828,436670 ,1,0,260770 ,2,821,562320 ,2,822,27575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,261395 ,2,821,562420 ,2,822,27585 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,261605 ,2,821,562520 ,2,822,27595 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,262120 ,2,821,562625 ,2,822,118350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,262635 ,2,821,563090 ,1,0,163665 ,2,822,118360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498210 ,2,827,75 ,2,828,436705 ,1,0,263045 ,2,821,563965 ,1,0,163655 ,2,822,118370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503710 ,2,827,67845 ,2,828,436710 ,1,0,263460 ,2,821,565625 ,2,822,27615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,263765 ,2,821,565740 ,2,822,27635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,264105 ,2,821,565835 ,2,822,27645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,264505 ,2,821,565955 ,2,822,27675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,264935 ,2,821,566035 ,2,822,27685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,265490 ,2,821,566115 ,2,822,27695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,265970 ,2,821,566230 ,2,822,27725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,266415 ,2,821,566345 ,2,822,27735 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,266750 ,2,821,566410 ,1,0,45 ,1,1,184220 ,2,822,118535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436720 ,1,0,267260 ,2,821,567955 ,2,822,118695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,436715 ,1,0,267655 ,2,821,568570 ,1,0,45 ,1,1,184220 ,2,822,118565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436730 ,1,0,268045 ,2,821,570220 ,2,822,118735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,436725 ,1,0,268435 ,2,821,570830 ,1,0,45 ,1,1,182815 ,2,822,118585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436740 ,1,0,268850 ,2,821,572385 ,2,822,118745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,436735 ,1,0,269260 ,2,821,573050 ,1,0,45 ,1,1,182815 ,2,822,118625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436765 ,1,0,269670 ,2,821,574610 ,2,822,118755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,436760 ,1,0,270090 ,2,821,575230 ,2,822,118635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503685 ,2,827,75 ,2,828,436770 ,1,0,270410 ,2,821,575935 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,118645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,436775 ,1,0,270720 ,2,821,578135 ,2,822,118800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,436790 ,1,0,271120 ,2,821,579205 ,1,0,2210 ,1,1,542350 ,2,822,118850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503690 ,2,827,75 ,2,828,436785 ,1,0,271530 ,2,821,583700 ,2,822,118880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,436795 ,1,0,271855 ,2,821,584365 ,1,0,118800 ,2,822,118890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503695 ,2,827,68165 ,2,828,436800 ,1,0,272260 ,2,821,587555 ,2,822,118930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503700 ,2,827,68195 ,2,828,436830 ,1,0,272690 ,2,821,589595 ,2,822,27820 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,273075 ,2,821,589725 ,2,822,27830 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,273515 ,2,821,589825 ,2,822,27840 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,273815 ,2,821,589930 ,2,822,27850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,274125 ,2,821,590030 ,2,822,119110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503705 ,2,827,75 ,2,828,436840 ,1,0,274545 ,2,821,591055 ,1,0,217160 ,2,822,119130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,436835 ,1,0,274950 ,2,821,591580 ,2,822,27885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,275450 ,2,821,591685 ,2,822,571715 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,275780 ,2,821,592465 ,2,822,27895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,276100 ,2,821,592560 ,2,822,571560 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,276485 ,2,821,592970 ,2,822,571730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,276980 ,2,821,593720 ,1,0,227630 ,1,1,15355 ,1,2,228700 ,1,3,359145 ,2,822,119495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503730 ,2,827,75 ,2,828,436855 ,1,0,277370 ,2,821,597175 ,1,0,555925 ,1,1,555920 ,2,822,119520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503720 ,2,827,68490 ,2,828,436850 ,1,0,277770 ,2,821,599655 ,2,822,27905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,278285 ,2,821,599765 ,1,0,45 ,1,1,9435 ,2,822,119530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,436860 ,1,0,278660 ,2,821,600655 ,1,0,571765 ,1,1,45 ,1,2,9435 ,2,822,119570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,436865 ,1,0,279070 ,2,821,601545 ,2,822,119600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503735 ,2,827,75 ,2,828,436875 ,1,0,279585 ,2,821,602155 ,2,822,119610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,436885 ,1,0,279895 ,2,821,602960 ,2,822,119620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503740 ,2,827,75 ,2,828,436880 ,1,0,280195 ,2,821,605550 ,2,822,119640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503745 ,2,827,75 ,2,828,436890 ,1,0,280835 ,2,821,606215 ,2,822,119690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503760 ,2,827,30175 ,2,828,436895 ,1,0,281220 ,2,821,607410 ,2,822,119730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496020 ,2,827,30175 ,2,828,436900 ,1,0,281540 ,2,821,608135 ,2,822,571775 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,281910 ,2,821,608565 ,2,822,119790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503765 ,2,827,75 ,2,828,436905 ,1,0,282150 ,2,821,610380 ,2,822,571235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,282685 ,2,821,610825 ,2,822,27940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,283115 ,2,821,610940 ,2,822,27950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,283525 ,2,821,611050 ,1,0,226975 ,1,1,228960 ,1,2,228970 ,1,3,229325 ,1,4,229080 ,1,5,229105 ,1,6,229115 ,1,7,229090 ,1,8,229125 ,1,9,229170 ,1,10,229135 ,1,11,229160 ,1,12,226780 ,1,13,226790 ,1,14,229280 ,1,15,229305 ,1,16,229315 ,1,17,229295 ,1,18,229015 ,1,19,229070 ,1,20,229025 ,1,21,229060 ,1,22,229035 ,1,23,228980 ,1,24,229005 ,1,25,228990 ,1,26,229270 ,1,27,229225 ,1,28,229250 ,1,29,229260 ,1,30,229235 ,1,31,229385 ,1,32,229355 ,1,33,229375 ,1,34,229365 ,1,35,226800 ,1,36,229400 ,1,37,227845 ,1,38,229410 ,1,39,229180 ,1,40,229215 ,1,41,229190 ,1,42,229205 ,1,43,226770 ,2,822,119855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,283960 ,2,821,636985 ,2,822,27960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,284465 ,2,821,637065 ,2,822,28030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,284775 ,2,821,637145 ,1,0,45 ,1,1,276975 ,2,822,119930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,436910 ,1,0,285095 ,2,821,638700 ,2,822,119940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503770 ,2,827,75 ,2,828,436955 ,1,0,285510 ,2,821,640575 ,1,0,45 ,1,1,180550 ,1,2,45 ,1,3,180560 ,1,4,45 ,1,5,9500 ,2,822,119950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503775 ,2,827,75 ,2,828,436960 ,1,0,285835 ,2,821,643480 ,1,0,229580 ,1,1,612685 ,1,2,229590 ,1,3,229600 ,1,4,359300 ,2,822,120040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503805 ,2,827,75 ,2,828,436965 ,1,0,286240 ,2,821,646570 ,2,822,28055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,286575 ,2,821,646665 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,216840 ,1,5,216790 ,1,6,216780 ,2,822,120110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503810 ,2,827,75 ,2,828,436970 ,1,0,287090 ,2,821,651140 ,2,822,28085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,287500 ,2,821,651250 ,2,822,28110 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,287810 ,2,821,651360 ,2,822,28120 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,288330 ,2,821,651455 ,1,0,216235 ,1,1,322980 ,2,822,120275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503815 ,2,827,75 ,2,828,436985 ,1,0,288525 ,2,821,652920 ,1,0,45 ,1,1,276975 ,2,822,120335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,436990 ,1,0,288935 ,2,821,654485 ,1,0,217645 ,1,1,327285 ,2,822,120370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503820 ,2,827,75 ,2,828,436995 ,1,0,290165 ,2,821,655885 ,1,0,359260 ,1,1,555935 ,2,822,120380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503825 ,2,827,75 ,2,828,437000 ,1,0,291390 ,2,821,658510 ,2,822,120390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503830 ,2,827,75 ,2,828,437030 ,1,0,291595 ,2,821,659175 ,1,0,229955 ,2,822,120425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503835 ,2,827,75 ,2,828,437035 ,1,0,291900 ,2,821,661660 ,1,0,230035 ,1,1,230015 ,1,2,208595 ,1,3,230025 ,1,4,230060 ,1,5,217655 ,1,6,327295 ,2,822,120475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503840 ,2,827,75 ,2,828,437040 ,1,0,292805 ,2,821,666255 ,1,0,224345 ,1,1,216980 ,1,2,359125 ,1,3,216970 ,1,4,216960 ,1,5,324810 ,1,6,163025 ,2,822,120485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503870 ,2,827,69240 ,2,828,437045 ,1,0,293955 ,2,821,674455 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,216770 ,1,5,216760 ,1,6,216745 ,2,822,120515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503875 ,2,827,75 ,2,828,437050 ,1,0,294240 ,2,821,6700 ,1,0,45 ,1,1,5900 ,1,2,216735 ,2,822,120525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503880 ,2,827,75 ,2,828,437055 ,1,0,294550 ,2,821,10095 ,1,0,45 ,1,1,5900 ,1,2,216725 ,2,822,120535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503885 ,2,827,75 ,2,828,437060 ,1,0,295385 ,2,821,13420 ,1,0,45 ,1,1,259605 ,2,822,120565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,437080 ,1,0,295800 ,2,821,16135 ,1,0,228045 ,2,822,120615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,437065 ,1,0,296225 ,2,821,17100 ,1,0,45 ,1,1,276975 ,2,822,120585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,437090 ,1,0,296740 ,2,821,19845 ,1,0,228880 ,2,822,120635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503890 ,2,827,69305 ,2,828,437085 ,1,0,297155 ,2,821,25615 ,1,0,356520 ,1,1,356510 ,2,822,120625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,437095 ,1,0,297670 ,2,821,26575 ,1,0,551470 ,1,1,227965 ,1,2,227955 ,2,822,120645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503895 ,2,827,75 ,2,828,437110 ,1,0,298065 ,2,821,39640 ,1,0,45 ,1,1,5900 ,2,822,120665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503900 ,2,827,75 ,2,828,437115 ,1,0,298470 ,2,821,42220 ,2,822,120975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,437195 ,1,0,298920 ,2,821,43955 ,2,822,121085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503970 ,2,827,75 ,2,828,437190 ,1,0,299250 ,2,821,45300 ,2,822,121000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,437245 ,1,0,299755 ,2,821,46990 ,2,822,121095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503975 ,2,827,75 ,2,828,437240 ,1,0,300270 ,2,821,49080 ,2,822,28165 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,300620 ,2,821,49215 ,2,822,28175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,301045 ,2,821,49360 ,2,822,28185 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,301455 ,2,821,49540 ,1,0,315175 ,2,822,121480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504010 ,2,827,75 ,2,828,437255 ,1,0,301895 ,2,821,55350 ,2,822,121540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503980 ,2,827,69520 ,2,828,437250 ,1,0,302215 ,2,821,57110 ,2,822,121510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504015 ,2,827,69530 ,2,828,437260 ,1,0,302540 ,2,821,74145 ,2,822,121520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504020 ,2,827,30980 ,2,828,437265 ,1,0,303120 ,2,821,76810 ,2,822,121585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504025 ,2,827,75 ,2,828,437270 ,1,0,303630 ,2,821,78800 ,2,822,121605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,437275 ,1,0,304160 ,2,821,80465 ,1,0,226210 ,1,1,315145 ,2,822,121615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504040 ,2,827,69560 ,2,828,437290 ,1,0,304485 ,2,821,85290 ,1,0,226235 ,2,822,121625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504045 ,2,827,75 ,2,828,437295 ,1,0,304790 ,2,821,89665 ,1,0,230940 ,2,822,121700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504100 ,2,827,75 ,2,828,437370 ,1,0,305125 ,2,821,95520 ,2,822,121710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,305435 ,2,821,96270 ,2,822,121865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504090 ,2,827,69610 ,2,828,437365 ,1,0,305850 ,2,821,101750 ,1,0,230550 ,2,822,121875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504085 ,2,827,75 ,2,828,437330 ,1,0,306170 ,2,821,106160 ,1,0,230430 ,2,822,121845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504080 ,2,827,75 ,2,828,437325 ,1,0,306480 ,2,821,111595 ,1,0,45 ,1,1,5900 ,2,822,121825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504075 ,2,827,65300 ,2,828,437320 ,1,0,306900 ,2,821,114965 ,2,822,121720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502380 ,2,827,75 ,2,828,437300 ,1,0,307195 ,2,821,116385 ,2,822,28245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,307525 ,2,821,116565 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,121745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,437305 ,1,0,307840 ,2,821,121655 ,2,822,121795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,308245 ,2,821,122405 ,2,822,121805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504055 ,2,827,75 ,2,828,437315 ,1,0,308675 ,2,821,124095 ,2,822,141235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499370 ,2,827,55375 ,2,828,437360 ,1,0,308990 ,2,821,126265 ,2,822,121955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,309320 ,2,821,127815 ,2,822,121975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504170 ,2,827,69930 ,2,828,437470 ,1,0,309750 ,2,821,129225 ,2,822,28340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,310055 ,2,821,129405 ,1,0,45 ,1,1,5900 ,2,822,122040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504150 ,2,827,69850 ,2,828,437455 ,1,0,310470 ,2,821,134635 ,1,0,45 ,1,1,5900 ,1,2,231180 ,2,822,122120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504115 ,2,827,69840 ,2,828,437400 ,1,0,310890 ,2,821,140885 ,2,822,122075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504110 ,2,827,75 ,2,828,437395 ,1,0,311335 ,2,821,142175 ,2,822,122050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504105 ,2,827,75 ,2,828,437390 ,1,0,312010 ,2,821,145460 ,2,822,122095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504145 ,2,827,75 ,2,828,437450 ,1,0,312355 ,2,821,148090 ,2,822,122085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504140 ,2,827,75 ,2,828,437405 ,1,0,312815 ,2,821,156100 ,1,0,162215 ,2,822,122105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504165 ,2,827,33420 ,2,828,437465 ,1,0,313240 ,2,821,160115 ,1,0,45 ,1,1,5900 ,1,2,231240 ,2,822,122130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504155 ,2,827,69870 ,2,828,437460 ,1,0,313545 ,2,821,161965 ,2,822,28350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,313850 ,2,821,162135 ,1,0,179485 ,2,822,122180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504225 ,2,827,75 ,2,828,437485 ,1,0,314370 ,2,821,167300 ,2,822,122190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504175 ,2,827,75 ,2,828,437475 ,1,0,314695 ,2,821,168925 ,2,822,122200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504180 ,2,827,75 ,2,828,437480 ,1,0,314995 ,2,821,171630 ,2,822,28360 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,315305 ,2,821,171780 ,2,822,572115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,315680 ,2,821,172495 ,1,0,248660 ,1,1,248670 ,1,2,230950 ,1,3,258915 ,2,822,122265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507260 ,2,827,84040 ,2,828,441835 ,1,0,316185 ,2,821,182260 ,2,822,28370 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,316735 ,2,821,182415 ,1,0,325710 ,2,822,122310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504230 ,2,827,70095 ,2,828,437500 ,1,0,317265 ,2,821,185795 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,326880 ,2,822,122355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504235 ,2,827,75 ,2,828,437505 ,1,0,317785 ,2,821,188740 ,2,822,28405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,318090 ,2,821,188915 ,2,822,122425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504240 ,2,827,30175 ,2,828,437510 ,1,0,318435 ,2,821,198120 ,1,0,231550 ,1,1,231540 ,1,2,554350 ,2,822,122435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504250 ,2,827,75 ,2,828,437515 ,1,0,318730 ,2,821,205110 ,2,822,28415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,319135 ,2,821,205275 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,317445 ,1,5,45 ,1,6,5900 ,2,822,122445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507000 ,2,827,70255 ,2,828,437530 ,1,0,319660 ,2,821,219355 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,122475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504255 ,2,827,70245 ,2,828,437520 ,1,0,320310 ,2,821,223470 ,2,822,138040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504260 ,2,827,75 ,2,828,437525 ,1,0,320805 ,2,821,226340 ,2,822,28480 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,321730 ,2,821,226500 ,2,822,28510 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,322275 ,2,821,226680 ,2,822,122515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504265 ,2,827,70330 ,2,828,437535 ,1,0,322820 ,2,821,234765 ,2,822,28520 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,323740 ,2,821,234950 ,2,822,122535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504275 ,2,827,70340 ,2,828,437565 ,1,0,324075 ,2,821,241330 ,2,822,122570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504280 ,2,827,75 ,2,828,437580 ,1,0,324495 ,2,821,245995 ,2,822,122590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,437575 ,1,0,324885 ,2,821,246605 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,122580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495065 ,2,827,75 ,2,828,437570 ,1,0,325600 ,2,821,248570 ,2,822,122615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504285 ,2,827,75 ,2,828,437585 ,1,0,325910 ,2,821,251855 ,2,822,28530 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,326735 ,2,821,252030 ,1,0,593680 ,1,1,45 ,1,2,325430 ,1,3,593675 ,1,4,45 ,1,5,325430 ,2,822,122645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506990 ,2,827,70470 ,2,828,437590 ,1,0,327555 ,2,821,255640 ,2,822,28620 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,328425 ,2,821,255810 ,2,822,572310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,328945 ,2,821,256475 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,11690 ,2,822,122705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506840 ,2,827,75 ,2,828,441315 ,1,0,329290 ,2,821,260000 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,1,8,2280 ,1,9,542095 ,1,10,15805 ,1,11,15795 ,1,12,162205 ,1,13,162175 ,1,14,15235 ,1,15,15785 ,1,16,162165 ,1,17,212960 ,1,18,2210 ,1,19,542350 ,1,20,2210 ,1,21,542350 ,2,822,137145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506835 ,2,827,82665 ,2,828,441310 ,1,0,329610 ,2,821,290470 ,2,822,28630 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,330025 ,2,821,290645 ,2,822,28640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,330560 ,2,821,290790 ,1,0,45 ,1,1,240265 ,2,822,122735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504290 ,2,827,75 ,2,828,437595 ,1,0,330770 ,2,821,292710 ,1,0,231955 ,1,1,231905 ,2,822,122770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504300 ,2,827,75 ,2,828,437600 ,1,0,331070 ,2,821,306760 ,1,0,548745 ,2,822,122780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504330 ,2,827,70730 ,2,828,437630 ,1,0,331405 ,2,821,312000 ,2,822,122800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,437635 ,1,0,331710 ,2,821,312865 ,2,822,572380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,332055 ,2,821,313540 ,1,0,45 ,1,1,9435 ,2,822,122825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,437640 ,1,0,332805 ,2,821,315085 ,1,0,572380 ,1,1,45 ,1,2,9435 ,2,822,122845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,437645 ,1,0,333260 ,2,821,316625 ,1,0,45 ,1,1,9435 ,2,822,122905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,437655 ,1,0,333720 ,2,821,318190 ,1,0,572425 ,1,1,45 ,1,2,9435 ,2,822,122925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,437660 ,1,0,334060 ,2,821,320860 ,1,0,45 ,1,1,9435 ,2,822,122935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,437665 ,1,0,334595 ,2,821,322445 ,1,0,45 ,1,1,9435 ,2,822,122955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,437670 ,1,0,335215 ,2,821,325090 ,2,822,123015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504305 ,2,827,70860 ,2,828,437685 ,1,0,336005 ,2,821,330385 ,2,822,28735 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,336535 ,2,821,330555 ,2,822,123120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504310 ,2,827,75 ,2,828,437690 ,1,0,336905 ,2,821,336780 ,2,822,123130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504315 ,2,827,75 ,2,828,437695 ,1,0,337255 ,2,821,338385 ,2,822,572450 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,337575 ,2,821,339060 ,2,822,28775 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,337780 ,2,821,339215 ,2,822,123200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493265 ,2,827,75 ,2,828,437700 ,1,0,338230 ,2,821,340540 ,2,822,123210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504335 ,2,827,75 ,2,828,437710 ,1,0,338660 ,2,821,341665 ,1,0,554410 ,2,822,123225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504340 ,2,827,24545 ,2,828,437715 ,1,0,338910 ,2,821,346745 ,2,822,28785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,339760 ,2,821,346920 ,2,822,572500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,340050 ,2,821,347620 ,1,0,216210 ,1,1,554405 ,2,822,123255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504345 ,2,827,75 ,2,828,437720 ,1,0,340380 ,2,821,348520 ,2,822,28805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,340825 ,2,821,348695 ,2,822,28835 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,341365 ,2,821,348835 ,2,822,572555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,341785 ,2,821,349530 ,2,822,28845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,342195 ,2,821,349675 ,2,822,28870 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,342510 ,2,821,349835 ,2,822,572620 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,342835 ,2,821,350405 ,1,0,217875 ,2,822,123445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504350 ,2,827,75 ,2,828,437725 ,1,0,343275 ,2,821,352210 ,2,822,123455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504355 ,2,827,75 ,2,828,437755 ,1,0,343655 ,2,821,354385 ,2,822,123490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504360 ,2,827,75 ,2,828,437760 ,1,0,344415 ,2,821,356345 ,2,822,123510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504365 ,2,827,75 ,2,828,437765 ,1,0,345180 ,2,821,358390 ,2,822,28900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,345535 ,2,821,358530 ,1,0,45 ,1,1,209400 ,1,2,45 ,1,3,212880 ,1,4,568845 ,1,5,45 ,1,6,182890 ,2,822,123615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504390 ,2,827,75 ,2,828,437770 ,1,0,345945 ,2,821,363700 ,1,0,232735 ,2,822,123645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505840 ,2,827,76230 ,2,828,439730 ,1,0,346390 ,2,821,379495 ,2,822,124375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504555 ,2,827,75 ,2,828,437935 ,1,0,346690 ,2,821,384125 ,1,0,183640 ,2,822,123735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504400 ,2,827,71475 ,2,828,437780 ,1,0,347140 ,2,821,404805 ,2,822,28940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,348210 ,2,821,404930 ,2,822,572705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,348945 ,2,821,405340 ,2,822,572710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,349775 ,2,821,405755 ,2,822,123705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504395 ,2,827,56720 ,2,828,437775 ,1,0,351075 ,2,821,412565 ,1,0,317375 ,1,1,317355 ,1,2,317345 ,1,3,317335 ,1,4,317325 ,1,5,317305 ,2,822,124365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504550 ,2,827,72000 ,2,828,437930 ,1,0,351840 ,2,821,421350 ,2,822,124355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504540 ,2,827,71485 ,2,828,437785 ,1,0,352595 ,2,821,422405 ,1,0,45 ,1,1,9435 ,2,822,123760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,437790 ,1,0,353020 ,2,821,423405 ,1,0,45 ,1,1,9435 ,1,2,45 ,1,3,232600 ,2,822,123780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504405 ,2,827,75 ,2,828,437810 ,1,0,353790 ,2,821,425440 ,1,0,232600 ,1,1,572770 ,1,2,45 ,1,3,9435 ,1,4,45 ,1,5,232600 ,2,822,123830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504420 ,2,827,75 ,2,828,437815 ,1,0,355040 ,2,821,427940 ,1,0,183710 ,2,822,123840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504425 ,2,827,71610 ,2,828,437820 ,1,0,355805 ,2,821,470465 ,2,822,29040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,356585 ,2,821,470550 ,2,822,123885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504430 ,2,827,56720 ,2,828,437825 ,1,0,357370 ,2,821,475550 ,2,822,123895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504435 ,2,827,75 ,2,828,437835 ,1,0,357795 ,2,821,477170 ,2,822,123925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504470 ,2,827,71685 ,2,828,437840 ,1,0,359285 ,2,821,490825 ,2,822,123945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504475 ,2,827,75 ,2,828,437845 ,1,0,360130 ,2,821,493405 ,2,822,123985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504480 ,2,827,75 ,2,828,437850 ,1,0,360965 ,2,821,495530 ,2,822,572770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,361365 ,2,821,495960 ,2,822,124020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504485 ,2,827,75 ,2,828,437875 ,1,0,362220 ,2,821,497055 ,1,0,183355 ,2,822,124030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504500 ,2,827,75 ,2,828,437880 ,1,0,363755 ,2,821,499215 ,1,0,183225 ,1,1,184005 ,2,822,124040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504505 ,2,827,71795 ,2,828,437885 ,1,0,364615 ,2,821,506135 ,2,822,29115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,365530 ,2,821,506240 ,1,0,45 ,1,1,9435 ,1,2,45 ,1,3,232600 ,2,822,124075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504510 ,2,827,75 ,2,828,437890 ,1,0,366355 ,2,821,508705 ,1,0,45 ,1,1,9435 ,1,2,45 ,1,3,232600 ,1,4,163100 ,2,822,124130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504515 ,2,827,75 ,2,828,437900 ,1,0,366785 ,2,821,511655 ,2,822,124275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504530 ,2,827,75 ,2,828,437905 ,1,0,368460 ,2,821,514890 ,2,822,124300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504535 ,2,827,75 ,2,828,437910 ,1,0,369425 ,2,821,517570 ,2,822,124195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504545 ,2,827,75 ,2,828,437915 ,1,0,370360 ,2,821,522185 ,2,822,29150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,370785 ,2,821,522315 ,2,822,124420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504590 ,2,827,75 ,2,828,437955 ,1,0,371725 ,2,821,523260 ,2,822,124475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504560 ,2,827,75 ,2,828,437940 ,1,0,373415 ,2,821,526705 ,2,822,124485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504565 ,2,827,75 ,2,828,437945 ,1,0,374340 ,2,821,528100 ,1,0,232560 ,1,1,2210 ,1,2,542350 ,2,822,124465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504595 ,2,827,72085 ,2,828,437960 ,1,0,375170 ,2,821,545715 ,1,0,45 ,1,1,209400 ,1,2,45 ,1,3,212880 ,1,4,45 ,1,5,182890 ,2,822,124505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504600 ,2,827,75 ,2,828,437965 ,1,0,375740 ,2,821,549425 ,2,822,124615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504605 ,2,827,38415 ,2,828,437970 ,1,0,376015 ,2,821,551675 ,2,822,124625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504610 ,2,827,72115 ,2,828,438000 ,1,0,377110 ,2,821,556120 ,2,822,130600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505835 ,2,827,75 ,2,828,439720 ,1,0,377715 ,2,821,557425 ,2,822,29160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,378370 ,2,821,557525 ,2,822,29170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,378590 ,2,821,557635 ,1,0,554425 ,1,1,212875 ,2,822,124635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504660 ,2,827,75 ,2,828,438085 ,1,0,379210 ,2,821,560405 ,2,822,29225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,380340 ,2,821,560490 ,1,0,542495 ,1,1,558485 ,1,2,542495 ,1,3,212845 ,2,822,124660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504615 ,2,827,72215 ,2,828,438005 ,1,0,380980 ,2,821,564955 ,2,822,29235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,381605 ,2,821,565060 ,2,822,124710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,438010 ,1,0,382235 ,2,821,566145 ,2,822,124730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504625 ,2,827,75 ,2,828,438020 ,1,0,382485 ,2,821,567105 ,1,0,45 ,1,1,11510 ,2,822,124795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504620 ,2,827,72325 ,2,828,438015 ,1,0,383850 ,2,821,568795 ,2,822,124765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504625 ,2,827,75 ,2,828,438030 ,1,0,384600 ,2,821,569815 ,1,0,45 ,1,1,11510 ,2,822,124815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504620 ,2,827,72335 ,2,828,438025 ,1,0,385335 ,2,821,571480 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,124775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504645 ,2,827,72380 ,2,828,438035 ,1,0,385585 ,2,821,577100 ,2,822,124785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504655 ,2,827,75 ,2,828,438065 ,1,0,386310 ,2,821,580210 ,1,0,609780 ,1,1,45 ,1,2,175900 ,1,3,609720 ,1,4,45 ,1,5,11510 ,1,6,609745 ,1,7,45 ,1,8,11510 ,1,9,45 ,1,10,11510 ,1,11,45 ,1,12,11510 ,1,13,45 ,1,14,11510 ,1,15,45 ,1,16,11510 ,2,822,124825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504650 ,2,827,72390 ,2,828,438060 ,1,0,387630 ,2,821,596370 ,2,822,124950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,438070 ,1,0,388380 ,2,821,597490 ,2,822,124995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499865 ,2,827,75 ,2,828,438075 ,1,0,389070 ,2,821,599370 ,2,822,29260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,389765 ,2,821,599455 ,1,0,212865 ,2,822,125105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504670 ,2,827,75 ,2,828,438090 ,1,0,390020 ,2,821,607660 ,1,0,369580 ,1,1,369570 ,2,822,125230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,438095 ,1,0,391625 ,2,821,608125 ,1,0,373665 ,2,822,125240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,438100 ,1,0,392460 ,2,821,608570 ,2,822,125250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,438140 ,1,0,393310 ,2,821,609020 ,2,822,29345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,393575 ,2,821,609115 ,1,0,238420 ,1,1,370025 ,1,2,212025 ,1,3,238390 ,2,822,125310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505730 ,2,827,75990 ,2,828,439530 ,1,0,394515 ,2,821,618070 ,2,822,130090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505705 ,2,827,75 ,2,828,439505 ,1,0,396100 ,2,821,620310 ,1,0,212000 ,1,1,237410 ,2,822,130080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505670 ,2,827,75 ,2,828,439465 ,1,0,396970 ,2,821,623105 ,1,0,330010 ,1,1,370340 ,1,2,330000 ,1,3,238375 ,1,4,164580 ,1,5,329990 ,2,822,130070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505665 ,2,827,75 ,2,828,439460 ,1,0,397860 ,2,821,626645 ,1,0,238365 ,2,822,130060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505660 ,2,827,75 ,2,828,439455 ,1,0,398750 ,2,821,628335 ,2,822,125320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504675 ,2,827,75 ,2,828,438145 ,1,0,399025 ,2,821,629265 ,2,822,29370 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,401095 ,2,821,629370 ,2,822,29380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,402255 ,2,821,629460 ,2,822,573250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,403470 ,2,821,629820 ,1,0,549080 ,1,1,219140 ,1,2,219130 ,1,3,216200 ,2,822,125340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504680 ,2,827,75 ,2,828,438150 ,1,0,403715 ,2,821,632100 ,2,822,573240 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,404880 ,2,821,632530 ,1,0,45 ,1,1,5900 ,1,2,210865 ,2,822,125365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504685 ,2,827,75 ,2,828,438155 ,1,0,407075 ,2,821,635115 ,2,822,29440 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,408230 ,2,821,635225 ,2,822,29470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,409405 ,2,821,635305 ,2,822,573315 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,410585 ,2,821,635720 ,1,0,45 ,1,1,329720 ,2,822,125410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438165 ,1,0,410875 ,2,821,637245 ,1,0,234665 ,2,822,125420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504725 ,2,827,75 ,2,828,438160 ,1,0,411170 ,2,821,637865 ,2,822,29490 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,411880 ,2,821,637970 ,1,0,573280 ,1,1,45 ,1,2,329720 ,2,822,125440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438175 ,1,0,412970 ,2,821,639525 ,1,0,329710 ,2,822,125465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504730 ,2,827,75 ,2,828,438170 ,1,0,413645 ,2,821,639820 ,2,822,29500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,414245 ,2,821,639910 ,2,822,29510 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,414895 ,2,821,640015 ,2,822,573335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,415235 ,2,821,640440 ,1,0,234095 ,1,1,556140 ,1,2,215140 ,1,3,354560 ,1,4,331555 ,1,5,354475 ,1,6,234025 ,1,7,354625 ,1,8,354490 ,1,9,354500 ,1,10,354610 ,1,11,164805 ,1,12,354600 ,1,13,235345 ,1,14,354510 ,1,15,259135 ,1,16,354465 ,1,17,354570 ,1,18,354520 ,1,19,354455 ,1,20,45 ,1,21,11510 ,1,22,45 ,1,23,11510 ,1,24,354590 ,1,25,220070 ,1,26,331545 ,1,27,235290 ,1,28,2210 ,1,29,542350 ,2,822,125485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504810 ,2,827,73000 ,2,828,438280 ,1,0,415555 ,2,821,29415 ,1,0,219995 ,2,822,125785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504735 ,2,827,75 ,2,828,438195 ,1,0,416165 ,2,821,30675 ,2,822,129315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504740 ,2,827,75 ,2,828,438200 ,1,0,417275 ,2,821,31330 ,2,822,125535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,417405 ,2,821,31650 ,1,0,331495 ,1,1,259090 ,1,2,235320 ,1,3,235185 ,2,822,126085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504755 ,2,827,72930 ,2,828,438210 ,1,0,418030 ,2,821,51025 ,2,822,125870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504750 ,2,827,75 ,2,828,438205 ,1,0,418650 ,2,821,57445 ,1,0,219975 ,2,822,125565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,438225 ,1,0,419025 ,2,821,57875 ,2,822,573370 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,419670 ,2,821,58580 ,1,0,233705 ,2,822,126115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504760 ,2,827,72980 ,2,828,438230 ,1,0,420900 ,2,821,67660 ,1,0,233905 ,1,1,233915 ,1,2,233895 ,1,3,233885 ,1,4,219965 ,1,5,199965 ,2,822,125590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504765 ,2,827,75 ,2,828,438235 ,1,0,421020 ,2,821,80765 ,2,822,30350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,421675 ,2,821,80930 ,2,822,30380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,422295 ,2,821,81095 ,2,822,129295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504805 ,2,827,75 ,2,828,438240 ,1,0,422725 ,2,821,85955 ,1,0,219905 ,2,822,125680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,438225 ,1,0,423225 ,2,821,86365 ,1,0,219895 ,2,822,125765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,438225 ,1,0,423450 ,2,821,86790 ,2,822,573385 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,423875 ,2,821,87395 ,1,0,554955 ,2,822,125800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504815 ,2,827,75 ,2,828,438285 ,1,0,424405 ,2,821,90245 ,1,0,234135 ,1,1,328260 ,1,2,573390 ,1,3,45 ,1,4,5900 ,1,5,328240 ,1,6,45 ,1,7,5900 ,2,822,125820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504820 ,2,827,75 ,2,828,438290 ,1,0,424960 ,2,821,98545 ,2,822,125830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,438305 ,1,0,425465 ,2,821,99195 ,1,0,331565 ,1,1,556180 ,1,2,220080 ,1,3,268770 ,2,822,126145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504825 ,2,827,75 ,2,828,438295 ,1,0,425685 ,2,821,104325 ,1,0,45 ,1,1,276975 ,2,822,125890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438315 ,1,0,426180 ,2,821,107090 ,2,822,126105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504830 ,2,827,75 ,2,828,438310 ,1,0,426700 ,2,821,108335 ,2,822,125900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504835 ,2,827,75 ,2,828,438320 ,1,0,427210 ,2,821,111105 ,2,822,125915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,427700 ,2,821,111510 ,1,0,45 ,1,1,276975 ,2,822,125935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438350 ,1,0,427895 ,2,821,114305 ,2,822,129325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495355 ,2,827,75 ,2,828,438345 ,1,0,428335 ,2,821,115365 ,2,822,125945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504840 ,2,827,75 ,2,828,438355 ,1,0,428930 ,2,821,117435 ,1,0,217990 ,2,822,125985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504865 ,2,827,75 ,2,828,438360 ,1,0,429565 ,2,821,124050 ,1,0,555070 ,1,1,555035 ,1,2,325755 ,2,822,125995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504870 ,2,827,73090 ,2,828,438370 ,1,0,430150 ,2,821,132860 ,1,0,549155 ,1,1,328165 ,2,822,126015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504885 ,2,827,24545 ,2,828,438415 ,1,0,430330 ,2,821,139405 ,1,0,259155 ,2,822,126075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,73100 ,2,828,438375 ,1,0,430785 ,2,821,142885 ,2,822,126035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496945 ,2,827,73120 ,2,828,438385 ,1,0,431365 ,2,821,143745 ,1,0,234335 ,1,1,549145 ,1,2,354645 ,2,822,126045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504875 ,2,827,47360 ,2,828,438380 ,1,0,431990 ,2,821,148155 ,2,822,30320 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,432605 ,2,821,148320 ,2,822,573440 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,432820 ,2,821,149025 ,2,822,30450 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,433255 ,2,821,149170 ,1,0,549170 ,2,822,126135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504890 ,2,827,75 ,2,828,438420 ,1,0,433850 ,2,821,154010 ,1,0,545700 ,1,1,556185 ,1,2,259145 ,1,3,164815 ,1,4,354580 ,1,5,549180 ,2,822,126175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504895 ,2,827,73140 ,2,828,438425 ,1,0,434475 ,2,821,164130 ,1,0,234655 ,2,822,126185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505590 ,2,827,75355 ,2,828,439320 ,1,0,435070 ,2,821,174165 ,1,0,354915 ,1,1,219235 ,1,2,45 ,1,3,11510 ,2,822,129245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505585 ,2,827,75345 ,2,828,439315 ,1,0,435665 ,2,821,190010 ,1,0,219225 ,1,1,370310 ,1,2,197930 ,2,822,128995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505505 ,2,827,75 ,2,828,439235 ,1,0,436350 ,2,821,193675 ,1,0,237270 ,2,822,128980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505480 ,2,827,75 ,2,828,439205 ,1,0,436550 ,2,821,196060 ,1,0,330060 ,2,822,128970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505475 ,2,827,75 ,2,828,439200 ,1,0,437210 ,2,821,198770 ,2,822,126195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504900 ,2,827,75 ,2,828,438430 ,1,0,437415 ,2,821,200940 ,1,0,316940 ,2,822,126215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504930 ,2,827,75 ,2,828,438445 ,1,0,437860 ,2,821,203260 ,2,822,573500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,438185 ,2,821,203940 ,1,0,370320 ,2,822,126295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504935 ,2,827,75 ,2,828,438450 ,1,0,438775 ,2,821,206665 ,2,822,29590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,439075 ,2,821,206850 ,2,822,29605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,439410 ,2,821,206980 ,2,822,573510 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,439605 ,2,821,208255 ,1,0,216890 ,2,822,126335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504940 ,2,827,75 ,2,828,438455 ,1,0,440115 ,2,821,211855 ,2,822,573575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,440420 ,2,821,212555 ,1,0,218460 ,2,822,126435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504735 ,2,827,75 ,2,828,438195 ,1,0,441000 ,2,821,213840 ,1,0,45 ,1,1,179760 ,2,822,126460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438480 ,1,0,441330 ,2,821,216600 ,1,0,372505 ,2,822,126500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504945 ,2,827,75 ,2,828,438475 ,1,0,441640 ,2,821,226270 ,2,822,36135 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,441975 ,2,821,226450 ,2,822,126480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,442170 ,2,821,227300 ,2,822,126520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501500 ,2,827,75 ,2,828,438490 ,1,0,442635 ,2,821,229195 ,1,0,217180 ,2,822,126530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504950 ,2,827,73440 ,2,828,438485 ,1,0,443000 ,2,821,232325 ,1,0,234715 ,1,1,556220 ,1,2,556210 ,2,822,126555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505015 ,2,827,73615 ,2,828,438555 ,1,0,443655 ,2,821,237585 ,1,0,549330 ,1,1,370300 ,1,2,549095 ,1,3,164870 ,2,822,126575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504955 ,2,827,73450 ,2,828,438495 ,1,0,444095 ,2,821,241640 ,2,822,29690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,444470 ,2,821,241800 ,2,822,29720 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,444700 ,2,821,241955 ,1,0,215935 ,1,1,555320 ,2,822,126610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,438500 ,1,0,445155 ,2,821,243265 ,2,822,29730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,445555 ,2,821,243440 ,2,822,573675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,446230 ,2,821,244005 ,2,822,126725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505005 ,2,827,30175 ,2,828,438545 ,1,0,446595 ,2,821,247920 ,2,822,126745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505000 ,2,827,75 ,2,828,438540 ,1,0,447000 ,2,821,249185 ,1,0,549345 ,1,1,217700 ,2,822,126755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504965 ,2,827,75 ,2,828,438510 ,1,0,447415 ,2,821,251975 ,2,822,126765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504960 ,2,827,75 ,2,828,438505 ,1,0,447595 ,2,821,253715 ,1,0,235045 ,1,1,555325 ,2,822,126735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505010 ,2,827,75 ,2,828,438550 ,1,0,448060 ,2,821,257900 ,1,0,45 ,1,1,179760 ,2,822,126820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438580 ,1,0,448775 ,2,821,260550 ,1,0,549315 ,2,822,126885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505025 ,2,827,75 ,2,828,438575 ,1,0,448965 ,2,821,262615 ,2,822,126850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,65300 ,2,828,438585 ,1,0,449430 ,2,821,263245 ,1,0,555985 ,1,1,573690 ,1,2,45 ,1,3,5900 ,2,822,126865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505030 ,2,827,75 ,2,828,438590 ,1,0,449845 ,2,821,266090 ,2,822,573690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,450580 ,2,821,267360 ,2,822,126895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501145 ,2,827,75 ,2,828,438605 ,1,0,451020 ,2,821,268200 ,2,822,126915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505040 ,2,827,75 ,2,828,438620 ,1,0,451465 ,2,821,269735 ,1,0,218355 ,1,1,328645 ,1,2,164220 ,2,822,129265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505035 ,2,827,73665 ,2,828,438610 ,1,0,451920 ,2,821,272660 ,2,822,126925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,452115 ,2,821,273145 ,2,822,126945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,438615 ,1,0,452565 ,2,821,273915 ,2,822,126960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505055 ,2,827,75 ,2,828,438625 ,1,0,453055 ,2,821,274895 ,1,0,265915 ,2,822,127045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505070 ,2,827,75 ,2,828,438640 ,1,0,453780 ,2,821,275945 ,2,822,165730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505065 ,2,827,75 ,2,828,438635 ,1,0,454215 ,2,821,279835 ,1,0,181530 ,1,1,370235 ,1,2,370245 ,1,3,370280 ,2,822,165500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505060 ,2,827,73715 ,2,828,438630 ,1,0,454690 ,2,821,300375 ,1,0,237550 ,2,822,127055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505075 ,2,827,75 ,2,828,438655 ,1,0,455175 ,2,821,305585 ,1,0,45 ,1,1,330070 ,2,822,127065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438660 ,1,0,455365 ,2,821,308240 ,1,0,218365 ,2,822,127085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505080 ,2,827,75 ,2,828,438665 ,1,0,455880 ,2,821,311755 ,1,0,370175 ,1,1,127065 ,1,2,179050 ,1,3,217415 ,2,822,127095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505440 ,2,827,73870 ,2,828,438680 ,1,0,456750 ,2,821,318835 ,1,0,374400 ,1,1,237155 ,1,2,164210 ,2,822,128785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505090 ,2,827,73725 ,2,828,438675 ,1,0,457275 ,2,821,323490 ,1,0,269040 ,1,1,269085 ,1,2,269095 ,1,3,269050 ,1,4,217345 ,2,822,165450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505085 ,2,827,75 ,2,828,438670 ,1,0,457485 ,2,821,336720 ,2,822,29795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,457970 ,2,821,336900 ,2,822,29840 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,458475 ,2,821,337085 ,1,0,236745 ,1,1,323570 ,1,2,549580 ,1,3,162880 ,1,4,323560 ,2,822,127250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505400 ,2,827,75 ,2,828,439105 ,1,0,459340 ,2,821,348205 ,1,0,546760 ,2,822,127260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505115 ,2,827,73925 ,2,828,438685 ,1,0,459815 ,2,821,353515 ,1,0,554840 ,1,1,323530 ,2,822,127270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505120 ,2,827,75 ,2,828,438690 ,1,0,460305 ,2,821,354945 ,2,822,29890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,460825 ,2,821,355110 ,2,822,127305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505125 ,2,827,75 ,2,828,438720 ,1,0,461040 ,2,821,363035 ,2,822,29940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,461635 ,2,821,363185 ,1,0,554545 ,1,1,213310 ,2,822,127350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505130 ,2,827,26010 ,2,828,438725 ,1,0,462695 ,2,821,366975 ,2,822,573830 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,463265 ,2,821,367690 ,1,0,179750 ,1,1,235705 ,1,2,216145 ,1,3,556135 ,1,4,215890 ,2,822,127360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505135 ,2,827,75 ,2,828,438730 ,1,0,463465 ,2,821,373410 ,1,0,549565 ,1,1,574030 ,2,822,127685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,438815 ,1,0,463930 ,2,821,374240 ,1,0,555770 ,1,1,555765 ,2,822,127675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505185 ,2,827,75 ,2,828,438810 ,1,0,464535 ,2,821,376465 ,1,0,610035 ,1,1,45 ,1,2,5900 ,2,822,127370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505140 ,2,827,75 ,2,828,438735 ,1,0,465515 ,2,821,377830 ,2,822,29950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,466100 ,2,821,377935 ,2,822,29960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,466655 ,2,821,378025 ,2,822,127400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,438750 ,1,0,467210 ,2,821,378835 ,2,822,573890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,467385 ,2,821,379250 ,1,0,554880 ,1,1,610050 ,1,2,216360 ,1,3,216350 ,1,4,542545 ,1,5,573925 ,1,6,542545 ,1,7,554875 ,1,8,2210 ,1,9,542350 ,2,822,127420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505145 ,2,827,74310 ,2,828,438755 ,1,0,468000 ,2,821,396935 ,2,822,30000 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,469145 ,2,821,397040 ,2,822,30010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,469715 ,2,821,397120 ,2,822,30055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,469890 ,2,821,397220 ,2,822,573985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,470315 ,2,821,397650 ,1,0,549555 ,1,1,354755 ,2,822,127520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,438760 ,1,0,470930 ,2,821,397960 ,1,0,45 ,1,1,5900 ,2,822,127610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505175 ,2,827,75 ,2,828,438765 ,1,0,472060 ,2,821,399310 ,1,0,235870 ,1,1,2210 ,1,2,542350 ,2,822,127640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505180 ,2,827,75 ,2,828,438805 ,1,0,472700 ,2,821,405890 ,2,822,574030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,473310 ,2,821,406285 ,1,0,358510 ,2,822,127735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,438820 ,1,0,473900 ,2,821,406630 ,2,822,127745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505190 ,2,827,74590 ,2,828,438825 ,1,0,474090 ,2,821,415010 ,1,0,2280 ,1,1,542095 ,2,822,127775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505385 ,2,827,74830 ,2,828,439060 ,1,0,474585 ,2,821,417695 ,1,0,2280 ,1,1,542095 ,2,822,128425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505380 ,2,827,74615 ,2,828,438830 ,1,0,475500 ,2,821,418755 ,1,0,2280 ,1,1,542095 ,2,822,127785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,438835 ,1,0,477220 ,2,821,419435 ,2,822,30160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,478095 ,2,821,419525 ,1,0,45 ,1,1,210905 ,2,822,127795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,438840 ,1,0,479015 ,2,821,420555 ,1,0,45 ,1,1,210905 ,2,822,127825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,438855 ,1,0,479945 ,2,821,422210 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,127855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496875 ,2,827,75 ,2,828,438860 ,1,0,480145 ,2,821,423335 ,1,0,2280 ,1,1,542095 ,2,822,127910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,438865 ,1,0,480695 ,2,821,424020 ,2,822,127920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505205 ,2,827,75 ,2,828,438870 ,1,0,481045 ,2,821,426210 ,2,822,127940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505255 ,2,827,75 ,2,828,438930 ,1,0,481295 ,2,821,428000 ,2,822,128020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505250 ,2,827,75 ,2,828,438920 ,1,0,481595 ,2,821,428760 ,2,822,128395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505245 ,2,827,74745 ,2,828,438915 ,1,0,481800 ,2,821,433695 ,2,822,128205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505225 ,2,827,27110 ,2,828,438890 ,1,0,481990 ,2,821,435885 ,2,822,128175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505210 ,2,827,27110 ,2,828,438880 ,1,0,482200 ,2,821,437105 ,2,822,128215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505215 ,2,827,74685 ,2,828,438885 ,1,0,482585 ,2,821,438875 ,2,822,128125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505230 ,2,827,74725 ,2,828,438895 ,1,0,482845 ,2,821,444575 ,2,822,128265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505240 ,2,827,75 ,2,828,438910 ,1,0,483180 ,2,821,448675 ,1,0,14210 ,1,1,14200 ,1,2,164285 ,1,3,14185 ,2,822,128285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505235 ,2,827,74735 ,2,828,438905 ,1,0,483505 ,2,821,472030 ,2,822,127960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505260 ,2,827,74760 ,2,828,438935 ,1,0,483715 ,2,821,476695 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,127970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496100 ,2,827,75 ,2,828,438940 ,1,0,483875 ,2,821,477700 ,2,822,128040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505280 ,2,827,75 ,2,828,438945 ,1,0,484050 ,2,821,478735 ,1,0,2280 ,1,1,542095 ,2,822,128050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,438965 ,1,0,484330 ,2,821,479435 ,2,822,128070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505295 ,2,827,75 ,2,828,438985 ,1,0,484730 ,2,821,481325 ,2,822,128375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505290 ,2,827,75 ,2,828,438980 ,1,0,485095 ,2,821,483270 ,1,0,14175 ,1,1,14165 ,2,822,128080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505285 ,2,827,27110 ,2,828,438975 ,1,0,485385 ,2,821,499290 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,128165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496095 ,2,827,75 ,2,828,438970 ,1,0,485710 ,2,821,500280 ,2,822,128115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505280 ,2,827,75 ,2,828,438990 ,1,0,486020 ,2,821,501315 ,1,0,2280 ,1,1,542095 ,2,822,128155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,438995 ,1,0,486210 ,2,821,502025 ,2,822,128225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505310 ,2,827,75 ,2,828,439000 ,1,0,486590 ,2,821,506370 ,1,0,2280 ,1,1,542095 ,2,822,128255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,439020 ,1,0,486860 ,2,821,507055 ,1,0,14220 ,1,1,2280 ,1,2,542095 ,1,3,328685 ,2,822,128275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505315 ,2,827,74790 ,2,828,439025 ,1,0,487045 ,2,821,513125 ,1,0,236470 ,2,822,128325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505320 ,2,827,75 ,2,828,439030 ,1,0,487230 ,2,821,514845 ,1,0,2280 ,1,1,542095 ,2,822,128335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,439035 ,1,0,487690 ,2,821,515515 ,1,0,2280 ,1,1,542095 ,2,822,128355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505325 ,2,827,75 ,2,828,439045 ,1,0,488010 ,2,821,516205 ,1,0,2280 ,1,1,542095 ,2,822,128365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505325 ,2,827,75 ,2,828,439050 ,1,0,488525 ,2,821,516880 ,2,822,128385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505375 ,2,827,75 ,2,828,439055 ,1,0,488985 ,2,821,518245 ,1,0,162990 ,1,1,2280 ,1,2,542095 ,1,3,2280 ,1,4,542095 ,1,5,2280 ,1,6,542095 ,1,7,2280 ,1,8,542095 ,2,822,128415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505390 ,2,827,74840 ,2,828,439100 ,1,0,489460 ,2,821,524875 ,2,822,30170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,489900 ,2,821,524960 ,2,822,30180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,491125 ,2,821,525090 ,2,822,128465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,439115 ,1,0,493415 ,2,821,526150 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,213175 ,1,5,323605 ,1,6,549600 ,1,7,162890 ,1,8,216320 ,2,822,128485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505405 ,2,827,75 ,2,828,439110 ,1,0,494590 ,2,821,533425 ,2,822,30220 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,495780 ,2,821,533500 ,2,822,30230 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,496920 ,2,821,533630 ,2,822,30240 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,497130 ,2,821,533715 ,2,822,30250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,497290 ,2,821,533820 ,2,822,30270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,497490 ,2,821,533915 ,2,822,30280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,497645 ,2,821,534045 ,2,822,128690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,439135 ,1,0,497760 ,2,821,535075 ,1,0,549710 ,2,822,128720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505415 ,2,827,75 ,2,828,439130 ,1,0,497970 ,2,821,536105 ,1,0,555250 ,1,1,175785 ,2,822,128700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505410 ,2,827,75 ,2,828,439125 ,1,0,498170 ,2,821,538415 ,2,822,128745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,439140 ,1,0,498385 ,2,821,538755 ,2,822,128765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505445 ,2,827,75 ,2,828,439170 ,1,0,498645 ,2,821,539685 ,1,0,328655 ,2,822,128795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505450 ,2,827,75 ,2,828,439175 ,1,0,498920 ,2,821,541145 ,1,0,218395 ,1,1,218385 ,1,2,218375 ,1,3,164275 ,2,822,128825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505455 ,2,827,75165 ,2,828,439180 ,1,0,499115 ,2,821,549940 ,2,822,30290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,499510 ,2,821,550040 ,1,0,213255 ,2,822,128870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,439185 ,1,0,499905 ,2,821,550840 ,1,0,593785 ,1,1,324715 ,2,822,128950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505465 ,2,827,75 ,2,828,439190 ,1,0,500090 ,2,821,552085 ,1,0,219110 ,2,822,128960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505470 ,2,827,73440 ,2,828,439195 ,1,0,500500 ,2,821,554035 ,1,0,303615 ,1,1,330040 ,1,2,237570 ,1,3,259270 ,1,4,237375 ,1,5,129155 ,1,6,129110 ,1,7,330020 ,1,8,238355 ,1,9,219205 ,2,822,129215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505580 ,2,827,75280 ,2,828,439285 ,1,0,500840 ,2,821,570395 ,1,0,237330 ,1,1,164555 ,1,2,129060 ,1,3,555995 ,2,822,129080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505535 ,2,827,75260 ,2,828,439255 ,1,0,501055 ,2,821,576925 ,1,0,329890 ,2,822,129005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505510 ,2,827,75 ,2,828,439240 ,1,0,501245 ,2,821,578355 ,1,0,237320 ,1,1,215925 ,1,2,45 ,1,3,5900 ,1,4,219160 ,2,822,129015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505515 ,2,827,75 ,2,828,439245 ,1,0,501595 ,2,821,581245 ,1,0,369995 ,1,1,164535 ,2,822,129025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505520 ,2,827,75 ,2,828,439250 ,1,0,501860 ,2,821,582850 ,1,0,45 ,1,1,179760 ,2,822,129060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,439265 ,1,0,502050 ,2,821,584555 ,1,0,237345 ,1,1,195335 ,1,2,219180 ,2,822,129070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505530 ,2,827,75 ,2,828,439260 ,1,0,502260 ,2,821,587485 ,2,822,30500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,502545 ,2,821,587600 ,2,822,129090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505540 ,2,827,75270 ,2,828,439270 ,1,0,502875 ,2,821,598970 ,2,822,30530 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,503115 ,2,821,599070 ,1,0,45 ,1,1,330070 ,2,822,129110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,439290 ,1,0,503470 ,2,821,600730 ,1,0,574260 ,1,1,45 ,1,2,329980 ,2,822,129155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,439310 ,1,0,503680 ,2,821,602335 ,1,0,329970 ,1,1,237440 ,2,822,129175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505575 ,2,827,75 ,2,828,439300 ,1,0,503990 ,2,821,603360 ,2,822,129165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505545 ,2,827,75 ,2,828,439295 ,1,0,504220 ,2,821,603890 ,2,822,574260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,504520 ,2,821,604275 ,1,0,219120 ,2,822,129195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,438225 ,1,0,504695 ,2,821,604540 ,2,822,30340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,504975 ,2,821,604640 ,1,0,554950 ,2,822,129375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503325 ,2,827,75 ,2,828,439325 ,1,0,505155 ,2,821,605490 ,1,0,45 ,1,1,329720 ,2,822,129410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,439360 ,1,0,505430 ,2,821,607120 ,1,0,237135 ,1,1,164440 ,2,822,129420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505595 ,2,827,75 ,2,828,439355 ,1,0,505625 ,2,821,607860 ,2,822,574355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,505875 ,2,821,608335 ,1,0,45 ,1,1,329720 ,2,822,129490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,439370 ,1,0,506045 ,2,821,609985 ,1,0,234845 ,2,822,129500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504725 ,2,827,75 ,2,828,439365 ,1,0,506310 ,2,821,610645 ,1,0,609910 ,1,1,45 ,1,2,208615 ,2,822,129635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505600 ,2,827,75 ,2,828,439375 ,1,0,506495 ,2,821,611800 ,2,822,129725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505605 ,2,827,75 ,2,828,439380 ,1,0,506760 ,2,821,612965 ,1,0,233815 ,2,822,129735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,439385 ,1,0,506885 ,2,821,613455 ,2,822,129755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505610 ,2,827,75 ,2,828,439390 ,1,0,507170 ,2,821,614490 ,2,822,129765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505610 ,2,827,75 ,2,828,439425 ,1,0,507290 ,2,821,615530 ,2,822,129785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,435330 ,1,0,507560 ,2,821,617700 ,2,822,30490 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,507665 ,2,821,617820 ,1,0,549830 ,1,1,234145 ,1,2,164125 ,1,3,45 ,1,4,11510 ,1,5,45 ,1,6,11510 ,1,7,45 ,1,8,11510 ,1,9,218115 ,1,10,164115 ,1,11,45 ,1,12,11510 ,2,822,129855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505640 ,2,827,24545 ,2,828,439430 ,1,0,507930 ,2,821,634305 ,1,0,573850 ,1,1,45 ,1,2,233915 ,1,3,45 ,1,4,328270 ,2,822,129865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505645 ,2,827,75 ,2,828,439435 ,1,0,508240 ,2,821,636180 ,1,0,555085 ,1,1,234315 ,2,822,129875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505650 ,2,827,75 ,2,828,439440 ,1,0,508400 ,2,821,638175 ,2,822,573280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,508560 ,2,821,638575 ,2,822,129945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,439450 ,1,0,508710 ,2,821,638870 ,2,822,126125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505675 ,2,827,75 ,2,828,439500 ,1,0,508990 ,2,821,639885 ,2,822,165630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505710 ,2,827,75 ,2,828,439510 ,1,0,509180 ,2,821,641900 ,1,0,237850 ,1,1,328155 ,1,2,555395 ,2,822,125775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505715 ,2,827,73440 ,2,828,439515 ,1,0,509385 ,2,821,646815 ,2,822,165690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505720 ,2,827,75 ,2,828,439520 ,1,0,509500 ,2,821,649065 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,130100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494520 ,2,827,75 ,2,828,439525 ,1,0,509675 ,2,821,650960 ,2,822,130110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492230 ,2,827,75 ,2,828,439535 ,1,0,510020 ,2,821,651440 ,2,822,130135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505735 ,2,827,75 ,2,828,439550 ,1,0,510205 ,2,821,653040 ,1,0,213300 ,1,1,213285 ,1,2,554500 ,2,822,130155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505745 ,2,827,75 ,2,828,439565 ,1,0,510335 ,2,821,655555 ,1,0,370045 ,1,1,370005 ,1,2,259070 ,1,3,259060 ,1,4,259050 ,1,5,548795 ,2,822,130165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505740 ,2,827,76020 ,2,828,439555 ,1,0,510505 ,2,821,662685 ,2,822,30580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,510835 ,2,821,662785 ,2,822,30550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,510995 ,2,821,662875 ,2,822,130200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,439560 ,1,0,511120 ,2,821,663250 ,1,0,549880 ,1,1,237535 ,2,822,130180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505765 ,2,827,76065 ,2,828,439575 ,1,0,511340 ,2,821,664735 ,2,822,130190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505770 ,2,827,75 ,2,828,439580 ,1,0,511685 ,2,821,667670 ,2,822,30560 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,511940 ,2,821,667750 ,2,822,30570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,512120 ,2,821,667870 ,1,0,45 ,1,1,276975 ,2,822,130265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,439590 ,1,0,512405 ,2,821,669365 ,1,0,314865 ,2,822,130415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505775 ,2,827,75 ,2,828,439585 ,1,0,512685 ,2,821,670690 ,2,822,130295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,439640 ,1,0,512890 ,2,821,671670 ,2,822,130430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,439635 ,1,0,513075 ,2,821,672315 ,1,0,45 ,1,1,192820 ,2,822,130315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,439665 ,1,0,513365 ,2,821,673925 ,1,0,238455 ,2,822,130440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505800 ,2,827,75 ,2,828,439660 ,1,0,513550 ,2,821,1235 ,2,822,130405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505795 ,2,827,75 ,2,828,439650 ,1,0,517950 ,2,821,4650 ,1,0,548330 ,2,822,130340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,439645 ,1,0,518325 ,2,821,5965 ,1,0,45 ,1,1,192820 ,2,822,130360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,439675 ,1,0,519035 ,2,821,8640 ,1,0,238465 ,2,822,130450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505805 ,2,827,75 ,2,828,439670 ,1,0,519775 ,2,821,11520 ,1,0,45 ,1,1,192820 ,2,822,130385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,439710 ,1,0,520625 ,2,821,14235 ,1,0,314830 ,2,822,130460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505810 ,2,827,75 ,2,828,439705 ,1,0,521405 ,2,821,15990 ,1,0,372090 ,2,822,125155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505830 ,2,827,75 ,2,828,439715 ,1,0,522230 ,2,821,22435 ,2,822,572680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,523120 ,2,821,23145 ,2,822,30590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,525335 ,2,821,23330 ,2,822,574565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,525930 ,2,821,24025 ,2,822,30600 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,526295 ,2,821,24200 ,2,822,30635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,527055 ,2,821,24370 ,2,822,574590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,527950 ,2,821,25050 ,2,822,130785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,439740 ,1,0,530110 ,2,821,26790 ,1,0,217935 ,2,822,130795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503400 ,2,827,75 ,2,828,439735 ,1,0,530855 ,2,821,27655 ,2,822,30655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,531720 ,2,821,27815 ,2,822,30665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,532570 ,2,821,27975 ,2,822,30680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,533305 ,2,821,28150 ,2,822,30690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,533575 ,2,821,28310 ,2,822,30700 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,533865 ,2,821,28495 ,2,822,574710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,534215 ,2,821,29180 ,2,822,30710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,534465 ,2,821,29360 ,2,822,30745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,534650 ,2,821,29530 ,2,822,30755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,534895 ,2,821,29710 ,2,822,30765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,535225 ,2,821,29860 ,2,822,30780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,535405 ,2,821,30030 ,1,0,258925 ,1,1,358520 ,2,822,131070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505855 ,2,827,76825 ,2,828,439780 ,1,0,535655 ,2,821,35015 ,2,822,30790 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,535925 ,2,821,35170 ,2,822,30810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,536190 ,2,821,35375 ,2,822,131165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505845 ,2,827,70730 ,2,828,439745 ,1,0,536435 ,2,821,40345 ,2,822,131175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505850 ,2,827,34130 ,2,828,439775 ,1,0,536815 ,2,821,51270 ,2,822,131350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,439785 ,1,0,536990 ,2,821,51870 ,1,0,184880 ,1,1,323465 ,1,2,323455 ,2,822,131375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505860 ,2,827,75 ,2,828,439790 ,1,0,537230 ,2,821,54290 ,2,822,30845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,537525 ,2,821,54445 ,2,822,30885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,537905 ,2,821,54600 ,2,822,131405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505865 ,2,827,75 ,2,828,439800 ,1,0,538180 ,2,821,57720 ,2,822,131425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505895 ,2,827,76930 ,2,828,439805 ,1,0,538525 ,2,821,61210 ,1,0,554850 ,1,1,264540 ,2,822,131445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505900 ,2,827,76955 ,2,828,439810 ,1,0,538720 ,2,821,87615 ,1,0,100140 ,2,822,131455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505905 ,2,827,76965 ,2,828,439840 ,1,0,538975 ,2,821,94875 ,2,822,131475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,439815 ,1,0,539200 ,2,821,95800 ,2,822,131620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505910 ,2,827,75 ,2,828,439845 ,1,0,539450 ,2,821,97840 ,2,822,131645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505910 ,2,827,75 ,2,828,439850 ,1,0,539650 ,2,821,99935 ,2,822,131655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505915 ,2,827,75 ,2,828,439855 ,1,0,539945 ,2,821,101230 ,1,0,45 ,1,1,210655 ,2,822,131700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,439870 ,1,0,540130 ,2,821,103575 ,1,0,45 ,1,1,5900 ,2,822,131810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505920 ,2,827,77080 ,2,828,439875 ,1,0,540495 ,2,821,116830 ,1,0,232250 ,2,822,131820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505925 ,2,827,75 ,2,828,439880 ,1,0,540815 ,2,821,118290 ,2,822,572365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,541110 ,2,821,118970 ,2,822,131830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505930 ,2,827,75 ,2,828,439905 ,1,0,541390 ,2,821,120985 ,2,822,30915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,541735 ,2,821,121140 ,2,822,574880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,541985 ,2,821,121840 ,2,822,31000 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,542315 ,2,821,121990 ,2,822,131950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,439910 ,1,0,542605 ,2,821,122655 ,2,822,31010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,542855 ,2,821,122810 ,2,822,574955 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,543035 ,2,821,123480 ,2,822,31020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,543275 ,2,821,123640 ,2,822,31065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,543530 ,2,821,123790 ,1,0,575000 ,1,1,45 ,1,2,323485 ,2,822,132000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,439990 ,1,0,543735 ,2,821,126445 ,1,0,317905 ,1,1,554565 ,1,2,213595 ,1,3,213585 ,1,4,45 ,1,5,11510 ,2,822,132105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505960 ,2,827,77380 ,2,828,439945 ,1,0,543940 ,2,821,137410 ,1,0,239865 ,2,822,132075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505950 ,2,827,75 ,2,828,439935 ,1,0,544120 ,2,821,138665 ,1,0,45 ,1,1,341055 ,2,822,132020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505945 ,2,827,75 ,2,828,439930 ,1,0,544370 ,2,821,139880 ,1,0,217300 ,2,822,132010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505940 ,2,827,75 ,2,828,439920 ,1,0,544540 ,2,821,141245 ,1,0,213525 ,1,1,575005 ,1,2,45 ,1,3,5900 ,2,822,132085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505955 ,2,827,75 ,2,828,439940 ,1,0,544775 ,2,821,143410 ,2,822,575005 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,545040 ,2,821,144795 ,1,0,132000 ,1,1,554570 ,2,822,132125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505965 ,2,827,77420 ,2,828,439995 ,1,0,545240 ,2,821,146965 ,2,822,132185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506005 ,2,827,75 ,2,828,440020 ,1,0,545465 ,2,821,148160 ,2,822,132290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505970 ,2,827,75 ,2,828,440000 ,1,0,545655 ,2,821,149940 ,2,822,132205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501500 ,2,827,75 ,2,828,440015 ,1,0,545890 ,2,821,151795 ,1,0,212425 ,2,822,132195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505975 ,2,827,77450 ,2,828,440005 ,1,0,546155 ,2,821,153265 ,2,822,132245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,440030 ,1,0,546400 ,2,821,154105 ,1,0,227205 ,2,822,132275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506010 ,2,827,75 ,2,828,440025 ,1,0,546605 ,2,821,155130 ,2,822,132255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501705 ,2,827,75 ,2,828,440060 ,1,0,546870 ,2,821,156090 ,2,822,132265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506015 ,2,827,75 ,2,828,440065 ,1,0,546990 ,2,821,157725 ,2,822,31075 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,547210 ,2,821,157880 ,2,822,575045 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,547540 ,2,821,158565 ,1,0,45 ,1,1,5900 ,1,2,213195 ,1,3,315335 ,1,4,315325 ,1,5,212370 ,1,6,315300 ,1,7,161805 ,2,822,132300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506055 ,2,827,75 ,2,828,440130 ,1,0,547720 ,2,821,167760 ,1,0,240255 ,1,1,231925 ,1,2,240210 ,1,3,231945 ,1,4,240220 ,1,5,240265 ,2,822,132450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506040 ,2,827,75 ,2,828,440125 ,1,0,547895 ,2,821,181280 ,1,0,212360 ,1,1,132330 ,2,822,132440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506035 ,2,827,77595 ,2,828,440105 ,1,0,548080 ,2,821,199940 ,2,822,132430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506030 ,2,827,75 ,2,828,440100 ,1,0,548310 ,2,821,202335 ,2,822,132310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506020 ,2,827,34110 ,2,828,440070 ,1,0,548465 ,2,821,212400 ,1,0,45 ,1,1,330070 ,2,822,132330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,440090 ,1,0,548660 ,2,821,215200 ,2,822,132360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,440075 ,1,0,548820 ,2,821,216125 ,2,822,132410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506025 ,2,827,75990 ,2,828,440095 ,1,0,549060 ,2,821,221380 ,2,822,31115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,549185 ,2,821,221530 ,2,822,575070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,549525 ,2,821,222215 ,1,0,161790 ,2,822,132470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506145 ,2,827,75 ,2,828,440235 ,1,0,549750 ,2,821,223420 ,2,822,133070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506120 ,2,827,75 ,2,828,440225 ,1,0,549990 ,2,821,226560 ,1,0,212390 ,2,822,132515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506060 ,2,827,75 ,2,828,440135 ,1,0,550235 ,2,821,230050 ,2,822,132525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506065 ,2,827,75 ,2,828,440140 ,1,0,550535 ,2,821,230965 ,1,0,356165 ,2,822,132535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506085 ,2,827,75 ,2,828,440150 ,1,0,550805 ,2,821,234480 ,1,0,216450 ,2,822,132545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506070 ,2,827,75 ,2,828,440145 ,1,0,551000 ,2,821,238930 ,1,0,212405 ,1,1,315385 ,1,2,45 ,1,3,5900 ,1,4,315375 ,1,5,358845 ,1,6,358880 ,1,7,374420 ,2,822,133090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506115 ,2,827,30175 ,2,828,440220 ,1,0,551190 ,2,821,255595 ,1,0,315365 ,1,1,132565 ,1,2,179585 ,2,822,132660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506095 ,2,827,77755 ,2,828,440155 ,1,0,551445 ,2,821,266365 ,1,0,45 ,1,1,330070 ,2,822,132565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,440200 ,1,0,551755 ,2,821,268950 ,2,822,132575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,440160 ,1,0,551980 ,2,821,269975 ,2,822,132615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506090 ,2,827,75 ,2,828,440205 ,1,0,552175 ,2,821,275565 ,2,822,31190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,552385 ,2,821,275730 ,1,0,315280 ,1,1,315270 ,1,2,315260 ,2,822,133460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506100 ,2,827,75 ,2,828,440210 ,1,0,552585 ,2,821,280145 ,2,822,133485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506110 ,2,827,75 ,2,828,440215 ,1,0,552780 ,2,821,283580 ,2,822,133080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,552985 ,2,821,284440 ,1,0,45 ,1,1,5900 ,1,2,315345 ,1,3,554400 ,1,4,554365 ,2,822,133140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506125 ,2,827,77845 ,2,828,440230 ,1,0,553265 ,2,821,293555 ,1,0,45 ,1,1,318150 ,2,822,132670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,440270 ,1,0,553470 ,2,821,296160 ,2,822,575135 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,553655 ,2,821,296835 ,1,0,555415 ,2,822,132735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499370 ,2,827,59330 ,2,828,440275 ,1,0,553920 ,2,821,298915 ,2,822,31250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,554205 ,2,821,299080 ,2,822,575170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,554455 ,2,821,299740 ,1,0,216565 ,1,1,359675 ,2,822,132760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506195 ,2,827,75 ,2,828,440300 ,1,0,554675 ,2,821,304205 ,1,0,575210 ,1,1,45 ,1,2,347100 ,1,3,267125 ,1,4,240560 ,1,5,542550 ,1,6,593655 ,1,7,542550 ,2,822,132770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506150 ,2,827,78000 ,2,828,440280 ,1,0,554910 ,2,821,310840 ,1,0,216555 ,2,822,132780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506155 ,2,827,75 ,2,828,440285 ,1,0,555215 ,2,821,312240 ,1,0,554885 ,1,1,216540 ,2,822,132790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506160 ,2,827,78010 ,2,828,440295 ,1,0,555430 ,2,821,317630 ,2,822,31295 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,555740 ,2,821,317780 ,2,822,31305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,556075 ,2,821,317940 ,2,822,31315 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,556420 ,2,821,318080 ,2,822,575210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,556685 ,2,821,319330 ,2,822,132875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,440305 ,1,0,556880 ,2,821,319970 ,2,822,31345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,557110 ,2,821,320140 ,1,0,45 ,1,1,347100 ,2,822,132895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493695 ,2,827,75 ,2,828,440320 ,1,0,557320 ,2,821,322450 ,1,0,216530 ,2,822,132970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,440310 ,1,0,557660 ,2,821,323735 ,1,0,171380 ,1,1,240550 ,2,822,132940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506200 ,2,827,78175 ,2,828,440325 ,1,0,557935 ,2,821,331265 ,2,822,575125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,558260 ,2,821,331995 ,1,0,45 ,1,1,276975 ,2,822,133040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,440340 ,1,0,558535 ,2,821,334785 ,2,822,133180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,440335 ,1,0,558740 ,2,821,335510 ,2,822,133390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506205 ,2,827,78225 ,2,828,440330 ,1,0,558980 ,2,821,337225 ,2,822,133050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,440345 ,1,0,559235 ,2,821,337955 ,1,0,45 ,1,1,276975 ,2,822,133060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,440350 ,1,0,559435 ,2,821,340705 ,2,822,133110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,440375 ,1,0,559700 ,2,821,342400 ,1,0,315415 ,1,1,358870 ,1,2,161835 ,2,822,133160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506210 ,2,827,75 ,2,828,440355 ,1,0,559885 ,2,821,344190 ,2,822,133150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,78295 ,2,828,440380 ,1,0,560180 ,2,821,345065 ,1,0,45 ,1,1,255920 ,2,822,133210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,440465 ,1,0,560380 ,2,821,347670 ,1,0,315290 ,2,822,133495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506285 ,2,827,75 ,2,828,440460 ,1,0,560505 ,2,821,349430 ,2,822,133570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506280 ,2,827,59485 ,2,828,440455 ,1,0,560610 ,2,821,351620 ,2,822,133440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506275 ,2,827,78225 ,2,828,440450 ,1,0,560800 ,2,821,355105 ,1,0,215910 ,1,1,556025 ,1,2,330200 ,1,3,330190 ,1,4,330175 ,1,5,330165 ,1,6,330155 ,1,7,330145 ,1,8,330110 ,2,822,133220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506215 ,2,827,78305 ,2,828,440385 ,1,0,561145 ,2,821,364690 ,2,822,31365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,561475 ,2,821,364830 ,1,0,241100 ,1,1,241130 ,1,2,241110 ,1,3,241120 ,1,4,163755 ,2,822,133270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506220 ,2,827,75 ,2,828,440390 ,1,0,561665 ,2,821,386435 ,2,822,133280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506225 ,2,827,75 ,2,828,440400 ,1,0,561880 ,2,821,404980 ,2,822,133330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506230 ,2,827,78490 ,2,828,440405 ,1,0,562090 ,2,821,411785 ,2,822,31415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,562270 ,2,821,411910 ,2,822,133350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,440410 ,1,0,562550 ,2,821,412700 ,2,822,133360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506260 ,2,827,75 ,2,828,440415 ,1,0,562830 ,2,821,414375 ,1,0,241140 ,2,822,133370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506265 ,2,827,75 ,2,828,440440 ,1,0,563095 ,2,821,416160 ,2,822,133380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506270 ,2,827,75 ,2,828,440445 ,1,0,563405 ,2,821,418080 ,1,0,554495 ,1,1,554490 ,2,822,133400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506290 ,2,827,59330 ,2,828,440470 ,1,0,563690 ,2,821,420075 ,1,0,575310 ,1,1,45 ,1,2,272495 ,2,822,133515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,440500 ,1,0,564035 ,2,821,421720 ,1,0,212335 ,2,822,133590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506295 ,2,827,75 ,2,828,440475 ,1,0,564330 ,2,821,422785 ,1,0,571455 ,1,1,45 ,1,2,192820 ,2,822,133560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,440510 ,1,0,564605 ,2,821,424465 ,1,0,161815 ,2,822,133660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506330 ,2,827,75 ,2,828,440505 ,1,0,564860 ,2,821,425575 ,2,822,133650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506335 ,2,827,78225 ,2,828,440515 ,1,0,565115 ,2,821,427465 ,2,822,31435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,565305 ,2,821,427555 ,1,0,554830 ,2,822,133670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,440520 ,1,0,565565 ,2,821,428260 ,2,822,36735 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,565890 ,2,821,428330 ,1,0,218370 ,1,1,186340 ,1,2,211340 ,1,3,241770 ,1,4,241760 ,1,5,222235 ,1,6,184220 ,1,7,164655 ,2,822,133695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506340 ,2,827,75 ,2,828,440525 ,1,0,566155 ,2,821,440240 ,1,0,45 ,1,1,210655 ,2,822,133715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506345 ,2,827,75 ,2,828,440530 ,1,0,566620 ,2,821,441170 ,2,822,133750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,440535 ,1,0,566790 ,2,821,441615 ,2,822,31515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,567110 ,2,821,441725 ,2,822,31525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,567300 ,2,821,441820 ,2,822,133860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502045 ,2,827,75 ,2,828,440560 ,1,0,567480 ,2,821,442810 ,2,822,133870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,440565 ,1,0,567700 ,2,821,443695 ,2,822,133880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506350 ,2,827,75 ,2,828,440570 ,1,0,567880 ,2,821,444925 ,2,822,133940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506355 ,2,827,78880 ,2,828,440575 ,1,0,568065 ,2,821,446440 ,2,822,36515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,568255 ,2,821,446525 ,1,0,242410 ,1,1,242460 ,1,2,242505 ,1,3,241975 ,1,4,242480 ,1,5,242495 ,1,6,242350 ,1,7,242340 ,1,8,242390 ,1,9,242265 ,1,10,242255 ,1,11,242315 ,1,12,242400 ,1,13,242245 ,1,14,242295 ,1,15,242275 ,1,16,242305 ,1,17,242090 ,1,18,242080 ,1,19,242100 ,1,20,241995 ,1,21,241985 ,1,22,242055 ,1,23,242135 ,1,24,242195 ,1,25,242035 ,1,26,242045 ,1,27,242070 ,1,28,242145 ,1,29,242175 ,1,30,242165 ,1,31,242155 ,1,32,242025 ,1,33,242205 ,1,34,242360 ,1,35,242285 ,1,36,242450 ,1,37,242185 ,1,38,242370 ,1,39,242420 ,2,822,133985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506360 ,2,827,75 ,2,828,440585 ,1,0,568465 ,2,821,472590 ,2,822,36415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,568750 ,2,821,472680 ,2,822,31535 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,568885 ,2,821,472790 ,2,822,31565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,569165 ,2,821,472890 ,1,0,555910 ,1,1,369675 ,2,822,134015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504345 ,2,827,75 ,2,828,440590 ,1,0,569350 ,2,821,473525 ,2,822,31445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,569560 ,2,821,473620 ,2,822,124310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506365 ,2,827,75 ,2,828,440595 ,1,0,569840 ,2,821,475430 ,2,822,28705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,570060 ,2,821,475555 ,2,822,29125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,570645 ,2,821,475640 ,2,822,128105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506390 ,2,827,75 ,2,828,440600 ,1,0,571190 ,2,821,476600 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,137130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506395 ,2,827,74615 ,2,828,440640 ,1,0,571490 ,2,821,479235 ,1,0,246850 ,1,1,555775 ,1,2,358190 ,1,3,259635 ,1,4,328895 ,2,822,137110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506810 ,2,827,82440 ,2,828,441290 ,1,0,571745 ,2,821,483540 ,1,0,259570 ,1,1,218535 ,2,822,136930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506805 ,2,827,82430 ,2,828,441285 ,1,0,571985 ,2,821,485200 ,2,822,31575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,572260 ,2,821,485295 ,2,822,31615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,572395 ,2,821,485420 ,1,0,550155 ,2,822,134065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506405 ,2,827,75 ,2,828,440650 ,1,0,572660 ,2,821,486145 ,1,0,550150 ,2,822,134075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506400 ,2,827,75 ,2,828,440645 ,1,0,572870 ,2,821,487455 ,2,822,32535 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573085 ,2,821,487540 ,2,822,575465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573285 ,2,821,487980 ,2,822,575470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573470 ,2,821,488390 ,2,822,134115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506685 ,2,827,75 ,2,828,441090 ,1,0,573600 ,2,821,515665 ,2,822,134170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506415 ,2,827,75 ,2,828,440655 ,1,0,573800 ,2,821,521455 ,2,822,31625 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,573995 ,2,821,521560 ,1,0,323775 ,1,1,323730 ,1,2,323720 ,1,3,323710 ,1,4,323700 ,2,822,135030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506465 ,2,827,75 ,2,828,440795 ,1,0,574270 ,2,821,529995 ,2,822,31675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,574445 ,2,821,530085 ,2,822,134215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,574715 ,2,821,531175 ,1,0,555885 ,2,822,134225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506420 ,2,827,79515 ,2,828,440660 ,1,0,574960 ,2,821,532685 ,2,822,31780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,575235 ,2,821,532785 ,2,822,31810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,575550 ,2,821,532900 ,1,0,211305 ,2,822,134385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506430 ,2,827,75 ,2,828,440670 ,1,0,575870 ,2,821,533545 ,1,0,243250 ,1,1,243260 ,1,2,243285 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,356880 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,5900 ,1,18,2210 ,1,19,542350 ,1,20,2210 ,1,21,542350 ,2,822,134615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506425 ,2,827,79660 ,2,828,440665 ,1,0,576135 ,2,821,566730 ,1,0,45 ,1,1,184220 ,2,822,134410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,440675 ,1,0,576320 ,2,821,568250 ,1,0,45 ,1,1,184220 ,2,822,134430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,440720 ,1,0,576570 ,2,821,569910 ,1,0,211010 ,2,822,134495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506430 ,2,827,75 ,2,828,440715 ,1,0,576760 ,2,821,570550 ,2,822,134440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,440725 ,1,0,577010 ,2,821,571345 ,2,822,134485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,440730 ,1,0,577265 ,2,821,572135 ,2,822,134530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,440735 ,1,0,577500 ,2,821,572950 ,2,822,134550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,440740 ,1,0,577710 ,2,821,573715 ,1,0,217650 ,2,822,134585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506455 ,2,827,75 ,2,828,440745 ,1,0,578165 ,2,821,576565 ,1,0,211000 ,2,822,134595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506430 ,2,827,75 ,2,828,440750 ,1,0,578430 ,2,821,577200 ,1,0,45 ,1,1,182815 ,2,822,134605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,440760 ,1,0,578645 ,2,821,578780 ,2,822,134655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,440765 ,1,0,578785 ,2,821,579580 ,1,0,45 ,1,1,182815 ,2,822,134675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,440775 ,1,0,579040 ,2,821,581140 ,1,0,211510 ,1,1,161370 ,2,822,134720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506430 ,2,827,75 ,2,828,440770 ,1,0,579235 ,2,821,581790 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,134765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,440780 ,1,0,579640 ,2,821,584155 ,1,0,45 ,1,1,5900 ,2,822,134810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501925 ,2,827,60645 ,2,828,433990 ,1,0,579975 ,2,821,589520 ,1,0,45 ,1,1,5900 ,1,2,217765 ,2,822,134820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502780 ,2,827,75 ,2,828,440785 ,1,0,580235 ,2,821,593665 ,1,0,45 ,1,1,5900 ,2,822,134830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501955 ,2,827,34150 ,2,828,434000 ,1,0,580490 ,2,821,599800 ,1,0,45 ,1,1,5900 ,2,822,134840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506460 ,2,827,75 ,2,828,440790 ,1,0,580685 ,2,821,602665 ,2,822,134865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,433750 ,1,0,581080 ,2,821,603860 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,134970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501915 ,2,827,75 ,2,828,433955 ,1,0,581355 ,2,821,608360 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,11510 ,2,822,135010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501920 ,2,827,60825 ,2,828,433985 ,1,0,581540 ,2,821,619175 ,2,822,135070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506475 ,2,827,75 ,2,828,440820 ,1,0,582080 ,2,821,627170 ,2,822,31850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,582350 ,2,821,627250 ,1,0,554330 ,1,1,314885 ,2,822,135040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506470 ,2,827,75 ,2,828,440815 ,1,0,582615 ,2,821,628070 ,2,822,135135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506480 ,2,827,75 ,2,828,440825 ,1,0,582855 ,2,821,630695 ,2,822,31920 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,583120 ,2,821,630790 ,2,822,135165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506485 ,2,827,75 ,2,828,440830 ,1,0,583470 ,2,821,637735 ,2,822,31940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,583790 ,2,821,637840 ,2,822,135210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506490 ,2,827,75 ,2,828,440835 ,1,0,584115 ,2,821,642555 ,2,822,31965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,584445 ,2,821,642650 ,2,822,135285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506520 ,2,827,75 ,2,828,440850 ,1,0,584595 ,2,821,646105 ,2,822,31995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,584715 ,2,821,646210 ,1,0,369200 ,1,1,369180 ,1,2,369150 ,1,3,369250 ,1,4,369170 ,1,5,369240 ,1,6,369140 ,1,7,369160 ,2,822,135265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506510 ,2,827,75 ,2,828,440840 ,1,0,585035 ,2,821,648310 ,1,0,243895 ,1,1,243835 ,1,2,243875 ,1,3,243825 ,1,4,243885 ,1,5,369190 ,1,6,369105 ,1,7,369210 ,2,822,135275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506515 ,2,827,75 ,2,828,440845 ,1,0,585165 ,2,821,650880 ,2,822,135355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506525 ,2,827,75 ,2,828,440870 ,1,0,585370 ,2,821,660365 ,2,822,32045 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,585615 ,2,821,660450 ,2,822,135390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506530 ,2,827,75 ,2,828,440875 ,1,0,585805 ,2,821,610 ,2,822,32065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,586005 ,2,821,800 ,2,822,135470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506535 ,2,827,75 ,2,828,440885 ,1,0,586280 ,2,821,7560 ,2,822,32085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,586490 ,2,821,7710 ,1,0,325005 ,2,822,135420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506065 ,2,827,75 ,2,828,440880 ,1,0,586675 ,2,821,8635 ,2,822,135530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506545 ,2,827,75 ,2,828,440910 ,1,0,586810 ,2,821,18720 ,2,822,32110 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,587075 ,2,821,18885 ,2,822,135510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,440900 ,1,0,587290 ,2,821,19490 ,1,0,179565 ,2,822,136145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500515 ,2,827,75 ,2,828,440895 ,1,0,587490 ,2,821,21390 ,2,822,135520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506540 ,2,827,75 ,2,828,440905 ,1,0,587700 ,2,821,30510 ,2,822,135565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506565 ,2,827,75 ,2,828,440955 ,1,0,587835 ,2,821,35895 ,2,822,32130 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,588045 ,2,821,36045 ,2,822,135605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506570 ,2,827,75 ,2,828,440965 ,1,0,588195 ,2,821,43715 ,2,822,32150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,588310 ,2,821,43880 ,2,822,135595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506065 ,2,827,75 ,2,828,440960 ,1,0,588510 ,2,821,44825 ,2,822,135670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506580 ,2,827,75 ,2,828,440975 ,1,0,588710 ,2,821,71615 ,2,822,32170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,588925 ,2,821,71775 ,1,0,179425 ,1,1,212310 ,1,2,164910 ,1,3,357420 ,1,4,357440 ,1,5,358775 ,2,822,135660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506575 ,2,827,75 ,2,828,440970 ,1,0,589110 ,2,821,78445 ,2,822,135700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506590 ,2,827,75 ,2,828,440980 ,1,0,589245 ,2,821,85355 ,2,822,32205 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,589370 ,2,821,85485 ,1,0,323690 ,2,822,135780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506600 ,2,827,75 ,2,828,440990 ,1,0,589525 ,2,821,99985 ,2,822,32225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,589660 ,2,821,100155 ,1,0,554335 ,1,1,314970 ,2,822,135710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506595 ,2,827,75 ,2,828,440985 ,1,0,589840 ,2,821,101470 ,2,822,135810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506605 ,2,827,75 ,2,828,441020 ,1,0,589955 ,2,821,106705 ,2,822,32260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590095 ,2,821,106850 ,2,822,135845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506645 ,2,827,75 ,2,828,441025 ,1,0,590230 ,2,821,125395 ,2,822,32280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590355 ,2,821,125575 ,2,822,136000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506655 ,2,827,75 ,2,828,441045 ,1,0,590475 ,2,821,137570 ,2,822,135855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497715 ,2,827,75 ,2,828,441030 ,1,0,590610 ,2,821,138590 ,2,822,135900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,441035 ,1,0,590745 ,2,821,139980 ,2,822,135920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506650 ,2,827,81455 ,2,828,441040 ,1,0,590860 ,2,821,146525 ,2,822,32375 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,590985 ,2,821,146695 ,2,822,32355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,591140 ,2,821,146840 ,2,822,136060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506670 ,2,827,75 ,2,828,441055 ,1,0,591255 ,2,821,168875 ,2,822,32425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,591390 ,2,821,169035 ,1,0,164330 ,2,822,136040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506660 ,2,827,75 ,2,828,441050 ,1,0,591500 ,2,821,187145 ,2,822,136125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506675 ,2,827,75 ,2,828,441080 ,1,0,591645 ,2,821,211960 ,2,822,32445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,591775 ,2,821,212115 ,2,822,136135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506680 ,2,827,56720 ,2,828,441085 ,1,0,591910 ,2,821,218725 ,2,822,32685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,592030 ,2,821,218860 ,2,822,136165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,81850 ,2,828,441150 ,1,0,592160 ,2,821,219575 ,1,0,246235 ,1,1,373270 ,1,2,373255 ,1,3,373245 ,1,4,369600 ,1,5,369620 ,1,6,221040 ,1,7,15960 ,1,8,15950 ,1,9,358945 ,1,10,369095 ,1,11,372705 ,1,12,372830 ,1,13,372305 ,1,14,373075 ,1,15,372840 ,1,16,369085 ,1,17,372295 ,1,18,369610 ,1,19,369280 ,1,20,369260 ,1,21,369075 ,1,22,369460 ,1,23,369520 ,1,24,369500 ,1,25,369450 ,1,26,369405 ,1,27,369310 ,1,28,369270 ,1,29,369480 ,1,30,369290 ,1,31,369510 ,1,32,369415 ,1,33,369470 ,1,34,369490 ,2,822,136445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506745 ,2,827,57830 ,2,828,441140 ,1,0,592360 ,2,821,278720 ,2,822,32465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,592565 ,2,821,278875 ,1,0,554165 ,1,1,313260 ,1,2,161350 ,2,822,136200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506710 ,2,827,75 ,2,828,441095 ,1,0,592725 ,2,821,282380 ,2,822,136260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,441100 ,1,0,592920 ,2,821,282950 ,2,822,136270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,593120 ,2,821,284620 ,2,822,136315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,593250 ,2,821,286410 ,1,0,15665 ,2,822,136325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506725 ,2,827,75 ,2,828,441115 ,1,0,593360 ,2,821,288625 ,1,0,372495 ,1,1,313295 ,1,2,313280 ,2,822,136370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506720 ,2,827,81840 ,2,828,441110 ,1,0,593560 ,2,821,292715 ,1,0,313270 ,2,822,136390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506715 ,2,827,75 ,2,828,441105 ,1,0,593745 ,2,821,293855 ,2,822,136335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506735 ,2,827,75 ,2,828,441125 ,1,0,593950 ,2,821,295270 ,2,822,136345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506735 ,2,827,75 ,2,828,441130 ,1,0,594170 ,2,821,296715 ,2,822,136360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506740 ,2,827,75 ,2,828,441135 ,1,0,594375 ,2,821,297820 ,2,822,32545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,594655 ,2,821,297965 ,2,822,32555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,594770 ,2,821,298120 ,2,822,32570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,594900 ,2,821,298265 ,2,822,136490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506775 ,2,827,75 ,2,828,441220 ,1,0,595270 ,2,821,300120 ,2,822,32580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,595470 ,2,821,300265 ,2,822,136500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506750 ,2,827,75 ,2,828,441215 ,1,0,595665 ,2,821,301525 ,1,0,359665 ,2,822,136560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,441210 ,1,0,596035 ,2,821,302160 ,1,0,368995 ,1,1,373290 ,2,822,136550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,441165 ,1,0,596375 ,2,821,302930 ,2,822,136540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497170 ,2,827,75 ,2,828,441160 ,1,0,597060 ,2,821,304395 ,2,822,32635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,597305 ,2,821,304570 ,2,822,32655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,597430 ,2,821,304725 ,2,822,32665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,597785 ,2,821,304910 ,2,822,32675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,597940 ,2,821,305080 ,1,0,556010 ,2,822,136650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506780 ,2,827,75 ,2,828,441235 ,1,0,598125 ,2,821,307980 ,1,0,246455 ,2,822,136660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,441225 ,1,0,598245 ,2,821,308525 ,2,822,136670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506785 ,2,827,82280 ,2,828,441240 ,1,0,598350 ,2,821,312630 ,1,0,359645 ,2,822,136680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,598545 ,2,821,315790 ,2,822,136720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,441245 ,1,0,598740 ,2,821,316730 ,1,0,313105 ,1,1,246375 ,1,2,161255 ,2,822,136755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506790 ,2,827,82330 ,2,828,441250 ,1,0,598865 ,2,821,319540 ,1,0,163035 ,2,822,136885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506800 ,2,827,75 ,2,828,441280 ,1,0,599000 ,2,821,325150 ,1,0,15365 ,2,822,136895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506795 ,2,827,75 ,2,828,441275 ,1,0,599200 ,2,821,326110 ,2,822,136950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,441305 ,1,0,599395 ,2,821,326670 ,2,822,32695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599590 ,2,821,326830 ,2,822,32730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599805 ,2,821,326990 ,2,822,576285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,599985 ,2,821,327650 ,2,822,32740 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,600220 ,2,821,327830 ,2,822,32750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,600490 ,2,821,327970 ,2,822,32760 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,600685 ,2,821,328145 ,2,822,32770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,600885 ,2,821,328295 ,2,822,32780 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,601075 ,2,821,328470 ,2,822,576345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,601255 ,2,821,329165 ,2,822,32840 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,601430 ,2,821,329350 ,1,0,315125 ,2,822,137260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506845 ,2,827,82795 ,2,828,441320 ,1,0,601625 ,2,821,338540 ,2,822,32850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,601840 ,2,821,338710 ,2,822,32860 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,602190 ,2,821,338895 ,2,822,576425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,602410 ,2,821,339585 ,1,0,247160 ,1,1,247140 ,1,2,247150 ,1,3,247130 ,1,4,358395 ,2,822,137345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506900 ,2,827,82975 ,2,828,441390 ,1,0,602635 ,2,821,347880 ,1,0,2280 ,1,1,542095 ,2,822,137355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506850 ,2,827,74615 ,2,828,441360 ,1,0,602920 ,2,821,350305 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,2,822,137365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506860 ,2,827,82915 ,2,828,441365 ,1,0,603315 ,2,821,357000 ,1,0,161705 ,2,822,137375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506865 ,2,827,27110 ,2,828,441370 ,1,0,603680 ,2,821,362835 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,137395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506870 ,2,827,82915 ,2,828,441375 ,1,0,603965 ,2,821,366965 ,1,0,2280 ,1,1,542095 ,2,822,137420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506875 ,2,827,82925 ,2,828,441385 ,1,0,604240 ,2,821,371300 ,2,822,32885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,604575 ,2,821,371475 ,1,0,45 ,1,1,11510 ,2,822,137440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,441410 ,1,0,604835 ,2,821,374135 ,1,0,216415 ,2,822,137535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506910 ,2,827,75 ,2,828,441400 ,1,0,605020 ,2,821,375435 ,2,822,137585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506905 ,2,827,75 ,2,828,441395 ,1,0,605305 ,2,821,376780 ,1,0,45 ,1,1,11510 ,2,822,137460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,441420 ,1,0,605520 ,2,821,378395 ,1,0,324200 ,1,1,236285 ,1,2,324190 ,1,3,236235 ,1,4,216440 ,2,822,137545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506915 ,2,827,75 ,2,828,441415 ,1,0,605690 ,2,821,381600 ,1,0,45 ,1,1,324155 ,2,822,137480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,441430 ,1,0,605900 ,2,821,383195 ,1,0,216425 ,2,822,137555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502860 ,2,827,75 ,2,828,441425 ,1,0,606115 ,2,821,384055 ,1,0,324210 ,1,1,137440 ,1,2,137480 ,1,3,137460 ,1,4,357490 ,2,822,137525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506925 ,2,827,83035 ,2,828,441435 ,1,0,606430 ,2,821,388040 ,2,822,36225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,606615 ,2,821,388125 ,1,0,216510 ,2,822,137575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506910 ,2,827,75 ,2,828,441440 ,1,0,606800 ,2,821,389000 ,2,822,32895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,607055 ,2,821,389105 ,2,822,32905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,607240 ,2,821,389200 ,2,822,32915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,607445 ,2,821,389290 ,2,822,576485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,607665 ,2,821,389630 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,11690 ,2,822,137680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506840 ,2,827,75 ,2,828,441465 ,1,0,607870 ,2,821,391730 ,1,0,554465 ,1,1,316795 ,2,822,137820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506930 ,2,827,75 ,2,828,441445 ,1,0,608075 ,2,821,393415 ,2,822,137700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,441490 ,1,0,608365 ,2,821,394450 ,1,0,231250 ,2,822,137875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506975 ,2,827,75 ,2,828,441485 ,1,0,608575 ,2,821,395895 ,1,0,216470 ,2,822,137710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506935 ,2,827,75 ,2,828,441470 ,1,0,608785 ,2,821,398655 ,1,0,212215 ,2,822,137755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,441475 ,1,0,609050 ,2,821,401325 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,137865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506940 ,2,827,82915 ,2,828,441480 ,1,0,609420 ,2,821,403645 ,2,822,137775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,441530 ,1,0,609800 ,2,821,404670 ,1,0,231260 ,1,1,162225 ,2,822,137885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506980 ,2,827,75 ,2,828,441500 ,1,0,610060 ,2,821,406185 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,137830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506940 ,2,827,82915 ,2,828,441495 ,1,0,610385 ,2,821,408465 ,1,0,45 ,1,1,316815 ,2,822,137800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,441540 ,1,0,610650 ,2,821,410055 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,1,8,2280 ,1,9,542095 ,1,10,2280 ,1,11,542095 ,1,12,2210 ,1,13,542350 ,1,14,2210 ,1,15,542350 ,2,822,137895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506985 ,2,827,82915 ,2,828,441535 ,1,0,610855 ,2,821,417310 ,2,822,137990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,441550 ,1,0,611210 ,2,821,417960 ,1,0,554895 ,2,822,138020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506995 ,2,827,83215 ,2,828,441545 ,1,0,611400 ,2,821,419240 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,213430 ,2,822,138030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507005 ,2,827,83225 ,2,828,441555 ,1,0,611705 ,2,821,434335 ,2,822,138090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,441560 ,1,0,612035 ,2,821,435435 ,1,0,45 ,1,1,5900 ,2,822,138110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507010 ,2,827,75 ,2,828,441565 ,1,0,612295 ,2,821,436470 ,1,0,45 ,1,1,5900 ,2,822,138130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507035 ,2,827,75 ,2,828,441595 ,1,0,612595 ,2,821,438250 ,1,0,45 ,1,1,5900 ,2,822,138140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507040 ,2,827,83335 ,2,828,441600 ,1,0,612910 ,2,821,440610 ,1,0,45 ,1,1,5900 ,2,822,138175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502730 ,2,827,75 ,2,828,441605 ,1,0,613095 ,2,821,442330 ,1,0,45 ,1,1,5900 ,2,822,138185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502735 ,2,827,75 ,2,828,441610 ,1,0,613305 ,2,821,444180 ,1,0,45 ,1,1,5900 ,2,822,138195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507060 ,2,827,75 ,2,828,441630 ,1,0,613480 ,2,821,447195 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,138285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507045 ,2,827,75 ,2,828,441620 ,1,0,613830 ,2,821,455145 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,138220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507050 ,2,827,75 ,2,828,441625 ,1,0,613990 ,2,821,459380 ,2,822,138205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507065 ,2,827,75 ,2,828,441635 ,1,0,614495 ,2,821,459915 ,2,822,138230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507095 ,2,827,75 ,2,828,441690 ,1,0,614910 ,2,821,461680 ,1,0,45 ,1,1,5900 ,1,2,317470 ,2,822,138250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507075 ,2,827,75 ,2,828,441685 ,1,0,615135 ,2,821,463185 ,1,0,45 ,1,1,5900 ,2,822,138240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507070 ,2,827,75 ,2,828,441680 ,1,0,615375 ,2,821,464390 ,2,822,32995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,615565 ,2,821,464510 ,1,0,213370 ,2,822,138315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507100 ,2,827,75 ,2,828,441695 ,1,0,615850 ,2,821,466000 ,1,0,213410 ,1,1,554560 ,2,822,138340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507105 ,2,827,75 ,2,828,441705 ,1,0,616075 ,2,821,468285 ,1,0,45 ,1,1,5900 ,2,822,138360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507110 ,2,827,75 ,2,828,441710 ,1,0,616255 ,2,821,471700 ,2,822,138395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,616575 ,2,821,471940 ,1,0,45 ,1,1,5900 ,2,822,138425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507130 ,2,827,75 ,2,828,441735 ,1,0,616770 ,2,821,474280 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,213330 ,2,822,138450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507125 ,2,827,83430 ,2,828,441715 ,1,0,616960 ,2,821,476915 ,1,0,45 ,1,1,209800 ,2,822,138460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,441720 ,1,0,617220 ,2,821,478535 ,1,0,45 ,1,1,5900 ,1,2,162450 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,2210 ,1,8,542350 ,2,822,138510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507135 ,2,827,83440 ,2,828,441740 ,1,0,617380 ,2,821,485270 ,1,0,45 ,1,1,5900 ,2,822,138530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507140 ,2,827,83225 ,2,828,441745 ,1,0,617705 ,2,821,487260 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,2210 ,1,5,542350 ,2,822,138640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507175 ,2,827,83460 ,2,828,441750 ,1,0,617960 ,2,821,492815 ,1,0,213390 ,2,822,138745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507180 ,2,827,75 ,2,828,441760 ,1,0,618140 ,2,821,495435 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,138765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507185 ,2,827,83590 ,2,828,441765 ,1,0,618310 ,2,821,496965 ,1,0,213620 ,2,822,138855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507190 ,2,827,75 ,2,828,441770 ,1,0,618515 ,2,821,498135 ,1,0,554945 ,1,1,554900 ,2,822,138895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507250 ,2,827,83730 ,2,828,441825 ,1,0,618715 ,2,821,499760 ,1,0,542755 ,1,1,558485 ,1,2,542755 ,1,3,612280 ,1,4,218580 ,2,822,138905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507200 ,2,827,72215 ,2,828,441775 ,1,0,619180 ,2,821,503445 ,2,822,33070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,619410 ,2,821,503575 ,2,822,138990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507205 ,2,827,75 ,2,828,441800 ,1,0,619605 ,2,821,506075 ,2,822,139045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507205 ,2,827,75 ,2,828,441805 ,1,0,619780 ,2,821,508630 ,2,822,139085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507210 ,2,827,75 ,2,828,441810 ,1,0,619960 ,2,821,509270 ,2,822,139145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507215 ,2,827,75 ,2,828,441815 ,1,0,620185 ,2,821,509965 ,2,822,33080 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,620370 ,2,821,510065 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,139205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507255 ,2,827,83590 ,2,828,441830 ,1,0,620540 ,2,821,511680 ,2,822,33105 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,620720 ,2,821,511790 ,2,822,33115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,620955 ,2,821,511885 ,2,822,33155 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,621140 ,2,821,511975 ,2,822,33175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,621435 ,2,821,512060 ,2,822,33195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,621675 ,2,821,512160 ,2,822,33205 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,621855 ,2,821,512260 ,1,0,314780 ,2,822,139505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507265 ,2,827,75 ,2,828,441840 ,1,0,622205 ,2,821,514075 ,2,822,33215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,622445 ,2,821,514185 ,2,822,139545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507270 ,2,827,75 ,2,828,441855 ,1,0,622675 ,2,821,517710 ,2,822,33225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,622865 ,2,821,517800 ,2,822,139620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507275 ,2,827,75 ,2,828,441865 ,1,0,623030 ,2,821,519610 ,2,822,139630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,441860 ,1,0,623280 ,2,821,520245 ,1,0,162700 ,2,822,139640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507280 ,2,827,25645 ,2,828,441870 ,1,0,623525 ,2,821,521325 ,2,822,139720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,623780 ,2,821,522310 ,2,822,570665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,623980 ,2,821,522765 ,2,822,33295 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,624255 ,2,821,522855 ,1,0,2210 ,1,1,542350 ,2,822,139840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507305 ,2,827,75 ,2,828,441880 ,1,0,624555 ,2,821,524415 ,2,822,139850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,441885 ,1,0,624810 ,2,821,525095 ,1,0,100245 ,2,822,139870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507310 ,2,827,84305 ,2,828,441890 ,1,0,625050 ,2,821,527625 ,2,822,139900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507315 ,2,827,76930 ,2,828,441930 ,1,0,625320 ,2,821,530405 ,2,822,33310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,625580 ,2,821,530485 ,2,822,33320 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,625845 ,2,821,530595 ,2,822,576985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,626030 ,2,821,531050 ,1,0,162720 ,2,822,139930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507335 ,2,827,66710 ,2,828,441940 ,1,0,626215 ,2,821,538155 ,1,0,354225 ,1,1,318130 ,1,2,354235 ,1,3,318120 ,2,822,139940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507330 ,2,827,75 ,2,828,441935 ,1,0,626460 ,2,821,540975 ,2,822,33340 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,626575 ,2,821,541080 ,1,0,45 ,1,1,5900 ,1,2,231000 ,2,822,140035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507345 ,2,827,75 ,2,828,441955 ,1,0,626800 ,2,821,543845 ,1,0,225045 ,1,1,318065 ,1,2,2210 ,1,3,542350 ,2,822,140390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507340 ,2,827,34035 ,2,828,441945 ,1,0,627010 ,2,821,551645 ,1,0,45 ,1,1,276975 ,2,822,140050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,441960 ,1,0,627260 ,2,821,553315 ,2,822,140060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,627460 ,2,821,553585 ,2,822,140070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,441965 ,1,0,627715 ,2,821,554660 ,1,0,566445 ,1,1,45 ,1,2,276975 ,2,822,140130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,441990 ,1,0,627870 ,2,821,556250 ,1,0,318075 ,1,1,140050 ,2,822,140250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507380 ,2,827,84615 ,2,828,441970 ,1,0,628015 ,2,821,558390 ,2,822,140140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,628260 ,2,821,559350 ,2,822,33395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,628815 ,2,821,559430 ,2,822,140175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,442000 ,1,0,629060 ,2,821,560485 ,2,822,140240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507385 ,2,827,75 ,2,828,441995 ,1,0,629395 ,2,821,561265 ,2,822,140185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500180 ,2,827,75 ,2,828,442005 ,1,0,629585 ,2,821,561850 ,1,0,45 ,1,1,192820 ,2,822,140195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,442010 ,1,0,629850 ,2,821,563465 ,2,822,140230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507390 ,2,827,75 ,2,828,442015 ,1,0,630025 ,2,821,567695 ,2,822,140280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,442020 ,1,0,630205 ,2,821,568745 ,2,822,140495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,630460 ,2,821,569015 ,2,822,140290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,442025 ,1,0,630730 ,2,821,569605 ,1,0,570460 ,1,1,45 ,1,2,192820 ,2,822,140300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,442030 ,1,0,630980 ,2,821,571265 ,1,0,140070 ,1,1,230765 ,2,822,140310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507395 ,2,827,84635 ,2,828,442035 ,1,0,631380 ,2,821,572635 ,1,0,570620 ,1,1,45 ,1,2,192820 ,2,822,140345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,442040 ,1,0,631635 ,2,821,574305 ,1,0,140280 ,1,1,227215 ,2,822,140365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507400 ,2,827,84660 ,2,828,442045 ,1,0,631845 ,2,821,575545 ,1,0,577050 ,1,1,45 ,1,2,192820 ,2,822,140375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,442065 ,1,0,632045 ,2,821,577175 ,1,0,213150 ,1,1,213140 ,1,2,213110 ,1,3,213100 ,1,4,230295 ,2,822,140420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507405 ,2,827,75 ,2,828,442070 ,1,0,632250 ,2,821,585270 ,1,0,121605 ,1,1,162710 ,1,2,45 ,1,3,5900 ,2,822,140535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507495 ,2,827,85215 ,2,828,442225 ,1,0,632570 ,2,821,593605 ,1,0,354350 ,1,1,354305 ,2,822,141085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507490 ,2,827,84680 ,2,828,442075 ,1,0,632775 ,2,821,595500 ,2,822,33415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,633255 ,2,821,595600 ,2,822,33445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,633455 ,2,821,595700 ,2,822,33480 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,633630 ,2,821,595795 ,2,822,577095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,633805 ,2,821,596210 ,2,822,33490 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,634005 ,2,821,596305 ,1,0,45 ,1,1,198665 ,1,2,45 ,1,3,167895 ,2,822,140645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,442215 ,1,0,634395 ,2,821,598595 ,1,0,546765 ,2,822,141005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,442210 ,1,0,634615 ,2,821,598995 ,2,822,33500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,634855 ,2,821,599130 ,2,822,140655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507415 ,2,827,84925 ,2,828,442080 ,1,0,635120 ,2,821,602910 ,2,822,33530 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,637485 ,2,821,603020 ,2,822,140685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507410 ,2,827,75 ,2,828,442125 ,1,0,637930 ,2,821,604300 ,2,822,33550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,638475 ,2,821,604435 ,2,822,140770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507445 ,2,827,75 ,2,828,442140 ,1,0,638710 ,2,821,605300 ,1,0,180925 ,2,822,140850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507440 ,2,827,85030 ,2,828,442130 ,1,0,639325 ,2,821,633185 ,1,0,213530 ,2,822,140790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507435 ,2,827,75 ,2,828,442135 ,1,0,639915 ,2,821,634190 ,2,822,140800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507450 ,2,827,75 ,2,828,442145 ,1,0,640455 ,2,821,635040 ,2,822,140810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507445 ,2,827,75 ,2,828,442150 ,1,0,640650 ,2,821,635855 ,2,822,140840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507445 ,2,827,75 ,2,828,442155 ,1,0,640910 ,2,821,636690 ,2,822,140915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501890 ,2,827,75 ,2,828,442195 ,1,0,641300 ,2,821,637395 ,1,0,218515 ,1,1,555735 ,1,2,164320 ,1,3,328805 ,1,4,548685 ,2,822,140975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507460 ,2,827,75 ,2,828,442190 ,1,0,641760 ,2,821,641735 ,1,0,359085 ,1,1,359045 ,1,2,180250 ,1,3,359075 ,1,4,180295 ,1,5,359055 ,1,6,180240 ,2,822,140955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507455 ,2,827,85105 ,2,828,442160 ,1,0,641955 ,2,821,643815 ,2,822,140925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503830 ,2,827,75 ,2,828,442200 ,1,0,642175 ,2,821,644550 ,1,0,328795 ,2,822,140965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507465 ,2,827,75 ,2,828,442205 ,1,0,642590 ,2,821,646915 ,1,0,220170 ,1,1,550405 ,2,822,140995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507470 ,2,827,75 ,2,828,438195 ,1,0,642835 ,2,821,647630 ,2,822,577225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,643040 ,2,821,647995 ,1,0,554645 ,1,1,359105 ,2,822,140565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,442220 ,1,0,643210 ,2,821,648925 ,1,0,554970 ,1,1,374820 ,2,822,141100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507500 ,2,827,85565 ,2,828,442255 ,1,0,643395 ,2,821,650235 ,2,822,28255 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,643565 ,2,821,650350 ,2,822,28270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,643775 ,2,821,650445 ,1,0,226645 ,2,822,141185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507525 ,2,827,75 ,2,828,442280 ,1,0,643975 ,2,821,655245 ,1,0,230525 ,2,822,141130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507515 ,2,827,85245 ,2,828,442270 ,1,0,644300 ,2,821,658255 ,1,0,230505 ,2,822,141175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507520 ,2,827,85255 ,2,828,442275 ,1,0,644655 ,2,821,664110 ,1,0,230495 ,1,1,163810 ,1,2,121000 ,1,3,120975 ,2,822,121115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507565 ,2,827,85265 ,2,828,442290 ,1,0,645005 ,2,821,667160 ,2,822,28140 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,645355 ,2,821,667245 ,2,822,141205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503005 ,2,827,75 ,2,828,442310 ,1,0,645730 ,2,821,668745 ,2,822,141215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,646040 ,2,821,669570 ,1,0,258630 ,2,822,117030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507570 ,2,827,85350 ,2,828,442315 ,1,0,646445 ,2,821,670665 ,2,822,121900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507580 ,2,827,75 ,2,828,442325 ,1,0,646755 ,2,821,672670 ,2,822,141275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507590 ,2,827,75 ,2,828,442340 ,1,0,647125 ,2,821,673730 ,2,822,141285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507595 ,2,827,75 ,2,828,442345 ,1,0,647490 ,2,821,674935 ,1,0,226155 ,1,1,162340 ,2,822,141305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507600 ,2,827,75 ,2,828,442350 ,1,0,647840 ,2,821,3410 ,1,0,317000 ,1,1,316990 ,2,822,141330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507620 ,2,827,24545 ,2,828,442375 ,1,0,648080 ,2,821,16510 ,1,0,226655 ,2,822,141390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507625 ,2,827,75 ,2,828,442380 ,1,0,648270 ,2,821,17680 ,2,822,141410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507630 ,2,827,75 ,2,828,442385 ,1,0,648545 ,2,821,19265 ,2,822,570280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,648755 ,2,821,19975 ,2,822,141480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507635 ,2,827,75 ,2,828,442390 ,1,0,648960 ,2,821,22920 ,1,0,555335 ,1,1,250315 ,1,2,217710 ,2,822,141490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507640 ,2,827,25980 ,2,828,442400 ,1,0,649095 ,2,821,32705 ,1,0,328070 ,2,822,141500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507645 ,2,827,75 ,2,828,442410 ,1,0,649330 ,2,821,33565 ,2,822,141510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,442405 ,1,0,649510 ,2,821,34185 ,2,822,141525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,649810 ,2,821,35065 ,2,822,26205 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,650060 ,2,821,35245 ,1,0,327550 ,2,822,141535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,442435 ,1,0,650290 ,2,821,35780 ,2,822,141555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,442445 ,1,0,650520 ,2,821,36340 ,1,0,250650 ,1,1,250660 ,1,2,250670 ,1,3,250725 ,1,4,250680 ,1,5,250715 ,1,6,241150 ,1,7,163785 ,1,8,163775 ,1,9,163765 ,1,10,550410 ,2,822,141595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507655 ,2,827,85580 ,2,828,442450 ,1,0,650790 ,2,821,53285 ,2,822,36125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,651255 ,2,821,53430 ,1,0,163820 ,2,822,141625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507675 ,2,827,75 ,2,828,442455 ,1,0,651605 ,2,821,54960 ,2,822,141635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,442460 ,1,0,651945 ,2,821,56665 ,1,0,554825 ,1,1,323295 ,1,2,323285 ,1,3,323275 ,1,4,323265 ,1,5,323255 ,1,6,323245 ,1,7,323215 ,1,8,323205 ,1,9,323195 ,1,10,323185 ,1,11,359625 ,1,12,323170 ,1,13,323160 ,1,14,323150 ,1,15,323140 ,1,16,323090 ,1,17,323080 ,1,18,323070 ,1,19,323060 ,2,822,112350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507680 ,2,827,72000 ,2,828,442465 ,1,0,652205 ,2,821,71005 ,2,822,141685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,442510 ,1,0,652390 ,2,821,72660 ,1,0,223745 ,2,822,141715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507685 ,2,827,75 ,2,828,442505 ,1,0,652595 ,2,821,73680 ,2,822,33645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,653255 ,2,821,73840 ,2,822,141790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,445925 ,1,0,653560 ,2,821,74090 ,2,822,33665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,653805 ,2,821,74270 ,2,822,141800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509625 ,2,827,91345 ,2,828,445920 ,1,0,653960 ,2,821,76705 ,2,822,33695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,654230 ,2,821,76860 ,2,822,33705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,654420 ,2,821,77050 ,2,822,141840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507690 ,2,827,75 ,2,828,442525 ,1,0,654565 ,2,821,78125 ,1,0,250970 ,2,822,141850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507700 ,2,827,75 ,2,828,442530 ,1,0,654670 ,2,821,97005 ,2,822,577285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,654855 ,2,821,97725 ,2,822,141860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507705 ,2,827,85830 ,2,828,442540 ,1,0,655025 ,2,821,99190 ,2,822,141895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,442560 ,1,0,655275 ,2,821,100085 ,2,822,141915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507710 ,2,827,85830 ,2,828,442565 ,1,0,655495 ,2,821,101340 ,2,822,141925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506015 ,2,827,75 ,2,828,440065 ,1,0,655665 ,2,821,103075 ,2,822,577350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,655910 ,2,821,104265 ,2,822,142050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,442575 ,1,0,656180 ,2,821,108130 ,2,822,33795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,656415 ,2,821,108280 ,2,822,33805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,656600 ,2,821,108450 ,2,822,33815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,656840 ,2,821,108610 ,2,822,142160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507715 ,2,827,75 ,2,828,442585 ,1,0,657145 ,2,821,109435 ,1,0,6215 ,1,1,45 ,1,2,5900 ,1,3,11245 ,1,4,45 ,1,5,5900 ,2,822,142215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507735 ,2,827,75 ,2,828,442590 ,1,0,657260 ,2,821,114600 ,2,822,33845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,657430 ,2,821,114750 ,1,0,315840 ,1,1,315830 ,1,2,315820 ,1,3,315810 ,2,822,142225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507740 ,2,827,97425 ,2,828,442595 ,1,0,657635 ,2,821,120740 ,1,0,252100 ,1,1,355280 ,1,2,252165 ,1,3,355340 ,1,4,252080 ,1,5,252145 ,1,6,252115 ,1,7,252125 ,1,8,355300 ,1,9,252090 ,1,10,355260 ,1,11,315785 ,1,12,355210 ,1,13,252015 ,1,14,355230 ,1,15,252070 ,1,16,355240 ,1,17,252005 ,1,18,355220 ,1,19,252175 ,1,20,252135 ,1,21,315775 ,2,822,142250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507745 ,2,827,97425 ,2,828,442600 ,1,0,657885 ,2,821,134235 ,2,822,33895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,658175 ,2,821,134400 ,1,0,316020 ,2,822,142325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507760 ,2,827,86290 ,2,828,442640 ,1,0,658445 ,2,821,135740 ,2,822,142345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,442660 ,1,0,658650 ,2,821,136510 ,1,0,356005 ,1,1,142370 ,2,822,142390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507755 ,2,827,86300 ,2,828,442645 ,1,0,658850 ,2,821,138260 ,1,0,45 ,1,1,343420 ,2,822,142370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507750 ,2,827,75 ,2,828,442655 ,1,0,659010 ,2,821,140890 ,1,0,212655 ,2,822,142380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,442650 ,1,0,659205 ,2,821,144425 ,2,822,577485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,659405 ,2,821,145410 ,2,822,34060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,659570 ,2,821,145580 ,1,0,315630 ,1,1,315620 ,1,2,315610 ,1,3,252330 ,2,822,142420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507770 ,2,827,86290 ,2,828,442670 ,1,0,659830 ,2,821,155940 ,1,0,315600 ,2,822,142430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507765 ,2,827,75 ,2,828,442665 ,1,0,660030 ,2,821,157105 ,1,0,252385 ,2,822,142440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507805 ,2,827,86290 ,2,828,442700 ,1,0,660330 ,2,821,163115 ,1,0,315560 ,2,822,142450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507765 ,2,827,75 ,2,828,442675 ,1,0,660620 ,2,821,164290 ,1,0,259835 ,1,1,252415 ,2,822,142460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507820 ,2,827,86290 ,2,828,442715 ,1,0,660890 ,2,821,165765 ,1,0,252405 ,1,1,316260 ,2,822,142480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507815 ,2,827,75 ,2,828,442710 ,1,0,661060 ,2,821,167515 ,1,0,316245 ,1,1,316235 ,1,2,316225 ,1,3,316215 ,1,4,316170 ,1,5,316160 ,2,822,142470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507810 ,2,827,75 ,2,828,442705 ,1,0,661465 ,2,821,171310 ,1,0,252435 ,2,822,142505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507845 ,2,827,86290 ,2,828,442735 ,1,0,661730 ,2,821,172715 ,1,0,315570 ,2,822,142515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507840 ,2,827,75 ,2,828,442730 ,1,0,662180 ,2,821,173830 ,1,0,252455 ,2,822,142525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507845 ,2,827,86290 ,2,828,442745 ,1,0,662440 ,2,821,175300 ,1,0,315550 ,2,822,142535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507840 ,2,827,75 ,2,828,442740 ,1,0,664870 ,2,821,176370 ,1,0,316010 ,2,822,142545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507760 ,2,827,86290 ,2,828,442770 ,1,0,665455 ,2,821,177835 ,2,822,33950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,666135 ,2,821,178015 ,1,0,315725 ,1,1,251305 ,1,2,251525 ,1,3,251045 ,1,4,251035 ,1,5,251420 ,1,6,315715 ,1,7,315670 ,1,8,251000 ,1,9,252555 ,1,10,251350 ,1,11,315660 ,1,12,315650 ,1,13,315640 ,2,822,142620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507855 ,2,827,86495 ,2,828,442780 ,1,0,666795 ,2,821,185875 ,1,0,317715 ,1,1,317705 ,2,822,142640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507850 ,2,827,86475 ,2,828,442775 ,1,0,667570 ,2,821,190805 ,1,0,315060 ,2,822,142705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507875 ,2,827,75 ,2,828,442790 ,1,0,668255 ,2,821,192245 ,1,0,212285 ,2,822,142715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507870 ,2,827,75 ,2,828,442785 ,1,0,668365 ,2,821,194030 ,1,0,195530 ,1,1,315735 ,2,822,142725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507880 ,2,827,75 ,2,828,442795 ,1,0,668540 ,2,821,199150 ,1,0,252800 ,2,822,142735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507885 ,2,827,86740 ,2,828,442800 ,1,0,668770 ,2,821,202695 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,184650 ,1,9,184660 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,2,822,142805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507890 ,2,827,86785 ,2,828,442805 ,1,0,668960 ,2,821,220725 ,2,822,577415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,669515 ,2,821,221310 ,2,822,142815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507895 ,2,827,86845 ,2,828,442835 ,1,0,669760 ,2,821,224250 ,1,0,162045 ,2,822,142825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507900 ,2,827,75 ,2,828,442840 ,1,0,669945 ,2,821,225525 ,1,0,315540 ,2,822,142835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507905 ,2,827,75 ,2,828,442845 ,1,0,670485 ,2,821,228310 ,2,822,142845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,442850 ,1,0,670990 ,2,821,228825 ,1,0,252940 ,1,1,314615 ,1,2,367595 ,1,3,554275 ,2,822,142855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507935 ,2,827,86855 ,2,828,442855 ,1,0,671435 ,2,821,242995 ,2,822,577635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,671680 ,2,821,243670 ,1,0,370960 ,1,1,370950 ,1,2,162755 ,2,822,142865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507940 ,2,827,75 ,2,828,442860 ,1,0,671895 ,2,821,245190 ,2,822,142875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,442865 ,1,0,672130 ,2,821,245730 ,2,822,142900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507945 ,2,827,86875 ,2,828,442870 ,1,0,672430 ,2,821,248735 ,1,0,355125 ,2,822,142910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507950 ,2,827,86875 ,2,828,442900 ,1,0,672605 ,2,821,252300 ,2,822,34070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,672775 ,2,821,252460 ,2,822,577660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,673175 ,2,821,253155 ,1,0,315870 ,1,1,315860 ,1,2,315850 ,2,822,142955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507955 ,2,827,75 ,2,828,442905 ,1,0,673370 ,2,821,256870 ,2,822,34105 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,673625 ,2,821,257050 ,2,822,34115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,673875 ,2,821,257210 ,1,0,143010 ,2,822,142990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507960 ,2,827,87075 ,2,828,442910 ,1,0,674155 ,2,821,259175 ,2,822,143010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,442925 ,1,0,674460 ,2,821,260825 ,2,822,143020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502520 ,2,827,75 ,2,828,442920 ,1,0,674765 ,2,821,261960 ,2,822,143035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507965 ,2,827,87075 ,2,828,442930 ,1,0,674940 ,2,821,263940 ,2,822,34175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,130 ,2,821,264100 ,2,822,143130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507970 ,2,827,87260 ,2,828,442935 ,1,0,730 ,2,821,271310 ,2,822,34235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,1285 ,2,821,271475 ,1,0,364360 ,1,1,550445 ,2,822,143225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507990 ,2,827,75 ,2,828,442950 ,1,0,1700 ,2,821,275560 ,2,822,143235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507995 ,2,827,87410 ,2,828,442955 ,1,0,2025 ,2,821,279580 ,2,822,143265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508000 ,2,827,75 ,2,828,442960 ,1,0,2350 ,2,821,283630 ,1,0,374905 ,2,822,143275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508005 ,2,827,75 ,2,828,442965 ,1,0,2780 ,2,821,284725 ,2,822,577745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,3195 ,2,821,285285 ,2,822,143330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508010 ,2,827,26010 ,2,828,442970 ,1,0,3630 ,2,821,287455 ,2,822,143340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508015 ,2,827,26010 ,2,828,442975 ,1,0,3940 ,2,821,289545 ,2,822,143350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508020 ,2,827,87420 ,2,828,442980 ,1,0,4245 ,2,821,294700 ,2,822,143385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508025 ,2,827,26010 ,2,828,442985 ,1,0,4580 ,2,821,297440 ,2,822,143395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508055 ,2,827,26010 ,2,828,443015 ,1,0,4910 ,2,821,299900 ,2,822,143430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,443020 ,1,0,5250 ,2,821,300570 ,2,822,143440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508070 ,2,827,87465 ,2,828,443040 ,1,0,5555 ,2,821,306690 ,1,0,315070 ,1,1,2210 ,1,2,542350 ,1,3,2210 ,1,4,542350 ,2,822,143475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508060 ,2,827,75 ,2,828,443025 ,1,0,5865 ,2,821,313065 ,1,0,2210 ,1,1,542350 ,2,822,144310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508065 ,2,827,87440 ,2,828,443030 ,1,0,6165 ,2,821,333325 ,1,0,45 ,1,1,313410 ,2,822,143450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,443045 ,1,0,6485 ,2,821,335955 ,2,822,143460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508085 ,2,827,75 ,2,828,443055 ,1,0,6940 ,2,821,337395 ,2,822,145835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,443050 ,1,0,7170 ,2,821,338280 ,1,0,45 ,1,1,192820 ,2,822,143495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,443100 ,1,0,7485 ,2,821,341035 ,2,822,144240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,443095 ,1,0,7825 ,2,821,341725 ,2,822,143505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499355 ,2,827,75 ,2,828,443125 ,1,0,8250 ,2,821,343320 ,2,822,143830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508125 ,2,827,87475 ,2,828,443120 ,1,0,8575 ,2,821,358635 ,2,822,143725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508090 ,2,827,75 ,2,828,443105 ,1,0,8910 ,2,821,360405 ,1,0,2210 ,1,1,542350 ,2,822,145440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508100 ,2,827,34150 ,2,828,443115 ,1,0,9200 ,2,821,378265 ,2,822,146330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508095 ,2,827,75 ,2,828,443110 ,1,0,9515 ,2,821,379100 ,1,0,45 ,1,1,184220 ,2,822,143540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,443130 ,1,0,9815 ,2,821,380595 ,2,822,143585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,443160 ,1,0,11105 ,2,821,381440 ,1,0,45 ,1,1,5900 ,2,822,143595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508135 ,2,827,87485 ,2,828,443175 ,1,0,11525 ,2,821,386695 ,2,822,145895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508130 ,2,827,75 ,2,828,443170 ,1,0,12095 ,2,821,389685 ,2,822,145560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,443165 ,1,0,12410 ,2,821,390245 ,1,0,2210 ,1,1,542350 ,2,822,143605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508140 ,2,827,87440 ,2,828,443185 ,1,0,13905 ,2,821,403410 ,2,822,143665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,443240 ,1,0,14435 ,2,821,404445 ,2,822,143715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,443235 ,1,0,14965 ,2,821,404850 ,2,822,145505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,443230 ,1,0,15290 ,2,821,405380 ,2,822,144080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508165 ,2,827,75 ,2,828,443200 ,1,0,16795 ,2,821,406760 ,1,0,45 ,1,1,5900 ,2,822,144190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508160 ,2,827,87520 ,2,828,443195 ,1,0,17330 ,2,821,414365 ,2,822,146095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508155 ,2,827,87510 ,2,828,443190 ,1,0,17735 ,2,821,417575 ,2,822,143675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508170 ,2,827,87530 ,2,828,443245 ,1,0,18070 ,2,821,418495 ,2,822,143695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500010 ,2,827,75 ,2,828,443255 ,1,0,18530 ,2,821,419245 ,2,822,143705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508190 ,2,827,75 ,2,828,443260 ,1,0,18945 ,2,821,420280 ,2,822,143765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508200 ,2,827,75 ,2,828,443270 ,1,0,19380 ,2,821,421540 ,1,0,253795 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,2,822,143810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508195 ,2,827,87540 ,2,828,443265 ,1,0,19780 ,2,821,438440 ,2,822,143775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508205 ,2,827,87575 ,2,828,443285 ,1,0,20130 ,2,821,447985 ,2,822,143785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508155 ,2,827,87510 ,2,828,443290 ,1,0,20545 ,2,821,451115 ,2,822,143820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,443295 ,1,0,20865 ,2,821,451505 ,2,822,143865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,443310 ,1,0,22375 ,2,821,452535 ,2,822,145855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,443305 ,1,0,22925 ,2,821,452945 ,2,822,146005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,443300 ,1,0,23505 ,2,821,453455 ,1,0,15675 ,1,1,373435 ,2,822,143885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508220 ,2,827,87595 ,2,828,443315 ,1,0,23815 ,2,821,463310 ,2,822,143895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508230 ,2,827,87625 ,2,828,443355 ,1,0,25055 ,2,821,476735 ,2,822,145950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508225 ,2,827,87605 ,2,828,443320 ,1,0,25620 ,2,821,483175 ,1,0,45 ,1,1,184220 ,2,822,143915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,443365 ,1,0,25940 ,2,821,484705 ,2,822,143925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,443370 ,1,0,27000 ,2,821,485875 ,2,822,143935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508310 ,2,827,75 ,2,828,443440 ,1,0,27310 ,2,821,491540 ,2,822,144030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508305 ,2,827,75 ,2,828,443435 ,1,0,27760 ,2,821,492270 ,1,0,253070 ,1,1,315915 ,1,2,2210 ,1,3,542350 ,2,822,144020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508300 ,2,827,87655 ,2,828,443425 ,1,0,28095 ,2,821,502655 ,1,0,252425 ,2,822,143985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508275 ,2,827,87635 ,2,828,443375 ,1,0,28655 ,2,821,504970 ,2,822,143965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508235 ,2,827,75 ,2,828,443380 ,1,0,29760 ,2,821,505420 ,2,822,143975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508270 ,2,827,87645 ,2,828,443385 ,1,0,30925 ,2,821,506585 ,2,822,143995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508280 ,2,827,75 ,2,828,443390 ,1,0,31480 ,2,821,507325 ,2,822,144010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508285 ,2,827,75 ,2,828,443430 ,1,0,31795 ,2,821,507825 ,1,0,45 ,1,1,5900 ,1,2,550455 ,1,3,2210 ,1,4,542350 ,2,822,144040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508315 ,2,827,87700 ,2,828,443450 ,1,0,32295 ,2,821,523165 ,2,822,577815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,32925 ,2,821,523525 ,2,822,144060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508355 ,2,827,87710 ,2,828,443455 ,1,0,33465 ,2,821,524930 ,2,822,144070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508360 ,2,827,33600 ,2,828,443460 ,1,0,33875 ,2,821,526620 ,1,0,211605 ,2,822,144090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498555 ,2,827,75 ,2,828,443465 ,1,0,34090 ,2,821,529425 ,2,822,144110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,443490 ,1,0,34415 ,2,821,530590 ,1,0,45 ,1,1,182815 ,2,822,144130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,443500 ,1,0,34825 ,2,821,532160 ,2,822,144200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508365 ,2,827,62605 ,2,828,443495 ,1,0,35300 ,2,821,533960 ,2,822,144180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,443505 ,1,0,35620 ,2,821,535100 ,1,0,45 ,1,1,5900 ,2,822,144220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508370 ,2,827,87720 ,2,828,443510 ,1,0,36260 ,2,821,540445 ,2,822,144230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,443515 ,1,0,36795 ,2,821,541140 ,1,0,45 ,1,1,221620 ,2,822,144280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,443525 ,1,0,37310 ,2,821,542830 ,2,822,146300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,443520 ,1,0,37635 ,2,821,543325 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,144300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,443555 ,1,0,38155 ,2,821,545460 ,1,0,161360 ,1,1,209660 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,2,822,145680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508385 ,2,827,87760 ,2,828,443550 ,1,0,38590 ,2,821,557105 ,2,822,145395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508375 ,2,827,87750 ,2,828,443540 ,1,0,39015 ,2,821,564505 ,2,822,146145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508380 ,2,827,75 ,2,828,443545 ,1,0,39560 ,2,821,568305 ,2,822,144325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,443560 ,1,0,40025 ,2,821,568640 ,1,0,145635 ,1,1,45 ,1,2,11510 ,2,822,144335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508520 ,2,827,87770 ,2,828,443565 ,1,0,40350 ,2,821,574040 ,1,0,577820 ,1,1,45 ,1,2,210655 ,1,3,45 ,1,4,11510 ,2,822,144355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508390 ,2,827,87780 ,2,828,443570 ,1,0,40670 ,2,821,577680 ,2,822,34295 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,40980 ,2,821,577780 ,2,822,34305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,41425 ,2,821,577885 ,1,0,550460 ,1,1,165735 ,2,822,144405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508410 ,2,827,84925 ,2,828,443575 ,1,0,41730 ,2,821,581845 ,2,822,577880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,42270 ,2,821,582270 ,2,822,577895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,42695 ,2,821,582610 ,2,822,34355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,43020 ,2,821,582730 ,2,822,577910 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,43555 ,2,821,583195 ,2,822,144500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508425 ,2,827,75 ,2,828,443615 ,1,0,44010 ,2,821,584050 ,2,822,144560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508420 ,2,827,88080 ,2,828,443605 ,1,0,44445 ,2,821,585365 ,2,822,144510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508415 ,2,827,75 ,2,828,443610 ,1,0,44880 ,2,821,585835 ,2,822,144520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508425 ,2,827,75 ,2,828,443620 ,1,0,45195 ,2,821,586725 ,2,822,144530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508425 ,2,827,75 ,2,828,443625 ,1,0,45620 ,2,821,587595 ,2,822,144550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508425 ,2,827,75 ,2,828,443630 ,1,0,45930 ,2,821,588485 ,1,0,343075 ,1,1,45 ,1,2,5900 ,1,3,187250 ,1,4,45 ,1,5,5900 ,1,6,343025 ,1,7,45 ,1,8,5900 ,1,9,254960 ,1,10,45 ,1,11,5900 ,1,12,343015 ,1,13,45 ,1,14,5900 ,1,15,343005 ,1,16,45 ,1,17,5900 ,1,18,342995 ,1,19,45 ,1,20,5900 ,1,21,167555 ,1,22,45 ,1,23,5900 ,1,24,342980 ,1,25,45 ,1,26,5900 ,1,27,342970 ,1,28,45 ,1,29,5900 ,1,30,342960 ,1,31,45 ,1,32,5900 ,1,33,342950 ,1,34,45 ,1,35,5900 ,1,36,342925 ,1,37,45 ,1,38,5900 ,1,39,45 ,1,40,5900 ,1,41,254970 ,1,42,45 ,1,43,5900 ,1,44,342915 ,1,45,45 ,1,46,5900 ,1,47,342905 ,1,48,45 ,1,49,5900 ,1,50,45 ,1,51,5900 ,1,52,45 ,1,53,5900 ,1,54,342895 ,1,55,45 ,1,56,5900 ,1,57,342885 ,1,58,45 ,1,59,5900 ,1,60,45 ,1,61,5900 ,1,62,45 ,1,63,5900 ,1,64,45 ,1,65,5900 ,1,66,342875 ,1,67,342865 ,1,68,204135 ,1,69,45 ,1,70,5900 ,1,71,175900 ,1,72,45 ,1,73,5900 ,1,74,45 ,1,75,5900 ,1,76,45 ,1,77,5900 ,1,78,45 ,1,79,5900 ,1,80,342855 ,1,81,45 ,1,82,5900 ,1,83,45 ,1,84,5900 ,1,85,45 ,1,86,5900 ,1,87,342825 ,1,88,45 ,1,89,5900 ,1,90,342815 ,1,91,342805 ,1,92,342795 ,2,822,144570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508485 ,2,827,75 ,2,828,443715 ,1,0,46230 ,2,821,632015 ,2,822,34375 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,46880 ,2,821,632105 ,2,822,144610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508435 ,2,827,75 ,2,828,443635 ,1,0,47390 ,2,821,633450 ,2,822,144645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,443640 ,1,0,48010 ,2,821,633980 ,2,822,34395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,48445 ,2,821,634060 ,2,822,34425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,48860 ,2,821,634165 ,2,822,34445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,49370 ,2,821,634265 ,1,0,374750 ,2,822,144740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508005 ,2,827,75 ,2,828,443675 ,1,0,49700 ,2,821,634900 ,1,0,374575 ,2,822,144755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508005 ,2,827,75 ,2,828,443680 ,1,0,50205 ,2,821,635550 ,2,822,144885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508440 ,2,827,75 ,2,828,443685 ,1,0,50535 ,2,821,636440 ,1,0,342785 ,1,1,342775 ,2,822,144810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508445 ,2,827,75 ,2,828,443690 ,1,0,50745 ,2,821,637610 ,2,822,34475 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,51170 ,2,821,637705 ,2,822,144920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508450 ,2,827,75 ,2,828,443700 ,1,0,51605 ,2,821,639600 ,2,822,144950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,51915 ,2,821,640280 ,2,822,34495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,52685 ,2,821,640365 ,2,822,145095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508440 ,2,827,75 ,2,828,443705 ,1,0,53435 ,2,821,641340 ,2,822,34520 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,54225 ,2,821,641445 ,2,822,145155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,54545 ,2,821,642140 ,2,822,145185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508480 ,2,827,75 ,2,828,443710 ,1,0,55280 ,2,821,643560 ,2,822,34540 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,55720 ,2,821,643680 ,1,0,175935 ,2,822,145200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508490 ,2,827,88610 ,2,828,443750 ,1,0,55930 ,2,821,647310 ,1,0,362510 ,1,1,364820 ,1,2,361785 ,1,3,366190 ,1,4,360790 ,1,5,367000 ,1,6,362155 ,1,7,365030 ,1,8,359945 ,1,9,363965 ,1,10,360585 ,1,11,366310 ,1,12,360415 ,1,13,363810 ,1,14,360055 ,1,15,366810 ,1,16,360090 ,1,17,366600 ,1,18,360625 ,1,19,366740 ,1,20,362065 ,1,21,364935 ,2,822,145220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508495 ,2,827,75 ,2,828,443755 ,1,0,56230 ,2,821,650490 ,1,0,355575 ,1,1,550495 ,1,2,355725 ,1,3,355695 ,1,4,355530 ,1,5,355685 ,1,6,355675 ,1,7,355655 ,1,8,355585 ,1,9,355715 ,1,10,355540 ,1,11,355635 ,1,12,355510 ,1,13,355665 ,1,14,355475 ,1,15,355565 ,1,16,355645 ,1,17,355520 ,1,18,355465 ,1,19,355555 ,1,20,355625 ,1,21,550470 ,2,822,145230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508505 ,2,827,75 ,2,828,443760 ,1,0,56455 ,2,821,670415 ,2,822,578055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,57010 ,2,821,670865 ,2,822,145260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,443780 ,1,0,57320 ,2,821,671265 ,1,0,557080 ,1,1,550465 ,1,2,145280 ,1,3,356060 ,2,822,145310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508510 ,2,827,88620 ,2,828,443765 ,1,0,57775 ,2,821,673085 ,2,822,145280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,443775 ,1,0,58210 ,2,821,674195 ,1,0,222900 ,2,822,145290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,443770 ,1,0,58515 ,2,821,2100 ,1,0,259970 ,1,1,259945 ,1,2,259960 ,1,3,174925 ,1,4,361525 ,2,822,145330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508515 ,2,827,88655 ,2,828,443785 ,1,0,59135 ,2,821,14845 ,1,0,45 ,1,1,313410 ,2,822,145485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,443810 ,1,0,59550 ,2,821,17425 ,2,822,146015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508565 ,2,827,87465 ,2,828,443805 ,1,0,59780 ,2,821,24490 ,2,822,145515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,60285 ,2,821,24895 ,2,822,145540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508570 ,2,827,75 ,2,828,443815 ,1,0,60835 ,2,821,28760 ,1,0,259900 ,1,1,259880 ,1,2,259890 ,1,3,259845 ,1,4,259925 ,1,5,161445 ,1,6,259915 ,1,7,366955 ,2,822,145615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508580 ,2,827,88690 ,2,828,443840 ,1,0,61370 ,2,821,46825 ,1,0,255730 ,1,1,255740 ,1,2,211595 ,1,3,211570 ,1,4,161415 ,1,5,161405 ,1,6,2210 ,1,7,542350 ,1,8,2210 ,1,9,542350 ,2,822,145770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508575 ,2,827,88665 ,2,828,443820 ,1,0,61995 ,2,821,100840 ,2,822,145625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505545 ,2,827,88675 ,2,828,443835 ,1,0,62530 ,2,821,101635 ,1,0,45 ,1,1,313880 ,2,822,145635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,443845 ,1,0,63160 ,2,821,104440 ,2,822,145650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508585 ,2,827,75 ,2,828,443850 ,1,0,63500 ,2,821,106700 ,1,0,45 ,1,1,313410 ,2,822,145670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,443890 ,1,0,63810 ,2,821,109335 ,2,822,145980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508590 ,2,827,87510 ,2,828,443885 ,1,0,64015 ,2,821,114535 ,1,0,45 ,1,1,313410 ,2,822,145720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,443900 ,1,0,64465 ,2,821,117125 ,2,822,145995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508590 ,2,827,87510 ,2,828,443895 ,1,0,65010 ,2,821,122165 ,2,822,145730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508595 ,2,827,88710 ,2,828,443910 ,1,0,65540 ,2,821,133410 ,1,0,45 ,1,1,276975 ,2,822,145760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500990 ,2,827,75 ,2,828,443915 ,1,0,66050 ,2,821,136280 ,2,822,145780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508600 ,2,827,76965 ,2,828,443920 ,1,0,66675 ,2,821,141140 ,2,822,145825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,67180 ,2,821,141520 ,2,822,145845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508610 ,2,827,75 ,2,828,443925 ,1,0,67810 ,2,821,143310 ,1,0,45 ,1,1,182815 ,2,822,145875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,443965 ,1,0,68350 ,2,821,145915 ,2,822,146230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508615 ,2,827,88755 ,2,828,443960 ,1,0,68855 ,2,821,147570 ,1,0,255840 ,1,1,357545 ,2,822,146055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508620 ,2,827,88765 ,2,828,443970 ,1,0,69365 ,2,821,170900 ,1,0,45 ,1,1,5900 ,2,822,146075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508625 ,2,827,87485 ,2,828,443975 ,1,0,69880 ,2,821,174750 ,2,822,146085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,443980 ,1,0,70390 ,2,821,176635 ,2,822,146125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508640 ,2,827,75 ,2,828,443985 ,1,0,70905 ,2,821,178600 ,1,0,100505 ,2,822,146155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508645 ,2,827,75 ,2,828,443990 ,1,0,71400 ,2,821,191355 ,2,822,146175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508650 ,2,827,88800 ,2,828,443995 ,1,0,72120 ,2,821,236500 ,2,822,146200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,444015 ,1,0,72665 ,2,821,237955 ,2,822,146210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508655 ,2,827,76965 ,2,828,444020 ,1,0,73265 ,2,821,241850 ,2,822,146220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508665 ,2,827,75 ,2,828,444025 ,1,0,73780 ,2,821,243720 ,2,822,146255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508670 ,2,827,75 ,2,828,444030 ,1,0,74315 ,2,821,246355 ,2,822,146265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501890 ,2,827,75 ,2,828,444040 ,1,0,74795 ,2,821,247505 ,2,822,146275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,444045 ,1,0,75325 ,2,821,248565 ,1,0,256155 ,2,822,146310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508675 ,2,827,75 ,2,828,444050 ,1,0,75820 ,2,821,253670 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,146370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508680 ,2,827,75 ,2,828,444055 ,1,0,76430 ,2,821,258280 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,161985 ,2,822,146390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508690 ,2,827,88885 ,2,828,444110 ,1,0,76655 ,2,821,262980 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,315945 ,1,5,315935 ,2,822,152100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508685 ,2,827,88875 ,2,828,444105 ,1,0,77185 ,2,821,291590 ,1,0,315755 ,1,1,151645 ,1,2,151530 ,2,822,146400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508695 ,2,827,88895 ,2,828,444115 ,1,0,77610 ,2,821,297120 ,1,0,355145 ,1,1,577690 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,254235 ,1,7,45 ,1,8,5900 ,1,9,256195 ,1,10,355190 ,1,11,256065 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,256005 ,1,17,45 ,1,18,5900 ,1,19,355135 ,1,20,374470 ,2,822,146410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509425 ,2,827,88885 ,2,828,445670 ,1,0,77925 ,2,821,318185 ,1,0,45 ,1,1,5900 ,2,822,152080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508700 ,2,827,65300 ,2,828,444125 ,1,0,78230 ,2,821,319875 ,1,0,45 ,1,1,5900 ,1,2,221260 ,2,822,152090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508720 ,2,827,88905 ,2,828,444130 ,1,0,78690 ,2,821,324060 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,356815 ,1,9,45 ,1,10,5900 ,1,11,162015 ,1,12,2210 ,1,13,542350 ,2,822,151785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509420 ,2,827,91145 ,2,828,445625 ,1,0,79015 ,2,821,344365 ,1,0,252875 ,1,1,316000 ,1,2,315975 ,1,3,259940 ,1,4,315965 ,2,822,151540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509415 ,2,827,88675 ,2,828,445620 ,1,0,79425 ,2,821,352730 ,1,0,212635 ,1,1,212625 ,1,2,162005 ,2,822,146420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508725 ,2,827,88915 ,2,828,444135 ,1,0,79835 ,2,821,359230 ,2,822,34625 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,80250 ,2,821,359370 ,2,822,578125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,80590 ,2,821,360015 ,2,822,146610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502910 ,2,827,86875 ,2,828,444140 ,1,0,80935 ,2,821,362330 ,2,822,34645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,81260 ,2,821,362470 ,2,822,578150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,81745 ,2,821,363180 ,2,822,146630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,444165 ,1,0,81970 ,2,821,364945 ,1,0,257035 ,2,822,147090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508730 ,2,827,75 ,2,828,444160 ,1,0,82390 ,2,821,366750 ,1,0,257205 ,1,1,147035 ,2,822,146640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508735 ,2,827,89090 ,2,828,444170 ,1,0,82725 ,2,821,370630 ,1,0,45 ,1,1,192820 ,2,822,146655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444175 ,1,0,83275 ,2,821,373265 ,2,822,146665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508740 ,2,827,75 ,2,828,444185 ,1,0,83800 ,2,821,374605 ,1,0,45 ,1,1,192820 ,2,822,146675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444190 ,1,0,84225 ,2,821,376335 ,1,0,45 ,1,1,192820 ,2,822,146710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444200 ,1,0,84540 ,2,821,377870 ,2,822,147070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508745 ,2,827,75 ,2,828,444195 ,1,0,84845 ,2,821,379130 ,2,822,146740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508750 ,2,827,75 ,2,828,444235 ,1,0,85160 ,2,821,380110 ,1,0,45 ,1,1,192820 ,2,822,146750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444240 ,1,0,85495 ,2,821,381720 ,1,0,146630 ,2,822,146770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508755 ,2,827,89130 ,2,828,444245 ,1,0,85845 ,2,821,383190 ,1,0,45 ,1,1,192820 ,2,822,146780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,444250 ,1,0,86190 ,2,821,384725 ,1,0,45 ,1,1,192820 ,2,822,146820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,444260 ,1,0,86480 ,2,821,386280 ,1,0,259320 ,2,822,147160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508785 ,2,827,75 ,2,828,444255 ,1,0,87110 ,2,821,387735 ,2,822,146830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508790 ,2,827,75 ,2,828,444265 ,1,0,87450 ,2,821,388590 ,1,0,45 ,1,1,192820 ,2,822,146845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,444270 ,1,0,87890 ,2,821,390125 ,1,0,45 ,1,1,192820 ,2,822,146865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,444305 ,1,0,88315 ,2,821,391680 ,1,0,259300 ,2,822,146980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508800 ,2,827,75 ,2,828,444300 ,1,0,88730 ,2,821,394155 ,2,822,147055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,89150 ,2,821,394455 ,2,822,147045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508795 ,2,827,75 ,2,828,444295 ,1,0,89570 ,2,821,395780 ,1,0,259380 ,2,822,146875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508805 ,2,827,75 ,2,828,444310 ,1,0,90080 ,2,821,396725 ,1,0,45 ,1,1,192820 ,2,822,146915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,444315 ,1,0,90690 ,2,821,398285 ,1,0,45 ,1,1,192820 ,2,822,146945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444325 ,1,0,91200 ,2,821,399865 ,1,0,257245 ,2,822,147080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508790 ,2,827,75 ,2,828,444320 ,1,0,91420 ,2,821,400755 ,2,822,147000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,444360 ,1,0,91925 ,2,821,401775 ,1,0,259350 ,2,822,147140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508810 ,2,827,75 ,2,828,444330 ,1,0,92135 ,2,821,402560 ,2,822,147035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,444365 ,1,0,92365 ,2,821,403620 ,2,822,147170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508815 ,2,827,89230 ,2,828,444370 ,1,0,92570 ,2,821,407495 ,1,0,212150 ,2,822,147195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,444375 ,1,0,92885 ,2,821,410320 ,2,822,147205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508855 ,2,827,89230 ,2,828,444395 ,1,0,93400 ,2,821,413635 ,2,822,152430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,444380 ,1,0,93595 ,2,821,414115 ,1,0,212080 ,2,822,147215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,444385 ,1,0,93930 ,2,821,416845 ,1,0,550510 ,1,1,212100 ,2,822,147225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,444390 ,1,0,94360 ,2,821,419555 ,2,822,578265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,94675 ,2,821,419945 ,2,822,34695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,94975 ,2,821,420080 ,2,822,147255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508860 ,2,827,89230 ,2,828,444430 ,1,0,95320 ,2,821,423995 ,1,0,2210 ,1,1,542350 ,2,822,147265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508865 ,2,827,89315 ,2,828,444435 ,1,0,95525 ,2,821,425730 ,2,822,147275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,444445 ,1,0,96070 ,2,821,426090 ,2,822,152160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,444440 ,1,0,96385 ,2,821,426490 ,1,0,2210 ,1,1,542350 ,2,822,147285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508870 ,2,827,91345 ,2,828,444455 ,1,0,96695 ,2,821,428215 ,2,822,151950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,444450 ,1,0,97015 ,2,821,428605 ,1,0,2210 ,1,1,542350 ,2,822,147295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508875 ,2,827,91345 ,2,828,444465 ,1,0,97330 ,2,821,430325 ,2,822,152270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,444460 ,1,0,97570 ,2,821,430910 ,1,0,257015 ,1,1,45 ,1,2,5900 ,2,822,147315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508880 ,2,827,88885 ,2,828,444505 ,1,0,98000 ,2,821,432130 ,2,822,150315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,444500 ,1,0,98325 ,2,821,432580 ,1,0,45 ,1,1,315115 ,1,2,45 ,1,3,315080 ,2,822,147360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508890 ,2,827,75 ,2,828,444515 ,1,0,98760 ,2,821,434700 ,1,0,253925 ,1,1,356840 ,1,2,161695 ,2,822,150240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508885 ,2,827,75 ,2,828,444510 ,1,0,99075 ,2,821,435890 ,1,0,45 ,1,1,192820 ,2,822,147400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,445315 ,1,0,99510 ,2,821,437650 ,1,0,254185 ,1,1,356805 ,1,2,161670 ,1,3,257130 ,2,822,150355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509220 ,2,827,90560 ,2,828,445310 ,1,0,99845 ,2,821,439065 ,2,822,151745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508925 ,2,827,75 ,2,828,444555 ,1,0,100210 ,2,821,439820 ,1,0,147420 ,1,1,161895 ,2,822,147500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508920 ,2,827,89405 ,2,828,444525 ,1,0,100645 ,2,821,442230 ,1,0,45 ,1,1,179760 ,2,822,147420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,444550 ,1,0,101055 ,2,821,443905 ,1,0,254145 ,1,1,315485 ,2,822,147490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508915 ,2,827,89420 ,2,828,444535 ,1,0,101400 ,2,821,454600 ,2,822,36455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,101755 ,2,821,454685 ,2,822,147430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508910 ,2,827,75 ,2,828,444530 ,1,0,102105 ,2,821,455005 ,2,822,34740 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,102415 ,2,821,455100 ,2,822,34750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,102950 ,2,821,455220 ,2,822,578290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,103385 ,2,821,455560 ,2,822,34775 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,103705 ,2,821,455665 ,1,0,578215 ,1,1,45 ,1,2,192820 ,2,822,147545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,429975 ,1,0,104270 ,2,821,457270 ,2,822,147700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508930 ,2,827,89535 ,2,828,444565 ,1,0,104700 ,2,821,460500 ,1,0,578210 ,1,1,45 ,1,2,192820 ,2,822,147585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444595 ,1,0,105485 ,2,821,462185 ,1,0,259920 ,1,1,253805 ,1,2,253890 ,2,822,147710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508940 ,2,827,89545 ,2,828,444590 ,1,0,106420 ,2,821,465585 ,2,822,147605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508935 ,2,827,75 ,2,828,444585 ,1,0,106860 ,2,821,466215 ,2,822,147595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,444580 ,1,0,107420 ,2,821,466580 ,1,0,578225 ,1,1,45 ,1,2,192820 ,2,822,147625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508950 ,2,827,75 ,2,828,444635 ,1,0,107760 ,2,821,468115 ,2,822,147720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508945 ,2,827,89535 ,2,828,444630 ,1,0,108500 ,2,821,471470 ,1,0,571840 ,1,1,45 ,1,2,192820 ,2,822,147645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508955 ,2,827,75 ,2,828,444640 ,1,0,109050 ,2,821,472650 ,1,0,45 ,1,1,192820 ,2,822,147690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,444655 ,1,0,109260 ,2,821,474210 ,2,822,147740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508965 ,2,827,89555 ,2,828,444650 ,1,0,109915 ,2,821,475270 ,1,0,254225 ,2,822,150460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508960 ,2,827,89535 ,2,828,444645 ,1,0,110355 ,2,821,476470 ,1,0,354745 ,2,822,147750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508970 ,2,827,89600 ,2,828,444660 ,1,0,110670 ,2,821,478090 ,2,822,147760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502980 ,2,827,75 ,2,828,444665 ,1,0,111115 ,2,821,478650 ,1,0,260525 ,1,1,2210 ,1,2,542350 ,2,822,147790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508980 ,2,827,89610 ,2,828,444710 ,1,0,111650 ,2,821,480690 ,1,0,315500 ,2,822,152305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508975 ,2,827,75 ,2,828,444705 ,1,0,112515 ,2,821,481475 ,2,822,147800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,444715 ,1,0,112825 ,2,821,482500 ,1,0,45 ,1,1,221620 ,1,2,578340 ,1,3,45 ,1,4,253795 ,2,822,147830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,444730 ,1,0,113055 ,2,821,484675 ,1,0,212515 ,1,1,356850 ,2,822,150130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509005 ,2,827,89620 ,2,828,444725 ,1,0,113295 ,2,821,488310 ,1,0,315475 ,1,1,356830 ,2,822,147860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508985 ,2,827,86845 ,2,828,444720 ,1,0,113495 ,2,821,490250 ,2,822,147900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509010 ,2,827,89640 ,2,828,444735 ,1,0,113735 ,2,821,491650 ,1,0,212525 ,2,822,147910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509015 ,2,827,75 ,2,828,444740 ,1,0,114070 ,2,821,492605 ,2,822,147920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509025 ,2,827,75 ,2,828,444755 ,1,0,114405 ,2,821,493740 ,1,0,266840 ,2,822,162325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509020 ,2,827,75 ,2,828,444750 ,1,0,114970 ,2,821,497935 ,1,0,315520 ,1,1,161925 ,1,2,315510 ,2,822,147930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509215 ,2,827,89600 ,2,828,445285 ,1,0,115315 ,2,821,500940 ,1,0,161905 ,2,822,147940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509030 ,2,827,75 ,2,828,444760 ,1,0,115510 ,2,821,503245 ,2,822,34785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,115835 ,2,821,503345 ,2,822,34805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,116150 ,2,821,503440 ,2,822,34865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,116730 ,2,821,503580 ,2,822,148005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444780 ,1,0,117445 ,2,821,504415 ,2,822,148230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509035 ,2,827,75 ,2,828,444765 ,1,0,117750 ,2,821,506140 ,2,822,148015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509040 ,2,827,75 ,2,828,444785 ,1,0,118075 ,2,821,507085 ,2,822,148025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,444790 ,1,0,118710 ,2,821,507660 ,1,0,45 ,1,1,184220 ,2,822,148050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,444825 ,1,0,119020 ,2,821,509175 ,2,822,148595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509075 ,2,827,75 ,2,828,444820 ,1,0,119550 ,2,821,515545 ,2,822,148565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,119770 ,2,821,515785 ,1,0,2210 ,1,1,542350 ,2,822,148510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509070 ,2,827,89795 ,2,828,444795 ,1,0,120185 ,2,821,521395 ,2,822,148060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,444830 ,1,0,120505 ,2,821,521795 ,1,0,45 ,1,1,184220 ,2,822,148070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,444835 ,1,0,120910 ,2,821,523415 ,2,822,148080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444840 ,1,0,121555 ,2,821,524255 ,2,822,148105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,0,122220 ,2,821,524640 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,148135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,444850 ,1,0,125840 ,2,821,526910 ,2,822,148585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495355 ,2,827,75 ,2,828,444845 ,1,0,129460 ,2,821,527505 ,2,822,148275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444855 ,1,0,130005 ,2,821,528365 ,2,822,148295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,444905 ,1,0,130520 ,2,821,528980 ,2,822,148340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444910 ,1,0,131090 ,2,821,529815 ,2,822,148350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444915 ,1,0,131310 ,2,821,530680 ,2,822,148370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444920 ,1,0,131735 ,2,821,531560 ,2,822,148385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,444930 ,1,0,132155 ,2,821,532120 ,2,822,148395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,444935 ,1,0,132805 ,2,821,532715 ,2,822,148405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444940 ,1,0,133300 ,2,821,533570 ,1,0,45 ,1,1,182815 ,2,822,148460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,444965 ,1,0,133820 ,2,821,535155 ,2,822,148635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509080 ,2,827,34110 ,2,828,444945 ,1,0,134685 ,2,821,540805 ,2,822,148470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,444970 ,1,0,134900 ,2,821,541715 ,1,0,211185 ,2,822,148480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504735 ,2,827,75 ,2,828,438195 ,1,0,135090 ,2,821,542505 ,2,822,148490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444975 ,1,0,135320 ,2,821,543330 ,2,822,148530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,444980 ,1,0,135550 ,2,821,544165 ,1,0,554190 ,1,1,554185 ,2,822,148575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509085 ,2,827,89805 ,2,828,444990 ,1,0,135750 ,2,821,546445 ,2,822,148605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502045 ,2,827,75 ,2,828,444995 ,1,0,135960 ,2,821,547400 ,1,0,554170 ,1,1,45 ,1,2,5900 ,2,822,148615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509090 ,2,827,89815 ,2,828,445000 ,1,0,136180 ,2,821,606690 ,2,822,35020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,136405 ,2,821,606795 ,2,822,148625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,445005 ,1,0,136630 ,2,821,607710 ,2,822,148660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,445045 ,1,0,136855 ,2,821,608630 ,2,822,148680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,445050 ,1,0,137075 ,2,821,609485 ,1,0,45 ,1,1,182815 ,2,822,148700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,445060 ,1,0,137310 ,2,821,611075 ,2,822,148730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509080 ,2,827,34110 ,2,828,445055 ,1,0,137500 ,2,821,616565 ,2,822,34875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,137725 ,2,821,616670 ,2,822,34885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,137955 ,2,821,616765 ,2,822,578465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,138150 ,2,821,617165 ,2,822,34900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,138385 ,2,821,617275 ,2,822,578475 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,138600 ,2,821,617635 ,1,0,313970 ,2,822,148830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509100 ,2,827,75 ,2,828,445070 ,1,0,138820 ,2,821,618455 ,2,822,149010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509095 ,2,827,75 ,2,828,445065 ,1,0,139015 ,2,821,619820 ,1,0,313940 ,1,1,313930 ,2,822,148840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509105 ,2,827,75 ,2,828,445075 ,1,0,139230 ,2,821,620460 ,1,0,373065 ,2,822,148875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509130 ,2,827,75 ,2,828,445080 ,1,0,139460 ,2,821,621725 ,2,822,148885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,89905 ,2,828,445115 ,1,0,139670 ,2,821,622285 ,1,0,313950 ,2,822,148905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509135 ,2,827,75 ,2,828,445120 ,1,0,139885 ,2,821,623570 ,1,0,314000 ,2,822,148915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509140 ,2,827,75 ,2,828,445125 ,1,0,140100 ,2,821,624805 ,1,0,257910 ,2,822,148925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509145 ,2,827,75 ,2,828,445130 ,1,0,140320 ,2,821,625610 ,1,0,211615 ,2,822,148935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,445135 ,1,0,140515 ,2,821,626125 ,2,822,148945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445140 ,1,0,140720 ,2,821,627165 ,1,0,313980 ,2,822,148980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509155 ,2,827,89905 ,2,828,445145 ,1,0,140935 ,2,821,630340 ,2,822,149000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,445150 ,1,0,141145 ,2,821,630640 ,1,0,313990 ,1,1,358825 ,2,822,149030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509160 ,2,827,90060 ,2,828,445170 ,1,0,141365 ,2,821,636025 ,2,822,34910 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,141570 ,2,821,636125 ,2,822,578530 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,141770 ,2,821,636520 ,2,822,149220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509165 ,2,827,89905 ,2,828,445175 ,1,0,141975 ,2,821,638620 ,1,0,372320 ,2,822,149230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509170 ,2,827,75 ,2,828,445180 ,1,0,142180 ,2,821,639125 ,2,822,149275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,445185 ,1,0,142400 ,2,821,639440 ,1,0,314015 ,2,822,149315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509140 ,2,827,75 ,2,828,445190 ,1,0,142585 ,2,821,640815 ,2,822,34975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,142785 ,2,821,640900 ,2,822,578550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,142985 ,2,821,641335 ,2,822,149365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445200 ,1,0,143190 ,2,821,642395 ,1,0,211230 ,2,822,149415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,445195 ,1,0,143415 ,2,821,642870 ,2,822,34995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,143625 ,2,821,642955 ,2,822,35030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,143860 ,2,821,643070 ,2,822,35040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,144050 ,2,821,643150 ,2,822,149575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,445205 ,1,0,144265 ,2,821,643845 ,2,822,149585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499695 ,2,827,75 ,2,828,445250 ,1,0,144480 ,2,821,644800 ,2,822,149630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502910 ,2,827,55375 ,2,828,445255 ,1,0,144685 ,2,821,646145 ,2,822,35085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,144905 ,2,821,646235 ,2,822,35095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,145135 ,2,821,646345 ,2,822,35115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,145355 ,2,821,646440 ,1,0,358625 ,1,1,45 ,1,2,5900 ,1,3,257670 ,1,4,358715 ,1,5,45 ,1,6,5900 ,1,7,257720 ,1,8,358690 ,1,9,45 ,1,10,5900 ,1,11,358670 ,1,12,45 ,1,13,5900 ,1,14,257590 ,1,15,358615 ,1,16,45 ,1,17,5900 ,1,18,257690 ,1,19,358705 ,1,20,45 ,1,21,5900 ,1,22,257580 ,1,23,358605 ,1,24,45 ,1,25,5900 ,1,26,257660 ,1,27,358660 ,1,28,45 ,1,29,5900 ,1,30,257600 ,1,31,358725 ,1,32,45 ,1,33,5900 ,1,34,257450 ,1,35,358595 ,1,36,45 ,1,37,5900 ,1,38,257775 ,1,39,358680 ,1,40,45 ,1,41,5900 ,2,822,149815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509190 ,2,827,90380 ,2,828,445260 ,1,0,145590 ,2,821,656380 ,2,822,149860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509195 ,2,827,30175 ,2,828,445265 ,1,0,145810 ,2,821,658545 ,2,822,149880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509200 ,2,827,30175 ,2,828,445270 ,1,0,146040 ,2,821,660790 ,1,0,554180 ,1,1,554175 ,2,822,149985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509205 ,2,827,83730 ,2,828,445275 ,1,0,146240 ,2,821,662225 ,2,822,35140 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,146460 ,2,821,662305 ,2,822,150045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509210 ,2,827,75 ,2,828,445280 ,1,0,146705 ,2,821,663070 ,2,822,150055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,0,146890 ,2,821,665450 ,1,0,45 ,1,1,192820 ,2,822,150230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500535 ,2,827,75 ,2,828,445320 ,1,0,147120 ,2,821,666625 ,1,0,227815 ,2,822,150295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509225 ,2,827,75 ,2,828,445330 ,1,0,147340 ,2,821,667975 ,1,0,45 ,1,1,192820 ,2,822,150305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,445335 ,1,0,147575 ,2,821,669510 ,1,0,578220 ,1,1,45 ,1,2,192820 ,2,822,150345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,445345 ,1,0,147775 ,2,821,671035 ,2,822,150450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509250 ,2,827,90560 ,2,828,445340 ,1,0,147985 ,2,821,671765 ,1,0,400430 ,1,1,150400 ,2,822,150365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,148215 ,2,821,671945 ,2,822,150400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,445370 ,1,0,148440 ,2,821,672965 ,2,822,150410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509255 ,2,827,75 ,2,828,445375 ,1,0,148645 ,2,821,10630 ,2,822,35200 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,148850 ,2,821,10780 ,1,0,45 ,1,1,192820 ,2,822,150430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,445385 ,1,0,149070 ,2,821,13465 ,1,0,161680 ,2,822,150470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509260 ,2,827,75 ,2,828,445380 ,1,0,149290 ,2,821,15025 ,2,822,35160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,149500 ,2,821,15180 ,2,822,578815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,149725 ,2,821,15880 ,2,822,150515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445405 ,1,0,149950 ,2,821,17585 ,1,0,314515 ,2,822,150640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508810 ,2,827,75 ,2,828,445400 ,1,0,150170 ,2,821,18890 ,1,0,45 ,1,1,192820 ,2,822,150535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,445415 ,1,0,150380 ,2,821,21495 ,1,0,314505 ,1,1,314480 ,1,2,2210 ,1,3,542350 ,2,822,150650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509265 ,2,827,87510 ,2,828,445410 ,1,0,150600 ,2,821,36145 ,1,0,45 ,1,1,192820 ,2,822,150560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,445445 ,1,0,150815 ,2,821,38805 ,2,822,150665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509275 ,2,827,90620 ,2,828,445440 ,1,0,151035 ,2,821,43710 ,2,822,150580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445475 ,1,0,151255 ,2,821,45485 ,2,822,150695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509285 ,2,827,75 ,2,828,445455 ,1,0,151470 ,2,821,48005 ,1,0,314470 ,1,1,314460 ,2,822,150590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509280 ,2,827,75 ,2,828,445450 ,1,0,151695 ,2,821,49535 ,1,0,2210 ,1,1,542350 ,2,822,150620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509290 ,2,827,75 ,2,828,445480 ,1,0,151905 ,2,821,52515 ,2,822,150745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509315 ,2,827,75 ,2,828,445485 ,1,0,152120 ,2,821,53020 ,2,822,35210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,152340 ,2,821,53175 ,2,822,578895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,152555 ,2,821,53830 ,2,822,35220 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,152785 ,2,821,53990 ,2,822,35250 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,152995 ,2,821,54165 ,1,0,45 ,1,1,210655 ,2,822,151115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,445490 ,1,0,153195 ,2,821,56445 ,1,0,212610 ,1,1,369645 ,1,2,2210 ,1,3,542350 ,2,822,151290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509320 ,2,827,91080 ,2,828,445510 ,1,0,153435 ,2,821,63345 ,2,822,35270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,153635 ,2,821,63490 ,2,822,151330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,445520 ,1,0,153830 ,2,821,64195 ,2,822,151430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509325 ,2,827,75 ,2,828,445515 ,1,0,154055 ,2,821,67865 ,1,0,45 ,1,1,210905 ,2,822,151420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509330 ,2,827,75 ,2,828,445525 ,1,0,154280 ,2,821,71465 ,1,0,354145 ,1,1,192365 ,1,2,251835 ,1,3,161995 ,2,822,151440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509345 ,2,827,75 ,2,828,445530 ,1,0,154485 ,2,821,74750 ,2,822,151500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509350 ,2,827,75 ,2,828,445535 ,1,0,154690 ,2,821,76185 ,1,0,45 ,1,1,11510 ,2,822,151340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509355 ,2,827,91125 ,2,828,445540 ,1,0,154915 ,2,821,82345 ,1,0,259820 ,1,1,161955 ,2,822,151390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509360 ,2,827,75 ,2,828,445545 ,1,0,155140 ,2,821,92025 ,2,822,34550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,155340 ,2,821,92200 ,2,822,151280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509390 ,2,827,75 ,2,828,445585 ,1,0,155555 ,2,821,95200 ,2,822,152215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509410 ,2,827,75 ,2,828,445615 ,1,0,155775 ,2,821,96755 ,1,0,316270 ,1,1,252445 ,1,2,252340 ,1,3,162055 ,1,4,252485 ,2,822,152225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509405 ,2,827,75 ,2,828,445600 ,1,0,155990 ,2,821,103835 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,252395 ,1,5,212535 ,1,6,45 ,1,7,11510 ,2,822,151560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509395 ,2,827,91135 ,2,828,445590 ,1,0,156210 ,2,821,114530 ,2,822,152390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509400 ,2,827,75 ,2,828,445595 ,1,0,156420 ,2,821,116675 ,1,0,550500 ,1,1,354125 ,2,822,151510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509450 ,2,827,91155 ,2,828,445675 ,1,0,156630 ,2,821,123465 ,1,0,369985 ,1,1,161935 ,1,2,212580 ,2,822,151520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509455 ,2,827,75 ,2,828,445680 ,1,0,156845 ,2,821,130740 ,1,0,560985 ,1,1,45 ,1,2,337120 ,2,822,151530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,445685 ,1,0,157060 ,2,821,133480 ,1,0,45 ,1,1,221620 ,1,2,45 ,1,3,259605 ,1,4,45 ,1,5,253795 ,2,822,151550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509460 ,2,827,75 ,2,828,445690 ,1,0,157265 ,2,821,138050 ,2,822,151605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445750 ,1,0,157465 ,2,821,139770 ,1,0,45 ,1,1,5900 ,2,822,152315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509515 ,2,827,91235 ,2,828,445745 ,1,0,157665 ,2,821,154385 ,2,822,151615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,445695 ,1,0,157890 ,2,821,155085 ,1,0,212545 ,1,1,45 ,1,2,11510 ,2,822,152005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509465 ,2,827,91185 ,2,828,445700 ,1,0,158100 ,2,821,160820 ,1,0,215585 ,2,822,152170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509475 ,2,827,91195 ,2,828,445705 ,1,0,158310 ,2,821,163680 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,151865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509485 ,2,827,91195 ,2,828,445730 ,1,0,158510 ,2,821,170885 ,1,0,260350 ,2,822,152065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509480 ,2,827,75 ,2,828,445725 ,1,0,158720 ,2,821,178060 ,2,822,151725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509510 ,2,827,91225 ,2,828,445740 ,1,0,158910 ,2,821,181940 ,2,822,151735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509490 ,2,827,75 ,2,828,445735 ,1,0,159135 ,2,821,183500 ,2,822,162270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,159355 ,2,821,184260 ,1,0,45 ,1,1,337120 ,2,822,151645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,445760 ,1,0,159575 ,2,821,187090 ,2,822,151715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509520 ,2,827,91245 ,2,828,445755 ,1,0,159795 ,2,821,189565 ,2,822,151665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445780 ,1,0,160010 ,2,821,191310 ,1,0,211880 ,2,822,151675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509525 ,2,827,91225 ,2,828,445785 ,1,0,160215 ,2,821,194665 ,1,0,315765 ,1,1,161945 ,2,822,151755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509530 ,2,827,91255 ,2,828,445790 ,1,0,160435 ,2,821,200705 ,2,822,151775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445805 ,1,0,160650 ,2,821,202470 ,1,0,211845 ,2,822,152325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509535 ,2,827,75 ,2,828,445795 ,1,0,160885 ,2,821,204175 ,1,0,316045 ,1,1,252910 ,1,2,316030 ,2,822,151835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509540 ,2,827,75 ,2,828,445810 ,1,0,161115 ,2,821,206340 ,1,0,314625 ,2,822,151845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509545 ,2,827,75 ,2,828,445815 ,1,0,161325 ,2,821,207645 ,1,0,45 ,1,1,313890 ,2,822,151895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,445840 ,1,0,161520 ,2,821,210360 ,2,822,152110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,75 ,2,828,445820 ,1,0,161735 ,2,821,211685 ,2,822,151940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509570 ,2,827,75 ,2,828,445850 ,1,0,161970 ,2,821,214125 ,1,0,45 ,1,1,5900 ,1,2,254175 ,1,3,314585 ,2,822,151960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509575 ,2,827,88885 ,2,828,445855 ,1,0,162180 ,2,821,219035 ,2,822,151975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445860 ,1,0,162400 ,2,821,220730 ,2,822,152055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445870 ,1,0,162625 ,2,821,222440 ,1,0,211860 ,2,822,152380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503400 ,2,827,75 ,2,828,445865 ,1,0,162835 ,2,821,223295 ,1,0,252950 ,1,1,161505 ,2,822,152180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509580 ,2,827,75 ,2,828,445875 ,1,0,163060 ,2,821,224685 ,1,0,211870 ,2,822,152250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509585 ,2,827,91225 ,2,828,445895 ,1,0,163270 ,2,821,227655 ,1,0,355310 ,1,1,355350 ,1,2,355290 ,1,3,355330 ,2,822,152280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509590 ,2,827,91290 ,2,828,445900 ,1,0,163475 ,2,821,230040 ,1,0,211890 ,2,822,152295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509595 ,2,827,91225 ,2,828,445905 ,1,0,163690 ,2,821,233440 ,1,0,252320 ,2,822,152370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509600 ,2,827,91300 ,2,828,445910 ,1,0,163900 ,2,821,235600 ,1,0,212645 ,2,822,152420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509605 ,2,827,75 ,2,828,445915 ,1,0,164140 ,2,821,237175 ,2,822,35335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,164345 ,2,821,237335 ,2,822,579015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,164565 ,2,821,238000 ,2,822,35345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,164775 ,2,821,238165 ,2,822,35365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,164975 ,2,821,238315 ,2,822,35385 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,165200 ,2,821,238500 ,2,822,35395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,165400 ,2,821,238640 ,2,822,152725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,445930 ,1,0,165620 ,2,821,239715 ,2,822,152755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,441560 ,1,0,165815 ,2,821,241480 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,152855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501915 ,2,827,75 ,2,828,433955 ,1,0,166030 ,2,821,248730 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,11510 ,2,822,152875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502770 ,2,827,60825 ,2,828,433985 ,1,0,166255 ,2,821,266800 ,2,822,35415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,166460 ,2,821,266950 ,2,822,35435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,166690 ,2,821,267115 ,2,822,152960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,445980 ,1,0,166915 ,2,821,268705 ,1,0,211445 ,2,822,153040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,445975 ,1,0,167125 ,2,821,269520 ,2,822,153050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,445985 ,1,0,167345 ,2,821,270360 ,2,822,153065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509630 ,2,827,75 ,2,828,445990 ,1,0,167570 ,2,821,271370 ,2,822,35445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,167815 ,2,821,271520 ,2,822,35485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,168020 ,2,821,271715 ,1,0,210920 ,1,1,45 ,1,2,5900 ,1,3,313185 ,2,822,153165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509640 ,2,827,75 ,2,828,446005 ,1,0,168240 ,2,821,285790 ,2,822,153175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509635 ,2,827,75 ,2,828,446000 ,1,0,168465 ,2,821,288785 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,15655 ,1,5,210910 ,2,822,153185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509655 ,2,827,87485 ,2,828,446010 ,1,0,168695 ,2,821,296840 ,2,822,153220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446015 ,1,0,168930 ,2,821,297865 ,2,822,153230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446030 ,1,0,169145 ,2,821,298905 ,2,822,153240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509660 ,2,827,91760 ,2,828,446035 ,1,0,169385 ,2,821,300255 ,2,822,35495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,169605 ,2,821,300450 ,2,822,35540 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,169810 ,2,821,300615 ,2,822,579225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,170050 ,2,821,301310 ,2,822,35550 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,170235 ,2,821,301450 ,2,822,153380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446055 ,1,0,170475 ,2,821,303205 ,2,822,153495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509670 ,2,827,75 ,2,828,446045 ,1,0,170670 ,2,821,306275 ,1,0,45 ,1,1,5900 ,1,2,167780 ,1,3,212225 ,1,4,161610 ,2,822,153555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509665 ,2,827,88915 ,2,828,446040 ,1,0,170910 ,2,821,316410 ,2,822,35570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,171120 ,2,821,316580 ,2,822,153395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509695 ,2,827,75 ,2,828,446060 ,1,0,171355 ,2,821,320295 ,1,0,45 ,1,1,330070 ,2,822,153415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,446105 ,1,0,171570 ,2,821,322960 ,2,822,153565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446100 ,1,0,171785 ,2,821,324015 ,1,0,261225 ,1,1,199915 ,2,822,153525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509705 ,2,827,75 ,2,828,446070 ,1,0,172000 ,2,821,330180 ,2,822,153655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509700 ,2,827,75 ,2,828,446065 ,1,0,172210 ,2,821,332255 ,1,0,212205 ,2,822,153465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509710 ,2,827,58460 ,2,828,446110 ,1,0,172430 ,2,821,335205 ,2,822,153475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446115 ,1,0,172650 ,2,821,336995 ,1,0,161600 ,2,822,153505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509720 ,2,827,75 ,2,828,446120 ,1,0,172860 ,2,821,339105 ,1,0,45 ,1,1,276975 ,2,822,153515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,446125 ,1,0,173105 ,2,821,341855 ,2,822,153585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446135 ,1,0,173330 ,2,821,343525 ,2,822,153625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509725 ,2,827,75 ,2,828,446130 ,1,0,173540 ,2,821,344810 ,2,822,35580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,173770 ,2,821,344945 ,2,822,153790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,446165 ,1,0,174020 ,2,821,346865 ,2,822,153800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,446170 ,1,0,174215 ,2,821,348740 ,1,0,45 ,1,1,184220 ,2,822,153850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446180 ,1,0,174440 ,2,821,351285 ,2,822,154000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,446175 ,1,0,174660 ,2,821,352315 ,1,0,45 ,1,1,184220 ,2,822,153870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446190 ,1,0,174890 ,2,821,354900 ,1,0,45 ,1,1,182815 ,2,822,153890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446200 ,1,0,175120 ,2,821,357530 ,1,0,45 ,1,1,182815 ,2,822,153910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446240 ,1,0,175440 ,2,821,360075 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,153980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509755 ,2,827,75 ,2,828,446245 ,1,0,175645 ,2,821,363750 ,1,0,45 ,1,1,184220 ,2,822,154185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436720 ,1,0,176095 ,2,821,366350 ,1,0,45 ,1,1,184220 ,2,822,154205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436730 ,1,0,176290 ,2,821,368885 ,1,0,45 ,1,1,182815 ,2,822,154225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446265 ,1,0,176640 ,2,821,371400 ,1,0,45 ,1,1,182815 ,2,822,154245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,436765 ,1,0,176970 ,2,821,373910 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,154300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,446275 ,1,0,177400 ,2,821,376520 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,154435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,446280 ,1,0,177850 ,2,821,379520 ,2,822,35645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,178195 ,2,821,379600 ,2,822,154540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509760 ,2,827,75 ,2,828,446300 ,1,0,178750 ,2,821,382715 ,2,822,154560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509765 ,2,827,76930 ,2,828,446305 ,1,0,179080 ,2,821,384540 ,2,822,35655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,179490 ,2,821,384645 ,1,0,45 ,1,1,11510 ,2,822,154570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,446310 ,1,0,179705 ,2,821,385500 ,2,822,154620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446315 ,1,0,179935 ,2,821,386105 ,2,822,154630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446320 ,1,0,180565 ,2,821,386700 ,2,822,154640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509770 ,2,827,76930 ,2,828,446325 ,1,0,181210 ,2,821,393075 ,2,822,154660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446330 ,1,0,181875 ,2,821,393680 ,2,822,154670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509780 ,2,827,75 ,2,828,446335 ,1,0,182525 ,2,821,394335 ,2,822,154720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446355 ,1,0,183170 ,2,821,395360 ,2,822,154740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446365 ,1,0,183815 ,2,821,396320 ,2,822,155605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500385 ,2,827,75 ,2,828,446360 ,1,0,184470 ,2,821,396885 ,2,822,154780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503490 ,2,827,75 ,2,828,446370 ,1,0,185150 ,2,821,398620 ,2,822,154790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446375 ,1,0,185805 ,2,821,399260 ,2,822,154835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,446385 ,1,0,186370 ,2,821,400215 ,2,822,154940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509780 ,2,827,75 ,2,828,446380 ,1,0,186920 ,2,821,400820 ,2,822,154845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509780 ,2,827,75 ,2,828,446390 ,1,0,187260 ,2,821,401420 ,2,822,154855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446415 ,1,0,187575 ,2,821,402440 ,2,822,154960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,446425 ,1,0,189190 ,2,821,403615 ,2,822,155000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,446430 ,1,0,190150 ,2,821,404740 ,2,822,155040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503490 ,2,827,75 ,2,828,446445 ,1,0,191025 ,2,821,406525 ,2,822,155050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446450 ,1,0,191370 ,2,821,407140 ,2,822,155120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,446460 ,1,0,191810 ,2,821,408165 ,2,822,155520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509780 ,2,827,75 ,2,828,446455 ,1,0,192445 ,2,821,408800 ,2,822,155230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503490 ,2,827,75 ,2,828,446480 ,1,0,192860 ,2,821,410560 ,2,822,155305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446485 ,1,0,193200 ,2,821,411210 ,2,822,155380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,446490 ,1,0,193815 ,2,821,412130 ,2,822,155390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446495 ,1,0,194245 ,2,821,412725 ,2,822,155400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446505 ,1,0,195230 ,2,821,413375 ,2,822,155410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503490 ,2,827,75 ,2,828,446510 ,1,0,196105 ,2,821,415100 ,2,822,155420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446515 ,1,0,196755 ,2,821,415715 ,2,822,155530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446520 ,1,0,196995 ,2,821,416355 ,2,822,155540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503490 ,2,827,75 ,2,828,446545 ,1,0,197535 ,2,821,418020 ,1,0,2210 ,1,1,542350 ,2,822,155595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507305 ,2,827,75 ,2,828,446550 ,1,0,197755 ,2,821,419530 ,2,822,155640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,197975 ,2,821,420020 ,2,822,155650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446555 ,1,0,198400 ,2,821,420700 ,2,822,155660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446560 ,1,0,198620 ,2,821,421345 ,2,822,35665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,198945 ,2,821,421455 ,1,0,45 ,1,1,184220 ,2,822,155690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446580 ,1,0,199570 ,2,821,423000 ,2,822,155810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509795 ,2,827,92435 ,2,828,446575 ,1,0,200225 ,2,821,424740 ,2,822,155830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509790 ,2,827,75 ,2,828,446570 ,1,0,200860 ,2,821,425610 ,2,822,155850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509785 ,2,827,92410 ,2,828,446565 ,1,0,201430 ,2,821,427435 ,2,822,155700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,201640 ,2,821,427890 ,1,0,45 ,1,1,184220 ,2,822,155730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446605 ,1,0,201860 ,2,821,429445 ,2,822,155820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509795 ,2,827,92435 ,2,828,446600 ,1,0,202085 ,2,821,431145 ,1,0,45 ,1,1,182815 ,2,822,155750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446610 ,1,0,202280 ,2,821,432715 ,1,0,45 ,1,1,182815 ,2,822,155790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446630 ,1,0,202850 ,2,821,434255 ,2,822,155840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,446615 ,1,0,203190 ,2,821,434635 ,2,822,155895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503285 ,2,827,75 ,2,828,446635 ,1,0,203510 ,2,821,435770 ,2,822,35680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,203835 ,2,821,435875 ,2,822,35700 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,204180 ,2,821,436030 ,2,822,35710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,204465 ,2,821,436130 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,156010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,446640 ,1,0,204915 ,2,821,439305 ,2,822,35735 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,205285 ,2,821,439400 ,2,822,156080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509820 ,2,827,92625 ,2,828,446680 ,1,0,205910 ,2,821,444205 ,2,822,156130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,446685 ,1,0,206235 ,2,821,444950 ,2,822,156140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,446690 ,1,0,206555 ,2,821,445710 ,2,822,156150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509825 ,2,827,76930 ,2,828,446695 ,1,0,206785 ,2,821,447170 ,2,822,35745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,207100 ,2,821,447280 ,2,822,156160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446700 ,1,0,207545 ,2,821,447895 ,1,0,45 ,1,1,184220 ,2,822,156170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446705 ,1,0,208265 ,2,821,449405 ,1,0,45 ,1,1,184220 ,2,822,156240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446715 ,1,0,209015 ,2,821,450855 ,2,822,156315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446710 ,1,0,209555 ,2,821,451460 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,156260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,446740 ,1,0,210075 ,2,821,454605 ,2,822,156270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446745 ,1,0,210830 ,2,821,455280 ,2,822,156295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446750 ,1,0,211580 ,2,821,455875 ,1,0,45 ,1,1,182815 ,2,822,156305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446755 ,1,0,212120 ,2,821,457410 ,1,0,45 ,1,1,182815 ,2,822,156360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446770 ,1,0,212570 ,2,821,458965 ,2,822,156405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,446765 ,1,0,213000 ,2,821,459555 ,2,822,35755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,213555 ,2,821,459645 ,2,822,156495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509830 ,2,827,76930 ,2,828,446775 ,1,0,214445 ,2,821,461445 ,2,822,35765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,215210 ,2,821,461540 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,156555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509835 ,2,827,75 ,2,828,446780 ,1,0,215765 ,2,821,464725 ,2,822,156605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509840 ,2,827,54195 ,2,828,446795 ,1,0,216285 ,2,821,468580 ,2,822,156615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509845 ,2,827,75 ,2,828,446800 ,1,0,216820 ,2,821,469925 ,2,822,156645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509850 ,2,827,75 ,2,828,446805 ,1,0,217365 ,2,821,470840 ,2,822,156655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509855 ,2,827,75 ,2,828,446810 ,1,0,217895 ,2,821,472085 ,2,822,156685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509885 ,2,827,76930 ,2,828,446820 ,1,0,218430 ,2,821,474160 ,1,0,233085 ,1,1,232805 ,2,822,156715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509890 ,2,827,92805 ,2,828,446825 ,1,0,218970 ,2,821,479055 ,2,822,156775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,446830 ,1,0,219510 ,2,821,479835 ,2,822,156795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509895 ,2,827,75 ,2,828,446835 ,1,0,219925 ,2,821,480445 ,1,0,591670 ,1,1,45 ,1,2,317865 ,1,3,591665 ,1,4,45 ,1,5,317855 ,1,6,591635 ,1,7,45 ,1,8,5900 ,2,822,156825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509900 ,2,827,92815 ,2,828,446885 ,1,0,220340 ,2,821,486615 ,2,822,35795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,220780 ,2,821,486705 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,156890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,446890 ,1,0,221095 ,2,821,489875 ,1,0,45 ,1,1,5900 ,2,822,156925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,446895 ,1,0,221440 ,2,821,490625 ,1,0,161660 ,2,822,156935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509915 ,2,827,75 ,2,828,446905 ,1,0,221745 ,2,821,492265 ,1,0,262945 ,2,822,156945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509910 ,2,827,92865 ,2,828,446900 ,1,0,222165 ,2,821,495155 ,2,822,35805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,222610 ,2,821,495275 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,156985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,446910 ,1,0,223030 ,2,821,498410 ,2,822,157025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,446915 ,1,0,223480 ,2,821,499570 ,1,0,45 ,1,1,5900 ,2,822,157045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,446920 ,1,0,224045 ,2,821,500275 ,2,822,157065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509920 ,2,827,75 ,2,828,446955 ,1,0,224485 ,2,821,502235 ,2,822,35815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,224900 ,2,821,502325 ,1,0,45 ,1,1,276975 ,2,822,157085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500990 ,2,827,75 ,2,828,446960 ,1,0,225210 ,2,821,504185 ,2,822,157120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509945 ,2,827,92965 ,2,828,446965 ,1,0,225530 ,2,821,507115 ,2,822,35855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,225860 ,2,821,507230 ,1,0,45 ,1,1,184220 ,2,822,157140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446980 ,1,0,226165 ,2,821,508760 ,1,0,212775 ,1,1,212720 ,2,822,157255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509950 ,2,827,93035 ,2,828,446970 ,1,0,226505 ,2,821,511725 ,1,0,45 ,1,1,184220 ,2,822,157190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,446990 ,1,0,226815 ,2,821,513335 ,2,822,157290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509950 ,2,827,93035 ,2,828,446985 ,1,0,227120 ,2,821,516405 ,1,0,45 ,1,1,182815 ,2,822,157210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447020 ,1,0,227445 ,2,821,517945 ,1,0,212585 ,1,1,212520 ,2,822,157300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509950 ,2,827,93045 ,2,828,446995 ,1,0,228000 ,2,821,520945 ,1,0,45 ,1,1,182815 ,2,822,157235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447030 ,1,0,228530 ,2,821,522530 ,2,822,157310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509950 ,2,827,93045 ,2,828,447025 ,1,0,228930 ,2,821,525640 ,2,822,157320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,447035 ,1,0,229340 ,2,821,526780 ,2,822,35865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,229645 ,2,821,526875 ,2,822,157365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,447045 ,1,0,229990 ,2,821,527760 ,2,822,157385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509955 ,2,827,93085 ,2,828,447050 ,1,0,230320 ,2,821,529600 ,2,822,157415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,447055 ,1,0,230740 ,2,821,530825 ,2,822,157425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,447060 ,1,0,231085 ,2,821,531960 ,2,822,157435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,447085 ,1,0,231410 ,2,821,533080 ,2,822,35885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,231805 ,2,821,533175 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,157455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,447090 ,1,0,232255 ,2,821,536350 ,2,822,157520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509960 ,2,827,54195 ,2,828,447100 ,1,0,232670 ,2,821,537760 ,1,0,579560 ,1,1,45 ,1,2,5900 ,2,822,157530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499940 ,2,827,75 ,2,828,447095 ,1,0,233105 ,2,821,538500 ,2,822,157580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,447110 ,1,0,233445 ,2,821,539570 ,2,822,157590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501890 ,2,827,75 ,2,828,447115 ,1,0,233745 ,2,821,540315 ,2,822,157600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502360 ,2,827,75 ,2,828,447120 ,1,0,234050 ,2,821,541240 ,2,822,157610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509970 ,2,827,93175 ,2,828,447125 ,1,0,234485 ,2,821,543870 ,2,822,35905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,234775 ,2,821,543990 ,2,822,157630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,447150 ,1,0,235105 ,2,821,544590 ,2,822,35915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,235420 ,2,821,544660 ,2,822,157685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,447175 ,1,0,235770 ,2,821,545650 ,2,822,157750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,447165 ,1,0,236195 ,2,821,546100 ,1,0,263400 ,2,822,157795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509980 ,2,827,58460 ,2,828,447160 ,1,0,236510 ,2,821,549620 ,2,822,157760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509975 ,2,827,75 ,2,828,447155 ,1,0,236830 ,2,821,550305 ,2,822,157805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509985 ,2,827,75 ,2,828,447180 ,1,0,237380 ,2,821,551490 ,2,822,157815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510025 ,2,827,75 ,2,828,447185 ,1,0,237800 ,2,821,552890 ,2,822,157840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510030 ,2,827,75 ,2,828,447190 ,1,0,238215 ,2,821,554315 ,1,0,162145 ,2,822,157850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,447235 ,1,0,238545 ,2,821,555015 ,2,822,157860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510035 ,2,827,76930 ,2,828,447240 ,1,0,238980 ,2,821,557520 ,2,822,35925 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,239380 ,2,821,557630 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,157925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,447245 ,1,0,239925 ,2,821,560795 ,2,822,35965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,240225 ,2,821,560905 ,2,822,157985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498210 ,2,827,75 ,2,828,447250 ,1,0,240645 ,2,821,561855 ,2,822,35975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,240965 ,2,821,561950 ,2,822,35985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,241685 ,2,821,562050 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,158055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,447260 ,1,0,241900 ,2,821,565175 ,2,822,158130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509855 ,2,827,75 ,2,828,447265 ,1,0,242220 ,2,821,566465 ,2,822,35995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,242740 ,2,821,566550 ,1,0,555460 ,2,822,158235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510060 ,2,827,93550 ,2,828,447270 ,1,0,243500 ,2,821,567455 ,2,822,158255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,447335 ,1,0,243860 ,2,821,567730 ,2,822,158375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,93705 ,2,828,447330 ,1,0,244675 ,2,821,568175 ,1,0,556745 ,1,1,556740 ,2,822,158270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499075 ,2,827,75 ,2,828,447275 ,1,0,245555 ,2,821,569535 ,2,822,158325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510040 ,2,827,51110 ,2,828,447300 ,1,0,246095 ,2,821,570420 ,1,0,45 ,1,1,195155 ,2,822,158335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495080 ,2,827,75 ,2,828,447305 ,1,0,246515 ,2,821,571855 ,1,0,221760 ,2,822,158345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510045 ,2,827,75 ,2,828,447310 ,1,0,246930 ,2,821,575595 ,1,0,579705 ,1,1,45 ,1,2,5900 ,1,3,550665 ,1,4,218560 ,2,822,158355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510055 ,2,827,93695 ,2,828,447325 ,1,0,247275 ,2,821,581205 ,1,0,263900 ,2,822,158365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510050 ,2,827,75 ,2,828,447315 ,1,0,247725 ,2,821,582765 ,2,822,36025 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,248125 ,2,821,582890 ,2,822,36070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,249295 ,2,821,582990 ,2,822,36080 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,249595 ,2,821,583095 ,2,822,36090 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,249935 ,2,821,583190 ,2,822,36105 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,250270 ,2,821,583305 ,2,822,36115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,250470 ,2,821,583400 ,1,0,243230 ,1,1,356635 ,1,2,243195 ,1,3,356685 ,1,4,243185 ,1,5,356770 ,1,6,243175 ,1,7,357965 ,1,8,357950 ,2,822,158495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,250895 ,2,821,588705 ,2,822,36170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,251245 ,2,821,588815 ,2,822,36180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,251575 ,2,821,588920 ,2,822,36190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,251800 ,2,821,589030 ,2,822,579860 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,252035 ,2,821,589445 ,2,822,36200 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,252565 ,2,821,589570 ,2,822,36215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,253095 ,2,821,589655 ,2,822,36235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,253940 ,2,821,589800 ,2,822,36245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,254250 ,2,821,589905 ,1,0,262815 ,1,1,262805 ,2,822,158795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510085 ,2,827,75 ,2,828,447340 ,1,0,255015 ,2,821,592965 ,2,822,36290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,255330 ,2,821,593055 ,2,822,36300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,255650 ,2,821,593155 ,2,822,158835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503285 ,2,827,75 ,2,828,447360 ,1,0,255945 ,2,821,594280 ,2,822,36310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,256275 ,2,821,594370 ,2,822,158870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510090 ,2,827,75 ,2,828,447365 ,1,0,256990 ,2,821,596495 ,2,822,36320 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,257520 ,2,821,596610 ,2,822,36345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,257950 ,2,821,596690 ,2,822,36355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,258595 ,2,821,596815 ,2,822,36365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,259000 ,2,821,596915 ,2,822,36375 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,259760 ,2,821,597030 ,2,822,159000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510095 ,2,827,75 ,2,828,447370 ,1,0,260050 ,2,821,597780 ,2,822,36395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,260360 ,2,821,597905 ,2,822,36405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,260665 ,2,821,597990 ,2,822,159080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510100 ,2,827,75 ,2,828,447375 ,1,0,261180 ,2,821,602405 ,2,822,159110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510115 ,2,827,75 ,2,828,447390 ,1,0,261590 ,2,821,603385 ,2,822,36425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,262010 ,2,821,603515 ,2,822,36445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,262620 ,2,821,603615 ,2,822,36465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,263025 ,2,821,603730 ,2,822,36475 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,264205 ,2,821,603820 ,2,822,36505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,264605 ,2,821,603940 ,2,822,36525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,265590 ,2,821,604050 ,2,822,36535 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,266640 ,2,821,604155 ,2,822,36545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,267550 ,2,821,604230 ,2,822,36555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,267760 ,2,821,604360 ,1,0,45 ,1,1,276975 ,2,822,159435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,447400 ,1,0,268335 ,2,821,606040 ,2,822,159465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508730 ,2,827,75 ,2,828,447395 ,1,0,268535 ,2,821,606915 ,1,0,159435 ,2,822,159455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510120 ,2,827,94750 ,2,828,447405 ,1,0,268750 ,2,821,607835 ,2,822,36565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,268955 ,2,821,607925 ,2,822,36575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,269565 ,2,821,608040 ,2,822,36600 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,270185 ,2,821,608160 ,2,822,36610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,270520 ,2,821,608280 ,1,0,45 ,1,1,5900 ,1,2,162530 ,2,822,159720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510130 ,2,827,83225 ,2,828,447440 ,1,0,270920 ,2,821,610030 ,1,0,45 ,1,1,5900 ,2,822,159815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510125 ,2,827,83225 ,2,828,447435 ,1,0,271225 ,2,821,613565 ,1,0,45 ,1,1,5900 ,1,2,162500 ,1,3,45 ,1,4,5900 ,1,5,317480 ,1,6,2210 ,1,7,542350 ,2,822,159755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510165 ,2,827,94940 ,2,828,447460 ,1,0,271415 ,2,821,675005 ,1,0,45 ,1,1,5900 ,1,2,212500 ,2,822,159775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510155 ,2,827,94920 ,2,828,447445 ,1,0,272355 ,2,821,5350 ,1,0,45 ,1,1,5900 ,1,2,212440 ,2,822,159785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510160 ,2,827,83225 ,2,828,447450 ,1,0,272665 ,2,821,8105 ,1,0,45 ,1,1,5900 ,2,822,159805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510125 ,2,827,83225 ,2,828,447455 ,1,0,273415 ,2,821,13890 ,2,822,159850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,447470 ,1,0,274115 ,2,821,15350 ,2,822,159870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,447465 ,1,0,274435 ,2,821,16090 ,2,822,159860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510170 ,2,827,75 ,2,828,447505 ,1,0,274635 ,2,821,17725 ,2,822,159880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,274940 ,2,821,18880 ,2,822,36665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,275155 ,2,821,19055 ,2,822,36675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,275350 ,2,821,19215 ,2,822,159970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,447510 ,1,0,275885 ,2,821,20280 ,2,822,159990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508085 ,2,827,75 ,2,828,447515 ,1,0,276295 ,2,821,21675 ,2,822,160030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510180 ,2,827,62810 ,2,828,447525 ,1,0,277075 ,2,821,27970 ,2,822,160225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510175 ,2,827,25645 ,2,828,447520 ,1,0,277270 ,2,821,38760 ,1,0,45 ,1,1,184220 ,2,822,160040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,447530 ,1,0,277890 ,2,821,41375 ,1,0,45 ,1,1,184220 ,2,822,160060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447540 ,1,0,278080 ,2,821,43950 ,2,822,160145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510185 ,2,827,62810 ,2,828,447535 ,1,0,278375 ,2,821,50480 ,2,822,160095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,278880 ,2,821,51345 ,2,822,160105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,447555 ,1,0,279260 ,2,821,52195 ,2,822,160125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503285 ,2,827,75 ,2,828,447560 ,1,0,279475 ,2,821,54060 ,2,822,160155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510190 ,2,827,75 ,2,828,447565 ,1,0,279880 ,2,821,55500 ,2,822,160175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,447570 ,1,0,280515 ,2,821,56955 ,2,822,160255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,0,280820 ,2,821,57385 ,2,822,160265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510215 ,2,827,62810 ,2,828,447575 ,1,0,281530 ,2,821,63445 ,1,0,45 ,1,1,182815 ,2,822,160275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447580 ,1,0,282045 ,2,821,65995 ,1,0,45 ,1,1,182815 ,2,822,160350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447590 ,1,0,282255 ,2,821,68495 ,2,822,160380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510220 ,2,827,62810 ,2,828,447585 ,1,0,282790 ,2,821,73940 ,2,822,160370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,447615 ,1,0,283095 ,2,821,75315 ,2,822,160390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509850 ,2,827,75 ,2,828,447620 ,1,0,283410 ,2,821,76935 ,2,822,160400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510225 ,2,827,89805 ,2,828,447625 ,1,0,283930 ,2,821,80535 ,2,822,36725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,284450 ,2,821,80695 ,1,0,356570 ,1,1,356615 ,2,822,160505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510230 ,2,827,75 ,2,828,447630 ,1,0,285080 ,2,821,83595 ,2,822,36755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,285490 ,2,821,83745 ,2,822,36765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,286025 ,2,821,83900 ,2,822,36775 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,286455 ,2,821,84065 ,2,822,160570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,434340 ,1,0,286985 ,2,821,85905 ,2,822,36835 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,287300 ,2,821,86070 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,160690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510240 ,2,827,75 ,2,828,447640 ,1,0,287705 ,2,821,92990 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,11510 ,2,822,160725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510245 ,2,827,60825 ,2,828,447645 ,1,0,288020 ,2,821,111325 ,1,0,45 ,1,1,5900 ,2,822,160745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510250 ,2,827,60645 ,2,828,447650 ,1,0,288310 ,2,821,119650 ,1,0,580545 ,1,1,45 ,1,2,5900 ,1,3,211625 ,2,822,160780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510255 ,2,827,75 ,2,828,447655 ,1,0,288720 ,2,821,126380 ,1,0,45 ,1,1,5900 ,2,822,160790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510275 ,2,827,75 ,2,828,447680 ,1,0,289235 ,2,821,130965 ,1,0,211065 ,1,1,211040 ,2,822,160810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510290 ,2,827,75 ,2,828,447695 ,1,0,289550 ,2,821,134730 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,160930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510280 ,2,827,34110 ,2,828,447685 ,1,0,289760 ,2,821,145525 ,1,0,45 ,1,1,5900 ,2,822,160960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510285 ,2,827,75 ,2,828,447690 ,1,0,290075 ,2,821,150115 ,2,822,160980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,290270 ,2,821,151685 ,1,0,45 ,1,1,184220 ,2,822,160830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447705 ,1,0,290475 ,2,821,154265 ,1,0,45 ,1,1,184220 ,2,822,160920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447715 ,1,0,291000 ,2,821,156840 ,1,0,211325 ,1,1,211315 ,2,822,160970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510290 ,2,827,75 ,2,828,447710 ,1,0,291490 ,2,821,160590 ,1,0,211030 ,1,1,211020 ,2,822,160940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510290 ,2,827,75 ,2,828,447720 ,1,0,291875 ,2,821,164445 ,1,0,45 ,1,1,182815 ,2,822,160950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447735 ,1,0,292305 ,2,821,167010 ,1,0,45 ,1,1,182815 ,2,822,161020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,447745 ,1,0,292595 ,2,821,169715 ,1,0,211530 ,1,1,211520 ,2,822,161075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510290 ,2,827,75 ,2,828,447740 ,1,0,293030 ,2,821,173610 ,2,822,161065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,447750 ,1,0,293560 ,2,821,175110 ,2,822,161135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,447760 ,1,0,294135 ,2,821,175850 ,2,822,568865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,294450 ,2,821,176590 ,2,822,161165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510360 ,2,827,75 ,2,828,447825 ,1,0,294960 ,2,821,178140 ,1,0,554625 ,1,1,213930 ,1,2,162680 ,1,3,162670 ,2,822,161270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510355 ,2,827,95630 ,2,828,447820 ,1,0,295380 ,2,821,194300 ,2,822,161175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510310 ,2,827,75 ,2,828,447765 ,1,0,295785 ,2,821,218420 ,2,822,161185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510315 ,2,827,75 ,2,828,447770 ,1,0,296205 ,2,821,235535 ,1,0,554620 ,2,822,161240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510320 ,2,827,75 ,2,828,447775 ,1,0,296730 ,2,821,247010 ,1,0,554615 ,2,822,161195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510325 ,2,827,95515 ,2,828,447815 ,1,0,297125 ,2,821,261485 ,1,0,213950 ,1,1,554635 ,1,2,171390 ,1,3,265540 ,2,822,161280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510365 ,2,827,75 ,2,828,447830 ,1,0,297650 ,2,821,269160 ,2,822,162230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510370 ,2,827,85105 ,2,828,447835 ,1,0,298165 ,2,821,274015 ,2,822,24700 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,298595 ,2,821,274175 ,1,0,214025 ,1,1,213990 ,2,822,161390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510385 ,2,827,95720 ,2,828,447875 ,1,0,299020 ,2,821,282040 ,1,0,213980 ,1,1,550750 ,2,822,161300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510360 ,2,827,75 ,2,828,447840 ,1,0,299220 ,2,821,283520 ,2,822,36875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,299445 ,2,821,283685 ,1,0,213970 ,1,1,180665 ,2,822,161310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510375 ,2,827,75 ,2,828,447845 ,1,0,300060 ,2,821,288830 ,1,0,265765 ,1,1,213960 ,1,2,2210 ,1,3,542350 ,2,822,161355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510380 ,2,827,95690 ,2,828,447850 ,1,0,300725 ,2,821,310625 ,2,822,580590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,301150 ,2,821,311325 ,2,822,580615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,301775 ,2,821,312075 ,2,822,36885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,302100 ,2,821,312235 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,2,822,161470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510410 ,2,827,59730 ,2,828,447885 ,1,0,302655 ,2,821,318425 ,1,0,216475 ,2,822,161420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510420 ,2,827,75 ,2,828,447900 ,1,0,303100 ,2,821,319705 ,1,0,162650 ,2,822,161540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,447910 ,1,0,303410 ,2,821,320495 ,1,0,266015 ,2,822,161510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510425 ,2,827,75 ,2,828,447905 ,1,0,303715 ,2,821,327105 ,2,822,161550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,447915 ,1,0,304140 ,2,821,327760 ,2,822,126225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498495 ,2,827,75 ,2,828,447940 ,1,0,304445 ,2,821,329010 ,2,822,161450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,447945 ,1,0,305015 ,2,821,329760 ,2,822,36920 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,305325 ,2,821,329915 ,2,822,161490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,447955 ,1,0,305740 ,2,821,330720 ,1,0,162690 ,2,822,161500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,447965 ,1,0,306145 ,2,821,331500 ,2,822,36940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,306695 ,2,821,331655 ,2,822,580680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,307095 ,2,821,332315 ,2,822,36950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,307410 ,2,821,332490 ,2,822,580710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,307820 ,2,821,333210 ,2,822,36960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,308130 ,2,821,333370 ,2,822,36970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,308455 ,2,821,333540 ,2,822,580730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,308785 ,2,821,334245 ,2,822,36980 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,309415 ,2,821,334420 ,2,822,580785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,309735 ,2,821,334940 ,2,822,36990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,310255 ,2,821,335095 ,2,822,580800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,310570 ,2,821,335845 ,2,822,37040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,311105 ,2,821,336000 ,2,822,37090 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,311555 ,2,821,336165 ,1,0,354960 ,1,1,354970 ,1,2,354935 ,1,3,354980 ,1,4,250345 ,1,5,213880 ,1,6,213870 ,1,7,213860 ,1,8,213850 ,1,9,213830 ,1,10,213820 ,2,822,161765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510480 ,2,827,96305 ,2,828,448020 ,1,0,311765 ,2,821,373405 ,1,0,554610 ,2,822,161775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510435 ,2,827,96255 ,2,828,447970 ,1,0,312450 ,2,821,377825 ,1,0,213810 ,1,1,213800 ,1,2,213760 ,1,3,213750 ,2,822,161810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510440 ,2,827,96265 ,2,828,447975 ,1,0,312790 ,2,821,381090 ,1,0,213740 ,1,1,213730 ,1,2,213715 ,2,822,161800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510445 ,2,827,75 ,2,828,447980 ,1,0,313215 ,2,821,383895 ,1,0,180855 ,1,1,213705 ,2,822,161785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510465 ,2,827,30175 ,2,828,448005 ,1,0,314900 ,2,821,392070 ,1,0,162615 ,2,822,161830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510475 ,2,827,75 ,2,828,448015 ,1,0,315580 ,2,821,394225 ,1,0,199120 ,1,1,266445 ,1,2,216515 ,1,3,213695 ,2,822,161820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510470 ,2,827,75 ,2,828,448010 ,1,0,316630 ,2,821,397925 ,1,0,556000 ,2,822,161570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510485 ,2,827,75 ,2,828,448040 ,1,0,317250 ,2,821,399485 ,1,0,330050 ,1,1,2210 ,1,2,542350 ,2,822,162315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510490 ,2,827,40735 ,2,828,448045 ,1,0,317675 ,2,821,403800 ,1,0,266765 ,1,1,333170 ,1,2,2210 ,1,3,542350 ,2,822,162200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510495 ,2,827,40735 ,2,828,448050 ,1,0,318195 ,2,821,410375 ,2,822,161870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,448070 ,1,0,318640 ,2,821,411380 ,2,822,37100 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,318940 ,2,821,411500 ,2,822,37150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,319645 ,2,821,411590 ,2,822,580895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,319975 ,2,821,412060 ,2,822,161890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448080 ,1,0,320300 ,2,821,413030 ,1,0,266880 ,1,1,266890 ,1,2,213030 ,1,3,212990 ,1,4,212980 ,2,822,161920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510525 ,2,827,96400 ,2,828,448075 ,1,0,320580 ,2,821,417885 ,2,822,161950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510535 ,2,827,96400 ,2,828,448090 ,1,0,321520 ,2,821,419235 ,1,0,554815 ,2,822,161980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510530 ,2,827,75 ,2,828,448085 ,1,0,322055 ,2,821,420940 ,1,0,162320 ,1,1,162285 ,2,822,162020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510550 ,2,827,96410 ,2,828,448105 ,1,0,322500 ,2,821,428905 ,2,822,162210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510540 ,2,827,75 ,2,828,448095 ,1,0,322810 ,2,821,430510 ,2,822,162260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510545 ,2,827,75 ,2,828,448100 ,1,0,323225 ,2,821,431305 ,1,0,266585 ,2,822,162050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502980 ,2,827,75 ,2,828,448145 ,1,0,323645 ,2,821,431850 ,2,822,37160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,324065 ,2,821,431930 ,2,822,37170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,324480 ,2,821,432035 ,2,822,37180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,324780 ,2,821,432125 ,2,822,162150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510585 ,2,827,75 ,2,828,448165 ,1,0,325295 ,2,821,433245 ,2,822,162170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510560 ,2,827,75 ,2,828,448155 ,1,0,325720 ,2,821,434150 ,2,822,162435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510580 ,2,827,75 ,2,828,448160 ,1,0,326220 ,2,821,435345 ,2,822,162160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510590 ,2,827,75 ,2,828,448170 ,1,0,326715 ,2,821,436100 ,1,0,176210 ,2,822,162250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510590 ,2,827,75 ,2,828,448175 ,1,0,327240 ,2,821,436810 ,1,0,266375 ,2,822,162385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510595 ,2,827,75 ,2,828,448180 ,1,0,327660 ,2,821,437540 ,2,822,162335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503005 ,2,827,75 ,2,828,448215 ,1,0,327975 ,2,821,438245 ,2,822,106670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510605 ,2,827,24545 ,2,828,448220 ,1,0,328415 ,2,821,441700 ,2,822,162415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448230 ,1,0,328835 ,2,821,442720 ,1,0,577825 ,1,1,45 ,1,2,276975 ,2,822,162465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,448240 ,1,0,329175 ,2,821,444405 ,1,0,216545 ,1,1,343085 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,2,822,162475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510615 ,2,827,96545 ,2,828,448235 ,1,0,329510 ,2,821,457375 ,2,822,162525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,448245 ,1,0,329815 ,2,821,457855 ,2,822,162580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,448250 ,1,0,330115 ,2,821,458260 ,2,822,580980 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,330875 ,2,821,458725 ,1,0,45 ,1,1,210655 ,2,822,162645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,427860 ,1,0,331510 ,2,821,459980 ,1,0,234595 ,1,1,215195 ,1,2,216560 ,1,3,234605 ,1,4,165745 ,2,822,126245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510640 ,2,827,75 ,2,828,448275 ,1,0,331925 ,2,821,463830 ,2,822,29580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,332265 ,2,821,463925 ,2,822,24560 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,332700 ,2,821,464045 ,2,822,37330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,332935 ,2,821,464130 ,2,822,37270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,333130 ,2,821,464240 ,2,822,581055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,333375 ,2,821,465010 ,1,0,45 ,1,1,343730 ,2,822,163075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,448290 ,1,0,333700 ,2,821,465940 ,1,0,45 ,1,1,343730 ,2,822,163095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,448295 ,1,0,334030 ,2,821,467485 ,1,0,45 ,1,1,343730 ,2,822,163130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,448305 ,1,0,334250 ,2,821,469090 ,1,0,222780 ,1,1,211080 ,2,822,163200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510655 ,2,827,75 ,2,828,448300 ,1,0,334575 ,2,821,470245 ,1,0,215455 ,1,1,612710 ,2,822,163150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501380 ,2,827,75 ,2,828,448310 ,1,0,334990 ,2,821,471110 ,1,0,45 ,1,1,343730 ,2,822,163180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500520 ,2,827,75 ,2,828,448315 ,1,0,335335 ,2,821,472550 ,1,0,171735 ,1,1,163130 ,2,822,163190 ,2,823,540970 ,2,824,418330 ,2,825,352420 ,2,826,510670 ,2,827,97065 ,2,828,448320 ,1,0,335785 ,2,821,474550 ,2,822,163210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,448325 ,1,0,336100 ,2,821,475030 ,2,822,163220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,336670 ,2,821,475475 ,2,822,37350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,337230 ,2,821,475585 ,2,822,37390 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,337670 ,2,821,475680 ,2,822,163395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,448340 ,1,0,338205 ,2,821,476130 ,2,822,163405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,448330 ,1,0,338900 ,2,821,476790 ,2,822,37455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,339330 ,2,821,476900 ,2,822,37485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,339740 ,2,821,477030 ,1,0,210765 ,1,1,210715 ,1,2,210685 ,1,3,215020 ,1,4,210595 ,2,822,163880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510680 ,2,827,58680 ,2,828,448355 ,1,0,340160 ,2,821,479210 ,1,0,343650 ,1,1,612635 ,1,2,343640 ,1,3,223220 ,1,4,165865 ,1,5,343630 ,1,6,216100 ,1,7,343620 ,1,8,2210 ,1,9,542350 ,1,10,2210 ,1,11,542350 ,2,822,106295 ,2,823,541000 ,2,824,418350 ,2,825,352440 ,2,826,510685 ,2,827,97480 ,2,828,448370 ,1,0,340590 ,2,821,501570 ,1,0,45 ,1,1,11510 ,1,2,163660 ,2,822,163710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510720 ,2,827,97520 ,2,828,448375 ,1,0,340925 ,2,821,505550 ,1,0,45 ,1,1,347150 ,2,822,163660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493695 ,2,827,75 ,2,828,448385 ,1,0,341340 ,2,821,506945 ,1,0,342125 ,1,1,342115 ,2,822,163670 ,2,823,541005 ,2,824,418355 ,2,825,352450 ,2,826,510715 ,2,827,44250 ,2,828,448380 ,1,0,341675 ,2,821,510790 ,2,822,581190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,342100 ,2,821,511175 ,2,822,163750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448410 ,1,0,342620 ,2,821,512190 ,1,0,211155 ,2,822,163815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510735 ,2,827,58680 ,2,828,448405 ,1,0,343255 ,2,821,512850 ,1,0,214960 ,2,822,163770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510740 ,2,827,97590 ,2,828,448415 ,1,0,343870 ,2,821,515005 ,2,822,163780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,344085 ,2,821,515455 ,1,0,211015 ,2,822,163825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510735 ,2,827,58680 ,2,828,448420 ,1,0,344520 ,2,821,516145 ,2,822,163835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448425 ,1,0,344950 ,2,821,517170 ,2,822,163850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507445 ,2,827,75 ,2,828,448440 ,1,0,345515 ,2,821,517935 ,1,0,356285 ,1,1,344065 ,1,2,223555 ,1,3,223545 ,1,4,223530 ,2,822,163860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510745 ,2,827,75 ,2,828,448435 ,1,0,345915 ,2,821,520030 ,1,0,210775 ,2,822,163930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,448445 ,1,0,346370 ,2,821,520595 ,1,0,546485 ,2,822,163940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510810 ,2,827,97720 ,2,828,448540 ,1,0,347130 ,2,821,522135 ,1,0,557220 ,1,1,612610 ,1,2,557215 ,1,3,612615 ,1,4,557785 ,1,5,557210 ,2,822,164165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510805 ,2,827,97710 ,2,828,448505 ,1,0,347785 ,2,821,527215 ,1,0,557165 ,1,1,557160 ,2,822,163950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510750 ,2,827,97600 ,2,828,448450 ,1,0,348310 ,2,821,530305 ,2,822,37505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,349035 ,2,821,530400 ,2,822,163980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491605 ,2,827,75 ,2,828,448470 ,1,0,350180 ,2,821,531530 ,1,0,550910 ,2,822,164000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510765 ,2,827,25980 ,2,828,448475 ,1,0,350640 ,2,821,534135 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,2,822,164010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510770 ,2,827,75 ,2,828,448480 ,1,0,350865 ,2,821,547465 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,164045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510775 ,2,827,75 ,2,828,448485 ,1,0,351195 ,2,821,553365 ,2,822,164055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510780 ,2,827,75 ,2,828,448490 ,1,0,351725 ,2,821,554705 ,2,822,164065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510795 ,2,827,75 ,2,828,448495 ,1,0,352145 ,2,821,555990 ,2,822,164090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510800 ,2,827,75 ,2,828,448500 ,1,0,352785 ,2,821,557775 ,2,822,164185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448555 ,1,0,353345 ,2,821,558830 ,1,0,342065 ,2,822,164405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510845 ,2,827,52955 ,2,828,448550 ,1,0,353770 ,2,821,559685 ,1,0,210665 ,2,822,164425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510840 ,2,827,75 ,2,828,448545 ,1,0,354195 ,2,821,561320 ,1,0,164370 ,1,1,163835 ,1,2,163750 ,1,3,164315 ,1,4,188625 ,1,5,164280 ,1,6,164250 ,1,7,164185 ,1,8,95675 ,1,9,104660 ,1,10,45 ,1,11,11510 ,2,822,164195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510865 ,2,827,97745 ,2,828,448570 ,1,0,354825 ,2,821,569740 ,1,0,214980 ,2,822,164415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510850 ,2,827,97735 ,2,828,448565 ,1,0,355370 ,2,821,571450 ,2,822,164250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448580 ,1,0,356035 ,2,821,572505 ,1,0,251655 ,1,1,2210 ,1,2,542350 ,2,822,164260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510855 ,2,827,40735 ,2,828,448575 ,1,0,356350 ,2,821,576370 ,2,822,164280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448615 ,1,0,356825 ,2,821,577370 ,1,0,251665 ,1,1,2210 ,1,2,542350 ,2,822,164295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510855 ,2,827,40735 ,2,828,448610 ,1,0,357345 ,2,821,581330 ,2,822,164315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448625 ,1,0,357675 ,2,821,582390 ,1,0,256370 ,1,1,2210 ,1,2,542350 ,2,822,164325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510860 ,2,827,40735 ,2,828,448620 ,1,0,358535 ,2,821,586480 ,2,822,164370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448635 ,1,0,358960 ,2,821,587550 ,2,822,164380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,448630 ,1,0,359280 ,2,821,588885 ,1,0,343410 ,1,1,343400 ,1,2,343390 ,1,3,45 ,1,4,5900 ,2,822,164435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510870 ,2,827,75 ,2,828,448655 ,1,0,359790 ,2,821,591175 ,1,0,223070 ,2,822,164540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498555 ,2,827,75 ,2,828,448640 ,1,0,360020 ,2,821,594000 ,1,0,223060 ,2,822,164530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,448645 ,1,0,360455 ,2,821,596810 ,1,0,566065 ,1,1,45 ,1,2,343420 ,2,822,164470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,448660 ,1,0,360860 ,2,821,598425 ,1,0,557225 ,2,822,164480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510875 ,2,827,47360 ,2,828,448665 ,1,0,361270 ,2,821,599960 ,1,0,251645 ,1,1,2210 ,1,2,542350 ,2,822,164490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510900 ,2,827,40735 ,2,828,448670 ,1,0,361590 ,2,821,604020 ,2,822,164520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448685 ,1,0,362010 ,2,821,605055 ,1,0,343295 ,2,822,164945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510845 ,2,827,52955 ,2,828,448680 ,1,0,362335 ,2,821,605970 ,1,0,251620 ,1,1,2210 ,1,2,542350 ,2,822,164550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510860 ,2,827,40735 ,2,828,448690 ,1,0,362615 ,2,821,610025 ,1,0,548015 ,1,1,343760 ,1,2,548165 ,2,822,164575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510915 ,2,827,97940 ,2,828,448725 ,1,0,362950 ,2,821,611830 ,1,0,223285 ,1,1,216355 ,1,2,223275 ,1,3,216345 ,1,4,268260 ,2,822,164585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510905 ,2,827,75 ,2,828,448695 ,1,0,363295 ,2,821,615195 ,2,822,37570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,363630 ,2,821,615290 ,1,0,213590 ,1,1,543435 ,1,2,343750 ,1,3,343740 ,1,4,258300 ,2,822,164640 ,2,823,541010 ,2,824,418360 ,2,825,352460 ,2,826,510910 ,2,827,70095 ,2,828,448720 ,1,0,364090 ,2,821,618705 ,2,822,581335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,364415 ,2,821,619405 ,2,822,37585 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,364950 ,2,821,619505 ,1,0,251610 ,1,1,2210 ,1,2,542350 ,2,822,164845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510860 ,2,827,40735 ,2,828,448730 ,1,0,365515 ,2,821,623155 ,2,822,164855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448735 ,1,0,366130 ,2,821,624145 ,1,0,223305 ,2,822,164865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493725 ,2,827,75 ,2,828,448740 ,1,0,366755 ,2,821,624925 ,2,822,164915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,448745 ,1,0,367190 ,2,821,625315 ,2,822,164925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448750 ,1,0,367515 ,2,821,626330 ,1,0,222135 ,2,822,165045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,448800 ,1,0,367840 ,2,821,628565 ,1,0,164925 ,1,1,164520 ,1,2,188935 ,1,3,164855 ,1,4,188615 ,1,5,164470 ,1,6,355975 ,1,7,256020 ,1,8,613105 ,1,9,45 ,1,10,11510 ,2,822,164905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510955 ,2,827,97980 ,2,828,448815 ,1,0,368260 ,2,821,634895 ,1,0,45 ,1,1,276975 ,1,2,45 ,1,3,190350 ,2,822,165120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,448865 ,1,0,368575 ,2,821,637010 ,1,0,400430 ,1,1,165145 ,2,822,165130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,369005 ,2,821,637175 ,2,822,165145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499485 ,2,827,75 ,2,828,448875 ,1,0,369325 ,2,821,638305 ,2,822,165225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,448870 ,1,0,369950 ,2,821,638780 ,1,0,45 ,1,1,229965 ,2,822,165175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,448885 ,1,0,370140 ,2,821,640335 ,1,0,94055 ,2,822,165235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510965 ,2,827,98055 ,2,828,448880 ,1,0,370765 ,2,821,643850 ,2,822,165245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,448890 ,1,0,371305 ,2,821,644225 ,1,0,268555 ,2,822,165255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510980 ,2,827,75 ,2,828,448915 ,1,0,371640 ,2,821,644915 ,2,822,165275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510975 ,2,827,98145 ,2,828,448895 ,1,0,371955 ,2,821,645510 ,2,822,37605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,372365 ,2,821,645605 ,1,0,165360 ,2,822,165285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501620 ,2,827,98190 ,2,828,448920 ,1,0,372580 ,2,821,646695 ,1,0,223510 ,1,1,45 ,1,2,11510 ,1,3,4825 ,2,822,165315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510985 ,2,827,98200 ,2,828,448925 ,1,0,372905 ,2,821,650755 ,2,822,165325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,448930 ,1,0,373315 ,2,821,651575 ,1,0,343910 ,1,1,165885 ,1,2,343900 ,2,822,165335 ,2,823,541015 ,2,824,418375 ,2,825,352515 ,2,826,510990 ,2,827,44250 ,2,828,448940 ,1,0,373605 ,2,821,655710 ,2,822,165345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497975 ,2,827,75 ,2,828,448945 ,1,0,374140 ,2,821,656320 ,2,822,165360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,448950 ,1,0,374440 ,2,821,657310 ,1,0,550975 ,2,822,165380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511005 ,2,827,75 ,2,828,448955 ,1,0,374770 ,2,821,661270 ,2,822,165390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511010 ,2,827,75 ,2,828,448975 ,1,0,375060 ,2,821,662105 ,1,0,164255 ,2,822,88200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511020 ,2,827,75 ,2,828,448985 ,1,0,375255 ,2,821,664685 ,2,822,88235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,375440 ,2,821,665245 ,1,0,199660 ,2,822,165430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511035 ,2,827,98290 ,2,828,449000 ,1,0,375615 ,2,821,670265 ,1,0,45 ,1,1,327085 ,2,822,165440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,449005 ,1,0,375795 ,2,821,671885 ,1,0,581385 ,1,1,45 ,1,2,243205 ,2,822,165540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,449040 ,1,0,375990 ,2,821,673480 ,2,822,165700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511040 ,2,827,75 ,2,828,449010 ,1,0,376235 ,2,821,674640 ,1,0,45 ,1,1,225320 ,2,822,165580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511075 ,2,827,75 ,2,828,449045 ,1,0,376425 ,2,821,3270 ,1,0,180550 ,1,1,269205 ,1,2,199905 ,2,822,165650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511080 ,2,827,75 ,2,828,449050 ,1,0,376595 ,2,821,8850 ,2,822,86020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501705 ,2,827,75 ,2,828,449055 ,1,0,376785 ,2,821,9770 ,2,822,85585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511085 ,2,827,75 ,2,828,449060 ,1,0,376975 ,2,821,10975 ,2,822,85825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,449065 ,1,0,377085 ,2,821,12045 ,2,822,87170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501705 ,2,827,75 ,2,828,449055 ,1,0,377270 ,2,821,13005 ,2,822,87275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,449065 ,1,0,377465 ,2,821,13960 ,2,822,131770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,449070 ,1,0,377645 ,2,821,14840 ,1,0,2210 ,1,1,542350 ,2,822,84815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511090 ,2,827,40735 ,2,828,449075 ,1,0,378350 ,2,821,21490 ,2,822,91835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,449105 ,1,0,378780 ,2,821,22250 ,1,0,400430 ,1,1,84280 ,2,822,165780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,379020 ,2,821,22595 ,1,0,400430 ,1,1,85645 ,2,822,85605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,379275 ,2,821,22915 ,1,0,400430 ,1,1,86870 ,2,822,86860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,379625 ,2,821,23260 ,1,0,400430 ,1,1,86975 ,2,822,86965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,379805 ,2,821,23605 ,1,0,400430 ,1,1,86000 ,2,822,85990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,380070 ,2,821,23915 ,1,0,400430 ,1,1,85455 ,2,822,85445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,380330 ,2,821,24245 ,1,0,400430 ,1,1,85755 ,2,822,85745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,380945 ,2,821,24600 ,1,0,555130 ,2,822,56510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,449110 ,1,0,381330 ,2,821,26470 ,2,822,37645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,381520 ,2,821,26645 ,1,0,400430 ,1,1,87150 ,2,822,87140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,381870 ,2,821,26950 ,1,0,400430 ,1,1,87190 ,2,822,87180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,382120 ,2,821,27265 ,1,0,400430 ,1,1,131700 ,2,822,131690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,0,382305 ,2,821,27605 ,1,0,400430 ,1,1,84785 ,2,822,84775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,382800 ,2,821,27925 ,1,0,400430 ,1,1,91785 ,2,822,91775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,383050 ,2,821,28265 ,1,0,400430 ,1,1,133715 ,2,822,133705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,383225 ,2,821,28605 ,2,822,37655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,383410 ,2,821,28755 ,1,0,330760 ,1,1,45 ,1,2,13320 ,1,3,330750 ,1,4,45 ,1,5,13320 ,1,6,330740 ,1,7,45 ,1,8,13320 ,1,9,330730 ,1,10,2280 ,1,11,542085 ,1,12,45 ,1,13,13320 ,2,822,165860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511100 ,2,827,75 ,2,828,449115 ,1,0,383590 ,2,821,34815 ,2,822,37675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,383775 ,2,821,35005 ,1,0,330810 ,1,1,45 ,1,2,13320 ,1,3,330800 ,1,4,45 ,1,5,13320 ,2,822,165870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511110 ,2,827,75 ,2,828,449135 ,1,0,383980 ,2,821,38325 ,2,822,37690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,385525 ,2,821,38480 ,1,0,330715 ,1,1,45 ,1,2,13320 ,1,3,171965 ,1,4,556060 ,1,5,612715 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,330705 ,1,11,45 ,1,12,13320 ,1,13,330695 ,1,14,45 ,1,15,13320 ,1,16,45 ,1,17,13320 ,1,18,330685 ,1,19,45 ,1,20,13320 ,1,21,330660 ,1,22,45 ,1,23,13320 ,1,24,330650 ,1,25,45 ,1,26,13320 ,1,27,330640 ,1,28,45 ,1,29,13320 ,1,30,330630 ,1,31,45 ,1,32,13320 ,2,822,165900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511105 ,2,827,75 ,2,828,449120 ,1,0,386135 ,2,821,55020 ,2,822,37700 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,386730 ,2,821,55160 ,2,822,37710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,387255 ,2,821,55355 ,2,822,581460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,387445 ,2,821,56035 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,165880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511135 ,2,827,75 ,2,828,449140 ,1,0,387830 ,2,821,64575 ,1,0,45 ,1,1,195155 ,2,822,165890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511140 ,2,827,75 ,2,828,449145 ,1,0,388130 ,2,821,66625 ,2,822,581465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,388255 ,2,821,67915 ,2,822,581495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,388365 ,2,821,68595 ,2,822,37720 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,388595 ,2,821,68745 ,2,822,37745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,389010 ,2,821,68905 ,2,822,37765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,389205 ,2,821,69050 ,1,0,45 ,1,1,9355 ,2,822,165970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,449160 ,1,0,389370 ,2,821,71570 ,1,0,219545 ,2,822,166015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,449150 ,1,0,389710 ,2,821,75055 ,1,0,45 ,1,1,301565 ,2,822,165995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493460 ,2,827,75 ,2,828,449170 ,1,0,390160 ,2,821,77600 ,2,822,166060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511145 ,2,827,75 ,2,828,449165 ,1,0,390650 ,2,821,79275 ,1,0,2280 ,1,1,542160 ,1,2,45 ,1,3,13320 ,1,4,2280 ,1,5,542160 ,1,6,45 ,1,7,13320 ,2,822,166005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511150 ,2,827,30175 ,2,828,449175 ,1,0,390965 ,2,821,84490 ,1,0,551015 ,1,1,219555 ,2,822,166070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511155 ,2,827,75 ,2,828,449185 ,1,0,391155 ,2,821,89255 ,1,0,551020 ,1,1,219325 ,2,822,166080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,449190 ,1,0,391485 ,2,821,93770 ,1,0,556050 ,1,1,556040 ,1,2,260715 ,1,3,165970 ,2,822,166090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511160 ,2,827,98795 ,2,828,449195 ,1,0,391685 ,2,821,97945 ,1,0,331355 ,1,1,2135 ,1,2,331345 ,1,3,331335 ,2,822,166165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511165 ,2,827,75 ,2,828,449230 ,1,0,391915 ,2,821,99980 ,2,822,166175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,449235 ,1,0,392145 ,2,821,100745 ,1,0,260730 ,2,822,166185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,98920 ,2,828,449240 ,1,0,392380 ,2,821,101820 ,1,0,45 ,1,1,5900 ,2,822,60620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511170 ,2,827,75 ,2,828,449245 ,1,0,392765 ,2,821,103890 ,1,0,558900 ,1,1,45 ,1,2,171855 ,1,3,555140 ,2,822,60630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511200 ,2,827,75 ,2,828,449255 ,1,0,392945 ,2,821,106965 ,2,822,165790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,449260 ,1,0,393200 ,2,821,107755 ,2,822,86010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497975 ,2,827,75 ,2,828,449265 ,1,0,393500 ,2,821,108815 ,2,822,85575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511205 ,2,827,75 ,2,828,449270 ,1,0,393690 ,2,821,110145 ,2,822,85815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,449290 ,1,0,393895 ,2,821,111185 ,2,822,87160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497975 ,2,827,75 ,2,828,449265 ,1,0,394180 ,2,821,112250 ,2,822,87265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,449290 ,1,0,394485 ,2,821,113240 ,2,822,131760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,449295 ,1,0,394870 ,2,821,114195 ,1,0,2210 ,1,1,542350 ,2,822,84805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511090 ,2,827,40735 ,2,828,449300 ,1,0,395260 ,2,821,120785 ,2,822,91795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,449305 ,1,0,395510 ,2,821,121835 ,2,822,63855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511210 ,2,827,75 ,2,828,449310 ,1,0,395975 ,2,821,123860 ,2,822,65955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511215 ,2,827,98950 ,2,828,449315 ,1,0,396160 ,2,821,127515 ,1,0,606225 ,1,1,45 ,1,2,5900 ,2,822,60595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511230 ,2,827,75 ,2,828,449320 ,1,0,396455 ,2,821,129335 ,2,822,37825 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,396630 ,2,821,129530 ,1,0,45 ,1,1,4765 ,1,2,542875 ,1,3,587755 ,1,4,542875 ,2,822,63985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511235 ,2,827,99040 ,2,828,449325 ,1,0,396810 ,2,821,148165 ,1,0,327745 ,1,1,327735 ,2,822,92640 ,2,823,541020 ,2,824,418380 ,2,825,352525 ,2,826,511240 ,2,827,99050 ,2,828,449375 ,1,0,397145 ,2,821,158095 ,2,822,92305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511245 ,2,827,75 ,2,828,449380 ,1,0,397415 ,2,821,159740 ,2,822,92480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511280 ,2,827,24545 ,2,828,449385 ,1,0,397600 ,2,821,165355 ,1,0,45 ,1,1,5900 ,2,822,65930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511285 ,2,827,75 ,2,828,449390 ,1,0,397800 ,2,821,169370 ,2,822,166320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511310 ,2,827,75 ,2,828,449425 ,1,0,398045 ,2,821,174385 ,2,822,166245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511290 ,2,827,75 ,2,828,449410 ,1,0,398345 ,2,821,176745 ,2,822,37870 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,398690 ,2,821,176925 ,1,0,3770 ,1,1,167895 ,2,822,166310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511295 ,2,827,75 ,2,828,449415 ,1,0,398890 ,2,821,181755 ,2,822,166295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511305 ,2,827,75 ,2,828,449420 ,1,0,399015 ,2,821,184090 ,2,822,166330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511315 ,2,827,75 ,2,828,449445 ,1,0,399135 ,2,821,185790 ,2,822,37880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,399570 ,2,821,185995 ,2,822,81450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511320 ,2,827,75 ,2,828,449450 ,1,0,399810 ,2,821,189285 ,1,0,45 ,1,1,5900 ,2,822,56500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511345 ,2,827,99165 ,2,828,449455 ,1,0,400040 ,2,821,191300 ,2,822,166375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,400165 ,2,821,191480 ,2,822,37890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,400395 ,2,821,191650 ,2,822,166385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511370 ,2,827,57830 ,2,828,449495 ,1,0,400715 ,2,821,198025 ,2,822,37915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,400915 ,2,821,198165 ,2,822,581685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,401215 ,2,821,198820 ,1,0,545990 ,1,1,218750 ,2,822,166395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511350 ,2,827,75 ,2,828,449460 ,1,0,401535 ,2,821,203790 ,1,0,45 ,1,1,175900 ,1,2,218790 ,1,3,175205 ,1,4,164395 ,1,5,218780 ,2,822,166440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511355 ,2,827,75 ,2,828,449465 ,1,0,401740 ,2,821,209460 ,1,0,218685 ,1,1,218630 ,1,2,164385 ,1,3,218620 ,2,822,166450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511360 ,2,827,30445 ,2,828,449470 ,1,0,401950 ,2,821,213615 ,2,822,166480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,449475 ,1,0,402125 ,2,821,213890 ,2,822,37980 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,402445 ,2,821,214070 ,2,822,37990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,402790 ,2,821,214230 ,1,0,203560 ,1,1,203580 ,1,2,164410 ,2,822,166535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511365 ,2,827,75 ,2,828,449480 ,1,0,403005 ,2,821,220030 ,2,822,581750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,403175 ,2,821,220735 ,2,822,38010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,403440 ,2,821,220885 ,1,0,45 ,1,1,325860 ,1,2,45 ,1,3,325850 ,2,822,166770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511380 ,2,827,75 ,2,828,449505 ,1,0,403805 ,2,821,224360 ,1,0,217225 ,2,822,166855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511375 ,2,827,75 ,2,828,449500 ,1,0,403985 ,2,821,225915 ,2,822,166790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511405 ,2,827,75 ,2,828,449515 ,1,0,404305 ,2,821,227720 ,1,0,270320 ,2,822,166865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511400 ,2,827,75 ,2,828,449510 ,1,0,404475 ,2,821,233160 ,2,822,166835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511410 ,2,827,75 ,2,828,449520 ,1,0,404745 ,2,821,234995 ,1,0,328355 ,1,1,218155 ,1,2,218135 ,2,822,166845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511415 ,2,827,75 ,2,828,449525 ,1,0,405060 ,2,821,241435 ,1,0,164160 ,2,822,166875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511480 ,2,827,75 ,2,828,449605 ,1,0,405270 ,2,821,243675 ,2,822,38020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,405450 ,2,821,243850 ,2,822,166885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,449570 ,1,0,405705 ,2,821,244505 ,1,0,263960 ,1,1,551095 ,1,2,329380 ,1,3,612720 ,1,4,218600 ,1,5,218590 ,2,822,166895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511420 ,2,827,99590 ,2,828,449530 ,1,0,405860 ,2,821,250750 ,2,822,38040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,406245 ,2,821,250885 ,1,0,329360 ,2,822,166905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,449540 ,1,0,406450 ,2,821,251680 ,1,0,260785 ,2,822,166960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511425 ,2,827,99675 ,2,828,449545 ,1,0,406655 ,2,821,260940 ,2,822,166970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511430 ,2,827,75 ,2,828,449550 ,1,0,406965 ,2,821,265085 ,1,0,555850 ,2,822,166980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511435 ,2,827,75 ,2,828,449555 ,1,0,407250 ,2,821,269835 ,1,0,45 ,1,1,5900 ,1,2,218570 ,1,3,555845 ,1,4,551100 ,2,822,166990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511470 ,2,827,75 ,2,828,449560 ,1,0,407635 ,2,821,274180 ,1,0,45 ,1,1,346465 ,2,822,167000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,449565 ,1,0,407885 ,2,821,276440 ,1,0,329490 ,1,1,218810 ,1,2,203685 ,2,822,167055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511475 ,2,827,75 ,2,828,449575 ,1,0,408030 ,2,821,283200 ,1,0,181570 ,2,822,167065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511485 ,2,827,99690 ,2,828,449610 ,1,0,408350 ,2,821,286405 ,2,822,151175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511490 ,2,827,99720 ,2,828,449615 ,1,0,408615 ,2,821,291580 ,1,0,334225 ,2,822,167170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,449620 ,1,0,408945 ,2,821,292000 ,2,822,581920 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,409345 ,2,821,293250 ,2,822,38170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,409615 ,2,821,293390 ,2,822,167220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,449630 ,1,0,409795 ,2,821,293850 ,2,822,167260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,449635 ,1,0,409975 ,2,821,294300 ,1,0,373730 ,2,822,167270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,449640 ,1,0,410200 ,2,821,294955 ,1,0,260830 ,1,1,260815 ,1,2,260805 ,2,822,167290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511495 ,2,827,100035 ,2,828,449645 ,1,0,410465 ,2,821,301520 ,1,0,220230 ,1,1,551215 ,1,2,164900 ,2,822,167380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511500 ,2,827,75 ,2,828,449665 ,1,0,410670 ,2,821,303265 ,2,822,38190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,410850 ,2,821,303405 ,2,822,167425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511505 ,2,827,75 ,2,828,449670 ,1,0,411050 ,2,821,304905 ,2,822,167435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511525 ,2,827,75 ,2,828,449675 ,1,0,411235 ,2,821,306220 ,1,0,551275 ,2,822,167505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511530 ,2,827,54365 ,2,828,449680 ,1,0,411455 ,2,821,309845 ,2,822,38235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,411660 ,2,821,310010 ,1,0,276965 ,1,1,254690 ,1,2,253460 ,1,3,259870 ,1,4,45 ,1,5,5900 ,2,822,167605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511535 ,2,827,100510 ,2,828,449705 ,1,0,411935 ,2,821,330380 ,2,822,38245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,412135 ,2,821,330550 ,2,822,167635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,449690 ,1,0,412445 ,2,821,332365 ,2,822,167665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,449695 ,1,0,412790 ,2,821,334240 ,1,0,322955 ,2,822,167870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,449700 ,1,0,413175 ,2,821,334680 ,2,822,167935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500715 ,2,827,75 ,2,828,449745 ,1,0,413570 ,2,821,336410 ,2,822,38360 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,413880 ,2,821,336620 ,2,822,38400 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,414305 ,2,821,336785 ,2,822,582245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,414750 ,2,821,337530 ,2,822,38420 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,414975 ,2,821,337665 ,1,0,45 ,1,1,216580 ,1,2,45 ,1,3,276975 ,2,822,168040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501840 ,2,827,75 ,2,828,449755 ,1,0,415485 ,2,821,341410 ,1,0,277145 ,1,1,276995 ,1,2,324240 ,2,822,168060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511540 ,2,827,100665 ,2,828,449750 ,1,0,415905 ,2,821,343935 ,2,822,168110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511545 ,2,827,75 ,2,828,449760 ,1,0,416030 ,2,821,344475 ,2,822,581985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,416665 ,2,821,345175 ,2,822,38430 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,417020 ,2,821,345355 ,1,0,213700 ,1,1,236735 ,1,2,551460 ,1,3,163365 ,1,4,168200 ,1,5,370610 ,1,6,277500 ,1,7,374525 ,1,8,374320 ,2,822,168165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511575 ,2,827,100780 ,2,828,449770 ,1,0,417245 ,2,821,352215 ,1,0,163355 ,2,822,168175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511550 ,2,827,100770 ,2,828,449765 ,1,0,417900 ,2,821,354725 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,329805 ,1,4,45 ,1,5,325990 ,1,6,45 ,1,7,209800 ,2,822,168200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511560 ,2,827,75 ,2,828,449815 ,1,0,418155 ,2,821,359660 ,2,822,168320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,449810 ,1,0,418400 ,2,821,360125 ,2,822,38450 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,418520 ,2,821,360295 ,1,0,15860 ,1,1,369930 ,2,822,168220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511555 ,2,827,75 ,2,828,449780 ,1,0,419270 ,2,821,361585 ,1,0,370130 ,2,822,168230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,449805 ,1,0,419460 ,2,821,362075 ,2,822,582335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,419755 ,2,821,362725 ,2,822,38555 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,419865 ,2,821,362900 ,2,822,38565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,420025 ,2,821,363085 ,2,822,168395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,449820 ,1,0,420215 ,2,821,363805 ,2,822,38575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,420435 ,2,821,363985 ,1,0,551635 ,1,1,554795 ,2,822,168435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513460 ,2,827,75 ,2,828,452620 ,1,0,420565 ,2,821,365360 ,2,822,38605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,420770 ,2,821,365510 ,1,0,554710 ,2,822,168445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513435 ,2,827,111610 ,2,828,452560 ,1,0,420965 ,2,821,367085 ,1,0,610920 ,1,1,45 ,1,2,13320 ,2,822,179915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513430 ,2,827,75 ,2,828,452555 ,1,0,421170 ,2,821,370420 ,2,822,179905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513425 ,2,827,75 ,2,828,452550 ,1,0,421355 ,2,821,375945 ,1,0,278100 ,2,822,179895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513420 ,2,827,111590 ,2,828,452545 ,1,0,421545 ,2,821,381975 ,1,0,322870 ,1,1,322860 ,1,2,322850 ,2,822,168455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511580 ,2,827,75 ,2,828,449825 ,1,0,421865 ,2,821,383750 ,2,822,41815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,422095 ,2,821,383845 ,2,822,179875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,452530 ,1,0,422590 ,2,821,384345 ,2,822,179865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,452525 ,1,0,422790 ,2,821,384790 ,2,822,179855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513410 ,2,827,75 ,2,828,452520 ,1,0,423100 ,2,821,386490 ,1,0,261060 ,1,1,261005 ,1,2,260995 ,2,822,169705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511900 ,2,827,101505 ,2,828,449900 ,1,0,423430 ,2,821,388360 ,1,0,610840 ,2,822,168665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511635 ,2,827,75 ,2,828,449895 ,1,0,423620 ,2,821,389820 ,1,0,216130 ,2,822,168480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511585 ,2,827,75 ,2,828,449830 ,1,0,424160 ,2,821,391150 ,2,822,38645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,424685 ,2,821,391255 ,1,0,322790 ,2,822,168490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511590 ,2,827,75 ,2,828,449835 ,1,0,424800 ,2,821,391650 ,2,822,168500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511600 ,2,827,75 ,2,828,449870 ,1,0,424940 ,2,821,392065 ,1,0,554695 ,1,1,554690 ,2,822,168510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511595 ,2,827,101270 ,2,828,449840 ,1,0,425130 ,2,821,393890 ,1,0,260955 ,1,1,216040 ,1,2,216030 ,1,3,162785 ,2,822,168530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511605 ,2,827,101325 ,2,828,449875 ,1,0,425260 ,2,821,395110 ,2,822,38675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,425615 ,2,821,395225 ,1,0,322800 ,2,822,168625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511610 ,2,827,101420 ,2,828,449880 ,1,0,426165 ,2,821,397350 ,2,822,38730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,426585 ,2,821,397455 ,1,0,216115 ,2,822,168655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511630 ,2,827,75 ,2,828,449885 ,1,0,427145 ,2,821,398865 ,1,0,216095 ,1,1,582535 ,1,2,322840 ,2,822,168685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,449905 ,1,0,427580 ,2,821,399565 ,2,822,38740 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,428220 ,2,821,399675 ,2,822,168725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511645 ,2,827,75 ,2,828,449910 ,1,0,428675 ,2,821,402665 ,1,0,281685 ,2,822,168735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511660 ,2,827,75 ,2,828,449935 ,1,0,429105 ,2,821,403775 ,2,822,168745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511665 ,2,827,75 ,2,828,449940 ,1,0,429360 ,2,821,404795 ,1,0,281695 ,2,822,168835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511670 ,2,827,75 ,2,828,449945 ,1,0,429685 ,2,821,407225 ,1,0,216020 ,1,1,322780 ,2,822,168855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,1,0,430005 ,2,821,407850 ,2,822,38785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,430120 ,2,821,407975 ,1,0,318335 ,2,822,168865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511705 ,2,827,101895 ,2,828,449965 ,1,0,430650 ,2,821,408495 ,2,822,38815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,431235 ,2,821,408590 ,1,0,45 ,1,1,8740 ,2,822,168885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511700 ,2,827,101770 ,2,828,449960 ,1,0,431800 ,2,821,409685 ,2,822,168915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,449690 ,1,0,432400 ,2,821,410790 ,1,0,318305 ,2,822,169075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511705 ,2,827,101895 ,2,828,449970 ,1,0,432815 ,2,821,411315 ,2,822,169085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511870 ,2,827,102145 ,2,828,450145 ,1,0,433050 ,2,821,491800 ,2,822,169535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511855 ,2,827,75 ,2,828,450135 ,1,0,433455 ,2,821,493190 ,1,0,261040 ,2,822,169525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511850 ,2,827,101915 ,2,828,449975 ,1,0,433720 ,2,821,495700 ,2,822,169110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511710 ,2,827,75 ,2,828,450010 ,1,0,433960 ,2,821,499815 ,2,822,169120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511715 ,2,827,75 ,2,828,450015 ,1,0,434155 ,2,821,501290 ,2,822,38855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,434285 ,2,821,501395 ,1,0,45 ,1,1,11690 ,2,822,169130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511730 ,2,827,101975 ,2,828,450020 ,1,0,434660 ,2,821,502535 ,2,822,582590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,434855 ,2,821,502935 ,1,0,214965 ,1,1,551580 ,2,822,169220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511735 ,2,827,75 ,2,828,450025 ,1,0,435125 ,2,821,504060 ,1,0,214700 ,2,822,169230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511740 ,2,827,75 ,2,828,450030 ,1,0,435270 ,2,821,505340 ,1,0,2280 ,1,1,542030 ,1,2,2280 ,1,3,542025 ,1,4,2280 ,1,5,542270 ,1,6,12290 ,2,822,169240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511745 ,2,827,102055 ,2,828,450035 ,1,0,435540 ,2,821,512165 ,1,0,2280 ,1,1,542030 ,1,2,2280 ,1,3,542025 ,1,4,2280 ,1,5,542270 ,2,822,169295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511770 ,2,827,102065 ,2,828,450040 ,1,0,435995 ,2,821,519695 ,2,822,38865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,436135 ,2,821,519815 ,1,0,173860 ,2,822,169305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511775 ,2,827,24980 ,2,828,450045 ,1,0,436275 ,2,821,522405 ,1,0,373790 ,1,1,318925 ,2,822,169330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511780 ,2,827,75 ,2,828,450070 ,1,0,436400 ,2,821,526595 ,2,822,169340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511785 ,2,827,75 ,2,828,450075 ,1,0,436535 ,2,821,534390 ,2,822,169350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511800 ,2,827,75 ,2,828,450080 ,1,0,436675 ,2,821,540595 ,2,822,169360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511805 ,2,827,75 ,2,828,450085 ,1,0,437130 ,2,821,544065 ,2,822,169410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511810 ,2,827,75 ,2,828,450090 ,1,0,437730 ,2,821,546670 ,1,0,318960 ,2,822,169420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511810 ,2,827,75 ,2,828,450095 ,1,0,438040 ,2,821,549255 ,1,0,4400 ,2,822,169430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511815 ,2,827,75 ,2,828,450100 ,1,0,438255 ,2,821,551810 ,1,0,2280 ,1,1,542035 ,1,2,2210 ,1,3,542345 ,1,4,2210 ,1,5,542350 ,1,6,2210 ,1,7,542345 ,2,822,169440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511840 ,2,827,75 ,2,828,450105 ,1,0,438515 ,2,821,560790 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,169455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511845 ,2,827,75 ,2,828,450130 ,1,0,438845 ,2,821,564835 ,1,0,542540 ,1,1,585895 ,1,2,542540 ,1,3,45 ,1,4,11510 ,2,822,169545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511865 ,2,827,102135 ,2,828,450140 ,1,0,439485 ,2,821,576245 ,1,0,261025 ,1,1,261015 ,2,822,169570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511875 ,2,827,102155 ,2,828,450150 ,1,0,439885 ,2,821,592865 ,2,822,169635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511880 ,2,827,75 ,2,828,450155 ,1,0,440170 ,2,821,594625 ,1,0,216000 ,1,1,322770 ,2,822,169685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,450160 ,1,0,440540 ,2,821,595325 ,2,822,38875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,440855 ,2,821,595440 ,1,0,261110 ,1,1,261070 ,2,822,169730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511915 ,2,827,102300 ,2,828,450165 ,1,0,441180 ,2,821,596890 ,1,0,215970 ,1,1,582675 ,1,2,322760 ,2,822,169885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,450185 ,1,0,441510 ,2,821,597625 ,2,822,38940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,441845 ,2,821,597740 ,1,0,322730 ,1,1,322710 ,1,2,322700 ,1,3,322690 ,1,4,322680 ,1,5,322665 ,1,6,322655 ,1,7,322645 ,1,8,322635 ,1,9,322600 ,1,10,322590 ,1,11,322580 ,1,12,322570 ,1,13,322550 ,1,14,322540 ,1,15,322530 ,1,16,322520 ,1,17,322490 ,1,18,322480 ,1,19,322470 ,1,20,322460 ,1,21,322430 ,2,822,169895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508495 ,2,827,75 ,2,828,450190 ,1,0,442085 ,2,821,601065 ,2,822,169905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511905 ,2,827,75 ,2,828,450195 ,1,0,442355 ,2,821,605495 ,1,0,215930 ,1,1,322420 ,2,822,169975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511910 ,2,827,101420 ,2,828,450200 ,1,0,442605 ,2,821,606840 ,2,822,38960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,442815 ,2,821,606940 ,1,0,261365 ,1,1,261355 ,1,2,261120 ,2,822,169845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512515 ,2,827,102470 ,2,828,450205 ,1,0,443060 ,2,821,609045 ,1,0,215905 ,1,1,322400 ,1,2,582690 ,2,822,170005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,1,0,443335 ,2,821,609660 ,2,822,38980 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,443580 ,2,821,609765 ,2,822,170025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,450675 ,1,0,443860 ,2,821,610175 ,1,0,261325 ,2,822,171445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512330 ,2,827,103055 ,2,828,450670 ,1,0,444060 ,2,821,613825 ,1,0,14155 ,2,822,171435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512325 ,2,827,103045 ,2,828,450665 ,1,0,444335 ,2,821,617610 ,2,822,171425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512315 ,2,827,75 ,2,828,450660 ,1,0,444675 ,2,821,618790 ,1,0,2210 ,1,1,542350 ,2,822,170035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511920 ,2,827,75 ,2,828,450210 ,1,0,445020 ,2,821,622110 ,1,0,45 ,1,1,321915 ,2,822,170060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,450215 ,1,0,445210 ,2,821,622950 ,1,0,45 ,1,1,321915 ,2,822,170080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,450220 ,1,0,445635 ,2,821,623825 ,2,822,170100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,450270 ,1,0,445830 ,2,821,624250 ,1,0,261140 ,1,1,321875 ,1,2,2210 ,1,3,542345 ,1,4,2210 ,1,5,542350 ,2,822,170215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511960 ,2,827,102660 ,2,828,450265 ,1,0,446080 ,2,821,637400 ,2,822,170110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,446210 ,2,821,638150 ,1,0,2210 ,1,1,542350 ,2,822,170205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511955 ,2,827,102625 ,2,828,450240 ,1,0,446530 ,2,821,647835 ,2,822,170130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511925 ,2,827,75 ,2,828,450245 ,1,0,446850 ,2,821,648315 ,2,822,170160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511935 ,2,827,102650 ,2,828,450255 ,1,0,447200 ,2,821,648950 ,2,822,170170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511930 ,2,827,75 ,2,828,450250 ,1,0,447550 ,2,821,650285 ,2,822,170195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511950 ,2,827,75 ,2,828,450260 ,1,0,447790 ,2,821,650825 ,1,0,45 ,1,1,321915 ,2,822,170225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493835 ,2,827,75 ,2,828,450275 ,1,0,447990 ,2,821,651780 ,2,822,170270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,450380 ,1,0,448255 ,2,821,652260 ,1,0,321895 ,2,822,170510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512040 ,2,827,75 ,2,828,450375 ,1,0,448520 ,2,821,654035 ,1,0,261210 ,1,1,261200 ,1,2,261170 ,2,822,170490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512030 ,2,827,102765 ,2,828,450365 ,1,0,448760 ,2,821,657540 ,2,822,170280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511965 ,2,827,103045 ,2,828,450310 ,1,0,449085 ,2,821,662030 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,170440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512025 ,2,827,102735 ,2,828,450350 ,1,0,449330 ,2,821,67910 ,2,822,170290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,449715 ,2,821,69615 ,1,0,14110 ,1,1,261160 ,2,822,170340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511985 ,2,827,102705 ,2,828,450315 ,1,0,450110 ,2,821,83955 ,1,0,321850 ,2,822,170320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,450325 ,1,0,450465 ,2,821,84705 ,1,0,279725 ,1,2,2395 ,1,3,45 ,1,4,9470 ,2,822,170330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511980 ,2,827,75 ,2,828,450320 ,1,0,450810 ,2,821,87845 ,2,822,170390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,450970 ,2,821,89095 ,2,822,170400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511990 ,2,827,75 ,2,828,450335 ,1,0,451140 ,2,821,98700 ,2,822,170410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511995 ,2,827,75 ,2,828,450340 ,1,0,451600 ,2,821,111180 ,1,0,2210 ,1,1,542350 ,2,822,170430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512020 ,2,827,75 ,2,828,450345 ,1,0,451995 ,2,821,125130 ,2,822,170420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,452370 ,2,821,126270 ,1,0,321905 ,2,822,170500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512035 ,2,827,75 ,2,828,450370 ,1,0,452770 ,2,821,127510 ,1,0,45 ,1,1,321915 ,2,822,170520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,450385 ,1,0,453030 ,2,821,128990 ,1,0,321645 ,1,1,162775 ,2,822,170540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,450390 ,1,0,454290 ,2,821,129850 ,2,822,170550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512045 ,2,827,75 ,2,828,450395 ,1,0,456495 ,2,821,130690 ,2,822,170575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511925 ,2,827,75 ,2,828,450400 ,1,0,456865 ,2,821,131520 ,1,0,2210 ,1,1,542350 ,2,822,170585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512055 ,2,827,75 ,2,828,450420 ,1,0,457135 ,2,821,142285 ,2,822,171405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512050 ,2,827,75 ,2,828,450415 ,1,0,457425 ,2,821,150440 ,2,822,170595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512080 ,2,827,75 ,2,828,450425 ,1,0,457680 ,2,821,161105 ,1,0,321840 ,1,1,2210 ,1,2,542345 ,2,822,170605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512085 ,2,827,103045 ,2,828,450430 ,1,0,457950 ,2,821,177625 ,1,0,321705 ,1,1,321695 ,1,2,321685 ,2,822,170620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512090 ,2,827,102830 ,2,828,450445 ,1,0,458270 ,2,821,308405 ,2,822,170995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,458620 ,2,821,309840 ,1,0,321820 ,1,1,321800 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,1,12,45 ,1,13,13320 ,1,14,45 ,1,15,13320 ,1,16,45 ,1,17,13320 ,1,18,2280 ,1,19,542160 ,1,20,45 ,1,21,13320 ,1,22,45 ,1,23,13320 ,1,24,45 ,1,25,13320 ,1,26,45 ,1,27,13320 ,1,28,321790 ,1,29,321780 ,1,30,2210 ,1,31,542345 ,1,32,2210 ,1,33,542345 ,1,34,2210 ,1,35,542300 ,1,36,2210 ,1,37,542350 ,1,38,2210 ,1,39,542295 ,1,40,2210 ,1,41,542345 ,1,42,2210 ,1,43,542345 ,2,822,170630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512185 ,2,827,102935 ,2,828,450555 ,1,0,460715 ,2,821,410190 ,2,822,171105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512095 ,2,827,75 ,2,828,450450 ,1,0,460905 ,2,821,416280 ,2,822,171085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,461180 ,2,821,417580 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,170760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512105 ,2,827,75 ,2,828,450460 ,1,0,461450 ,2,821,431300 ,2,822,170640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,461705 ,2,821,431600 ,2,822,39050 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,462195 ,2,821,431665 ,2,822,170725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512100 ,2,827,27110 ,2,828,450455 ,1,0,462615 ,2,821,436245 ,2,822,170940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512110 ,2,827,75 ,2,828,450490 ,1,0,462905 ,2,821,441255 ,1,1,2395 ,2,822,170770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512115 ,2,827,75 ,2,828,450495 ,1,0,463085 ,2,821,442680 ,2,822,170740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512135 ,2,827,103045 ,2,828,450500 ,1,0,463415 ,2,821,449890 ,1,0,280575 ,1,1,321770 ,2,822,170865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512175 ,2,827,102925 ,2,828,450525 ,1,0,463855 ,2,821,461175 ,2,822,39070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,464265 ,2,821,461285 ,2,822,170825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512145 ,2,827,75 ,2,828,450510 ,1,0,464465 ,2,821,462825 ,2,822,170930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512140 ,2,827,102735 ,2,828,450505 ,1,0,464795 ,2,821,500470 ,2,822,171170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512150 ,2,827,102915 ,2,828,450515 ,1,0,464975 ,2,821,506130 ,2,822,171075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512170 ,2,827,103045 ,2,828,450520 ,1,0,465155 ,2,821,512345 ,2,822,171335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512315 ,2,827,75 ,2,828,450535 ,1,0,465275 ,2,821,513325 ,2,822,171315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,450540 ,1,0,465650 ,2,821,513795 ,1,0,2210 ,1,1,542345 ,2,822,171280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512180 ,2,827,75 ,2,828,450545 ,1,0,466165 ,2,821,516255 ,2,822,171040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512315 ,2,827,75 ,2,828,450550 ,1,0,466770 ,2,821,517165 ,2,822,170960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512215 ,2,827,75 ,2,828,450560 ,1,0,466905 ,2,821,517910 ,2,822,171005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512220 ,2,827,102990 ,2,828,450565 ,1,0,467190 ,2,821,535450 ,1,0,261220 ,2,822,171030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512230 ,2,827,103000 ,2,828,450595 ,1,0,467370 ,2,821,539030 ,2,822,171190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512225 ,2,827,102990 ,2,828,450570 ,1,0,467635 ,2,821,545190 ,1,0,261230 ,2,822,171050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512240 ,2,827,103010 ,2,828,450600 ,1,0,467800 ,2,821,549310 ,2,822,171180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512245 ,2,827,102915 ,2,828,450605 ,1,0,468125 ,2,821,553700 ,1,0,321655 ,2,822,171230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512250 ,2,827,75 ,2,828,450610 ,1,0,468415 ,2,821,554485 ,1,0,261150 ,1,1,321885 ,2,822,171270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512255 ,2,827,102915 ,2,828,450620 ,1,0,468605 ,2,821,558160 ,1,0,2210 ,1,1,542345 ,2,822,171300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512300 ,2,827,103045 ,2,828,450625 ,1,0,468790 ,2,821,565170 ,2,822,171345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512305 ,2,827,103045 ,2,828,450630 ,1,0,469120 ,2,821,575025 ,1,0,321715 ,2,822,171395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512310 ,2,827,103020 ,2,828,450635 ,1,0,469300 ,2,821,578425 ,2,822,39040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,469605 ,2,821,578540 ,2,822,171490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,450685 ,1,0,469785 ,2,821,578945 ,2,822,171500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,103065 ,2,828,450690 ,1,0,470000 ,2,821,579440 ,2,822,171520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,102990 ,2,828,450695 ,1,0,470250 ,2,821,579950 ,2,822,582710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,470420 ,2,821,580300 ,2,822,171530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512510 ,2,827,103615 ,2,828,450960 ,1,0,470670 ,2,821,581980 ,2,822,171540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512335 ,2,827,75 ,2,828,450700 ,1,0,470900 ,2,821,584025 ,1,0,318410 ,2,822,171550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512365 ,2,827,75 ,2,828,450715 ,1,0,471035 ,2,821,589630 ,1,0,2210 ,1,1,542350 ,2,822,171590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512340 ,2,827,103140 ,2,828,450710 ,1,0,471170 ,2,821,595265 ,2,822,171600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512370 ,2,827,75 ,2,828,450720 ,1,0,471315 ,2,821,597745 ,1,0,215885 ,1,1,322370 ,2,822,171620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512375 ,2,827,101420 ,2,828,450725 ,1,0,471545 ,2,821,599120 ,1,0,542525 ,1,1,591940 ,1,2,542525 ,1,3,278960 ,2,822,171635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512385 ,2,827,75 ,2,828,450745 ,1,0,471835 ,2,821,602180 ,2,822,171645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512380 ,2,827,75 ,2,828,450730 ,1,0,472300 ,2,821,603460 ,2,822,171710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,450735 ,1,0,472685 ,2,821,604635 ,2,822,171830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,450740 ,1,0,472965 ,2,821,605755 ,2,822,39085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,473120 ,2,821,605865 ,2,822,39160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,473985 ,2,821,605965 ,1,0,215850 ,1,1,322360 ,2,822,172090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511910 ,2,827,101420 ,2,828,450765 ,1,0,474305 ,2,821,607305 ,1,0,318295 ,1,1,280965 ,2,822,172100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512400 ,2,827,75 ,2,828,450780 ,1,0,474500 ,2,821,609795 ,1,0,214095 ,1,1,45 ,1,2,13320 ,2,822,172135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512395 ,2,827,75 ,2,828,450775 ,1,0,475055 ,2,821,611205 ,1,0,2280 ,1,1,542235 ,1,2,2280 ,1,3,542235 ,2,822,172125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512390 ,2,827,75 ,2,828,450770 ,1,0,475350 ,2,821,612590 ,2,822,39180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,475645 ,2,821,612705 ,1,0,11980 ,1,1,11970 ,1,2,11960 ,1,3,11950 ,1,4,11935 ,1,5,11925 ,1,6,11915 ,1,7,11905 ,1,8,11850 ,1,9,11840 ,1,10,11830 ,1,11,11820 ,1,12,11810 ,1,13,11800 ,1,14,11790 ,1,15,11780 ,1,16,11750 ,1,17,11740 ,1,18,11730 ,1,19,11720 ,1,20,11705 ,1,21,11695 ,1,22,11685 ,1,23,11675 ,1,24,11630 ,1,25,11620 ,1,26,11610 ,1,27,11600 ,1,28,11575 ,1,29,11565 ,1,30,11555 ,1,31,11545 ,1,32,11515 ,1,33,11505 ,1,34,11495 ,1,35,11485 ,1,36,11475 ,1,37,11465 ,1,38,11455 ,1,39,11445 ,1,40,11420 ,1,41,11410 ,1,42,11400 ,1,43,11390 ,1,44,11375 ,1,45,11365 ,1,46,11355 ,1,47,11345 ,1,48,11320 ,1,49,11310 ,1,50,11300 ,1,51,11290 ,1,52,11280 ,1,53,11270 ,1,54,11260 ,1,55,11250 ,1,56,11205 ,1,57,11195 ,1,58,11185 ,1,59,11175 ,1,60,11160 ,1,61,11150 ,1,62,11140 ,1,63,11130 ,1,64,11100 ,1,65,11090 ,1,66,11080 ,1,67,11070 ,1,68,11050 ,1,69,11040 ,1,70,11030 ,1,71,11020 ,1,72,10970 ,1,73,10960 ,1,74,10950 ,1,75,10940 ,1,76,10930 ,1,77,10920 ,1,78,10910 ,1,79,10900 ,1,80,10880 ,1,81,10870 ,1,82,10860 ,1,83,10850 ,1,84,10840 ,1,85,10830 ,1,86,10820 ,1,87,10810 ,1,88,10775 ,1,89,10765 ,1,90,10755 ,1,91,10745 ,1,92,10730 ,1,93,10720 ,1,94,10710 ,1,95,10700 ,1,96,10670 ,1,97,10660 ,1,98,10650 ,1,99,10640 ,1,100,10615 ,1,101,10605 ,1,102,10595 ,1,103,10585 ,1,104,10555 ,1,105,10545 ,1,106,10535 ,1,107,10525 ,1,108,10515 ,1,109,10505 ,1,110,10495 ,1,111,10485 ,1,112,10450 ,1,113,10440 ,1,114,10430 ,1,115,10420 ,1,116,10400 ,1,117,10390 ,1,118,10380 ,1,119,10370 ,1,120,10350 ,1,121,10340 ,1,122,10330 ,1,123,10320 ,1,124,10310 ,1,125,10300 ,1,126,10290 ,1,127,10280 ,1,128,10235 ,1,129,10225 ,1,130,10215 ,1,131,10205 ,1,132,10195 ,1,133,10185 ,1,134,10175 ,1,135,10165 ,1,136,10135 ,1,137,10125 ,1,138,10115 ,1,139,10105 ,1,140,10085 ,1,141,10075 ,1,142,10065 ,1,143,10055 ,1,144,10025 ,1,145,10015 ,1,146,10005 ,1,147,9995 ,1,148,9985 ,1,149,9975 ,1,150,9965 ,1,151,9955 ,1,152,9925 ,1,153,9915 ,1,154,9905 ,1,155,9895 ,1,156,9885 ,1,157,9875 ,1,158,9865 ,1,159,9855 ,1,160,9810 ,1,161,9800 ,1,162,9790 ,1,163,9780 ,1,164,9765 ,1,165,9755 ,1,166,9745 ,1,167,9735 ,1,168,9705 ,1,169,9695 ,1,170,9685 ,1,171,9675 ,1,172,9665 ,1,173,9655 ,1,174,9645 ,1,175,9635 ,1,176,9610 ,1,177,9600 ,1,178,9590 ,1,179,9580 ,1,180,9570 ,1,181,9560 ,1,182,9550 ,1,183,9540 ,1,184,9505 ,1,185,9495 ,1,186,9485 ,1,187,9475 ,1,188,9460 ,1,189,9450 ,1,190,9440 ,1,191,9430 ,2,822,172175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512425 ,2,827,75 ,2,828,450790 ,1,0,475915 ,2,821,651180 ,1,0,9410 ,1,1,9400 ,1,2,9390 ,1,3,9380 ,1,4,9370 ,1,5,9360 ,1,6,9350 ,1,7,9340 ,1,8,9300 ,1,9,9290 ,1,10,9280 ,1,11,9270 ,1,12,9260 ,1,13,9250 ,1,14,9240 ,1,15,9230 ,1,16,9195 ,1,17,9185 ,1,18,9175 ,1,19,9165 ,1,20,9155 ,1,21,9145 ,1,22,9135 ,1,23,9125 ,1,24,9095 ,1,25,9085 ,1,26,9075 ,1,27,9065 ,1,28,9050 ,1,29,9040 ,1,30,9030 ,1,31,9020 ,1,32,9005 ,1,33,8995 ,1,34,8985 ,1,35,8975 ,1,36,8965 ,1,37,8955 ,1,38,8945 ,1,39,8935 ,1,40,8890 ,1,41,8880 ,1,42,8870 ,1,43,8860 ,1,44,8835 ,1,45,8825 ,1,46,8815 ,1,47,8805 ,1,48,8775 ,1,49,8765 ,1,50,8755 ,1,51,8745 ,1,52,8730 ,1,53,8720 ,1,54,8710 ,1,55,8700 ,1,56,8680 ,1,57,8670 ,1,58,8660 ,1,59,8650 ,1,60,8630 ,1,61,8620 ,1,62,8610 ,1,63,8600 ,1,64,8555 ,1,65,8545 ,1,66,8535 ,1,67,8525 ,1,68,8510 ,1,69,8500 ,1,70,8490 ,1,71,8480 ,1,72,8455 ,1,73,8445 ,1,74,8435 ,1,75,8425 ,1,76,8405 ,1,77,8395 ,1,78,8385 ,1,79,8375 ,1,80,8350 ,1,81,8340 ,1,82,8330 ,1,83,8320 ,1,84,8310 ,1,85,8300 ,1,86,8290 ,1,87,8280 ,1,88,8245 ,1,89,8235 ,1,90,8225 ,1,91,8215 ,1,92,8205 ,1,93,8195 ,1,94,8185 ,1,95,8175 ,1,96,8150 ,1,97,8140 ,1,98,8130 ,1,99,8120 ,1,100,8100 ,1,101,8090 ,1,102,8080 ,1,103,8070 ,1,104,8035 ,1,105,8025 ,1,106,8015 ,1,107,8005 ,1,108,7995 ,1,109,7985 ,1,110,7975 ,1,111,7965 ,1,112,7925 ,1,113,7915 ,1,114,7905 ,1,115,7895 ,1,116,7885 ,1,117,7875 ,1,118,7865 ,1,119,7855 ,1,120,7810 ,1,121,7800 ,1,122,7790 ,1,123,7780 ,1,124,7770 ,1,125,7760 ,1,126,7750 ,1,127,7740 ,1,128,7700 ,1,129,7690 ,1,130,7680 ,1,131,7670 ,1,132,7655 ,1,133,7645 ,1,134,7635 ,1,135,7625 ,1,136,7600 ,1,137,7590 ,1,138,7580 ,1,139,7570 ,1,140,7545 ,1,141,7535 ,1,142,7525 ,1,143,7515 ,1,144,7475 ,1,145,7465 ,1,146,7455 ,1,147,7445 ,1,148,7435 ,1,149,7425 ,1,150,7415 ,1,151,7405 ,1,152,7370 ,1,153,7360 ,1,154,7350 ,1,155,7340 ,1,156,7325 ,1,157,7315 ,1,158,7305 ,1,159,7295 ,1,160,7265 ,1,161,7255 ,1,162,7245 ,1,163,7235 ,1,164,7215 ,1,165,7205 ,1,166,7195 ,1,167,7185 ,1,168,7155 ,1,169,7145 ,1,170,7135 ,1,171,7125 ,1,172,7115 ,1,173,7105 ,1,174,7095 ,1,175,7085 ,1,176,7050 ,1,177,7040 ,1,178,7030 ,1,179,7020 ,1,180,6990 ,1,181,6980 ,1,182,6970 ,1,183,6960 ,1,184,6935 ,1,185,6925 ,1,186,6915 ,1,187,6905 ,1,188,6885 ,1,189,6875 ,1,190,6865 ,1,191,6855 ,2,822,172185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512425 ,2,827,75 ,2,828,450795 ,1,0,476230 ,2,821,25005 ,1,0,6815 ,1,1,6805 ,1,2,6795 ,1,3,6785 ,1,4,6775 ,1,5,6765 ,1,6,6755 ,1,7,6745 ,1,8,6695 ,1,9,6685 ,1,10,6675 ,1,11,6665 ,1,12,6655 ,1,13,6645 ,1,14,6635 ,1,15,6625 ,1,16,6610 ,1,17,6600 ,1,18,6590 ,1,19,6580 ,1,20,6555 ,1,21,6545 ,1,22,6535 ,1,23,6525 ,1,24,6475 ,1,25,6465 ,1,26,6455 ,1,27,6445 ,1,28,6435 ,1,29,6425 ,1,30,6415 ,1,31,6405 ,1,32,6390 ,1,33,6380 ,1,34,6370 ,1,35,6360 ,1,36,6350 ,1,37,6340 ,1,38,6330 ,1,39,6320 ,1,40,6280 ,1,41,6270 ,1,42,6260 ,1,43,6250 ,1,44,6240 ,1,45,6230 ,1,46,6220 ,1,47,6210 ,1,48,6150 ,1,49,6140 ,1,50,6130 ,1,51,6120 ,1,52,6110 ,1,53,6100 ,1,54,6090 ,1,55,6080 ,1,56,6060 ,1,57,6050 ,1,58,6040 ,1,59,6030 ,1,60,6020 ,1,61,6010 ,1,62,6000 ,1,63,5990 ,1,64,5960 ,1,65,5950 ,1,66,5940 ,1,67,5930 ,1,68,5915 ,1,69,5905 ,1,70,5895 ,1,71,5885 ,1,72,5860 ,1,73,5850 ,1,74,5840 ,1,75,5830 ,1,76,5820 ,1,77,5810 ,1,78,5800 ,1,79,5790 ,1,80,5765 ,1,81,5755 ,1,82,5745 ,1,83,5735 ,1,84,5715 ,1,85,5705 ,1,86,5695 ,1,87,5685 ,1,88,5660 ,1,89,5650 ,1,90,5640 ,1,91,5630 ,1,92,5615 ,1,93,5605 ,1,94,5595 ,1,95,5585 ,1,96,5545 ,1,97,5535 ,1,98,5525 ,1,99,5515 ,1,100,5505 ,1,101,5495 ,1,102,5485 ,1,103,5475 ,1,104,5435 ,1,105,5425 ,1,106,5415 ,1,107,5405 ,1,108,5395 ,1,109,5385 ,1,110,5375 ,1,111,5365 ,1,112,5345 ,1,113,5335 ,1,114,5325 ,1,115,5315 ,1,116,5300 ,1,117,5290 ,1,118,5280 ,1,119,5270 ,1,120,5245 ,1,121,5235 ,1,122,5225 ,1,123,5215 ,1,124,5200 ,1,125,5190 ,1,126,5180 ,1,127,5170 ,1,128,5130 ,1,129,5120 ,1,130,5110 ,1,131,5100 ,1,132,5085 ,1,133,5075 ,1,134,5065 ,1,135,5055 ,1,136,5030 ,1,137,5020 ,1,138,5010 ,1,139,5000 ,1,140,4985 ,1,141,4975 ,1,142,4965 ,1,143,4955 ,1,144,4895 ,1,145,4885 ,1,146,4875 ,1,147,4865 ,1,148,4850 ,1,149,4840 ,1,150,4830 ,1,151,4820 ,1,152,4790 ,1,153,4780 ,1,154,4770 ,1,155,4760 ,1,156,4750 ,1,157,4740 ,1,158,4730 ,1,159,4720 ,1,160,4690 ,1,161,4680 ,1,162,4670 ,1,163,4660 ,1,164,4645 ,1,165,4635 ,1,166,4625 ,1,167,4615 ,1,168,4570 ,1,169,4560 ,1,170,4550 ,1,171,4540 ,1,172,4525 ,1,173,4515 ,1,174,4505 ,1,175,4495 ,1,176,4475 ,1,177,4465 ,1,178,4455 ,1,179,4445 ,1,180,4435 ,1,181,4425 ,1,182,4415 ,1,183,4405 ,1,184,4375 ,1,185,4365 ,1,186,4355 ,1,187,4345 ,1,188,4330 ,1,189,4320 ,1,190,4310 ,1,191,4300 ,2,822,172195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512430 ,2,827,75 ,2,828,450800 ,1,0,476500 ,2,821,90490 ,1,0,4230 ,1,1,4220 ,1,2,4210 ,1,3,4200 ,1,4,4190 ,1,5,4180 ,1,6,4170 ,1,7,4160 ,1,8,4135 ,1,9,4125 ,1,10,4115 ,1,11,4105 ,1,12,4090 ,1,13,4080 ,1,14,4070 ,1,15,4060 ,1,16,4050 ,1,17,4040 ,1,18,4030 ,1,19,4020 ,1,20,4005 ,1,21,3995 ,1,22,3985 ,1,23,3975 ,1,24,3930 ,1,25,3920 ,1,26,3910 ,1,27,3900 ,1,28,3885 ,1,29,3875 ,1,30,3865 ,1,31,3855 ,1,32,3830 ,1,33,3820 ,1,34,3810 ,1,35,3800 ,1,36,3785 ,1,37,3775 ,1,38,3765 ,1,39,3755 ,1,40,3730 ,1,41,3720 ,1,42,3710 ,1,43,3700 ,1,44,3690 ,1,45,3680 ,1,46,3670 ,1,47,3660 ,1,48,3625 ,1,49,3615 ,1,50,3605 ,1,51,3595 ,1,52,3580 ,1,53,3570 ,1,54,3560 ,1,55,3550 ,1,56,3530 ,1,57,3520 ,1,58,3510 ,1,59,3500 ,1,60,3480 ,1,61,3470 ,1,62,3460 ,1,63,3450 ,1,64,3405 ,1,65,3395 ,1,66,3385 ,1,67,3375 ,1,68,3365 ,1,69,3355 ,1,70,3345 ,1,71,3335 ,1,72,3310 ,1,73,3300 ,1,74,3290 ,1,75,3280 ,1,76,3260 ,1,77,3250 ,1,78,3240 ,1,79,3230 ,1,80,3185 ,1,81,3175 ,1,82,3165 ,1,83,3155 ,1,84,3140 ,1,85,3130 ,1,86,3120 ,1,87,3110 ,1,88,3075 ,1,89,3065 ,1,90,3055 ,1,91,3045 ,1,92,3035 ,1,93,3025 ,1,94,3015 ,1,95,3005 ,1,96,2985 ,1,97,2975 ,1,98,2965 ,1,99,2955 ,1,100,2945 ,1,101,2935 ,1,102,2925 ,1,103,2915 ,1,104,2880 ,1,105,2870 ,1,106,2860 ,1,107,2850 ,1,108,2835 ,1,109,2825 ,1,110,2815 ,1,111,2805 ,1,112,2770 ,1,113,2760 ,1,114,2750 ,1,115,2740 ,1,116,2730 ,1,117,2720 ,1,118,2710 ,1,119,2700 ,1,120,2655 ,1,121,2645 ,1,122,2635 ,1,123,2625 ,1,124,2605 ,1,125,2595 ,1,126,2585 ,1,127,2575 ,1,128,2545 ,1,129,2535 ,1,130,2525 ,1,131,2515 ,1,132,2500 ,1,133,2490 ,1,134,2480 ,1,135,2470 ,1,136,2450 ,1,137,2440 ,1,138,2430 ,1,139,2420 ,1,140,2410 ,1,141,2400 ,1,142,2390 ,1,143,2380 ,1,144,2345 ,1,145,2335 ,1,146,2325 ,1,147,2315 ,1,148,2305 ,1,149,2295 ,1,150,2285 ,1,151,2275 ,1,152,2235 ,1,153,2225 ,1,154,2215 ,1,155,2205 ,1,156,2195 ,1,157,2185 ,1,158,2175 ,1,159,2165 ,1,160,2140 ,1,161,2130 ,1,162,2120 ,1,163,2110 ,1,164,2095 ,1,165,2085 ,1,166,2075 ,1,167,2065 ,1,168,2015 ,1,169,2005 ,1,170,1995 ,1,171,1985 ,1,172,1970 ,1,173,1960 ,1,174,1950 ,1,175,1940 ,1,176,1905 ,1,177,1895 ,1,178,1885 ,1,179,1875 ,1,180,1865 ,1,181,1855 ,1,182,1845 ,1,183,1835 ,1,184,1795 ,1,185,1785 ,1,186,1775 ,1,187,1765 ,1,188,1750 ,1,189,1740 ,1,190,1730 ,1,191,1720 ,2,822,172240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512425 ,2,827,75 ,2,828,450805 ,1,0,476700 ,2,821,156785 ,1,0,1695 ,1,1,1685 ,1,2,1675 ,1,3,1665 ,1,4,1650 ,1,5,1640 ,1,6,1630 ,1,7,1620 ,1,8,1595 ,1,9,1585 ,1,10,1575 ,1,11,1565 ,1,12,1555 ,1,13,1545 ,1,14,1535 ,1,15,1525 ,1,16,1485 ,1,17,1475 ,1,18,1465 ,1,19,1455 ,1,20,1440 ,1,21,1430 ,1,22,1420 ,1,23,1410 ,1,24,1380 ,1,25,1370 ,1,26,1360 ,1,27,1350 ,1,28,1340 ,1,29,1330 ,1,30,1320 ,1,31,1310 ,1,32,1275 ,1,33,1265 ,1,34,1255 ,1,35,1245 ,1,36,1225 ,1,37,1215 ,1,38,1205 ,1,39,1195 ,1,40,1170 ,1,41,1160 ,1,42,1150 ,1,43,1140 ,1,44,1125 ,1,45,1115 ,1,46,1105 ,1,47,1095 ,1,48,1060 ,1,49,1050 ,1,50,1040 ,1,51,1030 ,1,52,1020 ,1,53,1010 ,1,54,1000 ,1,55,990 ,1,56,945 ,1,57,935 ,1,58,925 ,1,59,915 ,1,60,900 ,1,61,890 ,1,62,880 ,1,63,870 ,1,64,845 ,1,65,835 ,1,66,825 ,1,67,815 ,1,68,790 ,1,69,780 ,1,70,770 ,1,71,760 ,1,72,725 ,1,73,715 ,1,74,705 ,1,75,695 ,1,76,680 ,1,77,670 ,1,78,660 ,1,79,650 ,1,80,605 ,1,81,595 ,1,82,585 ,1,83,575 ,1,84,565 ,1,85,555 ,1,86,545 ,1,87,535 ,1,88,490 ,1,89,480 ,1,90,470 ,1,91,460 ,1,92,440 ,1,93,430 ,1,94,420 ,1,95,410 ,1,96,370 ,1,97,360 ,1,98,350 ,1,99,340 ,1,100,330 ,1,101,320 ,1,102,310 ,1,103,300 ,1,104,245 ,1,105,235 ,1,106,225 ,1,107,215 ,1,108,195 ,1,109,185 ,1,110,175 ,1,111,165 ,1,112,125 ,1,113,115 ,1,114,105 ,1,115,95 ,1,116,80 ,1,117,70 ,1,118,60 ,1,119,50 ,1,120,5 ,1,121,675110 ,1,122,675105 ,1,123,675100 ,1,124,675095 ,1,125,675090 ,1,126,675085 ,1,127,675080 ,1,128,675065 ,1,129,675060 ,1,130,675055 ,1,131,675050 ,1,132,675045 ,1,133,675040 ,1,134,675035 ,1,135,675030 ,1,136,675000 ,1,137,674995 ,1,138,674990 ,1,139,674985 ,1,140,674975 ,1,141,674970 ,1,142,674965 ,1,143,674960 ,1,144,674930 ,1,145,674925 ,1,146,674920 ,1,147,674915 ,1,148,674905 ,1,149,674900 ,1,150,674895 ,1,151,674890 ,1,152,674880 ,1,153,674875 ,1,154,674870 ,1,155,674865 ,1,156,674860 ,1,157,674855 ,1,158,674850 ,1,159,674845 ,1,160,674820 ,1,161,674815 ,1,162,674810 ,1,163,674805 ,1,164,674795 ,1,165,674790 ,1,166,674785 ,1,167,674780 ,1,168,674755 ,1,169,674750 ,1,170,674745 ,1,171,674740 ,1,172,674730 ,1,173,674725 ,1,174,674720 ,1,175,674715 ,1,176,674690 ,1,177,674685 ,1,178,674680 ,1,179,674675 ,1,180,674670 ,1,181,674665 ,1,182,674660 ,1,183,674655 ,1,184,674635 ,1,185,674630 ,1,186,674625 ,1,187,674620 ,1,188,674610 ,1,189,674605 ,1,190,674600 ,1,191,674595 ,2,822,172250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512430 ,2,827,75 ,2,828,450830 ,1,0,477175 ,2,821,223700 ,1,0,674580 ,1,1,674575 ,1,2,674570 ,1,3,674565 ,1,4,674555 ,1,5,674550 ,1,6,674545 ,1,7,674540 ,1,8,674505 ,1,9,674500 ,1,10,674495 ,1,11,674490 ,1,12,674485 ,1,13,674480 ,1,14,674475 ,1,15,674470 ,1,16,674450 ,1,17,674445 ,1,18,674440 ,1,19,674435 ,1,20,674430 ,1,21,674425 ,1,22,674420 ,1,23,674415 ,1,24,674385 ,1,25,674380 ,1,26,674375 ,1,27,674370 ,1,28,674365 ,1,29,674360 ,1,30,674355 ,1,31,674350 ,1,32,674330 ,1,33,674325 ,1,34,674320 ,1,35,674315 ,1,36,674305 ,1,37,674300 ,1,38,674295 ,1,39,674290 ,1,40,674275 ,1,41,674270 ,1,42,674265 ,1,43,674260 ,1,44,674250 ,1,45,674245 ,1,46,674240 ,1,47,674235 ,1,48,674215 ,1,49,674210 ,1,50,674205 ,1,51,674200 ,1,52,674190 ,1,53,674185 ,1,54,674180 ,1,55,674175 ,1,56,674135 ,1,57,674130 ,1,58,674125 ,1,59,674120 ,1,60,674105 ,1,61,674100 ,1,62,674095 ,1,63,674090 ,1,64,674070 ,1,65,674065 ,1,66,674060 ,1,67,674055 ,1,68,674050 ,1,69,674045 ,1,70,674040 ,1,71,674035 ,1,72,674020 ,1,73,674015 ,1,74,674010 ,1,75,674005 ,1,76,673985 ,1,77,673980 ,1,78,673975 ,1,79,673970 ,1,80,673945 ,1,81,673940 ,1,82,673935 ,1,83,673930 ,1,84,673920 ,1,85,673915 ,1,86,673910 ,1,87,673905 ,1,88,673865 ,1,89,673860 ,1,90,673855 ,1,91,673850 ,1,92,673845 ,1,93,673840 ,1,94,673835 ,1,95,673830 ,1,96,673810 ,1,97,673805 ,1,98,673800 ,1,99,673795 ,1,100,673790 ,1,101,673785 ,1,102,673780 ,1,103,673775 ,1,104,673755 ,1,105,673750 ,1,106,673745 ,1,107,673740 ,1,108,673725 ,1,109,673720 ,1,110,673715 ,1,111,673710 ,1,112,673695 ,1,113,673690 ,1,114,673685 ,1,115,673680 ,1,116,673675 ,1,117,673670 ,1,118,673665 ,1,119,673660 ,1,120,673615 ,1,121,673610 ,1,122,673605 ,1,123,673600 ,1,124,673595 ,1,125,673590 ,1,126,673585 ,1,127,673580 ,1,128,673560 ,1,129,673555 ,1,130,673550 ,1,131,673545 ,1,132,673540 ,1,133,673535 ,1,134,673530 ,1,135,673525 ,1,136,673500 ,1,137,673495 ,1,138,673490 ,1,139,673485 ,1,140,673465 ,1,141,673460 ,1,142,673455 ,1,143,673450 ,1,144,673420 ,1,145,673415 ,1,146,673410 ,1,147,673405 ,1,148,673400 ,1,149,673395 ,1,150,673390 ,1,151,673385 ,1,152,673365 ,1,153,673360 ,1,154,673355 ,1,155,673350 ,1,156,673345 ,1,157,673340 ,1,158,673335 ,1,159,673330 ,1,160,673295 ,1,161,673290 ,1,162,673285 ,1,163,673280 ,1,164,673275 ,1,165,673270 ,1,166,673265 ,1,167,673260 ,1,168,673245 ,1,169,673240 ,1,170,673235 ,1,171,673230 ,1,172,673215 ,1,173,673210 ,1,174,673205 ,1,175,673200 ,1,176,673165 ,1,177,673160 ,1,178,673155 ,1,179,673150 ,1,180,673145 ,1,181,673140 ,1,182,673135 ,1,183,673130 ,1,184,673105 ,1,185,673100 ,1,186,673095 ,1,187,673090 ,1,188,673060 ,1,189,673055 ,1,190,673050 ,1,191,673045 ,2,822,172260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512425 ,2,827,75 ,2,828,450835 ,1,0,477540 ,2,821,288470 ,1,0,673025 ,1,1,673020 ,1,2,673015 ,1,3,673010 ,1,4,673005 ,1,5,673000 ,1,6,672995 ,1,7,672990 ,1,8,672960 ,1,9,672955 ,1,10,672950 ,1,11,672945 ,1,12,672935 ,1,13,672930 ,1,14,672925 ,1,15,672920 ,1,16,672905 ,1,17,672900 ,1,18,672895 ,1,19,672890 ,1,20,672880 ,1,21,672875 ,1,22,672870 ,1,23,672865 ,1,24,672835 ,1,25,672830 ,1,26,672825 ,1,27,672820 ,1,28,672815 ,1,29,672810 ,1,30,672805 ,1,31,672800 ,1,32,672770 ,1,33,672765 ,1,34,672760 ,1,35,672755 ,1,36,672750 ,1,37,672745 ,1,38,672740 ,1,39,672735 ,1,40,672730 ,1,41,672725 ,1,42,672720 ,1,43,672715 ,1,44,672710 ,1,45,672705 ,1,46,672700 ,1,47,672695 ,1,48,672665 ,1,49,672660 ,1,50,672655 ,1,51,672650 ,1,52,672645 ,1,53,672640 ,1,54,672635 ,1,55,672630 ,1,56,672595 ,1,57,672590 ,1,58,672585 ,1,59,672580 ,1,60,672570 ,1,61,672565 ,1,62,672560 ,1,63,672555 ,1,64,672535 ,1,65,672530 ,1,66,672525 ,1,67,672520 ,1,68,672515 ,1,69,672510 ,1,70,672505 ,1,71,672500 ,1,72,672490 ,1,73,672485 ,1,74,672480 ,1,75,672475 ,1,76,672465 ,1,77,672460 ,1,78,672455 ,1,79,672450 ,1,80,672420 ,1,81,672415 ,1,82,672410 ,1,83,672405 ,1,84,672400 ,1,85,672395 ,1,86,672390 ,1,87,672385 ,1,88,672370 ,1,89,672365 ,1,90,672360 ,1,91,672355 ,1,92,672345 ,1,93,672340 ,1,94,672335 ,1,95,672330 ,1,96,672300 ,1,97,672295 ,1,98,672290 ,1,99,672285 ,1,100,672275 ,1,101,672270 ,1,102,672265 ,1,103,672260 ,1,104,672230 ,1,105,672225 ,1,106,672220 ,1,107,672215 ,1,108,672210 ,1,109,672205 ,1,110,672200 ,1,111,672195 ,1,112,672175 ,1,113,672170 ,1,114,672165 ,1,115,672160 ,1,116,672155 ,1,117,672150 ,1,118,672145 ,1,119,672140 ,1,120,672125 ,1,121,672120 ,1,122,672115 ,1,123,672110 ,1,124,672105 ,1,125,672100 ,1,126,672095 ,1,127,672090 ,1,128,672065 ,1,129,672060 ,1,130,672055 ,1,131,672050 ,1,132,672040 ,1,133,672035 ,1,134,672030 ,1,135,672025 ,1,136,672000 ,1,137,671995 ,1,138,671990 ,1,139,671985 ,1,140,671980 ,1,141,671975 ,1,142,671970 ,1,143,671965 ,1,144,671940 ,1,145,671935 ,1,146,671930 ,1,147,671925 ,1,148,671920 ,1,149,671915 ,1,150,671910 ,1,151,671905 ,1,152,671880 ,1,153,671875 ,1,154,671870 ,1,155,671865 ,1,156,671860 ,1,157,671855 ,1,158,671850 ,1,159,671845 ,1,160,671820 ,1,161,671815 ,1,162,671810 ,1,163,671805 ,1,164,671800 ,1,165,671795 ,1,166,671790 ,1,167,671785 ,1,168,671760 ,1,169,671755 ,1,170,671750 ,1,171,671745 ,1,172,671725 ,1,173,671720 ,1,174,671715 ,1,175,671710 ,1,176,671665 ,1,177,671660 ,1,178,671655 ,1,179,671650 ,1,180,671645 ,1,181,671640 ,1,182,671635 ,1,183,671630 ,1,184,671610 ,1,185,671605 ,1,186,671600 ,1,187,671595 ,1,188,671590 ,1,189,671585 ,1,190,671580 ,1,191,671575 ,2,822,172270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512425 ,2,827,75 ,2,828,450840 ,1,0,477830 ,2,821,353765 ,1,0,671560 ,1,1,671555 ,1,2,671550 ,1,3,671545 ,1,4,671525 ,1,5,671520 ,1,6,671515 ,1,7,671510 ,1,8,671490 ,1,9,671485 ,1,10,671480 ,1,11,671475 ,1,12,671465 ,1,13,671460 ,1,14,671455 ,1,15,671450 ,1,16,671420 ,1,17,671415 ,1,18,671410 ,1,19,671405 ,1,20,671390 ,1,21,671385 ,1,22,671380 ,1,23,671375 ,1,24,671370 ,1,25,671365 ,1,26,671360 ,1,27,671355 ,1,28,671345 ,1,29,671340 ,1,30,671335 ,1,31,671330 ,1,32,671285 ,1,33,671280 ,1,34,671275 ,1,35,671270 ,1,36,671260 ,1,37,671255 ,1,38,671250 ,1,39,671245 ,1,40,671230 ,1,41,671225 ,1,42,671220 ,1,43,671215 ,1,44,671210 ,1,45,671205 ,1,46,671200 ,1,47,671195 ,1,48,671175 ,1,49,671170 ,1,50,671165 ,1,51,671160 ,1,52,671150 ,1,53,671145 ,1,54,671140 ,1,55,671135 ,1,56,671120 ,1,57,671115 ,1,58,671110 ,1,59,671105 ,1,60,671100 ,1,61,671095 ,1,62,671090 ,1,63,671085 ,1,64,671055 ,1,65,671050 ,1,66,671045 ,1,67,671040 ,1,68,671030 ,1,69,671025 ,1,70,671020 ,1,71,671015 ,1,72,670985 ,1,73,670980 ,1,74,670975 ,1,75,670970 ,1,76,670965 ,1,77,670960 ,1,78,670955 ,1,79,670950 ,1,80,670930 ,1,81,670925 ,1,82,670920 ,1,83,670915 ,1,84,670910 ,1,85,670905 ,1,86,670900 ,1,87,670895 ,1,88,670890 ,1,89,670885 ,1,90,670880 ,1,91,670875 ,1,92,670860 ,1,93,670855 ,1,94,670850 ,1,95,670845 ,1,96,670820 ,1,97,670815 ,1,98,670810 ,1,99,670805 ,1,100,670800 ,1,101,670795 ,1,102,670790 ,1,103,670785 ,1,104,670765 ,1,105,670760 ,1,106,670755 ,1,107,670750 ,1,108,670740 ,1,109,670735 ,1,110,670730 ,1,111,670725 ,1,112,670685 ,1,113,670680 ,1,114,670675 ,1,115,670670 ,1,116,670655 ,1,117,670650 ,1,118,670645 ,1,119,670640 ,1,120,670625 ,1,121,670620 ,1,122,670615 ,1,123,670610 ,1,124,670605 ,1,125,670600 ,1,126,670595 ,1,127,670590 ,1,128,670545 ,1,129,670540 ,1,130,670535 ,1,131,670530 ,1,132,670525 ,1,133,670520 ,1,134,670515 ,1,135,670510 ,1,136,670480 ,1,137,670475 ,1,138,670470 ,1,139,670465 ,1,140,670455 ,1,141,670450 ,1,142,670445 ,1,143,670440 ,1,144,670410 ,1,145,670405 ,1,146,670400 ,1,147,670395 ,1,148,670390 ,1,149,670385 ,1,150,670380 ,1,151,670375 ,1,152,670345 ,1,153,670340 ,1,154,670335 ,1,155,670330 ,1,156,670320 ,1,157,670315 ,1,158,670310 ,1,159,670305 ,1,160,670285 ,1,161,670280 ,1,162,670275 ,1,163,670270 ,1,164,670260 ,1,165,670255 ,1,166,670250 ,1,167,670245 ,1,168,670225 ,1,169,670220 ,1,170,670215 ,1,171,670210 ,1,172,670200 ,1,173,670195 ,1,174,670190 ,1,175,670185 ,1,176,670175 ,1,177,670170 ,1,178,670165 ,1,179,670160 ,1,180,670155 ,1,181,670150 ,1,182,670145 ,1,183,670140 ,1,184,670110 ,1,185,670105 ,1,186,670100 ,1,187,670095 ,1,188,670090 ,1,189,670085 ,1,190,670080 ,1,191,670075 ,2,822,172290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512425 ,2,827,75 ,2,828,450845 ,1,0,478475 ,2,821,400815 ,2,822,172300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512435 ,2,827,75 ,2,828,450860 ,1,0,478810 ,2,821,404275 ,2,822,172310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512440 ,2,827,75 ,2,828,450865 ,1,0,479095 ,2,821,435945 ,2,822,172320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512445 ,2,827,75 ,2,828,450870 ,1,0,479370 ,2,821,467520 ,2,822,172350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512450 ,2,827,103485 ,2,828,450875 ,1,0,479750 ,2,821,472895 ,1,0,670070 ,1,1,670065 ,2,822,172370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,0,480015 ,2,821,474365 ,2,822,172380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512455 ,2,827,75 ,2,828,450930 ,1,0,480210 ,2,821,474880 ,1,0,214390 ,1,1,290215 ,2,822,172530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,450935 ,1,0,480745 ,2,821,475560 ,2,822,172565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512460 ,2,827,103540 ,2,828,450940 ,1,0,481025 ,2,821,488740 ,2,822,172575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512495 ,2,827,103550 ,2,828,450945 ,1,0,481225 ,2,821,504630 ,1,0,261415 ,1,1,261405 ,1,2,261385 ,1,3,261375 ,1,4,261475 ,2,822,172585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512500 ,2,827,103560 ,2,828,450950 ,1,0,481665 ,2,821,631610 ,1,0,261455 ,1,1,261445 ,1,2,261435 ,1,3,261425 ,1,4,261505 ,2,822,172595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512505 ,2,827,103570 ,2,828,450955 ,1,0,482135 ,2,821,138775 ,1,0,261535 ,1,1,261525 ,2,822,169740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511915 ,2,827,103625 ,2,828,450965 ,1,0,482510 ,2,821,141095 ,1,0,215830 ,1,1,322350 ,1,2,582935 ,2,822,172725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,1,0,482830 ,2,821,142125 ,2,822,39225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,483115 ,2,821,142280 ,1,0,215820 ,2,822,172780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,1,0,483365 ,2,821,143305 ,2,822,39305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,483695 ,2,821,143470 ,1,0,261550 ,2,822,169790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512525 ,2,827,103875 ,2,828,450975 ,1,0,483935 ,2,821,144855 ,1,0,215800 ,1,1,322340 ,1,2,582950 ,2,822,172835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512375 ,2,827,101420 ,2,828,450980 ,1,0,484300 ,2,821,147190 ,2,822,39330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,484710 ,2,821,147335 ,1,0,281835 ,1,1,281810 ,2,822,172845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512520 ,2,827,103995 ,2,828,450985 ,1,0,485085 ,2,821,164335 ,1,0,261610 ,1,1,261580 ,1,2,261560 ,2,822,169780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512515 ,2,827,104005 ,2,828,450990 ,1,0,485500 ,2,821,167675 ,1,0,215730 ,1,1,322325 ,1,2,582980 ,2,822,172960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511910 ,2,827,101420 ,2,828,451000 ,1,0,485805 ,2,821,170045 ,2,822,39350 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,486150 ,2,821,170190 ,1,0,322315 ,2,822,173020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512565 ,2,827,75 ,2,828,451045 ,1,0,486400 ,2,821,174655 ,1,0,214415 ,1,1,318685 ,2,822,173040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,451010 ,1,0,486640 ,2,821,175925 ,2,822,173050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512530 ,2,827,104130 ,2,828,451015 ,1,0,486845 ,2,821,189560 ,2,822,173060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512560 ,2,827,104130 ,2,828,451040 ,1,0,487105 ,2,821,201855 ,2,822,39410 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,487345 ,2,821,202040 ,2,822,173150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512570 ,2,827,75 ,2,828,451050 ,1,0,487545 ,2,821,205035 ,1,0,215690 ,1,1,322305 ,2,822,173170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,451055 ,1,0,487760 ,2,821,206295 ,2,822,39435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,487950 ,2,821,206450 ,1,0,322265 ,2,822,173190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512575 ,2,827,75 ,2,828,451060 ,1,0,488145 ,2,821,220025 ,1,0,322295 ,2,822,173200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512580 ,2,827,104130 ,2,828,451065 ,1,0,488335 ,2,821,231605 ,2,822,173245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512585 ,2,827,75 ,2,828,451070 ,1,0,488595 ,2,821,233590 ,1,0,215660 ,2,822,173265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,451075 ,1,0,488800 ,2,821,234760 ,2,822,39455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,489065 ,2,821,234945 ,1,0,322225 ,1,1,322215 ,1,2,322205 ,1,3,551570 ,2,822,173275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512590 ,2,827,75 ,2,828,451090 ,1,0,489235 ,2,821,240585 ,1,0,287265 ,2,822,173295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512595 ,2,827,75 ,2,828,451095 ,1,0,489440 ,2,821,244995 ,1,0,261640 ,1,1,261630 ,2,822,169855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511915 ,2,827,104405 ,2,828,451100 ,1,0,489630 ,2,821,247380 ,1,0,215625 ,1,1,322195 ,1,2,583050 ,2,822,173345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451105 ,1,0,489825 ,2,821,248445 ,2,822,39490 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,490045 ,2,821,248630 ,1,0,215615 ,1,1,322165 ,2,822,173365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451120 ,1,0,490255 ,2,821,249670 ,2,822,39510 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,490650 ,2,821,249820 ,1,0,261660 ,1,1,261650 ,2,822,169865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511915 ,2,827,104565 ,2,828,451125 ,1,0,490860 ,2,821,252245 ,1,0,215605 ,1,1,322155 ,1,2,583085 ,2,822,173385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451130 ,1,0,491060 ,2,821,253310 ,2,822,39530 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,491475 ,2,821,253475 ,1,0,215580 ,1,1,322145 ,2,822,173405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,451135 ,1,0,491940 ,2,821,254705 ,2,822,39610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,492195 ,2,821,254875 ,1,0,262205 ,1,1,262195 ,1,2,262185 ,1,3,262175 ,1,4,262165 ,1,5,262155 ,1,6,262145 ,1,7,262135 ,1,8,262110 ,1,9,262100 ,1,10,262090 ,1,11,262080 ,1,12,262070 ,1,13,262060 ,1,14,262050 ,1,15,262040 ,1,16,261995 ,1,17,261985 ,1,18,261975 ,1,19,261965 ,1,20,261940 ,1,21,261930 ,1,22,261920 ,1,23,261910 ,1,24,261890 ,1,25,261880 ,1,26,261870 ,1,27,261860 ,1,28,261845 ,1,29,261835 ,1,30,261825 ,1,31,261815 ,1,32,261785 ,1,33,261775 ,1,34,261765 ,1,35,261755 ,1,36,261745 ,1,37,261735 ,1,38,261725 ,1,39,261715 ,1,40,261670 ,2,822,169760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512960 ,2,827,104790 ,2,828,451170 ,1,0,492385 ,2,821,293385 ,1,0,215560 ,1,1,322135 ,1,2,583320 ,2,822,173470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,492630 ,2,821,294405 ,2,822,39630 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,492935 ,2,821,294545 ,2,822,173490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512630 ,2,827,75 ,2,828,451195 ,1,0,493275 ,2,821,296415 ,2,822,173500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512620 ,2,827,105000 ,2,828,451180 ,1,0,493610 ,2,821,303050 ,1,0,261680 ,1,1,179465 ,2,822,173510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512625 ,2,827,105060 ,2,828,451185 ,1,0,493810 ,2,821,311510 ,2,822,173520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,105000 ,2,828,451190 ,1,0,494030 ,2,821,312185 ,1,0,322025 ,1,1,322015 ,1,2,322000 ,1,3,321990 ,2,822,173565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512785 ,2,827,75 ,2,828,451370 ,1,0,494320 ,2,821,325555 ,2,822,173995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512775 ,2,827,75 ,2,828,451315 ,1,0,494720 ,2,821,328245 ,1,0,612725 ,1,1,321980 ,2,822,173575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512635 ,2,827,75 ,2,828,451200 ,1,0,494905 ,2,821,332550 ,2,822,583220 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,495190 ,2,821,333125 ,1,0,280440 ,2,822,173615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512640 ,2,827,105165 ,2,828,451205 ,1,0,495390 ,2,821,359655 ,1,0,592980 ,1,1,45 ,1,2,13320 ,1,3,280505 ,1,4,321945 ,1,5,583220 ,1,6,45 ,1,7,13320 ,1,8,554725 ,1,9,283035 ,1,10,321935 ,2,822,173625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512725 ,2,827,105305 ,2,828,451290 ,1,0,495645 ,2,821,383220 ,2,822,173820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512715 ,2,827,75 ,2,828,451280 ,1,0,495995 ,2,821,384340 ,2,822,173810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512710 ,2,827,75 ,2,828,451255 ,1,0,496170 ,2,821,385310 ,1,0,321925 ,2,822,173645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512645 ,2,827,75 ,2,828,451215 ,1,0,496360 ,2,821,386635 ,1,0,551575 ,2,822,173730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512655 ,2,827,105225 ,2,828,451225 ,1,0,496530 ,2,821,406045 ,2,822,173865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512650 ,2,827,105215 ,2,828,451220 ,1,0,496770 ,2,821,418880 ,1,0,280785 ,1,1,321665 ,2,822,173740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512705 ,2,827,105245 ,2,828,451250 ,1,0,497125 ,2,821,432745 ,1,0,554720 ,2,822,173750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512690 ,2,827,111610 ,2,828,451230 ,1,0,497360 ,2,821,434070 ,1,0,280390 ,2,822,173790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512695 ,2,827,75 ,2,828,451240 ,1,0,497640 ,2,821,435120 ,2,822,173855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512700 ,2,827,105235 ,2,828,451245 ,1,0,497960 ,2,821,437005 ,2,822,39810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,498365 ,2,821,437100 ,1,0,283015 ,1,1,2210 ,1,2,542350 ,2,822,173835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512720 ,2,827,105285 ,2,828,451285 ,1,0,498795 ,2,821,442050 ,2,822,39820 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,499180 ,2,821,442165 ,1,0,583280 ,1,1,45 ,1,2,11955 ,1,3,45 ,1,4,12795 ,1,5,583255 ,1,6,45 ,1,7,321970 ,2,822,173845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512755 ,2,827,75 ,2,828,451295 ,1,0,499575 ,2,821,444670 ,2,822,39830 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,499980 ,2,821,444775 ,2,822,173985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512765 ,2,827,75 ,2,828,451305 ,1,0,500285 ,2,821,446205 ,2,822,174005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512760 ,2,827,75 ,2,828,451300 ,1,0,500560 ,2,821,447320 ,2,822,173960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512770 ,2,827,75 ,2,828,451310 ,1,0,500815 ,2,821,447920 ,2,822,39770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,501120 ,2,821,448025 ,1,0,321675 ,2,822,173950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512780 ,2,827,75 ,2,828,451360 ,1,0,501325 ,2,821,451110 ,2,822,173975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,451365 ,1,0,501530 ,2,821,451500 ,1,0,45 ,1,1,12795 ,2,822,174030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512790 ,2,827,75 ,2,828,451375 ,1,0,501790 ,2,821,452345 ,2,822,174095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451385 ,1,0,502115 ,2,821,453025 ,1,0,45 ,1,1,13320 ,1,2,583180 ,1,3,45 ,1,4,13320 ,1,5,583290 ,1,6,45 ,1,7,13320 ,1,8,582710 ,1,9,45 ,1,10,13320 ,1,11,45 ,1,12,13320 ,1,13,45 ,1,14,13320 ,1,15,261130 ,2,822,174145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451380 ,1,0,502400 ,2,821,456555 ,2,822,174105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,502750 ,2,821,457880 ,1,0,322115 ,1,1,322105 ,1,2,322095 ,1,3,322085 ,1,4,322045 ,1,5,12255 ,1,6,322035 ,1,7,612735 ,1,8,583325 ,1,9,45 ,1,10,13320 ,2,822,174125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451420 ,1,0,503090 ,2,821,460440 ,1,0,2280 ,1,1,542055 ,1,2,583105 ,1,3,45 ,1,4,13320 ,2,822,174135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512825 ,2,827,75 ,2,828,451395 ,1,0,503450 ,2,821,462665 ,1,0,215520 ,1,1,321620 ,2,822,174170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,503655 ,2,821,463305 ,2,822,39880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,503845 ,2,821,463405 ,2,822,174180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451435 ,1,0,504190 ,2,821,464100 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451430 ,1,0,504375 ,2,821,467525 ,2,822,174190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451390 ,1,0,504575 ,2,821,468760 ,1,0,321610 ,1,1,321600 ,1,2,321590 ,1,3,321570 ,1,4,321560 ,1,5,321550 ,1,6,612740 ,1,7,583360 ,1,8,45 ,1,9,13320 ,2,822,174200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451420 ,1,0,504850 ,2,821,471285 ,1,0,215510 ,1,1,321540 ,2,822,174265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,505045 ,2,821,471865 ,2,822,39950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,505345 ,2,821,471970 ,2,822,174275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451385 ,1,0,505750 ,2,821,472655 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451440 ,1,0,505980 ,2,821,476200 ,2,822,174295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,506165 ,2,821,477515 ,1,0,321515 ,1,1,321505 ,1,2,321495 ,1,3,321485 ,1,4,321475 ,1,5,321465 ,1,6,612745 ,1,7,583370 ,1,8,45 ,1,9,13320 ,2,822,174305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451420 ,1,0,506435 ,2,821,480180 ,1,0,215500 ,1,1,321455 ,2,822,174345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451175 ,1,0,506625 ,2,821,480870 ,2,822,39970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,506820 ,2,821,480955 ,2,822,174355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451450 ,1,0,507145 ,2,821,481640 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451445 ,1,0,507355 ,2,821,485120 ,2,822,174365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451455 ,1,0,507535 ,2,821,486440 ,1,0,321445 ,1,1,11285 ,1,2,321410 ,1,3,321400 ,1,4,612750 ,1,5,583380 ,1,6,45 ,1,7,13320 ,2,822,174375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451480 ,1,0,507720 ,2,821,488900 ,1,0,215490 ,1,1,321390 ,2,822,174410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,507915 ,2,821,489535 ,2,822,39990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,508115 ,2,821,489625 ,2,822,174420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451385 ,1,0,508330 ,2,821,490355 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451485 ,1,0,508530 ,2,821,494000 ,2,822,174460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,508830 ,2,821,495300 ,1,0,321380 ,1,1,321370 ,1,2,321360 ,1,3,321350 ,1,4,321340 ,1,5,321310 ,1,6,612755 ,1,7,583390 ,1,8,45 ,1,9,13320 ,2,822,174470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451490 ,1,0,509045 ,2,821,497925 ,1,0,215470 ,1,1,321300 ,2,822,174500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,509365 ,2,821,498615 ,2,822,40010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,509550 ,2,821,498720 ,2,822,174510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451450 ,1,0,509740 ,2,821,499425 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451495 ,1,0,509995 ,2,821,503060 ,2,822,174520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451510 ,1,0,510260 ,2,821,504410 ,1,0,321290 ,1,1,9950 ,1,2,321280 ,1,3,321260 ,1,4,612760 ,1,5,583430 ,1,6,45 ,1,7,13320 ,2,822,174530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451515 ,1,0,510625 ,2,821,506855 ,1,0,215460 ,1,1,321250 ,2,822,174585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451520 ,1,0,510815 ,2,821,507510 ,2,822,40050 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,511050 ,2,821,507610 ,2,822,174595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451550 ,1,0,511335 ,2,821,508290 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451525 ,1,0,511510 ,2,821,511720 ,2,822,174615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451555 ,1,0,511825 ,2,821,513050 ,1,0,321240 ,1,1,321230 ,1,2,321205 ,1,3,321195 ,1,4,321185 ,1,5,321175 ,1,6,612765 ,1,7,583440 ,1,8,45 ,1,9,13320 ,2,822,174625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451560 ,1,0,512000 ,2,821,515720 ,1,0,215450 ,1,1,321165 ,2,822,174705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,512270 ,2,821,516375 ,2,822,40070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,512470 ,2,821,516460 ,2,822,174715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451575 ,1,0,512660 ,2,821,517140 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451565 ,1,0,512860 ,2,821,520600 ,2,822,174725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451580 ,1,0,513150 ,2,821,521900 ,1,0,321155 ,1,1,2765 ,1,2,321145 ,1,3,321135 ,1,4,612770 ,1,5,583450 ,1,6,45 ,1,7,13320 ,2,822,174735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451585 ,1,0,513490 ,2,821,524410 ,1,0,215440 ,1,1,321115 ,2,822,174775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,513615 ,2,821,525085 ,2,822,40090 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,513880 ,2,821,525190 ,2,822,174785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451625 ,1,0,514220 ,2,821,525905 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451590 ,1,0,514420 ,2,821,529395 ,2,822,174805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451630 ,1,0,514670 ,2,821,530750 ,1,0,321105 ,1,1,321095 ,1,2,321085 ,1,3,321070 ,1,4,321060 ,1,5,321050 ,1,6,612795 ,1,7,583460 ,1,8,45 ,1,9,13320 ,2,822,174815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451635 ,1,0,514855 ,2,821,533415 ,1,0,215410 ,1,1,321040 ,2,822,174845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,515035 ,2,821,534110 ,2,822,40110 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,515210 ,2,821,534190 ,2,822,174855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451625 ,1,0,515405 ,2,821,534870 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451590 ,1,0,515755 ,2,821,538360 ,2,822,174865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451630 ,1,0,515930 ,2,821,539625 ,1,0,320995 ,1,1,320985 ,1,2,320975 ,1,3,320965 ,1,4,320955 ,1,5,320945 ,1,6,612800 ,1,7,583485 ,1,8,45 ,1,9,13320 ,2,822,174875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451640 ,1,0,516150 ,2,821,542435 ,1,0,215400 ,1,1,320935 ,2,822,174940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,516465 ,2,821,543060 ,2,822,40140 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,516650 ,2,821,543150 ,2,822,174950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451655 ,1,0,516840 ,2,821,543835 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,174980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451650 ,1,0,517035 ,2,821,547250 ,2,822,174960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451660 ,1,0,517300 ,2,821,548500 ,1,0,320925 ,1,1,320900 ,1,2,612805 ,1,3,583495 ,1,4,45 ,1,5,13320 ,2,822,174970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451665 ,1,0,517540 ,2,821,550920 ,1,0,215390 ,1,1,320890 ,2,822,175020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,517870 ,2,821,551525 ,2,822,40160 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,518135 ,2,821,551595 ,2,822,175030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451625 ,1,0,518515 ,2,821,552280 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451690 ,1,0,518690 ,2,821,555930 ,2,822,175040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451630 ,1,0,518870 ,2,821,557285 ,1,0,320880 ,1,1,320870 ,1,2,320855 ,1,3,320845 ,1,4,320835 ,1,5,2725 ,1,6,320825 ,1,7,612810 ,1,8,583510 ,1,9,45 ,1,10,13320 ,2,822,175050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451635 ,1,0,519095 ,2,821,559985 ,1,0,215380 ,1,1,320800 ,2,822,175090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451175 ,1,0,519450 ,2,821,560645 ,2,822,40180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,519700 ,2,821,560730 ,2,822,175100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451625 ,1,0,519960 ,2,821,561445 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451695 ,1,0,520205 ,2,821,565025 ,2,822,175145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451630 ,1,0,520495 ,2,821,566340 ,1,0,320790 ,1,1,320780 ,1,2,320770 ,1,3,320760 ,1,4,320750 ,1,5,612820 ,1,6,583520 ,1,7,45 ,1,8,13320 ,2,822,175155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451640 ,1,0,520820 ,2,821,568990 ,1,0,215355 ,1,1,320740 ,2,822,175190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,521090 ,2,821,569670 ,2,822,40200 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,521260 ,2,821,569765 ,2,822,175200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451625 ,1,0,521460 ,2,821,570470 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451695 ,1,0,521650 ,2,821,574105 ,2,822,175210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451700 ,1,0,522000 ,2,821,575405 ,1,0,320730 ,1,1,320700 ,1,2,320690 ,1,3,320680 ,1,4,320670 ,1,5,320650 ,1,6,612825 ,1,7,583540 ,1,8,45 ,1,9,13320 ,2,822,175220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451640 ,1,0,522195 ,2,821,578015 ,1,0,215345 ,1,1,320640 ,2,822,175270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,522480 ,2,821,578695 ,2,822,40265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,522675 ,2,821,578775 ,2,822,175280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451625 ,1,0,522890 ,2,821,579490 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451690 ,1,0,523105 ,2,821,583165 ,2,822,175305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451630 ,1,0,523285 ,2,821,584490 ,1,0,320630 ,1,1,320620 ,1,2,320575 ,1,3,320565 ,1,4,320555 ,1,5,612830 ,1,6,583550 ,1,7,45 ,1,8,13320 ,2,822,175315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451635 ,1,0,523535 ,2,821,587185 ,1,0,215335 ,1,1,320545 ,2,822,175355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,523765 ,2,821,587885 ,2,822,40285 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,524035 ,2,821,587975 ,2,822,175365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451385 ,1,0,524260 ,2,821,588675 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451705 ,1,0,524455 ,2,821,592330 ,2,822,175375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451390 ,1,0,524645 ,2,821,593600 ,1,0,320535 ,1,1,612835 ,1,2,583560 ,1,3,45 ,1,4,13320 ,2,822,175385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451715 ,1,0,524970 ,2,821,596280 ,1,0,215325 ,1,1,320525 ,2,822,175415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451720 ,1,0,525395 ,2,821,596965 ,2,822,40310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,525560 ,2,821,597055 ,2,822,175425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451385 ,1,0,525770 ,2,821,597750 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451705 ,1,0,525990 ,2,821,601305 ,2,822,175475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,526180 ,2,821,602660 ,1,0,320515 ,1,1,320505 ,1,2,320490 ,1,3,320480 ,1,4,320470 ,1,5,320460 ,1,6,612860 ,1,7,583570 ,1,8,45 ,1,9,13320 ,2,822,175485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451420 ,1,0,526420 ,2,821,605480 ,1,0,215300 ,1,1,320450 ,2,822,175515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,526730 ,2,821,606140 ,2,822,40330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,526945 ,2,821,606240 ,2,822,175525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451385 ,1,0,527180 ,2,821,606905 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451705 ,1,0,527430 ,2,821,610545 ,2,822,175535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,527720 ,2,821,611875 ,1,0,320440 ,1,1,320430 ,1,2,320420 ,1,3,320390 ,1,4,612865 ,1,5,583600 ,1,6,45 ,1,7,13320 ,2,822,175545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451420 ,1,0,527925 ,2,821,614455 ,1,0,215290 ,1,1,320380 ,2,822,175585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,528240 ,2,821,615095 ,2,822,40390 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,528440 ,2,821,615190 ,2,822,175595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451385 ,1,0,528675 ,2,821,615815 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451705 ,1,0,528845 ,2,821,619220 ,2,822,175605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,529035 ,2,821,620405 ,1,0,320370 ,1,1,320360 ,1,2,320350 ,1,3,320340 ,1,4,612870 ,1,5,583610 ,1,6,45 ,1,7,13320 ,2,822,175615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451420 ,1,0,529230 ,2,821,622840 ,1,0,215280 ,1,1,320330 ,2,822,175665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,529485 ,2,821,623440 ,2,822,40410 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,529680 ,2,821,623520 ,2,822,175675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451450 ,1,0,530090 ,2,821,624180 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451725 ,1,0,530490 ,2,821,627690 ,2,822,175685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451455 ,1,0,530685 ,2,821,628970 ,1,0,320320 ,1,1,320290 ,1,2,320280 ,1,3,320270 ,1,4,612875 ,1,5,583620 ,1,6,45 ,1,7,13320 ,2,822,175695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451730 ,1,0,531180 ,2,821,631605 ,1,0,215270 ,1,1,320260 ,2,822,175725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,531570 ,2,821,632300 ,2,822,40440 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,531780 ,2,821,632380 ,2,822,175735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451450 ,1,0,532190 ,2,821,633040 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451725 ,1,0,532375 ,2,821,636435 ,2,822,175770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451455 ,1,0,532650 ,2,821,637645 ,1,0,320245 ,1,1,320235 ,1,2,320225 ,1,3,320215 ,1,4,612885 ,1,5,583630 ,1,6,45 ,1,7,13320 ,2,822,175780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512910 ,2,827,75 ,2,828,451750 ,1,0,532925 ,2,821,640210 ,1,0,215260 ,1,1,320180 ,2,822,175810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451425 ,1,0,533105 ,2,821,640875 ,2,822,40460 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,533375 ,2,821,640980 ,2,822,175820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451450 ,1,0,533665 ,2,821,641675 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451725 ,1,0,533850 ,2,821,645115 ,2,822,175830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451455 ,1,0,533990 ,2,821,646340 ,1,0,320170 ,1,1,612890 ,1,2,583655 ,1,3,45 ,1,4,13320 ,2,822,175840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512830 ,2,827,75 ,2,828,451730 ,1,0,534195 ,2,821,648855 ,1,0,215250 ,1,1,320160 ,2,822,175905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451720 ,1,0,534445 ,2,821,649480 ,2,822,40500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,534580 ,2,821,649560 ,2,822,175915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451760 ,1,0,534785 ,2,821,650200 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,175950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451755 ,1,0,535025 ,2,821,653780 ,2,822,175930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451390 ,1,0,535275 ,2,821,654990 ,1,0,320150 ,1,1,320135 ,1,2,320125 ,1,3,320115 ,1,4,320105 ,1,5,612895 ,1,6,583665 ,1,7,45 ,1,8,13320 ,2,822,175940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451765 ,1,0,535540 ,2,821,657305 ,1,0,215240 ,1,1,320075 ,2,822,175995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451720 ,1,0,535725 ,2,821,657915 ,2,822,40520 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,536115 ,2,821,657990 ,2,822,176005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451760 ,1,0,536310 ,2,821,658700 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451755 ,1,0,536560 ,2,821,662150 ,2,822,176015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451775 ,1,0,536810 ,2,821,663435 ,1,0,320065 ,1,1,320055 ,1,2,320045 ,1,3,320025 ,1,4,320015 ,1,5,612900 ,1,6,583675 ,1,7,45 ,1,8,13320 ,2,822,176025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512925 ,2,827,75 ,2,828,451780 ,1,0,537045 ,2,821,665740 ,1,0,215230 ,1,1,320005 ,2,822,176065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,537220 ,2,821,666360 ,2,822,40540 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,537390 ,2,821,666455 ,2,822,176075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451790 ,1,0,537640 ,2,821,667100 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451785 ,1,0,537840 ,2,821,670460 ,2,822,176105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451820 ,1,0,538115 ,2,821,671740 ,1,0,612925 ,1,1,583685 ,1,2,45 ,1,3,13320 ,2,822,176115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451825 ,1,0,538445 ,2,821,674115 ,1,0,215190 ,1,1,319995 ,2,822,176150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,538640 ,2,821,674735 ,2,822,40560 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,538835 ,2,821,674825 ,2,822,176160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451835 ,1,0,539035 ,2,821,685 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451830 ,1,0,539270 ,2,821,6560 ,2,822,176170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451840 ,1,0,539505 ,2,821,8735 ,1,0,319965 ,1,1,319955 ,1,2,319945 ,1,3,319935 ,1,4,319925 ,1,5,612930 ,1,6,583745 ,1,7,45 ,1,8,13320 ,2,822,176180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451845 ,1,0,539715 ,2,821,12780 ,1,0,215180 ,1,1,319915 ,2,822,176225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,539910 ,2,821,13845 ,2,822,40600 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,540265 ,2,821,14010 ,2,822,176235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451790 ,1,0,540480 ,2,821,15135 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451850 ,1,0,540750 ,2,821,21030 ,2,822,176250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451855 ,1,0,540980 ,2,821,23210 ,1,0,612935 ,1,1,583755 ,1,2,45 ,1,3,13320 ,2,822,176260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451825 ,1,0,541250 ,2,821,27385 ,1,0,215170 ,1,1,319905 ,2,822,176320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,541535 ,2,821,28490 ,2,822,40620 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,541720 ,2,821,28650 ,2,822,176330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451880 ,1,0,541970 ,2,821,29815 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451875 ,1,0,542190 ,2,821,35675 ,2,822,176340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451855 ,1,0,542385 ,2,821,37785 ,1,0,319895 ,1,1,319865 ,1,2,319855 ,1,3,319845 ,1,4,319835 ,1,5,612940 ,1,6,583765 ,1,7,45 ,1,8,13320 ,2,822,176350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451885 ,1,0,542585 ,2,821,41910 ,1,0,215160 ,1,1,319825 ,2,822,176395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,542835 ,2,821,42970 ,2,822,40640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,543025 ,2,821,43140 ,2,822,176405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451880 ,1,0,543415 ,2,821,44285 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451875 ,1,0,543610 ,2,821,50060 ,2,822,176445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451820 ,1,0,543880 ,2,821,52190 ,1,0,319815 ,1,1,319805 ,1,2,319795 ,1,3,612945 ,1,4,583775 ,1,5,45 ,1,6,13320 ,2,822,176455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451890 ,1,0,544070 ,2,821,56300 ,1,0,215145 ,1,1,319745 ,2,822,176485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,544265 ,2,821,57390 ,2,822,40660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,544480 ,2,821,57545 ,2,822,176495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451900 ,1,0,544670 ,2,821,58670 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451895 ,1,0,545015 ,2,821,64525 ,2,822,176505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451855 ,1,0,545215 ,2,821,66620 ,1,0,319735 ,1,1,319725 ,1,2,319715 ,1,3,319700 ,1,4,319690 ,1,5,612950 ,1,6,583805 ,1,7,45 ,1,8,13320 ,2,822,176515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451890 ,1,0,545525 ,2,821,70550 ,1,0,215135 ,1,1,319680 ,2,822,176560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,545720 ,2,821,71565 ,2,822,40710 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,545940 ,2,821,71720 ,2,822,176570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451900 ,1,0,546125 ,2,821,72820 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451905 ,1,0,546340 ,2,821,78515 ,2,822,176595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451855 ,1,0,546730 ,2,821,80650 ,1,0,319670 ,1,1,319640 ,1,2,319630 ,1,3,612955 ,1,4,583815 ,1,5,45 ,1,6,13320 ,2,822,176605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451910 ,1,0,546985 ,2,821,84710 ,1,0,215125 ,1,1,319620 ,2,822,176665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,547165 ,2,821,85785 ,2,822,40730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,547520 ,2,821,85950 ,2,822,176675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451900 ,1,0,547645 ,2,821,87065 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512930 ,2,827,105570 ,2,828,451955 ,1,0,547845 ,2,821,92830 ,2,822,176685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451855 ,1,0,548030 ,2,821,94925 ,1,0,319610 ,1,1,319595 ,1,2,319585 ,1,3,319575 ,1,4,319565 ,1,5,612960 ,1,6,583835 ,1,7,45 ,1,8,13320 ,2,822,176695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451960 ,1,0,548280 ,2,821,99030 ,1,0,215115 ,1,1,319535 ,2,822,176725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,548645 ,2,821,100160 ,2,822,40750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,549005 ,2,821,100325 ,2,822,176735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451900 ,1,0,549260 ,2,821,101475 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451965 ,1,0,549455 ,2,821,107485 ,2,822,176780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451855 ,1,0,549725 ,2,821,109640 ,1,0,319525 ,1,1,319515 ,1,2,319505 ,1,3,612985 ,1,4,583845 ,1,5,45 ,1,6,13320 ,2,822,176790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451960 ,1,0,549970 ,2,821,113795 ,1,0,215090 ,1,1,319495 ,2,822,176820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451720 ,1,0,550175 ,2,821,114920 ,2,822,40770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,550355 ,2,821,115085 ,2,822,176830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451880 ,1,0,550605 ,2,821,116205 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451970 ,1,0,550945 ,2,821,122060 ,2,822,176840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451855 ,1,0,551250 ,2,821,124170 ,1,0,319485 ,1,1,319475 ,1,2,319465 ,1,3,319440 ,1,4,319430 ,1,5,612990 ,1,6,583875 ,1,7,45 ,1,8,13320 ,2,822,176850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451960 ,1,0,551425 ,2,821,128245 ,1,0,215080 ,1,1,319420 ,2,822,176900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,551690 ,2,821,129290 ,2,822,40800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,551930 ,2,821,129450 ,2,822,176910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451900 ,1,0,552240 ,2,821,130585 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,176950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451970 ,1,0,552375 ,2,821,136460 ,2,822,176930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451855 ,1,0,552510 ,2,821,138660 ,1,0,319410 ,1,1,319400 ,1,2,319390 ,1,3,612995 ,1,4,583885 ,1,5,45 ,1,6,13320 ,2,822,176940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451960 ,1,0,552710 ,2,821,142650 ,1,0,215070 ,1,1,319380 ,2,822,176995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,552920 ,2,821,143690 ,2,822,40820 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,553055 ,2,821,143850 ,2,822,177005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451900 ,1,0,553245 ,2,821,144970 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,177040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451975 ,1,0,553590 ,2,821,150985 ,2,822,177015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512840 ,2,827,75 ,2,828,451855 ,1,0,553840 ,2,821,153150 ,1,0,319370 ,1,1,319325 ,1,2,319315 ,1,3,319305 ,1,4,319295 ,1,5,613000 ,1,6,583895 ,1,7,45 ,1,8,13320 ,2,822,177025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451890 ,1,0,554120 ,2,821,157220 ,1,0,215060 ,1,1,319285 ,2,822,177060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451175 ,1,0,554370 ,2,821,158265 ,2,822,40840 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,554665 ,2,821,158405 ,2,822,177070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512845 ,2,827,75 ,2,828,451900 ,1,0,555040 ,2,821,159530 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,177110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512835 ,2,827,105570 ,2,828,451980 ,1,0,555360 ,2,821,165465 ,2,822,177090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451855 ,1,0,555550 ,2,821,167625 ,1,0,319275 ,1,1,319265 ,1,2,319255 ,1,3,613005 ,1,4,583905 ,1,5,45 ,1,6,13320 ,2,822,177100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451890 ,1,0,555815 ,2,821,171845 ,1,0,215045 ,1,1,319235 ,2,822,177135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,451425 ,1,0,556145 ,2,821,172935 ,2,822,40860 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,556350 ,2,821,173100 ,2,822,177145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451450 ,1,0,556605 ,2,821,174290 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,177195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451985 ,1,0,556810 ,2,821,180330 ,2,822,177155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451455 ,1,0,557045 ,2,821,182480 ,1,0,319225 ,1,1,319215 ,1,2,319205 ,1,3,319195 ,1,4,319185 ,1,5,613010 ,1,6,583940 ,1,7,45 ,1,8,13320 ,2,822,177165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451990 ,1,0,557250 ,2,821,186665 ,1,0,215035 ,1,1,319175 ,2,822,177215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451175 ,1,0,557530 ,2,821,187740 ,2,822,40905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,557810 ,2,821,187885 ,2,822,177225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512935 ,2,827,75 ,2,828,452010 ,1,0,558190 ,2,821,189040 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,177265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,451985 ,1,0,558395 ,2,821,194950 ,2,822,177245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451455 ,1,0,558520 ,2,821,197165 ,1,0,319165 ,1,1,319125 ,1,2,319115 ,1,3,613015 ,1,4,583950 ,1,5,45 ,1,6,13320 ,2,822,177255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512900 ,2,827,75 ,2,828,451990 ,1,0,558670 ,2,821,201260 ,1,0,215025 ,1,1,319105 ,2,822,177310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451175 ,1,0,558970 ,2,821,202340 ,2,822,40925 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,559215 ,2,821,202515 ,2,822,177320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451655 ,1,0,559375 ,2,821,203690 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,177355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,452015 ,1,0,559500 ,2,821,209615 ,2,822,177330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,451660 ,1,0,559625 ,2,821,211735 ,1,0,319095 ,1,1,319085 ,1,2,319075 ,1,3,319065 ,1,4,319055 ,1,5,613020 ,1,6,583960 ,1,7,45 ,1,8,13320 ,2,822,177340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512940 ,2,827,75 ,2,828,451665 ,1,0,559815 ,2,821,215915 ,1,0,215015 ,1,1,319030 ,2,822,177375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,451425 ,1,0,559950 ,2,821,217005 ,2,822,40945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,560115 ,2,821,217140 ,2,822,177385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,451655 ,1,0,560230 ,2,821,218270 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,2,822,177455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512810 ,2,827,105570 ,2,828,452015 ,1,0,560370 ,2,821,224205 ,2,822,177435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512820 ,2,827,75 ,2,828,452020 ,1,0,560495 ,2,821,226345 ,1,0,319020 ,1,1,319010 ,1,2,319000 ,1,3,613045 ,1,4,583970 ,1,5,45 ,1,6,13320 ,2,822,177445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512905 ,2,827,75 ,2,828,451665 ,1,0,560670 ,2,821,230390 ,1,0,262695 ,1,1,262685 ,1,2,262660 ,1,3,262640 ,1,4,262595 ,1,5,262575 ,1,6,262555 ,1,7,262535 ,1,8,262500 ,1,9,262480 ,1,10,262460 ,1,11,262420 ,1,12,262400 ,1,13,262370 ,1,14,262285 ,1,15,262265 ,1,16,262245 ,2,822,169800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513310 ,2,827,108885 ,2,828,452025 ,1,0,560870 ,2,821,247120 ,1,0,214975 ,1,1,584015 ,2,822,177480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,1,0,560995 ,2,821,248180 ,2,822,40965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,0,561135 ,2,821,248335 ,2,822,177500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512965 ,2,827,75 ,2,828,452035 ,1,0,561275 ,2,821,256230 ,1,0,214955 ,2,822,177535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,449950 ,2,821,257270 ,2,822,41035 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,257415 ,2,822,177555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512970 ,2,827,109110 ,2,828,452040 ,2,821,263860 ,1,0,262295 ,1,1,214930 ,2,822,177595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512975 ,2,827,109120 ,2,828,452045 ,2,821,265745 ,1,0,318915 ,2,822,177650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,452050 ,2,821,266475 ,2,822,41060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,266635 ,1,0,13865 ,1,1,13855 ,1,2,13840 ,1,3,13830 ,1,4,13820 ,1,5,13810 ,1,6,13790 ,1,7,13780 ,1,8,13770 ,1,9,13760 ,1,10,13740 ,1,11,13730 ,1,12,13720 ,1,13,13710 ,1,14,13680 ,1,15,13670 ,1,16,13660 ,1,17,13650 ,1,18,13640 ,1,19,13630 ,1,20,13620 ,1,21,13610 ,1,22,13580 ,1,23,13570 ,1,24,13560 ,1,25,13550 ,1,26,13540 ,1,27,13530 ,1,28,13520 ,1,29,13510 ,1,30,13460 ,1,31,13450 ,1,32,13440 ,1,33,13430 ,1,34,13415 ,1,35,13405 ,1,36,13395 ,1,37,13385 ,1,38,13355 ,1,39,13345 ,1,40,13335 ,1,41,13325 ,1,42,13315 ,1,43,13305 ,1,44,13295 ,1,45,13285 ,1,46,13245 ,1,47,13235 ,1,48,13225 ,1,49,13215 ,1,50,13200 ,1,51,13190 ,1,52,13180 ,1,53,13170 ,1,54,13135 ,1,55,13125 ,1,56,13115 ,1,57,13105 ,1,58,13095 ,1,59,13085 ,1,60,13075 ,1,61,13065 ,1,62,13045 ,1,63,13035 ,1,64,13025 ,1,65,13015 ,1,66,13000 ,1,67,12990 ,1,68,12980 ,1,69,12970 ,1,70,12920 ,1,71,12910 ,1,72,12900 ,1,73,12890 ,1,74,12880 ,1,75,12870 ,1,76,12860 ,1,77,12850 ,1,78,12820 ,1,79,12810 ,1,80,12800 ,1,81,12790 ,1,82,12775 ,1,83,12765 ,1,84,12755 ,1,85,12745 ,1,86,12720 ,1,87,12710 ,1,88,12700 ,1,89,12690 ,1,90,12680 ,1,91,12670 ,1,92,12660 ,1,93,12650 ,1,94,12620 ,1,95,12610 ,1,96,12600 ,1,97,12590 ,1,98,12580 ,1,99,12570 ,1,100,12560 ,1,101,12550 ,1,102,12510 ,1,103,12500 ,1,104,12490 ,1,105,12480 ,1,106,12470 ,1,107,12460 ,1,108,12450 ,1,109,12440 ,1,110,12400 ,1,111,12390 ,1,112,12380 ,1,113,12370 ,1,114,12360 ,1,115,12350 ,1,116,12340 ,1,117,12330 ,1,118,12300 ,2,822,177660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512980 ,2,827,109110 ,2,828,452075 ,2,821,365575 ,2,822,177670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512985 ,2,827,109110 ,2,828,452080 ,2,821,366550 ,2,822,177680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512990 ,2,827,109110 ,2,828,452085 ,2,821,370415 ,2,822,177690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512995 ,2,827,109110 ,2,828,452090 ,2,821,374235 ,1,0,262315 ,1,1,2210 ,1,2,542350 ,2,822,177700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513030 ,2,827,109215 ,2,828,452095 ,2,821,378650 ,1,0,278740 ,1,1,373800 ,2,822,177710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513045 ,2,827,101975 ,2,828,452145 ,2,821,380630 ,1,0,262305 ,2,822,177875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513040 ,2,827,109225 ,2,828,452140 ,2,821,428210 ,2,822,177865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513035 ,2,827,109110 ,2,828,452100 ,2,821,430175 ,2,822,177805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512995 ,2,827,109110 ,2,828,452105 ,2,821,432525 ,2,822,177755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512995 ,2,827,109110 ,2,828,452110 ,2,821,434900 ,2,822,177765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513055 ,2,827,101975 ,2,828,452150 ,2,821,437175 ,2,822,177775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513060 ,2,827,109235 ,2,828,452155 ,2,821,439405 ,2,822,177795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513065 ,2,827,109110 ,2,828,452160 ,2,821,447410 ,2,822,177825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513070 ,2,827,109245 ,2,828,452165 ,2,821,449710 ,2,822,177895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513105 ,2,827,109110 ,2,828,452170 ,2,821,452215 ,1,0,12280 ,2,822,177910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513110 ,2,827,109110 ,2,828,452175 ,2,821,452875 ,1,0,14050 ,1,1,14040 ,1,2,262350 ,1,3,14005 ,1,4,13995 ,1,5,13985 ,1,6,13975 ,1,7,13955 ,1,8,13945 ,1,9,13935 ,1,10,13925 ,1,11,13885 ,1,12,13875 ,2,822,177920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513115 ,2,827,109375 ,2,828,452195 ,2,821,467550 ,1,0,318980 ,1,1,318970 ,2,822,177940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513120 ,2,827,109110 ,2,828,452200 ,2,821,474020 ,1,0,214910 ,2,822,178005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,452205 ,2,821,474695 ,2,822,41120 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,474775 ,1,0,214900 ,2,822,178100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,452210 ,2,821,475425 ,2,822,41140 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,475540 ,1,0,214865 ,2,822,178155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,452220 ,2,821,476195 ,2,822,41165 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,476295 ,1,0,181175 ,2,822,178165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513130 ,2,827,109615 ,2,828,452225 ,2,821,487420 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,2,822,178175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513140 ,2,827,75 ,2,828,452235 ,2,821,494400 ,2,822,178245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513135 ,2,827,109625 ,2,828,452230 ,2,821,495505 ,2,822,178225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513185 ,2,827,109635 ,2,828,452275 ,2,821,498505 ,2,822,178235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513175 ,2,827,75 ,2,828,452265 ,2,821,499375 ,1,0,45 ,1,1,11510 ,2,822,178255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513145 ,2,827,75 ,2,828,452260 ,2,821,502540 ,2,822,178280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513180 ,2,827,75 ,2,828,452270 ,2,821,504745 ,2,822,178270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513190 ,2,827,109110 ,2,828,452280 ,2,821,506610 ,2,822,178300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513200 ,2,827,109650 ,2,828,452285 ,2,821,511650 ,2,822,178365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513205 ,2,827,75 ,2,828,452290 ,2,821,512600 ,1,0,214855 ,2,822,178400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,513290 ,2,822,41240 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,513415 ,1,0,162765 ,2,822,178420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513210 ,2,827,75 ,2,828,452295 ,2,821,514415 ,1,0,262490 ,1,1,214835 ,2,822,178465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513215 ,2,827,109825 ,2,828,452045 ,2,821,515510 ,1,0,318855 ,2,822,178495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,452050 ,2,821,515970 ,2,822,41260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,516080 ,1,0,318875 ,1,1,318865 ,2,822,178505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513245 ,2,827,75 ,2,828,452320 ,2,821,521970 ,1,0,318905 ,1,1,318885 ,2,822,178515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513250 ,2,827,75 ,2,828,452325 ,2,821,527090 ,2,822,178560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513255 ,2,827,75 ,2,828,452330 ,2,821,529145 ,1,0,214810 ,2,822,178580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,529780 ,2,822,41280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,529885 ,2,822,178670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513260 ,2,827,75 ,2,828,452290 ,2,821,530890 ,1,0,214800 ,1,1,318830 ,2,822,178700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,531535 ,2,822,41300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,531645 ,2,822,178720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513205 ,2,827,75 ,2,828,452290 ,2,821,532545 ,1,0,214790 ,2,822,178775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,533215 ,2,822,41345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,533300 ,2,822,178795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513260 ,2,827,75 ,2,828,452290 ,2,821,534305 ,1,0,214770 ,2,822,178825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,534925 ,2,822,41365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,535015 ,2,822,178845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513260 ,2,827,75 ,2,828,452335 ,2,821,535980 ,1,0,214760 ,2,822,178900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,452220 ,2,821,536605 ,2,822,41390 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,536680 ,2,822,178930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513265 ,2,827,75 ,2,828,452350 ,2,821,537465 ,1,0,214750 ,2,822,178960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,538105 ,2,822,41410 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,538240 ,2,822,179005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513270 ,2,827,75 ,2,828,452350 ,2,821,539075 ,1,0,214740 ,2,822,179035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,539680 ,2,822,41465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,539790 ,1,0,214720 ,2,822,179115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,452355 ,2,821,540475 ,2,822,41485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,540585 ,2,822,179135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513275 ,2,827,75 ,2,828,452360 ,2,821,542185 ,1,0,214710 ,1,1,318820 ,2,822,179155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,452355 ,2,821,542825 ,2,822,41505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,542935 ,1,0,554715 ,2,822,179165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513280 ,2,827,75 ,2,828,452365 ,2,821,550770 ,1,0,287255 ,1,1,289000 ,1,2,289015 ,2,822,179215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513305 ,2,827,109110 ,2,828,452380 ,2,821,556955 ,1,0,261515 ,1,1,261570 ,1,2,262810 ,1,3,262800 ,1,4,262790 ,1,5,262780 ,1,6,262760 ,1,7,262715 ,2,822,169750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513400 ,2,827,110705 ,2,828,452385 ,2,821,562000 ,1,0,214650 ,1,1,582895 ,2,822,179240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,452390 ,2,821,562805 ,2,822,41525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,562895 ,1,0,214620 ,1,1,318810 ,2,822,179320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511910 ,2,827,101420 ,2,828,452395 ,2,821,564210 ,2,822,41570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,564305 ,2,822,179365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513315 ,2,827,75 ,2,828,452400 ,2,821,566875 ,1,0,214590 ,1,1,318755 ,2,822,179420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513320 ,2,827,75 ,2,828,452405 ,2,821,567605 ,2,822,41590 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,567685 ,2,822,179430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513340 ,2,827,75 ,2,828,452410 ,2,821,568300 ,2,822,179440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513345 ,2,827,75 ,2,828,452415 ,2,821,568880 ,1,0,318725 ,2,822,179505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513350 ,2,827,111035 ,2,828,452440 ,2,821,572050 ,1,0,214535 ,1,1,318715 ,2,822,179525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,452445 ,2,821,572790 ,2,822,41610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,572920 ,1,0,214505 ,2,822,179615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,450160 ,2,821,573655 ,2,822,41650 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,573775 ,1,0,214475 ,1,1,318705 ,2,822,179635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511910 ,2,827,101420 ,2,828,452450 ,2,821,575145 ,2,822,41670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,575220 ,2,822,179645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513355 ,2,827,40135 ,2,828,452455 ,2,821,584440 ,2,822,179665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513395 ,2,827,40135 ,2,828,452460 ,2,821,594095 ,1,0,262865 ,1,1,262855 ,1,2,262845 ,2,822,169770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511900 ,2,827,111290 ,2,828,452470 ,2,821,596105 ,1,0,214380 ,1,1,584290 ,2,822,179765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,449950 ,2,821,596765 ,2,822,41690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,596885 ,1,0,214360 ,1,1,318675 ,2,822,179790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,452405 ,2,821,597630 ,2,822,41765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,597755 ,1,0,214310 ,1,1,318665 ,2,822,179810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511640 ,2,827,75 ,2,828,452475 ,2,821,598480 ,2,822,41785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,598590 ,2,822,179845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513405 ,2,827,75 ,2,828,452515 ,2,821,600395 ,1,0,318775 ,1,1,318765 ,2,822,179970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513450 ,2,827,75 ,2,828,452585 ,2,821,602310 ,1,0,554765 ,2,822,179990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513435 ,2,827,111610 ,2,828,452590 ,2,821,603355 ,1,0,554770 ,2,822,180000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513455 ,2,827,111610 ,2,828,452595 ,2,821,604430 ,1,0,554755 ,2,822,180010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513435 ,2,827,111610 ,2,828,452600 ,2,821,605405 ,1,0,260965 ,1,1,240275 ,1,2,554790 ,2,822,180020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513435 ,2,827,111610 ,2,828,452610 ,2,821,606405 ,1,0,554760 ,2,822,180030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513435 ,2,827,111610 ,2,828,452615 ,2,821,607345 ,2,822,41880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,607440 ,2,822,41805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,607570 ,2,822,584405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,608780 ,2,822,180060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,452625 ,2,821,609180 ,2,822,180070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513465 ,2,827,75 ,2,828,452655 ,2,821,612880 ,2,822,180080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513470 ,2,827,75 ,2,828,452660 ,2,821,617140 ,1,0,272495 ,1,1,370375 ,1,2,322890 ,1,3,322880 ,1,4,375020 ,1,5,161245 ,1,6,612010 ,1,7,45 ,1,8,13320 ,2,822,180090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513475 ,2,827,111960 ,2,828,452665 ,2,821,623755 ,2,822,42000 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,623850 ,2,822,180120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513485 ,2,827,75 ,2,828,452685 ,2,821,625435 ,2,822,180130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513480 ,2,827,75 ,2,828,452670 ,2,821,627005 ,1,0,290155 ,2,822,180140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513515 ,2,827,75 ,2,828,452695 ,2,821,628690 ,2,822,180170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513510 ,2,827,75 ,2,828,452690 ,2,821,631350 ,2,822,42010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,631440 ,2,822,84450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513520 ,2,827,75 ,2,828,452700 ,2,821,632020 ,2,822,61135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513525 ,2,827,75 ,2,828,452720 ,2,821,634125 ,2,822,42020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,634235 ,2,822,42040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,634335 ,1,0,45 ,1,1,11510 ,2,822,180415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513535 ,2,827,112285 ,2,828,452730 ,2,821,636875 ,2,822,180455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513530 ,2,827,75 ,2,828,452725 ,2,821,637475 ,1,0,45 ,1,1,11510 ,2,822,180425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513540 ,2,827,112285 ,2,828,452735 ,2,821,640415 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,2,822,180435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513545 ,2,827,112295 ,2,828,452740 ,2,821,646370 ,1,0,45 ,1,1,11510 ,2,822,180445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513570 ,2,827,112285 ,2,828,452745 ,2,821,647875 ,2,822,180485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,452750 ,2,821,648320 ,1,0,269020 ,2,822,180505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513575 ,2,827,75 ,2,828,452755 ,2,821,649300 ,2,822,180515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513580 ,2,827,75 ,2,828,452790 ,2,821,649920 ,1,0,313465 ,2,822,180525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513585 ,2,827,75 ,2,828,452795 ,2,821,650495 ,2,822,180535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513590 ,2,827,75 ,2,828,452800 ,2,821,651565 ,1,0,357065 ,1,1,211380 ,2,822,180545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513595 ,2,827,112325 ,2,828,452805 ,2,821,655785 ,2,822,79075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,452810 ,2,821,656375 ,1,0,400430 ,1,1,92600 ,2,822,92590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,656575 ,1,0,400430 ,1,1,92170 ,2,822,92160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,656750 ,1,0,400430 ,1,1,92430 ,2,822,92420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,656930 ,1,0,608525 ,1,1,45 ,1,2,342050 ,2,822,84745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513600 ,2,827,75 ,2,828,452815 ,2,821,658105 ,1,0,608530 ,1,1,45 ,1,2,342050 ,2,822,84620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513605 ,2,827,75 ,2,828,452820 ,2,821,660665 ,2,822,160410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,660775 ,1,0,400430 ,1,1,151115 ,2,822,151105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,660975 ,1,0,400430 ,1,1,84390 ,2,822,84375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,661180 ,2,822,180580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,661370 ,2,822,42090 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,661460 ,1,0,221995 ,2,822,180590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513650 ,2,827,75 ,2,828,452825 ,2,821,664660 ,1,0,584510 ,1,1,45 ,1,2,213700 ,1,3,165605 ,2,822,180600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513655 ,2,827,75 ,2,828,452855 ,2,821,666970 ,1,0,551740 ,1,1,222075 ,2,822,180610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513660 ,2,827,75 ,2,828,452860 ,2,821,671470 ,1,0,584540 ,1,1,45 ,1,2,5080 ,1,3,610995 ,1,4,45 ,1,5,167770 ,1,6,45 ,1,7,215195 ,1,8,165645 ,2,822,180630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513665 ,2,827,75 ,2,828,452865 ,2,821,805 ,2,822,180650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513670 ,2,827,75 ,2,828,452870 ,2,821,1800 ,1,1,2395 ,2,822,76905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,452885 ,2,821,2840 ,2,822,97935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513675 ,2,827,75 ,2,828,452890 ,2,821,4900 ,1,0,45 ,1,1,5900 ,2,822,98195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513680 ,2,827,112490 ,2,828,452895 ,2,821,8410 ,2,822,97650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,8840 ,1,0,2135 ,1,1,45 ,1,2,11510 ,1,3,607235 ,1,4,45 ,1,5,13320 ,2,822,65490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513685 ,2,827,112500 ,2,828,452900 ,2,821,29245 ,1,0,2280 ,1,1,542265 ,1,2,45 ,1,3,13320 ,2,822,60335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513710 ,2,827,75 ,2,828,452925 ,2,821,31790 ,1,0,2280 ,1,1,542265 ,1,2,45 ,1,3,13320 ,1,4,2280 ,1,5,542165 ,1,6,45 ,1,7,13320 ,1,8,2135 ,1,9,45 ,1,10,11510 ,2,822,180660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513715 ,2,827,112540 ,2,828,452930 ,2,821,55400 ,1,0,607575 ,1,1,45 ,1,2,5900 ,1,3,2210 ,1,4,542345 ,1,5,2210 ,1,6,542350 ,2,822,67385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513720 ,2,827,75 ,2,828,452935 ,1,16,302610 ,2,821,68225 ,1,0,2135 ,2,822,67450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513725 ,2,827,75 ,2,828,452940 ,2,821,76190 ,2,822,67365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513730 ,2,827,75 ,2,828,452955 ,1,16,256310 ,2,821,85280 ,1,0,45 ,1,1,5900 ,2,822,64945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513735 ,2,827,75 ,2,828,452960 ,1,16,256320 ,1,16,256330 ,2,821,87295 ,1,0,332300 ,2,822,65165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,452965 ,2,821,87740 ,1,0,45 ,1,1,13320 ,2,822,139175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513740 ,2,827,75 ,2,828,452970 ,1,16,259630 ,1,16,259640 ,2,821,90895 ,1,0,2210 ,1,1,542350 ,2,822,92630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513745 ,2,827,40735 ,2,828,452980 ,2,821,101930 ,2,822,92295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513775 ,2,827,75 ,2,828,452985 ,1,16,256945 ,2,821,103935 ,2,822,92450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513780 ,2,827,75 ,2,828,452990 ,1,16,256955 ,2,821,109580 ,2,822,180690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,256965 ,1,16,248965 ,2,821,109900 ,2,822,42115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,249005 ,2,821,110100 ,1,0,373000 ,2,822,180700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,299690 ,2,821,110420 ,1,0,15645 ,2,822,180710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,250395 ,2,821,110730 ,1,0,357565 ,2,822,180720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,250405 ,2,821,111060 ,1,0,45 ,1,1,184220 ,2,822,180740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500975 ,2,827,75 ,2,828,452995 ,1,16,250415 ,2,821,112995 ,1,0,45 ,1,1,182815 ,1,2,15160 ,2,822,180760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,453005 ,1,8,45 ,2,821,115040 ,2,822,180860 ,2,823,541025 ,2,824,220 ,2,825,351970 ,2,826,513785 ,2,827,89805 ,2,828,453010 ,1,8,354375 ,2,821,115940 ,1,0,263005 ,1,1,344155 ,1,2,45 ,1,3,13320 ,2,822,181660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513950 ,2,827,113115 ,2,828,453265 ,1,8,45 ,2,821,128910 ,1,0,45 ,1,1,13320 ,1,2,4685 ,2,822,181640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513940 ,2,827,113095 ,2,828,453255 ,1,8,354375 ,2,821,144860 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,2,822,180920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513790 ,2,827,75 ,2,828,453015 ,1,8,45 ,2,821,151090 ,2,822,42135 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,151245 ,1,0,45 ,1,1,337120 ,2,822,180930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494765 ,2,827,75 ,2,828,453020 ,1,8,45 ,1,8,45 ,2,821,152885 ,1,0,584575 ,1,1,45 ,1,2,337120 ,2,822,180955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498500 ,2,827,75 ,2,828,453060 ,1,16,299075 ,2,821,155635 ,2,822,42145 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,299090 ,2,821,155770 ,1,0,263015 ,1,1,291410 ,1,2,262995 ,1,3,10080 ,1,4,344175 ,1,5,2210 ,1,6,542350 ,2,822,180965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513855 ,2,827,112710 ,2,828,453140 ,1,16,299100 ,2,821,161095 ,1,0,344165 ,1,1,2210 ,1,2,542350 ,2,822,181105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513845 ,2,827,112690 ,2,828,453085 ,1,16,299110 ,2,821,167455 ,1,0,2280 ,1,1,542230 ,2,822,180985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513805 ,2,827,75 ,2,828,453070 ,1,16,237895 ,2,821,169450 ,1,0,613060 ,2,822,180975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513800 ,2,827,75 ,2,828,453065 ,1,16,237920 ,2,821,170970 ,2,822,181025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513810 ,2,827,75 ,2,828,453075 ,1,16,237930 ,2,821,172280 ,1,0,2280 ,1,1,542230 ,2,822,181035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513815 ,2,827,75 ,2,828,453080 ,1,16,237940 ,2,821,173875 ,2,822,181055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496015 ,2,827,75 ,2,828,453130 ,1,16,237950 ,2,821,174745 ,2,822,181095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513840 ,2,827,112700 ,2,828,453090 ,1,16,237965 ,2,821,177570 ,2,822,181085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,453095 ,1,16,237975 ,2,821,178645 ,2,822,181130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513850 ,2,827,75 ,2,828,453135 ,1,16,237985 ,2,821,179890 ,2,822,181150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,112700 ,2,828,453145 ,1,16,237995 ,2,821,180670 ,2,822,181260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,238020 ,2,821,181705 ,1,0,2280 ,1,1,542235 ,1,2,45 ,1,3,13320 ,2,822,181355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513865 ,2,827,75 ,2,828,453155 ,1,16,238030 ,2,821,187640 ,2,822,181465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513860 ,2,827,112930 ,2,828,453150 ,1,16,238040 ,2,821,190925 ,2,822,181375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,453160 ,1,16,238050 ,2,821,191655 ,1,0,584610 ,1,1,45 ,1,2,13320 ,2,822,181390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513870 ,2,827,112960 ,2,828,453165 ,2,821,207090 ,2,822,584615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,238060 ,1,8,45 ,2,821,208260 ,1,0,291660 ,1,1,175775 ,1,2,2280 ,1,3,542235 ,1,4,45 ,1,5,13320 ,2,822,181420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513875 ,2,827,112960 ,2,828,453190 ,1,8,45 ,1,16,45 ,2,821,227985 ,2,822,181455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,453195 ,2,821,228690 ,1,0,2210 ,1,1,542350 ,2,822,181475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513915 ,2,827,75 ,2,828,453205 ,1,16,237625 ,2,821,231265 ,1,0,2280 ,1,1,542220 ,1,2,2280 ,1,3,542215 ,1,4,2280 ,1,5,542235 ,1,6,2280 ,1,7,542210 ,1,8,45 ,1,9,13320 ,1,10,2280 ,1,11,542280 ,1,12,2280 ,1,13,542235 ,1,14,45 ,1,15,13320 ,1,16,2280 ,1,17,542205 ,1,18,2280 ,1,19,542205 ,2,822,181495 ,2,823,541030 ,2,824,418385 ,2,825,352535 ,2,826,513910 ,2,827,112970 ,2,828,453200 ,1,16,237635 ,2,821,263345 ,2,822,181485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492295 ,2,827,75 ,2,828,453215 ,1,16,237645 ,1,16,222885 ,2,821,264925 ,2,822,181515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513920 ,2,827,75 ,2,828,453220 ,1,16,222895 ,2,821,266480 ,1,0,45 ,1,1,344220 ,1,2,561020 ,1,3,45 ,1,4,5080 ,1,5,45 ,1,6,344185 ,2,822,181525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513925 ,2,827,75 ,2,828,453225 ,1,16,222905 ,2,821,270045 ,2,822,584575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,241045 ,2,821,270710 ,1,0,557295 ,2,822,181620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513935 ,2,827,112700 ,2,828,453230 ,1,16,241055 ,2,821,275625 ,1,0,45 ,1,1,13320 ,1,2,2210 ,1,3,542350 ,2,822,181610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513945 ,2,827,113105 ,2,828,453260 ,2,821,284395 ,2,822,91525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513975 ,2,827,75 ,2,828,453270 ,2,821,286290 ,1,0,218255 ,2,822,89185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513980 ,2,827,113125 ,2,828,453275 ,1,16,302300 ,1,24,45 ,1,32,160 ,1,16,302300 ,1,24,45 ,1,32,160 ,2,821,296830 ,2,822,151165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513985 ,2,827,75 ,2,828,453280 ,1,16,302300 ,1,24,45 ,1,32,170 ,2,821,298370 ,2,822,181720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513990 ,2,827,75 ,2,828,453285 ,1,16,302300 ,1,24,45 ,1,32,160 ,2,821,299335 ,2,822,181730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,453290 ,2,821,301035 ,2,822,42190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,302300 ,1,24,45 ,1,32,170 ,1,16,302300 ,1,24,45 ,1,32,170 ,2,821,301215 ,2,822,181740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514000 ,2,827,113225 ,2,828,453310 ,1,16,302300 ,1,24,45 ,1,32,170 ,2,821,302345 ,1,0,165575 ,1,1,181730 ,2,822,181800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513995 ,2,827,113215 ,2,828,453305 ,2,821,307150 ,1,0,45 ,1,1,13320 ,2,822,181835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514005 ,2,827,113250 ,2,828,453315 ,1,16,302300 ,1,24,45 ,1,32,160 ,2,821,308570 ,2,822,84420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,453320 ,1,16,302300 ,1,24,45 ,1,32,170 ,1,16,302300 ,1,24,45 ,1,32,160 ,2,821,309485 ,2,822,90865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514010 ,2,827,49295 ,2,828,453325 ,1,16,302300 ,1,24,45 ,1,32,170 ,2,821,312625 ,2,822,42210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,233665 ,2,821,312785 ,1,0,610715 ,1,1,45 ,1,2,175900 ,1,3,610710 ,1,4,45 ,1,5,11510 ,1,6,334215 ,2,822,180215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514025 ,2,827,75 ,2,828,453335 ,1,16,233675 ,2,821,314795 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,5900 ,2,822,60675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514030 ,2,827,75 ,2,828,453340 ,1,16,266200 ,2,821,317505 ,2,822,160075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,266215 ,2,821,317835 ,1,0,584750 ,1,1,45 ,1,2,13320 ,1,3,346400 ,1,4,166270 ,1,5,166250 ,2,822,182730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514305 ,2,827,113605 ,2,828,453650 ,1,16,266225 ,2,821,324005 ,1,0,346365 ,1,1,346355 ,2,822,181865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514035 ,2,827,40280 ,2,828,453360 ,1,16,266235 ,2,821,327345 ,2,822,181915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514280 ,2,827,75 ,2,828,453640 ,1,16,267195 ,2,821,331065 ,1,0,221390 ,2,822,181925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514040 ,2,827,75 ,2,828,453365 ,1,16,241535 ,2,821,337300 ,2,822,42235 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,241545 ,2,821,337445 ,2,822,181950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514270 ,2,827,75 ,2,828,453630 ,1,16,267145 ,2,821,339210 ,1,1,2395 ,1,2,599945 ,1,3,45 ,1,4,9470 ,2,822,181960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514055 ,2,827,75 ,2,828,453370 ,1,16,267155 ,2,821,340920 ,1,0,2280 ,1,1,542245 ,2,822,181970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,453375 ,1,8,160 ,1,16,160 ,1,24,160 ,1,32,160 ,2,821,341670 ,2,822,181980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492295 ,2,827,75 ,2,828,453385 ,1,16,298760 ,2,821,343250 ,1,0,557405 ,2,822,182005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514265 ,2,827,113575 ,2,828,453625 ,1,16,298770 ,2,821,347330 ,1,0,543385 ,1,1,563670 ,1,2,543385 ,1,3,543380 ,1,4,563670 ,1,5,543380 ,1,6,557720 ,1,7,45 ,1,8,13320 ,2,822,182505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514260 ,2,827,113560 ,2,828,453600 ,1,16,298780 ,2,821,414825 ,1,0,346305 ,1,1,14465 ,2,822,182450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514065 ,2,827,113465 ,2,828,453395 ,1,16,298790 ,2,821,461485 ,2,822,182015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,8,13320 ,1,16,370960 ,1,24,370950 ,2,821,462020 ,2,822,182025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,251940 ,2,821,462605 ,2,822,182105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,251950 ,2,821,462895 ,2,822,182135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,251960 ,2,821,463145 ,2,822,182405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514060 ,2,827,75 ,2,828,453390 ,1,16,252555 ,2,821,464070 ,1,0,543375 ,1,1,563670 ,1,2,543375 ,1,3,45 ,1,4,5900 ,2,822,182060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514070 ,2,827,37620 ,2,828,453400 ,1,16,251995 ,2,821,468510 ,1,0,7785 ,2,822,182470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514100 ,2,827,75 ,2,828,453435 ,1,16,252005 ,2,821,472025 ,2,822,182600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514095 ,2,827,113475 ,2,828,453430 ,1,16,252015 ,2,821,477405 ,1,0,3575 ,2,822,182610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514105 ,2,827,75 ,2,828,453440 ,1,16,252070 ,2,821,481955 ,1,0,8820 ,2,822,182720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514110 ,2,827,75 ,2,828,453445 ,1,16,252080 ,2,821,485705 ,1,0,346295 ,2,822,182620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514175 ,2,827,113475 ,2,828,453530 ,1,16,252090 ,2,821,494690 ,2,822,182515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,252100 ,2,821,495185 ,1,0,168795 ,2,822,182395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514115 ,2,827,75 ,2,828,453460 ,1,16,252115 ,2,821,496350 ,1,0,558380 ,1,1,45 ,1,2,13320 ,1,3,169355 ,2,822,182560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514165 ,2,827,113485 ,2,828,453515 ,1,16,252125 ,2,821,508075 ,1,0,346250 ,1,1,346240 ,2,822,182460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514125 ,2,827,113475 ,2,828,453470 ,1,16,252135 ,2,821,521995 ,1,0,45 ,1,1,13320 ,1,2,169195 ,2,822,182365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514120 ,2,827,75 ,2,828,453465 ,1,16,252145 ,2,821,523390 ,2,822,182570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,252165 ,2,821,524630 ,1,0,45 ,1,1,13320 ,2,822,182355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514130 ,2,827,75 ,2,828,453475 ,1,16,252175 ,2,821,525900 ,1,0,45 ,1,1,13320 ,2,822,182375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514170 ,2,827,75 ,2,828,453520 ,1,16,45 ,1,24,45 ,2,821,527590 ,2,822,182385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496015 ,2,827,75 ,2,828,453525 ,1,16,252595 ,2,821,528370 ,2,822,182680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514255 ,2,827,75 ,2,828,453595 ,1,16,252525 ,2,821,532530 ,1,0,166220 ,2,822,182700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514180 ,2,827,113475 ,2,828,453535 ,2,821,541365 ,1,0,45 ,1,1,13320 ,2,822,182710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514245 ,2,827,113550 ,2,828,453580 ,1,16,310645 ,1,8,373135 ,1,16,45 ,1,24,370670 ,1,32,45 ,1,40,370660 ,1,48,370670 ,2,821,565090 ,2,822,182580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514205 ,2,827,75 ,2,828,453575 ,1,8,373135 ,1,16,45 ,1,24,370670 ,1,32,45 ,1,40,370670 ,1,48,370660 ,2,821,566840 ,2,822,182485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514200 ,2,827,75 ,2,828,453570 ,2,821,568725 ,2,822,182250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514190 ,2,827,75 ,2,828,453540 ,1,16,213765 ,1,8,355735 ,1,16,355885 ,2,821,570805 ,2,822,182265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,453550 ,1,8,355745 ,1,16,355895 ,2,821,571255 ,2,822,182285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514195 ,2,827,75 ,2,828,453545 ,1,8,355760 ,1,16,355875 ,2,821,572080 ,2,822,182275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,453565 ,1,8,355770 ,1,16,355885 ,2,821,572560 ,1,0,346220 ,2,822,182690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514250 ,2,827,113475 ,2,828,453590 ,1,8,355780 ,1,16,355875 ,2,821,582600 ,2,822,182550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,453605 ,1,8,355760 ,1,16,355895 ,2,821,583985 ,2,822,42255 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,355790 ,1,16,355885 ,2,821,584085 ,2,822,182335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514275 ,2,827,113585 ,2,828,453635 ,1,8,355745 ,1,16,355885 ,2,821,586060 ,2,822,42305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,355780 ,1,16,355860 ,2,821,586135 ,1,0,292175 ,1,1,292280 ,1,2,346345 ,2,822,182590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514300 ,2,827,75 ,2,828,453645 ,1,8,355830 ,1,16,355875 ,2,821,589150 ,1,0,2280 ,1,1,542180 ,1,2,2135 ,1,3,2280 ,1,4,542175 ,1,5,257860 ,1,6,2280 ,1,7,542180 ,2,822,93470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514310 ,2,827,113645 ,2,828,453655 ,1,8,355840 ,1,16,355885 ,2,821,605090 ,2,822,108470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,8,355760 ,1,16,355885 ,2,821,605295 ,1,0,318635 ,1,1,318625 ,2,822,80990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514315 ,2,827,75 ,2,828,453660 ,1,8,355745 ,1,16,355875 ,2,821,607435 ,2,822,182180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,8,355830 ,1,16,355885 ,2,821,607655 ,1,0,45 ,1,1,343730 ,1,2,606230 ,1,3,45 ,1,4,5900 ,2,822,60640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514320 ,2,827,75 ,2,828,453680 ,1,8,355745 ,1,16,355860 ,2,821,609600 ,1,0,45 ,1,1,11510 ,2,822,144345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514325 ,2,827,24545 ,2,828,453685 ,1,8,355830 ,1,16,355895 ,2,821,612150 ,2,822,182740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,113655 ,2,828,453690 ,1,8,355830 ,1,16,355860 ,2,821,614055 ,2,822,182785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453695 ,1,8,355780 ,1,16,355885 ,2,821,615125 ,2,822,182920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453700 ,1,8,355760 ,1,16,355860 ,2,821,616135 ,1,1,2395 ,1,2,584805 ,1,3,45 ,1,4,9470 ,2,822,183110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492960 ,2,827,75 ,2,828,453705 ,1,8,355780 ,1,16,355895 ,2,821,618505 ,2,822,183240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491605 ,2,827,75 ,2,828,453695 ,1,16,254485 ,2,821,619535 ,2,822,183370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453710 ,1,16,254510 ,2,821,620535 ,2,822,183645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,113655 ,2,828,453715 ,1,16,254520 ,2,821,622365 ,2,822,183695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453735 ,1,16,254530 ,2,821,623385 ,2,822,183855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453740 ,1,16,254540 ,2,821,624410 ,1,1,2395 ,1,2,584895 ,1,3,45 ,1,4,9470 ,2,822,184000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492925 ,2,827,75 ,2,828,453745 ,1,16,254555 ,2,821,626835 ,2,822,184170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453735 ,1,16,254565 ,2,821,627990 ,2,822,184310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453750 ,1,16,254575 ,2,821,629030 ,2,822,184555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514335 ,2,827,113655 ,2,828,453755 ,1,16,254630 ,2,821,630975 ,2,822,184615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491605 ,2,827,75 ,2,828,453760 ,1,16,254415 ,2,821,632095 ,2,822,184740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453765 ,1,16,254425 ,2,821,633180 ,1,1,2395 ,1,2,585020 ,1,3,45 ,1,4,9470 ,2,822,184945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492925 ,2,827,75 ,2,828,453770 ,1,16,254435 ,2,821,635555 ,2,822,185020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,40135 ,2,828,453755 ,1,16,254445 ,2,821,637385 ,2,822,185080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491605 ,2,827,75 ,2,828,453760 ,2,821,638450 ,2,822,185220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453795 ,1,8,205020 ,1,16,356085 ,1,24,45 ,2,821,639485 ,2,822,61915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,113655 ,2,828,453800 ,1,8,205030 ,1,16,356085 ,1,24,45 ,1,8,205070 ,1,16,356085 ,1,24,45 ,2,821,641490 ,2,822,185530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453805 ,1,8,205080 ,1,16,356085 ,1,24,45 ,2,821,642580 ,2,822,185675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,453810 ,1,8,205090 ,1,16,356095 ,1,24,45 ,2,821,643635 ,2,822,63305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514375 ,2,827,113655 ,2,828,453820 ,1,8,205225 ,1,16,356085 ,1,24,45 ,2,821,645475 ,2,822,172050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514380 ,2,827,40135 ,2,828,453820 ,2,821,647370 ,1,0,607265 ,1,1,45 ,1,2,175900 ,1,3,45 ,1,4,11510 ,2,822,65450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514385 ,2,827,114245 ,2,828,453825 ,1,8,205240 ,1,16,356095 ,1,24,45 ,1,8,205250 ,1,16,356095 ,1,24,45 ,2,821,652950 ,2,822,162675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,453830 ,2,821,653475 ,1,0,45 ,1,1,175900 ,1,2,607565 ,1,3,45 ,1,4,11510 ,1,5,45 ,1,6,11510 ,1,7,2210 ,1,8,542345 ,1,9,2210 ,1,10,542350 ,2,822,67420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514390 ,2,827,114255 ,2,828,453835 ,1,8,45 ,1,16,204740 ,1,24,370560 ,1,32,45 ,1,8,45 ,1,16,204750 ,1,24,356105 ,1,32,45 ,2,821,660130 ,1,0,607695 ,1,1,45 ,1,2,175900 ,1,3,607690 ,1,4,45 ,1,5,11510 ,1,6,2135 ,1,7,607630 ,1,8,45 ,1,9,11510 ,2,822,67470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514395 ,2,827,114255 ,2,828,453855 ,1,8,45 ,1,16,204760 ,1,24,356105 ,1,32,45 ,2,821,665605 ,1,0,607615 ,1,1,45 ,1,2,175900 ,1,3,607590 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,2,822,67320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514400 ,2,827,114255 ,2,828,453860 ,1,8,557755 ,1,16,204775 ,1,24,356110 ,1,32,45 ,2,821,671400 ,1,0,45 ,1,1,175900 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,64960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514405 ,2,827,75 ,2,828,453865 ,2,821,673870 ,1,0,45 ,1,1,11510 ,2,822,63480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514410 ,2,827,75 ,2,828,453870 ,1,8,370560 ,2,821,1490 ,2,822,63875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514435 ,2,827,75 ,2,828,453880 ,2,821,3890 ,1,0,607160 ,1,1,45 ,1,2,175900 ,1,3,607155 ,1,4,45 ,1,5,11510 ,2,822,65175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514025 ,2,827,75 ,2,828,453885 ,2,821,5920 ,1,0,45 ,1,1,175900 ,1,2,610325 ,1,3,45 ,1,4,11510 ,1,5,610340 ,1,6,45 ,1,7,11510 ,2,822,139155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514440 ,2,827,114270 ,2,828,453890 ,2,821,11635 ,1,0,400430 ,1,1,144355 ,2,822,145320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,11985 ,1,0,337745 ,1,1,337735 ,1,2,337725 ,1,3,337715 ,1,4,337705 ,2,822,82050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514445 ,2,827,75 ,2,828,453895 ,1,8,292885 ,1,8,292945 ,2,821,14795 ,2,822,42475 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,211640 ,2,821,14945 ,2,822,42545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,211650 ,2,821,15130 ,2,822,70985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514450 ,2,827,75 ,2,828,453915 ,1,8,45 ,2,821,16235 ,2,822,71235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514460 ,2,827,75 ,2,828,453920 ,2,821,17170 ,1,0,400430 ,1,1,162645 ,2,822,162610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,200620 ,2,821,17485 ,1,0,203890 ,2,822,92060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514465 ,2,827,75 ,2,828,453925 ,1,16,200630 ,2,821,18475 ,2,822,92050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,453930 ,1,16,200640 ,2,821,19480 ,1,0,212970 ,2,822,107165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514470 ,2,827,75 ,2,828,453940 ,1,16,200670 ,2,821,26465 ,1,0,45 ,1,1,343730 ,2,822,64070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514475 ,2,827,75 ,2,828,453945 ,1,16,200680 ,2,821,39125 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542360 ,1,7,584760 ,1,8,542360 ,2,822,183040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514495 ,2,827,114505 ,2,828,453950 ,1,16,223840 ,2,821,99355 ,2,822,14405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,223850 ,2,821,99500 ,1,0,45 ,1,1,11690 ,2,822,186070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,453955 ,1,16,223860 ,2,821,101050 ,1,0,584755 ,1,1,45 ,1,2,225320 ,1,3,584760 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,542995 ,1,9,584760 ,1,10,542995 ,2,822,183530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514500 ,2,827,114585 ,2,828,453995 ,1,16,224715 ,2,821,163425 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542445 ,1,7,584860 ,1,8,542445 ,2,822,183960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514505 ,2,827,114595 ,2,828,454000 ,1,16,224725 ,2,821,223475 ,1,0,45 ,1,1,11690 ,2,822,186125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,454005 ,1,16,217930 ,2,821,225000 ,1,0,584855 ,1,1,45 ,1,2,225320 ,1,3,584860 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,543020 ,1,9,584860 ,1,10,543020 ,2,822,184410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514510 ,2,827,114585 ,2,828,454010 ,1,16,217950 ,2,821,284190 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542450 ,1,7,584980 ,1,8,542450 ,2,822,184875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514525 ,2,827,114675 ,2,828,454015 ,1,16,217965 ,2,821,344145 ,2,822,14425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,217975 ,2,821,344300 ,1,0,45 ,1,1,11690 ,2,822,186195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,454020 ,1,16,225190 ,2,821,345815 ,1,0,584975 ,1,1,45 ,1,2,225320 ,1,3,584980 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,543015 ,1,9,584980 ,1,10,543015 ,2,822,185350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514530 ,2,827,114585 ,2,828,454025 ,1,16,225240 ,2,821,393865 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542415 ,1,7,559095 ,1,8,542415 ,2,822,61965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514535 ,2,827,114725 ,2,828,454030 ,1,16,263580 ,2,821,432740 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542980 ,1,7,559095 ,1,8,542980 ,2,822,186245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514540 ,2,827,114585 ,2,828,454050 ,1,16,263590 ,2,821,470635 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542370 ,1,7,559095 ,1,8,542370 ,2,822,186355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514570 ,2,827,114775 ,2,828,454055 ,1,16,226985 ,2,821,509990 ,1,0,45 ,1,1,11690 ,2,822,186305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514565 ,2,827,114795 ,2,828,454060 ,1,16,226995 ,2,821,513755 ,1,0,559140 ,1,1,45 ,1,2,225320 ,1,3,559095 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,543180 ,1,9,559095 ,1,10,543180 ,2,822,186400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514575 ,2,827,114585 ,2,828,454065 ,1,16,227030 ,2,821,551680 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542455 ,1,7,558275 ,1,8,542455 ,2,822,186525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514580 ,2,827,114940 ,2,828,454075 ,1,16,218615 ,2,821,591135 ,1,1,2395 ,1,2,585210 ,1,3,45 ,1,4,9470 ,2,822,186420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492925 ,2,827,75 ,2,828,454070 ,1,16,218625 ,2,821,593555 ,1,0,45 ,1,1,11690 ,2,822,186450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492930 ,2,827,114960 ,2,828,454080 ,1,16,218635 ,2,821,597215 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,543005 ,1,7,558275 ,1,8,543005 ,2,822,186535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514585 ,2,827,114585 ,2,828,454085 ,1,16,218690 ,2,821,633910 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542365 ,1,7,558275 ,1,8,542365 ,2,822,62270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514590 ,2,827,115080 ,2,828,454105 ,1,16,243340 ,2,821,671155 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542950 ,1,7,558275 ,1,8,542950 ,2,822,186560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514595 ,2,827,114585 ,2,828,454110 ,1,16,243350 ,2,821,54915 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542380 ,1,7,558275 ,1,8,542380 ,2,822,186670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514600 ,2,827,115125 ,2,828,454115 ,1,16,243360 ,2,821,119015 ,1,0,45 ,1,1,11690 ,2,822,186590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492955 ,2,827,115145 ,2,828,454120 ,1,16,243405 ,2,821,125180 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,543010 ,1,7,558275 ,1,8,543010 ,2,822,186680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514625 ,2,827,114585 ,2,828,454140 ,1,16,243415 ,2,821,187635 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542355 ,1,7,558275 ,1,8,542355 ,2,822,62375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514630 ,2,827,115270 ,2,828,454145 ,1,16,242775 ,2,821,254360 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542955 ,1,7,558275 ,1,8,542955 ,2,822,186700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514635 ,2,827,114585 ,2,828,454140 ,1,16,242785 ,2,821,314540 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,543040 ,1,7,558275 ,1,8,543040 ,2,822,186735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514640 ,2,827,114585 ,2,828,454150 ,1,16,242800 ,2,821,375225 ,1,0,45 ,1,1,346875 ,2,822,186850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514655 ,2,827,113655 ,2,828,454175 ,1,16,242810 ,2,821,379095 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,542430 ,1,5,558275 ,1,6,542430 ,2,822,186840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514650 ,2,827,115340 ,2,828,454155 ,1,16,242820 ,2,821,416330 ,1,0,45 ,1,1,11690 ,2,822,186770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514645 ,2,827,115360 ,2,828,454170 ,1,16,242830 ,2,821,419195 ,1,0,45 ,1,1,346875 ,2,822,186860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514660 ,2,827,40135 ,2,828,454180 ,1,16,242970 ,2,821,423200 ,1,0,45 ,1,1,11690 ,2,822,186870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454185 ,1,16,242980 ,2,821,424590 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542990 ,1,7,558275 ,1,8,542990 ,2,822,186955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514690 ,2,827,114585 ,2,828,454195 ,1,16,243015 ,2,821,461785 ,1,1,2395 ,1,2,585400 ,1,3,45 ,1,4,9470 ,2,822,186965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514695 ,2,827,75 ,2,828,454200 ,1,16,243025 ,2,821,464295 ,1,0,45 ,1,1,346875 ,2,822,187080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514655 ,2,827,113655 ,2,828,454235 ,1,16,253185 ,2,821,468190 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,542425 ,1,5,558275 ,1,6,542425 ,2,822,187070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514700 ,2,827,115565 ,2,828,454205 ,1,16,253195 ,2,821,507350 ,1,0,45 ,1,1,11690 ,2,822,187000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514645 ,2,827,115595 ,2,828,454210 ,1,16,253235 ,2,821,510305 ,1,0,45 ,1,1,346875 ,2,822,187100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514660 ,2,827,40135 ,2,828,454240 ,1,16,253245 ,2,821,514215 ,1,0,45 ,1,1,11690 ,2,822,187110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454245 ,1,16,253255 ,2,821,515580 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542420 ,1,7,558275 ,1,8,542420 ,2,822,187295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514710 ,2,827,115760 ,2,828,454255 ,1,16,212830 ,2,821,553320 ,1,1,2395 ,1,2,585420 ,1,3,45 ,1,4,9470 ,2,822,187185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514695 ,2,827,75 ,2,828,454250 ,1,16,212840 ,2,821,555865 ,1,0,45 ,1,1,11690 ,2,822,187215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492895 ,2,827,115780 ,2,828,454260 ,1,16,212850 ,2,821,558600 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542985 ,1,7,558275 ,1,8,542985 ,2,822,187305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514715 ,2,827,114585 ,2,828,454265 ,1,16,212860 ,2,821,594650 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542460 ,1,7,558275 ,1,8,542460 ,2,822,63360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514720 ,2,827,115895 ,2,828,454270 ,1,8,15230 ,1,16,15220 ,1,24,14905 ,1,32,15120 ,2,821,630785 ,1,0,558345 ,1,1,45 ,1,2,225320 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,543390 ,1,8,558275 ,1,9,543390 ,1,10,166230 ,1,11,171930 ,1,12,217660 ,2,822,187325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514725 ,2,827,114585 ,2,828,454325 ,1,8,15235 ,1,16,15120 ,1,24,15235 ,1,32,15120 ,2,821,664865 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,542375 ,1,7,558275 ,1,8,542375 ,2,822,62515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514750 ,2,827,115925 ,2,828,454330 ,1,8,15120 ,1,16,15120 ,1,24,15120 ,1,32,15120 ,2,821,44000 ,1,0,45 ,1,1,225320 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,543340 ,1,7,558275 ,1,8,543340 ,2,822,187345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514725 ,2,827,114585 ,2,828,454335 ,1,8,15245 ,1,16,15120 ,1,24,15245 ,1,32,15120 ,2,821,101625 ,2,822,42825 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,15255 ,1,16,15255 ,1,24,14905 ,1,32,15120 ,2,821,101805 ,2,822,42845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14905 ,1,16,15120 ,1,24,15265 ,1,32,15265 ,2,821,101990 ,2,822,187425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,454350 ,1,8,14905 ,1,16,15120 ,1,24,14905 ,1,32,15120 ,2,821,103840 ,1,0,542670 ,1,1,594195 ,1,2,542670 ,1,3,542645 ,1,4,581465 ,1,5,542645 ,2,822,187495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514755 ,2,827,75 ,2,828,454340 ,1,8,15220 ,1,16,15120 ,1,24,14905 ,1,32,15120 ,2,821,109575 ,2,822,187445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,454355 ,2,821,111445 ,2,822,187485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499485 ,2,827,75 ,2,828,454360 ,1,8,15010 ,1,16,15010 ,1,24,15010 ,1,32,15010 ,1,16,290610 ,2,821,113390 ,2,822,42870 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,290620 ,2,821,113565 ,2,822,42890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,290630 ,2,821,113725 ,2,822,42945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,290640 ,2,821,113920 ,1,0,45 ,1,1,346875 ,2,822,168960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514760 ,2,827,75 ,2,828,454365 ,2,821,115725 ,1,0,596680 ,1,1,45 ,1,2,346875 ,1,3,6550 ,1,4,543410 ,1,5,1900 ,1,6,585895 ,1,7,543410 ,1,8,166740 ,1,9,8170 ,1,10,13175 ,2,822,187700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514765 ,2,827,116295 ,2,828,454385 ,2,821,169030 ,2,822,165600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,199535 ,2,821,169555 ,2,822,85025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514770 ,2,827,75 ,2,828,454390 ,1,16,199545 ,2,821,170560 ,2,822,85665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,199555 ,2,821,171020 ,2,822,86890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,218765 ,2,821,171460 ,2,822,85115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514775 ,2,827,75 ,2,828,454395 ,1,16,373540 ,2,821,172810 ,2,822,85475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514780 ,2,827,75 ,2,828,454400 ,2,821,175290 ,1,0,558960 ,1,1,45 ,1,2,346875 ,1,3,542885 ,1,4,558930 ,1,5,542885 ,2,822,63690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514785 ,2,827,116315 ,2,828,454405 ,1,8,160805 ,1,16,160795 ,1,24,45 ,1,32,358110 ,1,40,358100 ,1,48,372090 ,1,8,15120 ,1,16,15120 ,1,24,15120 ,1,32,15120 ,1,40,15120 ,1,48,15120 ,2,821,198575 ,2,822,85885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514805 ,2,827,75 ,2,828,454410 ,1,8,14985 ,1,16,14905 ,1,24,15365 ,1,32,14905 ,2,821,202400 ,1,0,546570 ,1,1,608285 ,1,2,45 ,1,3,5900 ,1,4,2210 ,1,5,542350 ,2,822,85345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514810 ,2,827,34150 ,2,828,454415 ,2,821,213185 ,2,822,86125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514815 ,2,827,75 ,2,828,454420 ,1,8,14985 ,1,16,14985 ,1,24,14985 ,1,32,14905 ,1,8,15320 ,1,16,15310 ,1,24,14905 ,1,32,15280 ,2,821,215375 ,2,822,87385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514820 ,2,827,75 ,2,828,454445 ,1,8,15010 ,1,16,15320 ,1,24,15010 ,1,32,15320 ,2,821,216275 ,2,822,42955 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14905 ,1,16,14905 ,1,24,14905 ,1,32,15335 ,2,821,216435 ,2,822,42985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14905 ,1,16,14905 ,1,24,15320 ,1,32,15280 ,2,821,216595 ,2,822,585640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14905 ,1,16,14905 ,1,24,14905 ,1,32,14905 ,2,821,217315 ,1,0,370195 ,2,822,187730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,454450 ,1,8,15310 ,1,16,15310 ,1,24,15310 ,1,32,15310 ,2,821,217775 ,1,0,370185 ,2,822,187745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,454455 ,1,8,14985 ,1,16,14905 ,1,24,14985 ,1,32,14905 ,2,821,218265 ,1,0,370110 ,2,822,187755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514825 ,2,827,75 ,2,828,454460 ,2,821,219505 ,1,0,370120 ,2,822,187765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514825 ,2,827,75 ,2,828,454470 ,1,8,15355 ,1,16,15345 ,1,24,15355 ,1,32,15345 ,1,8,14905 ,1,16,15310 ,1,24,14905 ,1,32,15310 ,2,821,220720 ,1,0,217690 ,2,822,187805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514830 ,2,827,75 ,2,828,454475 ,1,8,14905 ,1,16,14985 ,1,24,14905 ,1,32,14905 ,2,821,222055 ,1,0,15895 ,1,1,356915 ,1,2,163725 ,1,3,163715 ,2,822,187815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514870 ,2,827,75 ,2,828,454495 ,1,8,15280 ,1,16,15280 ,1,24,15280 ,1,32,15280 ,2,821,225695 ,1,0,163675 ,2,822,187825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514835 ,2,827,75 ,2,828,454480 ,1,8,15320 ,1,16,14905 ,1,24,15320 ,1,32,14905 ,2,821,228735 ,2,822,187835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514840 ,2,827,75 ,2,828,454485 ,1,8,15320 ,1,16,15310 ,1,24,15320 ,1,32,15310 ,2,821,235935 ,2,822,42995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,15280 ,1,16,14905 ,1,24,15280 ,1,32,14905 ,2,821,236065 ,2,822,145340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,454500 ,1,8,14905 ,1,16,14905 ,1,24,15320 ,1,32,14905 ,2,821,236825 ,2,822,43060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,15365 ,1,16,15365 ,1,24,15365 ,1,32,15365 ,2,821,237010 ,1,0,45 ,1,1,175900 ,2,822,188065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,454505 ,1,8,14905 ,1,16,14905 ,1,24,14985 ,1,32,14905 ,2,821,238490 ,2,822,43080 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14905 ,1,16,15375 ,1,24,14905 ,1,32,14905 ,2,821,238635 ,1,0,326765 ,1,1,326755 ,2,822,188140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514875 ,2,827,75 ,2,828,454510 ,1,8,15335 ,1,16,14905 ,1,24,15335 ,1,32,14985 ,2,821,240760 ,1,0,295320 ,2,822,188150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515190 ,2,827,75 ,2,828,455080 ,1,8,14905 ,1,16,14905 ,1,24,14905 ,1,32,14985 ,2,821,241795 ,1,0,6235 ,1,1,326745 ,2,822,189330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515180 ,2,827,75 ,2,828,455075 ,1,8,14985 ,1,16,14985 ,1,24,14985 ,1,32,14985 ,2,821,250835 ,2,822,189320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506795 ,2,827,75 ,2,828,455070 ,1,8,15245 ,1,16,15390 ,1,24,15245 ,1,32,15390 ,2,821,251860 ,1,0,373810 ,1,1,45 ,1,2,5900 ,2,822,188160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514880 ,2,827,30445 ,2,828,454525 ,1,8,15365 ,1,16,15365 ,1,24,15365 ,1,32,15050 ,2,821,254590 ,1,0,15850 ,2,822,188170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514885 ,2,827,75990 ,2,828,454530 ,1,8,15020 ,1,16,15020 ,1,24,15020 ,1,32,15020 ,2,821,257790 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,188180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514895 ,2,827,82915 ,2,828,454535 ,1,8,15430 ,1,16,15425 ,1,24,15430 ,1,32,15310 ,2,821,260505 ,2,822,188190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514900 ,2,827,75 ,2,828,454540 ,1,8,15310 ,1,16,15280 ,1,24,15310 ,1,32,15280 ,2,821,263935 ,2,822,43130 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14905 ,1,16,15280 ,1,24,14905 ,1,32,15280 ,2,821,264085 ,2,822,585740 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,306000 ,2,821,264750 ,2,822,188200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,454575 ,1,8,373545 ,1,16,373545 ,2,821,265545 ,1,0,326815 ,1,1,263420 ,2,822,188245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514905 ,2,827,116805 ,2,828,454580 ,1,16,305870 ,2,821,268640 ,2,822,43170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,305880 ,2,821,268805 ,1,0,2280 ,1,1,542095 ,1,2,324575 ,1,3,324565 ,2,822,188320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514930 ,2,827,117070 ,2,828,454625 ,1,16,305890 ,2,821,274170 ,1,0,585780 ,1,1,45 ,1,2,13320 ,2,822,188455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514925 ,2,827,116885 ,2,828,454585 ,1,16,305900 ,2,821,277835 ,1,0,555255 ,1,1,263440 ,2,822,188350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514910 ,2,827,116895 ,2,828,454590 ,1,16,305910 ,2,821,280465 ,1,0,163575 ,1,1,163565 ,1,2,163555 ,1,3,163545 ,1,4,163535 ,1,5,163525 ,1,6,163515 ,1,7,163505 ,1,8,163465 ,1,9,163455 ,1,10,163445 ,2,822,188370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,454610 ,1,16,305920 ,2,821,283360 ,2,822,43180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,305930 ,2,821,283515 ,1,0,374740 ,2,822,188390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,232825 ,2,821,283825 ,1,0,263450 ,1,1,326710 ,2,822,188410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514910 ,2,827,117025 ,2,828,454615 ,1,16,232835 ,2,821,286560 ,1,0,263430 ,2,822,188445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491640 ,2,827,117060 ,2,828,454620 ,2,821,287570 ,1,0,7585 ,1,1,5910 ,1,2,4555 ,1,3,6385 ,1,4,12155 ,1,5,10170 ,1,6,11200 ,1,7,12795 ,1,8,11045 ,1,9,7745 ,1,10,11340 ,1,11,10335 ,1,12,6540 ,1,13,5410 ,1,14,11900 ,1,15,7150 ,2,822,188465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515080 ,2,827,75 ,2,828,454885 ,1,8,373135 ,1,24,357780 ,1,8,373135 ,1,24,357820 ,2,821,306265 ,2,822,188895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514935 ,2,827,75 ,2,828,454640 ,1,16,232620 ,2,821,306545 ,1,0,2280 ,1,1,542095 ,2,822,188930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514985 ,2,827,117110 ,2,828,454740 ,1,16,232635 ,2,821,311330 ,1,0,294620 ,2,822,188885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514960 ,2,827,75 ,2,828,454735 ,2,821,313430 ,1,0,263515 ,2,822,188620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514955 ,2,827,117100 ,2,828,454730 ,1,8,373385 ,1,16,373385 ,1,24,373385 ,1,32,373385 ,1,8,373460 ,1,16,373460 ,1,24,373460 ,1,32,373460 ,2,821,323595 ,1,0,324705 ,2,822,188555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514940 ,2,827,75 ,2,828,454670 ,1,8,373400 ,1,16,373400 ,1,24,373375 ,1,32,373375 ,2,821,325770 ,2,822,188505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,454665 ,1,8,373460 ,1,16,373460 ,1,24,373375 ,1,32,373375 ,2,821,326780 ,1,0,263505 ,2,822,188495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501275 ,2,827,117080 ,2,828,454650 ,1,8,373375 ,1,16,373375 ,1,24,373375 ,1,32,373375 ,2,821,329055 ,2,822,188485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,454655 ,1,8,373375 ,1,16,373375 ,1,24,373400 ,1,32,373400 ,2,821,329765 ,2,822,188600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,454725 ,1,16,216740 ,2,821,330445 ,2,822,188585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514950 ,2,827,117090 ,2,828,454675 ,1,16,216750 ,2,821,332755 ,2,822,188575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514945 ,2,827,75 ,2,828,454680 ,1,16,216765 ,2,821,334145 ,1,0,236245 ,1,1,2280 ,1,2,542095 ,2,822,188835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514990 ,2,827,117120 ,2,828,454750 ,1,16,216775 ,2,821,336365 ,1,0,236430 ,1,1,2280 ,1,2,542095 ,2,822,188815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514995 ,2,827,117155 ,2,828,454755 ,1,16,216905 ,2,821,340820 ,1,0,236580 ,1,1,2280 ,1,2,542095 ,1,3,294445 ,1,4,324675 ,1,5,324665 ,2,822,188785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515000 ,2,827,117175 ,2,828,454785 ,1,16,216875 ,2,821,350360 ,2,822,188690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502280 ,2,827,75 ,2,828,454760 ,1,16,216885 ,2,821,351190 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,188630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494520 ,2,827,75 ,2,828,454780 ,1,16,216785 ,2,821,354485 ,1,0,236335 ,1,1,2280 ,1,2,542095 ,2,822,188905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514990 ,2,827,117185 ,2,828,454790 ,1,16,216795 ,2,821,356695 ,1,0,324655 ,1,1,2280 ,1,2,542095 ,1,3,324645 ,1,4,2280 ,1,5,542095 ,1,6,324630 ,1,7,2280 ,1,8,542095 ,1,9,2280 ,1,10,542095 ,2,822,188950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515010 ,2,827,117200 ,2,828,454795 ,1,16,216845 ,2,821,369635 ,1,0,324620 ,1,1,2280 ,1,2,542095 ,1,3,324610 ,1,4,2280 ,1,5,542095 ,1,6,324600 ,1,7,2280 ,1,8,542095 ,1,9,2280 ,1,10,542095 ,2,822,188775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515010 ,2,827,117200 ,2,828,454800 ,1,16,216855 ,2,821,379335 ,1,0,236550 ,1,1,2280 ,1,2,542095 ,1,3,2280 ,1,4,542095 ,2,822,188710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515015 ,2,827,117210 ,2,828,454805 ,2,821,381125 ,1,0,2280 ,1,1,542095 ,2,822,188765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515020 ,2,827,117220 ,2,828,454810 ,1,8,14940 ,1,16,14905 ,2,821,382645 ,1,0,2280 ,1,1,542095 ,2,822,188700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514990 ,2,827,117230 ,2,828,454815 ,2,821,383925 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,188875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515025 ,2,827,117210 ,2,828,454850 ,1,8,14895 ,1,16,14940 ,2,821,386850 ,1,0,324555 ,1,1,324545 ,1,2,236115 ,2,822,188720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515060 ,2,827,117250 ,2,828,454855 ,1,8,14895 ,1,16,14905 ,2,821,389130 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,188805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515065 ,2,827,117260 ,2,828,454860 ,1,8,15440 ,1,16,14905 ,1,8,14940 ,1,16,14940 ,2,821,391145 ,1,0,236570 ,1,1,2280 ,1,2,542095 ,2,822,188730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514990 ,2,827,117270 ,2,828,454865 ,1,8,14905 ,1,16,14895 ,2,821,392355 ,1,0,324535 ,1,1,2280 ,1,2,542095 ,1,3,324525 ,1,4,2280 ,1,5,542095 ,1,6,324515 ,1,7,2280 ,1,8,542095 ,1,9,2280 ,1,10,542095 ,2,822,188680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515070 ,2,827,117280 ,2,828,454875 ,1,8,14905 ,1,16,14940 ,2,821,398685 ,1,0,2280 ,1,1,542095 ,1,2,324505 ,2,822,188825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515075 ,2,827,117300 ,2,828,454880 ,1,8,14905 ,1,16,14905 ,2,821,401010 ,2,822,43210 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,14940 ,1,16,14940 ,2,821,401090 ,1,0,552470 ,1,1,326805 ,1,2,326795 ,1,3,326775 ,2,822,189000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515085 ,2,827,75 ,2,828,454890 ,1,8,14895 ,1,16,14905 ,2,821,403500 ,1,0,45 ,1,1,175900 ,2,822,189030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515090 ,2,827,117370 ,2,828,454905 ,1,16,243770 ,2,821,404770 ,2,822,189050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492295 ,2,827,75 ,2,828,454910 ,1,16,242605 ,2,821,405745 ,1,0,552475 ,1,1,217495 ,1,2,217485 ,1,3,217450 ,2,822,189060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515095 ,2,827,75 ,2,828,454915 ,1,16,242615 ,2,821,407800 ,1,0,272805 ,2,822,189080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,454935 ,1,8,45 ,1,16,45 ,2,821,408260 ,1,0,263485 ,1,1,45 ,1,2,13320 ,1,3,45 ,1,4,13320 ,2,822,189140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515125 ,2,827,117410 ,2,828,454930 ,1,16,223215 ,2,821,412055 ,1,0,45 ,1,1,13320 ,2,822,189110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515115 ,2,827,117400 ,2,828,454920 ,1,16,223225 ,2,821,413290 ,2,822,189130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515120 ,2,827,75 ,2,828,454925 ,1,16,223260 ,2,821,415225 ,1,0,552480 ,2,822,189120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515135 ,2,827,75 ,2,828,454980 ,1,16,223270 ,2,821,417585 ,1,0,263525 ,2,822,189150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515130 ,2,827,117420 ,2,828,454940 ,1,16,223280 ,2,821,422670 ,2,822,189160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515140 ,2,827,75 ,2,828,454985 ,1,16,223290 ,2,821,423595 ,2,822,189170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515145 ,2,827,75 ,2,828,455010 ,1,16,223310 ,2,821,424855 ,2,822,189180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,454995 ,1,16,223320 ,2,821,425365 ,1,0,273005 ,2,822,189205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,454990 ,1,16,223330 ,2,821,425865 ,1,0,217440 ,1,1,613080 ,2,822,189215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515170 ,2,827,75 ,2,828,455025 ,1,16,223340 ,2,821,427755 ,1,0,295185 ,1,1,613085 ,1,2,163435 ,1,3,326065 ,1,4,2210 ,1,5,542350 ,2,822,189235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515165 ,2,827,117430 ,2,828,455020 ,1,16,223375 ,2,821,436915 ,2,822,189225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515150 ,2,827,75 ,2,828,455015 ,1,16,310560 ,2,821,438110 ,2,822,43220 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,438215 ,2,822,189255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,310590 ,2,821,438435 ,1,0,326045 ,2,822,189265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515175 ,2,827,75 ,2,828,455060 ,2,821,439595 ,1,0,45 ,1,1,326055 ,2,822,189275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492655 ,2,827,75 ,2,828,455065 ,2,821,441060 ,2,822,43230 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,441145 ,2,822,183100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117615 ,2,828,455090 ,1,16,214325 ,2,821,443825 ,2,822,183560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455095 ,2,821,446845 ,2,822,183990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117625 ,2,828,455125 ,1,16,214335 ,2,821,449485 ,2,822,184445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455130 ,1,16,214365 ,2,821,452340 ,2,822,184905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117635 ,2,828,455135 ,1,16,214375 ,2,821,455000 ,2,822,185385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455140 ,1,16,232135 ,2,821,457945 ,2,822,61955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117645 ,2,828,455150 ,1,16,232145 ,2,821,460495 ,2,822,186285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455155 ,1,16,232175 ,2,821,463500 ,2,822,186325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117670 ,2,828,455160 ,1,16,232185 ,2,821,466135 ,2,822,186410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455155 ,1,16,232195 ,2,821,468915 ,2,822,186470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117680 ,2,828,455165 ,1,16,258515 ,2,821,471425 ,2,822,186545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455200 ,1,16,258525 ,2,821,474270 ,2,822,62255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117690 ,2,828,455205 ,1,16,258535 ,2,821,477025 ,2,822,186570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455210 ,1,16,258545 ,2,821,479940 ,2,822,186625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117700 ,2,828,455215 ,1,16,258555 ,2,821,482640 ,2,822,186690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455200 ,1,16,258565 ,2,821,485555 ,2,822,62365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117715 ,2,828,455225 ,1,16,258575 ,2,821,488190 ,2,822,186725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455210 ,1,16,258585 ,2,821,491205 ,2,822,186790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117725 ,2,828,455230 ,1,16,258615 ,2,821,493880 ,2,822,186745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455200 ,1,16,258625 ,2,821,496815 ,2,822,187020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117735 ,2,828,455235 ,1,16,258635 ,2,821,499545 ,2,822,186975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455240 ,1,16,257410 ,2,821,502525 ,2,822,187235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117745 ,2,828,455255 ,1,8,357770 ,2,821,505265 ,2,822,187315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455200 ,1,8,357770 ,1,16,357870 ,2,821,508215 ,2,822,63350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117785 ,2,828,455260 ,1,8,357770 ,1,16,357840 ,2,821,510785 ,2,822,187335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455200 ,1,8,357770 ,1,16,357835 ,2,821,513760 ,2,822,62505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515195 ,2,827,117795 ,2,828,455265 ,1,8,357770 ,2,821,516400 ,2,822,187355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515200 ,2,827,75 ,2,828,455210 ,1,8,357765 ,1,16,357860 ,2,821,519250 ,2,822,189375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515205 ,2,827,25980 ,2,828,455270 ,1,8,357770 ,2,821,525195 ,2,822,189420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515240 ,2,827,117815 ,2,828,455295 ,1,16,239690 ,2,821,532285 ,1,1,2395 ,1,2,599855 ,1,3,45 ,1,4,9470 ,2,822,189385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515235 ,2,827,75 ,2,828,455290 ,1,16,239700 ,2,821,533540 ,2,822,189430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515245 ,2,827,25980 ,2,828,455300 ,1,16,239740 ,2,821,539400 ,2,822,183090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515250 ,2,827,75 ,2,828,455305 ,2,821,543145 ,2,822,183550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515255 ,2,827,75 ,2,828,455320 ,2,821,546800 ,2,822,183980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515260 ,2,827,117825 ,2,828,455325 ,2,821,553215 ,2,822,14415 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,553325 ,2,822,184895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515260 ,2,827,117835 ,2,828,455335 ,1,16,245930 ,2,821,560090 ,2,822,185375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515265 ,2,827,75 ,2,828,455340 ,1,16,245950 ,2,821,563860 ,2,822,43265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,245960 ,2,821,563960 ,1,0,166945 ,1,1,595350 ,1,2,45 ,1,3,166945 ,1,4,2210 ,1,5,542350 ,2,822,63795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515270 ,2,827,75 ,2,828,455385 ,1,16,245970 ,2,821,570615 ,2,822,182980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455390 ,2,821,570905 ,2,822,183885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455400 ,1,8,359055 ,1,16,359085 ,2,821,571160 ,2,822,184775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455410 ,1,8,359085 ,1,16,359055 ,2,821,571485 ,2,822,61740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455415 ,1,8,359075 ,1,16,359045 ,2,821,571780 ,2,822,63110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,455420 ,1,8,359045 ,1,16,359075 ,1,16,249740 ,2,821,572040 ,2,822,101125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,249750 ,2,821,572230 ,2,822,112260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515295 ,2,827,75 ,2,828,455440 ,1,16,249760 ,2,821,574265 ,1,0,45 ,1,1,209800 ,2,822,112565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455450 ,1,16,249770 ,2,821,575330 ,2,822,182875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515305 ,2,827,75 ,2,828,455455 ,1,8,45 ,2,821,576670 ,2,822,183770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515305 ,2,827,75 ,2,828,455465 ,2,821,578020 ,2,822,184675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515305 ,2,827,75 ,2,828,455475 ,1,16,250050 ,2,821,579410 ,1,0,612265 ,1,1,557770 ,2,822,61650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515310 ,2,827,75 ,2,828,455515 ,1,8,373675 ,2,821,580805 ,2,822,63015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515315 ,2,827,75 ,2,828,455520 ,1,8,373675 ,1,16,373675 ,2,821,582155 ,1,0,45 ,1,1,209800 ,2,822,152845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455450 ,1,16,227380 ,2,821,583310 ,1,0,45 ,1,1,209800 ,2,822,134960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455450 ,2,821,584360 ,1,0,45 ,1,1,209800 ,2,822,160680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455450 ,1,16,227390 ,2,821,585470 ,1,0,45 ,1,1,209800 ,2,822,109665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455530 ,1,16,227400 ,1,16,227340 ,2,821,586545 ,1,0,337650 ,2,822,168990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515320 ,2,827,75 ,2,828,455540 ,1,16,227360 ,2,821,587175 ,1,0,45 ,1,1,209800 ,2,822,108135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455450 ,1,16,229830 ,2,821,588305 ,1,0,45 ,1,1,209800 ,2,822,116590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515300 ,2,827,75 ,2,828,455450 ,1,16,229845 ,2,821,589415 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,5900 ,2,822,138630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515325 ,2,827,75 ,2,828,455545 ,1,16,229855 ,2,821,591740 ,1,0,612270 ,2,822,61190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515330 ,2,827,75 ,2,828,455550 ,2,821,593025 ,1,0,45 ,1,1,5900 ,2,822,99000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515360 ,2,827,54900 ,2,828,455555 ,1,8,373675 ,1,16,373675 ,1,24,359125 ,2,821,594090 ,2,822,84310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,8,373675 ,1,16,373675 ,1,16,229430 ,2,821,594435 ,2,822,113525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514820 ,2,827,75 ,2,828,455580 ,1,16,229475 ,2,821,594960 ,2,822,64485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515365 ,2,827,75 ,2,828,455585 ,1,16,229485 ,2,821,595465 ,2,822,154770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,229495 ,2,821,595765 ,2,822,156485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,229505 ,2,821,596030 ,1,0,329900 ,1,1,219170 ,2,822,107175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515370 ,2,827,75 ,2,828,455590 ,1,16,227080 ,2,821,598540 ,1,0,556400 ,2,822,182830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455595 ,1,16,227090 ,2,821,599525 ,1,0,556475 ,2,822,183305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455595 ,2,821,600485 ,1,0,556445 ,2,822,183750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455605 ,1,16,192610 ,2,821,601425 ,1,0,556535 ,2,822,184215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515385 ,2,827,75 ,2,828,455610 ,1,16,192620 ,2,821,602485 ,1,0,556465 ,2,822,184655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455615 ,1,16,192630 ,1,16,213935 ,2,821,603545 ,1,0,556515 ,2,822,185135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455620 ,1,16,213945 ,2,821,604570 ,1,0,556525 ,2,822,61630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455640 ,1,16,213955 ,2,821,605575 ,1,0,556455 ,2,822,185610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455645 ,1,16,213965 ,2,821,606550 ,1,0,556410 ,2,822,62995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455650 ,1,16,213975 ,2,821,607535 ,1,0,556505 ,2,822,171750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515375 ,2,827,75 ,2,828,455655 ,1,16,213985 ,2,821,608560 ,2,822,98680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,608775 ,2,822,101350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,174175 ,2,821,609090 ,2,822,117885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515390 ,2,827,30175 ,2,828,455675 ,2,821,610235 ,1,0,557010 ,2,822,61170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,455680 ,1,16,174185 ,1,16,174195 ,2,821,611375 ,2,822,183140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515395 ,2,827,75 ,2,828,455685 ,1,16,174205 ,2,821,611625 ,2,822,183590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455685 ,2,821,611870 ,2,822,168980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455725 ,1,16,174260 ,1,16,174270 ,2,821,612145 ,2,822,189470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,455735 ,1,16,174280 ,2,821,612395 ,2,822,189490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,455740 ,1,16,174300 ,2,821,613445 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,112595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515400 ,2,827,75 ,2,828,455745 ,2,821,616070 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,125635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515415 ,2,827,102135 ,2,828,455750 ,1,8,373290 ,1,16,373300 ,1,8,45 ,1,16,373345 ,1,24,373335 ,1,32,373325 ,1,40,373335 ,1,48,359640 ,2,821,625190 ,1,0,45 ,1,1,4765 ,2,822,182930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455760 ,1,8,373290 ,1,16,373300 ,2,821,625690 ,1,0,45 ,1,1,4765 ,2,822,183415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455760 ,2,821,626210 ,1,0,45 ,1,1,4765 ,2,822,183865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455765 ,1,8,357920 ,1,16,354225 ,2,821,626735 ,1,0,45 ,1,1,4765 ,1,2,332010 ,2,822,184320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515425 ,2,827,75 ,2,828,455765 ,1,8,357890 ,1,16,354225 ,2,821,627255 ,1,0,45 ,1,1,4765 ,2,822,184755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455770 ,1,8,357920 ,1,16,354235 ,2,821,627795 ,1,0,45 ,1,1,4765 ,2,822,185230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455770 ,1,8,357940 ,1,16,354225 ,2,821,628330 ,1,0,45 ,1,1,4765 ,2,822,61720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455775 ,1,8,357930 ,1,16,354225 ,2,821,628810 ,1,0,45 ,1,1,4765 ,2,822,185685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,455775 ,1,8,357940 ,1,16,354235 ,2,821,629330 ,1,0,45 ,1,1,4765 ,2,822,63090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515430 ,2,827,75 ,2,828,455780 ,1,8,354960 ,1,16,160 ,2,821,629825 ,1,0,45 ,1,1,4765 ,2,822,171850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515430 ,2,827,75 ,2,828,455780 ,1,8,354970 ,1,16,160 ,2,821,630265 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,152865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515400 ,2,827,75 ,2,828,455790 ,1,8,354980 ,1,16,160 ,2,821,633035 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,134990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515400 ,2,827,75 ,2,828,455745 ,1,8,354935 ,1,16,160 ,2,821,635675 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,160715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515435 ,2,827,75 ,2,828,455745 ,2,821,638270 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,109655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515400 ,2,827,75 ,2,828,455790 ,2,821,640970 ,1,0,45 ,1,1,346875 ,2,822,169010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515440 ,2,827,75 ,2,828,455795 ,2,821,641550 ,1,0,45 ,1,1,346875 ,2,822,189550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515440 ,2,827,75 ,2,828,455830 ,2,821,642170 ,2,822,110180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515445 ,2,827,75 ,2,828,453920 ,1,16,45 ,2,821,642680 ,1,0,217770 ,1,1,45 ,1,2,209800 ,1,3,45 ,1,4,217770 ,2,822,108165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515400 ,2,827,75 ,2,828,455745 ,1,16,45 ,2,821,645305 ,2,822,114275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515450 ,2,827,75 ,2,828,455835 ,1,16,45 ,2,821,646410 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,116580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515435 ,2,827,75 ,2,828,455745 ,1,16,45 ,2,821,649025 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,2,822,138580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515490 ,2,827,75 ,2,828,455840 ,1,16,45 ,2,821,651600 ,1,0,45 ,1,1,346875 ,1,2,542915 ,1,3,584615 ,1,4,542915 ,1,5,542895 ,1,6,595380 ,1,7,542895 ,2,822,189590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515500 ,2,827,75 ,2,828,455855 ,1,16,45 ,1,16,45 ,2,821,661560 ,1,0,542890 ,1,1,584615 ,1,2,542890 ,2,822,189580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515495 ,2,827,75 ,2,828,455845 ,2,821,667820 ,1,0,220060 ,1,1,45 ,1,2,11510 ,1,3,217060 ,2,822,107405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515505 ,2,827,91185 ,2,828,455860 ,1,16,45 ,2,821,671350 ,2,822,43305 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,671425 ,1,0,45 ,1,1,186035 ,2,822,189640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,420945 ,1,16,45 ,2,821,672305 ,1,0,45 ,1,1,186035 ,2,822,189660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,455920 ,1,16,45 ,2,821,673170 ,2,822,95990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,673470 ,2,822,58895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515520 ,2,827,75 ,2,828,455935 ,1,16,45 ,2,821,674310 ,2,822,142410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515525 ,2,827,87645 ,2,828,455960 ,1,16,45 ,2,821,205 ,2,822,182800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,455965 ,1,16,45 ,1,16,45 ,2,821,905 ,2,822,183250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515560 ,2,827,118145 ,2,828,455990 ,2,821,5550 ,2,822,189680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515530 ,2,827,75 ,2,828,455970 ,1,16,45 ,2,821,7000 ,1,0,45 ,1,1,11690 ,2,822,189690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,455975 ,1,16,45 ,1,16,45 ,2,821,8515 ,2,822,189710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515535 ,2,827,75 ,2,828,455985 ,2,821,10090 ,2,822,183705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,455995 ,1,16,45 ,2,821,10735 ,2,822,184180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515565 ,2,827,118155 ,2,828,456000 ,1,16,45 ,2,821,16035 ,1,0,45 ,1,1,11690 ,2,822,189775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456020 ,1,16,45 ,2,821,17530 ,2,822,184625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,456025 ,1,16,45 ,2,821,18190 ,2,822,185105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515570 ,2,827,118230 ,2,828,456030 ,1,16,45 ,2,821,23560 ,1,0,45 ,1,1,11690 ,2,822,189880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456035 ,1,16,45 ,2,821,25125 ,2,822,61600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515575 ,2,827,118280 ,2,828,456045 ,1,16,45 ,2,821,34940 ,2,822,185540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515590 ,2,827,118305 ,2,828,456050 ,1,16,45 ,2,821,45575 ,1,0,45 ,1,1,11690 ,2,822,189985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456055 ,1,16,45 ,2,821,47060 ,1,0,45 ,1,1,11690 ,2,822,190080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456060 ,1,16,45 ,2,821,48495 ,2,822,62965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,456085 ,1,16,45 ,2,821,49420 ,2,822,190235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515605 ,2,827,75 ,2,828,456130 ,1,16,45 ,2,821,50850 ,1,0,549140 ,1,1,219795 ,2,822,190140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515595 ,2,827,75 ,2,828,456095 ,1,16,45 ,2,821,52445 ,2,822,43325 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,52630 ,2,822,190180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,456100 ,1,16,45 ,2,821,52905 ,1,0,263595 ,2,822,190190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,118505 ,2,828,456115 ,1,16,45 ,2,821,53940 ,1,0,355955 ,2,822,190210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,456120 ,1,16,45 ,2,821,54905 ,1,0,11035 ,1,1,312425 ,2,822,190225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515600 ,2,827,75 ,2,828,456125 ,1,16,45 ,2,821,57395 ,2,822,190245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515625 ,2,827,75 ,2,828,456145 ,1,16,45 ,2,821,58275 ,2,822,151460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,58720 ,1,0,45 ,1,1,13320 ,2,822,66705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515630 ,2,827,29955 ,2,828,456150 ,1,16,45 ,2,821,79625 ,1,0,400430 ,1,1,112780 ,2,822,112850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,16,45 ,2,821,79935 ,2,822,106495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515635 ,2,827,75 ,2,828,456155 ,2,821,84905 ,1,0,400430 ,1,1,190285 ,2,822,190255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,85235 ,1,0,45 ,1,1,182815 ,2,822,190285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,456170 ,1,16,45 ,2,821,87840 ,2,822,190295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515640 ,2,827,34110 ,2,828,456165 ,1,16,45 ,2,821,91805 ,2,822,43390 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,91980 ,2,822,43410 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,92130 ,2,822,586070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,92835 ,2,822,43420 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,92980 ,2,822,190335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515645 ,2,827,75 ,2,828,456175 ,1,16,45 ,2,821,94775 ,2,822,190345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,456180 ,1,16,45 ,2,821,95845 ,2,822,190355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,456220 ,1,16,45 ,2,821,96900 ,1,0,217040 ,2,822,190415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515650 ,2,827,75 ,2,828,456225 ,1,16,45 ,2,821,98830 ,1,0,45 ,1,1,11510 ,2,822,190425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456230 ,1,16,45 ,1,16,45 ,2,821,101455 ,1,0,45 ,1,1,11510 ,2,822,190455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456250 ,2,821,104110 ,1,0,217055 ,2,822,190550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515650 ,2,827,75 ,2,828,456245 ,1,16,45 ,2,821,106000 ,2,822,190560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,456235 ,1,16,45 ,2,821,107080 ,1,0,217030 ,2,822,190505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515650 ,2,827,75 ,2,828,456260 ,1,16,45 ,1,16,45 ,2,821,109000 ,2,822,190535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,456255 ,2,821,110085 ,1,0,45 ,1,1,11510 ,2,822,190515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456275 ,1,16,45 ,2,821,112670 ,1,0,324910 ,1,1,324900 ,1,2,324880 ,1,3,324870 ,2,822,190570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515655 ,2,827,118670 ,2,828,456280 ,1,16,45 ,2,821,118380 ,2,822,43430 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,118555 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,190635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504050 ,2,827,75 ,2,828,456285 ,1,16,45 ,2,821,123685 ,1,0,45 ,1,1,184220 ,2,822,190655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502650 ,2,827,75 ,2,828,456295 ,1,16,45 ,2,821,126275 ,2,822,190765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515640 ,2,827,34110 ,2,828,456290 ,1,16,45 ,2,821,130380 ,1,0,45 ,1,1,182815 ,2,822,190675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456305 ,1,16,45 ,2,821,132960 ,2,822,190775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515640 ,2,827,34110 ,2,828,456300 ,1,16,45 ,2,821,137065 ,1,0,45 ,1,1,184220 ,2,822,190735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456340 ,1,16,45 ,2,821,139660 ,2,822,190785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515640 ,2,827,34110 ,2,828,456310 ,1,16,45 ,2,821,143685 ,1,0,400430 ,1,1,153910 ,2,822,153900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,144005 ,1,0,400430 ,1,1,111790 ,2,822,111755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,16,45 ,2,821,144320 ,1,0,400430 ,1,1,112010 ,2,822,112000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,144640 ,1,0,400430 ,1,1,157235 ,2,822,157225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,144960 ,1,0,400430 ,1,1,155790 ,2,822,155760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,145305 ,1,0,400430 ,1,1,118625 ,2,822,118595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,145645 ,1,0,400430 ,1,1,156305 ,2,822,156375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,145990 ,1,0,400430 ,1,1,154245 ,2,822,154235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,146295 ,1,0,400430 ,1,1,190860 ,2,822,190850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,146650 ,1,0,45 ,1,1,182815 ,2,822,190860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456355 ,1,16,45 ,2,821,149240 ,2,822,43470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,149395 ,2,822,43490 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,149560 ,2,822,43500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,149715 ,2,822,190970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515660 ,2,827,75 ,2,828,456370 ,1,16,45 ,2,821,159305 ,2,822,191290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,160875 ,2,822,190980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515700 ,2,827,118875 ,2,828,456375 ,1,16,45 ,2,821,164660 ,2,822,190990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515705 ,2,827,118885 ,2,828,456380 ,1,16,45 ,2,821,168800 ,1,0,45 ,1,1,184220 ,2,822,191050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456405 ,1,16,45 ,2,821,171455 ,1,0,45 ,1,1,210915 ,1,2,45 ,1,3,183245 ,1,4,45 ,1,5,210905 ,1,6,45 ,1,7,198280 ,2,822,191080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500485 ,2,827,75 ,2,828,456410 ,1,16,45 ,2,821,181945 ,1,0,45 ,1,1,184220 ,2,822,191100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456420 ,1,16,45 ,2,821,184540 ,2,822,191120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,456425 ,1,16,45 ,2,821,186040 ,2,822,191155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515710 ,2,827,75 ,2,828,456430 ,1,16,45 ,2,821,187995 ,2,822,191185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,456455 ,1,16,45 ,2,821,189720 ,2,822,191280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503940 ,2,827,75 ,2,828,456435 ,1,16,45 ,2,821,190590 ,2,822,191205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515715 ,2,827,75 ,2,828,456460 ,1,16,45 ,2,821,202345 ,2,822,191225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515725 ,2,827,75 ,2,828,456465 ,1,16,45 ,2,821,203310 ,1,0,212630 ,1,1,212230 ,2,822,191270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515730 ,2,827,75 ,2,828,456470 ,1,16,45 ,2,821,205385 ,1,0,191185 ,2,822,191325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503220 ,2,827,118905 ,2,828,456475 ,1,16,45 ,2,821,210145 ,1,0,45 ,1,1,182815 ,2,822,191420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456485 ,1,16,45 ,2,821,212735 ,1,0,400430 ,1,1,134605 ,2,822,134690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,213070 ,1,0,400430 ,1,1,148460 ,2,822,148415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,213405 ,1,0,400430 ,1,1,145875 ,2,822,145865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,213725 ,1,0,400430 ,1,1,103215 ,2,822,103330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,214065 ,1,0,400430 ,1,1,160275 ,2,822,160360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,214400 ,1,0,400430 ,1,1,160950 ,2,822,161040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,214730 ,1,0,400430 ,1,1,66650 ,2,822,66640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,215055 ,1,0,400430 ,1,1,111190 ,2,822,111170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,215365 ,1,0,400430 ,1,1,191470 ,2,822,191460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,456490 ,1,16,45 ,2,821,215700 ,1,0,45 ,1,1,182815 ,2,822,191470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,456515 ,1,16,45 ,2,821,217570 ,2,822,43515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,2,821,217730 ,1,0,45 ,1,1,184220 ,2,822,191515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,456530 ,1,16,45 ,2,821,220290 ,2,822,191615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,456525 ,1,16,45 ,2,821,220890 ,2,822,191635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515735 ,2,827,75 ,2,828,456520 ,1,16,45 ,2,821,225275 ,1,0,45 ,1,1,184220 ,2,822,191535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501885 ,2,827,75 ,2,828,435165 ,1,16,45 ,2,821,227820 ,2,822,191625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,456535 ,1,16,45 ,2,821,228420 ,1,0,45 ,1,1,182815 ,2,822,191555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501015 ,2,827,75 ,2,828,456540 ,1,16,45 ,2,821,230275 ,2,822,191690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515740 ,2,827,75 ,2,828,456545 ,1,16,45 ,2,821,231755 ,2,822,191725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515765 ,2,827,89805 ,2,828,456550 ,1,16,45 ,2,821,233310 ,1,0,400430 ,1,1,109305 ,2,822,109350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,233635 ,1,0,400430 ,1,1,107825 ,2,822,107845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,233950 ,1,0,400430 ,1,1,112685 ,2,822,112790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,234275 ,1,0,400430 ,1,1,115860 ,2,822,115910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,234575 ,1,0,400430 ,1,1,190735 ,2,822,190725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,234880 ,1,0,400430 ,1,1,153870 ,2,822,153860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,235200 ,1,0,400430 ,1,1,111725 ,2,822,111710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,235520 ,1,0,400430 ,1,1,111955 ,2,822,111945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,235875 ,1,0,400430 ,1,1,157190 ,2,822,157180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,236190 ,1,0,400430 ,1,1,155730 ,2,822,155720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,16,45 ,2,821,236495 ,1,0,400430 ,1,1,118565 ,2,822,118545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,236810 ,1,0,400430 ,1,1,156170 ,2,822,156340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,237170 ,1,0,400430 ,1,1,154205 ,2,822,154195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,237485 ,1,0,400430 ,1,1,191100 ,2,822,191090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,237795 ,1,0,400430 ,1,1,134430 ,2,822,134420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,238095 ,1,0,400430 ,1,1,148050 ,2,822,148035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,238425 ,1,0,400430 ,1,1,143915 ,2,822,145530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,238745 ,1,0,400430 ,1,1,103030 ,2,822,103015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,239080 ,1,0,400430 ,1,1,160060 ,2,822,160050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,239375 ,1,0,400430 ,1,1,160830 ,2,822,160990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,239705 ,1,0,400430 ,1,1,110870 ,2,822,110860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,240025 ,1,0,400430 ,1,1,191535 ,2,822,191525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,456490 ,1,16,45 ,2,821,240330 ,1,0,400430 ,1,1,108460 ,2,822,108440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,240640 ,1,0,400430 ,1,1,107675 ,2,822,107665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,240960 ,1,0,400430 ,1,1,112870 ,2,822,112860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,241270 ,1,0,400430 ,1,1,115485 ,2,822,115475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,241575 ,1,0,400430 ,1,1,190675 ,2,822,190665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,241895 ,1,0,400430 ,1,1,153890 ,2,822,153880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,242210 ,1,0,400430 ,1,1,111745 ,2,822,111735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,242530 ,1,0,400430 ,1,1,111990 ,2,822,111965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,242840 ,1,0,400430 ,1,1,157210 ,2,822,157200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,16,45 ,2,821,243135 ,1,0,400430 ,1,1,155750 ,2,822,155740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,243485 ,1,0,400430 ,1,1,118585 ,2,822,118575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,243840 ,1,0,400430 ,1,1,156360 ,2,822,156350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,244150 ,1,0,400430 ,1,1,154225 ,2,822,154215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,244445 ,1,0,400430 ,1,1,191420 ,2,822,191410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,244775 ,1,0,400430 ,1,1,103310 ,2,822,103300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,245115 ,2,822,83770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515770 ,2,827,43825 ,2,828,456580 ,1,16,45 ,2,821,246875 ,1,0,400430 ,1,1,134675 ,2,822,134665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,247220 ,1,0,400430 ,1,1,148700 ,2,822,148690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,247575 ,1,0,400430 ,1,1,144130 ,2,822,144120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,247870 ,1,0,400430 ,1,1,180760 ,2,822,180750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,248175 ,1,0,400430 ,1,1,160350 ,2,822,160295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,248515 ,1,0,400430 ,1,1,161020 ,2,822,161010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,248830 ,2,822,191745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515365 ,2,827,75 ,2,828,456590 ,1,16,45 ,2,821,249550 ,1,1,2395 ,2,822,191735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,456585 ,1,16,45 ,2,821,250575 ,1,0,400430 ,1,1,111430 ,2,822,111420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,250890 ,1,0,400430 ,1,1,191555 ,2,822,191545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,251240 ,1,0,400430 ,1,1,109325 ,2,822,109315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,251560 ,1,0,400430 ,1,1,107890 ,2,822,107855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,251910 ,1,0,400430 ,1,1,112750 ,2,822,112740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,1,16,45 ,2,821,252240 ,1,0,400430 ,1,1,115890 ,2,822,115880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,252560 ,1,0,400430 ,1,1,190655 ,2,822,190645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,252885 ,1,0,400430 ,1,1,153850 ,2,822,153820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,253200 ,1,0,400430 ,1,1,111700 ,2,822,111690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,253525 ,1,0,400430 ,1,1,111935 ,2,822,111925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,253835 ,1,0,400430 ,1,1,157140 ,2,822,157130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,254150 ,1,0,400430 ,1,1,155690 ,2,822,155670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,16,45 ,2,821,254490 ,1,0,400430 ,1,1,118535 ,2,822,118525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,254830 ,1,0,400430 ,1,1,156240 ,2,822,156200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,255125 ,1,0,400430 ,1,1,154185 ,2,822,154145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,255440 ,1,0,400430 ,1,1,191050 ,2,822,191335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,255755 ,1,0,400430 ,1,1,102995 ,2,822,103145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,2,821,256080 ,1,0,400430 ,1,1,134410 ,2,822,134520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,256375 ,1,0,400430 ,1,1,148070 ,2,822,148305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,2,821,256680 ,1,0,400430 ,1,1,143540 ,2,822,145790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,256985 ,1,0,400430 ,1,1,180740 ,2,822,180730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,257315 ,1,0,400430 ,1,1,160040 ,2,822,160235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,257625 ,1,0,400430 ,1,1,160920 ,2,822,160860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,257945 ,1,0,400430 ,1,1,110840 ,2,822,111030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,258275 ,1,0,400430 ,1,1,191515 ,2,822,191505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,258590 ,1,0,400430 ,1,1,108430 ,2,822,109240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,258905 ,1,0,400430 ,1,1,107615 ,2,822,107800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,259220 ,1,0,400430 ,1,1,115425 ,2,822,115785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,2,821,259540 ,1,0,45 ,1,1,11510 ,2,822,189755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515775 ,2,827,75 ,2,828,456595 ,1,16,45 ,2,821,263090 ,1,0,45 ,1,1,11510 ,2,822,186105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515780 ,2,827,75 ,2,828,456600 ,1,16,45 ,2,821,267850 ,1,0,599895 ,1,1,45 ,1,2,11510 ,2,822,191835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515795 ,2,827,75 ,2,828,456650 ,1,16,45 ,2,821,272460 ,1,0,45 ,1,1,11690 ,2,822,191765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515790 ,2,827,75 ,2,828,456610 ,1,16,45 ,2,821,276250 ,1,0,45 ,1,1,11510 ,2,822,189850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515800 ,2,827,119090 ,2,828,456655 ,1,16,45 ,2,821,280415 ,1,0,45 ,1,1,11510 ,2,822,186175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515780 ,2,827,75 ,2,828,456660 ,1,16,45 ,2,821,285140 ,1,0,45 ,1,1,11510 ,2,822,191930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515830 ,2,827,119105 ,2,828,456665 ,1,16,45 ,2,821,290545 ,1,0,45 ,1,1,11690 ,2,822,191855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515805 ,2,827,75 ,2,828,456670 ,1,16,45 ,2,821,293150 ,1,0,599905 ,1,1,45 ,1,2,11510 ,2,822,189925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515800 ,2,827,119175 ,2,828,456675 ,1,16,45 ,2,821,297395 ,1,0,45 ,1,1,11510 ,2,822,186235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515835 ,2,827,75 ,2,828,456680 ,1,16,45 ,2,821,302210 ,1,0,45 ,1,1,11510 ,2,822,192005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515830 ,2,827,119185 ,2,828,456685 ,1,16,45 ,2,821,307715 ,1,0,45 ,1,1,11690 ,2,822,191950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515790 ,2,827,75 ,2,828,456610 ,1,16,45 ,2,821,311610 ,1,0,45 ,1,1,11510 ,2,822,190035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515840 ,2,827,119235 ,2,828,456705 ,1,16,45 ,1,16,45 ,2,821,317035 ,1,0,45 ,1,1,11510 ,2,822,62010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515845 ,2,827,75 ,2,828,456710 ,2,821,322805 ,1,0,45 ,1,1,11510 ,1,2,181135 ,2,822,192120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515855 ,2,827,119255 ,2,828,456715 ,1,16,45 ,2,821,329285 ,1,0,45 ,1,1,11690 ,2,822,192070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515790 ,2,827,75 ,2,828,456720 ,1,16,45 ,2,821,333215 ,1,0,45 ,1,1,11510 ,2,822,190120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515860 ,2,827,119310 ,2,828,456730 ,1,16,45 ,2,821,338430 ,1,0,45 ,1,1,11510 ,1,2,181350 ,2,822,186295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515865 ,2,827,75 ,2,828,456735 ,1,16,45 ,2,821,343865 ,1,0,45 ,1,1,11510 ,2,822,192215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515890 ,2,827,119320 ,2,828,456740 ,1,16,45 ,2,821,350130 ,1,0,45 ,1,1,11690 ,2,822,192165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515870 ,2,827,75 ,2,828,456745 ,1,16,45 ,2,821,354185 ,1,0,45 ,1,1,11510 ,2,822,192305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515895 ,2,827,119395 ,2,828,456770 ,1,16,45 ,2,821,359865 ,1,0,45 ,1,1,11690 ,2,822,192235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456775 ,1,16,45 ,2,821,361320 ,1,0,45 ,1,1,11510 ,2,822,186430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515900 ,2,827,75 ,2,828,456780 ,1,16,45 ,2,821,367365 ,1,0,45 ,1,1,11510 ,1,2,181370 ,2,822,192390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515910 ,2,827,119470 ,2,828,456785 ,1,16,45 ,2,821,372965 ,1,0,45 ,1,1,11690 ,2,822,192325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515905 ,2,827,75 ,2,828,456790 ,1,16,45 ,2,821,375030 ,1,0,45 ,1,1,11510 ,2,822,192490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515895 ,2,827,119525 ,2,828,456795 ,1,16,45 ,2,821,378290 ,1,0,45 ,1,1,11690 ,2,822,192410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456800 ,1,16,45 ,2,821,379160 ,1,0,45 ,1,1,11510 ,2,822,62300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515900 ,2,827,75 ,2,828,456805 ,1,16,45 ,2,821,382675 ,1,0,45 ,1,1,11510 ,1,2,11690 ,1,3,181500 ,2,822,192575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515915 ,2,827,119595 ,2,828,456825 ,1,16,45 ,2,821,385915 ,1,0,45 ,1,1,11690 ,2,822,192510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515905 ,2,827,75 ,2,828,456830 ,1,16,45 ,2,821,387120 ,1,0,45 ,1,1,11510 ,2,822,192665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515920 ,2,827,119645 ,2,828,456835 ,1,16,45 ,2,821,389990 ,1,0,45 ,1,1,11690 ,2,822,192595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456840 ,1,16,45 ,2,821,390875 ,1,0,45 ,1,1,11510 ,2,822,186580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515925 ,2,827,119725 ,2,828,456845 ,1,16,45 ,2,821,394015 ,1,0,45 ,1,1,11510 ,2,822,192735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515955 ,2,827,119735 ,2,828,456850 ,1,16,45 ,2,821,397575 ,1,0,45 ,1,1,11690 ,2,822,192685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515950 ,2,827,75 ,2,828,456855 ,1,16,45 ,2,821,399985 ,1,0,45 ,1,1,11510 ,2,822,192835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515960 ,2,827,119815 ,2,828,456860 ,1,16,45 ,2,821,404215 ,1,0,45 ,1,1,11690 ,2,822,192780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456910 ,1,16,45 ,2,821,405130 ,1,0,45 ,1,1,11510 ,2,822,62445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515965 ,2,827,119870 ,2,828,456915 ,1,16,45 ,2,821,409590 ,1,0,45 ,1,1,11510 ,1,2,14410 ,1,3,670040 ,2,822,192935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515980 ,2,827,119890 ,2,828,456920 ,1,16,45 ,2,821,414445 ,1,0,45 ,1,1,11690 ,2,822,192885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515950 ,2,827,75 ,2,828,456925 ,1,16,45 ,2,821,416885 ,1,0,45 ,1,1,11510 ,2,822,193035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515985 ,2,827,119945 ,2,828,456930 ,1,16,45 ,2,821,419910 ,1,0,45 ,1,1,11690 ,2,822,192955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456935 ,1,16,45 ,2,821,420875 ,1,0,45 ,1,1,11510 ,2,822,186755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515990 ,2,827,120025 ,2,828,456940 ,1,16,45 ,2,821,424325 ,1,0,45 ,1,1,11510 ,2,822,186945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515995 ,2,827,120025 ,2,828,456945 ,1,16,45 ,2,821,428075 ,1,0,45 ,1,1,11510 ,2,822,193130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516040 ,2,827,120035 ,2,828,456955 ,1,16,45 ,2,821,431925 ,1,0,45 ,1,1,11690 ,2,822,193055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,456960 ,1,16,45 ,2,821,432870 ,1,0,45 ,1,1,11510 ,2,822,186990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516045 ,2,827,120105 ,2,828,456965 ,1,16,45 ,2,821,437200 ,1,0,45 ,1,1,11510 ,2,822,187175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516050 ,2,827,120105 ,2,828,456970 ,1,16,45 ,2,821,441755 ,1,0,45 ,1,1,11510 ,2,822,193150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516055 ,2,827,120115 ,2,828,456975 ,1,16,45 ,2,821,445825 ,1,0,45 ,1,1,11690 ,2,822,193160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516060 ,2,827,75 ,2,828,454245 ,1,16,45 ,2,821,447255 ,1,0,45 ,1,1,11510 ,2,822,187195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516065 ,2,827,120115 ,2,828,456980 ,1,16,45 ,2,821,450850 ,1,0,45 ,1,1,11510 ,2,822,193225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516055 ,2,827,120115 ,2,828,456985 ,1,16,45 ,2,821,454820 ,1,0,45 ,1,1,11690 ,2,822,193235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454245 ,1,16,45 ,2,821,456240 ,1,0,45 ,1,1,11510 ,2,822,193280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516070 ,2,827,120230 ,2,828,456990 ,1,16,45 ,2,821,459315 ,1,0,45 ,1,1,11690 ,2,822,193290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454185 ,1,16,45 ,2,821,460640 ,1,0,45 ,1,1,11510 ,2,822,63405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516075 ,2,827,120230 ,2,828,457020 ,1,16,45 ,2,821,463605 ,1,0,45 ,1,1,11510 ,2,822,193355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516105 ,2,827,120230 ,2,828,457025 ,1,16,45 ,2,821,466625 ,1,0,45 ,1,1,11690 ,2,822,193365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454245 ,1,16,45 ,2,821,467935 ,1,0,45 ,1,1,11510 ,1,2,181415 ,2,822,193420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516110 ,2,827,75 ,2,828,457030 ,1,16,45 ,2,821,470190 ,1,0,45 ,1,1,11690 ,2,822,193430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,457035 ,1,16,45 ,2,821,471030 ,1,0,45 ,1,1,11510 ,2,822,62560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516115 ,2,827,120395 ,2,828,457045 ,1,16,45 ,2,821,474680 ,1,0,45 ,1,1,11510 ,2,822,193470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516105 ,2,827,120395 ,2,828,457050 ,1,16,45 ,2,821,478530 ,1,0,45 ,1,1,11690 ,2,822,193480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454245 ,1,16,45 ,2,821,479930 ,1,0,45 ,1,1,11510 ,2,822,169055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516120 ,2,827,75 ,2,828,457055 ,1,16,45 ,2,821,480680 ,1,0,45 ,1,1,11510 ,2,822,170875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516125 ,2,827,75 ,2,828,457060 ,1,16,45 ,2,821,482130 ,1,0,607500 ,1,1,45 ,1,2,175900 ,1,3,607495 ,1,4,45 ,1,5,11510 ,1,6,6680 ,2,822,66380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516130 ,2,827,114245 ,2,828,457085 ,1,16,45 ,2,821,487680 ,1,0,45 ,1,1,11510 ,2,822,78625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516135 ,2,827,75 ,2,828,457090 ,1,16,45 ,2,821,489035 ,1,0,45 ,1,1,11510 ,2,822,183190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457095 ,1,16,45 ,2,821,489705 ,1,0,45 ,1,1,11510 ,2,822,183635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457095 ,1,16,45 ,2,821,490435 ,1,0,45 ,1,1,11510 ,2,822,184080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457100 ,1,16,45 ,2,821,491120 ,1,0,45 ,1,1,11510 ,2,822,184545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457100 ,1,16,45 ,2,821,491840 ,1,0,45 ,1,1,11510 ,2,822,185010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516160 ,2,827,75 ,2,828,457110 ,1,16,45 ,2,821,492490 ,1,0,45 ,1,1,11510 ,2,822,185445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457110 ,1,16,45 ,2,821,493165 ,1,0,45 ,1,1,11510 ,2,822,61935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516165 ,2,827,75 ,2,828,457115 ,1,16,45 ,2,821,493855 ,1,0,45 ,1,1,11510 ,2,822,185900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516165 ,2,827,75 ,2,828,457115 ,1,16,45 ,2,821,494505 ,1,0,45 ,1,1,11510 ,2,822,63325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457120 ,1,16,45 ,2,821,495180 ,1,0,45 ,1,1,11510 ,2,822,172070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516140 ,2,827,75 ,2,828,457120 ,1,16,45 ,1,24,45 ,2,821,495890 ,2,822,112955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516170 ,2,827,75 ,2,828,457125 ,1,16,45 ,1,24,45 ,2,821,497265 ,1,0,45 ,1,1,343730 ,2,822,169020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516120 ,2,827,75 ,2,828,457165 ,1,16,45 ,1,24,45 ,2,821,497995 ,1,0,45 ,1,1,11510 ,2,822,189570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516175 ,2,827,75 ,2,828,457170 ,1,16,45 ,1,24,45 ,2,821,498765 ,1,0,45 ,1,1,5900 ,1,2,217805 ,1,3,163965 ,2,822,153920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516185 ,2,827,75 ,2,828,457175 ,1,16,45 ,1,24,45 ,2,821,501855 ,1,0,45 ,1,1,5900 ,1,2,210990 ,2,822,152660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516190 ,2,827,75 ,2,828,457180 ,1,16,45 ,1,24,10715 ,2,821,504905 ,2,822,131590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516170 ,2,827,75 ,2,828,457195 ,1,16,45 ,1,24,11285 ,2,821,506305 ,2,822,118665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516195 ,2,827,75 ,2,828,457200 ,1,16,45 ,1,24,45 ,2,821,508320 ,1,0,45 ,1,1,343730 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,2,822,193545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516200 ,2,827,120470 ,2,828,457205 ,1,16,45 ,1,24,45 ,2,821,521205 ,1,0,217115 ,1,1,212945 ,2,822,156585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516235 ,2,827,75 ,2,828,457210 ,1,16,45 ,1,24,45 ,2,821,523805 ,1,0,211540 ,2,822,158085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516240 ,2,827,75 ,2,828,457230 ,1,16,45 ,1,24,45 ,2,821,528915 ,1,0,211645 ,2,822,157500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516245 ,2,827,75 ,2,828,457235 ,1,16,45 ,1,24,45 ,2,821,531220 ,1,0,212305 ,2,822,191430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516250 ,2,827,75 ,2,828,457240 ,1,16,45 ,1,24,45 ,2,821,533765 ,1,0,45 ,1,1,5900 ,1,2,210770 ,2,822,194605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516320 ,2,827,121015 ,2,828,457455 ,1,16,45 ,1,24,45 ,2,821,539780 ,1,0,45 ,1,1,5900 ,2,822,193555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516260 ,2,827,75 ,2,828,457245 ,1,16,45 ,1,24,45 ,2,821,541835 ,2,822,43545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,541945 ,2,822,193575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,457250 ,1,16,45 ,1,24,12165 ,2,821,542100 ,2,822,43605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,542225 ,2,822,43615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,542310 ,1,0,45 ,1,1,5900 ,1,2,373445 ,1,3,313155 ,1,4,372100 ,2,822,193680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516265 ,2,827,38415 ,2,828,457255 ,1,16,45 ,1,24,45 ,2,821,552270 ,2,822,193710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511205 ,2,827,75 ,2,828,457260 ,1,16,45 ,1,24,11085 ,2,821,553080 ,2,822,193735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508190 ,2,827,75 ,2,828,457265 ,1,16,45 ,1,24,45 ,2,821,554085 ,2,822,193745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508190 ,2,827,75 ,2,828,457290 ,1,16,45 ,1,24,45 ,2,821,555090 ,2,822,43625 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,555160 ,2,822,43635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,555260 ,2,822,43655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,555355 ,2,822,586450 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,555790 ,2,822,43670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,11285 ,2,821,555890 ,2,822,193895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509200 ,2,827,30175 ,2,828,457295 ,1,16,45 ,1,24,5410 ,2,821,558315 ,1,0,45 ,1,1,5900 ,1,2,297305 ,1,3,45 ,1,4,5900 ,1,5,297295 ,1,6,45 ,1,7,5900 ,1,8,297285 ,2,822,193980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516270 ,2,827,120735 ,2,828,457320 ,1,16,45 ,1,24,2765 ,1,16,45 ,1,24,45 ,2,821,561530 ,2,822,194000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,457305 ,2,821,562415 ,2,822,193990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509035 ,2,827,75 ,2,828,457300 ,1,16,45 ,1,24,45 ,2,821,564155 ,2,822,194010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,457310 ,1,16,45 ,1,24,45 ,2,821,564980 ,2,822,194020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,457315 ,1,16,45 ,1,24,45 ,2,821,565830 ,1,0,554105 ,1,1,554100 ,2,822,194065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516275 ,2,827,120750 ,2,828,457325 ,1,16,45 ,1,24,12665 ,2,821,568135 ,2,822,43680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,568225 ,2,822,43690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,568330 ,2,822,43700 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,568440 ,2,822,586505 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,568875 ,2,822,194120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,457360 ,1,16,45 ,1,24,7290 ,2,821,569990 ,1,0,211390 ,2,822,194205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,457355 ,1,16,45 ,1,24,11340 ,1,16,45 ,1,24,45 ,2,821,570495 ,2,822,43730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,570605 ,1,0,45 ,1,1,330070 ,2,822,194280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,457370 ,1,16,45 ,1,24,8315 ,2,821,572255 ,1,0,210870 ,2,822,194385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516305 ,2,827,120905 ,2,828,457365 ,1,16,45 ,1,24,8740 ,2,821,574380 ,2,822,194305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,457385 ,1,16,45 ,1,24,2765 ,1,16,45 ,1,24,45 ,2,821,575435 ,2,822,194395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516310 ,2,827,120905 ,2,828,457380 ,2,821,577750 ,2,822,194325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497390 ,2,827,75 ,2,828,457395 ,1,16,45 ,1,24,45 ,2,821,578835 ,1,0,194280 ,2,822,194405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516310 ,2,827,120905 ,2,828,457390 ,1,16,45 ,1,24,45 ,2,821,581200 ,2,822,43740 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,581325 ,1,0,2210 ,1,1,542350 ,2,822,194475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507305 ,2,827,75 ,2,828,457440 ,1,16,45 ,1,24,2820 ,2,821,582960 ,2,822,194495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508085 ,2,827,75 ,2,828,457445 ,1,16,45 ,1,24,45 ,2,821,583830 ,1,0,554095 ,1,1,554080 ,2,822,194520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516315 ,2,827,120995 ,2,828,457450 ,1,16,45 ,1,24,45 ,2,821,585915 ,1,0,45 ,1,1,5900 ,1,2,210970 ,2,822,153115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516325 ,2,827,75 ,2,828,457465 ,1,16,45 ,1,24,45 ,2,821,590800 ,2,822,134700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516170 ,2,827,75 ,2,828,457470 ,1,16,45 ,1,24,45 ,2,821,592230 ,1,0,45 ,1,1,5900 ,1,2,211215 ,2,822,148710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516330 ,2,827,121025 ,2,828,457475 ,1,16,45 ,1,24,45 ,2,821,597620 ,2,822,161030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516170 ,2,827,75 ,2,828,457480 ,1,16,45 ,1,24,45 ,2,821,599065 ,1,0,45 ,1,1,5900 ,1,2,217075 ,1,3,45 ,1,4,5900 ,2,822,111470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516335 ,2,827,121045 ,2,828,457505 ,1,16,45 ,1,24,45 ,2,821,610100 ,2,822,103155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,24,45 ,2,821,610935 ,2,822,109340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516170 ,2,827,75 ,2,828,457510 ,1,16,45 ,1,24,45 ,2,821,612360 ,1,0,45 ,1,1,5900 ,1,2,211815 ,2,822,107910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516340 ,2,827,75 ,2,828,457515 ,1,16,45 ,1,24,3525 ,2,821,617695 ,1,0,317640 ,1,1,317625 ,1,2,213515 ,2,822,115920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516355 ,2,827,121055 ,2,828,457520 ,1,16,45 ,1,24,4845 ,2,821,626765 ,1,0,162490 ,1,1,45 ,1,2,5900 ,2,822,138560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516360 ,2,827,121065 ,2,828,457530 ,1,16,45 ,1,24,9345 ,2,821,631060 ,1,0,224780 ,1,1,224825 ,1,2,317500 ,1,3,45 ,1,4,5900 ,1,5,207015 ,1,6,224865 ,1,7,162540 ,2,822,159730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516365 ,2,827,75 ,2,828,457535 ,1,16,45 ,1,24,45 ,2,821,635465 ,1,0,45 ,1,1,5900 ,2,822,131505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516370 ,2,827,87485 ,2,828,457540 ,1,16,45 ,1,24,45 ,2,821,636835 ,1,0,45 ,1,1,5900 ,2,822,157110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516380 ,2,827,87485 ,2,828,457545 ,1,16,45 ,1,24,45 ,2,821,638045 ,1,0,45 ,1,1,5900 ,2,822,157695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516380 ,2,827,87485 ,2,828,457575 ,1,16,45 ,1,24,45 ,2,821,639260 ,1,0,45 ,1,1,5900 ,2,822,156330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516380 ,2,827,87485 ,2,828,457580 ,1,16,45 ,1,24,45 ,2,821,640580 ,1,0,212810 ,1,1,373555 ,2,822,180805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516385 ,2,827,75 ,2,828,457585 ,1,16,45 ,1,24,8115 ,2,821,641420 ,1,0,45 ,1,1,5900 ,2,822,191605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516390 ,2,827,87485 ,2,828,457590 ,1,16,45 ,1,24,2725 ,1,16,45 ,1,24,45 ,2,821,643245 ,1,0,45 ,1,1,5900 ,2,822,107835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516395 ,2,827,87485 ,2,828,457595 ,2,821,644500 ,1,0,45 ,1,1,5900 ,1,2,248850 ,2,822,116320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516420 ,2,827,87485 ,2,828,457600 ,1,16,45 ,1,24,45 ,2,821,647040 ,1,0,212765 ,2,822,103250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516425 ,2,827,75 ,2,828,457605 ,1,16,45 ,1,24,45 ,2,821,647930 ,2,822,131495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,1,16,45 ,1,24,45 ,2,821,648305 ,2,822,154445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,24,7300 ,2,821,648655 ,1,0,163215 ,2,822,133840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496035 ,2,827,75 ,2,828,457610 ,1,16,45 ,1,24,45 ,2,821,649380 ,2,822,115245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,24,45 ,2,821,650485 ,1,0,586580 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,194750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516445 ,2,827,121185 ,2,828,457660 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,654415 ,1,0,162350 ,2,822,194740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516440 ,2,827,75 ,2,828,457655 ,2,821,655430 ,2,822,194615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516430 ,2,827,75 ,2,828,457640 ,1,16,45 ,1,24,9070 ,2,821,657630 ,2,822,43750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,657725 ,2,822,43790 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,657820 ,2,822,586580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,5060 ,2,821,658225 ,1,0,45 ,1,1,317055 ,2,822,194655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,457645 ,1,16,45 ,1,24,45 ,2,821,659820 ,2,822,194730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516435 ,2,827,75 ,2,828,457650 ,1,16,45 ,1,24,45 ,2,821,661110 ,1,0,297700 ,2,822,194705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,24,45 ,2,821,664190 ,1,0,586610 ,1,1,45 ,1,2,324000 ,1,3,45 ,1,4,331650 ,2,822,195060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516505 ,2,827,121310 ,2,828,457740 ,1,16,45 ,1,24,7620 ,2,821,665425 ,1,0,313095 ,1,1,45 ,1,2,11510 ,2,822,194760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516450 ,2,827,112285 ,2,828,457665 ,1,16,45 ,1,24,45 ,2,821,667250 ,2,822,43810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,9170 ,2,821,667360 ,2,822,43820 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,667445 ,2,822,586610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,667865 ,2,822,194875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,457705 ,1,16,45 ,1,24,45 ,2,821,668815 ,2,822,194965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,457675 ,1,16,45 ,1,24,45 ,2,821,669305 ,1,0,374380 ,1,1,210860 ,2,822,194955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516455 ,2,827,75 ,2,828,457670 ,1,16,45 ,1,24,45 ,2,821,671540 ,1,0,45 ,1,1,276975 ,2,822,194910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508950 ,2,827,75 ,2,828,457715 ,1,16,45 ,1,24,7150 ,2,821,673065 ,2,822,194975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,457710 ,1,16,45 ,1,24,45 ,2,821,673620 ,1,0,45 ,1,1,276975 ,2,822,194930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516500 ,2,827,75 ,2,828,457735 ,1,16,45 ,1,24,4890 ,2,821,200 ,2,822,194985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495295 ,2,827,75 ,2,828,457720 ,1,16,45 ,1,24,45 ,2,821,1230 ,1,0,586505 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,194185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516510 ,2,827,121320 ,2,828,457745 ,1,16,45 ,1,24,12255 ,2,821,7225 ,1,0,586450 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,194365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516515 ,2,827,121330 ,2,828,457750 ,1,16,45 ,1,24,45 ,2,821,11870 ,1,0,577095 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,141015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516520 ,2,827,121310 ,2,828,457760 ,1,16,45 ,1,24,45 ,2,821,14190 ,1,0,586070 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,241020 ,2,822,190465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516525 ,2,827,121365 ,2,828,457765 ,1,16,45 ,1,24,45 ,2,821,19435 ,1,0,574880 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,133640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516530 ,2,827,121375 ,2,828,457770 ,1,16,45 ,1,24,45 ,2,821,23320 ,1,0,578465 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,550555 ,2,822,149700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516535 ,2,827,121310 ,2,828,457775 ,1,16,45 ,1,24,45 ,2,821,32980 ,1,0,578550 ,1,1,45 ,1,2,324000 ,1,3,45 ,1,4,331650 ,2,822,149385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516520 ,2,827,121310 ,2,828,457780 ,1,16,45 ,1,24,4555 ,2,821,35290 ,1,0,578475 ,1,1,45 ,1,2,324000 ,1,3,45 ,1,4,331650 ,2,822,149335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516550 ,2,827,121310 ,2,828,457785 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,43090 ,1,0,609690 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,328040 ,1,6,181805 ,1,7,290820 ,1,8,217925 ,2,822,123520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516555 ,2,827,121310 ,2,828,457790 ,2,821,49650 ,1,0,576345 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,137290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516560 ,2,827,121310 ,2,828,457795 ,1,16,45 ,1,24,45 ,2,821,53600 ,1,0,585640 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,327500 ,2,822,187855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516565 ,2,827,121310 ,2,828,457830 ,1,16,45 ,1,24,45 ,2,821,56725 ,1,0,570050 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,113450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516570 ,2,827,121310 ,2,828,457835 ,1,16,45 ,1,24,6530 ,2,821,59025 ,1,0,569970 ,1,1,45 ,1,2,331650 ,1,3,327520 ,1,4,45 ,1,5,331650 ,2,822,141645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516575 ,2,827,121310 ,2,828,457840 ,1,16,45 ,1,24,45 ,2,821,61260 ,1,0,578290 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,150150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516580 ,2,827,121310 ,2,828,457845 ,1,16,45 ,1,24,45 ,2,821,67860 ,1,0,579015 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,153020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516585 ,2,827,121385 ,2,828,457860 ,1,16,45 ,1,24,45 ,2,821,76380 ,1,0,575170 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,132930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516505 ,2,827,121310 ,2,828,457865 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,78570 ,1,0,586665 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,195080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516610 ,2,827,121310 ,2,828,457870 ,2,821,80880 ,2,822,43855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,81040 ,2,822,43865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,81205 ,1,0,594350 ,1,1,550085 ,1,2,580785 ,1,3,550790 ,1,4,580710 ,1,5,550765 ,1,6,580800 ,1,7,550795 ,1,8,580730 ,1,9,550785 ,1,10,576985 ,1,11,550380 ,1,12,552610 ,2,822,195090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516615 ,2,827,121415 ,2,828,457875 ,1,16,45 ,1,24,5195 ,2,821,89765 ,1,0,550440 ,1,1,366885 ,1,2,359835 ,1,3,365670 ,1,4,366425 ,1,5,359825 ,1,6,366395 ,1,7,359815 ,1,8,359760 ,1,9,359780 ,1,10,359770 ,1,11,359750 ,1,12,364035 ,1,13,359720 ,1,14,359685 ,1,15,359695 ,1,16,359730 ,1,17,366275 ,1,18,359740 ,1,19,365815 ,1,20,359710 ,2,822,195100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516620 ,2,827,121425 ,2,828,457905 ,1,16,45 ,1,24,45 ,2,821,113610 ,1,0,364470 ,1,1,365860 ,2,822,195110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516625 ,2,827,121425 ,2,828,457910 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,138915 ,1,0,263725 ,1,1,263715 ,1,2,551240 ,2,822,195160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516630 ,2,827,121465 ,2,828,457915 ,2,821,142170 ,1,0,298050 ,2,822,195170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,24,45 ,2,821,148315 ,2,822,586665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,9920 ,2,821,149020 ,2,822,586745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,2845 ,2,821,149710 ,2,822,43940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,11955 ,2,821,149895 ,2,822,43960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,150065 ,1,0,45 ,1,1,234335 ,2,822,195525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,457925 ,1,16,45 ,1,24,45 ,2,821,152840 ,2,822,195630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516635 ,2,827,75 ,2,828,457920 ,1,16,45 ,1,24,45 ,2,821,154155 ,1,0,45 ,1,1,234335 ,2,822,195545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,457935 ,1,16,45 ,1,24,7300 ,2,821,156910 ,1,0,328230 ,1,1,218105 ,1,2,328220 ,1,3,328210 ,2,822,195640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516640 ,2,827,75 ,2,828,457930 ,1,16,45 ,1,24,45 ,2,821,161320 ,1,0,218065 ,2,822,195570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504735 ,2,827,75 ,2,828,438195 ,1,16,45 ,1,24,45 ,2,821,162565 ,1,0,555410 ,1,1,188580 ,2,822,195590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516645 ,2,827,121695 ,2,828,457940 ,1,16,45 ,1,24,45 ,2,821,217525 ,1,0,328175 ,2,822,195600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516680 ,2,827,75 ,2,828,457975 ,1,16,45 ,1,24,45 ,2,821,218510 ,2,822,195690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516685 ,2,827,75 ,2,828,457980 ,1,16,45 ,1,24,2725 ,2,821,219670 ,1,0,586805 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,298645 ,2,822,196075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516740 ,2,827,121310 ,2,828,458055 ,1,16,45 ,1,24,45 ,2,821,223810 ,1,0,216715 ,1,1,216695 ,1,2,216685 ,1,3,298870 ,2,822,196065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516715 ,2,827,75 ,2,828,458035 ,1,16,45 ,1,24,45 ,2,821,227990 ,1,0,45 ,1,1,5320 ,1,2,355075 ,2,822,196045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516710 ,2,827,75 ,2,828,458030 ,1,16,45 ,1,24,45 ,2,821,229390 ,1,0,552620 ,2,822,196035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516705 ,2,827,75 ,2,828,458015 ,1,16,45 ,1,24,8940 ,2,821,230735 ,2,822,43970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,230920 ,2,822,43990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,11900 ,2,821,231080 ,2,822,586805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,232725 ,2,822,44030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,232870 ,2,822,44040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,233055 ,2,822,586865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,234265 ,1,0,45 ,1,1,5320 ,1,2,298855 ,1,3,355115 ,2,822,195840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516710 ,2,827,75 ,2,828,457985 ,1,16,45 ,1,24,45 ,2,821,235720 ,1,0,45 ,1,1,5320 ,1,2,355095 ,2,822,195850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516690 ,2,827,75 ,2,828,457990 ,1,16,45 ,1,24,45 ,2,821,237015 ,1,0,45 ,1,1,5320 ,1,2,611420 ,1,3,45 ,1,4,195155 ,2,822,195860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516695 ,2,827,75 ,2,828,458000 ,1,16,45 ,1,24,45 ,2,821,238975 ,2,822,195870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,458005 ,1,16,45 ,1,24,3170 ,2,821,239475 ,2,822,44060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,4610 ,2,821,239660 ,2,822,586925 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,240915 ,1,0,213080 ,1,1,213060 ,2,822,195910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516700 ,2,827,75 ,2,828,458010 ,1,16,45 ,1,24,10945 ,2,821,244985 ,1,0,45 ,1,1,5320 ,1,2,355085 ,2,822,195830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516735 ,2,827,75 ,2,828,458040 ,1,16,45 ,1,24,45 ,2,821,246460 ,2,822,195720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,458045 ,1,16,45 ,1,24,12665 ,2,821,247495 ,1,0,586925 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,195945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516745 ,2,827,121310 ,2,828,458060 ,1,16,45 ,1,24,45 ,2,821,251635 ,1,0,574955 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,132135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516750 ,2,827,121310 ,2,828,458065 ,1,16,45 ,1,24,45 ,2,821,253830 ,1,0,577285 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,2210 ,1,6,542350 ,1,7,2210 ,1,8,542350 ,2,822,152035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516760 ,2,827,121935 ,2,828,458070 ,1,16,45 ,1,24,45 ,2,821,277265 ,1,0,580895 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,216535 ,1,6,266785 ,1,7,266810 ,1,8,161890 ,1,9,316960 ,2,822,161930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516765 ,2,827,121950 ,2,828,458100 ,1,16,45 ,1,24,12395 ,2,821,287045 ,1,0,571170 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,325875 ,2,822,120675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516770 ,2,827,121310 ,2,828,458105 ,1,16,45 ,1,24,45 ,2,821,291235 ,1,0,581750 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,328365 ,1,6,181735 ,2,822,167090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516775 ,2,827,121310 ,2,828,458110 ,1,16,45 ,1,24,5370 ,2,821,294945 ,1,0,573890 ,1,1,45 ,1,2,324000 ,1,3,45 ,1,4,331650 ,1,5,323990 ,2,822,127630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516800 ,2,827,121310 ,2,828,458115 ,1,16,45 ,1,24,45 ,2,821,300380 ,1,0,573335 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,324260 ,1,6,234920 ,1,7,2210 ,1,8,542350 ,2,822,129305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516805 ,2,827,121960 ,2,828,458120 ,1,16,45 ,1,24,45 ,2,821,308945 ,1,0,586990 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,299310 ,2,822,196630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516875 ,2,827,121310 ,2,828,458255 ,1,16,45 ,1,24,45 ,2,821,320035 ,2,822,196085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501895 ,2,827,75 ,2,828,458125 ,1,16,45 ,1,24,3495 ,2,821,321420 ,2,822,44095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,11815 ,2,821,321575 ,2,822,44115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,321720 ,2,822,586990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,8345 ,2,821,322435 ,1,0,45 ,1,1,323485 ,2,822,196135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,458170 ,2,821,325040 ,1,0,314750 ,1,1,314740 ,1,2,314730 ,1,3,591015 ,1,4,314720 ,1,5,298940 ,1,6,45 ,1,7,5900 ,1,8,298900 ,1,9,2280 ,1,10,542020 ,1,11,298890 ,2,822,196205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516825 ,2,827,30175 ,2,828,458165 ,1,16,45 ,1,24,45 ,2,821,351185 ,1,0,354420 ,1,1,374310 ,2,822,196155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,458135 ,1,16,45 ,1,24,45 ,2,821,352260 ,1,0,354410 ,1,1,354400 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,2,822,196145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516810 ,2,827,122055 ,2,828,458130 ,1,16,45 ,1,24,45 ,2,821,361490 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,200170 ,1,9,374370 ,1,10,211925 ,2,822,196165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516815 ,2,827,122080 ,2,828,458155 ,1,16,45 ,1,24,45 ,2,821,385990 ,1,0,15775 ,1,1,15620 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,1,10,45 ,1,11,11510 ,1,12,354445 ,2,822,196175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516820 ,2,827,122090 ,2,828,458160 ,1,16,45 ,1,24,3970 ,2,821,400495 ,2,822,44155 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,12255 ,2,821,400575 ,1,0,554355 ,2,822,196245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516830 ,2,827,75 ,2,828,458190 ,1,16,45 ,1,24,5910 ,2,821,401800 ,1,0,45 ,1,1,343730 ,2,822,196265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,435655 ,1,16,45 ,1,24,45 ,2,821,403495 ,2,822,44195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,403570 ,2,822,44215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,7585 ,2,821,403685 ,1,0,15695 ,2,822,196480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516835 ,2,827,75 ,2,828,458205 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,409970 ,2,822,196490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516860 ,2,827,33420 ,2,828,458215 ,2,821,411870 ,1,0,45 ,1,1,327085 ,2,822,196515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,458225 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,413470 ,1,0,263790 ,2,822,196570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516865 ,2,827,122380 ,2,828,458220 ,2,821,420760 ,1,0,45 ,1,1,330070 ,2,822,196535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,458240 ,1,16,45 ,1,24,45 ,2,821,422400 ,2,822,196580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498210 ,2,827,75 ,2,828,458230 ,1,16,45 ,1,24,3970 ,2,821,423990 ,1,0,196535 ,1,1,196515 ,2,822,196610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516870 ,2,827,122390 ,2,828,458245 ,1,16,45 ,1,24,45 ,2,821,431230 ,2,822,196390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,24,45 ,2,821,432160 ,2,822,196600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502315 ,2,827,75 ,2,828,458250 ,1,16,45 ,1,24,45 ,2,821,433330 ,1,0,573510 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,128890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516885 ,2,827,121310 ,2,828,458305 ,1,16,45 ,1,24,45 ,2,821,435265 ,1,0,570665 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,1,5,591885 ,1,6,45 ,1,7,5900 ,1,8,248905 ,2,822,140505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516890 ,2,827,122420 ,2,828,458310 ,1,16,45 ,1,24,45 ,2,821,440035 ,1,0,45 ,1,1,331650 ,1,2,45 ,1,3,331650 ,1,4,277005 ,2,822,168070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516895 ,2,827,121310 ,2,828,458315 ,1,16,45 ,1,24,45 ,2,821,441780 ,1,0,578815 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,150685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516900 ,2,827,122430 ,2,828,458320 ,1,16,45 ,1,24,12795 ,2,821,444985 ,1,0,45 ,1,1,331650 ,2,822,162965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495865 ,2,827,75 ,2,828,458325 ,1,16,45 ,1,24,45 ,2,821,445630 ,1,0,571560 ,1,1,45 ,1,2,331650 ,1,3,45 ,1,4,331650 ,2,822,119170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516920 ,2,827,122440 ,2,828,458330 ,1,16,45 ,1,24,9950 ,2,821,449125 ,2,822,154550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,45 ,1,24,45 ,2,821,449990 ,2,822,118900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516925 ,2,827,75 ,2,828,458335 ,1,16,45 ,1,24,5060 ,2,821,450575 ,2,822,156505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,24,45 ,2,821,450680 ,2,822,112985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,458340 ,1,16,45 ,1,24,8940 ,2,821,451595 ,2,822,193700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,458360 ,1,16,45 ,1,24,9950 ,2,821,452420 ,2,822,152650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504625 ,2,827,75 ,2,828,458365 ,1,16,45 ,1,24,45 ,2,821,453450 ,2,822,118765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516935 ,2,827,75 ,2,828,458370 ,1,16,45 ,1,24,4890 ,2,821,454135 ,2,822,153125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,458385 ,1,16,45 ,1,24,45 ,2,821,455170 ,2,822,134735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504625 ,2,827,75 ,2,828,458390 ,1,16,45 ,1,24,45 ,2,821,456110 ,2,822,161085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,458395 ,1,16,45 ,1,24,45 ,2,821,456995 ,2,822,111515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,458420 ,1,16,45 ,1,24,45 ,2,821,457995 ,2,822,103410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516940 ,2,827,75 ,2,828,458425 ,1,16,45 ,1,24,45 ,2,821,459305 ,2,822,109405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,458430 ,1,16,45 ,1,24,45 ,2,821,460160 ,2,822,116375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,458445 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,461085 ,2,822,116120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,458450 ,2,821,461875 ,2,822,137980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,458455 ,1,16,45 ,1,24,45 ,2,821,462800 ,2,822,138570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516940 ,2,827,75 ,2,828,458460 ,1,16,45 ,1,24,45 ,2,821,464190 ,2,822,159765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516945 ,2,827,75 ,2,828,458495 ,1,16,45 ,1,24,45 ,2,821,465510 ,2,822,154510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516950 ,2,827,75 ,2,828,458505 ,1,16,45 ,1,24,45 ,2,821,466555 ,2,822,118810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516955 ,2,827,75 ,2,828,458510 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,467870 ,2,822,121755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516980 ,2,827,75 ,2,828,458530 ,2,821,469020 ,2,822,156435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,458535 ,1,16,45 ,1,24,45 ,2,821,469635 ,2,822,156020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516985 ,2,827,75 ,2,828,458540 ,1,16,45 ,1,24,4685 ,1,16,45 ,1,24,45 ,2,821,470460 ,2,822,155625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,458545 ,2,821,471075 ,2,822,157620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516990 ,2,827,75 ,2,828,458575 ,1,16,45 ,1,24,45 ,2,821,471935 ,1,0,210815 ,2,822,194530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,458580 ,1,16,45 ,1,24,45 ,2,821,472745 ,1,0,210980 ,2,822,153105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,458585 ,1,16,45 ,1,24,45 ,2,821,473500 ,2,822,148765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516995 ,2,827,75 ,2,828,458590 ,1,16,45 ,1,24,45 ,2,821,481140 ,1,0,45 ,1,1,5900 ,2,822,107940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517010 ,2,827,75 ,2,828,458600 ,1,16,45 ,1,24,45 ,2,821,482945 ,1,0,213440 ,2,822,115970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517015 ,2,827,122450 ,2,828,458605 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,485155 ,2,822,138550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,458610 ,2,821,485625 ,2,822,156180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,45 ,1,24,45 ,2,821,485780 ,2,822,156705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517020 ,2,827,75 ,2,828,458650 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,486820 ,2,822,191000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517025 ,2,827,122470 ,2,828,458655 ,2,821,488005 ,2,822,134355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517055 ,2,827,122480 ,2,828,458660 ,1,16,45 ,1,24,45 ,2,821,489025 ,2,822,145420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515190 ,2,827,75 ,2,828,458665 ,1,16,45 ,1,24,45 ,2,821,489740 ,2,822,108370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,458675 ,1,16,45 ,1,24,45 ,2,821,490390 ,2,822,107575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,458680 ,1,16,45 ,1,24,45 ,2,821,491030 ,1,0,45 ,1,1,209800 ,1,2,211235 ,1,3,570885 ,1,4,45 ,1,5,5900 ,1,6,317545 ,1,7,45 ,1,8,5900 ,1,9,317535 ,1,10,45 ,1,11,5900 ,1,12,317525 ,2,822,115355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517060 ,2,827,83225 ,2,828,458685 ,1,16,45 ,1,24,6530 ,2,821,502365 ,2,822,196675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517065 ,2,827,82975 ,2,828,458690 ,1,16,45 ,1,24,45 ,2,821,504295 ,2,822,44225 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,504370 ,2,822,44245 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,9285 ,2,821,504495 ,2,822,587095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,504845 ,2,822,196705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,458700 ,1,16,45 ,1,24,45 ,2,821,505870 ,1,0,217430 ,2,822,196805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506060 ,2,827,75 ,2,828,458695 ,1,16,45 ,1,24,45 ,2,821,507975 ,1,0,371255 ,2,822,196715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517070 ,2,827,75 ,2,828,458705 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,509470 ,1,0,357850 ,1,1,326035 ,1,2,15430 ,1,3,163400 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,1,8,217410 ,1,9,357880 ,1,10,15485 ,1,11,163390 ,1,12,356760 ,1,13,369920 ,1,14,357250 ,2,822,196725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517075 ,2,827,74615 ,2,828,458710 ,2,821,520370 ,2,822,44265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,520490 ,2,822,44290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,520590 ,1,0,217595 ,1,1,357260 ,1,2,354360 ,2,822,196815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517135 ,2,827,75 ,2,828,458775 ,1,16,45 ,1,24,45 ,2,821,521865 ,1,0,231570 ,1,1,231580 ,1,2,231560 ,1,3,225470 ,1,4,5845 ,1,5,299490 ,1,6,299480 ,1,7,248695 ,1,8,249045 ,1,9,299500 ,1,10,612690 ,1,11,354245 ,2,822,196825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517080 ,2,827,75 ,2,828,458730 ,1,16,45 ,1,24,45 ,2,821,529460 ,1,0,356325 ,2,822,196855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517120 ,2,827,75 ,2,828,458745 ,1,16,45 ,1,24,45 ,2,821,530755 ,2,822,44365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,5220 ,2,821,530850 ,2,822,44395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,530945 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,215630 ,1,9,45 ,1,10,5900 ,1,11,225945 ,1,12,45 ,1,13,5900 ,2,822,196900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517085 ,2,827,122795 ,2,828,458735 ,1,16,45 ,1,24,45 ,2,821,535595 ,2,822,197030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517090 ,2,827,75 ,2,828,458740 ,1,16,45 ,1,24,5220 ,2,821,538110 ,2,822,44385 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,538235 ,2,822,197040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,458760 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,538690 ,1,0,163300 ,1,1,163290 ,2,822,197060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517130 ,2,827,122850 ,2,828,458765 ,2,821,543190 ,2,822,44405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,543270 ,1,0,354295 ,2,822,197090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517125 ,2,827,75 ,2,828,458770 ,1,16,45 ,1,24,9920 ,1,16,45 ,1,24,45 ,2,821,551295 ,2,822,44300 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,551370 ,1,0,217625 ,1,1,552945 ,2,822,197135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517470 ,2,827,75 ,2,828,459330 ,1,16,45 ,1,24,45 ,2,821,552640 ,1,0,326870 ,2,822,198865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517440 ,2,827,124905 ,2,828,459235 ,1,16,45 ,1,24,9500 ,2,821,554450 ,1,0,299810 ,1,1,163605 ,1,2,217585 ,1,3,552870 ,2,822,197365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517160 ,2,827,75 ,2,828,458835 ,1,16,45 ,1,24,45 ,2,821,556345 ,1,0,217560 ,1,1,217550 ,1,2,552845 ,2,822,197180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517145 ,2,827,123055 ,2,828,458780 ,1,16,45 ,1,24,45 ,2,821,558855 ,2,822,44435 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,558945 ,2,822,44470 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,559030 ,2,822,197200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517150 ,2,827,123155 ,2,828,458790 ,1,16,45 ,1,24,45 ,2,821,559810 ,2,822,44500 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,6860 ,2,821,559915 ,1,0,45 ,1,1,175900 ,2,822,197250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,458795 ,1,16,45 ,1,24,45 ,2,821,560840 ,2,822,587345 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,10490 ,2,821,561270 ,2,822,587330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,561695 ,1,0,556125 ,1,1,331220 ,1,2,263840 ,2,822,197305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517155 ,2,827,123315 ,2,828,458830 ,1,16,45 ,1,24,45 ,1,16,45 ,1,24,45 ,2,821,566865 ,2,822,44575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,566970 ,2,822,44595 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,567050 ,1,0,45 ,1,1,195155 ,2,822,197375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517190 ,2,827,75 ,2,828,458840 ,1,16,45 ,1,24,45 ,2,821,567755 ,1,0,45 ,1,1,195155 ,2,822,197400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,458845 ,1,16,45 ,1,24,45 ,2,821,569220 ,2,822,587440 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,45 ,2,821,569630 ,2,822,44605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,45 ,1,24,10715 ,1,8,14905 ,1,40,14905 ,1,64,170 ,1,72,170 ,1,80,45 ,2,821,569735 ,2,822,197465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,459075 ,2,821,570545 ,2,822,198360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517325 ,2,827,75 ,2,828,459070 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,218825 ,1,176,45 ,1,184,45 ,2,821,571385 ,1,0,264035 ,1,1,264015 ,1,2,219745 ,1,3,205120 ,2,822,198345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517320 ,2,827,123545 ,2,828,458850 ,1,8,170 ,1,16,372820 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15470 ,1,64,371270 ,1,72,45 ,1,80,15455 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,2,821,576630 ,1,0,331385 ,2,822,197490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517195 ,2,827,75 ,2,828,458855 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,218910 ,1,176,45 ,1,184,45 ,2,821,577170 ,2,822,44615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15345 ,1,64,371270 ,1,72,45 ,1,80,15480 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,218940 ,1,176,45 ,1,184,45 ,2,821,577260 ,1,0,552880 ,2,822,197520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,458860 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,218950 ,1,176,45 ,1,184,45 ,2,821,577685 ,2,822,197575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,458880 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15255 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,218960 ,1,176,45 ,1,184,45 ,2,821,578130 ,1,0,552895 ,2,822,197605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,458885 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219000 ,1,176,45 ,1,184,45 ,2,821,578565 ,1,0,552900 ,2,822,197615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,458890 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219020 ,1,176,45 ,1,184,45 ,2,821,579010 ,2,822,197665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517225 ,2,827,124025 ,2,828,458940 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219030 ,1,176,45 ,1,184,45 ,2,821,581000 ,2,822,44720 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219045 ,1,176,45 ,1,184,45 ,2,821,581075 ,1,0,315195 ,2,822,197675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517200 ,2,827,123890 ,2,828,458900 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219055 ,1,176,45 ,1,184,45 ,2,821,583860 ,1,0,263955 ,2,822,197725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517150 ,2,827,123980 ,2,828,458910 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219065 ,1,176,45 ,1,184,45 ,2,821,584655 ,1,0,552865 ,1,1,219755 ,2,822,197805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517205 ,2,827,75 ,2,828,458925 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219075 ,1,176,45 ,1,184,45 ,2,821,588420 ,1,0,322900 ,2,822,197815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517215 ,2,827,123890 ,2,828,458930 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219115 ,1,176,45 ,1,184,45 ,2,821,591640 ,1,0,263850 ,1,1,301565 ,1,2,8440 ,1,3,552465 ,1,4,205140 ,1,5,331395 ,2,822,197825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517220 ,2,827,124000 ,2,828,458935 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15500 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219125 ,1,176,45 ,1,184,45 ,2,821,596360 ,2,822,587605 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,2,821,596735 ,2,822,197845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517280 ,2,827,124360 ,2,828,459025 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219135 ,1,176,45 ,1,184,45 ,2,821,597695 ,2,822,44760 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219145 ,1,176,45 ,1,184,45 ,2,821,597835 ,1,0,45 ,1,1,195155 ,2,822,197855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517190 ,2,827,75 ,2,828,458945 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219155 ,1,176,45 ,1,184,45 ,2,821,598515 ,1,0,45 ,1,1,195155 ,2,822,197885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497540 ,2,827,75 ,2,828,458950 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219165 ,1,176,45 ,1,184,45 ,2,821,599915 ,2,822,197905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517275 ,2,827,124025 ,2,828,459020 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219175 ,1,176,45 ,1,184,45 ,2,821,603755 ,1,0,264005 ,1,1,331230 ,2,822,198050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517270 ,2,827,124280 ,2,828,459010 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219185 ,1,176,45 ,1,184,45 ,2,821,608200 ,1,0,180560 ,1,1,340155 ,1,2,2210 ,1,3,542345 ,2,822,198015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517265 ,2,827,27110 ,2,828,459000 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219210 ,1,176,45 ,1,184,45 ,2,821,616440 ,2,822,197915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219220 ,1,176,45 ,1,184,45 ,2,821,616825 ,2,822,44795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219240 ,1,176,45 ,1,184,45 ,2,821,616935 ,2,822,197925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517260 ,2,827,75 ,2,828,458995 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219250 ,1,176,45 ,1,184,45 ,2,821,618765 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,197935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491700 ,2,827,75 ,2,828,458955 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219260 ,1,176,45 ,1,184,45 ,2,821,619750 ,1,0,263965 ,1,1,301015 ,1,2,300995 ,2,822,197995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517255 ,2,827,124200 ,2,828,458960 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219270 ,1,176,45 ,1,184,45 ,2,821,621430 ,2,822,197955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517230 ,2,827,75 ,2,828,458990 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219280 ,1,176,45 ,1,184,45 ,2,821,622020 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,197985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496095 ,2,827,75 ,2,828,458985 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219320 ,1,176,45 ,1,184,45 ,2,821,622945 ,2,822,198040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,459015 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219330 ,1,176,45 ,1,184,45 ,2,821,623320 ,1,0,164750 ,2,822,198080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517285 ,2,827,75 ,2,828,459040 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219340 ,1,176,45 ,1,184,45 ,2,821,623890 ,1,0,301225 ,2,822,198210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517290 ,2,827,75 ,2,828,459050 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219350 ,1,176,45 ,1,184,45 ,2,821,624360 ,2,822,198240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517315 ,2,827,124510 ,2,828,459055 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219365 ,1,176,45 ,1,184,45 ,2,821,625100 ,2,822,44920 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219375 ,1,176,45 ,1,184,45 ,2,821,625180 ,1,0,264055 ,2,822,198265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,124520 ,2,828,459060 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219385 ,1,176,45 ,1,184,45 ,2,821,625815 ,1,0,331050 ,1,1,331040 ,2,822,198285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517310 ,2,827,124530 ,2,828,459065 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15550 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219395 ,1,176,45 ,1,184,45 ,2,821,627490 ,2,822,44635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15230 ,1,64,371280 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219430 ,1,176,45 ,1,184,45 ,2,821,627575 ,2,822,44945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219440 ,1,176,45 ,1,184,45 ,1,8,160 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371120 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,2,821,627685 ,2,822,198390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,459105 ,2,821,628120 ,1,0,370520 ,1,1,552910 ,1,2,219765 ,2,822,198410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517205 ,2,827,75 ,2,828,459110 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15550 ,1,64,371255 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219450 ,1,176,45 ,1,184,45 ,2,821,631710 ,2,822,587745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219460 ,1,176,45 ,1,184,45 ,2,821,632150 ,2,822,198420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517335 ,2,827,75 ,2,828,459120 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219470 ,1,176,45 ,1,184,45 ,2,821,632765 ,1,0,219845 ,2,822,198430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517330 ,2,827,75 ,2,828,459115 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,14985 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219480 ,1,176,45 ,1,184,45 ,2,821,633780 ,1,0,164795 ,2,822,198440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517340 ,2,827,75 ,2,828,459125 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219490 ,1,176,45 ,1,184,45 ,2,821,635180 ,1,0,542765 ,1,1,587755 ,1,2,542765 ,1,3,542760 ,1,4,581465 ,1,5,542760 ,2,822,198535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517380 ,2,827,124735 ,2,828,459140 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219500 ,1,176,45 ,1,184,45 ,2,821,639845 ,1,0,219785 ,2,822,198565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517345 ,2,827,75 ,2,828,459130 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219540 ,1,176,45 ,1,184,45 ,2,821,641210 ,1,0,219775 ,2,822,198555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517375 ,2,827,75 ,2,828,459135 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219550 ,1,176,45 ,1,184,45 ,2,821,642750 ,1,0,542795 ,1,1,587755 ,1,2,542795 ,1,3,542790 ,1,4,581465 ,1,5,542790 ,2,822,198545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517390 ,2,827,75 ,2,828,459175 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219560 ,1,176,45 ,1,184,45 ,2,821,647035 ,1,0,219835 ,2,822,198580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517385 ,2,827,75 ,2,828,459170 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219570 ,1,176,45 ,1,184,45 ,2,821,648215 ,2,822,587755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15560 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219585 ,1,176,45 ,1,184,45 ,2,821,648885 ,2,822,44965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219595 ,1,176,45 ,1,184,45 ,2,821,649000 ,1,0,45 ,1,1,175900 ,2,822,198590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,459180 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15570 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219605 ,1,176,45 ,1,184,45 ,2,821,649845 ,2,822,198610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,459195 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219615 ,1,176,45 ,1,184,45 ,2,821,650355 ,2,822,198640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515725 ,2,827,75 ,2,828,459185 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,14930 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219635 ,1,176,45 ,1,184,45 ,2,821,650905 ,1,0,299940 ,1,1,216850 ,2,822,198650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517395 ,2,827,75 ,2,828,459200 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219645 ,1,176,45 ,1,184,45 ,2,821,652265 ,2,822,198380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517400 ,2,827,124895 ,2,828,459205 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219655 ,1,176,45 ,1,184,45 ,2,821,654345 ,2,822,197420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517405 ,2,827,124735 ,2,828,459210 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219665 ,1,176,45 ,1,184,45 ,2,821,656310 ,1,0,300305 ,2,822,197445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517410 ,2,827,75 ,2,828,459230 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,14930 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219685 ,1,176,45 ,1,184,45 ,2,821,657495 ,2,822,45010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219695 ,1,176,45 ,1,184,45 ,2,821,657590 ,1,0,330405 ,2,822,198680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,459240 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219705 ,1,176,45 ,1,184,45 ,2,821,657965 ,2,822,45040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219715 ,1,176,45 ,1,184,45 ,2,821,658055 ,1,0,219565 ,1,1,556065 ,2,822,198700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517425 ,2,827,75 ,2,828,459245 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219740 ,1,176,45 ,1,184,45 ,2,821,659760 ,2,822,45050 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219750 ,1,176,45 ,1,184,45 ,2,821,659865 ,2,822,198730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517430 ,2,827,75 ,2,828,459255 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15320 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219760 ,1,176,45 ,1,184,45 ,2,821,661100 ,2,822,45060 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219770 ,1,176,45 ,1,184,45 ,2,821,661205 ,2,822,198740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496950 ,2,827,125050 ,2,828,459260 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15230 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219780 ,1,176,45 ,1,184,45 ,2,821,662005 ,2,822,198760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459270 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219790 ,1,176,45 ,1,184,45 ,2,821,663045 ,2,822,198790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517435 ,2,827,125070 ,2,828,459265 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219800 ,1,176,45 ,1,184,45 ,2,821,664045 ,1,0,219335 ,2,822,198780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,459285 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15580 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219810 ,1,176,45 ,1,184,45 ,2,821,666680 ,2,822,587875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15470 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219840 ,1,176,45 ,1,184,45 ,2,821,667095 ,1,0,552940 ,1,1,219580 ,2,822,198800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511155 ,2,827,75 ,2,828,459290 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219850 ,1,176,45 ,1,184,45 ,2,821,669830 ,2,822,587890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219860 ,1,176,45 ,1,184,45 ,2,821,670205 ,2,822,45070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15500 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219870 ,1,176,45 ,1,184,45 ,2,821,670290 ,2,822,198875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517455 ,2,827,124905 ,2,828,459295 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219880 ,1,176,45 ,1,184,45 ,2,821,672575 ,1,0,216150 ,2,822,198885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517460 ,2,827,75 ,2,828,459300 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219890 ,1,176,45 ,1,184,45 ,2,821,795 ,1,0,214285 ,2,822,198900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517465 ,2,827,75 ,2,828,459320 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219900 ,1,176,45 ,1,184,45 ,2,821,5720 ,1,0,219885 ,2,822,198910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498555 ,2,827,75 ,2,828,459325 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15255 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219910 ,1,176,45 ,1,184,45 ,2,821,10410 ,1,0,302395 ,1,1,2280 ,1,2,542095 ,1,3,2280 ,1,4,542095 ,1,5,231975 ,1,6,2280 ,1,7,542095 ,1,8,2280 ,1,9,542095 ,1,10,15310 ,1,11,354890 ,1,12,354795 ,1,13,217390 ,1,14,357295 ,1,15,163345 ,1,16,2210 ,1,17,542350 ,1,18,2210 ,1,19,542350 ,2,822,198930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517490 ,2,827,74615 ,2,828,459335 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15470 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219950 ,1,176,45 ,1,184,45 ,2,821,32105 ,2,822,45110 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219960 ,1,176,45 ,1,184,45 ,2,821,32245 ,1,0,196705 ,2,822,199010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517495 ,2,827,125360 ,2,828,459360 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219970 ,1,176,45 ,1,184,45 ,2,821,35070 ,1,0,163420 ,1,1,357405 ,1,2,357500 ,1,3,163410 ,2,822,199020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517500 ,2,827,75 ,2,828,459365 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219980 ,1,176,45 ,1,184,45 ,2,821,41045 ,1,0,217350 ,1,1,217340 ,1,2,354860 ,1,3,357385 ,2,822,199030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517505 ,2,827,75 ,2,828,459370 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,219990 ,1,176,45 ,1,184,45 ,2,821,43875 ,2,822,587955 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220000 ,1,176,45 ,1,184,45 ,2,821,45475 ,1,0,373475 ,2,822,199040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517510 ,2,827,75 ,2,828,459375 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220010 ,1,176,45 ,1,184,45 ,2,821,52895 ,2,822,199070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517590 ,2,827,126090 ,2,828,459565 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15570 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220020 ,1,176,45 ,1,184,45 ,2,821,57440 ,1,0,264065 ,2,822,199515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517580 ,2,827,125940 ,2,828,459500 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15470 ,1,64,371335 ,1,72,45 ,1,80,15595 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220065 ,1,176,45 ,1,184,45 ,2,821,61950 ,2,822,45150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15470 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220075 ,1,176,45 ,1,184,45 ,1,8,160 ,1,16,373145 ,1,24,45 ,1,32,220095 ,1,40,45 ,1,48,45 ,1,56,15245 ,1,64,371240 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371120 ,1,144,372565 ,1,152,371075 ,1,160,45 ,1,168,220085 ,1,176,45 ,1,184,45 ,2,821,62090 ,2,822,45170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,62265 ,2,822,45180 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220105 ,1,176,45 ,1,184,45 ,2,821,62410 ,1,0,552950 ,1,1,219535 ,2,822,199125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,459385 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220115 ,1,176,45 ,1,184,45 ,2,821,67040 ,2,822,588020 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15320 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220125 ,1,176,45 ,1,184,45 ,2,821,67590 ,2,822,199175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459450 ,1,8,170 ,1,16,373300 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15470 ,1,64,371270 ,1,72,45 ,1,80,15455 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,2,821,69270 ,1,0,269615 ,2,822,199420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517555 ,2,827,125560 ,2,828,459395 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,219010 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220135 ,1,176,45 ,1,184,45 ,2,821,70895 ,1,0,302915 ,1,1,552970 ,1,2,219475 ,2,822,199440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517515 ,2,827,75 ,2,828,459390 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15580 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220165 ,1,176,45 ,1,184,45 ,2,821,76180 ,2,822,199195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,456100 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220175 ,1,176,45 ,1,184,45 ,2,821,76610 ,2,822,45240 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15560 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220185 ,1,176,45 ,1,184,45 ,2,821,76750 ,2,822,199220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459425 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220195 ,1,176,45 ,1,184,45 ,2,821,78450 ,2,822,199330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517520 ,2,827,75 ,2,828,459400 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220205 ,1,176,45 ,1,184,45 ,2,821,79420 ,2,822,199240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459435 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220215 ,1,176,45 ,1,184,45 ,2,821,81140 ,1,0,552960 ,1,1,613115 ,2,822,199350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517525 ,2,827,75 ,2,828,459430 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220225 ,1,176,45 ,1,184,45 ,2,821,82575 ,2,822,45260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15230 ,1,64,371280 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220235 ,1,176,45 ,1,184,45 ,2,821,82715 ,2,822,45290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371255 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220255 ,1,176,45 ,1,184,45 ,2,821,82895 ,1,0,302735 ,1,1,355965 ,1,2,552965 ,1,3,613120 ,2,822,199340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517550 ,2,827,75 ,2,828,459440 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220265 ,1,176,45 ,1,184,45 ,2,821,87735 ,1,0,264075 ,2,822,199390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,125895 ,2,828,459445 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220275 ,1,176,45 ,1,184,45 ,1,8,160 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,371255 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,2,821,88725 ,2,822,588150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,89410 ,2,822,199410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459460 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220285 ,1,176,45 ,1,184,45 ,2,821,91060 ,1,0,302725 ,1,1,164720 ,1,2,219495 ,1,3,219485 ,1,4,164710 ,2,822,199430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517560 ,2,827,125560 ,2,828,459455 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220300 ,1,176,45 ,1,184,45 ,2,821,93820 ,1,0,78360 ,1,1,219455 ,2,822,199450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517565 ,2,827,125920 ,2,828,459480 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220310 ,1,176,45 ,1,184,45 ,2,821,96060 ,1,0,278425 ,1,1,354085 ,1,2,164700 ,1,3,219435 ,2,822,199460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517575 ,2,827,125560 ,2,828,459485 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220320 ,1,176,45 ,1,184,45 ,2,821,99920 ,2,822,199485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503285 ,2,827,75 ,2,828,459490 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220330 ,1,176,45 ,1,184,45 ,2,821,101980 ,1,0,219445 ,2,822,199495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511155 ,2,827,75 ,2,828,459495 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15320 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220365 ,1,176,45 ,1,184,45 ,2,821,106805 ,2,822,199540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459510 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220375 ,1,176,45 ,1,184,45 ,2,821,108560 ,1,0,217320 ,2,822,199580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517585 ,2,827,75 ,2,828,459505 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15570 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371125 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220385 ,1,176,45 ,1,184,45 ,2,821,112145 ,2,822,199560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,459535 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220395 ,1,176,45 ,1,184,45 ,2,821,113905 ,1,0,552935 ,1,1,219600 ,2,822,199590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,459515 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220410 ,1,176,45 ,1,184,45 ,2,821,118610 ,1,0,219345 ,2,822,199600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504940 ,2,827,75 ,2,828,459540 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220420 ,1,176,45 ,1,184,45 ,2,821,122160 ,2,822,45335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220430 ,1,176,45 ,1,184,45 ,2,821,122330 ,2,822,45355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15020 ,1,64,371335 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220440 ,1,176,45 ,1,184,45 ,2,821,122505 ,1,0,214200 ,2,822,199610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498555 ,2,827,75 ,2,828,459545 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220465 ,1,176,45 ,1,184,45 ,2,821,127185 ,1,0,216140 ,2,822,199625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498555 ,2,827,75 ,2,828,459550 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15560 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220475 ,1,176,45 ,1,184,45 ,2,821,131895 ,1,0,219805 ,2,822,199635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,459560 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220485 ,1,176,45 ,1,184,45 ,2,821,136465 ,2,822,199810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517650 ,2,827,126090 ,2,828,459620 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15255 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220495 ,1,176,45 ,1,184,45 ,2,821,140880 ,1,0,219425 ,2,822,199655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498550 ,2,827,75 ,2,828,459570 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220505 ,1,176,45 ,1,184,45 ,2,821,145415 ,2,822,45375 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15310 ,1,64,371270 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220515 ,1,176,45 ,1,184,45 ,2,821,145570 ,2,822,45385 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220525 ,1,176,45 ,1,184,45 ,2,821,145755 ,2,822,588170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220535 ,1,176,45 ,1,184,45 ,2,821,146455 ,1,0,331620 ,2,822,199715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517620 ,2,827,75 ,2,828,459575 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220565 ,1,176,45 ,1,184,45 ,2,821,148805 ,1,0,15245 ,1,1,330280 ,2,822,199725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,459600 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220575 ,1,176,45 ,1,184,45 ,2,821,150160 ,1,0,220130 ,1,1,357750 ,1,2,331585 ,1,3,14985 ,1,4,331575 ,1,5,357975 ,1,6,164850 ,1,7,358070 ,1,8,356405 ,1,9,357520 ,1,10,164840 ,1,11,164825 ,2,822,199735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517625 ,2,827,70730 ,2,828,459605 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220585 ,1,176,45 ,1,184,45 ,2,821,161915 ,1,0,331605 ,1,1,15320 ,1,2,331595 ,1,3,372460 ,1,4,356675 ,1,5,357535 ,2,822,199745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517630 ,2,827,75 ,2,828,459610 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220595 ,1,176,45 ,1,184,45 ,2,821,170660 ,1,0,546780 ,1,1,15915 ,1,2,331630 ,1,3,356740 ,1,4,164860 ,2,822,199755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517635 ,2,827,75 ,2,828,459615 ,1,8,170 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,15485 ,1,64,371255 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,371135 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220610 ,1,176,45 ,1,184,45 ,2,821,176360 ,1,0,550435 ,2,822,199820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517655 ,2,827,126090 ,2,828,459625 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220620 ,1,176,45 ,1,184,45 ,2,821,181605 ,2,822,45455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220630 ,1,176,45 ,1,184,45 ,2,821,181750 ,2,822,45465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220640 ,1,176,45 ,1,184,45 ,2,821,181935 ,2,822,588220 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220685 ,1,176,45 ,1,184,45 ,2,821,182630 ,1,0,216195 ,1,1,322935 ,1,2,162805 ,2,822,199860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517660 ,2,827,75 ,2,828,459630 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220695 ,1,176,45 ,1,184,45 ,2,821,186490 ,1,0,214275 ,1,1,318595 ,2,822,199870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517660 ,2,827,75 ,2,828,459635 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220705 ,1,176,45 ,1,184,45 ,2,821,190265 ,1,0,214255 ,1,1,354815 ,2,822,199880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517665 ,2,827,75 ,2,828,459660 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220715 ,1,176,45 ,1,184,45 ,2,821,193500 ,1,0,214210 ,2,822,199900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517690 ,2,827,126350 ,2,828,459665 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220745 ,1,176,45 ,1,184,45 ,2,821,196940 ,2,822,588280 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220755 ,1,176,45 ,1,184,45 ,2,821,197635 ,1,0,318565 ,1,1,358735 ,1,2,358835 ,1,3,355250 ,1,4,355200 ,1,5,358060 ,1,6,351720 ,1,7,357555 ,1,8,355410 ,1,9,355400 ,1,10,355360 ,1,11,355065 ,2,822,199910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517695 ,2,827,75 ,2,828,459670 ,1,8,160 ,1,16,372820 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220765 ,1,176,45 ,1,184,45 ,2,821,204655 ,2,822,199920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517700 ,2,827,75 ,2,828,459675 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220775 ,1,176,45 ,1,184,45 ,2,821,209085 ,1,0,214190 ,1,1,214180 ,1,2,354905 ,1,3,214170 ,2,822,199930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517705 ,2,827,75 ,2,828,459680 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,218930 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220805 ,1,176,45 ,1,184,45 ,2,821,214010 ,2,822,199950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517715 ,2,827,75 ,2,828,459685 ,1,8,160 ,1,16,373150 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220815 ,1,176,45 ,1,184,45 ,1,8,170 ,1,16,373290 ,1,24,45 ,1,32,220825 ,1,40,45 ,1,48,45 ,1,56,15500 ,1,64,45 ,1,72,45 ,1,80,15605 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,2,821,217000 ,1,0,14995 ,2,822,199960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,459690 ,2,821,218415 ,1,0,2280 ,1,1,542095 ,1,2,318530 ,1,3,318520 ,1,4,318510 ,1,5,2280 ,1,6,542095 ,1,7,2280 ,1,8,542095 ,1,9,2280 ,1,10,542095 ,1,11,2280 ,1,12,542095 ,1,13,2280 ,1,14,542095 ,1,15,318500 ,1,16,2210 ,1,17,542350 ,1,18,2210 ,1,19,542350 ,1,20,2210 ,1,21,542350 ,2,822,199970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517720 ,2,827,126360 ,2,828,459695 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,218900 ,1,40,160785 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220835 ,1,176,45 ,1,184,45 ,2,821,247055 ,1,0,372725 ,2,822,199980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517725 ,2,827,75 ,2,828,459710 ,1,8,160 ,1,16,373135 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220845 ,1,176,45 ,1,184,45 ,2,821,250880 ,1,0,357510 ,2,822,200015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517730 ,2,827,75 ,2,828,459715 ,1,8,160 ,1,16,373075 ,1,24,45 ,1,32,218900 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220855 ,1,176,45 ,1,184,45 ,2,821,252880 ,2,822,194715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517755 ,2,827,126370 ,2,828,459720 ,1,8,160 ,1,16,372495 ,1,24,45 ,1,32,219230 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,371110 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,220865 ,1,176,45 ,1,184,45 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,2,821,256035 ,2,822,195040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517760 ,2,827,75 ,2,828,459725 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,2,821,259280 ,1,0,130385 ,1,1,130360 ,1,2,130315 ,1,3,130295 ,2,822,130485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517765 ,2,827,126410 ,2,828,459730 ,1,8,14905 ,1,16,14905 ,2,821,264795 ,2,822,194195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517770 ,2,827,126420 ,2,828,459735 ,1,8,368410 ,1,16,367140 ,1,24,368350 ,1,32,368565 ,1,40,367930 ,1,48,367565 ,1,56,367270 ,1,64,367885 ,1,72,368400 ,1,80,367895 ,1,88,368330 ,1,96,368145 ,1,104,367865 ,2,821,267355 ,1,0,161285 ,2,822,194375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517780 ,2,827,75 ,2,828,459740 ,1,8,367330 ,1,16,367175 ,1,24,368710 ,1,32,367720 ,1,40,368670 ,1,48,368870 ,1,56,368795 ,1,64,369040 ,1,72,368390 ,1,80,367480 ,1,88,367465 ,1,96,368860 ,1,104,368525 ,2,821,268905 ,1,0,140645 ,1,1,556195 ,2,822,141025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517785 ,2,827,126430 ,2,828,459745 ,1,8,368050 ,1,16,368745 ,1,24,367710 ,1,32,369060 ,1,40,368815 ,1,48,367510 ,1,56,367650 ,1,64,368600 ,1,72,367730 ,1,80,367680 ,1,88,368290 ,1,96,368515 ,1,104,369050 ,2,821,271810 ,2,822,190395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517790 ,2,827,75 ,2,828,459770 ,1,8,368135 ,1,16,367770 ,1,24,367555 ,1,32,368095 ,1,40,368765 ,1,48,367290 ,1,56,368105 ,1,64,368195 ,1,72,368185 ,1,80,367340 ,1,88,367065 ,1,96,367620 ,1,104,368380 ,2,821,273195 ,1,0,575125 ,1,1,132670 ,1,2,554360 ,2,822,133450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517795 ,2,827,126440 ,2,828,459775 ,1,8,367360 ,1,16,368005 ,1,24,368340 ,1,32,367240 ,1,40,368730 ,1,48,368935 ,1,56,368085 ,1,64,368825 ,1,72,368155 ,1,80,368980 ,1,88,367825 ,1,96,368850 ,1,104,368610 ,2,821,278235 ,1,0,374480 ,2,822,149750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517815 ,2,827,75 ,2,828,459780 ,1,8,368255 ,1,16,367375 ,1,24,367815 ,1,32,367995 ,1,40,367405 ,1,48,367875 ,1,56,368620 ,1,64,367435 ,1,72,367385 ,1,80,368755 ,1,88,368430 ,1,96,368535 ,1,104,367910 ,2,821,287295 ,1,0,149365 ,2,822,149435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517820 ,2,827,126455 ,2,828,459785 ,1,8,367575 ,1,16,368700 ,1,24,367760 ,1,32,368215 ,1,40,368545 ,1,48,368640 ,1,56,367660 ,1,64,368225 ,1,72,368040 ,1,80,368235 ,1,88,368720 ,1,96,368125 ,1,104,367120 ,2,821,289855 ,1,0,161455 ,1,1,148945 ,2,822,149245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517825 ,2,827,126465 ,2,828,459795 ,1,8,368320 ,1,16,367835 ,1,24,368060 ,1,32,367545 ,1,40,367300 ,1,48,367155 ,1,56,368630 ,1,64,367445 ,1,72,369070 ,1,80,368970 ,1,88,367590 ,1,96,368840 ,1,104,367920 ,2,821,295430 ,1,0,130785 ,2,822,130815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517830 ,2,827,126475 ,2,828,459800 ,1,8,367985 ,1,16,368115 ,1,24,368660 ,1,32,367780 ,1,40,368300 ,1,48,367610 ,1,56,368070 ,1,64,367940 ,1,72,368420 ,1,80,367165 ,1,88,368015 ,1,96,368805 ,1,104,367805 ,2,821,297240 ,1,0,164080 ,1,1,217865 ,2,822,123530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517840 ,2,827,75 ,2,828,459805 ,1,8,367455 ,1,16,367670 ,1,24,368205 ,1,32,367790 ,1,40,367700 ,1,48,367490 ,1,56,367110 ,1,64,368945 ,1,72,368775 ,1,80,367395 ,1,88,367350 ,1,96,368505 ,1,104,368955 ,2,821,300820 ,1,0,324035 ,1,1,2280 ,1,2,542095 ,1,3,324025 ,1,4,2280 ,1,5,542095 ,2,822,137605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517845 ,2,827,82915 ,2,828,459810 ,1,8,368990 ,1,16,367500 ,1,24,368360 ,1,32,367250 ,1,40,367185 ,1,48,367230 ,1,56,368555 ,1,64,367130 ,1,72,368440 ,1,80,368925 ,1,88,367260 ,1,96,368650 ,1,104,368495 ,2,821,305320 ,1,0,162235 ,2,822,137325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517850 ,2,827,75 ,2,828,459840 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,2,821,309160 ,1,0,316785 ,2,822,137935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517855 ,2,827,69930 ,2,828,459845 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,2,821,313705 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,162155 ,2,822,137155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517890 ,2,827,74615 ,2,828,459850 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,1,192,45 ,1,200,45 ,1,208,45 ,1,216,45 ,2,821,323050 ,1,0,374430 ,2,822,187865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517895 ,2,827,75 ,2,828,459855 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,2,821,325085 ,1,0,113370 ,2,822,113470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517900 ,2,827,126485 ,2,828,459860 ,1,8,45 ,2,821,328130 ,1,0,358250 ,1,1,327510 ,1,2,358915 ,1,3,358900 ,1,4,163745 ,1,5,163735 ,2,822,113580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517905 ,2,827,75 ,2,828,459865 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,2,821,333120 ,2,822,147810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517915 ,2,827,89600 ,2,828,459870 ,1,8,214110 ,2,821,336480 ,2,822,153030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517770 ,2,827,126505 ,2,828,459875 ,1,8,214155 ,2,821,339160 ,1,0,161590 ,1,1,153415 ,2,822,153425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517920 ,2,827,126515 ,2,828,459895 ,1,8,214165 ,2,821,345400 ,2,822,132980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,459900 ,2,821,346035 ,2,822,195710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517925 ,2,827,126525 ,2,828,459905 ,2,821,352140 ,2,822,195500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517930 ,2,827,126535 ,2,828,459910 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,160 ,1,64,358735 ,1,72,170 ,1,80,45 ,1,88,170 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,170 ,1,128,45 ,1,136,45 ,1,144,45 ,1,152,45 ,1,160,45 ,1,168,45 ,1,176,45 ,1,184,45 ,1,192,45 ,1,200,170 ,2,821,355870 ,1,0,298685 ,2,822,195755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517975 ,2,827,75 ,2,828,459920 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,2,821,357335 ,1,0,316970 ,2,822,195955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517980 ,2,827,75 ,2,828,459925 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,2,821,359495 ,2,822,132175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,459930 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,2,821,360120 ,1,0,314575 ,1,1,211825 ,1,2,374500 ,2,822,151855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517985 ,2,827,126550 ,2,828,459935 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,2,821,371590 ,2,822,162040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,459940 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,2,821,372210 ,1,0,266065 ,1,1,163000 ,2,822,161755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512815 ,2,827,75 ,2,828,459945 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,2,821,373770 ,2,822,120700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517990 ,2,827,75 ,2,828,459950 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,2,821,375430 ,1,0,260020 ,1,1,555450 ,2,822,167150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517995 ,2,827,126535 ,2,828,459955 ,1,8,45 ,1,16,45 ,1,24,45 ,2,821,378020 ,2,822,45510 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,2,821,378135 ,2,822,127650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515725 ,2,827,75 ,2,828,459960 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,2,821,378705 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,216640 ,2,822,126005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518000 ,2,827,126625 ,2,828,459965 ,1,8,359645 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,2,821,387315 ,1,0,316920 ,2,822,107230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518005 ,2,827,75 ,2,828,459970 ,1,8,373060 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,357750 ,2,821,387920 ,2,822,196235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518010 ,2,827,75 ,2,828,459975 ,1,8,357180 ,2,821,391050 ,1,0,314770 ,2,822,139515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518020 ,2,827,75 ,2,828,460005 ,1,8,45 ,2,821,391600 ,1,0,554820 ,2,822,128900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518025 ,2,827,24545 ,2,828,460010 ,1,8,373135 ,1,16,14895 ,1,24,15320 ,2,821,397525 ,1,0,374840 ,2,822,168090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518030 ,2,827,126635 ,2,828,460015 ,1,8,372820 ,1,16,45 ,1,24,45 ,2,821,398855 ,2,822,150735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518035 ,2,827,126650 ,2,828,460020 ,1,8,372495 ,1,16,45 ,1,24,45 ,2,821,400710 ,2,822,119180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518050 ,2,827,126660 ,2,828,460025 ,1,8,373135 ,1,16,45 ,1,24,45 ,2,821,401925 ,2,822,157715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518055 ,2,827,75 ,2,828,460030 ,1,8,45 ,1,16,45 ,1,24,14905 ,1,32,14905 ,2,821,402670 ,2,822,100445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,8,45 ,1,16,45 ,1,24,15640 ,1,32,45 ,2,821,402860 ,1,0,45 ,1,1,5900 ,2,822,56635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518060 ,2,827,99165 ,2,828,460035 ,2,821,407355 ,1,0,400430 ,1,1,100245 ,2,822,100670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,8,45 ,1,16,45 ,1,24,367280 ,1,32,45 ,1,40,160 ,1,48,356530 ,1,56,45 ,1,64,357155 ,1,72,45 ,2,821,407540 ,2,822,131560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518065 ,2,827,75 ,2,828,460040 ,1,8,45 ,1,16,351680 ,1,24,45 ,1,32,368310 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,2,821,408065 ,1,0,207240 ,2,822,157395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518090 ,2,827,75 ,2,828,460070 ,1,8,45 ,1,16,351680 ,1,24,45 ,1,32,367075 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,2,821,408660 ,1,0,371835 ,1,1,117355 ,1,2,207350 ,1,3,117535 ,1,4,207340 ,1,5,117415 ,1,6,207400 ,1,7,117470 ,1,8,207530 ,2,822,117500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518095 ,2,827,126670 ,2,828,460075 ,1,8,45 ,1,16,351690 ,1,24,45 ,1,32,367075 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,1,112,45 ,1,120,45 ,2,821,415975 ,1,0,154835 ,1,1,154720 ,1,2,154855 ,1,3,154740 ,1,4,155120 ,2,822,155255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518100 ,2,827,126680 ,2,828,460080 ,1,8,45 ,2,821,425900 ,1,0,317405 ,2,822,158150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494495 ,2,827,75 ,2,828,460085 ,1,8,45 ,1,16,354770 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,2,821,426295 ,1,0,207570 ,2,822,158025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518105 ,2,827,75 ,2,828,460090 ,1,8,45 ,1,16,354875 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,2,821,427000 ,2,822,157975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518110 ,2,827,126730 ,2,828,460095 ,1,8,45 ,1,16,354885 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,2,821,427830 ,1,0,315135 ,2,822,139825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518115 ,2,827,75 ,2,828,460100 ,2,821,429840 ,1,0,144280 ,1,1,145485 ,1,2,145720 ,1,3,143450 ,1,4,145670 ,2,822,146115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518120 ,2,827,126740 ,2,828,460105 ,1,8,45 ,1,16,354810 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,2,821,437410 ,1,0,221410 ,1,1,217105 ,1,2,262310 ,1,3,207410 ,1,4,325290 ,1,5,2210 ,1,6,542350 ,2,822,111305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518125 ,2,827,126750 ,2,828,460120 ,1,8,45 ,1,16,45 ,1,24,45 ,2,821,445465 ,1,0,207480 ,1,1,356185 ,2,822,115445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504345 ,2,827,75 ,2,828,460125 ,1,8,45 ,2,821,446050 ,1,0,400430 ,1,1,191080 ,2,822,191345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,297195 ,2,821,446260 ,1,0,400430 ,1,1,115570 ,2,822,115795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,297205 ,2,821,446435 ,1,0,400430 ,1,1,100400 ,2,822,100575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,16,297215 ,2,821,446625 ,1,0,162920 ,2,822,131580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518170 ,2,827,126760 ,2,828,460130 ,2,821,461350 ,1,0,212030 ,1,1,356175 ,1,2,207710 ,2,822,139815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518175 ,2,827,126770 ,2,828,460135 ,2,821,474470 ,1,0,370970 ,1,1,45 ,1,2,5900 ,1,3,184680 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,211830 ,1,9,163205 ,1,10,2210 ,1,11,542350 ,1,12,2210 ,1,13,542350 ,2,822,110925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518180 ,2,827,126780 ,2,828,460140 ,1,8,549555 ,2,821,524245 ,1,0,566850 ,1,1,45 ,1,2,5900 ,2,822,100380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496215 ,2,827,75 ,2,828,460145 ,1,8,549565 ,2,821,525040 ,2,822,191070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518185 ,2,827,126790 ,2,828,460150 ,1,8,553955 ,1,8,557765 ,2,821,529820 ,1,0,595885 ,1,1,45 ,1,2,171855 ,1,3,543130 ,1,4,560255 ,1,5,543130 ,2,822,66035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518190 ,2,827,75 ,2,828,460155 ,1,8,557765 ,2,821,540235 ,1,0,45 ,1,1,4765 ,2,822,60665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518195 ,2,827,75 ,2,828,460190 ,1,8,557765 ,2,821,542015 ,1,0,162585 ,2,822,115560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518200 ,2,827,75 ,2,828,460195 ,1,8,557765 ,2,821,546525 ,1,0,45 ,1,1,5900 ,2,822,100390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518205 ,2,827,75 ,2,828,460200 ,1,8,557765 ,2,821,551640 ,2,822,131395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,460205 ,1,8,557765 ,2,821,552165 ,2,822,139805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,460220 ,1,8,557765 ,2,821,552685 ,2,822,111260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,460225 ,1,8,557765 ,2,821,553165 ,1,0,596190 ,1,1,45 ,1,2,342430 ,1,3,2210 ,1,4,542350 ,2,822,98150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518225 ,2,827,40735 ,2,828,460230 ,1,8,557765 ,2,821,557315 ,1,0,222335 ,2,822,100680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518230 ,2,827,75 ,2,828,460235 ,1,8,557765 ,2,821,558185 ,1,0,558655 ,1,1,45 ,1,2,171855 ,2,822,60420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518235 ,2,827,75 ,2,828,460260 ,1,8,557765 ,2,821,559945 ,1,0,595650 ,1,1,45 ,1,2,4765 ,2,822,63995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518240 ,2,827,75 ,2,828,460265 ,1,8,557765 ,1,16,15210 ,1,32,369975 ,2,821,562795 ,1,0,591320 ,1,1,45 ,1,2,171855 ,2,822,125025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518250 ,2,827,75 ,2,828,460270 ,1,8,557765 ,1,16,15095 ,1,32,369995 ,2,821,565050 ,2,822,103040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,460275 ,1,8,557765 ,1,16,14905 ,1,32,370210 ,2,821,565495 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,115275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518255 ,2,827,126800 ,2,828,460280 ,1,8,557765 ,1,16,14905 ,1,32,370210 ,2,821,572925 ,1,0,373675 ,2,822,104580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518260 ,2,827,75 ,2,828,460285 ,1,8,557765 ,1,16,15210 ,1,32,369995 ,2,821,573535 ,2,822,190960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518265 ,2,827,126825 ,2,828,460290 ,1,8,557765 ,1,16,14905 ,1,32,369995 ,2,821,582985 ,1,0,45 ,1,1,209800 ,2,822,115345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518285 ,2,827,126825 ,2,828,460295 ,1,8,557765 ,1,16,14905 ,1,32,370210 ,2,821,593855 ,2,822,115285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,460330 ,1,8,557765 ,1,16,14905 ,1,32,370210 ,2,821,594230 ,2,822,104570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518290 ,2,827,75 ,2,828,460335 ,1,8,557765 ,2,821,594935 ,1,0,612135 ,1,1,45 ,1,2,13320 ,2,822,167190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518295 ,2,827,75 ,2,828,460340 ,1,8,557765 ,2,821,599790 ,2,822,58625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,460345 ,2,821,600275 ,2,822,200070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,460350 ,1,8,557765 ,1,16,198045 ,2,821,600755 ,2,822,45535 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,198055 ,2,821,600860 ,1,0,45 ,1,1,9170 ,2,822,200080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,460355 ,1,16,269295 ,2,821,601740 ,1,0,45 ,1,1,5900 ,2,822,56320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518300 ,2,827,75 ,2,828,460360 ,1,16,269305 ,2,821,603160 ,1,0,2280 ,1,1,542180 ,1,2,2135 ,1,3,2280 ,1,4,542170 ,1,5,612085 ,1,6,45 ,1,7,13320 ,1,8,2280 ,1,9,542180 ,2,822,93430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518305 ,2,827,113645 ,2,828,460395 ,1,16,199855 ,2,821,611115 ,2,822,68585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518310 ,2,827,75 ,2,828,460400 ,1,16,199865 ,2,821,613295 ,2,822,67030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,8,557765 ,2,821,613555 ,2,822,65220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,460405 ,1,8,557765 ,2,821,614165 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542345 ,1,4,2210 ,1,5,542350 ,2,822,67065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518315 ,2,827,75 ,2,828,460410 ,1,16,197505 ,2,821,619655 ,1,0,2135 ,2,822,67440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518320 ,2,827,75 ,2,828,460415 ,1,16,197515 ,2,821,622440 ,2,822,67075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518350 ,2,827,75 ,2,828,460420 ,1,16,197525 ,2,821,625820 ,1,0,612015 ,1,1,45 ,1,2,5900 ,2,822,64810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518300 ,2,827,75 ,2,828,460425 ,1,16,197560 ,2,821,627105 ,2,822,168895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518355 ,2,827,75 ,2,828,460430 ,1,16,277620 ,2,821,627765 ,2,822,61070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518360 ,2,827,75 ,2,828,460455 ,2,821,629695 ,2,822,65050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518365 ,2,827,75 ,2,828,460460 ,1,16,290395 ,2,821,630330 ,1,0,610350 ,1,1,45 ,1,2,13320 ,2,822,138950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518370 ,2,827,75 ,2,828,460465 ,1,16,290415 ,2,821,632675 ,2,822,60965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518375 ,2,827,75 ,2,828,460470 ,1,16,290435 ,2,821,634330 ,1,0,45 ,1,1,5900 ,2,822,153990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518380 ,2,827,75 ,2,828,460475 ,1,16,290455 ,2,821,636870 ,2,822,118685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496215 ,2,827,75 ,2,828,460480 ,1,16,290510 ,2,821,637545 ,2,822,156385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,460485 ,1,16,290530 ,2,821,638145 ,2,822,154340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500180 ,2,827,75 ,2,828,460490 ,1,8,370505 ,1,16,170 ,2,821,638675 ,2,822,134710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518385 ,2,827,75 ,2,828,460520 ,1,8,45 ,1,16,370515 ,2,821,639445 ,1,0,45 ,1,1,5900 ,2,822,148720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518405 ,2,827,126880 ,2,828,460525 ,1,8,45 ,2,821,642100 ,1,0,45 ,1,1,5900 ,2,822,144210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518410 ,2,827,87485 ,2,828,460530 ,1,8,547255 ,1,16,310450 ,2,821,643420 ,2,822,161055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,460535 ,2,821,643810 ,1,0,45 ,1,1,5900 ,1,2,371135 ,2,822,111480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518415 ,2,827,87485 ,2,828,460545 ,1,16,310315 ,2,821,644910 ,2,822,109360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,460550 ,1,16,310330 ,2,821,645275 ,1,0,45 ,1,1,5900 ,2,822,107920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518420 ,2,827,34150 ,2,828,460555 ,1,16,310340 ,2,821,651170 ,1,0,45 ,1,1,5900 ,2,822,113010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518425 ,2,827,87485 ,2,828,460560 ,2,821,652705 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,193690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518430 ,2,827,87485 ,2,828,460595 ,1,16,272435 ,2,821,662725 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,11510 ,1,4,357035 ,1,5,357045 ,1,6,357055 ,2,822,180465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518435 ,2,827,126890 ,2,828,460600 ,1,8,370595 ,1,8,373075 ,1,16,160 ,1,24,277500 ,1,32,374320 ,1,40,374525 ,2,821,670660 ,1,0,45 ,1,1,5900 ,1,2,327900 ,1,3,327890 ,1,4,212745 ,2,822,153780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518440 ,2,827,87485 ,2,828,460605 ,1,16,303230 ,2,821,10405 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,190755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518475 ,2,827,126900 ,2,828,460610 ,2,821,24320 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,128435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518480 ,2,827,87485 ,2,828,460615 ,1,16,303240 ,1,16,303250 ,2,821,31030 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,111800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518485 ,2,827,87485 ,2,828,460620 ,1,16,184580 ,2,821,47255 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,373595 ,1,5,561515 ,1,6,45 ,1,7,5900 ,1,8,212200 ,1,9,15255 ,1,10,45 ,1,11,5900 ,2,822,112020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518495 ,2,827,126975 ,2,828,460630 ,1,16,184610 ,2,821,64130 ,2,822,200165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518490 ,2,827,34150 ,2,828,460625 ,1,8,615295 ,2,821,85110 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,152715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518500 ,2,827,87485 ,2,828,460670 ,2,821,97010 ,1,0,45 ,1,1,5900 ,1,2,212220 ,2,822,157245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518505 ,2,827,87485 ,2,828,460675 ,1,8,174475 ,1,16,45 ,1,24,174465 ,1,8,14905 ,1,16,14905 ,1,24,14905 ,1,32,14905 ,2,821,101745 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,156070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518510 ,2,827,87485 ,2,828,460680 ,2,821,107190 ,1,0,45 ,1,1,5900 ,1,2,212605 ,2,822,155800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518535 ,2,827,126985 ,2,828,460685 ,1,16,186835 ,2,821,113170 ,1,0,45 ,1,1,5900 ,2,822,118675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518540 ,2,827,87485 ,2,828,460695 ,1,16,186845 ,2,821,116330 ,2,822,156765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518545 ,2,827,75 ,2,828,460700 ,1,16,186855 ,2,821,118065 ,1,0,45 ,1,1,5900 ,2,822,156445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518550 ,2,827,87485 ,2,828,460705 ,1,16,186865 ,1,16,183025 ,2,821,120355 ,1,0,45 ,1,1,5900 ,2,822,154330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518555 ,2,827,87485 ,2,828,460710 ,1,16,183035 ,2,821,123570 ,1,0,45 ,1,1,5900 ,2,822,191195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518560 ,2,827,87485 ,2,828,460740 ,1,16,183045 ,2,821,129845 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,210750 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,5900 ,1,13,45 ,1,14,5900 ,1,15,2210 ,1,16,542350 ,2,822,194550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518565 ,2,827,87485 ,2,828,460745 ,1,16,183055 ,2,821,161385 ,2,822,153155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518570 ,2,827,75 ,2,828,460750 ,1,16,182925 ,2,821,163050 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,163955 ,1,7,356625 ,1,8,45 ,1,9,5900 ,1,10,327860 ,1,11,356605 ,1,12,45 ,1,13,5900 ,1,14,356795 ,1,15,356785 ,1,16,45 ,1,17,5900 ,1,18,356655 ,1,19,356665 ,1,20,356750 ,1,21,45 ,1,22,5900 ,2,822,134475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518595 ,2,827,126995 ,2,828,460755 ,1,16,182935 ,2,821,293340 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,211140 ,1,5,211130 ,1,6,45 ,1,7,5900 ,2,822,148190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518600 ,2,827,127090 ,2,828,460760 ,1,16,182945 ,2,821,386160 ,1,0,45 ,1,1,5900 ,2,822,145605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518605 ,2,827,87485 ,2,828,460765 ,1,16,182985 ,2,821,394750 ,1,0,45 ,1,1,5900 ,2,822,160135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518610 ,2,827,87485 ,2,828,460770 ,1,16,182995 ,2,821,395920 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,2,822,161125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518615 ,2,827,87485 ,2,828,460775 ,1,16,183005 ,2,821,427865 ,1,0,45 ,1,1,5900 ,1,2,356550 ,1,3,372865 ,2,822,110935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518620 ,2,827,87485 ,2,828,460785 ,1,16,184065 ,2,821,442475 ,1,0,45 ,1,1,5900 ,1,2,212730 ,1,3,327935 ,1,4,356385 ,1,5,45 ,1,6,5900 ,1,7,327920 ,1,8,164005 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,5900 ,1,13,218180 ,2,822,109135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518625 ,2,827,127100 ,2,828,460790 ,1,16,187760 ,2,821,462050 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,107710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518630 ,2,827,127110 ,2,828,460795 ,1,8,15120 ,2,821,471975 ,1,0,248840 ,1,1,317670 ,1,2,250500 ,2,822,116405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518650 ,2,827,127150 ,2,828,460800 ,2,821,484415 ,1,0,45 ,1,1,5900 ,1,2,212540 ,1,3,212510 ,1,4,212615 ,2,822,116110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518655 ,2,827,127160 ,2,828,460805 ,1,8,15175 ,1,8,619805 ,1,16,619805 ,2,821,500655 ,1,0,611455 ,1,1,45 ,1,2,11690 ,2,822,200190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518660 ,2,827,75 ,2,828,460810 ,1,8,619805 ,1,16,619805 ,1,24,619805 ,1,32,619805 ,1,40,370970 ,1,48,170 ,2,821,501630 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,161305 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,5900 ,1,13,45 ,1,14,5900 ,1,15,45 ,1,16,5900 ,1,17,45 ,1,18,5900 ,1,19,45 ,1,20,5900 ,1,21,2210 ,1,22,542350 ,2,822,200400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518685 ,2,827,127320 ,2,828,460865 ,1,16,184650 ,2,821,540240 ,2,822,200255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513990 ,2,827,75 ,2,828,460815 ,1,16,184660 ,2,821,540890 ,1,0,45 ,1,1,5900 ,2,822,200265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518665 ,2,827,83460 ,2,828,460820 ,1,16,184305 ,2,821,543705 ,1,0,45 ,1,1,5900 ,2,822,200275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518670 ,2,827,83460 ,2,828,460850 ,1,16,184315 ,2,821,546185 ,2,822,200305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518675 ,2,827,70340 ,2,828,460855 ,2,821,549720 ,2,822,200315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518680 ,2,827,127310 ,2,828,460860 ,1,16,187860 ,2,821,553135 ,2,822,45635 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,187870 ,2,821,553240 ,2,822,200375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,510925 ,2,827,75 ,2,828,460870 ,1,16,187880 ,2,821,553985 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,162430 ,1,7,45 ,1,8,5900 ,1,9,162420 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,5900 ,1,20,45 ,1,21,5900 ,1,22,45 ,1,23,5900 ,1,24,2210 ,1,25,542350 ,2,822,122635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518705 ,2,827,127405 ,2,828,460875 ,1,16,187915 ,2,821,602035 ,1,0,45 ,1,1,5900 ,1,2,367050 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,5900 ,1,13,213420 ,1,14,45 ,1,15,5900 ,1,16,162480 ,2,822,139260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518710 ,2,827,127415 ,2,828,460880 ,1,16,187925 ,2,821,643840 ,2,822,159835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,460885 ,1,8,615295 ,2,821,644355 ,2,822,200515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,460955 ,1,8,613640 ,1,16,188325 ,2,821,644825 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,200410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518715 ,2,827,83225 ,2,828,460940 ,1,16,188345 ,2,821,650230 ,2,822,45655 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,188205 ,2,821,650345 ,2,822,45675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,188250 ,2,821,650440 ,2,822,45685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,188260 ,2,821,650550 ,2,822,45695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,16,188270 ,2,821,650640 ,2,822,200485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,460945 ,1,16,188280 ,2,821,651105 ,2,822,200495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508085 ,2,827,75 ,2,828,460950 ,1,16,188295 ,2,821,652015 ,2,822,104610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518720 ,2,827,75 ,2,828,460965 ,2,821,653250 ,2,822,198600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518725 ,2,827,127605 ,2,828,460970 ,2,821,654175 ,2,822,197260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518365 ,2,827,75 ,2,828,460975 ,2,821,654830 ,2,822,103260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518730 ,2,827,127615 ,2,828,460980 ,2,821,657620 ,1,0,185365 ,1,1,371125 ,1,2,185235 ,2,822,110745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518735 ,2,827,75 ,2,828,461000 ,2,821,658820 ,1,0,358350 ,1,1,358280 ,1,2,358315 ,1,3,358270 ,1,4,198425 ,1,5,358295 ,1,6,358360 ,1,7,223515 ,1,8,163080 ,2,822,113140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518740 ,2,827,127625 ,2,828,461005 ,2,821,41150 ,2,822,112925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518765 ,2,827,127635 ,2,828,461010 ,2,821,71935 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,100875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518770 ,2,827,55530 ,2,828,461015 ,2,821,79115 ,1,0,2210 ,1,1,542350 ,2,822,65825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518775 ,2,827,127645 ,2,828,461020 ,2,821,87610 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,60540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518780 ,2,827,41615 ,2,828,461025 ,2,821,97555 ,2,822,60905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518785 ,2,827,58055 ,2,828,461030 ,1,16,182685 ,2,821,102695 ,1,0,579110 ,1,1,45 ,1,2,5900 ,2,822,152640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518790 ,2,827,75 ,2,828,461035 ,1,16,182695 ,2,821,105250 ,1,0,45 ,1,1,209800 ,2,822,156565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518795 ,2,827,75 ,2,828,461065 ,2,821,107185 ,1,0,45 ,1,1,209800 ,2,822,158065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518800 ,2,827,75 ,2,828,461070 ,2,821,113285 ,1,0,45 ,1,1,209800 ,2,822,157480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518795 ,2,827,75 ,2,828,461075 ,2,821,115305 ,1,0,45 ,1,1,209800 ,2,822,191260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518830 ,2,827,122470 ,2,828,461080 ,2,821,117860 ,1,0,45 ,1,1,5900 ,2,822,148240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518835 ,2,827,126880 ,2,828,461090 ,2,821,124855 ,1,0,567945 ,1,1,45 ,1,2,5900 ,1,3,180655 ,2,822,103060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518790 ,2,827,75 ,2,828,461095 ,2,821,127395 ,1,0,570815 ,1,1,45 ,1,2,5900 ,2,822,116165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518840 ,2,827,75 ,2,828,461100 ,2,821,129285 ,1,0,45 ,1,1,5900 ,2,822,116005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518845 ,2,827,75 ,2,828,461105 ,2,821,131515 ,1,0,45 ,1,1,5900 ,2,822,138470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518850 ,2,827,75 ,2,828,461125 ,2,821,132965 ,1,0,45 ,1,1,5900 ,2,822,159650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518855 ,2,827,75 ,2,828,461130 ,2,821,134850 ,1,0,45 ,1,1,209800 ,1,2,206475 ,2,822,103515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518860 ,2,827,75 ,2,828,461135 ,2,821,136620 ,2,822,110700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,137405 ,2,822,66120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518865 ,2,827,75 ,2,828,461140 ,2,821,140095 ,1,0,345225 ,2,822,79030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518885 ,2,827,75 ,2,828,461155 ,2,821,141470 ,1,0,45 ,1,1,5900 ,2,822,56685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518890 ,2,827,99165 ,2,828,461160 ,2,821,145085 ,2,822,60975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518895 ,2,827,127655 ,2,828,461165 ,2,821,150490 ,2,822,45705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,150660 ,2,822,182990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518900 ,2,827,75 ,2,828,461170 ,2,821,156370 ,2,822,183445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518910 ,2,827,75 ,2,828,461215 ,2,821,162245 ,2,822,183905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518915 ,2,827,117825 ,2,828,461220 ,2,821,173210 ,2,822,184785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518920 ,2,827,117835 ,2,828,461230 ,2,821,184210 ,2,822,185295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518925 ,2,827,75 ,2,828,461235 ,2,821,190220 ,2,822,166235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,190365 ,2,822,96945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,461265 ,2,821,191130 ,2,822,95785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,461270 ,2,821,191905 ,1,0,207470 ,1,1,207950 ,1,2,2210 ,1,3,542350 ,2,822,96830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518945 ,2,827,127690 ,2,828,461275 ,2,821,204985 ,2,822,133950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,205160 ,2,822,63590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518950 ,2,827,75 ,2,828,461280 ,2,821,211785 ,2,822,190325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,211965 ,2,822,65805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,461295 ,2,821,212620 ,2,822,56190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,461300 ,2,821,213230 ,2,822,45745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,213400 ,2,822,63745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518955 ,2,827,75 ,2,828,461305 ,2,821,216660 ,2,822,114890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518960 ,2,827,75 ,2,828,461310 ,2,821,217955 ,1,0,579810 ,1,1,45 ,1,2,259605 ,1,3,239440 ,2,822,158555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518965 ,2,827,75 ,2,828,461330 ,2,821,219820 ,1,0,580340 ,1,1,45 ,1,2,259605 ,1,3,262890 ,2,822,159510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518970 ,2,827,75 ,2,828,461335 ,2,821,221430 ,1,0,400430 ,1,1,131675 ,2,822,131665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,221740 ,1,0,45 ,1,1,5900 ,2,822,56750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518975 ,2,827,127720 ,2,828,461340 ,2,821,229095 ,2,822,60895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,461345 ,1,16,187780 ,2,821,229705 ,2,822,136425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518980 ,2,827,75 ,2,828,461355 ,1,16,187810 ,2,821,233050 ,2,822,114240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518995 ,2,827,75 ,2,828,461360 ,1,16,187820 ,1,16,186730 ,2,821,235275 ,1,0,45 ,1,1,11510 ,2,822,182940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461365 ,1,16,186740 ,2,821,236140 ,1,0,45 ,1,1,11510 ,2,822,183425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461370 ,1,16,186750 ,2,821,237020 ,1,0,45 ,1,1,11510 ,2,822,183875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461405 ,1,16,186760 ,2,821,237855 ,1,0,45 ,1,1,11510 ,2,822,184335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461410 ,1,16,186775 ,2,821,238695 ,1,0,45 ,1,1,11510 ,2,822,184765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461415 ,2,821,239555 ,1,0,45 ,1,1,11510 ,2,822,185240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461420 ,1,16,182255 ,2,821,240385 ,1,0,45 ,1,1,11510 ,2,822,61730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461425 ,1,16,182270 ,2,821,241225 ,1,0,45 ,1,1,11510 ,2,822,185705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515420 ,2,827,75 ,2,828,461430 ,1,16,182280 ,2,821,242060 ,1,0,45 ,1,1,11510 ,2,822,63100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515430 ,2,827,75 ,2,828,461435 ,1,16,182290 ,2,821,242835 ,1,0,45 ,1,1,11510 ,2,822,171860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515430 ,2,827,75 ,2,828,461440 ,1,16,182300 ,2,821,243665 ,2,822,60205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519000 ,2,827,26190 ,2,828,461465 ,1,16,182340 ,2,821,245185 ,2,822,60325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519005 ,2,827,75 ,2,828,461470 ,1,16,182350 ,1,16,187970 ,2,821,246710 ,2,822,60375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519000 ,2,827,26320 ,2,828,461475 ,1,16,187735 ,2,821,248230 ,1,0,595565 ,1,1,45 ,1,2,346875 ,1,3,337640 ,2,822,169000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515440 ,2,827,75 ,2,828,461480 ,1,16,185915 ,2,821,249180 ,1,0,595570 ,1,1,45 ,1,2,346875 ,1,3,337660 ,2,822,189540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519010 ,2,827,75 ,2,828,461490 ,2,821,250170 ,1,0,596295 ,1,1,45 ,1,2,9435 ,1,3,607520 ,1,4,45 ,1,5,5900 ,2,822,66490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519015 ,2,827,30175 ,2,828,461495 ,1,16,185960 ,1,16,185970 ,2,821,254785 ,1,0,596665 ,1,1,45 ,1,2,346875 ,1,3,543350 ,1,4,596675 ,1,5,543350 ,1,6,596660 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,13320 ,2,822,200585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519020 ,2,827,75 ,2,828,461500 ,1,16,185980 ,2,821,281290 ,2,822,165215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519025 ,2,827,75 ,2,828,461505 ,2,821,283625 ,1,0,567850 ,1,1,45 ,1,2,5900 ,2,822,103095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,461515 ,1,16,182715 ,2,821,284770 ,2,822,123625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,1,16,182725 ,1,16,188185 ,2,821,286080 ,1,0,357740 ,1,1,180735 ,1,2,2210 ,1,3,542350 ,2,822,124525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519030 ,2,827,34150 ,2,828,461520 ,1,16,187840 ,2,821,297390 ,1,0,45 ,1,1,5900 ,2,822,115325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,461525 ,2,821,298545 ,2,822,100765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,298860 ,2,822,157095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519055 ,2,827,75 ,2,828,461530 ,2,821,303045 ,1,0,45 ,1,1,190350 ,2,822,145740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519060 ,2,827,75 ,2,828,461545 ,2,821,305635 ,1,0,45 ,1,1,190350 ,1,2,45 ,1,3,5900 ,1,4,325235 ,1,5,221420 ,2,822,110975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519065 ,2,827,87485 ,2,828,461550 ,2,821,309795 ,1,0,206975 ,1,1,165875 ,2,822,95615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519070 ,2,827,75 ,2,828,461555 ,2,821,311310 ,1,0,595315 ,1,1,45 ,1,2,190350 ,2,822,103115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,461560 ,2,821,312350 ,1,0,400430 ,1,1,123615 ,2,822,123605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,312675 ,1,0,400430 ,1,1,124505 ,2,822,124495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,312995 ,1,0,45 ,1,1,190350 ,2,822,115160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,461590 ,2,821,314050 ,1,0,313595 ,1,1,313585 ,1,2,313575 ,1,3,313565 ,1,4,313535 ,1,5,313525 ,1,6,180875 ,1,7,211410 ,2,822,120020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519075 ,2,827,127730 ,2,828,461595 ,2,821,333815 ,1,0,327400 ,1,1,2210 ,1,2,542350 ,2,822,119475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519080 ,2,827,127740 ,2,828,461600 ,2,821,343860 ,1,0,327275 ,1,1,224355 ,1,2,359240 ,1,3,163625 ,1,4,2210 ,1,5,542350 ,2,822,120325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519085 ,2,827,127750 ,2,828,461605 ,2,821,371470 ,1,0,213275 ,1,1,212925 ,2,822,190745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519090 ,2,827,75 ,2,828,461610 ,2,821,376360 ,2,822,154455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519115 ,2,827,75 ,2,828,461615 ,2,821,379665 ,2,822,157945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519120 ,2,827,75 ,2,828,461620 ,2,821,381910 ,2,822,157005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519125 ,2,827,75 ,2,828,461625 ,2,821,384100 ,2,822,156915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519130 ,2,827,75 ,2,828,461660 ,2,821,386430 ,2,822,156595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516170 ,2,827,75 ,2,828,461665 ,2,821,387760 ,2,822,158120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519135 ,2,827,75 ,2,828,461670 ,2,821,389065 ,2,822,121765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519140 ,2,827,75 ,2,828,461675 ,2,821,390550 ,2,822,156030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519145 ,2,827,75 ,2,828,461690 ,2,821,392255 ,1,0,314450 ,2,822,157510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519150 ,2,827,75 ,2,828,461695 ,2,821,394445 ,1,0,400430 ,1,1,95625 ,2,822,95635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,394665 ,2,822,102880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519165 ,2,827,75 ,2,828,461700 ,2,821,398410 ,1,0,45 ,1,1,5900 ,1,2,317415 ,2,822,115255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519170 ,2,827,83225 ,2,828,461730 ,2,821,403770 ,1,0,212880 ,1,1,343790 ,2,822,103565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519175 ,2,827,127780 ,2,828,461735 ,2,821,406350 ,2,822,188075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519180 ,2,827,75 ,2,828,461740 ,2,821,407130 ,1,0,400430 ,1,1,190635 ,2,822,190625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,407320 ,1,0,400430 ,1,1,154435 ,2,822,154425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,407490 ,1,0,400430 ,1,1,157925 ,2,822,157870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,407690 ,1,0,400430 ,1,1,156985 ,2,822,156975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,407875 ,1,0,400430 ,1,1,156890 ,2,822,156880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,408090 ,1,0,400430 ,1,1,156555 ,2,822,156545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,408290 ,1,0,400430 ,1,1,158055 ,2,822,158045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,408490 ,1,0,400430 ,1,1,121745 ,2,822,121735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,408690 ,1,0,400430 ,1,1,156260 ,2,822,156285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,408885 ,1,0,400430 ,1,1,156010 ,2,822,155975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,409075 ,1,0,400430 ,1,1,157455 ,2,822,157445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,409280 ,1,0,400430 ,1,1,102890 ,2,822,102900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,409475 ,1,0,400430 ,1,1,115150 ,2,822,115140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,409680 ,1,0,400430 ,1,1,103555 ,2,822,103545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,409870 ,2,822,94390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519185 ,2,827,75 ,2,828,461765 ,2,821,410525 ,2,822,189700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519190 ,2,827,75 ,2,828,461775 ,2,821,412375 ,2,822,186080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519195 ,2,827,75 ,2,828,461780 ,2,821,414800 ,2,822,191775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519200 ,2,827,75 ,2,828,461800 ,2,821,417315 ,2,822,189860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519230 ,2,827,127790 ,2,828,461805 ,2,821,420065 ,2,822,186135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519235 ,2,827,75 ,2,828,461810 ,2,821,423135 ,2,822,191865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519240 ,2,827,127800 ,2,828,461815 ,2,821,426810 ,2,822,189965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519230 ,2,827,127810 ,2,828,461820 ,2,821,429530 ,2,822,186215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519245 ,2,827,75 ,2,828,461825 ,2,821,432575 ,2,822,191960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519240 ,2,827,127830 ,2,828,461830 ,2,821,436250 ,2,822,190045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519255 ,2,827,127840 ,2,828,461835 ,2,821,439570 ,2,822,61535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519260 ,2,827,75 ,2,828,461855 ,2,821,443180 ,2,822,192080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519265 ,2,827,127850 ,2,828,461860 ,2,821,447385 ,2,822,190130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519270 ,2,827,127860 ,2,828,461865 ,2,821,450330 ,2,822,186315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519295 ,2,827,75 ,2,828,461870 ,2,821,453585 ,2,822,192175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519300 ,2,827,127895 ,2,828,461880 ,2,821,457415 ,2,822,192265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519305 ,2,827,127905 ,2,828,461885 ,2,821,460210 ,2,822,186460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519310 ,2,827,75 ,2,828,461890 ,2,821,463410 ,2,822,192335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519315 ,2,827,127915 ,2,828,461895 ,2,821,466280 ,2,822,192420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519320 ,2,827,127925 ,2,828,461935 ,2,821,469010 ,2,822,62245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519325 ,2,827,75 ,2,828,461940 ,2,821,471965 ,2,822,192605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519330 ,2,827,127955 ,2,828,461950 ,2,821,474985 ,2,822,186615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519345 ,2,827,75 ,2,828,461960 ,2,821,478280 ,2,822,192695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519350 ,2,827,127965 ,2,828,461965 ,2,821,482295 ,2,822,192790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519330 ,2,827,127975 ,2,828,461970 ,2,821,485265 ,2,822,62355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519355 ,2,827,75 ,2,828,461975 ,2,821,488565 ,2,822,192895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519360 ,2,827,128015 ,2,828,462000 ,2,821,492565 ,2,822,192990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519365 ,2,827,128025 ,2,828,462005 ,2,821,494965 ,2,822,186780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519370 ,2,827,75 ,2,828,462010 ,2,821,497485 ,2,822,186880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519375 ,2,827,75 ,2,828,462015 ,2,821,500335 ,2,822,193065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519365 ,2,827,128035 ,2,828,462025 ,2,821,502740 ,2,822,187010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519370 ,2,827,75 ,2,828,462030 ,2,821,505395 ,2,822,187120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519375 ,2,827,75 ,2,828,462035 ,2,821,508105 ,2,822,193170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519380 ,2,827,75 ,2,828,462040 ,2,821,510195 ,2,822,187225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519405 ,2,827,75 ,2,828,462060 ,2,821,512320 ,2,822,193245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519380 ,2,827,75 ,2,828,462065 ,2,821,514520 ,2,822,193440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519410 ,2,827,75 ,2,828,462085 ,1,16,557785 ,1,24,374785 ,2,821,516280 ,2,822,62495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519415 ,2,827,75 ,2,828,462090 ,1,16,557785 ,1,24,374585 ,2,821,518445 ,2,822,193490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519420 ,2,827,75 ,2,828,462095 ,1,16,557785 ,1,24,374805 ,2,821,520480 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,57950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519425 ,2,827,75 ,2,828,462135 ,2,821,522610 ,1,1,2395 ,1,2,611355 ,1,3,45 ,1,4,9470 ,2,822,200595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519430 ,2,827,75 ,2,828,462140 ,1,16,373240 ,1,24,179630 ,1,32,45 ,1,40,373240 ,1,48,373230 ,1,56,373195 ,1,64,372220 ,1,72,373240 ,1,80,373230 ,1,88,373195 ,1,96,372220 ,1,16,373135 ,1,24,179640 ,1,32,45 ,1,40,373135 ,1,48,372820 ,1,56,373135 ,1,64,372820 ,1,72,373135 ,1,80,372820 ,1,88,373135 ,1,96,372820 ,2,821,524295 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,200605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519435 ,2,827,75 ,2,828,462145 ,1,16,372665 ,1,24,179650 ,1,32,45 ,1,40,372665 ,1,48,372625 ,1,56,372665 ,1,64,372625 ,1,72,372665 ,1,80,372625 ,1,88,372665 ,1,96,372625 ,2,821,525965 ,2,822,66360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,460405 ,2,821,526590 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,200615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519440 ,2,827,75 ,2,828,462150 ,1,16,372455 ,1,24,45 ,1,32,45 ,1,40,372455 ,1,48,372765 ,1,56,372455 ,1,64,372765 ,1,72,372455 ,1,80,372765 ,1,88,372455 ,1,96,372765 ,2,821,528235 ,1,0,45 ,1,1,5900 ,2,822,112495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507040 ,2,827,83335 ,2,828,462165 ,1,16,372820 ,1,24,179670 ,1,32,45 ,1,40,372820 ,1,48,373135 ,1,56,372820 ,1,64,373135 ,1,72,372820 ,1,80,372290 ,1,88,372820 ,1,96,373040 ,2,821,530560 ,2,822,200625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519465 ,2,827,75 ,2,828,462170 ,1,16,372250 ,1,24,179680 ,1,32,45 ,1,40,372250 ,1,48,372675 ,1,56,373185 ,1,64,372995 ,1,72,372250 ,1,80,372675 ,1,88,373185 ,1,96,372995 ,2,821,531815 ,2,822,154085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,462175 ,2,821,532310 ,2,822,170070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519470 ,2,827,75 ,2,828,462180 ,1,8,15020 ,1,16,15020 ,1,24,15175 ,1,32,15175 ,2,821,535070 ,1,0,210805 ,2,822,194595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,462210 ,2,821,535860 ,1,0,45 ,1,1,5900 ,2,822,152800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507040 ,2,827,83335 ,2,828,462215 ,2,821,538095 ,1,0,45 ,1,1,5900 ,2,822,134920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519475 ,2,827,83335 ,2,828,441600 ,2,821,540470 ,2,822,148200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519480 ,2,827,128075 ,2,828,462220 ,2,821,542010 ,1,0,45 ,1,1,5900 ,2,822,160605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519485 ,2,827,83335 ,2,828,462225 ,2,821,544315 ,1,0,45 ,1,1,5900 ,2,822,109620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519490 ,2,827,83335 ,2,828,462230 ,2,821,546470 ,1,0,45 ,1,1,5900 ,2,822,108090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507040 ,2,827,83335 ,2,828,441600 ,2,821,548705 ,1,0,45 ,1,1,5900 ,2,822,116545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519495 ,2,827,83335 ,2,828,462235 ,1,8,14905 ,1,16,14905 ,1,24,14905 ,1,32,14905 ,2,821,551220 ,2,822,138415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519500 ,2,827,128085 ,2,828,462240 ,1,8,15115 ,1,16,15115 ,1,24,15105 ,1,32,15105 ,2,821,552305 ,2,822,159580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,462245 ,1,8,15140 ,1,16,15140 ,1,24,15120 ,1,32,15120 ,2,821,552885 ,2,822,103430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,462175 ,2,821,553465 ,1,0,95705 ,2,822,101380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519530 ,2,827,128085 ,2,828,462265 ,1,8,14995 ,1,16,14995 ,2,821,554655 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,194055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519535 ,2,827,128110 ,2,828,462270 ,1,8,15155 ,1,16,15155 ,1,8,14905 ,1,16,14905 ,2,821,555785 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,149930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519535 ,2,827,128110 ,2,828,462275 ,1,8,15160 ,1,16,15160 ,2,821,556950 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,107510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519540 ,2,827,128120 ,2,828,462280 ,1,8,14905 ,1,16,14895 ,2,821,558590 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,196945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519545 ,2,827,128120 ,2,828,462290 ,2,821,560175 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,106085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519535 ,2,827,128110 ,2,828,462295 ,1,8,14930 ,1,16,14920 ,1,8,14905 ,1,16,14940 ,2,821,561315 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,159165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519540 ,2,827,128130 ,2,828,462300 ,1,8,14985 ,1,16,14985 ,2,821,562930 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,163610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519535 ,2,827,128110 ,2,828,462305 ,2,821,564030 ,1,0,581335 ,1,1,45 ,1,2,5900 ,2,822,164735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519555 ,2,827,75 ,2,828,462325 ,1,8,14995 ,1,16,14905 ,2,821,564825 ,1,0,568520 ,1,1,45 ,1,2,5900 ,2,822,105220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,462330 ,1,8,15010 ,1,16,15010 ,2,821,565540 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,138800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519535 ,2,827,128110 ,2,828,462335 ,1,8,15020 ,1,16,15020 ,1,8,15035 ,1,16,14905 ,2,821,566675 ,1,0,45 ,1,1,5900 ,2,822,113860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,462340 ,1,8,14905 ,1,16,14905 ,2,821,567355 ,2,822,105775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,8,15050 ,1,16,15045 ,2,821,567555 ,1,0,581055 ,1,1,45 ,1,2,5900 ,2,822,162875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519555 ,2,827,75 ,2,828,462350 ,1,8,14895 ,1,16,14905 ,2,821,568375 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,106730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519560 ,2,827,128140 ,2,828,462355 ,1,8,15060 ,1,16,15060 ,2,821,569915 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,106905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519565 ,2,827,128150 ,2,828,462360 ,1,8,14905 ,1,16,15095 ,2,821,571055 ,1,0,343930 ,2,822,67725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519570 ,2,827,75 ,2,828,462365 ,1,8,14940 ,1,16,14905 ,2,821,571735 ,1,0,45 ,1,1,5900 ,2,822,122020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519590 ,2,827,75 ,2,828,462385 ,2,821,572915 ,2,822,141460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519595 ,2,827,128160 ,2,828,462390 ,2,821,575785 ,2,822,162985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575970 ,1,0,45 ,1,1,211985 ,2,822,112810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519600 ,2,827,75 ,2,828,462395 ,1,8,160 ,2,821,576830 ,1,0,45 ,1,1,211985 ,2,822,112125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519600 ,2,827,75 ,2,828,462400 ,1,8,170 ,2,821,577675 ,1,0,45 ,1,1,211985 ,2,822,131550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519605 ,2,827,76965 ,2,828,462410 ,1,8,308415 ,2,821,580175 ,1,0,45 ,1,1,211985 ,2,822,118870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519620 ,2,827,68165 ,2,828,462415 ,1,8,547255 ,2,821,582005 ,1,0,45 ,1,1,211985 ,2,822,156815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519625 ,2,827,128170 ,2,828,462420 ,1,8,543715 ,1,16,45 ,1,24,45 ,2,821,583295 ,1,0,45 ,1,1,211985 ,2,822,157740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519630 ,2,827,128180 ,2,828,462425 ,1,8,546120 ,1,16,374185 ,2,821,585335 ,1,0,45 ,1,1,211985 ,2,822,154115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519635 ,2,827,75 ,2,828,462440 ,1,8,545325 ,1,16,170 ,2,821,586755 ,1,0,45 ,1,1,211985 ,2,822,191060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519655 ,2,827,118905 ,2,828,462445 ,1,8,545325 ,1,16,170 ,2,821,588445 ,1,0,45 ,1,1,211985 ,1,2,210785 ,2,822,194505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519660 ,2,827,75 ,2,828,462450 ,2,821,590070 ,1,0,45 ,1,1,211985 ,1,2,45 ,1,3,5900 ,2,822,152820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519665 ,2,827,75 ,2,828,462455 ,1,8,45 ,1,16,45 ,1,24,45 ,1,32,45 ,1,40,45 ,1,48,45 ,1,56,45 ,1,64,45 ,1,72,45 ,1,80,45 ,1,88,45 ,1,96,45 ,1,104,45 ,2,821,592335 ,1,0,45 ,1,1,211985 ,1,2,45 ,1,3,5900 ,2,822,134940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519670 ,2,827,75 ,2,828,462470 ,1,8,373880 ,1,16,612445 ,2,821,594620 ,1,0,45 ,1,1,211985 ,2,822,148520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519675 ,2,827,128210 ,2,828,462475 ,1,8,373880 ,1,16,612410 ,2,821,597735 ,1,0,45 ,1,1,211985 ,1,2,143495 ,1,3,143865 ,1,4,143665 ,2,822,146105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519680 ,2,827,128220 ,2,828,462480 ,1,8,373880 ,1,16,612450 ,2,821,603450 ,1,0,45 ,1,1,211985 ,1,2,45 ,1,3,5900 ,2,822,160625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519685 ,2,827,75 ,2,828,462485 ,1,8,373880 ,1,16,612440 ,2,821,605800 ,1,0,45 ,1,1,211985 ,2,822,109715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519690 ,2,827,128230 ,2,828,462515 ,1,8,373880 ,1,16,612435 ,2,821,607510 ,1,0,45 ,1,1,211985 ,2,822,100725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519730 ,2,827,75 ,2,828,462520 ,1,8,373880 ,1,16,612400 ,2,821,610820 ,1,0,45 ,1,1,211985 ,1,2,45 ,1,3,5900 ,2,822,108110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519670 ,2,827,75 ,2,828,462470 ,1,8,545585 ,1,16,373880 ,1,24,612340 ,2,821,613065 ,1,0,45 ,1,1,211985 ,2,822,115435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519735 ,2,827,66040 ,2,828,462525 ,1,8,545610 ,1,16,373880 ,1,24,612345 ,2,821,614650 ,1,0,45 ,1,1,211985 ,2,822,138350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519740 ,2,827,75 ,2,828,462530 ,1,8,545695 ,1,16,373880 ,1,24,612350 ,2,821,616480 ,1,0,45 ,1,1,211985 ,2,822,159600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519635 ,2,827,75 ,2,828,462440 ,1,8,545705 ,1,16,373880 ,1,24,612355 ,2,821,617845 ,2,822,103450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519745 ,2,827,75 ,2,828,462535 ,1,8,545710 ,1,16,373880 ,1,24,612375 ,2,821,618760 ,2,822,98915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519750 ,2,827,75 ,2,828,462540 ,1,8,545740 ,1,16,373880 ,1,24,612380 ,2,821,619530 ,2,822,98605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519755 ,2,827,75 ,2,828,462545 ,1,8,545745 ,1,16,373880 ,1,24,612385 ,2,821,620635 ,1,0,45 ,1,1,211985 ,1,2,340570 ,1,3,207130 ,2,822,101320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519760 ,2,827,75 ,2,828,462550 ,2,821,623975 ,2,822,66110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519765 ,2,827,75 ,2,828,462565 ,1,8,546120 ,1,16,170 ,2,821,625095 ,2,822,79040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519795 ,2,827,75 ,2,828,462570 ,1,8,546120 ,1,16,160 ,2,821,625805 ,1,0,45 ,1,1,5900 ,2,822,56655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519800 ,2,827,99165 ,2,828,462575 ,1,8,545325 ,2,821,627395 ,2,822,56170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519805 ,2,827,75 ,2,828,462580 ,1,8,554045 ,1,16,45 ,2,821,628635 ,2,822,183130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519810 ,2,827,75 ,2,828,462585 ,1,8,543715 ,1,16,45 ,1,24,45 ,2,821,631105 ,2,822,183580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519820 ,2,827,118145 ,2,828,462590 ,1,8,545325 ,2,821,636270 ,2,822,184020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519825 ,2,827,117825 ,2,828,462595 ,2,821,641700 ,2,822,184500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519830 ,2,827,118155 ,2,828,462600 ,1,8,546120 ,1,16,170 ,1,8,545325 ,2,821,647625 ,2,822,184965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519825 ,2,827,117835 ,2,828,462640 ,1,8,13320 ,2,821,653065 ,2,822,185405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519835 ,2,827,118230 ,2,828,462645 ,2,821,658695 ,2,822,61860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519860 ,2,827,118280 ,2,828,462650 ,2,821,667240 ,2,822,185845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519865 ,2,827,118305 ,2,828,462655 ,1,8,167970 ,1,16,45 ,1,24,45 ,2,821,3265 ,2,822,63250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519870 ,2,827,75 ,2,828,462670 ,1,8,167980 ,1,16,45 ,1,24,45 ,2,821,7705 ,2,822,66005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519875 ,2,827,128240 ,2,828,462675 ,1,8,167990 ,1,16,45 ,1,24,45 ,1,8,168000 ,1,16,45 ,1,24,45 ,2,821,17175 ,2,822,166265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519885 ,2,827,128240 ,2,828,462680 ,2,821,31110 ,2,822,65795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519890 ,2,827,128260 ,2,828,462685 ,2,821,33235 ,2,822,200635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519895 ,2,827,75 ,2,828,462710 ,2,821,35060 ,2,822,45755 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,35240 ,2,822,200675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,462715 ,2,821,36435 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,56540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519900 ,2,827,128290 ,2,828,462720 ,2,821,48235 ,2,822,56220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519920 ,2,827,75 ,2,828,462725 ,2,821,50305 ,1,0,2210 ,1,1,542350 ,2,822,63845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519925 ,2,827,75 ,2,828,462735 ,2,821,57945 ,2,822,71905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519930 ,2,827,75 ,2,828,462740 ,2,821,62405 ,2,822,72520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519935 ,2,827,75 ,2,828,462745 ,2,821,71830 ,1,0,338920 ,2,822,76470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519940 ,2,827,75 ,2,828,462750 ,2,821,73215 ,1,0,45 ,1,1,5900 ,2,822,167890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519945 ,2,827,75 ,2,828,462780 ,2,821,77555 ,2,822,170260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519950 ,2,827,75 ,2,828,462785 ,2,821,81865 ,2,822,63735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519955 ,2,827,75 ,2,828,462790 ,2,821,83680 ,2,822,183020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519985 ,2,827,75 ,2,828,462795 ,2,821,85230 ,2,822,183475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519990 ,2,827,118145 ,2,828,462805 ,2,821,90240 ,2,822,183935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519985 ,2,827,75 ,2,828,462810 ,2,821,91705 ,2,822,184390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519995 ,2,827,118155 ,2,828,462815 ,2,821,97560 ,2,822,184855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519985 ,2,827,75 ,2,828,462820 ,2,821,99145 ,2,822,185330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520000 ,2,827,118230 ,2,828,462855 ,2,821,105025 ,2,822,61805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520005 ,2,827,118280 ,2,828,462860 ,2,821,115180 ,2,822,185760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520010 ,2,827,118305 ,2,828,462865 ,2,821,125620 ,2,822,63190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520015 ,2,827,75 ,2,828,462870 ,1,8,551150 ,1,16,160815 ,2,821,127390 ,2,822,171935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520020 ,2,827,75 ,2,828,462870 ,1,8,551155 ,1,16,160835 ,2,821,129130 ,2,822,97515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,128260 ,2,828,462875 ,2,821,131035 ,1,0,557905 ,1,1,45 ,1,2,9435 ,1,3,45 ,1,4,11510 ,1,5,2210 ,1,6,542350 ,2,822,56330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520060 ,2,827,57495 ,2,828,462880 ,1,8,551165 ,1,16,160845 ,1,8,551150 ,1,16,160855 ,2,821,143515 ,2,822,60115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,128260 ,2,828,462885 ,1,8,557705 ,1,16,160865 ,2,821,145405 ,2,822,200795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520065 ,2,827,75 ,2,828,462890 ,1,8,551150 ,1,16,160925 ,2,821,147180 ,2,822,181410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,462935 ,1,8,551150 ,1,16,160935 ,2,821,148145 ,2,822,67685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520070 ,2,827,75 ,2,828,462940 ,2,821,149285 ,2,822,61220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520075 ,2,827,128330 ,2,828,462945 ,1,8,551165 ,1,16,160945 ,1,8,551170 ,1,16,160955 ,2,821,158505 ,2,822,78865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520080 ,2,827,75 ,2,828,462950 ,2,821,160310 ,2,822,124920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,128260 ,2,828,462955 ,1,8,551175 ,1,16,160965 ,1,8,557705 ,1,16,160975 ,2,821,162240 ,2,822,106680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520085 ,2,827,75 ,2,828,462960 ,1,8,557705 ,1,16,160985 ,2,821,165980 ,2,822,105065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,462965 ,1,8,557705 ,1,16,160995 ,2,821,166635 ,2,822,106165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507625 ,2,827,75 ,2,828,462995 ,1,8,551150 ,1,16,161015 ,2,821,167865 ,1,0,340205 ,2,822,105635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520090 ,2,827,75 ,2,828,463000 ,1,8,551180 ,1,16,161025 ,2,821,171015 ,2,822,133190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520105 ,2,827,128360 ,2,828,463005 ,2,821,178920 ,2,822,45765 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,1,8,551155 ,1,16,161035 ,1,8,557715 ,1,16,161045 ,2,821,179075 ,2,822,153595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,463010 ,2,821,180100 ,2,822,141905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,463015 ,1,8,551155 ,1,16,161060 ,2,821,180950 ,2,822,161940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500180 ,2,827,75 ,2,828,463020 ,1,8,551165 ,1,16,161070 ,1,8,551200 ,1,16,161045 ,2,821,182045 ,2,822,164145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520110 ,2,827,75 ,2,828,463025 ,1,8,551235 ,1,16,161080 ,2,821,183335 ,2,822,183120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463045 ,1,8,551240 ,1,16,161045 ,2,821,184030 ,2,822,184010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463055 ,1,8,551410 ,1,16,161090 ,2,821,184750 ,2,822,184955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463065 ,1,8,551415 ,1,16,161045 ,2,821,185455 ,2,822,61850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463070 ,1,8,551150 ,1,16,161130 ,2,821,186205 ,2,822,185835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,463075 ,1,8,551465 ,1,16,161045 ,2,821,186910 ,2,822,63240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520115 ,2,827,75 ,2,828,463080 ,1,8,551470 ,1,16,161045 ,2,821,187565 ,2,822,171980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,463105 ,1,8,551150 ,1,16,161140 ,2,821,188210 ,2,822,71885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520120 ,2,827,75 ,2,828,463110 ,1,8,551150 ,1,16,161150 ,2,821,192810 ,2,822,72500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519930 ,2,827,75 ,2,828,463115 ,2,821,197430 ,2,822,76405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519940 ,2,827,75 ,2,828,463120 ,1,8,551475 ,1,16,161160 ,2,821,198895 ,2,822,63825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520125 ,2,827,26010 ,2,828,463125 ,1,8,551165 ,1,16,161170 ,1,8,551150 ,1,16,161180 ,2,821,204060 ,2,822,193915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520130 ,2,827,84925 ,2,828,463135 ,1,8,551180 ,1,16,161190 ,2,821,210295 ,2,822,149910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513990 ,2,827,75 ,2,828,463140 ,1,8,551165 ,1,16,161200 ,2,821,211270 ,2,822,106035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520135 ,2,827,75 ,2,828,463165 ,1,8,551650 ,1,16,161245 ,2,821,215485 ,2,822,163600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520140 ,2,827,75 ,2,828,463170 ,2,821,216810 ,2,822,164725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520140 ,2,827,75 ,2,828,463175 ,1,51,400180 ,1,52,400180 ,1,53,400175 ,1,54,417555 ,1,55,417555 ,1,56,400160 ,1,57,417550 ,1,58,417550 ,1,59,400155 ,1,60,400150 ,1,61,400150 ,1,62,417520 ,1,72,400145 ,1,80,400140 ,1,81,400135 ,1,82,400130 ,1,83,400125 ,1,84,400095 ,1,85,400090 ,1,86,400090 ,1,87,400090 ,1,92,400085 ,1,93,400080 ,1,95,400075 ,1,96,400075 ,1,97,400070 ,1,99,400065 ,1,100,400035 ,1,101,400035 ,1,102,400035 ,1,104,400030 ,1,105,400025 ,1,106,417515 ,1,107,417510 ,1,108,417505 ,1,109,417495 ,1,110,417490 ,1,111,417485 ,1,112,417480 ,1,113,417470 ,1,114,417465 ,1,115,417460 ,1,116,417455 ,1,117,417445 ,1,118,417440 ,1,119,417435 ,1,120,400020 ,1,121,417430 ,1,122,417400 ,1,123,417395 ,1,124,417390 ,1,125,417385 ,1,126,417375 ,1,127,417370 ,1,128,417365 ,1,129,417360 ,1,130,417335 ,1,131,417330 ,1,132,417325 ,1,133,417320 ,1,134,417295 ,1,135,400015 ,1,136,417290 ,1,137,417285 ,1,138,400010 ,1,139,417280 ,1,140,417240 ,1,141,417235 ,1,142,417230 ,1,143,417225 ,1,144,417220 ,1,145,417215 ,1,146,417210 ,1,147,417205 ,1,158,417190 ,1,161,417185 ,1,175,417180 ,1,176,400005 ,1,178,400000 ,1,179,399980 ,1,181,417175 ,1,184,399975 ,1,187,399970 ,1,192,399965 ,1,193,399960 ,1,194,399960 ,1,195,399960 ,1,202,399955 ,1,210,399950 ,1,211,399945 ,1,212,399945 ,1,213,399925 ,1,214,399925 ,1,215,399925 ,1,216,399925 ,1,220,417170 ,1,221,399920 ,1,222,399915 ,1,229,399910 ,1,230,399905 ,1,231,399905 ,1,232,399905 ,1,234,399900 ,1,237,417165 ,1,240,417160 ,1,242,399895 ,1,243,399890 ,1,248,399860 ,1,249,399855 ,1,250,399855 ,1,251,399855 ,1,256,399850 ,1,257,399845 ,1,258,399845 ,1,259,399845 ,1,260,399840 ,1,261,399835 ,1,264,417155 ,1,265,417155 ,1,266,399830 ,1,289,399825 ,1,290,399805 ,1,291,399805 ,1,293,417140 ,1,294,399800 ,1,295,417135 ,1,296,417130 ,1,297,399795 ,1,298,417125 ,1,300,417115 ,1,301,417115 ,1,305,399790 ,1,309,399785 ,1,310,399780 ,1,311,399775 ,1,313,399770 ,1,316,399745 ,1,317,399735 ,1,320,399730 ,1,321,417110 ,1,322,399725 ,1,328,399720 ,1,329,399715 ,1,330,399710 ,1,331,399700 ,1,332,399695 ,1,333,399690 ,1,335,399685 ,1,336,399685 ,1,340,399665 ,1,341,399660 ,1,342,399655 ,1,343,399650 ,1,344,399620 ,1,345,399615 ,1,347,399610 ,1,348,399610 ,1,350,399605 ,1,351,417105 ,1,352,417100 ,1,353,417070 ,1,354,417065 ,1,355,399600 ,1,356,399595 ,1,357,399590 ,1,358,399585 ,1,359,399560 ,1,360,399555 ,1,361,399550 ,1,362,417060 ,1,368,399545 ,1,372,399540 ,1,373,399535 ,1,374,399540 ,1,375,399540 ,1,376,399535 ,1,377,399540 ,1,378,399540 ,1,379,399535 ,1,380,399540 ,1,381,399540 ,1,382,399535 ,1,383,399540 ,1,384,399540 ,1,385,399535 ,1,386,399540 ,1,387,399540 ,1,388,399535 ,1,389,399540 ,1,390,399540 ,1,391,399535 ,1,392,399540 ,1,393,399540 ,1,394,399535 ,1,395,399540 ,1,396,399540 ,1,397,399535 ,1,398,399540 ,1,399,399540 ,1,400,399535 ,1,401,399540 ,1,402,399540 ,1,403,399535 ,1,404,399540 ,1,405,399540 ,1,406,399535 ,1,407,399540 ,1,408,399540 ,1,409,399535 ,1,410,399540 ,1,411,399540 ,1,412,399535 ,1,413,399540 ,1,414,399530 ,1,417,417055 ,1,418,417050 ,1,419,417045 ,1,420,417040 ,1,421,417035 ,1,426,399525 ,1,427,399505 ,1,428,399500 ,1,429,399495 ,1,430,399490 ,1,431,417015 ,1,432,399480 ,1,434,399475 ,1,435,399470 ,1,436,399470 ,1,439,399465 ,1,442,399445 ,1,443,399440 ,1,445,399435 ,1,446,417010 ,1,451,417005 ,1,452,417000 ,1,453,416995 ,1,454,416990 ,1,455,416985 ,1,456,399430 ,1,459,399430 ,1,460,399430 ,1,461,416980 ,1,462,399420 ,1,463,399420 ,1,464,399420 ,1,465,399420 ,1,466,399420 ,1,472,399415 ,1,473,399410 ,1,476,416950 ,1,477,399405 ,1,480,416945 ,1,481,416945 ,1,482,416940 ,1,485,416940 ,1,486,416940 ,1,490,399380 ,1,491,399380 ,1,492,399375 ,1,494,399370 ,1,495,416935 ,1,496,416930 ,1,497,399370 ,1,498,399370 ,1,499,399365 ,1,501,399360 ,1,503,399355 ,1,504,399360 ,1,505,399360 ,1,506,399355 ,1,507,399355 ,1,508,399350 ,1,509,399345 ,1,510,399330 ,1,511,399325 ,1,513,399320 ,1,514,399315 ,1,515,399305 ,1,516,399300 ,1,517,399295 ,1,518,399290 ,1,519,399250 ,1,520,399245 ,1,521,399240 ,1,522,399240 ,1,523,399235 ,1,525,416925 ,1,526,416925 ,1,527,416925 ,1,528,416925 ,1,529,416925 ,1,530,416925 ,1,531,416925 ,1,532,416925 ,1,533,416925 ,1,536,416920 ,1,538,416915 ,1,539,399225 ,1,540,399220 ,1,541,399215 ,1,542,399210 ,1,545,399210 ,1,546,399210 ,1,548,399185 ,1,549,399180 ,1,550,399175 ,1,551,399175 ,1,552,399170 ,1,558,416905 ,1,559,399165 ,1,560,399160 ,1,561,416905 ,1,562,416905 ,1,563,399155 ,1,564,399150 ,1,565,399120 ,1,566,399120 ,1,567,399115 ,1,569,399110 ,1,581,399105 ,1,582,399105 ,1,583,399100 ,1,584,399095 ,1,585,399090 ,1,586,399090 ,1,587,399090 ,1,588,399085 ,1,590,399065 ,1,592,416900 ,1,593,416895 ,1,594,399060 ,1,599,399055 ,1,601,399050 ,1,602,399045 ,1,603,416890 ,1,604,399040 ,1,605,416880 ,1,606,399035 ,1,607,416875 ,1,608,399030 ,1,615,399000 ,1,616,398995 ,1,617,398990 ,1,621,398985 ,1,622,398980 ,1,623,398975 ,1,624,398970 ,1,625,398965 ,1,626,398970 ,1,630,398945 ,1,631,398945 ,1,632,398940 ,1,633,398935 ,1,636,398935 ,1,637,398935 ,1,639,398920 ,1,640,398915 ,1,641,398910 ,1,643,416870 ,1,644,416865 ,1,645,398905 ,1,653,398885 ,1,654,398885 ,1,655,398880 ,1,661,398875 ,1,662,398870 ,1,692,416840 ,1,693,416835 ,1,701,416830 ,1,702,416825 ,1,703,416815 ,1,710,416810 ,1,711,416805 ,1,712,416800 ,1,714,398850 ,1,715,398850 ,1,716,398840 ,1,719,416775 ,1,720,398835 ,1,721,416770 ,1,723,398795 ,1,725,398790 ,1,726,398785 ,1,727,398780 ,1,728,398780 ,1,730,398775 ,1,735,398770 ,1,736,398770 ,1,737,398770 ,1,738,398770 ,1,739,398770 ,1,740,398770 ,1,741,398765 ,1,742,398760 ,1,745,398740 ,1,746,398740 ,1,748,398735 ,1,753,398730 ,1,754,398730 ,1,755,398730 ,1,756,398730 ,1,757,398730 ,1,758,398730 ,1,761,398725 ,1,762,398720 ,1,766,398715 ,1,767,398710 ,1,768,398705 ,1,769,398675 ,1,771,398670 ,1,772,398665 ,1,778,416765 ,1,779,398660 ,1,780,398660 ,1,781,416760 ,1,782,416755 ,1,793,398650 ,1,794,416750 ,1,798,398645 ,1,815,398640 ,1,816,398635 ,1,817,398615 ,1,818,398610 ,1,822,398605 ,1,823,398600 ,1,824,398585 ,1,825,398580 ,1,826,398575 ,1,827,398570 ,1,830,398540 ,1,832,398535 ,1,833,398530 ,1,834,398525 ,1,835,398515 ,1,837,398510 ,1,838,398510 ,1,839,398510 ,1,840,398510 ,1,843,398505 ,1,844,398505 ,1,845,398500 ,1,859,398475 ,1,862,398470 ,1,863,398465 ,1,864,398460 ,1,865,398450 ,1,867,416745 ,1,868,416745 ,1,871,398445 ,1,872,398440 ,1,873,398435 ,1,874,398405 ,1,875,398400 ,1,876,398395 ,1,878,398390 ,1,879,398385 ,1,881,398380 ,1,882,398375 ,1,883,398370 ,1,884,398370 ,1,885,398335 ,1,886,398330 ,1,887,398330 ,1,888,398325 ,1,889,398320 ,1,898,398315 ,1,899,398315 ,1,900,398310 ,1,902,398305 ,1,904,416740 ,1,905,398300 ,1,907,416740 ,1,908,416740 ,1,917,398280 ,1,918,398275 ,1,919,398270 ,1,920,398265 ,1,925,398260 ,1,946,398255 ,1,947,398255 ,1,948,398250 ,1,949,398245 ,1,950,398210 ,1,951,398205 ,1,952,398200 ,1,975,398195 ,1,984,398190 ,1,986,398185 ,1,987,398180 ,1,988,398175 ,1,989,398155 ,1,990,416720 ,1,991,416715 ,1,992,416710 ,1,993,416720 ,1,994,416720 ,1,995,416720 ,1,996,416720 ,1,997,416720 ,1,998,416720 ,1,999,416720 ,1,1000,416720 ,1,1001,416720 ,1,1009,398150 ,1,1010,398150 ,1,1012,398150 ,1,1013,398150 ,1,1015,416705 ,1,1018,416700 ,1,1019,416695 ,1,1020,416690 ,1,1021,398145 ,1,1022,398140 ,1,1024,416685 ,1,1025,398135 ,1,1029,398130 ,1,1037,398125 ,1,1038,398125 ,1,1039,398125 ,1,1040,398120 ,1,1044,398100 ,1,1045,398095 ,1,1047,398090 ,1,1049,416660 ,1,1050,416655 ,1,1051,416655 ,1,1052,416655 ,1,1054,398085 ,1,1055,398080 ,1,1057,398075 ,1,1058,398070 ,1,1063,398065 ,1,1064,398040 ,1,1065,398040 ,1,1066,398040 ,1,1068,398035 ,1,1069,398040 ,1,1070,398040 ,1,1071,398030 ,1,1074,398025 ,1,1075,398025 ,1,1076,398015 ,1,1077,398040 ,1,1078,398040 ,1,1079,398040 ,1,1080,398040 ,1,1081,398040 ,1,1088,398010 ,1,1089,398005 ,1,1090,397980 ,1,1091,398040 ,1,1092,398040 ,1,1093,398040 ,1,1094,397975 ,1,1095,398040 ,1,1097,398040 ,1,1098,398040 ,1,1100,398040 ,1,1101,398040 ,1,1103,397970 ,1,1104,397965 ,1,1105,416650 ,1,1106,397950 ,1,1107,397945 ,1,1109,398040 ,1,1110,398040 ,1,1111,398040 ,1,1112,398040 ,1,1113,398040 ,1,1114,398040 ,1,1115,398040 ,1,1116,398040 ,1,1117,398040 ,1,1118,398040 ,1,1119,398040 ,1,1120,397940 ,1,1122,397935 ,1,1124,398040 ,1,1125,398040 ,1,1126,398040 ,1,1127,398040 ,1,1128,398040 ,1,1129,398040 ,1,1130,398040 ,1,1131,398040 ,1,1132,398040 ,1,1133,398040 ,1,1134,398040 ,1,1135,398040 ,1,1136,398040 ,1,1137,398040 ,1,1138,398040 ,1,1139,398040 ,1,1140,398040 ,1,1141,398040 ,1,1142,398040 ,1,1143,398040 ,1,1144,398040 ,1,1145,398040 ,1,1146,398040 ,1,1147,398040 ,1,1148,398040 ,1,1149,398040 ,1,1150,398040 ,1,1151,398040 ,1,1152,398040 ,1,1153,398040 ,1,1154,398040 ,1,1155,398040 ,1,1156,398040 ,1,1157,398040 ,1,1158,398040 ,1,1159,398040 ,1,1160,398040 ,1,1161,398040 ,1,1162,398040 ,1,1163,398040 ,1,1164,398040 ,1,1165,398040 ,1,1166,398040 ,1,1167,398040 ,1,1168,398040 ,1,1169,398040 ,1,1170,398040 ,1,1171,398040 ,1,1172,397920 ,1,1173,398040 ,1,1177,397915 ,1,1178,397910 ,1,1180,397905 ,1,1181,398040 ,1,1182,398040 ,1,1183,398040 ,1,1184,398040 ,1,1185,398040 ,1,1187,398040 ,1,1188,398040 ,1,1189,398040 ,1,1190,397900 ,1,1191,398040 ,1,1193,398040 ,1,1194,398040 ,1,1195,397895 ,1,1197,398040 ,1,1198,398040 ,1,1199,398040 ,1,1200,398040 ,1,1201,398040 ,1,1202,398040 ,1,1203,397890 ,1,1204,398040 ,1,1205,398040 ,1,1206,397885 ,1,1207,398040 ,1,1208,398040 ,1,1209,398040 ,1,1211,398040 ,1,1212,398040 ,1,1213,398040 ,1,1214,398040 ,1,1215,398040 ,1,1217,398040 ,1,1218,398040 ,1,1219,398040 ,1,1222,397855 ,1,1224,397850 ,1,1226,397845 ,1,1227,397840 ,1,1228,398040 ,1,1229,398040 ,1,1230,398040 ,1,1231,398040 ,1,1232,398040 ,1,1233,398040 ,1,1234,398040 ,1,1235,398040 ,1,1236,398040 ,1,1237,398040 ,1,1238,398040 ,1,1239,398040 ,1,1240,398040 ,1,1241,398040 ,1,1242,398040 ,1,1243,398040 ,1,1244,398040 ,1,1245,398040 ,1,1246,398040 ,1,1247,398040 ,1,1248,398040 ,1,1249,398040 ,1,1250,398040 ,1,1251,398040 ,1,1252,398040 ,1,1253,398040 ,1,1254,398040 ,1,1255,398040 ,1,1256,398040 ,1,1257,398040 ,1,1258,398040 ,1,1259,398040 ,1,1260,398040 ,1,1261,398040 ,1,1262,398040 ,1,1263,398040 ,1,1264,398040 ,1,1265,398040 ,1,1266,398040 ,1,1267,398040 ,1,1268,398040 ,1,1274,398040 ,1,1275,398040 ,1,1276,397825 ,1,1277,398040 ,1,1278,398040 ,1,1279,398040 ,1,1280,398040 ,1,1281,397820 ,1,1282,398040 ,1,1283,398040 ,1,1284,398040 ,1,1285,398040 ,1,1286,398040 ,1,1287,398040 ,1,1288,398040 ,1,1289,398040 ,1,1290,398040 ,1,1291,398040 ,1,1292,398040 ,1,1294,398040 ,1,1295,398040 ,1,1296,398040 ,1,1297,398040 ,1,1298,398040 ,1,1299,398040 ,1,1302,398040 ,1,1315,398040 ,1,1316,398040 ,1,1317,398040 ,1,1318,398040 ,1,1319,398040 ,1,1320,398040 ,1,1322,398040 ,1,1323,398040 ,1,1325,398040 ,1,1326,398040 ,1,1329,398040 ,1,1330,398040 ,1,1331,398040 ,1,1332,398040 ,1,1333,397815 ,1,1334,397810 ,1,1335,397785 ,1,1336,397780 ,1,1341,398040 ,1,1343,398040 ,1,1345,398040 ,1,1346,398040 ,1,1347,398040 ,1,1348,398040 ,1,1350,398040 ,1,1351,397775 ,1,1352,397770 ,1,1353,398040 ,1,1355,398040 ,1,1356,398040 ,1,1358,397765 ,1,1359,398040 ,1,1362,398040 ,1,1363,398040 ,1,1364,398040 ,1,1366,398040 ,1,1368,398040 ,1,1369,398040 ,1,1370,398040 ,1,1371,398040 ,1,1373,398040 ,1,1374,398040 ,1,1377,397760 ,1,1378,398040 ,1,1379,398040 ,1,1380,398040 ,1,1381,398040 ,1,1383,398040 ,1,1384,398040 ,1,1386,398040 ,1,1389,398040 ,1,1390,398040 ,1,1391,398040 ,1,1392,398040 ,1,1393,398040 ,1,1395,398040 ,1,1398,398040 ,1,1399,398040 ,1,1400,398040 ,1,1401,398040 ,1,1402,398040 ,1,1403,398040 ,1,1404,398040 ,1,1405,397755 ,1,1406,398040 ,1,1407,398040 ,1,1409,398040 ,1,1410,398040 ,1,1411,398040 ,1,1412,398040 ,1,1413,398040 ,1,1415,398040 ,1,1417,398040 ,1,1418,398040 ,1,1422,398040 ,1,1423,397750 ,1,1428,398040 ,1,1431,398040 ,1,1432,398040 ,1,1433,398040 ,1,1434,398040 ,1,1435,398040 ,1,1436,397720 ,1,1437,398040 ,1,1439,398040 ,1,1440,397715 ,1,1442,398040 ,1,1443,398040 ,1,1444,398040 ,1,1445,398040 ,1,1447,398040 ,1,1448,398040 ,1,1450,398040 ,1,1451,398040 ,1,1452,397710 ,1,1453,398040 ,1,1454,398040 ,1,1456,398040 ,1,1457,398040 ,1,1458,398040 ,1,1459,398040 ,1,1460,398040 ,1,1461,398040 ,1,1462,398040 ,1,1463,398040 ,1,1464,398040 ,1,1467,398040 ,1,1468,398040 ,1,1469,398040 ,1,1470,398040 ,1,1471,398040 ,1,1472,398040 ,1,1473,398040 ,1,1480,397705 ,1,1481,397700 ,1,1482,397695 ,1,1483,398040 ,1,1484,398040 ,1,1485,398040 ,1,1486,398040 ,1,1487,398040 ,1,1489,398040 ,1,1491,398040 ,1,1492,397690 ,1,1493,398040 ,1,1495,398040 ,1,1496,398040 ,1,1497,397685 ,1,1499,397670 ,1,1500,398040 ,1,1501,398040 ,1,1502,398040 ,1,1503,398040 ,1,1504,398040 ,1,1505,397665 ,1,1506,398040 ,1,1507,398040 ,1,1509,398040 ,1,1510,398040 ,1,1511,398040 ,1,1513,398040 ,1,1516,397660 ,1,1517,398040 ,1,1518,398040 ,1,1520,398040 ,1,1522,397655 ,1,1523,398040 ,1,1525,398040 ,1,1526,398040 ,1,1527,398040 ,1,1528,398040 ,1,1529,398040 ,1,1530,398040 ,1,1531,398040 ,1,1532,398040 ,1,1533,398040 ,1,1534,398040 ,1,1535,398040 ,1,1536,398040 ,1,1537,398040 ,1,1538,398040 ,1,1539,398040 ,1,1540,398040 ,1,1541,398040 ,1,1543,398040 ,1,1547,398040 ,1,1551,398040 ,1,1552,397645 ,1,1553,397640 ,1,1555,398040 ,1,1556,397635 ,1,1558,398040 ,1,1559,397630 ,1,1561,398040 ,1,1562,398040 ,1,1563,398040 ,1,1564,398040 ,1,1565,398040 ,1,1566,398040 ,1,1567,398040 ,1,1568,398040 ,1,1569,398040 ,1,1570,398040 ,1,1571,398040 ,1,1572,398040 ,1,1573,398040 ,1,1574,398040 ,1,1575,397540 ,1,1576,398040 ,1,1577,398040 ,1,1578,398040 ,1,1579,398040 ,1,1580,398040 ,1,1581,398040 ,1,1582,398040 ,1,1583,398040 ,1,1584,398040 ,1,1585,398040 ,1,1586,397535 ,1,1587,397530 ,1,1588,397520 ,1,1589,397515 ,1,1590,397510 ,1,1591,398040 ,1,1592,398040 ,1,1593,397505 ,1,1594,398040 ,1,1595,398040 ,1,1596,398040 ,1,1599,398040 ,1,1600,398040 ,1,1601,398040 ,1,1604,398040 ,1,1605,398040 ,1,1606,398040 ,1,1607,398040 ,1,1608,398040 ,1,1609,398040 ,1,1610,398040 ,1,1612,398040 ,1,1613,398040 ,1,1614,398040 ,1,1615,398040 ,1,1616,398040 ,1,1617,398040 ,1,1618,398040 ,1,1619,398040 ,1,1620,398040 ,1,1621,398040 ,1,1622,398040 ,1,1624,397475 ,1,1625,398040 ,1,1626,398040 ,1,1627,398040 ,1,1629,398040 ,1,1630,397470 ,1,1631,397465 ,1,1633,398040 ,1,1634,398040 ,1,1636,398040 ,1,1638,398040 ,1,1641,398040 ,1,1642,398040 ,1,1643,398040 ,1,1644,398040 ,1,1645,398040 ,1,1646,398040 ,1,1647,398040 ,1,1648,397460 ,1,1649,397450 ,1,1650,397445 ,1,1651,397440 ,1,1656,398040 ,1,1657,398040 ,1,1658,398040 ,1,1659,398040 ,1,1660,398040 ,1,1661,397435 ,1,1662,398040 ,1,1663,398040 ,1,1664,398040 ,1,1665,398040 ,1,1666,398040 ,1,1667,398040 ,1,1668,397410 ,1,1669,398040 ,1,1670,397405 ,1,1672,397400 ,1,1673,398040 ,1,1674,397395 ,1,1675,397390 ,1,1676,397385 ,1,1677,416645 ,1,1678,398040 ,1,1679,397380 ,1,1680,397375 ,1,1681,397345 ,1,1682,398040 ,1,1683,398040 ,1,1684,398040 ,1,1685,398040 ,1,1687,397340 ,1,1689,398040 ,1,1691,397335 ,1,1692,397335 ,1,1693,397335 ,1,1694,397330 ,1,1696,398040 ,1,1697,397320 ,1,1698,398040 ,1,1699,398040 ,1,1700,398040 ,1,1701,398040 ,1,1702,397315 ,1,1703,398040 ,1,1704,397310 ,1,1705,397305 ,1,1706,397305 ,1,1708,397275 ,1,1709,398040 ,1,1710,398040 ,1,1711,398040 ,1,1712,398040 ,1,1713,398040 ,1,1715,397270 ,1,1716,397270 ,1,1717,397270 ,1,1718,398040 ,1,1719,398040 ,1,1720,397265 ,1,1721,398040 ,1,1722,397260 ,1,1723,397250 ,1,1724,398040 ,1,1726,398040 ,1,1727,398040 ,1,1728,397245 ,1,1729,397240 ,1,1730,397235 ,1,1739,398040 ,1,1740,416640 ,1,1741,398040 ,1,1742,398040 ,1,1743,398040 ,1,1744,398040 ,1,1745,398040 ,1,1746,398040 ,1,1748,398040 ,1,1749,398040 ,1,1750,416635 ,1,1751,398040 ,1,1752,398040 ,1,1754,416630 ,1,1755,398040 ,1,1756,398040 ,1,1760,398040 ,1,1761,398040 ,1,1762,397215 ,1,1763,398040 ,1,1764,397210 ,1,1765,398040 ,1,1766,398040 ,1,1768,397130 ,1,1769,398040 ,1,1770,397125 ,1,1771,398040 ,1,1773,397115 ,1,1774,397110 ,1,1775,397105 ,1,1776,397100 ,1,1777,397095 ,1,1778,397090 ,1,1779,397085 ,1,1780,397080 ,1,1781,398040 ,1,1782,398040 ,1,1783,397075 ,1,1784,397070 ,1,1785,397065 ,1,1786,398040 ,1,1787,398040 ,1,1788,416625 ,1,1789,398040 ,1,1791,398040 ,1,1792,397060 ,1,1793,398040 ,1,1794,397030 ,1,1797,398040 ,1,1798,397025 ,1,1799,397020 ,1,1800,398040 ,1,1803,397015 ,1,1804,398040 ,1,1805,398040 ,1,1806,398040 ,1,1808,398040 ,1,1809,398040 ,1,1810,397010 ,1,1811,397005 ,1,1812,398040 ,1,1813,398040 ,1,1814,398040 ,1,1815,398040 ,1,1816,398040 ,1,1817,398040 ,1,1818,398040 ,1,1819,398040 ,1,1820,398040 ,1,1821,398040 ,1,1822,397000 ,1,1824,398040 ,1,1825,398040 ,1,1826,398040 ,1,1827,398040 ,1,1828,398040 ,1,1829,398040 ,1,1830,398040 ,1,1831,398040 ,1,1832,398040 ,1,1833,398040 ,1,1834,398040 ,1,1835,398040 ,1,1836,398040 ,1,1837,398040 ,1,1838,398040 ,1,1839,398040 ,1,1840,398040 ,1,1841,398040 ,1,1842,398040 ,1,1843,398040 ,1,1844,398040 ,1,1845,398040 ,1,1846,398040 ,1,1847,398040 ,1,1848,398040 ,1,1849,398040 ,1,1850,398040 ,1,1851,398040 ,1,1852,398040 ,1,1853,398040 ,1,1854,398040 ,1,1855,398040 ,1,1856,398040 ,1,1857,398040 ,1,1859,396995 ,1,1861,396955 ,1,1862,396955 ,1,1863,398040 ,1,1864,398040 ,1,1865,398040 ,1,1868,396950 ,1,1869,398040 ,1,1871,398040 ,1,1872,396945 ,1,1873,398040 ,1,1874,398040 ,1,1875,398040 ,1,1878,398040 ,1,1879,398040 ,1,1880,398040 ,1,1881,398040 ,1,1882,398040 ,1,1883,398040 ,1,1884,398040 ,1,1885,398040 ,1,1886,398040 ,1,1887,398040 ,1,1888,398040 ,1,1889,398040 ,1,1892,398040 ,1,1894,396940 ,1,1895,398040 ,1,1896,398040 ,1,1897,398040 ,1,1898,398040 ,1,1899,398040 ,1,1900,398040 ,1,1901,398040 ,1,1902,398040 ,1,1903,398040 ,1,1904,398040 ,1,1905,398040 ,1,1906,398040 ,1,1907,396930 ,1,1910,398040 ,1,1911,416600 ,1,1914,398040 ,1,1915,398040 ,1,1916,396925 ,1,1917,396925 ,1,1919,396920 ,1,1920,398040 ,1,1921,398040 ,1,1922,396915 ,1,1923,398040 ,1,1924,398040 ,1,1925,396875 ,1,1926,396870 ,1,1927,396865 ,1,1928,396860 ,1,1929,396845 ,1,1930,396845 ,1,1931,396845 ,1,1932,396840 ,1,1933,396835 ,1,1934,398040 ,1,1935,398040 ,1,1937,398040 ,1,1939,398040 ,1,1940,398040 ,1,1941,396830 ,1,1942,396805 ,1,1943,396800 ,1,1944,398040 ,1,1947,398040 ,1,1948,398040 ,1,1949,398040 ,1,1951,398040 ,1,1952,398040 ,1,1956,398040 ,1,1957,398040 ,1,1959,398040 ,1,1961,398040 ,1,1963,398040 ,1,1965,398040 ,1,1968,398040 ,1,1969,398040 ,1,1970,398040 ,1,1971,398040 ,1,1972,398040 ,1,1973,398040 ,1,1974,398040 ,1,1975,398040 ,1,1976,398040 ,1,1977,398040 ,1,1978,398040 ,1,1979,398040 ,1,1980,398040 ,1,1981,398040 ,1,1982,398040 ,1,1983,398040 ,1,1984,398040 ,1,1985,398040 ,1,1986,416595 ,1,1988,398040 ,1,1989,398040 ,1,1990,398040 ,1,1991,398040 ,1,1992,398040 ,1,1995,398040 ,1,1996,398040 ,1,1997,398040 ,1,1998,398040 ,1,1999,398040 ,1,2001,398040 ,1,2002,398040 ,1,2003,398040 ,1,2004,398040 ,1,2005,398040 ,1,2006,396795 ,1,2007,398040 ,1,2008,398040 ,1,2009,398040 ,1,2010,398040 ,1,2012,398040 ,1,2013,398040 ,1,2014,398040 ,1,2015,398040 ,1,2017,416590 ,1,2018,398040 ,1,2019,416585 ,1,2020,396790 ,1,2021,398040 ,1,2022,398040 ,1,2023,396785 ,1,2024,396785 ,1,2025,396780 ,1,2026,398040 ,1,2028,398040 ,1,2029,396775 ,1,2030,396775 ,1,2032,398040 ,1,2035,398040 ,1,2036,398040 ,1,2037,398040 ,1,2038,398040 ,1,2039,398040 ,1,2040,398040 ,1,2041,398040 ,1,2042,398040 ,1,2044,398040 ,1,2045,398040 ,1,2046,398040 ,1,2047,398040 ,1,2048,398040 ,1,2050,398040 ,1,2051,398040 ,1,2052,396770 ,1,2053,396770 ,1,2054,398040 ,1,2055,398040 ,1,2056,398040 ,1,2057,398040 ,1,2058,398040 ,1,2059,398040 ,1,2060,398040 ,1,2061,398040 ,1,2065,398040 ,1,2066,398040 ,1,2067,396750 ,1,2070,398040 ,1,2072,396745 ,1,2073,398040 ,1,2074,396740 ,1,2075,398040 ,1,2077,398040 ,1,2078,398040 ,1,2079,396735 ,1,2080,396720 ,1,2082,396720 ,1,2083,396715 ,1,2084,396710 ,1,2085,396705 ,1,2086,416570 ,1,2087,398040 ,1,2088,416565 ,1,2089,396685 ,1,2090,396680 ,1,2091,396675 ,1,2093,398040 ,1,2094,398040 ,1,2095,398040 ,1,2096,398040 ,1,2098,398040 ,1,2099,398040 ,1,2100,396670 ,1,2101,396665 ,1,2102,398040 ,1,2103,396660 ,1,2104,398040 ,1,2105,396660 ,1,2106,398040 ,1,2107,398040 ,1,2108,398040 ,1,2109,398040 ,1,2110,398040 ,1,2111,398040 ,1,2112,398040 ,1,2113,416560 ,1,2114,396655 ,1,2115,398040 ,1,2116,398040 ,1,2117,398040 ,1,2118,398040 ,1,2120,398040 ,1,2121,396650 ,1,2122,396625 ,1,2123,398040 ,1,2124,398040 ,1,2126,396620 ,1,2127,396615 ,1,2129,398040 ,1,2130,396610 ,1,2131,398040 ,1,2132,398040 ,1,2134,396605 ,1,2135,396600 ,1,2136,398040 ,1,2137,416555 ,1,2138,396595 ,1,2139,398040 ,1,2140,398040 ,1,2141,396590 ,1,2142,396570 ,1,2143,396565 ,1,2144,396560 ,1,2145,396555 ,1,2146,396550 ,1,2147,396545 ,1,2148,396540 ,1,2149,396535 ,1,2150,396515 ,1,2151,396510 ,1,2152,396505 ,1,2154,396500 ,1,2155,398040 ,1,2157,398040 ,1,2158,396495 ,1,2159,396490 ,1,2160,396485 ,1,2161,396480 ,1,2162,396450 ,1,2163,396445 ,1,2164,396440 ,1,2165,396435 ,1,2166,396425 ,1,2167,396420 ,1,2168,396415 ,1,2169,396410 ,1,2170,396390 ,1,2171,396385 ,1,2172,396380 ,1,2173,398040 ,1,2175,398040 ,1,2176,398040 ,1,2177,398040 ,1,2178,398040 ,1,2179,398040 ,1,2180,398040 ,1,2181,398040 ,1,2182,398040 ,1,2183,398040 ,1,2184,398040 ,1,2185,398040 ,1,2186,398040 ,1,2187,398040 ,1,2188,398040 ,1,2189,398040 ,1,2190,398040 ,1,2191,396375 ,1,2192,398040 ,1,2193,396370 ,1,2194,396365 ,1,2195,396360 ,1,2196,396355 ,1,2197,396340 ,1,2198,396355 ,1,2199,396335 ,1,2200,398040 ,1,2201,416535 ,1,2202,416535 ,1,2203,398040 ,1,2205,398040 ,1,2206,398040 ,1,2208,398040 ,1,2210,398040 ,1,2211,398040 ,1,2212,398040 ,1,2214,398040 ,1,2216,398040 ,1,2217,398040 ,1,2219,398040 ,1,2220,398040 ,1,2222,398040 ,1,2223,398040 ,1,2224,398040 ,1,2225,398040 ,1,2226,398040 ,1,2227,398040 ,1,2228,396330 ,1,2229,396330 ,1,2231,398040 ,1,2232,398040 ,1,2233,396325 ,1,2234,398040 ,1,2235,396315 ,1,2236,396315 ,1,2237,398040 ,1,2238,398040 ,1,2240,398040 ,1,2242,398040 ,1,2243,398040 ,1,2244,396310 ,1,2245,398040 ,1,2247,398040 ,1,2248,398040 ,1,2249,398040 ,1,2250,396305 ,1,2251,398040 ,1,2253,398040 ,1,2255,398040 ,1,2256,398040 ,1,2257,398040 ,1,2258,398040 ,1,2259,398040 ,1,2261,398040 ,1,2262,398040 ,1,2263,416530 ,1,2265,398040 ,1,2266,396300 ,1,2267,398040 ,1,2268,398040 ,1,2269,398040 ,1,2270,398040 ,1,2271,398040 ,1,2273,398040 ,1,2275,398040 ,1,2277,398040 ,1,2279,398040 ,1,2280,396270 ,1,2281,398040 ,1,2283,398040 ,1,2284,398040 ,1,2285,398040 ,1,2286,398040 ,1,2287,398040 ,1,2289,398040 ,1,2290,398040 ,1,2291,398040 ,1,2292,396265 ,1,2293,398040 ,1,2294,398040 ,1,2295,398040 ,1,2297,398040 ,1,2298,398040 ,1,2299,398040 ,1,2301,398040 ,1,2302,398040 ,1,2303,396260 ,1,2304,396255 ,1,2305,396250 ,1,2306,396250 ,1,2307,416525 ,1,2308,416520 ,1,2310,416515 ,1,2311,416515 ,1,2312,416515 ,1,2313,416515 ,1,2314,416515 ,1,2316,416515 ,1,2317,416515 ,1,2318,416515 ,1,2320,416515 ,1,2321,416515 ,1,2322,416515 ,1,2323,416515 ,1,2324,416515 ,1,2325,416515 ,1,2326,416515 ,1,2327,416515 ,1,2328,416515 ,1,2329,396245 ,1,2330,396240 ,1,2334,396240 ,1,2335,396240 ,1,2336,396240 ,1,2337,396240 ,1,2339,396240 ,1,2340,396240 ,1,2341,396235 ,1,2342,396240 ,1,2343,396240 ,1,2344,396240 ,1,2345,396240 ,1,2346,396240 ,1,2348,396240 ,1,2349,396240 ,1,2350,396240 ,1,2351,396240 ,1,2352,396240 ,1,2353,396240 ,1,2354,396240 ,1,2355,396240 ,1,2357,396240 ,1,2358,396240 ,1,2359,396240 ,1,2360,396240 ,1,2362,396240 ,1,2363,396240 ,1,2364,396240 ,1,2365,396240 ,1,2366,396240 ,1,2367,396240 ,1,2368,396240 ,1,2369,396240 ,1,2370,396240 ,1,2371,396240 ,1,2372,396240 ,1,2373,396240 ,1,2374,396240 ,1,2375,396240 ,1,2376,396240 ,1,2377,396240 ,1,2378,396240 ,1,2379,396240 ,1,2380,396240 ,1,2381,396240 ,1,2382,396240 ,1,2383,396240 ,1,2384,396240 ,1,2385,396240 ,1,2386,396240 ,1,2387,396240 ,1,2388,396240 ,1,2389,396240 ,1,2390,396240 ,1,2391,396240 ,1,2392,396240 ,1,2393,396240 ,1,2394,396240 ,1,2395,396240 ,1,2396,396240 ,1,2397,396240 ,1,2398,396240 ,1,2399,396240 ,1,2400,396240 ,1,2401,396240 ,1,2402,396240 ,1,2403,396240 ,1,2404,396240 ,1,2405,396240 ,1,2406,396240 ,1,2407,396240 ,1,2408,396215 ,1,2409,396210 ,1,2410,396240 ,1,2411,396240 ,1,2412,396240 ,1,2413,396240 ,1,2414,396240 ,1,2415,396205 ,1,2416,396240 ,1,2417,396240 ,1,2418,396240 ,1,2419,396240 ,1,2420,396240 ,1,2421,396240 ,1,2422,396240 ,1,2423,396240 ,1,2424,396240 ,1,2425,416510 ,1,2426,396240 ,1,2427,396240 ,1,2428,396240 ,1,2430,396240 ,1,2431,396200 ,1,2432,396240 ,1,2433,396240 ,1,2434,396240 ,1,2435,396240 ,1,2436,396185 ,1,2437,396240 ,1,2438,396240 ,1,2440,396240 ,1,2442,396240 ,1,2444,396240 ,1,2445,396180 ,1,2446,396240 ,1,2447,396175 ,1,2448,396175 ,1,2449,396240 ,1,2450,396240 ,1,2451,396240 ,1,2452,396240 ,1,2453,396240 ,1,2454,396240 ,1,2455,396240 ,1,2456,396240 ,1,2457,396240 ,1,2458,396240 ,1,2459,396240 ,1,2460,396240 ,1,2461,396240 ,1,2462,396240 ,1,2463,396240 ,1,2464,396240 ,1,2465,396240 ,1,2466,396240 ,1,2467,396240 ,1,2468,396240 ,1,2469,396240 ,1,2471,396240 ,1,2473,396240 ,1,2474,396240 ,1,2475,396240 ,1,2476,396240 ,1,2477,396240 ,1,2478,396240 ,1,2479,396240 ,1,2480,396170 ,1,2481,396170 ,1,2482,396240 ,1,2483,396240 ,1,2484,396240 ,1,2485,396155 ,1,2486,396240 ,1,2487,396240 ,1,2489,396240 ,1,2490,396240 ,1,2491,396240 ,1,2492,396240 ,1,2493,396240 ,1,2495,396240 ,1,2496,396240 ,1,2497,396240 ,1,2498,396240 ,1,2499,396240 ,1,2500,396240 ,1,2501,396240 ,1,2502,396240 ,1,2503,396240 ,1,2504,416505 ,1,2505,396240 ,1,2506,396240 ,1,2507,396240 ,1,2508,396240 ,1,2509,396240 ,1,2510,396240 ,1,2511,396240 ,1,2512,396240 ,1,2513,396240 ,1,2514,396240 ,1,2515,396240 ,1,2516,396240 ,1,2517,396240 ,1,2518,396240 ,1,2519,396240 ,1,2520,396240 ,1,2521,396240 ,1,2522,396240 ,1,2523,396240 ,1,2524,396240 ,1,2525,396240 ,1,2526,396240 ,1,2527,396240 ,1,2528,416500 ,1,2529,396240 ,1,2530,396240 ,1,2531,396240 ,1,2532,396240 ,1,2533,396240 ,1,2534,396240 ,1,2535,396240 ,1,2536,396150 ,1,2537,396145 ,1,2538,396240 ,1,2539,396240 ,1,2540,396240 ,1,2541,396240 ,1,2542,396240 ,1,2543,396240 ,1,2544,396240 ,1,2545,396240 ,1,2546,396240 ,1,2547,396240 ,1,2548,396240 ,1,2549,396240 ,1,2550,396240 ,1,2551,396240 ,1,2552,396240 ,1,2553,396240 ,1,2554,396240 ,1,2555,396240 ,1,2556,396240 ,1,2557,396240 ,1,2558,396240 ,1,2559,396240 ,1,2560,396240 ,1,2561,396240 ,1,2562,396240 ,1,2563,396240 ,1,2564,396240 ,1,2565,396240 ,1,2566,396240 ,1,2567,396240 ,1,2568,396140 ,1,2569,396130 ,1,2570,396125 ,1,2571,396240 ,1,2572,396240 ,1,2573,396240 ,1,2574,396240 ,1,2575,396240 ,1,2576,396240 ,1,2577,396240 ,1,2578,396240 ,1,2579,396240 ,1,2580,396240 ,1,2581,396240 ,1,2582,396240 ,1,2583,396240 ,1,2584,398040 ,1,2586,398040 ,1,2587,398040 ,1,2589,398040 ,1,2590,398040 ,1,2591,398040 ,1,2592,398040 ,1,2593,416480 ,1,2594,398040 ,1,2595,398040 ,1,2596,398040 ,1,2597,396120 ,1,2598,398040 ,1,2599,416475 ,1,2600,416475 ,1,2602,398040 ,1,2603,398040 ,1,2604,398040 ,1,2605,398040 ,1,2606,398040 ,1,2607,398040 ,1,2608,398040 ,1,2609,398040 ,1,2610,398040 ,1,2611,398040 ,1,2612,398040 ,1,2613,398040 ,1,2614,398040 ,1,2615,398040 ,1,2616,398040 ,1,2617,398040 ,1,2618,398040 ,1,2619,416470 ,1,2620,398040 ,1,2622,398040 ,1,2623,398040 ,1,2624,398040 ,1,2625,398040 ,1,2626,398040 ,1,2627,398040 ,1,2628,398040 ,1,2629,398040 ,1,2630,396115 ,1,2631,396115 ,1,2632,416465 ,1,2633,398040 ,1,2634,398040 ,1,2635,398040 ,1,2636,398040 ,1,2637,398040 ,1,2638,398040 ,1,2639,398040 ,1,2640,416460 ,1,2641,416460 ,1,2642,416460 ,1,2643,398040 ,1,2644,398040 ,1,2647,398040 ,1,2648,398040 ,1,2649,398040 ,1,2650,398040 ,1,2651,416455 ,1,2652,396090 ,1,2653,398040 ,1,2654,398040 ,1,2655,398040 ,1,2656,398040 ,1,2657,398040 ,1,2658,398040 ,1,2659,398040 ,1,2661,396085 ,1,2662,398040 ,1,2663,396080 ,1,2664,396080 ,1,2665,396075 ,1,2666,396070 ,1,2667,398040 ,1,2668,398040 ,1,2669,396065 ,1,2670,398040 ,1,2671,416450 ,1,2672,416450 ,1,2673,398040 ,1,2674,396060 ,1,2675,396060 ,1,2676,398040 ,1,2677,398040 ,1,2678,398040 ,1,2679,398040 ,1,2680,396055 ,1,2681,396035 ,1,2683,398040 ,1,2684,398040 ,1,2685,398040 ,1,2686,398040 ,1,2687,396030 ,1,2688,398040 ,1,2690,398040 ,1,2691,398040 ,1,2692,398040 ,1,2693,398040 ,1,2694,398040 ,1,2695,398040 ,1,2697,398040 ,1,2698,398040 ,1,2699,398040 ,1,2700,398040 ,1,2701,398040 ,1,2703,398040 ,1,2704,396025 ,1,2705,396025 ,1,2706,396025 ,1,2707,398040 ,1,2708,398040 ,1,2709,396020 ,1,2711,396015 ,1,2712,396015 ,1,2714,398040 ,1,2716,398040 ,1,2718,398040 ,1,2719,398040 ,1,2720,396010 ,1,2722,398040 ,1,2723,398040 ,1,2724,398040 ,1,2725,398040 ,1,2726,398040 ,1,2727,416445 ,1,2728,396005 ,1,2729,398040 ,1,2730,398040 ,1,2732,398040 ,1,2733,398040 ,1,2734,398040 ,1,2735,396000 ,1,2736,416415 ,1,2737,398040 ,1,2738,398040 ,1,2739,395970 ,1,2740,398040 ,1,2741,398040 ,1,2742,395965 ,1,2743,395960 ,1,2744,395955 ,1,2745,398040 ,1,2747,398040 ,1,2749,398040 ,1,2751,395950 ,1,2753,398040 ,1,2754,416410 ,1,2755,395945 ,1,2757,398040 ,1,2759,395940 ,1,2761,398040 ,1,2762,398040 ,1,2763,398040 ,1,2764,395935 ,1,2766,398040 ,1,2768,398040 ,1,2769,398040 ,1,2770,398040 ,1,2771,398040 ,1,2772,398040 ,1,2773,398040 ,1,2774,398040 ,1,2775,395915 ,1,2776,398040 ,1,2777,395910 ,1,2778,398040 ,1,2779,398040 ,1,2780,398040 ,1,2781,398040 ,1,2782,398040 ,1,2783,398040 ,1,2784,398040 ,1,2785,395905 ,1,2786,395900 ,1,2787,395890 ,1,2788,395885 ,1,2789,398040 ,1,2790,395880 ,1,2791,398040 ,1,2792,395875 ,1,2793,395850 ,1,2794,395845 ,1,2795,398040 ,1,2796,398040 ,1,2797,395840 ,1,2798,398040 ,1,2799,398040 ,1,2801,398040 ,1,2802,398040 ,1,2803,398040 ,1,2804,398040 ,1,2805,398040 ,1,2806,398040 ,1,2807,398040 ,1,2808,398040 ,1,2809,398040 ,1,2811,395835 ,1,2812,398040 ,1,2813,398040 ,1,2815,398040 ,1,2816,398040 ,1,2817,398040 ,1,2818,398040 ,1,2820,398040 ,1,2821,398040 ,1,2822,398040 ,1,2823,398040 ,1,2824,398040 ,1,2825,398040 ,1,2826,398040 ,1,2827,395830 ,1,2829,395825 ,1,2830,395825 ,1,2831,395820 ,1,2832,395815 ,1,2833,416405 ,1,2834,416405 ,1,2835,398040 ,1,2836,395800 ,1,2837,395795 ,1,2838,395790 ,1,2839,416400 ,1,2840,395785 ,1,2841,395770 ,1,2842,395765 ,1,2843,398040 ,1,2844,398040 ,1,2845,398040 ,1,2846,398040 ,1,2847,398040 ,1,2848,398040 ,1,2849,398040 ,1,2850,398040 ,1,2851,398040 ,1,2852,398040 ,1,2853,395760 ,1,2854,398040 ,1,2855,398040 ,1,2856,398040 ,1,2857,398040 ,1,2858,398040 ,1,2859,398040 ,1,2860,395755 ,1,2861,398040 ,1,2862,395740 ,1,2863,395740 ,1,2864,398040 ,1,2865,395735 ,1,2867,395730 ,1,2868,395730 ,1,2870,395725 ,1,2871,395725 ,1,2875,398040 ,1,2876,395720 ,1,2877,395715 ,1,2878,395710 ,1,2879,395705 ,1,2880,398040 ,1,2881,398040 ,1,2882,398040 ,1,2884,398040 ,1,2886,398040 ,1,2887,398040 ,1,2892,398040 ,1,2895,398040 ,1,2896,398040 ,1,2897,398040 ,1,2899,398040 ,1,2903,398040 ,1,2908,398040 ,1,2914,395680 ,1,2915,395680 ,1,2916,395675 ,1,2917,395670 ,1,2918,395665 ,1,2919,395655 ,1,2921,395650 ,1,2923,395645 ,1,2924,395645 ,1,2925,395640 ,1,2926,395615 ,1,2927,395610 ,1,2928,395610 ,1,2929,395610 ,1,2930,395610 ,1,2931,395610 ,1,2933,395605 ,1,2934,395600 ,1,2935,395600 ,1,2937,395595 ,1,2938,395600 ,1,2939,395600 ,1,2940,395600 ,1,2941,395590 ,1,2942,395585 ,1,2943,395600 ,1,2944,395580 ,1,2945,395560 ,1,2948,395555 ,1,2949,395550 ,1,2950,395545 ,1,2951,395540 ,1,2952,395535 ,1,2953,395530 ,1,2957,395525 ,1,2958,395500 ,1,2959,395495 ,1,2960,395490 ,1,2961,395485 ,1,2962,395480 ,1,2963,395475 ,1,2964,395470 ,1,2965,395465 ,1,2966,395450 ,1,2967,398040 ,1,2968,398040 ,1,2969,398040 ,1,2970,398040 ,1,2971,398040 ,1,2977,395445 ,1,2978,416395 ,1,2979,395440 ,1,2980,395435 ,1,2982,398040 ,1,2983,398040 ,1,2984,398040 ,1,2985,398040 ,1,2986,398040 ,1,2987,398040 ,1,2989,395415 ,1,2991,398040 ,1,2993,395410 ,1,2994,395405 ,1,2995,398040 ,1,2996,398040 ,1,2997,398040 ,1,2999,398040 ,1,3000,398040 ,1,3002,398040 ,1,3003,398040 ,1,3004,395400 ,1,3005,395380 ,1,3006,398040 ,1,3007,395375 ,1,3008,398040 ,1,3009,398040 ,1,3010,398040 ,1,3012,398040 ,1,3013,398040 ,1,3014,398040 ,1,3016,398040 ,1,3017,398040 ,1,3018,398040 ,1,3020,398040 ,1,3021,398040 ,1,3023,398040 ,1,3024,398040 ,1,3025,395370 ,1,3026,398040 ,1,3027,398040 ,1,3028,398040 ,1,3029,395365 ,1,3030,395355 ,1,3032,398040 ,1,3034,398040 ,1,3036,398040 ,1,3037,398040 ,1,3038,398040 ,1,3040,395350 ,1,3042,398040 ,1,3043,395345 ,1,3044,395340 ,1,3045,395305 ,1,3047,395300 ,1,3048,395295 ,1,3049,398040 ,1,3051,398040 ,1,3052,395290 ,1,3053,398040 ,1,3054,395285 ,1,3055,395280 ,1,3056,395280 ,1,3057,398040 ,1,3062,398040 ,1,3063,398040 ,1,3064,398040 ,1,3065,398040 ,1,3066,395275 ,1,3067,416390 ,1,3068,416385 ,1,3069,416385 ,1,3070,416385 ,1,3071,416385 ,1,3072,416385 ,1,3078,398040 ,1,3079,398040 ,1,3080,395270 ,1,3081,398040 ,1,3085,398040 ,1,3086,395255 ,1,3087,395255 ,1,3088,395255 ,1,3089,395255 ,1,3090,398040 ,1,3091,398040 ,1,3092,398040 ,1,3093,395250 ,1,3094,395245 ,1,3095,398040 ,1,3096,398040 ,1,3097,398040 ,1,3098,398040 ,1,3100,398040 ,1,3101,398040 ,1,3102,398040 ,1,3104,398040 ,1,3106,398040 ,1,3107,398040 ,1,3108,398040 ,1,3109,416380 ,1,3111,398040 ,1,3112,416350 ,1,3113,398040 ,1,3114,398040 ,1,3115,398040 ,1,3116,398040 ,1,3117,398040 ,1,3118,398040 ,1,3119,398040 ,1,3120,398040 ,1,3123,398040 ,1,3124,398040 ,1,3126,398040 ,1,3127,398040 ,1,3129,398040 ,1,3130,398040 ,1,3131,398040 ,1,3132,398040 ,1,3133,398040 ,1,3134,398040 ,1,3135,398040 ,1,3136,398040 ,1,3137,395240 ,1,3140,398040 ,1,3141,398040 ,1,3148,398040 ,1,3149,398040 ,1,3150,398040 ,1,3151,398040 ,1,3152,398040 ,1,3153,398040 ,1,3154,398040 ,1,3155,398040 ,1,3157,398040 ,1,3160,416345 ,1,3161,416340 ,1,3164,398040 ,1,3165,398040 ,1,3166,398040 ,1,3168,398040 ,1,3170,398040 ,1,3171,395220 ,1,3172,395220 ,1,3174,398040 ,1,3175,398040 ,1,3176,398040 ,1,3178,398040 ,1,3179,398040 ,1,3184,398040 ,1,3185,398040 ,1,3187,398040 ,1,3189,398040 ,1,3190,395215 ,1,3191,398040 ,1,3192,395210 ,1,3193,395210 ,1,3195,395205 ,1,3196,395205 ,1,3197,398040 ,1,3198,398040 ,1,3199,398040 ,1,3200,398040 ,1,3203,398040 ,1,3204,395175 ,1,3206,398040 ,1,3207,398040 ,1,3208,398040 ,1,3209,398040 ,1,3210,416335 ,1,3211,398040 ,1,3212,398040 ,1,3213,395170 ,1,3214,395165 ,1,3216,398040 ,1,3217,398040 ,1,3221,398040 ,1,3223,398040 ,1,3224,398040 ,1,3225,398040 ,1,3226,398040 ,1,3227,398040 ,1,3228,398040 ,1,3229,398040 ,1,3230,398040 ,1,3231,398040 ,1,3232,398040 ,1,3234,398040 ,1,3235,398040 ,1,3236,395160 ,1,3237,395155 ,1,3238,398040 ,1,3239,398040 ,1,3240,398040 ,1,3241,398040 ,1,3242,398040 ,1,3243,398040 ,1,3244,398040 ,1,3246,398040 ,1,3247,398040 ,1,3248,398040 ,1,3250,398040 ,1,3251,398040 ,1,3252,398040 ,1,3253,398040 ,1,3255,398040 ,1,3256,398040 ,1,3258,398040 ,1,3259,398040 ,1,3260,395150 ,1,3261,398040 ,1,3262,398040 ,1,3264,398040 ,1,3267,398040 ,1,3268,416325 ,1,3269,416325 ,1,3270,398040 ,1,3271,398040 ,1,3273,395145 ,1,3275,398040 ,1,3276,398040 ,1,3277,398040 ,1,3279,398040 ,1,3280,398040 ,1,3281,395140 ,1,3283,398040 ,1,3284,398040 ,1,3285,398040 ,1,3287,398040 ,1,3288,398040 ,1,3289,398040 ,1,3290,398040 ,1,3291,398040 ,1,3292,398040 ,1,3293,398040 ,1,3294,398040 ,1,3295,398040 ,1,3296,398040 ,1,3297,398040 ,1,3298,398040 ,1,3301,398040 ,1,3302,398040 ,1,3303,398040 ,1,3304,398040 ,1,3305,398040 ,1,3306,398040 ,1,3307,398040 ,1,3308,398040 ,1,3309,395105 ,1,3311,395100 ,1,3312,398040 ,1,3314,398040 ,1,3315,398040 ,1,3316,398040 ,1,3317,398040 ,1,3318,398040 ,1,3325,398040 ,1,3326,398040 ,1,3327,398040 ,1,3328,398040 ,1,3329,398040 ,1,3330,398040 ,1,3331,398040 ,1,3332,398040 ,1,3333,398040 ,1,3334,398040 ,1,3335,398040 ,1,3336,398040 ,1,3337,398040 ,1,3338,416320 ,1,3339,398040 ,1,3340,398040 ,1,3341,398040 ,1,3342,398040 ,1,3343,398040 ,1,3344,398040 ,1,3345,398040 ,1,3346,398040 ,1,3347,398040 ,1,3348,398040 ,1,3349,398040 ,1,3350,416315 ,1,3352,398040 ,1,3353,398040 ,1,3354,398040 ,1,3355,395095 ,1,3356,416310 ,1,3357,395090 ,1,3358,395085 ,1,3359,395080 ,1,3361,395075 ,1,3362,395070 ,1,3363,395070 ,1,3364,398040 ,1,3366,398040 ,1,3367,398040 ,1,3368,395055 ,1,3369,395050 ,1,3370,416275 ,1,3371,416270 ,1,3374,416265 ,1,3375,416265 ,1,3376,416260 ,1,3380,395045 ,1,3381,395045 ,1,3382,395045 ,1,3383,395045 ,1,3387,395040 ,1,3388,395035 ,1,3390,395030 ,1,3391,395025 ,1,3392,395020 ,1,3393,394985 ,1,3394,394980 ,1,3395,394975 ,1,3396,394970 ,1,3397,394970 ,1,3398,394965 ,1,3399,394960 ,1,3400,394960 ,1,3401,394960 ,1,3403,394955 ,1,3404,394955 ,1,3406,394950 ,1,3409,416255 ,1,3411,394930 ,1,3412,394925 ,1,3413,416250 ,1,3414,416245 ,1,3415,416240 ,1,3417,394920 ,1,3418,394920 ,1,3419,394915 ,1,3420,394915 ,1,3421,394900 ,1,3422,394890 ,1,3423,394890 ,1,3426,394885 ,1,3429,416225 ,1,3430,394860 ,1,3431,394855 ,1,3440,394850 ,1,3441,394850 ,1,3444,394845 ,1,3445,394840 ,1,3446,416220 ,1,3447,416215 ,1,3448,394835 ,1,3449,416210 ,1,3450,394830 ,1,3451,394825 ,1,3452,394795 ,1,3457,394790 ,1,3458,394790 ,1,3461,394785 ,1,3462,394785 ,1,3464,394780 ,1,3466,394775 ,1,3467,394775 ,1,3473,394770 ,1,3474,394770 ,1,3477,394765 ,1,3479,394760 ,1,3480,394745 ,1,3482,394740 ,1,3484,394735 ,1,3485,394735 ,1,3486,394735 ,1,3487,394730 ,1,3488,394720 ,1,3489,394720 ,1,3490,394720 ,1,3491,394715 ,1,3492,394710 ,1,3493,394705 ,1,3494,394685 ,1,3496,394680 ,1,3497,394675 ,1,3498,394675 ,1,3500,394670 ,1,3501,394660 ,1,3502,394660 ,1,3503,394655 ,1,3504,394655 ,1,3510,416200 ,1,3511,416200 ,1,3512,394650 ,1,3513,394645 ,1,3515,394615 ,1,3516,394610 ,1,3519,394605 ,1,3521,394600 ,1,3522,394600 ,1,3524,394595 ,1,3527,416195 ,1,3530,394590 ,1,3531,416190 ,1,3532,416185 ,1,3533,416155 ,1,3537,394585 ,1,3538,394585 ,1,3540,394580 ,1,3541,394565 ,1,3542,394560 ,1,3545,394555 ,1,3546,394550 ,1,3548,394535 ,1,3550,394530 ,1,3551,394525 ,1,3552,394520 ,1,3553,416150 ,1,3556,394475 ,1,3558,394470 ,1,3562,394465 ,1,3563,394460 ,1,3566,394440 ,1,3567,394440 ,1,3568,394440 ,1,3569,394440 ,1,3570,394435 ,1,3571,394430 ,1,3580,394425 ,1,3581,394410 ,1,3582,394410 ,1,3583,394410 ,1,3584,394405 ,1,3585,394400 ,1,3586,394395 ,1,3587,394390 ,1,3588,394390 ,1,3589,394385 ,1,3590,416145 ,1,3591,394380 ,1,3594,394375 ,1,3600,394355 ,1,3602,394350 ,1,3604,416140 ,1,3605,416140 ,1,3608,394345 ,1,3609,394345 ,1,3610,394340 ,1,3611,394340 ,1,3612,394340 ,1,3613,394340 ,1,3619,394330 ,1,3620,394330 ,1,3621,394330 ,1,3622,394325 ,1,3623,394330 ,1,3624,394320 ,1,3632,394315 ,1,3633,394315 ,1,3634,394290 ,1,3635,394290 ,1,3636,394290 ,1,3637,394290 ,1,3640,394285 ,1,3643,394280 ,1,3644,394280 ,1,3645,394275 ,1,3646,394280 ,1,3647,394280 ,1,3648,394280 ,1,3649,394270 ,1,3650,394265 ,1,3652,416130 ,1,3655,394260 ,1,3656,394255 ,1,3657,394260 ,1,3658,394260 ,1,3660,394220 ,1,3662,394215 ,1,3663,394215 ,1,3666,394210 ,1,3669,416125 ,1,3674,416120 ,1,3675,416115 ,1,3676,416095 ,1,3678,394205 ,1,3679,394205 ,1,3680,394205 ,1,3681,394205 ,1,3682,394205 ,1,3683,416090 ,1,3684,394200 ,1,3685,394195 ,1,3686,394190 ,1,3687,394185 ,1,3688,394175 ,1,3689,394170 ,1,3690,394165 ,1,3691,394160 ,1,3693,416085 ,1,3703,416080 ,1,3706,394150 ,1,3707,394150 ,1,3711,394145 ,1,3712,394145 ,1,3713,394145 ,1,3714,394145 ,1,3718,394140 ,1,3719,394140 ,1,3725,416065 ,1,3727,416060 ,1,3728,416060 ,1,3729,394135 ,1,3731,394105 ,1,3732,394100 ,1,3733,394100 ,1,3735,394095 ,1,3738,416055 ,1,3739,394090 ,1,3744,394085 ,1,3745,394085 ,1,3746,394085 ,1,3747,394085 ,1,3751,394080 ,1,3752,394080 ,1,3757,394075 ,1,3762,394070 ,1,3763,394070 ,1,3764,394035 ,1,3765,394030 ,1,3766,394035 ,1,3767,394035 ,1,3771,394025 ,1,3772,394025 ,1,3774,416050 ,1,3775,416025 ,1,3776,416020 ,1,3777,416015 ,1,3778,394020 ,1,3779,416010 ,1,3780,394010 ,1,3782,393960 ,1,3783,393885 ,1,3784,393880 ,1,3785,393800 ,1,3787,393795 ,1,3788,393745 ,1,3789,393740 ,1,3790,393735 ,1,3791,393730 ,1,3792,393730 ,1,3793,393725 ,1,3794,393670 ,1,3795,393665 ,1,3796,393665 ,1,3797,393660 ,1,3798,393655 ,1,3799,393650 ,1,3800,393645 ,1,3801,393640 ,1,3802,393630 ,1,3803,393625 ,1,3804,393620 ,1,3805,393615 ,1,3807,393605 ,1,3808,393600 ,1,3811,393595 ,1,3814,393590 ,1,3815,393570 ,1,3816,393570 ,1,3817,393590 ,1,3818,393590 ,1,3821,393565 ,1,3822,393560 ,1,3823,393565 ,1,3824,393565 ,1,3826,393555 ,1,3827,393540 ,1,3828,393535 ,1,3829,393535 ,1,3830,393530 ,1,3831,393530 ,1,3832,393525 ,1,3833,393490 ,1,3834,416000 ,1,3836,393485 ,1,3837,415995 ,1,3838,415995 ,1,3840,393480 ,1,3841,393480 ,1,3842,393480 ,1,3847,393475 ,1,3848,393475 ,1,3849,393475 ,1,3850,393475 ,1,3851,393470 ,1,3852,393470 ,1,3854,393470 ,1,3867,393465 ,1,3868,393460 ,1,3869,393460 ,1,3870,393460 ,1,3871,393460 ,1,3872,393455 ,1,3873,393455 ,1,3879,393435 ,1,3881,415990 ,1,3882,415990 ,1,3883,393430 ,1,3885,393425 ,1,3886,393425 ,1,3888,393420 ,1,3889,393410 ,1,3891,415985 ,1,3893,415970 ,1,3894,415965 ,1,3895,415965 ,1,3896,393405 ,1,3897,393405 ,1,3898,393405 ,1,3899,393405 ,1,3900,415960 ,1,3901,393400 ,1,3903,415955 ,1,3904,415955 ,1,3905,393395 ,1,3906,393395 ,1,3911,393365 ,1,3912,393365 ,1,3914,393360 ,1,3918,393355 ,1,3919,393355 ,1,3920,393355 ,1,3921,393340 ,1,3922,393340 ,1,3923,393335 ,1,3924,393335 ,1,3925,393330 ,1,3926,393305 ,1,3927,393300 ,1,3929,393295 ,1,3930,393295 ,1,3931,415950 ,1,3933,393290 ,1,3934,393290 ,1,3935,393280 ,1,3936,393280 ,1,3937,415945 ,1,3938,415940 ,1,3939,415935 ,1,3940,415940 ,1,3941,415940 ,1,3942,415900 ,1,3943,415895 ,1,3947,393270 ,1,3948,393270 ,1,3949,415890 ,1,3950,415890 ,1,3953,393265 ,1,3954,393265 ,1,3955,393265 ,1,3956,393265 ,1,3958,393250 ,1,3959,393245 ,1,3965,393240 ,1,3966,393240 ,1,3968,393235 ,1,3969,393230 ,1,3973,393225 ,1,3974,393225 ,1,3976,393220 ,1,3977,393215 ,1,3978,393215 ,1,3982,393195 ,1,3984,393190 ,1,3986,415885 ,1,3987,415885 ,1,3989,415880 ,1,3990,415880 ,1,3992,415880 ,1,3993,393185 ,1,3994,393185 ,1,3995,393180 ,1,3997,393170 ,1,3998,393165 ,1,3999,393165 ,1,4000,393160 ,1,4001,393155 ,1,4003,415875 ,1,4004,415875 ,1,4006,415875 ,1,4007,415870 ,1,4008,393140 ,1,4009,393135 ,1,4011,393135 ,1,4012,393135 ,1,4013,393135 ,1,4015,393130 ,1,4016,393135 ,1,4017,393135 ,1,4018,393135 ,1,4019,393135 ,1,4020,393135 ,1,4022,415865 ,1,4023,415855 ,1,4028,393125 ,1,4029,393120 ,1,4030,393125 ,1,4031,393125 ,1,4035,393115 ,1,4036,393115 ,1,4043,393110 ,1,4044,393110 ,1,4045,415850 ,1,4046,393105 ,1,4047,393070 ,1,4048,415850 ,1,4049,415850 ,1,4050,393065 ,1,4051,415850 ,1,4052,415850 ,1,4053,393060 ,1,4054,393055 ,1,4056,393045 ,1,4058,393040 ,1,4059,393035 ,1,4061,393030 ,1,4062,415845 ,1,4063,393020 ,1,4064,393015 ,1,4066,415840 ,1,4067,415835 ,1,4068,415830 ,1,4069,415825 ,1,4070,415820 ,1,4071,415775 ,1,4072,415770 ,1,4073,415765 ,1,4074,393010 ,1,4075,393005 ,1,4076,392995 ,1,4077,392990 ,1,4078,392985 ,1,4079,392980 ,1,4080,392980 ,1,4081,392935 ,1,4082,392935 ,1,4083,392930 ,1,4084,392925 ,1,4085,392920 ,1,4087,392915 ,1,4088,392915 ,1,4090,392910 ,1,4094,415760 ,1,4095,415760 ,1,4096,415760 ,1,4098,415760 ,1,4099,415760 ,1,4100,415760 ,1,4101,415760 ,1,4102,415760 ,1,4103,415760 ,1,4104,415760 ,1,4105,415760 ,1,4106,415760 ,1,4107,415760 ,1,4108,415760 ,1,4109,415760 ,1,4112,415760 ,1,4113,415760 ,1,4114,415760 ,1,4115,415760 ,1,4116,415760 ,1,4117,415760 ,1,4118,392905 ,1,4119,392905 ,1,4120,392905 ,1,4122,392900 ,1,4123,392900 ,1,4124,392900 ,1,4126,392865 ,1,4127,392865 ,1,4128,392865 ,1,4129,392900 ,1,4132,392845 ,1,4133,392900 ,1,4134,392830 ,1,4135,392815 ,1,4136,392810 ,1,4137,392900 ,1,4138,392900 ,1,4139,392900 ,1,4146,392900 ,1,4147,392900 ,1,4148,392900 ,1,4149,392900 ,1,4150,392900 ,1,4151,392900 ,1,4152,392900 ,1,4153,415755 ,1,4155,392900 ,1,4156,392900 ,1,4158,415750 ,1,4159,415750 ,1,4161,415745 ,1,4162,415745 ,1,4163,415745 ,1,4164,415745 ,1,4165,392900 ,1,4167,392900 ,1,4168,392900 ,1,4169,392900 ,1,4170,392900 ,1,4171,392900 ,1,4172,392900 ,1,4173,392900 ,1,4174,392900 ,1,4175,392900 ,1,4176,392900 ,1,4177,392900 ,1,4180,392900 ,1,4182,392900 ,1,4183,392900 ,1,4184,392900 ,1,4185,392900 ,1,4186,392900 ,1,4187,392805 ,1,4188,392805 ,1,4189,392805 ,1,4190,392805 ,1,4191,392805 ,1,4192,392805 ,1,4193,392805 ,1,4194,392805 ,1,4195,392805 ,1,4196,392805 ,1,4197,392805 ,1,4198,392805 ,1,4199,392805 ,1,4200,392805 ,1,4201,392805 ,1,4202,392805 ,1,4203,392805 ,1,4204,392805 ,1,4205,392805 ,1,4206,392805 ,1,4207,392805 ,1,4208,392805 ,1,4209,392805 ,1,4210,392805 ,1,4211,392805 ,1,4212,392805 ,1,4213,392805 ,1,4214,392805 ,1,4215,392805 ,1,4216,392805 ,1,4217,392805 ,1,4218,392805 ,1,4219,392805 ,1,4220,392805 ,1,4221,392805 ,1,4222,392805 ,1,4223,392805 ,1,4224,392805 ,1,4225,392805 ,1,4226,392805 ,1,4227,392805 ,1,4228,392805 ,1,4229,392900 ,1,4230,392900 ,1,4231,392800 ,1,4235,392790 ,1,4236,392785 ,1,4238,392780 ,1,4239,415740 ,1,4240,392775 ,1,4241,392760 ,1,4242,392755 ,1,4243,392600 ,1,4245,392900 ,1,4246,392900 ,1,4247,392565 ,1,4248,392560 ,1,4249,392900 ,1,4251,392900 ,1,4252,392900 ,1,4254,415710 ,1,4255,392900 ,1,4256,392900 ,1,4257,392900 ,1,4258,392900 ,1,4259,392900 ,1,4260,392900 ,1,4262,392900 ,1,4263,392900 ,1,4265,392900 ,1,4266,392900 ,1,4267,392900 ,1,4269,392900 ,1,4270,392900 ,1,4271,392900 ,1,4272,392900 ,1,4273,392900 ,1,4275,392900 ,1,4276,392900 ,1,4277,392900 ,1,4280,392900 ,1,4282,392555 ,1,4284,415705 ,1,4286,392900 ,1,4287,392900 ,1,4288,392900 ,1,4289,392900 ,1,4290,392900 ,1,4291,392900 ,1,4292,392900 ,1,4293,392900 ,1,4294,392900 ,1,4295,392900 ,1,4296,392900 ,1,4297,392900 ,1,4298,392900 ,1,4299,392900 ,1,4300,392900 ,1,4301,392900 ,1,4302,392900 ,1,4303,392900 ,1,4304,392900 ,1,4305,392900 ,1,4306,392900 ,1,4307,392900 ,1,4308,392900 ,1,4309,392900 ,1,4310,392900 ,1,4311,392900 ,1,4312,392900 ,1,4313,392900 ,1,4314,392900 ,1,4315,392900 ,1,4316,392900 ,1,4317,392900 ,1,4318,392900 ,1,4319,392900 ,1,4320,392900 ,1,4321,392900 ,1,4322,392900 ,1,4323,392900 ,1,4324,392900 ,1,4325,392900 ,1,4326,392900 ,1,4327,392550 ,1,4328,392550 ,1,4329,392540 ,1,4330,392550 ,1,4331,392550 ,1,4332,392900 ,1,4333,392900 ,1,4335,392900 ,1,4336,392900 ,1,4337,392900 ,1,4338,392900 ,1,4340,392900 ,1,4341,392900 ,1,4342,392900 ,1,4343,392900 ,1,4344,392900 ,1,4345,392900 ,1,4346,392900 ,1,4347,392900 ,1,4348,392900 ,1,4349,392900 ,1,4350,392900 ,1,4352,392900 ,1,4353,392900 ,1,4354,392900 ,1,4355,392535 ,1,4356,392900 ,1,4357,392900 ,1,4360,392900 ,1,4373,392900 ,1,4374,392900 ,1,4375,392900 ,1,4376,392900 ,1,4377,392900 ,1,4378,392900 ,1,4380,392900 ,1,4381,392900 ,1,4383,392530 ,1,4384,392525 ,1,4387,392515 ,1,4388,392515 ,1,4389,392515 ,1,4390,392900 ,1,4395,392510 ,1,4396,392510 ,1,4399,392505 ,1,4401,392900 ,1,4403,415700 ,1,4404,415700 ,1,4405,415700 ,1,4406,392900 ,1,4408,415695 ,1,4409,392900 ,1,4410,392900 ,1,4411,392500 ,1,4413,392900 ,1,4414,392900 ,1,4416,392495 ,1,4417,392490 ,1,4419,392485 ,1,4420,392900 ,1,4421,392900 ,1,4422,392900 ,1,4424,392900 ,1,4426,415690 ,1,4427,392900 ,1,4428,415685 ,1,4429,415680 ,1,4431,392480 ,1,4432,392480 ,1,4435,392455 ,1,4436,392900 ,1,4437,415675 ,1,4438,415660 ,1,4439,415655 ,1,4441,392450 ,1,4442,392450 ,1,4444,415650 ,1,4445,392445 ,1,4446,415645 ,1,4447,415640 ,1,4448,392440 ,1,4449,392430 ,1,4450,415635 ,1,4451,415635 ,1,4453,392900 ,1,4456,392425 ,1,4457,392425 ,1,4458,392425 ,1,4459,392425 ,1,4460,392425 ,1,4461,392425 ,1,4462,392900 ,1,4463,392420 ,1,4464,415630 ,1,4465,392415 ,1,4467,392900 ,1,4468,392900 ,1,4469,392900 ,1,4470,392900 ,1,4471,415625 ,1,4472,415595 ,1,4473,392900 ,1,4475,392900 ,1,4476,392375 ,1,4478,392370 ,1,4479,392370 ,1,4480,392900 ,1,4484,392365 ,1,4485,392365 ,1,4486,392360 ,1,4487,392365 ,1,4488,392365 ,1,4489,392360 ,1,4490,392360 ,1,4491,415590 ,1,4492,415585 ,1,4493,415580 ,1,4494,392350 ,1,4495,392900 ,1,4497,392900 ,1,4498,392345 ,1,4500,392900 ,1,4501,392340 ,1,4502,392335 ,1,4503,415575 ,1,4505,392320 ,1,4506,392320 ,1,4508,392900 ,1,4509,392900 ,1,4510,392900 ,1,4511,392315 ,1,4512,392900 ,1,4514,392900 ,1,4515,392900 ,1,4516,392900 ,1,4517,392900 ,1,4518,392900 ,1,4519,415570 ,1,4520,392900 ,1,4521,415565 ,1,4522,415560 ,1,4525,392310 ,1,4526,392310 ,1,4527,392310 ,1,4528,415550 ,1,4529,392900 ,1,4530,392900 ,1,4531,392900 ,1,4532,392305 ,1,4533,392300 ,1,4534,392295 ,1,4535,392290 ,1,4536,392285 ,1,4537,392275 ,1,4538,392270 ,1,4539,392265 ,1,4540,392260 ,1,4541,392250 ,1,4542,392250 ,1,4543,392250 ,1,4544,392250 ,1,4545,392250 ,1,4547,392250 ,1,4549,392250 ,1,4550,392245 ,1,4551,415545 ,1,4553,392900 ,1,4554,392900 ,1,4557,392240 ,1,4558,392900 ,1,4559,415540 ,1,4560,392900 ,1,4561,415535 ,1,4562,415530 ,1,4563,392235 ,1,4564,415525 ,1,4565,415520 ,1,4567,392900 ,1,4568,392900 ,1,4569,392900 ,1,4571,392225 ,1,4574,392220 ,1,4575,392900 ,1,4576,392215 ,1,4578,392900 ,1,4580,392900 ,1,4581,392900 ,1,4583,392900 ,1,4584,392200 ,1,4585,392195 ,1,4586,392190 ,1,4587,392185 ,1,4588,392135 ,1,4589,415515 ,1,4590,415480 ,1,4591,392900 ,1,4592,392900 ,1,4593,392900 ,1,4594,392900 ,1,4595,392900 ,1,4596,392900 ,1,4597,392900 ,1,4598,392130 ,1,4599,392125 ,1,4601,392120 ,1,4605,392900 ,1,4609,392900 ,1,4610,392115 ,1,4611,392115 ,1,4612,392110 ,1,4613,392900 ,1,4614,392105 ,1,4615,392105 ,1,4616,392100 ,1,4619,392090 ,1,4620,392090 ,1,4621,392090 ,1,4622,392090 ,1,4623,392900 ,1,4624,392900 ,1,4625,392900 ,1,4626,392900 ,1,4627,392900 ,1,4628,392085 ,1,4629,392080 ,1,4630,392075 ,1,4631,392060 ,1,4632,392060 ,1,4634,392900 ,1,4635,415475 ,1,4636,392900 ,1,4637,392900 ,1,4638,415470 ,1,4639,392055 ,1,4640,415465 ,1,4641,392050 ,1,4642,392045 ,1,4643,415455 ,1,4644,392030 ,1,4648,415450 ,1,4649,392900 ,1,4650,392025 ,1,4652,415445 ,1,4653,415440 ,1,4654,415420 ,1,4657,392900 ,1,4658,415415 ,1,4659,392900 ,1,4662,392900 ,1,4663,392900 ,1,4664,392900 ,1,4665,392900 ,1,4666,392900 ,1,4667,392900 ,1,4668,392020 ,1,4670,392900 ,1,4671,392015 ,1,4672,392900 ,1,4673,392010 ,1,4674,415410 ,1,4675,415405 ,1,4676,415400 ,1,4677,415395 ,1,4678,392005 ,1,4679,415390 ,1,4680,392900 ,1,4682,392900 ,1,4683,415385 ,1,4684,392000 ,1,4685,391995 ,1,4687,391995 ,1,4691,391970 ,1,4692,391965 ,1,4694,391960 ,1,4696,391955 ,1,4699,391950 ,1,4700,391945 ,1,4701,391940 ,1,4702,391955 ,1,4703,391935 ,1,4704,391910 ,1,4705,391905 ,1,4707,391900 ,1,4708,391895 ,1,4709,391895 ,1,4714,415355 ,1,4715,391885 ,1,4716,392900 ,1,4717,392900 ,1,4718,392900 ,1,4720,415350 ,1,4721,391880 ,1,4722,392900 ,1,4723,392900 ,1,4724,415345 ,1,4725,392900 ,1,4727,392900 ,1,4728,391875 ,1,4729,391870 ,1,4730,391845 ,1,4731,392900 ,1,4732,392900 ,1,4733,391840 ,1,4734,391835 ,1,4736,391830 ,1,4738,391825 ,1,4739,391820 ,1,4740,392900 ,1,4741,392900 ,1,4742,392900 ,1,4743,392900 ,1,4745,391815 ,1,4747,392900 ,1,4749,391810 ,1,4750,391810 ,1,4751,391810 ,1,4754,415340 ,1,4756,391795 ,1,4757,392900 ,1,4758,415330 ,1,4759,415325 ,1,4760,391790 ,1,4761,415320 ,1,4763,391785 ,1,4764,391785 ,1,4765,391780 ,1,4766,391775 ,1,4767,415315 ,1,4768,415300 ,1,4769,415295 ,1,4770,415290 ,1,4771,391770 ,1,4773,391765 ,1,4774,391760 ,1,4775,391750 ,1,4776,415285 ,1,4777,392900 ,1,4778,392900 ,1,4779,415275 ,1,4782,392900 ,1,4784,392900 ,1,4785,392900 ,1,4786,391745 ,1,4787,391740 ,1,4788,391740 ,1,4789,391740 ,1,4790,391740 ,1,4791,391740 ,1,4792,391740 ,1,4793,391735 ,1,4794,391725 ,1,4795,391720 ,1,4797,392900 ,1,4799,391715 ,1,4800,391715 ,1,4801,392900 ,1,4802,392900 ,1,4803,415270 ,1,4804,415265 ,1,4806,392900 ,1,4807,392900 ,1,4809,392900 ,1,4810,392900 ,1,4813,415260 ,1,4814,392900 ,1,4818,415220 ,1,4819,392900 ,1,4820,391710 ,1,4821,392900 ,1,4822,392900 ,1,4823,415215 ,1,4824,415210 ,1,4827,391675 ,1,4828,391670 ,1,4829,391675 ,1,4831,391665 ,1,4832,391660 ,1,4833,391645 ,1,4834,391640 ,1,4835,391635 ,1,4836,391630 ,1,4838,391675 ,1,4839,391675 ,1,4840,415205 ,1,4842,391620 ,1,4843,391615 ,1,4844,415200 ,1,4845,415200 ,1,4847,392900 ,1,4849,391610 ,1,4851,392900 ,1,4855,391605 ,1,4858,391595 ,1,4859,391590 ,1,4860,391585 ,1,4861,391545 ,1,4862,392900 ,1,4863,415195 ,1,4864,415190 ,1,4866,392900 ,1,4867,415185 ,1,4870,392900 ,1,4871,392900 ,1,4872,392900 ,1,4873,392900 ,1,4874,391540 ,1,4875,391540 ,1,4876,415175 ,1,4877,392900 ,1,4878,391535 ,1,4879,391530 ,1,4880,391520 ,1,4882,392900 ,1,4883,392900 ,1,4884,392900 ,1,4885,392900 ,1,4886,392900 ,1,4887,392900 ,1,4888,392900 ,1,4889,391515 ,1,4890,415170 ,1,4891,415165 ,1,4892,392900 ,1,4893,392900 ,1,4894,392900 ,1,4895,392900 ,1,4896,415160 ,1,4897,392900 ,1,4898,392900 ,1,4899,392900 ,1,4900,392900 ,1,4901,392900 ,1,4902,392900 ,1,4903,392900 ,1,4904,391510 ,1,4905,391510 ,1,4906,391510 ,1,4907,391505 ,1,4908,391475 ,1,4909,391470 ,1,4910,392900 ,1,4911,415150 ,1,4912,391465 ,1,4913,391460 ,1,4914,391450 ,1,4915,391445 ,1,4917,391440 ,1,4918,391435 ,1,4921,392900 ,1,4922,391425 ,1,4923,392900 ,1,4927,391420 ,1,4929,391420 ,1,4931,391420 ,1,4932,391420 ,1,4933,391420 ,1,4936,391420 ,1,4937,391420 ,1,4938,391420 ,1,4939,391420 ,1,4940,391420 ,1,4941,415145 ,1,4942,392900 ,1,4943,392900 ,1,4944,392900 ,1,4945,392900 ,1,4946,415140 ,1,4947,415135 ,1,4950,391415 ,1,4953,391415 ,1,4954,391415 ,1,4955,391415 ,1,4956,391415 ,1,4957,391415 ,1,4958,391415 ,1,4959,391415 ,1,4960,391415 ,1,4961,391415 ,1,4962,391415 ,1,4963,391415 ,1,4964,391415 ,1,4968,415095 ,1,4969,391410 ,1,4972,415095 ,1,4973,415095 ,1,4974,391405 ,1,4975,391405 ,1,4977,391405 ,1,4978,415095 ,1,4979,415095 ,1,4980,391405 ,1,4981,415095 ,1,4982,415095 ,1,4983,391405 ,1,4984,391400 ,1,4985,391405 ,1,4986,391405 ,1,4990,391405 ,1,4991,391395 ,1,4992,415095 ,1,4993,415095 ,1,4995,415095 ,1,4997,415095 ,1,4998,415095 ,1,5002,415095 ,1,5005,415095 ,1,5006,415095 ,1,5007,415095 ,1,5009,415095 ,1,5010,415095 ,1,5014,415095 ,1,5015,415095 ,1,5017,415095 ,1,5019,415095 ,1,5021,415095 ,1,5023,415095 ,1,5026,415095 ,1,5027,415095 ,1,5028,415095 ,1,5029,415095 ,1,5030,415095 ,1,5031,415095 ,1,5032,415095 ,1,5033,415095 ,1,5034,415095 ,1,5035,415095 ,1,5036,415095 ,1,5037,415095 ,1,5038,415095 ,1,5039,415095 ,1,5040,415095 ,1,5041,415095 ,1,5042,415095 ,1,5043,415095 ,1,5046,415095 ,1,5047,415095 ,1,5048,415095 ,1,5049,415095 ,1,5050,415095 ,1,5053,415095 ,1,5054,415095 ,1,5055,415095 ,1,5056,415095 ,1,5057,415095 ,1,5059,415095 ,1,5060,415095 ,1,5061,415095 ,1,5062,415095 ,1,5063,415095 ,1,5065,415095 ,1,5066,415095 ,1,5067,415095 ,1,5068,415095 ,1,5070,415095 ,1,5071,415095 ,1,5072,415095 ,1,5073,415095 ,1,5076,415095 ,1,5079,392900 ,1,5080,392900 ,1,5083,391390 ,1,5084,391360 ,1,5086,391355 ,1,5087,391350 ,1,5088,391350 ,1,5090,392900 ,1,5093,391345 ,1,5094,391345 ,1,5095,391345 ,1,5096,391345 ,1,5097,391345 ,1,5098,391345 ,1,5099,391345 ,1,5100,391345 ,1,5101,391340 ,1,5102,391345 ,1,5103,391345 ,1,5104,391345 ,1,5105,392900 ,1,5106,392900 ,1,5107,391335 ,1,5108,415090 ,1,5109,415085 ,1,5110,391335 ,1,5111,391335 ,1,5112,391330 ,1,5113,392900 ,1,5114,391325 ,1,5115,391325 ,1,5116,392900 ,1,5117,392900 ,1,5118,392900 ,1,5119,415080 ,1,5121,391315 ,1,5123,391310 ,1,5124,391310 ,1,5128,392900 ,1,5131,392900 ,1,5132,392900 ,1,5133,391305 ,1,5135,391305 ,1,5136,391305 ,1,5137,391300 ,1,5141,391295 ,1,5142,391295 ,1,5143,391295 ,1,5145,391290 ,1,5146,391285 ,1,5147,391285 ,1,5148,391285 ,1,5149,391280 ,1,5150,391275 ,1,5151,392900 ,1,5152,392900 ,1,5153,392900 ,1,5154,392900 ,1,5156,391270 ,1,5157,391270 ,1,5160,391270 ,1,5162,391270 ,1,5164,391270 ,1,5165,391270 ,1,5166,391270 ,1,5167,391270 ,1,5168,391270 ,1,5169,391270 ,1,5170,391270 ,1,5173,391270 ,1,5174,391270 ,1,5175,391270 ,1,5176,391270 ,1,5178,391270 ,1,5181,391270 ,1,5182,391270 ,1,5184,391270 ,1,5185,391270 ,1,5187,391270 ,1,5188,391270 ,1,5189,391270 ,1,5190,391270 ,1,5192,391270 ,1,5193,391270 ,1,5194,391270 ,1,5197,391270 ,1,5198,391270 ,1,5199,391270 ,1,5200,391270 ,1,5201,391270 ,1,5202,391270 ,1,5203,391270 ,1,5204,391270 ,1,5205,391270 ,1,5206,391270 ,1,5207,391270 ,1,5208,391270 ,1,5209,391270 ,1,5210,391270 ,1,5212,391265 ,1,5213,391265 ,1,5215,391265 ,1,5216,391270 ,1,5217,391270 ,1,5218,391270 ,1,5219,391270 ,1,5220,391270 ,1,5221,391270 ,1,5222,391270 ,1,5223,391270 ,1,5224,391270 ,1,5225,391270 ,1,5226,391270 ,1,5227,391270 ,1,5228,391270 ,1,5229,391270 ,1,5231,391270 ,1,5233,391270 ,1,5234,391270 ,1,5235,391270 ,1,5236,391270 ,1,5237,391270 ,1,5238,391270 ,1,5239,391270 ,1,5240,391270 ,1,5241,391270 ,1,5242,391260 ,1,5243,391260 ,1,5244,391260 ,1,5245,391260 ,1,5246,391270 ,1,5247,391270 ,1,5248,391270 ,1,5250,391270 ,1,5252,391270 ,1,5253,391270 ,1,5254,391270 ,1,5256,391250 ,1,5258,391270 ,1,5261,391270 ,1,5263,391270 ,1,5264,391270 ,1,5266,391270 ,1,5267,415070 ,1,5268,391270 ,1,5269,391270 ,1,5270,391270 ,1,5271,415065 ,1,5272,391270 ,1,5273,415060 ,1,5274,391270 ,1,5275,391270 ,1,5276,415055 ,1,5277,391270 ,1,5278,391270 ,1,5280,391270 ,1,5281,391270 ,1,5282,391270 ,1,5283,391270 ,1,5284,391270 ,1,5285,391270 ,1,5288,391245 ,1,5289,391270 ,1,5290,391270 ,1,5292,391270 ,1,5295,391270 ,1,5296,391270 ,1,5298,391270 ,1,5300,391270 ,1,5301,391270 ,1,5303,391270 ,1,5304,415030 ,1,5305,391270 ,1,5306,391270 ,1,5307,391270 ,1,5308,415025 ,1,5309,391270 ,1,5310,415020 ,1,5311,391270 ,1,5313,391270 ,1,5314,391270 ,1,5315,391270 ,1,5316,391270 ,1,5317,391270 ,1,5319,391270 ,1,5320,391270 ,1,5323,391270 ,1,5325,391270 ,1,5326,391270 ,1,5327,391270 ,1,5328,391270 ,1,5329,391270 ,1,5330,415015 ,1,5331,391270 ,1,5332,415005 ,1,5333,391270 ,1,5335,391270 ,1,5336,391240 ,1,5337,391270 ,1,5339,391270 ,1,5341,391270 ,1,5342,391270 ,1,5343,391270 ,1,5344,391270 ,1,5345,391270 ,1,5346,391235 ,1,5347,391270 ,1,5348,391270 ,1,5349,391270 ,1,5351,391270 ,1,5352,391270 ,1,5353,391270 ,1,5355,391270 ,1,5356,391270 ,1,5357,391270 ,1,5359,391270 ,1,5360,391270 ,1,5361,391220 ,1,5362,391270 ,1,5363,391215 ,1,5364,391210 ,1,5365,391205 ,1,5366,391200 ,1,5367,391195 ,1,5368,391270 ,1,5369,391270 ,1,5370,391270 ,1,5371,391270 ,1,5372,391270 ,1,5374,391270 ,1,5375,391270 ,1,5376,391270 ,1,5378,391270 ,1,5379,391270 ,1,5380,391270 ,1,5381,391270 ,1,5382,391270 ,1,5383,391270 ,1,5384,391270 ,1,5385,391270 ,1,5386,391270 ,1,5388,391270 ,1,5392,391270 ,1,5393,391270 ,1,5394,391270 ,1,5395,391270 ,1,5397,391270 ,1,5398,391270 ,1,5400,391270 ,1,5401,391270 ,1,5402,391270 ,1,5403,391270 ,1,5404,391270 ,1,5406,391270 ,1,5407,391270 ,1,5408,391270 ,1,5409,391270 ,1,5410,391270 ,1,5411,391270 ,1,5412,391270 ,1,5413,391270 ,1,5415,391270 ,1,5416,391270 ,1,5417,391270 ,1,5418,391270 ,1,5420,391270 ,1,5421,391270 ,1,5422,391270 ,1,5423,391270 ,1,5424,391270 ,1,5425,391270 ,1,5426,391270 ,1,5427,391270 ,1,5428,391270 ,1,5429,391270 ,1,5430,391270 ,1,5431,391270 ,1,5432,391270 ,1,5433,391270 ,1,5434,391270 ,1,5435,391270 ,1,5436,391270 ,1,5437,391270 ,1,5438,391270 ,1,5439,391270 ,1,5440,391270 ,1,5441,391270 ,1,5442,391270 ,1,5443,391270 ,1,5444,391270 ,1,5445,391270 ,1,5446,391270 ,1,5447,391270 ,1,5448,391270 ,1,5449,391270 ,1,5450,391270 ,1,5451,391270 ,1,5452,391270 ,1,5453,391270 ,1,5454,391270 ,1,5455,391270 ,1,5456,391270 ,1,5457,391270 ,1,5458,391270 ,1,5459,391270 ,1,5460,391270 ,1,5461,391270 ,1,5462,391270 ,1,5463,391270 ,1,5464,391270 ,1,5465,391270 ,1,5468,391270 ,1,5469,391270 ,1,5470,391270 ,1,5471,391270 ,1,5472,391270 ,1,5474,391270 ,1,5475,391270 ,1,5476,391270 ,1,5477,391270 ,1,5478,391270 ,1,5479,391270 ,1,5480,391270 ,1,5481,391270 ,1,5482,391270 ,1,5484,391270 ,1,5485,391270 ,1,5486,391270 ,1,5488,391270 ,1,5490,391270 ,1,5491,391270 ,1,5492,391270 ,1,5493,391270 ,1,5495,391270 ,1,5496,391270 ,1,5498,391270 ,1,5500,391270 ,1,5502,391270 ,1,5503,391185 ,1,5504,391270 ,1,5507,391270 ,1,5508,391270 ,1,5509,391270 ,1,5510,391270 ,1,5511,391270 ,1,5512,391270 ,1,5513,391270 ,1,5514,391270 ,1,5515,391270 ,1,5516,391270 ,1,5517,391270 ,1,5518,391270 ,1,5519,391270 ,1,5520,391270 ,1,5521,391270 ,1,5522,391270 ,1,5523,391270 ,1,5524,391270 ,1,5525,391270 ,1,5526,391270 ,1,5527,391270 ,1,5529,391270 ,1,5531,391270 ,1,5532,391270 ,1,5533,391270 ,1,5534,391270 ,1,5535,391270 ,1,5536,391270 ,1,5537,391270 ,1,5540,391270 ,1,5541,391270 ,1,5542,391270 ,1,5544,391270 ,1,5545,391270 ,1,5547,391270 ,1,5548,391270 ,1,5549,391270 ,1,5550,391270 ,1,5551,391270 ,1,5553,391270 ,1,5554,391270 ,1,5555,391270 ,1,5556,391270 ,1,5557,391270 ,1,5558,391270 ,1,5559,391270 ,1,5560,391270 ,1,5561,391270 ,1,5563,391270 ,1,5564,391270 ,1,5565,391270 ,1,5566,391270 ,1,5567,391270 ,1,5568,391270 ,1,5569,391270 ,1,5570,391270 ,1,5571,391270 ,1,5572,391270 ,1,5573,391270 ,1,5574,391270 ,1,5575,391270 ,1,5576,391270 ,1,5577,391270 ,1,5578,391270 ,1,5579,391270 ,1,5580,391270 ,1,5581,391270 ,1,5582,391270 ,1,5583,391270 ,1,5584,391270 ,1,5585,391270 ,1,5587,391270 ,1,5588,391270 ,1,5589,391270 ,1,5590,391270 ,1,5591,391270 ,1,5592,391270 ,1,5593,391270 ,1,5596,391270 ,1,5597,391270 ,1,5598,391270 ,1,5599,391270 ,1,5600,391270 ,1,5601,391270 ,1,5602,391270 ,1,5603,391270 ,1,5604,391270 ,1,5605,391270 ,1,5606,391270 ,1,5607,391270 ,1,5608,391270 ,1,5609,391270 ,1,5610,391270 ,1,5611,391270 ,1,5612,391270 ,1,5613,391270 ,1,5614,391270 ,1,5615,391270 ,1,5616,391270 ,1,5617,391270 ,1,5618,391270 ,1,5619,391270 ,1,5620,391270 ,1,5621,391270 ,1,5622,391270 ,1,5623,391270 ,1,5624,391270 ,1,5625,391270 ,1,5629,391270 ,1,5630,391270 ,1,5631,391270 ,1,5632,391270 ,1,5633,391270 ,1,5634,391270 ,1,5635,391270 ,1,5636,391270 ,1,5637,391270 ,1,5638,391270 ,1,5639,391270 ,1,5640,391270 ,1,5641,391270 ,1,5642,415000 ,1,5644,392900 ,1,5645,392900 ,1,5647,391140 ,1,5648,392900 ,1,5649,392900 ,1,5650,392900 ,1,5652,391135 ,1,5653,391130 ,1,5654,391125 ,1,5656,392900 ,1,5660,391115 ,1,5661,391110 ,1,5662,391110 ,1,5663,391110 ,1,5664,391110 ,1,5665,391110 ,1,5666,391110 ,1,5667,391110 ,1,5668,391110 ,1,5669,391105 ,1,5670,391110 ,1,5671,391110 ,1,5672,391100 ,1,5673,391110 ,1,5674,391110 ,1,5675,391110 ,1,5676,391070 ,1,5678,391065 ,1,5680,391065 ,1,5681,391060 ,1,5682,391055 ,1,5683,391065 ,1,5684,391045 ,1,5685,391040 ,1,5686,391065 ,1,5687,414995 ,1,5691,391035 ,1,5692,391030 ,1,5693,391015 ,1,5694,391015 ,1,5695,391035 ,1,5696,391035 ,1,5697,391035 ,1,5701,414990 ,1,5702,414965 ,1,5705,391010 ,1,5706,391010 ,1,5707,392900 ,1,5708,391005 ,1,5711,391000 ,1,5712,391000 ,1,5713,391000 ,1,5714,391000 ,1,5715,391000 ,1,5716,391000 ,1,5717,391000 ,1,5720,390995 ,1,5725,390990 ,1,5726,390990 ,1,5728,390985 ,1,5731,390980 ,1,5734,390960 ,1,5735,390955 ,1,5736,390950 ,1,5737,390945 ,1,5741,390940 ,1,5742,390955 ,1,5743,414960 ,1,5744,392900 ,1,5745,390935 ,1,5746,392900 ,1,5748,390930 ,1,5749,390930 ,1,5750,392900 ,1,5751,392900 ,1,5752,392900 ,1,5753,392900 ,1,5755,392900 ,1,5756,390925 ,1,5757,390895 ,1,5758,392900 ,1,5759,390890 ,1,5761,392900 ,1,5762,392900 ,1,5763,392900 ,1,5764,392900 ,1,5765,414955 ,1,5766,392900 ,1,5768,390885 ,1,5769,390880 ,1,5771,390870 ,1,5772,390865 ,1,5774,390860 ,1,5776,392900 ,1,5777,392900 ,1,5778,392900 ,1,5780,392900 ,1,5781,392900 ,1,5782,392900 ,1,5783,392900 ,1,5784,392900 ,1,5786,390855 ,1,5787,414950 ,1,5788,392900 ,1,5790,414940 ,1,5791,392900 ,1,5792,392900 ,1,5795,392900 ,1,5796,390825 ,1,5797,392900 ,1,5798,392900 ,1,5799,392900 ,1,5800,392900 ,1,5803,392900 ,1,5805,392900 ,1,5807,392900 ,1,5809,392900 ,1,5811,392900 ,1,5815,392900 ,1,5817,392900 ,1,5819,392900 ,1,5820,392900 ,1,5821,392900 ,1,5822,392900 ,1,5824,392900 ,1,5826,392900 ,1,5827,392900 ,1,5828,392900 ,1,5829,414935 ,1,5830,390795 ,1,5831,392900 ,1,5832,414930 ,1,5833,390790 ,1,5834,392900 ,1,5835,390785 ,1,5836,390780 ,1,5837,414890 ,1,5838,390755 ,1,5839,414885 ,1,5840,414880 ,1,5841,390750 ,1,5842,414875 ,1,5843,390745 ,1,5844,390740 ,1,5845,390730 ,1,5846,390725 ,1,5847,414870 ,1,5848,390720 ,1,5849,414865 ,1,5850,392900 ,1,5851,390715 ,1,5852,390700 ,1,5853,392900 ,1,5854,414860 ,1,5855,390695 ,1,5856,414855 ,1,5857,414820 ,1,5859,390690 ,1,5860,414815 ,1,5861,390685 ,1,5862,390680 ,1,5863,392900 ,1,5864,390675 ,1,5865,414810 ,1,5866,414805 ,1,5867,414795 ,1,5869,390670 ,1,5870,392900 ,1,5871,390665 ,1,5873,392900 ,1,5874,392900 ,1,5875,392900 ,1,5876,390645 ,1,5878,390640 ,1,5879,414790 ,1,5880,414785 ,1,5881,392900 ,1,5882,392900 ,1,5883,414780 ,1,5884,414740 ,1,5885,390635 ,1,5886,390630 ,1,5887,390620 ,1,5888,390620 ,1,5890,390615 ,1,5893,392900 ,1,5894,390610 ,1,5895,390605 ,1,5896,390570 ,1,5898,390565 ,1,5899,390560 ,1,5901,392900 ,1,5902,392900 ,1,5903,392900 ,1,5904,392900 ,1,5905,392900 ,1,5906,392900 ,1,5907,392900 ,1,5908,392900 ,1,5909,392900 ,1,5910,392900 ,1,5912,392900 ,1,5913,392900 ,1,5914,390555 ,1,5915,390540 ,1,5916,390540 ,1,5917,390540 ,1,5919,392900 ,1,5921,390535 ,1,5922,392900 ,1,5923,390535 ,1,5924,390535 ,1,5925,390535 ,1,5928,390535 ,1,5929,390535 ,1,5930,390535 ,1,5931,390535 ,1,5932,390535 ,1,5933,390530 ,1,5937,390525 ,1,5938,390500 ,1,5939,390495 ,1,5940,390490 ,1,5942,390485 ,1,5943,390480 ,1,5944,392900 ,1,5945,392900 ,1,5946,390480 ,1,5947,390480 ,1,5950,392900 ,1,5953,392900 ,1,5954,392900 ,1,5955,392900 ,1,5957,392900 ,1,5959,414735 ,1,5961,392900 ,1,5962,414730 ,1,5963,414730 ,1,5964,414730 ,1,5965,390475 ,1,5966,392900 ,1,5968,390475 ,1,5969,390475 ,1,5970,390470 ,1,5971,390465 ,1,5972,390470 ,1,5973,390470 ,1,5974,390465 ,1,5975,390470 ,1,5976,390470 ,1,5977,390465 ,1,5978,390470 ,1,5979,390470 ,1,5980,390465 ,1,5981,390470 ,1,5982,390470 ,1,5983,390465 ,1,5984,390470 ,1,5985,390470 ,1,5986,390465 ,1,5987,390470 ,1,5988,390470 ,1,5989,390465 ,1,5990,390470 ,1,5991,390470 ,1,5992,390465 ,1,5993,390470 ,1,5994,390470 ,1,5995,390465 ,1,5996,390470 ,1,5997,390470 ,1,5998,390465 ,1,5999,390470 ,1,6000,390470 ,1,6001,390465 ,1,6002,390470 ,1,6003,390470 ,1,6004,390465 ,1,6005,390470 ,1,6006,390470 ,1,6007,390465 ,1,6008,390470 ,1,6009,390470 ,1,6010,390465 ,1,6011,390470 ,1,6012,414725 ,1,6013,390460 ,1,6018,390455 ,1,6019,390455 ,1,6020,390450 ,1,6021,390455 ,1,6022,390455 ,1,6023,390455 ,1,6025,392900 ,1,6026,392900 ,1,6027,390445 ,1,6028,392900 ,1,6029,392900 ,1,6030,390435 ,1,6031,390430 ,1,6032,390425 ,1,6033,390420 ,1,6034,390420 ,1,6035,390385 ,1,6037,390380 ,1,6038,390380 ,1,6040,392900 ,1,6041,392900 ,1,6042,392900 ,1,6043,392900 ,1,6044,392900 ,1,6045,392900 ,1,6049,392900 ,1,6053,392900 ,1,6054,392900 ,1,6055,392900 ,1,6057,392900 ,1,6058,392900 ,1,6060,392900 ,1,6061,392900 ,1,6064,392900 ,1,6066,392900 ,1,6067,392900 ,1,6068,392900 ,1,6070,392900 ,1,6071,392900 ,1,6072,392900 ,1,6073,390375 ,1,6074,392900 ,1,6075,392900 ,1,6076,392900 ,1,6078,392900 ,1,6079,392900 ,1,6081,392900 ,1,6082,392900 ,1,6084,392900 ,1,6085,392900 ,1,6086,392900 ,1,6088,414720 ,1,6090,414715 ,1,6091,390225 ,1,6092,414710 ,1,6094,392900 ,1,6095,392900 ,1,6096,392900 ,1,6100,390205 ,1,6101,390200 ,1,6102,390195 ,1,6103,390190 ,1,6104,390180 ,1,6105,390175 ,1,6106,390170 ,1,6107,415750 ,1,6109,415750 ,1,6111,392900 ,1,6112,390165 ,1,6113,390165 ,1,6115,392900 ,1,6118,390145 ,1,6120,414705 ,1,6121,414705 ,1,6122,414705 ,1,6123,414705 ,1,6124,390140 ,1,6125,390135 ,1,6126,390130 ,1,6127,390120 ,1,6128,390115 ,1,6129,390115 ,1,6130,390110 ,1,6131,390105 ,1,6132,390080 ,1,6133,390075 ,1,6134,414690 ,1,6135,390070 ,1,6136,414685 ,1,6137,414685 ,1,6139,414685 ,1,6143,392900 ,1,6146,390065 ,1,6148,390060 ,1,6149,392900 ,1,6150,392900 ,1,6153,414680 ,1,6154,414680 ,1,6155,414680 ,1,6156,414680 ,1,6158,392900 ,1,6159,392900 ,1,6160,392900 ,1,6162,392900 ,1,6164,392900 ,1,6165,392900 ,1,6166,392900 ,1,6169,392900 ,1,6171,392900 ,1,6172,392900 ,1,6173,392900 ,1,6174,392900 ,1,6175,392900 ,1,6176,392900 ,1,6177,392900 ,1,6178,390055 ,1,6181,392900 ,1,6182,392900 ,1,6184,392900 ,1,6185,392900 ,1,6187,392900 ,1,6188,392900 ,1,6189,392900 ,1,6190,392900 ,1,6191,392900 ,1,6192,392900 ,1,6193,392900 ,1,6194,392900 ,1,6195,390050 ,1,6198,392900 ,1,6199,392900 ,1,6200,390045 ,1,6201,390010 ,1,6202,390005 ,1,6203,390000 ,1,6204,389995 ,1,6205,389985 ,1,6206,392900 ,1,6207,392900 ,1,6208,392900 ,1,6209,392900 ,1,6210,392900 ,1,6211,392900 ,1,6212,392900 ,1,6213,392900 ,1,6214,389980 ,1,6215,392900 ,1,6217,414675 ,1,6218,389975 ,1,6222,392900 ,1,6223,392900 ,1,6224,392900 ,1,6226,392900 ,1,6228,392900 ,1,6229,392900 ,1,6230,392900 ,1,6232,392900 ,1,6233,392900 ,1,6234,392900 ,1,6236,392900 ,1,6237,392900 ,1,6242,392900 ,1,6243,392900 ,1,6245,392900 ,1,6247,392900 ,1,6248,414670 ,1,6249,389970 ,1,6250,389945 ,1,6251,389945 ,1,6255,389940 ,1,6256,392900 ,1,6257,392900 ,1,6258,389930 ,1,6261,389925 ,1,6264,389920 ,1,6265,389915 ,1,6266,389910 ,1,6267,389890 ,1,6269,389885 ,1,6270,389880 ,1,6271,389870 ,1,6272,389865 ,1,6274,392900 ,1,6275,392900 ,1,6279,392900 ,1,6281,389860 ,1,6282,389860 ,1,6283,389860 ,1,6284,389860 ,1,6285,389860 ,1,6286,389860 ,1,6287,389860 ,1,6288,389860 ,1,6289,389860 ,1,6290,389860 ,1,6292,389855 ,1,6293,389855 ,1,6296,414625 ,1,6297,389855 ,1,6298,389855 ,1,6299,389860 ,1,6300,389860 ,1,6301,389860 ,1,6302,389860 ,1,6304,389860 ,1,6305,389860 ,1,6306,389860 ,1,6308,389860 ,1,6309,389860 ,1,6310,389860 ,1,6311,389815 ,1,6313,389860 ,1,6314,389860 ,1,6316,389860 ,1,6317,389860 ,1,6319,389860 ,1,6320,389860 ,1,6322,392900 ,1,6325,392900 ,1,6328,392900 ,1,6329,392900 ,1,6331,392900 ,1,6333,392900 ,1,6334,392900 ,1,6335,392900 ,1,6337,389810 ,1,6338,389805 ,1,6341,389800 ,1,6342,389795 ,1,6343,389780 ,1,6345,389750 ,1,6346,389745 ,1,6347,389740 ,1,6348,389735 ,1,6349,389730 ,1,6350,389560 ,1,6351,389550 ,1,6352,389530 ,1,6353,389525 ,1,6354,389525 ,1,6355,389525 ,1,6356,389520 ,1,6359,389515 ,1,6360,389510 ,1,6361,414610 ,1,6362,414600 ,1,6363,414595 ,1,6364,389495 ,1,6365,392900 ,1,6366,392900 ,1,6369,389470 ,1,6370,392900 ,1,6372,392900 ,1,6373,392900 ,1,6374,392900 ,1,6375,392900 ,1,6376,392900 ,1,6377,389465 ,1,6378,389465 ,1,6379,389460 ,1,6380,389465 ,1,6381,389465 ,1,6382,389465 ,1,6383,392900 ,1,6384,392900 ,1,6385,392900 ,1,6386,392900 ,1,6387,392900 ,1,6388,392900 ,1,6389,392900 ,1,6390,392900 ,1,6391,392900 ,1,6392,392900 ,1,6393,392900 ,1,6394,392900 ,1,6395,392900 ,1,6397,392900 ,1,6398,392900 ,1,6399,392900 ,1,6400,392900 ,1,6401,392900 ,1,6402,389455 ,1,6403,392900 ,1,6404,392900 ,1,6405,392900 ,1,6406,392900 ,1,6407,392900 ,1,6410,392900 ,1,6411,392900 ,1,6412,392900 ,1,6413,389450 ,1,6414,389445 ,1,6415,389440 ,1,6416,389435 ,1,6417,389425 ,1,6418,414590 ,1,6419,389420 ,1,6422,392900 ,1,6424,392900 ,1,6425,392900 ,1,6426,414570 ,1,6427,414570 ,1,6428,414570 ,1,6430,389415 ,1,6431,414570 ,1,6432,414570 ,1,6433,389405 ,1,6436,414565 ,1,6437,414560 ,1,6438,389400 ,1,6439,414555 ,1,6440,414570 ,1,6441,414570 ,1,6442,414570 ,1,6443,414570 ,1,6444,389395 ,1,6445,389390 ,1,6446,389360 ,1,6447,389395 ,1,6448,389355 ,1,6449,389395 ,1,6450,389340 ,1,6451,389335 ,1,6452,389330 ,1,6453,414570 ,1,6454,414570 ,1,6455,414570 ,1,6456,414570 ,1,6457,414570 ,1,6459,414570 ,1,6460,414570 ,1,6462,414570 ,1,6463,414570 ,1,6465,389325 ,1,6466,389310 ,1,6467,389310 ,1,6468,389310 ,1,6469,389305 ,1,6471,414570 ,1,6472,414570 ,1,6473,414570 ,1,6474,414570 ,1,6475,414570 ,1,6476,414570 ,1,6477,414570 ,1,6478,414570 ,1,6479,414570 ,1,6480,414570 ,1,6481,414570 ,1,6484,389295 ,1,6486,414570 ,1,6487,414570 ,1,6488,414570 ,1,6489,414570 ,1,6490,414570 ,1,6491,414570 ,1,6492,414570 ,1,6493,414570 ,1,6494,414570 ,1,6495,414570 ,1,6496,414570 ,1,6497,414570 ,1,6498,414570 ,1,6499,414570 ,1,6500,414570 ,1,6501,414570 ,1,6502,414570 ,1,6503,414570 ,1,6504,414570 ,1,6505,414570 ,1,6506,414570 ,1,6507,414570 ,1,6508,414570 ,1,6509,414570 ,1,6510,414570 ,1,6511,414570 ,1,6512,414570 ,1,6513,414570 ,1,6514,414570 ,1,6515,414570 ,1,6516,414570 ,1,6517,414570 ,1,6518,414570 ,1,6519,414570 ,1,6520,414570 ,1,6521,414570 ,1,6522,414570 ,1,6523,414570 ,1,6524,414570 ,1,6525,414570 ,1,6526,414570 ,1,6527,414570 ,1,6528,414570 ,1,6529,414570 ,1,6530,414570 ,1,6531,414570 ,1,6532,414570 ,1,6533,414570 ,1,6534,414545 ,1,6535,414540 ,1,6537,389280 ,1,6538,389275 ,1,6539,414535 ,1,6540,414530 ,1,6542,389250 ,1,6543,414570 ,1,6544,414570 ,1,6545,414570 ,1,6546,414570 ,1,6547,414570 ,1,6549,414570 ,1,6550,414570 ,1,6551,414570 ,1,6552,414570 ,1,6553,414570 ,1,6555,414570 ,1,6556,414570 ,1,6559,414570 ,1,6560,414570 ,1,6561,414570 ,1,6562,414570 ,1,6563,414570 ,1,6564,414570 ,1,6566,414570 ,1,6567,414570 ,1,6569,414570 ,1,6570,414570 ,1,6571,414570 ,1,6573,414570 ,1,6574,414570 ,1,6575,414570 ,1,6576,414570 ,1,6577,414570 ,1,6579,414570 ,1,6580,414570 ,1,6581,414570 ,1,6584,389245 ,1,6586,389240 ,1,6588,389235 ,1,6590,414570 ,1,6591,414570 ,1,6592,414570 ,1,6593,414570 ,1,6594,414570 ,1,6595,414570 ,1,6596,414570 ,1,6597,414570 ,1,6598,414570 ,1,6599,414570 ,1,6600,414570 ,1,6601,414570 ,1,6602,414570 ,1,6603,414570 ,1,6604,414570 ,1,6605,414570 ,1,6606,414570 ,1,6607,414570 ,1,6608,414570 ,1,6609,414570 ,1,6610,414570 ,1,6611,414570 ,1,6612,414570 ,1,6613,414570 ,1,6614,414570 ,1,6615,414570 ,1,6616,414570 ,1,6617,414570 ,1,6618,414570 ,1,6619,414570 ,1,6620,414570 ,1,6621,414570 ,1,6622,414570 ,1,6623,414570 ,1,6624,414570 ,1,6625,414570 ,1,6626,414570 ,1,6627,414570 ,1,6628,414570 ,1,6629,414570 ,1,6630,414570 ,1,6636,414570 ,1,6637,414570 ,1,6639,414570 ,1,6640,414570 ,1,6641,414570 ,1,6642,414570 ,1,6644,414570 ,1,6645,414570 ,1,6646,414570 ,1,6647,414570 ,1,6648,414570 ,1,6649,414570 ,1,6650,414570 ,1,6651,414570 ,1,6652,414570 ,1,6653,414570 ,1,6654,414570 ,1,6656,414570 ,1,6657,414570 ,1,6658,414570 ,1,6659,414570 ,1,6660,414570 ,1,6661,414570 ,1,6664,414570 ,1,6665,389230 ,1,6666,389230 ,1,6667,389230 ,1,6668,389230 ,1,6669,389230 ,1,6670,389230 ,1,6671,389230 ,1,6672,389230 ,1,6673,389230 ,1,6674,389230 ,1,6675,389225 ,1,6676,389225 ,1,6677,414570 ,1,6678,414570 ,1,6679,414570 ,1,6680,414570 ,1,6681,414570 ,1,6682,414570 ,1,6684,414570 ,1,6685,414570 ,1,6687,414570 ,1,6688,414570 ,1,6691,414570 ,1,6692,414570 ,1,6693,414570 ,1,6694,414570 ,1,6699,389220 ,1,6700,389220 ,1,6703,414570 ,1,6705,414570 ,1,6707,414570 ,1,6708,414570 ,1,6709,414570 ,1,6710,414570 ,1,6712,414570 ,1,6713,389215 ,1,6714,389180 ,1,6715,414570 ,1,6717,414570 ,1,6718,414570 ,1,6720,414500 ,1,6721,414570 ,1,6724,414570 ,1,6725,414570 ,1,6726,414570 ,1,6728,414570 ,1,6730,414570 ,1,6731,414570 ,1,6732,414570 ,1,6733,414570 ,1,6735,414570 ,1,6736,414570 ,1,6739,389175 ,1,6740,414570 ,1,6741,414570 ,1,6742,414570 ,1,6743,414570 ,1,6745,414570 ,1,6746,414570 ,1,6748,414570 ,1,6751,414570 ,1,6752,414570 ,1,6753,414570 ,1,6754,414570 ,1,6755,414570 ,1,6757,414570 ,1,6760,414570 ,1,6761,414570 ,1,6762,414570 ,1,6763,414570 ,1,6764,414570 ,1,6765,414570 ,1,6766,414570 ,1,6767,389170 ,1,6768,414570 ,1,6769,414570 ,1,6771,414570 ,1,6772,414570 ,1,6773,414570 ,1,6774,414570 ,1,6775,414570 ,1,6777,414570 ,1,6779,414570 ,1,6780,414570 ,1,6784,414570 ,1,6790,414570 ,1,6793,414570 ,1,6794,414570 ,1,6795,414570 ,1,6796,414570 ,1,6797,414570 ,1,6798,389165 ,1,6799,414570 ,1,6801,414570 ,1,6802,389160 ,1,6804,414570 ,1,6805,414570 ,1,6806,414570 ,1,6807,414570 ,1,6809,414570 ,1,6810,414570 ,1,6812,414570 ,1,6813,414570 ,1,6814,389125 ,1,6815,414570 ,1,6816,414570 ,1,6818,414570 ,1,6819,414570 ,1,6820,414570 ,1,6821,414570 ,1,6822,414570 ,1,6823,414570 ,1,6824,414570 ,1,6825,414570 ,1,6826,414570 ,1,6829,414570 ,1,6830,414570 ,1,6831,414570 ,1,6832,414570 ,1,6833,414570 ,1,6834,414570 ,1,6835,414570 ,1,6845,414570 ,1,6846,414570 ,1,6847,414570 ,1,6848,414570 ,1,6849,414570 ,1,6851,414570 ,1,6853,414570 ,1,6854,389120 ,1,6855,414570 ,1,6857,414570 ,1,6858,414570 ,1,6861,389115 ,1,6862,414570 ,1,6863,414570 ,1,6864,414570 ,1,6865,414570 ,1,6866,414570 ,1,6867,389110 ,1,6868,414570 ,1,6869,414570 ,1,6871,414570 ,1,6872,414570 ,1,6873,414570 ,1,6875,414570 ,1,6878,389100 ,1,6879,414570 ,1,6880,414570 ,1,6882,414570 ,1,6884,414495 ,1,6885,414570 ,1,6887,414570 ,1,6888,414570 ,1,6889,414570 ,1,6890,414570 ,1,6891,414570 ,1,6892,414570 ,1,6893,414570 ,1,6894,414570 ,1,6895,414570 ,1,6896,414570 ,1,6897,414570 ,1,6898,414570 ,1,6899,414570 ,1,6900,414570 ,1,6901,414570 ,1,6902,414570 ,1,6903,414570 ,1,6905,414570 ,1,6909,414570 ,1,6912,414490 ,1,6913,414570 ,1,6917,414570 ,1,6918,389095 ,1,6920,414570 ,1,6921,389095 ,1,6922,389095 ,1,6923,414570 ,1,6924,414570 ,1,6925,414570 ,1,6926,414570 ,1,6927,414570 ,1,6928,414570 ,1,6929,414570 ,1,6930,414570 ,1,6931,414570 ,1,6932,414570 ,1,6933,414570 ,1,6934,414570 ,1,6935,414570 ,1,6936,414570 ,1,6937,389090 ,1,6938,414570 ,1,6939,414570 ,1,6940,414570 ,1,6941,414570 ,1,6942,414570 ,1,6943,414570 ,1,6944,414570 ,1,6945,414570 ,1,6946,414570 ,1,6947,414570 ,1,6948,389085 ,1,6953,414570 ,1,6954,414570 ,1,6956,414570 ,1,6957,414570 ,1,6958,414570 ,1,6961,414570 ,1,6962,414570 ,1,6963,414570 ,1,6966,414570 ,1,6967,414570 ,1,6968,414570 ,1,6969,414570 ,1,6970,414570 ,1,6971,414570 ,1,6972,414570 ,1,6974,414570 ,1,6975,414570 ,1,6976,414570 ,1,6977,414570 ,1,6978,414570 ,1,6979,414570 ,1,6980,414570 ,1,6981,414570 ,1,6982,414570 ,1,6983,414570 ,1,6984,414570 ,1,6986,414485 ,1,6987,414570 ,1,6988,414570 ,1,6989,414570 ,1,6991,414570 ,1,6995,414570 ,1,6996,414570 ,1,6998,414570 ,1,7000,414570 ,1,7003,414570 ,1,7004,414570 ,1,7005,414570 ,1,7006,414570 ,1,7007,414570 ,1,7008,414570 ,1,7009,414570 ,1,7011,389060 ,1,7012,414480 ,1,7013,389055 ,1,7018,414570 ,1,7019,414570 ,1,7020,414570 ,1,7021,414570 ,1,7022,414570 ,1,7024,414570 ,1,7025,414570 ,1,7026,414570 ,1,7027,414570 ,1,7028,414570 ,1,7029,414570 ,1,7031,414570 ,1,7034,389050 ,1,7035,414570 ,1,7036,414475 ,1,7037,414470 ,1,7038,414465 ,1,7040,414570 ,1,7042,389045 ,1,7043,389035 ,1,7044,414570 ,1,7045,414570 ,1,7046,414570 ,1,7047,414570 ,1,7049,389030 ,1,7051,414570 ,1,7053,389025 ,1,7054,389025 ,1,7055,389025 ,1,7058,414570 ,1,7060,414570 ,1,7061,414570 ,1,7062,414570 ,1,7063,414570 ,1,7064,389020 ,1,7065,414570 ,1,7067,388995 ,1,7068,388995 ,1,7071,414570 ,1,7072,414570 ,1,7073,414570 ,1,7074,414570 ,1,7075,414570 ,1,7077,388990 ,1,7078,388990 ,1,7079,388990 ,1,7080,414570 ,1,7081,414570 ,1,7082,388985 ,1,7083,414570 ,1,7086,414570 ,1,7088,414570 ,1,7089,414570 ,1,7091,414440 ,1,7092,414440 ,1,7093,414440 ,1,7094,414440 ,1,7095,388980 ,1,7096,388980 ,1,7097,388975 ,1,7098,388980 ,1,7099,388980 ,1,7100,388980 ,1,7101,414570 ,1,7103,414570 ,1,7104,414570 ,1,7105,414570 ,1,7106,414570 ,1,7107,414570 ,1,7108,414570 ,1,7110,414570 ,1,7111,414570 ,1,7113,414570 ,1,7114,414570 ,1,7117,414570 ,1,7118,414570 ,1,7122,414570 ,1,7123,414570 ,1,7124,388970 ,1,7125,414570 ,1,7126,388965 ,1,7127,414570 ,1,7128,414570 ,1,7131,414570 ,1,7132,414435 ,1,7133,414570 ,1,7135,414430 ,1,7136,414425 ,1,7137,388960 ,1,7138,388950 ,1,7139,414420 ,1,7140,414415 ,1,7142,388945 ,1,7143,414570 ,1,7144,414570 ,1,7148,414570 ,1,7149,414570 ,1,7151,414570 ,1,7153,414570 ,1,7155,414570 ,1,7159,414570 ,1,7162,414570 ,1,7163,414410 ,1,7166,414570 ,1,7167,414570 ,1,7168,414570 ,1,7170,414570 ,1,7171,414570 ,1,7174,414570 ,1,7175,414570 ,1,7176,414570 ,1,7177,414570 ,1,7178,414570 ,1,7179,414570 ,1,7180,414570 ,1,7181,414570 ,1,7182,414570 ,1,7183,414570 ,1,7184,388940 ,1,7186,414570 ,1,7187,414570 ,1,7188,414570 ,1,7189,414570 ,1,7190,414570 ,1,7191,414570 ,1,7192,414570 ,1,7193,414570 ,1,7194,414570 ,1,7195,414570 ,1,7196,414570 ,1,7197,414570 ,1,7198,414570 ,1,7199,414570 ,1,7200,414570 ,1,7201,414570 ,1,7202,414570 ,1,7203,414570 ,1,7204,414570 ,1,7205,414570 ,1,7206,414570 ,1,7207,414570 ,1,7208,414570 ,1,7209,414570 ,1,7210,414570 ,1,7211,414570 ,1,7212,414570 ,1,7213,414570 ,1,7214,414570 ,1,7215,414570 ,1,7216,414570 ,1,7217,414570 ,1,7218,414570 ,1,7219,414570 ,1,7225,414570 ,1,7226,414570 ,1,7227,414570 ,1,7229,414405 ,1,7230,414405 ,1,7231,414570 ,1,7233,414570 ,1,7235,414570 ,1,7236,414570 ,1,7237,414570 ,1,7240,414570 ,1,7241,414570 ,1,7242,414570 ,1,7243,414570 ,1,7244,414570 ,1,7245,414570 ,1,7246,414570 ,1,7247,414570 ,1,7248,414570 ,1,7249,414570 ,1,7250,414570 ,1,7251,414570 ,1,7254,414570 ,1,7257,414570 ,1,7258,414570 ,1,7259,414570 ,1,7260,414570 ,1,7261,414570 ,1,7262,414570 ,1,7263,414570 ,1,7264,414570 ,1,7265,414570 ,1,7266,414570 ,1,7267,414570 ,1,7268,414570 ,1,7272,414570 ,1,7273,388935 ,1,7274,388935 ,1,7276,414570 ,1,7277,414570 ,1,7282,414570 ,1,7283,414570 ,1,7285,414570 ,1,7286,414570 ,1,7287,388930 ,1,7288,388925 ,1,7289,388920 ,1,7290,388915 ,1,7291,388895 ,1,7292,388890 ,1,7293,414360 ,1,7296,414570 ,1,7297,414570 ,1,7299,414570 ,1,7301,414570 ,1,7302,414570 ,1,7306,414570 ,1,7308,414355 ,1,7309,414570 ,1,7310,414570 ,1,7311,414570 ,1,7313,414570 ,1,7314,414570 ,1,7317,414350 ,1,7318,414570 ,1,7319,414570 ,1,7321,414570 ,1,7323,414570 ,1,7325,414570 ,1,7326,388885 ,1,7327,414570 ,1,7328,414345 ,1,7330,414570 ,1,7331,414570 ,1,7332,414570 ,1,7333,414570 ,1,7334,414570 ,1,7335,414570 ,1,7336,414570 ,1,7337,414570 ,1,7338,414570 ,1,7339,414570 ,1,7340,414570 ,1,7341,414570 ,1,7342,414570 ,1,7343,414570 ,1,7344,414570 ,1,7345,414570 ,1,7346,414570 ,1,7347,414570 ,1,7350,414570 ,1,7351,414570 ,1,7352,414570 ,1,7353,414570 ,1,7354,414570 ,1,7357,414570 ,1,7358,414570 ,1,7359,414570 ,1,7360,414570 ,1,7361,414570 ,1,7363,414570 ,1,7364,414570 ,1,7365,414570 ,1,7366,414570 ,1,7367,414570 ,1,7369,414570 ,1,7370,414570 ,1,7371,414570 ,1,7372,414570 ,1,7374,414570 ,1,7375,414570 ,1,7376,414570 ,1,7377,414570 ,1,7380,414570 ,1,7383,414570 ,1,7384,414570 ,1,7387,388880 ,1,7388,414570 ,1,7390,414570 ,1,7391,388875 ,1,7392,388875 ,1,7394,414570 ,1,7397,414570 ,1,7398,414570 ,1,7399,414570 ,1,7400,414570 ,1,7401,414570 ,1,7402,414570 ,1,7403,414570 ,1,7404,414570 ,1,7405,388870 ,1,7406,414570 ,1,7407,414570 ,1,7408,414570 ,1,7409,414570 ,1,7410,414570 ,1,7411,388865 ,1,7412,414570 ,1,7413,414570 ,1,7414,388865 ,1,7415,388865 ,1,7416,414570 ,1,7417,414570 ,1,7418,414570 ,1,7419,414570 ,1,7420,414570 ,1,7421,414570 ,1,7422,414570 ,1,7423,414570 ,1,7425,388860 ,1,7427,414570 ,1,7428,414570 ,1,7432,414570 ,1,7435,414570 ,1,7436,388830 ,1,7437,414570 ,1,7439,414570 ,1,7440,414570 ,1,7441,388825 ,1,7443,388820 ,1,7445,388815 ,1,7446,388815 ,1,7447,388815 ,1,7449,414570 ,1,7450,388810 ,1,7451,388805 ,1,7452,388805 ,1,7453,388800 ,1,7454,388820 ,1,7455,414570 ,1,7456,414570 ,1,7457,414570 ,1,7458,414570 ,1,7460,414570 ,1,7461,414570 ,1,7464,414570 ,1,7466,414570 ,1,7468,414570 ,1,7469,414570 ,1,7470,414570 ,1,7471,414570 ,1,7472,414570 ,1,7473,414570 ,1,7474,414570 ,1,7477,414570 ,1,7478,414570 ,1,7479,414570 ,1,7480,414570 ,1,7482,414570 ,1,7485,414570 ,1,7486,414570 ,1,7488,388795 ,1,7489,388780 ,1,7491,414570 ,1,7492,388775 ,1,7493,414570 ,1,7494,414570 ,1,7496,388770 ,1,7497,388765 ,1,7498,414570 ,1,7501,414570 ,1,7502,414570 ,1,7503,388760 ,1,7504,388755 ,1,7505,388750 ,1,7506,414340 ,1,7507,388745 ,1,7508,388725 ,1,7509,388720 ,1,7510,388715 ,1,7511,388710 ,1,7512,388700 ,1,7513,388695 ,1,7514,388690 ,1,7516,388685 ,1,7517,414570 ,1,7519,414570 ,1,7520,388665 ,1,7521,388660 ,1,7522,388655 ,1,7523,414335 ,1,7524,388650 ,1,7525,388635 ,1,7526,388630 ,1,7527,388625 ,1,7528,388620 ,1,7529,388580 ,1,7530,388575 ,1,7531,388570 ,1,7532,414330 ,1,7533,388565 ,1,7535,414570 ,1,7537,414570 ,1,7538,414570 ,1,7539,414570 ,1,7540,414570 ,1,7541,414570 ,1,7542,414570 ,1,7543,414570 ,1,7544,414570 ,1,7545,414570 ,1,7546,414570 ,1,7547,414570 ,1,7548,414570 ,1,7549,414570 ,1,7550,414570 ,1,7551,414570 ,1,7552,414570 ,1,7554,414570 ,1,7556,388560 ,1,7557,414325 ,1,7558,388555 ,1,7560,388555 ,1,7562,414570 ,1,7565,414570 ,1,7567,414570 ,1,7568,414570 ,1,7570,414570 ,1,7572,414570 ,1,7573,414570 ,1,7574,414570 ,1,7576,414570 ,1,7578,414570 ,1,7579,414570 ,1,7581,414570 ,1,7582,414570 ,1,7584,414570 ,1,7585,414570 ,1,7586,414570 ,1,7587,414570 ,1,7588,414570 ,1,7589,414570 ,1,7593,414570 ,1,7594,414570 ,1,7596,414570 ,1,7599,414570 ,1,7600,414570 ,1,7602,414570 ,1,7604,414570 ,1,7605,414570 ,1,7607,414570 ,1,7609,414570 ,1,7610,414570 ,1,7611,414570 ,1,7613,414570 ,1,7615,414570 ,1,7617,414570 ,1,7618,414570 ,1,7619,414570 ,1,7620,414570 ,1,7621,414570 ,1,7623,414570 ,1,7624,414570 ,1,7627,414570 ,1,7629,414570 ,1,7630,414570 ,1,7631,414570 ,1,7632,414570 ,1,7633,414570 ,1,7635,414570 ,1,7637,414570 ,1,7639,414570 ,1,7641,414570 ,1,7643,414570 ,1,7645,414570 ,1,7646,414570 ,1,7647,414570 ,1,7648,414570 ,1,7649,414570 ,1,7651,414570 ,1,7652,414570 ,1,7653,414570 ,1,7655,414570 ,1,7656,414570 ,1,7657,414570 ,1,7659,414570 ,1,7660,414570 ,1,7661,414570 ,1,7663,414570 ,1,7664,414570 ,1,7666,388550 ,1,7672,388545 ,1,7673,388545 ,1,7674,388545 ,1,7675,388545 ,1,7676,388545 ,1,7678,388545 ,1,7679,388545 ,1,7680,388545 ,1,7682,388545 ,1,7683,388545 ,1,7684,388545 ,1,7685,388545 ,1,7686,388545 ,1,7687,388545 ,1,7688,388545 ,1,7689,388545 ,1,7690,388545 ,1,7692,414300 ,1,7696,414300 ,1,7697,414300 ,1,7698,414300 ,1,7699,414300 ,1,7701,414300 ,1,7702,414300 ,1,7704,414300 ,1,7705,414300 ,1,7706,414300 ,1,7707,414300 ,1,7708,414300 ,1,7710,414300 ,1,7711,414300 ,1,7712,414300 ,1,7713,414300 ,1,7714,414300 ,1,7715,414300 ,1,7716,414300 ,1,7717,414300 ,1,7719,414300 ,1,7720,414300 ,1,7721,414300 ,1,7722,414300 ,1,7724,414300 ,1,7725,414300 ,1,7726,414300 ,1,7727,414300 ,1,7728,414300 ,1,7729,414300 ,1,7730,414300 ,1,7731,414300 ,1,7732,414300 ,1,7733,414300 ,1,7734,414300 ,1,7735,414300 ,1,7736,414300 ,1,7737,414300 ,1,7738,414300 ,1,7739,414300 ,1,7740,414300 ,1,7741,414300 ,1,7742,414300 ,1,7743,414300 ,1,7744,414300 ,1,7745,414300 ,1,7746,414300 ,1,7747,414300 ,1,7748,414300 ,1,7749,414300 ,1,7750,414300 ,1,7751,414300 ,1,7752,414300 ,1,7753,414300 ,1,7754,414300 ,1,7755,414300 ,1,7756,414300 ,1,7757,414300 ,1,7758,414300 ,1,7759,414300 ,1,7760,414300 ,1,7761,414300 ,1,7762,414300 ,1,7763,414300 ,1,7764,414300 ,1,7765,414300 ,1,7766,414300 ,1,7767,414300 ,1,7768,414300 ,1,7769,414300 ,1,7772,414300 ,1,7773,414300 ,1,7774,414300 ,1,7775,414300 ,1,7776,414300 ,1,7778,414300 ,1,7779,414300 ,1,7780,414300 ,1,7781,414300 ,1,7782,414300 ,1,7783,414300 ,1,7784,414300 ,1,7785,414300 ,1,7786,414300 ,1,7788,414300 ,1,7789,414300 ,1,7790,414300 ,1,7792,414300 ,1,7794,414300 ,1,7795,414300 ,1,7796,414300 ,1,7797,414300 ,1,7799,414300 ,1,7800,414300 ,1,7802,414300 ,1,7804,414300 ,1,7806,414300 ,1,7808,414300 ,1,7811,414300 ,1,7812,414300 ,1,7813,414300 ,1,7814,414300 ,1,7815,414300 ,1,7816,414300 ,1,7817,414300 ,1,7818,414300 ,1,7819,414300 ,1,7820,414300 ,1,7821,414300 ,1,7822,414300 ,1,7823,414300 ,1,7824,414300 ,1,7825,414300 ,1,7826,414300 ,1,7827,414300 ,1,7828,414300 ,1,7829,414300 ,1,7830,414300 ,1,7831,414300 ,1,7833,414300 ,1,7835,414300 ,1,7836,414300 ,1,7837,414300 ,1,7838,414300 ,1,7839,414300 ,1,7840,414300 ,1,7841,414300 ,1,7844,414300 ,1,7845,414300 ,1,7846,414300 ,1,7848,414300 ,1,7849,414300 ,1,7851,414300 ,1,7852,414300 ,1,7853,414300 ,1,7854,414300 ,1,7855,414300 ,1,7857,414300 ,1,7858,414300 ,1,7859,414300 ,1,7860,414300 ,1,7861,414300 ,1,7862,414300 ,1,7863,414300 ,1,7864,414300 ,1,7865,414300 ,1,7867,414300 ,1,7868,414300 ,1,7869,414300 ,1,7870,414300 ,1,7871,414300 ,1,7872,414300 ,1,7873,414300 ,1,7874,414300 ,1,7875,414300 ,1,7876,414300 ,1,7877,414300 ,1,7878,414300 ,1,7879,414300 ,1,7880,414300 ,1,7881,414300 ,1,7882,414300 ,1,7883,414300 ,1,7884,414300 ,1,7885,414300 ,1,7886,414300 ,1,7887,414300 ,1,7888,414300 ,1,7889,414300 ,1,7890,388530 ,1,7891,414300 ,1,7892,414300 ,1,7893,414300 ,1,7894,414300 ,1,7895,414300 ,1,7896,414300 ,1,7897,414300 ,1,7900,414300 ,1,7901,414300 ,1,7902,414300 ,1,7903,414300 ,1,7904,414300 ,1,7905,414300 ,1,7906,414300 ,1,7907,414300 ,1,7908,414300 ,1,7909,414300 ,1,7910,414300 ,1,7911,414300 ,1,7912,414300 ,1,7913,414300 ,1,7914,414300 ,1,7915,414300 ,1,7916,414300 ,1,7917,414300 ,1,7918,414300 ,1,7919,414300 ,1,7920,414300 ,1,7921,414300 ,1,7922,414300 ,1,7923,414300 ,1,7924,414300 ,1,7925,414300 ,1,7926,414300 ,1,7927,414300 ,1,7928,414300 ,1,7929,414300 ,1,7933,414300 ,1,7934,414300 ,1,7935,414300 ,1,7936,414300 ,1,7937,414300 ,1,7938,414300 ,1,7939,414300 ,1,7940,414300 ,1,7941,414300 ,1,7942,414300 ,1,7943,414300 ,1,7944,414300 ,1,7945,414300 ,1,7946,414570 ,1,7948,414570 ,1,7949,414570 ,1,7951,414570 ,1,7952,414570 ,1,7953,414570 ,1,7954,414570 ,1,7956,414570 ,1,7957,414570 ,1,7958,414570 ,1,7960,414570 ,1,7964,414570 ,1,7965,414570 ,1,7966,414570 ,1,7967,414570 ,1,7968,414570 ,1,7969,414570 ,1,7970,414570 ,1,7971,414570 ,1,7972,414570 ,1,7973,414570 ,1,7974,414570 ,1,7975,414570 ,1,7976,414570 ,1,7977,414570 ,1,7978,414570 ,1,7979,414570 ,1,7980,414570 ,1,7982,414570 ,1,7984,414570 ,1,7985,414570 ,1,7986,414570 ,1,7987,414570 ,1,7988,414570 ,1,7989,414570 ,1,7990,414570 ,1,7991,414570 ,1,7995,414570 ,1,7996,414570 ,1,7997,414570 ,1,7998,414570 ,1,7999,414570 ,1,8000,414570 ,1,8001,414570 ,1,8005,414570 ,1,8006,414570 ,1,8009,414570 ,1,8010,414570 ,1,8011,414570 ,1,8012,414570 ,1,8015,414570 ,1,8016,414570 ,1,8017,414570 ,1,8018,414570 ,1,8019,414570 ,1,8020,414570 ,1,8021,414570 ,1,8024,414570 ,1,8029,414570 ,1,8030,414570 ,1,8032,414570 ,1,8035,414570 ,1,8038,414570 ,1,8039,414570 ,1,8040,414570 ,1,8041,414570 ,1,8045,414570 ,1,8046,414570 ,1,8047,414570 ,1,8048,414570 ,1,8049,414295 ,1,8050,414570 ,1,8052,414570 ,1,8053,414570 ,1,8054,414570 ,1,8055,414570 ,1,8056,414570 ,1,8057,414570 ,1,8059,414570 ,1,8060,414570 ,1,8061,414570 ,1,8062,414570 ,1,8063,414570 ,1,8065,414570 ,1,8066,414570 ,1,8067,414570 ,1,8068,414570 ,1,8069,414570 ,1,8070,414570 ,1,8076,414570 ,1,8078,414570 ,1,8080,414570 ,1,8081,414570 ,1,8082,388525 ,1,8084,414570 ,1,8085,414570 ,1,8086,414570 ,1,8087,414570 ,1,8088,414570 ,1,8090,414290 ,1,8091,414570 ,1,8092,414570 ,1,8094,414570 ,1,8095,414570 ,1,8096,414570 ,1,8099,414570 ,1,8100,414570 ,1,8101,414285 ,1,8102,414570 ,1,8103,414570 ,1,8104,388505 ,1,8107,414570 ,1,8109,414570 ,1,8111,414570 ,1,8113,388500 ,1,8115,414570 ,1,8119,414570 ,1,8121,388495 ,1,8123,414570 ,1,8124,414570 ,1,8125,414570 ,1,8126,388490 ,1,8128,414570 ,1,8130,414570 ,1,8131,414570 ,1,8132,414570 ,1,8133,414570 ,1,8134,414570 ,1,8135,414570 ,1,8136,414570 ,1,8137,414275 ,1,8138,414570 ,1,8139,388470 ,1,8140,414570 ,1,8141,414570 ,1,8142,414570 ,1,8143,414570 ,1,8144,414570 ,1,8145,414570 ,1,8146,414570 ,1,8147,414270 ,1,8148,388465 ,1,8149,388460 ,1,8150,414265 ,1,8151,414570 ,1,8152,388455 ,1,8153,414570 ,1,8154,388450 ,1,8155,388445 ,1,8156,388440 ,1,8157,414570 ,1,8158,414570 ,1,8159,388435 ,1,8160,414570 ,1,8161,414570 ,1,8163,414570 ,1,8164,414570 ,1,8165,414570 ,1,8166,414570 ,1,8167,414570 ,1,8168,414570 ,1,8169,414570 ,1,8170,414570 ,1,8171,414570 ,1,8173,414260 ,1,8174,414570 ,1,8175,414570 ,1,8177,414570 ,1,8178,414570 ,1,8179,414570 ,1,8180,414570 ,1,8182,414570 ,1,8183,414570 ,1,8184,414570 ,1,8185,414570 ,1,8186,414570 ,1,8187,414570 ,1,8188,414570 ,1,8189,388420 ,1,8191,388415 ,1,8192,388415 ,1,8194,388410 ,1,8197,414570 ,1,8198,388405 ,1,8199,388400 ,1,8200,388395 ,1,8202,414225 ,1,8203,388390 ,1,8205,414570 ,1,8206,414570 ,1,8207,414570 ,1,8208,414570 ,1,8209,414570 ,1,8210,414570 ,1,8211,414570 ,1,8212,414570 ,1,8213,414570 ,1,8214,414570 ,1,8216,414570 ,1,8217,414570 ,1,8218,414570 ,1,8219,414570 ,1,8220,414570 ,1,8221,414570 ,1,8223,414570 ,1,8226,414570 ,1,8227,388385 ,1,8228,388385 ,1,8229,388385 ,1,8230,414220 ,1,8232,388355 ,1,8233,388355 ,1,8234,388355 ,1,8235,388355 ,1,8236,388350 ,1,8237,414570 ,1,8241,388345 ,1,8242,414570 ,1,8243,414570 ,1,8244,414570 ,1,8246,414570 ,1,8247,388345 ,1,8248,414570 ,1,8249,414570 ,1,8250,388345 ,1,8251,388345 ,1,8254,414570 ,1,8257,414570 ,1,8258,414570 ,1,8259,414570 ,1,8261,414570 ,1,8265,414570 ,1,8267,414215 ,1,8268,388340 ,1,8269,388335 ,1,8270,414570 ,1,8271,414210 ,1,8272,414205 ,1,8273,414210 ,1,8274,414210 ,1,8275,414205 ,1,8276,414210 ,1,8277,414210 ,1,8278,414205 ,1,8279,414210 ,1,8280,414210 ,1,8281,414205 ,1,8282,414210 ,1,8283,414210 ,1,8284,414205 ,1,8285,414210 ,1,8286,414210 ,1,8287,414205 ,1,8288,414210 ,1,8289,414210 ,1,8290,414205 ,1,8291,414210 ,1,8292,414210 ,1,8293,414205 ,1,8294,414210 ,1,8295,414210 ,1,8296,414205 ,1,8297,414210 ,1,8298,414210 ,1,8299,414205 ,1,8300,414210 ,1,8301,414210 ,1,8302,414205 ,1,8303,414210 ,1,8304,414210 ,1,8305,414205 ,1,8306,414210 ,1,8307,414210 ,1,8308,414205 ,1,8309,414210 ,1,8310,414210 ,1,8311,414205 ,1,8312,414210 ,1,8313,388330 ,1,8316,388325 ,1,8318,414200 ,1,8320,388320 ,1,8321,388315 ,1,8322,388315 ,1,8323,388310 ,1,8324,388310 ,1,8325,388310 ,1,8326,388310 ,1,8327,388305 ,1,8328,388300 ,1,8329,414570 ,1,8330,414570 ,1,8331,414570 ,1,8332,414570 ,1,8333,414570 ,1,8334,388290 ,1,8335,388290 ,1,8336,388285 ,1,8337,388290 ,1,8338,388290 ,1,8339,388250 ,1,8344,414570 ,1,8345,414570 ,1,8346,414570 ,1,8347,414570 ,1,8348,414570 ,1,8349,414570 ,1,8353,414570 ,1,8357,414570 ,1,8358,414570 ,1,8359,414570 ,1,8361,414570 ,1,8362,414570 ,1,8364,414570 ,1,8365,414570 ,1,8368,414570 ,1,8370,414570 ,1,8371,414570 ,1,8372,414570 ,1,8374,414570 ,1,8375,414570 ,1,8376,414570 ,1,8378,414570 ,1,8379,414570 ,1,8380,414570 ,1,8382,414570 ,1,8383,414570 ,1,8385,414570 ,1,8386,414570 ,1,8388,414570 ,1,8389,414570 ,1,8390,414570 ,1,8394,414570 ,1,8396,414570 ,1,8398,414570 ,1,8399,414570 ,1,8400,414570 ,1,8404,414570 ,1,8406,388245 ,1,8407,388240 ,1,8408,388240 ,1,8409,388235 ,1,8410,388225 ,1,8411,414570 ,1,8413,414570 ,1,8415,414570 ,1,8419,414570 ,1,8424,414570 ,1,8425,414570 ,1,8426,414570 ,1,8427,414570 ,1,8428,388220 ,1,8429,388215 ,1,8430,388210 ,1,8431,388195 ,1,8432,388220 ,1,8433,388190 ,1,8434,388185 ,1,8435,388180 ,1,8436,388175 ,1,8437,388170 ,1,8438,388165 ,1,8439,388160 ,1,8440,414570 ,1,8441,414570 ,1,8443,414570 ,1,8447,414570 ,1,8452,414570 ,1,8453,414570 ,1,8454,388120 ,1,8457,414570 ,1,8458,414570 ,1,8459,414570 ,1,8460,414570 ,1,8462,414570 ,1,8463,414570 ,1,8464,388115 ,1,8466,414570 ,1,8468,414570 ,1,8469,414570 ,1,8470,414570 ,1,8473,414570 ,1,8475,414570 ,1,8476,414570 ,1,8477,414570 ,1,8478,414570 ,1,8479,414570 ,1,8480,414570 ,1,8481,414570 ,1,8482,414570 ,1,8485,414570 ,1,8486,414570 ,1,8488,414570 ,1,8489,414570 ,1,8491,414570 ,1,8492,414570 ,1,8493,414570 ,1,8494,414570 ,1,8495,414570 ,1,8496,414570 ,1,8497,414570 ,1,8498,414570 ,1,8499,388110 ,1,8502,414570 ,1,8503,414570 ,1,8504,388105 ,1,8505,388100 ,1,8506,388095 ,1,8507,388090 ,1,8508,388085 ,1,8509,388060 ,1,8510,414570 ,1,8511,414570 ,1,8512,414570 ,1,8513,414570 ,1,8514,414570 ,1,8515,414570 ,1,8516,414570 ,1,8517,414570 ,1,8519,414570 ,1,8526,414570 ,1,8527,414570 ,1,8528,414570 ,1,8530,414570 ,1,8532,414570 ,1,8533,388055 ,1,8534,388055 ,1,8536,414570 ,1,8537,414570 ,1,8538,414570 ,1,8540,414570 ,1,8541,414570 ,1,8546,414570 ,1,8547,414570 ,1,8549,414570 ,1,8551,414570 ,1,8552,388050 ,1,8553,414570 ,1,8554,388045 ,1,8555,388045 ,1,8559,414570 ,1,8560,414570 ,1,8561,414570 ,1,8562,414570 ,1,8565,414570 ,1,8568,414570 ,1,8569,414570 ,1,8570,414570 ,1,8571,414570 ,1,8573,414570 ,1,8574,414570 ,1,8575,388030 ,1,8576,388025 ,1,8578,414570 ,1,8579,414570 ,1,8583,414570 ,1,8585,414570 ,1,8586,414570 ,1,8587,414570 ,1,8588,414570 ,1,8589,414570 ,1,8590,414570 ,1,8591,414570 ,1,8592,414570 ,1,8593,414570 ,1,8594,414570 ,1,8596,414570 ,1,8597,414570 ,1,8600,414570 ,1,8601,414570 ,1,8602,414570 ,1,8603,414570 ,1,8604,414570 ,1,8605,414570 ,1,8606,414570 ,1,8608,414570 ,1,8609,414570 ,1,8610,414570 ,1,8612,414570 ,1,8613,414570 ,1,8614,414570 ,1,8615,414570 ,1,8617,414570 ,1,8618,414570 ,1,8620,414570 ,1,8621,414570 ,1,8623,414570 ,1,8624,414570 ,1,8626,414570 ,1,8629,414570 ,1,8632,414570 ,1,8633,414570 ,1,8635,388020 ,1,8637,414570 ,1,8638,414570 ,1,8639,414570 ,1,8641,414570 ,1,8642,414570 ,1,8645,414570 ,1,8646,414570 ,1,8647,414570 ,1,8649,414570 ,1,8650,414570 ,1,8651,414570 ,1,8652,414570 ,1,8653,414570 ,1,8654,414570 ,1,8655,414570 ,1,8656,414570 ,1,8657,414570 ,1,8658,414570 ,1,8659,414570 ,1,8660,414570 ,1,8663,414570 ,1,8664,414570 ,1,8665,414570 ,1,8666,414570 ,1,8667,414570 ,1,8668,414570 ,1,8669,414570 ,1,8670,414570 ,1,8673,388000 ,1,8674,414570 ,1,8676,414570 ,1,8677,414570 ,1,8678,414570 ,1,8679,414570 ,1,8680,414570 ,1,8681,387995 ,1,8682,387995 ,1,8683,387995 ,1,8684,387990 ,1,8685,387995 ,1,8686,387995 ,1,8687,414570 ,1,8688,414570 ,1,8689,414570 ,1,8690,414570 ,1,8691,414570 ,1,8692,414570 ,1,8693,414570 ,1,8694,414570 ,1,8695,414570 ,1,8696,414570 ,1,8697,414570 ,1,8698,414570 ,1,8699,414570 ,1,8701,414570 ,1,8702,414570 ,1,8703,414570 ,1,8704,414570 ,1,8705,414570 ,1,8706,414570 ,1,8707,414570 ,1,8708,414570 ,1,8709,414570 ,1,8710,414570 ,1,8711,414570 ,1,8714,414570 ,1,8715,414570 ,1,8716,414570 ,1,8717,387985 ,1,8718,387985 ,1,8719,387975 ,1,8720,387985 ,1,8721,387985 ,1,8726,414570 ,1,8728,414570 ,1,8729,414570 ,1,8730,387970 ,1,8731,387970 ,1,8732,387970 ,1,8734,387970 ,1,8735,387970 ,1,8736,387970 ,1,8737,387970 ,1,8740,387970 ,1,8741,387970 ,1,8742,387970 ,1,8743,387970 ,1,8744,387970 ,1,8745,387970 ,1,8746,387970 ,1,8747,387970 ,1,8754,387970 ,1,8755,387970 ,1,8756,387970 ,1,8757,387970 ,1,8758,387970 ,1,8759,387970 ,1,8760,387970 ,1,8761,387970 ,1,8763,387970 ,1,8764,387970 ,1,8766,387970 ,1,8767,387970 ,1,8769,387970 ,1,8770,387970 ,1,8771,387970 ,1,8772,387970 ,1,8773,387970 ,1,8775,387970 ,1,8776,387970 ,1,8777,387970 ,1,8778,387970 ,1,8779,387970 ,1,8780,387970 ,1,8781,387970 ,1,8782,387970 ,1,8783,387970 ,1,8784,387970 ,1,8785,387970 ,1,8788,387970 ,1,8790,387970 ,1,8791,387970 ,1,8792,387970 ,1,8793,387970 ,1,8794,387970 ,1,8795,387970 ,1,8796,387970 ,1,8797,387970 ,1,8798,387970 ,1,8799,387970 ,1,8800,387970 ,1,8801,387970 ,1,8802,387970 ,1,8803,387970 ,1,8804,387970 ,1,8805,387970 ,1,8806,387970 ,1,8807,387970 ,1,8808,387970 ,1,8809,387970 ,1,8810,387970 ,1,8811,387970 ,1,8812,387970 ,1,8813,387970 ,1,8814,387970 ,1,8815,387970 ,1,8816,387970 ,1,8817,387970 ,1,8818,387970 ,1,8819,387970 ,1,8820,387970 ,1,8821,387970 ,1,8822,387970 ,1,8823,387970 ,1,8824,387970 ,1,8825,387970 ,1,8826,387970 ,1,8827,387970 ,1,8828,387970 ,1,8829,387970 ,1,8830,387970 ,1,8831,387970 ,1,8832,387970 ,1,8833,387970 ,1,8834,387970 ,1,8835,387970 ,1,8836,387970 ,1,8837,387970 ,1,8838,387970 ,1,8839,387970 ,1,8843,387970 ,1,8844,387970 ,1,8846,387970 ,1,8847,387970 ,1,8848,387970 ,1,8849,387970 ,1,8850,387970 ,1,8851,387970 ,1,8853,387970 ,1,8854,387970 ,1,8855,387970 ,1,8856,387970 ,1,8857,387970 ,1,8859,387970 ,1,8860,387970 ,1,8863,387970 ,1,8864,387970 ,1,8865,387970 ,1,8866,387970 ,1,8867,387970 ,1,8868,387970 ,1,8870,387970 ,1,8871,387970 ,1,8873,387970 ,1,8874,387970 ,1,8875,387970 ,1,8877,387970 ,1,8878,387970 ,1,8879,387970 ,1,8880,387970 ,1,8881,387970 ,1,8883,387970 ,1,8884,387970 ,1,8885,387970 ,1,8888,387970 ,1,8890,387970 ,1,8892,387970 ,1,8894,387970 ,1,8895,387970 ,1,8896,387970 ,1,8897,387970 ,1,8898,387970 ,1,8899,387970 ,1,8900,387970 ,1,8901,387970 ,1,8902,387970 ,1,8903,387970 ,1,8904,387970 ,1,8905,387970 ,1,8906,387970 ,1,8907,387970 ,1,8908,387970 ,1,8909,387970 ,1,8910,387970 ,1,8911,387970 ,1,8912,387970 ,1,8913,387970 ,1,8914,387970 ,1,8915,387970 ,1,8916,387970 ,1,8917,387970 ,1,8918,387970 ,1,8919,387970 ,1,8920,387970 ,1,8921,387970 ,1,8922,387970 ,1,8923,387970 ,1,8924,387970 ,1,8925,387970 ,1,8926,387970 ,1,8927,387970 ,1,8928,387970 ,1,8929,387970 ,1,8930,387970 ,1,8931,387970 ,1,8932,387970 ,1,8933,387970 ,1,8934,387970 ,1,8940,387970 ,1,8941,387970 ,1,8943,387970 ,1,8944,387970 ,1,8945,387970 ,1,8946,387970 ,1,8948,387970 ,1,8949,387970 ,1,8950,387970 ,1,8951,387970 ,1,8952,387970 ,1,8953,387970 ,1,8954,387970 ,1,8955,387970 ,1,8956,387970 ,1,8957,387970 ,1,8958,387970 ,1,8960,387970 ,1,8961,387970 ,1,8962,387970 ,1,8963,387970 ,1,8964,387970 ,1,8965,387970 ,1,8968,387970 ,1,8973,414195 ,1,8981,387970 ,1,8982,387970 ,1,8983,387970 ,1,8984,387970 ,1,8985,387970 ,1,8986,387970 ,1,8988,387970 ,1,8989,387970 ,1,8991,387970 ,1,8992,387970 ,1,8995,387970 ,1,8996,387970 ,1,8997,387970 ,1,8998,387970 ,1,9002,414190 ,1,9003,387965 ,1,9004,414190 ,1,9005,414190 ,1,9006,414190 ,1,9007,387970 ,1,9009,387970 ,1,9011,387970 ,1,9012,387970 ,1,9013,387970 ,1,9014,387970 ,1,9016,387970 ,1,9017,387970 ,1,9018,387970 ,1,9019,387970 ,1,9021,387970 ,1,9022,387970 ,1,9024,387970 ,1,9025,387970 ,1,9028,387970 ,1,9029,387970 ,1,9030,387970 ,1,9032,387970 ,1,9034,387970 ,1,9035,387970 ,1,9036,387970 ,1,9037,387970 ,1,9039,387970 ,1,9040,387970 ,1,9043,387970 ,1,9044,387970 ,1,9045,387970 ,1,9046,387970 ,1,9047,387970 ,1,9049,387970 ,1,9050,387970 ,1,9052,387970 ,1,9055,387970 ,1,9056,387970 ,1,9057,387970 ,1,9058,387970 ,1,9059,387970 ,1,9061,387970 ,1,9064,387970 ,1,9065,387970 ,1,9066,387970 ,1,9067,387970 ,1,9068,387970 ,1,9069,387970 ,1,9070,387970 ,1,9071,387970 ,1,9072,387970 ,1,9073,387970 ,1,9075,387970 ,1,9076,387970 ,1,9077,387970 ,1,9078,387970 ,1,9079,387970 ,1,9081,387970 ,1,9083,387970 ,1,9084,387970 ,1,9088,387970 ,1,9094,387970 ,1,9097,387970 ,1,9098,387970 ,1,9099,387970 ,1,9100,387970 ,1,9101,387970 ,1,9102,387970 ,1,9103,387970 ,1,9105,387970 ,1,9106,387970 ,1,9108,387970 ,1,9109,387970 ,1,9110,387970 ,1,9111,387970 ,1,9113,387970 ,1,9114,387970 ,1,9116,387970 ,1,9117,387970 ,1,9118,387970 ,1,9119,387970 ,1,9120,387970 ,1,9122,387970 ,1,9123,387970 ,1,9124,387970 ,1,9125,387970 ,1,9126,387970 ,1,9127,387970 ,1,9128,387970 ,1,9129,387970 ,1,9130,387970 ,1,9133,387970 ,1,9134,387970 ,1,9135,387970 ,1,9136,387970 ,1,9137,387970 ,1,9138,387970 ,1,9139,387970 ,1,9149,387970 ,1,9150,387970 ,1,9151,387970 ,1,9152,387970 ,1,9153,387970 ,1,9155,387970 ,1,9157,387970 ,1,9158,387970 ,1,9159,387970 ,1,9161,387970 ,1,9162,387970 ,1,9165,387970 ,1,9166,387970 ,1,9167,387970 ,1,9168,387970 ,1,9169,387970 ,1,9170,387970 ,1,9171,387970 ,1,9172,387970 ,1,9173,387970 ,1,9175,387970 ,1,9176,387970 ,1,9177,387970 ,1,9179,387970 ,1,9182,387970 ,1,9183,387970 ,1,9184,387970 ,1,9186,387970 ,1,9188,387970 ,1,9189,387970 ,1,9191,387970 ,1,9192,387970 ,1,9193,387970 ,1,9194,387970 ,1,9195,387970 ,1,9196,387970 ,1,9197,387970 ,1,9198,387970 ,1,9199,387970 ,1,9200,387970 ,1,9201,387970 ,1,9202,387970 ,1,9203,387970 ,1,9204,387970 ,1,9205,387970 ,1,9206,387970 ,1,9207,387970 ,1,9209,387970 ,1,9213,387970 ,1,9216,414175 ,1,9217,387970 ,1,9221,387970 ,1,9222,387960 ,1,9224,387970 ,1,9225,387960 ,1,9226,387960 ,1,9227,387970 ,1,9228,387970 ,1,9229,387970 ,1,9230,387970 ,1,9231,387970 ,1,9232,387970 ,1,9233,387970 ,1,9234,387970 ,1,9235,387970 ,1,9236,387970 ,1,9237,387970 ,1,9238,387970 ,1,9239,387970 ,1,9240,387970 ,1,9242,387970 ,1,9243,387970 ,1,9244,387970 ,1,9245,387970 ,1,9246,387970 ,1,9247,387970 ,1,9248,387970 ,1,9249,387970 ,1,9250,387970 ,1,9251,387970 ,1,9252,387970 ,1,9257,387970 ,1,9258,387970 ,1,9260,387970 ,1,9261,387970 ,1,9262,387970 ,1,9265,387970 ,1,9266,387970 ,1,9267,387970 ,1,9270,387970 ,1,9271,387970 ,1,9272,387970 ,1,9273,387970 ,1,9274,387970 ,1,9275,387970 ,1,9276,387970 ,1,9278,387970 ,1,9279,387970 ,1,9280,387970 ,1,9281,387970 ,1,9282,387970 ,1,9283,387970 ,1,9284,387970 ,1,9285,387970 ,1,9286,387970 ,1,9287,387970 ,1,9288,387970 ,1,9290,387970 ,1,9291,387970 ,1,9292,387970 ,1,9293,387970 ,1,9295,387970 ,1,9299,387970 ,1,9300,387970 ,1,9302,387970 ,1,9304,387970 ,1,9307,387970 ,1,9308,387970 ,1,9309,387970 ,1,9310,387970 ,1,9311,387970 ,1,9312,387970 ,1,9313,387970 ,1,9315,387970 ,1,9316,387970 ,1,9317,387970 ,1,9322,387970 ,1,9323,387970 ,1,9324,387970 ,1,9325,387970 ,1,9326,387970 ,1,9328,387970 ,1,9329,387970 ,1,9330,387970 ,1,9331,387970 ,1,9332,387970 ,1,9333,387970 ,1,9335,387970 ,1,9338,387970 ,1,9339,387970 ,1,9340,387970 ,1,9341,387970 ,1,9342,387970 ,1,9344,387970 ,1,9346,387970 ,1,9347,387970 ,1,9348,387970 ,1,9349,387970 ,1,9350,387970 ,1,9351,387970 ,1,9353,387970 ,1,9355,387970 ,1,9357,387970 ,1,9358,387970 ,1,9359,387970 ,1,9362,387970 ,1,9364,387970 ,1,9365,387970 ,1,9366,387970 ,1,9367,387970 ,1,9368,387970 ,1,9369,387970 ,1,9371,387970 ,1,9372,387970 ,1,9375,387970 ,1,9376,387970 ,1,9377,387970 ,1,9378,387970 ,1,9379,387970 ,1,9381,387970 ,1,9382,387970 ,1,9383,387970 ,1,9384,387970 ,1,9385,387970 ,1,9386,387970 ,1,9387,387970 ,1,9390,387970 ,1,9392,387970 ,1,9393,387970 ,1,9405,387970 ,1,9407,387970 ,1,9408,387970 ,1,9409,387970 ,1,9410,387970 ,1,9411,387970 ,1,9412,387970 ,1,9414,387970 ,1,9415,387970 ,1,9417,387970 ,1,9418,387970 ,1,9421,387970 ,1,9422,387970 ,1,9426,387970 ,1,9427,387970 ,1,9428,387970 ,1,9429,387970 ,1,9430,387970 ,1,9431,387970 ,1,9432,387970 ,1,9435,387970 ,1,9436,387970 ,1,9437,387970 ,1,9439,387970 ,1,9440,387970 ,1,9441,387970 ,1,9442,387970 ,1,9443,387970 ,1,9444,387970 ,1,9446,387970 ,1,9447,387970 ,1,9448,387970 ,1,9452,387970 ,1,9453,387970 ,1,9455,387970 ,1,9457,387970 ,1,9459,387970 ,1,9463,387970 ,1,9466,387970 ,1,9467,414170 ,1,9470,387970 ,1,9471,387970 ,1,9472,387970 ,1,9474,387970 ,1,9475,387970 ,1,9478,387970 ,1,9479,387970 ,1,9480,387970 ,1,9481,387970 ,1,9482,387970 ,1,9483,387970 ,1,9484,387970 ,1,9485,387970 ,1,9486,387970 ,1,9487,387970 ,1,9488,387970 ,1,9490,387970 ,1,9491,387970 ,1,9492,387970 ,1,9493,387970 ,1,9494,387970 ,1,9495,387970 ,1,9496,387970 ,1,9497,387970 ,1,9498,387970 ,1,9499,387970 ,1,9500,387970 ,1,9501,387970 ,1,9502,387970 ,1,9503,387970 ,1,9504,387970 ,1,9505,387970 ,1,9506,387970 ,1,9507,387970 ,1,9508,387970 ,1,9509,387970 ,1,9510,387970 ,1,9511,387970 ,1,9512,387970 ,1,9513,387970 ,1,9514,387970 ,1,9515,387970 ,1,9516,387970 ,1,9517,387970 ,1,9518,387970 ,1,9519,387970 ,1,9520,387970 ,1,9521,387970 ,1,9522,387970 ,1,9523,387970 ,1,9529,387970 ,1,9530,387970 ,1,9531,387970 ,1,9535,387970 ,1,9537,387970 ,1,9539,387970 ,1,9540,387970 ,1,9541,387970 ,1,9544,387970 ,1,9545,387970 ,1,9546,387970 ,1,9547,387970 ,1,9548,387970 ,1,9549,387970 ,1,9550,387970 ,1,9551,387970 ,1,9552,387970 ,1,9553,387970 ,1,9554,387970 ,1,9555,387970 ,1,9558,387970 ,1,9561,387970 ,1,9562,387970 ,1,9563,387970 ,1,9564,387970 ,1,9565,387970 ,1,9566,387970 ,1,9567,387970 ,1,9568,387970 ,1,9569,387970 ,1,9570,387970 ,1,9571,387970 ,1,9572,387970 ,1,9576,387970 ,1,9580,387970 ,1,9581,387970 ,1,9586,387970 ,1,9587,387970 ,1,9589,387970 ,1,9590,387970 ,1,9600,387970 ,1,9601,387970 ,1,9603,387970 ,1,9604,414165 ,1,9605,387970 ,1,9606,387970 ,1,9610,387970 ,1,9612,414160 ,1,9613,387970 ,1,9614,387970 ,1,9615,387970 ,1,9617,387970 ,1,9618,387970 ,1,9621,414150 ,1,9622,387970 ,1,9623,387970 ,1,9625,387970 ,1,9627,387970 ,1,9629,387970 ,1,9630,387940 ,1,9631,387970 ,1,9632,414145 ,1,9634,387970 ,1,9635,387970 ,1,9636,387970 ,1,9637,387970 ,1,9638,387970 ,1,9639,387970 ,1,9640,387970 ,1,9641,387970 ,1,9642,387970 ,1,9643,387970 ,1,9644,387970 ,1,9645,387970 ,1,9646,387970 ,1,9647,387970 ,1,9648,387970 ,1,9649,387970 ,1,9650,387970 ,1,9651,387970 ,1,9654,387970 ,1,9655,387970 ,1,9656,387970 ,1,9657,387970 ,1,9658,387970 ,1,9661,387970 ,1,9662,387970 ,1,9663,387970 ,1,9664,387970 ,1,9665,387970 ,1,9667,387970 ,1,9668,387970 ,1,9669,387970 ,1,9670,387970 ,1,9671,387970 ,1,9673,387970 ,1,9674,387970 ,1,9675,387970 ,1,9676,387970 ,1,9678,387970 ,1,9679,387970 ,1,9680,387970 ,1,9681,387970 ,1,9684,387970 ,1,9687,387970 ,1,9688,387970 ,1,9691,387970 ,1,9692,387970 ,1,9694,387970 ,1,9695,387970 ,1,9696,387970 ,1,9698,387970 ,1,9701,387970 ,1,9702,387970 ,1,9703,387970 ,1,9704,387970 ,1,9705,387970 ,1,9706,387970 ,1,9707,387970 ,1,9708,387970 ,1,9709,414140 ,1,9710,387970 ,1,9711,387970 ,1,9712,387970 ,1,9713,387970 ,1,9714,387970 ,1,9715,387935 ,1,9716,387970 ,1,9717,387970 ,1,9718,387935 ,1,9719,387935 ,1,9720,387970 ,1,9721,387970 ,1,9722,387970 ,1,9723,387970 ,1,9724,387970 ,1,9725,387970 ,1,9726,387970 ,1,9727,387970 ,1,9729,387930 ,1,9731,387970 ,1,9732,387970 ,1,9736,387970 ,1,9739,387970 ,1,9740,387970 ,1,9741,387970 ,1,9743,387970 ,1,9744,387970 ,1,9749,414135 ,1,9753,387970 ,1,9758,387925 ,1,9759,387970 ,1,9760,387970 ,1,9761,387970 ,1,9762,387970 ,1,9764,387970 ,1,9765,387970 ,1,9767,387915 ,1,9768,387970 ,1,9769,414110 ,1,9770,387970 ,1,9772,387970 ,1,9773,387970 ,1,9774,387970 ,1,9775,387970 ,1,9776,387970 ,1,9777,387970 ,1,9778,387970 ,1,9781,387970 ,1,9782,387970 ,1,9783,387970 ,1,9784,387970 ,1,9786,387970 ,1,9789,387970 ,1,9790,387970 ,1,9792,387970 ,1,9793,387970 ,1,9795,387970 ,1,9796,387970 ,1,9797,387970 ,1,9798,387970 ,1,9800,387970 ,1,9801,387970 ,1,9802,387970 ,1,9805,387970 ,1,9806,387970 ,1,9807,387970 ,1,9808,387970 ,1,9809,387970 ,1,9810,387970 ,1,9811,387970 ,1,9812,387970 ,1,9813,387970 ,1,9814,387970 ,1,9815,387970 ,1,9816,387970 ,1,9817,387970 ,1,9818,387970 ,1,9820,387970 ,1,9821,387970 ,1,9823,387970 ,1,9824,387970 ,1,9825,387970 ,1,9826,387970 ,1,9827,387970 ,1,9828,387970 ,1,9829,387970 ,1,9830,387970 ,1,9831,387970 ,1,9832,387970 ,1,9833,387970 ,1,9834,387970 ,1,9835,387970 ,1,9836,387970 ,1,9837,387970 ,1,9839,387970 ,1,9841,387970 ,1,9842,387970 ,1,9843,387970 ,1,9844,387970 ,1,9845,387970 ,1,9846,387970 ,1,9847,387970 ,1,9848,387970 ,1,9849,387970 ,1,9850,387970 ,1,9851,387970 ,1,9852,387970 ,1,9853,387970 ,1,9854,387970 ,1,9855,387970 ,1,9856,387970 ,1,9858,387970 ,1,9860,387970 ,1,9861,387970 ,1,9862,387970 ,1,9864,387970 ,1,9866,387970 ,1,9869,387970 ,1,9871,387970 ,1,9872,387970 ,1,9874,387970 ,1,9876,387970 ,1,9877,387970 ,1,9878,387970 ,1,9880,387970 ,1,9882,387970 ,1,9883,387970 ,1,9885,387970 ,1,9886,387970 ,1,9888,387970 ,1,9889,387970 ,1,9890,387970 ,1,9891,387970 ,1,9892,387970 ,1,9893,387970 ,1,9897,387970 ,1,9898,387970 ,1,9900,387970 ,1,9903,387970 ,1,9904,387970 ,1,9906,387970 ,1,9908,387970 ,1,9909,387970 ,1,9911,387970 ,1,9913,387970 ,1,9914,387970 ,1,9915,387970 ,1,9917,387970 ,1,9919,387970 ,1,9921,387970 ,1,9922,387970 ,1,9923,387970 ,1,9924,387970 ,1,9925,387970 ,1,9927,387970 ,1,9928,387970 ,1,9931,387970 ,1,9933,387970 ,1,9934,387970 ,1,9935,387970 ,1,9936,387970 ,1,9937,387970 ,1,9939,387970 ,1,9941,387970 ,1,9943,387970 ,1,9945,387970 ,1,9947,387970 ,1,9949,387970 ,1,9950,387970 ,1,9951,387970 ,1,9952,387970 ,1,9953,387970 ,1,9955,387970 ,1,9956,387970 ,1,9957,387970 ,1,9959,387970 ,1,9960,387970 ,1,9961,387970 ,1,9963,387970 ,1,9964,387970 ,1,9965,387970 ,1,9967,387970 ,1,9968,387970 ,1,9970,387970 ,1,9976,387970 ,1,9977,387970 ,1,9978,387970 ,1,9979,387970 ,1,9980,387970 ,1,9982,387970 ,1,9983,387970 ,1,9984,387970 ,1,9986,387970 ,1,9987,387970 ,1,9988,387970 ,1,9989,387970 ,1,9990,387970 ,1,9991,387970 ,1,9992,387970 ,1,9993,387970 ,1,9994,387970 ,1,9996,387970 ,1,10000,387970 ,1,10001,387970 ,1,10002,387970 ,1,10003,387970 ,1,10005,387970 ,1,10006,387970 ,1,10008,387970 ,1,10009,387970 ,1,10010,387970 ,1,10011,387970 ,1,10012,387970 ,1,10014,387970 ,1,10015,387970 ,1,10016,387970 ,1,10017,387970 ,1,10018,387970 ,1,10019,387970 ,1,10020,387970 ,1,10021,387970 ,1,10023,387970 ,1,10024,387970 ,1,10025,387970 ,1,10026,387970 ,1,10028,387970 ,1,10029,387970 ,1,10030,387970 ,1,10031,387970 ,1,10032,387970 ,1,10033,387970 ,1,10034,387970 ,1,10035,387970 ,1,10036,387970 ,1,10037,387970 ,1,10038,387970 ,1,10039,387970 ,1,10040,387970 ,1,10041,387970 ,1,10042,387970 ,1,10043,387970 ,1,10044,387970 ,1,10045,387970 ,1,10046,387970 ,1,10047,387970 ,1,10048,387970 ,1,10049,387970 ,1,10050,387970 ,1,10051,387970 ,1,10052,387970 ,1,10053,387970 ,1,10054,387970 ,1,10055,387970 ,1,10056,387970 ,1,10057,387970 ,1,10058,387970 ,1,10059,387970 ,1,10060,387970 ,1,10061,387970 ,1,10062,387970 ,1,10063,387970 ,1,10064,387970 ,1,10065,387970 ,1,10066,387970 ,1,10067,387970 ,1,10068,387970 ,1,10069,387970 ,1,10070,387970 ,1,10071,387970 ,1,10072,387970 ,1,10073,387970 ,1,10076,387970 ,1,10077,387970 ,1,10078,387970 ,1,10079,387970 ,1,10080,387970 ,1,10082,387970 ,1,10083,387970 ,1,10084,387970 ,1,10085,387970 ,1,10086,387970 ,1,10087,387970 ,1,10088,387970 ,1,10089,387970 ,1,10090,387970 ,1,10092,387970 ,1,10093,387970 ,1,10094,387970 ,1,10096,387970 ,1,10098,387970 ,1,10099,387970 ,1,10100,387970 ,1,10101,387970 ,1,10103,387970 ,1,10104,387970 ,1,10106,387970 ,1,10108,387970 ,1,10110,387970 ,1,10112,387970 ,1,10115,387970 ,1,10116,387970 ,1,10117,387970 ,1,10118,387970 ,1,10119,387970 ,1,10120,387970 ,1,10121,387970 ,1,10122,387970 ,1,10123,387970 ,1,10124,387970 ,1,10125,387970 ,1,10126,387970 ,1,10127,387970 ,1,10128,387970 ,1,10129,387970 ,1,10130,387970 ,1,10131,387970 ,1,10132,387970 ,1,10133,387970 ,1,10134,387970 ,1,10135,387970 ,1,10137,387970 ,1,10139,387970 ,1,10140,387970 ,1,10141,387970 ,1,10142,387970 ,1,10143,387970 ,1,10144,387970 ,1,10145,387970 ,1,10148,387970 ,1,10149,387970 ,1,10150,387970 ,1,10152,387970 ,1,10153,387970 ,1,10155,387970 ,1,10156,387970 ,1,10157,387970 ,1,10158,387970 ,1,10159,387970 ,1,10161,387970 ,1,10162,387970 ,1,10163,387970 ,1,10164,387970 ,1,10165,387970 ,1,10166,387970 ,1,10167,387970 ,1,10168,387970 ,1,10169,387970 ,1,10171,387970 ,1,10172,387970 ,1,10173,387970 ,1,10174,387970 ,1,10175,387970 ,1,10176,387970 ,1,10177,387970 ,1,10178,387970 ,1,10179,387970 ,1,10180,387970 ,1,10181,387970 ,1,10182,387970 ,1,10183,387970 ,1,10184,387970 ,1,10185,387970 ,1,10186,387970 ,1,10187,387970 ,1,10188,387970 ,1,10189,387970 ,1,10190,387970 ,1,10191,387970 ,1,10192,387970 ,1,10193,387970 ,1,10195,387970 ,1,10196,387970 ,1,10197,387970 ,1,10198,387970 ,1,10199,387970 ,1,10200,387970 ,1,10201,387970 ,1,10204,387970 ,1,10205,387970 ,1,10206,387970 ,1,10207,387970 ,1,10208,387970 ,1,10209,387970 ,1,10210,387970 ,1,10211,387970 ,1,10212,387970 ,1,10213,387970 ,1,10214,387970 ,1,10215,387970 ,1,10216,387970 ,1,10217,387970 ,1,10218,387970 ,1,10219,387970 ,1,10220,387970 ,1,10221,387970 ,1,10222,387970 ,1,10223,387970 ,1,10224,387970 ,1,10225,387970 ,1,10226,387970 ,1,10227,387970 ,1,10228,387970 ,1,10229,387970 ,1,10230,387970 ,1,10231,387970 ,1,10232,387970 ,1,10233,387970 ,1,10237,387970 ,1,10238,387970 ,1,10239,387970 ,1,10240,387970 ,1,10241,387970 ,1,10242,387970 ,1,10243,387970 ,1,10244,387970 ,1,10245,387970 ,1,10246,387970 ,1,10247,387970 ,1,10248,387970 ,1,10249,387970 ,1,10250,387970 ,1,10252,387970 ,1,10253,387970 ,1,10255,387970 ,1,10256,387970 ,1,10257,387970 ,1,10258,387970 ,1,10260,387970 ,1,10261,387970 ,1,10262,387970 ,1,10264,387970 ,1,10268,387970 ,1,10269,387970 ,1,10270,387970 ,1,10271,387970 ,1,10272,387970 ,1,10273,387970 ,1,10274,387970 ,1,10275,387970 ,1,10276,387970 ,1,10277,387970 ,1,10278,387970 ,1,10279,387970 ,1,10280,387970 ,1,10281,387970 ,1,10282,387970 ,1,10283,387970 ,1,10284,387970 ,1,10286,387970 ,1,10288,387970 ,1,10289,387970 ,1,10290,387970 ,1,10291,387970 ,1,10292,387970 ,1,10293,387970 ,1,10294,387970 ,1,10295,387970 ,1,10299,387970 ,1,10300,387970 ,1,10301,387970 ,1,10302,387970 ,1,10303,387970 ,1,10304,387970 ,1,10305,387970 ,1,10309,387970 ,1,10310,387970 ,1,10313,387970 ,1,10314,387970 ,1,10315,387970 ,1,10316,387970 ,1,10319,387970 ,1,10320,387970 ,1,10321,387970 ,1,10322,387970 ,1,10323,387970 ,1,10324,387970 ,1,10325,387970 ,1,10328,387970 ,1,10333,387970 ,1,10334,387970 ,1,10336,387970 ,1,10339,387970 ,1,10342,387970 ,1,10343,387970 ,1,10344,387970 ,1,10345,387970 ,1,10349,387970 ,1,10350,387970 ,1,10351,387970 ,1,10352,387970 ,1,10353,387970 ,1,10354,387970 ,1,10356,387970 ,1,10357,387970 ,1,10358,387970 ,1,10359,387970 ,1,10360,387970 ,1,10361,387970 ,1,10363,387970 ,1,10364,387970 ,1,10365,387970 ,1,10366,387970 ,1,10367,387970 ,1,10369,387970 ,1,10370,387970 ,1,10371,387970 ,1,10372,387970 ,1,10373,387970 ,1,10374,387970 ,1,10380,387970 ,1,10382,387970 ,1,10384,387970 ,1,10385,387970 ,1,10386,387970 ,1,10388,387970 ,1,10389,387970 ,1,10390,387970 ,1,10391,387970 ,1,10392,387970 ,1,10394,387970 ,1,10395,387970 ,1,10396,387970 ,1,10398,387970 ,1,10399,387970 ,1,10400,387970 ,1,10403,387970 ,1,10404,387970 ,1,10405,387970 ,1,10406,387970 ,1,10407,387970 ,1,10408,387970 ,1,10411,387970 ,1,10413,387970 ,1,10415,387970 ,1,10417,387970 ,1,10419,387970 ,1,10423,387970 ,1,10425,387970 ,1,10427,387970 ,1,10428,387970 ,1,10429,387970 ,1,10430,387970 ,1,10432,387970 ,1,10434,387970 ,1,10435,387970 ,1,10436,387970 ,1,10437,387970 ,1,10438,387970 ,1,10439,387970 ,1,10440,387970 ,1,10441,387970 ,1,10442,387970 ,1,10443,387970 ,1,10444,387970 ,1,10445,387970 ,1,10446,387970 ,1,10447,387970 ,1,10448,387970 ,1,10449,387970 ,1,10450,387970 ,1,10451,387970 ,1,10452,387970 ,1,10453,387970 ,1,10454,387970 ,1,10455,387970 ,1,10456,387970 ,1,10457,387970 ,1,10458,387970 ,1,10459,387970 ,1,10460,387970 ,1,10461,387970 ,1,10462,387970 ,1,10463,387970 ,1,10464,387970 ,1,10465,387970 ,1,10467,387970 ,1,10468,387970 ,1,10469,387970 ,1,10470,387970 ,1,10471,387970 ,1,10472,387970 ,1,10473,387970 ,1,10474,387970 ,1,10475,387970 ,1,10477,387970 ,1,10478,387970 ,1,10479,387970 ,1,10481,387970 ,1,10482,387970 ,1,10483,387970 ,1,10484,387970 ,1,10486,387970 ,1,10487,387970 ,1,10488,387970 ,1,10489,387970 ,1,10490,387970 ,1,10491,387970 ,1,10492,387970 ,1,10493,387970 ,1,10495,387970 ,1,10496,387970 ,1,10498,387970 ,1,10501,387970 ,1,10502,387970 ,1,10503,387970 ,1,10504,387970 ,1,10506,387970 ,1,10507,387970 ,1,10509,387970 ,1,10510,387970 ,1,10511,387970 ,1,10512,387970 ,1,10513,387970 ,1,10514,387970 ,1,10515,387970 ,1,10516,387970 ,1,10517,387970 ,1,10518,387970 ,1,10520,387970 ,1,10521,387970 ,1,10522,387970 ,1,10523,387970 ,1,10524,387970 ,1,10525,387970 ,1,10527,387970 ,1,10530,387970 ,1,10536,387910 ,1,10537,387910 ,1,10538,387905 ,1,10540,414105 ,1,10541,387970 ,1,10546,387970 ,1,10547,387970 ,1,10548,387970 ,1,10550,387970 ,1,10552,387970 ,1,10553,387970 ,1,10558,387970 ,1,10561,387970 ,1,10562,387970 ,1,10563,387970 ,1,10565,387970 ,1,10569,387970 ,1,10574,387970 ,1,10575,414100 ,1,10576,414095 ,1,10577,387900 ,1,10578,387885 ,1,10579,387880 ,1,10580,387875 ,1,10581,414090 ,1,10582,387870 ,1,10583,387855 ,1,10584,414085 ,1,10585,414080 ,1,10586,387850 ,1,10587,414075 ,1,10588,414050 ,1,10589,387845 ,1,10590,387840 ,1,10591,387825 ,1,10592,387820 ,1,10593,414045 ,1,10594,414040 ,1,10595,387815 ,1,10596,387810 ,1,10597,414035 ,1,10598,387800 ,1,10599,414025 ,1,10600,414020 ,1,10601,387795 ,1,10602,414015 ,1,10603,414010 ,1,10604,387790 ,1,10605,413985 ,1,10606,413980 ,1,10607,387785 ,1,10608,413975 ,1,10609,413970 ,1,10610,387755 ,1,10611,413965 ,1,10612,413960 ,1,10613,387750 ,1,10614,413955 ,1,10615,387745 ,1,10616,387740 ,1,10617,387725 ,1,10618,387720 ,1,10619,387715 ,1,10620,387710 ,1,10621,387680 ,1,10622,387675 ,1,10623,387670 ,1,10624,387665 ,1,10625,387660 ,1,10626,387655 ,1,10627,387650 ,1,10628,387645 ,1,10629,387625 ,1,10630,387620 ,1,10631,387615 ,1,10633,387970 ,1,10634,387970 ,1,10635,387970 ,1,10636,387970 ,1,10637,387970 ,1,10642,413950 ,1,10643,387970 ,1,10648,387970 ,1,10649,387970 ,1,10650,387970 ,1,10651,387970 ,1,10652,387970 ,1,10653,387970 ,1,10657,387970 ,1,10661,387970 ,1,10662,387970 ,1,10663,387970 ,1,10665,387970 ,1,10666,387970 ,1,10668,387970 ,1,10669,387970 ,1,10672,387970 ,1,10674,387970 ,1,10675,387970 ,1,10676,387970 ,1,10678,387970 ,1,10679,387970 ,1,10680,387970 ,1,10682,387970 ,1,10683,387970 ,1,10684,387970 ,1,10686,387970 ,1,10687,387970 ,1,10688,387610 ,1,10689,387970 ,1,10690,387970 ,1,10692,387970 ,1,10693,387970 ,1,10694,387970 ,1,10698,387970 ,1,10700,387970 ,1,10702,387970 ,1,10703,387970 ,1,10704,387970 ,1,10708,387970 ,1,10715,387970 ,1,10717,387970 ,1,10719,387970 ,1,10722,413930 ,1,10723,387970 ,1,10725,413925 ,1,10726,413925 ,1,10728,387970 ,1,10729,387970 ,1,10730,387970 ,1,10731,387970 ,1,10733,387605 ,1,10735,387600 ,1,10736,387595 ,1,10737,387590 ,1,10738,387570 ,1,10739,387565 ,1,10740,387560 ,1,10741,387555 ,1,10742,387550 ,1,10743,387545 ,1,10744,387970 ,1,10745,387970 ,1,10747,387970 ,1,10751,387970 ,1,10756,387970 ,1,10757,387970 ,1,10758,387970 ,1,10761,387970 ,1,10762,387970 ,1,10763,387970 ,1,10764,387970 ,1,10766,387970 ,1,10767,387970 ,1,10768,387970 ,1,10770,387970 ,1,10772,387970 ,1,10773,387970 ,1,10774,387970 ,1,10777,387970 ,1,10779,387970 ,1,10780,387970 ,1,10781,387970 ,1,10782,387970 ,1,10783,387970 ,1,10784,387970 ,1,10785,387970 ,1,10786,387970 ,1,10789,387970 ,1,10790,387970 ,1,10792,387970 ,1,10793,387970 ,1,10795,387970 ,1,10796,387970 ,1,10797,387970 ,1,10798,387970 ,1,10799,387970 ,1,10800,387970 ,1,10801,387970 ,1,10802,387970 ,1,10806,387970 ,1,10807,387970 ,1,10814,387970 ,1,10815,387970 ,1,10816,387970 ,1,10817,387970 ,1,10818,387970 ,1,10819,387970 ,1,10820,387970 ,1,10821,387970 ,1,10823,387970 ,1,10825,413920 ,1,10830,387970 ,1,10831,387970 ,1,10832,387970 ,1,10834,387970 ,1,10836,387970 ,1,10837,387970 ,1,10838,387970 ,1,10840,387970 ,1,10841,387970 ,1,10842,387970 ,1,10844,387970 ,1,10845,387970 ,1,10850,387970 ,1,10851,387970 ,1,10853,387970 ,1,10855,387970 ,1,10856,387970 ,1,10857,387970 ,1,10858,387970 ,1,10859,387970 ,1,10863,387970 ,1,10864,387970 ,1,10865,387970 ,1,10866,387970 ,1,10869,387970 ,1,10871,387540 ,1,10872,387970 ,1,10873,387970 ,1,10874,387970 ,1,10875,387970 ,1,10877,387970 ,1,10878,387970 ,1,10879,387970 ,1,10880,387970 ,1,10882,387970 ,1,10883,387970 ,1,10887,387970 ,1,10889,387970 ,1,10890,387970 ,1,10891,387970 ,1,10892,387970 ,1,10893,387970 ,1,10894,387970 ,1,10895,387970 ,1,10896,387970 ,1,10897,387970 ,1,10898,387970 ,1,10900,387970 ,1,10901,387970 ,1,10904,387970 ,1,10905,387970 ,1,10906,387970 ,1,10907,387970 ,1,10908,387970 ,1,10909,387970 ,1,10910,387970 ,1,10912,387970 ,1,10913,387970 ,1,10914,387970 ,1,10916,387970 ,1,10917,387970 ,1,10918,387970 ,1,10919,387970 ,1,10921,387970 ,1,10922,387970 ,1,10924,387970 ,1,10925,387970 ,1,10927,387970 ,1,10928,387970 ,1,10930,387970 ,1,10933,387970 ,1,10934,413915 ,1,10935,413915 ,1,10936,387970 ,1,10937,387970 ,1,10939,387970 ,1,10941,387970 ,1,10942,387970 ,1,10943,387970 ,1,10945,387970 ,1,10946,387970 ,1,10949,387970 ,1,10950,387970 ,1,10951,387970 ,1,10953,387970 ,1,10954,387970 ,1,10955,387970 ,1,10956,387970 ,1,10957,387970 ,1,10958,387970 ,1,10959,387970 ,1,10960,387970 ,1,10961,387970 ,1,10962,387970 ,1,10963,387970 ,1,10964,387970 ,1,10967,387970 ,1,10968,387970 ,1,10969,387970 ,1,10970,387970 ,1,10971,387970 ,1,10972,387970 ,1,10973,387970 ,1,10974,387970 ,1,10977,387970 ,1,10978,387970 ,1,10980,387970 ,1,10981,387970 ,1,10982,387970 ,1,10983,387970 ,1,10984,387970 ,1,10991,387970 ,1,10992,387970 ,1,10993,387970 ,1,10994,387970 ,1,10995,387970 ,1,10996,387970 ,1,10997,387970 ,1,10998,387970 ,1,10999,387970 ,1,11000,387970 ,1,11001,387970 ,1,11002,387970 ,1,11003,387970 ,1,11005,387970 ,1,11006,387970 ,1,11007,387970 ,1,11008,387970 ,1,11009,387970 ,1,11010,387970 ,1,11011,387970 ,1,11012,387970 ,1,11013,387970 ,1,11014,387970 ,1,11015,387970 ,1,11018,387970 ,1,11019,387970 ,1,11020,387970 ,1,11030,387970 ,1,11032,387970 ,1,11033,387970 ,1,11034,387495 ,1,11035,387495 ,1,11036,387495 ,1,11038,387495 ,1,11039,387495 ,1,11040,387495 ,1,11041,387495 ,1,11044,413900 ,1,11045,387490 ,1,11046,387485 ,1,11047,387480 ,1,11048,387495 ,1,11049,387495 ,1,11050,387495 ,1,11051,387495 ,1,11058,387495 ,1,11059,387495 ,1,11060,387495 ,1,11061,387495 ,1,11062,387495 ,1,11063,387495 ,1,11064,387495 ,1,11065,387495 ,1,11067,387495 ,1,11068,387495 ,1,11070,387495 ,1,11071,387495 ,1,11073,387470 ,1,11074,387470 ,1,11075,387470 ,1,11076,387470 ,1,11077,387495 ,1,11079,387495 ,1,11080,387495 ,1,11081,387495 ,1,11082,387495 ,1,11083,387495 ,1,11084,387495 ,1,11085,387495 ,1,11086,387495 ,1,11087,387495 ,1,11088,387495 ,1,11089,387495 ,1,11092,387495 ,1,11094,387495 ,1,11095,387495 ,1,11096,387495 ,1,11097,387495 ,1,11098,387495 ,1,11099,387495 ,1,11100,387495 ,1,11101,387495 ,1,11102,387495 ,1,11103,387495 ,1,11104,387495 ,1,11105,387495 ,1,11106,387495 ,1,11107,387495 ,1,11108,387495 ,1,11109,387495 ,1,11110,387495 ,1,11111,387495 ,1,11112,387495 ,1,11113,387495 ,1,11114,387495 ,1,11115,387495 ,1,11116,387495 ,1,11117,387495 ,1,11118,387495 ,1,11119,387495 ,1,11120,387495 ,1,11121,387495 ,1,11122,387495 ,1,11123,387495 ,1,11124,387495 ,1,11125,387495 ,1,11126,387495 ,1,11127,387495 ,1,11128,387495 ,1,11129,387495 ,1,11130,387495 ,1,11131,387495 ,1,11132,387495 ,1,11133,387495 ,1,11134,387495 ,1,11135,387495 ,1,11136,387495 ,1,11137,387495 ,1,11138,387495 ,1,11139,387495 ,1,11140,387495 ,1,11141,387495 ,1,11142,387495 ,1,11143,387465 ,1,11147,387495 ,1,11148,387495 ,1,11150,387495 ,1,11151,387495 ,1,11152,387495 ,1,11153,387495 ,1,11154,387495 ,1,11155,387495 ,1,11157,387495 ,1,11158,387495 ,1,11159,387495 ,1,11160,387495 ,1,11161,387495 ,1,11163,387495 ,1,11164,387495 ,1,11167,387495 ,1,11168,387495 ,1,11169,387495 ,1,11170,387495 ,1,11171,387495 ,1,11172,387495 ,1,11174,387495 ,1,11175,387495 ,1,11177,387495 ,1,11178,387495 ,1,11179,387495 ,1,11181,387495 ,1,11182,387495 ,1,11183,387495 ,1,11184,387495 ,1,11185,387495 ,1,11187,387495 ,1,11188,387495 ,1,11189,387495 ,1,11192,387495 ,1,11194,387495 ,1,11196,387495 ,1,11198,387495 ,1,11199,387495 ,1,11200,387495 ,1,11201,387495 ,1,11202,387495 ,1,11203,387495 ,1,11204,387495 ,1,11205,387495 ,1,11206,387495 ,1,11207,387495 ,1,11208,387495 ,1,11209,387495 ,1,11210,387495 ,1,11211,387495 ,1,11212,387495 ,1,11213,387495 ,1,11214,387495 ,1,11215,387495 ,1,11216,387495 ,1,11217,387495 ,1,11218,387495 ,1,11219,387495 ,1,11220,387495 ,1,11221,387495 ,1,11222,387495 ,1,11223,387495 ,1,11224,387495 ,1,11225,387495 ,1,11226,387495 ,1,11227,387495 ,1,11228,387495 ,1,11229,387495 ,1,11230,387495 ,1,11231,387495 ,1,11232,387495 ,1,11233,387495 ,1,11234,387495 ,1,11235,387495 ,1,11236,387495 ,1,11237,387495 ,1,11238,387495 ,1,11244,387495 ,1,11245,387495 ,1,11247,387495 ,1,11248,387495 ,1,11249,387495 ,1,11250,387495 ,1,11252,387495 ,1,11253,387495 ,1,11254,387495 ,1,11255,387495 ,1,11256,387495 ,1,11257,387495 ,1,11258,387495 ,1,11259,387495 ,1,11260,387495 ,1,11261,387495 ,1,11262,387495 ,1,11264,387495 ,1,11265,387495 ,1,11266,387495 ,1,11267,387495 ,1,11268,387495 ,1,11269,387495 ,1,11272,387495 ,1,11285,387495 ,1,11286,387495 ,1,11287,387495 ,1,11288,387495 ,1,11289,387495 ,1,11290,387495 ,1,11292,387495 ,1,11293,387495 ,1,11295,387495 ,1,11296,387495 ,1,11299,387495 ,1,11300,387495 ,1,11301,387495 ,1,11302,387495 ,1,11311,387495 ,1,11313,387495 ,1,11315,387495 ,1,11316,387495 ,1,11317,387495 ,1,11318,387495 ,1,11320,387495 ,1,11321,387495 ,1,11322,387495 ,1,11323,387495 ,1,11325,387495 ,1,11326,387495 ,1,11328,387495 ,1,11329,387495 ,1,11332,387495 ,1,11333,387495 ,1,11334,387495 ,1,11336,387495 ,1,11338,387495 ,1,11339,387495 ,1,11340,387495 ,1,11341,387495 ,1,11343,387495 ,1,11344,387495 ,1,11347,387495 ,1,11348,387495 ,1,11349,387495 ,1,11350,387495 ,1,11351,387495 ,1,11353,387495 ,1,11354,387495 ,1,11356,387495 ,1,11359,387495 ,1,11360,387495 ,1,11361,387495 ,1,11362,387495 ,1,11363,387495 ,1,11365,387495 ,1,11368,387495 ,1,11369,387495 ,1,11370,387495 ,1,11371,387495 ,1,11372,387495 ,1,11373,387495 ,1,11374,387495 ,1,11375,387495 ,1,11376,387495 ,1,11377,387495 ,1,11379,387495 ,1,11380,387495 ,1,11381,387495 ,1,11382,387495 ,1,11383,387495 ,1,11385,387495 ,1,11387,387495 ,1,11388,387495 ,1,11392,387495 ,1,11398,387495 ,1,11401,387495 ,1,11402,387495 ,1,11403,387495 ,1,11404,387495 ,1,11405,387495 ,1,11406,387495 ,1,11407,387495 ,1,11409,387495 ,1,11410,387495 ,1,11412,387495 ,1,11413,387495 ,1,11414,387495 ,1,11415,387495 ,1,11417,387495 ,1,11418,387495 ,1,11420,387495 ,1,11421,387495 ,1,11422,387495 ,1,11423,387495 ,1,11424,387495 ,1,11426,387495 ,1,11427,387495 ,1,11428,387495 ,1,11429,387495 ,1,11430,387495 ,1,11431,387495 ,1,11432,387495 ,1,11433,387495 ,1,11434,387495 ,1,11437,387495 ,1,11438,387495 ,1,11439,387495 ,1,11440,387495 ,1,11441,387495 ,1,11442,387495 ,1,11443,387495 ,1,11453,387495 ,1,11454,387495 ,1,11455,387495 ,1,11456,387495 ,1,11457,387495 ,1,11458,387460 ,1,11459,387495 ,1,11461,387495 ,1,11462,387495 ,1,11463,387495 ,1,11465,387495 ,1,11466,387495 ,1,11469,387495 ,1,11470,387495 ,1,11471,387495 ,1,11472,387495 ,1,11473,387495 ,1,11474,387495 ,1,11475,387495 ,1,11476,387495 ,1,11477,387495 ,1,11479,387495 ,1,11480,387495 ,1,11481,387495 ,1,11483,387495 ,1,11484,387455 ,1,11485,387455 ,1,11486,387495 ,1,11487,387495 ,1,11488,387495 ,1,11490,387495 ,1,11492,387495 ,1,11493,387495 ,1,11495,387495 ,1,11496,387495 ,1,11497,387495 ,1,11498,387495 ,1,11499,387495 ,1,11500,387495 ,1,11501,387495 ,1,11502,387495 ,1,11503,387495 ,1,11504,387495 ,1,11505,387495 ,1,11506,387495 ,1,11507,387495 ,1,11508,387495 ,1,11509,387495 ,1,11510,387495 ,1,11511,387495 ,1,11513,387495 ,1,11517,387495 ,1,11521,387495 ,1,11525,387495 ,1,11528,387495 ,1,11531,387495 ,1,11532,387495 ,1,11533,387495 ,1,11534,387495 ,1,11535,387495 ,1,11536,387495 ,1,11537,387495 ,1,11538,387495 ,1,11539,387495 ,1,11540,387495 ,1,11541,387495 ,1,11542,387495 ,1,11543,387495 ,1,11544,387495 ,1,11546,387495 ,1,11547,387495 ,1,11548,387495 ,1,11549,387495 ,1,11550,387495 ,1,11551,387495 ,1,11552,387495 ,1,11553,387495 ,1,11554,387495 ,1,11555,387495 ,1,11556,387495 ,1,11559,387415 ,1,11561,387495 ,1,11562,387495 ,1,11564,387495 ,1,11565,387495 ,1,11566,387495 ,1,11569,387495 ,1,11570,387495 ,1,11571,387495 ,1,11574,387495 ,1,11575,387495 ,1,11576,387495 ,1,11577,387495 ,1,11578,387495 ,1,11579,387495 ,1,11580,387495 ,1,11582,387495 ,1,11583,387495 ,1,11584,387495 ,1,11585,387495 ,1,11586,387495 ,1,11587,387495 ,1,11588,387495 ,1,11589,387495 ,1,11590,387495 ,1,11591,387495 ,1,11592,387495 ,1,11594,387495 ,1,11595,387495 ,1,11596,387495 ,1,11597,387495 ,1,11599,387495 ,1,11603,387495 ,1,11604,387495 ,1,11606,387495 ,1,11608,387495 ,1,11611,387495 ,1,11612,387495 ,1,11613,387495 ,1,11614,387495 ,1,11615,387495 ,1,11616,387495 ,1,11617,387495 ,1,11619,387495 ,1,11620,387495 ,1,11621,387495 ,1,11626,387495 ,1,11627,387495 ,1,11628,387495 ,1,11629,387495 ,1,11630,387495 ,1,11632,387495 ,1,11633,387495 ,1,11634,387495 ,1,11635,387495 ,1,11636,387495 ,1,11637,387495 ,1,11639,387495 ,1,11642,387495 ,1,11643,387495 ,1,11644,387495 ,1,11645,387495 ,1,11646,387495 ,1,11648,387495 ,1,11650,387495 ,1,11651,387495 ,1,11652,387495 ,1,11653,387495 ,1,11654,387495 ,1,11655,387495 ,1,11657,387495 ,1,11659,387495 ,1,11661,387495 ,1,11662,387495 ,1,11663,387495 ,1,11666,387495 ,1,11668,387495 ,1,11669,387495 ,1,11670,387495 ,1,11671,387495 ,1,11672,387495 ,1,11673,387495 ,1,11675,387495 ,1,11676,387495 ,1,11679,387495 ,1,11680,387495 ,1,11681,387495 ,1,11682,387495 ,1,11683,387495 ,1,11685,387495 ,1,11686,387495 ,1,11687,387495 ,1,11688,387495 ,1,11689,387495 ,1,11690,387495 ,1,11691,387495 ,1,11694,387495 ,1,11695,413895 ,1,11696,387495 ,1,11697,387495 ,1,11705,387410 ,1,11706,387410 ,1,11707,387410 ,1,11708,387410 ,1,11709,387495 ,1,11711,387495 ,1,11712,387495 ,1,11713,387495 ,1,11714,387495 ,1,11715,387495 ,1,11716,387495 ,1,11718,387495 ,1,11719,387495 ,1,11721,387495 ,1,11722,387495 ,1,11725,387495 ,1,11726,387495 ,1,11730,387495 ,1,11731,387495 ,1,11732,387495 ,1,11733,387495 ,1,11734,387495 ,1,11735,387495 ,1,11736,387495 ,1,11739,387495 ,1,11740,387495 ,1,11741,387495 ,1,11743,387495 ,1,11744,387495 ,1,11745,387495 ,1,11746,387495 ,1,11747,387495 ,1,11748,387495 ,1,11750,387495 ,1,11751,387495 ,1,11752,387495 ,1,11756,387495 ,1,11757,387495 ,1,11759,387495 ,1,11761,387495 ,1,11763,387495 ,1,11767,387495 ,1,11770,387495 ,1,11771,413890 ,1,11774,387495 ,1,11775,387495 ,1,11776,387495 ,1,11778,387495 ,1,11779,387495 ,1,11782,387495 ,1,11783,387495 ,1,11784,387495 ,1,11785,387495 ,1,11786,387495 ,1,11787,387495 ,1,11788,387495 ,1,11789,387495 ,1,11790,387495 ,1,11791,387495 ,1,11792,387495 ,1,11794,387495 ,1,11795,387495 ,1,11796,387495 ,1,11797,387495 ,1,11798,387495 ,1,11799,387495 ,1,11800,387495 ,1,11801,387495 ,1,11802,387495 ,1,11803,387495 ,1,11804,387495 ,1,11805,387495 ,1,11806,387495 ,1,11807,387495 ,1,11808,387495 ,1,11809,387495 ,1,11810,387495 ,1,11811,387495 ,1,11812,387495 ,1,11813,387495 ,1,11814,387495 ,1,11815,387495 ,1,11816,387495 ,1,11817,387495 ,1,11818,387495 ,1,11819,387495 ,1,11820,387495 ,1,11821,387495 ,1,11822,387495 ,1,11823,387495 ,1,11824,387495 ,1,11825,387495 ,1,11826,387495 ,1,11827,387495 ,1,11833,387495 ,1,11834,387495 ,1,11835,387495 ,1,11839,387495 ,1,11841,387495 ,1,11843,387495 ,1,11844,387495 ,1,11845,387495 ,1,11848,387495 ,1,11849,387495 ,1,11850,387495 ,1,11851,387495 ,1,11852,387495 ,1,11853,387495 ,1,11854,387495 ,1,11855,387495 ,1,11856,387495 ,1,11857,387495 ,1,11858,387495 ,1,11859,387495 ,1,11862,387495 ,1,11865,387495 ,1,11866,387495 ,1,11867,387495 ,1,11868,387495 ,1,11869,387495 ,1,11870,387495 ,1,11871,387495 ,1,11872,387495 ,1,11873,387495 ,1,11874,387495 ,1,11875,387495 ,1,11876,387495 ,1,11877,387405 ,1,11880,387495 ,1,11884,387495 ,1,11885,387495 ,1,11890,387495 ,1,11891,387495 ,1,11893,387495 ,1,11894,387495 ,1,11895,413875 ,1,11896,387400 ,1,11897,413875 ,1,11898,413875 ,1,11904,387495 ,1,11905,387495 ,1,11907,387495 ,1,11908,413870 ,1,11909,387495 ,1,11910,387495 ,1,11914,387495 ,1,11916,413865 ,1,11917,387495 ,1,11918,387495 ,1,11919,387495 ,1,11921,387495 ,1,11922,387495 ,1,11925,413860 ,1,11926,387495 ,1,11927,387495 ,1,11929,387495 ,1,11931,387495 ,1,11933,387495 ,1,11934,413855 ,1,11935,387495 ,1,11936,413850 ,1,11938,387495 ,1,11939,387495 ,1,11940,387495 ,1,11941,387495 ,1,11942,387495 ,1,11943,387495 ,1,11944,387495 ,1,11945,387495 ,1,11946,387495 ,1,11947,387495 ,1,11948,387495 ,1,11949,387495 ,1,11950,387495 ,1,11951,387495 ,1,11952,387495 ,1,11953,387495 ,1,11954,387495 ,1,11955,387495 ,1,11958,387495 ,1,11959,387495 ,1,11960,387495 ,1,11961,387495 ,1,11962,387495 ,1,11965,387495 ,1,11966,387495 ,1,11967,387495 ,1,11968,387495 ,1,11969,387495 ,1,11971,387495 ,1,11972,387495 ,1,11973,387495 ,1,11974,387495 ,1,11975,387495 ,1,11977,387495 ,1,11978,387495 ,1,11979,387495 ,1,11980,387495 ,1,11982,387495 ,1,11983,387495 ,1,11984,387495 ,1,11985,387495 ,1,11988,387495 ,1,11991,387495 ,1,11992,387495 ,1,11995,387495 ,1,11996,387495 ,1,11998,387495 ,1,11999,387495 ,1,12000,387495 ,1,12002,387495 ,1,12005,387495 ,1,12006,387495 ,1,12007,387495 ,1,12008,387495 ,1,12009,387495 ,1,12010,387495 ,1,12011,387495 ,1,12012,387495 ,1,12014,387495 ,1,12015,387495 ,1,12016,387495 ,1,12017,387495 ,1,12018,387495 ,1,12020,387495 ,1,12021,387495 ,1,12024,387495 ,1,12025,387495 ,1,12026,387495 ,1,12027,387495 ,1,12028,387495 ,1,12029,387495 ,1,12030,387495 ,1,12031,387495 ,1,12035,387495 ,1,12036,387495 ,1,12040,387495 ,1,12043,387495 ,1,12044,387495 ,1,12045,387495 ,1,12047,387495 ,1,12048,387495 ,1,12053,413845 ,1,12057,387495 ,1,12062,413840 ,1,12063,387495 ,1,12064,387495 ,1,12065,387495 ,1,12066,387495 ,1,12068,387495 ,1,12069,387495 ,1,12071,413815 ,1,12072,387495 ,1,12073,387380 ,1,12074,387495 ,1,12076,387495 ,1,12077,387495 ,1,12078,387495 ,1,12079,387495 ,1,12080,387495 ,1,12081,387495 ,1,12082,387495 ,1,12085,387495 ,1,12086,387495 ,1,12087,387495 ,1,12088,387495 ,1,12090,387495 ,1,12093,387495 ,1,12094,387495 ,1,12096,387495 ,1,12097,387495 ,1,12099,387495 ,1,12100,387495 ,1,12101,387495 ,1,12102,387495 ,1,12104,387495 ,1,12105,387495 ,1,12106,387495 ,1,12109,387495 ,1,12110,387495 ,1,12111,387495 ,1,12112,387495 ,1,12113,387495 ,1,12114,387495 ,1,12115,387495 ,1,12116,387495 ,1,12117,387495 ,1,12118,387495 ,1,12119,387495 ,1,12120,387495 ,1,12121,387495 ,1,12122,387495 ,1,12124,387495 ,1,12125,387495 ,1,12127,387495 ,1,12128,387495 ,1,12129,387495 ,1,12130,387495 ,1,12131,387495 ,1,12132,387495 ,1,12133,387495 ,1,12134,387495 ,1,12135,387495 ,1,12136,387495 ,1,12137,387495 ,1,12138,387495 ,1,12139,387495 ,1,12140,387495 ,1,12141,387495 ,1,12143,387495 ,1,12145,387495 ,1,12146,387495 ,1,12147,387495 ,1,12148,387495 ,1,12149,387495 ,1,12150,387495 ,1,12151,387495 ,1,12152,387495 ,1,12153,387495 ,1,12154,387495 ,1,12155,387495 ,1,12156,387495 ,1,12157,387495 ,1,12158,387495 ,1,12159,387495 ,1,12160,387495 ,1,12162,387495 ,1,12164,387495 ,1,12165,387495 ,1,12166,387495 ,1,12168,387495 ,1,12170,387495 ,1,12173,387495 ,1,12175,387495 ,1,12176,387495 ,1,12178,387495 ,1,12180,387495 ,1,12181,387495 ,1,12182,387495 ,1,12184,387495 ,1,12186,387495 ,1,12187,387495 ,1,12189,387495 ,1,12190,387495 ,1,12192,387495 ,1,12193,387495 ,1,12194,387495 ,1,12195,387495 ,1,12196,387495 ,1,12197,387495 ,1,12201,387495 ,1,12202,387495 ,1,12204,387495 ,1,12207,387495 ,1,12208,387495 ,1,12210,387495 ,1,12212,387495 ,1,12213,387495 ,1,12215,387495 ,1,12217,387495 ,1,12218,387495 ,1,12219,387495 ,1,12221,387495 ,1,12223,387495 ,1,12225,387495 ,1,12226,387495 ,1,12227,387495 ,1,12228,387495 ,1,12229,387495 ,1,12231,387495 ,1,12232,387495 ,1,12235,387495 ,1,12237,387495 ,1,12238,387495 ,1,12239,387495 ,1,12240,387495 ,1,12241,387495 ,1,12243,387495 ,1,12245,387495 ,1,12247,387495 ,1,12249,387495 ,1,12251,387495 ,1,12253,387495 ,1,12254,387495 ,1,12255,387495 ,1,12256,387495 ,1,12257,387495 ,1,12259,387495 ,1,12260,387495 ,1,12261,387495 ,1,12263,387495 ,1,12264,387495 ,1,12265,387495 ,1,12267,387495 ,1,12268,387495 ,1,12269,387495 ,1,12271,387495 ,1,12272,387495 ,1,12274,387495 ,1,12280,387495 ,1,12281,387495 ,1,12282,387495 ,1,12283,387495 ,1,12284,387495 ,1,12286,387495 ,1,12287,387495 ,1,12288,387495 ,1,12290,387495 ,1,12291,387495 ,1,12292,387495 ,1,12293,387495 ,1,12294,387495 ,1,12295,387495 ,1,12296,387495 ,1,12297,387495 ,1,12298,387495 ,1,12300,387495 ,1,12302,387375 ,1,12303,387370 ,1,12304,387495 ,1,12305,387495 ,1,12306,387495 ,1,12307,387495 ,1,12309,387495 ,1,12310,387495 ,1,12312,387495 ,1,12313,387495 ,1,12314,387495 ,1,12315,387495 ,1,12316,387495 ,1,12318,387495 ,1,12319,387495 ,1,12320,387495 ,1,12321,387495 ,1,12322,387495 ,1,12323,387495 ,1,12324,387495 ,1,12325,387495 ,1,12327,387495 ,1,12328,387495 ,1,12329,387495 ,1,12330,387495 ,1,12332,387495 ,1,12333,387495 ,1,12334,387495 ,1,12335,387495 ,1,12336,387495 ,1,12337,387495 ,1,12338,387495 ,1,12339,387495 ,1,12340,387495 ,1,12341,387495 ,1,12342,387495 ,1,12343,387495 ,1,12344,387495 ,1,12345,387495 ,1,12346,387495 ,1,12347,387495 ,1,12348,387495 ,1,12349,387495 ,1,12350,387495 ,1,12351,387495 ,1,12352,387495 ,1,12353,387495 ,1,12354,387495 ,1,12355,387495 ,1,12356,387495 ,1,12357,387495 ,1,12358,387495 ,1,12359,387495 ,1,12360,387495 ,1,12361,387495 ,1,12362,387495 ,1,12363,387495 ,1,12364,387495 ,1,12365,387495 ,1,12366,387495 ,1,12367,387495 ,1,12368,387495 ,1,12369,387495 ,1,12370,387495 ,1,12371,387495 ,1,12372,387495 ,1,12373,387495 ,1,12374,387495 ,1,12375,387495 ,1,12376,387495 ,1,12377,387495 ,1,12380,387495 ,1,12381,387495 ,1,12382,387495 ,1,12383,387495 ,1,12384,387495 ,1,12386,387495 ,1,12387,387495 ,1,12388,387495 ,1,12389,387495 ,1,12390,387495 ,1,12391,387495 ,1,12392,387495 ,1,12393,387495 ,1,12394,387495 ,1,12396,387495 ,1,12397,387495 ,1,12398,387495 ,1,12400,387495 ,1,12402,387495 ,1,12403,387495 ,1,12404,387495 ,1,12405,387495 ,1,12407,387495 ,1,12408,387495 ,1,12410,387495 ,1,12412,387495 ,1,12414,387495 ,1,12416,387495 ,1,12419,387495 ,1,12420,387495 ,1,12421,387495 ,1,12422,387495 ,1,12423,387495 ,1,12424,387495 ,1,12425,387495 ,1,12426,387495 ,1,12427,387495 ,1,12428,387495 ,1,12429,387495 ,1,12430,387495 ,1,12431,387495 ,1,12432,387495 ,1,12433,387495 ,1,12434,387495 ,1,12435,387495 ,1,12436,387495 ,1,12437,387495 ,1,12438,387495 ,1,12439,387495 ,1,12441,387495 ,1,12443,387495 ,1,12444,387495 ,1,12445,387495 ,1,12446,387495 ,1,12447,387495 ,1,12448,387495 ,1,12449,387495 ,1,12452,387495 ,1,12453,387495 ,1,12454,387495 ,1,12456,387495 ,1,12457,387495 ,1,12459,387495 ,1,12460,387495 ,1,12461,387495 ,1,12462,387495 ,1,12463,387495 ,1,12465,387495 ,1,12466,387495 ,1,12467,387495 ,1,12468,387495 ,1,12469,387495 ,1,12470,387495 ,1,12471,387495 ,1,12472,387495 ,1,12473,387495 ,1,12475,387495 ,1,12476,387495 ,1,12477,387495 ,1,12478,387495 ,1,12479,387495 ,1,12480,387495 ,1,12481,387495 ,1,12482,387495 ,1,12483,387495 ,1,12484,387495 ,1,12485,387495 ,1,12486,387495 ,1,12487,387495 ,1,12488,387495 ,1,12489,387495 ,1,12490,387495 ,1,12491,387495 ,1,12492,387495 ,1,12493,387495 ,1,12494,387495 ,1,12495,387495 ,1,12496,387495 ,1,12497,387495 ,1,12499,387495 ,1,12500,387495 ,1,12501,387495 ,1,12502,387495 ,1,12503,387495 ,1,12504,387495 ,1,12505,387495 ,1,12508,387495 ,1,12509,387495 ,1,12510,387495 ,1,12511,387495 ,1,12512,387495 ,1,12513,387495 ,1,12514,387495 ,1,12515,387495 ,1,12516,387495 ,1,12517,387495 ,1,12518,387495 ,1,12519,387495 ,1,12520,387495 ,1,12521,387495 ,1,12522,387495 ,1,12523,387495 ,1,12524,387495 ,1,12525,387495 ,1,12526,387495 ,1,12527,387495 ,1,12528,387495 ,1,12529,387495 ,1,12530,387495 ,1,12531,387495 ,1,12532,387495 ,1,12533,387495 ,1,12534,387495 ,1,12535,387495 ,1,12536,387495 ,1,12537,387495 ,1,12541,387495 ,1,12542,387495 ,1,12543,387495 ,1,12544,387495 ,1,12545,387495 ,1,12546,387495 ,1,12547,387495 ,1,12548,387495 ,1,12549,387495 ,1,12550,387495 ,1,12551,387495 ,1,12552,387495 ,1,12553,387495 ,1,12554,387495 ,1,12556,387495 ,1,12557,387495 ,1,12559,387495 ,1,12560,387495 ,1,12561,387495 ,1,12562,387495 ,1,12564,387495 ,1,12565,387495 ,1,12566,387495 ,1,12568,387495 ,1,12572,387495 ,1,12573,387495 ,1,12574,387495 ,1,12575,387495 ,1,12576,387495 ,1,12577,387495 ,1,12578,387495 ,1,12579,387495 ,1,12580,387495 ,1,12581,387495 ,1,12582,387495 ,1,12583,387495 ,1,12584,387495 ,1,12585,387495 ,1,12586,387495 ,1,12587,387495 ,1,12588,387495 ,1,12590,387495 ,1,12592,387495 ,1,12593,387495 ,1,12594,387495 ,1,12595,387495 ,1,12596,387495 ,1,12597,387495 ,1,12598,387495 ,1,12599,387495 ,1,12603,387495 ,1,12604,387495 ,1,12605,387495 ,1,12606,387495 ,1,12607,387495 ,1,12608,387495 ,1,12609,387495 ,1,12613,387495 ,1,12614,387495 ,1,12617,387495 ,1,12618,387495 ,1,12619,387495 ,1,12620,387495 ,1,12622,387365 ,1,12623,387495 ,1,12624,387495 ,1,12625,387495 ,1,12626,387495 ,1,12627,387495 ,1,12628,387495 ,1,12629,387495 ,1,12632,387495 ,1,12637,387495 ,1,12638,387495 ,1,12639,387355 ,1,12640,387495 ,1,12643,387495 ,1,12646,387495 ,1,12647,387495 ,1,12648,387495 ,1,12649,387495 ,1,12653,387495 ,1,12654,387495 ,1,12655,387495 ,1,12656,387495 ,1,12657,387495 ,1,12658,387495 ,1,12660,387495 ,1,12661,387495 ,1,12662,387495 ,1,12663,387495 ,1,12664,387495 ,1,12665,387495 ,1,12667,387495 ,1,12668,387495 ,1,12669,387495 ,1,12670,387495 ,1,12671,387495 ,1,12672,387350 ,1,12673,387495 ,1,12674,387495 ,1,12675,387495 ,1,12676,387495 ,1,12677,387495 ,1,12678,387495 ,1,12684,387495 ,1,12686,387495 ,1,12688,387495 ,1,12689,387495 ,1,12690,387495 ,1,12692,387495 ,1,12693,387495 ,1,12694,387495 ,1,12695,387495 ,1,12696,387495 ,1,12698,387495 ,1,12699,387495 ,1,12700,387495 ,1,12702,387495 ,1,12703,387495 ,1,12704,387495 ,1,12707,387495 ,1,12708,387495 ,1,12709,387495 ,1,12710,387495 ,1,12711,387495 ,1,12712,387495 ,1,12715,387495 ,1,12717,387495 ,1,12719,387495 ,1,12721,387495 ,1,12723,387495 ,1,12725,387345 ,1,12726,387345 ,1,12727,387495 ,1,12729,387495 ,1,12731,387495 ,1,12732,387495 ,1,12733,387495 ,1,12734,387495 ,1,12736,387495 ,1,12738,387495 ,1,12739,387495 ,1,12740,387495 ,1,12741,387495 ,1,12742,387495 ,1,12743,387495 ,1,12744,387495 ,1,12745,387495 ,1,12746,387495 ,1,12747,387495 ,1,12748,387495 ,1,12749,387495 ,1,12750,387495 ,1,12751,387495 ,1,12752,387495 ,1,12753,387495 ,1,12754,387495 ,1,12755,387495 ,1,12756,387495 ,1,12757,387495 ,1,12758,387495 ,1,12759,387495 ,1,12760,387495 ,1,12761,387495 ,1,12762,387495 ,1,12763,387495 ,1,12764,387495 ,1,12765,387495 ,1,12766,387495 ,1,12767,387495 ,1,12768,387495 ,1,12769,387495 ,1,12771,387495 ,1,12772,387495 ,1,12773,387495 ,1,12774,387495 ,1,12775,387495 ,1,12776,387495 ,1,12777,387495 ,1,12778,387495 ,1,12779,387495 ,1,12781,387495 ,1,12782,387495 ,1,12783,387495 ,1,12785,387495 ,1,12786,387495 ,1,12787,387495 ,1,12788,387495 ,1,12790,387495 ,1,12791,387495 ,1,12792,387495 ,1,12793,387495 ,1,12794,387495 ,1,12795,387495 ,1,12796,387495 ,1,12797,387495 ,1,12799,387495 ,1,12800,387495 ,1,12802,387495 ,1,12805,387495 ,1,12806,387495 ,1,12807,387495 ,1,12808,387495 ,1,12810,387495 ,1,12811,387495 ,1,12813,387495 ,1,12814,387495 ,1,12815,387495 ,1,12816,387495 ,1,12817,387495 ,1,12818,387495 ,1,12819,387495 ,1,12820,387495 ,1,12821,387495 ,1,12822,387495 ,1,12824,387495 ,1,12825,387495 ,1,12826,387495 ,1,12827,387495 ,1,12828,387495 ,1,12829,387495 ,1,12831,387495 ,1,12834,387495 ,1,12835,387340 ,1,12836,413810 ,1,12837,387310 ,1,12838,387305 ,1,12839,387300 ,1,12841,387295 ,1,12843,413805 ,1,12845,387495 ,1,12847,387285 ,1,12850,387495 ,1,12851,387495 ,1,12852,387495 ,1,12854,387495 ,1,12856,387495 ,1,12857,387495 ,1,12862,387495 ,1,12865,387495 ,1,12866,387495 ,1,12867,387495 ,1,12869,387495 ,1,12873,387495 ,1,12878,387495 ,1,12880,387280 ,1,12881,387275 ,1,12882,387275 ,1,12883,387275 ,1,12884,387275 ,1,12885,387275 ,1,12886,387275 ,1,12887,387275 ,1,12888,387275 ,1,12889,387275 ,1,12890,387275 ,1,12891,387275 ,1,12892,387275 ,1,12893,387275 ,1,12894,387275 ,1,12895,387275 ,1,12896,387270 ,1,12898,387250 ,1,12900,387245 ,1,12901,387245 ,1,12902,387245 ,1,12903,387245 ,1,12904,387245 ,1,12905,387245 ,1,12906,387245 ,1,12909,413800 ,1,12910,413795 ,1,12911,413795 ,1,12912,413795 ,1,12913,413795 ,1,12914,413795 ,1,12916,387240 ,1,12917,387240 ,1,12918,387240 ,1,12920,387240 ,1,12921,387240 ,1,12922,387240 ,1,12923,387240 ,1,12924,387240 ,1,12925,387240 ,1,12926,387240 ,1,12927,387240 ,1,12928,387240 ,1,12930,387225 ,1,12937,387495 ,1,12938,387495 ,1,12939,387495 ,1,12940,387495 ,1,12941,387495 ,1,12947,387495 ,1,12952,387495 ,1,12953,387495 ,1,12954,387495 ,1,12955,387495 ,1,12956,387495 ,1,12957,387495 ,1,12961,387495 ,1,12965,387495 ,1,12966,387495 ,1,12967,387495 ,1,12969,387495 ,1,12970,387495 ,1,12972,387495 ,1,12973,387495 ,1,12976,387495 ,1,12978,387495 ,1,12979,387495 ,1,12980,387495 ,1,12982,387495 ,1,12983,387495 ,1,12984,387495 ,1,12986,387495 ,1,12987,387495 ,1,12988,387495 ,1,12990,387495 ,1,12991,387495 ,1,12993,387495 ,1,12994,387495 ,1,12996,387495 ,1,12997,387495 ,1,12998,387495 ,1,12999,413790 ,1,13000,387220 ,1,13001,387220 ,1,13002,387495 ,1,13004,387495 ,1,13006,387495 ,1,13007,387495 ,1,13008,387495 ,1,13012,387495 ,1,13015,413785 ,1,13016,413785 ,1,13017,413785 ,1,13019,387495 ,1,13021,387495 ,1,13023,387495 ,1,13027,387495 ,1,13032,387495 ,1,13033,387495 ,1,13034,387495 ,1,13035,387495 ,1,13048,387495 ,1,13049,387495 ,1,13051,387495 ,1,13055,387495 ,1,13060,387495 ,1,13061,387495 ,1,13062,387495 ,1,13065,387495 ,1,13066,387495 ,1,13067,387495 ,1,13068,387495 ,1,13070,387495 ,1,13071,387495 ,1,13072,387495 ,1,13074,387495 ,1,13076,387495 ,1,13077,387495 ,1,13078,387495 ,1,13081,387495 ,1,13083,387495 ,1,13084,387495 ,1,13085,387495 ,1,13086,387495 ,1,13087,387495 ,1,13088,387495 ,1,13089,387495 ,1,13090,387495 ,1,13093,387495 ,1,13094,387495 ,1,13096,387495 ,1,13097,387495 ,1,13099,387495 ,1,13100,387495 ,1,13101,387495 ,1,13102,387495 ,1,13103,387495 ,1,13104,387495 ,1,13105,387495 ,1,13106,387495 ,1,13110,387495 ,1,13111,387495 ,1,13118,387495 ,1,13119,387495 ,1,13120,387495 ,1,13121,387495 ,1,13122,387495 ,1,13123,387495 ,1,13124,387495 ,1,13125,387495 ,1,13127,387495 ,1,13134,387495 ,1,13135,387495 ,1,13136,387495 ,1,13138,387495 ,1,13139,413780 ,1,13140,387495 ,1,13141,387495 ,1,13142,387495 ,1,13144,387495 ,1,13145,387495 ,1,13146,387495 ,1,13148,387495 ,1,13149,387495 ,1,13154,387495 ,1,13155,387495 ,1,13157,387495 ,1,13159,387495 ,1,13160,387495 ,1,13161,387495 ,1,13162,387495 ,1,13163,387495 ,1,13167,387495 ,1,13168,387495 ,1,13169,387495 ,1,13170,387495 ,1,13173,387495 ,1,13176,387495 ,1,13177,387495 ,1,13178,387495 ,1,13179,387495 ,1,13181,387495 ,1,13182,387495 ,1,13183,387495 ,1,13184,387495 ,1,13186,387495 ,1,13187,387495 ,1,13191,387495 ,1,13193,387495 ,1,13194,387495 ,1,13195,387495 ,1,13196,387495 ,1,13197,387495 ,1,13198,387495 ,1,13199,387495 ,1,13200,387495 ,1,13201,387495 ,1,13202,387495 ,1,13204,387495 ,1,13205,387495 ,1,13208,387495 ,1,13209,387495 ,1,13210,387495 ,1,13211,387495 ,1,13212,387495 ,1,13213,387495 ,1,13214,387495 ,1,13216,387495 ,1,13217,387495 ,1,13218,387495 ,1,13220,387495 ,1,13221,387495 ,1,13222,387495 ,1,13223,387495 ,1,13225,387495 ,1,13226,387495 ,1,13228,387495 ,1,13229,387495 ,1,13231,387495 ,1,13232,387495 ,1,13234,387495 ,1,13237,387495 ,1,13240,387495 ,1,13241,387495 ,1,13243,387495 ,1,13245,387495 ,1,13246,387495 ,1,13247,387495 ,1,13249,387495 ,1,13250,387495 ,1,13253,387495 ,1,13254,387495 ,1,13255,387495 ,1,13257,387495 ,1,13258,387495 ,1,13259,387495 ,1,13260,387495 ,1,13261,387495 ,1,13262,387495 ,1,13263,387495 ,1,13264,387495 ,1,13265,387495 ,1,13266,387495 ,1,13267,387495 ,1,13268,387495 ,1,13271,387495 ,1,13272,387495 ,1,13273,387495 ,1,13274,387495 ,1,13275,387495 ,1,13276,387495 ,1,13277,387495 ,1,13278,387495 ,1,13281,387495 ,1,13282,387495 ,1,13284,387495 ,1,13285,387495 ,1,13286,387495 ,1,13287,387495 ,1,13288,387495 ,1,13295,387495 ,1,13296,387495 ,1,13297,387495 ,1,13298,387495 ,1,13299,387495 ,1,13300,387495 ,1,13301,387495 ,1,13302,387495 ,1,13303,387495 ,1,13304,387495 ,1,13305,387495 ,1,13306,387495 ,1,13307,387495 ,1,13309,387495 ,1,13310,387495 ,1,13311,387495 ,1,13312,387495 ,1,13313,387495 ,1,13314,387495 ,1,13315,387495 ,1,13316,387495 ,1,13317,387495 ,1,13318,387495 ,1,13319,387495 ,1,13322,387495 ,1,13323,387495 ,1,13324,387495 ,1,13330,387215 ,1,13334,387495 ,1,13336,387495 ,1,13337,387495 ,1,13338,387210 ,1,13339,387195 ,1,13340,387190 ,1,13341,387185 ,1,13342,387180 ,1,13343,387170 ,1,13344,387165 ,1,13345,387160 ,1,13346,413755 ,1,13348,387155 ,1,13349,387155 ,1,13350,387155 ,1,13352,387140 ,1,13354,387135 ,1,13355,387130 ,1,13356,387125 ,1,13359,387115 ,1,13360,387110 ,1,13362,387105 ,1,13363,413750 ,1,13368,387100 ,1,13370,387070 ,1,13371,387070 ,1,13372,387070 ,1,13373,387065 ,1,13374,387070 ,1,13376,387070 ,1,13377,387070 ,1,13378,387070 ,1,13380,387070 ,1,13381,387070 ,1,13382,387070 ,1,13383,387070 ,1,13384,387070 ,1,13385,387070 ,1,13386,387070 ,1,13387,387070 ,1,13388,387070 ,1,13401,413745 ,1,13403,413745 ,1,13405,413745 ,1,13406,413745 ,1,13407,413745 ,1,13408,387060 ,1,13409,387060 ,1,13410,413745 ,1,13411,413745 ,1,13412,413745 ,1,13413,413745 ,1,13414,413745 ,1,13417,387055 ,1,13418,387055 ,1,13424,387050 ,1,13427,387045 ,1,13428,387045 ,1,13429,387045 ,1,13430,387045 ,1,13431,387045 ,1,13432,387045 ,1,13433,387045 ,1,13434,387045 ,1,13435,387045 ,1,13436,387045 ,1,13437,387045 ,1,13438,387045 ,1,13442,387040 ,1,13446,387040 ,1,13447,387040 ,1,13452,387040 ,1,13453,387040 ,1,13455,387040 ,1,13456,387040 ,1,13466,387040 ,1,13467,387040 ,1,13469,387040 ,1,13471,387040 ,1,13472,387040 ,1,13476,387040 ,1,13479,387040 ,1,13480,387040 ,1,13481,387040 ,1,13483,387040 ,1,13484,387040 ,1,13488,387035 ,1,13489,387035 ,1,13491,387040 ,1,13493,387040 ,1,13495,387040 ,1,13497,387040 ,1,13500,387040 ,1,13501,387040 ,1,13502,387040 ,1,13503,387040 ,1,13504,387040 ,1,13505,387040 ,1,13506,387040 ,1,13507,387040 ,1,13508,387040 ,1,13509,387040 ,1,13510,387040 ,1,13511,387040 ,1,13512,387040 ,1,13513,387040 ,1,13514,387040 ,1,13515,387040 ,1,13516,387040 ,1,13517,387040 ,1,13520,387040 ,1,13521,387040 ,1,13522,387040 ,1,13523,387040 ,1,13524,387040 ,1,13527,387040 ,1,13528,387040 ,1,13529,387040 ,1,13530,387040 ,1,13531,387040 ,1,13533,387040 ,1,13534,387040 ,1,13535,387040 ,1,13536,387040 ,1,13537,387040 ,1,13539,387040 ,1,13540,387040 ,1,13541,387040 ,1,13542,387040 ,1,13544,387040 ,1,13545,387040 ,1,13546,387040 ,1,13547,387040 ,1,13549,413740 ,1,13550,387040 ,1,13553,387025 ,1,13554,387025 ,1,13555,387025 ,1,13558,387020 ,1,13559,387020 ,1,13560,387020 ,1,13561,413735 ,1,13562,387015 ,1,13563,387010 ,1,13564,387005 ,1,13565,387010 ,1,13566,387000 ,1,13567,386995 ,1,13569,386990 ,1,13570,386960 ,1,13571,386960 ,1,13573,386955 ,1,13574,386950 ,1,13575,386950 ,1,13576,386945 ,1,13577,386940 ,1,13578,386945 ,1,13579,386945 ,1,13580,386935 ,1,13581,386930 ,1,13586,413730 ,1,13587,386925 ,1,13588,386925 ,1,13589,386925 ,1,13590,386925 ,1,13591,386925 ,1,13592,386925 ,1,13593,386925 ,1,13594,386925 ,1,13595,386910 ,1,13596,386925 ,1,13597,386925 ,1,13598,386905 ,1,13599,386925 ,1,13600,386925 ,1,13601,386925 ,1,13602,413725 ,1,13603,413725 ,1,13604,413725 ,1,13605,413725 ,1,13606,413725 ,1,13607,413725 ,1,13608,413725 ,1,13609,413725 ,1,13612,386900 ,1,13613,413725 ,1,13614,413725 ,1,13618,413725 ,1,13621,413725 ,1,13622,413725 ,1,13623,413725 ,1,13625,413725 ,1,13626,413725 ,1,13630,386895 ,1,13631,386895 ,1,13634,386895 ,1,13636,386895 ,1,13638,386895 ,1,13639,386895 ,1,13640,386895 ,1,13641,386895 ,1,13642,386895 ,1,13643,386895 ,1,13644,386895 ,1,13647,386895 ,1,13648,386895 ,1,13649,386895 ,1,13650,386895 ,1,13652,386895 ,1,13655,386895 ,1,13656,386895 ,1,13658,386895 ,1,13659,386895 ,1,13661,386895 ,1,13662,386890 ,1,13663,386885 ,1,13664,386895 ,1,13666,386880 ,1,13667,386875 ,1,13668,386895 ,1,13671,386895 ,1,13672,386895 ,1,13673,386895 ,1,13674,386895 ,1,13675,386895 ,1,13676,386840 ,1,13677,386895 ,1,13678,386895 ,1,13679,386895 ,1,13680,386895 ,1,13681,386895 ,1,13682,386895 ,1,13683,386895 ,1,13684,386895 ,1,13686,386895 ,1,13687,386895 ,1,13689,386895 ,1,13690,386895 ,1,13691,386895 ,1,13692,386895 ,1,13693,386895 ,1,13694,386895 ,1,13695,386895 ,1,13696,386895 ,1,13697,386895 ,1,13698,386895 ,1,13699,386895 ,1,13700,386895 ,1,13701,386895 ,1,13702,386895 ,1,13703,386895 ,1,13705,386895 ,1,13707,386895 ,1,13708,386895 ,1,13709,386895 ,1,13710,386895 ,1,13711,386895 ,1,13712,386895 ,1,13713,386895 ,1,13714,386895 ,1,13715,386895 ,1,13716,386835 ,1,13717,386835 ,1,13718,386835 ,1,13719,386835 ,1,13720,386895 ,1,13721,386895 ,1,13722,386895 ,1,13724,386895 ,1,13726,386830 ,1,13727,386830 ,1,13728,386895 ,1,13729,413720 ,1,13730,413700 ,1,13732,386895 ,1,13735,386895 ,1,13737,386895 ,1,13738,386895 ,1,13740,386895 ,1,13742,386895 ,1,13743,386895 ,1,13744,386895 ,1,13746,386895 ,1,13748,386895 ,1,13749,386895 ,1,13751,386895 ,1,13752,386895 ,1,13754,386895 ,1,13755,386895 ,1,13756,386895 ,1,13757,386895 ,1,13758,386895 ,1,13759,386895 ,1,13763,386895 ,1,13764,386895 ,1,13766,386895 ,1,13769,386895 ,1,13770,386895 ,1,13772,386895 ,1,13774,386895 ,1,13775,386895 ,1,13777,386895 ,1,13779,386895 ,1,13780,386895 ,1,13781,386895 ,1,13783,386895 ,1,13785,386895 ,1,13787,386895 ,1,13788,386895 ,1,13789,386895 ,1,13790,386895 ,1,13791,386895 ,1,13793,386895 ,1,13794,386895 ,1,13797,386895 ,1,13799,386895 ,1,13800,386895 ,1,13801,386895 ,1,13802,386895 ,1,13803,386895 ,1,13805,386895 ,1,13807,386895 ,1,13809,386895 ,1,13811,386895 ,1,13813,386895 ,1,13815,386895 ,1,13816,386895 ,1,13817,386895 ,1,13818,386895 ,1,13819,386895 ,1,13821,386895 ,1,13822,386895 ,1,13823,386895 ,1,13825,386895 ,1,13826,386895 ,1,13827,386895 ,1,13829,386895 ,1,13830,386895 ,1,13831,386895 ,1,13833,386825 ,1,13834,413695 ,1,13836,386820 ,1,13842,386815 ,1,13843,386815 ,1,13844,386815 ,1,13845,386815 ,1,13846,386815 ,1,13848,386815 ,1,13849,386815 ,1,13850,386815 ,1,13852,386815 ,1,13853,386815 ,1,13854,386815 ,1,13855,386815 ,1,13856,386815 ,1,13857,386815 ,1,13858,386815 ,1,13859,386815 ,1,13860,386815 ,1,13862,386810 ,1,13866,386810 ,1,13867,386810 ,1,13868,386810 ,1,13869,386810 ,1,13871,386810 ,1,13872,386785 ,1,13874,386810 ,1,13875,386810 ,1,13876,386810 ,1,13877,386810 ,1,13878,386810 ,1,13880,386810 ,1,13881,386810 ,1,13882,386810 ,1,13883,386810 ,1,13884,386810 ,1,13885,386810 ,1,13886,386810 ,1,13887,386810 ,1,13889,386810 ,1,13890,386810 ,1,13891,386810 ,1,13892,386810 ,1,13894,386810 ,1,13895,386810 ,1,13896,386810 ,1,13897,386810 ,1,13898,386810 ,1,13899,386810 ,1,13900,386810 ,1,13901,386810 ,1,13902,386810 ,1,13903,386810 ,1,13904,386810 ,1,13905,386810 ,1,13906,386810 ,1,13907,386810 ,1,13908,386810 ,1,13909,386810 ,1,13910,386810 ,1,13911,386810 ,1,13912,386810 ,1,13913,386810 ,1,13914,386810 ,1,13915,386810 ,1,13916,386780 ,1,13917,386810 ,1,13918,386810 ,1,13919,386810 ,1,13920,386810 ,1,13921,386810 ,1,13922,386810 ,1,13923,386810 ,1,13924,386810 ,1,13925,386810 ,1,13926,386810 ,1,13927,386810 ,1,13928,386810 ,1,13929,386810 ,1,13930,386810 ,1,13931,386810 ,1,13932,386810 ,1,13933,386810 ,1,13934,386810 ,1,13935,386810 ,1,13936,386810 ,1,13937,386810 ,1,13938,386810 ,1,13939,386810 ,1,13942,386810 ,1,13943,386810 ,1,13944,386810 ,1,13945,386810 ,1,13946,386810 ,1,13948,386810 ,1,13949,386810 ,1,13950,386810 ,1,13951,386810 ,1,13952,386810 ,1,13953,386810 ,1,13954,386810 ,1,13955,386810 ,1,13956,386810 ,1,13958,386810 ,1,13959,386810 ,1,13960,386810 ,1,13962,386810 ,1,13964,386810 ,1,13965,386810 ,1,13966,386810 ,1,13967,386810 ,1,13969,386810 ,1,13970,386810 ,1,13972,386810 ,1,13973,386775 ,1,13974,386810 ,1,13976,386810 ,1,13978,386810 ,1,13981,386810 ,1,13982,386810 ,1,13983,386810 ,1,13984,386810 ,1,13985,386810 ,1,13986,386810 ,1,13987,386810 ,1,13988,386810 ,1,13989,386810 ,1,13990,386810 ,1,13991,386810 ,1,13992,386810 ,1,13993,386810 ,1,13994,386810 ,1,13995,386810 ,1,13996,386810 ,1,13997,386810 ,1,13998,386810 ,1,13999,386810 ,1,14000,386810 ,1,14001,386810 ,1,14003,386810 ,1,14005,386810 ,1,14006,386810 ,1,14007,386810 ,1,14008,386810 ,1,14009,386810 ,1,14010,386810 ,1,14011,386810 ,1,14014,386810 ,1,14015,386810 ,1,14016,386810 ,1,14018,386810 ,1,14019,386810 ,1,14021,386810 ,1,14022,386810 ,1,14023,386810 ,1,14024,386810 ,1,14025,386810 ,1,14027,386810 ,1,14028,386810 ,1,14029,386810 ,1,14030,386810 ,1,14031,386810 ,1,14032,386810 ,1,14033,386810 ,1,14034,386810 ,1,14035,386810 ,1,14037,386810 ,1,14038,386810 ,1,14039,386810 ,1,14040,386810 ,1,14041,386810 ,1,14042,386810 ,1,14043,386810 ,1,14044,386810 ,1,14045,386810 ,1,14046,386810 ,1,14047,386810 ,1,14048,386810 ,1,14049,386810 ,1,14050,386810 ,1,14051,386810 ,1,14052,386810 ,1,14053,386810 ,1,14054,386810 ,1,14055,386810 ,1,14056,386810 ,1,14057,386810 ,1,14058,386810 ,1,14059,386810 ,1,14061,386810 ,1,14062,386810 ,1,14063,386810 ,1,14064,386810 ,1,14065,386810 ,1,14066,386810 ,1,14067,386810 ,1,14070,386810 ,1,14071,386810 ,1,14072,386810 ,1,14073,386810 ,1,14074,386810 ,1,14075,386810 ,1,14076,386810 ,1,14077,386810 ,1,14078,386810 ,1,14079,386810 ,1,14080,386810 ,1,14081,386810 ,1,14082,386810 ,1,14083,386810 ,1,14084,386810 ,1,14085,386810 ,1,14086,386810 ,1,14087,386810 ,1,14088,386810 ,1,14089,386810 ,1,14090,386810 ,1,14091,386810 ,1,14092,386810 ,1,14093,386810 ,1,14094,386810 ,1,14095,386810 ,1,14096,386810 ,1,14097,386810 ,1,14098,386810 ,1,14099,386810 ,1,14103,386810 ,1,14104,386810 ,1,14105,386810 ,1,14106,386810 ,1,14107,386810 ,1,14108,386810 ,1,14109,386810 ,1,14110,386810 ,1,14111,386810 ,1,14112,386810 ,1,14113,386810 ,1,14114,386810 ,1,14115,386810 ,1,14118,386770 ,1,14119,386770 ,1,14120,386770 ,1,14121,386770 ,1,14122,386770 ,1,14124,386760 ,1,14125,386760 ,1,14126,386760 ,1,14128,386760 ,1,14129,386760 ,1,14130,386760 ,1,14131,386760 ,1,14132,386760 ,1,14133,386760 ,1,14134,386760 ,1,14135,386760 ,1,14136,386760 ,1,14140,386755 ,1,14141,386755 ,1,14142,386755 ,1,14143,386755 ,1,14144,386755 ,1,14146,386750 ,1,14147,386750 ,1,14148,386750 ,1,14150,386745 ,1,14151,386720 ,1,14152,386720 ,1,14153,386715 ,1,14154,386710 ,1,14155,386715 ,1,14156,386715 ,1,14157,386705 ,1,14158,386680 ,1,14167,413690 ,1,14171,413690 ,1,14172,413690 ,1,14173,413690 ,1,14174,413690 ,1,14176,413690 ,1,14177,413690 ,1,14179,413690 ,1,14180,413690 ,1,14181,413690 ,1,14182,413690 ,1,14183,413690 ,1,14185,413690 ,1,14186,413690 ,1,14187,413690 ,1,14188,413690 ,1,14189,413690 ,1,14190,413690 ,1,14191,413690 ,1,14192,413690 ,1,14194,413690 ,1,14195,413690 ,1,14196,413690 ,1,14197,413690 ,1,14199,413690 ,1,14200,413690 ,1,14201,413690 ,1,14202,413690 ,1,14203,413690 ,1,14204,413690 ,1,14205,413690 ,1,14206,413690 ,1,14207,413690 ,1,14208,413690 ,1,14209,413690 ,1,14210,413690 ,1,14211,413690 ,1,14212,413690 ,1,14213,413690 ,1,14214,413690 ,1,14215,413690 ,1,14216,413690 ,1,14217,413690 ,1,14218,413690 ,1,14219,413690 ,1,14220,413690 ,1,14221,413690 ,1,14222,413690 ,1,14223,413690 ,1,14224,413690 ,1,14225,413690 ,1,14226,413690 ,1,14227,413690 ,1,14228,413690 ,1,14229,413690 ,1,14230,413690 ,1,14231,413690 ,1,14232,413690 ,1,14233,413690 ,1,14234,413690 ,1,14235,413690 ,1,14236,413690 ,1,14237,413690 ,1,14238,413690 ,1,14239,413690 ,1,14240,413690 ,1,14241,413690 ,1,14242,413690 ,1,14243,413690 ,1,14244,413690 ,1,14247,413690 ,1,14248,413690 ,1,14249,413690 ,1,14250,413690 ,1,14251,413690 ,1,14253,413690 ,1,14254,413690 ,1,14255,413690 ,1,14256,413690 ,1,14257,413690 ,1,14258,413690 ,1,14259,413690 ,1,14260,413690 ,1,14261,413690 ,1,14263,413690 ,1,14264,413690 ,1,14265,413690 ,1,14267,413690 ,1,14269,413690 ,1,14270,413690 ,1,14271,413690 ,1,14272,413690 ,1,14274,413690 ,1,14275,413690 ,1,14277,413690 ,1,14279,413690 ,1,14281,413690 ,1,14283,413690 ,1,14286,413690 ,1,14287,413690 ,1,14288,413690 ,1,14289,413690 ,1,14290,413690 ,1,14291,413690 ,1,14292,413690 ,1,14293,413690 ,1,14294,413690 ,1,14295,413690 ,1,14296,413690 ,1,14297,413690 ,1,14298,413690 ,1,14299,413690 ,1,14300,413690 ,1,14301,413690 ,1,14302,413690 ,1,14303,413690 ,1,14304,413690 ,1,14305,413690 ,1,14306,413690 ,1,14308,413690 ,1,14310,413690 ,1,14311,413690 ,1,14312,413690 ,1,14313,413690 ,1,14314,413690 ,1,14315,413690 ,1,14316,413690 ,1,14319,413690 ,1,14320,413690 ,1,14321,413690 ,1,14323,413690 ,1,14324,413690 ,1,14326,413690 ,1,14327,413690 ,1,14328,413690 ,1,14329,413690 ,1,14330,413690 ,1,14332,413690 ,1,14333,413690 ,1,14334,413690 ,1,14335,413690 ,1,14336,413690 ,1,14337,413690 ,1,14338,413690 ,1,14339,413690 ,1,14340,413690 ,1,14342,413690 ,1,14343,413690 ,1,14344,413690 ,1,14345,413690 ,1,14346,413690 ,1,14347,413690 ,1,14348,413690 ,1,14349,413690 ,1,14350,413690 ,1,14351,413690 ,1,14352,413690 ,1,14353,413690 ,1,14354,413690 ,1,14355,413690 ,1,14356,413690 ,1,14357,413690 ,1,14358,413690 ,1,14359,413690 ,1,14360,413690 ,1,14361,413690 ,1,14362,413690 ,1,14363,413690 ,1,14364,413690 ,1,14366,413690 ,1,14367,413690 ,1,14368,413690 ,1,14369,413690 ,1,14370,413690 ,1,14371,413690 ,1,14372,413690 ,1,14375,413690 ,1,14376,413690 ,1,14377,413690 ,1,14378,413690 ,1,14379,413690 ,1,14380,413690 ,1,14381,413690 ,1,14382,413690 ,1,14383,413690 ,1,14384,413690 ,1,14385,413690 ,1,14386,413690 ,1,14387,413690 ,1,14388,413690 ,1,14389,413690 ,1,14390,413690 ,1,14391,413690 ,1,14392,413690 ,1,14393,413690 ,1,14394,413690 ,1,14395,413690 ,1,14396,413690 ,1,14397,413690 ,1,14398,413690 ,1,14399,413690 ,1,14400,413690 ,1,14401,413690 ,1,14402,413690 ,1,14403,413690 ,1,14404,413690 ,1,14408,413690 ,1,14409,413690 ,1,14410,413690 ,1,14411,413690 ,1,14412,413690 ,1,14413,413690 ,1,14414,413690 ,1,14415,413690 ,1,14416,413690 ,1,14417,413690 ,1,14418,413690 ,1,14419,413690 ,1,14420,413690 ,1,14421,386675 ,1,14422,386675 ,1,14423,386675 ,1,14424,386675 ,1,14425,386675 ,1,14426,386675 ,1,14427,386675 ,1,14428,386675 ,1,14429,386670 ,1,14430,386675 ,1,14431,386675 ,1,14432,386665 ,1,14433,386675 ,1,14434,386675 ,1,14435,386675 ,1,14443,386655 ,1,14444,386655 ,1,14445,386655 ,1,14446,386655 ,1,14449,386650 ,1,14451,386645 ,1,14452,386645 ,1,14453,386645 ,1,14454,386645 ,1,14455,386640 ,1,14457,386630 ,1,14458,386625 ,1,14459,386620 ,1,14460,386630 ,1,14461,386630 ,1,14462,386630 ,1,14463,386630 ,1,14464,386615 ,1,14466,386630 ,1,14467,386630 ,1,14468,386630 ,1,14469,386595 ,1,14471,386590 ,1,14472,386590 ,1,14473,386590 ,1,14474,386590 ,1,14475,386590 ,1,14476,386590 ,1,14477,386590 ,1,14478,386590 ,1,14479,386590 ,1,14480,386590 ,1,14481,386590 ,1,14482,386590 ,1,14483,386590 ,1,14484,386590 ,1,14485,386590 ,1,14486,386590 ,1,14487,386590 ,1,14488,386590 ,1,14489,386590 ,1,14490,386585 ,1,14491,386590 ,1,14492,386590 ,1,14493,386590 ,1,14494,386590 ,1,14495,386590 ,1,14496,386590 ,1,14497,386590 ,1,14498,386590 ,1,14499,386590 ,1,14500,386590 ,1,14501,386590 ,1,14502,386590 ,1,14503,386590 ,1,14504,386590 ,1,14505,386590 ,1,14506,386590 ,1,14507,386590 ,1,14508,386590 ,1,14509,386590 ,1,14510,386590 ,1,14511,386590 ,1,14512,386590 ,1,14513,386590 ,1,14514,386590 ,1,14515,386590 ,1,14516,386590 ,1,14519,386580 ,1,14520,386580 ,1,14521,386580 ,1,14522,386580 ,1,14523,386580 ,1,14525,386575 ,1,14526,386575 ,1,14527,386575 ,1,14528,386575 ,1,14529,386575 ,1,14530,386575 ,1,14531,386575 ,1,14532,386575 ,1,14533,386575 ,1,14535,386570 ,1,14536,386570 ,1,14537,386570 ,1,14539,386575 ,1,14541,386575 ,1,14542,386575 ,1,14543,386575 ,1,14544,386575 ,1,14545,413685 ,1,14546,386575 ,1,14547,386575 ,1,14549,386575 ,1,14551,386575 ,1,14553,386575 ,1,14555,386575 ,1,14557,413680 ,1,14558,386565 ,1,14559,386565 ,1,14560,386565 ,1,14561,386565 ,1,14562,386565 ,1,14563,386565 ,1,14564,386565 ,1,14565,386565 ,1,14566,386565 ,1,14567,386565 ,1,14568,386565 ,1,14569,386565 ,1,14570,386565 ,1,14571,386565 ,1,14572,386565 ,1,14573,386565 ,1,14574,386565 ,1,14575,386565 ,1,14576,386565 ,1,14577,386565 ,1,14578,386565 ,1,14580,386565 ,1,14582,386565 ,1,14583,386565 ,1,14584,386565 ,1,14585,386565 ,1,14586,386565 ,1,14587,386565 ,1,14588,386565 ,1,14591,386565 ,1,14592,386565 ,1,14593,386565 ,1,14595,386565 ,1,14596,386565 ,1,14598,386565 ,1,14599,386565 ,1,14600,386565 ,1,14601,386565 ,1,14602,386565 ,1,14604,386565 ,1,14605,386565 ,1,14606,386565 ,1,14607,386565 ,1,14608,386565 ,1,14609,386565 ,1,14610,386565 ,1,14611,386565 ,1,14612,386565 ,1,14614,386565 ,1,14615,386565 ,1,14616,386565 ,1,14617,386565 ,1,14618,386565 ,1,14619,386565 ,1,14620,386565 ,1,14621,386565 ,1,14622,386565 ,1,14623,386565 ,1,14624,386565 ,1,14625,386565 ,1,14626,386565 ,1,14627,386565 ,1,14628,386565 ,1,14629,386565 ,1,14630,386565 ,1,14631,386565 ,1,14632,386565 ,1,14633,386565 ,1,14634,386565 ,1,14635,386565 ,1,14636,386565 ,1,14638,386560 ,1,14639,386560 ,1,14640,386560 ,1,14641,386560 ,1,14642,386560 ,1,14643,386560 ,1,14644,386560 ,1,14647,386560 ,1,14648,386560 ,1,14649,386560 ,1,14650,386560 ,1,14651,386560 ,1,14652,386560 ,1,14653,386560 ,1,14654,386560 ,1,14655,386560 ,1,14656,386560 ,1,14657,386560 ,1,14658,386560 ,1,14659,386560 ,1,14660,386560 ,1,14661,386560 ,1,14662,386560 ,1,14663,386560 ,1,14664,386560 ,1,14665,386560 ,1,14666,386560 ,1,14667,386560 ,1,14668,386560 ,1,14669,386560 ,1,14670,386560 ,1,14671,386560 ,1,14672,386560 ,1,14673,386560 ,1,14674,386560 ,1,14675,386560 ,1,14676,386560 ,1,14680,386560 ,1,14681,386560 ,1,14682,386560 ,1,14683,386560 ,1,14684,386560 ,1,14685,386560 ,1,14686,386560 ,1,14687,386560 ,1,14688,386560 ,1,14689,386560 ,1,14690,386560 ,1,14691,386560 ,1,14692,386560 ,1,14693,386550 ,1,14697,386545 ,1,14698,386545 ,1,14699,386540 ,1,14701,413675 ,1,14703,386535 ,1,14704,386520 ,1,14705,386520 ,1,14706,386515 ,1,14707,386515 ,1,14708,386515 ,1,14709,386515 ,1,14710,386510 ,1,14711,386505 ,1,14717,386485 ,1,14718,386480 ,1,14719,386475 ,1,14720,386475 ,1,14721,386475 ,1,14722,386475 ,1,14723,386475 ,1,14725,386470 ,1,14726,386470 ,1,14727,386470 ,1,14729,386470 ,1,14730,386470 ,1,14731,386470 ,1,14732,386470 ,1,14733,386470 ,1,14734,386470 ,1,14735,386470 ,1,14736,386470 ,1,14737,386470 ,1,14746,386465 ,1,14748,386465 ,1,14751,386465 ,1,14752,386465 ,1,14753,386465 ,1,14754,386465 ,1,14755,386465 ,1,14756,386465 ,1,14757,386465 ,1,14758,386465 ,1,14759,386465 ,1,14760,386465 ,1,14761,386465 ,1,14762,386465 ,1,14763,386465 ,1,14764,386465 ,1,14765,386465 ,1,14766,386465 ,1,14767,386465 ,1,14768,386465 ,1,14771,386465 ,1,14772,386465 ,1,14773,386465 ,1,14774,386465 ,1,14775,386465 ,1,14778,386465 ,1,14779,386465 ,1,14780,386465 ,1,14781,386465 ,1,14782,386465 ,1,14784,386465 ,1,14785,386465 ,1,14786,386465 ,1,14787,386465 ,1,14788,386465 ,1,14790,386465 ,1,14791,386465 ,1,14792,386465 ,1,14793,386465 ,1,14795,386465 ,1,14796,386465 ,1,14797,386465 ,1,14798,386465 ,1,14805,386460 ,1,14806,386455 ,1,14807,386460 ,1,14809,386450 ,1,14810,386425 ,1,14811,386420 ,1,14812,386415 ,1,14813,386410 ,1,14814,386400 ,1,14815,386395 ,1,14816,386390 ,1,14817,386460 ,1,14819,386385 ,1,14820,386385 ,1,14821,386385 ,1,14822,386385 ,1,14823,386385 ,1,14824,413670 ,1,14825,386370 ,1,14826,386385 ,1,14827,386385 ,1,14829,386385 ,1,14830,386385 ,1,14831,386385 ,1,14832,386385 ,1,14833,386385 ,1,14834,386385 ,1,14835,386385 ,1,14836,386385 ,1,14837,386385 ,1,14841,386365 ,1,14844,413665 ,1,14846,413630 ,1,14847,413625 ,1,14849,386360 ,1,14850,386360 ,1,14851,386360 ,1,14852,386360 ,1,14860,413620 ,1,14861,413620 ,1,14873,413615 ,1,14874,413615 ,1,14875,413605 ,1,14876,413600 ,1,14877,413605 ,1,14878,413605 ,1,14879,413600 ,1,14880,413605 ,1,14881,413605 ,1,14882,413600 ,1,14883,413605 ,1,14884,413605 ,1,14885,413600 ,1,14886,413605 ,1,14887,413605 ,1,14888,413600 ,1,14889,413605 ,1,14890,413605 ,1,14891,413600 ,1,14892,413605 ,1,14893,413605 ,1,14894,413600 ,1,14895,413605 ,1,14896,413605 ,1,14897,413600 ,1,14898,413605 ,1,14899,413605 ,1,14900,413600 ,1,14901,413605 ,1,14902,413605 ,1,14903,413600 ,1,14904,413605 ,1,14905,413605 ,1,14906,413600 ,1,14907,413605 ,1,14908,413605 ,1,14909,413600 ,1,14910,413605 ,1,14911,413605 ,1,14912,413600 ,1,14913,413605 ,1,14914,413605 ,1,14915,413600 ,1,14916,413605 ,1,14917,386355 ,1,14923,386350 ,1,14924,386345 ,1,14929,413595 ,1,14930,386340 ,1,14931,386340 ,1,14932,386340 ,1,14933,386335 ,1,14934,386340 ,1,14935,386305 ,1,14936,386340 ,1,14937,386340 ,1,14938,386340 ,1,14939,413590 ,1,14940,386340 ,1,14941,386340 ,1,14942,386340 ,1,14943,386340 ,1,14944,386340 ,1,14945,386340 ,1,14946,386340 ,1,14947,386340 ,1,14948,386340 ,1,14949,386300 ,1,14950,386300 ,1,14951,386300 ,1,14952,386300 ,1,14953,386300 ,1,14955,386295 ,1,14956,413555 ,1,14957,413555 ,1,14959,386290 ,1,14960,386275 ,1,14961,386275 ,1,14962,386270 ,1,14963,386270 ,1,14964,386270 ,1,14965,386270 ,1,14966,386265 ,1,14967,386260 ,1,14968,413550 ,1,14971,413550 ,1,14973,386235 ,1,14974,413550 ,1,14976,413550 ,1,14978,386230 ,1,14979,413545 ,1,14980,413550 ,1,14982,413540 ,1,14984,413530 ,1,14985,413550 ,1,14987,386225 ,1,14988,413550 ,1,14989,413525 ,1,14990,386220 ,1,14991,413550 ,1,14992,413550 ,1,14993,413550 ,1,14994,386215 ,1,14995,386215 ,1,14998,413520 ,1,14999,386205 ,1,15000,413550 ,1,15002,413550 ,1,15005,413550 ,1,15006,413550 ,1,15007,413515 ,1,15008,413550 ,1,15009,386200 ,1,15010,413550 ,1,15011,413550 ,1,15013,413495 ,1,15015,413490 ,1,15016,386180 ,1,15017,413550 ,1,15019,386175 ,1,15021,413485 ,1,15023,413480 ,1,15024,413550 ,1,15025,413550 ,1,15026,413550 ,1,15027,386170 ,1,15029,413465 ,1,15030,386165 ,1,15033,413460 ,1,15035,413460 ,1,15036,413460 ,1,15037,413460 ,1,15038,413460 ,1,15039,413460 ,1,15040,413455 ,1,15041,413450 ,1,15043,386155 ,1,15045,413425 ,1,15047,413420 ,1,15049,413550 ,1,15051,413550 ,1,15052,413550 ,1,15053,413550 ,1,15054,413550 ,1,15055,413550 ,1,15057,413415 ,1,15058,413550 ,1,15059,413550 ,1,15061,386150 ,1,15062,413550 ,1,15063,413550 ,1,15065,413410 ,1,15066,413550 ,1,15067,413550 ,1,15078,386145 ,1,15079,386145 ,1,15080,386145 ,1,15081,386140 ,1,15082,386145 ,1,15084,386145 ,1,15085,386145 ,1,15086,386145 ,1,15088,386145 ,1,15089,386145 ,1,15090,386145 ,1,15091,386145 ,1,15092,386145 ,1,15093,386145 ,1,15094,386145 ,1,15095,386145 ,1,15096,386145 ,1,15099,386125 ,1,15100,386120 ,1,15101,386125 ,1,15102,386115 ,1,15103,386125 ,1,15105,386110 ,1,15106,386110 ,1,15107,386110 ,1,15108,413405 ,1,15109,386110 ,1,15110,386110 ,1,15111,386110 ,1,15112,386110 ,1,15113,386110 ,1,15114,386110 ,1,15115,386110 ,1,15116,386110 ,1,15117,386110 ,1,15118,386100 ,1,15119,386100 ,1,15120,386100 ,1,15121,386095 ,1,15122,386100 ,1,15123,413400 ,1,15124,386090 ,1,15125,386085 ,1,15126,386085 ,1,15128,386060 ,1,15129,386085 ,1,15130,386085 ,1,15131,386085 ,1,15132,386085 ,1,15133,386085 ,1,15134,386085 ,1,15135,386085 ,1,15136,386085 ,1,15145,413395 ,1,15146,413395 ,1,15147,413395 ,1,15148,413395 ,1,15149,413395 ,1,15150,413395 ,1,15151,413395 ,1,15152,413395 ,1,15153,413395 ,1,15154,413395 ,1,15155,413395 ,1,15156,413395 ,1,15157,413395 ,1,15158,413395 ,1,15159,413395 ,1,15160,413395 ,1,15161,413395 ,1,15162,413395 ,1,15163,413395 ,1,15164,413395 ,1,15165,413395 ,1,15166,413395 ,1,15167,413395 ,1,15168,413395 ,1,15169,413395 ,1,15170,413395 ,1,15171,413395 ,1,15172,413395 ,1,15173,413395 ,1,15174,413395 ,1,15175,413395 ,1,15176,413395 ,1,15177,413395 ,1,15178,413395 ,1,15179,413395 ,1,15180,413395 ,1,15181,413395 ,1,15182,413395 ,1,15183,413395 ,1,15184,413395 ,1,15185,413395 ,1,15186,413395 ,1,15187,413395 ,1,15188,413395 ,1,15189,413395 ,1,15190,413395 ,1,15193,413390 ,1,15194,413390 ,1,15195,413390 ,1,15196,413390 ,1,15197,413390 ,1,15199,413390 ,1,15200,413390 ,1,15201,413390 ,1,15202,413390 ,1,15203,413390 ,1,15204,413390 ,1,15205,413390 ,1,15206,413390 ,1,15207,413390 ,1,15209,413390 ,1,15210,413390 ,1,15211,413390 ,1,15213,413390 ,1,15215,413390 ,1,15216,413390 ,1,15217,413390 ,1,15218,413390 ,1,15220,413390 ,1,15221,413390 ,1,15223,413390 ,1,15225,413390 ,1,15227,413390 ,1,15229,413390 ,1,15230,386055 ,1,15231,386050 ,1,15232,386045 ,1,15234,413370 ,1,15239,413365 ,1,15240,386040 ,1,15243,413360 ,1,15245,413355 ,1,15246,413345 ,1,15247,413340 ,1,15248,413335 ,1,15249,413335 ,1,15251,413330 ,1,15252,413310 ,1,15257,413305 ,1,15259,413300 ,1,15260,413295 ,1,15267,413280 ,1,15270,413275 ,1,15272,413270 ,1,15278,413265 ,1,15279,413235 ,1,15280,413230 ,1,15281,413225 ,1,15282,413220 ,1,15283,413210 ,1,15284,413205 ,1,15285,413200 ,1,15288,413195 ,1,15289,413165 ,1,15290,413160 ,1,15291,413155 ,1,15292,413150 ,1,15295,413145 ,1,15296,413140 ,1,15298,413135 ,1,15299,386035 ,1,15300,386035 ,1,15301,386035 ,1,15304,413130 ,1,15305,413110 ,1,15306,413105 ,1,15311,386030 ,1,15312,413100 ,1,15313,413095 ,1,15314,413085 ,1,15318,413080 ,1,15323,413075 ,1,15324,413070 ,1,15325,413050 ,1,15327,413045 ,1,15329,413040 ,1,15331,413035 ,1,15333,413015 ,1,15335,413010 ,1,15337,413005 ,1,15339,413000 ,1,15343,386025 ,1,15344,412965 ,1,15345,412960 ,1,15347,412955 ,1,15348,412955 ,1,15349,386010 ,1,15350,412950 ,1,15351,386005 ,1,15354,412945 ,1,15357,412940 ,1,15362,412935 ,1,15364,412930 ,1,15365,412920 ,1,15368,386000 ,1,15372,385995 ,1,15376,385975 ,1,15380,385970 ,1,15381,385970 ,1,15382,385965 ,1,15385,385960 ,1,15387,385935 ,1,15395,412915 ,1,15396,412915 ,1,15398,385930 ,1,15399,385925 ,1,15409,385920 ,1,15410,385910 ,1,15411,385910 ,1,15412,385910 ,1,15417,385905 ,1,15418,385905 ,1,15419,385905 ,1,15420,385905 ,1,15421,385905 ,1,15422,385905 ,1,15424,385905 ,1,15425,385905 ,1,15427,385900 ,1,15428,385895 ,1,15429,385900 ,1,15430,385900 ,1,15431,385895 ,1,15432,385900 ,1,15433,385900 ,1,15434,385895 ,1,15435,385900 ,1,15436,385900 ,1,15437,385895 ,1,15438,385900 ,1,15439,385900 ,1,15440,385895 ,1,15441,385900 ,1,15442,385900 ,1,15443,385895 ,1,15444,385900 ,1,15445,385900 ,1,15446,385895 ,1,15447,385900 ,1,15448,385900 ,1,15449,385895 ,1,15450,385900 ,1,15451,385900 ,1,15452,385895 ,1,15453,385900 ,1,15454,385870 ,1,15455,385865 ,1,15456,385870 ,1,15457,385870 ,1,15458,385865 ,1,15459,385870 ,1,15460,385860 ,1,15461,385855 ,1,15462,385860 ,1,15463,385845 ,1,15464,385840 ,1,15465,385845 ,1,15466,385835 ,1,15467,385830 ,1,15468,385835 ,1,15473,385815 ,1,15475,385810 ,1,15476,385805 ,1,15478,385800 ,1,15483,385795 ,1,15484,385790 ,1,15486,385785 ,1,15487,385780 ,1,15488,385780 ,1,15489,385760 ,1,15490,385760 ,1,15491,385760 ,1,15493,385760 ,1,15494,385760 ,1,15495,385760 ,1,15497,385760 ,1,15498,385760 ,1,15499,385760 ,1,15500,385760 ,1,15501,385760 ,1,15502,385760 ,1,15503,385760 ,1,15504,385760 ,1,15505,385760 ,1,15526,412910 ,1,15530,385755 ,1,15531,412905 ,1,15532,385750 ,1,15534,385745 ,1,15535,385740 ,1,15536,412900 ,1,15537,385745 ,1,15538,385745 ,1,15539,385745 ,1,15544,385735 ,1,15547,385730 ,1,15549,385725 ,1,15550,385685 ,1,15554,385680 ,1,15555,385675 ,1,15556,385670 ,1,15558,385665 ,1,15560,385660 ,1,15561,385655 ,1,15563,385650 ,1,15564,385635 ,1,15566,385630 ,1,15567,385625 ,1,15568,385620 ,1,15569,385615 ,1,15570,385610 ,1,15571,385605 ,1,15575,385600 ,1,15576,385580 ,1,15578,385575 ,1,15581,385570 ,1,15582,385565 ,1,15584,385560 ,1,15586,385555 ,1,15587,385550 ,1,15589,385545 ,1,15591,385520 ,1,15592,385515 ,1,15595,385510 ,1,15597,385505 ,1,15599,385490 ,1,15600,385485 ,1,15601,385480 ,1,15602,385475 ,1,15603,385440 ,1,15605,385435 ,1,15606,385430 ,1,15609,385425 ,1,15611,385420 ,1,15612,385415 ,1,15613,385410 ,1,15614,385405 ,1,15615,385385 ,1,15617,385375 ,1,15619,385370 ,1,15620,412895 ,1,15621,385365 ,1,15623,385360 ,1,15625,385355 ,1,15628,385350 ,1,15630,385330 ,1,15631,385325 ,1,15633,385320 ,1,15634,385290 ,1,15635,385285 ,1,15637,385255 ,1,15638,385250 ,1,15639,385245 ,1,15641,385240 ,1,15642,385235 ,1,15643,385230 ,1,15647,385225 ,1,15648,385220 ,1,15654,385200 ,1,15655,385195 ,1,15656,385200 ,1,15657,385190 ,1,15658,385185 ,1,15661,385180 ,1,15668,412890 ,1,15669,385175 ,1,15670,385170 ,1,15672,412885 ,1,15673,412885 ,1,15675,412860 ,1,15680,412855 ,1,15681,412855 ,1,15682,412855 ,1,15683,412855 ,1,15684,412855 ,1,15685,412855 ,1,15698,385165 ,1,15699,385145 ,1,15700,385165 ,1,15701,385165 ,1,15702,385145 ,1,15703,385165 ,1,15704,385165 ,1,15705,385145 ,1,15706,385165 ,1,15707,385165 ,1,15708,385145 ,1,15709,385165 ,1,15710,385165 ,1,15711,385145 ,1,15712,385165 ,1,15713,385165 ,1,15714,385145 ,1,15715,385165 ,1,15716,385165 ,1,15717,385145 ,1,15718,385165 ,1,15719,385165 ,1,15720,385145 ,1,15721,385165 ,1,15722,385165 ,1,15723,385145 ,1,15724,385165 ,1,15725,385140 ,1,15726,385135 ,1,15727,385140 ,1,15728,385140 ,1,15729,385135 ,1,15730,385140 ,1,15731,385130 ,1,15732,385125 ,1,15733,385130 ,1,15734,385120 ,1,15735,385115 ,1,15736,385120 ,1,15737,385110 ,1,15738,385085 ,1,15739,385110 ,1,15743,385080 ,1,15746,385075 ,1,15747,385070 ,1,15749,385065 ,1,15754,385060 ,1,15755,385055 ,1,15762,385050 ,1,15763,385025 ,1,15764,385020 ,1,15766,385015 ,1,15767,385010 ,1,15768,385005 ,1,15769,385000 ,1,15770,384995 ,1,15771,384990 ,1,15772,384975 ,1,15773,384970 ,1,15774,384965 ,1,15775,384960 ,1,15776,384950 ,1,15777,384945 ,1,15778,384940 ,1,15779,384935 ,1,15780,384915 ,1,15781,384910 ,1,15782,384905 ,1,15783,412850 ,1,15784,384900 ,1,15786,384895 ,1,15787,384890 ,1,15788,384885 ,1,15789,384880 ,1,15790,384855 ,1,15791,384850 ,1,15792,384845 ,1,15796,384840 ,1,15797,384825 ,1,15799,384820 ,1,15800,384815 ,1,15802,384810 ,1,15803,384785 ,1,15804,384780 ,1,15805,384775 ,1,15806,384770 ,1,15808,384765 ,1,15809,384760 ,1,15810,384755 ,1,15811,384750 ,1,15812,384720 ,1,15813,384715 ,1,15814,384710 ,1,15815,384705 ,1,15816,384700 ,1,15817,384695 ,1,15818,384690 ,1,15819,384690 ,1,15820,384690 ,1,15821,384690 ,1,15822,384690 ,1,15823,384690 ,1,15824,384690 ,1,15825,384685 ,1,15826,384665 ,1,15828,384660 ,1,15830,384655 ,1,15831,384650 ,1,15832,384640 ,1,15833,384635 ,1,15834,384630 ,1,15835,384625 ,1,15836,384595 ,1,15837,384530 ,1,15838,384525 ,1,15839,384520 ,1,15840,384515 ,1,15849,384510 ,1,15850,384505 ,1,15851,384500 ,1,15852,384485 ,1,15853,384480 ,1,15854,384475 ,1,15865,412845 ,1,15866,412845 ,1,15867,412845 ,1,15868,412845 ,1,15869,412845 ,1,15870,412840 ,1,15873,384470 ,1,15874,384460 ,1,15875,384455 ,1,15876,384450 ,1,15877,384425 ,1,15878,384420 ,1,15879,384415 ,1,15882,384400 ,1,15883,384400 ,1,15884,384390 ,1,15885,412835 ,1,15886,384365 ,1,15887,384360 ,1,15888,384355 ,1,15889,384350 ,1,15890,384335 ,1,15891,384330 ,1,15892,384325 ,1,15894,384320 ,1,15895,384300 ,1,15896,384295 ,1,15897,384290 ,1,15898,384285 ,1,15899,384275 ,1,15900,384270 ,1,15901,384265 ,1,15902,384260 ,1,15903,384245 ,1,15904,384240 ,1,15905,384235 ,1,15906,384230 ,1,15908,384220 ,1,15909,384220 ,1,15910,384215 ,1,15911,384205 ,1,15912,384180 ,1,15915,384175 ,1,15916,384165 ,1,15917,384160 ,1,15918,384155 ,1,15921,384150 ,1,15922,384120 ,1,15923,384090 ,1,15925,384085 ,1,15926,384080 ,1,15927,384035 ,1,15932,383900 ,1,15934,383890 ,1,15935,383890 ,1,15936,383890 ,1,15937,383890 ,1,15938,383890 ,1,15939,383890 ,1,15940,383890 ,1,15941,383890 ,1,15942,383890 ,1,15943,383890 ,1,15944,383890 ,1,15945,383890 ,1,15956,383885 ,1,15957,383885 ,1,15958,383880 ,1,15962,383875 ,1,15965,412830 ,1,15971,383840 ,1,15972,383835 ,1,15973,383840 ,1,15975,383830 ,1,15976,383825 ,1,15977,383820 ,1,15978,383815 ,1,15979,383810 ,1,15980,383805 ,1,15982,383770 ,1,15983,383840 ,1,15989,383765 ,1,15990,383760 ,1,15991,383755 ,1,15996,383745 ,1,15997,383740 ,1,15998,383735 ,1,15999,383730 ,1,16003,383705 ,1,16004,383700 ,1,16011,383695 ,1,16012,383690 ,1,16013,383685 ,1,16014,383680 ,1,16015,383675 ,1,16021,383670 ,1,16022,383660 ,1,16023,383655 ,1,16025,383650 ,1,16029,412825 ,1,16030,383645 ,1,16031,412785 ,1,16032,412785 ,1,16034,383635 ,1,16035,383635 ,1,16036,412780 ,1,16040,412775 ,1,16041,412775 ,1,16043,412770 ,1,16048,412760 ,1,16049,412760 ,1,16050,412760 ,1,16051,412760 ,1,16052,412760 ,1,16053,412760 ,1,16063,383625 ,1,16064,412755 ,1,16067,383620 ,1,16068,383585 ,1,16069,383620 ,1,16071,383620 ,1,16072,383620 ,1,16073,383620 ,1,16074,383620 ,1,16075,383620 ,1,16076,383620 ,1,16078,383620 ,1,16079,383620 ,1,16080,412750 ,1,16081,412750 ,1,16083,383580 ,1,16085,383580 ,1,16088,383580 ,1,16089,383580 ,1,16090,383580 ,1,16091,383580 ,1,16092,383580 ,1,16093,383580 ,1,16094,383580 ,1,16095,383580 ,1,16096,383580 ,1,16097,383580 ,1,16098,383580 ,1,16099,383580 ,1,16100,383580 ,1,16101,383580 ,1,16102,383580 ,1,16103,383580 ,1,16104,383580 ,1,16105,383580 ,1,16108,383580 ,1,16109,383580 ,1,16110,383580 ,1,16111,383580 ,1,16112,383580 ,1,16115,383580 ,1,16116,383580 ,1,16117,383580 ,1,16118,383580 ,1,16119,383580 ,1,16121,383580 ,1,16122,383580 ,1,16123,383580 ,1,16124,383580 ,1,16125,383580 ,1,16127,383580 ,1,16128,383580 ,1,16129,383580 ,1,16130,383580 ,1,16132,383580 ,1,16133,383580 ,1,16134,383580 ,1,16135,383580 ,1,16144,383575 ,1,16145,383575 ,1,16146,383575 ,1,16148,383570 ,1,16150,383565 ,1,16151,383565 ,1,16153,383565 ,1,16154,383565 ,1,16161,383560 ,1,16162,383555 ,1,16164,383550 ,1,16165,383550 ,1,16167,383525 ,1,16169,383525 ,1,16170,412745 ,1,16172,383520 ,1,16173,383515 ,1,16174,383510 ,1,16175,383505 ,1,16177,383500 ,1,16183,383495 ,1,16186,383490 ,1,16187,383490 ,1,16189,383485 ,1,16191,383485 ,1,16200,412720 ,1,16201,383480 ,1,16202,383480 ,1,16206,412715 ,1,16207,412715 ,1,16208,412715 ,1,16218,383475 ,1,16219,383475 ,1,16221,383475 ,1,16222,383475 ,1,16232,383470 ,1,16233,383470 ,1,16235,383460 ,1,16237,383460 ,1,16242,383455 ,1,16245,383450 ,1,16248,383445 ,1,16254,383405 ,1,16255,383405 ,1,16257,383400 ,1,16259,383400 ,1,16260,383395 ,1,16261,383390 ,1,16262,383380 ,1,16273,412710 ,1,16274,383375 ,1,16275,383370 ,1,16282,412705 ,1,16284,383365 ,1,16285,383340 ,1,16286,383335 ,1,16294,412695 ,1,16295,412695 ,1,16296,412695 ,1,16297,412695 ,1,16298,412695 ,1,16299,412695 ,1,16300,412690 ,1,16302,383330 ,1,16303,383330 ,1,16304,383330 ,1,16305,383330 ,1,16306,383330 ,1,16307,383330 ,1,16308,383330 ,1,16309,383330 ,1,16310,383330 ,1,16311,383330 ,1,16312,383330 ,1,16313,383330 ,1,16315,383325 ,1,16316,383320 ,1,16322,412690 ,1,16323,412690 ,1,16324,412685 ,1,16333,383315 ,1,16335,412680 ,1,16338,383310 ,1,16339,383305 ,1,16340,383310 ,1,16342,383310 ,1,16343,383310 ,1,16344,383310 ,1,16345,383310 ,1,16346,383310 ,1,16347,383310 ,1,16349,383310 ,1,16350,383310 ,1,16351,412665 ,1,16352,383280 ,1,16353,412665 ,1,16354,412665 ,1,16355,383280 ,1,16356,412665 ,1,16357,412665 ,1,16358,383280 ,1,16359,412665 ,1,16360,412665 ,1,16361,383280 ,1,16362,412665 ,1,16363,412665 ,1,16364,383280 ,1,16365,412665 ,1,16366,412665 ,1,16367,383280 ,1,16368,412665 ,1,16369,412665 ,1,16370,383280 ,1,16371,412665 ,1,16372,412665 ,1,16373,383280 ,1,16374,412665 ,1,16375,412665 ,1,16376,383280 ,1,16377,412665 ,1,16378,383275 ,1,16379,383270 ,1,16380,383275 ,1,16381,383275 ,1,16382,383270 ,1,16383,383275 ,1,16384,383265 ,1,16385,383260 ,1,16386,383265 ,1,16387,412660 ,1,16388,383255 ,1,16389,412660 ,1,16390,383250 ,1,16391,383245 ,1,16392,383250 ,1,16393,412655 ,1,16396,383215 ,1,16397,383210 ,1,16399,412650 ,1,16400,412650 ,1,16401,412650 ,1,16402,412650 ,1,16415,383205 ,1,16416,383205 ,1,16417,383205 ,1,16418,383200 ,1,16427,383185 ,1,16432,383180 ,1,16433,383175 ,1,16435,412645 ,1,16436,383170 ,1,16438,383150 ,1,16442,412640 ,1,16443,412640 ,1,16444,412640 ,1,16445,412640 ,1,16446,412640 ,1,16447,412640 ,1,16448,412640 ,1,16449,412640 ,1,16450,412640 ,1,16451,412640 ,1,16452,412640 ,1,16453,412640 ,1,16454,412640 ,1,16455,412640 ,1,16456,412640 ,1,16460,383145 ,1,16462,383140 ,1,16465,383135 ,1,16469,383130 ,1,16470,383125 ,1,16471,383120 ,1,16483,412635 ,1,16488,383115 ,1,16489,383105 ,1,16490,383105 ,1,16492,383105 ,1,16493,383105 ,1,16496,383100 ,1,16497,383095 ,1,16498,383090 ,1,16503,383075 ,1,16504,383075 ,1,16505,383070 ,1,16506,383065 ,1,16508,383065 ,1,16510,383115 ,1,16511,383115 ,1,16513,383060 ,1,16516,383040 ,1,16517,383025 ,1,16518,383020 ,1,16519,383015 ,1,16520,383010 ,1,16525,383005 ,1,16526,383005 ,1,16528,382965 ,1,16530,382965 ,1,16532,382960 ,1,16533,382960 ,1,16536,382955 ,1,16539,382950 ,1,16540,382945 ,1,16541,382950 ,1,16542,382950 ,1,16543,382945 ,1,16544,382950 ,1,16545,382950 ,1,16546,382945 ,1,16547,382950 ,1,16548,382950 ,1,16549,382945 ,1,16550,382950 ,1,16551,382950 ,1,16552,382945 ,1,16553,382950 ,1,16554,382950 ,1,16555,382945 ,1,16556,382950 ,1,16557,382950 ,1,16558,382945 ,1,16559,382950 ,1,16560,382950 ,1,16561,382945 ,1,16562,382950 ,1,16563,382950 ,1,16564,382945 ,1,16565,382950 ,1,16566,382940 ,1,16567,382935 ,1,16568,382940 ,1,16569,382940 ,1,16570,382935 ,1,16571,382940 ,1,16572,382930 ,1,16573,382905 ,1,16574,382930 ,1,16575,382900 ,1,16576,382895 ,1,16577,382900 ,1,16578,382890 ,1,16579,382885 ,1,16580,382890 ,1,16587,382880 ,1,16597,382875 ,1,16608,412630 ,1,16610,412630 ,1,16612,412630 ,1,16613,412630 ,1,16614,412630 ,1,16617,412630 ,1,16618,412630 ,1,16619,412630 ,1,16620,412630 ,1,16621,412630 ,1,16625,412615 ,1,16626,412615 ,1,16629,382870 ,1,16631,382850 ,1,16634,382845 ,1,16635,382845 ,1,16636,382845 ,1,16637,382845 ,1,16638,382845 ,1,16639,382845 ,1,16640,382845 ,1,16641,382845 ,1,16642,382845 ,1,16643,382845 ,1,16644,382845 ,1,16645,382845 ,1,16649,382845 ,1,16653,382845 ,1,16654,382845 ,1,16659,382845 ,1,16660,382845 ,1,16662,382845 ,1,16663,382845 ,1,16672,382840 ,1,16673,382845 ,1,16674,382845 ,1,16675,382835 ,1,16676,382845 ,1,16678,382845 ,1,16679,382845 ,1,16682,382830 ,1,16683,382845 ,1,16686,382845 ,1,16687,382845 ,1,16688,382845 ,1,16689,382825 ,1,16690,382845 ,1,16691,382845 ,1,16695,382845 ,1,16696,382845 ,1,16697,382820 ,1,16698,382845 ,1,16700,382845 ,1,16702,382845 ,1,16704,382845 ,1,16707,382845 ,1,16708,382845 ,1,16709,382845 ,1,16710,382845 ,1,16711,382845 ,1,16712,382845 ,1,16713,382845 ,1,16714,382845 ,1,16715,382845 ,1,16716,382845 ,1,16717,382845 ,1,16718,382845 ,1,16719,382845 ,1,16720,382845 ,1,16721,382845 ,1,16722,382845 ,1,16723,382845 ,1,16724,382845 ,1,16727,382845 ,1,16728,382845 ,1,16729,382845 ,1,16730,382845 ,1,16731,382845 ,1,16734,382845 ,1,16735,382845 ,1,16736,382845 ,1,16737,382845 ,1,16738,382845 ,1,16740,382845 ,1,16741,382845 ,1,16742,382845 ,1,16743,382845 ,1,16744,382845 ,1,16746,382845 ,1,16747,382845 ,1,16748,382845 ,1,16749,382845 ,1,16751,382845 ,1,16752,382845 ,1,16753,382845 ,1,16754,382845 ,1,16757,382845 ,1,16762,412610 ,1,16765,382815 ,1,16767,412605 ,1,16768,382795 ,1,16769,382790 ,1,16770,382785 ,1,16771,382780 ,1,16772,382775 ,1,16773,382770 ,1,16775,382765 ,1,16776,382760 ,1,16778,412600 ,1,16780,382735 ,1,16786,412595 ,1,16788,412590 ,1,16795,412585 ,1,16797,382730 ,1,16808,382725 ,1,16809,382720 ,1,16810,382720 ,1,16811,382720 ,1,16812,382710 ,1,16813,382705 ,1,16814,382705 ,1,16824,382700 ,1,16825,382700 ,1,16827,382700 ,1,16829,382695 ,1,16832,412580 ,1,16834,382665 ,1,16835,382660 ,1,16836,382655 ,1,16841,382650 ,1,16842,382640 ,1,16843,382640 ,1,16844,382640 ,1,16849,382635 ,1,16863,412560 ,1,16864,382630 ,1,16865,412560 ,1,16866,412560 ,1,16867,382630 ,1,16868,412560 ,1,16869,412560 ,1,16870,382630 ,1,16871,412560 ,1,16872,412560 ,1,16873,382630 ,1,16874,412560 ,1,16875,412560 ,1,16876,382630 ,1,16877,412560 ,1,16878,412560 ,1,16879,382630 ,1,16880,412560 ,1,16881,412560 ,1,16882,382630 ,1,16883,412560 ,1,16884,412560 ,1,16885,382630 ,1,16886,412560 ,1,16887,412560 ,1,16888,382630 ,1,16889,412560 ,1,16890,382625 ,1,16891,382600 ,1,16892,382625 ,1,16893,382625 ,1,16894,382600 ,1,16895,382625 ,1,16896,382595 ,1,16897,382590 ,1,16898,382595 ,1,16899,382585 ,1,16900,382580 ,1,16901,382585 ,1,16902,382575 ,1,16903,382570 ,1,16904,382575 ,1,16910,382565 ,1,16911,382565 ,1,16912,382565 ,1,16914,382565 ,1,16916,382565 ,1,16917,382565 ,1,16918,382565 ,1,16922,412555 ,1,16923,382540 ,1,16924,382540 ,1,16925,382540 ,1,16926,382540 ,1,16927,382535 ,1,16939,382530 ,1,16941,382525 ,1,16943,382515 ,1,16946,382510 ,1,16953,412550 ,1,16960,412545 ,1,16961,382505 ,1,16962,382500 ,1,16963,412540 ,1,16964,412535 ,1,16965,382480 ,1,16969,382475 ,1,16970,382475 ,1,16971,382475 ,1,16972,382475 ,1,16973,382475 ,1,16974,382470 ,1,16975,382475 ,1,16976,382475 ,1,16977,412530 ,1,16978,412530 ,1,16980,382465 ,1,16981,382465 ,1,16984,382465 ,1,16985,382465 ,1,16986,382465 ,1,16987,382460 ,1,16988,382455 ,1,16989,382475 ,1,16990,382475 ,1,16992,382450 ,1,16993,412525 ,1,16994,382445 ,1,16996,412490 ,1,16997,382420 ,1,16998,382415 ,1,16999,382410 ,1,17001,382405 ,1,17002,382405 ,1,17004,382395 ,1,17005,382390 ,1,17006,412485 ,1,17007,382475 ,1,17008,382475 ,1,17012,382385 ,1,17014,382380 ,1,17025,382360 ,1,17042,412480 ,1,17045,382355 ,1,17047,382355 ,1,17048,382355 ,1,17054,382350 ,1,17055,382345 ,1,17057,382335 ,1,17064,382330 ,1,17071,382325 ,1,17074,382320 ,1,17075,382300 ,1,17076,382295 ,1,17077,382290 ,1,17078,412475 ,1,17080,382270 ,1,17086,412470 ,1,17088,382220 ,1,17089,382220 ,1,17090,382215 ,1,17091,382215 ,1,17092,382215 ,1,17093,382215 ,1,17095,412465 ,1,17102,382210 ,1,17103,382205 ,1,17104,412460 ,1,17106,412455 ,1,17107,412435 ,1,17109,382200 ,1,17112,382195 ,1,17113,382190 ,1,17114,382195 ,1,17116,382190 ,1,17117,382190 ,1,17125,382175 ,1,17126,382170 ,1,17127,412430 ,1,17129,382165 ,1,17130,382160 ,1,17131,382160 ,1,17136,382150 ,1,17139,382145 ,1,17140,412425 ,1,17141,382140 ,1,17142,382135 ,1,17143,382115 ,1,17144,412420 ,1,17146,382110 ,1,17147,382105 ,1,17149,382100 ,1,17150,382090 ,1,17151,412410 ,1,17152,412405 ,1,17153,382085 ,1,17154,382085 ,1,17155,382080 ,1,17158,382075 ,1,17160,382080 ,1,17161,382080 ,1,17163,382080 ,1,17166,382080 ,1,17169,382080 ,1,17170,382080 ,1,17171,382080 ,1,17172,382080 ,1,17176,382080 ,1,17177,382080 ,1,17189,382060 ,1,17190,412400 ,1,17206,382055 ,1,17207,382050 ,1,17209,382045 ,1,17210,382040 ,1,17211,382035 ,1,17214,382030 ,1,17215,382030 ,1,17216,382030 ,1,17217,382030 ,1,17218,382030 ,1,17219,382030 ,1,17220,382030 ,1,17221,382030 ,1,17222,382030 ,1,17229,382025 ,1,17230,412395 ,1,17247,412370 ,1,17248,381995 ,1,17249,381990 ,1,17250,381985 ,1,17251,381980 ,1,17252,381970 ,1,17254,381965 ,1,17255,381965 ,1,17258,381960 ,1,17259,381955 ,1,17261,381930 ,1,17268,381925 ,1,17269,381920 ,1,17275,412365 ,1,17283,381915 ,1,17285,381905 ,1,17294,381900 ,1,17297,412360 ,1,17299,381895 ,1,17305,381890 ,1,17307,381890 ,1,17308,381890 ,1,17309,381890 ,1,17311,381865 ,1,17312,381860 ,1,17313,381860 ,1,17314,381860 ,1,17315,381855 ,1,17316,381890 ,1,17326,381850 ,1,17330,381845 ,1,17335,381840 ,1,17336,381835 ,1,17337,381835 ,1,17338,381835 ,1,17339,412355 ,1,17340,381830 ,1,17341,381810 ,1,17342,381805 ,1,17347,381800 ,1,17349,385925 ,1,17351,381795 ,1,17352,381795 ,1,17354,381795 ,1,17360,381790 ,1,17363,381785 ,1,17365,381780 ,1,17367,381775 ,1,17369,381745 ,1,17370,381745 ,1,17371,381745 ,1,17376,381735 ,1,17377,381735 ,1,17379,381735 ,1,17394,381730 ,1,17395,381730 ,1,17396,381730 ,1,17412,381715 ,1,17415,412350 ,1,17420,381710 ,1,17426,412345 ,1,17427,381705 ,1,17432,381700 ,1,17433,381700 ,1,17434,381700 ,1,17438,381670 ,1,17439,381670 ,1,17440,381665 ,1,17441,381660 ,1,17442,381660 ,1,17443,381660 ,1,17444,381655 ,1,17445,381640 ,1,17446,381635 ,1,17447,381635 ,1,17448,381630 ,1,17449,381625 ,1,17450,381585 ,1,17468,381580 ,1,17470,381575 ,1,17471,381570 ,1,17472,381565 ,1,17473,381560 ,1,17474,381560 ,1,17482,381555 ,1,17483,381555 ,1,17485,381550 ,1,17493,381510 ,1,17494,381505 ,1,17495,381500 ,1,17496,381495 ,1,17497,381490 ,1,17498,381475 ,1,17499,381460 ,1,17512,381455 ,1,17519,381450 ,1,17521,381445 ,1,17522,381435 ,1,17526,381430 ,1,17532,381425 ,1,17533,381420 ,1,17536,381400 ,1,17539,381395 ,1,17540,381390 ,1,17551,381385 ,1,17554,381160 ,1,17556,381155 ,1,17558,381145 ,1,17559,381145 ,1,17560,381145 ,1,17563,381140 ,1,17564,381140 ,1,17565,381140 ,1,17566,381140 ,1,17567,381155 ,1,17578,412340 ,1,17591,381135 ,1,17601,381130 ,1,17617,381120 ,1,17618,381115 ,1,17620,385170 ,1,17624,381110 ,1,17630,412335 ,1,17632,381105 ,1,17647,381080 ,1,17648,381080 ,1,17650,381080 ,1,17654,381075 ,1,17657,381070 ,1,17665,381065 ,1,17666,381065 ,1,17667,381065 ,1,17671,381060 ,1,17672,381060 ,1,17695,412315 ,1,17696,412315 ,1,17697,412315 ,1,17698,381055 ,1,17709,381050 ,1,17710,381050 ,1,17739,381025 ,1,17740,381025 ,1,17741,381020 ,1,17742,381020 ,1,17743,381015 ,1,17744,381025 ,1,17745,381025 ,1,17746,381010 ,1,17750,381000 ,1,17751,381000 ,1,17753,380995 ,1,17754,380995 ,1,17755,380990 ,1,17756,380985 ,1,17758,381025 ,1,17759,381025 ,1,17760,381025 ,1,17762,380940 ,1,17763,381025 ,1,17771,412310 ,1,17776,412305 ,1,17780,412300 ,1,17782,412295 ,1,17783,380935 ,1,17785,380930 ,1,17792,380925 ,1,17793,380920 ,1,17797,380915 ,1,17803,380910 ,1,17804,380905 ,1,17806,380895 ,1,17807,380890 ,1,17810,380885 ,1,17811,412290 ,1,17813,412285 ,1,17817,412280 ,1,17819,412255 ,1,17821,412250 ,1,17822,380880 ,1,17827,412245 ,1,17831,412240 ,1,17833,412240 ,1,17834,412240 ,1,17835,412240 ,1,17836,412240 ,1,17837,412240 ,1,17839,412235 ,1,17841,412230 ,1,17843,380870 ,1,17845,412225 ,1,17855,380865 ,1,17856,412220 ,1,17857,412220 ,1,17859,380860 ,1,17860,380855 ,1,17885,380835 ,1,17888,380830 ,1,17890,380825 ,1,17891,380820 ,1,17893,412190 ,1,17895,380815 ,1,17896,380810 ,1,17897,412190 ,1,17899,380805 ,1,17901,412185 ,1,17902,412190 ,1,17904,380800 ,1,17905,412190 ,1,17907,380780 ,1,17908,412190 ,1,17909,380775 ,1,17910,380770 ,1,17911,380765 ,1,17912,380765 ,1,17916,380760 ,1,17917,412190 ,1,17919,380755 ,1,17922,380750 ,1,17923,380745 ,1,17925,412180 ,1,17927,380705 ,1,17928,380700 ,1,17930,380695 ,1,17932,380690 ,1,17933,380680 ,1,17934,412190 ,1,17936,380675 ,1,17938,380670 ,1,17940,380665 ,1,17941,412190 ,1,17942,412190 ,1,17943,412190 ,1,17944,380650 ,1,17946,380645 ,1,17947,412190 ,1,17950,380640 ,1,17952,380640 ,1,17953,380640 ,1,17954,380640 ,1,17955,380640 ,1,17956,380640 ,1,17958,412175 ,1,17960,380635 ,1,17962,380625 ,1,17964,380620 ,1,17966,380615 ,1,17968,412190 ,1,17969,412190 ,1,17970,412190 ,1,17971,412190 ,1,17972,412190 ,1,17974,380610 ,1,17975,380590 ,1,17976,380585 ,1,17978,380580 ,1,17979,380575 ,1,17980,412190 ,1,17982,412170 ,1,17983,412190 ,1,17984,412190 ,1,18006,380570 ,1,18072,380565 ,1,18105,380560 ,1,18122,380555 ,1,18124,380515 ,1,18127,380510 ,1,18128,380510 ,1,18130,380505 ,1,18131,380505 ,1,18132,380505 ,1,18133,380505 ,1,18156,380500 ,1,18157,380500 ,1,18158,380500 ,1,18159,380500 ,1,18160,380500 ,1,18161,380500 ,1,18162,380500 ,1,18163,380500 ,1,18164,380500 ,1,18165,380500 ,1,18166,380500 ,1,18167,380500 ,1,18168,380500 ,1,18169,380500 ,1,18170,380500 ,1,18171,380500 ,1,18172,380500 ,1,18173,380500 ,1,18174,380500 ,1,18175,380500 ,1,18176,380500 ,1,18177,380500 ,1,18178,380500 ,1,18179,380500 ,1,18180,380500 ,1,18181,380500 ,1,18182,380500 ,1,18183,380500 ,1,18184,380500 ,1,18185,380500 ,1,18186,380500 ,1,18187,380500 ,1,18188,380500 ,1,18189,380500 ,1,18190,380500 ,1,18191,380500 ,1,18192,380500 ,1,18193,380500 ,1,18194,380500 ,1,18195,380500 ,1,18196,380500 ,1,18197,380500 ,1,18205,380380 ,1,18225,380375 ,1,18242,380370 ,1,18247,380365 ,1,18248,380365 ,1,18250,380360 ,1,18251,380360 ,1,18252,380360 ,1,18253,380360 ,1,18256,380355 ,1,18271,412690 ,1,18273,412690 ,1,18274,412165 ,1,18275,412160 ,1,18276,380350 ,1,18277,380350 ,1,18278,380350 ,1,18279,380350 ,1,18280,380350 ,1,18281,380350 ,1,18282,380350 ,1,18283,380350 ,1,18284,380350 ,1,18285,380350 ,1,18286,380350 ,1,18287,380350 ,1,18288,380350 ,1,18289,380350 ,1,18290,380350 ,1,18291,380350 ,1,18292,380350 ,1,18293,380350 ,1,18294,380350 ,1,18295,380350 ,1,18296,380350 ,1,18297,380350 ,1,18298,380350 ,1,18299,380350 ,1,18300,380350 ,1,18301,380350 ,1,18302,380350 ,1,18303,380350 ,1,18304,380350 ,1,18305,380350 ,1,18306,380350 ,1,18307,380350 ,1,18308,380350 ,1,18309,380350 ,1,18310,380350 ,1,18311,380350 ,1,18312,380350 ,1,18313,380350 ,1,18314,380350 ,1,18315,380350 ,1,18316,380350 ,1,18317,380350 ,1,18329,380345 ,1,18334,380325 ,1,18340,380320 ,1,18351,380315 ,1,18367,412155 ,1,18368,380310 ,1,18369,380295 ,1,18373,380315 ,1,18374,380315 ,1,18402,380290 ,1,18403,380285 ,1,18404,380290 ,1,18405,380290 ,1,18406,380285 ,1,18407,380290 ,1,18408,380290 ,1,18409,380285 ,1,18410,380290 ,1,18411,380290 ,1,18412,380285 ,1,18413,380290 ,1,18414,380290 ,1,18415,380285 ,1,18416,380290 ,1,18417,380290 ,1,18418,380285 ,1,18419,380290 ,1,18420,380290 ,1,18421,380285 ,1,18422,380290 ,1,18423,380290 ,1,18424,380285 ,1,18425,380290 ,1,18426,380290 ,1,18427,380285 ,1,18428,380290 ,1,18442,380280 ,1,18444,380260 ,1,18448,380255 ,1,18452,380250 ,1,18458,380245 ,1,18459,383115 ,1,18460,380240 ,1,18461,383115 ,1,18462,380235 ,1,18472,380230 ,1,18473,380225 ,1,18474,380225 ,1,18475,380225 ,1,18480,380245 ,1,18481,380245 ,1,18483,380190 ,1,18484,380185 ,1,18485,380185 ,1,18486,380185 ,1,18488,380180 ,1,18489,380175 ,1,18491,380170 ,1,18500,380165 ,1,18505,380160 ,1,18506,380160 ,1,18507,380160 ,1,18508,380160 ,1,18509,412120 ,1,18510,380155 ,1,18511,412120 ,1,18512,412120 ,1,18513,380155 ,1,18514,412120 ,1,18515,412120 ,1,18516,380155 ,1,18517,412120 ,1,18518,412120 ,1,18519,380155 ,1,18520,412120 ,1,18521,412120 ,1,18522,380155 ,1,18523,412120 ,1,18524,412120 ,1,18525,380155 ,1,18526,412120 ,1,18527,412120 ,1,18528,380155 ,1,18529,412120 ,1,18530,412120 ,1,18531,380155 ,1,18532,412120 ,1,18533,412120 ,1,18534,380155 ,1,18535,412120 ,1,18536,380135 ,1,18537,380130 ,1,18538,380135 ,1,18539,380135 ,1,18540,380130 ,1,18541,380135 ,1,18542,380125 ,1,18543,380120 ,1,18544,380125 ,1,18545,380105 ,1,18546,380100 ,1,18547,380105 ,1,18548,380095 ,1,18549,380090 ,1,18550,380095 ,1,18552,412115 ,1,18558,380060 ,1,18559,380055 ,1,18560,380055 ,1,18561,380055 ,1,18562,380055 ,1,18563,380055 ,1,18564,380055 ,1,18565,380055 ,1,18567,380055 ,1,18574,380050 ,1,18575,380050 ,1,18576,380045 ,1,18578,380050 ,1,18580,380050 ,1,18581,380050 ,1,18582,380050 ,1,18624,380040 ,1,18626,380035 ,1,18627,380035 ,1,18633,380030 ,1,18634,380030 ,1,18635,380030 ,1,18636,380030 ,1,18637,380030 ,1,18638,380030 ,1,18639,380030 ,1,18640,380030 ,1,18641,380030 ,1,18642,380030 ,1,18644,380025 ,1,18645,380005 ,1,18648,380000 ,1,18649,379995 ,1,18650,379995 ,1,18651,380030 ,1,18652,380030 ,1,18653,380030 ,1,18654,380030 ,1,18656,380030 ,1,18657,380030 ,1,18658,380030 ,1,18660,380030 ,1,18661,380030 ,1,18662,380030 ,1,18663,379990 ,1,18665,380030 ,1,18666,380030 ,1,18668,380030 ,1,18669,380030 ,1,18671,380030 ,1,18672,380030 ,1,18676,379970 ,1,18677,379965 ,1,18678,412110 ,1,18679,412110 ,1,18680,379960 ,1,18681,412110 ,1,18682,412105 ,1,18684,379955 ,1,18685,412110 ,1,18686,379930 ,1,18687,379925 ,1,18688,379920 ,1,18689,379915 ,1,18690,379900 ,1,18691,379895 ,1,18692,379890 ,1,18693,379885 ,1,18694,379860 ,1,18695,379855 ,1,18696,379850 ,1,18697,379845 ,1,18699,379840 ,1,18700,379840 ,1,18701,379840 ,1,18702,379835 ,1,18704,379830 ,1,18705,379825 ,1,18706,379800 ,1,18707,379795 ,1,18708,379790 ,1,18709,379785 ,1,18710,379780 ,1,18711,379775 ,1,18712,379770 ,1,18713,379765 ,1,18714,412110 ,1,18715,379740 ,1,18716,379735 ,1,18717,379730 ,1,18718,412110 ,1,18719,379725 ,1,18720,379720 ,1,18721,379715 ,1,18722,379710 ,1,18723,379705 ,1,18724,379685 ,1,18725,379680 ,1,18726,379675 ,1,18727,379670 ,1,18728,379660 ,1,18729,379660 ,1,18730,379655 ,1,18731,379650 ,1,18732,379645 ,1,18733,379620 ,1,18734,379615 ,1,18735,379610 ,1,18736,379605 ,1,18737,412110 ,1,18738,379595 ,1,18739,379590 ,1,18740,412110 ,1,18741,379585 ,1,18742,379580 ,1,18743,379565 ,1,18744,379560 ,1,18745,379555 ,1,18746,379550 ,1,18747,379545 ,1,18748,412110 ,1,18749,379540 ,1,18766,379535 ,1,18768,379515 ,1,18776,379510 ,1,18783,379505 ,1,18785,379505 ,1,18796,379500 ,1,18797,379490 ,1,18798,379490 ,1,18799,379490 ,1,18812,379485 ,1,18813,379485 ,1,18815,379485 ,1,18824,379480 ,1,18829,379445 ,1,18830,379445 ,1,18831,379445 ,1,18832,379445 ,1,18835,412100 ,1,18836,412100 ,1,18837,379440 ,1,18838,412095 ,1,18842,412090 ,1,18843,412090 ,1,18845,412085 ,1,18847,412100 ,1,18850,412080 ,1,18851,412080 ,1,18852,412080 ,1,18853,412080 ,1,18854,412080 ,1,18855,412080 ,1,18856,412100 ,1,18859,379440 ,1,18860,379440 ,1,18862,379430 ,1,18863,379425 ,1,18864,379425 ,1,18865,379425 ,1,18888,379420 ,1,18889,379415 ,1,18890,379420 ,1,18891,379420 ,1,18892,379415 ,1,18893,379420 ,1,18894,379420 ,1,18895,379415 ,1,18896,379420 ,1,18897,379420 ,1,18898,379415 ,1,18899,379420 ,1,18900,379420 ,1,18901,379415 ,1,18902,379420 ,1,18903,379420 ,1,18904,379415 ,1,18905,379420 ,1,18906,379420 ,1,18907,379415 ,1,18908,379420 ,1,18909,379420 ,1,18910,379415 ,1,18911,379420 ,1,18912,379420 ,1,18913,379415 ,1,18914,379420 ,1,18915,379385 ,1,18916,379380 ,1,18917,379385 ,1,18918,379385 ,1,18919,379380 ,1,18920,379385 ,1,18921,379375 ,1,18922,379370 ,1,18923,379375 ,1,18924,379365 ,1,18925,379360 ,1,18926,379365 ,1,18927,379355 ,1,18928,379350 ,1,18929,379355 ,1,18957,379325 ,1,18958,379325 ,1,18959,379325 ,1,18960,379325 ,1,18961,379325 ,1,18962,379325 ,1,18963,379325 ,1,18964,379325 ,1,18965,379325 ,1,18966,379325 ,1,18968,379325 ,1,18969,379325 ,1,18972,379320 ,1,18973,379325 ,1,18974,379325 ,1,18975,379315 ,1,18976,379325 ,1,18977,379325 ,1,18978,379325 ,1,18980,412075 ,1,18981,379325 ,1,18982,379325 ,1,18984,379310 ,1,18985,379310 ,1,18986,379310 ,1,18987,379305 ,1,18989,379300 ,1,18990,379295 ,1,18992,379325 ,1,18993,379325 ,1,18995,379325 ,1,18996,379325 ,1,19009,379290 ,1,19010,379270 ,1,19012,379265 ,1,19013,379260 ,1,19015,379255 ,1,19017,379240 ,1,19018,379235 ,1,19019,379230 ,1,19020,379205 ,1,19021,379200 ,1,19023,379195 ,1,19024,379190 ,1,19025,379185 ,1,19026,379180 ,1,19027,379175 ,1,19028,379170 ,1,19029,379150 ,1,19030,379145 ,1,19031,379140 ,1,19032,379135 ,1,19033,379135 ,1,19034,379135 ,1,19035,379125 ,1,19037,379120 ,1,19038,379115 ,1,19039,379110 ,1,19040,379090 ,1,19041,379085 ,1,19042,379080 ,1,19043,379075 ,1,19044,379070 ,1,19045,379065 ,1,19046,379060 ,1,19047,379055 ,1,19048,379015 ,1,19049,379010 ,1,19050,379005 ,1,19051,379000 ,1,19052,378990 ,1,19053,378985 ,1,19054,378980 ,1,19055,378975 ,1,19056,378955 ,1,19057,378950 ,1,19058,378945 ,1,19059,378940 ,1,19060,378925 ,1,19061,378920 ,1,19062,378920 ,1,19063,378915 ,1,19064,378910 ,1,19065,378895 ,1,19066,378890 ,1,19067,378885 ,1,19068,378880 ,1,19069,378875 ,1,19071,378870 ,1,19072,378865 ,1,19074,378860 ,1,19075,378830 ,1,19076,378825 ,1,19077,378820 ,1,19078,378815 ,1,19079,378810 ,1,19080,378805 ,1,19082,378800 ,1,19101,378795 ,1,19104,378775 ,1,19105,378775 ,1,19106,378770 ,1,19107,378775 ,1,19108,378775 ,1,19109,378775 ,1,19110,378775 ,1,19111,378775 ,1,19112,378775 ,1,19113,378775 ,1,19114,378765 ,1,19115,378765 ,1,19119,378760 ,1,19123,378755 ,1,19124,378755 ,1,19129,378750 ,1,19130,378750 ,1,19131,378745 ,1,19132,378750 ,1,19133,378750 ,1,19143,378740 ,1,19144,378740 ,1,19146,378725 ,1,19148,378725 ,1,19149,378765 ,1,19153,378720 ,1,19156,378715 ,1,19157,378765 ,1,19158,378765 ,1,19160,378710 ,1,19161,378695 ,1,19165,378690 ,1,19166,378690 ,1,19168,378685 ,1,19170,378680 ,1,19172,378645 ,1,19174,378640 ,1,19177,378640 ,1,19178,378640 ,1,19179,378635 ,1,19180,378640 ,1,19181,378640 ,1,19182,378640 ,1,19183,378640 ,1,19184,378640 ,1,19185,378640 ,1,19186,378640 ,1,19187,378640 ,1,19188,378640 ,1,19189,378640 ,1,19190,378640 ,1,19191,378630 ,1,19192,378640 ,1,19193,378640 ,1,19194,378620 ,1,19197,378615 ,1,19198,378615 ,1,19199,378615 ,1,19200,378615 ,1,19201,378640 ,1,19204,378610 ,1,19205,378640 ,1,19206,378640 ,1,19207,378640 ,1,19208,378640 ,1,19210,378640 ,1,19211,378640 ,1,19212,378605 ,1,19213,378640 ,1,19214,378640 ,1,19216,378585 ,1,19217,378640 ,1,19218,378640 ,1,19219,378640 ,1,19221,378640 ,1,19222,378580 ,1,19223,378640 ,1,19224,378640 ,1,19227,378575 ,1,19252,378570 ,1,19265,378565 ,1,19266,378565 ,1,19272,378560 ,1,19274,378570 ,1,19275,378570 ,1,19302,378555 ,1,19303,378550 ,1,19304,378540 ,1,19305,378550 ,1,19306,378550 ,1,19307,378540 ,1,19308,378550 ,1,19309,378550 ,1,19310,378540 ,1,19311,378550 ,1,19312,378550 ,1,19313,378540 ,1,19314,378550 ,1,19315,378550 ,1,19316,378540 ,1,19317,378550 ,1,19318,378550 ,1,19319,378540 ,1,19320,378550 ,1,19321,378550 ,1,19322,378540 ,1,19323,378550 ,1,19324,378550 ,1,19325,378540 ,1,19326,378550 ,1,19327,378550 ,1,19328,378540 ,1,19329,378550 ,1,19330,378535 ,1,19331,378530 ,1,19332,378535 ,1,19333,378535 ,1,19334,378530 ,1,19335,378535 ,1,19336,378525 ,1,19337,378515 ,1,19338,378525 ,1,19339,378510 ,1,19340,378505 ,1,19341,378510 ,1,19342,378500 ,1,19343,378480 ,1,19344,378500 ,1,19356,378470 ,1,19365,378465 ,1,19378,378455 ,1,19379,378455 ,1,19407,378450 ,1,19408,378450 ,1,19409,378450 ,1,19410,378450 ,1,19411,378450 ,1,19412,378450 ,1,19413,378450 ,1,19414,378450 ,1,19415,378450 ,1,19416,378450 ,1,19417,378450 ,1,19418,378450 ,1,19419,378450 ,1,19420,378450 ,1,19421,378450 ,1,19422,378450 ,1,19423,378450 ,1,19424,378450 ,1,19425,378450 ,1,19426,378450 ,1,19427,378450 ,1,19428,378450 ,1,19429,378450 ,1,19430,378450 ,1,19431,378450 ,1,19432,378450 ,1,19433,378450 ,1,19434,378450 ,1,19435,378450 ,1,19436,378450 ,1,19437,378450 ,1,19438,378450 ,1,19439,378450 ,1,19440,378450 ,1,19441,378450 ,1,19442,378450 ,1,19443,378450 ,1,19444,378450 ,1,19445,378450 ,1,19446,378450 ,1,19447,378450 ,1,19448,378450 ,1,19471,378445 ,1,19474,378440 ,1,19475,378420 ,1,19476,378375 ,1,19477,378340 ,1,19478,378335 ,1,19479,378325 ,1,19480,378320 ,1,19481,378315 ,1,19482,378310 ,1,19502,378305 ,1,19503,378285 ,1,19529,378280 ,1,19531,412070 ,1,19532,378275 ,1,19533,412070 ,1,19534,412070 ,1,19535,378275 ,1,19536,412070 ,1,19537,412070 ,1,19538,378275 ,1,19539,412070 ,1,19540,412070 ,1,19541,378275 ,1,19542,412070 ,1,19543,412070 ,1,19544,378275 ,1,19545,412070 ,1,19546,412070 ,1,19547,378275 ,1,19548,412070 ,1,19549,412070 ,1,19550,378275 ,1,19551,412070 ,1,19552,412070 ,1,19553,378275 ,1,19554,412070 ,1,19555,412070 ,1,19556,378275 ,1,19557,412070 ,1,19558,412065 ,1,19559,378270 ,1,19560,412065 ,1,19561,412065 ,1,19562,378270 ,1,19563,412065 ,1,19564,378260 ,1,19565,378255 ,1,19566,378260 ,1,19567,412050 ,1,19568,378250 ,1,19569,412050 ,1,19570,378245 ,1,19571,378220 ,1,19572,378245 ,1,19610,378215 ,1,19611,378210 ,1,19615,378205 ,1,19616,378205 ,1,19621,378200 ,1,19622,378200 ,1,19624,378200 ,1,19625,378200 ,1,19635,378195 ,1,19636,378195 ,1,19638,378190 ,1,19640,378160 ,1,19641,378155 ,1,19645,378150 ,1,19648,378145 ,1,19649,378115 ,1,19650,378100 ,1,19652,378095 ,1,19653,378090 ,1,19657,378085 ,1,19658,378085 ,1,19660,378070 ,1,19662,378065 ,1,19664,378055 ,1,19666,412045 ,1,19669,412040 ,1,19670,378015 ,1,19671,378010 ,1,19672,378005 ,1,19673,412040 ,1,19674,412040 ,1,19675,412040 ,1,19676,412040 ,1,19677,412040 ,1,19678,412040 ,1,19679,412040 ,1,19680,378000 ,1,19681,412040 ,1,19682,412040 ,1,19683,377990 ,1,19684,377985 ,1,19685,377980 ,1,19686,377975 ,1,19689,377955 ,1,19690,377950 ,1,19691,412040 ,1,19692,377945 ,1,19693,412040 ,1,19696,377940 ,1,19697,377925 ,1,19698,412040 ,1,19699,412040 ,1,19700,412040 ,1,19702,377920 ,1,19703,412040 ,1,19704,377915 ,1,19705,377910 ,1,19706,377890 ,1,19708,377885 ,1,19709,377885 ,1,19710,377885 ,1,19711,377885 ,1,19712,412035 ,1,19713,377885 ,1,19714,377880 ,1,19715,377885 ,1,19716,377875 ,1,19719,377865 ,1,19734,412035 ,1,19735,412035 ,1,19741,377860 ,1,19743,412005 ,1,19759,377855 ,1,19763,412000 ,1,19764,377850 ,1,19765,412000 ,1,19766,412000 ,1,19767,377850 ,1,19768,412000 ,1,19769,412000 ,1,19770,377850 ,1,19771,412000 ,1,19772,412000 ,1,19773,377850 ,1,19774,412000 ,1,19775,412000 ,1,19776,377850 ,1,19777,412000 ,1,19778,412000 ,1,19779,377850 ,1,19780,412000 ,1,19781,412000 ,1,19782,377850 ,1,19783,412000 ,1,19784,412000 ,1,19785,377850 ,1,19786,412000 ,1,19787,412000 ,1,19788,377850 ,1,19789,412000 ,1,19790,377820 ,1,19791,377815 ,1,19792,377820 ,1,19793,377820 ,1,19794,377815 ,1,19795,377820 ,1,19796,411995 ,1,19797,377810 ,1,19798,411995 ,1,19799,377805 ,1,19800,377800 ,1,19801,377805 ,1,19802,377795 ,1,19803,377790 ,1,19804,377795 ,1,19816,377785 ,1,19817,377785 ,1,19818,377770 ,1,19840,377765 ,1,19845,377760 ,1,19846,377760 ,1,19847,377760 ,1,19848,377760 ,1,19863,377755 ,1,19865,377750 ,1,19867,377745 ,1,19878,377740 ,1,19903,377735 ,1,19948,377705 ,1,19970,377705 ,1,19971,377705 ,1,19998,411990 ,1,19999,411980 ,1,20000,377700 ,1,20001,411980 ,1,20002,411980 ,1,20003,377700 ,1,20004,411980 ,1,20005,411980 ,1,20006,377700 ,1,20007,411980 ,1,20008,411980 ,1,20009,377700 ,1,20010,411980 ,1,20011,411980 ,1,20012,377700 ,1,20013,411980 ,1,20014,411980 ,1,20015,377700 ,1,20016,411980 ,1,20017,411980 ,1,20018,377700 ,1,20019,411980 ,1,20020,411980 ,1,20021,377700 ,1,20022,411980 ,1,20023,411980 ,1,20024,377700 ,1,20025,411980 ,1,20026,377695 ,1,20027,377690 ,1,20028,377695 ,1,20029,377695 ,1,20030,377690 ,1,20031,377695 ,1,20032,411975 ,1,20033,377680 ,1,20034,411975 ,1,20035,411970 ,1,20036,377675 ,1,20037,411970 ,1,20038,411965 ,1,20039,377670 ,1,20040,411965 ,1,20053,377665 ,1,20054,377640 ,1,20055,377640 ,1,20059,411930 ,1,20061,377635 ,1,20069,411925 ,1,20076,380510 ,1,20078,380510 ,1,20085,377630 ,1,20089,411920 ,1,20090,377625 ,1,20091,377625 ,1,20092,377625 ,1,20094,377620 ,1,20097,377615 ,1,20105,377610 ,1,20106,377610 ,1,20108,377610 ,1,20117,377605 ,1,20122,377590 ,1,20123,377585 ,1,20124,377585 ,1,20125,377585 ,1,20147,377580 ,1,20156,377575 ,1,20157,377555 ,1,20166,377550 ,1,20181,377545 ,1,20189,411915 ,1,20196,380365 ,1,20198,380365 ,1,20209,377505 ,1,20210,377500 ,1,20211,377500 ,1,20212,377500 ,1,20216,377495 ,1,20218,377490 ,1,20220,377485 ,1,20225,377480 ,1,20226,377480 ,1,20228,377480 ,1,20237,377475 ,1,20243,377470 ,1,20244,377470 ,1,20245,377470 ,1,20250,377460 ,1,20251,377455 ,1,20252,377450 ,1,20253,377450 ,1,20254,377450 ,1,20255,377450 ,1,20256,377450 ,1,20257,377450 ,1,20258,377445 ,1,20259,377445 ,1,20261,377440 ,1,20262,377440 ,1,20265,377435 ,1,20266,377440 ,1,20267,377440 ,1,20268,377430 ,1,20269,377425 ,1,20270,377450 ,1,20271,377450 ,1,20273,411905 ,1,20274,411900 ,1,20275,411895 ,1,20277,377395 ,1,20278,377395 ,1,20279,377395 ,1,20280,377390 ,1,20282,377385 ,1,20283,377385 ,1,20285,377450 ,1,20286,377450 ,1,20288,377450 ,1,20289,377450 ,1,20290,377380 ,1,20291,377375 ,1,20306,377370 ,1,20309,377365 ,1,20310,377360 ,1,20322,380315 ,1,20324,380315 ,1,20355,377330 ,1,20356,377325 ,1,20357,377320 ,1,20358,377315 ,1,20359,377310 ,1,20360,377305 ,1,20370,377300 ,1,20371,377295 ,1,20372,377300 ,1,20373,377300 ,1,20374,377300 ,1,20375,377300 ,1,20376,377300 ,1,20377,377300 ,1,20378,377300 ,1,20379,377300 ,1,20381,377300 ,1,20382,377300 ,1,20385,377265 ,1,20386,377300 ,1,20387,377300 ,1,20388,377300 ,1,20389,377300 ,1,20390,377300 ,1,20391,377300 ,1,20393,377300 ,1,20394,377300 ,1,20395,377300 ,1,20397,377300 ,1,20398,377300 ,1,20399,377300 ,1,20400,377300 ,1,20402,377300 ,1,20403,377300 ,1,20405,377300 ,1,20406,377300 ,1,20408,377300 ,1,20409,377300 ,1,20412,377260 ,1,20426,377255 ,1,20429,380245 ,1,20431,380245 ,1,20436,377250 ,1,20437,377250 ,1,20438,377240 ,1,20440,377235 ,1,20441,377230 ,1,20442,377225 ,1,20443,377210 ,1,20458,377200 ,1,20459,377195 ,1,20461,377200 ,1,20462,377235 ,1,20463,377235 ,1,20465,377190 ,1,20466,377190 ,1,20467,377190 ,1,20468,377190 ,1,20473,377185 ,1,20476,377180 ,1,20477,377175 ,1,20478,377180 ,1,20491,377150 ,1,20492,377145 ,1,20493,377150 ,1,20494,377150 ,1,20495,377145 ,1,20496,377150 ,1,20497,377150 ,1,20498,377145 ,1,20499,377150 ,1,20500,377150 ,1,20501,377145 ,1,20502,377150 ,1,20503,377150 ,1,20504,377145 ,1,20505,377150 ,1,20506,377150 ,1,20507,377145 ,1,20508,377150 ,1,20509,377150 ,1,20510,377145 ,1,20511,377150 ,1,20512,377150 ,1,20513,377145 ,1,20514,377150 ,1,20515,377150 ,1,20516,377145 ,1,20517,377150 ,1,20518,377140 ,1,20519,377135 ,1,20520,377140 ,1,20521,377140 ,1,20522,377135 ,1,20523,377140 ,1,20524,377130 ,1,20525,377125 ,1,20526,377130 ,1,20527,377120 ,1,20528,377115 ,1,20529,377120 ,1,20530,377080 ,1,20531,377075 ,1,20532,377080 ,1,20538,377070 ,1,20539,377065 ,1,20540,377060 ,1,20542,377055 ,1,20549,377050 ,1,20550,377045 ,1,20566,377025 ,1,20569,377020 ,1,20586,377015 ,1,20588,377010 ,1,20594,377005 ,1,20595,377000 ,1,20597,376995 ,1,20599,376990 ,1,20600,376970 ,1,20602,376965 ,1,20603,376960 ,1,20604,376955 ,1,20605,376950 ,1,20606,376950 ,1,20607,376950 ,1,20608,376950 ,1,20609,376950 ,1,20610,376950 ,1,20611,376950 ,1,20612,376950 ,1,20614,376945 ,1,20615,376945 ,1,20616,376940 ,1,20617,376935 ,1,20618,376890 ,1,20619,376945 ,1,20620,376945 ,1,20621,376950 ,1,20622,376950 ,1,20623,376950 ,1,20624,376950 ,1,20626,411890 ,1,20627,376950 ,1,20628,376950 ,1,20630,376885 ,1,20631,376885 ,1,20632,376885 ,1,20633,376885 ,1,20635,376880 ,1,20636,376875 ,1,20638,376950 ,1,20639,376950 ,1,20641,376950 ,1,20642,376950 ,1,20645,411865 ,1,20646,376870 ,1,20647,411865 ,1,20648,411865 ,1,20649,376870 ,1,20650,411865 ,1,20651,411865 ,1,20652,376870 ,1,20653,411865 ,1,20654,411865 ,1,20655,376870 ,1,20656,411865 ,1,20657,411865 ,1,20658,376870 ,1,20659,411865 ,1,20660,411865 ,1,20661,376870 ,1,20662,411865 ,1,20663,411865 ,1,20664,376870 ,1,20665,411865 ,1,20666,411865 ,1,20667,376870 ,1,20668,411865 ,1,20669,411865 ,1,20670,376870 ,1,20671,411865 ,1,20672,411860 ,1,20673,376865 ,1,20674,411860 ,1,20675,411860 ,1,20676,376865 ,1,20677,411860 ,1,20678,376860 ,1,20679,376855 ,1,20680,376860 ,1,20681,376840 ,1,20682,376835 ,1,20683,376840 ,1,20684,411855 ,1,20685,376830 ,1,20686,411855 ,1,20687,376825 ,1,20709,411850 ,1,20710,376820 ,1,20720,376815 ,1,20738,376810 ,1,20739,376805 ,1,20740,376810 ,1,20741,376810 ,1,20742,376805 ,1,20743,376810 ,1,20744,376810 ,1,20745,376805 ,1,20746,376810 ,1,20747,376810 ,1,20748,376805 ,1,20749,376810 ,1,20750,376810 ,1,20751,376805 ,1,20752,376810 ,1,20753,376810 ,1,20754,376805 ,1,20755,376810 ,1,20756,376810 ,1,20757,376805 ,1,20758,376810 ,1,20759,376810 ,1,20760,376805 ,1,20761,376810 ,1,20762,376810 ,1,20763,376805 ,1,20764,376810 ,1,20765,376775 ,1,20766,376770 ,1,20767,376775 ,1,20768,376775 ,1,20769,376770 ,1,20770,376775 ,1,20771,376765 ,1,20772,376760 ,1,20773,376765 ,1,20774,376750 ,1,20775,376745 ,1,20776,376750 ,1,20777,376740 ,1,20778,376735 ,1,20779,376740 ,1,20791,376715 ,1,20808,379440 ,1,20810,379440 ,1,20811,376710 ,1,20812,376710 ,1,20813,376710 ,1,20816,376705 ,1,20817,376705 ,1,20818,376705 ,1,20819,376705 ,1,20820,376700 ,1,20837,376685 ,1,20838,376680 ,1,20840,376685 ,1,20848,376675 ,1,20852,376660 ,1,20853,376660 ,1,20855,376655 ,1,20856,376650 ,1,20857,376655 ,1,20858,376660 ,1,20859,376660 ,1,20861,376660 ,1,20862,376660 ,1,20871,376645 ,1,20872,376640 ,1,20873,376640 ,1,20875,376640 ,1,20876,376635 ,1,20877,376640 ,1,20878,376640 ,1,20882,376630 ,1,20885,376640 ,1,20886,376640 ,1,20887,376640 ,1,20888,376625 ,1,20889,376590 ,1,20890,376640 ,1,20894,376640 ,1,20895,376640 ,1,20897,376640 ,1,20899,376640 ,1,20901,376640 ,1,20903,376640 ,1,20906,376640 ,1,20907,376640 ,1,20908,376640 ,1,20909,376640 ,1,20910,376640 ,1,20911,376640 ,1,20912,376640 ,1,20913,376640 ,1,20914,376640 ,1,20915,376640 ,1,20916,376640 ,1,20917,376640 ,1,20918,376640 ,1,20919,376640 ,1,20920,376640 ,1,20921,376640 ,1,20922,376640 ,1,20923,376640 ,1,20926,376640 ,1,20927,376640 ,1,20928,376640 ,1,20929,376640 ,1,20930,376640 ,1,20933,376640 ,1,20934,376640 ,1,20935,376640 ,1,20936,376640 ,1,20937,376640 ,1,20938,376585 ,1,20939,376640 ,1,20940,376580 ,1,20941,376640 ,1,20942,376640 ,1,20943,376640 ,1,20945,376640 ,1,20946,376640 ,1,20947,376640 ,1,20948,376640 ,1,20950,376640 ,1,20951,376640 ,1,20952,376640 ,1,20953,376640 ,1,20956,376640 ,1,20960,376575 ,1,20961,376575 ,1,20962,376565 ,1,20965,376560 ,1,20966,376555 ,1,20967,376550 ,1,20982,376540 ,1,20983,376535 ,1,20984,376530 ,1,20985,376530 ,1,20986,376530 ,1,20987,376530 ,1,20988,376530 ,1,20989,376530 ,1,20990,376530 ,1,20991,376530 ,1,20992,376525 ,1,20993,376515 ,1,20994,376515 ,1,20997,376510 ,1,20998,376515 ,1,20999,376515 ,1,21000,376530 ,1,21001,376530 ,1,21002,376530 ,1,21003,376530 ,1,21005,376505 ,1,21006,376530 ,1,21007,376530 ,1,21009,376500 ,1,21010,376500 ,1,21011,376500 ,1,21012,376500 ,1,21014,376485 ,1,21015,376480 ,1,21017,376530 ,1,21018,376530 ,1,21020,376530 ,1,21021,376530 ,1,21025,376475 ,1,21046,376470 ,1,21054,376460 ,1,21055,376455 ,1,21063,376450 ,1,21064,376445 ,1,21066,376420 ,1,21068,376415 ,1,21078,376410 ,1,21079,376405 ,1,21099,376400 ,1,21110,376395 ,1,21112,376390 ,1,21116,376385 ,1,21119,376055 ,1,21120,376055 ,1,21121,376055 ,1,21131,376050 ,1,21132,376050 ,1,21133,376050 ,1,21135,376050 ,1,21136,376050 ,1,21137,376050 ,1,21138,376050 ,1,21139,376050 ,1,21140,376050 ,1,21142,376050 ,1,21143,376050 ,1,21184,376045 ,1,21191,376040 ,1,21193,376035 ,1,21206,376030 ,1,21223,378570 ,1,21225,378570 ,1,21252,376025 ,1,21253,376025 ,1,21255,376025 ,1,21263,376020 ,1,21269,375985 ,1,21270,375985 ,1,21271,375985 ,1,21272,375985 ,1,21310,375980 ,1,21327,378455 ,1,21329,378455 ,1,21338,375975 ,1,21339,375975 ,1,21340,375975 ,1,21342,375975 ,1,21344,375975 ,1,21345,375975 ,1,21346,375975 ,1,21348,375970 ,1,21356,375965 ,1,21357,375965 ,1,21359,375965 ,1,21373,375960 ,1,21374,375960 ,1,21375,375960 ,1,21376,375960 ,1,21397,375955 ,1,21398,375955 ,1,21399,375955 ,1,21400,375955 ,1,21401,375955 ,1,21402,375955 ,1,21403,375955 ,1,21404,375950 ,1,21405,375955 ,1,21406,375955 ,1,21408,375955 ,1,21409,375955 ,1,21412,375940 ,1,21413,375955 ,1,21414,375955 ,1,21415,375955 ,1,21416,375955 ,1,21417,375955 ,1,21418,375955 ,1,21420,375935 ,1,21421,375955 ,1,21422,375955 ,1,21424,375930 ,1,21425,375930 ,1,21426,375930 ,1,21427,375930 ,1,21429,375955 ,1,21430,375955 ,1,21432,375955 ,1,21433,375955 ,1,21434,375925 ,1,21435,375955 ,1,21436,375955 ,1,21451,375915 ,1,21453,375915 ,1,21462,375910 ,1,21470,375845 ,1,21480,375840 ,1,21481,375840 ,1,21483,375840 ,1,21498,375835 ,1,21499,375835 ,1,21500,375835 ,1,21501,375830 ,1,21502,375830 ,1,21503,375830 ,1,21504,375830 ,1,21505,375830 ,1,21506,375830 ,1,21507,375830 ,1,21508,375830 ,1,21509,375830 ,1,21510,375830 ,1,21512,375830 ,1,21513,375830 ,1,21516,375825 ,1,21517,375830 ,1,21518,375830 ,1,21519,375830 ,1,21520,375830 ,1,21521,375830 ,1,21522,375830 ,1,21524,375820 ,1,21525,375830 ,1,21526,375830 ,1,21528,375815 ,1,21529,375815 ,1,21530,375815 ,1,21531,375815 ,1,21533,375830 ,1,21534,375830 ,1,21536,375830 ,1,21537,375830 ,1,21539,375830 ,1,21540,375830 ,1,21578,375790 ,1,21579,375785 ,1,21584,375780 ,1,21592,375775 ,1,21602,375770 ,1,21603,375765 ,1,21625,375760 ,1,21626,375755 ,1,21627,375735 ,1,21628,375725 ,1,21629,375715 ,1,21630,375715 ,1,21631,375705 ,1,21632,375700 ,1,21633,375660 ,1,21634,375660 ,1,21636,375645 ,1,21637,375645 ,1,21640,375640 ,1,21641,375645 ,1,21642,375645 ,1,21643,375610 ,1,21644,375595 ,1,21645,375590 ,1,21646,375575 ,1,21648,375560 ,1,21649,375550 ,1,21650,375525 ,1,21652,375505 ,1,21653,375505 ,1,21654,375505 ,1,21655,375495 ,1,21657,375470 ,1,21658,375415 ,1,21660,375400 ,1,21661,375375 ,1,21663,375370 ,1,21664,375365 ,1,21666,411840 ,1,21683,412035 ,1,21685,412035 ,1,21708,375360 ,1,21712,375350 ,1,21713,375350 ,1,21715,375350 ,1,21717,375345 ,1,21723,375340 ,1,21729,411835 ,1,21730,411835 ,1,21731,411835 ,1,21732,411835 ,1,21741,411830 ,1,21745,375335 ,1,21746,375335 ,1,21751,375310 ,1,21752,375310 ,1,21754,375310 ,1,21755,375310 ,1,21765,375305 ,1,21766,375305 ,1,21768,375300 ,1,21770,375300 ,1,21771,411825 ,1,21775,375295 ,1,21778,375290 ,1,21779,411825 ,1,21780,411825 ,1,21782,411825 ,1,21783,375285 ,1,21787,375280 ,1,21788,375280 ,1,21790,375275 ,1,21792,375245 ,1,21794,375240 ,1,21796,375240 ,1,21799,375240 ,1,21800,375240 ,1,21801,375240 ,1,21802,375240 ,1,21803,375240 ,1,21804,375240 ,1,21805,375240 ,1,21806,375240 ,1,21807,375240 ,1,21808,375240 ,1,21809,375240 ,1,21810,375240 ,1,21811,375240 ,1,21812,375240 ,1,21813,375240 ,1,21814,375240 ,1,21815,375240 ,1,21816,375240 ,1,21819,375240 ,1,21820,375240 ,1,21821,375240 ,1,21822,375240 ,1,21823,375240 ,1,21826,375240 ,1,21827,375240 ,1,21828,375240 ,1,21829,375240 ,1,21830,375240 ,1,21832,375240 ,1,21833,375240 ,1,21834,375240 ,1,21835,375240 ,1,21836,375240 ,1,21838,375240 ,1,21839,375240 ,1,21840,375240 ,1,21841,375240 ,1,21843,375240 ,1,21844,375240 ,1,21845,375240 ,1,21846,375240 ,1,21849,375235 ,1,21857,375230 ,1,21858,375230 ,1,21859,375230 ,1,21860,375230 ,1,21861,375220 ,1,21862,375160 ,1,21863,375230 ,1,21864,375230 ,1,21865,375230 ,1,21866,375230 ,1,21868,375155 ,1,21869,375155 ,1,21872,411780 ,1,21873,375155 ,1,21874,375155 ,1,21875,375230 ,1,21876,375230 ,1,21877,375230 ,1,21878,375230 ,1,21880,375150 ,1,21881,375230 ,1,21882,375230 ,1,21884,375145 ,1,21885,375145 ,1,21886,375140 ,1,21887,375145 ,1,21889,375230 ,1,21890,375230 ,1,21892,375230 ,1,21893,375230 ,1,21894,375135 ,1,21895,375230 ,1,21896,375230 ,1,21902,411775 ,1,21919,377705 ,1,21921,377705 ,1,21948,375130 ,1,21949,375130 ,1,21951,375130 ,1,21955,375115 ,1,21956,375110 ,1,21958,375105 ,1,21965,411770 ,1,21966,411770 ,1,21967,411770 ,1,21968,411770 ,1,22053,375100 ,1,22093,411765 ,1,22094,411765 ,1,22095,411765 ,1,22096,411765 ,1,22097,411765 ,1,22098,411765 ,1,22099,411765 ,1,22100,411765 ,1,22101,411765 ,1,22102,411765 ,1,22104,411765 ,1,22105,411765 ,1,22108,375095 ,1,22109,411765 ,1,22110,411765 ,1,22111,411765 ,1,22112,411765 ,1,22113,411765 ,1,22114,411765 ,1,22116,375090 ,1,22117,411765 ,1,22118,411765 ,1,22120,375085 ,1,22121,375085 ,1,22122,375085 ,1,22123,375085 ,1,22125,411765 ,1,22126,411765 ,1,22128,411765 ,1,22129,411765 ,1,22131,411765 ,1,22132,411765 ,1,22135,375080 ,1,22141,375055 ,1,22142,375055 ,1,22143,375055 ,1,22144,375055 ,1,22145,375055 ,1,22147,375045 ,1,22148,411760 ,1,22149,411760 ,1,22151,375035 ,1,22152,375025 ,1,22153,375025 ,1,22154,375015 ,1,22155,375015 ,1,22156,375015 ,1,22157,375015 ,1,22158,375005 ,1,22159,374995 ,1,22160,411755 ,1,22182,374970 ,1,22183,374970 ,1,22199,374960 ,1,22202,374955 ,1,22203,374945 ,1,22211,374930 ,1,22212,374920 ,1,22213,374930 ,1,22214,374930 ,1,22215,374920 ,1,22216,374930 ,1,22217,374930 ,1,22218,374920 ,1,22219,374930 ,1,22220,374930 ,1,22221,374920 ,1,22222,374930 ,1,22223,374930 ,1,22224,374920 ,1,22225,374930 ,1,22226,374930 ,1,22227,374920 ,1,22228,374930 ,1,22229,374930 ,1,22230,374920 ,1,22231,374930 ,1,22232,374930 ,1,22233,374920 ,1,22234,374930 ,1,22235,374930 ,1,22236,374920 ,1,22237,374930 ,1,22238,374910 ,1,22239,374900 ,1,22240,374910 ,1,22241,374910 ,1,22242,374900 ,1,22243,374910 ,1,22244,411750 ,1,22245,374855 ,1,22246,411750 ,1,22247,411745 ,1,22248,374845 ,1,22249,411745 ,1,22250,411730 ,1,22251,374835 ,1,22252,411730 ,1,22276,411725 ,1,22277,411725 ,1,22307,411720 ,1,22310,411720 ,1,22312,411720 ,1,22313,411720 ,1,22315,411720 ,1,22317,411720 ,1,22318,411720 ,1,22319,411720 ,1,22321,411720 ,1,22323,411720 ,1,22324,411720 ,1,22325,374825 ,1,22326,411720 ,1,22327,411720 ,1,22329,411720 ,1,22330,411720 ,1,22331,411720 ,1,22332,411720 ,1,22333,374810 ,1,22334,374810 ,1,22338,374800 ,1,22339,411720 ,1,22341,411720 ,1,22344,411720 ,1,22345,411720 ,1,22347,411720 ,1,22349,411720 ,1,22350,411720 ,1,22352,374795 ,1,22354,411720 ,1,22355,411720 ,1,22356,411720 ,1,22358,411720 ,1,22360,411720 ,1,22362,411720 ,1,22363,411720 ,1,22364,411720 ,1,22365,411720 ,1,22366,411720 ,1,22368,411720 ,1,22369,411720 ,1,22372,411720 ,1,22374,411720 ,1,22375,411720 ,1,22376,411720 ,1,22377,411720 ,1,22378,411720 ,1,22380,411720 ,1,22382,411720 ,1,22384,411720 ,1,22386,411720 ,1,22388,374765 ,1,22390,411720 ,1,22391,411720 ,1,22392,411720 ,1,22393,411720 ,1,22394,411720 ,1,22396,411720 ,1,22397,411720 ,1,22398,411720 ,1,22400,411720 ,1,22401,411720 ,1,22402,411720 ,1,22404,411720 ,1,22405,411720 ,1,22406,411720 ,1,22411,377235 ,1,22413,377235 ,1,22417,374755 ,1,22418,374755 ,1,22419,374755 ,1,22420,374745 ,1,22421,374755 ,1,22423,374735 ,1,22424,374735 ,1,22425,374735 ,1,22427,374735 ,1,22428,374735 ,1,22429,374735 ,1,22430,374735 ,1,22431,374735 ,1,22432,374735 ,1,22433,374735 ,1,22434,374735 ,1,22435,374735 ,1,22445,374710 ,1,22446,374710 ,1,22548,374695 ,1,22564,374690 ,1,22565,374675 ,1,22567,374675 ,1,22575,374645 ,1,22580,374635 ,1,22586,411715 ,1,22587,374625 ,1,22594,374615 ,1,22595,374615 ,1,22597,374615 ,1,22600,374595 ,1,22611,374590 ,1,22612,374590 ,1,22613,374590 ,1,22614,374590 ,1,22615,374580 ,1,22616,374570 ,1,22617,374580 ,1,22618,374580 ,1,22619,374570 ,1,22620,374580 ,1,22621,374580 ,1,22622,374570 ,1,22623,374580 ,1,22624,374580 ,1,22625,374570 ,1,22626,374580 ,1,22627,374580 ,1,22628,374570 ,1,22629,374580 ,1,22630,374580 ,1,22631,374570 ,1,22632,374580 ,1,22633,374580 ,1,22634,374570 ,1,22635,374580 ,1,22636,374580 ,1,22637,374570 ,1,22638,374580 ,1,22639,374580 ,1,22640,374570 ,1,22641,374580 ,1,22642,374545 ,1,22643,374540 ,1,22644,374545 ,1,22645,374545 ,1,22646,374540 ,1,22647,374545 ,1,22648,374530 ,1,22649,374520 ,1,22650,374530 ,1,22651,374505 ,1,22652,374490 ,1,22653,374505 ,1,22654,374485 ,1,22655,374475 ,1,22656,374485 ,1,22658,374435 ,1,22660,374435 ,1,22673,374425 ,1,22687,374410 ,1,22688,374410 ,1,22690,374410 ,1,22723,374405 ,1,22726,374390 ,1,22727,374385 ,1,22730,374375 ,1,22739,374365 ,1,22740,374365 ,1,22741,374365 ,1,22742,374365 ,1,22743,374365 ,1,22744,374365 ,1,22745,374365 ,1,22746,374365 ,1,22747,374365 ,1,22748,374365 ,1,22750,374365 ,1,22751,374365 ,1,22752,374375 ,1,22753,374375 ,1,22754,374325 ,1,22755,374365 ,1,22756,374365 ,1,22757,374365 ,1,22758,374365 ,1,22759,374365 ,1,22760,374365 ,1,22762,374290 ,1,22763,374365 ,1,22764,374365 ,1,22766,374280 ,1,22767,374280 ,1,22768,374275 ,1,22769,374260 ,1,22771,374365 ,1,22772,374365 ,1,22774,374365 ,1,22775,374365 ,1,22777,374365 ,1,22778,374365 ,1,22781,411710 ,1,22782,374250 ,1,22783,411710 ,1,22784,411710 ,1,22785,374250 ,1,22786,411710 ,1,22787,411710 ,1,22788,374250 ,1,22789,411710 ,1,22790,411710 ,1,22791,374250 ,1,22792,411710 ,1,22793,411710 ,1,22794,374250 ,1,22795,411710 ,1,22796,411710 ,1,22797,374250 ,1,22798,411710 ,1,22799,411710 ,1,22800,374250 ,1,22801,411710 ,1,22802,411710 ,1,22803,374250 ,1,22804,411710 ,1,22805,411710 ,1,22806,374250 ,1,22807,411710 ,1,22808,374225 ,1,22809,374220 ,1,22810,374225 ,1,22811,374225 ,1,22812,374220 ,1,22813,374225 ,1,22814,374210 ,1,22815,374200 ,1,22816,374210 ,1,22817,374180 ,1,22818,374175 ,1,22819,374180 ,1,22820,374165 ,1,22821,374155 ,1,22822,374165 ,1,22832,374130 ,1,22833,374130 ,1,22834,374130 ,1,22835,374130 ,1,22836,374130 ,1,22837,374130 ,1,22838,374130 ,1,22839,374130 ,1,22840,374130 ,1,22841,374130 ,1,22843,374130 ,1,22844,374130 ,1,22847,374120 ,1,22848,374130 ,1,22849,374130 ,1,22850,374110 ,1,22851,374130 ,1,22852,374130 ,1,22853,374130 ,1,22855,374130 ,1,22856,374130 ,1,22857,374130 ,1,22859,374130 ,1,22860,374130 ,1,22861,374130 ,1,22862,374100 ,1,22864,374130 ,1,22865,374130 ,1,22867,374130 ,1,22868,374130 ,1,22869,374090 ,1,22870,374130 ,1,22871,374130 ,1,22872,374080 ,1,22873,374080 ,1,22874,374070 ,1,22875,374080 ,1,22876,374080 ,1,22877,374080 ,1,22878,374080 ,1,22879,374080 ,1,22880,374080 ,1,22881,374080 ,1,22882,411705 ,1,22883,411705 ,1,22887,374060 ,1,22891,374015 ,1,22892,374015 ,1,22897,374005 ,1,22898,374005 ,1,22900,374005 ,1,22901,374005 ,1,22911,373995 ,1,22912,373995 ,1,22914,373985 ,1,22916,373985 ,1,22917,373975 ,1,22921,373965 ,1,22924,373955 ,1,22925,373975 ,1,22926,373975 ,1,22928,373945 ,1,22929,373905 ,1,22933,373895 ,1,22934,373895 ,1,22936,373885 ,1,22938,373875 ,1,22940,373860 ,1,22942,373850 ,1,22945,373850 ,1,22946,373850 ,1,22947,373850 ,1,22948,373850 ,1,22949,373850 ,1,22950,373850 ,1,22951,373850 ,1,22952,373850 ,1,22953,373850 ,1,22954,373850 ,1,22955,373850 ,1,22956,373850 ,1,22957,373850 ,1,22958,373850 ,1,22959,373840 ,1,22960,373850 ,1,22961,373850 ,1,22962,373850 ,1,22965,373830 ,1,22966,373830 ,1,22967,373830 ,1,22968,373830 ,1,22969,373850 ,1,22972,373815 ,1,22973,373850 ,1,22974,373850 ,1,22975,373850 ,1,22976,373850 ,1,22978,373850 ,1,22979,373850 ,1,22980,373805 ,1,22981,373850 ,1,22982,373850 ,1,22984,373795 ,1,22985,373850 ,1,22986,373850 ,1,22987,373850 ,1,22989,373850 ,1,22990,373850 ,1,22991,373850 ,1,22992,373850 ,1,22995,373785 ,1,22998,373765 ,1,23001,373765 ,1,23003,373765 ,1,23004,373765 ,1,23006,373765 ,1,23008,373765 ,1,23009,373765 ,1,23010,373765 ,1,23012,373765 ,1,23014,373765 ,1,23015,373765 ,1,23017,373765 ,1,23018,373765 ,1,23020,373765 ,1,23021,373765 ,1,23022,373765 ,1,23023,373765 ,1,23024,373765 ,1,23025,373765 ,1,23029,373765 ,1,23030,373765 ,1,23032,373765 ,1,23033,373755 ,1,23034,373745 ,1,23035,373765 ,1,23036,373765 ,1,23038,373765 ,1,23040,373765 ,1,23041,373765 ,1,23043,373765 ,1,23045,373765 ,1,23046,373765 ,1,23047,373765 ,1,23049,373765 ,1,23051,373765 ,1,23053,373765 ,1,23054,373765 ,1,23055,373765 ,1,23056,373765 ,1,23057,373765 ,1,23059,373765 ,1,23060,373765 ,1,23063,373765 ,1,23065,373765 ,1,23066,373765 ,1,23067,373765 ,1,23068,373765 ,1,23069,373765 ,1,23071,373765 ,1,23073,373765 ,1,23075,373765 ,1,23077,373765 ,1,23079,373765 ,1,23081,373765 ,1,23082,373765 ,1,23083,373765 ,1,23084,373765 ,1,23085,373765 ,1,23087,373765 ,1,23088,373765 ,1,23089,373765 ,1,23091,373765 ,1,23092,373765 ,1,23093,373765 ,1,23095,373765 ,1,23096,373765 ,1,23097,373765 ,1,23099,373735 ,1,23108,373710 ,1,23109,373700 ,1,23110,373690 ,1,23111,373680 ,1,23112,373670 ,1,23114,373655 ,1,23115,373645 ,1,23116,373645 ,1,23118,373635 ,1,23119,373600 ,1,23120,373590 ,1,23121,373575 ,1,23122,373570 ,1,23123,373560 ,1,23124,373575 ,1,23125,373550 ,1,23126,373535 ,1,23127,373525 ,1,23130,411700 ,1,23131,411700 ,1,23132,411700 ,1,23133,411700 ,1,23134,411700 ,1,23135,411700 ,1,23136,411700 ,1,23137,411700 ,1,23138,411700 ,1,23139,411700 ,1,23140,411700 ,1,23141,411700 ,1,23145,373510 ,1,23149,373500 ,1,23150,373500 ,1,23155,373490 ,1,23156,373490 ,1,23158,373490 ,1,23159,373490 ,1,23169,373480 ,1,23170,373480 ,1,23172,373465 ,1,23174,373465 ,1,23175,411700 ,1,23179,373455 ,1,23182,373450 ,1,23183,411700 ,1,23184,411700 ,1,23186,411700 ,1,23187,373440 ,1,23191,373395 ,1,23192,373395 ,1,23194,373390 ,1,23196,373380 ,1,23197,373365 ,1,23198,373355 ,1,23200,373355 ,1,23203,373355 ,1,23204,373355 ,1,23205,373355 ,1,23206,373355 ,1,23207,373355 ,1,23208,373355 ,1,23209,373355 ,1,23210,373355 ,1,23211,373355 ,1,23212,373355 ,1,23213,373355 ,1,23214,373355 ,1,23215,373355 ,1,23216,373355 ,1,23217,373355 ,1,23218,373355 ,1,23219,373355 ,1,23220,373355 ,1,23223,373355 ,1,23224,373355 ,1,23225,373355 ,1,23226,373355 ,1,23227,373355 ,1,23229,373340 ,1,23230,373355 ,1,23231,373355 ,1,23232,373355 ,1,23233,373355 ,1,23234,373355 ,1,23236,373355 ,1,23237,373355 ,1,23238,373355 ,1,23239,373355 ,1,23240,373355 ,1,23242,373355 ,1,23243,373355 ,1,23244,373355 ,1,23245,373355 ,1,23247,373355 ,1,23248,373355 ,1,23249,373355 ,1,23250,373355 ,1,23253,373330 ,1,23452,373320 ,1,23469,373305 ,1,23474,373295 ,1,23475,373280 ,1,23477,373275 ,1,23478,373275 ,1,23479,373275 ,1,23480,373275 ,1,23503,373260 ,1,23504,373250 ,1,23505,373235 ,1,23506,411695 ,1,23507,411655 ,1,23508,411650 ,1,23509,373225 ,1,23510,373190 ,1,23511,373180 ,1,23512,373175 ,1,23513,373160 ,1,23514,373155 ,1,23515,373140 ,1,23516,373130 ,1,23517,373120 ,1,23518,373095 ,1,23519,373085 ,1,23520,373080 ,1,23521,373070 ,1,23522,373055 ,1,23523,373045 ,1,23524,411645 ,1,23525,373035 ,1,23526,373025 ,1,23527,373005 ,1,23528,372990 ,1,23529,372980 ,1,23530,372970 ,1,23531,372950 ,1,23532,372940 ,1,23533,372930 ,1,23534,372920 ,1,23535,372885 ,1,23536,372875 ,1,23537,372870 ,1,23538,372855 ,1,23539,372845 ,1,23540,372835 ,1,23541,372825 ,1,23542,372815 ,1,23543,372785 ,1,23544,372770 ,1,23551,411640 ,1,23552,411635 ,1,23554,372760 ,1,23563,411630 ,1,23603,372750 ,1,23607,372735 ,1,23608,372735 ,1,23613,372735 ,1,23614,372735 ,1,23616,372735 ,1,23617,372735 ,1,23627,372730 ,1,23628,372730 ,1,23630,372730 ,1,23632,372730 ,1,23633,372730 ,1,23637,372730 ,1,23640,372730 ,1,23641,372730 ,1,23642,372730 ,1,23644,372730 ,1,23645,372730 ,1,23649,372730 ,1,23650,372730 ,1,23652,372730 ,1,23654,372730 ,1,23656,372730 ,1,23658,372730 ,1,23661,372730 ,1,23662,372730 ,1,23663,372720 ,1,23664,372730 ,1,23665,372730 ,1,23666,372730 ,1,23667,372730 ,1,23668,372730 ,1,23669,372730 ,1,23670,372730 ,1,23671,372710 ,1,23672,372670 ,1,23673,372660 ,1,23674,372730 ,1,23675,372730 ,1,23676,372655 ,1,23677,372640 ,1,23678,372730 ,1,23681,372630 ,1,23682,372620 ,1,23683,372730 ,1,23684,372610 ,1,23685,372730 ,1,23688,372730 ,1,23689,372730 ,1,23690,372730 ,1,23691,372730 ,1,23692,372730 ,1,23694,372600 ,1,23695,372600 ,1,23696,372730 ,1,23697,372730 ,1,23698,372730 ,1,23700,372730 ,1,23701,372730 ,1,23702,372730 ,1,23703,372560 ,1,23705,372730 ,1,23706,372730 ,1,23707,372730 ,1,23708,372730 ,1,23711,372730 ,1,23717,372550 ,1,23730,372545 ,1,23734,372535 ,1,23735,372535 ,1,23740,372535 ,1,23741,372535 ,1,23743,372535 ,1,23744,372535 ,1,23754,372515 ,1,23755,372515 ,1,23757,372515 ,1,23759,372515 ,1,23760,372515 ,1,23764,372515 ,1,23767,372515 ,1,23768,372515 ,1,23769,372515 ,1,23771,372515 ,1,23772,372515 ,1,23776,372515 ,1,23777,372515 ,1,23779,372515 ,1,23780,372510 ,1,23781,372515 ,1,23783,372515 ,1,23785,372515 ,1,23788,372515 ,1,23789,372515 ,1,23790,372500 ,1,23791,372515 ,1,23792,372515 ,1,23793,372515 ,1,23794,372515 ,1,23795,372515 ,1,23796,372515 ,1,23797,372515 ,1,23798,372485 ,1,23799,411625 ,1,23800,372465 ,1,23801,372515 ,1,23802,372515 ,1,23803,372450 ,1,23804,372440 ,1,23805,372515 ,1,23808,372430 ,1,23809,372420 ,1,23810,372515 ,1,23811,372415 ,1,23812,372515 ,1,23815,372515 ,1,23816,372515 ,1,23817,372515 ,1,23818,372515 ,1,23819,372515 ,1,23821,372400 ,1,23822,372400 ,1,23823,372515 ,1,23824,372515 ,1,23825,372515 ,1,23827,372515 ,1,23828,372515 ,1,23829,372515 ,1,23830,372395 ,1,23832,372515 ,1,23833,372515 ,1,23834,372515 ,1,23835,372515 ,1,23838,372515 ,1,23842,372350 ,1,23843,372350 ,1,23844,372350 ,1,23847,372340 ,1,23848,372340 ,1,23849,372340 ,1,23850,372340 ,1,23851,372330 ,1,23879,411620 ,1,23883,372325 ,1,23884,372325 ,1,23887,372310 ,1,23888,372300 ,1,23889,372325 ,1,23890,372325 ,1,23892,372325 ,1,23893,372325 ,1,23903,372285 ,1,23904,372285 ,1,23906,372285 ,1,23907,372275 ,1,23908,372285 ,1,23909,372285 ,1,23913,372245 ,1,23916,372285 ,1,23917,372285 ,1,23918,372285 ,1,23920,372235 ,1,23921,372285 ,1,23925,372285 ,1,23926,372285 ,1,23928,372285 ,1,23930,372285 ,1,23932,372285 ,1,23934,372285 ,1,23937,372285 ,1,23938,372285 ,1,23939,372285 ,1,23940,372285 ,1,23941,372285 ,1,23942,372285 ,1,23943,372285 ,1,23944,372285 ,1,23945,372285 ,1,23946,372285 ,1,23947,372285 ,1,23948,372285 ,1,23949,372285 ,1,23950,372285 ,1,23951,372285 ,1,23952,372285 ,1,23953,372285 ,1,23954,372285 ,1,23957,372285 ,1,23958,372285 ,1,23959,372285 ,1,23960,372285 ,1,23961,372285 ,1,23964,372285 ,1,23965,372285 ,1,23966,372285 ,1,23967,372285 ,1,23968,372285 ,1,23970,372285 ,1,23971,372225 ,1,23972,372285 ,1,23973,372285 ,1,23974,372285 ,1,23976,372285 ,1,23977,372285 ,1,23978,372285 ,1,23979,372285 ,1,23981,372285 ,1,23982,372285 ,1,23983,372285 ,1,23984,372285 ,1,23987,372285 ,1,23999,372215 ,1,24003,372205 ,1,24004,372205 ,1,24009,372205 ,1,24010,372205 ,1,24012,372205 ,1,24013,372205 ,1,24014,372195 ,1,24015,372180 ,1,24023,372170 ,1,24024,372170 ,1,24026,372170 ,1,24028,372170 ,1,24029,372170 ,1,24033,372170 ,1,24036,372170 ,1,24037,372170 ,1,24038,372170 ,1,24040,372170 ,1,24041,372170 ,1,24045,372170 ,1,24046,372170 ,1,24048,372170 ,1,24050,372170 ,1,24052,372170 ,1,24054,372170 ,1,24056,372145 ,1,24057,372170 ,1,24058,372170 ,1,24059,372170 ,1,24060,372170 ,1,24061,372170 ,1,24062,372170 ,1,24063,372170 ,1,24064,372170 ,1,24065,372170 ,1,24066,372170 ,1,24067,372170 ,1,24068,372170 ,1,24069,372170 ,1,24070,372170 ,1,24071,372170 ,1,24072,372170 ,1,24073,372170 ,1,24074,372170 ,1,24077,372170 ,1,24078,372170 ,1,24079,372170 ,1,24080,372170 ,1,24081,372170 ,1,24084,372170 ,1,24085,372170 ,1,24086,372170 ,1,24087,372170 ,1,24088,372170 ,1,24090,372170 ,1,24091,372170 ,1,24092,372170 ,1,24093,372170 ,1,24094,372170 ,1,24096,372170 ,1,24097,372170 ,1,24098,372170 ,1,24099,372170 ,1,24101,372170 ,1,24102,372170 ,1,24103,372170 ,1,24104,372170 ,1,24107,372170 ,1,24113,372135 ,1,24130,372120 ,1,24131,374970 ,1,24133,374970 ,1,24135,372115 ,1,24136,372105 ,1,24160,372095 ,1,24161,372080 ,1,24163,372070 ,1,24164,372050 ,1,24165,372040 ,1,24166,372050 ,1,24167,372050 ,1,24168,372040 ,1,24169,372050 ,1,24170,372050 ,1,24171,372040 ,1,24172,372050 ,1,24173,372050 ,1,24174,372040 ,1,24175,372050 ,1,24176,372050 ,1,24177,372040 ,1,24178,372050 ,1,24179,372050 ,1,24180,372040 ,1,24181,372050 ,1,24182,372050 ,1,24183,372040 ,1,24184,372050 ,1,24185,372050 ,1,24186,372040 ,1,24187,372050 ,1,24188,372050 ,1,24189,372040 ,1,24190,372050 ,1,24191,372030 ,1,24192,372020 ,1,24193,372030 ,1,24194,372030 ,1,24195,372020 ,1,24196,372030 ,1,24197,372010 ,1,24198,372005 ,1,24199,372010 ,1,24200,371995 ,1,24201,371985 ,1,24202,371995 ,1,24203,371945 ,1,24204,371935 ,1,24205,371945 ,1,24216,371920 ,1,24232,411585 ,1,24254,371910 ,1,24305,371895 ,1,24306,371895 ,1,24307,371895 ,1,24308,371895 ,1,24309,371895 ,1,24310,371895 ,1,24311,371895 ,1,24312,371895 ,1,24313,371895 ,1,24314,371895 ,1,24316,371895 ,1,24317,371895 ,1,24320,371890 ,1,24321,371895 ,1,24322,371895 ,1,24323,371895 ,1,24324,371895 ,1,24325,371895 ,1,24326,371895 ,1,24328,371895 ,1,24329,371895 ,1,24330,371895 ,1,24332,371895 ,1,24333,371895 ,1,24334,371895 ,1,24335,371895 ,1,24337,371895 ,1,24338,371895 ,1,24340,371895 ,1,24341,371895 ,1,24343,371895 ,1,24344,371895 ,1,24346,371880 ,1,24347,371880 ,1,24348,371880 ,1,24349,371880 ,1,24350,371880 ,1,24351,371880 ,1,24352,371880 ,1,24389,411580 ,1,24390,411580 ,1,24391,411580 ,1,24392,411580 ,1,24394,411580 ,1,24395,411580 ,1,24397,411580 ,1,24398,411580 ,1,24399,411580 ,1,24400,411580 ,1,24401,411580 ,1,24403,411580 ,1,24404,411580 ,1,24405,411580 ,1,24406,411580 ,1,24407,411580 ,1,24408,411580 ,1,24409,411580 ,1,24410,411580 ,1,24412,411580 ,1,24413,411580 ,1,24414,411580 ,1,24415,411580 ,1,24417,411580 ,1,24418,411580 ,1,24419,411580 ,1,24420,411580 ,1,24421,411580 ,1,24422,411580 ,1,24423,411580 ,1,24424,411580 ,1,24425,411580 ,1,24426,411580 ,1,24427,411580 ,1,24428,411580 ,1,24429,411580 ,1,24430,411580 ,1,24431,411580 ,1,24432,411580 ,1,24433,411580 ,1,24434,411580 ,1,24435,411580 ,1,24436,411580 ,1,24437,411580 ,1,24438,411580 ,1,24439,411580 ,1,24440,411580 ,1,24441,411580 ,1,24442,411580 ,1,24443,411580 ,1,24444,411580 ,1,24445,411580 ,1,24446,411580 ,1,24447,411580 ,1,24448,411580 ,1,24449,411580 ,1,24450,411580 ,1,24451,371870 ,1,24452,371840 ,1,24453,411580 ,1,24454,411580 ,1,24455,411580 ,1,24456,411580 ,1,24457,411580 ,1,24458,411580 ,1,24459,411580 ,1,24460,411580 ,1,24461,411580 ,1,24462,411580 ,1,24472,411575 ,1,24473,411570 ,1,24474,411570 ,1,24475,411570 ,1,24476,411570 ,1,24477,411570 ,1,24478,411570 ,1,24479,411570 ,1,24481,371830 ,1,24483,371830 ,1,24535,371820 ,1,24537,371820 ,1,24559,371790 ,1,24560,371790 ,1,24561,371790 ,1,24562,371790 ,1,24563,371790 ,1,24564,371790 ,1,24565,371790 ,1,24566,371790 ,1,24567,371790 ,1,24568,371790 ,1,24570,371790 ,1,24571,371790 ,1,24574,371790 ,1,24575,371790 ,1,24576,371790 ,1,24577,371790 ,1,24578,371790 ,1,24579,371790 ,1,24580,371790 ,1,24582,371790 ,1,24583,371790 ,1,24584,371790 ,1,24586,371780 ,1,24587,371780 ,1,24588,371780 ,1,24589,371780 ,1,24591,371790 ,1,24592,371790 ,1,24594,371790 ,1,24595,371790 ,1,24597,371790 ,1,24598,371790 ,1,24604,371770 ,1,24608,371760 ,1,24630,371760 ,1,24631,371760 ,1,24639,371720 ,1,24640,371705 ,1,24641,371700 ,1,24642,371690 ,1,24655,371675 ,1,24659,411560 ,1,24660,411555 ,1,24661,411560 ,1,24662,411560 ,1,24663,411555 ,1,24664,411560 ,1,24665,411560 ,1,24666,411555 ,1,24667,411560 ,1,24668,411560 ,1,24669,411555 ,1,24670,411560 ,1,24671,411560 ,1,24672,411555 ,1,24673,411560 ,1,24674,411560 ,1,24675,411555 ,1,24676,411560 ,1,24677,411560 ,1,24678,411555 ,1,24679,411560 ,1,24680,411560 ,1,24681,411555 ,1,24682,411560 ,1,24683,411560 ,1,24684,411555 ,1,24685,411560 ,1,24686,411550 ,1,24687,411545 ,1,24688,411550 ,1,24689,411550 ,1,24690,411545 ,1,24691,411550 ,1,24692,371665 ,1,24693,371660 ,1,24694,371665 ,1,24695,411525 ,1,24696,371645 ,1,24697,411525 ,1,24698,371630 ,1,24699,371620 ,1,24700,371630 ,1,24701,374375 ,1,24703,374375 ,1,24709,371600 ,1,24710,371600 ,1,24711,371600 ,1,24712,371600 ,1,24713,371600 ,1,24714,371600 ,1,24715,371600 ,1,24716,371600 ,1,24717,371600 ,1,24718,371600 ,1,24720,371600 ,1,24721,371600 ,1,24724,371585 ,1,24725,371600 ,1,24726,371600 ,1,24727,371575 ,1,24728,371600 ,1,24729,371600 ,1,24730,371600 ,1,24732,371600 ,1,24733,371600 ,1,24734,371600 ,1,24736,371600 ,1,24737,371600 ,1,24738,371600 ,1,24739,371565 ,1,24741,371600 ,1,24742,371600 ,1,24744,371600 ,1,24745,371600 ,1,24747,371600 ,1,24748,371600 ,1,24750,371555 ,1,24764,371515 ,1,24768,371505 ,1,24769,371505 ,1,24774,371495 ,1,24775,371495 ,1,24777,371495 ,1,24778,371495 ,1,24788,371485 ,1,24789,371465 ,1,24791,371455 ,1,24793,371455 ,1,24794,371455 ,1,24798,371455 ,1,24801,371455 ,1,24802,371455 ,1,24803,371455 ,1,24805,371455 ,1,24806,371445 ,1,24810,371455 ,1,24811,371455 ,1,24813,371455 ,1,24815,371455 ,1,24817,371435 ,1,24819,371455 ,1,24822,411520 ,1,24823,411520 ,1,24824,371395 ,1,24825,411520 ,1,24826,411520 ,1,24827,411520 ,1,24828,411520 ,1,24829,411520 ,1,24830,411520 ,1,24831,411520 ,1,24832,411520 ,1,24833,411520 ,1,24834,411520 ,1,24835,411520 ,1,24836,411520 ,1,24837,371385 ,1,24838,371375 ,1,24839,411520 ,1,24842,411520 ,1,24843,411520 ,1,24844,411520 ,1,24845,411520 ,1,24846,411520 ,1,24849,411515 ,1,24850,411520 ,1,24851,411520 ,1,24852,411520 ,1,24853,411520 ,1,24855,411520 ,1,24856,411520 ,1,24857,411520 ,1,24858,371360 ,1,24859,411520 ,1,24861,371455 ,1,24862,371455 ,1,24863,371455 ,1,24864,371455 ,1,24866,371455 ,1,24867,371455 ,1,24868,371455 ,1,24869,371455 ,1,24872,371455 ,1,24875,371350 ,1,24876,371350 ,1,24877,371350 ,1,24878,371350 ,1,24879,371350 ,1,24880,371350 ,1,24881,371350 ,1,24882,371350 ,1,24883,371350 ,1,24884,371350 ,1,24886,371350 ,1,24887,371350 ,1,24890,371340 ,1,24891,371350 ,1,24892,371350 ,1,24893,371350 ,1,24894,371350 ,1,24895,371350 ,1,24896,371350 ,1,24898,371350 ,1,24899,371350 ,1,24900,371350 ,1,24902,371330 ,1,24903,371330 ,1,24904,371330 ,1,24905,371330 ,1,24907,371350 ,1,24908,371350 ,1,24910,371350 ,1,24911,371350 ,1,24913,371350 ,1,24914,371350 ,1,24969,411510 ,1,24970,411510 ,1,24972,411495 ,1,24974,411495 ,1,24979,411490 ,1,24982,411485 ,1,24991,411480 ,1,24992,411480 ,1,24996,371320 ,1,25000,371320 ,1,25001,371320 ,1,25006,371320 ,1,25007,371320 ,1,25009,371320 ,1,25010,371320 ,1,25012,371285 ,1,25013,371275 ,1,25017,371265 ,1,25020,371260 ,1,25021,371260 ,1,25023,371260 ,1,25025,371260 ,1,25026,371260 ,1,25030,371260 ,1,25033,371260 ,1,25034,371260 ,1,25035,371260 ,1,25037,371260 ,1,25038,371260 ,1,25042,371260 ,1,25043,371260 ,1,25045,371260 ,1,25047,371260 ,1,25049,371260 ,1,25051,371260 ,1,25053,411450 ,1,25054,371260 ,1,25055,371260 ,1,25056,371260 ,1,25057,371260 ,1,25058,371260 ,1,25059,371260 ,1,25060,371260 ,1,25061,371260 ,1,25062,371260 ,1,25063,371260 ,1,25064,371260 ,1,25065,371260 ,1,25066,371260 ,1,25067,371260 ,1,25068,371260 ,1,25069,371260 ,1,25070,371260 ,1,25071,371260 ,1,25074,371260 ,1,25075,371260 ,1,25076,371260 ,1,25077,371260 ,1,25078,371260 ,1,25081,371260 ,1,25082,371260 ,1,25083,371260 ,1,25084,371260 ,1,25085,371260 ,1,25087,371260 ,1,25088,371260 ,1,25089,371260 ,1,25090,371260 ,1,25091,371260 ,1,25093,371260 ,1,25094,371260 ,1,25095,371260 ,1,25096,371260 ,1,25098,371260 ,1,25099,371260 ,1,25100,371260 ,1,25101,371260 ,1,25104,371260 ,1,25115,371245 ,1,25137,371235 ,1,25181,371230 ,1,25185,371115 ,1,25186,371105 ,1,25191,371080 ,1,25192,371070 ,1,25194,370965 ,1,25195,370965 ,1,25203,370955 ,1,25204,370955 ,1,25205,370940 ,1,25206,370935 ,1,25208,370925 ,1,25210,370915 ,1,25211,411445 ,1,25215,370905 ,1,25218,370865 ,1,25219,370855 ,1,25220,411445 ,1,25222,370845 ,1,25223,370835 ,1,25227,370825 ,1,25228,370825 ,1,25230,370815 ,1,25232,370805 ,1,25234,370795 ,1,25236,411445 ,1,25239,370760 ,1,25240,370760 ,1,25241,370760 ,1,25242,370760 ,1,25243,370760 ,1,25244,370760 ,1,25245,370760 ,1,25246,370760 ,1,25247,370760 ,1,25248,370760 ,1,25249,370760 ,1,25250,370745 ,1,25251,370760 ,1,25252,370760 ,1,25253,370760 ,1,25254,370760 ,1,25255,370760 ,1,25256,370760 ,1,25259,370735 ,1,25260,370735 ,1,25261,370735 ,1,25262,370735 ,1,25263,370760 ,1,25266,370725 ,1,25267,370760 ,1,25268,370715 ,1,25269,370710 ,1,25270,370695 ,1,25272,370760 ,1,25273,370760 ,1,25274,370760 ,1,25275,370690 ,1,25276,370760 ,1,25278,370665 ,1,25279,370655 ,1,25280,370640 ,1,25281,370625 ,1,25283,370615 ,1,25284,370600 ,1,25285,411445 ,1,25286,370590 ,1,25287,411440 ,1,25288,411440 ,1,25289,370565 ,1,25290,370550 ,1,25292,370540 ,1,25293,411440 ,1,25297,370530 ,1,25300,370525 ,1,25301,411440 ,1,25302,411440 ,1,25304,370510 ,1,25305,370500 ,1,25309,370490 ,1,25310,370490 ,1,25312,411440 ,1,25314,411440 ,1,25316,411440 ,1,25318,411440 ,1,25321,370455 ,1,25322,370455 ,1,25323,370455 ,1,25324,370455 ,1,25325,370455 ,1,25326,370455 ,1,25327,370455 ,1,25328,370455 ,1,25329,370455 ,1,25330,370455 ,1,25331,370455 ,1,25332,370445 ,1,25333,370455 ,1,25334,370455 ,1,25335,370455 ,1,25336,370455 ,1,25337,370455 ,1,25338,370455 ,1,25341,370455 ,1,25342,370455 ,1,25343,370455 ,1,25344,370455 ,1,25345,370455 ,1,25348,370435 ,1,25349,370455 ,1,25350,370455 ,1,25351,370455 ,1,25352,370455 ,1,25354,370455 ,1,25355,370455 ,1,25356,370455 ,1,25357,370455 ,1,25358,370455 ,1,25360,370425 ,1,25361,370425 ,1,25362,370425 ,1,25363,370425 ,1,25365,370425 ,1,25366,370425 ,1,25367,370425 ,1,25368,370425 ,1,25371,411440 ,1,25374,370405 ,1,25375,370405 ,1,25376,370405 ,1,25377,370405 ,1,25378,370405 ,1,25379,370405 ,1,25380,370405 ,1,25381,370405 ,1,25382,370405 ,1,25383,370405 ,1,25385,370405 ,1,25386,370405 ,1,25389,370405 ,1,25390,370405 ,1,25391,370405 ,1,25392,370405 ,1,25393,370405 ,1,25394,370405 ,1,25395,370405 ,1,25397,370405 ,1,25398,370405 ,1,25399,370405 ,1,25401,370405 ,1,25402,370405 ,1,25403,370405 ,1,25404,370405 ,1,25406,370405 ,1,25407,370405 ,1,25408,370395 ,1,25409,370405 ,1,25410,370405 ,1,25412,370405 ,1,25413,370405 ,1,25416,370385 ,1,25423,370380 ,1,25425,370355 ,1,25436,370345 ,1,25437,370335 ,1,25438,370325 ,1,25439,370315 ,1,25464,370305 ,1,25480,370295 ,1,25481,370285 ,1,25580,370250 ,1,25612,370240 ,1,25622,411435 ,1,25626,411430 ,1,25627,411430 ,1,25632,411430 ,1,25633,411430 ,1,25635,411430 ,1,25636,411430 ,1,25638,370205 ,1,25644,370200 ,1,25646,411425 ,1,25647,411425 ,1,25649,411430 ,1,25651,411430 ,1,25652,411430 ,1,25653,370190 ,1,25656,411430 ,1,25659,411430 ,1,25660,411430 ,1,25661,411430 ,1,25663,411430 ,1,25664,411430 ,1,25668,411430 ,1,25669,411430 ,1,25671,411430 ,1,25673,411430 ,1,25675,411420 ,1,25677,411430 ,1,25680,411430 ,1,25681,411430 ,1,25682,411430 ,1,25683,411430 ,1,25684,411430 ,1,25685,411430 ,1,25686,411430 ,1,25687,411430 ,1,25688,411430 ,1,25689,411430 ,1,25690,411430 ,1,25691,411430 ,1,25692,411430 ,1,25693,411415 ,1,25694,411430 ,1,25695,411430 ,1,25696,411430 ,1,25697,411430 ,1,25700,411430 ,1,25701,411430 ,1,25702,411430 ,1,25703,411430 ,1,25704,411430 ,1,25707,411430 ,1,25708,411430 ,1,25709,411430 ,1,25710,411430 ,1,25711,411430 ,1,25713,411430 ,1,25714,411430 ,1,25715,411430 ,1,25716,411430 ,1,25717,411430 ,1,25719,411430 ,1,25720,411430 ,1,25721,411430 ,1,25722,411430 ,1,25724,411430 ,1,25725,411430 ,1,25726,411430 ,1,25727,411375 ,1,25730,411430 ,1,25731,370180 ,1,25735,370135 ,1,25736,370135 ,1,25741,370135 ,1,25742,370135 ,1,25744,370135 ,1,25745,370135 ,1,25755,411370 ,1,25756,411370 ,1,25758,411370 ,1,25760,411370 ,1,25761,411370 ,1,25765,411370 ,1,25768,411370 ,1,25769,411370 ,1,25770,411370 ,1,25772,411370 ,1,25773,411370 ,1,25777,411370 ,1,25778,411370 ,1,25780,411370 ,1,25782,411370 ,1,25784,411370 ,1,25786,411370 ,1,25789,411370 ,1,25790,411370 ,1,25791,411370 ,1,25792,411370 ,1,25793,411370 ,1,25794,411370 ,1,25795,411370 ,1,25796,411370 ,1,25797,411370 ,1,25798,411370 ,1,25799,411370 ,1,25800,411370 ,1,25801,411370 ,1,25802,411370 ,1,25803,411370 ,1,25804,411370 ,1,25805,411370 ,1,25806,411370 ,1,25809,411370 ,1,25810,411370 ,1,25811,411370 ,1,25812,411370 ,1,25813,411370 ,1,25816,411370 ,1,25817,411370 ,1,25818,411370 ,1,25819,411370 ,1,25820,411370 ,1,25822,411370 ,1,25823,411370 ,1,25824,411370 ,1,25825,411370 ,1,25826,411370 ,1,25828,411370 ,1,25829,411370 ,1,25830,411370 ,1,25831,411370 ,1,25833,411370 ,1,25834,411370 ,1,25835,411370 ,1,25836,411370 ,1,25839,411370 ,1,25840,411365 ,1,25844,411365 ,1,25845,411365 ,1,25850,411365 ,1,25851,411365 ,1,25853,411365 ,1,25854,411365 ,1,25864,370125 ,1,25865,370125 ,1,25867,411365 ,1,25869,411365 ,1,25870,411365 ,1,25874,411365 ,1,25877,411365 ,1,25878,411365 ,1,25879,411365 ,1,25881,411365 ,1,25882,411365 ,1,25886,411365 ,1,25887,411365 ,1,25889,411365 ,1,25891,411365 ,1,25893,370115 ,1,25895,411365 ,1,25898,411365 ,1,25899,411365 ,1,25900,411365 ,1,25901,411365 ,1,25902,411365 ,1,25903,411365 ,1,25904,411365 ,1,25905,411365 ,1,25906,411365 ,1,25907,411365 ,1,25908,411365 ,1,25909,411365 ,1,25910,411365 ,1,25911,411365 ,1,25912,411365 ,1,25913,411365 ,1,25914,411365 ,1,25915,411365 ,1,25918,411365 ,1,25919,411365 ,1,25920,411365 ,1,25921,411365 ,1,25922,411365 ,1,25925,411365 ,1,25926,411365 ,1,25927,411365 ,1,25928,411365 ,1,25929,411365 ,1,25931,411365 ,1,25932,411365 ,1,25933,411365 ,1,25934,411365 ,1,25935,411365 ,1,25937,411365 ,1,25938,411365 ,1,25939,411365 ,1,25940,411365 ,1,25942,411365 ,1,25943,411365 ,1,25944,411365 ,1,25945,411365 ,1,25946,370105 ,1,25948,411365 ,1,25950,370095 ,1,25951,370095 ,1,25956,370095 ,1,25957,370095 ,1,25959,370095 ,1,25960,370095 ,1,25970,370085 ,1,25971,370085 ,1,25973,370085 ,1,25975,370085 ,1,25976,370085 ,1,25980,370085 ,1,25983,370085 ,1,25984,370085 ,1,25985,370085 ,1,25987,370085 ,1,25988,370085 ,1,25992,370085 ,1,25993,370085 ,1,25995,370085 ,1,25997,370085 ,1,25999,370085 ,1,26001,370085 ,1,26004,370085 ,1,26005,370085 ,1,26006,370085 ,1,26007,370085 ,1,26008,370085 ,1,26009,370085 ,1,26010,370085 ,1,26011,370085 ,1,26012,370085 ,1,26013,370085 ,1,26014,370085 ,1,26015,370085 ,1,26016,370085 ,1,26017,370085 ,1,26018,370085 ,1,26019,370085 ,1,26020,370085 ,1,26021,370085 ,1,26024,370085 ,1,26025,370085 ,1,26026,370085 ,1,26027,370085 ,1,26028,370085 ,1,26031,370085 ,1,26032,370085 ,1,26033,370085 ,1,26034,370085 ,1,26035,370085 ,1,26037,370085 ,1,26038,370085 ,1,26039,370085 ,1,26040,370085 ,1,26041,370085 ,1,26043,370085 ,1,26044,370085 ,1,26045,370085 ,1,26046,370085 ,1,26048,370085 ,1,26049,370085 ,1,26050,370085 ,1,26051,370085 ,1,26054,370085 ,1,26067,370075 ,1,26084,370065 ,1,26086,372105 ,1,26113,370050 ,1,26114,370050 ,1,26116,370050 ,1,26124,370040 ,1,26128,370040 ,1,26129,370040 ,1,26131,370030 ,1,26132,370030 ,1,26133,370030 ,1,26134,370040 ,1,26135,370040 ,1,26137,370040 ,1,26138,370040 ,1,26148,370040 ,1,26149,370040 ,1,26151,370040 ,1,26153,370040 ,1,26154,370040 ,1,26158,370020 ,1,26161,370040 ,1,26162,370040 ,1,26163,370040 ,1,26165,370040 ,1,26166,370040 ,1,26170,370040 ,1,26171,370040 ,1,26173,370040 ,1,26175,370040 ,1,26177,370040 ,1,26179,370040 ,1,26182,370010 ,1,26183,370040 ,1,26184,370040 ,1,26185,370040 ,1,26186,370040 ,1,26187,370040 ,1,26188,370040 ,1,26189,370040 ,1,26190,370040 ,1,26191,370040 ,1,26192,370040 ,1,26193,370040 ,1,26194,370040 ,1,26195,370040 ,1,26196,370040 ,1,26197,370040 ,1,26198,370040 ,1,26199,370040 ,1,26202,370040 ,1,26203,370040 ,1,26204,370040 ,1,26205,370040 ,1,26206,370040 ,1,26209,370040 ,1,26210,370040 ,1,26211,370040 ,1,26212,370040 ,1,26213,370040 ,1,26215,370040 ,1,26216,370040 ,1,26217,370000 ,1,26218,370040 ,1,26219,370040 ,1,26221,370040 ,1,26222,370040 ,1,26223,370040 ,1,26224,370040 ,1,26226,370040 ,1,26227,370040 ,1,26228,370040 ,1,26229,370040 ,1,26232,370040 ,1,26238,369990 ,1,26242,369990 ,1,26243,369990 ,1,26248,369990 ,1,26249,369990 ,1,26251,369990 ,1,26252,369990 ,1,26262,369980 ,1,26263,369980 ,1,26265,369990 ,1,26267,369990 ,1,26268,369990 ,1,26272,369990 ,1,26273,369935 ,1,26275,369990 ,1,26276,369990 ,1,26277,369990 ,1,26279,369990 ,1,26280,369990 ,1,26284,369990 ,1,26285,369990 ,1,26287,369990 ,1,26288,369925 ,1,26289,369990 ,1,26291,369910 ,1,26293,369990 ,1,26296,369990 ,1,26297,369990 ,1,26298,369990 ,1,26299,369990 ,1,26300,369990 ,1,26301,369990 ,1,26302,369990 ,1,26303,369990 ,1,26304,369990 ,1,26305,369990 ,1,26306,369990 ,1,26307,369990 ,1,26308,369990 ,1,26309,369990 ,1,26310,369990 ,1,26311,369990 ,1,26312,369990 ,1,26313,369990 ,1,26316,369990 ,1,26317,369990 ,1,26318,369990 ,1,26319,369990 ,1,26320,369990 ,1,26323,369990 ,1,26324,369990 ,1,26325,369990 ,1,26326,369990 ,1,26327,369990 ,1,26329,369990 ,1,26330,369990 ,1,26331,369990 ,1,26332,369990 ,1,26333,369990 ,1,26335,369990 ,1,26336,369990 ,1,26337,369990 ,1,26338,369990 ,1,26340,369990 ,1,26341,369990 ,1,26342,369990 ,1,26343,369990 ,1,26344,369900 ,1,26346,369990 ,1,26348,369900 ,1,26349,369900 ,1,26354,369900 ,1,26355,369900 ,1,26357,369900 ,1,26358,369900 ,1,26368,369900 ,1,26369,369900 ,1,26371,369900 ,1,26373,369900 ,1,26374,369900 ,1,26378,369890 ,1,26381,369900 ,1,26382,369900 ,1,26383,369900 ,1,26385,369900 ,1,26386,369900 ,1,26390,369900 ,1,26391,369900 ,1,26393,369900 ,1,26395,369900 ,1,26397,369900 ,1,26399,369900 ,1,26402,369885 ,1,26403,369900 ,1,26404,369900 ,1,26405,369900 ,1,26406,369900 ,1,26407,369900 ,1,26408,369900 ,1,26409,369900 ,1,26410,369900 ,1,26411,369900 ,1,26412,369900 ,1,26413,369900 ,1,26414,369900 ,1,26415,369900 ,1,26416,369900 ,1,26417,369900 ,1,26418,369900 ,1,26419,369900 ,1,26422,369900 ,1,26423,369900 ,1,26424,369900 ,1,26425,369900 ,1,26426,369900 ,1,26429,369900 ,1,26430,369900 ,1,26431,369900 ,1,26432,369900 ,1,26433,369900 ,1,26435,369900 ,1,26436,369900 ,1,26437,369875 ,1,26438,369900 ,1,26439,369900 ,1,26441,369900 ,1,26442,369900 ,1,26443,369900 ,1,26444,369900 ,1,26446,369900 ,1,26447,369900 ,1,26448,369900 ,1,26449,369900 ,1,26452,369900 ,1,26455,369865 ,1,26459,369865 ,1,26460,369865 ,1,26465,369865 ,1,26466,369865 ,1,26468,369865 ,1,26469,369865 ,1,26479,369850 ,1,26480,369850 ,1,26482,369865 ,1,26484,369865 ,1,26485,369865 ,1,26489,369865 ,1,26492,369865 ,1,26493,369865 ,1,26494,369865 ,1,26496,369865 ,1,26497,369865 ,1,26501,369865 ,1,26502,369865 ,1,26504,369865 ,1,26506,369865 ,1,26508,369840 ,1,26510,369865 ,1,26513,369865 ,1,26514,369865 ,1,26515,369865 ,1,26516,369865 ,1,26517,369865 ,1,26518,369865 ,1,26519,369865 ,1,26520,369865 ,1,26521,369865 ,1,26522,369865 ,1,26523,369865 ,1,26524,369865 ,1,26525,369865 ,1,26526,369865 ,1,26527,369865 ,1,26528,369865 ,1,26529,369865 ,1,26530,369865 ,1,26533,369865 ,1,26534,369865 ,1,26535,369865 ,1,26536,369865 ,1,26537,369865 ,1,26540,369865 ,1,26541,369865 ,1,26542,369865 ,1,26543,369865 ,1,26544,369865 ,1,26546,369865 ,1,26547,369865 ,1,26548,369865 ,1,26549,369865 ,1,26550,369865 ,1,26552,369865 ,1,26553,369865 ,1,26554,369865 ,1,26555,369865 ,1,26557,369865 ,1,26558,369865 ,1,26559,369865 ,1,26560,369865 ,1,26561,411360 ,1,26563,369865 ,1,26565,411360 ,1,26566,411360 ,1,26571,411360 ,1,26572,411360 ,1,26574,411360 ,1,26575,411360 ,1,26579,371760 ,1,26581,371760 ,1,26585,369830 ,1,26586,369830 ,1,26588,411360 ,1,26590,411360 ,1,26591,411360 ,1,26595,369820 ,1,26598,411360 ,1,26599,411360 ,1,26600,411360 ,1,26602,369795 ,1,26603,411360 ,1,26607,411360 ,1,26608,411360 ,1,26610,411360 ,1,26612,411360 ,1,26614,411360 ,1,26616,411360 ,1,26619,369790 ,1,26620,411360 ,1,26621,411360 ,1,26622,411360 ,1,26623,369780 ,1,26624,411360 ,1,26625,369770 ,1,26626,369720 ,1,26627,369710 ,1,26628,369700 ,1,26629,411360 ,1,26630,411360 ,1,26631,411360 ,1,26632,411360 ,1,26633,411360 ,1,26634,411360 ,1,26635,411360 ,1,26636,411360 ,1,26639,369690 ,1,26640,369690 ,1,26641,411360 ,1,26642,411360 ,1,26643,411360 ,1,26646,411360 ,1,26647,411360 ,1,26648,411360 ,1,26649,411360 ,1,26650,411360 ,1,26652,411360 ,1,26653,411360 ,1,26654,369680 ,1,26655,411360 ,1,26656,411360 ,1,26658,411360 ,1,26659,411360 ,1,26660,411360 ,1,26661,411360 ,1,26663,411360 ,1,26664,411360 ,1,26665,411360 ,1,26666,411360 ,1,26667,369665 ,1,26669,411360 ,1,26671,369665 ,1,26672,369665 ,1,26677,369665 ,1,26678,369665 ,1,26680,369665 ,1,26681,369665 ,1,26691,369665 ,1,26692,369665 ,1,26694,369665 ,1,26696,369665 ,1,26697,369665 ,1,26701,369665 ,1,26704,369665 ,1,26705,369665 ,1,26706,369665 ,1,26708,369665 ,1,26709,369665 ,1,26713,369665 ,1,26714,369665 ,1,26716,369665 ,1,26718,369665 ,1,26720,369665 ,1,26722,369665 ,1,26725,369665 ,1,26726,369665 ,1,26727,369665 ,1,26728,369665 ,1,26729,369665 ,1,26730,369665 ,1,26731,369665 ,1,26732,369665 ,1,26733,369665 ,1,26734,369665 ,1,26735,369665 ,1,26736,369665 ,1,26737,369665 ,1,26738,369665 ,1,26739,369665 ,1,26740,369665 ,1,26741,369665 ,1,26742,369665 ,1,26745,369665 ,1,26746,369665 ,1,26747,369665 ,1,26748,369665 ,1,26749,369665 ,1,26752,369665 ,1,26753,369665 ,1,26754,369665 ,1,26755,369665 ,1,26756,369665 ,1,26758,369665 ,1,26759,369665 ,1,26760,369665 ,1,26761,369665 ,1,26762,369665 ,1,26764,369665 ,1,26765,369665 ,1,26766,369665 ,1,26767,369665 ,1,26768,369660 ,1,26769,369665 ,1,26770,369665 ,1,26771,369665 ,1,26772,369665 ,1,26773,369650 ,1,26775,369665 ,1,26777,369650 ,1,26778,369650 ,1,26783,369650 ,1,26784,369650 ,1,26786,369650 ,1,26787,369650 ,1,26797,369650 ,1,26798,369650 ,1,26800,369650 ,1,26802,369650 ,1,26803,369650 ,1,26807,369650 ,1,26810,369650 ,1,26811,369650 ,1,26812,369650 ,1,26814,369650 ,1,26815,369650 ,1,26819,369650 ,1,26820,369650 ,1,26822,369650 ,1,26824,369650 ,1,26826,369650 ,1,26828,369650 ,1,26831,369650 ,1,26832,369650 ,1,26833,369650 ,1,26834,369650 ,1,26835,369650 ,1,26836,369650 ,1,26837,369650 ,1,26838,369650 ,1,26839,369650 ,1,26840,369650 ,1,26841,369650 ,1,26842,369650 ,1,26843,369650 ,1,26844,369650 ,1,26845,369625 ,1,26846,369650 ,1,26847,369650 ,1,26848,369650 ,1,26851,369650 ,1,26852,369650 ,1,26853,369650 ,1,26854,369650 ,1,26855,369650 ,1,26858,369650 ,1,26859,369650 ,1,26860,369650 ,1,26861,369650 ,1,26862,369650 ,1,26864,369650 ,1,26865,369650 ,1,26866,369650 ,1,26867,369650 ,1,26868,369650 ,1,26870,369650 ,1,26871,369650 ,1,26872,369650 ,1,26873,369650 ,1,26875,369650 ,1,26876,369650 ,1,26877,369650 ,1,26878,369650 ,1,26879,369615 ,1,26881,369650 ,1,26882,411355 ,1,26884,369605 ,1,26885,369595 ,1,26887,411355 ,1,26889,411355 ,1,26890,369585 ,1,26891,369575 ,1,26893,369565 ,1,26895,369555 ,1,26896,411355 ,1,26898,369525 ,1,26899,369515 ,1,26901,369495 ,1,26902,411355 ,1,26903,369485 ,1,26904,369475 ,1,26905,369465 ,1,26906,369465 ,1,26910,369455 ,1,26911,411355 ,1,26913,369420 ,1,26916,369410 ,1,26917,369400 ,1,26919,369390 ,1,26921,369380 ,1,26922,369370 ,1,26924,369360 ,1,26926,369350 ,1,26927,369315 ,1,26928,411355 ,1,26930,369305 ,1,26932,369295 ,1,26934,369285 ,1,26935,411355 ,1,26936,411355 ,1,26937,369275 ,1,26938,369265 ,1,26940,369255 ,1,26941,369245 ,1,26944,369215 ,1,26946,369205 ,1,26947,369205 ,1,26948,369205 ,1,26949,369205 ,1,26950,369205 ,1,26952,411355 ,1,26954,369195 ,1,26956,369185 ,1,26958,369175 ,1,26960,369165 ,1,26962,411355 ,1,26963,369155 ,1,26964,411355 ,1,26965,411355 ,1,26966,369145 ,1,26968,369110 ,1,26969,369100 ,1,26970,369090 ,1,26972,369080 ,1,26973,369065 ,1,26974,411355 ,1,26975,411350 ,1,26976,368810 ,1,26977,368695 ,1,26978,366510 ,1,26979,411350 ,1,26980,411350 ,1,26985,411350 ,1,26986,411350 ,1,26988,411350 ,1,26989,411350 ,1,26999,366495 ,1,27000,366495 ,1,27002,366485 ,1,27004,366475 ,1,27005,411350 ,1,27009,411350 ,1,27012,411350 ,1,27013,411350 ,1,27014,411350 ,1,27016,366465 ,1,27017,411350 ,1,27021,366435 ,1,27022,366435 ,1,27024,411350 ,1,27026,411350 ,1,27028,366430 ,1,27030,411350 ,1,27033,411350 ,1,27034,411350 ,1,27035,411350 ,1,27036,411350 ,1,27037,411350 ,1,27038,411350 ,1,27039,411350 ,1,27040,411350 ,1,27041,411350 ,1,27042,411350 ,1,27043,411350 ,1,27044,411350 ,1,27045,411350 ,1,27046,411350 ,1,27047,411350 ,1,27048,411350 ,1,27049,411350 ,1,27050,411350 ,1,27053,366415 ,1,27054,366415 ,1,27055,366415 ,1,27056,366415 ,1,27057,411350 ,1,27060,411350 ,1,27061,411350 ,1,27062,411350 ,1,27063,411350 ,1,27064,411350 ,1,27066,411350 ,1,27067,411350 ,1,27068,411350 ,1,27069,411350 ,1,27070,411350 ,1,27072,411350 ,1,27073,411350 ,1,27074,411350 ,1,27075,411350 ,1,27077,411350 ,1,27078,411350 ,1,27079,411350 ,1,27080,411350 ,1,27081,411270 ,1,27083,411350 ,1,27085,411270 ,1,27086,411270 ,1,27091,411270 ,1,27092,411270 ,1,27094,411270 ,1,27095,411270 ,1,27105,411270 ,1,27106,411265 ,1,27108,411230 ,1,27110,411270 ,1,27111,411225 ,1,27115,411270 ,1,27118,411270 ,1,27119,411270 ,1,27120,411220 ,1,27122,411270 ,1,27123,411215 ,1,27127,411270 ,1,27128,411270 ,1,27130,411270 ,1,27132,411270 ,1,27134,411270 ,1,27136,411270 ,1,27139,411270 ,1,27140,411270 ,1,27141,411270 ,1,27142,411270 ,1,27143,411270 ,1,27144,411270 ,1,27145,411270 ,1,27146,411270 ,1,27147,411270 ,1,27148,411270 ,1,27149,411270 ,1,27150,366405 ,1,27151,411270 ,1,27152,411270 ,1,27153,411270 ,1,27154,411270 ,1,27155,411270 ,1,27156,411270 ,1,27159,411270 ,1,27160,411270 ,1,27161,411270 ,1,27162,411270 ,1,27163,411270 ,1,27166,411270 ,1,27167,411270 ,1,27168,411270 ,1,27169,411270 ,1,27170,411270 ,1,27172,411270 ,1,27173,411270 ,1,27174,411270 ,1,27175,411270 ,1,27176,411270 ,1,27178,411270 ,1,27179,411270 ,1,27180,411270 ,1,27181,411270 ,1,27183,411270 ,1,27184,411270 ,1,27185,411270 ,1,27186,411270 ,1,27189,411270 ,1,27293,411205 ,1,27297,411205 ,1,27298,411205 ,1,27303,366400 ,1,27304,366400 ,1,27306,366400 ,1,27307,366400 ,1,27317,366385 ,1,27318,366385 ,1,27320,366375 ,1,27322,411205 ,1,27323,411205 ,1,27327,411205 ,1,27330,411205 ,1,27331,411205 ,1,27332,411205 ,1,27334,411205 ,1,27335,366365 ,1,27339,411205 ,1,27340,411205 ,1,27342,366340 ,1,27344,366330 ,1,27346,411205 ,1,27348,411205 ,1,27351,411205 ,1,27352,411205 ,1,27353,411205 ,1,27354,411205 ,1,27355,411205 ,1,27356,366320 ,1,27357,411205 ,1,27358,411205 ,1,27359,366315 ,1,27360,411205 ,1,27361,366295 ,1,27362,366285 ,1,27363,366280 ,1,27364,411205 ,1,27365,411205 ,1,27366,411205 ,1,27367,411205 ,1,27368,411205 ,1,27371,411205 ,1,27372,411205 ,1,27373,411205 ,1,27374,411205 ,1,27375,411205 ,1,27378,366265 ,1,27379,366230 ,1,27380,411205 ,1,27381,411205 ,1,27382,411205 ,1,27384,411205 ,1,27385,411205 ,1,27386,411205 ,1,27387,411205 ,1,27388,411205 ,1,27390,411205 ,1,27391,411205 ,1,27392,411205 ,1,27393,411205 ,1,27395,411205 ,1,27396,411205 ,1,27397,411205 ,1,27398,411205 ,1,27399,411200 ,1,27401,411205 ,1,27403,366220 ,1,27404,366220 ,1,27409,366210 ,1,27410,366200 ,1,27412,366210 ,1,27413,366210 ,1,27423,366195 ,1,27424,366180 ,1,27426,411195 ,1,27428,366170 ,1,27429,366160 ,1,27433,366120 ,1,27436,366110 ,1,27437,366160 ,1,27438,366160 ,1,27440,366160 ,1,27441,366160 ,1,27445,366100 ,1,27446,366100 ,1,27448,366090 ,1,27450,411190 ,1,27452,411165 ,1,27454,366160 ,1,27457,411160 ,1,27458,411160 ,1,27459,411160 ,1,27460,411160 ,1,27461,411160 ,1,27462,411160 ,1,27463,411160 ,1,27464,411160 ,1,27465,411160 ,1,27466,411160 ,1,27467,411160 ,1,27468,411160 ,1,27469,411160 ,1,27470,411160 ,1,27471,411160 ,1,27472,411160 ,1,27473,411160 ,1,27474,411160 ,1,27477,411160 ,1,27478,411160 ,1,27479,411160 ,1,27480,411160 ,1,27481,411160 ,1,27484,366075 ,1,27485,411160 ,1,27486,411160 ,1,27487,411160 ,1,27488,411160 ,1,27490,411160 ,1,27491,411160 ,1,27492,411160 ,1,27493,366065 ,1,27494,411160 ,1,27496,366160 ,1,27497,366160 ,1,27498,366160 ,1,27499,366160 ,1,27501,366160 ,1,27502,366160 ,1,27503,366160 ,1,27504,366055 ,1,27505,411155 ,1,27507,366045 ,1,27509,411155 ,1,27510,411155 ,1,27515,411155 ,1,27516,411155 ,1,27518,411155 ,1,27519,411155 ,1,27529,411155 ,1,27530,411155 ,1,27532,411155 ,1,27534,411155 ,1,27535,411150 ,1,27539,411155 ,1,27542,411155 ,1,27543,411155 ,1,27544,411155 ,1,27546,411155 ,1,27547,411155 ,1,27551,411155 ,1,27552,411155 ,1,27554,411155 ,1,27556,411155 ,1,27558,411155 ,1,27560,411155 ,1,27563,411155 ,1,27564,366030 ,1,27565,411145 ,1,27566,411140 ,1,27567,411155 ,1,27568,411155 ,1,27569,411155 ,1,27570,411155 ,1,27571,411155 ,1,27572,411155 ,1,27573,411155 ,1,27574,411155 ,1,27575,411155 ,1,27576,411155 ,1,27577,411155 ,1,27578,411155 ,1,27579,411155 ,1,27580,411155 ,1,27583,411135 ,1,27584,411135 ,1,27585,411155 ,1,27586,411155 ,1,27587,411155 ,1,27590,366020 ,1,27591,366010 ,1,27592,411155 ,1,27593,411155 ,1,27594,411155 ,1,27596,411155 ,1,27597,411155 ,1,27598,411155 ,1,27599,411155 ,1,27600,411155 ,1,27602,411155 ,1,27603,411155 ,1,27604,411155 ,1,27605,411155 ,1,27607,411155 ,1,27608,411155 ,1,27609,411155 ,1,27610,411155 ,1,27611,366000 ,1,27613,411155 ,1,27614,365990 ,1,27616,365980 ,1,27617,365970 ,1,27619,365990 ,1,27621,365960 ,1,27622,365920 ,1,27623,365990 ,1,27625,365605 ,1,27627,365990 ,1,27628,365990 ,1,27630,365595 ,1,27631,365585 ,1,27633,365565 ,1,27634,365990 ,1,27635,365555 ,1,27636,365990 ,1,27637,365545 ,1,27638,365545 ,1,27642,365535 ,1,27643,365990 ,1,27645,365500 ,1,27648,365490 ,1,27649,365215 ,1,27651,365990 ,1,27653,364940 ,1,27654,364925 ,1,27656,365990 ,1,27658,364915 ,1,27659,364905 ,1,27660,365990 ,1,27662,364895 ,1,27664,364885 ,1,27666,364875 ,1,27667,365990 ,1,27668,365990 ,1,27669,365990 ,1,27670,365990 ,1,27672,364865 ,1,27673,365990 ,1,27676,364825 ,1,27678,364825 ,1,27679,364825 ,1,27680,364825 ,1,27681,364825 ,1,27682,364825 ,1,27684,365990 ,1,27686,364810 ,1,27688,364800 ,1,27690,364790 ,1,27692,364780 ,1,27694,365990 ,1,27695,364770 ,1,27696,365990 ,1,27697,365990 ,1,27698,364760 ,1,27700,364750 ,1,27701,364725 ,1,27702,365990 ,1,27704,364565 ,1,27705,364460 ,1,27706,365990 ,1,27708,365990 ,1,27709,365990 ,1,27710,365990 ,1,27711,364450 ,1,27712,364450 ,1,27717,364450 ,1,27718,364450 ,1,27720,364450 ,1,27721,364450 ,1,27731,411075 ,1,27732,411075 ,1,27734,411075 ,1,27736,411075 ,1,27737,411075 ,1,27741,411070 ,1,27744,411075 ,1,27745,411065 ,1,27746,411040 ,1,27748,411035 ,1,27749,411030 ,1,27753,411075 ,1,27754,411075 ,1,27756,411075 ,1,27758,411075 ,1,27760,411075 ,1,27762,411075 ,1,27765,411075 ,1,27766,411075 ,1,27767,411075 ,1,27768,411075 ,1,27769,411075 ,1,27770,411075 ,1,27771,411075 ,1,27772,411075 ,1,27773,411075 ,1,27774,411075 ,1,27775,411075 ,1,27776,411075 ,1,27777,411075 ,1,27778,411075 ,1,27779,411075 ,1,27780,411075 ,1,27781,411075 ,1,27782,364440 ,1,27785,411075 ,1,27786,411075 ,1,27787,411075 ,1,27788,411075 ,1,27789,411075 ,1,27792,411075 ,1,27793,411075 ,1,27794,411075 ,1,27795,411075 ,1,27796,411075 ,1,27798,364405 ,1,27799,364405 ,1,27800,364395 ,1,27801,411075 ,1,27802,411025 ,1,27804,411075 ,1,27805,411075 ,1,27806,411075 ,1,27807,411075 ,1,27809,411075 ,1,27810,411075 ,1,27811,411075 ,1,27812,411075 ,1,27813,411015 ,1,27814,411015 ,1,27815,411075 ,1,27819,411015 ,1,27820,411015 ,1,27822,411015 ,1,27823,411015 ,1,27833,364385 ,1,27834,364375 ,1,27836,364365 ,1,27838,364385 ,1,27839,364350 ,1,27843,364385 ,1,27846,364385 ,1,27847,364385 ,1,27848,364340 ,1,27850,364385 ,1,27851,364385 ,1,27855,364385 ,1,27856,364385 ,1,27858,364385 ,1,27860,364385 ,1,27862,364385 ,1,27864,364385 ,1,27867,364385 ,1,27868,364385 ,1,27869,364385 ,1,27870,364385 ,1,27871,364385 ,1,27872,364385 ,1,27873,364385 ,1,27874,364385 ,1,27875,364385 ,1,27876,364385 ,1,27877,364385 ,1,27878,364330 ,1,27879,364385 ,1,27880,364385 ,1,27881,364295 ,1,27882,364385 ,1,27883,364385 ,1,27884,364385 ,1,27887,364385 ,1,27888,364385 ,1,27889,364385 ,1,27890,364385 ,1,27891,364385 ,1,27894,364385 ,1,27895,364385 ,1,27896,364385 ,1,27897,364385 ,1,27898,364385 ,1,27900,364385 ,1,27901,364285 ,1,27902,364275 ,1,27903,364385 ,1,27904,364385 ,1,27906,364385 ,1,27907,364385 ,1,27908,364385 ,1,27909,364385 ,1,27911,364385 ,1,27912,364385 ,1,27913,364385 ,1,27914,364385 ,1,27915,364265 ,1,27916,364265 ,1,27917,364385 ,1,27921,364255 ,1,27922,364255 ,1,27924,364255 ,1,27925,364255 ,1,27935,364245 ,1,27936,364245 ,1,27938,364235 ,1,27940,364225 ,1,27941,364180 ,1,27945,364170 ,1,27948,364160 ,1,27949,364180 ,1,27950,364180 ,1,27952,364180 ,1,27953,364150 ,1,27957,364135 ,1,27958,364135 ,1,27960,364125 ,1,27962,363570 ,1,27964,363560 ,1,27966,364180 ,1,27969,411005 ,1,27970,411005 ,1,27971,363550 ,1,27972,411005 ,1,27973,411005 ,1,27974,411005 ,1,27975,411005 ,1,27976,411005 ,1,27977,411005 ,1,27978,411005 ,1,27979,411005 ,1,27980,411005 ,1,27981,411005 ,1,27982,411005 ,1,27983,411005 ,1,27984,363540 ,1,27985,363505 ,1,27986,411005 ,1,27989,411005 ,1,27990,411005 ,1,27991,411005 ,1,27992,411005 ,1,27993,411005 ,1,27995,363495 ,1,27996,363485 ,1,27997,411005 ,1,27998,411005 ,1,27999,411005 ,1,28000,411005 ,1,28002,411005 ,1,28003,411005 ,1,28004,363475 ,1,28005,363460 ,1,28006,411005 ,1,28008,363450 ,1,28009,363450 ,1,28010,363450 ,1,28011,363450 ,1,28013,363450 ,1,28014,363450 ,1,28015,363450 ,1,28016,363450 ,1,28017,363440 ,1,28018,363430 ,1,28019,363400 ,1,28046,363390 ,1,28047,363380 ,1,28048,363390 ,1,28049,363390 ,1,28050,363380 ,1,28051,363390 ,1,28052,363390 ,1,28053,363380 ,1,28054,363390 ,1,28055,363390 ,1,28056,363380 ,1,28057,363390 ,1,28058,363390 ,1,28059,363380 ,1,28060,363390 ,1,28061,363390 ,1,28062,363380 ,1,28063,363390 ,1,28064,363390 ,1,28065,363380 ,1,28066,363390 ,1,28067,363390 ,1,28068,363380 ,1,28069,363390 ,1,28070,363390 ,1,28071,363380 ,1,28072,363390 ,1,28073,363370 ,1,28074,363345 ,1,28075,363370 ,1,28076,363370 ,1,28077,363345 ,1,28078,363370 ,1,28079,363335 ,1,28080,363325 ,1,28081,363335 ,1,28082,363315 ,1,28083,363285 ,1,28084,363315 ,1,28085,363275 ,1,28086,363265 ,1,28087,363275 ,1,28089,363255 ,1,28106,363245 ,1,28111,363235 ,1,28112,363225 ,1,28140,363170 ,1,28141,363160 ,1,28142,363140 ,1,28143,363120 ,1,28144,363110 ,1,28145,363075 ,1,28146,363055 ,1,28147,363045 ,1,28148,363015 ,1,28149,363005 ,1,28150,362995 ,1,28151,362930 ,1,28152,362920 ,1,28153,362910 ,1,28154,362880 ,1,28155,362860 ,1,28156,362825 ,1,28157,362805 ,1,28158,362780 ,1,28159,362770 ,1,28160,362750 ,1,28161,362705 ,1,28162,362695 ,1,28163,362675 ,1,28164,362655 ,1,28165,362645 ,1,28166,362590 ,1,28167,362570 ,1,28168,362560 ,1,28169,362550 ,1,28170,362530 ,1,28171,362515 ,1,28172,362500 ,1,28173,362480 ,1,28174,362460 ,1,28175,362450 ,1,28176,362430 ,1,28177,362410 ,1,28178,362400 ,1,28179,362380 ,1,28180,362370 ,1,28181,362360 ,1,28182,362350 ,1,28183,362350 ,1,28185,362340 ,1,28187,362320 ,1,28188,362310 ,1,28192,362300 ,1,28195,362290 ,1,28196,362270 ,1,28197,362260 ,1,28199,362250 ,1,28200,362240 ,1,28204,362205 ,1,28205,362205 ,1,28207,362195 ,1,28209,362195 ,1,28211,362185 ,1,28213,362195 ,1,28216,362175 ,1,28217,362175 ,1,28218,362175 ,1,28219,362175 ,1,28220,362175 ,1,28221,362175 ,1,28222,362175 ,1,28223,362175 ,1,28224,362175 ,1,28225,362175 ,1,28226,362175 ,1,28227,362165 ,1,28228,362175 ,1,28229,362175 ,1,28230,362175 ,1,28231,362175 ,1,28232,362175 ,1,28233,362175 ,1,28236,362175 ,1,28237,362175 ,1,28238,362175 ,1,28239,362175 ,1,28240,362175 ,1,28243,362160 ,1,28244,362175 ,1,28245,362145 ,1,28246,362175 ,1,28247,362135 ,1,28249,362175 ,1,28250,362175 ,1,28251,362175 ,1,28252,362175 ,1,28253,362175 ,1,28255,362115 ,1,28256,362105 ,1,28257,362095 ,1,28258,362085 ,1,28260,362095 ,1,28261,362095 ,1,28262,362095 ,1,28263,362095 ,1,28264,362070 ,1,28265,362070 ,1,28266,362055 ,1,28267,362045 ,1,28269,362035 ,1,28270,362000 ,1,28274,361990 ,1,28275,361970 ,1,28277,361955 ,1,28278,361945 ,1,28279,361935 ,1,28281,361925 ,1,28282,361890 ,1,28286,361880 ,1,28287,361880 ,1,28288,361870 ,1,28289,361860 ,1,28291,361860 ,1,28293,361845 ,1,28295,361860 ,1,28298,361835 ,1,28299,361835 ,1,28300,361835 ,1,28301,361835 ,1,28302,361835 ,1,28303,361835 ,1,28304,361835 ,1,28305,361835 ,1,28306,361835 ,1,28307,361835 ,1,28308,361835 ,1,28309,361825 ,1,28310,361835 ,1,28311,361835 ,1,28312,361835 ,1,28313,361835 ,1,28314,361835 ,1,28315,361835 ,1,28318,361835 ,1,28319,361835 ,1,28320,361835 ,1,28321,361835 ,1,28322,361835 ,1,28325,361815 ,1,28326,361835 ,1,28327,361790 ,1,28328,361835 ,1,28329,361775 ,1,28331,361835 ,1,28332,361835 ,1,28333,361835 ,1,28334,361835 ,1,28335,361835 ,1,28337,361765 ,1,28338,361755 ,1,28339,361745 ,1,28340,361735 ,1,28342,361745 ,1,28343,361745 ,1,28344,361745 ,1,28345,361745 ,1,28346,361725 ,1,28347,361725 ,1,28348,361715 ,1,28349,361685 ,1,28351,361675 ,1,28352,361665 ,1,28356,361655 ,1,28359,361640 ,1,28360,361630 ,1,28361,361620 ,1,28363,361610 ,1,28364,361575 ,1,28368,361565 ,1,28369,361565 ,1,28371,361620 ,1,28373,361620 ,1,28375,361555 ,1,28377,361620 ,1,28380,361545 ,1,28381,361545 ,1,28382,361545 ,1,28383,361545 ,1,28384,361545 ,1,28385,361545 ,1,28386,361545 ,1,28387,361545 ,1,28388,361545 ,1,28389,361545 ,1,28390,361545 ,1,28391,361535 ,1,28392,361545 ,1,28393,361545 ,1,28394,361545 ,1,28395,361545 ,1,28396,361545 ,1,28397,361545 ,1,28400,361545 ,1,28401,361545 ,1,28402,361545 ,1,28403,361545 ,1,28404,361545 ,1,28407,361530 ,1,28408,361545 ,1,28409,361515 ,1,28410,361545 ,1,28411,361505 ,1,28413,361545 ,1,28414,361545 ,1,28415,361545 ,1,28416,361545 ,1,28417,361545 ,1,28419,361480 ,1,28420,361470 ,1,28421,361460 ,1,28422,361450 ,1,28424,361460 ,1,28425,361460 ,1,28426,361460 ,1,28427,361460 ,1,28428,361435 ,1,28429,361435 ,1,28430,361425 ,1,28431,361415 ,1,28433,361405 ,1,28434,361240 ,1,28438,361230 ,1,28440,361215 ,1,28441,361205 ,1,28442,361195 ,1,28443,361185 ,1,28445,361170 ,1,28446,361160 ,1,28450,361150 ,1,28451,361150 ,1,28453,361185 ,1,28455,361185 ,1,28457,360880 ,1,28459,361185 ,1,28462,360850 ,1,28463,360850 ,1,28464,360850 ,1,28465,360850 ,1,28466,360850 ,1,28467,360850 ,1,28468,360850 ,1,28469,360850 ,1,28470,360850 ,1,28471,360850 ,1,28472,360850 ,1,28473,360840 ,1,28474,360850 ,1,28475,360850 ,1,28476,360850 ,1,28477,360850 ,1,28478,360850 ,1,28479,360850 ,1,28482,360850 ,1,28483,360850 ,1,28484,360850 ,1,28485,360850 ,1,28486,360850 ,1,28489,360830 ,1,28490,360850 ,1,28491,360820 ,1,28492,360850 ,1,28493,360800 ,1,28495,360850 ,1,28496,360850 ,1,28497,360850 ,1,28498,360850 ,1,28499,360850 ,1,28501,360795 ,1,28502,360780 ,1,28503,360770 ,1,28504,360425 ,1,28505,360420 ,1,28506,360770 ,1,28507,360770 ,1,28508,360770 ,1,28509,360770 ,1,28512,360395 ,1,28522,360385 ,1,28551,360375 ,1,28584,360365 ,1,28606,410925 ,1,28607,410925 ,1,28614,360265 ,1,28634,410915 ,1,28635,410910 ,1,28636,360255 ,1,28637,410910 ,1,28638,410910 ,1,28639,360255 ,1,28640,410910 ,1,28641,410910 ,1,28642,360255 ,1,28643,410910 ,1,28644,410910 ,1,28645,360255 ,1,28646,410910 ,1,28647,410910 ,1,28648,360255 ,1,28649,410910 ,1,28650,410910 ,1,28651,360255 ,1,28652,410910 ,1,28653,410910 ,1,28654,360255 ,1,28655,410910 ,1,28656,410910 ,1,28657,360255 ,1,28658,410910 ,1,28659,410910 ,1,28660,360255 ,1,28661,410910 ,1,28662,360205 ,1,28663,360195 ,1,28664,360205 ,1,28665,360205 ,1,28666,360195 ,1,28667,360205 ,1,28668,360170 ,1,28669,360160 ,1,28670,360170 ,1,28671,360110 ,1,28672,360100 ,1,28673,360110 ,1,28674,360060 ,1,28675,360045 ,1,28676,360060 ,1,28695,360035 ,1,28708,360005 ,1,28730,410905 ,1,28731,410900 ,1,28748,359995 ,1,28758,410895 ,1,28759,410890 ,1,28760,410885 ,1,28761,410890 ,1,28762,410890 ,1,28763,410885 ,1,28764,410890 ,1,28765,410890 ,1,28766,410885 ,1,28767,410890 ,1,28768,410890 ,1,28769,410885 ,1,28770,410890 ,1,28771,410890 ,1,28772,410885 ,1,28773,410890 ,1,28774,410890 ,1,28775,410885 ,1,28776,410890 ,1,28777,410890 ,1,28778,410885 ,1,28779,410890 ,1,28780,410890 ,1,28781,410885 ,1,28782,410890 ,1,28783,410890 ,1,28784,410885 ,1,28785,410890 ,1,28786,410880 ,1,28787,410840 ,1,28788,410880 ,1,28789,410880 ,1,28790,410840 ,1,28791,410880 ,1,28792,410835 ,1,28793,410830 ,1,28794,410835 ,1,28795,410825 ,1,28796,410820 ,1,28797,410825 ,1,28798,410815 ,1,28799,410810 ,1,28800,410815 ,1,28834,359955 ,1,28835,359935 ,1,28837,359900 ,1,28838,359900 ,1,28840,359900 ,1,28841,359900 ,1,28851,359890 ,1,28852,359890 ,1,28853,359880 ,1,28854,359870 ,1,28855,359845 ,1,28856,359870 ,1,28857,359840 ,1,28858,359830 ,1,28861,359820 ,1,28864,359785 ,1,28873,359775 ,1,28874,359775 ,1,28876,359765 ,1,28878,359765 ,1,28883,410805 ,1,28886,359755 ,1,28887,359745 ,1,28888,359755 ,1,28889,359755 ,1,28890,359745 ,1,28891,359755 ,1,28892,359755 ,1,28893,359745 ,1,28894,359755 ,1,28895,359755 ,1,28896,359745 ,1,28897,359755 ,1,28898,359755 ,1,28899,359745 ,1,28900,359755 ,1,28901,359755 ,1,28902,359745 ,1,28903,359755 ,1,28904,359755 ,1,28905,359745 ,1,28906,359755 ,1,28907,359755 ,1,28908,359745 ,1,28909,359755 ,1,28910,359755 ,1,28911,359745 ,1,28912,359755 ,1,28913,359735 ,1,28914,359725 ,1,28915,359735 ,1,28916,359735 ,1,28917,359725 ,1,28918,359735 ,1,28919,359715 ,1,28920,359700 ,1,28921,359715 ,1,28922,359690 ,1,28923,359680 ,1,28924,359690 ,1,28925,359670 ,1,28926,359650 ,1,28927,359670 ,1,28928,359635 ,1,28935,359630 ,1,28950,359580 ,1,28951,359565 ,1,28979,410785 ,1,28980,410780 ,1,28981,410785 ,1,28982,410785 ,1,28983,410780 ,1,28984,410785 ,1,28985,410785 ,1,28986,410780 ,1,28987,410785 ,1,28988,410785 ,1,28989,410780 ,1,28990,410785 ,1,28991,410785 ,1,28992,410780 ,1,28993,410785 ,1,28994,410785 ,1,28995,410780 ,1,28996,410785 ,1,28997,410785 ,1,28998,410780 ,1,28999,410785 ,1,29000,410785 ,1,29001,410780 ,1,29002,410785 ,1,29003,410785 ,1,29004,410780 ,1,29005,410785 ,1,29006,410775 ,1,29007,410770 ,1,29008,410775 ,1,29009,410775 ,1,29010,410770 ,1,29011,410775 ,1,29012,410765 ,1,29013,410760 ,1,29014,410765 ,1,29015,410755 ,1,29016,410750 ,1,29017,410755 ,1,29018,359560 ,1,29019,359550 ,1,29020,359560 ,1,29027,359535 ,1,29049,359535 ,1,29050,359535 ,1,29062,359530 ,1,29074,359515 ,1,29077,359510 ,1,29078,359480 ,1,29079,359470 ,1,29080,359480 ,1,29081,359480 ,1,29082,359470 ,1,29083,359480 ,1,29084,359480 ,1,29085,359470 ,1,29086,359480 ,1,29087,359480 ,1,29088,359470 ,1,29089,359480 ,1,29090,359480 ,1,29091,359470 ,1,29092,359480 ,1,29093,359480 ,1,29094,359470 ,1,29095,359480 ,1,29096,359480 ,1,29097,359470 ,1,29098,359480 ,1,29099,359480 ,1,29100,359470 ,1,29101,359480 ,1,29102,359480 ,1,29103,359470 ,1,29104,359480 ,1,29105,359460 ,1,29106,359450 ,1,29107,359460 ,1,29108,359460 ,1,29109,359450 ,1,29110,359460 ,1,29111,359440 ,1,29112,359425 ,1,29113,359440 ,1,29114,359415 ,1,29115,359405 ,1,29116,359415 ,1,29117,359365 ,1,29118,359355 ,1,29119,359365 ,1,29133,359345 ,1,29151,359335 ,1,29158,359325 ,1,29207,410735 ,1,29211,410730 ,1,29212,410730 ,1,29217,410725 ,1,29218,410725 ,1,29219,410725 ,1,29222,359315 ,1,29223,359315 ,1,29224,359315 ,1,29226,359315 ,1,29227,359315 ,1,29228,359315 ,1,29255,359305 ,1,29257,359290 ,1,29259,359290 ,1,29260,359290 ,1,29312,410720 ,1,29322,359270 ,1,29323,359270 ,1,29324,359270 ,1,29325,359270 ,1,29326,359270 ,1,29327,359270 ,1,29328,359270 ,1,29329,359270 ,1,29330,359270 ,1,29331,359270 ,1,29332,359270 ,1,29333,359270 ,1,29345,359265 ,1,29347,359255 ,1,29348,359255 ,1,29350,359255 ,1,29351,359255 ,1,29361,359245 ,1,29362,359245 ,1,29364,359225 ,1,29366,359225 ,1,29367,359265 ,1,29368,359215 ,1,29371,359200 ,1,29374,359190 ,1,29383,359150 ,1,29384,359150 ,1,29386,359140 ,1,29388,359140 ,1,29396,410710 ,1,29397,359130 ,1,29398,410710 ,1,29399,410710 ,1,29400,359130 ,1,29401,410710 ,1,29402,410710 ,1,29403,359130 ,1,29404,410710 ,1,29405,410710 ,1,29406,359130 ,1,29407,410710 ,1,29408,410710 ,1,29409,359130 ,1,29410,410710 ,1,29411,410710 ,1,29412,359130 ,1,29413,410710 ,1,29414,410710 ,1,29415,359130 ,1,29416,410710 ,1,29417,410710 ,1,29418,359130 ,1,29419,410710 ,1,29420,410710 ,1,29421,359130 ,1,29422,410710 ,1,29423,410705 ,1,29424,359120 ,1,29425,410705 ,1,29426,410705 ,1,29427,359120 ,1,29428,410705 ,1,29429,410700 ,1,29430,359110 ,1,29431,410700 ,1,29432,410695 ,1,29433,359100 ,1,29434,410695 ,1,29435,410660 ,1,29436,359090 ,1,29437,410660 ,1,29445,359080 ,1,29476,410655 ,1,29482,359060 ,1,29483,359050 ,1,29498,410655 ,1,29499,410655 ,1,29526,410650 ,1,29527,410645 ,1,29528,359035 ,1,29529,410645 ,1,29530,410645 ,1,29531,359035 ,1,29532,410645 ,1,29533,410645 ,1,29534,359035 ,1,29535,410645 ,1,29536,410645 ,1,29537,359035 ,1,29538,410645 ,1,29539,410645 ,1,29540,359035 ,1,29541,410645 ,1,29542,410645 ,1,29543,359035 ,1,29544,410645 ,1,29545,410645 ,1,29546,359035 ,1,29547,410645 ,1,29548,410645 ,1,29549,359035 ,1,29550,410645 ,1,29551,410645 ,1,29552,359035 ,1,29553,410645 ,1,29554,410640 ,1,29555,359025 ,1,29556,410640 ,1,29557,410640 ,1,29558,359025 ,1,29559,410640 ,1,29560,410635 ,1,29561,359015 ,1,29562,410635 ,1,29563,410630 ,1,29564,359005 ,1,29565,410630 ,1,29566,410625 ,1,29567,359000 ,1,29568,410625 ,1,29569,358990 ,1,29582,410580 ,1,29591,358990 ,1,29592,358990 ,1,29620,410575 ,1,29621,410570 ,1,29622,410575 ,1,29623,410575 ,1,29624,410570 ,1,29625,410575 ,1,29626,410575 ,1,29627,410570 ,1,29628,410575 ,1,29629,410575 ,1,29630,410570 ,1,29631,410575 ,1,29632,410575 ,1,29633,410570 ,1,29634,410575 ,1,29635,410575 ,1,29636,410570 ,1,29637,410575 ,1,29638,410575 ,1,29639,410570 ,1,29640,410575 ,1,29641,410575 ,1,29642,410570 ,1,29643,410575 ,1,29644,410575 ,1,29645,410570 ,1,29646,410575 ,1,29647,410565 ,1,29648,410555 ,1,29649,410565 ,1,29650,410565 ,1,29651,410555 ,1,29652,410565 ,1,29653,358940 ,1,29654,358925 ,1,29655,358940 ,1,29656,410550 ,1,29657,358905 ,1,29658,410550 ,1,29659,358895 ,1,29660,358885 ,1,29661,358895 ,1,29662,358875 ,1,29668,410545 ,1,29671,410540 ,1,29684,358840 ,1,29685,358830 ,1,29713,358820 ,1,29714,358810 ,1,29715,358820 ,1,29716,358800 ,1,29717,358790 ,1,29718,358800 ,1,29719,358780 ,1,29720,358740 ,1,29721,358780 ,1,29722,358730 ,1,29723,358720 ,1,29724,358730 ,1,29725,358710 ,1,29726,358695 ,1,29727,358710 ,1,29728,358685 ,1,29729,358675 ,1,29730,358685 ,1,29731,358665 ,1,29732,358630 ,1,29733,358665 ,1,29734,358620 ,1,29735,358610 ,1,29736,358620 ,1,29737,358600 ,1,29738,358590 ,1,29739,358600 ,1,29740,358580 ,1,29741,358570 ,1,29742,358580 ,1,29743,358560 ,1,29744,358525 ,1,29745,358560 ,1,29746,358515 ,1,29747,358500 ,1,29748,358515 ,1,29749,358490 ,1,29750,358480 ,1,29751,358490 ,1,29752,358475 ,1,29753,358465 ,1,29754,358475 ,1,29759,410520 ,1,29760,410520 ,1,29761,410520 ,1,29763,410515 ,1,29791,410510 ,1,29807,410505 ,1,29809,410490 ,1,29815,357425 ,1,29838,410455 ,1,29844,357225 ,1,29849,357210 ,1,29850,357205 ,1,29852,357195 ,1,29853,357175 ,1,29855,357170 ,1,29858,357160 ,1,29859,410450 ,1,29860,357150 ,1,29861,357110 ,1,29865,357100 ,1,29866,357090 ,1,29875,357080 ,1,29876,357070 ,1,29902,410445 ,1,29904,356930 ,1,29905,356920 ,1,29906,356930 ,1,29907,356905 ,1,29908,356895 ,1,29909,356905 ,1,29910,356885 ,1,29911,356855 ,1,29912,356885 ,1,29913,356835 ,1,29914,356800 ,1,29915,356775 ,1,29916,356755 ,1,29917,356680 ,1,29918,356670 ,1,29919,356660 ,1,29920,356640 ,1,29921,356660 ,1,29922,356630 ,1,29923,356610 ,1,29924,356630 ,1,29925,356575 ,1,29926,356565 ,1,29927,356575 ,1,29928,356555 ,1,29929,356525 ,1,29930,356555 ,1,29931,356515 ,1,29932,356460 ,1,29933,356515 ,1,29934,356450 ,1,29935,356440 ,1,29936,356450 ,1,29937,356430 ,1,29938,356390 ,1,29939,356430 ,1,29940,356380 ,1,29941,356330 ,1,29942,356380 ,1,29943,356320 ,1,29944,356290 ,1,29945,356320 ,1,29966,356280 ,1,29968,363430 ,1,29973,356270 ,1,29974,356230 ,1,29976,356220 ,1,29985,356205 ,1,29986,356205 ,1,29987,356205 ,1,30006,410440 ,1,30007,410430 ,1,30009,356200 ,1,30011,356200 ,1,30012,356200 ,1,30014,356190 ,1,30029,410425 ,1,30030,410420 ,1,30040,356155 ,1,30041,356125 ,1,30045,356115 ,1,30053,356100 ,1,30055,356090 ,1,30060,356080 ,1,30062,363225 ,1,30073,356075 ,1,30074,356065 ,1,30075,356055 ,1,30076,356015 ,1,30077,356090 ,1,30078,356090 ,1,30097,356010 ,1,30098,356010 ,1,30099,356010 ,1,30101,355995 ,1,30106,355990 ,1,30107,355980 ,1,30108,355990 ,1,30109,355990 ,1,30110,355980 ,1,30111,355990 ,1,30112,355990 ,1,30113,355980 ,1,30114,355990 ,1,30115,355990 ,1,30116,355980 ,1,30117,355990 ,1,30118,355990 ,1,30119,355980 ,1,30120,355990 ,1,30121,355990 ,1,30122,355980 ,1,30123,355990 ,1,30124,355990 ,1,30125,355980 ,1,30126,355990 ,1,30127,355990 ,1,30128,355980 ,1,30129,355990 ,1,30130,355990 ,1,30131,355980 ,1,30132,355990 ,1,30133,410415 ,1,30134,355945 ,1,30135,410415 ,1,30136,410415 ,1,30137,355945 ,1,30138,410415 ,1,30139,355890 ,1,30140,355845 ,1,30141,355890 ,1,30142,410395 ,1,30143,355750 ,1,30144,410395 ,1,30145,410390 ,1,30146,355680 ,1,30147,410390 ,1,30153,355670 ,1,30155,355660 ,1,30205,355650 ,1,30206,355650 ,1,30208,355640 ,1,30212,355630 ,1,30217,355590 ,1,30218,410385 ,1,30219,354965 ,1,30221,354940 ,1,30249,354930 ,1,30257,410370 ,1,30284,410365 ,1,30285,410360 ,1,30286,410360 ,1,30287,410360 ,1,30290,354920 ,1,30309,410355 ,1,30339,354895 ,1,30340,354895 ,1,30346,354880 ,1,30347,354880 ,1,30348,354880 ,1,30349,354880 ,1,30350,354880 ,1,30351,354880 ,1,30352,354880 ,1,30353,354880 ,1,30357,354880 ,1,30358,354880 ,1,30362,354880 ,1,30364,354790 ,1,30365,354880 ,1,30366,354880 ,1,30367,354880 ,1,30369,354780 ,1,30370,354880 ,1,30383,354765 ,1,30384,354765 ,1,30385,410315 ,1,30386,354760 ,1,30398,354310 ,1,30415,354175 ,1,30428,354165 ,1,30431,354155 ,1,30432,354150 ,1,30439,410285 ,1,30461,354135 ,1,30469,354130 ,1,30489,354115 ,1,30490,354105 ,1,30491,354090 ,1,30492,354075 ,1,30505,354065 ,1,30506,354055 ,1,30508,354065 ,1,30517,354040 ,1,30519,354030 ,1,30523,354020 ,1,30524,354010 ,1,30525,354020 ,1,30539,353985 ,1,30555,410925 ,1,30557,410925 ,1,30559,353915 ,1,30572,353870 ,1,30573,353870 ,1,30574,353870 ,1,30575,353870 ,1,30576,353870 ,1,30577,353870 ,1,30578,353870 ,1,30579,353870 ,1,30583,353870 ,1,30584,353870 ,1,30588,353870 ,1,30591,353870 ,1,30592,353870 ,1,30593,353870 ,1,30595,353860 ,1,30596,353870 ,1,30618,353850 ,1,30625,410280 ,1,30650,353840 ,1,30651,353825 ,1,30654,353815 ,1,30657,353805 ,1,30658,353795 ,1,30659,410275 ,1,30660,410275 ,1,30665,410250 ,1,30668,353755 ,1,30674,410245 ,1,30679,353590 ,1,30681,410900 ,1,30684,353580 ,1,30685,353580 ,1,30686,353580 ,1,30687,353580 ,1,30688,353580 ,1,30689,353580 ,1,30690,353580 ,1,30691,353580 ,1,30695,353580 ,1,30696,353580 ,1,30700,353580 ,1,30703,353580 ,1,30704,353580 ,1,30705,353580 ,1,30706,344570 ,1,30707,344560 ,1,30708,353580 ,1,30734,344115 ,1,30744,344105 ,1,30756,344070 ,1,30757,344050 ,1,30758,344000 ,1,30759,343970 ,1,30766,343960 ,1,30769,343950 ,1,30770,343940 ,1,30780,410170 ,1,30781,410165 ,1,30806,343925 ,1,30808,359830 ,1,30809,410160 ,1,30823,410155 ,1,30839,410150 ,1,30868,343905 ,1,30883,343895 ,1,30899,343850 ,1,30901,359565 ,1,30939,410135 ,1,30940,410135 ,1,30941,343840 ,1,30942,343830 ,1,30943,410130 ,1,30945,343820 ,1,30946,343820 ,1,30947,343820 ,1,30948,343820 ,1,30949,343820 ,1,30950,343820 ,1,30951,343820 ,1,30954,343805 ,1,30959,343795 ,1,30960,343795 ,1,30962,343785 ,1,30965,343775 ,1,30968,343755 ,1,30969,410125 ,1,30970,410120 ,1,30971,410105 ,1,30975,343745 ,1,30976,343745 ,1,30995,343735 ,1,30998,359535 ,1,31000,359535 ,1,31021,410100 ,1,31088,343725 ,1,31154,410090 ,1,31165,343385 ,1,31166,343385 ,1,31167,343360 ,1,31168,343350 ,1,31171,343340 ,1,31172,343340 ,1,31173,343340 ,1,31174,343340 ,1,31175,343340 ,1,31176,343340 ,1,31177,343340 ,1,31180,343330 ,1,31185,343310 ,1,31186,343310 ,1,31187,343290 ,1,31188,343280 ,1,31191,343235 ,1,31194,343225 ,1,31195,343215 ,1,31196,343205 ,1,31197,343195 ,1,31201,343185 ,1,31202,343185 ,1,31277,410050 ,1,31278,410050 ,1,31279,343175 ,1,31280,343165 ,1,31283,343140 ,1,31284,343140 ,1,31285,343140 ,1,31286,343140 ,1,31287,343140 ,1,31288,343140 ,1,31289,343140 ,1,31292,343130 ,1,31297,343120 ,1,31298,343120 ,1,31300,343110 ,1,31303,343100 ,1,31306,343090 ,1,31307,410045 ,1,31308,410040 ,1,31309,410035 ,1,31313,296910 ,1,31314,296910 ,1,31316,359265 ,1,31318,359215 ,1,31323,408850 ,1,31324,408850 ,1,31325,408850 ,1,31341,408845 ,1,31350,408715 ,1,31435,408685 ,1,31447,410655 ,1,31449,410655 ,1,31505,294860 ,1,31540,358990 ,1,31542,358990 ,1,31633,294845 ,1,31635,294845 ,1,31636,294825 ,1,31674,408680 ,1,31675,294815 ,1,31729,294805 ,1,31749,284365 ,1,31755,408515 ,1,31756,408510 ,1,31757,408485 ,1,31761,284325 ,1,31762,284325 ,1,31763,284325 ,1,31767,284315 ,1,31772,284225 ,1,31822,284215 ,1,31824,283375 ,1,31826,357070 ,1,32013,283365 ,1,32026,356090 ,1,32028,356090 ,1,32215,280685 ,2,821,218150 ,2,822,138810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520165 ,2,827,128390 ,2,828,463180 ,2,821,220400 ,2,822,45775 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,220540 ,2,822,163010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520140 ,2,827,75 ,2,828,463190 ,2,821,221890 ,1,0,2210 ,1,1,542350 ,2,822,110340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520170 ,2,827,40735 ,2,828,463195 ,2,821,231310 ,2,822,65870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,463200 ,2,821,231930 ,2,822,200710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,232210 ,2,822,56530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463205 ,2,821,232770 ,1,0,582715 ,1,1,45 ,1,2,321915 ,1,3,321915 ,2,822,171290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520175 ,2,827,75 ,2,828,463230 ,2,821,236355 ,1,0,45 ,1,1,9435 ,1,2,340770 ,2,822,96615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520180 ,2,827,75 ,2,828,463240 ,2,821,240475 ,1,0,325930 ,2,822,128135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520185 ,2,827,75 ,2,828,463245 ,2,821,241570 ,1,0,45 ,1,1,9435 ,2,822,67735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520190 ,2,827,75 ,2,828,463250 ,2,821,244210 ,2,822,60060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463255 ,2,821,244770 ,2,822,132635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520195 ,2,827,75 ,2,828,463260 ,2,821,245845 ,1,0,265855 ,2,822,166275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520200 ,2,827,75 ,2,828,463285 ,2,821,250010 ,2,822,65815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,463290 ,2,821,251080 ,2,822,200685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463295 ,2,821,251865 ,2,822,56395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520230 ,2,827,75 ,2,828,463315 ,2,821,254545 ,2,822,201020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520240 ,2,827,128450 ,2,828,463330 ,2,821,258065 ,2,822,45785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,258225 ,2,822,45795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,258380 ,1,0,542920 ,1,1,596675 ,1,2,542920 ,2,822,200960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520235 ,2,827,75 ,2,828,463325 ,2,821,263135 ,2,822,200970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496945 ,2,827,75 ,2,828,463320 ,2,821,265030 ,2,822,200950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520240 ,2,827,128460 ,2,828,463355 ,2,821,268490 ,2,822,56180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,463360 ,2,821,269210 ,1,0,45 ,1,1,5900 ,2,822,112485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507035 ,2,827,75 ,2,828,463365 ,2,821,272015 ,2,822,154075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520140 ,2,827,75 ,2,828,463370 ,2,821,273310 ,2,822,194485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520255 ,2,827,75 ,2,828,463380 ,2,821,276735 ,1,0,45 ,1,1,5900 ,2,822,152775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507035 ,2,827,75 ,2,828,463365 ,2,821,279430 ,1,0,575650 ,1,1,45 ,1,2,5900 ,2,822,134885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507035 ,2,827,75 ,2,828,463365 ,2,821,282210 ,2,822,148360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520260 ,2,827,128470 ,2,828,463385 ,2,821,283885 ,1,0,45 ,1,1,5900 ,2,822,160595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520265 ,2,827,75 ,2,828,463390 ,2,821,286685 ,1,0,569470 ,1,1,45 ,1,2,5900 ,2,822,109535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520270 ,2,827,75 ,2,828,463395 ,2,821,289335 ,1,0,569260 ,1,1,45 ,1,2,5900 ,1,3,209590 ,2,822,108050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507035 ,2,827,75 ,2,828,463365 ,2,821,292105 ,1,0,609625 ,1,1,45 ,1,2,5900 ,2,822,116465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520285 ,2,827,75 ,2,828,463425 ,2,821,295265 ,2,822,138520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520290 ,2,827,75 ,2,828,463430 ,2,821,296470 ,2,822,159565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520140 ,2,827,75 ,2,828,463370 ,2,821,297755 ,2,822,101480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520295 ,2,827,75 ,2,828,463440 ,2,821,301570 ,2,822,119580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520300 ,2,827,75 ,2,828,463445 ,2,821,303940 ,2,822,60030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,463450 ,2,821,304675 ,2,822,114170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520305 ,2,827,75 ,2,828,463455 ,2,821,306035 ,2,822,81400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520310 ,2,827,75 ,2,828,463480 ,2,821,307885 ,2,822,58785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,463485 ,2,821,308520 ,2,822,201055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520315 ,2,827,75 ,2,828,463490 ,2,821,309370 ,2,822,45805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,309530 ,2,822,45815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,309685 ,2,822,201115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,463495 ,2,821,310520 ,2,822,45845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,310670 ,2,822,45855 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,310835 ,1,0,556265 ,2,822,201155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520350 ,2,827,75 ,2,828,463510 ,2,821,312565 ,2,822,45865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,312740 ,2,822,45885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,312910 ,2,822,201230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,463515 ,2,821,314690 ,1,0,556260 ,2,822,201275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520355 ,2,827,75 ,2,828,463520 ,2,821,316250 ,2,822,45905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,316405 ,2,822,45915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,316570 ,2,822,201295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,463525 ,2,821,318370 ,2,822,66100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,463560 ,2,821,319445 ,2,822,45945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,319600 ,2,822,65920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520360 ,2,827,128790 ,2,828,463565 ,2,821,328590 ,1,0,554975 ,2,822,201470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520380 ,2,827,128850 ,2,828,463585 ,2,821,330225 ,1,0,555095 ,1,1,45 ,1,2,11510 ,2,822,201450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520375 ,2,827,128800 ,2,828,463570 ,2,821,338275 ,1,0,45 ,1,1,11510 ,2,822,201405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520365 ,2,827,128800 ,2,828,463575 ,2,821,344620 ,2,822,45965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,344805 ,2,822,45975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,344940 ,1,0,554470 ,2,822,200900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520385 ,2,827,128905 ,2,828,463590 ,2,821,346435 ,2,822,45985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,346590 ,2,822,200785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,346910 ,2,822,201555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,463595 ,2,821,347780 ,2,822,45995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,347950 ,2,822,46005 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,348095 ,2,822,58265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463600 ,2,821,349270 ,2,822,92100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520390 ,2,827,75 ,2,828,463620 ,2,821,351240 ,2,822,201565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493150 ,2,827,75 ,2,828,463615 ,2,821,354095 ,2,822,46015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,354265 ,2,822,79060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463625 ,2,821,355155 ,2,822,46045 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,355320 ,2,822,56645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520425 ,2,827,129055 ,2,828,463630 ,2,821,357230 ,1,0,555155 ,2,822,56425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520430 ,2,827,75 ,2,828,463640 ,2,821,360920 ,2,822,46055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,361070 ,2,822,201680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520435 ,2,827,75 ,2,828,463645 ,2,821,363410 ,2,822,46065 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,363580 ,1,0,543310 ,1,1,596675 ,1,2,543310 ,2,822,201710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520440 ,2,827,75 ,2,828,463650 ,2,821,367305 ,2,822,46075 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,367470 ,2,822,99950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520435 ,2,827,75 ,2,828,463655 ,2,821,369810 ,1,0,556560 ,1,1,373825 ,2,822,165800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520460 ,2,827,75 ,2,828,463690 ,2,821,372850 ,2,822,46085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,373010 ,2,822,200930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520435 ,2,827,75 ,2,828,463695 ,2,821,375250 ,2,822,46095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,375355 ,2,822,200575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520435 ,2,827,75 ,2,828,463700 ,2,821,376755 ,2,822,46105 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,376845 ,2,822,63550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520465 ,2,827,129190 ,2,828,463705 ,2,821,377710 ,2,822,84725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520470 ,2,827,129190 ,2,828,463710 ,2,821,378345 ,2,822,84600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520475 ,2,827,75 ,2,828,463715 ,2,821,378930 ,2,822,108600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520520 ,2,827,75 ,2,828,463720 ,2,821,381590 ,2,822,108910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520120 ,2,827,75 ,2,828,463725 ,2,821,384280 ,2,822,122895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520525 ,2,827,75 ,2,828,463740 ,2,821,386530 ,2,822,167725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463745 ,2,821,386920 ,2,822,101795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520530 ,2,827,75 ,2,828,463750 ,2,821,391890 ,2,822,102060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520530 ,2,827,75 ,2,828,463755 ,2,821,397035 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,2,822,65880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520535 ,2,827,24980 ,2,828,463760 ,2,821,411020 ,2,822,200720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,411565 ,2,822,56705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520540 ,2,827,75 ,2,828,463765 ,2,821,413350 ,2,822,56210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520545 ,2,827,24980 ,2,828,463770 ,2,821,422070 ,2,822,97620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,463775 ,2,821,422720 ,2,822,201805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520550 ,2,827,75 ,2,828,463805 ,2,821,423950 ,1,0,589130 ,1,1,45 ,1,2,9435 ,1,3,327000 ,1,4,2210 ,1,5,542350 ,2,822,201815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520555 ,2,827,75 ,2,828,463810 ,2,821,426205 ,2,822,46115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,426325 ,1,0,328705 ,1,1,328695 ,2,822,201825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520570 ,2,827,75 ,2,828,463815 ,2,821,428520 ,1,0,14260 ,1,1,14230 ,1,2,328715 ,1,3,176915 ,2,822,201835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520575 ,2,827,75 ,2,828,463820 ,2,821,432370 ,1,0,10815 ,2,822,189670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520580 ,2,827,75 ,2,828,463835 ,2,821,433445 ,2,822,63725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520585 ,2,827,129055 ,2,828,463840 ,2,821,434725 ,1,0,554310 ,2,822,125065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520605 ,2,827,128850 ,2,828,463845 ,2,821,435590 ,1,0,557085 ,2,822,65860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,463850 ,2,821,436780 ,2,822,200695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495245 ,2,827,75 ,2,828,463880 ,2,821,437280 ,1,0,556055 ,2,822,60550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520610 ,2,827,75 ,2,828,463885 ,2,821,438390 ,1,0,556555 ,2,822,99940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520610 ,2,827,75 ,2,828,463890 ,2,821,439480 ,1,0,557345 ,2,822,60925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520615 ,2,827,75 ,2,828,463895 ,2,821,440605 ,2,822,97465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520620 ,2,827,24980 ,2,828,463905 ,2,821,444860 ,2,822,60040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520650 ,2,827,24980 ,2,828,463910 ,2,821,448430 ,2,822,167735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,463915 ,2,821,448820 ,1,0,556335 ,2,822,82610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520610 ,2,827,75 ,2,828,463920 ,2,821,449915 ,2,822,124845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520655 ,2,827,129280 ,2,828,463945 ,2,821,454125 ,1,0,556330 ,2,822,97505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,463950 ,2,821,455285 ,2,822,200045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,455670 ,1,0,557065 ,2,822,60080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,463955 ,2,821,456725 ,1,0,554285 ,2,822,124910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,463960 ,2,821,457850 ,2,822,119540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520300 ,2,827,75 ,2,828,463965 ,2,821,459250 ,1,0,251790 ,1,1,251825 ,1,2,251815 ,1,3,251780 ,2,822,142105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520660 ,2,827,87510 ,2,828,463970 ,2,821,463825 ,1,0,224430 ,2,822,114150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520665 ,2,827,75 ,2,828,463975 ,2,821,464460 ,2,822,123770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520675 ,2,827,75 ,2,828,463980 ,2,821,465645 ,2,822,202995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,464290 ,2,821,466075 ,1,0,5320 ,1,1,339375 ,1,2,339365 ,1,3,339355 ,2,822,202950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520885 ,2,827,130140 ,2,828,464285 ,2,821,469475 ,2,822,46150 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,469575 ,1,0,221135 ,1,1,339820 ,1,2,339800 ,1,3,339790 ,2,822,201910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520680 ,2,827,75 ,2,828,464025 ,2,821,477915 ,1,0,310100 ,1,1,339475 ,2,822,201925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520685 ,2,827,75 ,2,828,464030 ,2,821,480315 ,2,822,201935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496950 ,2,827,129330 ,2,828,464035 ,2,821,481135 ,2,822,201955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496165 ,2,827,75 ,2,828,464095 ,2,821,481405 ,1,0,190855 ,1,1,190865 ,1,2,339725 ,1,3,339715 ,1,4,264190 ,1,5,264150 ,2,822,202495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520725 ,2,827,129360 ,2,828,464040 ,2,821,486315 ,2,822,202005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520720 ,2,827,75 ,2,828,464080 ,2,821,486755 ,1,0,305210 ,1,1,339550 ,2,822,202015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520690 ,2,827,75 ,2,828,464050 ,2,821,488650 ,2,822,202055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520715 ,2,827,129435 ,2,828,464055 ,2,821,493710 ,2,822,46205 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,493805 ,1,0,305275 ,1,1,339780 ,1,2,339770 ,1,3,339735 ,2,822,202160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520705 ,2,827,75 ,2,828,464060 ,2,821,496200 ,2,822,46260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,496300 ,1,0,339525 ,1,1,339515 ,1,2,339505 ,1,3,339495 ,2,822,202290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520710 ,2,827,75 ,2,828,464065 ,2,821,498690 ,2,822,46170 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,498790 ,2,822,202460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,464085 ,2,821,499240 ,2,822,202485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511600 ,2,827,75 ,2,828,464090 ,2,821,499710 ,2,822,202560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,464150 ,2,821,500165 ,1,0,305110 ,2,822,202610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520760 ,2,827,129890 ,2,828,464120 ,2,821,524020 ,2,822,46310 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,524140 ,1,0,305450 ,1,1,220625 ,1,2,304950 ,1,3,171725 ,2,822,202580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520735 ,2,827,129870 ,2,828,464110 ,2,821,539710 ,2,822,202590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520730 ,2,827,75 ,2,828,464105 ,2,821,544170 ,2,822,202600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520740 ,2,827,75 ,2,828,464115 ,2,821,546180 ,1,0,221145 ,1,1,305055 ,1,2,165320 ,2,822,202620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520765 ,2,827,129920 ,2,828,464155 ,2,821,562385 ,2,822,202655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520810 ,2,827,129950 ,2,828,464220 ,2,821,569590 ,1,0,225320 ,1,1,304845 ,1,2,171705 ,1,3,171715 ,1,4,305010 ,1,5,333290 ,1,6,333255 ,1,7,333245 ,2,822,202720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520775 ,2,827,129930 ,2,828,464175 ,2,821,594030 ,1,0,540 ,2,822,202815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520770 ,2,827,129930 ,2,828,464160 ,2,821,597965 ,1,0,304940 ,2,822,202765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509780 ,2,827,75 ,2,828,464165 ,2,821,598965 ,2,822,202665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,464170 ,2,821,599430 ,2,822,202675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520800 ,2,827,75 ,2,828,464185 ,2,821,600455 ,1,0,168690 ,2,822,202710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520795 ,2,827,129940 ,2,828,464180 ,2,821,613735 ,1,0,304900 ,2,822,202755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520805 ,2,827,75 ,2,828,464215 ,2,821,614540 ,1,0,304855 ,1,1,304890 ,2,822,202785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520855 ,2,827,75 ,2,828,464225 ,2,821,616045 ,1,0,264140 ,1,1,264220 ,1,2,179850 ,1,3,191200 ,1,4,543055 ,1,5,564895 ,1,6,543055 ,2,822,202825 ,2,823,541060 ,2,824,418390 ,2,825,352545 ,2,826,520860 ,2,827,129985 ,2,828,464230 ,2,821,622605 ,1,0,305620 ,1,1,530 ,2,822,202835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520865 ,2,827,130085 ,2,828,464245 ,2,821,624485 ,1,0,305525 ,2,822,202885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507820 ,2,827,130085 ,2,828,464250 ,2,821,625375 ,2,822,202895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520870 ,2,827,130095 ,2,828,464255 ,2,821,626120 ,1,0,264260 ,1,1,305610 ,2,822,202905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507820 ,2,827,130085 ,2,828,464260 ,2,821,626990 ,2,822,202930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520875 ,2,827,75 ,2,828,464275 ,2,821,627240 ,1,0,305580 ,2,822,202940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520880 ,2,827,130085 ,2,828,464280 ,2,821,628185 ,2,822,167785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520470 ,2,827,130160 ,2,828,464300 ,2,821,628855 ,1,0,45 ,1,1,11085 ,2,822,173690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520890 ,2,827,75 ,2,828,464305 ,2,821,630635 ,1,0,45 ,1,1,11085 ,2,822,173585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520925 ,2,827,75 ,2,828,464310 ,2,821,632135 ,1,0,400430 ,1,1,76720 ,2,822,76800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,632355 ,2,822,108580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520120 ,2,827,75 ,2,828,464315 ,2,821,634995 ,2,822,108890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520120 ,2,827,75 ,2,828,464350 ,2,821,637585 ,2,822,122835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520930 ,2,827,75 ,2,828,464355 ,2,821,639875 ,2,822,94345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520935 ,2,827,75 ,2,828,464360 ,2,821,640625 ,2,822,94525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520940 ,2,827,130170 ,2,828,464365 ,2,821,643035 ,2,822,94830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520950 ,2,827,75 ,2,828,464370 ,2,821,643710 ,2,822,101775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520530 ,2,827,75 ,2,828,464375 ,2,821,648790 ,2,822,102040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520955 ,2,827,75 ,2,828,464380 ,2,821,654030 ,1,0,221885 ,2,822,110310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520960 ,2,827,75 ,2,828,464385 ,2,821,661310 ,1,0,400430 ,1,1,165120 ,2,822,165110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,661495 ,1,0,400430 ,1,1,201230 ,2,822,201220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,661695 ,1,0,400430 ,1,1,201295 ,2,822,201285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,661885 ,1,0,400430 ,1,1,65785 ,2,822,65775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,662080 ,1,0,400430 ,1,1,200675 ,2,822,200665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,662280 ,1,0,400430 ,1,1,56585 ,2,822,56575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,662480 ,1,0,400430 ,1,1,56365 ,2,822,56340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,662660 ,2,822,167775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520965 ,2,827,75 ,2,828,464420 ,2,821,663580 ,1,0,400430 ,1,1,60810 ,2,822,60955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,663760 ,1,0,400430 ,1,1,84665 ,2,822,84655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,663950 ,1,0,400430 ,1,1,84570 ,2,822,84560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,664135 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,203005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520975 ,2,827,75 ,2,828,464425 ,2,821,666110 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,203015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520980 ,2,827,75 ,2,828,464430 ,2,821,667320 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,203025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491825 ,2,827,75 ,2,828,464435 ,2,821,669250 ,2,822,203040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520985 ,2,827,75 ,2,828,464440 ,2,821,671530 ,1,0,312750 ,2,822,203050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520990 ,2,827,75 ,2,828,464445 ,2,821,672425 ,1,0,400430 ,1,1,157085 ,2,822,157075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,672600 ,1,0,224335 ,2,822,189650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521005 ,2,827,74760 ,2,828,464450 ,2,821,1130 ,1,0,400430 ,1,1,145760 ,2,822,146285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,1445 ,1,0,551345 ,2,822,167745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521010 ,2,827,75 ,2,828,464455 ,2,821,3485 ,1,0,400430 ,1,1,110985 ,2,822,111390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,3790 ,1,0,358040 ,1,1,331985 ,1,2,357995 ,1,3,357985 ,2,822,109890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521015 ,2,827,61930 ,2,828,464480 ,2,821,16690 ,1,0,400430 ,1,1,103125 ,2,822,103195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,16995 ,1,0,567625 ,1,1,45 ,1,2,9435 ,2,822,101075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521020 ,2,827,75 ,2,828,464485 ,2,821,18620 ,1,0,400430 ,1,1,97870 ,2,822,97860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,18935 ,1,0,400430 ,1,1,98030 ,2,822,98075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,19260 ,1,0,400430 ,1,1,115130 ,2,822,115120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,19590 ,1,0,400430 ,1,1,100555 ,2,822,100820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,19900 ,1,0,400430 ,1,1,60315 ,2,822,60275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,20235 ,1,0,400430 ,1,1,203070 ,2,822,203060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,20540 ,2,822,203070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,464490 ,2,821,22365 ,1,0,400430 ,1,1,119930 ,2,822,119915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,22695 ,1,0,400430 ,1,1,117985 ,2,822,117975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,23020 ,1,0,400430 ,1,1,120335 ,2,822,120360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,23375 ,1,0,400430 ,1,1,124950 ,2,822,124940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,23710 ,2,822,183010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521045 ,2,827,75 ,2,828,464495 ,2,821,25170 ,2,822,183465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521050 ,2,827,118145 ,2,828,464515 ,2,821,29365 ,2,822,183925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521045 ,2,827,75 ,2,828,464520 ,2,821,30775 ,2,822,184380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521055 ,2,827,130215 ,2,828,464525 ,2,821,34895 ,2,822,184845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521045 ,2,827,75 ,2,828,464530 ,2,821,36330 ,2,822,185315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521060 ,2,827,130240 ,2,828,464570 ,2,821,40420 ,2,822,61795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521065 ,2,827,118280 ,2,828,464575 ,2,821,46655 ,2,822,185750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521070 ,2,827,130250 ,2,828,464580 ,2,821,53650 ,2,822,63140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521075 ,2,827,75 ,2,828,464585 ,2,821,55345 ,2,822,171925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521080 ,2,827,75 ,2,828,464585 ,2,821,57000 ,2,822,76710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500405 ,2,827,75 ,2,828,464590 ,2,821,57990 ,2,822,203110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521110 ,2,827,75 ,2,828,464595 ,2,821,59355 ,2,822,203120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521115 ,2,827,75 ,2,828,464605 ,2,821,60830 ,2,822,182895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,75 ,2,828,464630 ,2,821,62680 ,2,822,183790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521120 ,2,827,75 ,2,828,464635 ,2,821,64570 ,2,822,184290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,75 ,2,828,464640 ,2,821,66400 ,2,822,184720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521120 ,2,827,75 ,2,828,464645 ,2,821,68220 ,2,822,185200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,75 ,2,828,464650 ,2,821,70045 ,2,822,61690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521120 ,2,827,75 ,2,828,464655 ,2,821,71820 ,2,822,63035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521125 ,2,827,75 ,2,828,464660 ,2,821,73585 ,2,822,201250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,464665 ,2,821,74460 ,2,822,201350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,464680 ,2,821,75100 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,65890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521130 ,2,827,130260 ,2,828,464685 ,2,821,107750 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,56695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521135 ,2,827,41615 ,2,828,464690 ,2,821,118285 ,2,822,203130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521140 ,2,827,25980 ,2,828,464695 ,2,821,125460 ,2,822,203140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521145 ,2,827,117815 ,2,828,464705 ,2,821,134085 ,2,822,56385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521165 ,2,827,75 ,2,828,464710 ,2,821,136455 ,2,822,60800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521170 ,2,827,75 ,2,828,464715 ,2,821,140385 ,1,0,546450 ,2,822,84735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521175 ,2,827,75 ,2,828,464720 ,2,821,144750 ,2,822,84610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,464750 ,2,821,145705 ,1,0,228260 ,1,1,209400 ,2,822,135950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521180 ,2,827,75 ,2,828,464755 ,2,821,152190 ,2,822,135990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521185 ,2,827,75 ,2,828,464760 ,2,821,159660 ,1,0,400430 ,1,1,72550 ,2,822,72590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,160000 ,1,0,400430 ,1,1,72015 ,2,822,72005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,160305 ,1,0,400430 ,1,1,77155 ,2,822,77210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,160635 ,2,822,203150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521190 ,2,827,25980 ,2,828,464765 ,2,821,168085 ,1,0,45 ,1,1,11085 ,2,822,173700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521195 ,2,827,75 ,2,828,464775 ,2,821,171240 ,1,0,45 ,1,1,11085 ,2,822,173595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521200 ,2,827,75 ,2,828,464780 ,2,821,180475 ,1,0,246025 ,1,1,246035 ,2,822,136250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521220 ,2,827,75 ,2,828,464785 ,2,821,202350 ,1,0,244085 ,1,1,244115 ,1,2,244105 ,1,3,244095 ,1,4,222410 ,1,5,244175 ,1,6,244145 ,1,7,244135 ,1,8,244125 ,2,822,135500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521225 ,2,827,75 ,2,828,464790 ,2,821,214115 ,1,0,244715 ,1,1,244725 ,1,2,244875 ,1,3,244865 ,1,4,244855 ,1,5,244765 ,1,6,244810 ,1,7,244820 ,1,8,244830 ,1,9,244755 ,1,10,244970 ,1,11,244960 ,1,12,244950 ,1,13,244930 ,1,14,244920 ,1,15,244910 ,1,16,244745 ,1,17,244735 ,1,18,244900 ,1,19,244885 ,1,20,222530 ,2,822,136050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521230 ,2,827,75 ,2,828,464815 ,2,821,246400 ,1,0,245840 ,1,1,245830 ,1,2,245395 ,1,3,245425 ,1,4,245280 ,1,5,245300 ,1,6,221200 ,1,7,245150 ,1,8,245775 ,1,9,245270 ,1,10,245090 ,1,11,245170 ,1,12,222470 ,1,13,245100 ,1,14,245605 ,1,15,245625 ,1,16,245820 ,1,17,245765 ,1,18,245355 ,1,19,245320 ,1,20,245260 ,1,21,245200 ,1,22,245540 ,1,23,245520 ,1,24,245250 ,1,25,245635 ,1,26,245755 ,1,27,245110 ,1,28,245485 ,1,29,245080 ,1,30,245230 ,1,31,245745 ,1,32,245715 ,1,33,245495 ,1,34,245725 ,1,35,222460 ,1,36,245510 ,1,37,245415 ,1,38,245310 ,1,39,245220 ,1,40,245290 ,1,41,243905 ,1,42,245160 ,1,43,244325 ,1,44,245875 ,1,45,245855 ,1,46,245865 ,1,47,245405 ,1,48,245465 ,1,49,245810 ,1,50,245595 ,1,51,245655 ,1,52,245385 ,1,53,245180 ,1,54,245705 ,1,55,245695 ,1,56,245375 ,1,57,245585 ,1,58,245530 ,1,59,222420 ,1,60,245615 ,1,61,245475 ,1,62,245365 ,1,63,245210 ,1,64,245645 ,1,65,245885 ,1,66,164920 ,1,67,358890 ,1,68,369395 ,1,69,358200 ,1,70,369300 ,2,822,136155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521235 ,2,827,75 ,2,828,464820 ,2,821,301040 ,2,822,94285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520950 ,2,827,75 ,2,828,464825 ,2,821,302205 ,2,822,94430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521240 ,2,827,52490 ,2,828,464830 ,2,821,306215 ,2,822,94745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520950 ,2,827,75 ,2,828,464840 ,2,821,307360 ,1,0,185785 ,1,1,221230 ,2,822,110055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521245 ,2,827,61930 ,2,828,464845 ,2,821,338770 ,1,0,45 ,1,1,9435 ,2,822,182755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464850 ,2,821,340265 ,1,0,45 ,1,1,9435 ,2,822,183210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464855 ,2,821,341780 ,1,0,45 ,1,1,9435 ,2,822,183655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464875 ,2,821,343245 ,1,0,45 ,1,1,9435 ,2,822,184110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464880 ,2,821,344735 ,1,0,45 ,1,1,9435 ,2,822,184565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464885 ,2,821,346255 ,1,0,45 ,1,1,9435 ,2,822,185050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464890 ,2,821,347775 ,1,0,45 ,1,1,9435 ,2,822,61545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464895 ,2,821,349265 ,1,0,45 ,1,1,9435 ,2,822,185490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521250 ,2,827,75 ,2,828,464895 ,2,821,350745 ,1,0,45 ,1,1,9435 ,2,822,61350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521255 ,2,827,75 ,2,828,464900 ,2,821,352200 ,1,0,45 ,1,1,9435 ,2,822,171655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521255 ,2,827,75 ,2,828,464900 ,2,821,353660 ,2,822,97925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521280 ,2,827,75 ,2,828,464905 ,2,821,355755 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,2135 ,2,822,97985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521285 ,2,827,130270 ,2,828,464910 ,2,821,367080 ,1,0,400430 ,1,1,167665 ,2,822,167655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,367410 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,57925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495900 ,2,827,75 ,2,828,464935 ,2,821,369320 ,1,0,2280 ,1,1,542265 ,1,2,45 ,1,3,13320 ,2,822,60345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513710 ,2,827,75 ,2,828,464940 ,2,821,371795 ,2,822,203100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521295 ,2,827,75 ,2,828,464950 ,2,821,372895 ,1,0,2280 ,1,1,542265 ,1,2,45 ,1,3,13320 ,1,4,2280 ,1,5,542165 ,1,6,45 ,1,7,13320 ,1,8,2135 ,2,822,203160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521290 ,2,827,130290 ,2,828,464945 ,2,821,385495 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,203170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520975 ,2,827,75 ,2,828,464955 ,2,821,387440 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,203220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520980 ,2,827,75 ,2,828,464960 ,2,821,388640 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,203230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491825 ,2,827,75 ,2,828,464965 ,2,821,390545 ,1,0,45 ,1,1,9435 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,2210 ,1,7,542350 ,2,822,61080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521300 ,2,827,130345 ,2,828,464970 ,2,821,400620 ,2,822,203240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520985 ,2,827,75 ,2,828,464990 ,2,821,403000 ,1,0,312770 ,2,822,203250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520990 ,2,827,75 ,2,828,464995 ,2,821,403960 ,2,822,180310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508435 ,2,827,130355 ,2,828,465000 ,2,821,404555 ,1,0,45 ,1,1,5900 ,2,822,125035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521305 ,2,827,75 ,2,828,465005 ,2,821,406375 ,2,822,60530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,130365 ,2,828,465015 ,2,821,406865 ,2,822,84685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,407350 ,2,822,56200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,465020 ,2,821,407940 ,1,0,373705 ,1,1,15060 ,1,2,373685 ,2,822,194100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521310 ,2,827,38415 ,2,828,465025 ,2,821,410845 ,1,0,161295 ,2,822,150035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521315 ,2,827,130375 ,2,828,465030 ,2,821,420525 ,2,822,131790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521355 ,2,827,75 ,2,828,465065 ,2,821,421665 ,2,822,188025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521360 ,2,827,130390 ,2,828,465070 ,2,821,429915 ,2,822,152630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521365 ,2,827,38415 ,2,828,465075 ,2,821,433845 ,2,822,196470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521370 ,2,827,75 ,2,828,465080 ,2,821,434935 ,1,0,566845 ,1,1,45 ,1,2,9435 ,1,3,250530 ,2,822,96635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520180 ,2,827,75 ,2,828,465085 ,2,821,437605 ,1,0,45 ,1,1,9435 ,2,822,99420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521375 ,2,827,75 ,2,828,465090 ,2,821,439395 ,2,822,180320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508435 ,2,827,75 ,2,828,465095 ,2,821,440085 ,2,822,130245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521380 ,2,827,75 ,2,828,465100 ,2,821,444005 ,1,0,45 ,1,1,5900 ,1,2,162390 ,2,822,124400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521385 ,2,827,130400 ,2,828,465105 ,2,821,446840 ,2,822,201165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,447380 ,2,822,66070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,447780 ,2,822,65900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521390 ,2,827,130410 ,2,828,465110 ,2,821,452605 ,2,822,92080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501500 ,2,827,75 ,2,828,465115 ,2,821,453380 ,2,822,78985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,453815 ,2,822,56605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,465120 ,2,821,454275 ,2,822,56405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521415 ,2,827,75 ,2,828,465135 ,2,821,455660 ,2,822,201690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,465140 ,2,821,456160 ,2,822,60915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521420 ,2,827,75 ,2,828,465145 ,2,821,457185 ,2,822,84715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,457730 ,2,822,84590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,465150 ,2,821,458235 ,2,822,98085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,458715 ,2,822,65365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,465170 ,2,821,459080 ,2,822,60430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,459640 ,2,822,72540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521425 ,2,827,75 ,2,828,465175 ,2,821,461565 ,2,822,72415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521430 ,2,827,75 ,2,828,465180 ,2,821,463900 ,2,822,77145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521435 ,2,827,75 ,2,828,465185 ,2,821,471610 ,2,822,67235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,472055 ,2,822,64870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,465190 ,2,821,472540 ,2,822,139065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,456490 ,2,821,472900 ,1,0,258675 ,1,1,258710 ,1,2,258970 ,1,3,258850 ,1,4,258830 ,1,5,258840 ,1,6,258730 ,1,7,258720 ,1,8,258765 ,1,9,259045 ,1,10,259055 ,1,11,259065 ,1,12,258775 ,1,13,258785 ,1,14,259025 ,1,15,258755 ,1,16,258740 ,1,17,259035 ,1,18,259140 ,1,19,259150 ,1,20,259160 ,1,21,259075 ,1,22,259085 ,1,23,259095 ,1,24,259185 ,1,25,258990 ,1,26,258980 ,1,27,244345 ,1,28,259170 ,1,29,258950 ,1,30,258960 ,1,31,258930 ,1,32,258920 ,1,33,258940 ,1,34,258685 ,1,35,258890 ,1,36,258900 ,1,37,258860 ,1,38,258870 ,1,39,258880 ,2,822,150120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521440 ,2,827,75 ,2,828,465200 ,2,821,494395 ,2,822,203270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,494715 ,2,822,46370 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,494815 ,2,822,90200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,495150 ,1,0,223165 ,1,1,223155 ,2,822,113160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521445 ,2,827,75 ,2,828,465205 ,2,821,497560 ,2,822,98160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498025 ,2,822,97525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501500 ,2,827,75 ,2,828,465230 ,2,821,498860 ,2,822,65415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,499755 ,2,822,60440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,500325 ,1,0,212270 ,1,1,212300 ,1,2,212280 ,1,3,212290 ,2,822,101890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521450 ,2,827,75 ,2,828,465235 ,2,821,504690 ,2,822,167835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,465240 ,2,821,505300 ,2,822,67280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,505785 ,1,0,270175 ,2,822,166615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521490 ,2,827,75 ,2,828,465250 ,2,821,509495 ,2,822,139115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,509805 ,1,0,212650 ,1,1,212700 ,1,2,212660 ,1,3,212710 ,2,822,102500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521495 ,2,827,75 ,2,828,465260 ,2,821,514045 ,1,0,225170 ,1,1,225085 ,1,2,225130 ,1,3,225150 ,1,4,225075 ,2,822,115075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521500 ,2,827,75 ,2,828,465265 ,2,821,521965 ,2,822,182885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465285 ,2,821,522340 ,2,822,183780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465290 ,2,821,522740 ,2,822,184710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465295 ,2,821,523100 ,2,822,61660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,465300 ,2,821,523450 ,2,822,185640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465300 ,2,821,523760 ,2,822,63025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,465310 ,2,821,524100 ,2,822,61200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,463205 ,2,821,524490 ,1,0,252845 ,1,1,221620 ,2,822,142775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521505 ,2,827,75 ,2,828,465315 ,2,821,527920 ,2,822,66295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,528360 ,2,822,72630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521515 ,2,827,75 ,2,828,465320 ,2,821,529350 ,2,822,72285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521520 ,2,827,75 ,2,828,465325 ,2,821,530820 ,2,822,164110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,531280 ,1,0,45 ,1,1,9435 ,2,822,59090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521525 ,2,827,75 ,2,828,465345 ,2,821,539990 ,1,0,241340 ,1,1,241190 ,1,2,241265 ,1,3,241295 ,1,4,241305 ,1,5,241315 ,1,6,354715 ,2,822,133290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521530 ,2,827,75 ,2,828,465350 ,2,821,548250 ,1,0,45 ,1,1,9435 ,1,2,280680 ,1,3,312895 ,2,822,203300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521540 ,2,827,75 ,2,828,465355 ,2,821,554775 ,1,0,45 ,1,1,9435 ,1,2,14430 ,1,3,14420 ,2,822,203320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521545 ,2,827,25645 ,2,828,465360 ,2,821,559280 ,2,822,182865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,465365 ,2,821,559940 ,2,822,183315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521550 ,2,827,75 ,2,828,465370 ,2,821,560600 ,2,822,183760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521550 ,2,827,75 ,2,828,465375 ,2,821,561260 ,2,822,184225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,465375 ,2,821,561945 ,2,822,184665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,465380 ,2,821,562620 ,2,822,61640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,465405 ,2,821,563275 ,2,822,185620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521550 ,2,827,75 ,2,828,465410 ,2,821,563885 ,2,822,63005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521555 ,2,827,75 ,2,828,465415 ,2,821,564500 ,1,0,2210 ,1,1,542350 ,2,822,196560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521565 ,2,827,130445 ,2,828,465420 ,2,821,583990 ,2,822,167795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,584485 ,2,822,112705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,465425 ,2,821,584960 ,1,0,590725 ,1,1,45 ,1,2,5900 ,1,3,210900 ,2,822,193665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521570 ,2,827,75 ,2,828,465430 ,2,821,587830 ,1,0,153980 ,2,822,180405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521575 ,2,827,75 ,2,828,465435 ,2,821,590005 ,1,0,45 ,1,1,5900 ,2,822,153970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521580 ,2,827,75 ,2,828,465470 ,2,821,591710 ,1,0,239600 ,1,1,2210 ,1,2,542350 ,2,822,123180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521610 ,2,827,130455 ,2,828,465475 ,2,821,598040 ,1,0,45 ,1,1,5900 ,2,822,152705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521615 ,2,827,75 ,2,828,465480 ,2,821,599520 ,2,822,131435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521620 ,2,827,54935 ,2,828,465490 ,2,821,601735 ,2,822,158825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521625 ,2,827,130465 ,2,828,465495 ,2,821,605015 ,1,0,154300 ,1,1,567400 ,1,2,45 ,1,3,5900 ,1,4,163235 ,2,822,154520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521630 ,2,827,75 ,2,828,465500 ,2,821,608065 ,1,0,118645 ,1,1,45 ,1,2,5900 ,2,822,118840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521635 ,2,827,75 ,2,828,465505 ,2,821,610640 ,1,0,567410 ,1,1,45 ,1,2,5900 ,1,3,162130 ,2,822,157935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521640 ,2,827,75 ,2,828,465540 ,2,821,613025 ,1,0,45 ,1,1,5900 ,2,822,156995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521645 ,2,827,130480 ,2,828,465545 ,2,821,618420 ,1,0,579480 ,1,1,45 ,1,2,5900 ,2,822,156900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521680 ,2,827,130490 ,2,828,465550 ,2,821,622800 ,1,0,233065 ,1,1,233075 ,1,2,356445 ,2,822,133830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521685 ,2,827,130500 ,2,828,465555 ,2,821,628370 ,1,0,567405 ,1,1,45 ,1,2,5900 ,1,3,163225 ,2,822,156575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521690 ,2,827,75 ,2,828,465560 ,2,821,631160 ,2,822,158075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521695 ,2,827,75 ,2,828,465565 ,2,821,634845 ,1,0,161650 ,2,822,157705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521700 ,2,827,75 ,2,828,465570 ,2,821,636635 ,2,822,156190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,465575 ,2,821,637280 ,1,0,590825 ,1,1,45 ,1,2,5900 ,2,822,157345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521705 ,2,827,75 ,2,828,465600 ,2,821,640240 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,373505 ,2,822,157490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521710 ,2,827,130510 ,2,828,465605 ,2,821,644450 ,1,0,550580 ,2,822,156465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521715 ,2,827,75 ,2,828,465610 ,2,821,646140 ,1,0,203330 ,2,822,191315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521745 ,2,827,130550 ,2,828,465625 ,2,821,648880 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,203330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521740 ,2,827,75 ,2,828,465630 ,2,821,652255 ,1,0,210760 ,2,822,194425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502860 ,2,827,75 ,2,828,465635 ,2,821,653095 ,1,0,210930 ,2,822,153135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502860 ,2,827,75 ,2,828,465640 ,2,821,653905 ,1,0,134765 ,2,822,134505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521750 ,2,827,130560 ,2,828,465675 ,2,821,656480 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,313345 ,1,5,148135 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,5900 ,1,20,45 ,1,21,5900 ,1,22,45 ,1,23,5900 ,2,822,148285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521755 ,2,827,130570 ,2,828,465680 ,2,821,6890 ,1,0,45 ,1,1,5900 ,1,2,144300 ,2,822,143645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521765 ,2,827,130580 ,2,828,465685 ,2,821,11855 ,1,0,262960 ,1,1,183300 ,1,2,262985 ,1,3,185345 ,1,4,180615 ,1,5,332990 ,1,6,332975 ,1,7,183765 ,2,822,180795 ,2,823,541065 ,2,824,418415 ,2,825,352560 ,2,826,521770 ,2,827,130595 ,2,828,465690 ,2,821,29355 ,2,822,160185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521825 ,2,827,54935 ,2,828,465710 ,2,821,34135 ,1,0,357710 ,1,1,183265 ,2,822,203370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521780 ,2,827,130770 ,2,828,465705 ,2,821,68300 ,1,0,357620 ,1,1,357730 ,1,2,357645 ,1,3,357665 ,1,4,357635 ,1,5,357720 ,1,6,2210 ,1,7,542350 ,1,8,2210 ,1,9,542350 ,2,822,203360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521775 ,2,827,34150 ,2,828,465700 ,2,821,108930 ,2,822,46380 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,109095 ,2,822,160840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,465715 ,2,821,109850 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,217095 ,1,5,45 ,1,6,5900 ,1,7,372200 ,2,822,110965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521830 ,2,827,130885 ,2,828,465750 ,2,821,137720 ,2,822,191565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521835 ,2,827,130895 ,2,828,465755 ,2,821,144260 ,1,0,108360 ,2,822,109220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521840 ,2,827,130905 ,2,828,465760 ,2,821,146955 ,1,0,107565 ,2,822,107780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521840 ,2,827,130915 ,2,828,465765 ,2,821,149605 ,1,0,115765 ,2,822,115620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521845 ,2,827,130930 ,2,828,465770 ,2,821,153260 ,1,0,45 ,1,1,5900 ,1,2,373585 ,1,3,373695 ,1,4,373565 ,1,5,373740 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,591605 ,1,11,45 ,1,12,5900 ,1,13,45 ,1,14,5900 ,1,15,45 ,1,16,5900 ,2,822,138500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521850 ,2,827,130940 ,2,828,465775 ,2,821,186255 ,1,0,45 ,1,1,5900 ,2,822,159640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521855 ,2,827,75 ,2,828,465780 ,2,821,188960 ,2,822,103535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,465785 ,2,821,190005 ,1,0,221155 ,2,822,202700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521860 ,2,827,75 ,2,828,465800 ,2,821,195730 ,2,822,183000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520315 ,2,827,75 ,2,828,465805 ,2,821,196835 ,2,822,46440 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,196985 ,2,822,183455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465805 ,2,821,198070 ,2,822,183915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465810 ,2,821,199145 ,2,822,184835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465825 ,2,821,200220 ,2,822,185305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520315 ,2,827,75 ,2,828,465825 ,2,821,201310 ,2,822,61760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465830 ,2,821,202395 ,2,822,63130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465835 ,2,821,203460 ,2,822,149530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,203630 ,2,822,203430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520315 ,2,827,75 ,2,828,465840 ,2,821,204705 ,2,822,203440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465865 ,2,821,205805 ,1,0,258000 ,1,1,257990 ,1,2,258010 ,2,822,149040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,208755 ,2,822,149120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521880 ,2,827,131000 ,2,828,465870 ,2,821,217310 ,2,822,91650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465875 ,2,821,218200 ,2,822,203450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521885 ,2,827,75 ,2,828,465880 ,2,821,223350 ,2,822,46450 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,223540 ,1,0,232090 ,2,822,131265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521890 ,2,827,75 ,2,828,465885 ,2,821,230800 ,2,822,131140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521895 ,2,827,75 ,2,828,465890 ,2,821,238210 ,1,0,357820 ,1,1,357780 ,2,822,203575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521905 ,2,827,75 ,2,828,465895 ,2,821,243040 ,2,822,46495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,243220 ,2,822,46515 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,243365 ,2,822,203660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521910 ,2,827,75 ,2,828,465900 ,2,821,248440 ,2,822,46525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,248625 ,2,822,203770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521915 ,2,827,70730 ,2,828,465920 ,2,821,251850 ,2,822,203780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521920 ,2,827,34130 ,2,828,465925 ,2,821,262680 ,2,822,203750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521945 ,2,827,75 ,2,828,465930 ,2,821,269010 ,2,822,203620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521950 ,2,827,75 ,2,828,465935 ,2,821,274995 ,1,0,231915 ,2,822,124185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521955 ,2,827,75 ,2,828,465950 ,2,821,282335 ,2,822,61450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521960 ,2,827,75 ,2,828,465955 ,2,821,284830 ,2,822,63765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521975 ,2,827,75 ,2,828,465960 ,2,821,287970 ,2,822,110550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495355 ,2,827,75 ,2,828,465965 ,2,821,288930 ,2,822,203930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521985 ,2,827,131225 ,2,828,465985 ,2,821,317880 ,2,822,203920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521980 ,2,827,24980 ,2,828,465980 ,2,821,325865 ,1,0,556395 ,2,822,183150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,465990 ,2,821,327340 ,1,0,556470 ,2,822,183600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,465990 ,2,821,328900 ,1,0,556440 ,2,822,184060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,465995 ,2,821,330430 ,1,0,556530 ,2,822,184520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466005 ,2,821,332000 ,1,0,556460 ,2,822,184990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466010 ,2,821,333590 ,1,0,556510 ,2,822,185425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466010 ,2,821,335160 ,1,0,556520 ,2,822,61905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466015 ,2,821,336775 ,1,0,556450 ,2,822,185880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466020 ,2,821,338380 ,1,0,556405 ,2,822,63270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466055 ,2,821,339945 ,1,0,556500 ,2,822,172040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521990 ,2,827,75 ,2,828,466055 ,2,821,341515 ,2,822,148990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,466060 ,2,821,342055 ,1,1,2395 ,2,822,76850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,466065 ,2,821,343030 ,2,822,141450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522035 ,2,827,131235 ,2,828,466070 ,2,821,344855 ,1,0,557030 ,2,822,63865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511095 ,2,827,75 ,2,828,466080 ,2,821,346685 ,2,822,112975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,466085 ,2,821,347325 ,2,822,180495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504335 ,2,827,75 ,2,828,466090 ,2,821,348475 ,2,822,112115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,466095 ,2,821,349110 ,2,822,131610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522040 ,2,827,76965 ,2,828,466115 ,2,821,352360 ,2,822,118860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522045 ,2,827,68165 ,2,828,466120 ,2,821,354380 ,2,822,156805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522050 ,2,827,128170 ,2,828,466125 ,2,821,355595 ,2,822,133850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509895 ,2,827,75 ,2,828,466130 ,2,821,356580 ,1,0,157685 ,2,822,157730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522055 ,2,827,128180 ,2,828,466145 ,2,821,358745 ,2,822,157550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,466150 ,2,821,359485 ,2,822,154095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522060 ,2,827,75 ,2,828,466155 ,2,821,360815 ,2,822,191165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522065 ,2,827,118905 ,2,828,466160 ,2,821,362610 ,1,0,210795 ,2,822,194540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522070 ,2,827,75 ,2,828,466175 ,2,821,363975 ,1,0,45 ,1,1,5900 ,2,822,152810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502730 ,2,827,75 ,2,828,435335 ,2,821,366830 ,1,0,45 ,1,1,5900 ,2,822,134930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502730 ,2,827,75 ,2,828,441605 ,2,821,369630 ,2,822,148180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522095 ,2,827,128210 ,2,828,466180 ,2,821,373715 ,2,822,143570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522100 ,2,827,131245 ,2,828,466185 ,2,821,377520 ,1,0,45 ,1,1,5900 ,2,822,160615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522105 ,2,827,75 ,2,828,466190 ,2,821,379155 ,1,0,325325 ,1,1,111210 ,2,822,109705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507960 ,2,827,128230 ,2,828,466195 ,2,821,380300 ,1,0,45 ,1,1,5900 ,2,822,108100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522110 ,2,827,75 ,2,828,441605 ,2,821,382000 ,2,822,115550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522065 ,2,827,66040 ,2,828,466200 ,2,821,383080 ,2,822,78210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522115 ,2,827,75 ,2,828,466205 ,2,821,383920 ,2,822,138405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522120 ,2,827,75 ,2,828,466210 ,2,821,385205 ,2,822,159590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522060 ,2,827,75 ,2,828,466155 ,2,821,385980 ,2,822,103440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522060 ,2,827,75 ,2,828,466240 ,2,821,386725 ,2,822,95735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,386965 ,1,0,313250 ,2,822,98905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522125 ,2,827,75 ,2,828,466245 ,2,821,387585 ,2,822,98595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522130 ,2,827,75 ,2,828,466250 ,2,821,388585 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,340560 ,1,5,45 ,1,6,5900 ,2,822,101360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522145 ,2,827,131260 ,2,828,466255 ,2,821,392795 ,1,0,356960 ,2,822,193840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522150 ,2,827,131270 ,2,828,466260 ,2,821,393860 ,2,822,190615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522155 ,2,827,131280 ,2,828,466265 ,2,821,394620 ,2,822,131040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522160 ,2,827,131290 ,2,828,466270 ,2,821,395420 ,2,822,128655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522155 ,2,827,131335 ,2,828,466275 ,2,821,396095 ,2,822,152605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522160 ,2,827,131345 ,2,828,466300 ,2,821,396855 ,2,822,180365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522165 ,2,827,75 ,2,828,466305 ,2,821,397955 ,1,0,552495 ,2,822,189460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522170 ,2,827,75 ,2,828,466310 ,2,821,399010 ,2,822,158765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507690 ,2,827,75 ,2,828,466315 ,2,821,399680 ,2,822,158580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522175 ,2,827,75 ,2,828,466320 ,2,821,400440 ,2,822,159535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522180 ,2,827,131355 ,2,828,466325 ,2,821,401190 ,1,0,550645 ,2,822,159050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522235 ,2,827,75 ,2,828,466330 ,2,821,402365 ,2,822,160455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522240 ,2,827,75 ,2,828,466335 ,2,821,403435 ,2,822,158785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522245 ,2,827,75 ,2,828,466360 ,2,821,404595 ,2,822,159310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522250 ,2,827,75 ,2,828,466365 ,2,821,405245 ,2,822,159200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522255 ,2,827,75 ,2,828,466370 ,2,821,406050 ,2,822,158630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522260 ,2,827,131365 ,2,828,466375 ,2,821,406955 ,2,822,158745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522265 ,2,827,131380 ,2,828,466385 ,2,821,407965 ,2,822,158945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522270 ,2,827,131390 ,2,828,466390 ,2,821,409275 ,2,822,158695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522160 ,2,827,131400 ,2,828,466395 ,2,821,410110 ,2,822,159090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522290 ,2,827,131410 ,2,828,466400 ,2,821,410965 ,2,822,158195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522295 ,2,827,131410 ,2,828,466425 ,2,821,411845 ,2,822,158430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522300 ,2,827,75 ,2,828,466430 ,2,821,412415 ,2,822,159275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522160 ,2,827,131430 ,2,828,466435 ,2,821,413170 ,2,822,158990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522305 ,2,827,131440 ,2,828,466440 ,2,821,414030 ,2,822,159555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522320 ,2,827,131450 ,2,828,466445 ,2,821,415075 ,2,822,158475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522325 ,2,827,75 ,2,828,466450 ,2,821,416135 ,2,822,158890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522330 ,2,827,75 ,2,828,466455 ,2,821,417380 ,2,822,158815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522335 ,2,827,131460 ,2,828,466460 ,2,821,417955 ,2,822,158545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522260 ,2,827,131480 ,2,828,466480 ,2,821,418850 ,2,822,159410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522360 ,2,827,131490 ,2,828,466485 ,2,821,419520 ,1,0,164070 ,2,822,159120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522365 ,2,827,75 ,2,828,466490 ,2,821,424070 ,2,822,158965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522335 ,2,827,131500 ,2,828,466495 ,2,821,424675 ,2,822,111565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522370 ,2,827,131510 ,2,828,466500 ,2,821,425360 ,2,822,160475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522160 ,2,827,131555 ,2,828,466505 ,2,821,426235 ,2,822,159220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522375 ,2,827,131565 ,2,828,466510 ,2,821,427185 ,1,0,356500 ,2,822,159500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522385 ,2,827,131575 ,2,828,466515 ,2,821,428050 ,2,822,133810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522390 ,2,827,131585 ,2,828,466535 ,2,821,429240 ,2,822,119835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522395 ,2,827,131595 ,2,828,466540 ,2,821,430505 ,2,822,140015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522400 ,2,827,75 ,2,828,466545 ,2,821,431340 ,2,822,190890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522435 ,2,827,75 ,2,828,466550 ,2,821,432060 ,2,822,200430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522440 ,2,827,131605 ,2,828,466560 ,2,821,432785 ,2,822,118515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522445 ,2,827,75 ,2,828,466565 ,2,821,433520 ,2,822,193795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522450 ,2,827,75 ,2,828,466570 ,2,821,434930 ,2,822,160495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522460 ,2,827,75 ,2,828,466575 ,2,821,436345 ,1,1,2395 ,2,822,74955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492610 ,2,827,75 ,2,828,466600 ,2,821,436975 ,2,822,152940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522465 ,2,827,75 ,2,828,466605 ,2,821,437705 ,2,822,158450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522470 ,2,827,131615 ,2,828,466610 ,2,821,438560 ,2,822,160550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522475 ,2,827,131625 ,2,828,466615 ,2,821,439470 ,2,822,107025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522510 ,2,827,75 ,2,828,466630 ,2,821,440580 ,2,822,109445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522515 ,2,827,75 ,2,828,466635 ,2,821,443325 ,2,822,108000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522520 ,2,827,75 ,2,828,466640 ,2,821,444570 ,1,0,548575 ,2,822,197020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522525 ,2,827,75 ,2,828,466645 ,2,821,445935 ,1,0,548570 ,2,822,196875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522540 ,2,827,131650 ,2,828,466680 ,2,821,447105 ,2,822,148785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522545 ,2,827,75 ,2,828,466685 ,2,821,448110 ,2,822,159940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522550 ,2,827,75 ,2,828,466690 ,2,821,450225 ,1,0,161395 ,2,822,142975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522555 ,2,827,75 ,2,828,466695 ,2,821,455850 ,2,822,104900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,466700 ,2,821,456360 ,2,822,203975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522570 ,2,827,75 ,2,828,466705 ,2,821,457420 ,2,822,46535 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,457525 ,2,822,164790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,457725 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,2,822,180290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522575 ,2,827,75 ,2,828,466710 ,2,821,462460 ,1,0,45 ,1,1,5900 ,2,822,139215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522580 ,2,827,131715 ,2,828,466715 ,2,821,463400 ,1,0,576855 ,1,1,45 ,1,2,5900 ,2,822,139380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522585 ,2,827,75 ,2,828,466730 ,2,821,464500 ,1,0,45 ,1,1,5900 ,2,822,200465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522590 ,2,827,131725 ,2,828,466735 ,2,821,465485 ,1,0,220260 ,2,822,201240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522595 ,2,827,75 ,2,828,466740 ,2,821,466520 ,1,0,220250 ,2,822,201340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522595 ,2,827,75 ,2,828,466745 ,2,821,467515 ,1,0,45 ,1,1,5900 ,2,822,66170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522600 ,2,827,131765 ,2,828,466750 ,2,821,471660 ,1,0,166850 ,1,1,607325 ,1,2,45 ,1,3,5900 ,1,4,2210 ,1,5,542350 ,2,822,65910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522605 ,2,827,130260 ,2,828,466755 ,2,821,491275 ,2,822,78995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522630 ,2,827,75 ,2,828,466760 ,2,821,493735 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542350 ,2,822,56730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522635 ,2,827,41615 ,2,828,466765 ,2,821,499700 ,2,822,60875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522640 ,2,827,75 ,2,828,466795 ,2,821,501700 ,1,0,400430 ,1,1,182920 ,2,822,182910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,501905 ,1,0,400430 ,1,1,183370 ,2,822,183360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,502090 ,1,0,400430 ,1,1,183855 ,2,822,183800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,502300 ,1,0,400430 ,1,1,184310 ,2,822,184300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,502500 ,1,0,400430 ,1,1,184740 ,2,822,184730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,502715 ,1,0,400430 ,1,1,185220 ,2,822,185210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,502930 ,1,0,400430 ,1,1,61710 ,2,822,61700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,503140 ,1,0,400430 ,1,1,185675 ,2,822,185665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,503350 ,1,0,400430 ,1,1,63080 ,2,822,63070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,503570 ,1,0,400430 ,1,1,171830 ,2,822,171820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,503755 ,1,0,400430 ,1,1,58065 ,2,822,58050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,503955 ,1,0,400430 ,1,1,204005 ,2,822,203995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,504160 ,1,0,45 ,1,1,169850 ,1,2,45 ,1,3,3770 ,2,822,204005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492045 ,2,827,75 ,2,828,466800 ,2,821,507015 ,1,0,400430 ,1,1,63530 ,2,822,63520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,507220 ,2,822,97475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522655 ,2,827,131775 ,2,828,466805 ,2,821,509645 ,2,822,204050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499865 ,2,827,75 ,2,828,466815 ,2,821,511440 ,2,822,204090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522645 ,2,827,26010 ,2,828,466810 ,2,821,512465 ,2,822,65355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522660 ,2,827,75 ,2,828,466820 ,2,821,514515 ,2,822,60050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522665 ,2,827,75 ,2,828,466825 ,2,821,515745 ,2,822,67225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522670 ,2,827,75 ,2,828,466830 ,2,821,519505 ,1,0,217290 ,2,822,64935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522720 ,2,827,75 ,2,828,466860 ,2,821,520790 ,1,0,2210 ,1,1,542350 ,2,822,63785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522725 ,2,827,75 ,2,828,466865 ,2,821,525180 ,2,822,65115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,466870 ,2,821,525820 ,1,0,555100 ,2,822,139055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522730 ,2,827,131825 ,2,828,466875 ,2,821,527905 ,2,822,46570 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,528040 ,2,822,124890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522735 ,2,827,131835 ,2,828,466885 ,2,821,529955 ,1,0,586410 ,1,1,45 ,1,2,259605 ,1,3,297105 ,2,822,193805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522745 ,2,827,75 ,2,828,466890 ,2,821,532825 ,1,0,593515 ,1,1,45 ,1,2,259605 ,1,3,296245 ,2,822,190605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522750 ,2,827,75 ,2,828,466895 ,2,821,533910 ,1,0,45 ,1,1,259605 ,2,822,131025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522755 ,2,827,75 ,2,828,466900 ,2,821,534705 ,1,0,591090 ,1,1,45 ,1,2,259605 ,1,3,314920 ,2,822,128645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522760 ,2,827,75 ,2,828,466915 ,2,821,535780 ,1,0,579085 ,1,1,45 ,1,2,259605 ,1,3,260820 ,2,822,152595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522775 ,2,827,75 ,2,828,466920 ,2,821,536785 ,1,0,584480 ,1,1,45 ,1,2,259605 ,2,822,180355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522780 ,2,827,131860 ,2,828,466925 ,2,821,539130 ,1,0,591730 ,1,1,45 ,1,2,259605 ,2,822,189450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522785 ,2,827,75 ,2,828,466930 ,2,821,540185 ,1,0,579895 ,1,1,45 ,1,2,259605 ,1,3,228185 ,2,822,158755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522790 ,2,827,75 ,2,828,466935 ,2,821,541500 ,1,0,45 ,1,1,259605 ,2,822,158570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522795 ,2,827,75 ,2,828,466940 ,2,821,543000 ,1,0,45 ,1,1,259605 ,2,822,159520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522800 ,2,827,75 ,2,828,466945 ,2,821,544160 ,1,0,580080 ,1,1,45 ,1,2,259605 ,1,3,263000 ,2,822,159010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522805 ,2,827,131870 ,2,828,466950 ,2,821,546395 ,1,0,580425 ,1,1,45 ,1,2,259605 ,2,822,160420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522810 ,2,827,131870 ,2,828,466965 ,2,821,548440 ,1,0,579935 ,1,1,45 ,1,2,259605 ,1,3,208825 ,2,822,158775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522835 ,2,827,75 ,2,828,466970 ,2,821,550145 ,1,0,580225 ,1,1,45 ,1,2,259605 ,2,822,159295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522840 ,2,827,75 ,2,828,466975 ,2,821,551110 ,1,0,580155 ,1,1,45 ,1,2,259605 ,1,3,209125 ,2,822,159185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522845 ,2,827,75 ,2,828,466980 ,2,821,552485 ,1,0,579820 ,1,1,45 ,1,2,259605 ,1,3,263700 ,2,822,158600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522850 ,2,827,75 ,2,828,466985 ,2,821,553630 ,1,0,579885 ,1,1,45 ,1,2,259605 ,1,3,222225 ,2,822,158705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522865 ,2,827,75 ,2,828,466990 ,2,821,554960 ,1,0,580030 ,1,1,45 ,1,2,259605 ,2,822,158935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522870 ,2,827,75 ,2,828,466995 ,2,821,556600 ,1,0,579875 ,1,1,45 ,1,2,259605 ,2,822,158685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522840 ,2,827,75 ,2,828,467000 ,2,821,557700 ,1,0,579630 ,1,1,45 ,1,2,259605 ,1,3,263130 ,2,822,159070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522875 ,2,827,75 ,2,828,467030 ,2,821,558825 ,1,0,45 ,1,1,259605 ,2,822,158185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522840 ,2,827,75 ,2,828,467035 ,2,821,559805 ,1,0,579740 ,1,1,45 ,1,2,259605 ,1,3,262645 ,2,822,158420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522880 ,2,827,75 ,2,828,467040 ,2,821,561040 ,1,0,580195 ,1,1,45 ,1,2,259605 ,1,3,237300 ,2,822,159265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522840 ,2,827,75 ,2,828,467045 ,2,821,562085 ,1,0,580070 ,1,1,45 ,1,2,259605 ,1,3,262445 ,2,822,158980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522925 ,2,827,75 ,2,828,467055 ,2,821,563440 ,1,0,580350 ,1,1,45 ,1,2,259605 ,2,822,159545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522930 ,2,827,75 ,2,828,467060 ,2,821,564670 ,1,0,579760 ,1,1,45 ,1,2,259605 ,1,3,317845 ,2,822,158465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522935 ,2,827,75 ,2,828,467065 ,2,821,566835 ,1,0,580020 ,1,1,45 ,1,2,259605 ,1,3,263455 ,2,822,158880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522940 ,2,827,75 ,2,828,467070 ,2,821,568940 ,1,0,579800 ,1,1,45 ,1,2,259605 ,1,3,230895 ,2,822,158535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522945 ,2,827,75 ,2,828,467090 ,2,821,570215 ,1,0,580260 ,1,1,45 ,1,2,259605 ,1,3,262560 ,2,822,159400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522950 ,2,827,131880 ,2,828,467095 ,2,821,571580 ,1,0,580095 ,1,1,45 ,1,2,259605 ,1,3,257480 ,2,822,159100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522955 ,2,827,75 ,2,828,467100 ,2,821,581840 ,1,0,569685 ,1,1,45 ,1,2,259605 ,1,3,263760 ,2,822,111555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518970 ,2,827,75 ,2,828,467105 ,2,821,582885 ,1,0,580435 ,1,1,45 ,1,2,259605 ,1,3,263295 ,2,822,160465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522750 ,2,827,75 ,2,828,467110 ,2,821,583980 ,1,0,580165 ,1,1,45 ,1,2,259605 ,1,3,263610 ,2,822,159210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522960 ,2,827,75 ,2,828,467115 ,2,821,585265 ,1,0,580290 ,1,1,45 ,1,2,259605 ,1,3,184890 ,2,822,159490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522750 ,2,827,75 ,2,828,467120 ,2,821,586340 ,1,0,575385 ,1,1,45 ,1,2,259605 ,1,3,241860 ,2,822,133800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522985 ,2,827,75 ,2,828,467125 ,2,821,587950 ,1,0,45 ,1,1,259605 ,2,822,119820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522990 ,2,827,75 ,2,828,467150 ,2,821,589145 ,1,0,577025 ,1,1,45 ,1,2,259605 ,1,3,249035 ,2,822,140005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522995 ,2,827,75 ,2,828,467155 ,2,821,590605 ,1,0,586105 ,1,1,45 ,1,2,259605 ,2,822,190880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523000 ,2,827,75 ,2,828,467160 ,2,821,591770 ,1,0,590835 ,1,1,45 ,1,2,259605 ,2,822,200420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523010 ,2,827,75 ,2,828,467165 ,2,821,593520 ,1,0,571575 ,1,1,45 ,1,2,259605 ,2,822,118500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523000 ,2,827,75 ,2,828,467170 ,2,821,594745 ,1,0,586400 ,1,1,45 ,1,2,259605 ,1,3,297575 ,2,822,193785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523015 ,2,827,75 ,2,828,467175 ,2,821,596560 ,1,0,580450 ,1,1,45 ,1,2,259605 ,1,3,243315 ,2,822,160485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523020 ,2,827,75 ,2,828,467180 ,2,821,598860 ,1,0,579130 ,1,1,45 ,1,2,259605 ,1,3,261105 ,2,822,152930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523000 ,2,827,75 ,2,828,467185 ,2,821,600045 ,1,0,579750 ,1,1,45 ,1,2,259605 ,1,3,261460 ,2,822,158440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522750 ,2,827,75 ,2,828,467215 ,2,821,601130 ,1,0,580470 ,1,1,45 ,1,2,259605 ,2,822,160525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523025 ,2,827,75 ,2,828,467220 ,2,821,602255 ,1,0,568930 ,1,1,45 ,1,2,259605 ,1,3,218390 ,2,822,107015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523045 ,2,827,75 ,2,828,467225 ,2,821,604045 ,1,0,569405 ,1,1,45 ,1,2,259605 ,1,3,221670 ,2,822,109425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523050 ,2,827,75 ,2,828,467230 ,2,821,608225 ,1,0,45 ,1,1,259605 ,1,2,217555 ,2,822,107990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523055 ,2,827,75 ,2,828,467240 ,2,821,609790 ,1,0,45 ,1,1,259605 ,1,2,225500 ,2,822,196975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523060 ,2,827,75 ,2,828,467245 ,2,821,611900 ,1,0,587205 ,1,1,45 ,1,2,259605 ,2,822,196865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523075 ,2,827,131890 ,2,828,467250 ,2,821,614275 ,1,0,555480 ,2,822,167180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467255 ,2,821,615410 ,1,0,578410 ,1,1,45 ,1,2,259605 ,2,822,148775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523085 ,2,827,75 ,2,828,467270 ,2,821,617270 ,1,0,580405 ,1,1,45 ,1,2,259605 ,1,3,262345 ,2,822,159930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523090 ,2,827,75 ,2,828,467275 ,2,821,621015 ,1,0,45 ,1,1,259605 ,2,822,142965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523125 ,2,827,75 ,2,828,467280 ,2,821,629815 ,1,0,589350 ,1,1,45 ,1,2,259605 ,1,3,296510 ,2,822,203985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522960 ,2,827,75 ,2,828,467285 ,2,821,631055 ,1,0,355020 ,1,1,165070 ,2,822,162140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523130 ,2,827,75 ,2,828,467290 ,2,821,633320 ,1,0,576865 ,1,1,45 ,1,2,259605 ,1,3,247700 ,2,822,139370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518860 ,2,827,75 ,2,828,467295 ,2,821,634370 ,1,0,588375 ,1,1,45 ,1,2,259605 ,2,822,200455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523135 ,2,827,75 ,2,828,467300 ,2,821,635300 ,1,0,555620 ,2,822,65685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467305 ,2,821,636390 ,1,0,555185 ,2,822,56150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467325 ,2,821,637480 ,1,0,555150 ,2,822,56270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,467330 ,2,821,638445 ,1,0,555135 ,2,822,56815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,467335 ,2,821,639435 ,1,0,555190 ,2,822,65730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,467340 ,2,821,640495 ,1,0,555475 ,2,822,56160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467345 ,2,821,641665 ,2,822,79695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501145 ,2,827,75 ,2,828,467350 ,2,821,642210 ,2,822,80610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501145 ,2,827,75 ,2,828,467355 ,2,821,642675 ,1,0,555125 ,2,822,82640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,467360 ,2,821,643630 ,1,0,555630 ,2,822,82590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467390 ,2,821,644760 ,1,0,555725 ,1,1,164200 ,2,822,57075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467395 ,2,821,645870 ,1,0,555145 ,2,822,57095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,467400 ,2,821,646845 ,2,822,183030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523140 ,2,827,75 ,2,828,467405 ,2,821,648845 ,2,822,183485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523145 ,2,827,118145 ,2,828,467410 ,2,821,653615 ,2,822,183950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523150 ,2,827,117825 ,2,828,467415 ,2,821,658570 ,2,822,184400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523155 ,2,827,118155 ,2,828,467420 ,2,821,664010 ,2,822,184865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523150 ,2,827,117835 ,2,828,467425 ,2,821,668955 ,2,822,185340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523160 ,2,827,118230 ,2,828,467440 ,2,821,674255 ,2,822,61815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523195 ,2,827,118280 ,2,828,467445 ,2,821,12925 ,2,822,185770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523200 ,2,827,118305 ,2,828,467450 ,2,821,29410 ,2,822,63200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523205 ,2,827,75 ,2,828,467455 ,2,821,33735 ,1,0,555590 ,1,1,204050 ,1,2,97975 ,1,3,97850 ,1,4,97740 ,1,5,164190 ,2,822,97430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523210 ,2,827,131905 ,2,828,467470 ,2,821,39790 ,1,0,555540 ,2,822,65245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467475 ,2,821,41720 ,1,0,555505 ,1,1,612335 ,2,822,60135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521010 ,2,827,75 ,2,828,467480 ,2,821,43760 ,1,0,555535 ,2,822,60265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467495 ,2,821,45715 ,1,0,555525 ,1,1,613110 ,2,822,204130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521010 ,2,827,75 ,2,828,467500 ,2,821,47690 ,2,822,58245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523215 ,2,827,77450 ,2,828,467505 ,2,821,54210 ,2,822,204020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523220 ,2,827,75 ,2,828,467510 ,2,821,63230 ,1,0,555510 ,2,822,64830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467475 ,2,821,65195 ,1,0,555175 ,2,822,64820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,467530 ,2,821,66765 ,2,822,169200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523225 ,2,827,75 ,2,828,467535 ,2,821,71295 ,2,822,60565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,467540 ,2,821,72340 ,1,0,2210 ,1,1,542350 ,2,822,63755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523230 ,2,827,75 ,2,828,467545 ,2,821,79930 ,2,822,65040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523240 ,2,827,75 ,2,828,467585 ,2,821,82485 ,2,822,167825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,467590 ,2,821,83260 ,1,0,555105 ,2,822,138960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467475 ,2,821,85155 ,1,0,554305 ,1,1,124995 ,2,822,124720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523245 ,2,827,131915 ,2,828,467595 ,2,821,87950 ,2,822,63335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523250 ,2,827,131925 ,2,828,467600 ,2,821,97405 ,1,0,337490 ,2,822,172080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523255 ,2,827,40135 ,2,828,467610 ,2,821,105200 ,2,822,165720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,467615 ,2,821,106325 ,1,0,84995 ,1,1,84965 ,2,822,85015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523265 ,2,827,44835 ,2,828,467620 ,2,821,111280 ,2,822,61115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523270 ,2,827,131935 ,2,828,467625 ,2,821,116485 ,2,822,58705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511950 ,2,827,75 ,2,828,467655 ,2,821,117285 ,2,822,200155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523275 ,2,827,75 ,2,828,420660 ,2,821,118020 ,2,822,74680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523280 ,2,827,75 ,2,828,467660 ,2,821,120865 ,2,822,61430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,467665 ,2,821,121550 ,1,0,186250 ,2,822,165750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523300 ,2,827,98290 ,2,828,467670 ,2,821,126375 ,2,822,58310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,126860 ,2,822,63835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,131955 ,2,828,467680 ,2,821,127935 ,2,822,66550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,465170 ,2,821,128615 ,2,822,204140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,129395 ,2,822,204150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523305 ,2,827,75 ,2,828,467685 ,2,821,130735 ,2,822,46580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,130920 ,2,822,46600 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,131085 ,1,0,324415 ,2,822,204220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523310 ,2,827,75 ,2,828,467690 ,2,821,135310 ,1,0,163255 ,2,822,204230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523315 ,2,827,132015 ,2,828,467695 ,2,821,136845 ,2,822,204240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523315 ,2,827,132015 ,2,828,467710 ,2,821,138375 ,1,0,15140 ,1,1,15885 ,2,822,204250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523330 ,2,827,132140 ,2,828,467725 ,2,821,171955 ,2,822,204330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523320 ,2,827,132025 ,2,828,467715 ,2,821,180625 ,1,0,199445 ,1,1,15870 ,2,822,204315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523325 ,2,827,132130 ,2,828,467720 ,2,821,184255 ,2,822,46615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,184420 ,1,0,15815 ,1,1,15440 ,2,822,204340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523335 ,2,827,132130 ,2,828,467730 ,2,821,187140 ,1,0,264280 ,2,822,204395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523370 ,2,827,132210 ,2,828,467735 ,2,821,192855 ,1,0,306540 ,2,822,204405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523375 ,2,827,75 ,2,828,467740 ,2,821,200175 ,2,822,61440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499535 ,2,827,75 ,2,828,467745 ,2,821,201595 ,2,822,58140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,201920 ,2,822,63570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,467760 ,2,821,203035 ,1,0,551305 ,1,1,582180 ,1,2,45 ,1,3,13320 ,2,822,167645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523380 ,2,827,132260 ,2,828,467765 ,2,821,205760 ,2,822,66630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,207375 ,2,822,204425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,208145 ,1,0,45 ,1,1,11510 ,2,822,67140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523385 ,2,827,75 ,2,828,467770 ,2,821,209915 ,1,0,45 ,1,1,11510 ,2,822,138930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523385 ,2,827,75 ,2,828,467770 ,2,821,211675 ,1,0,194655 ,2,822,194695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523395 ,2,827,126370 ,2,828,467775 ,2,821,213665 ,2,822,195030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523400 ,2,827,75 ,2,828,467780 ,2,821,214875 ,2,822,130475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523405 ,2,827,75 ,2,828,467785 ,2,821,215750 ,1,0,194120 ,2,822,194175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523410 ,2,827,126420 ,2,828,467790 ,2,821,217845 ,2,822,194355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523430 ,2,827,75 ,2,828,467795 ,2,821,218920 ,1,0,133515 ,2,822,133610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523435 ,2,827,132270 ,2,828,467825 ,2,821,220880 ,2,822,149740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523440 ,2,827,75 ,2,828,467830 ,2,821,222365 ,2,822,149425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523430 ,2,827,75 ,2,828,467835 ,2,821,223465 ,2,822,149325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523440 ,2,827,75 ,2,828,467840 ,2,821,224995 ,2,822,123500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523430 ,2,827,75 ,2,828,467850 ,2,821,226055 ,2,822,137270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523430 ,2,827,75 ,2,828,467855 ,2,821,227105 ,2,822,137915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,467860 ,2,821,227970 ,2,822,187845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523445 ,2,827,75 ,2,828,467865 ,2,821,229045 ,2,822,113460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523430 ,2,827,75 ,2,828,467895 ,2,821,230095 ,1,0,327540 ,1,1,2210 ,1,2,542350 ,2,822,141615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523455 ,2,827,132280 ,2,828,467900 ,2,821,239820 ,2,822,150140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,467905 ,2,821,240630 ,1,0,313625 ,1,1,152960 ,1,2,313615 ,2,822,152980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523460 ,2,827,126505 ,2,828,467910 ,2,821,242905 ,1,0,153515 ,1,1,153475 ,2,822,153605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523465 ,2,827,132295 ,2,828,467915 ,2,821,247385 ,1,0,132895 ,1,1,240515 ,2,822,132920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523470 ,2,827,132305 ,2,828,467920 ,2,821,250420 ,2,822,195700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523485 ,2,827,75 ,2,828,467925 ,2,821,251465 ,2,822,195735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,467950 ,2,821,252150 ,2,822,195920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,467955 ,2,821,252765 ,2,822,132115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523490 ,2,827,30175 ,2,828,467960 ,2,821,256135 ,1,0,151775 ,1,1,151975 ,1,2,151665 ,1,3,151605 ,1,4,152055 ,2,822,151985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523495 ,2,827,132315 ,2,828,467965 ,2,821,264880 ,2,822,162000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523500 ,2,827,132325 ,2,828,467980 ,2,821,267845 ,2,822,161720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,467985 ,2,821,268645 ,2,822,120655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523505 ,2,827,75 ,2,828,467990 ,2,821,271710 ,1,0,260010 ,2,822,167110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523510 ,2,827,75 ,2,828,467995 ,2,821,273305 ,1,0,2210 ,1,1,542350 ,2,822,129275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523515 ,2,827,132335 ,2,828,468015 ,2,821,282200 ,2,822,196195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523440 ,2,827,75 ,2,828,468020 ,2,821,283680 ,2,822,128855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,468025 ,2,821,284340 ,2,822,140485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523520 ,2,827,75 ,2,828,468030 ,2,821,286185 ,2,822,168100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,468035 ,2,821,287040 ,1,0,259475 ,1,1,150580 ,2,822,150675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523560 ,2,827,126650 ,2,828,468040 ,2,821,289540 ,2,822,147150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507385 ,2,827,75 ,2,828,468045 ,2,821,290785 ,1,0,325665 ,1,1,119110 ,2,822,119160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523565 ,2,827,126660 ,2,828,468050 ,2,821,292660 ,2,822,75295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523570 ,2,827,75 ,2,828,468075 ,2,821,294345 ,2,822,194855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,468080 ,2,821,295375 ,2,822,194260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468085 ,2,821,299015 ,2,822,150015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,468095 ,2,821,300050 ,1,0,400430 ,1,1,65765 ,2,822,65965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,300370 ,1,0,400430 ,1,1,78955 ,2,822,78965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,300720 ,1,0,400430 ,1,1,56290 ,2,822,60575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,301030 ,2,822,123715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523580 ,2,827,75 ,2,828,468105 ,2,821,306095 ,1,0,400430 ,1,1,56805 ,2,822,56825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,306435 ,1,0,400430 ,1,1,65720 ,2,822,65740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,306755 ,2,822,142095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468085 ,2,821,310420 ,1,0,400430 ,1,1,84505 ,2,822,84675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,310730 ,1,0,400430 ,1,1,84525 ,2,822,84580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,311050 ,2,822,129825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523585 ,2,827,26010 ,2,828,468085 ,2,821,314855 ,1,0,400430 ,1,1,127825 ,2,822,127900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,315150 ,2,822,151125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523590 ,2,827,75 ,2,828,468110 ,2,821,316470 ,1,0,400430 ,1,1,91400 ,2,822,91450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,316800 ,1,0,104285 ,2,822,104420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523595 ,2,827,132345 ,2,828,468150 ,2,821,318485 ,1,0,400430 ,1,1,89005 ,2,822,89055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,318790 ,2,822,121690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523620 ,2,827,75 ,2,828,468155 ,2,821,320030 ,2,822,99890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523625 ,2,827,75 ,2,828,468160 ,2,821,321415 ,2,822,196590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523630 ,2,827,75 ,2,828,468165 ,2,821,323385 ,1,0,84365 ,1,1,2210 ,1,2,542350 ,2,822,141440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523635 ,2,827,132355 ,2,828,468170 ,2,821,330970 ,2,822,84410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,331400 ,1,0,400430 ,1,1,88965 ,2,822,90730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,331705 ,1,0,400430 ,1,1,90135 ,2,822,90170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,332045 ,2,822,70670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,332885 ,1,0,400430 ,1,1,97420 ,2,822,98050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,333195 ,2,822,180245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,468175 ,2,821,333695 ,2,822,87975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523645 ,2,827,75 ,2,828,468180 ,2,821,335290 ,1,0,400430 ,1,1,204445 ,2,822,204435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,335630 ,2,822,204445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,468185 ,2,821,337525 ,2,822,135980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523650 ,2,827,75 ,2,828,468215 ,2,821,339480 ,2,822,159390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523305 ,2,827,75 ,2,828,468220 ,2,821,340815 ,1,0,400430 ,1,1,61025 ,2,822,63940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,341130 ,2,822,170530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523655 ,2,827,102915 ,2,828,468225 ,2,821,350260 ,1,0,400430 ,1,1,124710 ,2,822,124930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,350595 ,1,0,358470 ,1,1,369365 ,1,2,369345 ,2,822,104070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,468230 ,2,821,352095 ,2,822,118025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495635 ,2,827,75 ,2,828,468235 ,2,821,352965 ,2,822,120465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501145 ,2,827,75 ,2,828,468240 ,2,821,353880 ,2,822,119680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523660 ,2,827,132455 ,2,828,468245 ,2,821,360810 ,2,822,204945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,468390 ,2,821,361445 ,1,0,327380 ,2,822,204900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523745 ,2,827,75 ,2,828,468385 ,2,821,363745 ,1,0,204520 ,2,822,204890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523735 ,2,827,132465 ,2,828,468250 ,2,821,365930 ,1,0,589495 ,1,1,45 ,1,2,327370 ,2,822,204520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500800 ,2,827,75 ,2,828,468265 ,2,821,368570 ,2,822,46675 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,368735 ,2,822,46695 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,368875 ,2,822,204550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,468270 ,2,821,370570 ,2,822,204560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,370985 ,1,0,204550 ,2,822,204570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523675 ,2,827,132570 ,2,828,468275 ,2,821,372570 ,2,822,204615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,372960 ,2,822,204625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523680 ,2,827,75 ,2,828,468280 ,2,821,374715 ,2,822,204635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523685 ,2,827,75 ,2,828,468290 ,2,821,375655 ,2,822,204665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523690 ,2,827,75 ,2,828,468295 ,2,821,377685 ,2,822,589495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,378075 ,2,822,46705 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,378165 ,1,0,327335 ,1,1,359360 ,2,822,204685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523700 ,2,827,75 ,2,828,468315 ,2,821,379745 ,2,822,204780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503830 ,2,827,75 ,2,828,468300 ,2,821,380430 ,1,0,204725 ,2,822,204770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523695 ,2,827,132640 ,2,828,468305 ,2,821,381195 ,1,0,306730 ,2,822,204695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523720 ,2,827,30175 ,2,828,468330 ,2,821,383640 ,2,822,204745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523710 ,2,827,75 ,2,828,468325 ,2,821,385305 ,1,0,204860 ,2,822,204870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523705 ,2,827,132650 ,2,828,468320 ,2,821,386525 ,1,0,45 ,1,1,276975 ,2,822,204725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,468335 ,2,821,388065 ,1,0,374360 ,2,822,204800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523725 ,2,827,132640 ,2,828,468340 ,2,821,390015 ,1,0,555915 ,2,822,204840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523730 ,2,827,132665 ,2,828,468345 ,2,821,391975 ,2,822,204860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,468350 ,2,821,392940 ,2,822,204530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523740 ,2,827,75 ,2,828,468375 ,2,821,394725 ,2,822,204880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503615 ,2,827,75 ,2,828,468380 ,2,821,395310 ,1,0,45 ,1,1,11510 ,2,822,65755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,468395 ,2,821,396225 ,1,0,400430 ,1,1,180955 ,2,822,181565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,396395 ,1,0,45 ,1,1,190350 ,2,822,78945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511700 ,2,827,75 ,2,828,468400 ,2,821,397480 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,5900 ,2,822,56280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523750 ,2,827,75 ,2,828,468405 ,2,821,399255 ,1,0,606325 ,1,1,45 ,1,2,11510 ,1,3,606320 ,1,4,45 ,1,5,5900 ,2,822,56795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523755 ,2,827,75 ,2,828,468410 ,2,821,400950 ,1,0,607355 ,1,1,45 ,1,2,11510 ,1,3,607350 ,1,4,45 ,1,5,5900 ,2,822,65710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523785 ,2,827,75 ,2,828,468435 ,2,821,402515 ,2,822,66210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523790 ,2,827,75 ,2,828,468440 ,2,821,405695 ,1,0,45 ,1,1,342050 ,1,2,45 ,1,3,11510 ,2,822,84495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523795 ,2,827,24545 ,2,828,468445 ,2,821,408825 ,1,0,45 ,1,1,342050 ,2,822,84515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523800 ,2,827,75 ,2,828,468450 ,2,821,411285 ,2,822,67665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523810 ,2,827,75 ,2,828,468455 ,2,821,412765 ,2,822,127805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523815 ,2,827,75 ,2,828,468460 ,2,821,414155 ,2,822,87860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523820 ,2,827,75 ,2,828,468465 ,2,821,417570 ,2,822,87930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523845 ,2,827,75 ,2,828,468495 ,2,821,422065 ,2,822,204965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,468490 ,2,821,422485 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,204955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523825 ,2,827,75 ,2,828,468470 ,2,821,424650 ,2,822,204305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523850 ,2,827,75 ,2,828,468500 ,2,821,428600 ,2,822,87480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523855 ,2,827,75 ,2,828,468505 ,2,821,429355 ,2,822,87695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523860 ,2,827,75 ,2,828,468520 ,2,821,430850 ,2,822,204210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523865 ,2,827,75 ,2,828,468525 ,2,821,431845 ,2,822,204385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523870 ,2,827,75 ,2,828,468530 ,2,821,435775 ,1,0,608965 ,1,1,45 ,1,2,276975 ,1,3,337440 ,2,822,91390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523875 ,2,827,75 ,2,828,468535 ,2,821,438740 ,1,0,608835 ,1,1,45 ,1,2,195155 ,1,3,330310 ,1,4,330300 ,1,5,330290 ,2,822,88995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523880 ,2,827,132695 ,2,828,468550 ,2,821,443855 ,2,822,87705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,468555 ,2,821,444400 ,2,822,132625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523430 ,2,827,75 ,2,828,468560 ,2,821,445085 ,2,822,132350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523905 ,2,827,75 ,2,828,468565 ,2,821,446075 ,2,822,58405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,446620 ,2,822,65470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523910 ,2,827,75 ,2,828,468585 ,2,821,447545 ,1,0,324735 ,2,822,87850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523915 ,2,827,75 ,2,828,468590 ,2,821,449275 ,2,822,87920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,449685 ,2,822,204295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523920 ,2,827,132720 ,2,828,468595 ,2,821,452830 ,2,822,87650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523930 ,2,827,75 ,2,828,468600 ,2,821,453480 ,2,822,204200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523935 ,2,827,75 ,2,828,468630 ,2,821,455275 ,2,822,204360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523940 ,2,827,75 ,2,828,468635 ,2,821,458595 ,1,0,556325 ,2,822,67340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516705 ,2,827,75 ,2,828,468640 ,2,821,459190 ,1,0,555180 ,2,822,64925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523945 ,2,827,75 ,2,828,468645 ,2,821,460240 ,1,0,608740 ,1,1,45 ,1,2,11510 ,2,822,88955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523975 ,2,827,132730 ,2,828,468660 ,2,821,462045 ,2,822,127490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492610 ,2,827,75 ,2,828,461560 ,2,821,462660 ,2,822,90125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523980 ,2,827,75 ,2,828,468665 ,2,821,464320 ,2,822,65070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,468670 ,2,821,464860 ,2,822,139165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,468675 ,2,821,465125 ,1,0,609110 ,1,1,45 ,1,2,343730 ,1,3,609175 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,2135 ,2,822,97410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523985 ,2,827,130270 ,2,828,468700 ,2,821,472885 ,1,0,606630 ,1,1,45 ,1,2,175900 ,1,3,2280 ,1,4,542265 ,1,5,45 ,1,6,13320 ,1,7,2280 ,1,8,542165 ,1,9,45 ,1,10,13320 ,1,11,2135 ,2,822,204455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524000 ,2,827,132740 ,2,828,468710 ,2,821,490850 ,2,822,204975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523990 ,2,827,75 ,2,828,468705 ,2,821,493320 ,1,0,557265 ,2,822,98185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524005 ,2,827,75 ,2,828,468715 ,2,821,494960 ,1,0,591475 ,1,1,45 ,1,2,340325 ,1,3,45 ,1,4,13320 ,2,822,65305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524010 ,2,827,75 ,2,828,468720 ,2,821,501665 ,2,822,158395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,501760 ,2,822,65460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524015 ,2,827,75 ,2,828,468725 ,2,821,503240 ,2,822,119865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,503340 ,2,822,99970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524055 ,2,827,75 ,2,828,468730 ,2,821,504490 ,1,0,606760 ,1,1,45 ,1,2,11510 ,2,822,61015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,468735 ,2,821,505460 ,1,0,591450 ,1,1,45 ,1,2,340325 ,1,3,2210 ,1,4,542345 ,1,5,2210 ,1,6,542350 ,2,822,67410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524060 ,2,827,75 ,2,828,468740 ,2,821,511970 ,1,0,591460 ,1,1,45 ,1,2,340325 ,1,3,2135 ,2,822,67460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524065 ,2,827,75 ,2,828,468745 ,2,821,517000 ,1,0,591445 ,1,1,45 ,1,2,340325 ,2,822,67105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524070 ,2,827,75 ,2,828,468750 ,2,821,522380 ,2,822,67330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524080 ,2,827,75 ,2,828,468755 ,2,821,523950 ,1,0,400430 ,1,1,197400 ,2,822,197410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,524170 ,1,0,45 ,1,1,343730 ,2,822,124700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524085 ,2,827,75 ,2,828,468765 ,2,821,525850 ,1,0,400430 ,1,1,197885 ,2,822,197895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,526050 ,2,822,118130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524090 ,2,827,75 ,2,828,468770 ,2,821,526850 ,1,0,327415 ,2,822,119405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524095 ,2,827,75 ,2,828,468775 ,2,821,527790 ,1,0,591455 ,1,1,45 ,1,2,340325 ,2,822,139000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524120 ,2,827,75 ,2,828,468780 ,2,821,531775 ,1,0,555310 ,2,822,119700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524125 ,2,827,132750 ,2,828,468820 ,2,821,534050 ,2,822,117630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,468825 ,2,821,534625 ,1,0,197280 ,1,1,210605 ,2,822,96965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524130 ,2,827,75 ,2,828,468830 ,2,821,535775 ,1,0,400430 ,1,1,163980 ,2,822,163990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,535975 ,1,0,400430 ,1,1,167635 ,2,822,167880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,536160 ,2,822,180940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524135 ,2,827,75 ,2,828,468835 ,2,821,538945 ,1,0,341030 ,2,822,140150 ,2,823,541070 ,2,824,418420 ,2,825,352570 ,2,826,524150 ,2,827,44250 ,2,828,468845 ,2,821,541205 ,2,822,150775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,541325 ,2,822,107250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505945 ,2,827,75 ,2,828,468850 ,2,821,542075 ,2,822,88180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524155 ,2,827,75 ,2,828,468855 ,2,821,542900 ,2,822,179270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,468860 ,2,821,543320 ,2,822,172625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,543985 ,2,822,173090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524160 ,2,827,75 ,2,828,468875 ,2,821,545590 ,2,822,179695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524165 ,2,827,75 ,2,828,468880 ,2,821,546720 ,2,822,179560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,468885 ,2,821,547240 ,2,822,179470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524165 ,2,827,75 ,2,828,468890 ,2,821,548385 ,2,822,116900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523305 ,2,827,75 ,2,828,467685 ,2,821,549120 ,2,822,178290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524205 ,2,827,109625 ,2,828,468900 ,2,821,551185 ,1,0,12270 ,1,1,12260 ,1,2,12250 ,1,3,12240 ,1,4,12230 ,1,5,12215 ,1,6,12205 ,1,7,12195 ,1,8,12185 ,1,9,12170 ,1,10,12160 ,1,11,12150 ,1,12,12140 ,2,822,178110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524210 ,2,827,75 ,2,828,468905 ,2,821,554440 ,2,822,178020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524210 ,2,827,75 ,2,828,468905 ,2,821,557805 ,2,822,177930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524215 ,2,827,75 ,2,828,468910 ,2,821,560295 ,1,0,14100 ,1,1,14090 ,1,2,14080 ,1,3,14070 ,1,4,14060 ,2,822,177545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524220 ,2,827,109245 ,2,828,468930 ,2,821,563395 ,2,822,177490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524225 ,2,827,109245 ,2,828,468935 ,2,821,569130 ,2,822,124605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524230 ,2,827,75 ,2,828,468940 ,2,821,572110 ,2,822,200035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,572360 ,2,822,87415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,468945 ,2,821,573075 ,2,822,162365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524235 ,2,827,75 ,2,828,468950 ,2,821,573710 ,2,822,109015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524240 ,2,827,75 ,2,828,468955 ,2,821,575655 ,2,822,108795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524275 ,2,827,75 ,2,828,468960 ,2,821,578830 ,2,822,71865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524280 ,2,827,75 ,2,828,468965 ,2,821,581270 ,2,822,72480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524280 ,2,827,75 ,2,828,468990 ,2,821,583825 ,2,822,76385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519940 ,2,827,75 ,2,828,468995 ,2,821,584650 ,2,822,73630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524285 ,2,827,34460 ,2,828,469000 ,2,821,585980 ,2,822,172920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,469005 ,2,821,586625 ,2,822,123050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524290 ,2,827,75 ,2,828,469025 ,2,821,590395 ,2,822,57410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,590470 ,2,822,168790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524300 ,2,827,75 ,2,828,469030 ,2,821,592490 ,2,822,169625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504625 ,2,827,75 ,2,828,469035 ,2,821,593095 ,2,822,102130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524305 ,2,827,75 ,2,828,469040 ,2,821,594430 ,2,822,102180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524310 ,2,827,75 ,2,828,469070 ,2,821,600130 ,2,822,128805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524315 ,2,827,75 ,2,828,469075 ,2,821,601125 ,1,0,218885 ,1,1,218875 ,2,822,166490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524335 ,2,827,75 ,2,828,469080 ,2,821,603155 ,2,822,58695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511950 ,2,827,75 ,2,828,469085 ,2,821,603675 ,2,822,200145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524340 ,2,827,75 ,2,828,456145 ,2,821,604385 ,2,822,125600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,469100 ,2,821,605080 ,2,822,89955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524345 ,2,827,132785 ,2,828,469105 ,2,821,606720 ,1,0,220870 ,2,822,204995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524350 ,2,827,132785 ,2,828,469110 ,2,821,608625 ,2,822,46720 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,608715 ,1,0,561150 ,1,1,45 ,1,2,13320 ,2,822,205075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524355 ,2,827,32775 ,2,828,469115 ,2,821,611600 ,2,822,205085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,132785 ,2,828,469150 ,2,821,612070 ,2,822,46730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,612175 ,2,822,205115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497510 ,2,827,75 ,2,828,469155 ,2,821,613150 ,1,0,205115 ,2,822,205210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524360 ,2,827,132855 ,2,828,469160 ,2,821,615130 ,2,822,121265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524365 ,2,827,75 ,2,828,469165 ,2,821,615845 ,2,822,121325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492875 ,2,827,75 ,2,828,469175 ,2,821,616245 ,2,822,120775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524370 ,2,827,75 ,2,828,469180 ,2,821,616890 ,2,822,121020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524390 ,2,827,75 ,2,828,469185 ,2,821,617815 ,2,822,121460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524395 ,2,827,75 ,2,828,469190 ,2,821,618445 ,1,0,552875 ,1,1,218295 ,2,822,197390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524400 ,2,827,75 ,2,828,469200 ,2,821,621205 ,2,822,114620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524405 ,2,827,75 ,2,828,469205 ,2,821,621950 ,1,0,552905 ,1,1,218490 ,2,822,197865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524400 ,2,827,75 ,2,828,469210 ,2,821,624720 ,2,822,151450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524420 ,2,827,75 ,2,828,469215 ,2,821,625365 ,1,0,608520 ,1,1,45 ,1,2,327595 ,2,822,84290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524425 ,2,827,75 ,2,828,469220 ,2,821,627435 ,2,822,180300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524430 ,2,827,75 ,2,828,469225 ,2,821,628145 ,1,0,610555 ,1,1,45 ,1,2,343730 ,2,822,163960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500795 ,2,827,75 ,2,828,469230 ,2,821,629055 ,1,0,610765 ,1,1,45 ,1,2,11510 ,2,822,167615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524435 ,2,827,75 ,2,828,469235 ,2,821,630075 ,2,822,201065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524470 ,2,827,132870 ,2,828,469260 ,2,821,630725 ,2,822,201125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,132870 ,2,828,469265 ,2,821,631235 ,2,822,201175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524475 ,2,827,132880 ,2,828,469270 ,2,821,631815 ,2,822,66025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524480 ,2,827,75 ,2,828,469275 ,2,821,632770 ,2,822,166285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524485 ,2,827,75 ,2,828,469280 ,2,821,635560 ,2,822,166340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524495 ,2,827,75 ,2,828,469285 ,2,821,636115 ,2,822,201495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524500 ,2,827,75 ,2,828,469295 ,2,821,636685 ,2,822,200740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,636930 ,2,822,92090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524505 ,2,827,75 ,2,828,469320 ,2,821,637470 ,2,822,79050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514460 ,2,827,75 ,2,828,453920 ,2,821,638020 ,2,822,56415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524510 ,2,827,75 ,2,828,469325 ,2,821,639360 ,2,822,201000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524525 ,2,827,75 ,2,828,469335 ,2,821,641265 ,2,822,60885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524530 ,2,827,75 ,2,828,469345 ,2,821,643505 ,2,822,117160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,643675 ,2,822,120825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502280 ,2,827,75 ,2,828,469350 ,2,821,644160 ,2,822,121040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502280 ,2,827,75 ,2,828,469355 ,2,821,644620 ,2,822,154580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524535 ,2,827,75 ,2,828,469360 ,2,821,645770 ,2,822,58475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524540 ,2,827,75 ,2,828,422660 ,2,821,646435 ,2,822,151155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,469375 ,2,821,647365 ,1,0,610455 ,1,1,45 ,1,2,327595 ,2,822,156455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524425 ,2,827,75 ,2,828,469380 ,2,821,649325 ,1,0,2210 ,1,1,542350 ,2,822,181365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524545 ,2,827,112690 ,2,828,469385 ,2,821,651940 ,1,0,546040 ,2,822,64590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524550 ,2,827,75 ,2,828,469390 ,2,821,653295 ,1,0,220800 ,1,1,220770 ,2,822,82600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524555 ,2,827,32775 ,2,828,469395 ,2,821,655820 ,2,822,183050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524560 ,2,827,75 ,2,828,469400 ,2,821,658030 ,2,822,183540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524590 ,2,827,118145 ,2,828,469405 ,2,821,663120 ,2,822,183970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524595 ,2,827,117825 ,2,828,469410 ,2,821,668245 ,2,822,184425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524600 ,2,827,118155 ,2,828,469435 ,2,821,673990 ,2,822,184885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524605 ,2,827,117835 ,2,828,469440 ,2,821,7055 ,2,822,185360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524610 ,2,827,118230 ,2,828,469445 ,2,821,16645 ,2,822,61825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524615 ,2,827,118280 ,2,828,469450 ,2,821,31325 ,2,822,185780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524620 ,2,827,118305 ,2,828,469455 ,2,821,47755 ,2,822,63210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524625 ,2,827,75 ,2,828,469460 ,2,821,51815 ,1,0,237730 ,1,1,237740 ,1,2,237720 ,1,3,549775 ,1,4,217205 ,1,5,325790 ,1,6,2210 ,1,7,542350 ,2,822,129430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524665 ,2,827,132890 ,2,828,469470 ,2,821,72960 ,2,822,98095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515445 ,2,827,75 ,2,828,453920 ,2,821,73835 ,2,822,204080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524670 ,2,827,132870 ,2,828,469505 ,2,821,74885 ,2,822,65375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524675 ,2,827,75 ,2,828,469510 ,2,821,76425 ,2,822,205245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524680 ,2,827,75 ,2,828,469515 ,2,821,80110 ,2,822,205255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524685 ,2,827,75 ,2,828,469520 ,2,821,83790 ,2,822,66540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524690 ,2,827,75 ,2,828,469525 ,2,821,87055 ,2,822,205265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524540 ,2,827,75 ,2,828,469530 ,2,821,88210 ,2,822,154475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,88375 ,2,822,92500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524695 ,2,827,75 ,2,828,469535 ,2,821,93350 ,2,822,67250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515445 ,2,827,75 ,2,828,455915 ,2,821,94255 ,2,822,64915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514770 ,2,827,75 ,2,828,469540 ,2,821,95265 ,2,822,169065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,95795 ,2,822,139075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514460 ,2,827,75 ,2,828,455915 ,2,821,96690 ,2,822,149060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,96995 ,1,0,357860 ,2,822,149160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524700 ,2,827,75 ,2,828,469560 ,2,821,98180 ,2,822,203565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524700 ,2,827,75 ,2,828,469565 ,2,821,99140 ,2,822,131340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524715 ,2,827,75 ,2,828,469570 ,2,821,100915 ,2,822,131220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524715 ,2,827,75 ,2,828,469585 ,2,821,102800 ,2,822,203910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524700 ,2,827,75 ,2,828,469590 ,2,821,103775 ,2,822,203815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524700 ,2,827,75 ,2,828,469595 ,2,821,104875 ,2,822,203695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524720 ,2,827,75 ,2,828,469600 ,2,821,106625 ,2,822,124265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524725 ,2,827,75 ,2,828,469615 ,2,821,110785 ,2,822,123935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524730 ,2,827,75 ,2,828,469620 ,2,821,114190 ,2,822,76105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496015 ,2,827,75 ,2,828,469625 ,2,821,115030 ,1,0,208365 ,2,822,125165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524740 ,2,827,75 ,2,828,469630 ,2,821,118510 ,2,822,76580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496015 ,2,827,75 ,2,828,469640 ,2,821,119290 ,2,822,74020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496015 ,2,827,75 ,2,828,469645 ,2,821,120080 ,1,0,544650 ,2,822,101020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524550 ,2,827,75 ,2,828,469650 ,2,821,122410 ,1,0,212040 ,2,822,101435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524745 ,2,827,75 ,2,828,469655 ,2,821,125175 ,2,822,75285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523570 ,2,827,75 ,2,828,469670 ,2,821,126955 ,2,822,66305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524750 ,2,827,132900 ,2,828,469680 ,2,821,128570 ,1,0,400430 ,1,1,112465 ,2,822,112475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,128865 ,1,0,555650 ,2,822,182765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524755 ,2,827,75 ,2,828,469685 ,2,821,130470 ,1,0,555675 ,2,822,183220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469685 ,2,821,132095 ,1,0,555660 ,2,822,183675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469690 ,2,821,133680 ,1,0,555710 ,2,822,184120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469690 ,2,821,135260 ,1,0,555670 ,2,822,184575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469695 ,2,821,136915 ,1,0,555685 ,2,822,185060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469695 ,2,821,138540 ,1,0,555700 ,2,822,61555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469700 ,2,821,140170 ,1,0,555665 ,2,822,185500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469700 ,2,821,141725 ,1,0,555655 ,2,822,61360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469705 ,2,821,143255 ,1,0,555680 ,2,822,171665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524785 ,2,827,75 ,2,828,469705 ,2,821,144850 ,2,822,95835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,145905 ,2,822,141420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,469740 ,2,821,146790 ,1,0,400430 ,1,1,152755 ,2,822,152765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,147110 ,1,0,400430 ,1,1,134865 ,2,822,134875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,147440 ,2,822,87525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,152550 ,2,822,87755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,162065 ,2,822,87800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,169095 ,2,822,205355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524795 ,2,827,132985 ,2,828,469750 ,2,821,170615 ,2,822,13990 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,170780 ,1,0,555715 ,1,1,611945 ,1,2,589575 ,1,3,12750 ,2,822,205305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524790 ,2,827,75 ,2,828,469745 ,2,821,173605 ,1,0,400430 ,1,1,160570 ,2,822,160580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,173970 ,1,0,400430 ,1,1,109465 ,2,822,109510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,174285 ,1,0,400430 ,1,1,107050 ,2,822,108040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,174605 ,1,0,555600 ,2,822,66390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,467475 ,2,821,176580 ,1,0,400430 ,1,1,116435 ,2,822,116455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,176920 ,1,0,357145 ,2,822,87505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,177235 ,1,0,357095 ,2,822,87725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,177565 ,1,0,357105 ,2,822,87765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,177905 ,1,0,400430 ,1,1,138090 ,2,822,138100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,178265 ,1,0,555530 ,2,822,61090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523080 ,2,827,75 ,2,828,469755 ,2,821,180210 ,2,822,87515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,185525 ,2,822,87745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,195350 ,2,822,87775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,202795 ,2,822,86610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524405 ,2,827,75 ,2,828,467685 ,2,821,204170 ,2,822,164100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515445 ,2,827,75 ,2,828,453920 ,2,821,205105 ,2,822,167765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524500 ,2,827,133045 ,2,828,469765 ,2,821,206085 ,1,0,218015 ,2,822,195620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,469770 ,2,821,210730 ,2,822,195375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,469775 ,2,821,211465 ,1,0,400430 ,1,1,117685 ,2,822,117695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,211780 ,1,0,400430 ,1,1,117780 ,2,822,117790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,212110 ,2,822,142040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,469780 ,2,821,212885 ,2,822,166745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524800 ,2,827,75 ,2,828,469775 ,2,821,213660 ,1,0,400430 ,1,1,93760 ,2,822,93775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,214000 ,2,822,130590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524805 ,2,827,75 ,2,828,469795 ,2,821,215480 ,2,822,124585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524810 ,2,827,75 ,2,828,469800 ,2,821,217135 ,2,822,183160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,469805 ,2,821,218195 ,2,822,183625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524815 ,2,827,75 ,2,828,469810 ,2,821,219285 ,2,822,184070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,469815 ,2,821,220335 ,2,822,185000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524820 ,2,827,75 ,2,828,469820 ,2,821,221425 ,2,822,185435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,469825 ,2,821,222485 ,2,822,61925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521550 ,2,827,75 ,2,828,469830 ,2,821,223585 ,2,822,185890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,469850 ,2,821,224680 ,2,822,63315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521555 ,2,827,75 ,2,828,469855 ,2,821,225685 ,1,0,400430 ,1,1,124130 ,2,822,124140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,226010 ,1,0,400430 ,1,1,123830 ,2,822,123965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,226335 ,1,0,216575 ,2,822,195490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,469865 ,2,821,227175 ,1,0,45 ,1,1,209800 ,2,822,112445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,229040 ,1,0,218165 ,2,822,167080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,469875 ,2,821,230380 ,2,822,99020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,230690 ,1,0,400430 ,1,1,108655 ,2,822,108665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,231035 ,1,0,400430 ,1,1,108970 ,2,822,108980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,231360 ,1,0,400430 ,1,1,108520 ,2,822,109065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,231650 ,1,0,400430 ,1,1,122925 ,2,822,123100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,231980 ,1,0,400430 ,1,1,122955 ,2,822,122965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,232315 ,1,0,400430 ,1,1,101845 ,2,822,101855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,232625 ,1,0,400430 ,1,1,102090 ,2,822,102120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,232935 ,1,0,400430 ,1,1,101715 ,2,822,102245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,233255 ,1,0,45 ,1,1,209800 ,2,822,152745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,235100 ,1,0,45 ,1,1,209800 ,2,822,134855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,237005 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,112555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524860 ,2,827,75 ,2,828,469885 ,2,821,243595 ,1,0,45 ,1,1,209800 ,2,822,160560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,245500 ,1,0,45 ,1,1,209800 ,2,822,109455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524865 ,2,827,75 ,2,828,469905 ,2,821,247375 ,1,0,45 ,1,1,209800 ,1,2,164105 ,2,822,107040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,249240 ,1,0,45 ,1,1,209800 ,2,822,116425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,251125 ,1,0,45 ,1,1,209800 ,2,822,138080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524855 ,2,827,75 ,2,828,469870 ,2,821,253050 ,1,0,226095 ,2,822,141340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,469910 ,2,821,254040 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,152830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524860 ,2,827,75 ,2,828,469885 ,2,821,260620 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,134950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524870 ,2,827,75 ,2,828,469885 ,2,821,267160 ,1,0,400430 ,1,1,97070 ,2,822,97080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,267450 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,160670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524880 ,2,827,75 ,2,828,469915 ,2,821,273810 ,2,822,95280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524885 ,2,827,75 ,2,828,469920 ,2,821,285675 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,109610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524890 ,2,827,75 ,2,828,469930 ,2,821,292005 ,2,822,94535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524895 ,2,827,75 ,2,828,469935 ,2,821,293700 ,2,822,94840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524910 ,2,827,75 ,2,828,469940 ,2,821,296465 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,108120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524870 ,2,827,75 ,2,828,469885 ,2,821,303095 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,116535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524915 ,2,827,75 ,2,828,469945 ,2,821,310005 ,2,822,117675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524920 ,2,827,24545 ,2,828,469960 ,2,821,313640 ,1,0,221350 ,2,822,117740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524925 ,2,827,67155 ,2,828,469965 ,2,821,318535 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,217770 ,1,4,45 ,1,5,5900 ,2,822,138620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524940 ,2,827,30175 ,2,828,469970 ,2,821,327405 ,2,822,114265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524945 ,2,827,64950 ,2,828,469975 ,2,821,333685 ,1,0,343800 ,2,822,93750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524950 ,2,827,24545 ,2,828,469980 ,2,821,338890 ,1,0,45 ,1,1,11510 ,2,822,154125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524955 ,2,827,75 ,2,828,469985 ,2,821,341770 ,2,822,124085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525000 ,2,827,75 ,2,828,469990 ,2,821,346795 ,2,822,123820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,348160 ,2,822,205375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495825 ,2,827,75 ,2,828,470030 ,2,821,348940 ,1,1,2395 ,2,822,205365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495865 ,2,827,75 ,2,828,469995 ,2,821,349980 ,1,0,45 ,1,1,11510 ,2,822,159610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525005 ,2,827,75 ,2,828,470035 ,2,821,352905 ,1,0,567805 ,1,1,45 ,1,2,11510 ,2,822,103460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525010 ,2,827,75 ,2,828,470035 ,2,821,355800 ,1,0,400430 ,1,1,163095 ,2,822,163105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,356130 ,2,822,108550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524280 ,2,827,75 ,2,828,470040 ,2,821,360190 ,2,822,108870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525015 ,2,827,75 ,2,828,470045 ,2,821,364190 ,2,822,108805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525020 ,2,827,75 ,2,828,470055 ,2,821,369805 ,2,822,108645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525025 ,2,827,75 ,2,828,470060 ,2,821,371145 ,2,822,108960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525025 ,2,827,75 ,2,828,470065 ,2,821,372525 ,1,0,218190 ,2,822,108490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525030 ,2,827,75 ,2,828,470070 ,2,821,380385 ,2,822,122815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525035 ,2,827,75 ,2,828,470090 ,2,821,382400 ,2,822,123060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525065 ,2,827,75 ,2,828,470095 ,2,821,386685 ,2,822,122915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525025 ,2,827,75 ,2,828,470100 ,2,821,387475 ,1,0,232020 ,2,822,122945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525070 ,2,827,75 ,2,828,470105 ,2,821,396850 ,2,822,101735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525075 ,2,827,75 ,2,828,470115 ,2,821,401350 ,2,822,102020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525075 ,2,827,75 ,2,828,470120 ,2,821,406035 ,2,822,102190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525080 ,2,827,75 ,2,828,470125 ,2,821,413020 ,1,0,594570 ,1,1,45 ,1,2,203550 ,2,822,136480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525100 ,2,827,30175 ,2,828,470130 ,2,821,416005 ,2,822,101835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525025 ,2,827,75 ,2,828,470150 ,2,821,416820 ,2,822,102080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525105 ,2,827,75 ,2,828,470155 ,2,821,417645 ,1,0,212340 ,2,822,101705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525110 ,2,827,75 ,2,828,470160 ,2,821,431040 ,2,822,149140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525115 ,2,827,75 ,2,828,470165 ,2,821,432655 ,2,822,203555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525140 ,2,827,75 ,2,828,470170 ,2,821,433820 ,2,822,131330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525145 ,2,827,75 ,2,828,470175 ,2,821,437310 ,2,822,131210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525150 ,2,827,56720 ,2,828,470180 ,2,821,445470 ,1,0,45 ,1,1,5900 ,2,822,203900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525155 ,2,827,75 ,2,828,470185 ,2,821,450280 ,2,822,203805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525160 ,2,827,56720 ,2,828,470200 ,2,821,457065 ,2,822,203680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525165 ,2,827,56720 ,2,828,470205 ,2,821,464770 ,2,822,124255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524805 ,2,827,75 ,2,828,470210 ,2,821,465580 ,2,822,124010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507450 ,2,827,75 ,2,828,470215 ,2,821,466380 ,1,0,218740 ,1,1,218730 ,1,2,218715 ,2,822,92120 ,2,823,541075 ,2,824,418425 ,2,825,352580 ,2,826,525170 ,2,827,30175 ,2,828,470225 ,2,821,475115 ,2,822,92685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525175 ,2,827,75 ,2,828,470230 ,2,821,475955 ,2,822,102400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525220 ,2,827,75 ,2,828,470235 ,2,821,480340 ,2,822,99010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,480535 ,1,0,400430 ,1,1,205420 ,2,822,205410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,480740 ,1,0,45 ,1,1,343730 ,2,822,205420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,470240 ,2,821,482420 ,2,822,46750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,482505 ,1,0,45 ,1,1,343730 ,2,822,205440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493840 ,2,827,75 ,2,828,470275 ,2,821,483430 ,2,822,205450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525225 ,2,827,75 ,2,828,470280 ,2,821,484990 ,2,822,205460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,470285 ,2,821,485415 ,1,0,307325 ,1,1,343460 ,1,2,343450 ,1,3,343440 ,1,4,343430 ,1,5,205580 ,1,6,216120 ,2,822,205470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525245 ,2,827,133255 ,2,828,470310 ,2,821,490135 ,2,822,205480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,490620 ,2,822,46805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,490720 ,2,822,205510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,470300 ,2,821,491200 ,1,0,557155 ,1,1,557145 ,1,2,557140 ,1,3,557135 ,2,822,205540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525230 ,2,827,133215 ,2,828,470295 ,2,821,495110 ,1,0,557130 ,2,822,205520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497215 ,2,827,75 ,2,828,470290 ,2,821,496915 ,2,822,46835 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,497030 ,1,0,264320 ,2,822,205560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,133245 ,2,828,470305 ,2,821,497635 ,1,0,45 ,1,1,205425 ,2,822,205580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525235 ,2,827,75 ,2,828,470325 ,2,821,499505 ,1,0,596405 ,1,1,45 ,1,2,5900 ,1,3,343490 ,2,822,205590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525250 ,2,827,75 ,2,828,470330 ,2,821,500935 ,1,0,223095 ,2,822,205620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507470 ,2,827,75 ,2,828,470335 ,2,821,501695 ,1,0,589645 ,1,1,45 ,1,2,264530 ,2,822,205630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525255 ,2,827,75 ,2,828,470340 ,2,821,503015 ,1,0,373170 ,1,1,372390 ,1,2,372780 ,1,3,372650 ,1,4,372820 ,1,5,372410 ,1,6,372715 ,1,7,164960 ,1,8,358985 ,1,9,358935 ,1,10,164950 ,1,11,374895 ,1,12,164940 ,1,13,310305 ,1,14,359115 ,1,15,164930 ,2,822,205640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525260 ,2,827,75 ,2,828,470350 ,2,821,507080 ,2,822,46865 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,507195 ,1,0,216870 ,1,1,216860 ,2,822,168265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525285 ,2,827,75 ,2,828,470355 ,2,821,508150 ,2,822,130495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525290 ,2,827,75 ,2,828,470360 ,2,821,509800 ,1,0,322970 ,2,822,136610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525305 ,2,827,82330 ,2,828,470390 ,2,821,511115 ,2,822,46910 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,511220 ,1,0,556005 ,2,822,205675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501815 ,2,827,75 ,2,828,470365 ,2,821,512155 ,1,0,369590 ,2,822,205685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525295 ,2,827,133455 ,2,828,470380 ,2,821,519205 ,1,0,217020 ,2,822,205695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525300 ,2,827,75 ,2,828,470385 ,2,821,520780 ,2,822,205740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525310 ,2,827,75 ,2,828,470395 ,2,821,521785 ,1,0,354775 ,2,822,205720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,523095 ,1,0,317075 ,1,1,213265 ,1,2,369835 ,1,3,317065 ,2,822,205730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525315 ,2,827,75 ,2,828,470400 ,2,821,524825 ,1,0,325025 ,1,1,325015 ,1,2,358555 ,1,3,356980 ,2,822,196745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525320 ,2,827,75 ,2,828,470405 ,2,821,530205 ,1,0,314875 ,1,1,161545 ,2,822,196735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525355 ,2,827,24545 ,2,828,470410 ,2,821,538780 ,1,0,161565 ,1,1,161555 ,2,822,205765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525365 ,2,827,75 ,2,828,470440 ,2,821,546065 ,1,0,314895 ,2,822,205750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525360 ,2,827,75 ,2,828,470415 ,2,821,548875 ,1,0,246135 ,2,822,153085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525370 ,2,827,75 ,2,828,470445 ,2,821,553815 ,1,0,45 ,1,1,190350 ,1,2,45 ,1,3,11510 ,2,822,97060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525375 ,2,827,24545 ,2,828,470450 ,2,821,556785 ,1,0,329030 ,1,1,329020 ,1,2,329005 ,1,3,328995 ,1,4,328985 ,1,5,328975 ,1,6,328940 ,1,7,328930 ,1,8,328920 ,1,9,328910 ,1,10,15905 ,1,11,164375 ,1,12,358815 ,2,822,205775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525380 ,2,827,39680 ,2,828,470455 ,2,821,569290 ,2,822,46980 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,569390 ,1,0,317085 ,1,1,356935 ,1,2,162360 ,2,822,166225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525385 ,2,827,34150 ,2,828,470470 ,2,821,580880 ,1,0,122735 ,2,822,131855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525390 ,2,827,133775 ,2,828,470475 ,2,821,584590 ,2,822,131005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525410 ,2,827,75 ,2,828,470480 ,2,821,586750 ,2,822,167280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525415 ,2,827,75 ,2,828,470485 ,2,821,587695 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,1,8,2280 ,1,9,542095 ,1,10,2280 ,1,11,542095 ,1,12,2280 ,1,13,542095 ,1,14,2280 ,1,15,542095 ,1,16,2280 ,1,17,542095 ,1,18,2280 ,1,19,542095 ,1,20,2280 ,1,21,542095 ,1,22,2280 ,1,23,542095 ,1,24,2280 ,1,25,542095 ,1,26,2280 ,1,27,542095 ,1,28,236010 ,1,29,212295 ,1,30,161715 ,1,31,354340 ,1,32,2210 ,1,33,542350 ,1,34,2210 ,1,35,542350 ,1,36,2210 ,1,37,542350 ,1,38,2210 ,1,39,542350 ,1,40,2210 ,1,41,542350 ,1,42,2210 ,1,43,542350 ,2,822,137650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525420 ,2,827,133785 ,2,828,470510 ,2,821,620890 ,1,0,358425 ,2,822,137240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525425 ,2,827,75 ,2,828,470515 ,2,821,623745 ,1,0,212505 ,1,1,370100 ,1,2,357600 ,1,3,161885 ,1,4,356900 ,1,5,212495 ,2,822,128665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525430 ,2,827,133795 ,2,828,470520 ,2,821,642075 ,2,822,113210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,470525 ,2,821,642355 ,1,0,325060 ,1,1,369550 ,2,822,137050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525435 ,2,827,133805 ,2,828,470530 ,2,821,644010 ,1,0,161475 ,2,822,153695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525440 ,2,827,75 ,2,828,470535 ,2,821,648520 ,2,822,159320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525445 ,2,827,75 ,2,828,470540 ,2,821,650025 ,2,822,158385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525470 ,2,827,75 ,2,828,470545 ,2,821,651030 ,2,822,158660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,651235 ,2,822,159285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525475 ,2,827,75 ,2,828,470570 ,2,821,651935 ,1,0,356925 ,1,1,356455 ,2,822,133900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525480 ,2,827,75 ,2,828,470575 ,2,821,656710 ,1,0,551200 ,1,1,555980 ,1,2,219070 ,1,3,219060 ,1,4,578895 ,1,5,555975 ,1,6,219050 ,1,7,219040 ,1,8,594850 ,1,9,555970 ,1,10,219025 ,1,11,219015 ,1,12,594835 ,1,13,555950 ,1,14,219005 ,1,15,218995 ,1,16,594830 ,1,17,555945 ,1,18,218955 ,1,19,218945 ,1,20,594825 ,1,21,555940 ,1,22,218935 ,1,23,218925 ,1,24,594810 ,2,822,119845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525485 ,2,827,75 ,2,828,470580 ,2,821,666240 ,1,0,164645 ,1,1,179415 ,1,2,356540 ,2,822,199000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525490 ,2,827,54195 ,2,828,470585 ,2,821,495 ,1,0,242525 ,1,1,2210 ,1,2,542350 ,2,822,127315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525495 ,2,827,40735 ,2,828,470590 ,2,821,7375 ,1,0,217270 ,1,1,163310 ,2,822,118490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525500 ,2,827,57830 ,2,828,470595 ,2,821,17165 ,1,0,571520 ,1,1,548625 ,2,822,118450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525505 ,2,827,75 ,2,828,470600 ,2,821,20495 ,1,0,354705 ,1,1,354685 ,1,2,354695 ,2,822,112905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525520 ,2,827,85580 ,2,828,470605 ,2,821,35775 ,2,822,113780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,36100 ,2,822,205830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525525 ,2,827,34110 ,2,828,470615 ,2,821,51340 ,2,822,47040 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,51505 ,1,0,217170 ,2,822,196845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525530 ,2,827,75 ,2,828,470625 ,2,821,57380 ,2,822,47070 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,57540 ,1,0,555030 ,2,822,205860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496515 ,2,827,75 ,2,828,470620 ,2,821,58715 ,1,0,214075 ,2,822,190900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525535 ,2,827,75 ,2,828,470630 ,2,821,64890 ,2,822,200475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525540 ,2,827,75 ,2,828,470640 ,2,821,68295 ,2,822,205870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,470645 ,2,821,69265 ,1,0,368445 ,1,1,164495 ,1,2,164485 ,2,822,134045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525545 ,2,827,75 ,2,828,470650 ,2,821,78440 ,2,822,107260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525550 ,2,827,75 ,2,828,470655 ,2,821,80005 ,2,822,205880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525555 ,2,827,75 ,2,828,470700 ,2,821,82035 ,2,822,47115 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,82185 ,2,822,151300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,82890 ,1,0,571730 ,1,1,45 ,1,2,5900 ,2,822,119280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525600 ,2,827,134100 ,2,828,470705 ,2,821,85570 ,1,0,571715 ,1,1,45 ,1,2,5900 ,2,822,119190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525605 ,2,827,134110 ,2,828,470710 ,2,821,90290 ,1,0,45 ,1,1,5900 ,2,822,119220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525610 ,2,827,134120 ,2,828,470715 ,2,821,93815 ,1,0,45 ,1,1,5900 ,2,822,118975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525615 ,2,827,134130 ,2,828,470720 ,2,821,97090 ,2,822,119075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525620 ,2,827,134155 ,2,828,470725 ,2,821,98645 ,2,822,119055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525625 ,2,827,75 ,2,828,470730 ,2,821,99795 ,1,0,552815 ,2,822,196685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,470735 ,2,821,100700 ,1,0,552975 ,1,1,370650 ,1,2,373150 ,2,822,199695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470750 ,2,821,101575 ,1,0,553015 ,2,822,199830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470755 ,2,821,102200 ,1,0,553950 ,2,822,205995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,470785 ,2,821,103070 ,2,822,205900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525635 ,2,827,126090 ,2,828,470760 ,2,821,106580 ,2,822,47135 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,106750 ,2,822,589815 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,107470 ,1,0,212325 ,1,1,161760 ,2,822,205945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525660 ,2,827,75 ,2,828,470765 ,2,821,111440 ,1,0,212315 ,1,1,315185 ,2,822,205955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525660 ,2,827,75 ,2,828,470770 ,2,821,115455 ,2,822,205965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511675 ,2,827,75 ,2,828,470775 ,2,821,116990 ,2,822,205975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512895 ,2,827,75 ,2,828,470780 ,2,821,118460 ,2,822,47155 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,118605 ,1,0,552580 ,2,822,194625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525665 ,2,827,75 ,2,828,470800 ,2,821,119445 ,1,0,552600 ,2,822,194800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525670 ,2,827,134260 ,2,828,470805 ,2,821,120400 ,1,0,549900 ,2,822,130210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525675 ,2,827,75 ,2,828,470810 ,2,821,121125 ,1,0,552575 ,2,822,194415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,470815 ,2,821,121500 ,1,0,552570 ,2,822,193860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,470820 ,2,821,121985 ,1,0,550385 ,2,822,140605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470825 ,2,821,122395 ,1,0,548425 ,2,822,112165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470830 ,2,821,122755 ,1,0,552565 ,2,822,190305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525680 ,2,827,134270 ,2,828,470835 ,2,821,124645 ,1,0,550010 ,2,822,131910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,470860 ,2,821,125505 ,1,0,550520 ,2,822,148810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,470865 ,2,821,125910 ,1,0,548680 ,2,822,119270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470870 ,2,821,126255 ,1,0,586865 ,1,1,45 ,1,2,325840 ,2,822,195820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525685 ,2,827,75 ,2,828,470875 ,2,821,127930 ,1,0,550530 ,2,822,149540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,470880 ,2,821,128295 ,1,0,550525 ,2,822,149490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525690 ,2,827,134280 ,2,828,470885 ,2,821,129745 ,1,0,548750 ,1,1,325050 ,2,822,123245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525695 ,2,827,134290 ,2,828,470890 ,2,821,130685 ,1,0,550000 ,2,822,130945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470895 ,2,821,131080 ,1,0,550185 ,2,822,136980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470935 ,2,821,131465 ,1,0,549935 ,2,822,130675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,470940 ,2,821,131840 ,1,0,548755 ,2,822,130880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470945 ,2,821,132240 ,1,0,549945 ,2,822,130910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,470950 ,2,821,132595 ,1,0,548765 ,2,822,123405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470955 ,2,821,132950 ,1,0,550200 ,2,822,137335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525715 ,2,827,134300 ,2,828,470960 ,2,821,134135 ,1,0,550195 ,2,822,137660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470965 ,2,821,134515 ,1,0,550210 ,2,822,137175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470970 ,2,821,134895 ,1,0,548740 ,2,822,137165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,470990 ,2,821,135250 ,1,0,549640 ,2,822,128530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525675 ,2,827,75 ,2,828,470995 ,2,821,136025 ,1,0,549675 ,2,822,128560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525675 ,2,827,75 ,2,828,471000 ,2,821,136800 ,1,0,552415 ,2,822,187940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471005 ,2,821,137185 ,1,0,548445 ,2,822,112425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471010 ,2,821,137565 ,1,0,548435 ,2,822,112340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525720 ,2,827,75 ,2,828,471015 ,2,821,138435 ,1,0,550515 ,1,1,554550 ,2,822,147525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525725 ,2,827,134310 ,2,828,471020 ,2,821,139450 ,1,0,550565 ,2,822,152500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525730 ,2,827,134320 ,2,828,471025 ,2,821,140270 ,1,0,550575 ,2,822,153300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471055 ,2,821,140715 ,1,0,550065 ,1,1,555025 ,2,822,132745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525750 ,2,827,134330 ,2,828,471060 ,2,821,143030 ,1,0,552605 ,2,822,195150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,471065 ,2,821,143405 ,1,0,552615 ,2,822,195385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471070 ,2,821,143805 ,1,0,555075 ,2,822,195880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525675 ,2,827,75 ,2,828,471080 ,2,821,144545 ,1,0,554650 ,2,822,195765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525675 ,2,827,75 ,2,828,471085 ,2,821,145300 ,1,0,550025 ,2,822,131970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471090 ,2,821,145805 ,1,0,550670 ,2,822,158640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471095 ,2,821,146195 ,1,0,550430 ,2,822,141830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,471125 ,2,821,147065 ,1,0,550800 ,2,822,162095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471130 ,2,821,147565 ,2,822,162115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471135 ,2,821,148045 ,1,0,550760 ,2,822,161560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471140 ,2,821,148425 ,1,0,548610 ,1,1,374925 ,2,822,117585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471145 ,2,821,148955 ,1,0,549055 ,2,822,125330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525730 ,2,827,134360 ,2,828,471150 ,2,821,149890 ,1,0,551080 ,2,822,167160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471155 ,2,821,150375 ,1,0,549480 ,1,1,549550 ,2,822,127380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525755 ,2,827,134370 ,2,828,471160 ,2,821,152290 ,1,0,549085 ,2,822,129835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,471190 ,2,821,153145 ,1,0,548390 ,2,822,108020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471195 ,2,821,153535 ,1,0,548340 ,2,822,107455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499370 ,2,827,134380 ,2,828,471200 ,2,821,155080 ,1,0,552810 ,2,822,196380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,471205 ,2,821,155935 ,1,0,548735 ,2,822,122255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,471220 ,2,821,156625 ,1,0,549225 ,2,822,126305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525760 ,2,827,75 ,2,828,471225 ,2,821,157835 ,1,0,548495 ,2,822,139710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525630 ,2,827,75 ,2,828,471230 ,2,821,158670 ,1,0,551405 ,2,822,167955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471235 ,2,821,159020 ,1,0,550560 ,2,822,151070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471265 ,2,821,159430 ,1,0,550505 ,2,822,150755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471270 ,2,821,159890 ,2,822,167485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497810 ,2,827,75 ,2,828,471275 ,2,821,161050 ,1,0,343700 ,2,822,163085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525765 ,2,827,75 ,2,828,471280 ,2,821,162620 ,1,0,400430 ,1,1,94325 ,2,822,95060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,162925 ,1,0,400430 ,1,1,94485 ,2,822,94555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,163260 ,1,0,400430 ,1,1,94790 ,2,822,94860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,471295 ,2,821,163580 ,2,822,132400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505780 ,2,827,75 ,2,828,471300 ,2,821,164510 ,1,0,400430 ,1,1,182785 ,2,822,182820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,164830 ,1,0,400430 ,1,1,183240 ,2,822,183295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,165140 ,1,0,400430 ,1,1,183695 ,2,822,183740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,165460 ,1,0,400430 ,1,1,184170 ,2,822,184200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,165760 ,1,0,400430 ,1,1,184615 ,2,822,184645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,166100 ,1,0,400430 ,1,1,185080 ,2,822,185125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,166415 ,1,0,400430 ,1,1,61590 ,2,822,61620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,166755 ,1,0,400430 ,1,1,185530 ,2,822,185560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,167075 ,1,0,400430 ,1,1,61400 ,2,822,62985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,167410 ,1,0,400430 ,1,1,171710 ,2,822,171740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,167755 ,1,0,400430 ,1,1,168915 ,2,822,168950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,168080 ,1,0,400430 ,1,1,189490 ,2,822,189520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,168415 ,1,0,215640 ,2,822,205430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525800 ,2,827,75 ,2,828,471305 ,2,821,169925 ,1,0,45 ,1,1,5900 ,1,2,182390 ,2,822,163250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525805 ,2,827,64440 ,2,828,471310 ,2,821,171890 ,2,822,106250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,471320 ,2,821,172855 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,106830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525810 ,2,827,134390 ,2,828,471325 ,2,821,176145 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,2,822,105345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525815 ,2,827,134415 ,2,828,471330 ,2,821,182305 ,1,0,221505 ,1,1,221250 ,1,2,163945 ,1,3,163935 ,1,4,2210 ,1,5,542350 ,2,822,110380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525830 ,2,827,40735 ,2,828,471335 ,2,821,194515 ,1,0,400430 ,1,1,57805 ,2,822,206005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,194840 ,1,0,550685 ,2,822,199060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525835 ,2,827,75 ,2,828,471340 ,2,821,201305 ,1,0,372810 ,1,1,548420 ,1,2,551050 ,1,3,331640 ,1,4,357655 ,1,5,358155 ,1,6,357610 ,1,7,372190 ,1,8,370620 ,1,9,358115 ,1,10,356395 ,1,11,356375 ,1,12,359220 ,2,822,199765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525840 ,2,827,75 ,2,828,471345 ,2,821,209075 ,1,0,548800 ,1,1,15050 ,1,2,372530 ,1,3,322945 ,1,4,357450 ,1,5,357430 ,1,6,357270 ,1,7,357220 ,2,822,200025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525845 ,2,827,134425 ,2,828,471350 ,2,821,228415 ,1,0,315240 ,1,1,315230 ,1,2,161780 ,1,3,372540 ,1,4,161770 ,1,5,357375 ,2,822,205985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525880 ,2,827,75 ,2,828,471355 ,2,821,247715 ,2,822,194685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525885 ,2,827,75 ,2,828,471385 ,2,821,250165 ,1,0,246570 ,1,1,194930 ,1,2,194910 ,1,3,194875 ,1,4,313135 ,1,5,15265 ,1,6,161275 ,1,7,161265 ,2,822,194940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525890 ,2,827,134435 ,2,828,471390 ,2,821,268635 ,1,0,130265 ,2,822,130395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525895 ,2,827,134445 ,2,828,471395 ,2,821,276245 ,1,0,313515 ,1,1,15685 ,1,2,211400 ,1,3,274790 ,1,4,274780 ,1,5,274770 ,1,6,313495 ,1,7,313485 ,2,822,194165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525910 ,2,827,75 ,2,828,471410 ,2,821,292705 ,1,0,589875 ,2,822,206015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,471400 ,2,821,293550 ,2,822,589875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,294130 ,1,0,553955 ,1,1,369880 ,2,822,206090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,471405 ,2,821,294645 ,1,0,194305 ,1,1,369705 ,1,2,194325 ,1,3,369695 ,1,4,369685 ,1,5,369560 ,2,822,194335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525915 ,2,827,134620 ,2,828,471415 ,2,821,305485 ,1,0,331740 ,1,1,220220 ,1,2,220210 ,1,3,331700 ,1,4,220200 ,1,5,368240 ,1,6,820 ,2,822,140985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525920 ,2,827,75 ,2,828,471420 ,2,821,312860 ,1,0,323430 ,1,1,323420 ,1,2,370080 ,1,3,162860 ,1,4,323410 ,1,5,141685 ,1,6,323400 ,1,7,369785 ,1,8,323380 ,1,9,369825 ,1,10,356945 ,1,11,323370 ,1,12,112220 ,1,13,222330 ,1,14,323360 ,1,15,359095 ,1,16,358145 ,1,17,323350 ,1,18,355430 ,1,19,355445 ,1,20,162850 ,1,21,162825 ,2,822,141695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525925 ,2,827,134650 ,2,828,471430 ,2,821,347535 ,1,0,246350 ,1,1,324970 ,1,2,550005 ,1,3,324960 ,1,4,324950 ,1,5,369385 ,1,6,357190 ,1,7,324940 ,1,8,358565 ,1,9,358585 ,1,10,190515 ,1,11,190425 ,1,12,190455 ,1,13,324930 ,1,14,358210 ,1,15,163045 ,2,822,190405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525945 ,2,827,134660 ,2,828,471435 ,2,821,371635 ,1,0,315445 ,1,1,315435 ,1,2,133210 ,1,3,133060 ,1,4,133040 ,1,5,133560 ,1,6,212415 ,1,7,133110 ,1,8,315425 ,1,9,161875 ,2,822,132460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525950 ,2,827,134670 ,2,828,471440 ,2,821,386915 ,1,0,313375 ,1,1,313365 ,2,822,149690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525955 ,2,827,75 ,2,828,471445 ,2,821,390270 ,2,822,149375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525960 ,2,827,75 ,2,828,471450 ,2,821,392210 ,1,0,314365 ,1,1,314355 ,1,2,314345 ,1,3,314335 ,1,4,257940 ,1,5,314325 ,1,6,314315 ,1,7,314305 ,1,8,314295 ,1,9,314260 ,1,10,314250 ,1,11,314240 ,1,12,314230 ,1,13,314215 ,1,14,314205 ,1,15,314195 ,1,16,314185 ,1,17,314165 ,1,18,314155 ,1,19,314145 ,1,20,314135 ,1,21,314125 ,1,22,314115 ,1,23,314105 ,1,24,314095 ,1,25,161465 ,1,26,257730 ,1,27,314045 ,1,28,258030 ,1,29,314035 ,1,30,357590 ,1,31,357325 ,1,32,314025 ,2,822,148895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525970 ,2,827,134680 ,2,828,471455 ,2,821,416205 ,1,0,323510 ,1,1,216300 ,1,2,554835 ,1,3,323500 ,1,4,357870 ,2,822,131360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525980 ,2,827,75 ,2,828,471465 ,2,821,423265 ,1,0,323475 ,2,822,206100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525975 ,2,827,75 ,2,828,471460 ,2,821,424155 ,1,0,315465 ,2,822,131050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525985 ,2,827,75 ,2,828,471495 ,2,821,427460 ,1,0,327715 ,2,822,137010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526010 ,2,827,75 ,2,828,471500 ,2,821,428485 ,2,822,130835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526015 ,2,827,75 ,2,828,471505 ,2,821,429910 ,1,0,258155 ,2,822,130725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526020 ,2,827,75 ,2,828,471510 ,2,821,431205 ,1,0,316775 ,2,822,130705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526025 ,2,827,75 ,2,828,471515 ,2,821,433550 ,2,822,123330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526030 ,2,827,75 ,2,828,471520 ,2,821,434280 ,1,0,15825 ,1,1,236645 ,1,2,216520 ,2,822,137490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526035 ,2,827,75 ,2,828,471525 ,2,821,438300 ,1,0,179530 ,1,1,15610 ,1,2,316910 ,1,3,316895 ,1,4,354785 ,1,5,15375 ,1,6,162275 ,1,7,316885 ,1,8,162265 ,1,9,316875 ,1,10,369655 ,1,11,357200 ,1,12,162255 ,2,822,137280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526040 ,2,827,24545 ,2,828,471530 ,2,821,451710 ,1,0,316865 ,1,1,316845 ,1,2,316835 ,1,3,316825 ,1,4,369715 ,1,5,137700 ,1,6,369775 ,1,7,137775 ,1,8,369765 ,1,9,137680 ,1,10,137800 ,2,822,137810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526045 ,2,827,134750 ,2,828,471560 ,2,821,466955 ,1,0,369815 ,1,1,122705 ,1,2,358415 ,2,822,137120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526060 ,2,827,134760 ,2,828,471565 ,2,821,471115 ,1,0,162870 ,1,1,128690 ,2,822,128710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526065 ,2,827,134770 ,2,828,471570 ,2,821,476355 ,1,0,323625 ,1,1,128465 ,1,2,323615 ,2,822,128475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526070 ,2,827,134815 ,2,828,471575 ,2,821,478385 ,2,822,187775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506010 ,2,827,75 ,2,828,471585 ,2,821,478875 ,1,0,358180 ,2,822,113420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526075 ,2,827,24545 ,2,828,471590 ,2,821,485145 ,1,0,181580 ,1,1,555340 ,1,2,327695 ,1,3,358325 ,1,4,163865 ,1,5,358380 ,1,6,163855 ,1,7,327685 ,1,8,358135 ,1,9,327645 ,1,10,358260 ,1,11,327635 ,1,12,358370 ,1,13,305365 ,1,14,141635 ,1,15,163840 ,1,16,358305 ,1,17,163830 ,1,18,327625 ,1,19,291015 ,1,20,217720 ,1,21,358575 ,1,22,327615 ,1,23,227050 ,1,24,2210 ,1,25,542350 ,2,822,113640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526080 ,2,827,134825 ,2,828,471595 ,2,821,511820 ,1,0,316350 ,1,1,316340 ,1,2,554420 ,1,3,316330 ,1,4,263645 ,1,5,373385 ,1,6,259805 ,1,7,316290 ,1,8,147830 ,1,9,147800 ,1,10,373300 ,1,11,162120 ,1,12,257980 ,1,13,212740 ,1,14,212725 ,1,15,212715 ,1,16,212705 ,1,17,259390 ,1,18,162110 ,1,19,369355 ,2,822,147850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526085 ,2,827,134835 ,2,828,471600 ,2,821,528035 ,1,0,313820 ,1,1,313810 ,1,2,313800 ,1,3,313790 ,1,4,313780 ,1,5,313770 ,1,6,313745 ,1,7,313735 ,1,8,313725 ,1,9,313715 ,1,10,313700 ,1,11,313690 ,1,12,313680 ,1,13,211500 ,1,14,313670 ,1,15,313635 ,1,16,374535 ,1,17,2210 ,1,18,542350 ,2,822,152970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526090 ,2,827,130345 ,2,828,471620 ,2,821,553455 ,1,0,374585 ,1,1,160835 ,1,2,611995 ,1,3,45 ,1,4,13320 ,1,5,357840 ,1,6,374300 ,1,7,153585 ,1,8,161620 ,1,9,212275 ,1,10,212265 ,1,11,2210 ,1,12,542350 ,2,822,153455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526095 ,2,827,134845 ,2,828,471625 ,2,821,568370 ,2,822,132910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526120 ,2,827,75 ,2,828,471630 ,2,821,569155 ,1,0,188605 ,1,1,328345 ,1,2,195545 ,1,3,328335 ,1,4,195525 ,1,5,164150 ,1,6,612695 ,1,7,354630 ,1,8,215330 ,1,9,218125 ,1,10,356530 ,1,11,328290 ,1,12,328280 ,1,13,263705 ,1,14,555425 ,2,822,195555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526125 ,2,827,134860 ,2,828,471635 ,2,821,583855 ,2,822,195415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526130 ,2,827,52955 ,2,828,471640 ,2,821,585295 ,2,822,195745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526135 ,2,827,75 ,2,828,471645 ,2,821,585860 ,1,0,591425 ,1,1,45 ,1,2,13320 ,2,822,195930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526155 ,2,827,75 ,2,828,471650 ,2,821,587210 ,1,0,550030 ,2,822,132055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526160 ,2,827,75 ,2,828,471655 ,2,821,587805 ,2,822,159445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526165 ,2,827,134870 ,2,828,471680 ,2,821,588240 ,1,0,211915 ,2,822,152150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526170 ,2,827,75 ,2,828,471685 ,2,821,590715 ,1,0,266700 ,2,822,162105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526205 ,2,827,75 ,2,828,471690 ,2,821,592325 ,1,0,162330 ,2,822,161900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526210 ,2,827,96400 ,2,828,471695 ,2,821,594560 ,1,0,324250 ,2,822,161710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526215 ,2,827,75 ,2,828,471710 ,2,821,595835 ,1,0,120585 ,1,1,120565 ,2,822,120605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526220 ,2,827,134880 ,2,828,471715 ,2,821,598800 ,1,0,325885 ,2,822,130040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526225 ,2,827,75 ,2,828,471720 ,2,821,602010 ,1,0,328385 ,1,1,164170 ,1,2,328375 ,2,822,166780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526230 ,2,827,75 ,2,828,471725 ,2,821,605795 ,1,0,573985 ,1,1,45 ,1,2,5900 ,1,3,221980 ,1,4,162980 ,2,822,127600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526235 ,2,827,134890 ,2,828,471740 ,2,821,609015 ,1,0,125935 ,1,1,125890 ,2,822,125810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526240 ,2,827,134925 ,2,828,471745 ,2,821,614050 ,1,0,314565 ,2,822,107375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526255 ,2,827,75 ,2,828,471750 ,2,821,615120 ,1,0,316930 ,1,1,217405 ,2,822,107060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526260 ,2,827,134935 ,2,828,471755 ,2,821,625025 ,1,0,196135 ,1,1,314760 ,2,822,196185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526265 ,2,827,134945 ,2,828,471760 ,2,821,627430 ,1,0,354390 ,1,1,211945 ,1,2,211935 ,1,3,554280 ,2,822,139495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526270 ,2,827,75 ,2,828,471765 ,2,821,630395 ,1,0,216225 ,1,1,216215 ,2,822,128845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526275 ,2,827,75 ,2,828,471770 ,2,821,635545 ,1,0,140130 ,1,1,226535 ,1,2,318110 ,1,3,249645 ,2,822,140205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526280 ,2,827,134955 ,2,828,471775 ,2,821,641950 ,1,0,582245 ,1,1,168040 ,1,2,551400 ,2,822,168050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526285 ,2,827,134965 ,2,828,471785 ,2,821,643920 ,1,0,260690 ,1,1,150560 ,1,2,150535 ,1,3,150515 ,1,4,260650 ,1,5,161495 ,1,6,358165 ,1,7,161485 ,2,822,150630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526290 ,2,827,134975 ,2,828,471790 ,2,821,666935 ,1,0,554250 ,1,1,211770 ,1,2,211760 ,1,3,590950 ,1,4,257160 ,1,5,211750 ,1,6,211740 ,1,7,259410 ,1,8,211725 ,1,9,211715 ,1,10,229640 ,1,11,554245 ,1,12,211695 ,1,13,211655 ,1,14,590900 ,2,822,146730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526325 ,2,827,75 ,2,828,471795 ,2,821,673505 ,2,822,119120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,471800 ,2,821,674110 ,2,822,116685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526330 ,2,827,75 ,2,828,471810 ,2,821,7220 ,2,822,117085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502380 ,2,827,75 ,2,828,471815 ,2,821,8565 ,1,0,583230 ,1,1,45 ,1,2,11085 ,1,3,321830 ,2,822,173680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521195 ,2,827,75 ,2,828,471820 ,2,821,11580 ,2,822,174040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520665 ,2,827,75 ,2,828,471825 ,2,821,12625 ,2,822,105875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,13745 ,1,0,555195 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,2,822,163415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526335 ,2,827,59730 ,2,828,471845 ,2,821,21835 ,2,822,94295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526340 ,2,827,75 ,2,828,471850 ,2,821,24820 ,2,822,94410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493170 ,2,827,75 ,2,828,471855 ,2,821,25680 ,2,822,94725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526345 ,2,827,134985 ,2,828,471860 ,2,821,29135 ,2,822,94315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526350 ,2,827,75 ,2,828,471870 ,2,821,44645 ,2,822,94450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526355 ,2,827,75 ,2,828,471875 ,2,821,48225 ,1,0,332870 ,2,822,94765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526360 ,2,827,75 ,2,828,471880 ,2,821,52755 ,2,822,66685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526380 ,2,827,75 ,2,828,468585 ,2,821,54285 ,1,0,45 ,1,1,11510 ,2,822,182775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471885 ,2,821,55565 ,1,0,45 ,1,1,11510 ,2,822,183230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471885 ,2,821,56835 ,1,0,45 ,1,1,11510 ,2,822,183685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471915 ,2,821,58160 ,1,0,599900 ,1,1,45 ,1,2,11510 ,2,822,184130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471915 ,2,821,59410 ,1,0,45 ,1,1,11510 ,2,822,184605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471920 ,2,821,60660 ,1,0,45 ,1,1,11510 ,2,822,185070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471925 ,2,821,61945 ,1,0,45 ,1,1,11510 ,2,822,61565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526390 ,2,827,75 ,2,828,471930 ,2,821,63150 ,1,0,45 ,1,1,11510 ,2,822,185510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526390 ,2,827,75 ,2,828,471945 ,2,821,64420 ,1,0,45 ,1,1,11510 ,2,822,61390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526395 ,2,827,75 ,2,828,471950 ,2,821,65705 ,1,0,45 ,1,1,11510 ,2,822,171700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526385 ,2,827,75 ,2,828,471955 ,2,821,66945 ,2,822,172165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526400 ,2,827,75 ,2,828,471960 ,2,821,69220 ,2,822,58165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526405 ,2,827,24980 ,2,828,472005 ,2,821,74260 ,2,822,88890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526410 ,2,827,24440 ,2,828,472010 ,2,821,83370 ,1,0,610845 ,1,1,45 ,1,2,11510 ,2,822,168905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526415 ,2,827,75 ,2,828,472015 ,2,821,84695 ,1,0,611365 ,1,1,45 ,1,2,11510 ,2,822,189480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526445 ,2,827,75 ,2,828,472020 ,2,821,86060 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520975 ,2,827,75 ,2,828,472035 ,2,821,89525 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491825 ,2,827,75 ,2,828,472040 ,2,821,92820 ,2,822,206150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520985 ,2,827,75 ,2,828,472045 ,2,821,96685 ,1,0,312725 ,2,822,206160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526450 ,2,827,75 ,2,828,472050 ,2,821,98390 ,1,0,45 ,1,1,11510 ,2,822,57795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526455 ,2,827,75 ,2,828,472065 ,2,821,102685 ,1,0,595655 ,1,1,45 ,1,2,340325 ,1,3,45 ,1,4,13320 ,2,822,66530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526460 ,2,827,114245 ,2,828,472070 ,2,821,113790 ,2,822,66660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526470 ,2,827,75 ,2,828,472075 ,2,821,115585 ,2,822,99480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,472080 ,2,821,116260 ,2,822,121275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526475 ,2,827,75 ,2,828,472095 ,2,821,117235 ,2,822,121470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495970 ,2,827,75 ,2,828,472100 ,2,821,118015 ,1,0,172395 ,1,1,176795 ,1,2,318285 ,2,822,172900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526480 ,2,827,135025 ,2,828,472105 ,2,821,136795 ,2,822,168715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526485 ,2,827,135035 ,2,828,472110 ,2,821,145690 ,1,0,400430 ,1,1,150305 ,2,822,150325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,146035 ,2,822,150765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,146185 ,2,822,130575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526505 ,2,827,75 ,2,828,472130 ,2,821,147670 ,2,822,124575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526510 ,2,827,75 ,2,828,472135 ,2,821,150705 ,1,0,45 ,1,1,5900 ,2,822,164650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526515 ,2,827,75 ,2,828,472140 ,2,821,152625 ,1,0,217015 ,2,822,105115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526520 ,2,827,75 ,2,828,472145 ,2,821,154800 ,1,0,554575 ,1,1,213650 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,5900 ,1,6,576620 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,13320 ,1,11,45 ,1,12,5900 ,1,13,45 ,1,14,13320 ,1,15,213640 ,1,16,45 ,1,17,13320 ,1,18,213630 ,1,19,45 ,1,20,5900 ,1,21,317950 ,1,22,45 ,1,23,5900 ,1,24,45 ,1,25,5900 ,1,26,2210 ,1,27,542350 ,2,822,138875 ,2,823,541090 ,2,824,418430 ,2,825,352590 ,2,826,526525 ,2,827,135045 ,2,828,472155 ,2,821,194435 ,1,0,216035 ,2,822,106195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526530 ,2,827,75 ,2,828,472160 ,2,821,196055 ,1,0,332750 ,1,1,220435 ,1,2,220415 ,2,822,163020 ,2,823,541095 ,2,824,418440 ,2,825,352610 ,2,826,526535 ,2,827,135075 ,2,828,472165 ,2,821,208325 ,1,0,264175 ,2,822,105055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526540 ,2,827,75 ,2,828,472170 ,2,821,210565 ,2,822,106145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526570 ,2,827,75 ,2,828,472195 ,2,821,212235 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,106795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526575 ,2,827,135160 ,2,828,472200 ,2,821,216815 ,1,0,543070 ,1,1,568425 ,1,2,543070 ,2,822,105680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526580 ,2,827,75 ,2,828,472205 ,2,821,219815 ,2,822,106125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,472210 ,2,821,220600 ,2,822,105700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,472215 ,2,821,221265 ,2,822,194820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526585 ,2,827,75 ,2,828,472220 ,2,821,222555 ,2,822,149255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,472230 ,2,821,223345 ,1,0,236655 ,2,822,137595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526600 ,2,827,75 ,2,828,472250 ,2,821,226390 ,2,822,137925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526605 ,2,827,75 ,2,828,472260 ,2,821,228165 ,2,822,113590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526610 ,2,827,75 ,2,828,472265 ,2,821,229980 ,2,822,147840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526615 ,2,827,75 ,2,828,472275 ,2,821,231185 ,1,0,218025 ,2,822,195610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526635 ,2,827,75 ,2,828,472285 ,2,821,234835 ,1,0,211835 ,1,1,45 ,1,2,11510 ,2,822,151875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526645 ,2,827,91185 ,2,828,472335 ,2,821,241155 ,1,0,554255 ,2,822,206170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526640 ,2,827,75 ,2,828,472330 ,2,821,242105 ,2,822,161990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526650 ,2,827,75 ,2,828,472345 ,2,821,243210 ,2,822,167100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526655 ,2,827,75 ,2,828,472350 ,2,821,244935 ,2,822,126095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526660 ,2,827,75 ,2,828,472355 ,2,821,246090 ,2,822,140400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526665 ,2,827,75 ,2,828,472360 ,2,821,246920 ,2,822,151215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526670 ,2,827,75 ,2,828,472220 ,2,821,248225 ,2,822,193905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526685 ,2,827,30175 ,2,828,472365 ,2,821,251070 ,2,822,149900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526690 ,2,827,30175 ,2,828,472390 ,2,821,253150 ,2,822,106025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,472395 ,2,821,253895 ,2,822,163570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,254315 ,2,822,164715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,254780 ,2,822,138790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,472400 ,2,821,255585 ,2,822,162995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,256030 ,2,822,169210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524495 ,2,827,75 ,2,828,472405 ,2,821,256980 ,2,822,106135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526695 ,2,827,75 ,2,828,472410 ,2,821,258995 ,1,0,555240 ,1,1,555210 ,2,822,105720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526700 ,2,827,54365 ,2,828,472415 ,2,821,263555 ,2,822,94600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526710 ,2,827,75 ,2,828,472420 ,2,821,266470 ,2,822,94885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526715 ,2,827,75 ,2,828,472425 ,2,821,269720 ,2,822,62705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,270040 ,2,822,58085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,270355 ,2,822,66580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,271650 ,1,0,572245 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,2,822,138755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526720 ,2,827,75 ,2,828,472450 ,2,821,277365 ,2,822,105440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526725 ,2,827,75 ,2,828,472455 ,2,821,284335 ,2,822,149130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526760 ,2,827,75 ,2,828,472460 ,2,821,286980 ,2,822,78050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,287290 ,2,822,203545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526765 ,2,827,75 ,2,828,472465 ,2,821,289100 ,2,822,131285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526770 ,2,827,75 ,2,828,472470 ,2,821,292980 ,2,822,131185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526775 ,2,827,56720 ,2,828,472475 ,2,821,306140 ,1,0,45 ,1,1,5900 ,2,822,203885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526790 ,2,827,75 ,2,828,472480 ,2,821,310945 ,2,822,203795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526795 ,2,827,56720 ,2,828,472485 ,2,821,322330 ,2,822,203670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526800 ,2,827,56720 ,2,828,472495 ,2,821,335050 ,2,822,124205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524805 ,2,827,75 ,2,828,472500 ,2,821,336525 ,2,822,123995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526805 ,2,827,75 ,2,828,472505 ,2,821,339380 ,2,822,154135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,339695 ,1,0,543200 ,1,1,568510 ,1,2,543200 ,1,3,45 ,1,4,5900 ,2,822,105005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526830 ,2,827,135280 ,2,828,472510 ,2,821,349830 ,1,0,221290 ,2,822,105745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526835 ,2,827,75 ,2,828,472520 ,2,821,351835 ,1,0,550375 ,2,822,139430 ,2,823,541100 ,2,824,418445 ,2,825,352620 ,2,826,526840 ,2,827,75 ,2,828,472525 ,2,821,359855 ,2,822,122385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526845 ,2,827,75 ,2,828,472530 ,2,821,366305 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,2280 ,1,7,542005 ,1,8,45 ,1,9,5900 ,2,822,193970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526855 ,2,827,120735 ,2,828,472535 ,2,821,372745 ,1,0,590795 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,2,822,149805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526860 ,2,827,75 ,2,828,472570 ,2,821,374935 ,1,0,45 ,1,1,325970 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,106065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526865 ,2,827,135350 ,2,828,472575 ,2,821,378460 ,1,0,45 ,1,1,5900 ,2,822,163540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526870 ,2,827,75 ,2,828,472580 ,2,821,379390 ,1,0,610565 ,1,1,45 ,1,2,5900 ,1,3,213580 ,2,822,164620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526890 ,2,827,75 ,2,828,472585 ,2,821,380655 ,1,0,45 ,1,1,325970 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,138780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526895 ,2,827,135360 ,2,828,472595 ,2,821,382670 ,2,822,159620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,382855 ,2,822,103470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,383045 ,2,822,104985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,135370 ,2,828,472600 ,2,821,383530 ,2,822,163295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,472605 ,2,821,384045 ,1,0,548270 ,2,822,106740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526900 ,2,827,75 ,2,828,472610 ,2,821,384955 ,1,0,555730 ,2,822,105310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526905 ,2,827,135380 ,2,828,472625 ,2,821,385875 ,1,0,550895 ,2,822,163340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526920 ,2,827,135395 ,2,828,472630 ,2,821,386765 ,2,822,159230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,135405 ,2,828,472635 ,2,821,387230 ,2,822,163500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,135415 ,2,828,472640 ,2,821,387730 ,2,822,193775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,472660 ,2,821,388230 ,2,822,152920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526925 ,2,827,135425 ,2,828,472665 ,2,821,389285 ,2,822,108010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526925 ,2,827,135475 ,2,828,472670 ,2,821,390360 ,2,822,196965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526925 ,2,827,135485 ,2,828,472675 ,2,821,391455 ,2,822,162790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526925 ,2,827,135495 ,2,828,472705 ,2,821,392545 ,2,822,148795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,472710 ,2,821,393050 ,2,822,163630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,135505 ,2,828,472715 ,2,821,393545 ,1,0,550960 ,2,822,164800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526920 ,2,827,135515 ,2,828,472720 ,2,821,394480 ,2,822,139325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494455 ,2,827,75 ,2,828,472725 ,2,821,394990 ,1,0,45 ,1,1,11510 ,1,2,608645 ,1,3,45 ,1,4,11510 ,2,822,140895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526930 ,2,827,112285 ,2,828,472730 ,2,821,396960 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,140750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526935 ,2,827,112285 ,2,828,472735 ,2,821,399005 ,1,0,45 ,1,1,11510 ,2,822,86335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495865 ,2,827,75 ,2,828,458325 ,2,821,399930 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,5900 ,2,822,193885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526960 ,2,827,135525 ,2,828,472740 ,2,821,410435 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,5900 ,1,20,45 ,1,21,5900 ,1,22,45 ,1,23,5900 ,1,24,45 ,1,25,5900 ,1,26,45 ,1,27,5900 ,1,28,45 ,1,29,5900 ,1,30,45 ,1,31,5900 ,1,32,45 ,1,33,5900 ,1,34,45 ,1,35,5900 ,1,36,45 ,1,37,5900 ,1,38,45 ,1,39,5900 ,1,40,45 ,1,41,5900 ,1,42,45 ,1,43,5900 ,2,822,149870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526965 ,2,827,135535 ,2,828,472770 ,2,821,425810 ,2,822,196920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526970 ,2,827,75 ,2,828,472775 ,2,821,426440 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,5900 ,1,18,45 ,1,19,5900 ,1,20,45 ,1,21,5900 ,1,22,45 ,1,23,5900 ,1,24,45 ,1,25,5900 ,1,26,45 ,1,27,5900 ,1,28,45 ,1,29,5900 ,1,30,45 ,1,31,5900 ,2,822,106015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526975 ,2,827,135545 ,2,828,472780 ,2,821,440995 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,2,822,163560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526980 ,2,827,135560 ,2,828,472785 ,2,821,444770 ,2,822,164705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526985 ,2,827,75 ,2,828,472795 ,2,821,445390 ,1,0,215285 ,2,822,105170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526990 ,2,827,75 ,2,828,472800 ,2,821,446925 ,2,822,163040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526995 ,2,827,135570 ,2,828,472805 ,2,821,448185 ,2,822,104995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527015 ,2,827,75 ,2,828,472810 ,2,821,449395 ,1,0,221280 ,2,822,105555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,472840 ,2,821,449980 ,2,822,92440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,450435 ,1,0,264485 ,1,1,329680 ,1,2,329665 ,1,3,329655 ,1,4,329645 ,2,822,159060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527020 ,2,827,75 ,2,828,472845 ,2,821,454345 ,2,822,164755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,454515 ,1,0,267385 ,2,822,162820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527025 ,2,827,75 ,2,828,472850 ,2,821,455600 ,2,822,105970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527030 ,2,827,75 ,2,828,472855 ,2,821,457215 ,1,0,221515 ,2,822,110275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,457400 ,1,0,211700 ,2,822,101105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,457615 ,1,0,238870 ,2,822,130655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,457805 ,1,0,332770 ,2,822,64610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,472875 ,2,821,458525 ,1,0,331955 ,1,1,331920 ,2,822,136825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527035 ,2,827,75 ,2,828,472920 ,2,821,460890 ,2,822,206190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,472880 ,2,821,461535 ,1,0,184640 ,2,822,109965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,461760 ,1,0,185840 ,2,822,109860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,461955 ,1,0,224770 ,2,822,114770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,462155 ,1,0,210165 ,2,822,99595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,462345 ,2,822,64410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,472870 ,2,821,462690 ,2,822,74515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527040 ,2,827,75 ,2,828,472925 ,2,821,463635 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,140905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526930 ,2,827,135620 ,2,828,472930 ,2,821,465695 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,2,822,140760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527045 ,2,827,135620 ,2,828,472935 ,2,821,467675 ,1,0,45 ,1,1,11510 ,2,822,86355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,456145 ,2,821,468570 ,1,0,586460 ,1,1,45 ,1,2,341055 ,1,3,313060 ,1,4,369860 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,313050 ,1,10,369870 ,1,11,45 ,1,12,5900 ,1,13,45 ,1,14,5900 ,1,15,313040 ,1,16,369845 ,1,17,45 ,1,18,5900 ,1,19,45 ,1,20,5900 ,2,822,193870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527050 ,2,827,135630 ,2,828,472945 ,2,821,474205 ,1,0,578740 ,1,1,45 ,1,2,341055 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,45 ,1,12,5900 ,1,13,45 ,1,14,5900 ,1,15,45 ,1,16,5900 ,1,17,45 ,1,18,5900 ,1,19,45 ,1,20,5900 ,1,21,45 ,1,22,5900 ,1,23,45 ,1,24,5900 ,1,25,45 ,1,26,5900 ,1,27,45 ,1,28,5900 ,1,29,45 ,1,30,5900 ,1,31,45 ,1,32,5900 ,1,33,45 ,1,34,5900 ,1,35,45 ,1,36,5900 ,1,37,45 ,1,38,5900 ,1,39,45 ,1,40,5900 ,1,41,45 ,1,42,5900 ,2,822,149850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527070 ,2,827,135535 ,2,828,472950 ,2,821,489305 ,1,0,45 ,1,1,341055 ,2,822,196910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527075 ,2,827,75 ,2,828,472955 ,2,821,490385 ,1,0,568630 ,1,1,45 ,1,2,341055 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,587260 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,569215 ,1,15,45 ,1,16,5900 ,1,17,45 ,1,18,5900 ,1,19,45 ,1,20,5900 ,1,21,216230 ,1,22,163335 ,2,822,105990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527080 ,2,827,135665 ,2,828,472980 ,2,821,496525 ,1,0,569680 ,1,1,45 ,1,2,341055 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,580140 ,1,12,45 ,1,13,5900 ,2,822,163550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527085 ,2,827,135560 ,2,828,472985 ,2,821,500780 ,1,0,45 ,1,1,341055 ,2,822,164695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527095 ,2,827,75 ,2,828,472990 ,2,821,501655 ,1,0,45 ,1,1,341055 ,2,822,105160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527100 ,2,827,75 ,2,828,472995 ,2,821,503750 ,1,0,45 ,1,1,341055 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,138735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527105 ,2,827,83590 ,2,828,473000 ,2,821,506815 ,1,0,569070 ,1,1,45 ,1,2,341055 ,2,822,163240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527110 ,2,827,75 ,2,828,473005 ,2,821,507910 ,1,0,568365 ,1,1,45 ,1,2,341055 ,1,3,331750 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,11510 ,1,8,223625 ,2,822,106185 ,2,823,541105 ,2,824,418450 ,2,825,352630 ,2,826,527140 ,2,827,135675 ,2,828,473010 ,2,821,511565 ,1,0,45 ,1,1,341055 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,106840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527145 ,2,827,135160 ,2,828,473015 ,2,821,516000 ,1,0,45 ,1,1,341055 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,45 ,1,15,5900 ,1,16,45 ,1,17,331650 ,1,18,45 ,1,19,5900 ,1,20,45 ,1,21,5900 ,1,22,45 ,1,23,5900 ,1,24,45 ,1,25,5900 ,1,26,45 ,1,27,5900 ,1,28,216645 ,1,29,45 ,1,30,331650 ,1,31,45 ,1,32,331650 ,1,33,45 ,1,34,5900 ,1,35,45 ,1,36,5900 ,2,822,105335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527150 ,2,827,135705 ,2,828,473025 ,2,821,532350 ,1,0,359340 ,1,1,211425 ,2,822,120010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527155 ,2,827,75 ,2,828,473030 ,2,821,534040 ,1,0,2210 ,1,1,542350 ,2,822,119380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527160 ,2,827,75 ,2,828,473035 ,2,821,535510 ,1,0,359250 ,1,1,359210 ,1,2,327305 ,1,3,359135 ,1,4,163635 ,2,822,120265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527165 ,2,827,135715 ,2,828,473040 ,2,821,542285 ,1,0,327870 ,2,822,134305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527170 ,2,827,75 ,2,828,473045 ,2,821,543495 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,333075 ,1,5,333065 ,1,6,333055 ,1,7,333045 ,1,8,333020 ,2,822,100305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527175 ,2,827,75 ,2,828,473050 ,2,821,550035 ,2,822,98945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527195 ,2,827,75 ,2,828,473055 ,2,821,551685 ,1,0,212085 ,2,822,101210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527200 ,2,827,75 ,2,828,473060 ,2,821,552430 ,1,0,570660 ,2,822,121645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527205 ,2,827,24545 ,2,828,473080 ,2,821,561780 ,1,0,328125 ,1,1,328115 ,1,2,328105 ,1,3,328095 ,2,822,113670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527210 ,2,827,24545 ,2,828,473085 ,2,821,574130 ,2,822,106175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503940 ,2,827,75 ,2,828,473090 ,2,821,574635 ,2,822,105930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527220 ,2,827,75 ,2,828,473095 ,2,821,577005 ,1,0,591495 ,1,1,45 ,1,2,324000 ,2,822,136590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527225 ,2,827,75 ,2,828,473100 ,2,821,578010 ,1,0,593590 ,1,1,45 ,1,2,324000 ,1,3,323785 ,2,822,137030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527230 ,2,827,75 ,2,828,473105 ,2,821,579340 ,1,0,593725 ,1,1,45 ,1,2,331650 ,2,822,205665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527235 ,2,827,75 ,2,828,473110 ,2,821,580485 ,1,0,575420 ,1,1,45 ,1,2,331650 ,1,3,325810 ,2,822,134005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527270 ,2,827,75 ,2,828,473115 ,2,821,582265 ,1,0,591085 ,1,1,45 ,1,2,331650 ,1,3,314910 ,2,822,133685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527275 ,2,827,75 ,2,828,473145 ,2,821,583265 ,1,0,593815 ,1,1,45 ,1,2,331650 ,1,3,250620 ,2,822,112415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527275 ,2,827,75 ,2,828,473150 ,2,821,584220 ,1,0,45 ,1,1,331650 ,1,2,317915 ,2,822,132830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527280 ,2,827,75 ,2,828,473155 ,2,821,585660 ,1,0,45 ,1,1,331650 ,2,822,161155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527275 ,2,827,75 ,2,828,473160 ,2,821,586620 ,1,0,591890 ,1,1,45 ,1,2,331650 ,1,3,318160 ,2,822,106765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527285 ,2,827,75 ,2,828,473170 ,2,821,587690 ,1,0,591675 ,1,1,45 ,1,2,324000 ,1,3,317875 ,2,822,127500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527295 ,2,827,75 ,2,828,473175 ,2,821,588970 ,1,0,575290 ,1,1,45 ,1,2,331650 ,2,822,133340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527235 ,2,827,75 ,2,828,473180 ,2,821,590170 ,1,0,593920 ,1,1,45 ,1,2,331650 ,2,822,129365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527300 ,2,827,75 ,2,828,473185 ,2,821,591100 ,1,0,593930 ,1,1,45 ,1,2,331650 ,1,3,202890 ,2,822,205850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527275 ,2,827,75 ,2,828,473200 ,2,821,592025 ,1,0,591485 ,1,1,45 ,1,2,324000 ,1,3,237260 ,2,822,128835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527305 ,2,827,75 ,2,828,473205 ,2,821,593295 ,1,0,593870 ,1,1,45 ,1,2,331650 ,1,3,577055 ,2,822,140555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527310 ,2,827,75 ,2,828,473210 ,2,821,594890 ,1,0,45 ,1,1,324000 ,2,822,139910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527295 ,2,827,75 ,2,828,473215 ,2,821,596080 ,1,0,591480 ,1,1,45 ,1,2,331650 ,2,822,107290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527340 ,2,827,75 ,2,828,473230 ,2,821,597025 ,1,0,212090 ,2,822,151185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527345 ,2,827,75 ,2,828,473235 ,2,821,598160 ,1,0,333105 ,1,1,333095 ,2,822,106585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527350 ,2,827,75 ,2,828,473240 ,2,821,602820 ,2,822,206210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515365 ,2,827,75 ,2,828,473270 ,2,821,603310 ,1,1,2395 ,2,822,206200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,473245 ,2,821,604015 ,1,0,215695 ,2,822,105015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527355 ,2,827,75 ,2,828,473275 ,2,821,605240 ,2,822,86490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527365 ,2,827,75 ,2,828,473280 ,2,821,606465 ,2,822,86460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,473285 ,2,821,607030 ,2,822,86265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527370 ,2,827,75 ,2,828,473290 ,2,821,608035 ,2,822,86315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527375 ,2,827,75 ,2,828,473295 ,2,821,609700 ,2,822,86235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527380 ,2,827,75 ,2,828,473300 ,2,821,610985 ,2,822,132645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520195 ,2,827,75 ,2,828,473305 ,2,821,611595 ,1,0,313920 ,1,1,313910 ,1,2,313900 ,2,822,196310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527390 ,2,827,24545 ,2,828,473335 ,2,821,614485 ,2,822,114560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527395 ,2,827,24545 ,2,828,473340 ,2,821,616930 ,1,0,324355 ,2,822,114580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527400 ,2,827,24545 ,2,828,473345 ,2,821,622705 ,1,0,324405 ,1,1,324395 ,2,822,114610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527405 ,2,827,24545 ,2,828,473350 ,2,821,632010 ,1,0,324305 ,2,822,114640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527410 ,2,827,24545 ,2,828,473360 ,2,821,634610 ,1,0,325745 ,1,1,325735 ,2,822,122275 ,2,823,541120 ,2,824,418455 ,2,825,352640 ,2,826,527415 ,2,827,135735 ,2,828,473365 ,2,821,640565 ,1,0,342740 ,1,1,227620 ,1,2,557715 ,1,3,355985 ,1,4,342730 ,2,822,103905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527420 ,2,827,75 ,2,828,473370 ,2,821,641890 ,1,0,315165 ,2,822,121490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527425 ,2,827,75 ,2,828,473385 ,2,821,645725 ,1,0,151420 ,1,1,45 ,1,2,11510 ,2,822,151270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527465 ,2,827,91125 ,2,828,473390 ,2,821,649755 ,2,822,72885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527470 ,2,827,75 ,2,828,473395 ,2,821,652130 ,2,822,72690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527470 ,2,827,75 ,2,828,473400 ,2,821,654340 ,1,0,328185 ,1,1,218035 ,2,822,195580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527475 ,2,827,75 ,2,828,473405 ,2,821,656045 ,2,822,139360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527480 ,2,827,135805 ,2,828,473410 ,2,821,660390 ,1,0,248365 ,1,1,248330 ,1,2,248320 ,1,3,248310 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,162440 ,1,9,231450 ,1,10,2210 ,1,11,542350 ,2,822,139185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527485 ,2,827,135815 ,2,828,473415 ,2,821,670550 ,2,822,89890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,473420 ,2,821,671395 ,1,0,555110 ,2,822,206220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527490 ,2,827,75 ,2,828,473430 ,2,821,672940 ,2,822,47315 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,673030 ,2,822,206265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491635 ,2,827,75 ,2,828,473440 ,2,821,674140 ,1,0,611965 ,1,1,45 ,1,2,195155 ,1,3,611960 ,1,4,45 ,1,5,5900 ,1,6,553980 ,1,7,542610 ,1,8,595515 ,1,9,542610 ,1,10,45 ,1,11,5900 ,2,822,206275 ,2,823,541125 ,2,824,418475 ,2,825,352650 ,2,826,527495 ,2,827,75 ,2,828,473435 ,2,821,7815 ,1,0,206265 ,1,1,194970 ,2,822,206300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527500 ,2,827,135885 ,2,828,473445 ,2,821,10625 ,2,822,200295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527545 ,2,827,75 ,2,828,473450 ,2,821,16555 ,2,822,95140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527550 ,2,827,75 ,2,828,473455 ,2,821,25120 ,2,822,206310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,25390 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,58040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520980 ,2,827,75 ,2,828,473460 ,2,821,27500 ,2,822,206320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,28195 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527555 ,2,827,75 ,2,828,473465 ,2,821,31260 ,2,822,206370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31545 ,2,822,206420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527565 ,2,827,75 ,2,828,473490 ,2,821,32565 ,1,0,14290 ,1,1,264360 ,1,2,301025 ,1,3,2210 ,1,4,542345 ,2,822,206410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527560 ,2,827,135905 ,2,828,473480 ,2,821,40020 ,1,0,400430 ,1,1,165580 ,2,822,165570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,40340 ,1,0,566400 ,1,1,45 ,1,2,5900 ,2,822,94100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527570 ,2,827,75 ,2,828,473495 ,2,821,49035 ,1,0,566485 ,1,1,45 ,1,2,5900 ,2,822,94185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527575 ,2,827,75 ,2,828,473505 ,2,821,57105 ,1,0,566545 ,1,1,45 ,1,2,5900 ,2,822,94225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527580 ,2,827,75 ,2,828,473510 ,2,821,66935 ,1,0,45 ,1,1,5900 ,2,822,94075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527605 ,2,827,75 ,2,828,473515 ,2,821,76550 ,1,0,165340 ,1,1,45 ,1,2,5900 ,2,822,94130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527610 ,2,827,75 ,2,828,473520 ,2,821,86530 ,1,0,566535 ,1,1,45 ,1,2,5900 ,2,822,94215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527615 ,2,827,75 ,2,828,473550 ,2,821,95645 ,1,0,566510 ,1,1,45 ,1,2,5900 ,2,822,94195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527620 ,2,827,75 ,2,828,473555 ,2,821,106155 ,1,0,566520 ,1,1,45 ,1,2,5900 ,2,822,94205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527635 ,2,827,75 ,2,828,473560 ,2,821,115580 ,1,0,566450 ,1,1,45 ,1,2,5900 ,2,822,94110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527640 ,2,827,75 ,2,828,473565 ,2,821,123070 ,1,0,566460 ,1,1,45 ,1,2,5900 ,2,822,94120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527645 ,2,827,75 ,2,828,473575 ,2,821,132145 ,1,0,280690 ,2,822,173800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527650 ,2,827,75 ,2,828,473580 ,2,821,134640 ,2,822,87310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527675 ,2,827,75 ,2,828,473585 ,2,821,137060 ,2,822,87330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473590 ,2,821,137905 ,2,822,87285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473600 ,2,821,138710 ,1,0,179555 ,2,822,140870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527680 ,2,827,75 ,2,828,473605 ,2,821,142940 ,2,822,87300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473610 ,2,821,143735 ,2,822,87355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527685 ,2,827,33420 ,2,828,473615 ,2,821,146570 ,2,822,140740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527690 ,2,827,56720 ,2,828,473625 ,2,821,156835 ,1,0,578530 ,1,1,45 ,1,2,5900 ,2,822,149680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527700 ,2,827,75 ,2,828,473630 ,2,821,158460 ,2,822,130995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473635 ,2,821,159240 ,2,822,137000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473640 ,2,821,160070 ,2,822,130665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527705 ,2,827,75 ,2,828,473665 ,2,821,160870 ,2,822,130825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473670 ,2,821,161685 ,2,822,130900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473675 ,2,821,162505 ,2,822,123395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,473680 ,2,821,163325 ,1,0,2280 ,1,1,542210 ,1,2,2280 ,1,3,542070 ,1,4,2280 ,1,5,542065 ,1,6,45 ,1,7,5900 ,2,822,86325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527710 ,2,827,75 ,2,828,473690 ,2,821,166305 ,2,822,189735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527715 ,2,827,75 ,2,828,473695 ,2,821,167400 ,2,822,186060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473700 ,2,821,168520 ,2,822,189795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473740 ,2,821,169670 ,2,822,189905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473755 ,2,821,170735 ,2,822,190015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473775 ,2,821,171840 ,2,822,190100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473795 ,2,821,172930 ,2,822,192285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473820 ,2,821,174070 ,2,822,192470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527715 ,2,827,75 ,2,828,473835 ,2,821,175185 ,2,822,192540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473865 ,2,821,176245 ,2,822,192625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473870 ,2,821,177350 ,2,822,192815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527715 ,2,827,75 ,2,828,473885 ,2,821,178485 ,2,822,62385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527745 ,2,827,75 ,2,828,473890 ,2,821,179545 ,2,822,192915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473895 ,2,821,180620 ,2,822,193010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473940 ,2,821,181700 ,2,822,193110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473955 ,2,821,182795 ,2,822,193180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473975 ,2,821,183900 ,2,822,187285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527715 ,2,827,75 ,2,828,473980 ,2,821,184985 ,2,822,193335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527750 ,2,827,75 ,2,828,474005 ,2,821,186100 ,2,822,63370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,474010 ,2,821,187210 ,2,822,193385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527715 ,2,827,75 ,2,828,474015 ,2,821,188285 ,2,822,193450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,474025 ,2,821,189360 ,2,822,206430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527755 ,2,827,75 ,2,828,474040 ,2,821,193140 ,2,822,71035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527770 ,2,827,25645 ,2,828,474050 ,2,821,195775 ,1,0,216585 ,2,822,195480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,474055 ,2,821,196640 ,2,822,151995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527775 ,2,827,52955 ,2,828,474060 ,2,821,200855 ,1,0,234510 ,1,1,238185 ,1,2,354925 ,2,822,129885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527780 ,2,827,75 ,2,828,474065 ,2,821,205155 ,1,0,176470 ,2,822,128815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527785 ,2,827,75 ,2,828,474070 ,2,821,207425 ,1,0,216620 ,2,822,195435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501750 ,2,827,75 ,2,828,474075 ,2,821,208250 ,2,822,126315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,209455 ,1,0,226700 ,2,822,120945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527805 ,2,827,135915 ,2,828,474080 ,2,821,211050 ,1,1,2395 ,1,2,600010 ,1,3,45 ,1,4,9470 ,2,822,206440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527810 ,2,827,75 ,2,828,474085 ,2,821,215155 ,1,0,45 ,1,1,5900 ,2,822,121420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527815 ,2,827,75 ,2,828,474115 ,2,821,217665 ,2,822,121210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527820 ,2,827,75 ,2,828,474120 ,2,821,218915 ,2,822,116705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527825 ,2,827,75 ,2,828,474125 ,2,821,232980 ,1,0,226125 ,1,1,226135 ,1,2,226145 ,2,822,117010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527830 ,2,827,75 ,2,828,474130 ,2,821,239605 ,2,822,171200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527840 ,2,827,135935 ,2,828,474140 ,2,821,252020 ,1,0,45 ,1,1,8740 ,2,822,206480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527835 ,2,827,75 ,2,828,474145 ,2,821,259490 ,2,822,79155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,474150 ,2,821,260310 ,2,822,128010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527865 ,2,827,75 ,2,828,474155 ,2,821,261950 ,2,822,67795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527870 ,2,827,75 ,2,828,474185 ,2,821,263340 ,1,0,256620 ,2,822,79870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492600 ,2,827,75 ,2,828,420660 ,2,821,263985 ,2,822,80355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493565 ,2,827,75 ,2,828,474190 ,2,821,265225 ,2,822,197155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527875 ,2,827,135955 ,2,828,474195 ,2,821,266630 ,2,822,145115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,470525 ,2,821,277570 ,2,822,145005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,470525 ,2,821,289605 ,2,822,144830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,474200 ,2,821,290265 ,2,822,144930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527880 ,2,827,75 ,2,828,474215 ,2,821,304630 ,2,822,144665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,304965 ,1,0,355760 ,1,1,355860 ,1,2,355895 ,1,3,355885 ,1,4,355875 ,1,5,355830 ,1,6,355780 ,1,7,355745 ,1,8,355770 ,1,9,355735 ,1,10,355790 ,1,11,355840 ,1,12,355850 ,2,822,144580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527885 ,2,827,135985 ,2,828,474220 ,2,821,319870 ,2,822,144765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,322495 ,2,822,67160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,323220 ,2,822,97695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,420660 ,2,821,323945 ,1,0,164970 ,2,822,98460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527895 ,2,827,75 ,2,828,474230 ,2,821,325815 ,2,822,98360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527900 ,2,827,75 ,2,828,474250 ,2,821,329505 ,1,0,562145 ,1,1,45 ,1,2,5900 ,1,3,165350 ,2,822,97310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527955 ,2,827,75 ,2,828,474255 ,2,821,336360 ,1,0,562150 ,1,1,45 ,1,2,5900 ,1,3,165365 ,2,822,98285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527960 ,2,827,75 ,2,828,474260 ,2,821,340990 ,1,0,562200 ,1,1,45 ,1,2,5900 ,1,3,163110 ,2,822,98380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527965 ,2,827,75 ,2,828,474265 ,2,821,345990 ,1,0,562185 ,1,1,45 ,1,2,5900 ,2,822,98710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527970 ,2,827,75 ,2,828,474285 ,2,821,351140 ,1,0,562190 ,1,1,45 ,1,2,5900 ,1,3,162970 ,2,822,97115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527975 ,2,827,75 ,2,828,474290 ,2,821,356645 ,1,0,562175 ,1,1,45 ,1,2,5900 ,1,3,161380 ,2,822,98790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527980 ,2,827,75 ,2,828,474295 ,2,821,362215 ,1,0,45 ,1,1,5900 ,2,822,98885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527985 ,2,827,75 ,2,828,474300 ,2,821,369220 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,97375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527990 ,2,827,75 ,2,828,474325 ,2,821,377510 ,2,822,98535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528015 ,2,827,75 ,2,828,474330 ,2,821,378520 ,1,0,570130 ,1,1,45 ,1,2,5900 ,2,822,158525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528020 ,2,827,75 ,2,828,474335 ,2,821,381245 ,1,0,45 ,1,1,5900 ,2,822,158855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528025 ,2,827,75 ,2,828,474340 ,2,821,387575 ,1,0,45 ,1,1,5900 ,2,822,160515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528030 ,2,827,75 ,2,828,474345 ,2,821,390305 ,1,0,575010 ,1,1,45 ,1,2,5900 ,2,822,139290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528045 ,2,827,75 ,2,828,474350 ,2,821,392435 ,2,822,206510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528050 ,2,827,75 ,2,828,474355 ,2,821,393285 ,2,822,47325 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,393370 ,1,0,337610 ,1,1,3525 ,2,822,206520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528055 ,2,827,136045 ,2,828,474360 ,2,821,400700 ,1,0,314685 ,2,822,121390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528060 ,2,827,75 ,2,828,474385 ,2,821,402250 ,2,822,121180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528080 ,2,827,75 ,2,828,474390 ,2,821,403035 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,193950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528085 ,2,827,136055 ,2,828,474395 ,2,821,406495 ,1,0,313390 ,2,822,149795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528090 ,2,827,30175 ,2,828,474400 ,2,821,407565 ,1,0,587255 ,1,1,45 ,1,2,5900 ,1,3,569210 ,1,4,45 ,1,5,5900 ,1,6,593980 ,1,7,45 ,1,8,5900 ,2,822,106045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528095 ,2,827,135350 ,2,828,474405 ,2,821,410030 ,1,0,593990 ,1,1,45 ,1,2,5900 ,2,822,163520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526870 ,2,827,75 ,2,828,474410 ,2,821,411045 ,1,0,45 ,1,1,5900 ,2,822,164595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528105 ,2,827,136065 ,2,828,474415 ,2,821,412125 ,1,0,45 ,1,1,5900 ,2,822,138835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528110 ,2,827,75 ,2,828,474420 ,2,821,413285 ,2,822,62825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,413560 ,1,0,45 ,1,1,5900 ,2,822,102790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,474450 ,2,821,414230 ,1,0,45 ,1,1,5900 ,2,822,114990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509905 ,2,827,75 ,2,828,474455 ,2,821,414970 ,1,0,218345 ,2,822,129510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528115 ,2,827,73665 ,2,828,474460 ,2,821,417300 ,1,0,359330 ,1,1,359320 ,1,2,359310 ,1,3,211435 ,2,822,120000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528120 ,2,827,75 ,2,828,474465 ,2,821,419395 ,2,822,118035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,474480 ,2,821,419940 ,2,822,120495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528135 ,2,827,75 ,2,828,474485 ,2,821,421710 ,2,822,72845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,474490 ,2,821,422470 ,2,822,72040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528145 ,2,827,75 ,2,828,474530 ,2,821,423400 ,2,822,76490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528150 ,2,827,75 ,2,828,474535 ,2,821,425600 ,1,0,570 ,2,822,77200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528160 ,2,827,75 ,2,828,474540 ,2,821,434695 ,2,822,71265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528165 ,2,827,33290 ,2,828,474545 ,2,821,436650 ,2,822,200210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528170 ,2,827,75 ,2,828,474555 ,2,821,437855 ,2,822,71150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528175 ,2,827,33290 ,2,828,474560 ,2,821,439445 ,2,822,75860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,474570 ,2,821,440080 ,1,0,580 ,2,822,75950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528195 ,2,827,75 ,2,828,474610 ,2,821,443445 ,2,822,74330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528200 ,2,827,75 ,2,828,474615 ,2,821,445010 ,2,822,75190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528205 ,2,827,51110 ,2,828,474620 ,2,821,446585 ,2,822,75265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528210 ,2,827,75 ,2,828,474625 ,2,821,450640 ,2,822,142115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528215 ,2,827,135955 ,2,828,474635 ,2,821,453105 ,2,822,74160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528220 ,2,827,75 ,2,828,474640 ,2,821,454595 ,2,822,77515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528225 ,2,827,136100 ,2,828,474660 ,2,821,457105 ,2,822,198465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528230 ,2,827,136110 ,2,828,474670 ,2,821,458515 ,2,822,198155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507765 ,2,827,75 ,2,828,474675 ,2,821,459150 ,2,822,197705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528260 ,2,827,75 ,2,828,474700 ,2,821,459790 ,2,822,206585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528260 ,2,827,75 ,2,828,474705 ,2,821,460435 ,2,822,47335 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,460540 ,2,822,47355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,460635 ,2,822,187655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528265 ,2,827,75 ,2,828,474735 ,2,821,463375 ,2,822,64080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508910 ,2,827,75 ,2,828,474745 ,2,821,463665 ,2,822,105575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,420660 ,2,821,464125 ,2,822,110285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528270 ,2,827,75 ,2,828,474755 ,2,821,465620 ,2,822,135880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528275 ,2,827,75 ,2,828,474760 ,2,821,466620 ,2,822,124535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528285 ,2,827,75 ,2,828,474770 ,2,821,467630 ,2,822,135585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528290 ,2,827,75 ,2,828,474800 ,2,821,468650 ,2,822,135555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528295 ,2,827,75 ,2,828,474810 ,2,821,469415 ,2,822,134150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528300 ,2,827,75 ,2,828,474815 ,2,821,470660 ,2,822,135155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528310 ,2,827,75 ,2,828,474820 ,2,821,471605 ,2,822,134195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528290 ,2,827,75 ,2,828,474825 ,2,821,472645 ,1,0,358995 ,1,1,357305 ,1,2,357395 ,1,3,357280 ,1,4,358805 ,1,5,358795 ,1,6,358785 ,1,7,590 ,2,822,136230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528315 ,2,827,75 ,2,828,474830 ,2,821,477430 ,2,822,135690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528310 ,2,827,75 ,2,828,474835 ,2,821,478350 ,1,0,645 ,2,822,135625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528320 ,2,827,75 ,2,828,474860 ,2,821,480415 ,2,822,135480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528325 ,2,827,75 ,2,828,474865 ,2,821,482125 ,2,822,135060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528340 ,2,827,75 ,2,828,474870 ,2,821,483050 ,1,0,560 ,2,822,135375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528345 ,2,827,75 ,2,828,474875 ,2,821,484500 ,2,822,149770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528350 ,2,827,75 ,2,828,474885 ,2,821,487865 ,2,822,103850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,474890 ,2,821,488255 ,2,822,135345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528355 ,2,827,75 ,2,828,474895 ,2,821,489410 ,1,0,374830 ,2,822,167360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528395 ,2,827,75 ,2,828,474900 ,2,821,490245 ,2,822,127295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528400 ,2,827,75 ,2,828,474940 ,2,821,491170 ,2,822,135835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528405 ,2,827,75 ,2,828,474945 ,2,821,494780 ,2,822,135185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528290 ,2,827,75 ,2,828,474950 ,2,821,495880 ,1,0,485 ,2,822,135800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528290 ,2,827,75 ,2,828,474955 ,2,821,496905 ,2,822,136010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528410 ,2,827,75 ,2,828,474965 ,2,821,498715 ,2,822,134095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528420 ,2,827,75 ,2,828,474970 ,2,821,506235 ,1,0,600 ,2,822,136105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528425 ,2,827,75 ,2,828,474980 ,2,821,508210 ,1,0,550 ,2,822,135730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528355 ,2,827,75 ,2,828,475010 ,2,821,509340 ,2,822,135230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528310 ,2,827,75 ,2,828,475015 ,2,821,510295 ,2,822,109975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528430 ,2,827,75 ,2,828,475020 ,2,821,511325 ,2,822,109870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528435 ,2,827,61930 ,2,828,475025 ,2,821,515610 ,1,0,690 ,2,822,99575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528460 ,2,827,75 ,2,828,475035 ,2,821,520445 ,2,822,143295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528465 ,2,827,75 ,2,828,475040 ,2,821,521320 ,2,822,143215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,521590 ,2,822,118215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,523065 ,2,822,118310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,524440 ,2,822,119325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,525240 ,1,0,2210 ,1,1,542350 ,2,822,120345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528470 ,2,827,75 ,2,828,475045 ,2,821,527585 ,2,822,119740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,528155 ,2,822,204755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,529170 ,2,822,149550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528475 ,2,827,75 ,2,828,475050 ,2,821,530620 ,2,822,129925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,475075 ,2,821,531215 ,2,822,126470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528480 ,2,827,75 ,2,828,475080 ,2,821,532475 ,1,0,218895 ,2,822,129555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528485 ,2,827,73715 ,2,828,475085 ,2,821,534075 ,2,822,101255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528490 ,2,827,75 ,2,828,475090 ,2,821,534950 ,2,822,104725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,475095 ,2,821,535335 ,1,0,216630 ,2,822,195425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503400 ,2,827,75 ,2,828,475100 ,2,821,535850 ,2,822,86565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528495 ,2,827,75 ,2,828,475105 ,2,821,537900 ,2,822,86600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528515 ,2,827,75 ,2,828,475110 ,2,821,540225 ,2,822,86500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528520 ,2,827,75 ,2,828,475135 ,2,821,541635 ,2,822,86520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528525 ,2,827,75 ,2,828,475140 ,2,821,547275 ,2,822,86640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528530 ,2,827,75 ,2,828,475145 ,2,821,549420 ,2,822,86535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528535 ,2,827,75 ,2,828,475150 ,2,821,550450 ,2,822,90605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,550915 ,2,822,114490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528540 ,2,827,136245 ,2,828,475155 ,2,821,551670 ,2,822,149100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,475160 ,2,821,552040 ,2,822,131120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528545 ,2,827,75 ,2,828,475200 ,2,821,552915 ,2,822,203855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,475205 ,2,821,553310 ,2,822,147950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528550 ,2,827,75 ,2,828,475225 ,2,821,556415 ,2,822,150095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528585 ,2,827,75 ,2,828,475230 ,2,821,561845 ,1,0,15755 ,2,822,116760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528590 ,2,827,34150 ,2,828,475235 ,2,821,569080 ,2,822,117105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528595 ,2,827,75 ,2,828,475250 ,2,821,569905 ,2,822,136920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528600 ,2,827,75 ,2,828,475255 ,2,821,571185 ,2,822,109075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528605 ,2,827,75 ,2,828,475260 ,2,821,573045 ,1,0,373375 ,2,822,122985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528610 ,2,827,75 ,2,828,475265 ,2,821,575590 ,2,822,123865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528615 ,2,827,75 ,2,828,475275 ,2,821,577045 ,2,822,102255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528620 ,2,827,75 ,2,828,475280 ,2,821,579905 ,2,822,125135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528635 ,2,827,75 ,2,828,475285 ,2,821,581915 ,2,822,166595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528310 ,2,827,75 ,2,828,475290 ,2,821,582955 ,2,822,166940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528640 ,2,827,75 ,2,828,475310 ,2,821,583695 ,2,822,110125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528545 ,2,827,75 ,2,828,475330 ,2,821,584585 ,2,822,113275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528645 ,2,827,75 ,2,828,475335 ,2,821,586210 ,2,822,115010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528650 ,2,827,75 ,2,828,475345 ,2,821,591965 ,2,822,108295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528655 ,2,827,75 ,2,828,475390 ,2,821,594310 ,1,0,161080 ,1,1,612005 ,1,2,45 ,1,3,13320 ,1,4,358460 ,1,5,554540 ,1,6,162380 ,2,822,167390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528660 ,2,827,111960 ,2,828,475395 ,2,821,600590 ,2,822,126875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,475400 ,2,821,600975 ,2,822,103660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528310 ,2,827,75 ,2,828,475410 ,2,821,601940 ,2,822,142665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528145 ,2,827,75 ,2,828,475415 ,2,821,602955 ,2,822,142745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528665 ,2,827,75 ,2,828,475420 ,2,821,604565 ,2,822,195975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528545 ,2,827,75 ,2,828,475455 ,2,821,605430 ,2,822,162715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528670 ,2,827,75 ,2,828,475460 ,2,821,606490 ,1,0,302300 ,2,822,198980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528690 ,2,827,75 ,2,828,475465 ,2,821,607405 ,2,822,133250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528695 ,2,827,75 ,2,828,475470 ,2,821,610095 ,2,822,126645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528700 ,2,827,75 ,2,828,475480 ,2,821,610785 ,1,0,260860 ,1,1,260850 ,2,822,167445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528705 ,2,827,136255 ,2,828,475485 ,2,821,621315 ,2,822,199320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528725 ,2,827,75 ,2,828,475530 ,2,821,622600 ,1,0,218175 ,2,822,206695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528720 ,2,827,75 ,2,828,475525 ,2,821,623255 ,2,822,206625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528710 ,2,827,75 ,2,828,475495 ,2,821,625555 ,2,822,206645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528715 ,2,827,75 ,2,828,475520 ,2,821,633310 ,2,822,199300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528295 ,2,827,75 ,2,828,475535 ,2,821,634095 ,2,822,144455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,475565 ,2,821,634585 ,2,822,99035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503830 ,2,827,75 ,2,828,475570 ,2,821,635340 ,2,822,98625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528760 ,2,827,75 ,2,828,475575 ,2,821,636785 ,2,822,173710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528765 ,2,827,75 ,2,828,475580 ,2,821,638295 ,2,822,174050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528770 ,2,827,75 ,2,828,475600 ,2,821,640085 ,2,822,173930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528775 ,2,827,75 ,2,828,475605 ,2,821,642390 ,2,822,95180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528260 ,2,827,75 ,2,828,475620 ,2,821,643030 ,1,0,221370 ,2,822,206725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528720 ,2,827,75 ,2,828,475615 ,2,821,643705 ,2,822,206705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528780 ,2,827,75 ,2,828,475610 ,2,821,645975 ,2,822,167210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517285 ,2,827,75 ,2,828,475635 ,2,821,646565 ,1,0,554505 ,2,822,167415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528785 ,2,827,75 ,2,828,475660 ,2,821,647740 ,2,822,206765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,475675 ,2,821,648385 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,475670 ,2,821,649435 ,2,822,205315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528790 ,2,827,75 ,2,828,475695 ,2,821,650695 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,59045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520980 ,2,827,75 ,2,828,475700 ,2,821,652010 ,2,822,206810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,652885 ,1,0,45 ,1,1,13320 ,2,822,83600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528795 ,2,827,75 ,2,828,475705 ,2,821,653720 ,1,0,45 ,1,1,13320 ,2,822,83735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528805 ,2,827,113250 ,2,828,475710 ,2,821,654770 ,1,0,45 ,1,1,13320 ,2,822,206855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528810 ,2,827,75 ,2,828,475760 ,2,821,655550 ,1,1,2395 ,2,822,206820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,475750 ,2,821,656145 ,1,1,2395 ,2,822,206830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,475755 ,2,821,656745 ,2,822,122170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528815 ,2,827,132015 ,2,828,475765 ,2,821,660720 ,2,822,116780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528820 ,2,827,75 ,2,828,475770 ,2,821,664165 ,2,822,116665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528825 ,2,827,136495 ,2,828,475775 ,2,821,672470 ,2,822,117065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528830 ,2,827,75 ,2,828,475780 ,2,821,673220 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527555 ,2,827,75 ,2,828,475785 ,2,821,674980 ,1,0,45 ,1,1,13320 ,2,822,206920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528835 ,2,827,75 ,2,828,475810 ,2,821,2240 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,475805 ,2,821,4095 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520980 ,2,827,75 ,2,828,475815 ,2,821,6155 ,1,0,610300 ,1,1,45 ,1,2,318150 ,2,822,132840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528840 ,2,827,75 ,2,828,475830 ,2,821,8040 ,1,0,45 ,1,1,318150 ,2,822,161655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528865 ,2,827,75 ,2,828,475835 ,2,821,8895 ,1,0,45 ,1,1,318150 ,1,2,266795 ,2,822,161595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528870 ,2,827,78000 ,2,828,475840 ,2,821,11055 ,1,0,45 ,1,1,318150 ,1,2,266730 ,2,822,161675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528875 ,2,827,78000 ,2,828,475845 ,2,821,13255 ,1,0,45 ,1,1,318150 ,1,2,266925 ,2,822,161615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528880 ,2,827,78000 ,2,828,475875 ,2,821,16315 ,1,0,45 ,1,1,318150 ,1,2,318140 ,1,3,370035 ,2,822,139920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528885 ,2,827,78000 ,2,828,475880 ,2,821,24445 ,1,0,5710 ,2,822,73565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528890 ,2,827,75 ,2,828,475885 ,2,821,27545 ,1,0,15765 ,2,822,116750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,27860 ,2,822,117045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498495 ,2,827,75 ,2,828,475890 ,2,821,29025 ,1,0,261315 ,1,1,317030 ,2,822,170950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528895 ,2,827,136655 ,2,828,475895 ,2,821,68850 ,1,0,334025 ,1,1,334015 ,1,2,334005 ,2,822,64165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528900 ,2,827,75 ,2,828,475900 ,2,821,77760 ,1,1,2395 ,2,822,206970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,475905 ,2,821,78905 ,2,822,207010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,79620 ,1,0,334090 ,2,822,70260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528940 ,2,827,75 ,2,828,475910 ,2,821,80755 ,1,0,328565 ,2,822,64120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528945 ,2,827,75 ,2,828,475935 ,2,821,82670 ,1,0,337100 ,2,822,207050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,83010 ,1,0,334325 ,1,1,334315 ,1,2,9180 ,1,3,45 ,1,4,13320 ,1,5,334305 ,1,6,334295 ,1,7,334285 ,2,822,57170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528950 ,2,827,136810 ,2,828,475940 ,2,821,97545 ,1,0,334345 ,2,822,207070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528955 ,2,827,75 ,2,828,475945 ,2,821,99250 ,2,822,207080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,100595 ,1,0,334130 ,1,1,334120 ,1,2,334110 ,2,822,207125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528960 ,2,827,75 ,2,828,475950 ,2,821,102740 ,2,822,207135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,104490 ,1,0,333900 ,1,1,220750 ,1,2,333890 ,1,3,165105 ,1,4,200415 ,1,5,333850 ,1,6,333840 ,1,7,333800 ,1,8,333790 ,1,9,333780 ,1,10,333770 ,1,11,333760 ,1,12,333750 ,1,13,333740 ,1,14,333730 ,1,15,333680 ,1,16,333670 ,1,17,333660 ,1,18,333650 ,1,19,333635 ,1,20,333625 ,1,21,333615 ,1,22,333605 ,1,23,333585 ,1,24,333575 ,1,25,333565 ,1,26,333555 ,1,27,333535 ,1,28,6630 ,1,29,333525 ,1,30,333515 ,1,31,333505 ,1,32,333475 ,1,33,333465 ,1,34,333455 ,1,35,333445 ,2,822,207395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529070 ,2,827,24980 ,2,828,476095 ,2,821,179885 ,1,0,309250 ,1,1,333435 ,1,2,333425 ,1,3,333415 ,1,4,6375 ,1,5,333405 ,1,6,333365 ,2,822,207365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529020 ,2,827,136985 ,2,828,476050 ,2,821,206655 ,2,822,207145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528965 ,2,827,75 ,2,828,475960 ,2,821,208750 ,2,822,47525 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,208900 ,2,822,207155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,475965 ,2,821,210355 ,2,822,207170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528970 ,2,827,75 ,2,828,475970 ,2,821,213180 ,1,1,2395 ,1,2,590190 ,1,3,45 ,1,4,9470 ,2,822,207225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528975 ,2,827,75 ,2,828,475975 ,2,821,214830 ,1,0,45 ,1,1,13320 ,1,2,2210 ,1,3,542350 ,2,822,207245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528995 ,2,827,75 ,2,828,476015 ,2,821,218315 ,1,0,165905 ,1,1,161045 ,1,2,374915 ,2,822,207280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,222670 ,2,822,207180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528965 ,2,827,75 ,2,828,476020 ,2,821,224785 ,2,822,207290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518260 ,2,827,75 ,2,828,476025 ,2,821,225810 ,2,822,47545 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,225960 ,1,0,554015 ,1,1,45 ,1,2,13320 ,2,822,207335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529000 ,2,827,75 ,2,828,476030 ,2,821,236350 ,2,822,207345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529010 ,2,827,75 ,2,828,476040 ,2,821,237540 ,2,822,207355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529005 ,2,827,75 ,2,828,476035 ,2,821,244845 ,1,0,7430 ,1,1,10895 ,2,822,207270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529015 ,2,827,75 ,2,828,476045 ,2,821,257165 ,1,1,2395 ,1,2,558420 ,1,3,45 ,1,4,9470 ,2,822,207300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529025 ,2,827,75 ,2,828,476065 ,2,821,259100 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,2210 ,1,9,542305 ,1,10,2210 ,1,11,542305 ,2,822,207190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529030 ,2,827,101270 ,2,828,476070 ,2,821,278135 ,1,0,45 ,1,1,13320 ,1,2,2210 ,1,3,542305 ,1,4,2210 ,1,5,542350 ,2,822,207200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529055 ,2,827,75 ,2,828,476080 ,2,821,285670 ,1,1,2395 ,1,2,590200 ,1,3,45 ,1,4,9470 ,2,822,207385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529050 ,2,827,75 ,2,828,476075 ,2,821,287400 ,2,822,590200 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,288520 ,2,822,207235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529060 ,2,827,75 ,2,828,476085 ,2,821,291995 ,2,822,207255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529065 ,2,827,75 ,2,828,476090 ,2,821,293145 ,1,0,334165 ,2,822,59755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,476100 ,2,821,294195 ,1,0,334335 ,1,1,173815 ,2,822,64250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529075 ,2,827,75 ,2,828,476110 ,2,821,295680 ,1,0,333345 ,2,822,63640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,476115 ,2,821,296785 ,1,0,334100 ,2,822,61240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529080 ,2,827,75 ,2,828,476120 ,2,821,298805 ,1,0,334405 ,1,1,334395 ,1,2,334385 ,2,822,207405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529085 ,2,827,75 ,2,828,476125 ,2,821,300565 ,2,822,207415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,302335 ,1,0,337550 ,2,822,207455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,302645 ,2,822,47565 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,302825 ,2,822,47575 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,302975 ,1,0,337540 ,1,1,337520 ,2,822,207465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529125 ,2,827,75 ,2,828,476135 ,2,821,305390 ,1,0,556665 ,1,1,189125 ,1,2,192900 ,2,822,78040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529130 ,2,827,77450 ,2,828,476140 ,2,821,308400 ,1,0,334205 ,2,822,207475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529135 ,2,827,75 ,2,828,476145 ,2,821,309730 ,2,822,180200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,476150 ,2,821,310320 ,2,822,66080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,476175 ,2,821,311095 ,2,822,56375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529140 ,2,827,75 ,2,828,476185 ,2,821,313425 ,2,822,60935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,476190 ,2,821,314220 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,1,8,2280 ,1,9,542095 ,1,10,7565 ,2,822,128060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529150 ,2,827,137125 ,2,828,476205 ,2,821,327825 ,1,0,333965 ,1,1,333955 ,1,2,333920 ,1,3,333910 ,1,4,14280 ,2,822,67840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529160 ,2,827,137135 ,2,828,476210 ,2,821,347400 ,1,0,45 ,1,1,8740 ,2,822,207505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529155 ,2,827,75 ,2,828,476215 ,2,821,350750 ,1,0,337110 ,2,822,207525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,351070 ,1,0,334185 ,2,822,207575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,351400 ,1,0,168065 ,1,1,333985 ,2,822,57480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529165 ,2,827,75 ,2,828,476220 ,2,821,353010 ,1,0,10835 ,1,1,337080 ,1,2,337070 ,1,3,337060 ,1,4,337050 ,1,5,336990 ,1,6,336980 ,2,822,57500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529190 ,2,827,75 ,2,828,476255 ,2,821,387860 ,1,0,10935 ,2,822,207615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,476260 ,2,821,388035 ,1,0,334080 ,1,1,334070 ,2,822,93480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,474215 ,2,821,388510 ,1,0,334195 ,2,822,66430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529195 ,2,827,75 ,2,828,476265 ,2,821,390830 ,2,822,207635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,391020 ,2,822,47650 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,391120 ,2,822,58395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529200 ,2,827,75 ,2,828,476270 ,2,821,392205 ,1,0,256640 ,2,822,79510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529205 ,2,827,40185 ,2,828,476275 ,2,821,392640 ,2,822,80675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529210 ,2,827,75 ,2,828,476280 ,2,821,393765 ,2,822,168330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529215 ,2,827,75 ,2,828,476285 ,2,821,394540 ,1,0,317275 ,1,1,549405 ,2,822,127165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529220 ,2,827,75 ,2,828,476290 ,2,821,395775 ,2,822,145125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529225 ,2,827,75 ,2,828,476315 ,2,821,403150 ,2,822,145045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529225 ,2,827,75 ,2,828,476320 ,2,821,408585 ,1,0,165435 ,2,822,144840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529245 ,2,827,75 ,2,828,476325 ,2,821,410460 ,1,0,14370 ,2,822,144940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529250 ,2,827,75 ,2,828,476330 ,2,821,416070 ,2,822,144675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529255 ,2,827,75 ,2,828,476335 ,2,821,422665 ,1,0,254825 ,2,822,144600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529260 ,2,827,75 ,2,828,476340 ,2,821,429435 ,1,0,254950 ,2,822,144775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529270 ,2,827,137285 ,2,828,476345 ,2,821,438180 ,2,822,68150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,476350 ,2,821,438595 ,2,822,65255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,476395 ,2,821,438925 ,1,0,400430 ,1,1,199540 ,2,822,199530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439120 ,2,822,98430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439950 ,1,0,556715 ,2,822,97185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529275 ,2,827,75 ,2,828,476405 ,2,821,442750 ,1,0,208585 ,1,1,556720 ,2,822,98305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529280 ,2,827,75 ,2,828,476415 ,2,821,445460 ,1,0,555005 ,2,822,98400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529285 ,2,827,75 ,2,828,476420 ,2,821,448335 ,1,0,554110 ,2,822,98720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529310 ,2,827,75 ,2,828,476425 ,2,821,451260 ,1,0,556675 ,2,822,98615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529315 ,2,827,75 ,2,828,476430 ,2,821,456105 ,1,0,554235 ,2,822,98800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529310 ,2,827,75 ,2,828,476450 ,2,821,459145 ,1,0,554160 ,2,822,98895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529280 ,2,827,75 ,2,828,476455 ,2,821,461750 ,1,0,554195 ,2,822,98255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529320 ,2,827,75 ,2,828,476460 ,2,821,466720 ,1,0,554340 ,1,1,609265 ,1,2,609270 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,190350 ,1,7,45 ,1,8,11510 ,2,822,98660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529325 ,2,827,54025 ,2,828,476465 ,2,821,476495 ,1,0,400430 ,1,1,165995 ,2,822,165985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,476685 ,2,822,93385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529330 ,2,827,75 ,2,828,476480 ,2,821,477635 ,1,0,374940 ,1,1,374950 ,1,2,14310 ,2,822,145165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529335 ,2,827,75 ,2,828,476485 ,2,821,482495 ,1,0,374640 ,1,1,14320 ,2,822,145075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529340 ,2,827,75 ,2,828,476490 ,2,821,485475 ,1,0,14330 ,2,822,144865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529345 ,2,827,75 ,2,828,476510 ,2,821,489620 ,1,0,374610 ,1,1,375010 ,1,2,577775 ,1,3,14360 ,2,822,144975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529375 ,2,827,137295 ,2,828,476515 ,2,821,499675 ,1,0,375000 ,1,1,374760 ,1,2,14380 ,2,822,144710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529380 ,2,827,75 ,2,828,476520 ,2,821,502225 ,1,0,374990 ,1,1,374630 ,1,2,14400 ,1,3,14390 ,2,822,144620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529385 ,2,827,137330 ,2,828,476525 ,2,821,507605 ,2,822,65060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,476530 ,2,821,508145 ,2,822,207665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529390 ,2,827,75 ,2,828,476535 ,2,821,509230 ,2,822,47660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,509335 ,1,0,339310 ,2,822,207675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,476540 ,2,821,509775 ,1,0,339880 ,2,822,207685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,476545 ,2,821,510235 ,1,0,339445 ,2,822,207695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,476560 ,2,821,510660 ,1,0,10435 ,1,1,339300 ,1,2,339290 ,1,3,339280 ,1,4,339270 ,1,5,339260 ,1,6,339250 ,1,7,339205 ,1,8,339195 ,1,9,6365 ,1,10,339185 ,2,822,207705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529405 ,2,827,75 ,2,828,476565 ,2,821,512795 ,1,0,339090 ,2,822,207715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,476570 ,2,821,513285 ,1,0,339100 ,2,822,207725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,476575 ,2,821,513750 ,1,0,339080 ,2,822,207735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,476580 ,2,821,514210 ,1,0,339870 ,2,822,207755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,476585 ,2,821,514665 ,1,0,339345 ,2,822,207885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,476590 ,2,821,515100 ,1,0,339320 ,2,822,207895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,476595 ,2,821,515540 ,1,0,221175 ,2,822,207905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,476650 ,2,821,516345 ,2,822,208075 ,2,823,541130 ,2,824,418480 ,2,825,352660 ,2,826,529410 ,2,827,75 ,2,828,476645 ,2,821,517530 ,1,0,339890 ,2,822,207915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,476640 ,2,821,518805 ,2,822,47680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,518905 ,2,822,590290 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,519275 ,1,0,221055 ,2,822,208030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,476655 ,2,821,520025 ,1,0,221025 ,2,822,208065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,476665 ,2,821,520815 ,1,0,221205 ,2,822,208095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501165 ,2,827,75 ,2,828,476670 ,2,821,521585 ,1,0,264480 ,1,1,264470 ,1,2,165270 ,1,3,264230 ,2,822,208210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529415 ,2,827,137530 ,2,828,476675 ,2,821,526175 ,1,0,400430 ,1,1,198760 ,2,822,198750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,526365 ,1,0,374270 ,2,822,93375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529420 ,2,827,75 ,2,828,476715 ,2,821,527695 ,1,0,337630 ,1,1,337620 ,2,822,206540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529440 ,2,827,75 ,2,828,476720 ,2,821,528905 ,2,822,121190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529445 ,2,827,75 ,2,828,476725 ,2,821,529805 ,1,0,45 ,1,1,5900 ,2,822,121400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529450 ,2,827,75 ,2,828,476730 ,2,821,531520 ,2,822,120855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529455 ,2,827,135915 ,2,828,476740 ,2,821,532820 ,2,822,121070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529455 ,2,827,137550 ,2,828,476745 ,2,821,534165 ,1,0,337130 ,2,822,81500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,476750 ,2,821,534835 ,2,822,116800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529465 ,2,827,137560 ,2,828,476755 ,2,821,548335 ,2,822,116930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529470 ,2,827,75 ,2,828,476770 ,2,821,549695 ,2,822,62905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529475 ,2,827,137580 ,2,828,476775 ,2,821,550865 ,2,822,62925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529480 ,2,827,75 ,2,828,443110 ,2,821,551730 ,2,822,73250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529510 ,2,827,75 ,2,828,476780 ,2,821,552825 ,1,0,237220 ,2,822,126545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529515 ,2,827,75 ,2,828,476785 ,2,821,553810 ,1,0,216880 ,2,822,126840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,476805 ,2,821,556680 ,1,0,337820 ,1,1,337810 ,1,2,337775 ,2,822,84250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529520 ,2,827,75 ,2,828,476810 ,2,821,560085 ,1,0,337830 ,2,822,81810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529135 ,2,827,75 ,2,828,476815 ,2,821,560865 ,1,0,337870 ,2,822,83945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529525 ,2,827,75 ,2,828,476820 ,2,821,561690 ,1,0,337880 ,2,822,84215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529135 ,2,827,75 ,2,828,476855 ,2,821,562545 ,1,0,549295 ,1,1,217190 ,2,822,129655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529530 ,2,827,75 ,2,828,476860 ,2,821,564705 ,1,0,193530 ,1,1,337765 ,2,822,81615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529535 ,2,827,75 ,2,828,476865 ,2,821,570640 ,2,822,119630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529540 ,2,827,75 ,2,828,476870 ,2,821,573260 ,1,0,337920 ,2,822,82860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529545 ,2,827,75 ,2,828,476880 ,2,821,576510 ,1,0,337755 ,2,822,82040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529560 ,2,827,75 ,2,828,476885 ,2,821,577615 ,1,0,338755 ,2,822,72875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529565 ,2,827,75 ,2,828,476890 ,2,821,579900 ,1,0,338810 ,2,822,72640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529565 ,2,827,75 ,2,828,476895 ,2,821,582200 ,1,0,337940 ,2,822,72300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529570 ,2,827,75 ,2,828,476935 ,2,821,586130 ,1,0,338940 ,1,1,338930 ,2,822,76480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529575 ,2,827,75 ,2,828,476940 ,2,821,591765 ,1,0,218120 ,1,1,338885 ,1,2,338875 ,1,3,338865 ,1,4,338855 ,1,5,338840 ,1,6,338830 ,1,7,338820 ,2,822,77275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529580 ,2,827,137590 ,2,828,476945 ,2,821,611010 ,1,0,327265 ,1,1,327235 ,1,2,327225 ,1,3,327215 ,1,4,327205 ,1,5,327195 ,1,6,327185 ,1,7,179860 ,1,8,327175 ,1,9,327165 ,2,822,71255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529585 ,2,827,137600 ,2,828,476950 ,2,821,645945 ,1,0,303790 ,1,1,331975 ,2,822,200200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529590 ,2,827,75 ,2,828,476960 ,2,821,647305 ,2,822,204645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529595 ,2,827,75 ,2,828,476965 ,2,821,648210 ,1,0,338745 ,2,822,71215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529640 ,2,827,33290 ,2,828,476970 ,2,821,651025 ,2,822,75540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,476975 ,2,821,651415 ,1,0,187735 ,2,822,76960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,651650 ,1,0,187970 ,2,822,77075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,651850 ,1,0,317385 ,2,822,123655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529645 ,2,827,75 ,2,828,477005 ,2,821,654165 ,1,0,338970 ,1,1,338960 ,2,822,72915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529650 ,2,827,75 ,2,828,477010 ,2,821,657010 ,1,0,338200 ,1,1,338190 ,1,2,338180 ,1,3,338170 ,1,4,338160 ,1,5,338150 ,1,6,338140 ,1,7,338130 ,1,8,338095 ,1,9,338085 ,1,10,338075 ,1,11,338065 ,1,12,338050 ,1,13,338040 ,1,14,338030 ,1,15,338020 ,1,16,337995 ,1,17,337985 ,1,18,337975 ,1,19,337965 ,1,20,337950 ,2,822,77415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,663875 ,1,0,332660 ,1,1,332645 ,1,2,332635 ,1,3,332625 ,1,4,332615 ,1,5,332595 ,1,6,332585 ,1,7,332575 ,1,8,332565 ,1,9,332545 ,1,10,332535 ,1,11,332525 ,1,12,332515 ,1,13,332485 ,1,14,332475 ,1,15,332465 ,1,16,332455 ,1,17,332440 ,1,18,332430 ,1,19,332420 ,1,20,332410 ,1,21,332360 ,1,22,332350 ,2,822,74945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,671180 ,1,0,374850 ,1,1,161090 ,1,2,612080 ,1,3,45 ,1,4,13320 ,1,5,2210 ,1,6,542350 ,2,822,77085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529655 ,2,827,111960 ,2,828,477015 ,2,821,1910 ,1,0,332740 ,1,1,332730 ,1,2,244840 ,1,3,332720 ,1,4,332690 ,1,5,332680 ,1,6,332670 ,2,822,75850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529660 ,2,827,24545 ,2,828,477020 ,2,821,18520 ,1,0,338415 ,1,1,338405 ,1,2,338395 ,1,3,338375 ,1,4,338365 ,1,5,165180 ,1,6,338355 ,1,7,338345 ,1,8,165170 ,1,9,338320 ,1,10,338310 ,1,11,338300 ,1,12,338290 ,1,13,338270 ,1,14,338260 ,1,15,338250 ,2,822,75940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529665 ,2,827,75 ,2,828,477035 ,2,821,70700 ,1,0,338645 ,1,1,338635 ,1,2,165250 ,1,3,338625 ,1,4,338615 ,1,5,165240 ,1,6,338605 ,1,7,165230 ,1,8,338595 ,1,9,165220 ,1,10,338585 ,1,11,338535 ,1,12,338525 ,1,13,338515 ,1,14,338505 ,1,15,338490 ,1,16,338480 ,1,17,338470 ,1,18,338460 ,1,19,338425 ,2,822,74305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529670 ,2,827,137645 ,2,828,477040 ,2,821,107820 ,1,0,338240 ,2,822,75255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529675 ,2,827,75 ,2,828,477045 ,2,821,119400 ,1,0,318470 ,2,822,77040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529690 ,2,827,75 ,2,828,477050 ,2,821,121080 ,1,0,251885 ,1,1,323940 ,1,2,323930 ,1,3,323920 ,1,4,323910 ,2,822,142140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529695 ,2,827,75 ,2,828,477065 ,2,821,123745 ,1,0,318460 ,1,1,318450 ,2,822,74150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529690 ,2,827,75 ,2,828,477070 ,2,821,125450 ,1,0,338950 ,2,822,74400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529135 ,2,827,75 ,2,828,477075 ,2,821,126805 ,1,0,184065 ,2,822,74935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,127115 ,1,0,561565 ,1,1,338685 ,1,2,338675 ,1,3,338655 ,2,822,72945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529700 ,2,827,75 ,2,828,477080 ,2,821,132215 ,1,0,338735 ,1,1,338725 ,1,2,338705 ,1,3,338695 ,2,822,73435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529705 ,2,827,75 ,2,828,477085 ,2,821,134625 ,1,0,4315 ,2,822,77485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,477090 ,2,821,136020 ,1,0,241210 ,1,1,241220 ,1,2,241235 ,1,3,241200 ,1,4,337930 ,1,5,241245 ,1,6,181590 ,2,822,73355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529715 ,2,827,137655 ,2,828,477095 ,2,821,160165 ,1,0,324470 ,1,1,324460 ,1,2,324450 ,2,822,208230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529690 ,2,827,75 ,2,828,477100 ,2,821,161910 ,2,822,47725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,162060 ,1,0,45 ,1,1,13320 ,1,2,214155 ,1,3,45 ,1,4,13320 ,2,822,208240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529720 ,2,827,75 ,2,828,477125 ,2,821,165510 ,2,822,590325 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,166205 ,1,0,272435 ,2,822,167200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,166520 ,1,0,327020 ,1,1,327010 ,2,822,201845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529690 ,2,827,75 ,2,828,477130 ,2,821,168305 ,2,822,164075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529725 ,2,827,75 ,2,828,477135 ,2,821,169665 ,2,822,167715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,477140 ,2,821,170300 ,2,822,137040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529730 ,2,827,75 ,2,828,477150 ,2,821,172110 ,2,822,205650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529760 ,2,827,75 ,2,828,477155 ,2,821,173765 ,2,822,133995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529765 ,2,827,75 ,2,828,477160 ,2,821,176035 ,1,0,587820 ,2,822,198710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477165 ,2,821,177615 ,1,0,587810 ,2,822,198690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529775 ,2,827,75 ,2,828,477180 ,2,821,179235 ,2,822,198855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529785 ,2,827,75 ,2,828,477185 ,2,821,182145 ,1,0,328750 ,2,822,166135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529790 ,2,827,137940 ,2,828,477190 ,2,821,185570 ,1,0,587685 ,2,822,198315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529795 ,2,827,75 ,2,828,477195 ,2,821,187205 ,1,0,197900 ,1,1,327115 ,1,2,327095 ,2,822,85005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529800 ,2,827,75 ,2,828,477200 ,2,821,190920 ,1,0,327135 ,2,822,85655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,191235 ,1,0,328760 ,2,822,86880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,191575 ,2,822,84865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529835 ,2,827,75 ,2,828,477205 ,2,821,194770 ,1,0,197990 ,1,1,328770 ,1,2,351830 ,2,822,85100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529840 ,2,827,137950 ,2,828,477210 ,2,821,200845 ,1,0,351760 ,1,1,198115 ,2,822,85465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516830 ,2,827,75 ,2,828,477215 ,2,821,202330 ,1,0,351780 ,1,1,351770 ,2,822,85875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529845 ,2,827,75 ,2,828,477260 ,2,821,207595 ,1,0,199130 ,2,822,86760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529850 ,2,827,75 ,2,828,477265 ,2,821,209510 ,2,822,87375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529865 ,2,827,75 ,2,828,477270 ,2,821,211955 ,2,822,131710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529870 ,2,827,75 ,2,828,477275 ,2,821,215870 ,1,0,325190 ,2,822,84795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529590 ,2,827,75 ,2,828,477280 ,2,821,218145 ,1,0,241790 ,2,822,133740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,218500 ,1,0,199710 ,1,1,323825 ,2,822,87630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529875 ,2,827,75 ,2,828,477290 ,2,821,221165 ,1,0,306455 ,1,1,324440 ,1,2,324425 ,2,822,204160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,477295 ,2,821,223080 ,1,0,199650 ,2,822,87620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,223410 ,1,0,198890 ,2,822,86555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529915 ,2,827,75 ,2,828,477325 ,2,821,225195 ,1,0,198905 ,1,1,351790 ,2,822,86590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529920 ,2,827,75 ,2,828,477330 ,2,821,233300 ,1,0,198860 ,2,822,86510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529925 ,2,827,75 ,2,828,477335 ,2,821,243910 ,1,0,198935 ,2,822,86620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477340 ,2,821,245430 ,1,0,198765 ,2,822,86450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,245780 ,2,822,86255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529930 ,2,827,75 ,2,828,477345 ,2,821,247165 ,1,0,249995 ,1,1,351860 ,1,2,328825 ,1,3,328815 ,2,822,140860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529935 ,2,827,75 ,2,828,477350 ,2,821,251310 ,1,0,249875 ,1,1,327490 ,1,2,327480 ,1,3,327445 ,1,4,327435 ,2,822,140705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529940 ,2,827,75 ,2,828,477355 ,2,821,257515 ,1,0,198645 ,2,822,86305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,477360 ,2,821,259425 ,1,0,198570 ,1,1,327145 ,2,822,86225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477385 ,2,821,260935 ,1,0,328780 ,2,822,206045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,261240 ,1,0,329040 ,2,822,127695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,261545 ,1,0,325655 ,2,822,127530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,261855 ,1,0,317295 ,2,822,124390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,477390 ,2,821,262925 ,1,0,164625 ,2,822,71285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529945 ,2,827,75 ,2,828,477400 ,2,821,272060 ,1,0,556035 ,2,822,208345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,477395 ,2,821,272830 ,1,0,212485 ,1,1,45 ,1,2,5900 ,1,3,212475 ,1,4,45 ,1,5,5900 ,1,6,212435 ,1,7,591165 ,1,8,45 ,1,9,5900 ,2,822,131060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529950 ,2,827,75 ,2,828,477410 ,2,821,280310 ,1,0,217065 ,1,1,593820 ,1,2,45 ,1,3,5900 ,2,822,137020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529975 ,2,827,75 ,2,828,477415 ,2,821,283405 ,1,0,213605 ,1,1,591695 ,1,2,45 ,1,3,5900 ,2,822,130845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529980 ,2,827,75 ,2,828,477420 ,2,821,286640 ,1,0,212835 ,1,1,591295 ,1,2,45 ,1,3,5900 ,2,822,130765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529985 ,2,827,75 ,2,828,477425 ,2,821,289755 ,1,0,316765 ,1,1,212950 ,1,2,591370 ,1,3,45 ,1,4,5900 ,1,5,212940 ,1,6,591365 ,1,7,45 ,1,8,5900 ,1,9,212930 ,1,10,591360 ,1,11,45 ,1,12,5900 ,1,13,212920 ,1,14,45 ,1,15,5900 ,2,822,130715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529990 ,2,827,75 ,2,828,477440 ,2,821,299695 ,1,0,211345 ,1,1,45 ,1,2,5900 ,2,822,123385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530005 ,2,827,75 ,2,828,477445 ,2,821,303780 ,2,822,194235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,477450 ,2,821,304775 ,2,822,149470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477455 ,2,821,305805 ,2,822,142085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,306805 ,2,822,135930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530010 ,2,827,75 ,2,828,477465 ,2,821,308450 ,2,822,64600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530015 ,2,827,75 ,2,828,477470 ,2,821,310415 ,2,822,104010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530020 ,2,827,75 ,2,828,477475 ,2,821,312345 ,2,822,64400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530015 ,2,827,75 ,2,828,477495 ,2,821,314265 ,2,822,120030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530040 ,2,827,138035 ,2,828,477500 ,2,821,317550 ,1,0,216265 ,2,822,119485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530045 ,2,827,138045 ,2,828,477505 ,2,821,324835 ,2,822,119435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530050 ,2,827,75 ,2,828,477510 ,2,821,326480 ,1,0,268725 ,1,1,340315 ,2,822,88345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,477520 ,2,821,327450 ,2,822,120445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530055 ,2,827,138075 ,2,828,477525 ,2,821,333805 ,1,0,306720 ,1,1,322990 ,1,2,2210 ,1,3,542350 ,2,822,204790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530065 ,2,827,75 ,2,828,477530 ,2,821,338760 ,2,822,84300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529785 ,2,827,75 ,2,828,477535 ,2,821,341660 ,2,822,113750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530070 ,2,827,75 ,2,828,477555 ,2,821,345290 ,1,0,234240 ,2,822,129915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530075 ,2,827,75 ,2,828,477560 ,2,821,347125 ,2,822,113685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530070 ,2,827,75 ,2,828,477570 ,2,821,350740 ,2,822,167975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530010 ,2,827,75 ,2,828,477465 ,2,821,352465 ,1,0,609950 ,1,1,45 ,1,2,208615 ,1,3,324725 ,2,822,126325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530080 ,2,827,37620 ,2,828,477575 ,2,821,357460 ,1,0,45 ,1,1,208615 ,2,822,129605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530115 ,2,827,75 ,2,828,477580 ,2,821,358910 ,1,0,174080 ,2,822,64495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530120 ,2,827,75 ,2,828,477585 ,2,821,361135 ,1,0,609375 ,1,1,324755 ,1,2,324745 ,1,3,554985 ,1,4,609380 ,2,822,101245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530125 ,2,827,138085 ,2,828,477590 ,2,821,371295 ,1,0,340145 ,2,822,163430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530130 ,2,827,75 ,2,828,477615 ,2,821,373310 ,1,0,594500 ,1,1,328610 ,2,822,162780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530135 ,2,827,75 ,2,828,477620 ,2,821,377930 ,1,0,215085 ,1,1,340135 ,2,822,104715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530140 ,2,827,75 ,2,828,477625 ,2,821,380065 ,1,0,327075 ,1,1,327065 ,1,2,327030 ,2,822,165470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530145 ,2,827,75 ,2,828,477630 ,2,821,384225 ,1,0,327125 ,2,822,86985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529785 ,2,827,75 ,2,828,477640 ,2,821,385850 ,1,0,351680 ,1,1,351690 ,1,2,351820 ,1,3,351810 ,2,822,84835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,477645 ,2,821,387175 ,2,822,87365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530150 ,2,827,75 ,2,828,477650 ,2,821,388705 ,2,822,101040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530185 ,2,827,75 ,2,828,477680 ,2,821,390150 ,2,822,117930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530190 ,2,827,75 ,2,828,477685 ,2,821,391480 ,1,0,332860 ,1,1,220460 ,1,2,332850 ,1,3,332800 ,1,4,332790 ,2,822,117710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530195 ,2,827,75 ,2,828,477690 ,2,821,394905 ,1,0,45 ,1,1,167770 ,2,822,92900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530200 ,2,827,138095 ,2,828,477695 ,2,821,396190 ,2,822,92870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530215 ,2,827,75 ,2,828,477705 ,2,821,396880 ,1,0,224135 ,2,822,114055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477710 ,2,821,397830 ,1,0,224145 ,2,822,114105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477715 ,2,821,398745 ,1,0,224125 ,2,822,114045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529795 ,2,827,75 ,2,828,477720 ,2,821,399670 ,1,0,224535 ,2,822,114115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529795 ,2,827,75 ,2,828,477730 ,2,821,400520 ,1,0,45 ,1,1,5900 ,2,822,102780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530220 ,2,827,138105 ,2,828,477735 ,2,821,402655 ,1,0,45 ,1,1,5900 ,1,2,316465 ,1,3,316455 ,2,822,114955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530225 ,2,827,138115 ,2,828,477740 ,2,821,406825 ,1,0,570750 ,1,1,45 ,1,2,5900 ,1,3,45 ,1,4,5900 ,2,822,93875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530230 ,2,827,138125 ,2,828,477745 ,2,821,410025 ,1,0,340355 ,1,1,340345 ,2,822,93785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530265 ,2,827,75 ,2,828,477750 ,2,821,411985 ,1,0,228760 ,1,1,324830 ,1,2,324820 ,2,822,119590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,477755 ,2,821,413090 ,1,0,323045 ,2,822,114480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530270 ,2,827,75 ,2,828,477760 ,2,821,415360 ,1,0,323035 ,1,1,323025 ,1,2,323015 ,1,3,323000 ,2,822,114395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530275 ,2,827,75 ,2,828,477765 ,2,821,419995 ,1,0,324860 ,2,822,114470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529690 ,2,827,75 ,2,828,477780 ,2,821,421065 ,1,0,249655 ,2,822,140585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,421270 ,2,822,136600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530285 ,2,827,138135 ,2,828,477785 ,2,821,426635 ,1,0,45 ,1,1,185785 ,2,822,208365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530280 ,2,827,75 ,2,828,477790 ,2,821,428745 ,2,822,136690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530290 ,2,827,75 ,2,828,477795 ,2,821,430455 ,1,0,179770 ,1,1,161315 ,2,822,136710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530295 ,2,827,138180 ,2,828,477800 ,2,821,435585 ,1,0,328865 ,2,822,205785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,435765 ,1,0,325035 ,2,822,86205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,436025 ,1,0,198550 ,2,822,86195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,436240 ,2,822,92910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530300 ,2,827,51110 ,2,828,477810 ,2,821,437380 ,1,0,356110 ,2,822,92860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498165 ,2,827,75 ,2,828,477815 ,2,821,438105 ,1,0,306105 ,2,822,203465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477870 ,2,821,439040 ,1,0,239225 ,2,822,131230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,477875 ,2,821,440290 ,1,0,316370 ,1,1,316360 ,2,822,131110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530320 ,2,827,75 ,2,828,477880 ,2,821,443035 ,1,0,306210 ,2,822,203825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,477885 ,2,821,444000 ,1,0,316390 ,1,1,316380 ,2,822,203705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530325 ,2,827,75 ,2,828,477895 ,2,821,446760 ,1,0,316445 ,1,1,316435 ,1,2,316400 ,2,822,203590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530330 ,2,827,75 ,2,828,477900 ,2,821,449625 ,1,0,232910 ,1,1,325135 ,1,2,357770 ,1,3,325125 ,1,4,325115 ,1,5,325080 ,1,6,325070 ,2,822,124150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530335 ,2,827,24545 ,2,828,477905 ,2,821,463660 ,1,0,232745 ,1,1,331965 ,2,822,123975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,474215 ,2,821,464235 ,1,0,317245 ,1,1,317235 ,1,2,317225 ,1,3,317215 ,1,4,317190 ,1,5,317180 ,1,6,317170 ,1,7,317160 ,1,8,317125 ,1,9,317115 ,1,10,317105 ,1,11,317095 ,2,822,150085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530340 ,2,827,24545 ,2,828,477910 ,2,821,494640 ,1,0,223100 ,2,822,113030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,494840 ,2,822,206065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,477940 ,2,821,495250 ,2,822,127715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,477945 ,2,821,495585 ,2,822,127550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,477950 ,2,821,495955 ,1,0,610290 ,1,1,45 ,1,2,318150 ,2,822,132725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,456145 ,2,821,496520 ,1,0,45 ,1,1,318150 ,2,822,139950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530345 ,2,827,78000 ,2,828,477955 ,2,821,498215 ,2,822,108675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,477965 ,2,821,498685 ,2,822,108990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,477970 ,2,821,499155 ,2,822,109105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530350 ,2,827,75 ,2,828,477975 ,2,821,505330 ,1,0,218080 ,1,1,317285 ,2,822,108530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530355 ,2,827,75 ,2,828,477985 ,2,821,507320 ,2,822,136580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530380 ,2,827,138255 ,2,828,477995 ,2,821,512915 ,2,822,136570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530385 ,2,827,75 ,2,828,478000 ,2,821,515380 ,1,0,331900 ,1,1,331890 ,1,2,331875 ,1,3,331865 ,1,4,331855 ,1,5,331845 ,1,6,331810 ,1,7,331800 ,1,8,331790 ,1,9,331780 ,1,10,331770 ,1,11,331760 ,2,822,123005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530390 ,2,827,138290 ,2,828,478005 ,2,821,559005 ,1,0,232655 ,2,822,123850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530395 ,2,827,75 ,2,828,478010 ,2,821,562080 ,1,0,209980 ,1,1,340505 ,1,2,340475 ,2,822,99270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530410 ,2,827,75 ,2,828,478015 ,2,821,564530 ,1,0,332180 ,1,1,332145 ,1,2,332135 ,1,3,332125 ,1,4,332115 ,1,5,332105 ,1,6,332095 ,2,822,102275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530415 ,2,827,75 ,2,828,478020 ,2,821,597930 ,1,0,233495 ,2,822,125115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530420 ,2,827,75 ,2,828,478050 ,2,821,599760 ,1,0,325170 ,1,1,325160 ,1,2,325145 ,2,822,166555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530425 ,2,827,75 ,2,828,478055 ,2,821,608915 ,1,0,270500 ,1,1,329590 ,1,2,329580 ,2,822,166930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,478060 ,2,821,610055 ,1,0,270225 ,1,1,329570 ,2,822,166420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,474215 ,2,821,610610 ,1,0,270115 ,1,1,327725 ,2,822,166500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530445 ,2,827,75 ,2,828,478065 ,2,821,612030 ,1,0,325180 ,2,822,92530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530450 ,2,827,75 ,2,828,478070 ,2,821,613420 ,1,0,221305 ,1,1,323815 ,1,2,323805 ,1,3,323795 ,2,822,110115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530445 ,2,827,75 ,2,828,478075 ,2,821,614780 ,1,0,400430 ,1,1,199175 ,2,822,199135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,614960 ,1,0,400430 ,1,1,199220 ,2,822,199205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,615165 ,1,0,199760 ,1,1,323870 ,1,2,323845 ,1,3,323835 ,2,822,87810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530455 ,2,827,75 ,2,828,478080 ,2,821,619890 ,1,0,327850 ,1,1,327840 ,1,2,327820 ,2,822,116890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530460 ,2,827,75 ,2,828,478085 ,2,821,623815 ,1,0,332945 ,1,1,332925 ,1,2,332915 ,1,3,220470 ,1,4,11815 ,1,5,2845 ,1,6,332895 ,1,7,2210 ,1,8,542350 ,1,9,2210 ,1,10,542350 ,2,822,102355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530465 ,2,827,138300 ,2,828,478115 ,2,821,632760 ,1,0,316565 ,1,1,316555 ,1,2,316545 ,1,3,316535 ,1,4,316510 ,1,5,316500 ,1,6,316490 ,2,822,115000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530470 ,2,827,24545 ,2,828,478120 ,2,821,666930 ,1,0,313075 ,2,822,194075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530475 ,2,827,75 ,2,828,478125 ,2,821,667815 ,1,0,317395 ,2,822,113020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530480 ,2,827,138310 ,2,828,478130 ,2,821,669640 ,1,0,325225 ,1,1,325215 ,2,822,134285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530520 ,2,827,138310 ,2,828,478140 ,2,821,671730 ,1,0,323900 ,2,822,109475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530525 ,2,827,138320 ,2,828,478145 ,2,821,7550 ,1,0,325410 ,1,1,325385 ,1,2,325375 ,1,3,325365 ,1,4,325355 ,1,5,325345 ,1,6,325335 ,2,822,108030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530530 ,2,827,138320 ,2,828,478150 ,2,821,40295 ,1,0,313085 ,2,822,146440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530535 ,2,827,138310 ,2,828,478155 ,2,821,42900 ,1,0,332190 ,2,822,102805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,478180 ,2,821,44070 ,1,0,316590 ,1,1,276415 ,2,822,115110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530540 ,2,827,75 ,2,828,478185 ,2,821,46410 ,1,0,316600 ,2,822,122625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530545 ,2,827,75 ,2,828,478190 ,2,821,48605 ,1,0,316695 ,1,1,316685 ,2,822,138305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530550 ,2,827,75 ,2,828,478195 ,2,821,51265 ,1,0,316480 ,2,822,114880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,478205 ,2,821,52400 ,1,0,333010 ,2,822,96925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,52745 ,1,0,315010 ,1,1,314980 ,2,822,143120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530555 ,2,827,75 ,2,828,478210 ,2,821,55820 ,1,0,209275 ,1,1,314415 ,1,2,314405 ,2,822,98490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,478215 ,2,821,57765 ,1,0,314435 ,1,1,314425 ,2,822,98690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530570 ,2,827,75 ,2,828,478220 ,2,821,61035 ,1,0,340465 ,1,1,340455 ,2,822,104145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530575 ,2,827,138335 ,2,828,478240 ,2,821,68845 ,1,0,316675 ,1,1,316665 ,1,2,316655 ,1,3,316620 ,1,4,316610 ,2,822,122600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530580 ,2,827,75 ,2,828,478245 ,2,821,83465 ,1,0,327910 ,2,822,108270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530585 ,2,827,75 ,2,828,478250 ,2,821,92245 ,1,0,217930 ,2,822,108250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,92560 ,1,0,340740 ,1,1,5370 ,2,822,103495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530600 ,2,827,75 ,2,828,478255 ,2,821,94870 ,1,0,225985 ,1,1,315030 ,1,2,315020 ,2,822,116600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,478260 ,2,821,96800 ,1,0,200075 ,1,1,200195 ,1,2,325420 ,2,822,88170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530605 ,2,827,75 ,2,828,478265 ,2,821,100150 ,1,0,327955 ,2,822,88035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530610 ,2,827,75 ,2,828,478270 ,2,821,103820 ,1,0,329635 ,1,1,329600 ,2,822,88285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529075 ,2,827,75 ,2,828,478275 ,2,821,105470 ,1,0,211660 ,2,822,101095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,478310 ,2,821,107035 ,1,0,374790 ,1,1,292875 ,2,822,185955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530615 ,2,827,138345 ,2,828,478315 ,2,821,121775 ,2,822,158300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530640 ,2,827,75 ,2,828,478320 ,2,821,123635 ,1,0,226265 ,2,822,121635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530645 ,2,827,75 ,2,828,478325 ,2,821,125125 ,2,822,101920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530650 ,2,827,75 ,2,828,478330 ,2,821,130275 ,2,822,102295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530655 ,2,827,75 ,2,828,478335 ,2,821,142490 ,1,0,204055 ,1,1,3495 ,2,822,92740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,478340 ,2,821,144365 ,1,0,333085 ,2,822,92750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530660 ,2,827,75 ,2,828,478345 ,2,821,146515 ,1,0,340800 ,2,822,92720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529135 ,2,827,75 ,2,828,478360 ,2,821,147870 ,1,0,255255 ,1,1,340855 ,1,2,340845 ,1,3,340810 ,2,822,145105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530665 ,2,827,75 ,2,828,478365 ,2,821,158160 ,1,0,255190 ,1,1,340875 ,1,2,340865 ,2,822,144995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530670 ,2,827,75 ,2,828,478370 ,2,821,164615 ,1,0,255080 ,1,1,340895 ,1,2,340885 ,2,822,144820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530675 ,2,827,75 ,2,828,478375 ,2,821,173760 ,1,0,255150 ,1,1,340975 ,1,2,340965 ,1,3,9920 ,1,4,340955 ,1,5,340915 ,1,6,340905 ,2,822,144895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530720 ,2,827,75 ,2,828,478390 ,2,821,181830 ,1,0,254905 ,1,1,341020 ,1,2,341010 ,1,3,7530 ,1,4,341000 ,1,5,340985 ,1,6,7620 ,2,822,144655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530725 ,2,827,75 ,2,828,478395 ,2,821,185520 ,1,0,213765 ,2,822,103735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,185865 ,2,822,103670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492230 ,2,827,75 ,2,828,478400 ,2,821,186655 ,2,822,208450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,186985 ,1,0,212380 ,2,822,208460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530730 ,2,827,75 ,2,828,478405 ,2,821,191645 ,1,0,162605 ,1,1,252730 ,1,2,317755 ,1,3,317745 ,1,4,317735 ,1,5,317725 ,2,822,142685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530735 ,2,827,86475 ,2,828,478430 ,2,821,197385 ,1,0,252865 ,1,1,351710 ,1,2,351700 ,1,3,317830 ,2,822,142765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530445 ,2,827,75 ,2,828,478435 ,2,821,199665 ,1,0,298845 ,2,822,196025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530760 ,2,827,75 ,2,828,478440 ,2,821,202035 ,1,0,224015 ,2,822,113880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530765 ,2,827,75 ,2,828,478445 ,2,821,205490 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,2,822,179045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530770 ,2,827,75 ,2,828,478450 ,2,821,211105 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,2,822,178995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530775 ,2,827,75 ,2,828,478450 ,2,821,216800 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,2,822,178910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530770 ,2,827,75 ,2,828,478450 ,2,821,222425 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,2,822,178835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530800 ,2,827,75 ,2,828,478455 ,2,821,229285 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,2,822,178785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530805 ,2,827,75 ,2,828,478460 ,2,821,239815 ,1,0,12040 ,1,1,45 ,1,2,11510 ,1,3,12030 ,1,4,45 ,1,5,11510 ,1,6,12020 ,1,7,45 ,1,8,11510 ,1,9,45 ,1,10,11510 ,1,11,12010 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,11510 ,1,18,45 ,1,19,11510 ,1,20,45 ,1,21,11510 ,1,22,45 ,1,23,11510 ,2,822,178710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530810 ,2,827,75 ,2,828,478465 ,2,821,252835 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,2,822,178635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530800 ,2,827,75 ,2,828,478455 ,2,821,259610 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,2,822,178410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530815 ,2,827,75 ,2,828,478510 ,2,821,269780 ,1,0,45 ,1,1,11510 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,2,822,178355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530830 ,2,827,75 ,2,828,478515 ,2,821,279830 ,1,0,173965 ,1,1,359525 ,1,2,165445 ,2,822,106365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530190 ,2,827,75 ,2,828,478520 ,2,821,282100 ,1,0,216045 ,2,822,163440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530835 ,2,827,75 ,2,828,478525 ,2,821,283090 ,1,0,229680 ,1,1,324275 ,2,822,120100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,474215 ,2,821,284005 ,1,0,328505 ,1,1,328495 ,1,2,328485 ,1,3,328465 ,1,4,328455 ,1,5,328445 ,2,822,129980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530840 ,2,827,138465 ,2,828,478540 ,2,821,287880 ,1,0,328435 ,1,1,328405 ,1,2,328395 ,2,822,129960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530845 ,2,827,138465 ,2,828,478545 ,2,821,291485 ,1,0,330220 ,2,822,198970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530870 ,2,827,75 ,2,828,478550 ,2,821,294900 ,1,0,325645 ,1,1,325635 ,1,2,325595 ,1,3,325585 ,1,4,325575 ,1,5,325565 ,1,6,325550 ,1,7,325540 ,1,8,325530 ,1,9,325520 ,1,10,325485 ,1,11,325475 ,1,12,325465 ,1,13,325455 ,1,14,325440 ,1,15,241360 ,2,822,133240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530875 ,2,827,75 ,2,828,478555 ,2,821,321265 ,1,0,235195 ,1,1,328620 ,2,822,126830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,478575 ,2,821,323175 ,1,0,45 ,1,1,5900 ,2,822,122465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530880 ,2,827,75 ,2,828,478580 ,2,821,324680 ,2,822,159700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,478585 ,2,821,325250 ,1,0,233735 ,1,1,329700 ,1,2,329690 ,2,822,125475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529880 ,2,827,75 ,2,828,478590 ,2,821,327100 ,1,0,328060 ,1,1,328050 ,2,822,107385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530885 ,2,827,75 ,2,828,478595 ,2,821,329755 ,1,0,325895 ,2,822,126630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530895 ,2,827,75 ,2,828,478600 ,2,821,331990 ,1,0,325700 ,1,1,226545 ,1,2,325690 ,2,822,116970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530900 ,2,827,75 ,2,828,478605 ,2,821,333875 ,2,822,121315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529785 ,2,827,75 ,2,828,478630 ,2,821,336855 ,2,822,120765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530905 ,2,827,75 ,2,828,478635 ,2,821,339805 ,2,822,124595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,340330 ,1,0,231160 ,1,1,328555 ,1,2,328515 ,2,822,121965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530910 ,2,827,138475 ,2,828,478665 ,2,821,351065 ,2,822,167540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530010 ,2,827,75 ,2,828,478670 ,2,821,352780 ,2,822,122290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530070 ,2,827,75 ,2,828,478675 ,2,821,356465 ,1,0,216405 ,1,1,549520 ,1,2,267925 ,1,3,216395 ,2,822,127620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530925 ,2,827,75 ,2,828,478680 ,2,821,363355 ,1,0,328600 ,2,822,199080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,478710 ,2,821,364525 ,1,0,328585 ,2,822,199090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530930 ,2,827,75 ,2,828,478715 ,2,821,367685 ,2,822,199250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,368020 ,1,0,325905 ,2,822,188085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,478720 ,2,821,369115 ,2,822,144465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,478725 ,2,821,369940 ,2,822,202505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,370980 ,2,822,202570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530935 ,2,827,24980 ,2,828,478740 ,2,821,378700 ,1,0,332210 ,2,822,189365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,478745 ,2,821,379330 ,1,0,318180 ,2,822,179925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505200 ,2,827,75 ,2,828,478750 ,2,821,379975 ,1,0,45 ,1,1,5900 ,2,822,121410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530940 ,2,827,75 ,2,828,478755 ,2,821,381515 ,2,822,121200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530950 ,2,827,75 ,2,828,478770 ,2,821,382365 ,2,822,174060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529690 ,2,827,75 ,2,828,478780 ,2,821,383345 ,2,822,169315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530955 ,2,827,75 ,2,828,478785 ,2,821,384370 ,2,822,169190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530960 ,2,827,24980 ,2,828,478790 ,2,821,389365 ,1,0,220615 ,1,1,220605 ,2,822,208470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530965 ,2,827,75 ,2,828,478795 ,2,821,393495 ,2,822,47925 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,393610 ,1,0,220975 ,2,822,208480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531095 ,2,827,138860 ,2,828,478945 ,2,821,395660 ,2,822,47945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,395745 ,1,0,339055 ,1,1,165260 ,2,822,208520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,478800 ,2,821,396220 ,1,0,339045 ,1,1,339035 ,1,2,339025 ,1,3,338990 ,2,822,208530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531005 ,2,827,75 ,2,828,478805 ,2,821,397790 ,1,0,339070 ,2,822,208540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,478830 ,2,821,398215 ,1,0,338980 ,2,822,208550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,478835 ,2,821,398680 ,1,0,333320 ,2,822,208560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,478840 ,2,821,399125 ,1,0,220680 ,1,1,220635 ,1,2,191935 ,1,3,2210 ,1,4,542350 ,2,822,208640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531010 ,2,827,138675 ,2,828,478845 ,2,821,419580 ,1,0,170040 ,1,1,339940 ,1,2,221225 ,1,3,169960 ,1,4,339930 ,2,822,208665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531015 ,2,827,75 ,2,828,478855 ,2,821,424100 ,1,0,554025 ,1,1,264685 ,1,2,339995 ,1,3,264665 ,1,4,339985 ,1,5,264655 ,1,6,339975 ,2,822,208675 ,2,823,541135 ,2,824,418485 ,2,825,352670 ,2,826,531075 ,2,827,138740 ,2,828,478925 ,2,821,433625 ,1,0,221195 ,1,1,166870 ,1,2,221185 ,2,822,208780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531020 ,2,827,138695 ,2,828,478860 ,2,821,436805 ,1,0,556660 ,1,1,221125 ,1,2,221085 ,2,822,208860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531025 ,2,827,138705 ,2,828,478865 ,2,821,443720 ,1,0,221075 ,1,1,221065 ,2,822,208790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531030 ,2,827,138695 ,2,828,478870 ,2,821,446255 ,1,0,221045 ,1,1,221035 ,2,822,208820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531035 ,2,827,138695 ,2,828,478915 ,2,821,448510 ,1,0,220995 ,1,1,220985 ,2,822,208830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531040 ,2,827,138695 ,2,828,478920 ,2,821,450880 ,1,0,221235 ,1,1,340005 ,2,822,208685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531085 ,2,827,75 ,2,828,478935 ,2,821,453000 ,2,822,47965 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,453100 ,2,822,208740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531080 ,2,827,75 ,2,828,478930 ,2,821,454190 ,1,0,310980 ,2,822,208760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531090 ,2,827,75 ,2,828,478940 ,2,821,455800 ,2,822,590440 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,456185 ,1,0,333300 ,2,822,208135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530885 ,2,827,75 ,2,828,478950 ,2,821,457800 ,2,822,208710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515190 ,2,827,75 ,2,828,478970 ,2,821,458465 ,1,0,612470 ,1,1,220710 ,1,2,171640 ,1,3,220700 ,2,822,208630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531100 ,2,827,75 ,2,828,478975 ,2,821,462730 ,1,0,340425 ,1,1,340415 ,1,2,340405 ,1,3,340375 ,2,822,95190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531105 ,2,827,75 ,2,828,478980 ,2,821,466650 ,2,822,94660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531110 ,2,827,75 ,2,828,478985 ,2,821,471100 ,2,822,94965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531135 ,2,827,75 ,2,828,478995 ,2,821,476980 ,2,822,208880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,477145 ,1,0,45 ,1,1,5900 ,2,822,61420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531140 ,2,827,75 ,2,828,479000 ,2,821,478025 ,2,822,208890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,479005 ,2,821,478380 ,2,822,208930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,478730 ,1,0,264730 ,1,1,2135 ,1,2,45 ,1,3,13320 ,1,4,2135 ,1,5,334175 ,2,822,208975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531145 ,2,827,138880 ,2,828,479035 ,2,821,486680 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,208940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,479010 ,2,821,487820 ,2,822,208960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505150 ,2,827,75 ,2,828,479040 ,2,821,488055 ,1,0,165125 ,1,1,165115 ,2,822,209035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531165 ,2,827,138900 ,2,828,479075 ,2,821,501215 ,2,822,208985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531150 ,2,827,75 ,2,828,479045 ,2,821,506300 ,2,822,209005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531160 ,2,827,138890 ,2,828,479070 ,2,821,520995 ,2,822,208995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531155 ,2,827,75 ,2,828,479050 ,2,821,526140 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,479080 ,2,821,527240 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,209045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,479085 ,2,821,528415 ,2,822,120435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,528500 ,1,0,201390 ,1,1,543135 ,1,2,595890 ,1,3,543135 ,2,822,91480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531170 ,2,827,75 ,2,828,479115 ,2,821,530740 ,2,822,89115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,479120 ,2,821,531045 ,2,822,187595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,479125 ,2,821,531640 ,1,0,45 ,1,1,171855 ,2,822,187395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531195 ,2,827,75 ,2,828,479130 ,2,821,538715 ,1,0,45 ,1,1,265665 ,2,822,187615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531200 ,2,827,75 ,2,828,479135 ,2,821,547090 ,1,0,45 ,1,1,171855 ,2,822,187545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531205 ,2,827,75 ,2,828,479140 ,2,821,552560 ,1,0,45 ,1,1,195155 ,2,822,89065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531210 ,2,827,138935 ,2,828,479145 ,2,821,554700 ,1,0,45 ,1,1,171195 ,2,822,187525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531225 ,2,827,75 ,2,828,479150 ,2,821,562670 ,1,0,542640 ,1,1,594200 ,1,2,542640 ,1,3,542635 ,1,4,581465 ,1,5,542635 ,1,6,542630 ,1,7,587755 ,1,8,542630 ,1,9,542625 ,1,10,594195 ,1,11,542625 ,2,822,187505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531230 ,2,827,75 ,2,828,479190 ,2,821,571475 ,2,822,179205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571640 ,2,822,179125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571810 ,2,822,179065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,572075 ,2,822,178525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,479195 ,2,821,572585 ,2,822,178130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,572865 ,2,822,177975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,573345 ,2,822,177575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,573595 ,2,822,177510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,573865 ,1,0,551660 ,2,822,180235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497810 ,2,827,75 ,2,828,479200 ,2,821,574560 ,2,822,97175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522050 ,2,827,75 ,2,828,479205 ,2,821,575295 ,2,822,98295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531235 ,2,827,75 ,2,828,479215 ,2,821,576130 ,2,822,97125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,525475 ,2,827,75 ,2,828,479220 ,2,821,576805 ,2,822,98865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531240 ,2,827,75 ,2,828,479225 ,2,821,577890 ,2,822,97365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531260 ,2,827,75 ,2,828,479230 ,2,821,579035 ,2,822,90825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,479265 ,2,821,579345 ,1,0,45 ,1,1,11510 ,1,2,201375 ,2,822,90740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531265 ,2,827,138945 ,2,828,479270 ,2,821,582740 ,1,0,608880 ,1,1,45 ,1,2,195155 ,2,822,89685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531270 ,2,827,75 ,2,828,479275 ,2,821,584300 ,1,0,608850 ,1,1,45 ,1,2,195155 ,2,822,89300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531275 ,2,827,75 ,2,828,479280 ,2,821,586590 ,2,822,65510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524500 ,2,827,75 ,2,828,469295 ,2,821,587180 ,2,822,119710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491640 ,2,827,75 ,2,828,479295 ,2,821,587910 ,2,822,60520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531285 ,2,827,75 ,2,828,479300 ,2,821,589420 ,2,822,65500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,590270 ,1,0,184205 ,2,822,189010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531290 ,2,827,24980 ,2,828,479305 ,2,821,593060 ,2,822,188275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,593245 ,2,822,188670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,479310 ,2,821,593630 ,1,0,332965 ,1,1,332955 ,2,822,209055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531295 ,2,827,75 ,2,828,479330 ,2,821,597595 ,2,822,209065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531300 ,2,827,75 ,2,828,479335 ,2,821,601070 ,2,822,80300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531325 ,2,827,75 ,2,828,479340 ,2,821,601705 ,2,822,201600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,420660 ,2,821,602185 ,2,822,90615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,602915 ,1,0,201400 ,2,822,91535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531330 ,2,827,75 ,2,828,479345 ,2,821,605145 ,2,822,89225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531335 ,2,827,30445 ,2,828,479350 ,2,821,608830 ,1,0,596530 ,1,1,45 ,1,2,11510 ,1,3,608215 ,1,4,45 ,1,5,5900 ,1,6,543240 ,1,7,596525 ,1,8,543240 ,2,822,70815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531340 ,2,827,75 ,2,828,479355 ,2,821,613200 ,1,0,341210 ,1,1,165535 ,1,2,221720 ,2,822,91470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531345 ,2,827,75 ,2,828,479360 ,2,821,615535 ,1,0,565330 ,1,1,45 ,1,2,8855 ,2,822,90545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531350 ,2,827,75 ,2,828,479365 ,2,821,618450 ,1,0,596480 ,1,1,45 ,1,2,11510 ,1,3,344015 ,2,822,78380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531355 ,2,827,75 ,2,828,479395 ,2,821,620280 ,1,0,596060 ,1,1,45 ,1,2,11510 ,2,822,70745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531355 ,2,827,75 ,2,828,479400 ,2,821,622075 ,2,822,90220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,479405 ,2,821,622730 ,1,0,328575 ,2,822,90575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,479410 ,2,821,622975 ,2,822,47985 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,623080 ,2,822,121930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531360 ,2,827,75 ,2,828,479425 ,2,821,626275 ,2,822,91220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531385 ,2,827,75 ,2,828,479430 ,2,821,627065 ,2,822,90970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531390 ,2,827,138975 ,2,828,479455 ,2,821,630530 ,2,822,119960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513990 ,2,827,75 ,2,828,479460 ,2,821,631115 ,1,0,359205 ,1,1,359195 ,1,2,2210 ,1,3,542350 ,2,822,118045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531395 ,2,827,75 ,2,828,479465 ,2,821,632560 ,2,822,151050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531400 ,2,827,75 ,2,828,479470 ,2,821,633365 ,1,0,327425 ,1,1,2210 ,1,2,542350 ,2,822,119370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531405 ,2,827,75 ,2,828,479480 ,2,821,634925 ,1,0,565555 ,1,1,45 ,1,2,167555 ,2,822,91160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531415 ,2,827,139005 ,2,828,479490 ,2,821,640020 ,2,822,209110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531410 ,2,827,75 ,2,828,479485 ,2,821,641270 ,2,822,47995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,641365 ,2,822,120315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,479495 ,2,821,641805 ,1,0,2210 ,1,1,542350 ,2,822,204735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531420 ,2,827,30175 ,2,828,479525 ,2,821,643770 ,2,822,205005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,479530 ,2,821,644230 ,1,0,337330 ,2,822,90845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531445 ,2,827,139050 ,2,828,479535 ,2,821,646170 ,1,0,45 ,1,1,325970 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,193960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531450 ,2,827,120735 ,2,828,479540 ,2,821,649135 ,1,0,593945 ,1,1,45 ,1,2,325970 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,217810 ,2,822,106055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526865 ,2,827,135350 ,2,828,479550 ,2,821,652750 ,1,0,45 ,1,1,325970 ,1,2,572210 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,2,822,139195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526895 ,2,827,135360 ,2,828,479555 ,2,821,654710 ,2,822,205220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,655250 ,1,0,339705 ,1,1,339690 ,1,2,339680 ,1,3,339670 ,2,822,79785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531455 ,2,827,40765 ,2,828,479560 ,2,821,660195 ,2,822,80240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531460 ,2,827,139060 ,2,828,479565 ,2,821,665990 ,1,0,228455 ,2,822,166405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531470 ,2,827,75 ,2,828,479580 ,2,821,667000 ,1,0,400430 ,1,1,89075 ,2,822,89195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,667190 ,2,822,97535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531475 ,2,827,139070 ,2,828,479585 ,2,821,673995 ,1,0,544995 ,2,822,65405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531480 ,2,827,75 ,2,828,479590 ,2,821,85 ,2,822,60385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531485 ,2,827,26290 ,2,828,479595 ,2,821,7010 ,2,822,59015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531500 ,2,827,75 ,2,828,479600 ,2,821,16855 ,1,0,556580 ,2,822,67260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497810 ,2,827,75 ,2,828,479605 ,2,821,17910 ,1,0,341075 ,2,822,79280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531505 ,2,827,75 ,2,828,479610 ,2,821,22485 ,1,0,585485 ,1,1,45 ,1,2,326985 ,1,3,45 ,1,4,326975 ,2,822,187405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531510 ,2,827,75 ,2,828,479640 ,2,821,30075 ,1,0,585600 ,1,1,45 ,1,2,326965 ,1,3,45 ,1,4,326955 ,1,5,2210 ,1,6,542350 ,2,822,187625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531515 ,2,827,75 ,2,828,479645 ,2,821,40425 ,1,0,611295 ,1,1,45 ,1,2,326985 ,1,3,45 ,1,4,326975 ,1,5,2135 ,1,6,555270 ,1,7,187485 ,1,8,187445 ,1,9,187425 ,1,10,163615 ,2,822,187555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531540 ,2,827,139080 ,2,828,479650 ,2,821,60450 ,1,0,400430 ,1,1,90755 ,2,822,90855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,60785 ,1,0,585520 ,1,1,45 ,1,2,326940 ,1,3,45 ,1,4,326930 ,1,5,555275 ,1,6,2210 ,1,7,542350 ,2,822,187535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531545 ,2,827,75 ,2,828,479655 ,2,821,81820 ,1,0,542730 ,1,1,594200 ,1,2,542730 ,1,3,542710 ,1,4,594200 ,1,5,542710 ,1,6,555280 ,1,7,542705 ,1,8,581465 ,1,9,542705 ,1,10,542700 ,1,11,581465 ,1,12,542700 ,1,13,542695 ,1,14,587755 ,1,15,542695 ,1,16,542685 ,1,17,587755 ,1,18,542685 ,1,19,542680 ,1,20,594195 ,1,21,542680 ,1,22,542675 ,1,23,594195 ,1,24,542675 ,1,25,370505 ,2,822,187515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531550 ,2,827,75 ,2,828,479665 ,2,821,109205 ,1,0,400430 ,1,1,89695 ,2,822,89810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,109530 ,1,0,400430 ,1,1,89310 ,2,822,89370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,109855 ,1,0,400430 ,1,1,90515 ,2,822,90535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,110210 ,2,822,126775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531555 ,2,827,75 ,2,828,479670 ,2,821,112505 ,1,0,554685 ,2,822,139095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497810 ,2,827,75 ,2,828,479675 ,2,821,113615 ,1,0,218905 ,2,822,129615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531600 ,2,827,73715 ,2,828,479680 ,2,821,116215 ,1,0,542620 ,1,1,595515 ,1,2,542620 ,1,3,542615 ,1,4,595510 ,1,5,542615 ,2,822,206285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531605 ,2,827,75 ,2,828,479705 ,2,821,125730 ,1,0,45 ,1,1,343730 ,2,822,125015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531610 ,2,827,139090 ,2,828,479710 ,2,821,131250 ,2,822,146165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494495 ,2,827,75 ,2,828,479715 ,2,821,132225 ,2,822,125700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531615 ,2,827,75 ,2,828,479720 ,2,821,136515 ,1,0,374975 ,1,1,366125 ,1,2,361560 ,1,3,366585 ,1,4,361015 ,1,5,366440 ,1,6,360500 ,1,7,366705 ,1,8,361045 ,2,822,145175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531620 ,2,827,75 ,2,828,479725 ,2,821,143740 ,1,0,374680 ,2,822,145065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531625 ,2,827,75 ,2,828,479730 ,2,821,145195 ,1,0,374815 ,2,822,144875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531630 ,2,827,75 ,2,828,479735 ,2,821,146700 ,2,822,144985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531630 ,2,827,75 ,2,828,479740 ,2,821,148150 ,1,0,374965 ,2,822,144720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,479770 ,2,821,149175 ,1,0,374600 ,1,1,361410 ,2,822,144630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,479775 ,2,821,150225 ,2,822,89085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,517790 ,2,827,75 ,2,828,479780 ,2,821,151690 ,2,822,68715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531635 ,2,827,139120 ,2,828,479785 ,2,821,154680 ,2,822,48025 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,154865 ,2,822,67990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531675 ,2,827,32185 ,2,828,479790 ,2,821,157560 ,2,822,79850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531680 ,2,827,139150 ,2,828,479795 ,2,821,186660 ,1,0,339455 ,2,822,80800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531685 ,2,827,75 ,2,828,479800 ,2,821,194085 ,2,822,80310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531690 ,2,827,75 ,2,828,479805 ,2,821,195655 ,2,822,80850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531710 ,2,827,40290 ,2,828,479830 ,2,821,198775 ,2,822,209190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531705 ,2,827,139190 ,2,828,479825 ,2,821,207265 ,1,0,337570 ,1,1,337560 ,2,822,209180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531700 ,2,827,139180 ,2,828,479820 ,2,821,244665 ,2,822,209150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531695 ,2,827,75 ,2,828,479815 ,2,821,264500 ,2,822,48035 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,264650 ,2,822,209200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531730 ,2,827,75 ,2,828,479845 ,2,821,269255 ,2,822,57120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,479925 ,2,821,269930 ,2,822,209425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531795 ,2,827,75 ,2,828,479920 ,2,821,271220 ,1,0,613075 ,2,822,209415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531770 ,2,827,139375 ,2,828,479915 ,2,821,273030 ,2,822,209395 ,2,823,541150 ,2,824,418490 ,2,825,352680 ,2,826,531765 ,2,827,139330 ,2,828,479910 ,2,821,279320 ,2,822,209210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,479850 ,2,821,279940 ,2,822,209290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531740 ,2,827,139285 ,2,828,479890 ,2,821,327925 ,2,822,209300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531735 ,2,827,75 ,2,828,479855 ,2,821,329605 ,2,822,209310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,479860 ,2,821,330315 ,2,822,209375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531745 ,2,827,75 ,2,828,479895 ,2,821,331815 ,1,0,2135 ,2,822,209280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531755 ,2,827,24545 ,2,828,479900 ,2,821,339165 ,1,0,9890 ,1,1,543335 ,1,2,584615 ,1,3,543335 ,1,4,543315 ,1,5,563670 ,1,6,543315 ,2,822,209260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531760 ,2,827,139320 ,2,828,479905 ,2,821,355440 ,2,822,48055 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,355600 ,2,822,209435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491820 ,2,827,75 ,2,828,479970 ,2,821,356240 ,2,822,66795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531820 ,2,827,139480 ,2,828,479995 ,2,821,365270 ,2,822,209515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531805 ,2,827,139425 ,2,828,479975 ,2,821,370055 ,2,822,209480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531800 ,2,827,139425 ,2,828,479980 ,2,821,379980 ,2,822,209470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531810 ,2,827,139425 ,2,828,479985 ,2,821,401715 ,2,822,48090 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,401805 ,1,0,45 ,1,1,176030 ,2,822,209655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531870 ,2,827,75 ,2,828,480050 ,2,821,403710 ,1,0,5060 ,1,1,346660 ,1,2,346650 ,1,3,346635 ,1,4,346625 ,1,5,346615 ,1,6,346605 ,1,7,346585 ,1,8,346575 ,2,822,209645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531865 ,2,827,139530 ,2,828,480045 ,2,821,419200 ,1,0,346565 ,1,1,12785 ,1,2,346555 ,1,3,6800 ,1,4,166680 ,1,5,2210 ,1,6,542350 ,1,7,2210 ,1,8,542350 ,2,822,209635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531825 ,2,827,139490 ,2,828,480000 ,2,821,447135 ,2,822,209575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531830 ,2,827,139520 ,2,828,480005 ,2,821,468120 ,2,822,209585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531835 ,2,827,75 ,2,828,480010 ,2,821,481960 ,1,0,2210 ,1,1,542345 ,2,822,209535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531860 ,2,827,75 ,2,828,480040 ,2,821,486785 ,2,822,48100 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,486890 ,2,822,115685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,480055 ,2,821,487590 ,2,822,200565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,480060 ,2,821,488080 ,1,0,400430 ,1,1,91020 ,2,822,91065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,488280 ,1,0,400430 ,1,1,89615 ,2,822,89655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,488475 ,1,0,400430 ,1,1,90005 ,2,822,90035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,488675 ,1,0,400430 ,1,1,89105 ,2,822,90645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,488855 ,1,0,221730 ,2,822,158280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508820 ,2,827,75 ,2,828,480075 ,2,821,491775 ,1,0,45 ,1,1,13320 ,2,822,90775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531875 ,2,827,75 ,2,828,480105 ,2,821,494085 ,2,822,89320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531880 ,2,827,75 ,2,828,480110 ,2,821,495725 ,2,822,201030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,495915 ,2,822,65560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,480115 ,2,821,496275 ,1,0,216990 ,2,822,118300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531885 ,2,827,75 ,2,828,480120 ,2,821,499900 ,2,822,119315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,500710 ,2,822,58775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508910 ,2,827,75 ,2,828,480125 ,2,821,500995 ,1,0,400430 ,1,1,90785 ,2,822,91250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,501175 ,1,0,400430 ,1,1,89330 ,2,822,90260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,501400 ,1,0,218285 ,2,822,90480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531890 ,2,827,139625 ,2,828,480130 ,2,821,503915 ,1,0,556995 ,1,1,45 ,1,2,11510 ,1,3,596160 ,1,4,45 ,1,5,13320 ,2,822,115695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531895 ,2,827,139635 ,2,828,480135 ,2,821,513690 ,2,822,103925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531920 ,2,827,75 ,2,828,480140 ,2,821,515810 ,2,822,200525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531925 ,2,827,75 ,2,828,480160 ,2,821,518045 ,2,822,201775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531930 ,2,827,75 ,2,828,480165 ,2,821,520095 ,2,822,201795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531935 ,2,827,75 ,2,828,480170 ,2,821,522650 ,1,0,400430 ,1,1,113830 ,2,822,113820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,522860 ,2,822,140665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531940 ,2,827,75 ,2,828,480175 ,2,821,524760 ,1,0,400430 ,1,1,196265 ,2,822,196255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,524965 ,1,0,400430 ,1,1,113935 ,2,822,113925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,525185 ,2,822,180225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531945 ,2,827,75 ,2,828,480190 ,2,821,528280 ,1,0,201705 ,2,822,90980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531950 ,2,827,139645 ,2,828,480195 ,2,821,531245 ,2,822,58290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,420660 ,2,821,531715 ,2,822,89605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531955 ,2,827,75 ,2,828,480200 ,2,821,532690 ,2,822,89995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531975 ,2,827,75 ,2,828,480245 ,2,821,534440 ,1,0,612065 ,1,1,45 ,1,2,13320 ,2,822,201045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531980 ,2,827,132870 ,2,828,480250 ,2,821,537835 ,1,0,612000 ,1,1,45 ,1,2,13320 ,2,822,201105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531985 ,2,827,132870 ,2,828,480255 ,2,821,541245 ,2,822,116770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502565 ,2,827,75 ,2,828,480260 ,2,821,542105 ,2,822,116980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531990 ,2,827,75 ,2,828,480265 ,2,821,543785 ,1,0,2210 ,1,1,542350 ,2,822,58765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531995 ,2,827,139655 ,2,828,480270 ,2,821,554200 ,2,822,90250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532000 ,2,827,75 ,2,828,480275 ,2,821,558100 ,2,822,205025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,480280 ,2,821,558565 ,2,822,205145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,559475 ,1,0,217195 ,2,822,106240 ,2,823,541155 ,2,824,418500 ,2,825,352695 ,2,826,532005 ,2,827,75 ,2,828,480295 ,2,821,561345 ,2,822,163030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,480300 ,2,821,561725 ,1,0,89390 ,1,1,89515 ,1,2,89495 ,1,3,90365 ,2,822,89340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532010 ,2,827,139715 ,2,828,480305 ,2,821,567275 ,2,822,205015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,480310 ,2,821,567690 ,1,0,337320 ,2,822,209690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,480320 ,2,821,567960 ,2,822,205135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532025 ,2,827,75 ,2,828,480325 ,2,821,569400 ,2,822,201525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532030 ,2,827,75 ,2,828,480330 ,2,821,573465 ,2,822,87830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,573970 ,2,822,204285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532035 ,2,827,75 ,2,828,480335 ,2,821,577755 ,2,822,87640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532040 ,2,827,75 ,2,828,480370 ,2,821,579700 ,2,822,204190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532045 ,2,827,75 ,2,828,480375 ,2,821,580660 ,2,822,204350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496590 ,2,827,75 ,2,828,480380 ,2,821,581275 ,2,822,141740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532050 ,2,827,75 ,2,828,480385 ,2,821,581720 ,2,822,154065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500515 ,2,827,75 ,2,828,480395 ,2,821,582225 ,1,0,45 ,1,1,11510 ,2,822,67125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,480400 ,2,821,583065 ,2,822,58280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532055 ,2,827,75 ,2,828,480405 ,2,821,589310 ,1,0,45 ,1,1,11510 ,2,822,97640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,480400 ,2,821,590175 ,1,0,221905 ,1,1,257715 ,2,822,90315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532060 ,2,827,132785 ,2,828,480410 ,2,821,592535 ,2,822,201145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,480425 ,2,821,592840 ,2,822,201265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,480430 ,2,821,593160 ,2,822,198455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493565 ,2,827,136110 ,2,828,480435 ,2,821,593825 ,2,822,205125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532075 ,2,827,75 ,2,828,480440 ,2,821,595390 ,2,822,80790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,595605 ,2,822,197295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,480455 ,2,821,596215 ,2,822,66785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,596365 ,1,0,374185 ,2,822,80870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,596570 ,2,822,57065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,596740 ,2,822,197685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,480460 ,2,821,597360 ,1,0,591490 ,1,1,45 ,1,2,324000 ,2,822,206055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,598065 ,1,0,591540 ,1,1,45 ,1,2,324000 ,2,822,127705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,598680 ,1,0,591680 ,1,1,45 ,1,2,324000 ,2,822,127540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,599325 ,2,822,84895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,480465 ,2,821,599795 ,2,822,85325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497975 ,2,827,75 ,2,828,480470 ,2,821,600400 ,2,822,85775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,480490 ,2,821,601000 ,2,822,87090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532080 ,2,827,75 ,2,828,480470 ,2,821,601620 ,2,822,201575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,601835 ,2,822,87210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,480490 ,2,821,602460 ,1,0,611765 ,1,1,45 ,1,2,5900 ,2,822,201620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500255 ,2,827,75 ,2,828,480495 ,2,821,603285 ,1,0,554290 ,1,1,211970 ,2,822,125085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532085 ,2,827,75 ,2,828,480500 ,2,821,605170 ,1,0,197700 ,2,822,85135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532090 ,2,827,139725 ,2,828,480505 ,2,821,607095 ,2,822,86780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532100 ,2,827,139735 ,2,828,480520 ,2,821,610330 ,2,822,89215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532105 ,2,827,139745 ,2,828,480525 ,2,821,612905 ,2,822,201370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,613090 ,2,822,89840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,480530 ,2,821,613650 ,2,822,89860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532110 ,2,827,75 ,2,828,480580 ,2,821,614280 ,1,0,400430 ,1,1,90410 ,2,822,90375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,614460 ,1,0,400430 ,1,1,89850 ,2,822,90335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,614655 ,1,0,400430 ,1,1,89800 ,2,822,89790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,614830 ,1,0,400430 ,1,1,89415 ,2,822,89400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,615020 ,2,822,201415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,615820 ,1,0,45 ,1,1,13320 ,2,822,167845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532115 ,2,827,132260 ,2,828,480585 ,2,821,616570 ,2,822,82675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532140 ,2,827,75 ,2,828,480590 ,2,821,619580 ,2,822,89585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532145 ,2,827,75 ,2,828,480595 ,2,821,622260 ,1,0,555120 ,1,1,163320 ,2,822,82650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532150 ,2,827,75 ,2,828,480605 ,2,821,625895 ,1,0,194945 ,1,1,194960 ,1,2,165585 ,2,822,181820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532155 ,2,827,75 ,2,828,480610 ,2,821,628930 ,2,822,65285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521295 ,2,827,75 ,2,828,480615 ,2,821,629635 ,2,822,201135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532170 ,2,827,75 ,2,828,480620 ,2,821,633750 ,1,0,45 ,1,1,206020 ,1,2,594485 ,1,3,45 ,1,4,5900 ,2,822,89205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532175 ,2,827,75 ,2,828,480640 ,2,821,636275 ,2,822,200825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532180 ,2,827,75 ,2,828,480645 ,2,821,640215 ,1,0,45 ,1,1,337360 ,2,822,90565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,480400 ,2,821,640715 ,1,0,45 ,1,1,13320 ,1,2,332310 ,1,3,220315 ,2,822,90910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532185 ,2,827,139755 ,2,828,480650 ,2,821,645795 ,1,0,45 ,1,1,5900 ,1,2,2210 ,1,3,542345 ,1,4,2210 ,1,5,542350 ,2,822,67430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532205 ,2,827,75 ,2,828,480655 ,2,821,651240 ,1,0,2135 ,2,822,67480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532210 ,2,827,75 ,2,828,480660 ,2,821,654070 ,2,822,67270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532215 ,2,827,75 ,2,828,480665 ,2,821,657335 ,1,0,611770 ,1,1,45 ,1,2,5900 ,2,822,201630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532220 ,2,827,75 ,2,828,480675 ,2,821,658380 ,2,822,209710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532230 ,2,827,75 ,2,828,480700 ,2,821,658645 ,1,0,45 ,1,1,5900 ,2,822,106540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532235 ,2,827,75 ,2,828,480705 ,2,821,659380 ,1,0,565340 ,1,1,45 ,1,2,337360 ,2,822,89015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,480400 ,2,821,659825 ,2,822,90665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532240 ,2,827,75 ,2,828,480710 ,2,821,661000 ,2,822,201585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532245 ,2,827,75 ,2,828,480715 ,2,821,665375 ,2,822,201610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532265 ,2,827,139820 ,2,828,480725 ,2,821,667675 ,1,0,565560 ,1,1,45 ,1,2,337360 ,1,3,45 ,1,4,13320 ,1,5,10825 ,1,6,542930 ,1,7,565620 ,1,8,542930 ,1,9,209730 ,2,822,90875 ,2,823,541160 ,2,824,418505 ,2,825,352705 ,2,826,532275 ,2,827,139830 ,2,828,480730 ,2,821,1495 ,2,822,209730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532270 ,2,827,75 ,2,828,480735 ,2,821,3585 ,1,0,45 ,1,1,13320 ,2,822,139105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532280 ,2,827,75 ,2,828,480780 ,2,821,6565 ,2,822,84910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,480785 ,2,821,7330 ,1,0,45 ,1,1,337360 ,1,2,45 ,1,3,13320 ,1,4,195515 ,2,822,91050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532290 ,2,827,49210 ,2,828,480790 ,2,821,10885 ,2,822,85335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532295 ,2,827,75 ,2,828,480795 ,2,821,11860 ,2,822,201360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532300 ,2,827,75 ,2,828,480815 ,2,821,16040 ,2,822,85805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,480820 ,2,821,17000 ,2,822,87100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501705 ,2,827,75 ,2,828,480795 ,2,821,17955 ,1,0,45 ,1,1,11510 ,2,822,201395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532305 ,2,827,139865 ,2,828,480825 ,2,821,28380 ,2,822,87255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,480830 ,2,821,29290 ,1,0,45 ,1,1,337360 ,1,2,45 ,1,3,13320 ,1,4,201560 ,2,822,90710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532330 ,2,827,49210 ,2,828,480850 ,2,821,32880 ,1,0,590760 ,1,1,45 ,1,2,323635 ,2,822,194090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532335 ,2,827,75 ,2,828,480855 ,2,821,34665 ,1,0,590730 ,1,1,45 ,1,2,323635 ,2,822,150025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532340 ,2,827,75 ,2,828,480860 ,2,821,37900 ,1,0,591160 ,1,1,45 ,1,2,325430 ,2,822,131780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532335 ,2,827,75 ,2,828,480865 ,2,821,39745 ,1,0,593580 ,1,1,45 ,1,2,323635 ,2,822,188015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532345 ,2,827,75 ,2,828,480875 ,2,821,45090 ,1,0,590820 ,1,1,45 ,1,2,323635 ,2,822,152615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532355 ,2,827,75 ,2,828,480880 ,2,821,46760 ,1,0,590890 ,1,1,45 ,1,2,325430 ,2,822,196460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,48500 ,2,822,91265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532360 ,2,827,75 ,2,828,480885 ,2,821,49990 ,2,822,90950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532365 ,2,827,75 ,2,828,480890 ,2,821,51125 ,1,0,220860 ,2,822,90015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532370 ,2,827,132785 ,2,828,480910 ,2,821,57880 ,1,0,212070 ,1,1,212055 ,1,2,212045 ,1,3,212035 ,2,822,193635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532410 ,2,827,75 ,2,828,480915 ,2,821,78680 ,1,0,212195 ,1,1,212180 ,1,2,212170 ,1,3,212160 ,2,822,152470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532415 ,2,827,75 ,2,828,480920 ,2,821,98965 ,2,822,89485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,480925 ,2,821,99930 ,2,822,89505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509780 ,2,827,75 ,2,828,480935 ,2,821,100960 ,2,822,201670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,480940 ,2,821,101815 ,1,0,2210 ,1,1,542350 ,2,822,79335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532420 ,2,827,75 ,2,828,480945 ,2,821,107480 ,2,822,201720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532425 ,2,827,75 ,2,828,480950 ,2,821,114605 ,1,0,542870 ,1,1,609530 ,1,2,542870 ,1,3,2210 ,1,4,542350 ,2,822,106505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532430 ,2,827,40735 ,2,828,480985 ,2,821,124295 ,2,822,171325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502360 ,2,827,75 ,2,828,480995 ,2,821,126490 ,2,822,119885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,126640 ,2,822,203420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532435 ,2,827,75 ,2,828,481000 ,2,821,130000 ,2,822,79145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532440 ,2,827,75 ,2,828,481005 ,2,821,132605 ,2,822,120050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,132755 ,1,0,246550 ,1,1,369670 ,2,822,193595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532445 ,2,827,139875 ,2,828,481010 ,2,821,148270 ,1,0,313605 ,2,822,152450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532455 ,2,827,75 ,2,828,481015 ,2,821,156415 ,1,0,2210 ,1,1,542350 ,2,822,128235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532460 ,2,827,75 ,2,828,481020 ,2,821,159195 ,2,822,67775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,160825 ,1,0,85240 ,1,1,85210 ,1,2,197710 ,2,822,85145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532090 ,2,827,139725 ,2,828,481050 ,2,821,164020 ,1,0,86105 ,1,1,86715 ,2,822,86820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532465 ,2,827,139735 ,2,828,481055 ,2,821,169325 ,2,822,80045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532470 ,2,827,75 ,2,828,481060 ,2,821,184920 ,2,822,80505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532480 ,2,827,75 ,2,828,481065 ,2,821,188745 ,2,822,197145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,191305 ,2,822,90675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532485 ,2,827,75 ,2,828,481070 ,2,821,193300 ,2,822,91275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532490 ,2,827,75 ,2,828,481075 ,2,821,194845 ,2,822,90960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532495 ,2,827,75 ,2,828,481080 ,2,821,195940 ,1,0,45 ,1,1,195155 ,2,822,89280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532510 ,2,827,75 ,2,828,481085 ,2,821,200290 ,2,822,170975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,201425 ,2,822,123340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532515 ,2,827,75 ,2,828,481095 ,2,821,202960 ,2,822,197170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504880 ,2,827,75 ,2,828,481100 ,2,821,204065 ,1,0,337430 ,2,822,82685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532520 ,2,827,75 ,2,828,481105 ,2,821,206660 ,2,822,89560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532525 ,2,827,75 ,2,828,481110 ,2,821,207840 ,1,0,595245 ,1,1,45 ,1,2,224025 ,2,822,181855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498165 ,2,827,75 ,2,828,481115 ,2,821,209130 ,1,0,45 ,1,1,224025 ,2,822,209100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532550 ,2,827,75 ,2,828,481120 ,2,821,210945 ,1,0,595250 ,1,1,45 ,1,2,224025 ,2,822,209700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531140 ,2,827,75 ,2,828,481125 ,2,821,212560 ,2,822,78370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,481130 ,2,821,213450 ,2,822,70735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,481175 ,2,821,214340 ,2,822,69755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532555 ,2,827,75 ,2,828,481180 ,2,821,215705 ,2,822,170650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532560 ,2,827,75 ,2,828,481185 ,2,821,216755 ,2,822,170805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532560 ,2,827,75 ,2,828,481190 ,2,821,217850 ,2,822,80735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,481200 ,2,821,219290 ,1,0,323520 ,2,822,104050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,219620 ,1,0,333000 ,2,822,103990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,219915 ,2,822,103880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529770 ,2,827,75 ,2,828,481205 ,2,821,221485 ,2,822,68910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532565 ,2,827,75 ,2,828,481210 ,2,821,223415 ,2,822,68395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,481215 ,2,821,224105 ,2,822,103870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,481250 ,2,821,224585 ,2,822,206075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532610 ,2,827,139905 ,2,828,481255 ,2,821,226225 ,1,0,174475 ,2,822,127725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532615 ,2,827,139905 ,2,828,481260 ,2,821,227870 ,2,822,206575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532620 ,2,827,75 ,2,828,481265 ,2,821,229515 ,1,0,400430 ,1,1,78310 ,2,822,78300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,229835 ,1,0,400430 ,1,1,70725 ,2,822,70690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,230170 ,1,0,554325 ,1,1,211980 ,2,822,68725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532625 ,2,827,75 ,2,828,481270 ,2,821,233395 ,1,0,211990 ,2,822,68080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532630 ,2,827,75 ,2,828,481275 ,2,821,235280 ,1,0,400430 ,1,1,69795 ,2,822,69925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,235610 ,1,0,220280 ,2,822,68940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532635 ,2,827,75 ,2,828,481280 ,2,821,238430 ,1,0,220305 ,2,822,68455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532640 ,2,827,75 ,2,828,481275 ,2,821,240335 ,1,0,332290 ,1,1,332280 ,1,2,332250 ,1,3,332240 ,1,4,332230 ,2,822,57280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532645 ,2,827,75 ,2,828,481285 ,2,821,246180 ,1,0,45 ,1,1,13320 ,2,822,57340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532665 ,2,827,75 ,2,828,481305 ,2,821,249825 ,2,822,57180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,250120 ,2,822,170705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532670 ,2,827,103045 ,2,828,481310 ,2,821,258495 ,2,822,170835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532675 ,2,827,75 ,2,828,481315 ,2,821,259430 ,2,822,170695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532680 ,2,827,75 ,2,828,481320 ,2,821,260355 ,2,822,170815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532680 ,2,827,75 ,2,828,481330 ,2,821,261290 ,1,0,279970 ,2,822,170715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532695 ,2,827,75 ,2,828,481335 ,2,821,269320 ,1,0,2210 ,1,1,542345 ,2,822,170845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532700 ,2,827,75 ,2,828,481340 ,2,821,278975 ,1,0,45 ,1,1,5900 ,2,822,194045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532705 ,2,827,75 ,2,828,481345 ,2,821,280260 ,1,0,45 ,1,1,5900 ,2,822,149920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500255 ,2,827,75 ,2,828,481360 ,2,821,281485 ,1,0,45 ,1,1,5900 ,2,822,107500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532710 ,2,827,75 ,2,828,481365 ,2,821,282785 ,1,0,45 ,1,1,5900 ,2,822,196930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532235 ,2,827,75 ,2,828,481370 ,2,821,284010 ,1,0,581320 ,1,1,45 ,1,2,5900 ,2,822,164630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499940 ,2,827,75 ,2,828,481375 ,2,821,285075 ,2,822,105210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,285565 ,1,0,45 ,1,1,5900 ,2,822,138440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532705 ,2,827,75 ,2,828,481385 ,2,821,286870 ,1,0,221270 ,2,822,105565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532740 ,2,827,75 ,2,828,481390 ,2,821,288630 ,2,822,68630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532745 ,2,827,75 ,2,828,481395 ,2,821,289860 ,2,822,67550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532750 ,2,827,75 ,2,828,481400 ,2,821,290650 ,2,822,80090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,481435 ,2,821,291650 ,2,822,80545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532755 ,2,827,139915 ,2,828,481440 ,2,821,296365 ,1,0,165015 ,2,822,68920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532765 ,2,827,139120 ,2,828,481445 ,2,821,299385 ,1,0,165150 ,2,822,68425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532770 ,2,827,32185 ,2,828,481450 ,2,821,302440 ,1,0,556305 ,2,822,68785 ,2,823,541165 ,2,824,418510 ,2,825,352715 ,2,826,532775 ,2,827,75 ,2,828,481455 ,2,821,304785 ,1,0,556310 ,2,822,68285 ,2,823,541185 ,2,824,418515 ,2,825,352725 ,2,826,532780 ,2,827,32185 ,2,828,481460 ,2,821,308670 ,2,822,89125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,309205 ,2,822,68930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532800 ,2,827,75 ,2,828,481465 ,2,821,311155 ,2,822,68435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,481470 ,2,821,311845 ,2,822,68815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532805 ,2,827,75 ,2,828,481505 ,2,821,313845 ,2,822,68315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,481510 ,2,821,314485 ,2,822,90835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527865 ,2,827,75 ,2,828,481515 ,2,821,315675 ,2,822,79610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498760 ,2,827,75 ,2,828,481520 ,2,821,316575 ,2,822,80525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513670 ,2,827,75 ,2,828,481525 ,2,821,317555 ,2,822,79540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,318085 ,2,822,80445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532810 ,2,827,75 ,2,828,481530 ,2,821,320660 ,2,822,67755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,321580 ,2,822,208105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532815 ,2,827,75 ,2,828,481535 ,2,821,324475 ,2,822,72835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532830 ,2,827,75 ,2,828,481540 ,2,821,326785 ,2,822,72600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532830 ,2,827,75 ,2,828,481555 ,2,821,329170 ,1,0,561505 ,2,822,72710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532835 ,2,827,75 ,2,828,481560 ,2,821,334425 ,1,0,562210 ,2,822,76500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532840 ,2,827,75 ,2,828,481565 ,2,821,338055 ,1,0,562400 ,2,822,77220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532845 ,2,827,75 ,2,828,481570 ,2,821,347185 ,1,0,561370 ,2,822,71275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532880 ,2,827,139965 ,2,828,481575 ,2,821,362730 ,2,822,80280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532885 ,2,827,75 ,2,828,481580 ,2,821,363980 ,1,0,542865 ,1,1,595195 ,1,2,542865 ,2,822,200245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532890 ,2,827,75 ,2,828,481585 ,2,821,368675 ,2,822,71065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532895 ,2,827,33290 ,2,828,481590 ,2,821,374190 ,1,0,572695 ,2,822,123675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532905 ,2,827,75 ,2,828,481620 ,2,821,377570 ,1,0,2210 ,1,1,542350 ,2,822,75870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532910 ,2,827,75 ,2,828,481625 ,2,821,378995 ,1,0,556585 ,2,822,75960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532915 ,2,827,75 ,2,828,481630 ,2,821,384050 ,1,0,561765 ,2,822,74340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532920 ,2,827,139975 ,2,828,481635 ,2,821,390735 ,1,0,561970 ,2,822,75200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532940 ,2,827,51110 ,2,828,481645 ,2,821,394110 ,1,0,561980 ,2,822,75275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532945 ,2,827,75 ,2,828,481650 ,2,821,396730 ,1,0,562335 ,1,1,2210 ,1,2,542350 ,2,822,77065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532950 ,2,827,75 ,2,828,481655 ,2,821,398925 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,142130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532955 ,2,827,75 ,2,828,481660 ,2,821,401530 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,74170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532965 ,2,827,75 ,2,828,481685 ,2,821,404450 ,1,0,561825 ,2,822,74430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532970 ,2,827,75 ,2,828,481690 ,2,821,405980 ,2,822,77525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532975 ,2,827,136100 ,2,828,481695 ,2,821,413475 ,1,0,2210 ,1,1,542350 ,2,822,73345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532980 ,2,827,75 ,2,828,481700 ,2,821,415365 ,2,822,198475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533005 ,2,827,124895 ,2,828,481705 ,2,821,417450 ,2,822,198145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532620 ,2,827,75 ,2,828,481710 ,2,821,418395 ,2,822,68805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,418620 ,2,822,197715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533010 ,2,827,136110 ,2,828,481715 ,2,821,420815 ,1,0,220270 ,2,822,68875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533015 ,2,827,75 ,2,828,481720 ,2,821,422480 ,1,0,220810 ,2,822,68375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532630 ,2,827,75 ,2,828,481755 ,2,821,423655 ,1,0,370460 ,2,822,206595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533020 ,2,827,75 ,2,828,481760 ,2,821,424680 ,2,822,206615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,426065 ,2,822,68475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,426300 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,201880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533025 ,2,827,75 ,2,828,481765 ,2,821,428490 ,2,822,187645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533030 ,2,827,75 ,2,828,481770 ,2,821,430395 ,2,822,80080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,430775 ,2,822,80495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533035 ,2,827,75 ,2,828,481775 ,2,821,432065 ,1,0,370495 ,2,822,168385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533040 ,2,827,75 ,2,828,481780 ,2,821,433630 ,2,822,198335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533060 ,2,827,75 ,2,828,481785 ,2,821,434790 ,2,822,68620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533065 ,2,827,75 ,2,828,481790 ,2,821,437385 ,1,0,176730 ,2,822,67560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533070 ,2,827,75 ,2,828,481830 ,2,821,439005 ,2,822,90585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439600 ,2,822,80455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533075 ,2,827,75 ,2,828,481835 ,2,821,441505 ,1,0,220295 ,2,822,68660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533085 ,2,827,75 ,2,828,481840 ,2,821,442725 ,1,0,220820 ,2,822,67975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533090 ,2,827,75 ,2,828,481845 ,2,821,443330 ,2,822,79655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,443650 ,2,822,80555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,444275 ,2,822,68765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531635 ,2,827,139120 ,2,828,481850 ,2,821,446140 ,2,822,91085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508435 ,2,827,75 ,2,828,481855 ,2,821,446975 ,2,822,80325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533095 ,2,827,75 ,2,828,481860 ,2,821,447755 ,1,0,475 ,2,822,209120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533100 ,2,827,75 ,2,828,481865 ,2,821,449130 ,2,822,68690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532800 ,2,827,75 ,2,828,481885 ,2,821,450285 ,2,822,68040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,481890 ,2,821,450750 ,1,0,170 ,1,1,160 ,1,2,337160 ,2,822,203280 ,2,823,541190 ,2,824,418540 ,2,825,352745 ,2,826,533135 ,2,827,75 ,2,828,481895 ,2,821,453235 ,2,822,90180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533140 ,2,827,75 ,2,828,481900 ,2,821,454770 ,1,0,400430 ,1,1,147645 ,2,822,147635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,454950 ,2,822,71915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533145 ,2,827,75 ,2,828,481910 ,2,821,456010 ,2,822,79675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,456385 ,2,822,80565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533150 ,2,827,75 ,2,828,481915 ,2,821,458440 ,1,0,400430 ,1,1,147690 ,2,822,147655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,458670 ,2,822,58655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,481920 ,2,821,459005 ,2,822,171060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533155 ,2,827,75 ,2,828,481925 ,2,821,462610 ,1,0,165005 ,2,822,68600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533160 ,2,827,139120 ,2,828,481935 ,2,821,464505 ,1,0,165135 ,2,822,67530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533165 ,2,827,32185 ,2,828,481940 ,2,821,466220 ,2,822,171220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533170 ,2,827,140030 ,2,828,481945 ,2,821,468060 ,2,822,162810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,468515 ,1,0,280660 ,2,822,170090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533195 ,2,827,103020 ,2,828,481950 ,2,821,472515 ,2,822,79900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533200 ,2,827,75 ,2,828,481965 ,2,821,473685 ,1,0,569610 ,1,1,555350 ,2,822,110295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533205 ,2,827,75 ,2,828,481970 ,2,821,476660 ,2,822,80425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533210 ,2,827,75 ,2,828,481975 ,2,821,477825 ,2,822,64060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533220 ,2,827,138095 ,2,828,481980 ,2,821,478200 ,2,822,127845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533225 ,2,827,75 ,2,828,482020 ,2,821,479475 ,2,822,88595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533230 ,2,827,75 ,2,828,482025 ,2,821,480510 ,1,0,2210 ,1,1,542350 ,2,822,58675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533235 ,2,827,75 ,2,828,482030 ,2,821,483910 ,2,822,200090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533260 ,2,827,75 ,2,828,482035 ,2,821,484475 ,2,822,79520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492600 ,2,827,75 ,2,828,474225 ,2,821,484880 ,1,0,2210 ,1,1,542350 ,2,822,80435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533265 ,2,827,140040 ,2,828,482040 ,2,821,495990 ,2,822,89135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533270 ,2,827,75 ,2,828,482045 ,2,821,496880 ,2,822,80290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,482050 ,2,821,497755 ,1,0,237840 ,1,1,237790 ,2,822,129715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533275 ,2,827,75 ,2,828,482055 ,2,821,500220 ,2,822,135890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533280 ,2,827,75 ,2,828,482085 ,2,821,503515 ,1,0,572905 ,2,822,130555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533285 ,2,827,75 ,2,828,482090 ,2,821,505305 ,1,0,572855 ,2,822,124565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533290 ,2,827,75 ,2,828,482095 ,2,821,508525 ,1,0,166955 ,2,822,69815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533295 ,2,827,32775 ,2,828,482100 ,2,821,512945 ,1,0,177380 ,1,1,556390 ,2,822,69855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533335 ,2,827,32775 ,2,828,482105 ,2,821,515585 ,1,0,556735 ,1,1,165505 ,1,2,177370 ,1,3,556730 ,2,822,69650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533340 ,2,827,30445 ,2,828,482110 ,2,821,520670 ,1,0,575865 ,2,822,135575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533345 ,2,827,75 ,2,828,482115 ,2,821,524450 ,1,0,575695 ,2,822,135080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532905 ,2,827,75 ,2,828,482120 ,2,821,527655 ,1,0,575855 ,2,822,135540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533350 ,2,827,75 ,2,828,482155 ,2,821,530000 ,1,0,575475 ,2,822,134125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533355 ,2,827,75 ,2,828,482160 ,2,821,535160 ,1,0,575705 ,2,822,135145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533360 ,2,827,75 ,2,828,482165 ,2,821,538325 ,1,0,575510 ,2,822,134180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533365 ,2,827,75 ,2,828,482170 ,2,821,541210 ,1,0,576095 ,2,822,136240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533370 ,2,827,75 ,2,828,482175 ,2,821,549630 ,1,0,575910 ,2,822,135680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533395 ,2,827,75 ,2,828,482180 ,2,821,552850 ,1,0,575900 ,2,822,135615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533400 ,2,827,75 ,2,828,482185 ,2,821,561190 ,1,0,575840 ,2,822,135490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533405 ,2,827,75 ,2,828,482190 ,2,821,568110 ,1,0,575830 ,2,822,135400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532905 ,2,827,75 ,2,828,482215 ,2,821,571390 ,1,0,575670 ,2,822,135050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533410 ,2,827,75 ,2,828,482220 ,2,821,575065 ,1,0,575800 ,2,822,135365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533430 ,2,827,75 ,2,828,482225 ,2,821,581050 ,1,0,578715 ,2,822,149760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532945 ,2,827,75 ,2,828,482230 ,2,821,582605 ,1,0,568120 ,2,822,103860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533435 ,2,827,75 ,2,828,482235 ,2,821,584110 ,1,0,575790 ,2,822,135295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533440 ,2,827,75 ,2,828,482240 ,2,821,588890 ,1,0,581970 ,2,822,167370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533445 ,2,827,75 ,2,828,482245 ,2,821,591310 ,1,0,573820 ,2,822,127280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533290 ,2,827,75 ,2,828,482250 ,2,821,594005 ,1,0,575960 ,2,822,135825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533460 ,2,827,75 ,2,828,482275 ,2,821,602825 ,1,0,575715 ,2,822,135175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533465 ,2,827,75 ,2,828,482280 ,2,821,606695 ,1,0,575950 ,2,822,135790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533410 ,2,827,75 ,2,828,482285 ,2,821,610435 ,1,0,576050 ,2,822,136030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533470 ,2,827,75 ,2,828,482290 ,2,821,617455 ,1,0,575450 ,2,822,134105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533475 ,2,827,75 ,2,828,482300 ,2,821,640945 ,1,0,576260 ,2,822,136875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533480 ,2,827,75 ,2,828,482305 ,2,821,643005 ,1,0,576060 ,2,822,136095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533485 ,2,827,75 ,2,828,482310 ,2,821,650780 ,1,0,575920 ,2,822,135720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533490 ,2,827,75 ,2,828,482315 ,2,821,654460 ,1,0,575770 ,2,822,135240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533495 ,2,827,75 ,2,828,482325 ,2,821,657625 ,2,822,68670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533520 ,2,827,139120 ,2,828,482330 ,2,821,659375 ,1,0,569570 ,2,822,109990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533525 ,2,827,75 ,2,828,482335 ,2,821,662485 ,1,0,569550 ,1,1,556255 ,2,822,109880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533530 ,2,827,61930 ,2,828,482340 ,2,821,670325 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,2,822,99585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533535 ,2,827,75 ,2,828,482350 ,2,821,8900 ,2,822,143285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533550 ,2,827,75 ,2,828,482355 ,2,821,11380 ,2,822,143170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533550 ,2,827,75 ,2,828,482360 ,2,821,13965 ,2,822,68990 ,2,823,541195 ,2,824,418545 ,2,825,352755 ,2,826,533555 ,2,827,75 ,2,828,482365 ,2,821,15285 ,2,822,68510 ,2,823,541200 ,2,824,418550 ,2,825,352765 ,2,826,533560 ,2,827,32185 ,2,828,482400 ,2,821,18020 ,2,822,68895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533565 ,2,827,75 ,2,828,482405 ,2,821,20815 ,1,0,220940 ,1,1,13070 ,1,2,45 ,1,3,5900 ,1,4,337600 ,1,5,337590 ,1,6,9000 ,2,822,209220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533610 ,2,827,140135 ,2,828,482410 ,2,821,35900 ,1,0,556270 ,2,822,68755 ,2,823,541220 ,2,824,418510 ,2,825,352715 ,2,826,533615 ,2,827,75 ,2,828,482415 ,2,821,38210 ,1,0,556340 ,2,822,68190 ,2,823,541225 ,2,824,418555 ,2,825,352775 ,2,826,533620 ,2,827,32185 ,2,828,482425 ,2,821,42110 ,2,822,68825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,532565 ,2,827,75 ,2,828,482430 ,2,821,44075 ,2,822,68325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,482435 ,2,821,44875 ,2,822,68835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,531635 ,2,827,139120 ,2,828,482440 ,2,821,47800 ,2,822,68020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,48115 ,2,822,68610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,482455 ,2,821,48925 ,2,822,67540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,482460 ,2,821,49465 ,2,822,209250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533625 ,2,827,140190 ,2,828,482465 ,2,821,56305 ,1,0,400430 ,1,1,199560 ,2,822,199550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,56620 ,1,0,578640 ,2,822,149565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533640 ,2,827,75 ,2,828,482470 ,2,821,60500 ,2,822,92110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533645 ,2,827,30175 ,2,828,482475 ,2,821,63045 ,1,0,594475 ,1,1,45 ,1,2,215585 ,2,822,65265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533650 ,2,827,140200 ,2,828,482480 ,2,821,66940 ,1,0,2280 ,1,1,542090 ,2,822,182125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,482485 ,2,821,68125 ,1,0,542555 ,1,1,593795 ,1,2,542555 ,2,822,101265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533655 ,2,827,75 ,2,828,482490 ,2,821,72560 ,1,0,543065 ,1,1,595645 ,1,2,543065 ,1,3,2135 ,2,822,104735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533675 ,2,827,75 ,2,828,482535 ,2,821,76755 ,1,0,45 ,1,1,13320 ,2,822,182080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533680 ,2,827,75 ,2,828,482540 ,2,821,78755 ,2,822,66725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533685 ,2,827,75 ,2,828,482545 ,2,821,80320 ,2,822,66715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,81645 ,1,0,45 ,1,1,331650 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,162865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533690 ,2,827,140210 ,2,828,482550 ,2,821,84385 ,1,0,45 ,1,1,331650 ,2,822,106810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533695 ,2,827,75 ,2,828,482555 ,2,821,85790 ,2,822,163350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533700 ,2,827,140235 ,2,828,482560 ,2,821,94930 ,2,822,87985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,95275 ,2,822,85070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,482565 ,2,821,96065 ,1,0,45 ,1,1,331650 ,1,2,45 ,1,3,331650 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,105325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533705 ,2,827,140245 ,2,828,482570 ,2,821,100795 ,2,822,85675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,101120 ,2,822,86915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,101460 ,2,822,87015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,101810 ,2,822,85125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,482600 ,2,821,102940 ,2,822,85530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533710 ,2,827,75 ,2,828,482605 ,2,821,105475 ,2,822,85765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,482610 ,2,821,106280 ,2,822,86770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533745 ,2,827,75 ,2,828,482615 ,2,821,109100 ,1,0,400430 ,1,1,147545 ,2,822,147535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,109440 ,1,0,400430 ,1,1,147585 ,2,822,147555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,109745 ,1,0,545305 ,2,822,66610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520350 ,2,827,75 ,2,828,482620 ,2,821,111835 ,1,0,400430 ,1,1,147625 ,2,822,147615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112150 ,2,822,71925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533145 ,2,827,75 ,2,828,482625 ,2,821,113915 ,1,0,180325 ,2,822,71955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533750 ,2,827,130895 ,2,828,482630 ,2,821,118465 ,2,822,114500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498210 ,2,827,75 ,2,828,482635 ,2,821,119970 ,2,822,130565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533755 ,2,827,75 ,2,828,482660 ,2,821,121730 ,2,822,124515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533755 ,2,827,75 ,2,828,482665 ,2,821,123470 ,1,0,400430 ,1,1,150230 ,2,822,150215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,123795 ,1,0,370605 ,2,822,197500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533760 ,2,827,140255 ,2,828,482670 ,2,821,134560 ,2,822,93340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533775 ,2,827,140265 ,2,828,482675 ,2,821,159350 ,2,822,202775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,482680 ,2,821,160170 ,2,822,165660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505065 ,2,827,75 ,2,828,482685 ,2,821,164400 ,2,822,142150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533780 ,2,827,75 ,2,828,482690 ,2,821,165185 ,2,822,162030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533785 ,2,827,75 ,2,828,482695 ,2,821,167120 ,1,0,161725 ,2,822,162010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533790 ,2,827,75 ,2,828,482705 ,2,821,169260 ,1,0,578485 ,2,822,149110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533800 ,2,827,75 ,2,828,482710 ,2,821,172980 ,1,0,400430 ,1,1,147360 ,2,822,147325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,173325 ,1,0,589325 ,2,822,203485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533435 ,2,827,75 ,2,828,482715 ,2,821,175745 ,1,0,574805 ,2,822,131255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533805 ,2,827,75 ,2,828,482720 ,2,821,179185 ,1,0,574815 ,2,822,131130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533810 ,2,827,75 ,2,828,482740 ,2,821,183275 ,1,0,589330 ,2,822,203865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533815 ,2,827,75 ,2,828,482745 ,2,821,185650 ,1,0,589340 ,2,822,203725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533805 ,2,827,75 ,2,828,482750 ,2,821,189045 ,1,0,589335 ,2,822,203610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533810 ,2,827,75 ,2,828,482755 ,2,821,193145 ,1,0,572845 ,2,822,124175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533830 ,2,827,75 ,2,828,482790 ,2,821,197965 ,1,0,400430 ,1,1,209750 ,2,822,209740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,198295 ,1,0,45 ,1,1,192820 ,2,822,209750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497605 ,2,827,75 ,2,828,482800 ,2,821,201040 ,1,0,221255 ,2,822,209785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498155 ,2,827,75 ,2,828,482795 ,2,821,204765 ,2,822,48175 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,204910 ,2,822,209795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493310 ,2,827,75 ,2,828,482810 ,2,821,205705 ,2,822,209805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533835 ,2,827,75 ,2,828,482805 ,2,821,208150 ,1,0,179760 ,1,1,312220 ,1,2,312210 ,1,3,221245 ,2,822,209815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533840 ,2,827,75 ,2,828,482815 ,2,821,216805 ,1,0,554065 ,1,1,340015 ,1,2,310080 ,1,3,2940 ,2,822,209825 ,2,823,541230 ,2,824,418560 ,2,825,352825 ,2,826,533845 ,2,827,24545 ,2,828,482820 ,2,821,245735 ,1,0,554070 ,1,1,45 ,1,2,13320 ,1,3,7130 ,1,4,3330 ,1,5,340025 ,2,822,209835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533870 ,2,827,140405 ,2,828,482825 ,2,821,265230 ,1,0,578350 ,2,822,147960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533875 ,2,827,75 ,2,828,482850 ,2,821,278615 ,1,0,578345 ,2,822,150105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533880 ,2,827,75 ,2,828,482855 ,2,821,286565 ,2,822,188055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533885 ,2,827,75 ,2,828,482865 ,2,821,287925 ,2,822,193585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533890 ,2,827,75 ,2,828,482870 ,2,821,298220 ,1,0,354170 ,1,1,373640 ,1,2,354160 ,1,3,373580 ,2,822,152440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,299435 ,1,0,374700 ,1,1,160965 ,1,2,370595 ,1,3,612025 ,1,4,45 ,1,5,13320 ,2,822,197510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533895 ,2,827,140415 ,2,828,482875 ,2,821,315155 ,1,0,14300 ,1,1,543120 ,1,2,587755 ,1,3,543120 ,1,4,543115 ,1,5,581465 ,1,6,543115 ,1,7,221300 ,2,822,93365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533900 ,2,827,75 ,2,828,482880 ,2,821,346040 ,2,822,136905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,347730 ,2,822,109085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533905 ,2,827,75 ,2,828,482885 ,2,821,356650 ,1,0,330615 ,1,1,330605 ,2,822,165910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533940 ,2,827,75 ,2,828,482905 ,2,821,358290 ,2,822,122995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533945 ,2,827,138290 ,2,828,482910 ,2,821,377400 ,1,0,400430 ,1,1,84995 ,2,822,84985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,482915 ,2,821,377595 ,1,0,572780 ,2,822,123875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533950 ,2,827,75 ,2,828,482920 ,2,821,379910 ,1,0,400430 ,1,1,165175 ,2,822,165165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,380115 ,1,0,400430 ,1,1,85435 ,2,822,85425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,380305 ,2,822,102265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533955 ,2,827,75 ,2,828,482925 ,2,821,389005 ,1,0,572910 ,2,822,125145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533965 ,2,827,75 ,2,828,482930 ,2,821,392140 ,1,0,581665 ,2,822,166605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533970 ,2,827,75 ,2,828,482935 ,2,821,395235 ,1,0,581830 ,2,822,166950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533975 ,2,827,75 ,2,828,482940 ,2,821,396755 ,1,0,400430 ,1,1,91960 ,2,822,91950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,396965 ,1,0,581705 ,2,822,166525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533980 ,2,827,75 ,2,828,482965 ,2,821,399130 ,1,0,565975 ,2,822,92510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534020 ,2,827,75 ,2,828,482970 ,2,821,400675 ,1,0,565990 ,2,822,92540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534025 ,2,827,75 ,2,828,482975 ,2,821,403915 ,2,822,110135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534030 ,2,827,75 ,2,828,482980 ,2,821,405565 ,1,0,400430 ,1,1,165540 ,2,822,165530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,405750 ,1,0,400430 ,1,1,165440 ,2,822,165560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,405955 ,1,0,400430 ,1,1,84965 ,2,822,84940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,406160 ,2,822,113310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534035 ,2,827,75 ,2,828,482985 ,2,821,407745 ,2,822,102550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534055 ,2,827,75 ,2,828,482990 ,2,821,411290 ,2,822,115020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534060 ,2,827,75 ,2,828,482995 ,2,821,415040 ,1,0,400430 ,1,1,85865 ,2,822,85835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,415230 ,2,822,193645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534065 ,2,827,75 ,2,828,483000 ,2,821,417120 ,1,0,373530 ,2,822,152480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,417305 ,2,822,102825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534070 ,2,827,75 ,2,828,483010 ,2,821,418435 ,1,0,400430 ,1,1,146915 ,2,822,146970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,418625 ,1,0,400430 ,1,1,146945 ,2,822,146935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,418780 ,1,0,400430 ,1,1,146845 ,2,822,147100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,418995 ,1,0,400430 ,1,1,146675 ,2,822,146760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,419170 ,1,0,400430 ,1,1,146710 ,2,822,146685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,419370 ,2,822,108305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534090 ,2,827,75 ,2,828,483015 ,2,821,421955 ,2,822,209875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,483020 ,2,821,422515 ,2,822,48215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,422640 ,2,822,590645 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,422975 ,1,0,552550 ,1,1,219865 ,2,822,209885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534095 ,2,827,75 ,2,828,483025 ,2,821,425755 ,1,0,331365 ,1,1,542785 ,1,2,561435 ,1,3,542785 ,1,4,295960 ,2,822,209895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534100 ,2,827,140560 ,2,828,483030 ,2,821,430095 ,1,0,10915 ,2,822,209905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,483035 ,2,821,430590 ,1,0,45 ,1,1,13320 ,2,822,209925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534105 ,2,827,75 ,2,828,483040 ,2,821,431670 ,2,822,209935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,483045 ,2,821,432255 ,1,0,554075 ,1,1,219875 ,2,822,209945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534115 ,2,827,75 ,2,828,483075 ,2,821,435065 ,2,822,209955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,483080 ,2,821,435350 ,1,0,400430 ,1,1,146820 ,2,822,146810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,435535 ,1,0,400430 ,1,1,147000 ,2,822,146990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,435730 ,1,0,400430 ,1,1,146655 ,2,822,146720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,435980 ,1,0,400430 ,1,1,146865 ,2,822,146855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,436200 ,1,0,577900 ,2,822,144435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534120 ,2,827,75 ,2,828,483085 ,2,821,437830 ,1,0,568025 ,2,822,103650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534125 ,2,827,75 ,2,828,483090 ,2,821,440110 ,2,822,142675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,441300 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,1,6,2210 ,1,7,542350 ,2,822,142755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534130 ,2,827,75 ,2,828,483095 ,2,821,446395 ,1,0,400430 ,1,1,166770 ,2,822,166760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,446590 ,1,0,542500 ,1,1,586940 ,1,2,542500 ,2,822,196015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534145 ,2,827,75 ,2,828,483100 ,2,821,449985 ,2,822,66500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521295 ,2,827,75 ,2,828,480615 ,2,821,450615 ,1,0,400430 ,1,1,151895 ,2,822,151885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,450785 ,1,0,400430 ,1,1,151550 ,2,822,152195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,450995 ,2,822,162750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534150 ,2,827,75 ,2,828,483105 ,2,821,452630 ,1,0,587935 ,2,822,198990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533550 ,2,827,75 ,2,828,483110 ,2,821,454280 ,1,0,575275 ,2,822,133260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534155 ,2,827,75 ,2,828,483135 ,2,821,459275 ,1,0,400430 ,1,1,153380 ,2,822,153370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,459465 ,1,0,573650 ,2,822,126655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534160 ,2,827,75 ,2,828,483140 ,2,821,460900 ,1,0,542565 ,1,1,593875 ,1,2,542565 ,2,822,167475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534170 ,2,827,75 ,2,828,483145 ,2,821,463990 ,2,822,199115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534175 ,2,827,75 ,2,828,483150 ,2,821,467050 ,2,822,199310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534180 ,2,827,75 ,2,828,483155 ,2,821,470050 ,2,822,199290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534185 ,2,827,75 ,2,828,483160 ,2,821,472175 ,1,0,400430 ,1,1,150535 ,2,822,150525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,472370 ,1,0,400430 ,1,1,150560 ,2,822,150545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,472545 ,1,0,400430 ,1,1,146780 ,2,822,146800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,472755 ,1,0,400430 ,1,1,146750 ,2,822,146925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,472960 ,1,0,217755 ,2,822,110215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534220 ,2,827,75 ,2,828,483165 ,2,821,474780 ,1,0,400430 ,1,1,140375 ,2,822,140445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,474990 ,1,0,400430 ,1,1,140345 ,2,822,140465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,475175 ,2,822,173720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534225 ,2,827,75 ,2,828,483170 ,2,821,476605 ,2,822,174075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534230 ,2,827,75 ,2,828,483195 ,2,821,478655 ,2,822,173940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534235 ,2,827,75 ,2,828,483200 ,2,821,480685 ,1,0,400430 ,1,1,140195 ,2,822,140475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,480895 ,1,0,400430 ,1,1,140300 ,2,822,140355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,481090 ,1,0,400430 ,1,1,140175 ,2,822,140160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,481290 ,1,0,2210 ,1,1,542350 ,1,2,2210 ,1,3,542350 ,2,822,169475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534240 ,2,827,75 ,2,828,483205 ,2,821,483545 ,2,822,95310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534245 ,2,827,75 ,2,828,483210 ,2,821,493885 ,2,822,94610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534250 ,2,827,75 ,2,828,483215 ,2,821,496570 ,2,822,94895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534255 ,2,827,75 ,2,828,483220 ,2,821,499875 ,2,822,62885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,500735 ,1,0,2210 ,1,1,542350 ,2,822,206755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534285 ,2,827,75 ,2,828,483225 ,2,821,502530 ,1,0,400430 ,1,1,92235 ,2,822,92225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,502745 ,1,0,543045 ,1,1,595560 ,1,2,543045 ,2,822,205325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534290 ,2,827,75 ,2,828,483230 ,2,821,504770 ,2,822,209975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,483250 ,2,821,505335 ,2,822,209995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534295 ,2,827,75 ,2,828,483260 ,2,821,506880 ,2,822,210005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534295 ,2,827,75 ,2,828,483265 ,2,821,508455 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534300 ,2,827,75 ,2,828,483275 ,2,821,509715 ,2,822,83610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534310 ,2,827,75 ,2,828,483280 ,2,821,511300 ,2,822,83750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534315 ,2,827,75 ,2,828,483285 ,2,821,512920 ,1,0,45 ,1,1,13320 ,2,822,206840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534320 ,2,827,75 ,2,828,483290 ,2,821,514455 ,2,822,210040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534350 ,2,827,75 ,2,828,483325 ,2,821,516755 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534325 ,2,827,75 ,2,828,483320 ,2,821,517865 ,2,822,210050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534355 ,2,827,75 ,2,828,483330 ,2,821,520145 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534300 ,2,827,75 ,2,828,483275 ,2,821,521510 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,206950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534360 ,2,827,75 ,2,828,483335 ,2,821,524445 ,2,822,210115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,524635 ,1,0,400430 ,1,1,150430 ,2,822,150420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,524830 ,2,822,139585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534365 ,2,827,75 ,2,828,483340 ,2,821,527765 ,2,822,141400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534370 ,2,827,75 ,2,828,483345 ,2,821,528800 ,2,822,139575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534375 ,2,827,75 ,2,828,483350 ,2,821,531525 ,2,822,141350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534380 ,2,827,140650 ,2,828,483355 ,2,821,539845 ,1,0,400430 ,1,1,104285 ,2,822,104255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,540055 ,1,0,45 ,1,1,5900 ,2,822,139595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534385 ,2,827,75 ,2,828,483385 ,2,821,542040 ,1,0,45 ,1,1,5900 ,2,822,141430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534395 ,2,827,75 ,2,828,483390 ,2,821,543875 ,1,0,554995 ,1,1,2210 ,1,2,542350 ,2,822,118170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534400 ,2,827,138075 ,2,828,483395 ,2,821,549850 ,1,0,2210 ,1,1,542350 ,2,822,119415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534405 ,2,827,75 ,2,828,483400 ,2,821,552750 ,1,0,400430 ,1,1,147400 ,2,822,147390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,552955 ,1,0,400430 ,1,1,150345 ,2,822,150335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,553140 ,2,822,157015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534410 ,2,827,34130 ,2,828,483415 ,2,821,556015 ,2,822,156755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534415 ,2,827,38415 ,2,828,483420 ,2,821,556850 ,1,0,45 ,1,1,5900 ,2,822,138330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530880 ,2,827,75 ,2,828,483425 ,2,821,557870 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,116290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534420 ,2,827,140660 ,2,828,483460 ,2,821,565500 ,1,0,45 ,1,1,5900 ,2,822,116025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534425 ,2,827,140670 ,2,828,483465 ,2,821,568735 ,1,0,45 ,1,1,5900 ,1,2,315040 ,1,3,45 ,1,4,5900 ,1,5,45 ,1,6,5900 ,2,822,116355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534430 ,2,827,140660 ,2,828,483470 ,2,821,574070 ,1,0,45 ,1,1,5900 ,2,822,116015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534470 ,2,827,140670 ,2,828,483475 ,2,821,576045 ,1,0,400430 ,1,1,103810 ,2,822,103800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,576250 ,2,822,191400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534475 ,2,827,140680 ,2,828,483480 ,2,821,590910 ,1,0,400430 ,1,1,147380 ,2,822,150250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,591110 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,116415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534480 ,2,827,83225 ,2,828,483485 ,2,821,596770 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,115990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534485 ,2,827,83225 ,2,828,483490 ,2,821,601765 ,1,0,212825 ,2,822,116345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504735 ,2,827,75 ,2,828,438195 ,2,821,602610 ,1,0,212760 ,2,822,115980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504735 ,2,827,75 ,2,828,470335 ,2,821,603390 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,316715 ,1,7,45 ,1,8,5900 ,1,9,316705 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,2,822,115870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534495 ,2,827,140690 ,2,828,483495 ,2,821,636565 ,1,0,45 ,1,1,5900 ,2,822,115675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534500 ,2,827,75 ,2,828,483520 ,2,821,637740 ,2,822,116185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534505 ,2,827,75 ,2,828,483525 ,2,821,641160 ,2,822,116060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534510 ,2,827,75 ,2,828,483530 ,2,821,644135 ,1,0,45 ,1,1,5900 ,2,822,116365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534540 ,2,827,75 ,2,828,483535 ,2,821,645980 ,1,0,45 ,1,1,5900 ,2,822,116035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534545 ,2,827,75 ,2,828,483550 ,2,821,647685 ,1,0,45 ,1,1,5900 ,2,822,122485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530880 ,2,827,75 ,2,828,483555 ,2,821,648580 ,2,822,127480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534550 ,2,827,47360 ,2,828,483560 ,2,821,650055 ,1,0,542740 ,1,1,577485 ,1,2,542740 ,1,3,549485 ,1,4,217635 ,2,822,127430 ,2,823,541235 ,2,824,418565 ,2,825,352835 ,2,826,534555 ,2,827,75 ,2,828,483565 ,2,821,654490 ,1,0,45 ,1,1,5900 ,2,822,159710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534560 ,2,827,83225 ,2,828,483595 ,2,821,657080 ,1,0,315250 ,2,822,141065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534565 ,2,827,75 ,2,828,483600 ,2,821,659330 ,1,0,612645 ,2,822,140595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534570 ,2,827,75 ,2,828,483605 ,2,821,661275 ,1,0,227760 ,1,1,227750 ,1,2,324850 ,2,822,118265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534575 ,2,827,75 ,2,828,483610 ,2,821,665615 ,2,822,119305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,667005 ,1,0,227795 ,1,1,217010 ,2,822,118275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534605 ,2,827,75 ,2,828,483615 ,2,821,670745 ,2,822,118420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534610 ,2,827,75 ,2,828,483620 ,2,821,672310 ,1,0,542735 ,1,1,573925 ,1,2,542735 ,1,3,549505 ,1,4,610045 ,1,5,45 ,1,6,5900 ,2,822,127470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534615 ,2,827,75 ,2,828,483625 ,2,821,1915 ,2,822,149050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534620 ,2,827,38415 ,2,828,483630 ,2,821,4140 ,2,822,149150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534630 ,2,827,38415 ,2,828,483655 ,2,821,7005 ,2,822,203495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534635 ,2,827,38415 ,2,828,483660 ,2,821,11710 ,2,822,131275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534640 ,2,827,38415 ,2,828,483665 ,2,821,15510 ,2,822,131155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534645 ,2,827,38415 ,2,828,483670 ,2,821,19370 ,1,0,180810 ,2,822,203875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534665 ,2,827,38415 ,2,828,483675 ,2,821,23100 ,2,822,203760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534670 ,2,827,38415 ,2,828,483680 ,2,821,26345 ,2,822,203650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534675 ,2,827,38415 ,2,828,483685 ,2,821,29485 ,2,822,86160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534680 ,2,827,75 ,2,828,483720 ,2,821,32800 ,2,822,120150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534685 ,2,827,75 ,2,828,483725 ,2,821,37580 ,2,822,120235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534690 ,2,827,75 ,2,828,483730 ,2,821,42380 ,2,822,120170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534695 ,2,827,75 ,2,828,483735 ,2,821,46125 ,1,0,198665 ,1,1,198985 ,2,822,86650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534700 ,2,827,75 ,2,828,483740 ,2,821,50435 ,2,822,210125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534745 ,2,827,75 ,2,828,483745 ,2,821,52635 ,2,822,210135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534750 ,2,827,75 ,2,828,483750 ,2,821,54335 ,1,0,292855 ,2,822,185965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534755 ,2,827,75 ,2,828,483755 ,2,821,59130 ,1,0,45 ,1,1,325430 ,2,822,112155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493045 ,2,827,75 ,2,828,461560 ,2,821,60090 ,1,0,591215 ,1,1,45 ,1,2,325430 ,1,3,2210 ,1,4,542350 ,2,822,128585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534760 ,2,827,75 ,2,828,483770 ,2,821,64135 ,1,0,45 ,1,1,325430 ,2,822,141760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534765 ,2,827,75 ,2,828,483775 ,2,821,65835 ,1,0,45 ,1,1,325430 ,2,822,153290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534770 ,2,827,75 ,2,828,483780 ,2,821,68800 ,1,0,2210 ,1,1,542350 ,2,822,169465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534775 ,2,827,75 ,2,828,483785 ,2,821,73260 ,2,822,139525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534780 ,2,827,75 ,2,828,483790 ,2,821,74265 ,2,822,122245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534795 ,2,827,75 ,2,828,483795 ,2,821,75105 ,2,822,116715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534780 ,2,827,75 ,2,828,483800 ,2,821,75980 ,2,822,116820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534780 ,2,827,75 ,2,828,483805 ,2,821,76865 ,2,822,116695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534800 ,2,827,75 ,2,828,483830 ,2,821,77765 ,2,822,116870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534800 ,2,827,75 ,2,828,483835 ,2,821,78685 ,2,822,141730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534805 ,2,827,75 ,2,828,483840 ,2,821,81360 ,2,822,128595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534810 ,2,827,75 ,2,828,483845 ,2,821,103025 ,2,822,153250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534815 ,2,827,140745 ,2,828,483850 ,2,821,110735 ,2,822,153725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,483855 ,2,821,111765 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534325 ,2,827,75 ,2,828,483860 ,2,821,113680 ,2,822,141075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,57830 ,2,828,483890 ,2,821,114145 ,2,822,102370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534820 ,2,827,140765 ,2,828,483895 ,2,821,116490 ,2,822,123030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,533550 ,2,827,75 ,2,828,483900 ,2,821,117705 ,2,822,123040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534825 ,2,827,75 ,2,828,483905 ,2,821,133725 ,1,0,45 ,1,1,325430 ,2,822,122675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,422660 ,2,821,134775 ,1,0,45 ,1,1,325430 ,2,822,137970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,483915 ,2,821,135820 ,2,822,132585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534830 ,2,827,140775 ,2,828,483920 ,2,821,146520 ,1,0,161575 ,2,822,132340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534850 ,2,827,140775 ,2,828,483925 ,2,821,156790 ,1,0,593585 ,1,1,45 ,1,2,325430 ,2,822,113130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534855 ,2,827,75 ,2,828,483930 ,2,821,161000 ,1,0,45 ,1,1,325430 ,2,822,112895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,163005 ,1,0,45 ,1,1,11510 ,2,822,102760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,458325 ,2,821,164515 ,1,0,45 ,1,1,11510 ,2,822,114830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,166025 ,1,0,45 ,1,1,11510 ,2,822,138690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,167630 ,1,0,218160 ,2,822,125210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534860 ,2,827,75 ,2,828,483955 ,2,821,173425 ,1,0,45 ,1,1,11510 ,2,822,114935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,175060 ,1,0,45 ,1,1,11510 ,2,822,102720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493160 ,2,827,75 ,2,828,458325 ,2,821,176585 ,1,0,45 ,1,1,11510 ,2,822,114810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,178190 ,1,0,45 ,1,1,11510 ,2,822,138670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,469530 ,2,821,179775 ,1,0,15710 ,2,822,137945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534865 ,2,827,34150 ,2,828,483960 ,2,821,188595 ,2,822,122685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534875 ,2,827,75 ,2,828,483965 ,2,821,193030 ,1,0,45 ,1,1,11510 ,2,822,114910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492615 ,2,827,75 ,2,828,422660 ,2,821,194560 ,2,822,96790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,195000 ,2,822,210170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534885 ,2,827,75 ,2,828,483975 ,2,821,197315 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534880 ,2,827,75 ,2,828,483970 ,2,821,199215 ,1,0,312670 ,2,822,210180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534890 ,2,827,75 ,2,828,483980 ,2,821,202525 ,1,0,400430 ,1,1,199410 ,2,822,199400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,202845 ,1,0,400430 ,1,1,199240 ,2,822,199230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,203180 ,1,0,190660 ,1,1,212600 ,1,2,212590 ,1,3,168975 ,2,822,142945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534905 ,2,827,140795 ,2,828,483985 ,2,821,245550 ,2,822,88275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534910 ,2,827,75 ,2,828,483990 ,2,821,247500 ,2,822,202430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,484010 ,2,821,248520 ,2,822,202355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534915 ,2,827,75 ,2,828,484020 ,2,821,253480 ,2,822,202110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,484025 ,2,821,254365 ,1,0,333225 ,1,1,333190 ,2,822,202225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534930 ,2,827,75 ,2,828,484035 ,2,821,265440 ,2,822,210215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534920 ,2,827,75 ,2,828,484030 ,2,821,273765 ,1,0,218305 ,2,822,126785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534935 ,2,827,75 ,2,828,484040 ,2,821,275000 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534325 ,2,827,75 ,2,828,484045 ,2,821,276795 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534940 ,2,827,75 ,2,828,484080 ,2,821,280510 ,2,822,202100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,484085 ,2,821,281130 ,2,822,202045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534945 ,2,827,75 ,2,828,484090 ,2,821,286020 ,1,0,221465 ,2,822,96675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534975 ,2,827,75 ,2,828,484095 ,2,821,291050 ,1,0,208005 ,1,1,208015 ,1,2,208025 ,1,3,221500 ,2,822,96850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534975 ,2,827,75 ,2,828,484100 ,2,821,295995 ,1,0,221395 ,2,822,96745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534980 ,2,827,75 ,2,828,484105 ,2,821,299440 ,1,0,400430 ,1,1,88750 ,2,822,88715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,299745 ,2,822,92800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534985 ,2,827,75 ,2,828,484110 ,2,821,300985 ,2,822,92940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534990 ,2,827,75 ,2,828,484115 ,2,821,302770 ,2,822,202320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534995 ,2,827,75 ,2,828,484125 ,2,821,307470 ,1,0,333235 ,1,1,220570 ,2,822,202215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535000 ,2,827,75 ,2,828,484135 ,2,821,318265 ,2,822,96840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,318890 ,1,0,214105 ,1,1,45 ,1,2,13320 ,2,822,172145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535005 ,2,827,75 ,2,828,484140 ,2,821,321000 ,2,822,171610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,508415 ,2,827,75 ,2,828,484145 ,2,821,321810 ,2,822,170015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,484150 ,2,821,322670 ,2,822,172970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,323390 ,2,822,88065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535010 ,2,827,75 ,2,828,484155 ,2,821,325445 ,2,822,88045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,484160 ,2,821,326210 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,58345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535050 ,2,827,75 ,2,828,484200 ,2,821,328135 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535055 ,2,827,75 ,2,828,484205 ,2,821,332980 ,2,822,210255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535060 ,2,827,75 ,2,828,484210 ,2,821,336210 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535065 ,2,827,75 ,2,828,484215 ,2,821,338715 ,1,0,546830 ,2,822,88055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535080 ,2,827,75 ,2,828,484225 ,2,821,342505 ,2,822,210275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535085 ,2,827,75 ,2,828,484230 ,2,821,344410 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535090 ,2,827,75 ,2,828,484235 ,2,821,346750 ,1,0,609640 ,1,1,45 ,1,2,255425 ,2,822,119800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535095 ,2,827,75 ,2,828,484240 ,2,821,348580 ,1,0,45 ,1,1,255425 ,1,2,318170 ,2,822,118430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,522760 ,2,827,75 ,2,828,484250 ,2,821,350310 ,2,822,119810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516680 ,2,827,75 ,2,828,484255 ,2,821,351290 ,2,822,118440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535115 ,2,827,140930 ,2,828,484260 ,2,821,352550 ,1,0,164430 ,2,822,129545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,352860 ,1,0,400430 ,1,1,88160 ,2,822,88150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,353200 ,1,0,207740 ,2,822,120545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535120 ,2,827,75 ,2,828,484265 ,2,821,356030 ,2,822,118480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518090 ,2,827,75 ,2,828,484275 ,2,821,357005 ,2,822,126510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535125 ,2,827,75 ,2,828,484280 ,2,821,359860 ,2,822,186030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535130 ,2,827,75 ,2,828,484285 ,2,821,361795 ,2,822,186000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535135 ,2,827,75 ,2,828,484290 ,2,821,363040 ,2,822,186020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,363360 ,2,822,210315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535140 ,2,827,75 ,2,828,484335 ,2,821,365365 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535090 ,2,827,75 ,2,828,484340 ,2,821,367625 ,1,0,543080 ,1,1,587755 ,1,2,543080 ,1,3,2280 ,1,4,542145 ,1,5,2280 ,1,6,542095 ,1,7,2280 ,1,8,542145 ,1,9,2280 ,1,10,542095 ,1,11,2280 ,1,12,542095 ,1,13,2280 ,1,14,542095 ,1,15,340250 ,1,16,2280 ,1,17,542095 ,1,18,45 ,1,19,5900 ,1,20,2280 ,1,21,542095 ,1,22,45 ,1,23,5900 ,1,24,2280 ,1,25,542095 ,1,26,340240 ,1,27,2210 ,1,28,542350 ,1,29,2210 ,1,30,542350 ,2,822,92810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535145 ,2,827,75 ,2,828,484345 ,2,821,381755 ,1,0,374230 ,1,1,374255 ,2,822,92920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535150 ,2,827,75 ,2,828,484350 ,2,821,386240 ,1,0,543075 ,1,1,581465 ,1,2,543075 ,1,3,2280 ,1,4,542095 ,1,5,347205 ,1,6,2280 ,1,7,542095 ,1,8,340230 ,1,9,340215 ,2,822,92840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535185 ,2,827,75 ,2,828,484355 ,2,821,391525 ,1,0,374265 ,2,822,92950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535190 ,2,827,51190 ,2,828,484360 ,2,821,394115 ,2,822,92850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535195 ,2,827,75 ,2,828,484365 ,2,821,395230 ,2,822,92960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535200 ,2,827,75 ,2,828,484370 ,2,821,396520 ,1,0,356105 ,2,822,92790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535205 ,2,827,75 ,2,828,484395 ,2,821,399625 ,1,0,192820 ,1,1,167770 ,2,822,92930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535210 ,2,827,75 ,2,828,484400 ,2,821,403650 ,1,0,400430 ,1,1,129490 ,2,822,129440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,403860 ,1,0,400430 ,1,1,125410 ,2,822,125385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,404060 ,1,0,400430 ,1,1,125440 ,2,822,125430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,404220 ,1,0,400430 ,1,1,129410 ,2,822,129385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,404415 ,1,0,400430 ,1,1,126460 ,2,822,126450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,404620 ,2,822,127035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,484405 ,2,821,405030 ,1,0,332220 ,2,822,208020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535215 ,2,827,75 ,2,828,484410 ,2,821,405830 ,1,0,400430 ,1,1,126820 ,2,822,126795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,406040 ,2,822,210335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,406590 ,2,822,210345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,484420 ,2,821,406960 ,2,822,127145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,407295 ,1,0,234530 ,1,1,2135 ,1,2,234540 ,2,822,126205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535220 ,2,827,140980 ,2,828,484430 ,2,821,415335 ,1,0,332200 ,2,822,162280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535235 ,2,827,75 ,2,828,484435 ,2,821,418210 ,2,822,116920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535240 ,2,827,75 ,2,828,484450 ,2,821,419915 ,1,0,328630 ,2,822,128775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509315 ,2,827,75 ,2,828,484455 ,2,821,420210 ,2,822,162220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,484460 ,2,821,420605 ,1,0,213220 ,2,822,168340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535245 ,2,827,75 ,2,828,484465 ,2,821,422830 ,1,0,549435 ,1,1,213320 ,2,822,128755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535250 ,2,827,75 ,2,828,484480 ,2,821,425185 ,1,0,162370 ,2,822,127175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535255 ,2,827,75 ,2,828,484485 ,2,821,426375 ,2,822,202025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,484490 ,2,821,426900 ,2,822,202205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535260 ,2,827,75 ,2,828,484495 ,2,821,434360 ,2,822,202805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496435 ,2,827,75 ,2,828,484525 ,2,821,434905 ,2,822,202065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535265 ,2,827,75 ,2,828,484530 ,2,821,436175 ,2,822,202195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496145 ,2,827,75 ,2,828,484535 ,2,821,436980 ,2,822,202375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535270 ,2,827,75 ,2,828,484540 ,2,821,438220 ,1,0,333180 ,2,822,202130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535295 ,2,827,75 ,2,828,484545 ,2,821,440680 ,2,822,202245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535300 ,2,827,75 ,2,828,484550 ,2,821,442235 ,2,822,62795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535305 ,2,827,138095 ,2,828,484555 ,2,821,442685 ,2,822,61505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535310 ,2,827,138095 ,2,828,484560 ,2,821,443140 ,2,822,73050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,484600 ,2,821,443470 ,1,0,302765 ,1,1,302810 ,1,2,302800 ,1,3,302790 ,1,4,302610 ,2,822,199360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535315 ,2,827,75 ,2,828,484605 ,2,821,447345 ,2,822,122415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,484610 ,2,821,447960 ,1,0,591380 ,1,1,45 ,1,2,325430 ,2,822,139410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,422660 ,2,821,448560 ,1,0,590965 ,1,1,45 ,1,2,325430 ,2,822,122365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495045 ,2,827,75 ,2,828,469530 ,2,821,449400 ,2,822,202310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535320 ,2,827,75 ,2,828,484615 ,2,821,451320 ,2,822,202120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535325 ,2,827,75 ,2,828,484620 ,2,821,462465 ,1,0,304930 ,2,822,202235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535330 ,2,827,75 ,2,828,484625 ,2,821,472750 ,2,822,202685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,484630 ,2,821,473225 ,2,822,122375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,473425 ,2,822,179250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535365 ,2,827,75 ,2,828,484635 ,2,821,474275 ,1,0,318235 ,2,822,172605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535370 ,2,827,140990 ,2,828,484655 ,2,821,481220 ,2,822,173070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535375 ,2,827,75 ,2,828,484660 ,2,821,482575 ,2,822,179675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535380 ,2,827,75 ,2,828,484665 ,2,821,484220 ,2,822,179535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535385 ,2,827,75 ,2,828,484670 ,2,821,485020 ,1,0,166910 ,2,822,179450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535390 ,2,827,111035 ,2,828,484685 ,2,821,501910 ,1,0,318275 ,1,1,318255 ,2,822,179330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535395 ,2,827,75 ,2,828,484690 ,2,821,510690 ,2,822,179260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,484695 ,2,821,511180 ,1,0,591930 ,1,1,45 ,1,2,318355 ,1,3,214085 ,1,4,261465 ,1,5,318225 ,2,822,172615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535400 ,2,827,141000 ,2,828,484700 ,2,821,550780 ,1,0,45 ,1,1,318355 ,1,2,318245 ,2,822,173080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535430 ,2,827,104130 ,2,828,484735 ,2,821,553390 ,1,0,542510 ,1,1,591940 ,1,2,542510 ,2,822,179685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535435 ,2,827,75 ,2,828,484740 ,2,821,558665 ,2,822,179550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,484745 ,2,821,559285 ,1,0,542515 ,1,1,591940 ,1,2,542515 ,2,822,179460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535440 ,2,827,75 ,2,828,484750 ,2,821,564600 ,1,0,542520 ,1,1,591940 ,1,2,542520 ,2,822,179345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535445 ,2,827,75 ,2,828,484755 ,2,821,569425 ,2,822,202385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,569875 ,2,822,202255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,570610 ,2,822,210375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,484765 ,2,821,570980 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535090 ,2,827,75 ,2,828,484760 ,2,821,572390 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535090 ,2,827,75 ,2,828,484770 ,2,821,573835 ,1,0,220560 ,2,822,202730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535455 ,2,827,75 ,2,828,484785 ,2,821,575975 ,1,0,317020 ,2,822,172735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535460 ,2,827,75 ,2,828,484790 ,2,821,579140 ,1,0,317010 ,2,822,172790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535465 ,2,827,75 ,2,828,484795 ,2,821,583040 ,1,0,318655 ,1,1,45 ,1,2,11510 ,1,3,12085 ,1,4,166650 ,1,5,12075 ,1,6,12065 ,1,7,12055 ,1,8,45 ,1,9,11510 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,11510 ,2,822,178625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535470 ,2,827,141030 ,2,828,484800 ,2,821,73385 ,1,0,262705 ,2,822,179195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535490 ,2,827,141060 ,2,828,484805 ,2,821,93665 ,2,822,173030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,484810 ,2,821,94460 ,2,822,179480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496630 ,2,827,75 ,2,828,484820 ,2,821,95270 ,2,822,168770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535495 ,2,827,141070 ,2,828,484860 ,2,821,104975 ,1,0,318400 ,1,1,318390 ,1,2,318365 ,2,822,169580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535500 ,2,827,141080 ,2,828,484865 ,2,821,131295 ,2,822,210395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,484870 ,2,821,131730 ,2,822,172745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535505 ,2,827,75 ,2,828,484875 ,2,821,136625 ,2,822,172800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535515 ,2,827,75 ,2,828,484890 ,2,821,140275 ,2,822,59055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535520 ,2,827,24980 ,2,828,484895 ,2,821,145910 ,2,822,210440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535525 ,2,827,24685 ,2,828,484900 ,2,821,157885 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,59275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495160 ,2,827,75 ,2,828,484905 ,2,821,159750 ,1,0,334275 ,2,822,210450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535530 ,2,827,24440 ,2,828,484920 ,2,821,176040 ,1,0,220740 ,2,822,208720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535555 ,2,827,75 ,2,828,484925 ,2,821,177240 ,1,0,220690 ,1,1,165080 ,2,822,208655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506795 ,2,827,75 ,2,828,484930 ,2,821,178315 ,2,822,172890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535560 ,2,827,75 ,2,828,484935 ,2,821,179660 ,2,822,59065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535565 ,2,827,24980 ,2,828,484940 ,2,821,185250 ,2,822,210460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535570 ,2,827,24440 ,2,828,484945 ,2,821,197270 ,1,0,584405 ,1,1,45 ,1,2,318355 ,2,822,172910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535575 ,2,827,75 ,2,828,484950 ,2,821,199525 ,2,822,172755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,200395 ,1,0,543970 ,2,822,59230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535580 ,2,827,75 ,2,828,484955 ,2,821,204125 ,1,0,45 ,1,1,318355 ,2,822,168780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535585 ,2,827,75 ,2,828,484970 ,2,821,206775 ,1,0,591950 ,1,1,45 ,1,2,318355 ,1,3,318345 ,2,822,169590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535590 ,2,827,75 ,2,828,484975 ,2,821,210065 ,1,0,543920 ,2,822,79290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535615 ,2,827,75 ,2,828,484980 ,2,821,214295 ,2,822,58995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535620 ,2,827,75 ,2,828,484985 ,2,821,225965 ,2,822,210475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535625 ,2,827,75 ,2,828,484995 ,2,821,236145 ,2,822,172940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,485000 ,2,821,236935 ,2,822,208125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535630 ,2,827,75 ,2,828,485005 ,2,821,243140 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,485010 ,2,821,245070 ,2,822,210495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,245435 ,2,822,208730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535635 ,2,827,75 ,2,828,485040 ,2,821,246405 ,2,822,190025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246665 ,2,822,190110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246925 ,2,822,193020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,247225 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,485045 ,2,821,249080 ,2,822,210525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,249285 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,58365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495165 ,2,827,75 ,2,828,485050 ,2,821,251195 ,1,0,334235 ,2,822,210535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535640 ,2,827,24440 ,2,828,485055 ,2,821,262005 ,2,822,210545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535645 ,2,827,75 ,2,828,485065 ,2,821,264095 ,2,822,210555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534890 ,2,827,75 ,2,828,485070 ,2,821,267310 ,1,0,312845 ,2,822,210570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535650 ,2,827,75 ,2,828,485075 ,2,821,268590 ,1,0,312855 ,2,822,210580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535685 ,2,827,75 ,2,828,485080 ,2,821,269730 ,1,0,207505 ,1,1,170085 ,1,2,2210 ,1,3,542350 ,1,4,2210 ,1,5,542350 ,2,822,58335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535690 ,2,827,24545 ,2,828,485100 ,2,821,293505 ,2,822,210600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535700 ,2,827,75 ,2,828,485110 ,2,821,295950 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535695 ,2,827,75 ,2,828,485105 ,2,821,297550 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535705 ,2,827,75 ,2,828,485115 ,2,821,300055 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535705 ,2,827,75 ,2,828,485125 ,2,821,302650 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535710 ,2,827,75 ,2,828,485130 ,2,821,305180 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535715 ,2,827,75 ,2,828,485135 ,2,821,307475 ,1,0,594480 ,1,1,45 ,1,2,215585 ,2,822,66480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535720 ,2,827,30175 ,2,828,482480 ,2,821,311315 ,2,822,59500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,485140 ,2,821,312005 ,2,822,155710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,313285 ,2,822,71140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535755 ,2,827,75 ,2,828,485180 ,2,821,314005 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534325 ,2,827,75 ,2,828,485185 ,2,821,315795 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,210740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535760 ,2,827,75 ,2,828,485190 ,2,821,318895 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,322005 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,322050 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,322125 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,322440 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,322560 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,324840 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,326835 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,328250 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,329060 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,329810 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,330765 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,331280 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,331880 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,332445 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,338845 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,341415 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,344195 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,345580 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,346640 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,349435 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,353100 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,353835 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,356420 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,357960 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,361225 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,361855 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,363470 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,364045 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,365580 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,366085 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,367580 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,367945 ,2,822,45 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,371905 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,2210 ,1,13,542350 ,1,14,2210 ,1,15,542350 ,1,16,2210 ,1,17,542350 ,2,822,210750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535765 ,2,827,87485 ,2,828,485195 ,2,821,394995 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,210760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535770 ,2,827,75 ,2,828,485205 ,2,821,398595 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,210770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,485210 ,2,821,401395 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,4315 ,2,822,210785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535790 ,2,827,75 ,2,828,485215 ,2,821,404390 ,2,822,590700 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,404800 ,1,0,45 ,1,1,209800 ,1,2,590700 ,1,3,45 ,1,4,4315 ,2,822,210795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535795 ,2,827,75 ,2,828,485220 ,2,821,407465 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,2,822,210805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535800 ,2,827,75 ,2,828,485245 ,2,821,410115 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,210815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535810 ,2,827,75 ,2,828,485250 ,2,821,413705 ,2,822,210860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535815 ,2,827,75 ,2,828,485255 ,2,821,414745 ,2,822,210870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,415780 ,1,0,45 ,1,1,327945 ,1,2,183205 ,2,822,210880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535820 ,2,827,54935 ,2,828,485260 ,2,821,418370 ,2,822,210890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535825 ,2,827,75 ,2,828,485275 ,2,821,419495 ,1,0,45 ,1,1,313175 ,1,2,45 ,1,3,313165 ,2,822,210900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535830 ,2,827,75 ,2,828,485280 ,2,821,422475 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,2,822,210910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535835 ,2,827,75 ,2,828,485285 ,2,821,430000 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,210920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535840 ,2,827,34110 ,2,828,485290 ,2,821,445325 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,2,822,210930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535845 ,2,827,75 ,2,828,485335 ,2,821,449080 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,210970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,485340 ,2,821,451915 ,1,0,45 ,1,1,313205 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,313195 ,2,822,210980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535810 ,2,827,75 ,2,828,485345 ,2,821,455535 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,210990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535885 ,2,827,75 ,2,828,485350 ,2,821,458520 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,243260 ,2,822,211000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535890 ,2,827,75 ,2,828,485355 ,2,821,460985 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,243260 ,2,822,211010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535890 ,2,827,75 ,2,828,485360 ,2,821,463580 ,1,0,45 ,1,1,209800 ,2,822,211020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485365 ,2,821,465820 ,1,0,45 ,1,1,209800 ,2,822,211030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535900 ,2,827,75 ,2,828,485370 ,2,821,467975 ,1,0,45 ,1,1,209800 ,2,822,211040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485395 ,2,821,470110 ,1,0,45 ,1,1,209800 ,2,822,211065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485400 ,2,821,472270 ,1,0,45 ,1,1,209800 ,2,822,211075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485405 ,2,821,474475 ,1,0,45 ,1,1,209800 ,2,822,211085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485410 ,2,821,476795 ,1,0,45 ,1,1,209800 ,1,2,213415 ,2,822,211095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485425 ,2,821,479060 ,1,0,45 ,1,1,209800 ,1,2,213540 ,2,822,211120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485430 ,2,821,481380 ,1,0,45 ,1,1,313305 ,1,2,45 ,1,3,5370 ,1,4,45 ,1,5,5900 ,2,822,211130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535905 ,2,827,141325 ,2,828,485435 ,2,821,487285 ,1,0,45 ,1,1,313305 ,1,2,45 ,1,3,5370 ,1,4,45 ,1,5,5900 ,2,822,211140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535910 ,2,827,126880 ,2,828,485440 ,2,821,492320 ,2,822,590770 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,493200 ,1,0,354045 ,1,1,590770 ,1,2,45 ,1,3,9375 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,1,10,45 ,1,11,11510 ,1,12,45 ,1,13,11510 ,1,14,45 ,1,15,11510 ,1,16,45 ,1,17,11510 ,1,18,45 ,1,19,11510 ,1,20,45 ,1,21,11510 ,1,22,45 ,1,23,11510 ,1,24,45 ,1,25,11510 ,2,822,211150 ,2,823,240 ,2,824,418570 ,2,825,351970 ,2,826,535915 ,2,827,141335 ,2,828,485455 ,2,821,511045 ,1,0,211150 ,2,822,211185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,485460 ,2,821,512235 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,211215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,485465 ,2,821,515185 ,2,822,211230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,515750 ,2,822,590795 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,516180 ,1,0,45 ,1,1,5900 ,1,2,313400 ,2,822,211240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535955 ,2,827,87510 ,2,828,485470 ,2,821,520900 ,1,0,45 ,1,1,5900 ,2,822,211250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535960 ,2,827,75 ,2,828,485480 ,2,821,522535 ,1,0,45 ,1,1,5900 ,2,822,211260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535960 ,2,827,75 ,2,828,485485 ,2,821,524105 ,1,0,45 ,1,1,5900 ,2,822,211285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535960 ,2,827,75 ,2,828,485490 ,2,821,525740 ,1,0,45 ,1,1,5900 ,2,822,211295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535960 ,2,827,75 ,2,828,485495 ,2,821,527315 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,243260 ,2,822,211305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535890 ,2,827,75 ,2,828,485535 ,2,821,529855 ,1,0,45 ,1,1,209800 ,2,822,211315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535900 ,2,827,75 ,2,828,485540 ,2,821,532165 ,1,0,45 ,1,1,209800 ,2,822,211325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485545 ,2,821,534490 ,1,0,45 ,1,1,209800 ,2,822,211335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485550 ,2,821,536725 ,1,0,45 ,1,1,5900 ,2,822,211345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,485560 ,2,821,537705 ,1,0,45 ,1,1,209800 ,1,2,213205 ,2,822,211355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485565 ,2,821,539995 ,2,822,211380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535965 ,2,827,75 ,2,828,485570 ,2,821,541505 ,1,0,45 ,1,1,214155 ,1,2,45 ,1,3,331690 ,1,4,367075 ,1,5,357320 ,1,6,372975 ,1,7,373285 ,2,822,211400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535970 ,2,827,24545 ,2,828,485575 ,2,821,549160 ,2,822,211410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535985 ,2,827,75 ,2,828,485605 ,2,821,550600 ,2,822,211435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535985 ,2,827,75 ,2,828,485615 ,2,821,552015 ,2,822,211455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,552775 ,1,0,211455 ,2,822,211500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535990 ,2,827,75 ,2,828,485620 ,2,821,553990 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,243260 ,2,822,211510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535890 ,2,827,75 ,2,828,485630 ,2,821,556575 ,2,822,590845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,557430 ,1,0,45 ,1,1,209800 ,2,822,211520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485635 ,2,821,559735 ,1,0,45 ,1,1,209800 ,2,822,211530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485640 ,2,821,562055 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,211540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535995 ,2,827,75 ,2,828,485645 ,2,821,564830 ,1,0,45 ,1,1,209800 ,2,822,211550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485665 ,2,821,567080 ,1,0,45 ,1,1,209800 ,1,2,213335 ,2,822,211560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,485670 ,2,821,569395 ,1,0,45 ,1,1,243260 ,2,822,211570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536000 ,2,827,141435 ,2,828,485675 ,2,821,591105 ,1,0,45 ,1,1,243260 ,2,822,211595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536020 ,2,827,141445 ,2,828,485680 ,2,821,612100 ,1,0,365765 ,1,1,365570 ,1,2,363790 ,1,3,365800 ,1,4,161425 ,1,5,2210 ,1,6,542350 ,1,7,2210 ,1,8,542350 ,2,822,211605 ,2,823,541285 ,2,824,418575 ,2,825,352845 ,2,826,536025 ,2,827,141455 ,2,828,485685 ,2,821,629240 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,211625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,485690 ,2,821,632140 ,2,822,211635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536030 ,2,827,75 ,2,828,485695 ,2,821,633230 ,2,822,590895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,633605 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,211645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535995 ,2,827,75 ,2,828,485700 ,2,821,636245 ,2,822,590900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,636640 ,1,0,45 ,1,1,255425 ,1,2,314555 ,1,3,229630 ,2,822,211655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536035 ,2,827,75 ,2,828,485720 ,2,821,640570 ,2,822,211695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536040 ,2,827,75 ,2,828,485725 ,2,821,641670 ,1,0,45 ,1,1,255425 ,1,2,314535 ,2,822,211715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536045 ,2,827,75 ,2,828,485730 ,2,821,645515 ,2,822,211725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536050 ,2,827,141515 ,2,828,485735 ,2,821,646700 ,1,0,45 ,1,1,255425 ,1,2,314525 ,2,822,211740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536055 ,2,827,75 ,2,828,485740 ,2,821,650415 ,2,822,211750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536065 ,2,827,141540 ,2,828,485745 ,2,821,651815 ,2,822,590950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,652200 ,1,0,45 ,1,1,255425 ,2,822,211760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536070 ,2,827,75 ,2,828,485750 ,2,821,655855 ,2,822,211770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536075 ,2,827,141560 ,2,828,485755 ,2,821,657055 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,211815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,485760 ,2,821,659875 ,2,822,211825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536080 ,2,827,75 ,2,828,485765 ,2,821,660780 ,1,0,45 ,1,1,4315 ,2,822,211835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536085 ,2,827,75 ,2,828,485770 ,2,821,663395 ,1,0,256855 ,2,822,211870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536090 ,2,827,75 ,2,828,485775 ,2,821,664360 ,1,0,256865 ,2,822,211880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536095 ,2,827,75 ,2,828,485785 ,2,821,665250 ,1,0,256770 ,2,822,211890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536095 ,2,827,75 ,2,828,485790 ,2,821,666170 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,1,4,314675 ,1,5,314665 ,1,6,314655 ,1,7,314645 ,1,8,314635 ,1,9,161515 ,2,822,211915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536100 ,2,827,141600 ,2,828,485795 ,2,821,7555 ,1,0,374415 ,2,822,211925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536140 ,2,827,75 ,2,828,485800 ,2,821,9055 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,212880 ,1,4,314820 ,2,822,211935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536145 ,2,827,75 ,2,828,485855 ,2,821,16790 ,1,0,45 ,1,1,323485 ,1,2,314790 ,1,3,571980 ,1,4,45 ,1,5,5900 ,2,822,211945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536150 ,2,827,33420 ,2,828,485860 ,2,821,24495 ,1,0,609845 ,1,1,45 ,1,2,7585 ,1,3,45 ,1,4,11085 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,2,822,211970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536155 ,2,827,75 ,2,828,485865 ,2,821,31035 ,1,0,607905 ,1,1,45 ,1,2,340435 ,2,822,211980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536165 ,2,827,75 ,2,828,485870 ,2,821,34670 ,1,0,607765 ,1,1,45 ,1,2,340435 ,2,822,211990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536170 ,2,827,75 ,2,828,485880 ,2,821,38375 ,1,0,45 ,1,1,329980 ,1,2,314840 ,1,3,199415 ,2,822,212000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536175 ,2,827,75 ,2,828,485885 ,2,821,42490 ,1,0,45 ,1,1,330070 ,2,822,212025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536180 ,2,827,75 ,2,828,485890 ,2,821,46660 ,2,822,212035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536210 ,2,827,75 ,2,828,485895 ,2,821,48065 ,2,822,212045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536210 ,2,827,75 ,2,828,485920 ,2,821,49470 ,2,822,212055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536215 ,2,827,75 ,2,828,485925 ,2,821,51030 ,2,822,212070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,485930 ,2,821,52450 ,1,0,314940 ,2,822,212080 ,2,823,541290 ,2,824,418600 ,2,825,352855 ,2,826,536225 ,2,827,75 ,2,828,485935 ,2,821,59255 ,1,0,578265 ,1,1,45 ,1,2,195155 ,1,3,354110 ,1,4,354120 ,2,822,212090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536235 ,2,827,75 ,2,828,485940 ,2,821,63905 ,1,0,314950 ,1,1,45 ,1,2,5900 ,2,822,212100 ,2,823,541295 ,2,824,418605 ,2,825,352870 ,2,826,536240 ,2,827,75 ,2,828,485945 ,2,821,72455 ,1,0,314960 ,2,822,212150 ,2,823,541300 ,2,824,418610 ,2,825,352880 ,2,826,536245 ,2,827,141710 ,2,828,485950 ,2,821,87220 ,2,822,212160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,485955 ,2,821,88680 ,2,822,212170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,485975 ,2,821,90070 ,2,822,212180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536250 ,2,827,75 ,2,828,485980 ,2,821,91565 ,2,822,212195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536210 ,2,827,75 ,2,828,485985 ,2,821,92985 ,2,822,212205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,94465 ,1,0,247490 ,2,822,212215 ,2,823,541305 ,2,824,418615 ,2,825,352890 ,2,826,536265 ,2,827,75 ,2,828,485990 ,2,821,101630 ,1,0,45 ,1,1,179760 ,2,822,212225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536270 ,2,827,75 ,2,828,486000 ,2,821,104760 ,1,0,45 ,1,1,276975 ,2,822,212265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536275 ,2,827,75 ,2,828,486005 ,2,821,108235 ,1,0,45 ,1,1,276975 ,2,822,212275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536275 ,2,827,75 ,2,828,486010 ,2,821,111720 ,1,0,315050 ,2,822,212285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536280 ,2,827,75 ,2,828,486015 ,2,821,113910 ,2,822,212295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536290 ,2,827,75 ,2,828,486040 ,2,821,115825 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,212305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535885 ,2,827,75 ,2,828,486045 ,2,821,120685 ,2,822,212315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536295 ,2,827,75 ,2,828,486050 ,2,821,122760 ,2,822,212325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536300 ,2,827,75 ,2,828,486055 ,2,821,125795 ,2,822,212335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536305 ,2,827,75 ,2,828,486065 ,2,821,127190 ,2,822,212360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536330 ,2,827,75 ,2,828,486070 ,2,821,128685 ,2,822,212370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536335 ,2,827,75 ,2,828,486075 ,2,821,131300 ,2,822,591125 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,132600 ,1,0,315355 ,1,1,310645 ,2,822,212380 ,2,823,541310 ,2,824,418630 ,2,825,352900 ,2,826,536340 ,2,827,75 ,2,828,486080 ,2,821,138545 ,1,0,211125 ,1,1,356160 ,1,2,355425 ,2,822,212390 ,2,823,541315 ,2,824,418635 ,2,825,352930 ,2,826,536345 ,2,827,75 ,2,828,486105 ,2,821,146345 ,2,822,212405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536355 ,2,827,75 ,2,828,486110 ,2,821,148380 ,2,822,212415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,486115 ,2,821,149830 ,2,822,591130 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,150445 ,1,0,591130 ,1,1,45 ,1,2,315455 ,2,822,212425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536360 ,2,827,75 ,2,828,486120 ,2,821,153390 ,1,0,45 ,1,1,5900 ,2,822,212435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536365 ,2,827,75 ,2,828,486125 ,2,821,155335 ,1,0,45 ,1,1,5900 ,2,822,212475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536365 ,2,827,75 ,2,828,486130 ,2,821,157330 ,1,0,45 ,1,1,5900 ,2,822,212485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492780 ,2,827,75 ,2,828,486135 ,2,821,159025 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,358090 ,2,822,212495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536370 ,2,827,75 ,2,828,486140 ,2,821,169995 ,1,0,45 ,1,1,209400 ,2,822,212505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536395 ,2,827,75 ,2,828,486170 ,2,821,174545 ,2,822,212515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,176090 ,2,822,212525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,177620 ,1,0,45 ,1,1,4315 ,2,822,212535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536400 ,2,827,75 ,2,828,486175 ,2,821,181070 ,1,0,45 ,1,1,4315 ,1,2,250540 ,1,3,45 ,1,4,5900 ,1,5,315745 ,1,6,354180 ,1,7,260640 ,1,8,45 ,1,9,5900 ,2,822,212545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536405 ,2,827,141855 ,2,828,486180 ,2,821,199780 ,2,822,212580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,201380 ,2,822,212590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536410 ,2,827,75 ,2,828,486185 ,2,821,213075 ,2,822,212600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536410 ,2,827,75 ,2,828,486190 ,2,821,224740 ,1,0,577430 ,1,1,45 ,1,2,315955 ,2,822,212610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536415 ,2,827,75 ,2,828,486195 ,2,821,228370 ,1,0,45 ,1,1,179760 ,1,2,354140 ,2,822,212625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536420 ,2,827,75 ,2,828,486200 ,2,821,231985 ,1,0,45 ,1,1,179760 ,2,822,212635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536420 ,2,827,75 ,2,828,486205 ,2,821,235605 ,2,822,212645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536425 ,2,827,75 ,2,828,486230 ,2,821,237680 ,1,0,316150 ,1,1,316140 ,1,2,45 ,1,3,5900 ,1,4,316130 ,1,5,45 ,1,6,5900 ,1,7,45 ,1,8,5900 ,1,9,45 ,1,10,5900 ,1,11,316120 ,1,12,316110 ,1,13,45 ,1,14,5900 ,1,15,316100 ,1,16,45 ,1,17,5900 ,1,18,316075 ,1,19,45 ,1,20,5900 ,1,21,45 ,1,22,5900 ,1,23,316065 ,1,24,316055 ,1,25,45 ,1,26,5900 ,1,27,45 ,1,28,5900 ,1,29,2210 ,1,30,542350 ,2,822,212655 ,2,823,541320 ,2,824,418640 ,2,825,352940 ,2,826,536430 ,2,827,75 ,2,828,486235 ,2,821,269725 ,1,0,252930 ,1,1,252920 ,2,822,212695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536465 ,2,827,141910 ,2,828,486240 ,2,821,276740 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,316280 ,1,5,212695 ,1,6,162100 ,2,822,212705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536470 ,2,827,75 ,2,828,486245 ,2,821,282205 ,1,0,45 ,1,1,276975 ,2,822,212715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536275 ,2,827,75 ,2,828,486250 ,2,821,285560 ,1,0,45 ,1,1,276975 ,2,822,212725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536275 ,2,827,75 ,2,828,486255 ,2,821,288885 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,315530 ,2,822,212740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536475 ,2,827,75 ,2,828,486260 ,2,821,296370 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,212750 ,2,823,240 ,2,824,418645 ,2,825,351970 ,2,826,536480 ,2,827,141335 ,2,828,486265 ,2,821,302870 ,1,0,212750 ,2,822,212760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,304860 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,2,822,212815 ,2,823,240 ,2,824,418670 ,2,825,351970 ,2,826,536485 ,2,827,141335 ,2,828,486300 ,2,821,317205 ,1,0,212815 ,2,822,212825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,485460 ,2,821,319130 ,1,0,569580 ,1,1,45 ,1,2,5900 ,1,3,548760 ,2,822,212835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536365 ,2,827,75 ,2,828,486305 ,2,821,321075 ,1,0,542490 ,1,1,609750 ,1,2,542490 ,2,822,212845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536490 ,2,827,75 ,2,828,486310 ,2,821,324685 ,1,0,45 ,1,1,3525 ,2,822,212865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536495 ,2,827,75 ,2,828,486325 ,2,821,328520 ,1,0,45 ,1,1,189535 ,2,822,212875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536500 ,2,827,75 ,2,828,486330 ,2,821,332930 ,1,0,561380 ,1,1,45 ,1,2,5900 ,2,822,212920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536515 ,2,827,75 ,2,828,486335 ,2,821,334945 ,1,0,45 ,1,1,5900 ,2,822,212930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536515 ,2,827,75 ,2,828,486340 ,2,821,337005 ,2,822,591365 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,338435 ,1,0,45 ,1,1,5900 ,2,822,212940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497230 ,2,827,75 ,2,828,486355 ,2,821,340220 ,1,0,45 ,1,1,5900 ,1,2,549995 ,2,822,212950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536515 ,2,827,75 ,2,828,486360 ,2,821,342190 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,2,822,212960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536520 ,2,827,142000 ,2,828,486365 ,2,821,347490 ,2,822,212970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536525 ,2,827,75 ,2,828,486370 ,2,821,349215 ,2,822,212980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,350695 ,2,822,212990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,352205 ,2,822,213030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,353720 ,2,822,213040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536530 ,2,827,75 ,2,828,486375 ,2,821,356470 ,1,0,552765 ,2,822,213050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536535 ,2,827,75 ,2,828,486380 ,2,821,359235 ,1,0,213050 ,2,822,213060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536540 ,2,827,75 ,2,828,486385 ,2,821,361800 ,1,0,611435 ,1,1,45 ,1,2,195155 ,1,3,213040 ,2,822,213080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536545 ,2,827,75 ,2,828,486390 ,2,821,366505 ,1,0,45 ,1,1,255425 ,1,2,316980 ,2,822,213100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536550 ,2,827,75 ,2,828,486420 ,2,821,377245 ,2,822,213110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536585 ,2,827,141515 ,2,828,486425 ,2,821,378230 ,1,0,45 ,1,1,255425 ,2,822,213140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536590 ,2,827,75 ,2,828,486430 ,2,821,385445 ,2,822,213150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536585 ,2,827,142055 ,2,828,486435 ,2,821,386405 ,1,0,45 ,1,1,179760 ,2,822,213220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536595 ,2,827,75 ,2,828,486445 ,2,821,388835 ,2,822,213255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,389475 ,2,822,213265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536330 ,2,827,75 ,2,828,486450 ,2,821,390365 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,213275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536600 ,2,827,75 ,2,828,486455 ,2,821,393145 ,2,822,591535 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,393550 ,2,822,213285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536610 ,2,827,75 ,2,828,486460 ,2,821,394910 ,2,822,213300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536610 ,2,827,75 ,2,828,486480 ,2,821,396195 ,1,0,45 ,1,1,213155 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,1,14,573830 ,1,15,45 ,1,16,5900 ,2,822,213310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536615 ,2,827,142210 ,2,828,486485 ,2,821,405445 ,1,0,45 ,1,1,179760 ,2,822,213320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536620 ,2,827,75 ,2,828,486490 ,2,821,409320 ,2,822,213330 ,2,823,541345 ,2,824,418675 ,2,825,352950 ,2,826,536625 ,2,827,75 ,2,828,486495 ,2,821,411530 ,1,0,45 ,1,1,209800 ,1,2,45 ,1,3,5900 ,1,4,317425 ,2,822,213360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536640 ,2,827,75 ,2,828,486500 ,2,821,413910 ,1,0,45 ,1,1,211340 ,1,2,213360 ,1,3,138460 ,2,822,213370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536645 ,2,827,142245 ,2,828,486505 ,2,821,421715 ,1,0,609355 ,1,1,45 ,1,2,5900 ,2,822,213380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536650 ,2,827,75 ,2,828,486510 ,2,821,423745 ,1,0,45 ,1,1,5900 ,2,822,213390 ,2,823,541350 ,2,824,418680 ,2,825,352960 ,2,826,536655 ,2,827,75 ,2,828,486515 ,2,821,428750 ,1,0,45 ,1,1,211340 ,1,2,45 ,1,3,5900 ,1,4,317435 ,2,822,213410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536660 ,2,827,75 ,2,828,486550 ,2,821,433335 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,162470 ,1,5,45 ,1,6,5900 ,1,7,2210 ,1,8,542350 ,2,822,213420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536665 ,2,827,142320 ,2,828,486555 ,2,821,443830 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,4315 ,2,822,213430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536670 ,2,827,75 ,2,828,486560 ,2,821,446815 ,1,0,45 ,1,1,317515 ,2,822,213440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536675 ,2,827,75 ,2,828,486565 ,2,821,449250 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,213470 ,2,823,240 ,2,824,418685 ,2,825,351970 ,2,826,536480 ,2,827,141335 ,2,828,486570 ,2,821,453170 ,2,822,591615 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,454035 ,1,0,591615 ,1,1,45 ,1,2,9375 ,1,3,45 ,1,4,11510 ,1,5,45 ,1,6,11510 ,2,822,213480 ,2,823,240 ,2,824,418690 ,2,825,351970 ,2,826,536705 ,2,827,141335 ,2,828,486575 ,2,821,462405 ,1,0,213480 ,2,822,213490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536710 ,2,827,75 ,2,828,486580 ,2,821,463610 ,1,0,213470 ,2,822,213500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536710 ,2,827,75 ,2,828,486295 ,2,821,464835 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,4315 ,1,4,162550 ,2,822,213515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536715 ,2,827,75 ,2,828,486585 ,2,821,468785 ,2,822,591670 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,469545 ,1,0,45 ,1,1,209800 ,2,822,213525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536720 ,2,827,75 ,2,828,486595 ,2,821,471540 ,1,0,213535 ,2,822,213545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536730 ,2,827,75 ,2,828,486600 ,2,821,473165 ,2,822,213575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,473810 ,1,0,45 ,1,1,344025 ,2,822,213585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536735 ,2,827,75 ,2,828,486605 ,2,821,476410 ,1,0,213575 ,1,1,213545 ,2,822,213595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536740 ,2,827,75 ,2,828,486610 ,2,821,479285 ,1,0,45 ,1,1,5900 ,1,2,549960 ,2,822,213605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536745 ,2,827,75 ,2,828,486620 ,2,821,480450 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,2,822,213620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536765 ,2,827,83590 ,2,828,486625 ,2,821,482730 ,2,822,213630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536215 ,2,827,75 ,2,828,486630 ,2,821,483640 ,1,0,45 ,1,1,11690 ,1,2,45 ,1,3,5900 ,1,4,317935 ,1,5,317925 ,1,6,45 ,1,7,5900 ,2,822,213650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536770 ,2,827,75 ,2,828,486635 ,2,821,493195 ,2,822,591730 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,494025 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,213695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536775 ,2,827,75 ,2,828,486660 ,2,821,501440 ,1,0,591745 ,1,1,45 ,1,2,243205 ,1,3,317960 ,2,822,213705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536780 ,2,827,142375 ,2,828,486665 ,2,821,506615 ,1,0,45 ,1,1,216580 ,2,822,213715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536790 ,2,827,75 ,2,828,486670 ,2,821,510110 ,1,0,45 ,1,1,216580 ,2,822,213730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536790 ,2,827,75 ,2,828,486675 ,2,821,513610 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,213740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536795 ,2,827,75 ,2,828,486685 ,2,821,517030 ,1,0,45 ,1,1,216580 ,2,822,213750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536790 ,2,827,75 ,2,828,486690 ,2,821,520450 ,1,0,45 ,1,1,216580 ,2,822,213760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536800 ,2,827,75 ,2,828,486695 ,2,821,524025 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,213800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536795 ,2,827,75 ,2,828,486700 ,2,821,527515 ,1,0,45 ,1,1,216580 ,1,2,317980 ,2,822,213810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536805 ,2,827,75 ,2,828,486735 ,2,821,529860 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,213820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536820 ,2,827,75 ,2,828,486740 ,2,821,537335 ,1,0,45 ,1,1,216580 ,2,822,213830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536825 ,2,827,55865 ,2,828,486745 ,2,821,541085 ,1,0,45 ,1,1,216580 ,2,822,213850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536830 ,2,827,75 ,2,828,486750 ,2,821,543525 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,213860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536835 ,2,827,75 ,2,828,486760 ,2,821,550775 ,1,0,45 ,1,1,216580 ,2,822,213870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536825 ,2,827,55865 ,2,828,486765 ,2,821,554445 ,1,0,45 ,1,1,216580 ,2,822,213880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536830 ,2,827,75 ,2,828,486770 ,2,821,556925 ,1,0,45 ,1,1,4315 ,2,822,213920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536840 ,2,827,75 ,2,828,486775 ,2,821,558595 ,2,822,591800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,559615 ,1,0,610505 ,1,1,45 ,1,2,318015 ,1,3,45 ,1,4,318005 ,1,5,591800 ,1,6,45 ,1,7,5900 ,2,822,213930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536845 ,2,827,75 ,2,828,486800 ,2,821,562870 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,5900 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,1,8,45 ,1,9,5900 ,1,10,45 ,1,11,5900 ,1,12,45 ,1,13,5900 ,2,822,213940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536850 ,2,827,142435 ,2,828,486805 ,2,821,571785 ,1,0,45 ,1,1,309980 ,2,822,213950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536855 ,2,827,75 ,2,828,486810 ,2,821,574045 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,213960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536875 ,2,827,75 ,2,828,486815 ,2,821,578250 ,1,0,45 ,1,1,195155 ,2,822,213970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536880 ,2,827,75 ,2,828,486825 ,2,821,580085 ,1,0,580590 ,1,1,45 ,1,2,7585 ,1,3,45 ,1,4,11085 ,1,5,318035 ,2,822,213980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536885 ,2,827,75 ,2,828,486830 ,2,821,585340 ,1,0,580615 ,1,1,45 ,1,2,342050 ,2,822,213990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536890 ,2,827,55865 ,2,828,486835 ,2,821,588975 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,214025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536900 ,2,827,75 ,2,828,486840 ,2,821,592000 ,2,822,591875 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,592425 ,1,0,45 ,1,1,213155 ,2,822,214035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536905 ,2,827,75 ,2,828,486865 ,2,821,595770 ,1,0,591875 ,1,1,45 ,1,2,329440 ,1,3,2210 ,1,4,542350 ,2,822,214045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536910 ,2,827,142475 ,2,828,486870 ,2,821,605085 ,2,822,591890 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,605895 ,1,0,45 ,1,1,209800 ,2,822,214055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536915 ,2,827,75 ,2,828,486875 ,2,821,608405 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,214075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536950 ,2,827,75 ,2,828,486880 ,2,821,611330 ,1,0,45 ,1,1,8740 ,2,822,214085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536955 ,2,827,75 ,2,828,486895 ,2,821,612815 ,1,0,280875 ,2,822,214095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536960 ,2,827,75 ,2,828,486900 ,2,821,613800 ,2,822,591940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,614610 ,2,822,214105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536960 ,2,827,75 ,2,828,486905 ,2,821,615560 ,2,822,591950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,616250 ,1,0,45 ,1,1,179760 ,2,822,214150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536965 ,2,827,75 ,2,828,486910 ,2,821,618710 ,2,822,214160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,619360 ,1,0,45 ,1,1,179760 ,2,822,214170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536970 ,2,827,75 ,2,828,486950 ,2,821,620950 ,1,0,45 ,1,1,179760 ,1,2,318480 ,1,3,275345 ,2,822,214180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536975 ,2,827,75 ,2,828,486955 ,2,821,625290 ,1,0,45 ,1,1,242450 ,1,2,214160 ,1,3,214150 ,2,822,214190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536980 ,2,827,75 ,2,828,486960 ,2,821,629120 ,2,822,214200 ,2,823,541355 ,2,824,418695 ,2,825,352975 ,2,826,536985 ,2,827,142510 ,2,828,486965 ,2,821,636150 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,318585 ,1,4,318575 ,1,5,45 ,1,6,13320 ,1,7,15480 ,2,822,214210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537005 ,2,827,75 ,2,828,486975 ,2,821,641040 ,2,822,214220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,641810 ,1,0,214220 ,2,822,214255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535990 ,2,827,75 ,2,828,486980 ,2,821,642960 ,2,822,214265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537010 ,2,827,75 ,2,828,486985 ,2,821,644065 ,1,0,214265 ,2,822,214275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537015 ,2,827,75 ,2,828,486990 ,2,821,645450 ,1,0,2280 ,1,1,542095 ,2,822,214285 ,2,823,541360 ,2,824,418700 ,2,825,352985 ,2,826,537020 ,2,827,142550 ,2,828,487005 ,2,821,654140 ,2,822,214300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537025 ,2,827,142580 ,2,828,487010 ,2,821,656175 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214300 ,2,822,214310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537030 ,2,827,75 ,2,828,487015 ,2,821,659060 ,2,822,214330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537035 ,2,827,75 ,2,828,487020 ,2,821,660200 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214330 ,2,822,214360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,663195 ,2,822,214380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495175 ,2,827,75 ,2,828,487025 ,2,821,663705 ,2,822,214390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495175 ,2,827,75 ,2,828,487030 ,2,821,664230 ,2,822,214405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537025 ,2,827,142670 ,2,828,487035 ,2,821,666245 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214405 ,2,822,214415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487040 ,2,821,669115 ,1,0,318695 ,2,822,214435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537055 ,2,827,142670 ,2,828,487065 ,2,821,673305 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214435 ,2,822,214475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,1975 ,2,822,214495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537060 ,2,827,142730 ,2,828,487070 ,2,821,7160 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214495 ,2,822,214505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,12175 ,2,822,214525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537065 ,2,827,142670 ,2,828,487075 ,2,821,15460 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214525 ,2,822,214535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,20435 ,2,822,214580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537025 ,2,827,142670 ,2,828,487080 ,2,821,24100 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214580 ,2,822,214590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537030 ,2,827,75 ,2,828,487015 ,2,821,29185 ,1,0,318800 ,1,1,318785 ,2,822,214610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537070 ,2,827,142670 ,2,828,487085 ,2,821,36440 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214610 ,2,822,214620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537030 ,2,827,75 ,2,828,487015 ,2,821,41420 ,2,822,214640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537075 ,2,827,142670 ,2,828,487090 ,2,821,46610 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214640 ,2,822,214650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537030 ,2,827,75 ,2,828,487015 ,2,821,51510 ,1,0,45 ,1,1,8740 ,2,822,214700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537080 ,2,827,109110 ,2,828,487095 ,2,821,57650 ,2,822,214710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537085 ,2,827,75 ,2,828,487100 ,2,821,59085 ,2,822,214720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487125 ,2,821,60455 ,2,822,214740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,61835 ,2,822,214750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,63235 ,2,822,214760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,64630 ,2,822,214770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537115 ,2,827,75 ,2,828,487130 ,2,821,66000 ,2,822,214790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487135 ,2,821,67350 ,2,822,214800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,68700 ,2,822,214810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,70050 ,2,822,214820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537120 ,2,827,75 ,2,828,487140 ,2,821,72460 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214820 ,2,822,214835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,77240 ,2,822,214855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,78635 ,2,822,214865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487150 ,2,821,80010 ,2,822,214900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537125 ,2,827,142880 ,2,828,487155 ,2,821,81965 ,2,822,214910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537125 ,2,827,142905 ,2,828,487160 ,2,821,83960 ,1,0,318990 ,2,822,214920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537130 ,2,827,75 ,2,828,487165 ,2,821,89145 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,214920 ,2,822,214930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,93985 ,2,822,214955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,95375 ,1,0,45 ,1,1,4315 ,2,822,214965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537135 ,2,827,109110 ,2,828,487185 ,2,821,98500 ,2,822,214975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,99925 ,2,822,215015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,101165 ,2,822,215025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,102475 ,2,822,215035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,103695 ,2,822,215045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487195 ,2,821,104980 ,2,822,215060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,106205 ,2,822,215070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,107475 ,2,822,215080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,108715 ,2,822,215090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487195 ,2,821,109985 ,2,822,215115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,111230 ,2,822,215125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487200 ,2,821,112460 ,2,822,215135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,113730 ,2,822,215145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487200 ,2,821,115035 ,2,822,215160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487205 ,2,821,116265 ,2,822,215170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,117510 ,2,822,215180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487210 ,2,821,118705 ,2,822,215190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487215 ,2,821,119925 ,2,822,215230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487210 ,2,821,121130 ,2,822,215240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487210 ,2,821,122400 ,2,822,215250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487210 ,2,821,123580 ,2,822,215260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,124810 ,2,822,215270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,126065 ,2,822,215280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487195 ,2,821,127290 ,2,822,215290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,128500 ,2,822,215300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,129750 ,2,822,215325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,130970 ,2,822,215335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487200 ,2,821,132220 ,2,822,215345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,133415 ,2,822,215355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487200 ,2,821,134630 ,2,822,215380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,135865 ,2,822,215390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,137140 ,2,822,215400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487200 ,2,821,138380 ,2,822,215410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,139615 ,2,822,215440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,140820 ,2,822,215450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,142025 ,2,822,215460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,143180 ,2,822,215470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,144430 ,2,822,215490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,145695 ,2,822,215500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,146960 ,2,822,215510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537140 ,2,827,75 ,2,828,487190 ,2,821,148210 ,2,822,215520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,149455 ,2,822,215560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,487190 ,2,821,150710 ,1,0,282085 ,2,822,215570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537150 ,2,827,142960 ,2,828,487220 ,2,821,154805 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215570 ,2,822,215580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537030 ,2,827,75 ,2,828,487015 ,2,821,159745 ,2,822,215605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,487240 ,2,821,160640 ,2,822,215615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,487245 ,2,821,161580 ,2,822,215625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495175 ,2,827,75 ,2,828,487250 ,2,821,162510 ,2,822,215635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537180 ,2,827,142995 ,2,828,487255 ,2,821,165710 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,261620 ,1,5,215635 ,1,6,322255 ,1,7,322245 ,1,8,322235 ,2,822,215660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537185 ,2,827,143005 ,2,828,487265 ,2,821,176365 ,2,822,215680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537025 ,2,827,142670 ,2,828,487270 ,2,821,180050 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215680 ,2,822,215690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,185100 ,2,822,215720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537190 ,2,827,143060 ,2,828,487275 ,2,821,193190 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215720 ,2,822,215730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,198250 ,2,822,215790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537195 ,2,827,142670 ,2,828,487280 ,2,821,202520 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215790 ,2,822,215800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487305 ,2,821,207600 ,2,822,215820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495175 ,2,827,75 ,2,828,487025 ,2,821,208490 ,2,822,215830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493465 ,2,827,75 ,2,828,487025 ,2,821,209410 ,2,822,215840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537200 ,2,827,143135 ,2,828,487310 ,2,821,213845 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215840 ,2,822,215850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487305 ,2,821,218865 ,2,822,215875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537025 ,2,827,142670 ,2,828,487315 ,2,821,222430 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215875 ,2,822,215885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487305 ,2,821,227435 ,2,822,215905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487135 ,2,821,228830 ,1,0,322410 ,2,822,215920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537205 ,2,827,142995 ,2,828,487320 ,2,821,233205 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215920 ,2,822,215930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537210 ,2,827,75 ,2,828,487325 ,2,821,239980 ,2,822,215950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537215 ,2,827,143240 ,2,828,487330 ,2,821,242535 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,261100 ,1,5,215950 ,1,6,322750 ,1,7,322740 ,2,822,215970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537235 ,2,827,143250 ,2,828,487335 ,2,821,252720 ,2,822,215990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537240 ,2,827,142730 ,2,828,487340 ,2,821,256180 ,1,0,45 ,1,1,4315 ,1,2,45 ,1,3,322830 ,1,4,215990 ,2,822,216000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537040 ,2,827,75 ,2,828,487015 ,2,821,261035 ,2,822,216020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537090 ,2,827,75 ,2,828,487130 ,2,821,262385 ,1,0,45 ,1,1,3525 ,2,822,216030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537245 ,2,827,75 ,2,828,487380 ,2,821,264800 ,1,0,45 ,1,1,11340 ,2,822,216040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537250 ,2,827,75 ,2,828,487385 ,2,821,269365 ,2,822,216085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537260 ,2,827,75 ,2,828,487390 ,2,821,271760 ,1,0,45 ,1,1,4315 ,1,2,593415 ,1,3,45 ,1,4,322830 ,1,5,216085 ,2,822,216095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537265 ,2,827,75 ,2,828,487015 ,2,821,276540 ,1,0,554780 ,2,822,216115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537270 ,2,827,101270 ,2,828,487395 ,2,821,277945 ,2,822,593445 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,278470 ,1,0,554785 ,2,822,216130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537275 ,2,827,26010 ,2,828,487400 ,2,821,280265 ,1,0,162795 ,2,822,216140 ,2,823,541370 ,2,824,418705 ,2,825,352995 ,2,826,537295 ,2,827,142510 ,2,828,487405 ,2,821,291140 ,2,822,216150 ,2,823,541375 ,2,824,418715 ,2,825,353005 ,2,826,537300 ,2,827,124905 ,2,828,487410 ,2,821,303625 ,2,822,216160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,304780 ,1,0,302190 ,1,1,322925 ,1,2,302180 ,1,3,216160 ,2,822,216195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537305 ,2,827,86845 ,2,828,487415 ,2,821,311955 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,2,822,216205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537310 ,2,827,75 ,2,828,487435 ,2,821,317200 ,1,0,45 ,1,1,179760 ,2,822,216215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537315 ,2,827,75 ,2,828,487440 ,2,821,321270 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,216205 ,2,822,216225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537320 ,2,827,86875 ,2,828,487445 ,2,821,330435 ,2,822,216235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487450 ,2,821,332260 ,2,822,216245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537330 ,2,827,75 ,2,828,487460 ,2,821,333640 ,2,822,216255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487465 ,2,821,335515 ,2,822,216265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,487470 ,2,821,337000 ,1,0,570410 ,1,1,45 ,1,2,323485 ,1,3,574760 ,1,4,45 ,1,5,5900 ,1,6,232240 ,2,822,216300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537345 ,2,827,65300 ,2,828,487475 ,2,821,341960 ,1,0,610085 ,1,1,45 ,1,2,327595 ,1,3,323590 ,1,4,323580 ,1,5,593545 ,1,6,45 ,1,7,13320 ,2,822,216320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537350 ,2,827,75 ,2,828,487500 ,2,821,347675 ,2,822,216330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537355 ,2,827,75 ,2,828,487505 ,2,821,349880 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,216340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,487510 ,2,821,354730 ,2,822,593610 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,355325 ,1,0,45 ,1,1,4765 ,1,2,323980 ,2,822,216350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537360 ,2,827,143465 ,2,828,487515 ,2,821,365170 ,1,0,593610 ,1,1,45 ,1,2,11955 ,1,3,323970 ,2,822,216360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537370 ,2,827,75 ,2,828,487520 ,2,821,368025 ,2,822,216370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,369945 ,1,0,573960 ,1,1,45 ,1,2,11510 ,1,3,216370 ,1,4,267980 ,2,822,216395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537375 ,2,827,75 ,2,828,487525 ,2,821,374720 ,1,0,45 ,1,1,11510 ,2,822,216405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537380 ,2,827,75 ,2,828,487530 ,2,821,376665 ,1,0,324145 ,2,822,216415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537385 ,2,827,75 ,2,828,487535 ,2,821,378140 ,1,0,2280 ,1,1,542095 ,1,2,2280 ,1,3,542095 ,1,4,2280 ,1,5,542095 ,1,6,2280 ,1,7,542095 ,1,8,2280 ,1,9,542095 ,1,10,2280 ,1,11,542095 ,1,12,324165 ,1,13,2210 ,1,14,542350 ,1,15,2210 ,1,16,542350 ,2,822,216425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537425 ,2,827,82915 ,2,828,487570 ,2,821,384835 ,2,822,216440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537430 ,2,827,75 ,2,828,487575 ,2,821,385765 ,1,0,324220 ,2,822,216450 ,2,823,541380 ,2,824,418720 ,2,825,353065 ,2,826,537435 ,2,827,75 ,2,828,487580 ,2,821,389040 ,2,822,216460 ,2,823,541385 ,2,824,418725 ,2,825,353075 ,2,826,537440 ,2,827,51525 ,2,828,487585 ,2,821,394295 ,1,0,247550 ,1,1,356020 ,2,822,216470 ,2,823,541415 ,2,824,418730 ,2,825,353085 ,2,826,537445 ,2,827,75 ,2,828,487595 ,2,821,398485 ,1,0,236665 ,2,822,216510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537450 ,2,827,75 ,2,828,487600 ,2,821,400705 ,1,0,358410 ,2,822,216520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537455 ,2,827,75 ,2,828,487605 ,2,821,401880 ,2,822,216530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537460 ,2,827,75 ,2,828,487610 ,2,821,402895 ,1,0,45 ,1,1,213155 ,2,822,216540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537480 ,2,827,75 ,2,828,487635 ,2,821,405035 ,1,0,45 ,1,1,343730 ,1,2,45 ,1,3,5900 ,1,4,324230 ,2,822,216555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537485 ,2,827,75 ,2,828,487640 ,2,821,407610 ,2,822,593660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,408395 ,1,0,568565 ,1,1,45 ,1,2,343730 ,1,3,593670 ,1,4,45 ,1,5,5900 ,1,6,593660 ,1,7,45 ,1,8,5900 ,2,822,216565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537490 ,2,827,30175 ,2,828,487645 ,2,821,413215 ,2,822,593685 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,414280 ,1,0,45 ,1,1,205700 ,2,822,216640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537495 ,2,827,75 ,2,828,487650 ,2,821,416230 ,1,0,298675 ,2,822,216650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537500 ,2,827,75 ,2,828,487660 ,2,821,417650 ,1,0,298665 ,2,822,216665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537500 ,2,827,75 ,2,828,487665 ,2,821,419020 ,1,0,298655 ,2,822,216675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537505 ,2,827,75 ,2,828,487670 ,2,821,420430 ,1,0,216675 ,2,822,216685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535990 ,2,827,75 ,2,828,487675 ,2,821,421600 ,1,0,216665 ,2,822,216695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537510 ,2,827,75 ,2,828,487715 ,2,821,423075 ,1,0,611390 ,1,1,45 ,1,2,195155 ,1,3,216650 ,2,822,216715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537515 ,2,827,75 ,2,828,487720 ,2,821,425870 ,1,0,227855 ,2,822,216725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537535 ,2,827,75 ,2,828,487725 ,2,821,428460 ,1,0,324285 ,1,1,359295 ,1,2,359275 ,2,822,216735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537540 ,2,827,75 ,2,828,487730 ,2,821,430780 ,1,0,45 ,1,1,192820 ,2,822,216745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537545 ,2,827,75 ,2,828,487740 ,2,821,433655 ,1,0,45 ,1,1,192820 ,2,822,216760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537550 ,2,827,75 ,2,828,487745 ,2,821,438365 ,1,0,45 ,1,1,192820 ,2,822,216770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537555 ,2,827,75 ,2,828,487750 ,2,821,442995 ,1,0,570630 ,1,1,45 ,1,2,192820 ,2,822,216780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537545 ,2,827,75 ,2,828,487755 ,2,821,445940 ,1,0,45 ,1,1,192820 ,1,2,324295 ,2,822,216790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537550 ,2,827,75 ,2,828,487780 ,2,821,450440 ,1,0,45 ,1,1,192820 ,2,822,216840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537555 ,2,827,75 ,2,828,487785 ,2,821,455030 ,1,0,587345 ,1,1,45 ,1,2,342050 ,2,822,216850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537560 ,2,827,75 ,2,828,487790 ,2,821,457130 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,329805 ,1,4,45 ,1,5,209800 ,1,6,260905 ,2,822,216860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537565 ,2,827,143660 ,2,828,487795 ,2,821,460895 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,329805 ,1,4,45 ,1,5,209800 ,1,6,260925 ,1,7,260915 ,2,822,216870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537570 ,2,827,143680 ,2,828,487800 ,2,821,465725 ,2,822,593790 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,466140 ,2,822,216880 ,2,823,541420 ,2,824,418735 ,2,825,353095 ,2,826,537600 ,2,827,75 ,2,828,487805 ,2,821,475545 ,2,822,216890 ,2,823,541425 ,2,824,418740 ,2,825,353110 ,2,826,537605 ,2,827,75 ,2,828,487810 ,2,821,478135 ,2,822,216900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487815 ,2,821,479290 ,2,822,216910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487845 ,2,821,480390 ,2,822,593800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,480810 ,2,822,216960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487850 ,2,821,481905 ,1,0,324800 ,1,1,324775 ,2,822,216970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537610 ,2,827,75 ,2,828,487855 ,2,821,483360 ,1,0,324765 ,2,822,216980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537615 ,2,827,75 ,2,828,487860 ,2,821,484885 ,2,822,216990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487870 ,2,821,485995 ,1,0,45 ,1,1,179760 ,2,822,217020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537620 ,2,827,75 ,2,828,487880 ,2,821,488590 ,1,0,358505 ,2,822,217030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536250 ,2,827,75 ,2,828,487885 ,2,821,489565 ,1,0,358485 ,1,1,324920 ,2,822,217040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537625 ,2,827,75 ,2,828,487910 ,2,821,490855 ,1,0,358495 ,2,822,217055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536250 ,2,827,75 ,2,828,487915 ,2,821,491870 ,1,0,575465 ,1,1,45 ,1,2,5900 ,1,3,550190 ,2,822,217065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536365 ,2,827,75 ,2,828,487920 ,2,821,493030 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,217075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537630 ,2,827,75 ,2,828,487925 ,2,821,496030 ,1,0,45 ,1,1,330210 ,1,2,221495 ,2,822,217085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537635 ,2,827,75 ,2,828,487930 ,2,821,498835 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,186035 ,2,822,217095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537665 ,2,827,75 ,2,828,487935 ,2,821,501765 ,1,0,569660 ,1,1,45 ,1,2,329440 ,1,3,325280 ,2,822,217105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537670 ,2,827,75 ,2,828,487940 ,2,821,503630 ,2,822,593860 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,503985 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,212880 ,2,822,217115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537675 ,2,827,75 ,2,828,487945 ,2,821,506755 ,2,822,217125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537680 ,2,827,75 ,2,828,487960 ,2,821,507835 ,1,0,45 ,1,1,179760 ,1,2,570340 ,1,3,45 ,1,4,186035 ,2,822,217170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537685 ,2,827,75 ,2,828,487965 ,2,821,510600 ,2,822,217190 ,2,823,541430 ,2,824,418745 ,2,825,353120 ,2,826,537690 ,2,827,75 ,2,828,487970 ,2,821,512950 ,1,0,574355 ,1,1,45 ,1,2,310000 ,1,3,45 ,1,4,325780 ,1,5,325765 ,2,822,217205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537695 ,2,827,143815 ,2,828,487975 ,2,821,523995 ,1,0,325830 ,2,822,217215 ,2,823,541435 ,2,824,418750 ,2,825,353130 ,2,826,537700 ,2,827,75 ,2,828,487985 ,2,821,528910 ,2,822,217225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537720 ,2,827,143870 ,2,828,487990 ,2,821,531900 ,2,822,217270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,507435 ,2,827,75 ,2,828,487995 ,2,821,532960 ,1,0,45 ,1,1,325950 ,1,2,45 ,1,3,325940 ,1,4,45 ,1,5,5900 ,1,6,45 ,1,7,5900 ,2,822,217280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537725 ,2,827,75 ,2,828,488000 ,2,821,536895 ,1,0,607010 ,1,1,45 ,1,2,175900 ,1,3,606990 ,1,4,45 ,1,5,11510 ,1,6,607020 ,1,7,45 ,1,8,5900 ,1,9,607015 ,1,10,45 ,1,11,5900 ,2,822,217290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537730 ,2,827,75 ,2,828,488035 ,2,821,540895 ,1,0,45 ,1,1,209800 ,2,822,217300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537735 ,2,827,75 ,2,828,488040 ,2,821,544260 ,2,822,593945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,544925 ,2,822,593995 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,545690 ,1,0,269605 ,2,822,217320 ,2,823,541440 ,2,824,418760 ,2,825,353140 ,2,826,537740 ,2,827,75 ,2,828,488045 ,2,821,547820 ,1,0,45 ,1,1,179760 ,2,822,217330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537745 ,2,827,75 ,2,828,488050 ,2,821,549230 ,2,822,594015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,550170 ,1,0,45 ,1,1,179760 ,1,2,555245 ,1,3,325980 ,2,822,217340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537750 ,2,827,75 ,2,828,488060 ,2,821,553745 ,1,0,45 ,1,1,242450 ,1,2,217330 ,2,822,217350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537755 ,2,827,143920 ,2,828,488065 ,2,821,557780 ,2,822,217380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537795 ,2,827,75 ,2,828,488070 ,2,821,559690 ,1,0,217380 ,2,822,217390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537800 ,2,827,75 ,2,828,488075 ,2,821,563790 ,1,0,273280 ,2,822,217400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537805 ,2,827,75 ,2,828,488100 ,2,821,566010 ,1,0,576430 ,1,1,45 ,1,2,326000 ,1,3,217400 ,2,822,217410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537810 ,2,827,75 ,2,828,488105 ,2,821,568730 ,1,0,45 ,1,1,179760 ,2,822,217420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536400 ,2,827,75 ,2,828,488110 ,2,821,570880 ,1,0,217420 ,2,822,217430 ,2,823,541445 ,2,824,418765 ,2,825,353165 ,2,826,537815 ,2,827,75 ,2,828,488115 ,2,821,573195 ,1,0,45 ,1,1,326890 ,1,2,45 ,1,3,326150 ,1,4,45 ,1,5,326140 ,1,6,45 ,1,7,326130 ,1,8,45 ,1,9,326105 ,1,10,45 ,1,11,326095 ,1,12,45 ,1,13,326085 ,1,14,45 ,1,15,326075 ,2,822,217440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537820 ,2,827,75 ,2,828,488120 ,2,821,580415 ,1,0,45 ,1,1,169850 ,1,2,585825 ,1,3,45 ,1,4,198270 ,2,822,217450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537825 ,2,827,143980 ,2,828,488125 ,2,821,583335 ,1,0,45 ,1,1,169850 ,1,2,45 ,1,3,198270 ,2,822,217485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537825 ,2,827,144000 ,2,828,488130 ,2,821,586185 ,1,0,45 ,1,1,169850 ,1,2,45 ,1,3,198270 ,2,822,217495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537830 ,2,827,144015 ,2,828,488135 ,2,821,589835 ,1,0,45 ,1,1,331110 ,2,822,217505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537860 ,2,827,144025 ,2,828,488170 ,2,821,592495 ,1,0,594085 ,1,1,45 ,1,2,13320 ,2,822,217515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495320 ,2,827,75 ,2,828,488175 ,2,821,593335 ,2,822,217530 ,2,823,541450 ,2,824,418770 ,2,825,353175 ,2,826,537865 ,2,827,144035 ,2,828,488180 ,2,821,598775 ,1,0,45 ,1,1,331110 ,1,2,217530 ,2,822,217540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537870 ,2,827,75 ,2,828,488185 ,2,821,603455 ,1,0,217540 ,2,822,217550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537875 ,2,827,75 ,2,828,488200 ,2,821,604885 ,1,0,300115 ,1,1,326825 ,1,2,217515 ,1,3,217505 ,2,822,217560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537880 ,2,827,144075 ,2,828,488205 ,2,821,610910 ,1,0,587330 ,1,1,45 ,1,2,342050 ,2,822,217585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537885 ,2,827,144085 ,2,828,488210 ,2,821,613300 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,11690 ,1,4,357215 ,2,822,217595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537890 ,2,827,75 ,2,828,488215 ,2,821,617000 ,1,0,326890 ,1,1,2280 ,1,2,542095 ,2,822,217605 ,2,823,541480 ,2,824,418775 ,2,825,353185 ,2,826,537895 ,2,827,144105 ,2,828,488235 ,2,821,623390 ,1,0,587745 ,1,1,45 ,1,2,326900 ,1,3,217605 ,2,822,217615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537930 ,2,827,75 ,2,828,488240 ,2,821,627245 ,1,0,45 ,1,1,179760 ,1,2,587905 ,1,3,45 ,1,4,326920 ,1,5,326910 ,1,6,2280 ,1,7,542080 ,1,8,2280 ,1,9,542270 ,1,10,555265 ,1,11,236635 ,1,12,2280 ,1,13,542095 ,1,14,2280 ,1,15,542080 ,1,16,587785 ,1,17,45 ,1,18,13320 ,1,19,217615 ,1,20,2210 ,1,21,542350 ,2,822,217625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537935 ,2,827,144185 ,2,828,488245 ,2,821,638895 ,2,822,594190 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,639270 ,2,822,594200 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,640090 ,2,822,217635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,640755 ,2,822,217645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,488250 ,2,821,641865 ,2,822,217655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,488260 ,2,821,642930 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,263375 ,1,5,263330 ,1,6,263320 ,1,7,263310 ,2,822,217690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537940 ,2,827,144195 ,2,828,488265 ,2,821,648585 ,1,0,45 ,1,1,343730 ,2,822,217700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537945 ,2,827,75 ,2,828,488270 ,2,821,650575 ,2,822,594215 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,651315 ,1,0,594215 ,1,1,45 ,1,2,4315 ,2,822,217710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537955 ,2,827,75 ,2,828,486775 ,2,821,652925 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,327605 ,2,822,217720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537960 ,2,827,75 ,2,828,488275 ,2,821,656985 ,2,822,594260 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,657385 ,2,822,594265 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,657795 ,2,822,217735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537965 ,2,827,75 ,2,828,488290 ,2,821,658620 ,1,0,181870 ,1,1,181930 ,1,2,327810 ,2,822,217745 ,2,823,541485 ,2,824,418785 ,2,825,353195 ,2,826,537970 ,2,827,44250 ,2,828,488295 ,2,821,665610 ,1,0,45 ,1,1,330210 ,1,2,221480 ,2,822,217755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537980 ,2,827,75 ,2,828,488300 ,2,821,668115 ,2,822,594270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,668480 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,217765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,487510 ,2,821,671235 ,1,0,45 ,1,1,208615 ,1,2,45 ,1,3,205770 ,2,822,217805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535885 ,2,827,75 ,2,828,488305 ,2,821,674145 ,1,0,568005 ,1,1,45 ,1,2,208615 ,1,3,45 ,1,4,205770 ,2,822,217815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535785 ,2,827,75 ,2,828,487510 ,2,821,3190 ,1,0,45 ,1,1,327945 ,1,2,183255 ,1,3,164050 ,2,822,217825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535820 ,2,827,54935 ,2,828,488315 ,2,821,7660 ,1,0,45 ,1,1,330210 ,2,822,217855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537985 ,2,827,24545 ,2,828,488325 ,2,821,14950 ,2,822,594275 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,15515 ,1,0,45 ,1,1,330070 ,1,2,328015 ,2,822,217865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537990 ,2,827,75 ,2,828,488330 ,2,821,19850 ,1,0,45 ,1,1,328025 ,1,2,45 ,1,3,227965 ,2,822,217875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537995 ,2,827,75 ,2,828,488370 ,2,821,26300 ,1,0,594330 ,1,1,45 ,1,2,328025 ,1,3,594300 ,1,4,45 ,1,5,227965 ,2,822,217925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538000 ,2,827,75 ,2,828,488375 ,2,821,30985 ,1,0,594335 ,1,1,45 ,1,2,5080 ,2,822,217960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538005 ,2,827,75 ,2,828,488380 ,2,821,34770 ,1,0,217980 ,1,1,234685 ,1,2,217970 ,1,3,354670 ,1,4,354680 ,1,5,555400 ,1,6,354660 ,2,822,217990 ,2,823,541490 ,2,824,418790 ,2,825,353210 ,2,826,538010 ,2,827,73440 ,2,828,488385 ,2,821,50485 ,2,822,218015 ,2,823,541495 ,2,824,418795 ,2,825,353220 ,2,826,538015 ,2,827,75 ,2,828,488395 ,2,821,59775 ,2,822,218025 ,2,823,541510 ,2,824,418800 ,2,825,353230 ,2,826,538055 ,2,827,75 ,2,828,488400 ,2,821,64295 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,1,4,369895 ,1,5,45 ,1,6,11510 ,2,822,218055 ,2,823,240 ,2,824,418830 ,2,825,351970 ,2,826,538060 ,2,827,144515 ,2,828,488405 ,2,821,69950 ,1,0,218055 ,2,822,218065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536710 ,2,827,75 ,2,828,485460 ,2,821,71825 ,1,0,45 ,1,1,179760 ,2,822,218105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538065 ,2,827,75 ,2,828,488410 ,2,821,74995 ,1,0,573440 ,1,1,45 ,1,2,205700 ,2,822,218115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538070 ,2,827,75 ,2,828,488430 ,2,821,77915 ,2,822,594420 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,78520 ,1,0,45 ,1,1,179760 ,2,822,218125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538075 ,2,827,75 ,2,828,488435 ,2,821,82720 ,2,822,218135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,84115 ,2,822,218155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,85285 ,2,822,218165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537965 ,2,827,75 ,2,828,488440 ,2,821,86680 ,1,0,45 ,1,1,2845 ,2,822,218175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538080 ,2,827,144585 ,2,828,488445 ,2,821,94095 ,1,0,164180 ,2,822,218185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538090 ,2,827,75 ,2,828,488455 ,2,821,97000 ,2,822,218225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538085 ,2,827,26320 ,2,828,488450 ,2,821,98750 ,2,822,594485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,100040 ,1,0,45 ,1,1,337360 ,2,822,218255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538135 ,2,827,75 ,2,828,488460 ,2,821,103380 ,2,822,594495 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,104690 ,1,0,594495 ,1,1,45 ,1,2,337360 ,2,822,218285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538140 ,2,827,75 ,2,828,488465 ,2,821,108455 ,2,822,218295 ,2,823,541515 ,2,824,418835 ,2,825,353240 ,2,826,538145 ,2,827,75 ,2,828,488485 ,2,821,116210 ,1,0,45 ,1,1,190350 ,2,822,218355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538150 ,2,827,75 ,2,828,488490 ,2,821,120085 ,2,822,218365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538160 ,2,827,75 ,2,828,488495 ,2,821,123025 ,1,0,328665 ,2,822,218375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538165 ,2,827,75 ,2,828,488500 ,2,821,125955 ,2,822,218385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538170 ,2,827,75 ,2,828,488505 ,2,821,128250 ,1,0,45 ,1,1,330070 ,2,822,218395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538175 ,2,827,75 ,2,828,488510 ,2,821,134090 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,1,4,45 ,1,5,11510 ,2,822,218405 ,2,823,240 ,2,824,418840 ,2,825,351970 ,2,826,538215 ,2,827,144725 ,2,828,488515 ,2,821,143580 ,1,0,218405 ,2,822,218460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536710 ,2,827,75 ,2,828,485460 ,2,821,145575 ,2,822,218490 ,2,823,541520 ,2,824,418835 ,2,825,353240 ,2,826,538145 ,2,827,75 ,2,828,488520 ,2,821,153315 ,1,0,594555 ,1,1,45 ,1,2,4555 ,2,822,218515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538220 ,2,827,75 ,2,828,488545 ,2,821,157770 ,1,0,328885 ,1,1,328875 ,1,2,246560 ,1,3,164365 ,2,822,218535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538225 ,2,827,75 ,2,828,488550 ,2,821,161840 ,2,822,594580 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,162570 ,2,822,594600 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,163975 ,2,822,218545 ,2,823,541525 ,2,824,418845 ,2,825,353270 ,2,826,538230 ,2,827,75 ,2,828,488555 ,2,821,169375 ,1,0,610480 ,1,1,45 ,1,2,11510 ,2,822,218560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538245 ,2,827,75 ,2,828,488560 ,2,821,175295 ,1,0,45 ,1,1,175900 ,1,2,45 ,1,3,5900 ,2,822,218570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538250 ,2,827,75 ,2,828,488570 ,2,821,180375 ,1,0,542750 ,1,1,610350 ,1,2,542750 ,2,822,218580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538255 ,2,827,75 ,2,828,488575 ,2,821,184095 ,2,822,594665 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,186210 ,1,0,45 ,1,1,203580 ,2,822,218590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538260 ,2,827,75 ,2,828,488580 ,2,821,190595 ,1,0,581855 ,1,1,45 ,1,2,329370 ,2,822,218600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538280 ,2,827,75 ,2,828,488585 ,2,821,197745 ,1,0,45 ,1,1,175900 ,2,822,218610 ,2,823,541540 ,2,824,418860 ,2,825,353280 ,2,826,538285 ,2,827,75 ,2,828,488630 ,2,821,203265 ,1,0,218610 ,2,822,218620 ,2,823,541545 ,2,824,418865 ,2,825,353290 ,2,826,538290 ,2,827,75 ,2,828,488635 ,2,821,207650 ,1,0,560860 ,1,1,45 ,1,2,347180 ,1,3,560855 ,1,4,45 ,1,5,222855 ,1,6,45 ,1,7,198270 ,1,8,45 ,1,9,177250 ,2,822,218630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538295 ,2,827,75 ,2,828,488640 ,2,821,215370 ,1,0,45 ,1,1,203580 ,1,2,218545 ,2,822,218685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538300 ,2,827,75 ,2,828,488645 ,2,821,222600 ,1,0,203905 ,1,1,45 ,1,2,11510 ,2,822,218695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538305 ,2,827,145100 ,2,828,488655 ,2,821,227980 ,2,822,594725 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,228625 ,2,822,218705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,488660 ,2,821,230045 ,1,0,581780 ,1,1,45 ,1,2,329440 ,1,3,45 ,1,4,329430 ,1,5,218705 ,2,822,218715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538310 ,2,827,75 ,2,828,488665 ,2,821,241160 ,1,0,329460 ,1,1,235850 ,1,2,203990 ,1,3,329450 ,2,822,218750 ,2,823,541550 ,2,824,418870 ,2,825,353300 ,2,826,538315 ,2,827,51110 ,2,828,488700 ,2,821,256875 ,1,0,45 ,1,1,203580 ,1,2,329470 ,2,822,218760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538340 ,2,827,44250 ,2,828,488705 ,2,821,261955 ,1,0,203395 ,2,822,218780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538345 ,2,827,75 ,2,828,488710 ,2,821,264090 ,2,822,218790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,265135 ,2,822,218800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538350 ,2,827,75 ,2,828,488720 ,2,821,266905 ,1,0,45 ,1,1,4315 ,1,2,218800 ,2,822,218810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538355 ,2,827,75 ,2,828,488725 ,2,821,270405 ,1,0,594740 ,1,1,45 ,1,2,329530 ,2,822,218830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538365 ,2,827,75 ,2,828,483745 ,2,821,272930 ,1,0,565960 ,1,1,45 ,1,2,210655 ,1,3,192890 ,2,822,218840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536880 ,2,827,75 ,2,828,488730 ,2,821,275775 ,1,0,329560 ,1,1,164420 ,2,822,218850 ,2,823,541555 ,2,824,418875 ,2,825,353310 ,2,826,538370 ,2,827,145190 ,2,828,488735 ,2,821,282845 ,1,0,610635 ,1,1,45 ,1,2,175900 ,1,3,45 ,1,4,203580 ,1,5,218850 ,2,822,218875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538375 ,2,827,75 ,2,828,488760 ,2,821,291950 ,1,0,45 ,1,1,175900 ,1,2,45 ,1,3,329500 ,2,822,218885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538380 ,2,827,75 ,2,828,488765 ,2,821,296090 ,2,822,594800 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,296720 ,2,822,218895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538395 ,2,827,75 ,2,828,488770 ,2,821,298590 ,2,822,218905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538400 ,2,827,75 ,2,828,488775 ,2,821,300260 ,2,822,594805 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,300885 ,2,822,594810 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,301575 ,1,0,45 ,1,1,255425 ,1,2,329750 ,2,822,218925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538405 ,2,827,75 ,2,828,488780 ,2,821,306645 ,2,822,218935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536040 ,2,827,145275 ,2,828,488785 ,2,821,308345 ,2,822,594825 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,309060 ,1,0,45 ,1,1,255425 ,2,822,218945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538410 ,2,827,75 ,2,828,488790 ,2,821,314490 ,1,0,164525 ,2,822,218955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538420 ,2,827,141515 ,2,828,488795 ,2,821,316295 ,2,822,594830 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,316900 ,1,0,45 ,1,1,255425 ,2,822,218995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538425 ,2,827,75 ,2,828,488815 ,2,821,321725 ,2,822,219005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538420 ,2,827,142055 ,2,828,488820 ,2,821,323640 ,2,822,594835 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,324315 ,1,0,45 ,1,1,255425 ,1,2,207285 ,2,822,219015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538430 ,2,827,75 ,2,828,488825 ,2,821,328475 ,1,0,374495 ,1,1,164505 ,2,822,219025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538435 ,2,827,141540 ,2,828,488830 ,2,821,330620 ,2,822,594850 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,331275 ,1,0,45 ,1,1,255425 ,1,2,329740 ,2,822,219040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538430 ,2,827,75 ,2,828,488835 ,2,821,335210 ,2,822,219050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536040 ,2,827,75 ,2,828,488840 ,2,821,337090 ,1,0,45 ,1,1,255425 ,1,2,329730 ,2,822,219060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538480 ,2,827,75 ,2,828,488845 ,2,821,342615 ,1,0,374395 ,2,822,219070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536075 ,2,827,145315 ,2,828,488850 ,2,821,344690 ,1,0,45 ,1,1,329840 ,1,2,45 ,1,3,329805 ,1,4,574290 ,1,5,45 ,1,6,329795 ,1,7,45 ,1,8,329785 ,1,9,45 ,1,10,329775 ,1,11,45 ,1,12,5900 ,2,822,219120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538485 ,2,827,75 ,2,828,488880 ,2,821,353015 ,1,0,45 ,1,1,343730 ,1,2,581110 ,1,3,45 ,1,4,5900 ,2,822,219130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538490 ,2,827,75 ,2,828,488885 ,2,821,362080 ,1,0,45 ,1,1,329860 ,1,2,573240 ,1,3,45 ,1,4,5900 ,1,5,573250 ,1,6,45 ,1,7,5900 ,1,8,329850 ,2,822,219140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538495 ,2,827,75 ,2,828,488890 ,2,821,368960 ,2,822,219160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538505 ,2,827,75 ,2,828,488910 ,2,821,370635 ,2,822,219170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536525 ,2,827,75 ,2,828,488915 ,2,821,372315 ,1,0,45 ,1,1,179760 ,1,2,45 ,1,3,209800 ,1,4,45 ,1,5,5900 ,1,6,259285 ,1,7,198605 ,1,8,199405 ,1,9,329960 ,1,10,45 ,1,11,5900 ,1,12,164545 ,1,13,170435 ,1,14,180765 ,1,15,329950 ,1,16,198615 ,1,17,329910 ,1,18,550675 ,2,822,219180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538510 ,2,827,145345 ,2,828,488920 ,2,821,388295 ,2,822,594915 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,388645 ,1,0,594915 ,1,1,45 ,1,2,190350 ,2,822,219215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538515 ,2,827,75 ,2,828,488925 ,2,821,390805 ,2,822,219225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,391655 ,1,0,45 ,1,1,11510 ,2,822,219235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538520 ,2,827,75 ,2,828,488945 ,2,821,393955 ,1,0,569615 ,1,1,45 ,1,2,330210 ,2,822,219245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538550 ,2,827,75 ,2,828,488950 ,2,821,396135 ,1,0,45 ,1,1,195155 ,2,822,219255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538560 ,2,827,75 ,2,828,488960 ,2,821,397325 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,45 ,1,5,13320 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,2,822,219265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538555 ,2,827,75 ,2,828,488955 ,2,821,402040 ,1,0,45 ,1,1,13320 ,1,2,45 ,1,3,13320 ,1,4,330365 ,1,5,45 ,1,6,13320 ,2,822,219275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538565 ,2,827,75 ,2,828,488965 ,2,821,405170 ,1,0,45 ,1,1,195155 ,2,822,219315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538560 ,2,827,75 ,2,828,488970 ,2,821,406425 ,2,822,219325 ,2,823,541560 ,2,824,418920 ,2,825,353320 ,2,826,538570 ,2,827,75 ,2,828,488975 ,2,821,411505 ,2,822,219335 ,2,823,541565 ,2,824,418925 ,2,825,353330 ,2,826,538575 ,2,827,125070 ,2,828,488980 ,2,821,416725 ,1,0,302045 ,2,822,219345 ,2,823,541570 ,2,824,418930 ,2,825,353340 ,2,826,538580 ,2,827,75 ,2,828,489005 ,2,821,418855 ,2,822,219360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,419640 ,1,0,45 ,1,1,179760 ,2,822,219370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538585 ,2,827,75 ,2,828,489010 ,2,821,421670 ,2,822,219380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,422430 ,1,0,269645 ,1,1,219390 ,1,2,10000 ,1,3,219380 ,1,4,219370 ,1,5,219360 ,2,822,219425 ,2,823,541575 ,2,824,418935 ,2,825,353375 ,2,826,538600 ,2,827,145520 ,2,828,489015 ,2,821,432535 ,2,822,219435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,433250 ,1,0,2280 ,1,1,542275 ,2,822,219445 ,2,823,541615 ,2,824,418940 ,2,825,353385 ,2,826,538605 ,2,827,75 ,2,828,489020 ,2,821,439925 ,2,822,219455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,440485 ,2,822,219465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538610 ,2,827,75 ,2,828,489040 ,2,821,442055 ,1,0,219465 ,2,822,219475 ,2,823,541620 ,2,824,418945 ,2,825,353395 ,2,826,538615 ,2,827,75 ,2,828,489045 ,2,821,445550 ,1,0,330345 ,2,822,219495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538620 ,2,827,75 ,2,828,489055 ,2,821,446785 ,1,0,302755 ,1,1,164730 ,1,2,330395 ,1,3,330375 ,2,822,219535 ,2,823,541625 ,2,824,418950 ,2,825,353405 ,2,826,538625 ,2,827,75 ,2,828,489080 ,2,821,452485 ,1,0,330595 ,1,1,330585 ,1,2,2280 ,1,3,542160 ,1,4,45 ,1,5,13320 ,1,6,330545 ,1,7,330535 ,1,8,2280 ,1,9,542160 ,1,10,330525 ,1,11,330515 ,1,12,2280 ,1,13,542160 ,1,14,45 ,1,15,13320 ,1,16,330495 ,1,17,2280 ,1,18,542160 ,1,19,45 ,1,20,13320 ,1,21,45 ,1,22,13320 ,1,23,45 ,1,24,13320 ,1,25,330485 ,1,26,2280 ,1,27,542160 ,1,28,45 ,1,29,13320 ,1,30,330475 ,1,31,2280 ,1,32,542160 ,1,33,45 ,1,34,13320 ,1,35,330465 ,1,36,2280 ,1,37,542160 ,1,38,45 ,1,39,13320 ,1,40,330425 ,1,41,330415 ,1,42,2280 ,1,43,542160 ,1,44,45 ,1,45,13320 ,1,46,269540 ,1,47,2280 ,1,48,542160 ,1,49,45 ,1,50,13320 ,2,822,219545 ,2,823,541630 ,2,824,418955 ,2,825,353415 ,2,826,538630 ,2,827,30175 ,2,828,489085 ,2,821,471830 ,2,822,594950 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,472180 ,1,0,330820 ,1,1,355950 ,2,822,219555 ,2,823,541645 ,2,824,418970 ,2,825,353425 ,2,826,538635 ,2,827,75 ,2,828,489090 ,2,821,477890 ,1,0,581450 ,1,1,45 ,1,2,342050 ,2,822,219565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538670 ,2,827,75 ,2,828,489095 ,2,821,479660 ,2,822,219580 ,2,823,541650 ,2,824,418975 ,2,825,353435 ,2,826,538675 ,2,827,75 ,2,828,489100 ,2,821,484505 ,1,0,587890 ,1,1,45 ,1,2,208615 ,1,3,330830 ,2,822,219590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536880 ,2,827,75 ,2,828,489105 ,2,821,486320 ,1,0,354060 ,1,1,330840 ,1,2,269635 ,1,3,219590 ,2,822,219600 ,2,823,541655 ,2,824,418980 ,2,825,353445 ,2,826,538680 ,2,827,75 ,2,828,489110 ,2,821,498140 ,1,0,595000 ,1,1,45 ,1,2,195325 ,2,822,219610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538685 ,2,827,75 ,2,828,489115 ,2,821,501000 ,1,0,219610 ,1,1,164740 ,1,2,330895 ,1,3,45 ,1,4,13320 ,1,5,330870 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,300250 ,1,11,45 ,1,12,13320 ,1,13,2280 ,1,14,542160 ,1,15,45 ,1,16,13320 ,1,17,2280 ,1,18,542160 ,1,19,45 ,1,20,13320 ,1,21,264640 ,2,822,219630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538695 ,2,827,145850 ,2,828,489140 ,2,821,508430 ,2,822,219640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493265 ,2,827,75 ,2,828,489135 ,2,821,509150 ,2,822,48385 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,509235 ,2,822,595015 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,509650 ,1,0,45 ,1,1,11690 ,1,2,2280 ,1,3,542160 ,1,4,45 ,1,5,13320 ,2,822,219650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538700 ,2,827,75 ,2,828,489145 ,2,821,512855 ,1,0,299895 ,1,1,2280 ,1,2,542270 ,1,3,45 ,1,4,13320 ,1,5,219680 ,1,6,331030 ,1,7,2280 ,1,8,542270 ,1,9,45 ,1,10,13320 ,1,11,219650 ,1,12,556105 ,1,13,2280 ,1,14,542160 ,1,15,45 ,1,16,13320 ,1,17,2280 ,1,18,542160 ,1,19,45 ,1,20,13320 ,1,21,263820 ,2,822,219660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538705 ,2,827,145965 ,2,828,489150 ,2,821,519770 ,2,822,48405 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,519880 ,1,0,45 ,1,1,11690 ,1,2,330860 ,1,3,2280 ,1,4,542160 ,1,5,45 ,1,6,13320 ,1,7,2280 ,1,8,542160 ,1,9,45 ,1,10,13320 ,1,11,330850 ,1,12,2280 ,1,13,542160 ,1,14,2280 ,1,15,542160 ,1,16,45 ,1,17,13320 ,1,18,2280 ,1,19,542160 ,1,20,2280 ,1,21,542160 ,1,22,45 ,1,23,13320 ,2,822,219680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538710 ,2,827,75 ,2,828,489165 ,2,821,527510 ,1,0,609595 ,1,1,45 ,1,2,11510 ,1,3,45 ,1,4,11510 ,1,5,177250 ,2,822,219690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538735 ,2,827,75 ,2,828,489170 ,2,821,534710 ,1,0,45 ,1,1,331060 ,2,822,219700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538740 ,2,827,75 ,2,828,489175 ,2,821,541530 ,1,0,301865 ,1,1,331120 ,1,2,45 ,1,3,13320 ,1,4,263925 ,1,5,331110 ,1,6,2280 ,1,7,542160 ,1,8,301770 ,1,9,2280 ,1,10,542160 ,1,11,45 ,1,12,13320 ,1,13,2280 ,1,14,542160 ,1,15,45 ,1,16,13320 ,1,17,2280 ,1,18,542160 ,1,19,2280 ,1,20,542160 ,1,21,45 ,1,22,13320 ,1,23,2280 ,1,24,542160 ,1,25,2280 ,1,26,542160 ,1,27,45 ,1,28,13320 ,1,29,263915 ,1,30,2280 ,1,31,542160 ,1,32,331100 ,1,33,331090 ,1,34,2280 ,1,35,542160 ,1,36,45 ,1,37,13320 ,1,38,2280 ,1,39,542160 ,1,40,45 ,1,41,13320 ,1,42,263895 ,2,822,219710 ,2,823,541660 ,2,824,418985 ,2,825,353480 ,2,826,538750 ,2,827,146170 ,2,828,489195 ,2,821,563400 ,1,0,264045 ,1,1,556110 ,1,2,263905 ,2,822,219735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538745 ,2,827,146060 ,2,828,489180 ,2,821,566040 ,2,822,48425 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,566120 ,2,822,48455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,566235 ,1,0,45 ,1,1,9355 ,1,2,219710 ,2,822,219745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538760 ,2,827,75 ,2,828,489200 ,2,821,570835 ,1,0,4100 ,1,1,205130 ,1,2,331325 ,1,3,45 ,1,4,13320 ,1,5,45 ,1,6,13320 ,1,7,331260 ,1,8,331250 ,1,9,2280 ,1,10,542160 ,1,11,45 ,1,12,13320 ,1,13,331240 ,1,14,2280 ,1,15,542160 ,1,16,45 ,1,17,13320 ,2,822,219755 ,2,823,541675 ,2,824,419000 ,2,825,353490 ,2,826,538765 ,2,827,123890 ,2,828,489205 ,2,821,582050 ,1,0,164770 ,2,822,219765 ,2,823,541680 ,2,824,419005 ,2,825,353500 ,2,826,538770 ,2,827,75 ,2,828,489210 ,2,821,586595 ,2,822,219775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538775 ,2,827,75 ,2,828,489215 ,2,821,587460 ,1,0,45 ,1,1,4315 ,2,822,219785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538795 ,2,827,75 ,2,828,489220 ,2,821,589750 ,1,0,595085 ,1,1,45 ,1,2,13320 ,2,822,219795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495510 ,2,827,75 ,2,828,489225 ,2,821,590580 ,1,0,292185 ,1,1,331375 ,2,822,219805 ,2,823,541685 ,2,824,419010 ,2,825,353510 ,2,826,538800 ,2,827,75 ,2,828,489230 ,2,821,596565 ,2,822,219835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537145 ,2,827,75 ,2,828,489260 ,2,821,597335 ,1,0,45 ,1,1,4315 ,2,822,219845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538805 ,2,827,75 ,2,828,489265 ,2,821,599155 ,1,0,556130 ,1,1,547380 ,2,822,219855 ,2,823,541690 ,2,824,419015 ,2,825,353530 ,2,826,538810 ,2,827,75 ,2,828,489270 ,2,821,604695 ,1,0,295945 ,1,1,552555 ,2,822,219865 ,2,823,541695 ,2,824,419040 ,2,825,353540 ,2,826,538815 ,2,827,75 ,2,828,489275 ,2,821,612075 ,1,0,542800 ,1,1,564895 ,1,2,542800 ,1,3,179060 ,2,822,219875 ,2,823,541700 ,2,824,419045 ,2,825,353550 ,2,826,538820 ,2,827,47360 ,2,828,489285 ,2,821,620285 ,1,0,331445 ,1,1,302135 ,1,2,301750 ,1,3,331435 ,1,4,302745 ,1,5,331425 ,2,822,219885 ,2,823,541705 ,2,824,419050 ,2,825,353560 ,2,826,538825 ,2,827,146405 ,2,828,489290 ,2,821,632225 ,1,0,45 ,1,1,190350 ,1,2,331455 ,2,822,219895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538830 ,2,827,75 ,2,828,489295 ,2,821,634705 ,1,0,45 ,1,1,190350 ,1,2,331465 ,2,822,219905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538830 ,2,827,75 ,2,828,489300 ,2,821,637150 ,2,822,219945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538875 ,2,827,75 ,2,828,489325 ,2,821,638180 ,2,822,219965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538880 ,2,827,75 ,2,828,489330 ,2,821,639265 ,1,0,573370 ,1,1,45 ,1,2,190350 ,1,3,331485 ,2,822,219975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538885 ,2,827,75 ,2,828,489335 ,2,821,641895 ,2,822,595110 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,642585 ,1,0,595110 ,1,1,45 ,1,2,9375 ,1,3,45 ,1,4,11510 ,1,5,2210 ,1,6,542350 ,2,822,219985 ,2,823,240 ,2,824,419055 ,2,825,351970 ,2,826,538890 ,2,827,146480 ,2,828,489340 ,2,821,649505 ,1,0,219985 ,2,822,219995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,485460 ,2,821,650700 ,2,822,220005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538895 ,2,827,75 ,2,828,489345 ,2,821,652570 ,2,822,220015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,489350 ,2,821,653405 ,1,0,45 ,1,1,210905 ,2,822,220060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538900 ,2,827,75 ,2,828,489355 ,2,821,655490 ,2,822,220080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536080 ,2,827,75 ,2,828,489360 ,2,821,656410 ,2,822,220090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,657185 ,1,0,45 ,1,1,179760 ,2,822,220100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538585 ,2,827,75 ,2,828,489390 ,2,821,659085 ,1,0,370645 ,2,822,220110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,659870 ,1,0,220110 ,1,1,302715 ,1,2,302200 ,1,3,220100 ,1,4,234520 ,1,5,556190 ,1,6,220090 ,2,822,220120 ,2,823,541710 ,2,824,419065 ,2,825,353585 ,2,826,538905 ,2,827,143920 ,2,828,489395 ,2,821,667165 ,1,0,220120 ,2,822,220130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538910 ,2,827,75 ,2,828,489400 ,2,821,670295 ,2,822,595120 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,671065 ,1,0,595120 ,1,1,45 ,1,2,9375 ,1,3,331670 ,1,4,369905 ,1,5,45 ,1,6,11510 ,1,7,369915 ,1,8,45 ,1,9,11510 ,2,822,220160 ,2,823,240 ,2,824,419070 ,2,825,351970 ,2,826,538925 ,2,827,141335 ,2,828,489405 ,2,821,674560 ,1,0,220160 ,2,822,220170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,485460 ,2,821,1065 ,1,0,568430 ,1,1,45 ,1,2,179760 ,1,3,45 ,1,4,331690 ,1,5,369800 ,1,6,358930 ,1,7,372125 ,1,8,356995 ,2,822,220200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538930 ,2,827,75 ,2,828,489415 ,2,821,5305 ,1,0,45 ,1,1,179760 ,1,2,568460 ,1,3,45 ,1,4,209800 ,1,5,331680 ,1,6,370210 ,1,7,374550 ,2,822,220210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538935 ,2,827,75 ,2,828,489420 ,2,821,11060 ,1,0,573360 ,1,1,45 ,1,2,234335 ,1,3,582275 ,1,4,45 ,1,5,215275 ,1,6,556235 ,2,822,220220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538940 ,2,827,143920 ,2,828,489425 ,2,821,17285 ,1,0,568045 ,1,1,45 ,1,2,243905 ,1,3,612060 ,1,4,45 ,1,5,13320 ,2,822,220230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538950 ,2,827,111960 ,2,828,489430 ,2,821,26580 ,1,0,611675 ,1,1,45 ,1,2,4315 ,1,3,611670 ,1,4,45 ,1,5,11510 ,2,822,220250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538955 ,2,827,75 ,2,828,489465 ,2,821,31550 ,1,0,611615 ,1,1,45 ,1,2,175900 ,1,3,611620 ,1,4,45 ,1,5,4315 ,2,822,220260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538960 ,2,827,75 ,2,828,489470 ,2,821,36335 ,2,822,220270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538965 ,2,827,75 ,2,828,489475 ,2,821,37835 ,1,0,607985 ,1,1,45 ,1,2,340435 ,2,822,220280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538990 ,2,827,75 ,2,828,489480 ,2,821,41620 ,2,822,220295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536210 ,2,827,75 ,2,828,489485 ,2,821,43095 ,1,0,607840 ,1,1,45 ,1,2,340435 ,2,822,220305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538995 ,2,827,75 ,2,828,489490 ,2,821,46830 ,2,822,220315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539000 ,2,827,75 ,2,828,489495 ,2,821,48230 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,220325 ,2,823,240 ,2,824,419075 ,2,825,351970 ,2,826,539005 ,2,827,141335 ,2,828,489500 ,2,821,52900 ,1,0,220325 ,2,822,220360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,485460 ,2,821,54910 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,220390 ,2,823,240 ,2,824,419075 ,2,825,351970 ,2,826,539005 ,2,827,141335 ,2,828,489515 ,2,821,59630 ,1,0,220390 ,2,822,220405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,485460 ,2,821,61575 ,1,0,220405 ,2,822,220415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539010 ,2,827,75 ,2,828,489520 ,2,821,63280 ,1,0,220360 ,2,822,220435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539015 ,2,827,75 ,2,828,489520 ,2,821,65005 ,1,0,45 ,1,1,309980 ,1,2,332780 ,2,822,220460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539020 ,2,827,75 ,2,828,489525 ,2,821,69875 ,1,0,45 ,1,1,180550 ,1,2,45 ,1,3,180560 ,1,4,45 ,1,5,332880 ,2,822,220470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539025 ,2,827,75 ,2,828,489530 ,2,821,80540 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,220480 ,2,823,240 ,2,824,419080 ,2,825,351970 ,2,826,539055 ,2,827,141335 ,2,828,489545 ,2,821,87500 ,1,0,220480 ,2,822,220490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539060 ,2,827,75 ,2,828,485460 ,2,821,89455 ,1,0,220490 ,2,822,220500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539015 ,2,827,75 ,2,828,489520 ,2,821,91105 ,1,0,580980 ,1,1,45 ,1,2,216580 ,2,822,220530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539065 ,2,827,75 ,2,828,489550 ,2,821,94030 ,1,0,45 ,1,1,13060 ,2,822,220560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539070 ,2,827,75 ,2,828,489555 ,2,821,97135 ,1,0,45 ,1,1,13060 ,2,822,220570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539080 ,2,827,75 ,2,828,489560 ,2,821,100525 ,1,0,45 ,1,1,333335 ,2,822,220580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539085 ,2,827,75 ,2,828,489580 ,2,821,104155 ,1,0,45 ,1,1,333335 ,2,822,220590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539090 ,2,827,75 ,2,828,489585 ,2,821,111110 ,1,0,45 ,1,1,339410 ,1,2,220590 ,2,822,220605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539095 ,2,827,75 ,2,828,489590 ,2,821,116335 ,1,0,45 ,1,1,339410 ,1,2,220580 ,2,822,220615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539110 ,2,827,75 ,2,828,489595 ,2,821,124430 ,1,0,45 ,1,1,4315 ,2,822,220625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539115 ,2,827,75 ,2,828,489600 ,2,821,127985 ,1,0,45 ,1,1,333335 ,1,2,189055 ,1,3,264710 ,2,822,220635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539120 ,2,827,146860 ,2,828,489605 ,2,821,136355 ,1,0,45 ,1,1,333335 ,1,2,310040 ,1,3,333310 ,2,822,220680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539125 ,2,827,75 ,2,828,489610 ,2,821,144965 ,1,0,45 ,1,1,4315 ,2,822,220690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,512115 ,2,827,75 ,2,828,489615 ,2,821,147520 ,1,0,590290 ,1,1,45 ,1,2,333335 ,1,3,310020 ,1,4,169910 ,2,822,220700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539135 ,2,827,75 ,2,828,489665 ,2,821,155505 ,1,0,45 ,1,1,333335 ,2,822,220710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539085 ,2,827,75 ,2,828,489670 ,2,821,158975 ,1,0,311025 ,2,822,220740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539140 ,2,827,75 ,2,828,489675 ,2,821,160710 ,1,0,582335 ,1,1,45 ,1,2,175900 ,1,3,590020 ,1,4,45 ,1,5,5900 ,2,822,220750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539145 ,2,827,75 ,2,828,489680 ,2,821,169930 ,2,822,220760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539150 ,2,827,75 ,2,828,489685 ,2,821,173430 ,2,822,220770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,489690 ,2,821,175000 ,1,0,608420 ,1,1,45 ,1,2,4315 ,2,822,220800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539160 ,2,827,75 ,2,828,489695 ,2,821,179825 ,2,822,220810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539165 ,2,827,75 ,2,828,489700 ,2,821,181385 ,2,822,220820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539170 ,2,827,75 ,2,828,489720 ,2,821,182840 ,1,0,607625 ,1,1,45 ,1,2,5900 ,1,3,607620 ,1,4,45 ,1,5,5900 ,2,822,220830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539175 ,2,827,75 ,2,828,489725 ,2,821,186445 ,2,822,220840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539170 ,2,827,75 ,2,828,489730 ,2,821,187950 ,1,0,542925 ,1,1,595515 ,1,2,542925 ,1,3,556380 ,1,4,165160 ,1,5,177470 ,1,6,45 ,1,7,13320 ,2,822,220860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539180 ,2,827,75 ,2,828,489750 ,2,821,196420 ,2,822,220870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,489755 ,2,821,197970 ,2,822,595520 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,199260 ,2,822,220940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539185 ,2,827,75 ,2,828,489760 ,2,821,207380 ,1,0,2280 ,1,1,542160 ,1,2,2280 ,1,3,542160 ,1,4,2280 ,1,5,542160 ,1,6,45 ,1,7,13320 ,1,8,194640 ,2,822,220950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539190 ,2,827,147145 ,2,828,489765 ,2,821,214735 ,1,0,595575 ,1,1,45 ,1,2,13320 ,1,3,337860 ,2,822,220965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539195 ,2,827,75 ,2,828,489780 ,2,821,217460 ,1,0,590440 ,1,1,45 ,1,2,339410 ,1,3,311080 ,2,822,220975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539230 ,2,827,75 ,2,828,489785 ,2,821,220645 ,1,0,45 ,1,1,310080 ,2,822,220985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539235 ,2,827,75 ,2,828,489790 ,2,821,223590 ,1,0,45 ,1,1,310080 ,1,2,264675 ,2,822,220995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539240 ,2,827,147155 ,2,828,489795 ,2,821,227975 ,1,0,264430 ,1,1,45 ,1,2,13320 ,1,3,8655 ,1,4,45 ,1,5,13320 ,1,6,264440 ,1,7,45 ,1,8,13320 ,2,822,221015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539245 ,2,827,147165 ,2,828,489800 ,2,821,243600 ,1,0,264450 ,1,1,221015 ,1,2,339145 ,1,3,339135 ,1,4,339125 ,2,822,221025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539250 ,2,827,147175 ,2,828,489805 ,2,821,251795 ,1,0,45 ,1,1,310080 ,2,822,221035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539255 ,2,827,75 ,2,828,489810 ,2,821,254710 ,1,0,45 ,1,1,310080 ,2,822,221045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539260 ,2,827,75 ,2,828,489815 ,2,821,258020 ,1,0,264420 ,1,1,339400 ,1,2,264370 ,1,3,168545 ,2,822,221055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539265 ,2,827,147200 ,2,828,489855 ,2,821,271525 ,1,0,45 ,1,1,310080 ,2,822,221065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539255 ,2,827,75 ,2,828,489860 ,2,821,274315 ,1,0,45 ,1,1,310080 ,1,2,339175 ,2,822,221075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539290 ,2,827,75 ,2,828,489865 ,2,821,277990 ,1,0,45 ,1,1,339410 ,2,822,221085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539295 ,2,827,75 ,2,828,489870 ,2,821,280885 ,1,0,45 ,1,1,339410 ,2,822,221125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539300 ,2,827,147210 ,2,828,489880 ,2,821,285290 ,1,0,45 ,1,1,340435 ,2,822,221135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539305 ,2,827,75 ,2,828,489885 ,2,821,289050 ,1,0,45 ,1,1,13060 ,2,822,221145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539080 ,2,827,75 ,2,828,489890 ,2,821,292200 ,1,0,45 ,1,1,13060 ,2,822,221155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536360 ,2,827,75 ,2,828,486120 ,2,821,294950 ,1,0,264390 ,1,1,339850 ,1,2,339840 ,1,3,339830 ,2,822,221175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539310 ,2,827,147220 ,2,828,489895 ,2,821,308085 ,1,0,45 ,1,1,310080 ,2,822,221185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539255 ,2,827,75 ,2,828,489925 ,2,821,310950 ,1,0,45 ,1,1,310080 ,1,2,339420 ,2,822,221195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539315 ,2,827,75 ,2,828,489930 ,2,821,314440 ,1,0,339920 ,1,1,264460 ,1,2,190670 ,1,3,264380 ,1,4,339910 ,1,5,6920 ,1,6,339900 ,2,822,221205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539320 ,2,827,147230 ,2,828,489935 ,2,821,328410 ,1,0,45 ,1,1,310080 ,2,822,221225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539255 ,2,827,75 ,2,828,489940 ,2,821,331270 ,2,822,221235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539325 ,2,827,75 ,2,828,489950 ,2,821,333200 ,1,0,340105 ,1,1,203595 ,1,2,340095 ,1,3,340085 ,1,4,234970 ,1,5,355910 ,1,6,340045 ,1,7,340035 ,2,822,221245 ,2,823,541740 ,2,824,419090 ,2,825,353595 ,2,826,539360 ,2,827,75 ,2,828,489955 ,2,821,362285 ,1,0,340125 ,1,1,189035 ,1,2,340115 ,1,3,165330 ,2,822,221255 ,2,823,541745 ,2,824,419095 ,2,825,353605 ,2,826,539365 ,2,827,75 ,2,828,489960 ,2,821,368455 ,1,0,45 ,1,1,343730 ,2,822,221270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539370 ,2,827,75 ,2,828,489965 ,2,821,374335 ,1,0,45 ,1,1,209800 ,1,2,215385 ,2,822,221280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539375 ,2,827,75 ,2,828,490000 ,2,821,376570 ,1,0,45 ,1,1,209800 ,1,2,215395 ,2,822,221290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539380 ,2,827,75 ,2,828,490005 ,2,821,378840 ,2,822,221300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539385 ,2,827,75 ,2,828,490010 ,2,821,380265 ,1,0,556670 ,2,822,221350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539390 ,2,827,147320 ,2,828,490015 ,2,821,381725 ,2,822,595680 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,382095 ,2,822,221360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536215 ,2,827,75 ,2,828,490020 ,2,821,382970 ,1,0,45 ,1,1,2845 ,2,822,221370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538080 ,2,827,147330 ,2,828,490025 ,2,821,387290 ,2,822,595690 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,387980 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,221385 ,2,823,240 ,2,824,419100 ,2,825,351970 ,2,826,539395 ,2,827,147375 ,2,828,490030 ,2,821,390440 ,1,0,221385 ,2,822,221395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,391555 ,1,0,45 ,1,1,190085 ,2,822,221445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539410 ,2,827,75 ,2,828,490035 ,2,821,393950 ,1,0,45 ,1,1,9375 ,1,2,208215 ,1,3,45 ,1,4,5900 ,1,5,212075 ,1,6,221445 ,1,7,45 ,1,8,11510 ,2,822,221455 ,2,823,240 ,2,824,419105 ,2,825,351970 ,2,826,539415 ,2,827,147485 ,2,828,490055 ,2,821,401885 ,1,0,221455 ,2,822,221465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539420 ,2,827,75 ,2,828,490060 ,2,821,403230 ,1,0,45 ,1,1,190085 ,1,2,208035 ,2,822,221475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539425 ,2,827,75 ,2,828,490065 ,2,821,405700 ,2,822,595745 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,406500 ,1,0,595745 ,1,1,45 ,1,2,9375 ,1,3,340670 ,1,4,340650 ,1,5,211070 ,1,6,165395 ,1,7,211865 ,1,8,340640 ,1,9,207610 ,1,10,221475 ,1,11,210895 ,1,12,165385 ,1,13,45 ,1,14,11510 ,1,15,340630 ,1,16,45 ,1,17,11510 ,1,18,2210 ,1,19,542350 ,2,822,221490 ,2,823,240 ,2,824,419110 ,2,825,351970 ,2,826,539430 ,2,827,147495 ,2,828,490070 ,2,821,430370 ,1,0,221490 ,2,822,221500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539435 ,2,827,75 ,2,828,490075 ,2,821,431720 ,2,822,595750 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,432530 ,1,0,595750 ,1,1,45 ,1,2,9375 ,1,3,45 ,1,4,11510 ,1,5,2210 ,1,6,542350 ,2,822,221510 ,2,823,240 ,2,824,419115 ,2,825,351970 ,2,826,539440 ,2,827,147505 ,2,828,490080 ,2,821,440010 ,1,0,221510 ,2,822,221520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539445 ,2,827,75 ,2,828,485460 ,2,821,441325 ,1,0,45 ,1,1,3525 ,2,822,221575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539460 ,2,827,75 ,2,828,490085 ,2,821,444035 ,2,822,595785 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,445015 ,1,0,595785 ,1,1,45 ,1,2,9375 ,1,3,45 ,1,4,11510 ,1,5,256810 ,1,6,169470 ,1,7,8345 ,1,8,359410 ,1,9,359420 ,1,10,359430 ,1,11,45 ,1,12,11510 ,1,13,45 ,1,14,11510 ,1,15,2210 ,1,16,542350 ,2,822,221585 ,2,823,240 ,2,824,419120 ,2,825,351970 ,2,826,539465 ,2,827,147590 ,2,828,490090 ,2,821,473815 ,1,0,221585 ,2,822,221595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539470 ,2,827,75 ,2,828,490075 ,2,821,475240 ,1,0,45 ,1,1,310080 ,2,822,221625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539475 ,2,827,75 ,2,828,490115 ,2,821,477365 ,1,0,45 ,1,1,192820 ,1,2,256525 ,2,822,221655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539480 ,2,827,147650 ,2,828,490120 ,2,821,479990 ,2,822,595845 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,480805 ,1,0,354070 ,1,1,595845 ,1,2,45 ,1,3,9375 ,1,4,371900 ,1,5,341170 ,1,6,372085 ,1,7,45 ,1,8,11510 ,1,9,372045 ,1,10,45 ,1,11,11510 ,1,12,372015 ,1,13,45 ,1,14,11510 ,1,15,372025 ,1,16,45 ,1,17,11510 ,1,18,372055 ,1,19,45 ,1,20,11510 ,1,21,372035 ,1,22,45 ,1,23,11510 ,1,24,372075 ,1,25,45 ,1,26,11510 ,1,27,371925 ,1,28,45 ,1,29,11510 ,1,30,371915 ,2,822,221665 ,2,823,240 ,2,824,419125 ,2,825,351970 ,2,826,539485 ,2,827,147660 ,2,828,490125 ,2,821,561350 ,1,0,221665 ,2,822,221675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539490 ,2,827,75 ,2,828,490060 ,2,821,562740 ,2,822,221710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539495 ,2,827,147745 ,2,828,490130 ,2,821,564395 ,2,822,221720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539525 ,2,827,75 ,2,828,490140 ,2,821,565680 ,1,0,165555 ,1,1,341220 ,2,822,221730 ,2,823,541750 ,2,824,419150 ,2,825,353615 ,2,826,539530 ,2,827,147755 ,2,828,490145 ,2,821,572795 ,1,0,341240 ,1,1,556750 ,1,2,612700 ,1,3,341230 ,2,822,221760 ,2,823,541755 ,2,824,419155 ,2,825,353625 ,2,826,539535 ,2,827,147805 ,2,828,490150 ,2,821,580810 ,1,0,260395 ,1,1,263910 ,1,2,341305 ,1,3,165565 ,1,4,341295 ,2,822,221800 ,2,823,541760 ,2,824,419160 ,2,825,353635 ,2,826,539540 ,2,827,93550 ,2,828,490155 ,2,821,589830 ,1,0,543175 ,1,1,584615 ,1,2,543175 ,1,3,45 ,1,4,13320 ,1,5,45 ,1,6,13320 ,1,7,595955 ,1,8,45 ,1,9,13320 ,1,10,45 ,1,11,13320 ,1,12,341325 ,1,13,341315 ,1,14,10945 ,2,822,221810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539565 ,2,827,75 ,2,828,490230 ,2,821,600135 ,2,822,48595 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,600215 ,2,822,595960 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,600660 ,2,822,221820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539550 ,2,827,75 ,2,828,490200 ,2,821,602380 ,1,1,2395 ,2,822,221860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492610 ,2,827,75 ,2,828,490195 ,2,821,603045 ,1,0,341585 ,1,1,341555 ,1,2,556790 ,1,3,221880 ,2,822,221830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539555 ,2,827,75 ,2,828,490205 ,2,821,608410 ,1,0,341445 ,2,822,221850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,490210 ,2,821,608690 ,1,0,221810 ,2,822,221870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539560 ,2,827,148065 ,2,828,490225 ,2,821,610850 ,1,0,2280 ,1,1,542155 ,1,2,45 ,1,3,13320 ,1,4,341455 ,1,5,562685 ,1,6,45 ,1,7,13320 ,2,822,221880 ,2,823,541765 ,2,824,419165 ,2,825,353645 ,2,826,539605 ,2,827,113250 ,2,828,490240 ,2,821,625635 ,1,0,2280 ,1,1,542235 ,2,822,221895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493265 ,2,827,75 ,2,828,490235 ,2,821,626525 ,2,822,221905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539610 ,2,827,75 ,2,828,490270 ,2,821,628860 ,2,822,221915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539615 ,2,827,75 ,2,828,490275 ,2,821,630335 ,2,822,596005 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,631110 ,2,822,596010 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,631895 ,1,0,221210 ,2,822,221925 ,2,823,541770 ,2,824,419175 ,2,825,353655 ,2,826,539620 ,2,827,75 ,2,828,490280 ,2,821,637710 ,1,0,341635 ,2,822,221975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539630 ,2,827,75 ,2,828,490285 ,2,821,638810 ,1,0,221925 ,2,822,221985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539635 ,2,827,75 ,2,828,490290 ,2,821,642330 ,1,0,235515 ,1,1,221985 ,1,2,341655 ,1,3,221975 ,1,4,341645 ,2,822,221995 ,2,823,541775 ,2,824,419180 ,2,825,353685 ,2,826,539645 ,2,827,75 ,2,828,490335 ,2,821,648475 ,2,822,222025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492110 ,2,827,75 ,2,828,490305 ,2,821,648850 ,2,822,48620 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,648955 ,2,822,222005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492110 ,2,827,75 ,2,828,490295 ,2,821,649355 ,2,822,222015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539640 ,2,827,75 ,2,828,490300 ,2,821,650785 ,1,0,611000 ,1,1,45 ,1,2,5900 ,2,822,222035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539660 ,2,827,75 ,2,828,490340 ,2,821,652485 ,1,0,2280 ,1,1,542160 ,1,2,2280 ,1,3,542160 ,1,4,45 ,1,5,5900 ,2,822,222045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539665 ,2,827,148265 ,2,828,490345 ,2,821,655850 ,1,0,290870 ,1,1,613050 ,1,2,341735 ,1,3,165635 ,1,4,556805 ,1,5,556800 ,1,6,45 ,1,7,13320 ,1,8,45 ,1,9,13320 ,1,10,556795 ,1,11,222045 ,1,12,222035 ,1,13,341720 ,1,14,341710 ,2,822,222075 ,2,823,541795 ,2,824,419185 ,2,825,353695 ,2,826,539670 ,2,827,148280 ,2,828,490350 ,2,821,673565 ,1,0,613055 ,2,822,222085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,673765 ,1,0,264895 ,1,1,556830 ,1,2,612620 ,1,3,341765 ,1,4,165655 ,2,822,222095 ,2,823,541800 ,2,824,419190 ,2,825,353705 ,2,826,539675 ,2,827,148310 ,2,828,490365 ,2,821,6285 ,1,0,222095 ,2,822,222105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539690 ,2,827,75 ,2,828,490370 ,2,821,11940 ,1,0,221800 ,2,822,222115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539695 ,2,827,75 ,2,828,490375 ,2,821,17730 ,1,0,354080 ,1,1,222115 ,1,2,556840 ,1,3,356210 ,1,4,556835 ,1,5,222105 ,1,6,202230 ,1,7,187610 ,1,8,201485 ,2,822,222125 ,2,823,541805 ,2,824,419215 ,2,825,353715 ,2,826,539700 ,2,827,47360 ,2,828,490380 ,2,821,39315 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,341830 ,2,822,222135 ,2,823,541810 ,2,824,419220 ,2,825,353730 ,2,826,539705 ,2,827,75 ,2,828,490415 ,2,821,44940 ,1,0,45 ,1,1,5900 ,1,2,45 ,1,3,5900 ,1,4,341840 ,2,822,222145 ,2,823,541815 ,2,824,419225 ,2,825,353740 ,2,826,539740 ,2,827,75 ,2,828,490420 ,2,821,53330 ,1,0,186855 ,1,1,370740 ,1,2,186865 ,1,3,370750 ,1,4,186845 ,1,5,370730 ,1,6,186835 ,1,7,370720 ,2,822,222175 ,2,823,541820 ,2,824,419230 ,2,825,353750 ,2,826,539745 ,2,827,148475 ,2,828,490425 ,2,821,59850 ,2,822,596025 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,60505 ,1,0,373370 ,1,1,373650 ,1,2,15020 ,1,3,15175 ,1,4,16030 ,1,5,15010 ,1,6,550130 ,1,7,556865 ,1,8,372185 ,1,9,372175 ,1,10,15345 ,1,11,15595 ,1,12,341870 ,1,13,373470 ,1,14,373135 ,1,15,370945 ,1,16,373660 ,1,17,15210 ,1,18,15280 ,1,19,16020 ,1,20,16010 ,1,21,16000 ,1,22,15985 ,1,23,2210 ,1,24,542350 ,1,25,2210 ,1,26,542350 ,2,822,222185 ,2,823,541825 ,2,824,419250 ,2,825,353760 ,2,826,539750 ,2,827,148505 ,2,828,490430 ,2,821,114310 ,1,0,608275 ,1,1,45 ,1,2,9500 ,1,3,341880 ,2,822,222195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539755 ,2,827,33755 ,2,828,490445 ,2,821,118775 ,1,0,596070 ,1,1,45 ,1,2,5080 ,2,822,222220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539760 ,2,827,75 ,2,828,490450 ,2,821,122065 ,2,822,48630 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,122210 ,1,0,10490 ,2,822,222230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520805 ,2,827,75 ,2,828,490455 ,2,821,123575 ,1,0,11085 ,2,822,222240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520805 ,2,827,75 ,2,828,490460 ,2,821,124970 ,2,822,596085 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,125675 ,1,0,556870 ,1,1,341935 ,1,2,15155 ,2,822,222250 ,2,823,541830 ,2,824,419255 ,2,825,353800 ,2,826,539775 ,2,827,148685 ,2,828,490485 ,2,821,141315 ,1,0,341925 ,1,1,341900 ,2,822,222285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539765 ,2,827,37620 ,2,828,490475 ,2,821,145090 ,1,0,545495 ,2,822,222295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539770 ,2,827,24545 ,2,828,490480 ,2,821,151030 ,2,822,48640 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,151200 ,1,0,214585 ,2,822,222315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539805 ,2,827,148715 ,2,828,490490 ,2,821,159130 ,1,0,222315 ,2,822,222325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535990 ,2,827,75 ,2,828,490495 ,2,821,161100 ,2,822,596095 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,161795 ,1,0,45 ,1,1,209800 ,2,822,222335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539810 ,2,827,75 ,2,828,490500 ,2,821,165190 ,1,0,45 ,1,1,216580 ,1,2,211975 ,2,822,222345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539815 ,2,827,75 ,2,828,490505 ,2,821,170000 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,222355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539820 ,2,827,75 ,2,828,490510 ,2,821,175065 ,1,0,45 ,1,1,209800 ,1,2,210705 ,2,822,222385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539825 ,2,827,75 ,2,828,490535 ,2,821,180105 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,222395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539820 ,2,827,75 ,2,828,490540 ,2,821,185095 ,1,0,45 ,1,1,9375 ,1,2,342165 ,1,3,45 ,1,4,11510 ,1,5,211395 ,1,6,359540 ,1,7,165675 ,1,8,45 ,1,9,11510 ,2,822,222405 ,2,823,240 ,2,824,419260 ,2,825,351970 ,2,826,539830 ,2,827,141335 ,2,828,490545 ,2,821,192750 ,1,0,222405 ,2,822,222415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,194725 ,1,0,222415 ,2,822,222445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539835 ,2,827,75 ,2,828,490550 ,2,821,196500 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,222455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539840 ,2,827,75 ,2,828,490560 ,2,821,201490 ,1,0,213745 ,1,1,342335 ,2,822,222465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539865 ,2,827,75 ,2,828,490565 ,2,821,204990 ,2,822,596130 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,206230 ,1,0,596130 ,1,1,45 ,1,2,9375 ,1,3,45 ,1,4,11510 ,2,822,222475 ,2,823,240 ,2,824,419265 ,2,825,351970 ,2,826,539870 ,2,827,141335 ,2,828,490570 ,2,821,210015 ,1,0,222475 ,2,822,222515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,212010 ,1,0,45 ,1,1,342375 ,1,2,210575 ,1,3,208100 ,1,4,342365 ,1,5,222515 ,1,6,208185 ,1,7,342355 ,1,8,207990 ,1,9,207305 ,1,10,2210 ,1,11,542350 ,2,822,222545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539875 ,2,827,148825 ,2,828,490575 ,2,821,250425 ,1,0,45 ,1,1,9375 ,1,2,557000 ,1,3,342450 ,1,4,342440 ,1,5,45 ,1,6,11510 ,2,822,222580 ,2,823,240 ,2,824,419295 ,2,825,351970 ,2,826,539055 ,2,827,141335 ,2,828,490600 ,2,821,257370 ,1,0,222580 ,2,822,222590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,259325 ,1,0,222590 ,2,822,222630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539835 ,2,827,75 ,2,828,490550 ,2,821,260985 ,1,0,45 ,1,1,216580 ,1,2,342470 ,1,3,171410 ,2,822,222640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539880 ,2,827,148900 ,2,828,490605 ,2,821,295120 ,2,822,596195 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,295780 ,1,0,45 ,1,1,186970 ,2,822,222650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539885 ,2,827,30175 ,2,828,490610 ,2,821,299390 ,1,0,45 ,1,1,216580 ,2,822,222660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537670 ,2,827,75 ,2,828,490615 ,2,821,302290 ,1,0,45 ,1,1,186970 ,2,822,222675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539890 ,2,827,96255 ,2,828,490630 ,2,821,311890 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,1,4,180820 ,2,822,222685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539895 ,2,827,148910 ,2,828,490635 ,2,821,320905 ,1,0,45 ,1,1,169470 ,1,2,207830 ,2,822,222695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539900 ,2,827,75 ,2,828,490640 ,2,821,324010 ,2,822,596230 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,324635 ,1,0,596230 ,1,1,45 ,1,2,169470 ,1,3,207880 ,2,822,222705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539900 ,2,827,75 ,2,828,490645 ,2,821,327655 ,1,0,567445 ,1,1,45 ,1,2,342550 ,1,3,342540 ,2,822,222730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537370 ,2,827,75 ,2,828,490680 ,2,821,330505 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,222740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539950 ,2,827,75 ,2,828,490685 ,2,821,335395 ,1,0,45 ,1,1,7585 ,1,2,45 ,1,3,11085 ,2,822,222750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539950 ,2,827,75 ,2,828,490690 ,2,821,340335 ,1,0,45 ,1,1,216580 ,2,822,222760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539955 ,2,827,75 ,2,828,490695 ,2,821,344255 ,1,0,566930 ,1,1,45 ,1,2,7585 ,1,3,45 ,1,4,11085 ,2,822,222770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539820 ,2,827,75 ,2,828,490700 ,2,821,349220 ,1,0,45 ,1,1,209800 ,2,822,222780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537945 ,2,827,75 ,2,828,490705 ,2,821,352735 ,2,822,222790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538775 ,2,827,75 ,2,828,490710 ,2,821,354190 ,1,0,581185 ,1,1,45 ,1,2,347150 ,2,822,222800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539960 ,2,827,75 ,2,828,490715 ,2,821,358175 ,1,0,568060 ,1,1,45 ,1,2,342720 ,1,3,342710 ,2,822,222830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539965 ,2,827,75 ,2,828,490750 ,2,821,361075 ,2,822,596270 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,361650 ,1,0,342755 ,1,1,228410 ,1,2,548065 ,2,822,222840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539970 ,2,827,148985 ,2,828,490755 ,2,821,369120 ,1,0,45 ,1,1,210905 ,2,822,222850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539975 ,2,827,75 ,2,828,490760 ,2,821,372575 ,1,0,204225 ,1,1,204235 ,2,822,222860 ,2,823,541865 ,2,824,419300 ,2,825,353810 ,2,826,539980 ,2,827,75 ,2,828,490765 ,2,821,378625 ,1,0,45 ,1,1,167770 ,1,2,222860 ,2,822,222870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539985 ,2,827,75 ,2,828,490770 ,2,821,383085 ,1,0,607525 ,1,1,45 ,1,2,175900 ,2,822,222890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540010 ,2,827,30175 ,2,828,490775 ,2,821,386130 ,1,0,45 ,1,1,5900 ,1,2,577760 ,1,3,365190 ,2,822,222900 ,2,823,541870 ,2,824,419305 ,2,825,353820 ,2,826,540015 ,2,827,149055 ,2,828,490780 ,2,821,394545 ,1,0,45 ,1,1,310080 ,2,822,222945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540020 ,2,827,44250 ,2,828,490785 ,2,821,396430 ,2,822,596330 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,397195 ,1,0,301760 ,2,822,222965 ,2,823,541875 ,2,824,419310 ,2,825,353830 ,2,826,540025 ,2,827,75 ,2,828,490805 ,2,821,402290 ,1,0,343285 ,2,822,222975 ,2,823,541880 ,2,824,419320 ,2,825,353845 ,2,826,540035 ,2,827,149145 ,2,828,490810 ,2,821,413120 ,2,822,222985 ,2,823,541885 ,2,824,419325 ,2,825,353855 ,2,826,540040 ,2,827,75 ,2,828,490815 ,2,821,416605 ,1,0,45 ,1,1,195155 ,1,2,562475 ,1,3,45 ,1,4,5080 ,1,5,222985 ,2,822,222995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540045 ,2,827,75 ,2,828,490820 ,2,821,421575 ,1,0,204155 ,1,1,165775 ,2,822,223005 ,2,823,541890 ,2,824,419330 ,2,825,353865 ,2,826,540050 ,2,827,75 ,2,828,490830 ,2,821,431095 ,1,0,45 ,1,1,167770 ,2,822,223015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540090 ,2,827,75 ,2,828,490835 ,2,821,433185 ,1,0,343315 ,2,822,223040 ,2,823,541895 ,2,824,419325 ,2,825,353855 ,2,826,540040 ,2,827,75 ,2,828,490840 ,2,821,436870 ,1,0,343365 ,1,1,223040 ,2,822,223050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540095 ,2,827,75 ,2,828,490845 ,2,821,440165 ,1,0,251720 ,1,1,405 ,2,822,223060 ,2,823,541900 ,2,824,419335 ,2,825,353875 ,2,826,540100 ,2,827,75 ,2,828,490890 ,2,821,447785 ,1,0,251675 ,2,822,223070 ,2,823,541925 ,2,824,419350 ,2,825,353920 ,2,826,540105 ,2,827,75 ,2,828,490895 ,2,821,455105 ,2,822,596355 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,455485 ,2,822,596395 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,455805 ,1,0,45 ,1,1,9375 ,1,2,225560 ,1,3,570940 ,1,4,45 ,1,5,11510 ,1,6,45 ,1,7,11510 ,1,8,45 ,1,9,11510 ,2,822,223085 ,2,823,240 ,2,824,419355 ,2,825,351970 ,2,826,540110 ,2,827,149465 ,2,828,490900 ,2,821,467365 ,1,0,223085 ,2,822,223095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540115 ,2,827,75 ,2,828,490905 ,2,821,468575 ,2,822,596410 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,469420 ,1,0,45 ,1,1,195155 ,2,822,223115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540120 ,2,827,75 ,2,828,490915 ,2,821,471580 ,1,0,45 ,1,1,343565 ,1,2,343555 ,1,3,343545 ,2,822,223150 ,2,823,541930 ,2,824,419360 ,2,825,353930 ,2,826,540125 ,2,827,44250 ,2,828,490920 ,2,821,474685 ,1,0,609040 ,1,1,45 ,1,2,5900 ,1,3,343590 ,1,4,343580 ,2,822,223160 ,2,823,541935 ,2,824,419365 ,2,825,353940 ,2,826,540145 ,2,827,75 ,2,828,490925 ,2,821,482580 ,1,0,165795 ,2,822,223170 ,2,823,541940 ,2,824,419375 ,2,825,353950 ,2,826,540150 ,2,827,75 ,2,828,490930 ,2,821,485380 ,1,0,356000 ,1,1,343600 ,2,822,223180 ,2,823,541950 ,2,824,419380 ,2,825,353960 ,2,826,540155 ,2,827,75 ,2,828,490945 ,2,821,489030 ,2,822,223190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,490950 ,2,821,489945 ,1,0,45 ,1,1,9375 ,1,2,359570 ,1,3,45 ,1,4,11510 ,1,5,343610 ,1,6,5855 ,1,7,215880 ,1,8,45 ,1,9,11510 ,2,822,223200 ,2,823,240 ,2,824,419385 ,2,825,351970 ,2,826,540160 ,2,827,141335 ,2,828,490955 ,2,821,496355 ,1,0,223200 ,2,822,223210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536710 ,2,827,75 ,2,828,486295 ,2,821,497535 ,1,0,223210 ,2,822,223220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539015 ,2,827,75 ,2,828,490550 ,2,821,498620 ,1,0,45 ,1,1,343730 ,1,2,215405 ,2,822,223255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540165 ,2,827,75 ,2,828,490960 ,2,821,502160 ,1,0,45 ,1,1,209800 ,1,2,215985 ,2,822,223265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535895 ,2,827,75 ,2,828,490965 ,2,821,504570 ,1,0,215595 ,2,822,223275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540170 ,2,827,75 ,2,828,490970 ,2,821,505620 ,2,822,223285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540175 ,2,827,75 ,2,828,490975 ,2,821,506920 ,2,822,223305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,490980 ,2,821,507830 ,1,0,606960 ,1,1,45 ,1,2,5900 ,1,3,606955 ,1,4,45 ,1,5,5900 ,2,822,223315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539175 ,2,827,75 ,2,828,491010 ,2,821,509865 ,1,0,596425 ,1,1,45 ,1,2,205700 ,1,3,566615 ,1,4,45 ,1,5,183310 ,2,822,223335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540180 ,2,827,75 ,2,828,491015 ,2,821,513005 ,1,0,45 ,1,1,9375 ,1,2,45 ,1,3,11510 ,2,822,223370 ,2,823,240 ,2,824,419390 ,2,825,351970 ,2,826,540205 ,2,827,141335 ,2,828,491020 ,2,821,515815 ,1,0,223370 ,2,822,223380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,517005 ,2,822,596455 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,517775 ,1,0,596455 ,1,1,45 ,1,2,9375 ,1,3,547445 ,1,4,359520 ,1,5,225580 ,1,6,609635 ,1,7,45 ,1,8,11510 ,1,9,557245 ,1,10,45 ,1,11,11510 ,2,822,223390 ,2,823,240 ,2,824,419415 ,2,825,351970 ,2,826,540210 ,2,827,141335 ,2,828,491025 ,2,821,523070 ,1,0,223390 ,2,822,223400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535920 ,2,827,75 ,2,828,486295 ,2,821,524250 ,1,0,223400 ,1,1,553945 ,2,822,223425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539835 ,2,827,75 ,2,828,490550 ,2,821,525330 ,1,0,223380 ,2,822,223435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,539835 ,2,827,75 ,2,828,490550 ,2,821,526370 ,2,822,223445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540215 ,2,827,75 ,2,828,491035 ,2,821,527910 ,2,822,596465 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,528335 ,1,0,45 ,1,1,186970 ,1,2,596465 ,1,3,45 ,1,4,343945 ,2,822,223455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540220 ,2,827,75 ,2,828,491040 ,2,821,531750 ,1,0,560980 ,1,1,45 ,1,2,344025 ,2,822,223510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540245 ,2,827,75 ,2,828,491045 ,2,821,534140 ,2,822,223520 ,2,823,541955 ,2,824,419420 ,2,825,353970 ,2,826,540250 ,2,827,75 ,2,828,491050 ,2,821,537520 ,1,0,223520 ,2,822,223530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538910 ,2,827,75 ,2,828,491080 ,2,821,540950 ,2,822,223545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540255 ,2,827,75 ,2,828,491085 ,2,821,542690 ,2,822,223555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,491090 ,2,821,543585 ,2,822,223565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536215 ,2,827,75 ,2,828,491095 ,2,821,544515 ,2,822,596485 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,544890 ,1,0,264775 ,1,1,344075 ,1,2,557280 ,1,3,355460 ,2,822,223575 ,2,823,541960 ,2,824,419425 ,2,825,353980 ,2,826,540260 ,2,827,149705 ,2,828,491100 ,2,821,549625 ,1,0,223575 ,2,822,223620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506070 ,2,827,75 ,2,828,491105 ,2,821,552235 ,2,822,223630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496070 ,2,827,75 ,2,828,491110 ,2,821,553105 ,1,0,543235 ,1,1,596520 ,1,2,543235 ,1,3,2280 ,1,4,542290 ,1,5,543230 ,1,6,596490 ,1,7,543230 ,1,8,2280 ,1,9,542280 ,1,10,2280 ,1,11,542275 ,1,12,2280 ,1,13,542280 ,2,822,223660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540295 ,2,827,75 ,2,828,491115 ,2,821,558735 ,2,822,223680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,491150 ,2,821,559620 ,1,0,45 ,1,1,177250 ,2,822,223740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540300 ,2,827,75 ,2,828,491165 ,2,821,562195 ,2,822,223760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540305 ,2,827,75 ,2,828,491180 ,2,821,563310 ,2,822,223770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,563890 ,1,0,178395 ,1,1,45 ,1,2,13320 ,1,3,45 ,1,4,13320 ,1,5,2135 ,1,6,45 ,1,7,13320 ,2,822,223790 ,2,823,541965 ,2,824,419430 ,2,825,353990 ,2,826,540310 ,2,827,149865 ,2,828,491185 ,2,821,569880 ,2,822,223800 ,2,823,541990 ,2,824,419440 ,2,825,354015 ,2,826,540325 ,2,827,75 ,2,828,491190 ,2,821,572045 ,1,0,45 ,1,1,13320 ,1,2,543260 ,1,3,561220 ,1,4,543260 ,1,5,223770 ,1,6,45 ,1,7,13320 ,1,8,2135 ,1,9,45 ,1,10,13320 ,2,822,223835 ,2,823,541995 ,2,824,419445 ,2,825,354025 ,2,826,540330 ,2,827,149865 ,2,828,491195 ,2,821,581395 ,2,822,223845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,491230 ,2,821,582325 ,1,0,264905 ,2,822,223885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492600 ,2,827,75 ,2,828,420660 ,2,821,582735 ,1,0,344395 ,2,822,223895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506390 ,2,827,75 ,2,828,491235 ,2,821,583300 ,1,0,596595 ,1,1,45 ,1,2,344405 ,1,3,45 ,1,4,186970 ,2,822,223905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540335 ,2,827,75 ,2,828,491240 ,2,821,585195 ,1,0,563570 ,1,1,45 ,1,2,2820 ,1,3,292865 ,2,822,223915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540340 ,2,827,75 ,2,828,491245 ,2,821,587050 ,1,0,45 ,1,1,4315 ,2,822,223955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540370 ,2,827,75 ,2,828,491255 ,2,821,588765 ,1,0,345160 ,1,1,345150 ,1,2,8760 ,1,3,7860 ,1,4,345140 ,1,5,345130 ,1,6,191275 ,2,822,223965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540375 ,2,827,75 ,2,828,491260 ,2,821,593525 ,1,0,45 ,1,1,3770 ,1,2,45 ,1,3,167895 ,1,4,345565 ,1,5,166085 ,1,6,345555 ,2,822,223975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540380 ,2,827,75 ,2,828,491265 ,2,821,599300 ,1,0,45 ,1,1,345545 ,1,2,345510 ,1,3,599965 ,1,4,45 ,1,5,13320 ,2,822,224000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540385 ,2,827,75 ,2,828,491270 ,2,821,603520 ,1,0,45 ,1,1,3525 ,1,2,166130 ,2,822,224020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540395 ,2,827,75 ,2,828,491295 ,2,821,605365 ,2,822,596660 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,606335 ,1,0,45 ,1,1,346975 ,2,822,224065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540400 ,2,827,39440 ,2,828,491300 ,2,821,608975 ,1,0,45 ,1,1,346975 ,2,822,224075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540400 ,2,827,39440 ,2,828,491305 ,2,821,611570 ,2,822,596720 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,611975 ,2,822,224085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540405 ,2,827,75 ,2,828,491310 ,2,821,613205 ,1,0,560465 ,1,1,45 ,1,2,347195 ,1,3,560510 ,1,4,45 ,1,5,198270 ,1,6,45 ,1,7,347180 ,1,8,558090 ,1,9,45 ,1,10,177250 ,1,11,557505 ,1,12,166425 ,1,13,177390 ,1,14,2135 ,1,15,177160 ,2,822,224095 ,2,823,542000 ,2,824,419450 ,2,825,354035 ,2,826,540410 ,2,827,75 ,2,828,491320 ,2,821,618575 ,1,0,560850 ,1,1,45 ,1,2,177250 ,2,822,224140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540425 ,2,827,75 ,2,828,491325 ,2,821,621370 ,1,0,543430 ,1,1,596750 ,1,2,543430 ,1,3,1470 ,1,4,2280 ,1,5,542290 ,1,6,543425 ,1,7,596745 ,1,8,543425 ,1,9,2280 ,1,10,542280 ,1,11,2280 ,1,12,542275 ,2,822,224165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540430 ,2,827,75 ,2,828,491330 ,2,821,625185 ,1,0,224165 ,1,1,224140 ,1,2,545930 ,1,3,166445 ,2,822,224175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540435 ,2,827,75 ,2,828,491335 ,2,821,626500 ,1,1,2395 ,2,822,224185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495175 ,2,827,75 ,2,828,491360 ,2,821,626995 ,2,822,224415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,627305 ,1,0,45 ,1,1,9435 ,2,822,228135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540450 ,2,827,75 ,2,828,491370 ,2,821,628975 ,1,0,45 ,1,1,9435 ,2,822,228145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540455 ,2,827,75 ,2,828,491375 ,2,821,630700 ,1,0,45 ,1,1,9435 ,2,822,228155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540460 ,2,827,75 ,2,828,491385 ,2,821,632485 ,1,0,45 ,1,1,9435 ,2,822,228170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,491390 ,2,821,633370 ,1,0,45 ,1,1,9435 ,2,822,228180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491630 ,2,827,75 ,2,828,491395 ,2,821,634240 ,1,0,45 ,1,1,9435 ,2,822,228190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540465 ,2,827,75 ,2,828,491400 ,2,821,635800 ,1,0,45 ,1,1,9435 ,2,822,228200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540500 ,2,827,75 ,2,828,491430 ,2,821,637390 ,1,0,45 ,1,1,9435 ,2,822,228225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540500 ,2,827,75 ,2,828,491435 ,2,821,639010 ,2,822,228235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540505 ,2,827,75 ,2,828,491440 ,2,821,639490 ,1,0,45 ,1,1,11690 ,2,822,228245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514685 ,2,827,75 ,2,828,454185 ,2,821,640905 ,1,0,45 ,1,1,11690 ,2,822,228255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540510 ,2,827,75 ,2,828,491445 ,2,821,642270 ,1,0,45 ,1,1,11690 ,2,822,228270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540510 ,2,827,75 ,2,828,491445 ,2,821,643510 ,2,822,599870 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,643895 ,2,822,599880 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,644275 ,2,822,599885 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,644625 ,2,822,599895 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,644945 ,2,822,599900 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,645280 ,2,822,599905 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,645610 ,2,822,599940 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,645950 ,2,822,599945 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,646305 ,1,0,45 ,1,1,9435 ,2,822,228290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540515 ,2,827,75 ,2,828,491450 ,2,821,648055 ,1,0,45 ,1,1,9435 ,2,822,228300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540520 ,2,827,75 ,2,828,491455 ,2,821,649805 ,1,0,45 ,1,1,9435 ,2,822,228330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540520 ,2,827,75 ,2,828,491460 ,2,821,651705 ,2,822,228350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540525 ,2,827,75 ,2,828,491465 ,2,821,652625 ,2,822,228360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540530 ,2,827,75 ,2,828,491500 ,2,821,653300 ,2,822,228450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540535 ,2,827,75 ,2,828,491515 ,2,821,654170 ,2,822,228470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540535 ,2,827,75 ,2,828,491510 ,2,821,655070 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,228460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495065 ,2,827,75 ,2,828,491505 ,2,821,656150 ,1,0,45 ,1,1,9435 ,2,822,228485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540565 ,2,827,75 ,2,828,491520 ,2,821,657255 ,1,0,45 ,1,1,9435 ,2,822,228545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540570 ,2,827,75 ,2,828,491525 ,2,821,658355 ,1,0,45 ,1,1,9435 ,2,822,228555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540570 ,2,827,75 ,2,828,491530 ,2,821,659460 ,2,822,599970 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,659940 ,2,822,599975 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,660395 ,2,822,228565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540575 ,2,827,75 ,2,828,491535 ,2,821,661210 ,2,822,228575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514775 ,2,827,75 ,2,828,491565 ,2,821,661910 ,2,822,228585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540580 ,2,827,75 ,2,828,491570 ,2,821,662515 ,1,0,425 ,2,822,228595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518355 ,2,827,75 ,2,828,491575 ,2,821,663145 ,1,0,435 ,2,822,228605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518365 ,2,827,75 ,2,828,491580 ,2,821,663805 ,2,822,228650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,664300 ,2,822,600030 ,2,823,45 ,2,824,220 ,2,825,45 ,2,826,45 ,2,827,45 ,2,828,45 ,2,821,664610 ,2,822,228785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,540600 ,2,827,75 ,2,828,491590 ,2,821,664930 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,228815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534325 ,2,827,75 ,2,828,491595 ,2,821,665995 ,1,1,2395 ,1,2,45 ,1,3,9470 ,2,822,228845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495935 ,2,827,75 ,2,828,491600 ,2,821,414055 ,2,822,59810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,64230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,63650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,139300 ,2,822,70270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,33935 ,2,822,70555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,422745 ,2,821,439475 ,2,822,71755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,92250 ,2,822,71765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,423215 ,2,821,439475 ,2,822,73610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,423940 ,2,821,439475 ,2,822,73640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,73710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,74965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,74985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,75015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,75025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,75045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,424535 ,2,821,414055 ,2,822,75140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,75170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,75350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,75840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,76530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,76665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,78280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,119830 ,2,822,81290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,57520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,81490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,72295 ,2,822,81510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,81520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,82100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,82165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,82245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,74690 ,2,822,82350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497040 ,2,827,75 ,2,828,427230 ,2,821,112030 ,2,822,82455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,82465 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,82475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,82535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,82750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,82770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,72295 ,2,822,82780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,205230 ,2,822,83090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491670 ,2,827,75 ,2,828,427425 ,2,821,139300 ,2,822,83300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,119830 ,2,822,83385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,81660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,82880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,87460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,88490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575730 ,2,822,88705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,428615 ,2,821,139300 ,2,822,89290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,92250 ,2,822,89390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,428735 ,2,821,357630 ,2,822,89910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,92250 ,2,822,90365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,428980 ,2,821,633575 ,2,822,90410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494605 ,2,827,75 ,2,828,428985 ,2,821,357630 ,2,822,90815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,169495 ,2,822,91040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,168570 ,2,822,91140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,91230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,91545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575410 ,2,822,92705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498075 ,2,827,50465 ,2,828,429590 ,2,821,432325 ,2,822,98730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,431425 ,2,821,432325 ,2,822,98845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499965 ,2,827,75 ,2,828,431465 ,2,821,428990 ,2,822,98935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,119830 ,2,822,99660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,428990 ,2,822,100360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,100410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,119830 ,2,822,101145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,91410 ,2,822,104340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500405 ,2,827,75 ,2,828,433040 ,2,821,112030 ,2,822,105605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,108340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,372360 ,2,822,111370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499355 ,2,827,75 ,2,828,434820 ,2,821,439475 ,2,822,110955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,111285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,438080 ,2,822,111895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,435170 ,2,821,470665 ,2,822,112045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502675 ,2,827,62810 ,2,828,435200 ,2,821,478955 ,2,822,112065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502680 ,2,827,62810 ,2,828,435240 ,2,821,439475 ,2,822,112370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,550230 ,2,822,112800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502675 ,2,827,62810 ,2,828,435385 ,2,821,558560 ,2,822,112965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502680 ,2,827,62810 ,2,828,435425 ,2,821,439475 ,2,822,113245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414235 ,2,822,114035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,114570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414235 ,2,822,114590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,114630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,119720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,72295 ,2,822,121255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,72295 ,2,822,121530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,123550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,125495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,88790 ,2,822,126405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500385 ,2,827,75 ,2,828,438460 ,2,821,439475 ,2,822,129805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,130610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,130620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,33935 ,2,822,131675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,439865 ,2,821,124095 ,2,822,131960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499370 ,2,827,55375 ,2,828,439915 ,2,821,439475 ,2,822,134540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,134645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,136380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,218860 ,2,822,136435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,441155 ,2,821,439475 ,2,822,137220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,138845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,615530 ,2,822,139730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,435330 ,2,821,439475 ,2,822,139740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,140455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,607735 ,1,0,327575 ,2,822,141545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,442440 ,2,821,605140 ,1,0,314930 ,2,822,141810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,442515 ,2,821,635000 ,2,822,141820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,148160 ,2,822,141945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505970 ,2,827,75 ,2,828,442535 ,2,821,154105 ,2,822,141935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506010 ,2,827,75 ,2,828,442570 ,2,821,439475 ,2,822,142060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,66150 ,2,822,142315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,659200 ,2,822,143045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,442915 ,2,821,112030 ,2,822,143550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,143560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,143615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,143795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,143875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,341725 ,2,822,143905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499355 ,2,827,75 ,2,828,443360 ,2,821,639600 ,2,822,145055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,145430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,145550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,145885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,145960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,145970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,605140 ,1,0,315925 ,2,822,152260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,444100 ,2,821,92250 ,2,822,147380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492465 ,2,827,75 ,2,828,444520 ,2,821,605140 ,1,0,255605 ,2,822,147510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,444560 ,2,821,439475 ,2,822,148115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,148500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,149460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,615530 ,2,822,149640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,435330 ,2,821,439475 ,2,822,149650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,150005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,605140 ,2,822,150185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501135 ,2,827,75 ,2,828,445305 ,2,821,439475 ,2,822,151225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,99190 ,2,822,151825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,445610 ,2,821,100840 ,2,822,151930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505545 ,2,827,88675 ,2,828,445845 ,2,821,439475 ,2,822,152530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,153675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,570220 ,2,822,154015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,446185 ,2,821,572385 ,2,822,154025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,446195 ,2,821,574610 ,2,822,154035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,446235 ,2,821,351285 ,2,822,154350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,446250 ,2,821,570220 ,2,822,154360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,436725 ,2,821,572385 ,2,822,154370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,436735 ,2,821,574610 ,2,822,154405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,446270 ,2,821,439475 ,2,822,154530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,446420 ,2,821,439475 ,2,822,154970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,154990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,155090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,155275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,155860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,156040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,393075 ,2,822,156050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498020 ,2,827,75 ,2,828,446645 ,2,821,439475 ,2,822,156475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,156675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,157035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,157825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,158165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,159950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,159960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,159980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,160085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,160195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,160205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,160245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,91410 ,2,822,106305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500405 ,2,827,75 ,2,828,448345 ,2,821,439475 ,2,822,85720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,86955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,87070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,133770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,165850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,53945 ,2,822,166115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,449200 ,2,821,414055 ,2,822,153715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,85710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,86945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,87045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,153360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,133760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,166215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,133960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,104955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,119260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,119005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,166625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,124095 ,2,822,167995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,499370 ,2,827,55375 ,2,828,439915 ,2,821,638575 ,2,822,168210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,449775 ,2,821,414055 ,2,822,169515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,404795 ,2,822,173140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,511670 ,2,827,104130 ,2,828,451005 ,2,821,66405 ,2,822,173635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,536680 ,2,822,179055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513265 ,2,827,75 ,2,828,452350 ,2,821,564305 ,2,822,179735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,513315 ,2,827,75 ,2,828,452465 ,2,821,139300 ,2,822,180335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,180345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277670 ,2,822,158805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,158955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,109415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,134205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,181285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,119830 ,2,822,181295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,119830 ,2,822,181305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,181345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,661180 ,2,822,66440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,661180 ,2,822,181845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,453330 ,2,821,653500 ,2,822,111615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,661180 ,2,822,67170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,653500 ,2,822,156665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,553520 ,2,822,182240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414235 ,2,822,138940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,612150 ,2,822,183200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,40135 ,2,828,453690 ,2,821,620535 ,2,822,184100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,40135 ,2,828,453715 ,2,821,639485 ,2,822,185480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514330 ,2,827,40135 ,2,828,453800 ,2,821,414055 ,2,822,185910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,186010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,92780 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,92730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,661180 ,2,822,187385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,87080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,607435 ,2,822,187720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,187975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,188035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,306265 ,2,822,188920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514935 ,2,827,75 ,2,828,454645 ,2,821,306265 ,2,822,188795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514935 ,2,827,75 ,2,828,454745 ,2,821,45395 ,2,822,188130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,45395 ,2,822,189350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,45395 ,2,822,179980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,308570 ,2,822,162665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,498820 ,2,827,75 ,2,828,455085 ,2,821,661180 ,2,822,128550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,187955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,543145 ,2,822,184435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515255 ,2,827,75 ,2,828,455330 ,2,821,560090 ,2,822,61840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515265 ,2,827,75 ,2,828,455345 ,2,821,560090 ,2,822,185825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515265 ,2,827,75 ,2,828,455350 ,2,821,560090 ,2,822,63220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515265 ,2,827,75 ,2,828,455355 ,2,821,543145 ,2,822,171970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515255 ,2,827,75 ,2,828,455355 ,2,821,607435 ,2,822,189440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,570615 ,2,822,183435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455395 ,2,821,570905 ,2,822,184345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455405 ,2,821,571160 ,2,822,185285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455410 ,2,821,571485 ,2,822,185715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455415 ,2,821,571780 ,2,822,171870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,455420 ,2,821,661180 ,2,822,146380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,45720 ,2,822,63560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,455445 ,2,821,575330 ,1,0,551800 ,2,822,183325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515305 ,2,827,75 ,2,828,455455 ,2,821,576670 ,1,0,551915 ,1,1,337500 ,2,822,184235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515305 ,2,827,75 ,2,828,455470 ,2,821,578020 ,1,0,552020 ,2,822,185180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515305 ,2,827,75 ,2,828,455480 ,2,821,579410 ,2,822,185630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515310 ,2,827,75 ,2,828,455515 ,2,821,580805 ,2,822,171770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515315 ,2,827,75 ,2,828,455525 ,2,821,406585 ,2,822,99605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,64390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,101300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,104745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,611625 ,2,822,184050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455690 ,2,821,611625 ,2,822,184510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455690 ,2,821,611625 ,2,822,184975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455710 ,2,821,611625 ,2,822,185415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455710 ,2,821,611625 ,2,822,61870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455715 ,2,821,611625 ,2,822,185855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455715 ,2,821,611625 ,2,822,63260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455720 ,2,821,611625 ,2,822,172030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455720 ,2,821,120785 ,2,822,163140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,455785 ,2,821,611625 ,2,822,182810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455865 ,2,821,612145 ,2,822,183260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,455865 ,2,821,611625 ,2,822,183730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455870 ,2,821,612145 ,2,822,184190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,455870 ,2,821,611625 ,2,822,184635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455900 ,2,821,611625 ,2,822,185115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455900 ,2,821,611625 ,2,822,61610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455905 ,2,821,611625 ,2,822,185550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455905 ,2,821,611625 ,2,822,62975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455910 ,2,821,612145 ,2,822,171730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,496870 ,2,827,75 ,2,828,455910 ,2,821,16235 ,2,822,189600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514460 ,2,827,75 ,2,828,455915 ,2,821,611870 ,1,0,332020 ,2,822,168970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455925 ,2,821,611625 ,1,0,332030 ,2,822,189530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492650 ,2,827,75 ,2,828,455930 ,2,821,48495 ,2,822,171720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,456090 ,2,821,414055 ,2,822,162760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,48495 ,2,822,61125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,456140 ,2,821,525640 ,2,822,190795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501615 ,2,827,75 ,2,828,456345 ,2,821,574610 ,2,822,190870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,456350 ,2,821,175110 ,2,822,190910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493875 ,2,827,75 ,2,828,456365 ,2,821,567955 ,2,822,191010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,456400 ,2,821,570220 ,2,822,191215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,456415 ,2,821,572385 ,2,822,191440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,456480 ,2,821,8515 ,2,822,191755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515535 ,2,827,75 ,2,828,456605 ,2,821,5550 ,2,822,191785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,515530 ,2,827,75 ,2,828,456615 ,2,821,506305 ,2,822,154320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516195 ,2,827,75 ,2,828,457200 ,2,821,439475 ,2,822,194225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,115265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,123190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,148670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,144100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,180815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,160285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,111410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,103240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,194830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,195140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,462895 ,2,822,195900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,640450 ,2,822,196290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502955 ,2,827,75 ,2,828,458195 ,2,821,642875 ,2,822,196280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502970 ,2,827,122155 ,2,828,458200 ,2,821,439475 ,2,822,196350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,157405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,157355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,157540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,191670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,100810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,453450 ,2,822,154415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516935 ,2,827,75 ,2,828,458370 ,2,821,453450 ,2,822,191450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516935 ,2,827,75 ,2,828,458375 ,2,821,452420 ,2,822,194585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,504625 ,2,827,75 ,2,828,458380 ,2,821,459305 ,2,822,107950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516930 ,2,827,75 ,2,828,458435 ,2,821,453450 ,1,0,340515 ,2,822,100920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,516935 ,2,827,75 ,2,828,458500 ,2,821,162930 ,2,822,100905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,458615 ,2,821,635000 ,2,822,148260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,180825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,191680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,107740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,116175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,100475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,53945 ,2,822,197190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,458785 ,2,821,414055 ,2,822,197240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,53945 ,2,822,197285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,458825 ,2,821,53945 ,2,822,197565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,458875 ,2,821,635000 ,2,822,197625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,458895 ,2,821,53945 ,2,822,197695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,458905 ,2,821,73015 ,2,822,198005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,53945 ,2,822,198135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,459045 ,2,821,439475 ,2,822,100350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,162975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,100735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,100690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,565050 ,2,822,103340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,460325 ,2,821,112030 ,2,822,193755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,112030 ,2,822,155915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,112030 ,2,822,191110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,115495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,100755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,104550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,103350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,103050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,112585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,134980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,160700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,109555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,108155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,116525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,118655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,154310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,156370 ,2,822,184355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518910 ,2,827,75 ,2,828,461225 ,2,821,156370 ,2,822,61750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518910 ,2,827,75 ,2,828,461240 ,2,821,156370 ,2,822,185725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518910 ,2,827,75 ,2,828,461245 ,2,821,156370 ,2,822,63120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518910 ,2,827,75 ,2,828,461250 ,2,821,156370 ,2,822,171880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518910 ,2,827,75 ,2,828,461250 ,2,821,439475 ,2,822,131720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,158225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,163305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,136115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,100515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,389065 ,2,822,156250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519140 ,2,827,75 ,2,828,461685 ,2,821,654175 ,2,822,169180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,518365 ,2,827,75 ,2,828,461745 ,2,821,409870 ,2,822,94505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519185 ,2,827,75 ,2,828,461765 ,2,821,409870 ,2,822,94810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519185 ,2,827,75 ,2,828,461770 ,2,821,463410 ,2,822,192520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519315 ,2,827,127945 ,2,828,461945 ,2,821,508105 ,2,822,193325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519380 ,2,827,75 ,2,828,462070 ,2,821,510195 ,2,822,61340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519405 ,2,827,75 ,2,828,462075 ,2,821,512320 ,2,822,193375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519380 ,2,827,75 ,2,828,462080 ,2,821,439475 ,2,822,95765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,168570 ,2,822,95755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,3265 ,2,822,171990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,519870 ,2,827,75 ,2,828,462670 ,2,821,145405 ,2,822,200805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520065 ,2,827,75 ,2,828,462930 ,2,821,439475 ,2,822,162915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,463030 ,2,821,277525 ,2,822,86850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,183335 ,2,822,183570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463050 ,2,821,184030 ,2,822,184455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463060 ,2,821,184750 ,2,822,185395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,463065 ,2,821,229095 ,2,822,200835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,463130 ,2,821,439475 ,2,822,105835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,232210 ,2,822,60820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463225 ,2,821,232210 ,2,822,97485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463235 ,2,821,232210 ,2,822,124900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,463255 ,2,821,250010 ,2,822,56520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,463300 ,2,821,439475 ,2,822,100585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,216810 ,2,822,103420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520140 ,2,827,75 ,2,828,463370 ,2,821,268490 ,2,822,97440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,463435 ,2,821,268490 ,2,822,124835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,463460 ,2,821,57990 ,2,822,200060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521110 ,2,827,75 ,2,828,464600 ,2,821,60830 ,2,822,183350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520055 ,2,827,75 ,2,828,464630 ,2,821,70045 ,2,822,185655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521120 ,2,827,75 ,2,828,464655 ,2,821,71820 ,2,822,171810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521125 ,2,827,75 ,2,828,464660 ,2,821,635000 ,2,822,200730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,446840 ,2,822,201480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,446840 ,2,822,200910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,200765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,472055 ,2,822,65095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,465195 ,2,821,455660 ,2,822,64880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,509735 ,2,827,75 ,2,828,465245 ,2,821,457730 ,2,822,65105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,465255 ,2,821,509495 ,2,822,125045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,521965 ,2,822,183340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465285 ,2,821,522340 ,2,822,184245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465290 ,2,821,522740 ,2,822,185190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465295 ,2,821,523760 ,2,822,171800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493850 ,2,827,75 ,2,828,465310 ,2,821,505300 ,2,822,181630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,561945 ,2,822,185170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,465400 ,2,821,563885 ,2,822,171760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521555 ,2,827,75 ,2,828,465415 ,2,821,453380 ,2,822,164120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,250010 ,2,822,61180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,465465 ,2,821,575230 ,2,822,154255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,503685 ,2,827,75 ,2,828,465615 ,2,821,439475 ,2,822,100495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,198070 ,2,822,184365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465815 ,2,821,201310 ,2,822,185735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520320 ,2,827,75 ,2,828,465830 ,2,821,202395 ,2,822,171915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491850 ,2,827,75 ,2,828,465835 ,2,821,439475 ,2,822,200775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,102710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,114800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,138650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,114900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,96935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,164765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,163315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,263865 ,2,822,126665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,29410 ,2,822,171945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523205 ,2,827,75 ,2,828,467465 ,2,821,277525 ,2,822,59540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,123595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,124410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,199850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,123300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,250420 ,2,822,195405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523485 ,2,827,75 ,2,828,467930 ,2,821,439475 ,2,822,107335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,162905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,74275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,295375 ,2,822,149480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468090 ,2,821,295375 ,2,822,149670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468085 ,2,821,295375 ,2,822,123320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468090 ,2,821,299015 ,2,822,123560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493050 ,2,827,75 ,2,828,468080 ,2,821,294345 ,2,822,137230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,468080 ,2,821,294345 ,2,822,187985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,468080 ,2,821,295375 ,2,822,113265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468100 ,2,821,295375 ,1,0,555345 ,1,1,327705 ,2,822,112390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468090 ,2,821,295375 ,2,822,152585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468090 ,2,821,294345 ,2,822,153685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,468080 ,2,821,295375 ,2,822,107355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468090 ,2,821,311050 ,2,822,196370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523585 ,2,827,26010 ,2,828,468085 ,2,821,295375 ,2,822,139760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523575 ,2,827,26010 ,2,828,468090 ,2,821,294345 ,2,822,151235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,468095 ,2,821,73015 ,2,822,82900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,231930 ,2,822,135910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,204500 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,114125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,118235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,123270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,103895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,117595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,545590 ,1,0,171670 ,2,822,179355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524165 ,2,827,75 ,2,828,468895 ,2,821,357465 ,2,822,140575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,204985 ,2,822,158485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,330970 ,2,822,162655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,231930 ,2,822,108735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575785 ,2,822,149595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,231930 ,2,822,123110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,231930 ,2,822,101900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,572110 ,2,822,129625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,195275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,195330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,141985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,166655 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,330970 ,2,822,121160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,406585 ,2,822,57350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,660665 ,2,822,134160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635560 ,2,822,81480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524495 ,2,827,75 ,2,828,469290 ,2,821,631235 ,2,822,200920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524475 ,2,827,75 ,2,828,469295 ,2,821,635560 ,2,822,201700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524495 ,2,827,75 ,2,828,469330 ,2,821,643505 ,2,822,121285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,643505 ,2,822,121360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,590395 ,2,822,135195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,139795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,139485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,47755 ,2,822,171960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524625 ,2,827,75 ,2,828,469465 ,2,821,498030 ,2,822,140025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,594090 ,2,822,63975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,94255 ,2,822,65085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514770 ,2,827,75 ,2,828,469555 ,2,821,73015 ,2,822,109055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,95795 ,2,822,125055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514460 ,2,827,75 ,2,828,455915 ,2,821,95795 ,2,822,182345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,514460 ,2,827,75 ,2,828,453920 ,2,821,73015 ,2,822,102170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,74250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,120080 ,2,822,117905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524550 ,2,827,75 ,2,828,469675 ,2,821,501665 ,2,822,165550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,86345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,653500 ,2,822,139860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,185975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,159340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,219285 ,2,822,184530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,469815 ,2,821,224680 ,2,822,172060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,521555 ,2,827,75 ,2,828,469860 ,2,821,439475 ,2,822,195215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,141955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,71295 ,2,822,63885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,520225 ,2,827,75 ,2,828,469880 ,2,821,357465 ,2,822,130935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,129990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,212110 ,2,822,146560 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,469780 ,2,821,120080 ,2,822,106345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524550 ,2,827,75 ,2,828,469650 ,2,821,277670 ,2,822,180555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,146475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,131875 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,120060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,498030 ,2,822,102730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,114820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,357465 ,2,822,138680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,114925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,168645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,131920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,151020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,651030 ,2,822,126600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,139535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,117095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,126675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,102770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,114840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,138700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,114945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,114450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,643505 ,2,822,116790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,102160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,125220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,211785 ,2,822,118330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,357465 ,2,822,168310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,130505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,136700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,203460 ,2,822,196795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,190220 ,2,822,153075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,456490 ,2,821,357630 ,2,822,205795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,131885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,131015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,167305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,137100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,191300 ,2,822,159330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,158675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,133970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,120070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,127325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,118470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,113810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,126620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,205840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,190940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,107280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498030 ,2,822,205890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,151320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,194635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,194810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,130235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,88210 ,2,822,190315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,131930 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,148820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277670 ,2,822,119210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498030 ,2,822,119250 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498030 ,2,822,118995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,119085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,119065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,501665 ,2,822,149520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,123280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,130955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,590395 ,2,822,136990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277525 ,2,822,130695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277670 ,2,822,130890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277670 ,2,822,130925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,123415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,203460 ,2,822,128540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,501665 ,2,822,128575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,112435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,203460 ,2,822,153350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,132820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,195395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,131980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,590395 ,2,822,158650 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,162125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,161585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,117620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,125355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,127410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,590395 ,2,822,196400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,167965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,162770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,163510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,164820 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,79175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,199840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,615530 ,2,822,194215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,472225 ,2,821,518070 ,2,822,149445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502725 ,2,827,63245 ,2,828,472225 ,2,821,221265 ,2,822,149995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526585 ,2,827,75 ,2,828,472220 ,2,821,615530 ,2,822,123290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,442575 ,2,821,414055 ,2,822,66470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,221265 ,2,822,123540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526585 ,2,827,75 ,2,828,472220 ,2,821,221265 ,2,822,137210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526585 ,2,827,75 ,2,828,472255 ,2,821,221265 ,2,822,187965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526585 ,2,827,75 ,2,828,472220 ,2,821,518070 ,2,822,113230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502725 ,2,827,63245 ,2,828,472225 ,2,821,518070 ,2,822,152520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502725 ,2,827,63245 ,2,828,435330 ,2,821,221265 ,2,822,153665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526585 ,2,827,75 ,2,828,472280 ,2,821,212110 ,2,822,195365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,472290 ,2,821,212110 ,2,822,142030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,472340 ,2,821,212110 ,2,822,166735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,472290 ,2,821,615530 ,2,822,107300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,505635 ,2,827,63245 ,2,828,435330 ,2,821,518070 ,2,822,196340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502725 ,2,827,63245 ,2,828,435330 ,2,821,462895 ,2,822,128880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,162895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,105545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,67205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,414055 ,2,822,97705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,269720 ,2,822,61460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,269720 ,2,822,73135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,124690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,661180 ,2,822,182115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,269720 ,2,822,206180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,269720 ,2,822,187675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,212110 ,2,822,146550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,472340 ,2,821,269720 ,2,822,187710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,105290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,414055 ,2,822,187665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,45395 ,2,822,180110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,45395 ,2,822,162855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,276095 ,2,822,64435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,472865 ,2,821,276095 ,2,822,135940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,472870 ,2,821,414235 ,2,822,101235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,84480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,276095 ,2,822,167985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,472940 ,2,821,439475 ,2,822,118120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,204675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,462345 ,2,822,117920 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492535 ,2,827,75 ,2,828,432220 ,2,821,414055 ,2,822,144730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,161480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,45395 ,2,822,180040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,162685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,276095 ,2,822,106355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,432220 ,2,821,461485 ,2,822,105855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,276095 ,2,822,167550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,472940 ,2,821,439475 ,2,822,113870 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,614485 ,2,822,114025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527395 ,2,827,24545 ,2,828,473355 ,2,821,439475 ,2,822,195340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,141995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,166665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,195265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,195320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,141965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,166645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,146495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,139315 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,146485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,205200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,206380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,622945 ,2,822,206400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,473485 ,2,821,439475 ,2,822,122300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,87955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,197050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,357465 ,2,822,190950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,139475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,167400 ,2,822,191795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473705 ,2,821,168520 ,2,822,186115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473745 ,2,821,168520 ,2,822,191885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473750 ,2,821,169670 ,2,822,186185 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473765 ,2,821,169670 ,2,822,191985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473770 ,2,821,170735 ,2,822,61975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473780 ,2,821,170735 ,2,822,192100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473790 ,2,821,171840 ,2,822,186345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473800 ,2,821,171840 ,2,822,192195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473805 ,2,821,172930 ,2,822,186515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473825 ,2,821,172930 ,2,822,192370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473830 ,2,821,174070 ,2,822,62280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527715 ,2,827,75 ,2,828,473860 ,2,821,176245 ,2,822,186645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473875 ,2,821,176245 ,2,822,192715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473880 ,2,821,180620 ,2,822,186830 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473945 ,2,821,180620 ,2,822,186890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473950 ,2,821,181700 ,2,822,187060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473965 ,2,821,181700 ,2,822,187130 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,473970 ,2,821,182795 ,2,822,193260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,474000 ,2,821,188285 ,2,822,62540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,474030 ,2,821,188285 ,2,822,193525 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527740 ,2,827,75 ,2,828,474035 ,2,821,498030 ,2,822,161145 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,439475 ,2,822,195310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,166725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,129645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,195295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,142015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,166715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,146540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,146530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,129705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,121220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,203460 ,2,822,153705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,105240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,413285 ,2,822,61495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,636685 ,2,822,73075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,93885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,153760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,421710 ,2,822,72620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,474495 ,2,821,422470 ,2,822,123665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528145 ,2,827,75 ,2,828,474565 ,2,821,421710 ,2,822,77055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,474630 ,2,821,209080 ,2,822,74420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,474645 ,2,821,439445 ,2,822,73335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,474665 ,2,821,423400 ,2,822,206605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528150 ,2,827,75 ,2,828,474710 ,2,821,421710 ,2,822,201890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,474715 ,2,821,209080 ,2,822,198325 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,474740 ,2,821,31545 ,2,822,162800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527565 ,2,827,135955 ,2,828,474750 ,2,821,209080 ,2,822,130545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,474765 ,2,821,422470 ,2,822,135125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528145 ,2,827,75 ,2,828,474805 ,2,821,25120 ,2,822,135410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,421710 ,2,822,136835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,474975 ,2,821,439475 ,2,822,195285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,142005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,166675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,86545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,95520 ,2,822,91170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,146505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,456490 ,2,821,551670 ,2,822,203475 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,475165 ,2,821,421710 ,2,822,131240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,475170 ,2,821,421710 ,2,822,203715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,475210 ,2,821,552040 ,2,822,203600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528545 ,2,827,75 ,2,828,475215 ,2,821,422470 ,2,822,124160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528145 ,2,827,75 ,2,828,475220 ,2,821,357465 ,2,822,77880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,552040 ,2,822,166510 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528545 ,2,827,75 ,2,828,475315 ,2,821,421710 ,2,822,92520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,475320 ,2,821,552040 ,2,822,92550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528545 ,2,827,75 ,2,828,475325 ,2,821,422470 ,2,822,101595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528145 ,2,827,75 ,2,828,475340 ,2,821,421710 ,2,822,102815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,475385 ,2,821,439475 ,2,822,129665 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,421710 ,2,822,144415 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528140 ,2,827,75 ,2,828,475405 ,2,821,509340 ,2,822,199105 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528310 ,2,827,75 ,2,828,475490 ,2,821,642390 ,2,822,94630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528260 ,2,827,75 ,2,828,475625 ,2,821,642390 ,2,822,94915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,528260 ,2,827,75 ,2,828,475630 ,2,821,25120 ,2,822,206735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,209080 ,2,822,62895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,502180 ,2,827,75 ,2,828,475665 ,2,821,27500 ,2,822,206865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,206885 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,206900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31545 ,2,822,206490 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527565 ,2,827,75 ,2,828,475820 ,2,821,439475 ,2,822,132865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575785 ,2,822,206960 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575785 ,2,822,207020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,78905 ,2,822,207030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575785 ,2,822,207040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,207060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,72295 ,2,822,207485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,381250 ,2,822,56625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,476180 ,2,821,439475 ,2,822,207565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,207605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,207625 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,80400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,126425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,310320 ,2,822,97495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,476390 ,2,821,310320 ,2,822,60070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,476400 ,2,821,439120 ,2,822,98350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,438595 ,2,822,64840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,476475 ,2,821,438595 ,2,822,138970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,476395 ,2,821,310320 ,2,822,125005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,476680 ,2,821,277670 ,2,822,207965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,575785 ,2,822,62815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,428990 ,2,822,120455 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,129595 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,77020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,77375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,74295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,76015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,73975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,76520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,77010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,74285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,77385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,77425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,77030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,75035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,75245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,76970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,74360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,74370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,76540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,75180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,199705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,208285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,53945 ,2,822,208295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491780 ,2,827,75 ,2,828,428325 ,2,821,31330 ,2,822,208335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,180190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,84825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,87880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,477285 ,2,821,31330 ,2,822,165770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,85370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,193850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,304775 ,2,822,149660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,304775 ,2,822,123310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,304775 ,2,822,113255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477455 ,2,821,304775 ,2,822,112380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,304775 ,2,822,152540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,304775 ,2,822,129815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,303780 ,2,822,107345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,477460 ,2,821,303780 ,2,822,196360 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492290 ,2,827,75 ,2,828,477460 ,2,821,304775 ,2,822,139750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,477460 ,2,821,276095 ,2,822,99880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,477565 ,2,821,31330 ,2,822,64530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,64515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,312345 ,1,0,173980 ,2,822,100370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,530015 ,2,827,75 ,2,828,477655 ,2,821,31330 ,2,822,103790 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,81310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,117640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,119905 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,120255 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,117940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,117950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,141055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,140695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,136220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,136210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,276095 ,2,822,131800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,477805 ,2,821,31330 ,2,822,131900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,147970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,150075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,123150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,104040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,208420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,113220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,134055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,135220 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,477960 ,2,821,31330 ,2,822,106945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,106955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,106995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,477990 ,2,821,31330 ,2,822,107005 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,123955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,124065 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,203350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,203380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,109810 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,87570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,180395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,102645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,143110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,134295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,134275 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,135020 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,134745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,109750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,117610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,157965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,115100 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,158590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,108260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,114720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,113705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,88585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,144395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,144445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,142565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,142610 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,142260 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,31330 ,2,822,142575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,142240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,195965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,162590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,133540 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,162600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,161700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,125375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,133230 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,112915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,129355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,151310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,129775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,196410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,276095 ,2,822,121150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,478610 ,2,821,338760 ,2,822,121010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,529785 ,2,827,75 ,2,828,478640 ,2,821,635000 ,2,822,130645 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,276095 ,2,822,121430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,478645 ,2,821,31330 ,2,822,141295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,197125 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,139970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,147305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,151095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31330 ,2,822,146430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,438215 ,2,822,188400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,390830 ,2,822,188290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,507605 ,2,822,173480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,478775 ,2,821,450575 ,2,822,131600 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,480340 ,2,822,207925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,58150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,381250 ,2,822,63580 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491720 ,2,827,75 ,2,828,476180 ,2,821,438595 ,2,822,66410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,491705 ,2,827,75 ,2,828,476475 ,2,821,390830 ,2,822,56980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571810 ,2,822,179015 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571810 ,2,822,178940 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571810 ,2,822,178880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571810 ,2,822,178805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571810 ,2,822,178730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571810 ,2,822,178680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571810 ,2,822,178445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571810 ,2,822,178375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,572585 ,2,822,178040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,98505 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,207555 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,207585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,119750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,586590 ,2,822,59955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,524500 ,2,827,75 ,2,828,469295 ,2,821,589420 ,2,822,59945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,79410 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,89175 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,205190 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,116260 ,2,822,117195 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,526475 ,2,827,75 ,2,828,479415 ,2,821,209455 ,2,822,120900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527805 ,2,827,135915 ,2,828,479420 ,2,821,439475 ,2,822,121170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498030 ,2,822,209090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,68180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,475030 ,2,822,91150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,149785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,456490 ,2,821,439475 ,2,822,163530 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,164605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,105280 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,139300 ,2,822,90470 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,581605 ,2,822,91030 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,555490 ,2,822,187605 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,479615 ,2,821,575785 ,2,822,103980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,487590 ,2,822,201740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,480065 ,2,821,487590 ,2,822,201785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,480070 ,2,821,357630 ,2,822,66925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,230380 ,2,822,140675 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,495725 ,2,822,201075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,90160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,209680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277525 ,2,822,67150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277670 ,2,822,97685 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,495725 ,2,822,201515 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,81825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,83995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,84240 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,480185 ,2,821,357630 ,2,822,81635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,139300 ,2,822,66915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,139300 ,2,822,90150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,87910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,480340 ,2,822,200815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,85690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,86925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,87025 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,107755 ,2,822,85390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497975 ,2,827,75 ,2,828,480470 ,2,821,581720 ,2,822,113040 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,500515 ,2,827,75 ,2,828,480515 ,2,821,73585 ,2,822,64970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,480670 ,2,821,567355 ,2,822,79345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,495725 ,2,822,201730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73585 ,2,822,65155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,497525 ,2,827,75 ,2,828,480720 ,2,821,439475 ,2,822,85700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,86935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,87035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,8850 ,2,822,85405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,501705 ,2,827,75 ,2,828,480795 ,2,821,357465 ,2,822,195890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,126355 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,450575 ,2,822,127215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,230380 ,2,822,203390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,209720 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31330 ,2,822,107425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,167045 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,480990 ,2,821,590395 ,2,822,86840 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,151000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,151010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,159155 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,430820 ,2,821,357465 ,2,822,208180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357465 ,2,822,207985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,123425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,151080 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,127590 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,207955 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277030 ,2,822,79805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,68305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,68980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,171385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,575785 ,2,822,79965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,68265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,93845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,590395 ,2,822,150945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,150975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,308670 ,2,822,79450 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,150910 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,528415 ,2,822,150785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,191300 ,2,822,150805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,119830 ,2,822,200135 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,468060 ,2,822,105845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,463665 ,2,822,170750 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,463665 ,2,822,170855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,590395 ,2,822,182495 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,79400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,68000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,68405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,68335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,528415 ,2,822,68705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,138980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,125095 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,277525 ,2,822,151400 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,105475 ,2,822,87200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,482610 ,2,821,660665 ,2,822,150860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,501665 ,2,822,150880 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,203460 ,2,822,150890 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,531045 ,2,822,66735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,482860 ,2,821,277525 ,2,822,150965 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,504770 ,2,822,209985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492300 ,2,827,75 ,2,828,483255 ,2,821,635000 ,2,822,99380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,96770 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,565050 ,2,822,156745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,492790 ,2,827,75 ,2,828,483410 ,2,821,73015 ,2,822,114520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,114460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,208115 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,208010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,98925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,97385 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,99055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,643505 ,2,822,115170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,1915 ,2,822,124055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,534620 ,2,827,38415 ,2,828,483690 ,2,821,230050 ,2,822,140545 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,506065 ,2,827,75 ,2,828,483865 ,2,821,635000 ,2,822,149090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,149210 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,115055 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,95805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,96735 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,390830 ,2,822,108785 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,643505 ,2,822,109035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,108850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,101950 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,643505 ,2,822,102150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,73015 ,2,822,102235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,390830 ,2,822,123140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,123090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,247500 ,2,822,202150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,484010 ,2,821,247500 ,2,822,202265 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,495910 ,2,827,75 ,2,828,484015 ,2,821,280510 ,2,822,202075 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,484130 ,2,821,439475 ,2,822,95815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,96760 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,463665 ,2,822,173180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,575785 ,2,822,173285 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,495725 ,2,822,126970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,363040 ,2,822,185985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,129565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,178345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,498030 ,2,822,207975 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,129535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,404620 ,2,822,126990 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,493240 ,2,827,75 ,2,828,484425 ,2,821,112030 ,2,822,126980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,439475 ,2,822,129520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,116860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,117180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,121305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,121380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,120845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,121060 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,126235 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,202365 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,117170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,121295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,121370 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,120835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,112030 ,2,822,121050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,139440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,202440 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,202170 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,202300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,463665 ,2,822,139420 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,420660 ,2,821,569425 ,2,822,202140 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,179300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,172635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,117285 ,2,822,179745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,523275 ,2,827,75 ,2,828,474225 ,2,821,93665 ,2,822,179570 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,494015 ,2,827,75 ,2,828,484815 ,2,821,322670 ,2,822,179375 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,527890 ,2,827,75 ,2,828,474225 ,2,821,635000 ,2,822,210430 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,208085 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,357630 ,2,822,208000 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,199525 ,2,822,172815 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,590395 ,2,822,207945 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,208850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498030 ,2,822,208200 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,204985 ,2,822,207935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571640 ,2,822,189745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571640 ,2,822,186090 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,191825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,189805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,186165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,191895 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,571640 ,2,822,189915 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,186225 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,571640 ,2,822,191995 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246405 ,2,822,61985 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246405 ,2,822,192110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246665 ,2,822,186335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246665 ,2,822,192205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246405 ,2,822,192295 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246405 ,2,822,186480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246405 ,2,822,192380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246405 ,2,822,192480 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246405 ,2,822,62290 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246405 ,2,822,192565 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246665 ,2,822,192635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246665 ,2,822,186635 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246665 ,2,822,192725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246665 ,2,822,192825 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246665 ,2,822,62395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246665 ,2,822,192925 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246925 ,2,822,186800 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246925 ,2,822,186900 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246925 ,2,822,193120 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,246925 ,2,822,187050 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,246925 ,2,822,187165 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,66150 ,2,822,193215 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,66150 ,2,822,187245 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,66150 ,2,822,193270 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,66150 ,2,822,193345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,66150 ,2,822,63380 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,66150 ,2,822,193395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,66150 ,2,822,193460 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,66150 ,2,822,62550 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,66150 ,2,822,193535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,31260 ,2,822,210690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,210700 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,210710 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,211390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,549160 ,2,822,211425 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535985 ,2,827,75 ,2,828,485610 ,2,821,515185 ,2,822,211445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,211615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,211845 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,211860 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,213535 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,213640 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,216575 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,216585 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,216620 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,216630 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,479290 ,2,822,217010 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,537325 ,2,827,75 ,2,828,487875 ,2,821,515185 ,2,822,217160 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,515185 ,2,822,217180 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,418370 ,2,822,217835 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,535825 ,2,827,75 ,2,828,488320 ,2,821,515185 ,2,822,217935 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,217970 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,217980 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,352205 ,2,822,218035 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,218305 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,218335 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,218345 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,228625 ,2,822,218730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,488670 ,2,821,228625 ,2,822,218740 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,488695 ,2,821,515185 ,2,822,219110 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,219150 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,488895 ,2,821,84115 ,2,822,219205 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,421670 ,2,822,219390 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439925 ,2,822,219485 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,489050 ,2,821,515185 ,2,822,220070 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,515185 ,2,822,220520 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,637150 ,2,822,220850 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,538875 ,2,827,75 ,2,828,489735 ,2,821,439925 ,2,822,223670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,489030 ,2,822,223690 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536220 ,2,827,75 ,2,828,491155 ,2,821,543585 ,2,822,223730 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,536215 ,2,827,75 ,2,828,491160 ,2,821,119830 ,2,822,223855 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,439475 ,2,822,223865 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,224300 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,224310 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,224320 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,224330 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,224340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,635000 ,2,822,224350 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,249825 ,1,0,13320 ,2,822,224395 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,119830 ,2,822,224405 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,231190 ,2,822,224435 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,491365 ,2,821,73015 ,2,822,224445 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,119830 ,2,822,228340 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,31260 ,2,822,228615 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357630 ,2,822,228660 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,231190 ,2,822,228670 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,73015 ,2,822,228680 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,169495 ,2,822,228695 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277525 ,2,822,228705 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,242380 ,2,822,228715 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,461485 ,2,822,228725 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,498030 ,2,822,228745 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,168570 ,2,822,228755 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,277670 ,2,822,228765 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,357465 ,2,822,228775 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,2,821,635000 ,2,822,228795 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419655 ,2,821,112030 ,2,822,228805 ,2,823,240 ,2,824,220 ,2,825,351970 ,2,826,45 ,2,827,75 ,2,828,419550 ,1,0,2520 ,1,1,1935 ,1,2,1890 ,1,3,55 ,1,4,2485 ,1,5,281735 ,1,6,120 ,1,7,13320 ,1,8,612490 ,1,9,560975 ,1,10,45 ,1,11,5080 ,1,13,2395 ,1,14,612465 ,1,15,415 ,1,17,2395 ,1,18,600015 ,1,19,45 ,1,20,347225 ,1,21,45 ,1,22,347215 ,1,23,561435 ,1,24,45 ,1,25,347205 ,1,26,224175 ,1,27,2280 ,1,28,542290 ,1,29,435 ,1,30,224165 ,1,31,224140 ,1,32,545930 ,1,33,166445 ,1,34,560850 ,1,35,45 ,1,36,177250 ,1,38,2395 ,1,39,543430 ,1,40,596750 ,1,41,543430 ,1,42,1470 ,1,43,2280 ,1,44,542290 ,1,45,543425 ,1,46,596745 ,1,47,543425 ,1,48,2280 ,1,49,542280 ,1,50,2280 ,1,51,542275 ,1,52,425 ,1,53,178840 ,1,54,176720 ,1,55,557515 ,1,56,1460 ,1,57,178850 ,1,58,557510 ,1,59,170230 ,1,60,256160 ,1,61,224095 ,1,62,166435 ,1,63,9355 ,1,64,560465 ,1,65,45 ,1,66,347195 ,1,67,560510 ,1,68,45 ,1,69,198270 ,1,70,45 ,1,71,347180 ,1,72,558090 ,1,73,45 ,1,74,177250 ,1,75,557505 ,1,76,166425 ,1,77,177390 ,1,78,2135 ,1,79,177160 ,1,80,475 ,1,81,166410 ,1,82,176740 ,1,83,177055 ,1,84,347170 ,1,85,373880 ,1,86,65 ,1,87,256040 ,1,88,347160 ,1,89,177540 ,1,90,14895 ,1,91,373545 ,1,92,16305 ,1,93,370705 ,1,94,370670 ,1,95,370685 ,1,96,64710 ,1,97,599870 ,1,98,45 ,1,99,11510 ,1,101,2395 ,1,102,561570 ,1,103,45 ,1,104,347150 ,1,105,550905 ,1,106,75 ,1,107,10665 ,1,108,9535 ,1,109,347120 ,1,110,557500 ,1,111,557495 ,1,112,1435 ,1,113,177280 ,1,114,6870 ,1,115,255865 ,1,116,3255 ,1,117,599970 ,1,118,45 ,1,119,176895 ,1,120,347110 ,1,121,8315 ,1,122,557490 ,1,123,45 ,1,124,186970 ,1,125,45 ,1,126,347100 ,1,127,561430 ,1,128,45 ,1,129,347205 ,1,130,347090 ,1,131,374685 ,1,132,557485 ,1,133,166400 ,1,134,455 ,1,135,224085 ,1,136,612135 ,1,137,45 ,1,138,13320 ,1,139,45 ,1,140,347080 ,1,141,347070 ,1,142,557480 ,1,143,173075 ,1,144,557450 ,1,145,166390 ,1,146,166380 ,1,147,166345 ,1,148,347060 ,1,149,465 ,1,150,374215 ,1,151,170220 ,1,153,2395 ,1,154,599975 ,1,155,45 ,1,156,9470 ,1,157,599880 ,1,158,45 ,1,159,3825 ,1,160,45 ,1,161,195155 ,1,162,45 ,1,163,347050 ,1,164,347015 ,1,165,256050 ,1,166,176120 ,1,167,347005 ,1,168,224075 ,1,169,557420 ,1,170,224065 ,1,171,175795 ,1,172,346995 ,1,173,346985 ,1,174,182020 ,1,175,45 ,1,176,346975 ,1,177,45 ,1,178,346975 ,1,180,2395 ,1,182,2395 ,1,183,346965 ,1,184,346955 ,1,185,346945 ,1,186,346905 ,1,187,346895 ,1,188,607400 ,1,189,45 ,1,190,346885 ,1,191,606510 ,1,192,45 ,1,193,11510 ,1,194,557415 ,1,195,1450 ,1,196,166335 ,1,197,596680 ,1,198,45 ,1,199,346875 ,1,200,6550 ,1,201,543410 ,1,202,1900 ,1,203,585895 ,1,204,543410 ,1,205,166740 ,1,206,8170 ,1,207,13175 ,1,208,346860 ,1,209,607500 ,1,210,45 ,1,211,175900 ,1,212,607495 ,1,213,45 ,1,214,11510 ,1,215,6680 ,1,216,45 ,1,217,13320 ,1,218,45 ,1,219,13320 ,1,221,2395 ,1,222,558580 ,1,223,45 ,1,224,9470 ,1,225,545935 ,1,226,65610 ,1,227,560100 ,1,228,45 ,1,229,167770 ,1,230,178585 ,1,231,545195 ,1,232,7990 ,1,233,168995 ,1,234,175845 ,1,235,346850 ,1,236,346840 ,1,237,10715 ,1,238,2210 ,1,239,542350 ,1,240,346830 ,1,241,346790 ,1,242,168235 ,1,243,346780 ,1,244,346770 ,1,245,346760 ,1,246,166325 ,1,247,255735 ,1,248,255845 ,1,249,6450 ,1,250,166315 ,1,251,166300 ,1,252,346740 ,1,253,346730 ,1,254,312725 ,1,255,312670 ,1,256,312770 ,1,257,14485 ,1,258,14475 ,1,259,45 ,1,260,11510 ,1,261,11690 ,1,262,181500 ,1,263,2280 ,1,264,542270 ,1,265,346720 ,1,266,170185 ,1,267,312750 ,1,268,599955 ,1,269,45 ,1,270,5900 ,1,271,45 ,1,272,5900 ,1,274,2395 ,1,275,558280 ,1,276,45 ,1,277,9470 ,1,279,2395 ,1,280,599875 ,1,281,45 ,1,282,9470 ,1,283,2280 ,1,284,542265 ,1,285,45 ,1,286,13320 ,1,287,346710 ,1,288,346680 ,1,289,346670 ,1,290,173175 ,1,291,373855 ,1,292,176020 ,1,293,558275 ,1,294,45 ,1,295,176030 ,1,296,374115 ,1,297,374105 ,1,298,45 ,1,299,176030 ,1,300,5060 ,1,301,346660 ,1,302,346650 ,1,303,346635 ,1,304,346625 ,1,305,346615 ,1,306,346605 ,1,307,346585 ,1,308,346575 ,1,309,346565 ,1,310,12785 ,1,311,346555 ,1,312,6800 ,1,313,166680 ,1,314,2210 ,1,315,542350 ,1,316,2210 ,1,317,542350 ,1,319,2395 ,1,320,599885 ,1,321,45 ,1,322,9470 ,1,323,557760 ,1,324,45 ,1,326,2395 ,1,327,558295 ,1,328,45 ,1,329,9470 ,1,331,2395 ,1,332,45 ,1,333,9470 ,1,335,2395 ,1,336,45 ,1,337,9470 ,1,339,2395 ,1,340,45 ,1,341,9470 ,1,342,543405 ,1,343,1945 ,1,344,596675 ,1,345,543405 ,1,346,557790 ,1,347,166290 ,1,348,168920 ,1,349,166280 ,1,350,206480 ,1,351,45 ,1,352,8740 ,1,353,166540 ,1,355,2395 ,1,356,558545 ,1,357,45 ,1,358,9470 ,1,359,168650 ,1,361,2395 ,1,362,45 ,1,363,9470 ,1,364,543400 ,1,365,557840 ,1,366,543400 ,1,367,543395 ,1,368,596670 ,1,369,543395 ,1,370,606515 ,1,371,45 ,1,372,11510 ,1,373,606195 ,1,374,45 ,1,375,13320 ,1,376,45 ,1,377,11510 ,1,378,265855 ,1,379,3770 ,1,380,167895 ,1,382,2395 ,1,383,558415 ,1,384,45 ,1,385,9470 ,1,386,2210 ,1,387,542345 ,1,388,45 ,1,389,11510 ,1,391,2395 ,1,392,558990 ,1,393,45 ,1,394,9470 ,1,395,346545 ,1,396,557410 ,1,397,45 ,1,398,4765 ,1,399,346535 ,1,400,561580 ,1,401,346525 ,1,402,2210 ,1,403,542350 ,1,405,2395 ,1,406,45 ,1,407,9470 ,1,408,45 ,1,409,242470 ,1,410,346515 ,1,411,45 ,1,412,249115 ,1,413,346475 ,1,414,45 ,1,415,346465 ,1,416,373835 ,1,417,568030 ,1,418,45 ,1,419,5900 ,1,420,221020 ,1,421,599980 ,1,422,45 ,1,423,5900 ,1,424,170415 ,1,425,241255 ,1,426,45 ,1,427,5900 ,1,428,241325 ,1,429,45 ,1,430,5900 ,1,431,346455 ,1,432,370660 ,1,433,346445 ,1,434,346430 ,1,435,346420 ,1,436,346410 ,1,437,167545 ,1,438,374150 ,1,439,557405 ,1,440,584750 ,1,441,45 ,1,442,13320 ,1,443,346400 ,1,444,166270 ,1,445,166250 ,1,446,346365 ,1,447,346355 ,1,448,292175 ,1,449,292280 ,1,450,346345 ,1,451,346335 ,1,453,2395 ,1,454,599910 ,1,455,45 ,1,456,9470 ,1,457,346325 ,1,458,16295 ,1,459,166240 ,1,461,2395 ,1,462,558540 ,1,463,45 ,1,464,9470 ,1,465,169900 ,1,466,170065 ,1,467,612325 ,1,468,2210 ,1,469,542350 ,1,470,2210 ,1,471,542350 ,1,473,2395 ,1,474,45 ,1,475,9470 ,1,476,221390 ,1,477,558345 ,1,478,45 ,1,479,225320 ,1,480,45 ,1,481,5900 ,1,482,45 ,1,483,5900 ,1,484,543390 ,1,485,558275 ,1,486,543390 ,1,487,166230 ,1,488,171930 ,1,489,217660 ,1,490,346315 ,1,492,2395 ,1,493,45 ,1,494,9470 ,1,495,543385 ,1,496,563670 ,1,497,543385 ,1,498,543380 ,1,499,563670 ,1,500,543380 ,1,501,557720 ,1,502,45 ,1,503,13320 ,1,504,346305 ,1,505,14465 ,1,507,2395 ,1,508,599945 ,1,509,45 ,1,510,9470 ,1,511,543375 ,1,512,563670 ,1,513,543375 ,1,514,45 ,1,515,5900 ,1,516,7785 ,1,517,3575 ,1,518,8820 ,1,519,346295 ,1,520,168795 ,1,521,558380 ,1,522,45 ,1,523,13320 ,1,524,169355 ,1,525,346250 ,1,526,346240 ,1,527,45 ,1,528,13320 ,1,529,169195 ,1,530,45 ,1,531,13320 ,1,532,45 ,1,533,13320 ,1,534,166220 ,1,536,2395 ,1,537,45 ,1,538,9470 ,1,539,45 ,1,540,13320 ,1,541,346220 ,1,542,45 ,1,543,346210 ,1,544,346200 ,1,545,45 ,1,546,346190 ,1,547,4195 ,1,548,557380 ,1,549,346180 ,1,550,346150 ,1,551,346140 ,1,552,612495 ,1,553,188955 ,1,554,599940 ,1,555,45 ,1,556,241340 ,1,557,45 ,1,558,184220 ,1,559,45 ,1,560,182815 ,1,561,45 ,1,562,346130 ,1,563,45 ,1,564,346120 ,1,565,45 ,1,566,346100 ,1,567,45 ,1,568,346090 ,1,569,45 ,1,570,346080 ,1,571,45 ,1,572,346070 ,1,573,45 ,1,574,346030 ,1,575,45 ,1,576,346020 ,1,577,45 ,1,578,346010 ,1,579,45 ,1,580,346000 ,1,581,45 ,1,582,345985 ,1,583,45 ,1,584,345975 ,1,585,45 ,1,586,345965 ,1,587,345955 ,1,588,14905 ,1,589,345910 ,1,590,6400 ,1,591,263620 ,1,592,345900 ,1,594,2395 ,1,596,2395 ,1,597,557375 ,1,598,557370 ,1,600,2395 ,1,602,2395 ,1,604,2395 ,1,606,2395 ,1,607,183420 ,1,608,373495 ,1,609,345890 ,1,611,2395 ,1,613,2395 ,1,614,45 ,1,615,9470 ,1,616,557765 ,1,617,345880 ,1,618,557755 ,1,620,2395 ,1,621,4315 ,1,622,374730 ,1,623,374620 ,1,624,596665 ,1,625,45 ,1,626,346875 ,1,627,543350 ,1,628,596675 ,1,629,543350 ,1,630,596660 ,1,631,45 ,1,632,5900 ,1,633,45 ,1,634,13320 ,1,635,373750 ,1,636,373760 ,1,637,373780 ,1,638,345870 ,1,639,612570 ,1,640,563505 ,1,641,45 ,1,642,345860 ,1,643,256860 ,1,644,345850 ,1,645,345840 ,1,646,546190 ,1,647,612555 ,1,648,45 ,1,649,13320 ,1,650,345810 ,1,651,190770 ,1,652,6530 ,1,653,166515 ,1,654,345800 ,1,655,166200 ,1,656,166190 ,1,657,190085 ,1,658,190125 ,1,659,183195 ,1,660,189970 ,1,661,190115 ,1,662,190105 ,1,663,190095 ,1,664,190145 ,1,665,190135 ,1,666,345790 ,1,667,12015 ,1,668,558285 ,1,669,45 ,1,670,13320 ,1,671,169870 ,1,672,345780 ,1,673,345770 ,1,674,345760 ,1,675,166180 ,1,676,224020 ,1,677,166530 ,1,678,166170 ,1,679,166140 ,1,680,345750 ,1,681,45 ,1,682,3525 ,1,683,166130 ,1,684,345740 ,1,685,606340 ,1,686,45 ,1,687,290240 ,1,689,2395 ,1,690,45 ,1,691,9470 ,1,692,191550 ,1,693,9585 ,1,694,345725 ,1,695,166120 ,1,696,345715 ,1,697,345705 ,1,698,166110 ,1,699,170125 ,1,700,345695 ,1,701,345685 ,1,702,169070 ,1,703,7290 ,1,704,12395 ,1,705,2210 ,1,706,542350 ,1,707,166095 ,1,708,224000 ,1,709,223975 ,1,710,345665 ,1,711,345655 ,1,712,345620 ,1,713,345610 ,1,714,345600 ,1,715,345590 ,1,716,345575 ,1,717,11350 ,1,718,2210 ,1,719,542350 ,1,720,45 ,1,721,3770 ,1,722,45 ,1,723,167895 ,1,724,345565 ,1,725,166085 ,1,726,345555 ,1,727,45 ,1,728,345545 ,1,729,345510 ,1,730,599965 ,1,731,45 ,1,732,13320 ,1,733,345500 ,1,734,345490 ,1,735,345480 ,1,736,345465 ,1,737,345455 ,1,738,345445 ,1,739,345435 ,1,741,2395 ,1,743,2395 ,1,744,345395 ,1,745,345385 ,1,746,345375 ,1,747,345365 ,1,748,345350 ,1,749,220955 ,1,750,345340 ,1,751,345330 ,1,752,9070 ,1,753,166900 ,1,754,166075 ,1,755,345320 ,1,756,345285 ,1,757,166495 ,1,758,345275 ,1,759,166660 ,1,760,345265 ,1,761,345255 ,1,762,2210 ,1,763,542350 ,1,764,190430 ,1,765,190410 ,1,766,190440 ,1,767,190420 ,1,768,546095 ,1,769,256715 ,1,770,256705 ,1,771,171330 ,1,772,166065 ,1,773,175640 ,1,774,166020 ,1,775,190330 ,1,776,345245 ,1,777,562725 ,1,778,45 ,1,779,11510 ,1,780,608345 ,1,781,45 ,1,782,11510 ,1,783,608330 ,1,784,45 ,1,785,11510 ,1,786,45 ,1,787,11510 ,1,788,45 ,1,789,11510 ,1,790,345235 ,1,791,608340 ,1,792,45 ,1,793,5900 ,1,794,608350 ,1,795,45 ,1,796,190350 ,1,797,45 ,1,798,11510 ,1,799,45 ,1,800,11510 ,1,802,2395 ,1,803,562760 ,1,804,45 ,1,805,9470 ,1,806,345225 ,1,807,546090 ,1,808,546105 ,1,809,171505 ,1,810,171495 ,1,811,171450 ,1,812,612285 ,1,813,612505 ,1,814,612510 ,1,815,612290 ,1,817,2395 ,1,818,45 ,1,819,9470 ,1,820,60235 ,1,821,100 ,1,822,600035 ,1,823,110 ,1,824,600005 ,1,825,543345 ,1,826,606605 ,1,827,543345 ,1,828,557365 ,1,829,345215 ,1,830,169490 ,1,831,169850 ,1,833,2395 ,1,834,45 ,1,835,9470 ,1,836,45 ,1,837,13320 ,1,838,45 ,1,839,13320 ,1,840,168515 ,1,841,256650 ,1,843,2395 ,1,844,45 ,1,845,9470 ,1,847,2395 ,1,849,2395 ,1,850,563130 ,1,851,45 ,1,852,9470 ,1,854,2395 ,1,855,45 ,1,856,9470 ,1,857,612560 ,1,858,612565 ,1,860,2395 ,1,861,45 ,1,862,9470 ,1,863,563290 ,1,864,45 ,1,865,345170 ,1,866,45 ,1,867,195155 ,1,869,2395 ,1,870,195345 ,1,871,196030 ,1,872,194275 ,1,873,223965 ,1,874,345160 ,1,875,345150 ,1,876,8760 ,1,877,7860 ,1,878,345140 ,1,879,345130 ,1,880,191275 ,1,881,256610 ,1,882,166010 ,1,883,345120 ,1,884,345110 ,1,885,345100 ,1,886,345060 ,1,887,345050 ,1,888,2210 ,1,889,542350 ,1,890,345040 ,1,891,345030 ,1,892,166000 ,1,893,165990 ,1,894,256600 ,1,895,223955 ,1,896,544570 ,1,897,165975 ,1,898,172065 ,1,899,345010 ,1,900,11450 ,1,901,3505 ,1,902,4995 ,1,903,3370 ,1,904,345000 ,1,905,45 ,1,906,4315 ,1,907,169880 ,1,908,195155 ,1,909,192280 ,1,910,373845 ,1,911,344990 ,1,912,344980 ,1,913,2210 ,1,914,542350 ,1,915,2210 ,1,916,542350 ,1,917,256755 ,1,918,344935 ,1,919,4890 ,1,920,13210 ,1,921,344925 ,1,922,344915 ,1,923,344905 ,1,924,344895 ,1,925,344885 ,1,926,344875 ,1,927,165965 ,1,928,45 ,1,929,225320 ,1,930,45 ,1,931,5900 ,1,932,45 ,1,933,5900 ,1,934,543340 ,1,935,558275 ,1,936,543340 ,1,937,45 ,1,938,11510 ,1,940,2395 ,1,941,559255 ,1,942,45 ,1,943,9470 ,1,944,2210 ,1,945,542345 ,1,946,344865 ,1,947,165955 ,1,948,374125 ,1,949,256850 ,1,950,563120 ,1,951,45 ,1,952,13320 ,1,953,256960 ,1,954,256970 ,1,955,344850 ,1,956,612575 ,1,957,344840 ,1,958,344830 ,1,959,344820 ,1,960,344800 ,1,961,344790 ,1,962,344780 ,1,963,45 ,1,964,205195 ,1,965,563575 ,1,966,45 ,1,967,192290 ,1,968,208615 ,1,969,546390 ,1,970,344770 ,1,971,344730 ,1,972,45 ,1,973,13320 ,1,974,344720 ,1,975,344710 ,1,976,195325 ,1,977,344700 ,1,978,344685 ,1,979,344675 ,1,980,557355 ,1,981,167285 ,1,982,374160 ,1,983,613075 ,1,984,2280 ,1,985,542245 ,1,986,2135 ,1,987,9890 ,1,988,543335 ,1,989,584615 ,1,990,543335 ,1,991,543315 ,1,992,563670 ,1,993,543315 ,1,994,257145 ,1,995,5700 ,1,996,344665 ,1,997,557710 ,1,998,546385 ,1,999,344655 ,1,1000,344615 ,1,1001,175265 ,1,1002,223915 ,1,1003,557350 ,1,1004,563570 ,1,1005,45 ,1,1006,2820 ,1,1007,292865 ,1,1008,557345 ,1,1009,543310 ,1,1010,596675 ,1,1011,543310 ,1,1012,545305 ,1,1013,344605 ,1,1014,174935 ,1,1015,344595 ,1,1016,344585 ,1,1017,344575 ,1,1018,344565 ,1,1019,344555 ,1,1020,344545 ,1,1021,242470 ,1,1022,344515 ,1,1023,205195 ,1,1024,344505 ,1,1025,344495 ,1,1027,2395 ,1,1029,2395 ,1,1030,563585 ,1,1031,45 ,1,1032,9470 ,1,1034,2395 ,1,1036,2395 ,1,1038,2395 ,1,1039,45 ,1,1040,9470 ,1,1042,2395 ,1,1043,45 ,1,1044,9470 ,1,1045,255770 ,1,1046,612330 ,1,1047,45 ,1,1048,310080 ,1,1049,344485 ,1,1050,596595 ,1,1051,45 ,1,1052,344405 ,1,1053,45 ,1,1054,186970 ,1,1055,344395 ,1,1056,264905 ,1,1057,561575 ,1,1058,45 ,1,1059,13320 ,1,1060,612460 ,1,1061,344330 ,1,1063,2395 ,1,1065,2395 ,1,1066,179120 ,1,1068,2395 ,1,1069,565690 ,1,1070,45 ,1,1071,11510 ,1,1072,596550 ,1,1073,45 ,1,1074,11510 ,1,1075,543305 ,1,1076,561100 ,1,1077,543305 ,1,1078,608060 ,1,1079,45 ,1,1080,13320 ,1,1081,223845 ,1,1082,177345 ,1,1083,45 ,1,1084,11510 ,1,1085,344295 ,1,1086,178685 ,1,1087,176345 ,1,1088,177485 ,1,1089,223835 ,1,1090,223800 ,1,1091,223790 ,1,1092,543300 ,1,1093,561220 ,1,1094,543300 ,1,1095,344265 ,1,1096,561115 ,1,1097,45 ,1,1098,13320 ,1,1099,45 ,1,1100,13320 ,1,1101,45 ,1,1102,11510 ,1,1103,560750 ,1,1104,45 ,1,1105,13320 ,1,1106,178395 ,1,1107,45 ,1,1108,13320 ,1,1109,45 ,1,1110,13320 ,1,1111,2135 ,1,1112,45 ,1,1113,13320 ,1,1114,543965 ,1,1115,189760 ,1,1116,374205 ,1,1117,543265 ,1,1118,561245 ,1,1119,543265 ,1,1120,557340 ,1,1121,561155 ,1,1122,45 ,1,1123,13320 ,1,1124,596545 ,1,1125,45 ,1,1126,13320 ,1,1127,557310 ,1,1128,165945 ,1,1129,176690 ,1,1130,45 ,1,1131,13320 ,1,1132,561165 ,1,1133,45 ,1,1134,13320 ,1,1135,557305 ,1,1136,608115 ,1,1137,45 ,1,1138,344250 ,1,1139,557300 ,1,1140,561170 ,1,1141,45 ,1,1142,13320 ,1,1143,45 ,1,1144,13320 ,1,1145,543260 ,1,1146,561220 ,1,1147,543260 ,1,1148,223770 ,1,1149,45 ,1,1150,13320 ,1,1151,2135 ,1,1152,45 ,1,1153,13320 ,1,1154,561160 ,1,1155,45 ,1,1156,13320 ,1,1157,223760 ,1,1158,223740 ,1,1159,547255 ,1,1160,165925 ,1,1161,12355 ,1,1162,223730 ,1,1163,45 ,1,1164,177250 ,1,1165,45 ,1,1166,11510 ,1,1167,543255 ,1,1168,561100 ,1,1169,543255 ,1,1170,543250 ,1,1171,561095 ,1,1172,543250 ,1,1173,45 ,1,1174,13320 ,1,1175,177530 ,1,1176,165915 ,1,1177,177115 ,1,1178,177495 ,1,1179,344240 ,1,1180,561110 ,1,1181,45 ,1,1182,13320 ,1,1183,45 ,1,1184,13320 ,1,1185,45 ,1,1186,13320 ,1,1187,45 ,1,1188,13320 ,1,1189,344230 ,1,1190,223690 ,1,1191,45 ,1,1192,13320 ,1,1193,45 ,1,1194,11510 ,1,1195,45 ,1,1196,13320 ,1,1197,45 ,1,1198,11510 ,1,1199,543245 ,1,1200,561095 ,1,1201,543245 ,1,1202,223680 ,1,1203,560425 ,1,1204,45 ,1,1205,2820 ,1,1206,596530 ,1,1207,45 ,1,1208,11510 ,1,1209,608215 ,1,1210,45 ,1,1211,5900 ,1,1212,543240 ,1,1213,596525 ,1,1214,543240 ,1,1215,2280 ,1,1216,542240 ,1,1217,613070 ,1,1218,45 ,1,1219,344220 ,1,1220,561020 ,1,1221,45 ,1,1222,5080 ,1,1223,45 ,1,1224,344185 ,1,1225,2280 ,1,1226,542235 ,1,1227,45 ,1,1228,13320 ,1,1229,263015 ,1,1230,291410 ,1,1231,262995 ,1,1232,10080 ,1,1233,344175 ,1,1234,2210 ,1,1235,542350 ,1,1236,344165 ,1,1237,2210 ,1,1238,542350 ,1,1239,2280 ,1,1240,542230 ,1,1241,613060 ,1,1242,2210 ,1,1243,542350 ,1,1244,2280 ,1,1245,542220 ,1,1246,2280 ,1,1247,542215 ,1,1248,2280 ,1,1249,542235 ,1,1250,2280 ,1,1251,542210 ,1,1252,45 ,1,1253,13320 ,1,1254,2280 ,1,1255,542280 ,1,1256,2280 ,1,1257,542235 ,1,1258,45 ,1,1259,13320 ,1,1260,2280 ,1,1261,542205 ,1,1262,2280 ,1,1263,542205 ,1,1264,291660 ,1,1265,175775 ,1,1266,2280 ,1,1267,542235 ,1,1268,45 ,1,1269,13320 ,1,1270,263005 ,1,1271,344155 ,1,1272,45 ,1,1273,13320 ,1,1274,45 ,1,1275,13320 ,1,1276,4685 ,1,1277,45 ,1,1278,13320 ,1,1279,45 ,1,1280,13320 ,1,1281,45 ,1,1282,13320 ,1,1283,45 ,1,1284,13320 ,1,1285,2210 ,1,1286,542350 ,1,1287,584610 ,1,1288,45 ,1,1289,13320 ,1,1290,45 ,1,1291,13320 ,1,1293,2395 ,1,1294,196180 ,1,1295,257240 ,1,1297,2395 ,1,1299,2395 ,1,1300,563665 ,1,1301,45 ,1,1302,9470 ,1,1304,2395 ,1,1305,2280 ,1,1306,542230 ,1,1307,557295 ,1,1308,223670 ,1,1309,45 ,1,1310,13320 ,1,1311,223660 ,1,1312,45 ,1,1313,13320 ,1,1314,196345 ,1,1315,543235 ,1,1316,596520 ,1,1317,543235 ,1,1318,2280 ,1,1319,542290 ,1,1320,543230 ,1,1321,596490 ,1,1322,543230 ,1,1323,2280 ,1,1324,542280 ,1,1325,2280 ,1,1326,542275 ,1,1327,2280 ,1,1328,542280 ,1,1329,612580 ,1,1330,600020 ,1,1331,45 ,1,1332,344140 ,1,1333,558375 ,1,1334,45 ,1,1335,347205 ,1,1336,612585 ,1,1337,45 ,1,1338,5080 ,1,1339,2280 ,1,1340,542280 ,1,1342,2395 ,1,1343,612515 ,1,1344,344130 ,1,1345,606970 ,1,1346,45 ,1,1347,13320 ,1,1348,606965 ,1,1349,45 ,1,1350,13320 ,1,1352,2395 ,1,1353,45 ,1,1354,9470 ,1,1356,2395 ,1,1357,45 ,1,1358,9470 ,1,1360,2395 ,1,1361,45 ,1,1362,9470 ,1,1363,45 ,1,1364,3825 ,1,1365,2280 ,1,1366,542275 ,1,1367,543210 ,1,1368,600020 ,1,1369,543210 ,1,1370,2280 ,1,1371,542275 ,1,1373,2395 ,1,1374,45 ,1,1375,11510 ,1,1377,2395 ,1,1378,165905 ,1,1379,161045 ,1,1380,374915 ,1,1381,554015 ,1,1382,45 ,1,1383,13320 ,1,1385,2395 ,1,1386,590190 ,1,1387,45 ,1,1388,9470 ,1,1389,344120 ,1,1390,223575 ,1,1391,264775 ,1,1392,344075 ,1,1393,557280 ,1,1394,355460 ,1,1395,223565 ,1,1396,268555 ,1,1397,356285 ,1,1398,344065 ,1,1399,223555 ,1,1400,223545 ,1,1401,223530 ,1,1402,223520 ,1,1403,257495 ,1,1404,344055 ,1,1405,11265 ,1,1406,344045 ,1,1407,344035 ,1,1409,2395 ,1,1411,2395 ,1,1412,546835 ,1,1413,223510 ,1,1414,45 ,1,1415,11510 ,1,1416,4825 ,1,1417,560980 ,1,1418,45 ,1,1419,344025 ,1,1420,596480 ,1,1421,45 ,1,1422,11510 ,1,1423,344015 ,1,1424,188665 ,1,1426,2395 ,1,1427,91695 ,1,1428,91630 ,1,1429,356275 ,1,1430,356265 ,1,1431,557275 ,1,1432,2210 ,1,1433,542350 ,1,1434,544655 ,1,1435,344005 ,1,1436,359615 ,1,1437,343975 ,1,1438,256535 ,1,1439,174110 ,1,1440,544690 ,1,1441,45 ,1,1442,343965 ,1,1443,310235 ,1,1444,374705 ,1,1445,165895 ,1,1446,343955 ,1,1447,356215 ,1,1448,557270 ,1,1449,223455 ,1,1450,356225 ,1,1451,45 ,1,1452,186970 ,1,1453,596465 ,1,1454,45 ,1,1455,343945 ,1,1456,557265 ,1,1457,374515 ,1,1459,2395 ,1,1460,45 ,1,1461,9470 ,1,1463,2395 ,1,1464,45 ,1,1465,9470 ,1,1466,343930 ,1,1467,343920 ,1,1468,223445 ,1,1469,178295 ,1,1470,165360 ,1,1471,343910 ,1,1472,165885 ,1,1473,343900 ,1,1474,45 ,1,1475,11510 ,1,1476,45 ,1,1477,11510 ,1,1478,45 ,1,1479,11510 ,1,1480,45 ,1,1481,11510 ,1,1482,343855 ,1,1483,343845 ,1,1484,223435 ,1,1485,343835 ,1,1486,343825 ,1,1487,223425 ,1,1488,205435 ,1,1489,205770 ,1,1490,2210 ,1,1491,542350 ,1,1492,223400 ,1,1493,553945 ,1,1494,223390 ,1,1495,596455 ,1,1496,45 ,1,1497,9375 ,1,1498,547445 ,1,1499,359520 ,1,1500,225580 ,1,1501,609635 ,1,1502,45 ,1,1503,11510 ,1,1504,557245 ,1,1505,45 ,1,1506,11510 ,1,1507,223380 ,1,1508,223370 ,1,1509,45 ,1,1510,9375 ,1,1511,45 ,1,1512,11510 ,1,1513,557240 ,1,1514,223335 ,1,1515,596425 ,1,1516,45 ,1,1517,205700 ,1,1518,566615 ,1,1519,45 ,1,1520,183310 ,1,1521,343810 ,1,1522,223315 ,1,1523,166935 ,1,1524,606960 ,1,1525,45 ,1,1526,5900 ,1,1527,606955 ,1,1528,45 ,1,1529,5900 ,1,1530,45 ,1,1531,13320 ,1,1532,206975 ,1,1533,165875 ,1,1534,343800 ,1,1535,212880 ,1,1536,343790 ,1,1537,343780 ,1,1538,547435 ,1,1539,557235 ,1,1540,177335 ,1,1541,200390 ,1,1542,200405 ,1,1543,3825 ,1,1544,4755 ,1,1545,223305 ,1,1546,548015 ,1,1547,343760 ,1,1548,548165 ,1,1549,223285 ,1,1550,216355 ,1,1551,223275 ,1,1552,216345 ,1,1553,268260 ,1,1554,215595 ,1,1555,213590 ,1,1556,543435 ,1,1557,343750 ,1,1558,343740 ,1,1559,258300 ,1,1560,175910 ,1,1561,543205 ,1,1562,568425 ,1,1563,543205 ,1,1564,214205 ,1,1565,612640 ,1,1566,568420 ,1,1567,45 ,1,1568,343730 ,1,1569,223265 ,1,1570,45 ,1,1571,209800 ,1,1572,215985 ,1,1573,343720 ,1,1574,258265 ,1,1575,548160 ,1,1576,223255 ,1,1577,45 ,1,1578,343730 ,1,1579,215405 ,1,1580,343710 ,1,1581,343700 ,1,1582,609110 ,1,1583,45 ,1,1584,343730 ,1,1585,609175 ,1,1586,45 ,1,1587,5900 ,1,1588,45 ,1,1589,5900 ,1,1590,45 ,1,1591,5900 ,1,1592,2135 ,1,1593,45 ,1,1594,11510 ,1,1595,567205 ,1,1596,45 ,1,1597,11510 ,1,1598,45 ,1,1599,11510 ,1,1600,215455 ,1,1601,612710 ,1,1602,45 ,1,1603,343730 ,1,1604,581335 ,1,1605,45 ,1,1606,5900 ,1,1607,568520 ,1,1608,45 ,1,1609,5900 ,1,1610,612630 ,1,1611,562575 ,1,1612,45 ,1,1613,192820 ,1,1614,343690 ,1,1615,215285 ,1,1616,543200 ,1,1617,568510 ,1,1618,543200 ,1,1619,45 ,1,1620,5900 ,1,1621,248490 ,1,1622,581055 ,1,1623,45 ,1,1624,5900 ,1,1625,568560 ,1,1626,45 ,1,1627,5900 ,1,1628,543195 ,1,1629,568425 ,1,1630,543195 ,1,1631,550960 ,1,1632,548170 ,1,1634,2395 ,1,1635,45 ,1,1636,9470 ,1,1637,216015 ,1,1638,343650 ,1,1639,612635 ,1,1640,343640 ,1,1641,223220 ,1,1642,165865 ,1,1643,343630 ,1,1644,216100 ,1,1645,343620 ,1,1646,2210 ,1,1647,542350 ,1,1648,2210 ,1,1649,542350 ,1,1650,223210 ,1,1651,223200 ,1,1652,45 ,1,1653,9375 ,1,1654,359570 ,1,1655,45 ,1,1656,11510 ,1,1657,343610 ,1,1658,5855 ,1,1659,215880 ,1,1660,45 ,1,1661,11510 ,1,1662,45 ,1,1663,7585 ,1,1664,45 ,1,1665,11085 ,1,1666,224070 ,1,1667,203570 ,1,1668,612270 ,1,1669,557970 ,1,1670,45 ,1,1671,5900 ,1,1672,45 ,1,1673,5900 ,1,1674,169970 ,1,1675,165855 ,1,1676,165805 ,1,1677,2210 ,1,1678,542350 ,1,1679,2210 ,1,1680,542350 ,1,1681,2210 ,1,1682,542350 ,1,1683,2210 ,1,1684,542350 ,1,1685,2210 ,1,1686,542350 ,1,1687,2210 ,1,1688,542350 ,1,1689,2210 ,1,1690,542350 ,1,1691,543185 ,1,1692,561220 ,1,1693,543185 ,1,1694,12865 ,1,1695,557230 ,1,1696,45 ,1,1697,13320 ,1,1698,45 ,1,1699,13320 ,1,1700,223190 ,1,1701,223180 ,1,1702,356000 ,1,1703,343600 ,1,1704,547430 ,1,1705,223170 ,1,1706,165795 ,1,1707,205150 ,1,1708,547420 ,1,1709,223160 ,1,1710,609040 ,1,1711,45 ,1,1712,5900 ,1,1713,343590 ,1,1714,343580 ,1,1715,257555 ,1,1716,546860 ,1,1717,223150 ,1,1718,188900 ,1,1719,45 ,1,1720,343565 ,1,1721,343555 ,1,1722,343545 ,1,1724,2395 ,1,1725,45 ,1,1726,9470 ,1,1727,223115 ,1,1728,45 ,1,1729,195155 ,1,1730,546855 ,1,1731,200810 ,1,1732,2210 ,1,1733,542350 ,1,1734,557225 ,1,1735,546485 ,1,1736,557220 ,1,1737,612610 ,1,1738,557215 ,1,1739,612615 ,1,1740,557785 ,1,1741,557210 ,1,1742,565045 ,1,1743,45 ,1,1744,343535 ,1,1745,45 ,1,1746,343520 ,1,1747,45 ,1,1748,9435 ,1,1749,14430 ,1,1750,14420 ,1,1751,45 ,1,1752,9435 ,1,1753,280680 ,1,1754,312895 ,1,1756,2395 ,1,1757,45 ,1,1758,9470 ,1,1760,2395 ,1,1761,45 ,1,1762,9470 ,1,1763,200590 ,1,1764,200580 ,1,1765,45 ,1,1766,200590 ,1,1767,565015 ,1,1768,45 ,1,1769,200580 ,1,1770,165785 ,1,1771,200570 ,1,1772,557165 ,1,1773,557160 ,1,1774,343510 ,1,1775,557705 ,1,1776,343500 ,1,1778,2395 ,1,1779,164925 ,1,1780,164520 ,1,1781,188935 ,1,1782,164855 ,1,1783,188615 ,1,1784,164470 ,1,1785,355975 ,1,1786,256020 ,1,1787,613105 ,1,1788,45 ,1,1789,11510 ,1,1790,589645 ,1,1791,45 ,1,1792,264530 ,1,1793,223095 ,1,1794,223085 ,1,1795,45 ,1,1796,9375 ,1,1797,225560 ,1,1798,570940 ,1,1799,45 ,1,1800,11510 ,1,1801,45 ,1,1802,11510 ,1,1803,45 ,1,1804,11510 ,1,1805,596405 ,1,1806,45 ,1,1807,5900 ,1,1808,343490 ,1,1809,307325 ,1,1810,343460 ,1,1811,343450 ,1,1812,343440 ,1,1813,343430 ,1,1814,205580 ,1,1815,216120 ,1,1816,45 ,1,1817,205425 ,1,1818,264320 ,1,1819,557155 ,1,1820,557145 ,1,1821,557140 ,1,1822,557135 ,1,1823,557130 ,1,1824,566065 ,1,1825,45 ,1,1826,343420 ,1,1827,343410 ,1,1828,343400 ,1,1829,343390 ,1,1830,45 ,1,1831,5900 ,1,1832,223070 ,1,1833,251675 ,1,1834,223060 ,1,1835,251720 ,1,1836,405 ,1,1837,343365 ,1,1838,223040 ,1,1839,343315 ,1,1840,251610 ,1,1841,2210 ,1,1842,542350 ,1,1843,343305 ,1,1844,343295 ,1,1845,251645 ,1,1846,2210 ,1,1847,542350 ,1,1848,257825 ,1,1849,223015 ,1,1850,200840 ,1,1851,45 ,1,1852,167770 ,1,1853,223005 ,1,1854,204155 ,1,1855,165775 ,1,1856,257565 ,1,1857,222995 ,1,1858,179245 ,1,1859,45 ,1,1860,195155 ,1,1861,562475 ,1,1862,45 ,1,1863,5080 ,1,1864,222985 ,1,1865,222975 ,1,1866,343285 ,1,1867,222965 ,1,1868,301760 ,1,1869,2280 ,1,1870,542180 ,1,1871,2135 ,1,1872,2280 ,1,1873,542175 ,1,1874,257860 ,1,1875,2280 ,1,1876,542180 ,1,1877,2280 ,1,1878,542180 ,1,1879,2280 ,1,1880,542170 ,1,1881,2280 ,1,1882,542180 ,1,1884,2395 ,1,1885,566130 ,1,1886,45 ,1,1887,9470 ,1,1888,343240 ,1,1889,267285 ,1,1890,557100 ,1,1891,354990 ,1,1892,557095 ,1,1893,557090 ,1,1894,343230 ,1,1895,165755 ,1,1896,548265 ,1,1897,259980 ,1,1898,162465 ,1,1899,269360 ,1,1900,45 ,1,1901,11510 ,1,1902,343220 ,1,1903,106405 ,1,1904,566370 ,1,1905,45 ,1,1906,276975 ,1,1907,343210 ,1,1908,371930 ,1,1909,371990 ,1,1910,371980 ,1,1911,355000 ,1,1912,372000 ,1,1913,371940 ,1,1914,355010 ,1,1915,343200 ,1,1916,568695 ,1,1917,359465 ,1,1918,359445 ,1,1919,359505 ,1,1920,343190 ,1,1921,214775 ,1,1922,359435 ,1,1923,359455 ,1,1924,359475 ,1,1925,257295 ,1,1926,257285 ,1,1927,257275 ,1,1928,257340 ,1,1929,257330 ,1,1930,257305 ,1,1931,343180 ,1,1932,343170 ,1,1933,343145 ,1,1934,5400 ,1,1935,166485 ,1,1936,359575 ,1,1937,222945 ,1,1938,2210 ,1,1939,542350 ,1,1940,45 ,1,1941,310080 ,1,1942,557085 ,1,1943,257350 ,1,1945,2395 ,1,1946,45 ,1,1947,9470 ,1,1948,343135 ,1,1949,343125 ,1,1950,343115 ,1,1951,343105 ,1,1952,343095 ,1,1953,577825 ,1,1954,45 ,1,1955,276975 ,1,1956,216545 ,1,1957,343085 ,1,1958,2210 ,1,1959,542350 ,1,1960,2210 ,1,1961,542350 ,1,1962,234595 ,1,1963,215195 ,1,1964,216560 ,1,1965,234605 ,1,1966,165745 ,1,1967,266840 ,1,1968,557080 ,1,1969,550465 ,1,1970,145280 ,1,1971,356060 ,1,1972,222900 ,1,1973,45 ,1,1974,5900 ,1,1975,577760 ,1,1976,365190 ,1,1977,2210 ,1,1978,542350 ,1,1979,259970 ,1,1980,259945 ,1,1981,259960 ,1,1982,174925 ,1,1983,361525 ,1,1984,596295 ,1,1985,45 ,1,1986,9435 ,1,1987,607520 ,1,1988,45 ,1,1989,5900 ,1,1990,400430 ,1,1991,66650 ,1,1992,550460 ,1,1993,165735 ,1,1994,362510 ,1,1995,364820 ,1,1996,361785 ,1,1997,366190 ,1,1998,360790 ,1,1999,367000 ,1,2000,362155 ,1,2001,365030 ,1,2002,359945 ,1,2003,363965 ,1,2004,360585 ,1,2005,366310 ,1,2006,360415 ,1,2007,363810 ,1,2008,360055 ,1,2009,366810 ,1,2010,360090 ,1,2011,366600 ,1,2012,360625 ,1,2013,366740 ,1,2014,362065 ,1,2015,364935 ,1,2016,175935 ,1,2017,545270 ,1,2018,222890 ,1,2019,607525 ,1,2020,45 ,1,2021,175900 ,1,2022,355575 ,1,2023,550495 ,1,2024,355725 ,1,2025,355695 ,1,2026,355530 ,1,2027,355685 ,1,2028,355675 ,1,2029,355655 ,1,2030,355585 ,1,2031,355715 ,1,2032,355540 ,1,2033,355635 ,1,2034,355510 ,1,2035,355665 ,1,2036,355475 ,1,2037,355565 ,1,2038,355645 ,1,2039,355520 ,1,2040,355465 ,1,2041,355555 ,1,2042,355625 ,1,2043,550470 ,1,2044,606630 ,1,2045,45 ,1,2046,175900 ,1,2047,2280 ,1,2048,542265 ,1,2049,45 ,1,2050,13320 ,1,2051,2280 ,1,2052,542165 ,1,2053,45 ,1,2054,13320 ,1,2055,2135 ,1,2056,45 ,1,2057,13320 ,1,2058,343075 ,1,2059,45 ,1,2060,5900 ,1,2061,187250 ,1,2062,45 ,1,2063,5900 ,1,2064,343025 ,1,2065,45 ,1,2066,5900 ,1,2067,254960 ,1,2068,45 ,1,2069,5900 ,1,2070,343015 ,1,2071,45 ,1,2072,5900 ,1,2073,343005 ,1,2074,45 ,1,2075,5900 ,1,2076,342995 ,1,2077,45 ,1,2078,5900 ,1,2079,167555 ,1,2080,45 ,1,2081,5900 ,1,2082,342980 ,1,2083,45 ,1,2084,5900 ,1,2085,342970 ,1,2086,45 ,1,2087,5900 ,1,2088,342960 ,1,2089,45 ,1,2090,5900 ,1,2091,342950 ,1,2092,45 ,1,2093,5900 ,1,2094,342925 ,1,2095,45 ,1,2096,5900 ,1,2097,45 ,1,2098,5900 ,1,2099,254970 ,1,2100,45 ,1,2101,5900 ,1,2102,342915 ,1,2103,45 ,1,2104,5900 ,1,2105,342905 ,1,2106,45 ,1,2107,5900 ,1,2108,45 ,1,2109,5900 ,1,2110,45 ,1,2111,5900 ,1,2112,342895 ,1,2113,45 ,1,2114,5900 ,1,2115,342885 ,1,2116,45 ,1,2117,5900 ,1,2118,45 ,1,2119,5900 ,1,2120,45 ,1,2121,5900 ,1,2122,45 ,1,2123,5900 ,1,2124,342875 ,1,2125,342865 ,1,2126,204135 ,1,2127,45 ,1,2128,5900 ,1,2129,175900 ,1,2130,45 ,1,2131,5900 ,1,2132,45 ,1,2133,5900 ,1,2134,45 ,1,2135,5900 ,1,2136,45 ,1,2137,5900 ,1,2138,342855 ,1,2139,45 ,1,2140,5900 ,1,2141,45 ,1,2142,5900 ,1,2143,45 ,1,2144,5900 ,1,2145,342825 ,1,2146,45 ,1,2147,5900 ,1,2148,342815 ,1,2149,342805 ,1,2150,342795 ,1,2151,342785 ,1,2152,342775 ,1,2153,596285 ,1,2154,45 ,1,2155,342765 ,1,2156,222870 ,1,2157,45 ,1,2158,167770 ,1,2159,222860 ,1,2160,204225 ,1,2161,204235 ,1,2162,164370 ,1,2163,163835 ,1,2164,163750 ,1,2165,164315 ,1,2166,188625 ,1,2167,164280 ,1,2168,164250 ,1,2169,164185 ,1,2170,95675 ,1,2171,104660 ,1,2172,45 ,1,2173,11510 ,1,2174,45 ,1,2175,344025 ,1,2176,214805 ,1,2177,222850 ,1,2178,214795 ,1,2179,45 ,1,2180,11510 ,1,2181,45 ,1,2182,210905 ,1,2183,222840 ,1,2184,342755 ,1,2185,228410 ,1,2186,548065 ,1,2187,214925 ,1,2188,566475 ,1,2189,45 ,1,2190,5900 ,1,2191,166880 ,1,2192,214905 ,1,2193,214915 ,1,2194,566390 ,1,2195,45 ,1,2196,5900 ,1,2197,2210 ,1,2198,542350 ,1,2199,2210 ,1,2200,542350 ,1,2201,558655 ,1,2202,45 ,1,2203,171855 ,1,2204,214490 ,1,2205,557070 ,1,2206,342740 ,1,2207,227620 ,1,2208,557715 ,1,2209,355985 ,1,2210,342730 ,1,2211,358470 ,1,2212,369365 ,1,2213,369345 ,1,2214,222830 ,1,2215,548120 ,1,2216,568060 ,1,2217,45 ,1,2218,342720 ,1,2219,342710 ,1,2220,369375 ,1,2221,557065 ,1,2222,606635 ,1,2223,45 ,1,2224,5900 ,1,2225,222800 ,1,2226,267830 ,1,2227,267800 ,1,2228,215075 ,1,2229,581185 ,1,2230,45 ,1,2231,347150 ,1,2232,188725 ,1,2233,45 ,1,2234,11510 ,1,2235,45 ,1,2236,11510 ,1,2237,342700 ,1,2238,222790 ,1,2239,342690 ,1,2240,171735 ,1,2241,163130 ,1,2242,45 ,1,2243,343730 ,1,2244,222780 ,1,2245,211080 ,1,2246,45 ,1,2247,209800 ,1,2248,166850 ,1,2249,607325 ,1,2250,45 ,1,2251,5900 ,1,2252,2210 ,1,2253,542350 ,1,2254,2280 ,1,2255,542270 ,1,2256,210765 ,1,2257,210715 ,1,2258,210685 ,1,2259,215020 ,1,2260,210595 ,1,2261,222770 ,1,2262,342680 ,1,2263,567585 ,1,2264,45 ,1,2265,5900 ,1,2266,210540 ,1,2267,566930 ,1,2268,45 ,1,2269,7585 ,1,2270,45 ,1,2271,11085 ,1,2272,547475 ,1,2273,222760 ,1,2274,222750 ,1,2275,342670 ,1,2276,566855 ,1,2277,45 ,1,2278,5900 ,1,2279,342610 ,1,2280,222740 ,1,2281,258005 ,1,2282,342600 ,1,2283,182040 ,1,2284,188800 ,1,2285,342590 ,1,2286,2210 ,1,2287,542350 ,1,2288,45 ,1,2289,7585 ,1,2290,45 ,1,2291,11085 ,1,2292,45 ,1,2293,7585 ,1,2294,45 ,1,2295,11085 ,1,2296,45 ,1,2297,216580 ,1,2298,258080 ,1,2299,342580 ,1,2300,258055 ,1,2301,258045 ,1,2302,165725 ,1,2303,187240 ,1,2304,187015 ,1,2305,187025 ,1,2306,187055 ,1,2307,187220 ,1,2308,187065 ,1,2309,186360 ,1,2310,186960 ,1,2311,186970 ,1,2312,187075 ,1,2313,179640 ,1,2314,187230 ,1,2315,187180 ,1,2316,183245 ,1,2317,187170 ,1,2318,187115 ,1,2319,187105 ,1,2320,187135 ,1,2321,187125 ,1,2322,182890 ,1,2323,187200 ,1,2324,187190 ,1,2325,187085 ,1,2326,183310 ,1,2327,11510 ,1,2328,342570 ,1,2330,2395 ,1,2331,45 ,1,2332,11510 ,1,2333,14410 ,1,2334,670040 ,1,2336,2395 ,1,2337,559210 ,1,2338,45 ,1,2339,9470 ,1,2340,45 ,1,2341,5900 ,1,2342,45 ,1,2343,5900 ,1,2344,547875 ,1,2345,342560 ,1,2346,193955 ,1,2347,222730 ,1,2348,567445 ,1,2349,45 ,1,2350,342550 ,1,2351,342540 ,1,2352,557030 ,1,2353,547460 ,1,2354,265755 ,1,2355,180305 ,1,2356,557025 ,1,2357,222705 ,1,2358,342500 ,1,2359,547450 ,1,2360,2210 ,1,2361,542350 ,1,2362,596230 ,1,2363,45 ,1,2364,169470 ,1,2365,207880 ,1,2366,371030 ,1,2367,222695 ,1,2368,166860 ,1,2369,2210 ,1,2370,542350 ,1,2371,2210 ,1,2372,542350 ,1,2373,45 ,1,2374,169470 ,1,2375,207830 ,1,2376,557020 ,1,2377,557015 ,1,2378,222685 ,1,2379,222675 ,1,2380,222660 ,1,2381,222650 ,1,2382,180595 ,1,2383,371020 ,1,2384,16050 ,1,2385,2210 ,1,2386,542350 ,1,2387,2210 ,1,2388,542350 ,1,2389,45 ,1,2390,186970 ,1,2391,45 ,1,2392,216580 ,1,2393,45 ,1,2394,186970 ,1,2395,45 ,1,2396,7585 ,1,2397,45 ,1,2398,11085 ,1,2399,180820 ,1,2401,2395 ,1,2402,45 ,1,2403,9470 ,1,2404,557010 ,1,2405,342480 ,1,2406,206225 ,1,2408,2395 ,1,2409,559165 ,1,2410,45 ,1,2411,9470 ,1,2412,557005 ,1,2413,258025 ,1,2414,222640 ,1,2415,45 ,1,2416,216580 ,1,2417,342470 ,1,2418,171410 ,1,2419,351910 ,1,2420,351900 ,1,2421,351890 ,1,2422,212095 ,1,2423,547940 ,1,2424,222630 ,1,2425,342460 ,1,2426,222590 ,1,2427,222580 ,1,2428,45 ,1,2429,9375 ,1,2430,557000 ,1,2431,342450 ,1,2432,342440 ,1,2433,45 ,1,2434,11510 ,1,2435,546450 ,1,2436,596190 ,1,2437,45 ,1,2438,342430 ,1,2439,2210 ,1,2440,542350 ,1,2441,609155 ,1,2442,45 ,1,2443,5900 ,1,2445,2395 ,1,2446,600010 ,1,2447,45 ,1,2448,9470 ,1,2450,2395 ,1,2452,2395 ,1,2454,2395 ,1,2455,567525 ,1,2456,45 ,1,2457,5900 ,1,2458,547935 ,1,2459,45 ,1,2460,5900 ,1,2461,165705 ,1,2462,566770 ,1,2463,45 ,1,2464,5900 ,1,2465,165695 ,1,2466,342395 ,1,2467,556995 ,1,2468,45 ,1,2469,11510 ,1,2470,596160 ,1,2471,45 ,1,2472,13320 ,1,2473,210560 ,1,2474,342385 ,1,2475,547480 ,1,2476,222545 ,1,2477,207160 ,1,2478,45 ,1,2479,342375 ,1,2480,210575 ,1,2481,208100 ,1,2482,342365 ,1,2483,222515 ,1,2484,208185 ,1,2485,342355 ,1,2486,207990 ,1,2487,207305 ,1,2488,2210 ,1,2489,542350 ,1,2490,222475 ,1,2491,596130 ,1,2492,45 ,1,2493,9375 ,1,2494,45 ,1,2495,11510 ,1,2496,556940 ,1,2497,556935 ,1,2498,342345 ,1,2499,209370 ,1,2500,188820 ,1,2502,2395 ,1,2504,2395 ,1,2505,233095 ,1,2506,209550 ,1,2507,556930 ,1,2508,222465 ,1,2509,213745 ,1,2510,342335 ,1,2511,342325 ,1,2512,342300 ,1,2513,342290 ,1,2514,342280 ,1,2515,342270 ,1,2516,342260 ,1,2517,568025 ,1,2518,556915 ,1,2519,556910 ,1,2520,165685 ,1,2521,342250 ,1,2522,373675 ,1,2523,180325 ,1,2525,2395 ,1,2526,222455 ,1,2527,342240 ,1,2528,45 ,1,2529,5900 ,1,2530,252495 ,1,2531,2210 ,1,2532,542350 ,1,2533,45 ,1,2534,7585 ,1,2535,45 ,1,2536,11085 ,1,2537,209755 ,1,2538,567065 ,1,2539,45 ,1,2540,5900 ,1,2541,213315 ,1,2542,188395 ,1,2543,209255 ,1,2545,2395 ,1,2546,211025 ,1,2547,342230 ,1,2548,342185 ,1,2549,222445 ,1,2550,342175 ,1,2551,222415 ,1,2552,222405 ,1,2553,45 ,1,2554,9375 ,1,2555,342165 ,1,2556,45 ,1,2557,11510 ,1,2558,211395 ,1,2559,359540 ,1,2560,165675 ,1,2561,45 ,1,2562,11510 ,1,2563,359555 ,1,2564,165665 ,1,2565,544650 ,1,2566,222395 ,1,2567,342155 ,1,2568,45 ,1,2569,5900 ,1,2570,2210 ,1,2571,542350 ,1,2572,45 ,1,2573,7585 ,1,2574,45 ,1,2575,11085 ,1,2576,222385 ,1,2577,45 ,1,2578,209800 ,1,2579,210705 ,1,2580,45 ,1,2581,5900 ,1,2582,45 ,1,2583,5900 ,1,2584,210790 ,1,2585,45 ,1,2586,5900 ,1,2587,210695 ,1,2588,45 ,1,2589,5900 ,1,2590,222355 ,1,2591,342145 ,1,2592,45 ,1,2593,5900 ,1,2594,2210 ,1,2595,542350 ,1,2596,45 ,1,2597,7585 ,1,2598,45 ,1,2599,11085 ,1,2600,213325 ,1,2601,45 ,1,2602,5900 ,1,2603,45 ,1,2604,5900 ,1,2605,210550 ,1,2606,45 ,1,2607,5900 ,1,2608,342135 ,1,2609,45 ,1,2610,5900 ,1,2611,45 ,1,2612,5900 ,1,2613,45 ,1,2614,11510 ,1,2615,163660 ,1,2616,45 ,1,2617,347150 ,1,2618,342125 ,1,2619,342115 ,1,2620,45 ,1,2621,186970 ,1,2622,567750 ,1,2623,45 ,1,2624,347100 ,1,2625,45 ,1,2626,347205 ,1,2627,342095 ,1,2628,370560 ,1,2629,371825 ,1,2630,342085 ,1,2631,222345 ,1,2632,210280 ,1,2633,45 ,1,2634,216580 ,1,2635,211975 ,1,2636,374270 ,1,2637,172915 ,1,2638,251655 ,1,2639,2210 ,1,2640,542350 ,1,2641,251665 ,1,2642,2210 ,1,2643,542350 ,1,2644,256370 ,1,2645,2210 ,1,2646,542350 ,1,2647,214970 ,1,2648,45 ,1,2649,5900 ,1,2650,45 ,1,2651,5900 ,1,2652,45 ,1,2653,5900 ,1,2654,211320 ,1,2655,207085 ,1,2656,342075 ,1,2657,211155 ,1,2658,222335 ,1,2659,45 ,1,2660,209800 ,1,2661,211015 ,1,2662,45 ,1,2663,5900 ,1,2664,45 ,1,2665,5900 ,1,2666,214960 ,1,2667,556905 ,1,2668,556900 ,1,2669,104285 ,1,2670,45 ,1,2671,276975 ,1,2672,222325 ,1,2673,222315 ,1,2674,214585 ,1,2675,342065 ,1,2676,210665 ,1,2677,197280 ,1,2678,210605 ,1,2679,184135 ,1,2680,608525 ,1,2681,45 ,1,2682,342050 ,1,2683,210655 ,1,2684,45 ,1,2685,342050 ,1,2686,45 ,1,2687,11510 ,1,2688,214980 ,1,2689,45 ,1,2690,5900 ,1,2691,342040 ,1,2692,45 ,1,2693,5900 ,1,2694,342030 ,1,2695,210775 ,1,2696,45 ,1,2697,211985 ,1,2698,45 ,1,2699,5900 ,1,2700,45 ,1,2701,5900 ,1,2702,209800 ,1,2703,567805 ,1,2704,45 ,1,2705,11510 ,1,2706,342020 ,1,2707,342000 ,1,2708,211200 ,1,2709,612625 ,1,2710,45 ,1,2711,209800 ,1,2712,257770 ,1,2713,222250 ,1,2714,556870 ,1,2715,341935 ,1,2716,15155 ,1,2717,341925 ,1,2718,341900 ,1,2719,10490 ,1,2720,222220 ,1,2721,546030 ,1,2722,341890 ,1,2723,596070 ,1,2724,45 ,1,2725,5080 ,1,2727,2395 ,1,2728,45 ,1,2729,9470 ,1,2730,545975 ,1,2731,222195 ,1,2732,608275 ,1,2733,45 ,1,2734,9500 ,1,2735,341880 ,1,2736,596060 ,1,2737,45 ,1,2738,11510 ,1,2739,177360 ,1,2741,2395 ,1,2742,45 ,1,2743,9470 ,1,2744,545495 ,1,2745,11085 ,1,2747,2395 ,1,2748,45 ,1,2749,9470 ,1,2750,222185 ,1,2751,373370 ,1,2752,373650 ,1,2753,15020 ,1,2754,15175 ,1,2755,16030 ,1,2756,15010 ,1,2757,550130 ,1,2758,556865 ,1,2759,372185 ,1,2760,372175 ,1,2761,15345 ,1,2762,15595 ,1,2763,341870 ,1,2764,373470 ,1,2765,373135 ,1,2766,370945 ,1,2767,373660 ,1,2768,15210 ,1,2769,15280 ,1,2770,16020 ,1,2771,16010 ,1,2772,16000 ,1,2773,15985 ,1,2774,2210 ,1,2775,542350 ,1,2776,2210 ,1,2777,542350 ,1,2779,2395 ,1,2781,2395 ,1,2782,559140 ,1,2783,45 ,1,2784,225320 ,1,2785,559095 ,1,2786,45 ,1,2787,5900 ,1,2788,45 ,1,2789,5900 ,1,2790,543180 ,1,2791,559095 ,1,2792,543180 ,1,2794,2395 ,1,2795,561455 ,1,2796,45 ,1,2797,9470 ,1,2798,180935 ,1,2799,183755 ,1,2801,2395 ,1,2803,2395 ,1,2805,2395 ,1,2807,2395 ,1,2808,45 ,1,2809,9470 ,1,2810,341850 ,1,2812,2395 ,1,2813,185680 ,1,2814,185775 ,1,2815,185765 ,1,2816,185755 ,1,2817,185740 ,1,2818,182835 ,1,2819,185720 ,1,2820,185645 ,1,2821,182825 ,1,2822,182780 ,1,2823,182790 ,1,2824,185670 ,1,2825,182815 ,1,2826,185710 ,1,2827,182745 ,1,2828,185660 ,1,2829,185730 ,1,2830,185690 ,1,2831,173945 ,1,2832,182760 ,1,2833,182870 ,1,2834,182770 ,1,2835,182880 ,1,2836,182805 ,1,2838,2395 ,1,2840,2395 ,1,2842,2395 ,1,2844,2395 ,1,2846,2395 ,1,2848,2395 ,1,2850,2395 ,1,2852,2395 ,1,2854,2395 ,1,2856,2395 ,1,2858,2395 ,1,2859,556860 ,1,2860,556855 ,1,2861,556845 ,1,2862,356120 ,1,2863,200975 ,1,2864,188890 ,1,2865,91940 ,1,2866,356050 ,1,2867,88920 ,1,2868,356070 ,1,2869,45 ,1,2870,167770 ,1,2871,222175 ,1,2872,186855 ,1,2873,370740 ,1,2874,186865 ,1,2875,370750 ,1,2876,186845 ,1,2877,370730 ,1,2878,186835 ,1,2879,370720 ,1,2880,251630 ,1,2881,2210 ,1,2882,542350 ,1,2883,222145 ,1,2884,45 ,1,2885,5900 ,1,2886,45 ,1,2887,5900 ,1,2888,341840 ,1,2889,222135 ,1,2890,45 ,1,2891,5900 ,1,2892,45 ,1,2893,5900 ,1,2894,341830 ,1,2895,251620 ,1,2896,2210 ,1,2897,542350 ,1,2898,188910 ,1,2899,88945 ,1,2900,222125 ,1,2901,546885 ,1,2902,354080 ,1,2903,222115 ,1,2904,556840 ,1,2905,356210 ,1,2906,556835 ,1,2907,222105 ,1,2908,202230 ,1,2909,187610 ,1,2910,201485 ,1,2911,222095 ,1,2912,264895 ,1,2913,556830 ,1,2914,612620 ,1,2915,341765 ,1,2916,165655 ,1,2917,45 ,1,2918,341755 ,1,2919,341745 ,1,2920,613055 ,1,2921,584540 ,1,2922,45 ,1,2923,5080 ,1,2924,610995 ,1,2925,45 ,1,2926,167770 ,1,2927,45 ,1,2928,215195 ,1,2929,165645 ,1,2930,551740 ,1,2931,222075 ,1,2932,290870 ,1,2933,613050 ,1,2934,341735 ,1,2935,165635 ,1,2936,556805 ,1,2937,556800 ,1,2938,45 ,1,2939,13320 ,1,2940,45 ,1,2941,13320 ,1,2942,556795 ,1,2943,222045 ,1,2944,222035 ,1,2945,341720 ,1,2946,341710 ,1,2947,611000 ,1,2948,45 ,1,2949,5900 ,1,2950,2280 ,1,2951,542160 ,1,2952,2280 ,1,2953,542160 ,1,2954,45 ,1,2955,5900 ,1,2956,584510 ,1,2957,45 ,1,2958,213700 ,1,2959,165605 ,1,2960,221995 ,1,2961,235515 ,1,2962,221985 ,1,2963,341655 ,1,2964,221975 ,1,2965,341645 ,1,2966,341635 ,1,2967,221925 ,1,2968,221210 ,1,2969,165595 ,1,2971,2395 ,1,2972,341625 ,1,2973,341615 ,1,2974,201245 ,1,2975,202000 ,1,2976,374095 ,1,2977,565550 ,1,2978,45 ,1,2979,13320 ,1,2980,596010 ,1,2981,45 ,1,2982,13320 ,1,2983,341605 ,1,2984,45 ,1,2985,13320 ,1,2986,596005 ,1,2987,45 ,1,2988,13320 ,1,2989,596000 ,1,2990,45 ,1,2991,224025 ,1,2992,221915 ,1,2993,221905 ,1,2994,257715 ,1,2995,595995 ,1,2996,45 ,1,2997,13320 ,1,2998,565665 ,1,2999,45 ,1,3000,13320 ,1,3001,194945 ,1,3002,194960 ,1,3003,165585 ,1,3004,341585 ,1,3005,341555 ,1,3006,556790 ,1,3007,221880 ,1,3008,2280 ,1,3009,542155 ,1,3010,45 ,1,3011,13320 ,1,3012,341455 ,1,3013,562685 ,1,3014,45 ,1,3015,13320 ,1,3016,341445 ,1,3017,221810 ,1,3018,543175 ,1,3019,584615 ,1,3020,543175 ,1,3021,45 ,1,3022,13320 ,1,3023,45 ,1,3024,13320 ,1,3025,595955 ,1,3026,45 ,1,3027,13320 ,1,3028,45 ,1,3029,13320 ,1,3030,341325 ,1,3031,341315 ,1,3032,10945 ,1,3034,2395 ,1,3035,2280 ,1,3036,542235 ,1,3037,45 ,1,3038,13320 ,1,3039,165575 ,1,3040,181730 ,1,3041,202295 ,1,3042,202200 ,1,3043,202790 ,1,3044,202690 ,1,3045,202435 ,1,3046,221800 ,1,3047,260395 ,1,3048,263910 ,1,3049,341305 ,1,3050,165565 ,1,3051,341295 ,1,3052,263900 ,1,3053,221760 ,1,3054,341240 ,1,3055,556750 ,1,3056,612700 ,1,3057,341230 ,1,3058,45 ,1,3059,195155 ,1,3060,221730 ,1,3061,165555 ,1,3062,341220 ,1,3063,165545 ,1,3064,556745 ,1,3065,556740 ,1,3066,201400 ,1,3067,341210 ,1,3068,165535 ,1,3069,221720 ,1,3070,201420 ,1,3071,91350 ,1,3072,2280 ,1,3073,542275 ,1,3074,556735 ,1,3075,165505 ,1,3076,177370 ,1,3077,556730 ,1,3078,543170 ,1,3079,561245 ,1,3080,543170 ,1,3081,165495 ,1,3082,177150 ,1,3083,543140 ,1,3084,596545 ,1,3085,543140 ,1,3086,341200 ,1,3087,341190 ,1,3088,341180 ,1,3090,2395 ,1,3091,221710 ,1,3092,550975 ,1,3093,610555 ,1,3094,45 ,1,3095,343730 ,1,3096,45 ,1,3097,11510 ,1,3098,45 ,1,3099,11510 ,1,3100,550910 ,1,3101,546845 ,1,3102,201390 ,1,3103,543135 ,1,3104,595890 ,1,3105,543135 ,1,3106,91500 ,1,3107,202210 ,1,3108,91440 ,1,3109,202260 ,1,3110,91330 ,1,3111,202305 ,1,3112,202315 ,1,3113,546865 ,1,3114,45 ,1,3115,11510 ,1,3116,93730 ,1,3117,188685 ,1,3118,561560 ,1,3119,45 ,1,3120,347080 ,1,3121,595885 ,1,3122,45 ,1,3123,171855 ,1,3124,543130 ,1,3125,560255 ,1,3126,543130 ,1,3127,221675 ,1,3128,221665 ,1,3129,354070 ,1,3130,595845 ,1,3131,45 ,1,3132,9375 ,1,3133,371900 ,1,3134,341170 ,1,3135,372085 ,1,3136,45 ,1,3137,11510 ,1,3138,372045 ,1,3139,45 ,1,3140,11510 ,1,3141,372015 ,1,3142,45 ,1,3143,11510 ,1,3144,372025 ,1,3145,45 ,1,3146,11510 ,1,3147,372055 ,1,3148,45 ,1,3149,11510 ,1,3150,372035 ,1,3151,45 ,1,3152,11510 ,1,3153,372075 ,1,3154,45 ,1,3155,11510 ,1,3156,371925 ,1,3157,45 ,1,3158,11510 ,1,3159,371915 ,1,3160,357165 ,1,3161,544695 ,1,3162,556725 ,1,3163,221655 ,1,3164,45 ,1,3165,192820 ,1,3166,256525 ,1,3167,612550 ,1,3168,192805 ,1,3169,45 ,1,3170,192820 ,1,3171,45 ,1,3172,192805 ,1,3173,165485 ,1,3174,341125 ,1,3175,256545 ,1,3176,359545 ,1,3177,165475 ,1,3178,341115 ,1,3179,170010 ,1,3180,174090 ,1,3181,174100 ,1,3182,2280 ,1,3183,542150 ,1,3184,341105 ,1,3185,341095 ,1,3186,45 ,1,3187,5900 ,1,3188,543125 ,1,3189,564895 ,1,3190,543125 ,1,3191,3565 ,1,3192,168785 ,1,3193,341085 ,1,3194,546040 ,1,3195,612520 ,1,3196,189355 ,1,3197,45 ,1,3198,167770 ,1,3199,45 ,1,3200,189355 ,1,3201,165455 ,1,3202,256790 ,1,3203,221625 ,1,3204,45 ,1,3205,310080 ,1,3206,192740 ,1,3207,221595 ,1,3208,221585 ,1,3209,595785 ,1,3210,45 ,1,3211,9375 ,1,3212,45 ,1,3213,11510 ,1,3214,256810 ,1,3215,169470 ,1,3216,8345 ,1,3217,359410 ,1,3218,359420 ,1,3219,359430 ,1,3220,45 ,1,3221,11510 ,1,3222,45 ,1,3223,11510 ,1,3224,2210 ,1,3225,542350 ,1,3226,2210 ,1,3227,542350 ,1,3229,2395 ,1,3230,45 ,1,3231,9470 ,1,3232,341075 ,1,3234,2395 ,1,3235,562820 ,1,3236,45 ,1,3237,9470 ,1,3238,341065 ,1,3239,256820 ,1,3240,189495 ,1,3241,189535 ,1,3242,187540 ,1,3243,374565 ,1,3244,612525 ,1,3246,2395 ,1,3247,45 ,1,3248,9470 ,1,3249,256565 ,1,3251,2395 ,1,3252,45 ,1,3253,9470 ,1,3254,221575 ,1,3255,45 ,1,3256,3525 ,1,3257,400430 ,1,3258,205420 ,1,3259,45 ,1,3260,343730 ,1,3261,215640 ,1,3262,173965 ,1,3263,359525 ,1,3264,165445 ,1,3265,610565 ,1,3266,45 ,1,3267,5900 ,1,3268,213580 ,1,3269,581320 ,1,3270,45 ,1,3271,5900 ,1,3272,45 ,1,3273,5900 ,1,3274,45 ,1,3275,341055 ,1,3276,341030 ,1,3277,227505 ,1,3278,227495 ,1,3279,373350 ,1,3280,213765 ,1,3281,355760 ,1,3282,355860 ,1,3283,355895 ,1,3284,355885 ,1,3285,355875 ,1,3286,355830 ,1,3287,355780 ,1,3288,355745 ,1,3289,355770 ,1,3290,355735 ,1,3291,355790 ,1,3292,355840 ,1,3293,355850 ,1,3294,254825 ,1,3295,374990 ,1,3296,374630 ,1,3297,14400 ,1,3298,14390 ,1,3299,374905 ,1,3300,374600 ,1,3301,361410 ,1,3302,254905 ,1,3303,341020 ,1,3304,341010 ,1,3305,7530 ,1,3306,341000 ,1,3307,340985 ,1,3308,7620 ,1,3309,375000 ,1,3310,374760 ,1,3311,14380 ,1,3312,374965 ,1,3313,255150 ,1,3314,340975 ,1,3315,340965 ,1,3316,9920 ,1,3317,340955 ,1,3318,340915 ,1,3319,340905 ,1,3320,14370 ,1,3321,374610 ,1,3322,375010 ,1,3323,577775 ,1,3324,14360 ,1,3325,255080 ,1,3326,340895 ,1,3327,340885 ,1,3328,165435 ,1,3329,14330 ,1,3330,374750 ,1,3331,374575 ,1,3332,374815 ,1,3333,254950 ,1,3334,255190 ,1,3335,340875 ,1,3336,340865 ,1,3337,374680 ,1,3338,374640 ,1,3339,14320 ,1,3340,255255 ,1,3341,340855 ,1,3342,340845 ,1,3343,340810 ,1,3344,374940 ,1,3345,374950 ,1,3346,14310 ,1,3347,374975 ,1,3348,366125 ,1,3349,361560 ,1,3350,366585 ,1,3351,361015 ,1,3352,366440 ,1,3353,360500 ,1,3354,366705 ,1,3355,361045 ,1,3356,577900 ,1,3357,204055 ,1,3358,3495 ,1,3359,340800 ,1,3360,400430 ,1,3361,88750 ,1,3362,45 ,1,3363,300365 ,1,3364,45 ,1,3365,195155 ,1,3366,45 ,1,3367,5080 ,1,3368,340790 ,1,3369,7300 ,1,3370,169920 ,1,3371,340780 ,1,3372,45 ,1,3373,11510 ,1,3374,690 ,1,3375,2210 ,1,3376,542350 ,1,3377,2210 ,1,3378,542350 ,1,3379,2210 ,1,3380,542350 ,1,3381,2210 ,1,3382,542350 ,1,3383,45 ,1,3384,9435 ,1,3385,340770 ,1,3386,45 ,1,3387,9435 ,1,3388,567625 ,1,3389,45 ,1,3390,9435 ,1,3391,566845 ,1,3392,45 ,1,3393,9435 ,1,3394,250530 ,1,3395,45 ,1,3396,186035 ,1,3397,10815 ,1,3398,224335 ,1,3399,400430 ,1,3400,103810 ,1,3401,561460 ,1,3402,45 ,1,3403,212880 ,1,3404,209540 ,1,3405,221520 ,1,3406,547550 ,1,3407,221510 ,1,3408,595750 ,1,3409,45 ,1,3410,9375 ,1,3411,45 ,1,3412,11510 ,1,3413,2210 ,1,3414,542350 ,1,3415,547865 ,1,3416,211220 ,1,3417,165425 ,1,3418,45 ,1,3419,5900 ,1,3420,208555 ,1,3421,209640 ,1,3422,340760 ,1,3423,209790 ,1,3424,211330 ,1,3425,212530 ,1,3426,45 ,1,3427,5900 ,1,3428,340750 ,1,3429,213435 ,1,3430,340740 ,1,3431,5370 ,1,3432,340700 ,1,3433,340690 ,1,3435,2395 ,1,3436,45 ,1,3437,9470 ,1,3438,207470 ,1,3439,207950 ,1,3440,2210 ,1,3441,542350 ,1,3442,340680 ,1,3443,208005 ,1,3444,208015 ,1,3445,208025 ,1,3446,221500 ,1,3447,221490 ,1,3448,595745 ,1,3449,45 ,1,3450,9375 ,1,3451,340670 ,1,3452,340650 ,1,3453,211070 ,1,3454,165395 ,1,3455,211865 ,1,3456,340640 ,1,3457,207610 ,1,3458,221475 ,1,3459,210895 ,1,3460,165385 ,1,3461,45 ,1,3462,11510 ,1,3463,340630 ,1,3464,45 ,1,3465,11510 ,1,3466,2210 ,1,3467,542350 ,1,3468,45 ,1,3469,190085 ,1,3470,208035 ,1,3471,211775 ,1,3472,211820 ,1,3473,258110 ,1,3474,165375 ,1,3475,340620 ,1,3476,340580 ,1,3477,45 ,1,3478,5900 ,1,3479,209070 ,1,3480,45 ,1,3481,5900 ,1,3482,2210 ,1,3483,542350 ,1,3484,45 ,1,3485,211985 ,1,3486,340570 ,1,3487,207130 ,1,3488,45 ,1,3489,5900 ,1,3490,45 ,1,3491,5900 ,1,3492,340560 ,1,3493,45 ,1,3494,5900 ,1,3495,45 ,1,3496,5900 ,1,3497,2210 ,1,3498,542350 ,1,3499,2210 ,1,3500,542350 ,1,3501,371560 ,1,3502,340550 ,1,3503,210925 ,1,3504,373485 ,1,3505,340535 ,1,3506,211190 ,1,3507,258090 ,1,3508,206415 ,1,3509,206445 ,1,3510,213520 ,1,3511,340525 ,1,3512,45 ,1,3513,5900 ,1,3514,210935 ,1,3515,45 ,1,3516,5900 ,1,3517,45 ,1,3518,5900 ,1,3519,2210 ,1,3520,542350 ,1,3521,2210 ,1,3522,542350 ,1,3523,173980 ,1,3524,340515 ,1,3525,221465 ,1,3526,221455 ,1,3527,45 ,1,3528,9375 ,1,3529,208215 ,1,3530,45 ,1,3531,5900 ,1,3532,212075 ,1,3533,221445 ,1,3534,45 ,1,3535,11510 ,1,3536,45 ,1,3537,190085 ,1,3538,221395 ,1,3539,221385 ,1,3540,45 ,1,3541,9375 ,1,3542,45 ,1,3543,11510 ,1,3544,209980 ,1,3545,340505 ,1,3546,340475 ,1,3547,340465 ,1,3548,340455 ,1,3549,400430 ,1,3550,104285 ,1,3551,568120 ,1,3552,400430 ,1,3553,97070 ,1,3554,595690 ,1,3555,45 ,1,3556,190350 ,1,3557,45 ,1,3558,11510 ,1,3559,45 ,1,3560,190350 ,1,3561,45 ,1,3562,11510 ,1,3563,562150 ,1,3564,45 ,1,3565,5900 ,1,3566,165365 ,1,3568,2395 ,1,3569,340445 ,1,3571,2395 ,1,3572,567045 ,1,3573,45 ,1,3574,5900 ,1,3575,209630 ,1,3576,45 ,1,3577,5900 ,1,3578,186180 ,1,3580,2395 ,1,3581,208585 ,1,3582,556720 ,1,3583,556715 ,1,3584,206070 ,1,3585,562145 ,1,3586,45 ,1,3587,5900 ,1,3588,165350 ,1,3590,2395 ,1,3591,45 ,1,3592,5900 ,1,3593,556675 ,1,3594,400430 ,1,3595,94325 ,1,3596,45 ,1,3597,4610 ,1,3598,45 ,1,3599,340435 ,1,3600,221370 ,1,3601,45 ,1,3602,2845 ,1,3603,45 ,1,3604,8740 ,1,3605,340425 ,1,3606,340415 ,1,3607,340405 ,1,3608,340375 ,1,3609,400430 ,1,3610,94485 ,1,3611,566590 ,1,3612,45 ,1,3613,340435 ,1,3614,340365 ,1,3615,45 ,1,3616,8740 ,1,3617,45 ,1,3618,9435 ,1,3619,400430 ,1,3620,93760 ,1,3621,566285 ,1,3622,45 ,1,3623,190350 ,1,3624,340355 ,1,3625,340345 ,1,3626,570750 ,1,3627,45 ,1,3628,5900 ,1,3629,45 ,1,3630,5900 ,1,3631,165340 ,1,3632,45 ,1,3633,5900 ,1,3634,206535 ,1,3635,566400 ,1,3636,45 ,1,3637,5900 ,1,3638,566535 ,1,3639,45 ,1,3640,5900 ,1,3641,566460 ,1,3642,45 ,1,3643,5900 ,1,3644,566450 ,1,3645,45 ,1,3646,5900 ,1,3647,566545 ,1,3648,45 ,1,3649,5900 ,1,3650,566485 ,1,3651,45 ,1,3652,5900 ,1,3653,566510 ,1,3654,45 ,1,3655,5900 ,1,3656,45 ,1,3657,5900 ,1,3658,566520 ,1,3659,45 ,1,3660,5900 ,1,3661,400430 ,1,3662,117780 ,1,3663,571305 ,1,3664,45 ,1,3665,309980 ,1,3666,221360 ,1,3667,2210 ,1,3668,542350 ,1,3669,221350 ,1,3670,556670 ,1,3671,595655 ,1,3672,45 ,1,3673,340325 ,1,3674,45 ,1,3675,13320 ,1,3676,400430 ,1,3677,84525 ,1,3678,608530 ,1,3679,45 ,1,3680,342050 ,1,3681,45 ,1,3682,342050 ,1,3683,400430 ,1,3684,84505 ,1,3685,174080 ,1,3686,268725 ,1,3687,340315 ,1,3688,556665 ,1,3689,189125 ,1,3690,192900 ,1,3691,400430 ,1,3692,163980 ,1,3693,374230 ,1,3694,374255 ,1,3695,192820 ,1,3696,167770 ,1,3697,606760 ,1,3698,45 ,1,3699,11510 ,1,3700,374265 ,1,3701,45 ,1,3702,167770 ,1,3703,340305 ,1,3704,340295 ,1,3705,340260 ,1,3706,204310 ,1,3707,172905 ,1,3708,172975 ,1,3709,173035 ,1,3710,173045 ,1,3711,172945 ,1,3712,14300 ,1,3713,543120 ,1,3714,587755 ,1,3715,543120 ,1,3716,543115 ,1,3717,581465 ,1,3718,543115 ,1,3719,221300 ,1,3720,595650 ,1,3721,45 ,1,3722,4765 ,1,3723,543110 ,1,3724,587755 ,1,3725,543110 ,1,3726,543105 ,1,3727,587755 ,1,3728,543105 ,1,3729,172925 ,1,3730,173065 ,1,3731,172965 ,1,3732,173055 ,1,3734,2395 ,1,3735,173025 ,1,3736,356105 ,1,3737,543080 ,1,3738,587755 ,1,3739,543080 ,1,3740,2280 ,1,3741,542145 ,1,3742,2280 ,1,3743,542095 ,1,3744,2280 ,1,3745,542145 ,1,3746,2280 ,1,3747,542095 ,1,3748,2280 ,1,3749,542095 ,1,3750,2280 ,1,3751,542095 ,1,3752,340250 ,1,3753,2280 ,1,3754,542095 ,1,3755,45 ,1,3756,5900 ,1,3757,2280 ,1,3758,542095 ,1,3759,45 ,1,3760,5900 ,1,3761,2280 ,1,3762,542095 ,1,3763,340240 ,1,3764,2210 ,1,3765,542350 ,1,3766,2210 ,1,3767,542350 ,1,3768,543075 ,1,3769,581465 ,1,3770,543075 ,1,3771,2280 ,1,3772,542095 ,1,3773,347205 ,1,3774,2280 ,1,3775,542095 ,1,3776,340230 ,1,3777,340215 ,1,3778,356110 ,1,3779,400430 ,1,3780,163095 ,1,3781,45 ,1,3782,343730 ,1,3783,543070 ,1,3784,568425 ,1,3785,543070 ,1,3786,340205 ,1,3787,221290 ,1,3788,45 ,1,3789,209800 ,1,3790,215395 ,1,3791,221280 ,1,3792,45 ,1,3793,209800 ,1,3794,215385 ,1,3795,221270 ,1,3796,45 ,1,3797,343730 ,1,3798,215695 ,1,3799,264175 ,1,3800,217015 ,1,3801,45 ,1,3802,341055 ,1,3803,216045 ,1,3804,216220 ,1,3805,340185 ,1,3806,351880 ,1,3807,351870 ,1,3808,14290 ,1,3809,264360 ,1,3810,301025 ,1,3811,2210 ,1,3812,542345 ,1,3814,2395 ,1,3815,180560 ,1,3816,340155 ,1,3817,2210 ,1,3818,542345 ,1,3820,2395 ,1,3821,45 ,1,3822,9470 ,1,3824,2395 ,1,3825,45 ,1,3826,9470 ,1,3827,263965 ,1,3828,301015 ,1,3829,300995 ,1,3831,2395 ,1,3832,45 ,1,3833,9470 ,1,3834,340145 ,1,3835,215085 ,1,3836,340135 ,1,3837,543065 ,1,3838,595645 ,1,3839,543065 ,1,3840,2135 ,1,3841,400430 ,1,3842,209750 ,1,3843,45 ,1,3844,192820 ,1,3845,221255 ,1,3846,340125 ,1,3847,189035 ,1,3848,340115 ,1,3849,165330 ,1,3850,179760 ,1,3851,312220 ,1,3852,312210 ,1,3853,221245 ,1,3854,340105 ,1,3855,203595 ,1,3856,340095 ,1,3857,340085 ,1,3858,234970 ,1,3859,355910 ,1,3860,340045 ,1,3861,340035 ,1,3862,547390 ,1,3863,554070 ,1,3864,45 ,1,3865,13320 ,1,3866,7130 ,1,3867,3330 ,1,3868,340025 ,1,3869,554065 ,1,3870,340015 ,1,3871,310080 ,1,3872,2940 ,1,3873,310980 ,1,3874,221235 ,1,3875,340005 ,1,3876,554025 ,1,3877,264685 ,1,3878,339995 ,1,3879,264665 ,1,3880,339985 ,1,3881,264655 ,1,3882,339975 ,1,3883,170040 ,1,3884,339940 ,1,3885,221225 ,1,3886,169960 ,1,3887,339930 ,1,3888,45 ,1,3889,310080 ,1,3890,221205 ,1,3891,339920 ,1,3892,264460 ,1,3893,190670 ,1,3894,264380 ,1,3895,339910 ,1,3896,6920 ,1,3897,339900 ,1,3898,339890 ,1,3899,290240 ,1,3901,2395 ,1,3902,45 ,1,3903,9470 ,1,3904,339880 ,1,3905,339870 ,1,3906,221195 ,1,3907,166870 ,1,3908,221185 ,1,3909,45 ,1,3910,310080 ,1,3911,221175 ,1,3912,264390 ,1,3913,339850 ,1,3914,339840 ,1,3915,339830 ,1,3916,264260 ,1,3917,305610 ,1,3918,304855 ,1,3919,304890 ,1,3920,221155 ,1,3921,45 ,1,3922,13060 ,1,3923,221145 ,1,3924,305055 ,1,3925,165320 ,1,3926,45 ,1,3927,13060 ,1,3928,305110 ,1,3929,304930 ,1,3930,221135 ,1,3931,339820 ,1,3932,339800 ,1,3933,339790 ,1,3934,45 ,1,3935,340435 ,1,3936,264140 ,1,3937,264220 ,1,3938,179850 ,1,3939,191200 ,1,3940,543055 ,1,3941,564895 ,1,3942,543055 ,1,3943,305275 ,1,3944,339780 ,1,3945,339770 ,1,3946,339735 ,1,3947,190855 ,1,3948,190865 ,1,3949,339725 ,1,3950,339715 ,1,3951,264190 ,1,3952,264150 ,1,3953,339705 ,1,3954,339690 ,1,3955,339680 ,1,3956,339670 ,1,3957,256630 ,1,3958,339660 ,1,3959,339630 ,1,3960,339620 ,1,3961,165290 ,1,3962,612500 ,1,3963,171195 ,1,3964,45 ,1,3965,339610 ,1,3966,339600 ,1,3967,339580 ,1,3968,339570 ,1,3969,339560 ,1,3970,305210 ,1,3971,339550 ,1,3972,339525 ,1,3973,339515 ,1,3974,339505 ,1,3975,339495 ,1,3976,304940 ,1,3977,305620 ,1,3978,530 ,1,3979,540 ,1,3980,305580 ,1,3981,304900 ,1,3982,310100 ,1,3983,339475 ,1,3984,192300 ,1,3985,192310 ,1,3986,192290 ,1,3987,373870 ,1,3988,339465 ,1,3989,374195 ,1,3990,339455 ,1,3991,339445 ,1,3992,45 ,1,3993,310080 ,1,3994,339420 ,1,3995,556660 ,1,3996,221125 ,1,3997,221085 ,1,3998,45 ,1,3999,339410 ,1,4000,45 ,1,4001,339410 ,1,4002,221075 ,1,4003,221065 ,1,4004,45 ,1,4005,310080 ,1,4006,221055 ,1,4007,264420 ,1,4008,339400 ,1,4009,264370 ,1,4010,168545 ,1,4011,339390 ,1,4012,165280 ,1,4013,45 ,1,4014,9435 ,1,4015,264480 ,1,4016,264470 ,1,4017,165270 ,1,4018,264230 ,1,4019,5320 ,1,4020,339375 ,1,4021,339365 ,1,4022,339355 ,1,4023,339345 ,1,4024,339320 ,1,4025,339310 ,1,4026,10435 ,1,4027,339300 ,1,4028,339290 ,1,4029,339280 ,1,4030,339270 ,1,4031,339260 ,1,4032,339250 ,1,4033,339205 ,1,4034,339195 ,1,4035,6365 ,1,4036,339185 ,1,4037,45 ,1,4038,310080 ,1,4039,339175 ,1,4040,221045 ,1,4041,221035 ,1,4042,45 ,1,4043,310080 ,1,4044,221025 ,1,4045,264450 ,1,4046,221015 ,1,4047,339145 ,1,4048,339135 ,1,4049,339125 ,1,4050,264430 ,1,4051,45 ,1,4052,13320 ,1,4053,8655 ,1,4054,45 ,1,4055,13320 ,1,4056,264440 ,1,4057,45 ,1,4058,13320 ,1,4059,339100 ,1,4060,339090 ,1,4061,339080 ,1,4062,45 ,1,4063,310080 ,1,4064,220995 ,1,4065,220985 ,1,4066,45 ,1,4067,310080 ,1,4068,45 ,1,4069,310080 ,1,4070,264675 ,1,4071,339070 ,1,4073,2395 ,1,4074,558550 ,1,4075,45 ,1,4076,9470 ,1,4077,339055 ,1,4078,165260 ,1,4079,339045 ,1,4080,339035 ,1,4081,339025 ,1,4082,338990 ,1,4083,338980 ,1,4084,220975 ,1,4085,590440 ,1,4086,45 ,1,4087,339410 ,1,4088,311080 ,1,4089,338970 ,1,4090,338960 ,1,4091,338950 ,1,4092,561825 ,1,4094,2395 ,1,4095,45 ,1,4096,9470 ,1,4097,5710 ,1,4099,2395 ,1,4100,45 ,1,4101,9470 ,1,4103,2395 ,1,4104,45 ,1,4105,9470 ,1,4106,338940 ,1,4107,338930 ,1,4108,562210 ,1,4109,562205 ,1,4110,45 ,1,4111,9435 ,1,4112,338920 ,1,4113,218120 ,1,4114,338885 ,1,4115,338875 ,1,4116,338865 ,1,4117,338855 ,1,4118,338840 ,1,4119,338830 ,1,4120,338820 ,1,4121,570 ,1,4122,562400 ,1,4123,338810 ,1,4124,561490 ,1,4125,45 ,1,4126,9435 ,1,4127,338755 ,1,4128,45 ,1,4129,9435 ,1,4130,338745 ,1,4131,338735 ,1,4132,338725 ,1,4133,338705 ,1,4134,338695 ,1,4135,561565 ,1,4136,338685 ,1,4137,338675 ,1,4138,338655 ,1,4139,370810 ,1,4140,370790 ,1,4141,370755 ,1,4142,15970 ,1,4143,272710 ,1,4144,370800 ,1,4145,338645 ,1,4146,338635 ,1,4147,165250 ,1,4148,338625 ,1,4149,338615 ,1,4150,165240 ,1,4151,338605 ,1,4152,165230 ,1,4153,338595 ,1,4154,165220 ,1,4155,338585 ,1,4156,338535 ,1,4157,338525 ,1,4158,338515 ,1,4159,338505 ,1,4160,338490 ,1,4161,338480 ,1,4162,338470 ,1,4163,338460 ,1,4164,338425 ,1,4165,561765 ,1,4166,338415 ,1,4167,338405 ,1,4168,338395 ,1,4169,338375 ,1,4170,338365 ,1,4171,165180 ,1,4172,338355 ,1,4173,338345 ,1,4174,165170 ,1,4175,338320 ,1,4176,338310 ,1,4177,338300 ,1,4178,338290 ,1,4179,338270 ,1,4180,338260 ,1,4181,338250 ,1,4182,580 ,1,4183,556585 ,1,4184,2210 ,1,4185,542350 ,1,4186,338240 ,1,4187,561980 ,1,4188,338200 ,1,4189,338190 ,1,4190,338180 ,1,4191,338170 ,1,4192,338160 ,1,4193,338150 ,1,4194,338140 ,1,4195,338130 ,1,4196,338095 ,1,4197,338085 ,1,4198,338075 ,1,4199,338065 ,1,4200,338050 ,1,4201,338040 ,1,4202,338030 ,1,4203,338020 ,1,4204,337995 ,1,4205,337985 ,1,4206,337975 ,1,4207,337965 ,1,4208,337950 ,1,4209,337940 ,1,4210,561505 ,1,4211,2210 ,1,4212,542350 ,1,4213,241210 ,1,4214,241220 ,1,4215,241235 ,1,4216,241200 ,1,4217,337930 ,1,4218,241245 ,1,4219,181590 ,1,4220,337920 ,1,4221,337880 ,1,4222,337870 ,1,4223,400430 ,1,4224,83935 ,1,4225,220965 ,1,4226,595575 ,1,4227,45 ,1,4228,13320 ,1,4229,337860 ,1,4230,2280 ,1,4231,542160 ,1,4232,2280 ,1,4233,542160 ,1,4234,45 ,1,4235,13320 ,1,4236,2280 ,1,4237,542160 ,1,4238,45 ,1,4239,13320 ,1,4240,337850 ,1,4241,337840 ,1,4242,2210 ,1,4243,542350 ,1,4244,2210 ,1,4245,542350 ,1,4246,2210 ,1,4247,542350 ,1,4248,543050 ,1,4249,584615 ,1,4250,543050 ,1,4251,2210 ,1,4252,542350 ,1,4253,257190 ,1,4254,257260 ,1,4255,194650 ,1,4256,257200 ,1,4257,2210 ,1,4258,542350 ,1,4259,45 ,1,4260,13320 ,1,4261,220950 ,1,4262,2280 ,1,4263,542160 ,1,4264,2280 ,1,4265,542160 ,1,4266,2280 ,1,4267,542160 ,1,4268,45 ,1,4269,13320 ,1,4270,194640 ,1,4271,556580 ,1,4273,2395 ,1,4274,45 ,1,4275,9470 ,1,4276,556570 ,1,4277,556565 ,1,4278,546425 ,1,4280,2395 ,1,4281,45 ,1,4282,9470 ,1,4283,400430 ,1,4284,83340 ,1,4286,2395 ,1,4287,337830 ,1,4288,337820 ,1,4289,337810 ,1,4290,337775 ,1,4291,193530 ,1,4292,337765 ,1,4293,337755 ,1,4294,337745 ,1,4295,337735 ,1,4296,337725 ,1,4297,337715 ,1,4298,337705 ,1,4299,556560 ,1,4300,373825 ,1,4301,400430 ,1,4302,189490 ,1,4303,595570 ,1,4304,45 ,1,4305,346875 ,1,4306,337660 ,1,4307,611365 ,1,4308,45 ,1,4309,11510 ,1,4310,556555 ,1,4311,2210 ,1,4312,542350 ,1,4313,2210 ,1,4314,542350 ,1,4315,2210 ,1,4316,542350 ,1,4317,45 ,1,4318,5900 ,1,4319,2210 ,1,4320,542350 ,1,4321,400430 ,1,4322,168915 ,1,4323,337650 ,1,4324,595565 ,1,4325,45 ,1,4326,346875 ,1,4327,337640 ,1,4328,610845 ,1,4329,45 ,1,4330,11510 ,1,4331,45 ,1,4332,11510 ,1,4333,2210 ,1,4334,542350 ,1,4335,337630 ,1,4336,337620 ,1,4337,337610 ,1,4338,3525 ,1,4339,220940 ,1,4340,13070 ,1,4341,45 ,1,4342,5900 ,1,4343,337600 ,1,4344,337590 ,1,4345,9000 ,1,4346,337570 ,1,4347,337560 ,1,4348,2280 ,1,4349,542090 ,1,4350,45 ,1,4351,13320 ,1,4352,337550 ,1,4353,374185 ,1,4354,337540 ,1,4355,337520 ,1,4357,2395 ,1,4358,45 ,1,4359,9470 ,1,4360,543045 ,1,4361,595560 ,1,4362,543045 ,1,4364,2395 ,1,4365,45 ,1,4366,9470 ,1,4367,2210 ,1,4368,542350 ,1,4369,45 ,1,4370,346875 ,1,4371,45 ,1,4372,225320 ,1,4373,45 ,1,4374,5900 ,1,4375,45 ,1,4376,5900 ,1,4377,543040 ,1,4378,558275 ,1,4379,543040 ,1,4380,337510 ,1,4381,400430 ,1,4382,184170 ,1,4383,584855 ,1,4384,45 ,1,4385,225320 ,1,4386,584860 ,1,4387,45 ,1,4388,5900 ,1,4389,45 ,1,4390,5900 ,1,4391,543020 ,1,4392,584860 ,1,4393,543020 ,1,4394,551915 ,1,4395,337500 ,1,4396,45 ,1,4397,11510 ,1,4398,599900 ,1,4399,45 ,1,4400,11510 ,1,4401,556535 ,1,4402,556530 ,1,4403,45 ,1,4404,11510 ,1,4405,45 ,1,4406,11690 ,1,4408,2395 ,1,4409,585400 ,1,4410,45 ,1,4411,9470 ,1,4412,45 ,1,4413,11510 ,1,4414,45 ,1,4415,11690 ,1,4417,2395 ,1,4418,585020 ,1,4419,45 ,1,4420,9470 ,1,4421,599905 ,1,4422,45 ,1,4423,11510 ,1,4425,2395 ,1,4426,45 ,1,4427,11690 ,1,4428,45 ,1,4429,11510 ,1,4430,45 ,1,4431,11690 ,1,4432,400430 ,1,4433,61590 ,1,4434,612265 ,1,4435,557770 ,1,4436,45 ,1,4437,7585 ,1,4438,45 ,1,4439,11085 ,1,4440,45 ,1,4441,11510 ,1,4442,45 ,1,4443,11510 ,1,4444,556525 ,1,4445,556520 ,1,4446,45 ,1,4447,11510 ,1,4448,45 ,1,4449,11690 ,1,4451,2395 ,1,4452,584895 ,1,4453,45 ,1,4454,9470 ,1,4455,45 ,1,4456,11510 ,1,4458,2395 ,1,4459,45 ,1,4460,11690 ,1,4461,400430 ,1,4462,185080 ,1,4463,584975 ,1,4464,45 ,1,4465,225320 ,1,4466,584980 ,1,4467,45 ,1,4468,5900 ,1,4469,45 ,1,4470,5900 ,1,4471,543015 ,1,4472,584980 ,1,4473,543015 ,1,4474,552020 ,1,4475,45 ,1,4476,11510 ,1,4477,45 ,1,4478,11510 ,1,4479,556515 ,1,4480,556510 ,1,4481,45 ,1,4482,11690 ,1,4483,45 ,1,4484,11510 ,1,4485,45 ,1,4486,11690 ,1,4487,45 ,1,4488,11510 ,1,4489,181415 ,1,4490,45 ,1,4491,11690 ,1,4493,2395 ,1,4494,584805 ,1,4495,45 ,1,4496,9470 ,1,4497,599895 ,1,4498,45 ,1,4499,11510 ,1,4501,2395 ,1,4502,45 ,1,4503,11690 ,1,4505,2395 ,1,4506,45 ,1,4507,9470 ,1,4508,45 ,1,4509,225320 ,1,4510,45 ,1,4511,5900 ,1,4512,45 ,1,4513,5900 ,1,4514,543010 ,1,4515,558275 ,1,4516,543010 ,1,4517,45 ,1,4518,225320 ,1,4519,45 ,1,4520,5900 ,1,4521,45 ,1,4522,5900 ,1,4523,543005 ,1,4524,558275 ,1,4525,543005 ,1,4527,2395 ,1,4528,585210 ,1,4529,45 ,1,4530,9470 ,1,4531,400430 ,1,4532,171710 ,1,4533,337490 ,1,4534,45 ,1,4535,11510 ,1,4536,45 ,1,4537,11510 ,1,4538,556505 ,1,4539,556500 ,1,4540,45 ,1,4541,11510 ,1,4542,181135 ,1,4543,45 ,1,4544,11690 ,1,4545,45 ,1,4546,11510 ,1,4547,45 ,1,4548,11690 ,1,4549,400430 ,1,4550,183240 ,1,4551,584755 ,1,4552,45 ,1,4553,225320 ,1,4554,584760 ,1,4555,45 ,1,4556,5900 ,1,4557,45 ,1,4558,5900 ,1,4559,542995 ,1,4560,584760 ,1,4561,542995 ,1,4562,551800 ,1,4563,45 ,1,4564,11510 ,1,4565,45 ,1,4566,11510 ,1,4567,556475 ,1,4568,556470 ,1,4569,45 ,1,4570,11510 ,1,4571,45 ,1,4572,11690 ,1,4573,45 ,1,4574,11510 ,1,4575,181370 ,1,4576,45 ,1,4577,11690 ,1,4578,45 ,1,4579,9435 ,1,4581,2395 ,1,4582,45 ,1,4583,9470 ,1,4584,45 ,1,4585,346875 ,1,4586,45 ,1,4587,225320 ,1,4588,45 ,1,4589,5900 ,1,4590,45 ,1,4591,5900 ,1,4592,542990 ,1,4593,558275 ,1,4594,542990 ,1,4596,2395 ,1,4597,585420 ,1,4598,45 ,1,4599,9470 ,1,4600,45 ,1,4601,11510 ,1,4602,45 ,1,4603,11690 ,1,4604,45 ,1,4605,11510 ,1,4606,45 ,1,4607,11690 ,1,4608,400430 ,1,4609,184615 ,1,4610,45 ,1,4611,11510 ,1,4612,45 ,1,4613,11510 ,1,4614,556465 ,1,4615,556460 ,1,4616,45 ,1,4617,11510 ,1,4618,45 ,1,4619,11690 ,1,4620,400430 ,1,4621,185530 ,1,4622,45 ,1,4623,11510 ,1,4624,45 ,1,4625,11510 ,1,4626,556455 ,1,4627,556450 ,1,4628,45 ,1,4629,11510 ,1,4630,45 ,1,4631,11690 ,1,4632,45 ,1,4633,11510 ,1,4634,45 ,1,4635,11690 ,1,4636,45 ,1,4637,11510 ,1,4638,45 ,1,4639,11690 ,1,4640,400430 ,1,4641,183695 ,1,4642,45 ,1,4643,11510 ,1,4644,45 ,1,4645,11510 ,1,4646,556445 ,1,4647,556440 ,1,4648,45 ,1,4649,11510 ,1,4650,45 ,1,4651,11690 ,1,4652,45 ,1,4653,11690 ,1,4654,45 ,1,4655,225320 ,1,4656,45 ,1,4657,5900 ,1,4658,45 ,1,4659,5900 ,1,4660,542985 ,1,4661,558275 ,1,4662,542985 ,1,4663,45 ,1,4664,225320 ,1,4665,45 ,1,4666,5900 ,1,4667,45 ,1,4668,5900 ,1,4669,542980 ,1,4670,559095 ,1,4671,542980 ,1,4672,45 ,1,4673,11690 ,1,4674,45 ,1,4675,11510 ,1,4676,45 ,1,4677,11690 ,1,4678,45 ,1,4679,11510 ,1,4680,45 ,1,4681,11690 ,1,4682,45 ,1,4683,11510 ,1,4684,181350 ,1,4685,45 ,1,4686,11690 ,1,4687,45 ,1,4688,11510 ,1,4689,45 ,1,4690,11690 ,1,4691,45 ,1,4692,11690 ,1,4693,45 ,1,4694,9435 ,1,4696,2395 ,1,4697,45 ,1,4698,9470 ,1,4699,45 ,1,4700,11510 ,1,4701,45 ,1,4702,11690 ,1,4703,400430 ,1,4704,61400 ,1,4705,45 ,1,4706,11510 ,1,4707,45 ,1,4708,11510 ,1,4709,556410 ,1,4710,556405 ,1,4711,45 ,1,4712,11510 ,1,4713,45 ,1,4714,11690 ,1,4715,45 ,1,4716,11510 ,1,4717,45 ,1,4718,11690 ,1,4719,45 ,1,4720,225320 ,1,4721,45 ,1,4722,5900 ,1,4723,45 ,1,4724,5900 ,1,4725,542955 ,1,4726,558275 ,1,4727,542955 ,1,4728,45 ,1,4729,11510 ,1,4730,45 ,1,4731,11690 ,1,4732,45 ,1,4733,5900 ,1,4734,255885 ,1,4735,10580 ,1,4736,2135 ,1,4737,45 ,1,4738,225320 ,1,4739,45 ,1,4740,5900 ,1,4741,45 ,1,4742,5900 ,1,4743,542950 ,1,4744,558275 ,1,4745,542950 ,1,4746,45 ,1,4747,11510 ,1,4748,45 ,1,4749,11690 ,1,4750,45 ,1,4751,9435 ,1,4753,2395 ,1,4754,45 ,1,4755,9470 ,1,4756,45 ,1,4757,11510 ,1,4758,45 ,1,4759,11690 ,1,4760,45 ,1,4761,11510 ,1,4762,45 ,1,4763,11690 ,1,4764,45 ,1,4765,11510 ,1,4766,45 ,1,4767,11690 ,1,4768,45 ,1,4769,11510 ,1,4770,45 ,1,4771,11690 ,1,4772,45 ,1,4773,11510 ,1,4774,45 ,1,4775,11690 ,1,4776,45 ,1,4777,11510 ,1,4778,45 ,1,4779,11690 ,1,4780,45 ,1,4781,11510 ,1,4782,45 ,1,4783,11690 ,1,4784,45 ,1,4785,11510 ,1,4786,45 ,1,4787,11690 ,1,4788,400430 ,1,4789,182785 ,1,4790,45 ,1,4791,11510 ,1,4792,45 ,1,4793,11510 ,1,4794,556400 ,1,4795,556395 ,1,4796,45 ,1,4797,11510 ,1,4798,45 ,1,4799,11690 ,1,4800,177380 ,1,4801,556390 ,1,4802,400430 ,1,4803,91400 ,1,4804,608965 ,1,4805,45 ,1,4806,276975 ,1,4807,337440 ,1,4808,400430 ,1,4809,90135 ,1,4810,565490 ,1,4811,45 ,1,4812,276975 ,1,4813,337430 ,1,4814,595520 ,1,4815,45 ,1,4816,337420 ,1,4817,612390 ,1,4818,612415 ,1,4819,542945 ,1,4820,595515 ,1,4821,542945 ,1,4822,542940 ,1,4823,595510 ,1,4824,542940 ,1,4825,337390 ,1,4826,337380 ,1,4827,337370 ,1,4828,45 ,1,4829,177250 ,1,4830,556385 ,1,4831,612455 ,1,4832,400430 ,1,4833,88965 ,1,4834,565560 ,1,4835,45 ,1,4836,337360 ,1,4837,45 ,1,4838,13320 ,1,4839,10825 ,1,4840,542930 ,1,4841,565620 ,1,4842,542930 ,1,4843,209730 ,1,4844,220870 ,1,4845,201705 ,1,4846,220860 ,1,4847,542925 ,1,4848,595515 ,1,4849,542925 ,1,4850,556380 ,1,4851,165160 ,1,4852,177470 ,1,4853,45 ,1,4854,13320 ,1,4855,608740 ,1,4856,45 ,1,4857,11510 ,1,4858,45 ,1,4859,11510 ,1,4860,201375 ,1,4861,608850 ,1,4862,45 ,1,4863,195155 ,1,4864,45 ,1,4865,195155 ,1,4866,565555 ,1,4867,45 ,1,4868,167555 ,1,4869,561150 ,1,4870,45 ,1,4871,13320 ,1,4872,337330 ,1,4873,337320 ,1,4874,176845 ,1,4875,220850 ,1,4876,2280 ,1,4877,542230 ,1,4878,560665 ,1,4879,45 ,1,4880,13320 ,1,4881,337310 ,1,4882,165150 ,1,4883,347180 ,1,4884,337295 ,1,4885,165135 ,1,4886,176730 ,1,4887,612405 ,1,4888,373890 ,1,4889,256190 ,1,4890,337285 ,1,4891,45 ,1,4892,310080 ,1,4893,10540 ,1,4894,373980 ,1,4895,373970 ,1,4896,373960 ,1,4897,373950 ,1,4898,373940 ,1,4899,373900 ,1,4900,374085 ,1,4901,374075 ,1,4902,374055 ,1,4903,374065 ,1,4904,374000 ,1,4905,374010 ,1,4906,373990 ,1,4907,545755 ,1,4908,560515 ,1,4909,45 ,1,4910,347195 ,1,4911,560480 ,1,4912,45 ,1,4913,198270 ,1,4914,45 ,1,4915,347180 ,1,4916,45 ,1,4917,177250 ,1,4918,220840 ,1,4920,2395 ,1,4921,45 ,1,4922,347195 ,1,4923,45 ,1,4924,198270 ,1,4925,45 ,1,4926,347180 ,1,4927,560765 ,1,4928,45 ,1,4929,176730 ,1,4930,560945 ,1,4931,45 ,1,4932,176720 ,1,4933,45 ,1,4934,347195 ,1,4935,45 ,1,4936,198270 ,1,4937,45 ,1,4938,347180 ,1,4939,45 ,1,4940,310080 ,1,4941,45 ,1,4942,347195 ,1,4943,45 ,1,4944,198270 ,1,4945,45 ,1,4946,347180 ,1,4947,560655 ,1,4948,45 ,1,4949,210905 ,1,4950,45 ,1,4951,5080 ,1,4952,556375 ,1,4953,177515 ,1,4954,2280 ,1,4955,542230 ,1,4956,45 ,1,4957,13320 ,1,4958,45 ,1,4959,347195 ,1,4960,45 ,1,4961,198270 ,1,4962,45 ,1,4963,347180 ,1,4964,45 ,1,4965,210905 ,1,4966,45 ,1,4967,5080 ,1,4968,45 ,1,4969,347195 ,1,4970,45 ,1,4971,198270 ,1,4972,45 ,1,4973,347180 ,1,4974,45 ,1,4975,2820 ,1,4976,45 ,1,4977,347195 ,1,4978,45 ,1,4979,198270 ,1,4980,45 ,1,4981,347180 ,1,4982,558085 ,1,4983,45 ,1,4984,177250 ,1,4985,45 ,1,4986,347195 ,1,4987,45 ,1,4988,198270 ,1,4989,45 ,1,4990,347180 ,1,4991,561230 ,1,4992,45 ,1,4993,2820 ,1,4994,45 ,1,4995,347195 ,1,4996,45 ,1,4997,198270 ,1,4998,45 ,1,4999,347180 ,1,5000,561085 ,1,5001,45 ,1,5002,2820 ,1,5003,45 ,1,5004,347195 ,1,5005,45 ,1,5006,198270 ,1,5007,45 ,1,5008,347180 ,1,5009,561235 ,1,5010,45 ,1,5011,2820 ,1,5012,45 ,1,5013,347195 ,1,5014,45 ,1,5015,198270 ,1,5016,45 ,1,5017,347180 ,1,5018,561225 ,1,5019,45 ,1,5020,2820 ,1,5021,608150 ,1,5022,45 ,1,5023,337180 ,1,5024,608145 ,1,5025,45 ,1,5026,337170 ,1,5027,45 ,1,5028,347195 ,1,5029,45 ,1,5030,198270 ,1,5031,45 ,1,5032,347180 ,1,5033,561090 ,1,5034,45 ,1,5035,2820 ,1,5036,608050 ,1,5037,45 ,1,5038,340435 ,1,5039,45 ,1,5040,347195 ,1,5041,45 ,1,5042,198270 ,1,5043,45 ,1,5044,347180 ,1,5045,561060 ,1,5046,45 ,1,5047,2820 ,1,5048,220830 ,1,5049,607625 ,1,5050,45 ,1,5051,5900 ,1,5052,607620 ,1,5053,45 ,1,5054,5900 ,1,5055,177325 ,1,5056,220820 ,1,5057,220810 ,1,5058,556340 ,1,5059,220800 ,1,5060,220770 ,1,5061,608420 ,1,5062,45 ,1,5063,4315 ,1,5064,556335 ,1,5065,170 ,1,5066,160 ,1,5067,337160 ,1,5068,542920 ,1,5069,596675 ,1,5070,542920 ,1,5071,544995 ,1,5072,2135 ,1,5073,2135 ,1,5074,45 ,1,5075,11510 ,1,5076,607235 ,1,5077,45 ,1,5078,13320 ,1,5079,607265 ,1,5080,45 ,1,5081,175900 ,1,5082,45 ,1,5083,11510 ,1,5084,45 ,1,5085,13320 ,1,5086,45 ,1,5087,13320 ,1,5088,2135 ,1,5089,45 ,1,5090,13320 ,1,5091,45 ,1,5092,13320 ,1,5093,400430 ,1,5094,78955 ,1,5095,45 ,1,5096,190350 ,1,5097,400430 ,1,5098,65765 ,1,5099,45 ,1,5100,11510 ,1,5101,45 ,1,5102,5900 ,1,5103,45 ,1,5104,5900 ,1,5105,400430 ,1,5106,97420 ,1,5107,45 ,1,5108,5900 ,1,5109,45 ,1,5110,5900 ,1,5111,45 ,1,5112,5900 ,1,5113,2135 ,1,5114,45 ,1,5115,11510 ,1,5116,45 ,1,5117,11510 ,1,5118,45 ,1,5119,5900 ,1,5120,45 ,1,5121,5900 ,1,5122,45 ,1,5123,5900 ,1,5124,2135 ,1,5125,337150 ,1,5126,220760 ,1,5127,556330 ,1,5128,2135 ,1,5129,45 ,1,5130,11510 ,1,5131,560570 ,1,5132,45 ,1,5133,11510 ,1,5134,607695 ,1,5135,45 ,1,5136,175900 ,1,5137,607690 ,1,5138,45 ,1,5139,11510 ,1,5140,2135 ,1,5141,607630 ,1,5142,45 ,1,5143,11510 ,1,5144,45 ,1,5145,11510 ,1,5146,45 ,1,5147,11510 ,1,5148,45 ,1,5149,11510 ,1,5150,2135 ,1,5151,2135 ,1,5152,2280 ,1,5153,542265 ,1,5154,45 ,1,5155,13320 ,1,5156,2280 ,1,5157,542265 ,1,5158,45 ,1,5159,13320 ,1,5160,45 ,1,5161,13320 ,1,5162,45 ,1,5163,13320 ,1,5164,607575 ,1,5165,45 ,1,5166,5900 ,1,5167,2210 ,1,5168,542345 ,1,5169,2210 ,1,5170,542350 ,1,5171,45 ,1,5172,175900 ,1,5173,607565 ,1,5174,45 ,1,5175,11510 ,1,5176,45 ,1,5177,11510 ,1,5178,2210 ,1,5179,542345 ,1,5180,2210 ,1,5181,542350 ,1,5182,45 ,1,5183,5900 ,1,5184,2210 ,1,5185,542345 ,1,5186,2210 ,1,5187,542350 ,1,5188,45 ,1,5189,5900 ,1,5190,2210 ,1,5191,542345 ,1,5192,2210 ,1,5193,542350 ,1,5194,2210 ,1,5195,542350 ,1,5196,400430 ,1,5197,204445 ,1,5198,2280 ,1,5199,542265 ,1,5200,45 ,1,5201,13320 ,1,5202,2280 ,1,5203,542165 ,1,5204,45 ,1,5205,13320 ,1,5206,2135 ,1,5207,45 ,1,5208,11510 ,1,5209,2280 ,1,5210,542265 ,1,5211,45 ,1,5212,13320 ,1,5213,2280 ,1,5214,542165 ,1,5215,45 ,1,5216,13320 ,1,5217,2135 ,1,5218,45 ,1,5219,5900 ,1,5220,45 ,1,5221,11510 ,1,5222,607615 ,1,5223,45 ,1,5224,175900 ,1,5225,607590 ,1,5226,45 ,1,5227,11510 ,1,5228,45 ,1,5229,11510 ,1,5230,556325 ,1,5232,2395 ,1,5233,45 ,1,5234,9470 ,1,5235,45 ,1,5236,13320 ,1,5238,2395 ,1,5239,45 ,1,5240,13320 ,1,5242,2395 ,1,5243,337130 ,1,5244,400430 ,1,5245,180955 ,1,5246,584575 ,1,5247,45 ,1,5248,337120 ,1,5249,45 ,1,5250,13320 ,1,5251,2210 ,1,5252,542350 ,1,5253,45 ,1,5254,13320 ,1,5256,2395 ,1,5258,2395 ,1,5259,45 ,1,5260,11690 ,1,5262,2395 ,1,5263,611355 ,1,5264,45 ,1,5265,9470 ,1,5266,337110 ,1,5267,337100 ,1,5269,2395 ,1,5270,45 ,1,5271,9470 ,1,5272,10835 ,1,5273,337080 ,1,5274,337070 ,1,5275,337060 ,1,5276,337050 ,1,5277,336990 ,1,5278,336980 ,1,5279,165125 ,1,5280,165115 ,1,5281,312855 ,1,5283,2395 ,1,5284,45 ,1,5285,9470 ,1,5287,2395 ,1,5288,45 ,1,5289,9470 ,1,5290,207505 ,1,5291,170085 ,1,5292,2210 ,1,5293,542350 ,1,5294,2210 ,1,5295,542350 ,1,5296,45 ,1,5297,8740 ,1,5298,543970 ,1,5300,2395 ,1,5301,45 ,1,5302,9470 ,1,5303,45 ,1,5304,9435 ,1,5305,45 ,1,5306,11690 ,1,5308,2395 ,1,5309,45 ,1,5310,9470 ,1,5312,2395 ,1,5313,45 ,1,5314,9470 ,1,5315,334405 ,1,5316,334395 ,1,5317,334385 ,1,5318,10935 ,1,5320,2395 ,1,5322,2395 ,1,5324,2395 ,1,5325,334345 ,1,5326,334335 ,1,5327,173815 ,1,5328,334325 ,1,5329,334315 ,1,5330,9180 ,1,5331,45 ,1,5332,13320 ,1,5333,334305 ,1,5334,334295 ,1,5335,334285 ,1,5336,334275 ,1,5337,334235 ,1,5339,2395 ,1,5340,45 ,1,5341,9470 ,1,5343,2395 ,1,5344,45 ,1,5345,9470 ,1,5347,2395 ,1,5348,45 ,1,5349,9470 ,1,5350,334225 ,1,5351,610715 ,1,5352,45 ,1,5353,175900 ,1,5354,610710 ,1,5355,45 ,1,5356,11510 ,1,5357,334215 ,1,5358,45 ,1,5359,13320 ,1,5360,45 ,1,5361,13320 ,1,5363,2395 ,1,5364,599855 ,1,5365,45 ,1,5366,9470 ,1,5367,45 ,1,5368,11510 ,1,5369,45 ,1,5370,11690 ,1,5372,2395 ,1,5373,45 ,1,5374,9470 ,1,5375,45 ,1,5376,9170 ,1,5377,334205 ,1,5379,2395 ,1,5380,45 ,1,5381,9470 ,1,5382,334195 ,1,5383,334185 ,1,5384,264730 ,1,5385,2135 ,1,5386,45 ,1,5387,13320 ,1,5388,2135 ,1,5389,334175 ,1,5391,2395 ,1,5392,45 ,1,5393,9470 ,1,5395,2395 ,1,5396,45 ,1,5397,9470 ,1,5399,2395 ,1,5400,45 ,1,5401,9470 ,1,5402,45 ,1,5403,9435 ,1,5405,2395 ,1,5406,45 ,1,5407,9470 ,1,5409,2395 ,1,5410,45 ,1,5411,9470 ,1,5413,2395 ,1,5414,45 ,1,5415,9470 ,1,5416,334165 ,1,5417,334140 ,1,5419,2395 ,1,5420,45 ,1,5421,9470 ,1,5423,2395 ,1,5424,45 ,1,5425,9470 ,1,5427,2395 ,1,5428,45 ,1,5429,9470 ,1,5431,2395 ,1,5432,45 ,1,5433,9470 ,1,5435,2395 ,1,5436,45 ,1,5437,9470 ,1,5438,312845 ,1,5440,2395 ,1,5441,45 ,1,5442,9470 ,1,5443,45 ,1,5444,9435 ,1,5445,543920 ,1,5446,334130 ,1,5447,334120 ,1,5448,334110 ,1,5449,334100 ,1,5450,334090 ,1,5451,2280 ,1,5452,542180 ,1,5453,2135 ,1,5454,2280 ,1,5455,542170 ,1,5456,612085 ,1,5457,45 ,1,5458,13320 ,1,5459,2280 ,1,5460,542180 ,1,5461,334080 ,1,5462,334070 ,1,5463,334025 ,1,5464,334015 ,1,5465,334005 ,1,5466,333995 ,1,5467,168065 ,1,5468,333985 ,1,5469,45 ,1,5470,13320 ,1,5472,2395 ,1,5473,45 ,1,5474,9470 ,1,5476,2395 ,1,5477,45 ,1,5478,9470 ,1,5479,400430 ,1,5480,57805 ,1,5481,45 ,1,5482,11510 ,1,5483,45 ,1,5484,11510 ,1,5485,45 ,1,5486,11690 ,1,5488,2395 ,1,5489,45 ,1,5490,9470 ,1,5492,2395 ,1,5493,45 ,1,5494,9470 ,1,5495,333975 ,1,5496,2210 ,1,5497,542350 ,1,5498,2210 ,1,5499,542350 ,1,5500,2210 ,1,5501,542350 ,1,5502,2210 ,1,5503,542350 ,1,5504,333965 ,1,5505,333955 ,1,5506,333920 ,1,5507,333910 ,1,5508,14280 ,1,5509,45 ,1,5510,9435 ,1,5511,45 ,1,5512,9435 ,1,5513,256640 ,1,5514,168840 ,1,5515,256620 ,1,5516,333900 ,1,5517,220750 ,1,5518,333890 ,1,5519,165105 ,1,5520,200415 ,1,5521,333850 ,1,5522,333840 ,1,5523,333800 ,1,5524,333790 ,1,5525,333780 ,1,5526,333770 ,1,5527,333760 ,1,5528,333750 ,1,5529,333740 ,1,5530,333730 ,1,5531,333680 ,1,5532,333670 ,1,5533,333660 ,1,5534,333650 ,1,5535,333635 ,1,5536,333625 ,1,5537,333615 ,1,5538,333605 ,1,5539,333585 ,1,5540,333575 ,1,5541,333565 ,1,5542,333555 ,1,5543,333535 ,1,5544,6630 ,1,5545,333525 ,1,5546,333515 ,1,5547,333505 ,1,5548,333475 ,1,5549,333465 ,1,5550,333455 ,1,5551,333445 ,1,5552,582335 ,1,5553,45 ,1,5554,175900 ,1,5555,590020 ,1,5556,45 ,1,5557,5900 ,1,5558,309250 ,1,5559,333435 ,1,5560,333425 ,1,5561,333415 ,1,5562,6375 ,1,5563,333405 ,1,5564,333365 ,1,5565,7430 ,1,5566,10895 ,1,5568,2395 ,1,5569,558420 ,1,5570,45 ,1,5571,9470 ,1,5572,45 ,1,5573,13320 ,1,5574,45 ,1,5575,13320 ,1,5576,45 ,1,5577,13320 ,1,5578,45 ,1,5579,13320 ,1,5580,2210 ,1,5581,542305 ,1,5582,2210 ,1,5583,542305 ,1,5584,45 ,1,5585,13320 ,1,5586,2210 ,1,5587,542350 ,1,5588,45 ,1,5589,13320 ,1,5590,2210 ,1,5591,542305 ,1,5592,2210 ,1,5593,542350 ,1,5595,2395 ,1,5596,590200 ,1,5597,45 ,1,5598,9470 ,1,5599,45 ,1,5600,333355 ,1,5601,333345 ,1,5603,2395 ,1,5604,45 ,1,5605,9470 ,1,5606,220740 ,1,5607,311025 ,1,5608,612470 ,1,5609,220710 ,1,5610,171640 ,1,5611,220700 ,1,5612,590290 ,1,5613,45 ,1,5614,333335 ,1,5615,310020 ,1,5616,169910 ,1,5617,45 ,1,5618,333335 ,1,5619,543865 ,1,5620,608290 ,1,5621,6880 ,1,5622,45 ,1,5623,7585 ,1,5624,45 ,1,5625,11085 ,1,5626,45 ,1,5627,5900 ,1,5628,2210 ,1,5629,542350 ,1,5630,220690 ,1,5631,165080 ,1,5632,45 ,1,5633,4315 ,1,5634,220680 ,1,5635,220635 ,1,5636,191935 ,1,5637,2210 ,1,5638,542350 ,1,5639,45 ,1,5640,333335 ,1,5641,189055 ,1,5642,264710 ,1,5643,333320 ,1,5644,45 ,1,5645,333335 ,1,5646,310040 ,1,5647,333310 ,1,5648,333300 ,1,5649,305525 ,1,5650,225320 ,1,5651,304845 ,1,5652,171705 ,1,5653,171715 ,1,5654,305010 ,1,5655,333290 ,1,5656,333255 ,1,5657,333245 ,1,5658,305450 ,1,5659,220625 ,1,5660,304950 ,1,5661,171725 ,1,5662,45 ,1,5663,4315 ,1,5664,45 ,1,5665,346875 ,1,5666,542915 ,1,5667,584615 ,1,5668,542915 ,1,5669,542895 ,1,5670,595380 ,1,5671,542895 ,1,5672,542890 ,1,5673,584615 ,1,5674,542890 ,1,5675,558960 ,1,5676,45 ,1,5677,346875 ,1,5678,542885 ,1,5679,558930 ,1,5680,542885 ,1,5681,168690 ,1,5682,220615 ,1,5683,220605 ,1,5684,45 ,1,5685,339410 ,1,5686,220590 ,1,5687,45 ,1,5688,333335 ,1,5689,45 ,1,5690,339410 ,1,5691,220580 ,1,5692,45 ,1,5693,333335 ,1,5694,333235 ,1,5695,220570 ,1,5696,45 ,1,5697,13060 ,1,5698,333225 ,1,5699,333190 ,1,5700,333180 ,1,5701,220560 ,1,5702,45 ,1,5703,13060 ,1,5704,45 ,1,5705,343730 ,1,5706,355020 ,1,5707,165070 ,1,5708,266765 ,1,5709,333170 ,1,5710,2210 ,1,5711,542350 ,1,5712,220530 ,1,5713,220520 ,1,5714,166965 ,1,5715,165060 ,1,5716,573500 ,1,5717,45 ,1,5718,5900 ,1,5719,580980 ,1,5720,45 ,1,5721,216580 ,1,5722,166945 ,1,5723,595350 ,1,5724,45 ,1,5725,166945 ,1,5726,2210 ,1,5727,542350 ,1,5728,216455 ,1,5729,355030 ,1,5730,216525 ,1,5731,45 ,1,5732,5900 ,1,5733,165050 ,1,5734,45 ,1,5735,5900 ,1,5736,45 ,1,5737,5900 ,1,5738,234530 ,1,5739,2135 ,1,5740,234540 ,1,5741,220500 ,1,5742,220490 ,1,5743,220480 ,1,5744,45 ,1,5745,9375 ,1,5746,45 ,1,5747,11510 ,1,5748,162415 ,1,5749,171625 ,1,5750,266740 ,1,5751,173390 ,1,5752,556320 ,1,5753,542880 ,1,5754,609530 ,1,5755,542880 ,1,5756,333160 ,1,5757,2210 ,1,5758,542350 ,1,5759,333115 ,1,5760,2210 ,1,5761,542350 ,1,5762,333105 ,1,5763,333095 ,1,5764,45 ,1,5765,5900 ,1,5766,400430 ,1,5767,61025 ,1,5768,45 ,1,5769,11510 ,1,5770,45 ,1,5771,11690 ,1,5772,333085 ,1,5773,212040 ,1,5774,212085 ,1,5775,95705 ,1,5776,566755 ,1,5777,45 ,1,5778,209800 ,1,5779,210165 ,1,5780,45 ,1,5781,209800 ,1,5782,206475 ,1,5783,400430 ,1,5784,100400 ,1,5785,198280 ,1,5786,369975 ,1,5787,210915 ,1,5788,210905 ,1,5789,45 ,1,5790,210915 ,1,5791,561500 ,1,5792,45 ,1,5793,183245 ,1,5794,45 ,1,5795,210905 ,1,5796,564435 ,1,5797,45 ,1,5798,198280 ,1,5799,165035 ,1,5800,45 ,1,5801,5900 ,1,5802,45 ,1,5803,5900 ,1,5804,45 ,1,5805,5900 ,1,5806,333075 ,1,5807,333065 ,1,5808,333055 ,1,5809,333045 ,1,5810,333020 ,1,5811,566850 ,1,5812,45 ,1,5813,5900 ,1,5814,333010 ,1,5815,333000 ,1,5816,262960 ,1,5817,183300 ,1,5818,262985 ,1,5819,185345 ,1,5820,180615 ,1,5821,332990 ,1,5822,332975 ,1,5823,183765 ,1,5825,2395 ,1,5826,45 ,1,5827,9470 ,1,5828,14270 ,1,5829,15645 ,1,5830,357565 ,1,5831,373000 ,1,5832,212810 ,1,5833,373555 ,1,5834,15120 ,1,5835,212320 ,1,5836,332965 ,1,5837,332955 ,1,5838,567850 ,1,5839,45 ,1,5840,5900 ,1,5841,332945 ,1,5842,332925 ,1,5843,332915 ,1,5844,220470 ,1,5845,11815 ,1,5846,2845 ,1,5847,332895 ,1,5848,2210 ,1,5849,542350 ,1,5850,2210 ,1,5851,542350 ,1,5852,45 ,1,5853,180550 ,1,5854,45 ,1,5855,180560 ,1,5856,45 ,1,5857,332880 ,1,5858,595315 ,1,5859,45 ,1,5860,190350 ,1,5861,567945 ,1,5862,45 ,1,5863,5900 ,1,5864,180655 ,1,5865,212765 ,1,5866,45 ,1,5867,4610 ,1,5868,400430 ,1,5869,94790 ,1,5870,566605 ,1,5871,45 ,1,5872,340435 ,1,5873,45 ,1,5874,340435 ,1,5875,332870 ,1,5876,45 ,1,5877,8740 ,1,5878,45 ,1,5879,9435 ,1,5880,45 ,1,5881,340435 ,1,5882,45 ,1,5883,190350 ,1,5884,400430 ,1,5885,117685 ,1,5886,45 ,1,5887,309980 ,1,5888,332860 ,1,5889,220460 ,1,5890,332850 ,1,5891,332800 ,1,5892,332790 ,1,5893,45 ,1,5894,309980 ,1,5895,332780 ,1,5896,45 ,1,5897,309980 ,1,5898,45 ,1,5899,309980 ,1,5900,359350 ,1,5901,332770 ,1,5902,45 ,1,5903,343730 ,1,5904,332750 ,1,5905,220435 ,1,5906,220415 ,1,5907,220405 ,1,5908,220390 ,1,5909,45 ,1,5910,9375 ,1,5911,45 ,1,5912,11510 ,1,5913,220360 ,1,5914,220325 ,1,5915,45 ,1,5916,9375 ,1,5917,45 ,1,5918,11510 ,1,5919,569070 ,1,5920,45 ,1,5921,341055 ,1,5922,45 ,1,5923,5900 ,1,5924,267385 ,1,5925,332740 ,1,5926,332730 ,1,5927,244840 ,1,5928,332720 ,1,5929,332690 ,1,5930,332680 ,1,5931,332670 ,1,5932,2210 ,1,5933,542350 ,1,5934,332660 ,1,5935,332645 ,1,5936,332635 ,1,5937,332625 ,1,5938,332615 ,1,5939,332595 ,1,5940,332585 ,1,5941,332575 ,1,5942,332565 ,1,5943,332545 ,1,5944,332535 ,1,5945,332525 ,1,5946,332515 ,1,5947,332485 ,1,5948,332475 ,1,5949,332465 ,1,5950,332455 ,1,5951,332440 ,1,5952,332430 ,1,5953,332420 ,1,5954,332410 ,1,5955,332360 ,1,5956,332350 ,1,5957,374850 ,1,5958,161090 ,1,5959,612080 ,1,5960,45 ,1,5961,13320 ,1,5962,2210 ,1,5963,542350 ,1,5964,400430 ,1,5965,78310 ,1,5966,45 ,1,5967,177250 ,1,5968,400430 ,1,5969,69795 ,1,5970,45 ,1,5971,177250 ,1,5972,45 ,1,5973,276975 ,1,5974,89645 ,1,5975,89595 ,1,5976,89725 ,1,5977,165025 ,1,5978,595260 ,1,5979,45 ,1,5980,332340 ,1,5981,45 ,1,5982,177250 ,1,5983,45 ,1,5984,332340 ,1,5985,608875 ,1,5986,45 ,1,5987,195155 ,1,5988,608900 ,1,5989,45 ,1,5990,332330 ,1,5991,595255 ,1,5992,45 ,1,5993,332340 ,1,5994,608880 ,1,5995,45 ,1,5996,195155 ,1,5997,400430 ,1,5998,70725 ,1,5999,45 ,1,6000,177250 ,1,6001,400430 ,1,6002,90785 ,1,6003,45 ,1,6004,13320 ,1,6005,400430 ,1,6006,91020 ,1,6007,45 ,1,6008,177250 ,1,6009,400430 ,1,6010,90755 ,1,6011,45 ,1,6012,337360 ,1,6013,45 ,1,6014,13320 ,1,6015,201560 ,1,6016,45 ,1,6017,337360 ,1,6018,45 ,1,6019,13320 ,1,6020,195515 ,1,6021,45 ,1,6022,13320 ,1,6023,332310 ,1,6024,220315 ,1,6025,565660 ,1,6026,45 ,1,6027,13320 ,1,6028,45 ,1,6029,13320 ,1,6030,45 ,1,6031,13320 ,1,6032,595250 ,1,6033,45 ,1,6034,224025 ,1,6035,220305 ,1,6036,607840 ,1,6037,45 ,1,6038,340435 ,1,6039,556310 ,1,6040,45 ,1,6041,224025 ,1,6042,400430 ,1,6043,89415 ,1,6044,400430 ,1,6045,89330 ,1,6046,400430 ,1,6047,90005 ,1,6048,45 ,1,6049,177250 ,1,6050,400430 ,1,6051,89310 ,1,6052,89390 ,1,6053,89515 ,1,6054,89495 ,1,6055,90365 ,1,6056,165015 ,1,6057,165005 ,1,6058,220295 ,1,6059,220280 ,1,6060,607985 ,1,6061,45 ,1,6062,340435 ,1,6063,220270 ,1,6064,556305 ,1,6065,556270 ,1,6066,595245 ,1,6067,45 ,1,6068,224025 ,1,6069,220260 ,1,6070,611615 ,1,6071,45 ,1,6072,175900 ,1,6073,611620 ,1,6074,45 ,1,6075,4315 ,1,6076,556265 ,1,6077,45 ,1,6078,11510 ,1,6079,45 ,1,6080,11510 ,1,6081,611765 ,1,6082,45 ,1,6083,5900 ,1,6084,332300 ,1,6085,607160 ,1,6086,45 ,1,6087,175900 ,1,6088,607155 ,1,6089,45 ,1,6090,11510 ,1,6091,220250 ,1,6092,611675 ,1,6093,45 ,1,6094,4315 ,1,6095,611670 ,1,6096,45 ,1,6097,11510 ,1,6098,556260 ,1,6099,45 ,1,6100,337120 ,1,6101,612065 ,1,6102,45 ,1,6103,13320 ,1,6105,2395 ,1,6106,45 ,1,6107,9470 ,1,6109,2395 ,1,6110,45 ,1,6111,9470 ,1,6112,2210 ,1,6113,542350 ,1,6114,45 ,1,6115,13320 ,1,6116,332290 ,1,6117,332280 ,1,6118,332250 ,1,6119,332240 ,1,6120,332230 ,1,6121,332220 ,1,6122,332210 ,1,6123,332200 ,1,6124,45 ,1,6125,343730 ,1,6126,45 ,1,6127,4765 ,1,6128,542875 ,1,6129,587755 ,1,6130,542875 ,1,6131,164970 ,1,6132,186015 ,1,6133,186005 ,1,6135,2395 ,1,6136,45 ,1,6137,5900 ,1,6138,45 ,1,6139,5900 ,1,6140,332190 ,1,6141,400430 ,1,6142,101845 ,1,6143,567855 ,1,6144,45 ,1,6145,9435 ,1,6146,567865 ,1,6147,45 ,1,6148,9435 ,1,6149,45 ,1,6150,9435 ,1,6151,400430 ,1,6152,101715 ,1,6153,45 ,1,6154,9435 ,1,6155,332180 ,1,6156,332145 ,1,6157,332135 ,1,6158,332125 ,1,6159,332115 ,1,6160,332105 ,1,6161,332095 ,1,6162,45 ,1,6163,9435 ,1,6164,212340 ,1,6165,198860 ,1,6166,198765 ,1,6167,45 ,1,6168,5900 ,1,6169,182390 ,1,6170,373170 ,1,6171,372390 ,1,6172,372780 ,1,6173,372650 ,1,6174,372820 ,1,6175,372410 ,1,6176,372715 ,1,6177,164960 ,1,6178,358985 ,1,6179,358935 ,1,6180,164950 ,1,6181,374895 ,1,6182,164940 ,1,6183,310305 ,1,6184,359115 ,1,6185,164930 ,1,6186,245840 ,1,6187,245830 ,1,6188,245395 ,1,6189,245425 ,1,6190,245280 ,1,6191,245300 ,1,6192,221200 ,1,6193,245150 ,1,6194,245775 ,1,6195,245270 ,1,6196,245090 ,1,6197,245170 ,1,6198,222470 ,1,6199,245100 ,1,6200,245605 ,1,6201,245625 ,1,6202,245820 ,1,6203,245765 ,1,6204,245355 ,1,6205,245320 ,1,6206,245260 ,1,6207,245200 ,1,6208,245540 ,1,6209,245520 ,1,6210,245250 ,1,6211,245635 ,1,6212,245755 ,1,6213,245110 ,1,6214,245485 ,1,6215,245080 ,1,6216,245230 ,1,6217,245745 ,1,6218,245715 ,1,6219,245495 ,1,6220,245725 ,1,6221,222460 ,1,6222,245510 ,1,6223,245415 ,1,6224,245310 ,1,6225,245220 ,1,6226,245290 ,1,6227,243905 ,1,6228,245160 ,1,6229,244325 ,1,6230,245875 ,1,6231,245855 ,1,6232,245865 ,1,6233,245405 ,1,6234,245465 ,1,6235,245810 ,1,6236,245595 ,1,6237,245655 ,1,6238,245385 ,1,6239,245180 ,1,6240,245705 ,1,6241,245695 ,1,6242,245375 ,1,6243,245585 ,1,6244,245530 ,1,6245,222420 ,1,6246,245615 ,1,6247,245475 ,1,6248,245365 ,1,6249,245210 ,1,6250,245645 ,1,6251,245885 ,1,6252,164920 ,1,6253,358890 ,1,6254,369395 ,1,6255,358200 ,1,6256,369300 ,1,6257,244085 ,1,6258,244115 ,1,6259,244105 ,1,6260,244095 ,1,6261,222410 ,1,6262,244175 ,1,6263,244145 ,1,6264,244135 ,1,6265,244125 ,1,6266,246235 ,1,6267,373270 ,1,6268,373255 ,1,6269,373245 ,1,6270,369600 ,1,6271,369620 ,1,6272,221040 ,1,6273,15960 ,1,6274,15950 ,1,6275,358945 ,1,6276,369095 ,1,6277,372705 ,1,6278,372830 ,1,6279,372305 ,1,6280,373075 ,1,6281,372840 ,1,6282,369085 ,1,6283,372295 ,1,6284,369610 ,1,6285,369280 ,1,6286,369260 ,1,6287,369075 ,1,6288,369460 ,1,6289,369520 ,1,6290,369500 ,1,6291,369450 ,1,6292,369405 ,1,6293,369310 ,1,6294,369270 ,1,6295,369480 ,1,6296,369290 ,1,6297,369510 ,1,6298,369415 ,1,6299,369470 ,1,6300,369490 ,1,6301,179425 ,1,6302,212310 ,1,6303,164910 ,1,6304,357420 ,1,6305,357440 ,1,6306,358775 ,1,6307,185785 ,1,6308,221230 ,1,6309,243895 ,1,6310,243835 ,1,6311,243875 ,1,6312,243825 ,1,6313,243885 ,1,6314,369190 ,1,6315,369105 ,1,6316,369210 ,1,6317,369200 ,1,6318,369180 ,1,6319,369150 ,1,6320,369250 ,1,6321,369170 ,1,6322,369240 ,1,6323,369140 ,1,6324,369160 ,1,6325,611455 ,1,6326,45 ,1,6327,11690 ,1,6328,179565 ,1,6329,45 ,1,6330,5900 ,1,6331,542870 ,1,6332,609530 ,1,6333,542870 ,1,6334,2210 ,1,6335,542350 ,1,6336,332030 ,1,6337,45 ,1,6338,346875 ,1,6339,45 ,1,6340,11510 ,1,6341,2210 ,1,6342,542350 ,1,6343,332020 ,1,6344,45 ,1,6345,346875 ,1,6346,45 ,1,6347,343730 ,1,6348,45 ,1,6349,4765 ,1,6350,332010 ,1,6351,45 ,1,6352,11510 ,1,6353,45 ,1,6354,4765 ,1,6355,45 ,1,6356,11510 ,1,6357,45 ,1,6358,4765 ,1,6359,45 ,1,6360,11510 ,1,6361,45 ,1,6362,4765 ,1,6363,45 ,1,6364,11510 ,1,6365,45 ,1,6366,4765 ,1,6367,45 ,1,6368,11510 ,1,6369,45 ,1,6370,4765 ,1,6371,45 ,1,6372,11510 ,1,6373,45 ,1,6374,4765 ,1,6375,45 ,1,6376,11510 ,1,6377,45 ,1,6378,4765 ,1,6379,45 ,1,6380,11510 ,1,6381,45 ,1,6382,4765 ,1,6383,45 ,1,6384,11510 ,1,6385,45 ,1,6386,4765 ,1,6387,45 ,1,6388,11510 ,1,6389,400430 ,1,6390,89850 ,1,6391,400430 ,1,6392,89800 ,1,6393,400430 ,1,6394,89615 ,1,6395,45 ,1,6396,177250 ,1,6397,400430 ,1,6398,89695 ,1,6399,2210 ,1,6400,542350 ,1,6401,2210 ,1,6402,542350 ,1,6404,2395 ,1,6405,45 ,1,6406,9470 ,1,6407,45 ,1,6408,343730 ,1,6409,45 ,1,6410,11510 ,1,6411,45 ,1,6412,11510 ,1,6413,185840 ,1,6414,569550 ,1,6415,556255 ,1,6416,2210 ,1,6417,542350 ,1,6418,358040 ,1,6419,331985 ,1,6420,357995 ,1,6421,357985 ,1,6422,306210 ,1,6423,589330 ,1,6424,357820 ,1,6425,357780 ,1,6427,2395 ,1,6428,303790 ,1,6429,331975 ,1,6430,542865 ,1,6431,595195 ,1,6432,542865 ,1,6433,400430 ,1,6434,123830 ,1,6435,232600 ,1,6436,572770 ,1,6437,45 ,1,6438,9435 ,1,6439,45 ,1,6440,232600 ,1,6441,232745 ,1,6442,331965 ,1,6443,45 ,1,6444,9435 ,1,6445,45 ,1,6446,232600 ,1,6447,232655 ,1,6448,572780 ,1,6449,575770 ,1,6450,575920 ,1,6451,550 ,1,6452,576060 ,1,6453,600 ,1,6454,575450 ,1,6455,331955 ,1,6456,331920 ,1,6457,576260 ,1,6458,576050 ,1,6459,575950 ,1,6460,485 ,1,6461,575715 ,1,6462,575960 ,1,6463,573820 ,1,6464,374830 ,1,6465,220230 ,1,6466,551215 ,1,6467,164900 ,1,6468,568045 ,1,6469,45 ,1,6470,243905 ,1,6471,612060 ,1,6472,45 ,1,6473,13320 ,1,6474,581970 ,1,6475,575790 ,1,6476,578715 ,1,6477,575800 ,1,6478,560 ,1,6479,575670 ,1,6480,575830 ,1,6481,575840 ,1,6482,575900 ,1,6483,645 ,1,6484,575910 ,1,6485,358995 ,1,6486,357305 ,1,6487,357395 ,1,6488,357280 ,1,6489,358805 ,1,6490,358795 ,1,6491,358785 ,1,6492,590 ,1,6493,576095 ,1,6494,575510 ,1,6495,575705 ,1,6496,575475 ,1,6497,575855 ,1,6498,575695 ,1,6499,575865 ,1,6500,331910 ,1,6501,609525 ,1,6502,45 ,1,6503,11510 ,1,6504,239225 ,1,6505,574805 ,1,6506,232090 ,1,6508,2395 ,1,6509,400430 ,1,6510,122925 ,1,6511,572425 ,1,6512,45 ,1,6513,9435 ,1,6514,572380 ,1,6515,45 ,1,6516,9435 ,1,6517,45 ,1,6518,9435 ,1,6519,400430 ,1,6520,122955 ,1,6521,45 ,1,6522,9435 ,1,6523,373375 ,1,6524,331900 ,1,6525,331890 ,1,6526,331875 ,1,6527,331865 ,1,6528,331855 ,1,6529,331845 ,1,6530,331810 ,1,6531,331800 ,1,6532,331790 ,1,6533,331780 ,1,6534,331770 ,1,6535,331760 ,1,6536,45 ,1,6537,9435 ,1,6538,232020 ,1,6539,550385 ,1,6540,568365 ,1,6541,45 ,1,6542,341055 ,1,6543,331750 ,1,6544,45 ,1,6545,5900 ,1,6546,45 ,1,6547,11510 ,1,6548,223625 ,1,6549,216035 ,1,6550,217195 ,1,6551,552975 ,1,6552,370650 ,1,6553,373150 ,1,6554,331740 ,1,6555,220220 ,1,6556,220210 ,1,6557,331700 ,1,6558,220200 ,1,6559,368240 ,1,6560,820 ,1,6561,568430 ,1,6562,45 ,1,6563,179760 ,1,6564,45 ,1,6565,331690 ,1,6566,369800 ,1,6567,358930 ,1,6568,372125 ,1,6569,356995 ,1,6570,45 ,1,6571,179760 ,1,6572,568460 ,1,6573,45 ,1,6574,209800 ,1,6575,331680 ,1,6576,370210 ,1,6577,374550 ,1,6578,573360 ,1,6579,45 ,1,6580,234335 ,1,6581,582275 ,1,6582,45 ,1,6583,215275 ,1,6584,556235 ,1,6585,234715 ,1,6586,556220 ,1,6587,556210 ,1,6588,549330 ,1,6589,370300 ,1,6590,549095 ,1,6591,164870 ,1,6592,234335 ,1,6593,549145 ,1,6594,354645 ,1,6595,556205 ,1,6596,370350 ,1,6597,548150 ,1,6598,298050 ,1,6599,220170 ,1,6600,550405 ,1,6601,220160 ,1,6602,595120 ,1,6603,45 ,1,6604,9375 ,1,6605,331670 ,1,6606,369905 ,1,6607,45 ,1,6608,11510 ,1,6609,369915 ,1,6610,45 ,1,6611,11510 ,1,6612,577095 ,1,6613,45 ,1,6614,331650 ,1,6615,45 ,1,6616,331650 ,1,6617,140645 ,1,6618,556195 ,1,6619,45 ,1,6620,198665 ,1,6621,45 ,1,6622,167895 ,1,6623,546765 ,1,6624,45 ,1,6625,331650 ,1,6626,372810 ,1,6627,548420 ,1,6628,551050 ,1,6629,331640 ,1,6630,357655 ,1,6631,358155 ,1,6632,357610 ,1,6633,372190 ,1,6634,370620 ,1,6635,358115 ,1,6636,356395 ,1,6637,356375 ,1,6638,359220 ,1,6639,546780 ,1,6640,15915 ,1,6641,331630 ,1,6642,356740 ,1,6643,164860 ,1,6644,243230 ,1,6645,356635 ,1,6646,243195 ,1,6647,356685 ,1,6648,243185 ,1,6649,356770 ,1,6650,243175 ,1,6651,357965 ,1,6652,357950 ,1,6653,331620 ,1,6654,331605 ,1,6655,15320 ,1,6656,331595 ,1,6657,372460 ,1,6658,356675 ,1,6659,357535 ,1,6660,220130 ,1,6661,357750 ,1,6662,331585 ,1,6663,14985 ,1,6664,331575 ,1,6665,357975 ,1,6666,164850 ,1,6667,358070 ,1,6668,356405 ,1,6669,357520 ,1,6670,164840 ,1,6671,164825 ,1,6672,220120 ,1,6673,220110 ,1,6674,302715 ,1,6675,302200 ,1,6676,220100 ,1,6677,234520 ,1,6678,556190 ,1,6679,220090 ,1,6680,45 ,1,6681,179760 ,1,6682,370645 ,1,6683,545700 ,1,6684,556185 ,1,6685,259145 ,1,6686,164815 ,1,6687,354580 ,1,6688,549180 ,1,6689,331565 ,1,6690,556180 ,1,6691,220080 ,1,6692,268770 ,1,6693,542860 ,1,6694,609520 ,1,6695,542860 ,1,6696,45 ,1,6697,5900 ,1,6698,234095 ,1,6699,556140 ,1,6700,215140 ,1,6701,354560 ,1,6702,331555 ,1,6703,354475 ,1,6704,234025 ,1,6705,354625 ,1,6706,354490 ,1,6707,354500 ,1,6708,354610 ,1,6709,164805 ,1,6710,354600 ,1,6711,235345 ,1,6712,354510 ,1,6713,259135 ,1,6714,354465 ,1,6715,354570 ,1,6716,354520 ,1,6717,354455 ,1,6718,45 ,1,6719,11510 ,1,6720,45 ,1,6721,11510 ,1,6722,354590 ,1,6723,220070 ,1,6724,331545 ,1,6725,235290 ,1,6726,2210 ,1,6727,542350 ,1,6728,220060 ,1,6729,45 ,1,6730,11510 ,1,6731,217060 ,1,6732,45 ,1,6733,210905 ,1,6734,220015 ,1,6735,217120 ,1,6736,217130 ,1,6737,542820 ,1,6738,573705 ,1,6739,542820 ,1,6740,331535 ,1,6741,220005 ,1,6742,2280 ,1,6743,542265 ,1,6744,45 ,1,6745,13320 ,1,6746,219995 ,1,6747,219985 ,1,6748,595110 ,1,6749,45 ,1,6750,9375 ,1,6751,45 ,1,6752,11510 ,1,6753,2210 ,1,6754,542350 ,1,6755,542815 ,1,6756,609460 ,1,6757,542815 ,1,6758,331495 ,1,6759,259090 ,1,6760,235320 ,1,6761,235185 ,1,6762,219975 ,1,6763,573370 ,1,6764,45 ,1,6765,190350 ,1,6766,331485 ,1,6767,233705 ,1,6768,233905 ,1,6769,233915 ,1,6770,233895 ,1,6771,233885 ,1,6772,219965 ,1,6773,199965 ,1,6774,219945 ,1,6775,356195 ,1,6776,219905 ,1,6777,45 ,1,6778,190350 ,1,6779,331465 ,1,6780,259155 ,1,6781,237840 ,1,6782,237790 ,1,6783,609910 ,1,6784,45 ,1,6785,208615 ,1,6786,45 ,1,6787,166945 ,1,6788,219895 ,1,6789,45 ,1,6790,190350 ,1,6791,331455 ,1,6792,179750 ,1,6793,235705 ,1,6794,216145 ,1,6795,556135 ,1,6796,215890 ,1,6797,542810 ,1,6798,609470 ,1,6799,542810 ,1,6800,45 ,1,6801,5900 ,1,6802,542805 ,1,6803,609515 ,1,6804,542805 ,1,6805,45 ,1,6806,5900 ,1,6807,219885 ,1,6808,331445 ,1,6809,302135 ,1,6810,301750 ,1,6811,331435 ,1,6812,302745 ,1,6813,331425 ,1,6814,554075 ,1,6815,219875 ,1,6816,542800 ,1,6817,564895 ,1,6818,542800 ,1,6819,179060 ,1,6820,552550 ,1,6821,219865 ,1,6822,295945 ,1,6823,552555 ,1,6824,355955 ,1,6825,547375 ,1,6826,219855 ,1,6827,556130 ,1,6828,547380 ,1,6829,263595 ,1,6830,164795 ,1,6831,263850 ,1,6832,301565 ,1,6833,8440 ,1,6834,552465 ,1,6835,205140 ,1,6836,331395 ,1,6837,331385 ,1,6838,219845 ,1,6839,45 ,1,6840,4315 ,1,6841,542795 ,1,6842,587755 ,1,6843,542795 ,1,6844,542790 ,1,6845,581465 ,1,6846,542790 ,1,6847,219835 ,1,6848,219805 ,1,6849,292185 ,1,6850,331375 ,1,6851,10915 ,1,6852,331365 ,1,6853,542785 ,1,6854,561435 ,1,6855,542785 ,1,6856,295960 ,1,6857,11035 ,1,6858,312425 ,1,6859,549140 ,1,6860,219795 ,1,6861,595085 ,1,6862,45 ,1,6863,13320 ,1,6864,45 ,1,6865,13320 ,1,6866,219785 ,1,6867,45 ,1,6868,4315 ,1,6869,542765 ,1,6870,587755 ,1,6871,542765 ,1,6872,542760 ,1,6873,581465 ,1,6874,542760 ,1,6875,219775 ,1,6876,263955 ,1,6877,331355 ,1,6878,2135 ,1,6879,331345 ,1,6880,331335 ,1,6881,370520 ,1,6882,552910 ,1,6883,219765 ,1,6884,164770 ,1,6885,552865 ,1,6886,219755 ,1,6887,4100 ,1,6888,205130 ,1,6889,331325 ,1,6890,45 ,1,6891,13320 ,1,6892,45 ,1,6893,13320 ,1,6894,331260 ,1,6895,331250 ,1,6896,2280 ,1,6897,542160 ,1,6898,45 ,1,6899,13320 ,1,6900,331240 ,1,6901,2280 ,1,6902,542160 ,1,6903,45 ,1,6904,13320 ,1,6905,264005 ,1,6906,331230 ,1,6907,300305 ,1,6908,556125 ,1,6909,331220 ,1,6910,263840 ,1,6911,264035 ,1,6912,264015 ,1,6913,219745 ,1,6914,205120 ,1,6915,45 ,1,6916,9355 ,1,6917,219710 ,1,6918,301865 ,1,6919,331120 ,1,6920,45 ,1,6921,13320 ,1,6922,263925 ,1,6923,331110 ,1,6924,2280 ,1,6925,542160 ,1,6926,301770 ,1,6927,2280 ,1,6928,542160 ,1,6929,45 ,1,6930,13320 ,1,6931,2280 ,1,6932,542160 ,1,6933,45 ,1,6934,13320 ,1,6935,2280 ,1,6936,542160 ,1,6937,2280 ,1,6938,542160 ,1,6939,45 ,1,6940,13320 ,1,6941,2280 ,1,6942,542160 ,1,6943,2280 ,1,6944,542160 ,1,6945,45 ,1,6946,13320 ,1,6947,263915 ,1,6948,2280 ,1,6949,542160 ,1,6950,331100 ,1,6951,331090 ,1,6952,2280 ,1,6953,542160 ,1,6954,45 ,1,6955,13320 ,1,6956,2280 ,1,6957,542160 ,1,6958,45 ,1,6959,13320 ,1,6960,263895 ,1,6961,224655 ,1,6962,224665 ,1,6963,548510 ,1,6964,219700 ,1,6965,219690 ,1,6966,164760 ,1,6967,556115 ,1,6968,609595 ,1,6969,45 ,1,6970,11510 ,1,6971,45 ,1,6972,11510 ,1,6973,177250 ,1,6974,45 ,1,6975,331060 ,1,6976,264045 ,1,6977,556110 ,1,6978,263905 ,1,6979,301225 ,1,6980,164750 ,1,6981,264055 ,1,6982,331050 ,1,6983,331040 ,1,6984,299895 ,1,6985,2280 ,1,6986,542270 ,1,6987,45 ,1,6988,13320 ,1,6989,219680 ,1,6990,331030 ,1,6991,2280 ,1,6992,542270 ,1,6993,45 ,1,6994,13320 ,1,6995,219650 ,1,6996,556105 ,1,6997,2280 ,1,6998,542160 ,1,6999,45 ,1,7000,13320 ,1,7001,2280 ,1,7002,542160 ,1,7003,45 ,1,7004,13320 ,1,7005,263820 ,1,7006,45 ,1,7007,11690 ,1,7008,2280 ,1,7009,542160 ,1,7010,45 ,1,7011,13320 ,1,7012,219610 ,1,7013,164740 ,1,7014,330895 ,1,7015,45 ,1,7016,13320 ,1,7017,330870 ,1,7018,45 ,1,7019,13320 ,1,7020,45 ,1,7021,13320 ,1,7022,300250 ,1,7023,45 ,1,7024,13320 ,1,7025,2280 ,1,7026,542160 ,1,7027,45 ,1,7028,13320 ,1,7029,2280 ,1,7030,542160 ,1,7031,45 ,1,7032,13320 ,1,7033,264640 ,1,7034,595000 ,1,7035,45 ,1,7036,195325 ,1,7037,45 ,1,7038,11690 ,1,7039,330860 ,1,7040,2280 ,1,7041,542160 ,1,7042,45 ,1,7043,13320 ,1,7044,2280 ,1,7045,542160 ,1,7046,45 ,1,7047,13320 ,1,7048,330850 ,1,7049,2280 ,1,7050,542160 ,1,7051,2280 ,1,7052,542160 ,1,7053,45 ,1,7054,13320 ,1,7055,2280 ,1,7056,542160 ,1,7057,2280 ,1,7058,542160 ,1,7059,45 ,1,7060,13320 ,1,7061,552880 ,1,7062,552895 ,1,7063,552900 ,1,7064,552935 ,1,7065,219600 ,1,7066,354060 ,1,7067,330840 ,1,7068,269635 ,1,7069,219590 ,1,7070,587890 ,1,7071,45 ,1,7072,208615 ,1,7073,330830 ,1,7074,552940 ,1,7075,219580 ,1,7076,219565 ,1,7077,556065 ,1,7078,581450 ,1,7079,45 ,1,7080,342050 ,1,7081,551015 ,1,7082,219555 ,1,7083,330820 ,1,7084,355950 ,1,7085,330810 ,1,7086,45 ,1,7087,13320 ,1,7088,330800 ,1,7089,45 ,1,7090,13320 ,1,7091,330760 ,1,7092,45 ,1,7093,13320 ,1,7094,330750 ,1,7095,45 ,1,7096,13320 ,1,7097,330740 ,1,7098,45 ,1,7099,13320 ,1,7100,330730 ,1,7101,2280 ,1,7102,542085 ,1,7103,45 ,1,7104,13320 ,1,7105,330715 ,1,7106,45 ,1,7107,13320 ,1,7108,171965 ,1,7109,556060 ,1,7110,612715 ,1,7111,45 ,1,7112,13320 ,1,7113,45 ,1,7114,13320 ,1,7115,330705 ,1,7116,45 ,1,7117,13320 ,1,7118,330695 ,1,7119,45 ,1,7120,13320 ,1,7121,45 ,1,7122,13320 ,1,7123,330685 ,1,7124,45 ,1,7125,13320 ,1,7126,330660 ,1,7127,45 ,1,7128,13320 ,1,7129,330650 ,1,7130,45 ,1,7131,13320 ,1,7132,330640 ,1,7133,45 ,1,7134,13320 ,1,7135,330630 ,1,7136,45 ,1,7137,13320 ,1,7138,45 ,1,7139,195155 ,1,7140,45 ,1,7141,13320 ,1,7142,45 ,1,7143,13320 ,1,7144,45 ,1,7145,13320 ,1,7146,45 ,1,7147,13320 ,1,7148,45 ,1,7149,13320 ,1,7150,45 ,1,7151,13320 ,1,7152,556055 ,1,7153,330615 ,1,7154,330605 ,1,7155,260730 ,1,7156,556050 ,1,7157,556040 ,1,7158,260715 ,1,7159,165970 ,1,7160,45 ,1,7161,9355 ,1,7162,219545 ,1,7163,330595 ,1,7164,330585 ,1,7165,2280 ,1,7166,542160 ,1,7167,45 ,1,7168,13320 ,1,7169,330545 ,1,7170,330535 ,1,7171,2280 ,1,7172,542160 ,1,7173,330525 ,1,7174,330515 ,1,7175,2280 ,1,7176,542160 ,1,7177,45 ,1,7178,13320 ,1,7179,330495 ,1,7180,2280 ,1,7181,542160 ,1,7182,45 ,1,7183,13320 ,1,7184,45 ,1,7185,13320 ,1,7186,45 ,1,7187,13320 ,1,7188,330485 ,1,7189,2280 ,1,7190,542160 ,1,7191,45 ,1,7192,13320 ,1,7193,330475 ,1,7194,2280 ,1,7195,542160 ,1,7196,45 ,1,7197,13320 ,1,7198,330465 ,1,7199,2280 ,1,7200,542160 ,1,7201,45 ,1,7202,13320 ,1,7203,330425 ,1,7204,330415 ,1,7205,2280 ,1,7206,542160 ,1,7207,45 ,1,7208,13320 ,1,7209,269540 ,1,7210,2280 ,1,7211,542160 ,1,7212,45 ,1,7213,13320 ,1,7214,2280 ,1,7215,542160 ,1,7216,45 ,1,7217,13320 ,1,7218,2280 ,1,7219,542160 ,1,7220,45 ,1,7221,13320 ,1,7222,330405 ,1,7223,552950 ,1,7224,219535 ,1,7225,302755 ,1,7226,164730 ,1,7227,330395 ,1,7228,330375 ,1,7229,302735 ,1,7230,355965 ,1,7231,552965 ,1,7232,613120 ,1,7233,45 ,1,7234,195155 ,1,7235,45 ,1,7236,13320 ,1,7237,45 ,1,7238,13320 ,1,7239,330365 ,1,7240,45 ,1,7241,13320 ,1,7242,264075 ,1,7243,302725 ,1,7244,164720 ,1,7245,219495 ,1,7246,219485 ,1,7247,164710 ,1,7248,330345 ,1,7249,166955 ,1,7250,302915 ,1,7251,552970 ,1,7252,219475 ,1,7253,219465 ,1,7254,78360 ,1,7255,219455 ,1,7256,219445 ,1,7257,2280 ,1,7258,542275 ,1,7259,608835 ,1,7260,45 ,1,7261,195155 ,1,7262,330310 ,1,7263,330300 ,1,7264,330290 ,1,7265,278425 ,1,7266,354085 ,1,7267,164700 ,1,7268,219435 ,1,7269,302765 ,1,7270,302810 ,1,7271,302800 ,1,7272,302790 ,1,7273,302610 ,1,7274,216025 ,1,7275,226975 ,1,7276,228960 ,1,7277,228970 ,1,7278,229325 ,1,7279,229080 ,1,7280,229105 ,1,7281,229115 ,1,7282,229090 ,1,7283,229125 ,1,7284,229170 ,1,7285,229135 ,1,7286,229160 ,1,7287,226780 ,1,7288,226790 ,1,7289,229280 ,1,7290,229305 ,1,7291,229315 ,1,7292,229295 ,1,7293,229015 ,1,7294,229070 ,1,7295,229025 ,1,7296,229060 ,1,7297,229035 ,1,7298,228980 ,1,7299,229005 ,1,7300,228990 ,1,7301,229270 ,1,7302,229225 ,1,7303,229250 ,1,7304,229260 ,1,7305,229235 ,1,7306,229385 ,1,7307,229355 ,1,7308,229375 ,1,7309,229365 ,1,7310,226800 ,1,7311,229400 ,1,7312,227845 ,1,7313,229410 ,1,7314,229180 ,1,7315,229215 ,1,7316,229190 ,1,7317,229205 ,1,7318,226770 ,1,7319,15245 ,1,7320,330280 ,1,7321,218370 ,1,7322,186340 ,1,7323,211340 ,1,7324,241770 ,1,7325,241760 ,1,7326,222235 ,1,7327,184220 ,1,7328,164655 ,1,7329,219425 ,1,7330,269645 ,1,7331,219390 ,1,7332,10000 ,1,7333,219380 ,1,7334,219370 ,1,7335,219360 ,1,7336,45 ,1,7337,179760 ,1,7338,219345 ,1,7339,302045 ,1,7340,219335 ,1,7341,551020 ,1,7342,219325 ,1,7343,264065 ,1,7344,400430 ,1,7345,199240 ,1,7346,552960 ,1,7347,613115 ,1,7348,45 ,1,7349,195155 ,1,7350,45 ,1,7351,13320 ,1,7352,45 ,1,7353,13320 ,1,7354,45 ,1,7355,13320 ,1,7356,45 ,1,7357,13320 ,1,7358,45 ,1,7359,13320 ,1,7360,330220 ,1,7361,302300 ,1,7362,587935 ,1,7363,164645 ,1,7364,179415 ,1,7365,356540 ,1,7366,221855 ,1,7367,371185 ,1,7368,221835 ,1,7369,357155 ,1,7370,219245 ,1,7371,569615 ,1,7372,45 ,1,7373,330210 ,1,7374,2210 ,1,7375,542350 ,1,7376,242410 ,1,7377,242460 ,1,7378,242505 ,1,7379,241975 ,1,7380,242480 ,1,7381,242495 ,1,7382,242350 ,1,7383,242340 ,1,7384,242390 ,1,7385,242265 ,1,7386,242255 ,1,7387,242315 ,1,7388,242400 ,1,7389,242245 ,1,7390,242295 ,1,7391,242275 ,1,7392,242305 ,1,7393,242090 ,1,7394,242080 ,1,7395,242100 ,1,7396,241995 ,1,7397,241985 ,1,7398,242055 ,1,7399,242135 ,1,7400,242195 ,1,7401,242035 ,1,7402,242045 ,1,7403,242070 ,1,7404,242145 ,1,7405,242175 ,1,7406,242165 ,1,7407,242155 ,1,7408,242025 ,1,7409,242205 ,1,7410,242360 ,1,7411,242285 ,1,7412,242450 ,1,7413,242185 ,1,7414,242370 ,1,7415,242420 ,1,7416,369590 ,1,7417,228260 ,1,7418,209400 ,1,7419,164635 ,1,7420,164625 ,1,7421,556035 ,1,7422,215900 ,1,7423,556030 ,1,7424,609475 ,1,7425,164610 ,1,7426,45 ,1,7427,5900 ,1,7428,561375 ,1,7429,215910 ,1,7430,556025 ,1,7431,330200 ,1,7432,330190 ,1,7433,330175 ,1,7434,330165 ,1,7435,330155 ,1,7436,330145 ,1,7437,330110 ,1,7438,556010 ,1,7439,246455 ,1,7440,556005 ,1,7441,548330 ,1,7442,234510 ,1,7443,238185 ,1,7444,354925 ,1,7445,354915 ,1,7446,219235 ,1,7447,45 ,1,7448,11510 ,1,7449,45 ,1,7450,11510 ,1,7451,219225 ,1,7452,370310 ,1,7453,197930 ,1,7454,197840 ,1,7455,330100 ,1,7456,330090 ,1,7457,330080 ,1,7458,85240 ,1,7459,85210 ,1,7460,197710 ,1,7461,564000 ,1,7462,45 ,1,7463,330070 ,1,7464,197700 ,1,7465,237270 ,1,7466,330060 ,1,7467,164600 ,1,7468,164590 ,1,7469,2210 ,1,7470,542350 ,1,7471,216580 ,1,7472,216570 ,1,7473,219215 ,1,7474,594915 ,1,7475,45 ,1,7476,190350 ,1,7477,45 ,1,7478,11510 ,1,7479,556000 ,1,7480,330050 ,1,7481,2210 ,1,7482,542350 ,1,7483,216445 ,1,7484,2210 ,1,7485,542350 ,1,7486,370320 ,1,7487,303615 ,1,7488,330040 ,1,7489,237570 ,1,7490,259270 ,1,7491,237375 ,1,7492,129155 ,1,7493,129110 ,1,7494,330020 ,1,7495,238355 ,1,7496,219205 ,1,7497,45 ,1,7498,330070 ,1,7499,330010 ,1,7500,370340 ,1,7501,330000 ,1,7502,238375 ,1,7503,164580 ,1,7504,329990 ,1,7505,238365 ,1,7506,574260 ,1,7507,45 ,1,7508,329980 ,1,7509,329970 ,1,7510,237440 ,1,7511,237330 ,1,7512,164555 ,1,7513,129060 ,1,7514,555995 ,1,7515,45 ,1,7516,179760 ,1,7517,237345 ,1,7518,195335 ,1,7519,219180 ,1,7520,45 ,1,7521,179760 ,1,7522,45 ,1,7523,209800 ,1,7524,45 ,1,7525,5900 ,1,7526,259285 ,1,7527,198605 ,1,7528,199405 ,1,7529,329960 ,1,7530,45 ,1,7531,5900 ,1,7532,164545 ,1,7533,170435 ,1,7534,180765 ,1,7535,329950 ,1,7536,198615 ,1,7537,329910 ,1,7538,550675 ,1,7539,213155 ,1,7540,45 ,1,7541,5900 ,1,7542,45 ,1,7543,5900 ,1,7544,563735 ,1,7545,45 ,1,7546,5900 ,1,7547,199395 ,1,7548,546630 ,1,7549,329900 ,1,7550,219170 ,1,7551,329890 ,1,7552,237320 ,1,7553,215925 ,1,7554,45 ,1,7555,5900 ,1,7556,219160 ,1,7557,369995 ,1,7558,164535 ,1,7559,198260 ,1,7560,370330 ,1,7561,85435 ,1,7562,45 ,1,7563,330070 ,1,7564,219150 ,1,7565,549080 ,1,7566,219140 ,1,7567,219130 ,1,7568,216200 ,1,7569,45 ,1,7570,343730 ,1,7571,581110 ,1,7572,45 ,1,7573,5900 ,1,7574,555985 ,1,7575,573690 ,1,7576,45 ,1,7577,5900 ,1,7578,45 ,1,7579,329860 ,1,7580,573240 ,1,7581,45 ,1,7582,5900 ,1,7583,573250 ,1,7584,45 ,1,7585,5900 ,1,7586,329850 ,1,7587,45 ,1,7588,5900 ,1,7589,210865 ,1,7590,219120 ,1,7591,45 ,1,7592,329840 ,1,7593,45 ,1,7594,329805 ,1,7595,574290 ,1,7596,45 ,1,7597,329795 ,1,7598,45 ,1,7599,329785 ,1,7600,45 ,1,7601,329775 ,1,7602,45 ,1,7603,5900 ,1,7604,219110 ,1,7605,551200 ,1,7606,555980 ,1,7607,219070 ,1,7608,219060 ,1,7609,578895 ,1,7610,555975 ,1,7611,219050 ,1,7612,219040 ,1,7613,594850 ,1,7614,555970 ,1,7615,219025 ,1,7616,219015 ,1,7617,594835 ,1,7618,555950 ,1,7619,219005 ,1,7620,218995 ,1,7621,594830 ,1,7622,555945 ,1,7623,218955 ,1,7624,218945 ,1,7625,594825 ,1,7626,555940 ,1,7627,218935 ,1,7628,218925 ,1,7629,594810 ,1,7630,45 ,1,7631,255425 ,1,7632,329750 ,1,7633,359260 ,1,7634,555935 ,1,7635,555925 ,1,7636,555920 ,1,7637,45 ,1,7638,255425 ,1,7639,164525 ,1,7640,45 ,1,7641,255425 ,1,7642,45 ,1,7643,255425 ,1,7644,207285 ,1,7645,374495 ,1,7646,164505 ,1,7647,227630 ,1,7648,15355 ,1,7649,228700 ,1,7650,359145 ,1,7651,45 ,1,7652,255425 ,1,7653,329740 ,1,7654,555915 ,1,7655,45 ,1,7656,255425 ,1,7657,329730 ,1,7658,374395 ,1,7659,551080 ,1,7660,356925 ,1,7661,356455 ,1,7662,368445 ,1,7663,164495 ,1,7664,164485 ,1,7665,164475 ,1,7666,555910 ,1,7667,369675 ,1,7668,400430 ,1,7669,125440 ,1,7670,573280 ,1,7671,45 ,1,7672,329720 ,1,7673,329710 ,1,7674,233735 ,1,7675,329700 ,1,7676,329690 ,1,7677,400430 ,1,7678,129410 ,1,7679,45 ,1,7680,329720 ,1,7681,237135 ,1,7682,164440 ,1,7683,218905 ,1,7684,546830 ,1,7685,218895 ,1,7686,164430 ,1,7687,400430 ,1,7688,129490 ,1,7689,45 ,1,7690,329720 ,1,7691,234845 ,1,7692,400430 ,1,7693,125410 ,1,7694,45 ,1,7695,329720 ,1,7696,234665 ,1,7697,234240 ,1,7698,552605 ,1,7699,400430 ,1,7700,165175 ,1,7701,45 ,1,7702,229965 ,1,7703,94055 ,1,7704,45 ,1,7705,11510 ,1,7706,249655 ,1,7707,579885 ,1,7708,45 ,1,7709,259605 ,1,7710,222225 ,1,7711,45 ,1,7712,11510 ,1,7713,580450 ,1,7714,45 ,1,7715,259605 ,1,7716,243315 ,1,7717,356570 ,1,7718,356615 ,1,7719,217650 ,1,7720,555885 ,1,7721,568930 ,1,7722,45 ,1,7723,259605 ,1,7724,218390 ,1,7725,580030 ,1,7726,45 ,1,7727,259605 ,1,7728,264485 ,1,7729,329680 ,1,7730,329665 ,1,7731,329655 ,1,7732,329645 ,1,7733,579630 ,1,7734,45 ,1,7735,259605 ,1,7736,263130 ,1,7737,329635 ,1,7738,329600 ,1,7739,217930 ,1,7740,270500 ,1,7741,329590 ,1,7742,329580 ,1,7743,581830 ,1,7744,270225 ,1,7745,329570 ,1,7746,218885 ,1,7747,218875 ,1,7748,610635 ,1,7749,45 ,1,7750,175900 ,1,7751,45 ,1,7752,203580 ,1,7753,218850 ,1,7754,329560 ,1,7755,164420 ,1,7756,203560 ,1,7757,203580 ,1,7758,164410 ,1,7759,329550 ,1,7760,218840 ,1,7761,555880 ,1,7762,218830 ,1,7763,329540 ,1,7764,594740 ,1,7765,45 ,1,7766,329530 ,1,7767,565960 ,1,7768,45 ,1,7769,210655 ,1,7770,192890 ,1,7771,555875 ,1,7772,45 ,1,7773,175900 ,1,7774,45 ,1,7775,329500 ,1,7776,329490 ,1,7777,218810 ,1,7778,203685 ,1,7779,45 ,1,7780,4315 ,1,7781,218800 ,1,7782,200095 ,1,7783,215845 ,1,7784,555870 ,1,7785,45 ,1,7786,5900 ,1,7787,568590 ,1,7788,45 ,1,7789,5900 ,1,7790,45 ,1,7791,5900 ,1,7792,45 ,1,7793,5900 ,1,7794,568810 ,1,7795,45 ,1,7796,5900 ,1,7797,594735 ,1,7798,45 ,1,7799,5900 ,1,7800,226555 ,1,7801,224525 ,1,7802,329480 ,1,7803,226570 ,1,7804,609465 ,1,7805,45 ,1,7806,175900 ,1,7807,218790 ,1,7808,175205 ,1,7809,164395 ,1,7810,218780 ,1,7811,203395 ,1,7812,228455 ,1,7813,203755 ,1,7814,218760 ,1,7815,45 ,1,7816,203580 ,1,7817,329470 ,1,7818,545990 ,1,7819,218750 ,1,7820,329460 ,1,7821,235850 ,1,7822,203990 ,1,7823,329450 ,1,7824,203980 ,1,7825,203890 ,1,7826,218740 ,1,7827,218730 ,1,7828,218715 ,1,7829,581780 ,1,7830,45 ,1,7831,329440 ,1,7832,45 ,1,7833,329430 ,1,7834,218705 ,1,7835,329390 ,1,7836,218695 ,1,7837,203905 ,1,7838,45 ,1,7839,11510 ,1,7840,218685 ,1,7841,218630 ,1,7842,164385 ,1,7843,218620 ,1,7844,218610 ,1,7845,45 ,1,7846,175900 ,1,7847,263960 ,1,7848,551095 ,1,7849,329380 ,1,7850,612720 ,1,7851,218600 ,1,7852,218590 ,1,7853,45 ,1,7854,203580 ,1,7855,581855 ,1,7856,45 ,1,7857,329370 ,1,7858,260785 ,1,7859,329360 ,1,7860,555850 ,1,7861,609780 ,1,7862,45 ,1,7863,175900 ,1,7864,609720 ,1,7865,45 ,1,7866,11510 ,1,7867,609745 ,1,7868,45 ,1,7869,11510 ,1,7870,45 ,1,7871,11510 ,1,7872,45 ,1,7873,11510 ,1,7874,45 ,1,7875,11510 ,1,7876,45 ,1,7877,11510 ,1,7878,610350 ,1,7879,45 ,1,7880,13320 ,1,7881,45 ,1,7882,13320 ,1,7883,45 ,1,7884,175900 ,1,7885,610325 ,1,7886,45 ,1,7887,11510 ,1,7888,610340 ,1,7889,45 ,1,7890,11510 ,1,7891,45 ,1,7892,11510 ,1,7893,45 ,1,7894,11510 ,1,7895,542755 ,1,7896,558485 ,1,7897,542755 ,1,7898,612280 ,1,7899,218580 ,1,7900,542750 ,1,7901,610350 ,1,7902,542750 ,1,7903,45 ,1,7904,13320 ,1,7905,45 ,1,7906,13320 ,1,7907,45 ,1,7908,346465 ,1,7909,45 ,1,7910,5900 ,1,7911,218570 ,1,7912,555845 ,1,7913,551100 ,1,7914,45 ,1,7915,175900 ,1,7916,45 ,1,7917,5900 ,1,7918,329345 ,1,7919,579705 ,1,7920,45 ,1,7921,5900 ,1,7922,550665 ,1,7923,218560 ,1,7924,610480 ,1,7925,45 ,1,7926,11510 ,1,7927,560860 ,1,7928,45 ,1,7929,347180 ,1,7930,560855 ,1,7931,45 ,1,7932,222855 ,1,7933,45 ,1,7934,198270 ,1,7935,45 ,1,7936,177250 ,1,7937,45 ,1,7938,203580 ,1,7939,218545 ,1,7940,238870 ,1,7941,357740 ,1,7942,180735 ,1,7943,2210 ,1,7944,542350 ,1,7945,572855 ,1,7946,400430 ,1,7947,108520 ,1,7948,569315 ,1,7949,45 ,1,7950,9435 ,1,7951,329335 ,1,7952,329325 ,1,7953,329315 ,1,7954,329280 ,1,7955,329270 ,1,7956,329260 ,1,7957,329250 ,1,7958,329240 ,1,7959,329230 ,1,7960,329220 ,1,7961,329210 ,1,7962,329160 ,1,7963,180715 ,1,7964,329150 ,1,7965,329140 ,1,7966,180745 ,1,7967,329130 ,1,7968,180725 ,1,7969,329120 ,1,7970,45 ,1,7971,9435 ,1,7972,218190 ,1,7973,400430 ,1,7974,108655 ,1,7975,45 ,1,7976,9435 ,1,7977,569335 ,1,7978,45 ,1,7979,9435 ,1,7980,45 ,1,7981,9435 ,1,7982,400430 ,1,7983,108970 ,1,7984,45 ,1,7985,9435 ,1,7986,569375 ,1,7987,45 ,1,7988,9435 ,1,7989,45 ,1,7990,9435 ,1,7991,550185 ,1,7992,548435 ,1,7993,555810 ,1,7994,555800 ,1,7995,555795 ,1,7996,223775 ,1,7997,223765 ,1,7998,555780 ,1,7999,552415 ,1,8000,329040 ,1,8001,329030 ,1,8002,329020 ,1,8003,329005 ,1,8004,328995 ,1,8005,328985 ,1,8006,328975 ,1,8007,328940 ,1,8008,328930 ,1,8009,328920 ,1,8010,328910 ,1,8011,15905 ,1,8012,164375 ,1,8013,358815 ,1,8014,246850 ,1,8015,555775 ,1,8016,358190 ,1,8017,259635 ,1,8018,328895 ,1,8019,259570 ,1,8020,218535 ,1,8021,328885 ,1,8022,328875 ,1,8023,246560 ,1,8024,164365 ,1,8025,164330 ,1,8026,244715 ,1,8027,244725 ,1,8028,244875 ,1,8029,244865 ,1,8030,244855 ,1,8031,244765 ,1,8032,244810 ,1,8033,244820 ,1,8034,244830 ,1,8035,244755 ,1,8036,244970 ,1,8037,244960 ,1,8038,244950 ,1,8039,244930 ,1,8040,244920 ,1,8041,244910 ,1,8042,244745 ,1,8043,244735 ,1,8044,244900 ,1,8045,244885 ,1,8046,222530 ,1,8047,594570 ,1,8048,45 ,1,8049,203550 ,1,8050,550155 ,1,8051,550150 ,1,8052,549565 ,1,8053,574030 ,1,8054,555770 ,1,8055,555765 ,1,8056,610035 ,1,8057,45 ,1,8058,5900 ,1,8059,328865 ,1,8060,249995 ,1,8061,351860 ,1,8062,328825 ,1,8063,328815 ,1,8064,218515 ,1,8065,555735 ,1,8066,164320 ,1,8067,328805 ,1,8068,548685 ,1,8069,594555 ,1,8070,45 ,1,8071,4555 ,1,8072,328795 ,1,8073,359085 ,1,8074,359045 ,1,8075,180250 ,1,8076,359075 ,1,8077,180295 ,1,8078,359055 ,1,8079,180240 ,1,8080,328780 ,1,8081,198645 ,1,8082,197990 ,1,8083,328770 ,1,8084,351830 ,1,8085,351680 ,1,8086,351690 ,1,8087,351820 ,1,8088,351810 ,1,8089,328760 ,1,8090,587685 ,1,8091,328750 ,1,8092,370605 ,1,8093,14260 ,1,8094,14230 ,1,8095,328715 ,1,8096,176915 ,1,8097,328705 ,1,8098,328695 ,1,8099,236470 ,1,8100,14220 ,1,8101,2280 ,1,8102,542095 ,1,8103,328685 ,1,8104,14210 ,1,8105,14200 ,1,8106,164285 ,1,8107,14185 ,1,8109,2395 ,1,8110,45 ,1,8111,9470 ,1,8112,374700 ,1,8113,160965 ,1,8114,370595 ,1,8115,612025 ,1,8116,45 ,1,8117,13320 ,1,8118,400430 ,1,8119,197885 ,1,8120,45 ,1,8121,195155 ,1,8122,45 ,1,8123,195155 ,1,8124,552905 ,1,8125,218490 ,1,8126,45 ,1,8127,175900 ,1,8128,218460 ,1,8129,218405 ,1,8130,45 ,1,8131,9375 ,1,8132,45 ,1,8133,11510 ,1,8134,45 ,1,8135,11510 ,1,8136,218395 ,1,8137,218385 ,1,8138,218375 ,1,8139,164275 ,1,8140,328665 ,1,8141,84995 ,1,8142,84965 ,1,8143,370225 ,1,8144,370215 ,1,8145,45 ,1,8146,330070 ,1,8147,45 ,1,8148,330070 ,1,8149,197850 ,1,8150,218365 ,1,8151,176470 ,1,8152,370290 ,1,8153,200160 ,1,8154,164265 ,1,8155,268995 ,1,8156,328655 ,1,8157,265915 ,1,8158,181530 ,1,8159,370235 ,1,8160,370245 ,1,8161,370280 ,1,8162,164255 ,1,8163,357085 ,1,8164,370175 ,1,8165,127065 ,1,8166,179050 ,1,8167,217415 ,1,8168,45 ,1,8169,330070 ,1,8170,237550 ,1,8171,218355 ,1,8172,328645 ,1,8173,164220 ,1,8174,45 ,1,8175,190350 ,1,8176,218345 ,1,8177,218335 ,1,8178,328630 ,1,8179,374400 ,1,8180,237155 ,1,8181,164210 ,1,8182,269040 ,1,8183,269085 ,1,8184,269095 ,1,8185,269050 ,1,8186,217345 ,1,8187,235195 ,1,8188,328620 ,1,8189,218305 ,1,8190,400430 ,1,8191,197400 ,1,8192,45 ,1,8193,195155 ,1,8194,45 ,1,8195,195155 ,1,8196,552875 ,1,8197,218295 ,1,8198,45 ,1,8199,175900 ,1,8200,552815 ,1,8201,594500 ,1,8202,328610 ,1,8203,555730 ,1,8204,400430 ,1,8205,199410 ,1,8206,328600 ,1,8207,328585 ,1,8208,587820 ,1,8209,587810 ,1,8210,400430 ,1,8211,199560 ,1,8212,555725 ,1,8213,164200 ,1,8214,555720 ,1,8215,555715 ,1,8216,611945 ,1,8217,589575 ,1,8218,12750 ,1,8219,555710 ,1,8220,555705 ,1,8221,555700 ,1,8222,555685 ,1,8223,555680 ,1,8224,555675 ,1,8225,555670 ,1,8226,555665 ,1,8227,555660 ,1,8228,555655 ,1,8229,555650 ,1,8230,400430 ,1,8231,89105 ,1,8232,400430 ,1,8233,90515 ,1,8234,45 ,1,8235,177250 ,1,8236,218285 ,1,8237,594495 ,1,8238,45 ,1,8239,337360 ,1,8240,565345 ,1,8241,45 ,1,8242,11510 ,1,8243,45 ,1,8244,11510 ,1,8245,45 ,1,8246,11510 ,1,8247,400430 ,1,8248,89075 ,1,8249,45 ,1,8250,195155 ,1,8251,400430 ,1,8252,89005 ,1,8253,565330 ,1,8254,45 ,1,8255,8855 ,1,8256,218255 ,1,8257,45 ,1,8258,337360 ,1,8259,565340 ,1,8260,45 ,1,8261,337360 ,1,8262,45 ,1,8263,337360 ,1,8264,45 ,1,8265,206020 ,1,8266,594485 ,1,8267,45 ,1,8268,5900 ,1,8269,45 ,1,8270,11510 ,1,8271,45 ,1,8272,11510 ,1,8273,205115 ,1,8274,328575 ,1,8275,555630 ,1,8276,555625 ,1,8277,555620 ,1,8278,555615 ,1,8279,594480 ,1,8280,45 ,1,8281,215585 ,1,8282,555600 ,1,8283,555595 ,1,8284,555590 ,1,8285,204050 ,1,8286,97975 ,1,8287,97850 ,1,8288,97740 ,1,8289,164190 ,1,8290,171605 ,1,8291,555585 ,1,8292,594475 ,1,8293,45 ,1,8294,215585 ,1,8295,555540 ,1,8296,555535 ,1,8297,555530 ,1,8298,555525 ,1,8299,613110 ,1,8300,164180 ,1,8301,555510 ,1,8302,555505 ,1,8303,612335 ,1,8304,328565 ,1,8305,555480 ,1,8306,555475 ,1,8307,555470 ,1,8308,542745 ,1,8309,594450 ,1,8310,542745 ,1,8311,218175 ,1,8312,45 ,1,8313,2845 ,1,8314,231160 ,1,8315,328555 ,1,8316,328515 ,1,8317,549055 ,1,8318,328505 ,1,8319,328495 ,1,8320,328485 ,1,8321,328465 ,1,8322,328455 ,1,8323,328445 ,1,8324,328435 ,1,8325,328405 ,1,8326,328395 ,1,8327,548610 ,1,8328,374925 ,1,8329,328385 ,1,8330,164170 ,1,8331,328375 ,1,8332,218165 ,1,8333,181570 ,1,8334,581750 ,1,8335,45 ,1,8336,331650 ,1,8337,45 ,1,8338,331650 ,1,8339,328365 ,1,8340,181735 ,1,8341,164160 ,1,8342,328355 ,1,8343,218155 ,1,8344,218135 ,1,8345,270320 ,1,8346,555460 ,1,8347,555455 ,1,8348,260010 ,1,8349,260020 ,1,8350,555450 ,1,8351,575385 ,1,8352,45 ,1,8353,259605 ,1,8354,241860 ,1,8355,581665 ,1,8356,188605 ,1,8357,328345 ,1,8358,195545 ,1,8359,328335 ,1,8360,195525 ,1,8361,164150 ,1,8362,612695 ,1,8363,354630 ,1,8364,215330 ,1,8365,218125 ,1,8366,356530 ,1,8367,328290 ,1,8368,328280 ,1,8369,263705 ,1,8370,555425 ,1,8371,45 ,1,8372,179760 ,1,8373,573850 ,1,8374,45 ,1,8375,233915 ,1,8376,45 ,1,8377,328270 ,1,8378,549830 ,1,8379,234145 ,1,8380,164125 ,1,8381,45 ,1,8382,11510 ,1,8383,45 ,1,8384,11510 ,1,8385,45 ,1,8386,11510 ,1,8387,218115 ,1,8388,164115 ,1,8389,45 ,1,8390,11510 ,1,8391,573440 ,1,8392,45 ,1,8393,205700 ,1,8394,234135 ,1,8395,328260 ,1,8396,573390 ,1,8397,45 ,1,8398,5900 ,1,8399,328240 ,1,8400,45 ,1,8401,5900 ,1,8402,45 ,1,8403,234335 ,1,8404,45 ,1,8405,234335 ,1,8406,328230 ,1,8407,218105 ,1,8408,328220 ,1,8409,328210 ,1,8410,45 ,1,8411,179760 ,1,8412,218065 ,1,8413,218055 ,1,8414,45 ,1,8415,9375 ,1,8416,45 ,1,8417,11510 ,1,8418,369895 ,1,8419,45 ,1,8420,11510 ,1,8421,263725 ,1,8422,263715 ,1,8423,551240 ,1,8424,550440 ,1,8425,366885 ,1,8426,359835 ,1,8427,365670 ,1,8428,366425 ,1,8429,359825 ,1,8430,366395 ,1,8431,359815 ,1,8432,359760 ,1,8433,359780 ,1,8434,359770 ,1,8435,359750 ,1,8436,364035 ,1,8437,359720 ,1,8438,359685 ,1,8439,359695 ,1,8440,359730 ,1,8441,366275 ,1,8442,359740 ,1,8443,365815 ,1,8444,359710 ,1,8445,551275 ,1,8446,364470 ,1,8447,365860 ,1,8449,2395 ,1,8450,45 ,1,8451,9470 ,1,8452,594350 ,1,8453,550085 ,1,8454,580785 ,1,8455,550790 ,1,8456,580710 ,1,8457,550765 ,1,8458,580800 ,1,8459,550795 ,1,8460,580730 ,1,8461,550785 ,1,8462,576985 ,1,8463,550380 ,1,8464,552610 ,1,8465,555415 ,1,8466,328185 ,1,8467,218035 ,1,8468,328175 ,1,8469,555410 ,1,8470,188580 ,1,8471,218025 ,1,8472,549170 ,1,8473,549155 ,1,8474,328165 ,1,8475,218015 ,1,8476,217990 ,1,8477,217980 ,1,8478,234685 ,1,8479,217970 ,1,8480,354670 ,1,8481,354680 ,1,8482,555400 ,1,8483,354660 ,1,8484,237850 ,1,8485,328155 ,1,8486,555395 ,1,8487,233815 ,1,8488,586665 ,1,8489,45 ,1,8490,331650 ,1,8491,45 ,1,8492,331650 ,1,8493,328125 ,1,8494,328115 ,1,8495,328105 ,1,8496,328095 ,1,8497,328070 ,1,8498,84365 ,1,8499,2210 ,1,8500,542350 ,1,8501,400430 ,1,8502,162645 ,1,8503,45 ,1,8504,210655 ,1,8505,328060 ,1,8506,328050 ,1,8507,400430 ,1,8508,107050 ,1,8509,569260 ,1,8510,45 ,1,8511,5900 ,1,8512,209590 ,1,8513,45 ,1,8514,5900 ,1,8515,45 ,1,8516,5900 ,1,8517,45 ,1,8518,211985 ,1,8519,45 ,1,8520,5900 ,1,8521,45 ,1,8522,209800 ,1,8523,45 ,1,8524,5900 ,1,8525,209580 ,1,8526,45 ,1,8527,5900 ,1,8528,212985 ,1,8529,45 ,1,8530,5900 ,1,8531,213035 ,1,8532,45 ,1,8533,209800 ,1,8534,164105 ,1,8535,217770 ,1,8536,45 ,1,8537,209800 ,1,8538,45 ,1,8539,217770 ,1,8540,45 ,1,8541,5900 ,1,8542,609395 ,1,8543,45 ,1,8544,11510 ,1,8545,45 ,1,8546,5900 ,1,8547,45 ,1,8548,11510 ,1,8549,45 ,1,8550,5900 ,1,8551,45 ,1,8552,11510 ,1,8553,45 ,1,8554,11510 ,1,8555,45 ,1,8556,11510 ,1,8557,45 ,1,8558,5900 ,1,8559,45 ,1,8560,11510 ,1,8561,400430 ,1,8562,91960 ,1,8563,203365 ,1,8564,203375 ,1,8565,559345 ,1,8566,45 ,1,8567,203385 ,1,8568,45 ,1,8569,203375 ,1,8570,45 ,1,8571,203365 ,1,8572,164095 ,1,8573,217960 ,1,8574,594335 ,1,8575,45 ,1,8576,5080 ,1,8578,2395 ,1,8579,45 ,1,8580,9470 ,1,8581,130785 ,1,8582,217935 ,1,8583,609690 ,1,8584,45 ,1,8585,331650 ,1,8586,45 ,1,8587,331650 ,1,8588,328040 ,1,8589,181805 ,1,8590,290820 ,1,8591,217925 ,1,8592,594330 ,1,8593,45 ,1,8594,328025 ,1,8595,594300 ,1,8596,45 ,1,8597,227965 ,1,8598,217875 ,1,8599,45 ,1,8600,328025 ,1,8601,45 ,1,8602,227965 ,1,8603,164080 ,1,8604,217865 ,1,8605,45 ,1,8606,330070 ,1,8607,328015 ,1,8608,548680 ,1,8609,579895 ,1,8610,45 ,1,8611,259605 ,1,8612,228185 ,1,8613,580435 ,1,8614,45 ,1,8615,259605 ,1,8616,263295 ,1,8617,579740 ,1,8618,45 ,1,8619,259605 ,1,8620,262645 ,1,8621,45 ,1,8622,5900 ,1,8623,45 ,1,8624,259605 ,1,8625,580095 ,1,8626,45 ,1,8627,259605 ,1,8628,257480 ,1,8629,2210 ,1,8630,542350 ,1,8631,164070 ,1,8632,579800 ,1,8633,45 ,1,8634,259605 ,1,8635,230895 ,1,8636,569405 ,1,8637,45 ,1,8638,259605 ,1,8639,221670 ,1,8640,356560 ,1,8641,351800 ,1,8642,358050 ,1,8643,555390 ,1,8644,217855 ,1,8645,45 ,1,8646,330210 ,1,8647,579935 ,1,8648,45 ,1,8649,259605 ,1,8650,208825 ,1,8651,580290 ,1,8652,45 ,1,8653,259605 ,1,8654,184890 ,1,8655,356500 ,1,8656,400430 ,1,8657,144355 ,1,8658,577820 ,1,8659,45 ,1,8660,210655 ,1,8661,45 ,1,8662,11510 ,1,8663,45 ,1,8664,11510 ,1,8665,211700 ,1,8666,327955 ,1,8667,108360 ,1,8668,567415 ,1,8669,45 ,1,8670,179760 ,1,8671,45 ,1,8672,186035 ,1,8673,45 ,1,8674,5900 ,1,8675,209840 ,1,8676,372140 ,1,8677,180645 ,1,8678,164060 ,1,8679,217835 ,1,8680,217825 ,1,8681,45 ,1,8682,327945 ,1,8683,183255 ,1,8684,164050 ,1,8685,183235 ,1,8686,183165 ,1,8688,2395 ,1,8689,183955 ,1,8690,372110 ,1,8691,372130 ,1,8692,183735 ,1,8693,183995 ,1,8695,2395 ,1,8696,209910 ,1,8697,210140 ,1,8698,45 ,1,8699,5900 ,1,8700,217815 ,1,8701,212935 ,1,8702,164015 ,1,8703,568005 ,1,8704,45 ,1,8705,208615 ,1,8706,45 ,1,8707,205770 ,1,8708,45 ,1,8709,5900 ,1,8710,212730 ,1,8711,327935 ,1,8712,356385 ,1,8713,45 ,1,8714,5900 ,1,8715,327920 ,1,8716,164005 ,1,8717,45 ,1,8718,5900 ,1,8719,45 ,1,8720,5900 ,1,8721,218180 ,1,8722,356970 ,1,8723,163995 ,1,8724,163985 ,1,8725,45 ,1,8726,5900 ,1,8727,45 ,1,8728,5900 ,1,8729,327910 ,1,8730,45 ,1,8731,211985 ,1,8732,45 ,1,8733,5900 ,1,8734,327900 ,1,8735,327890 ,1,8736,212745 ,1,8737,45 ,1,8738,5900 ,1,8739,45 ,1,8740,5900 ,1,8741,45 ,1,8742,5900 ,1,8743,45 ,1,8744,5900 ,1,8745,212480 ,1,8746,45 ,1,8747,5900 ,1,8748,217805 ,1,8749,163965 ,1,8750,45 ,1,8751,208615 ,1,8752,45 ,1,8753,205770 ,1,8754,186035 ,1,8755,45 ,1,8756,5900 ,1,8757,45 ,1,8758,5900 ,1,8759,212220 ,1,8760,45 ,1,8761,5900 ,1,8762,400430 ,1,8763,134865 ,1,8764,575650 ,1,8765,45 ,1,8766,5900 ,1,8767,45 ,1,8768,5900 ,1,8769,45 ,1,8770,5900 ,1,8771,45 ,1,8772,211985 ,1,8773,45 ,1,8774,5900 ,1,8775,45 ,1,8776,209800 ,1,8777,45 ,1,8778,5900 ,1,8779,45 ,1,8780,5900 ,1,8781,45 ,1,8782,5900 ,1,8783,45 ,1,8784,209800 ,1,8785,45 ,1,8786,209800 ,1,8787,45 ,1,8788,217770 ,1,8789,45 ,1,8790,5900 ,1,8791,45 ,1,8792,11510 ,1,8793,45 ,1,8794,5900 ,1,8795,45 ,1,8796,11510 ,1,8797,45 ,1,8798,5900 ,1,8799,45 ,1,8800,11510 ,1,8801,45 ,1,8802,11510 ,1,8803,45 ,1,8804,11510 ,1,8805,45 ,1,8806,5900 ,1,8807,45 ,1,8808,11510 ,1,8809,327870 ,1,8810,134765 ,1,8811,45 ,1,8812,179760 ,1,8813,45 ,1,8814,186035 ,1,8815,45 ,1,8816,5900 ,1,8817,45 ,1,8818,5900 ,1,8819,217765 ,1,8820,45 ,1,8821,208615 ,1,8822,45 ,1,8823,205770 ,1,8824,45 ,1,8825,5900 ,1,8826,45 ,1,8827,5900 ,1,8828,45 ,1,8829,5900 ,1,8830,163955 ,1,8831,356625 ,1,8832,45 ,1,8833,5900 ,1,8834,327860 ,1,8835,356605 ,1,8836,45 ,1,8837,5900 ,1,8838,356795 ,1,8839,356785 ,1,8840,45 ,1,8841,5900 ,1,8842,356655 ,1,8843,356665 ,1,8844,356750 ,1,8845,45 ,1,8846,5900 ,1,8847,555385 ,1,8848,140790 ,1,8849,213530 ,1,8850,212650 ,1,8851,212700 ,1,8852,212660 ,1,8853,212710 ,1,8854,327850 ,1,8855,327840 ,1,8856,327820 ,1,8857,199650 ,1,8858,221515 ,1,8859,569610 ,1,8860,555350 ,1,8861,221885 ,1,8862,221505 ,1,8863,221250 ,1,8864,163945 ,1,8865,163935 ,1,8866,2210 ,1,8867,542350 ,1,8869,2395 ,1,8870,163885 ,1,8871,217755 ,1,8872,45 ,1,8873,330210 ,1,8874,221480 ,1,8875,400430 ,1,8876,92170 ,1,8877,45 ,1,8878,210655 ,1,8879,400430 ,1,8880,92235 ,1,8881,561625 ,1,8882,45 ,1,8883,203765 ,1,8884,217745 ,1,8885,181870 ,1,8886,181930 ,1,8887,327810 ,1,8888,92190 ,1,8889,45 ,1,8890,327800 ,1,8891,181910 ,1,8892,217735 ,1,8893,2210 ,1,8894,542350 ,1,8896,2395 ,1,8897,45 ,1,8898,9470 ,1,8900,2395 ,1,8901,45 ,1,8902,9470 ,1,8903,327790 ,1,8904,163875 ,1,8905,327755 ,1,8907,2395 ,1,8908,561660 ,1,8909,45 ,1,8910,9470 ,1,8912,2395 ,1,8913,45 ,1,8914,9470 ,1,8915,73530 ,1,8916,545995 ,1,8917,561645 ,1,8918,45 ,1,8919,5080 ,1,8921,2395 ,1,8922,45 ,1,8923,9470 ,1,8924,400430 ,1,8925,92600 ,1,8926,45 ,1,8927,210655 ,1,8928,2210 ,1,8929,542350 ,1,8930,327745 ,1,8931,327735 ,1,8932,400430 ,1,8933,92430 ,1,8934,565990 ,1,8935,270115 ,1,8936,327725 ,1,8937,581705 ,1,8938,306105 ,1,8939,589325 ,1,8941,2395 ,1,8942,400430 ,1,8943,91785 ,1,8944,45 ,1,8945,210655 ,1,8946,327715 ,1,8947,400430 ,1,8948,85755 ,1,8949,45 ,1,8950,210655 ,1,8951,200185 ,1,8952,555345 ,1,8953,327705 ,1,8954,181580 ,1,8955,555340 ,1,8956,327695 ,1,8957,358325 ,1,8958,163865 ,1,8959,358380 ,1,8960,163855 ,1,8961,327685 ,1,8962,358135 ,1,8963,327645 ,1,8964,358260 ,1,8965,327635 ,1,8966,358370 ,1,8967,305365 ,1,8968,141635 ,1,8969,163840 ,1,8970,358305 ,1,8971,163830 ,1,8972,327625 ,1,8973,291015 ,1,8974,217720 ,1,8975,358575 ,1,8976,327615 ,1,8977,227050 ,1,8978,2210 ,1,8979,542350 ,1,8980,45 ,1,8981,179760 ,1,8982,45 ,1,8983,209800 ,1,8984,327605 ,1,8985,163820 ,1,8986,555335 ,1,8987,250315 ,1,8988,217710 ,1,8989,594215 ,1,8990,45 ,1,8991,4315 ,1,8992,226485 ,1,8993,180865 ,1,8994,226600 ,1,8995,356305 ,1,8996,226645 ,1,8997,230525 ,1,8998,608520 ,1,8999,45 ,1,9000,327595 ,1,9001,45 ,1,9002,5900 ,1,9003,230505 ,1,9004,235045 ,1,9005,555325 ,1,9006,549345 ,1,9007,217700 ,1,9008,45 ,1,9009,343730 ,1,9010,215935 ,1,9011,555320 ,1,9012,609480 ,1,9013,45 ,1,9014,5900 ,1,9015,230495 ,1,9016,163810 ,1,9017,121000 ,1,9018,120975 ,1,9019,226085 ,1,9020,117265 ,1,9021,117215 ,1,9022,226690 ,1,9023,230365 ,1,9024,230410 ,1,9025,230515 ,1,9026,357940 ,1,9027,371755 ,1,9028,371685 ,1,9029,357930 ,1,9030,371865 ,1,9031,371695 ,1,9032,357920 ,1,9033,357890 ,1,9034,555315 ,1,9035,230315 ,1,9036,327585 ,1,9037,571800 ,1,9038,45 ,1,9039,5900 ,1,9040,226965 ,1,9041,226095 ,1,9042,258630 ,1,9043,327575 ,1,9044,212270 ,1,9045,212300 ,1,9046,212280 ,1,9047,212290 ,1,9048,327550 ,1,9049,250650 ,1,9050,250660 ,1,9051,250670 ,1,9052,250725 ,1,9053,250680 ,1,9054,250715 ,1,9055,241150 ,1,9056,163785 ,1,9057,163775 ,1,9058,163765 ,1,9059,550410 ,1,9060,241340 ,1,9061,241190 ,1,9062,241265 ,1,9063,241295 ,1,9064,241305 ,1,9065,241315 ,1,9066,354715 ,1,9067,241100 ,1,9068,241130 ,1,9069,241110 ,1,9070,241120 ,1,9071,163755 ,1,9072,327540 ,1,9073,2210 ,1,9074,542350 ,1,9075,327530 ,1,9076,569970 ,1,9077,45 ,1,9078,331650 ,1,9079,327520 ,1,9080,45 ,1,9081,331650 ,1,9082,358250 ,1,9083,327510 ,1,9084,358915 ,1,9085,358900 ,1,9086,163745 ,1,9087,163735 ,1,9088,217690 ,1,9089,45 ,1,9090,179760 ,1,9091,45 ,1,9092,209800 ,1,9093,263375 ,1,9094,263330 ,1,9095,263320 ,1,9096,263310 ,1,9097,15895 ,1,9098,356915 ,1,9099,163725 ,1,9100,163715 ,1,9101,163675 ,1,9102,370195 ,1,9103,370185 ,1,9104,370110 ,1,9105,370120 ,1,9106,585640 ,1,9107,45 ,1,9108,331650 ,1,9109,45 ,1,9110,331650 ,1,9111,327500 ,1,9112,180550 ,1,9113,269205 ,1,9114,199905 ,1,9115,176835 ,1,9116,374430 ,1,9117,552565 ,1,9118,249875 ,1,9119,327490 ,1,9120,327480 ,1,9121,327445 ,1,9122,327435 ,1,9123,180925 ,1,9124,327425 ,1,9125,2210 ,1,9126,542350 ,1,9127,163665 ,1,9128,2210 ,1,9129,542350 ,1,9130,163655 ,1,9131,163645 ,1,9132,327415 ,1,9133,359205 ,1,9134,359195 ,1,9135,2210 ,1,9136,542350 ,1,9137,2210 ,1,9138,542350 ,1,9139,327400 ,1,9140,2210 ,1,9141,542350 ,1,9142,327390 ,1,9143,555310 ,1,9144,327380 ,1,9145,204520 ,1,9146,589495 ,1,9147,45 ,1,9148,327370 ,1,9149,204725 ,1,9150,45 ,1,9151,276975 ,1,9152,306730 ,1,9153,327335 ,1,9154,359360 ,1,9155,227515 ,1,9156,327325 ,1,9157,327315 ,1,9158,204860 ,1,9159,2210 ,1,9160,542350 ,1,9161,229955 ,1,9162,359250 ,1,9163,359210 ,1,9164,327305 ,1,9165,359135 ,1,9166,163635 ,1,9167,230035 ,1,9168,230015 ,1,9169,208595 ,1,9170,230025 ,1,9171,230060 ,1,9172,217655 ,1,9173,327295 ,1,9174,217645 ,1,9175,327285 ,1,9176,327275 ,1,9177,224355 ,1,9178,359240 ,1,9179,163625 ,1,9180,2210 ,1,9181,542350 ,1,9182,542740 ,1,9183,577485 ,1,9184,542740 ,1,9185,549485 ,1,9186,217635 ,1,9187,542735 ,1,9188,573925 ,1,9189,542735 ,1,9190,549505 ,1,9191,610045 ,1,9192,45 ,1,9193,5900 ,1,9194,400430 ,1,9195,84390 ,1,9196,45 ,1,9197,210655 ,1,9198,327265 ,1,9199,327235 ,1,9200,327225 ,1,9201,327215 ,1,9202,327205 ,1,9203,327195 ,1,9204,327185 ,1,9205,179860 ,1,9206,327175 ,1,9207,327165 ,1,9208,561370 ,1,9209,198570 ,1,9210,327145 ,1,9211,400430 ,1,9212,87190 ,1,9213,45 ,1,9214,210655 ,1,9215,198935 ,1,9216,198905 ,1,9217,351790 ,1,9218,400430 ,1,9219,85865 ,1,9220,45 ,1,9221,330070 ,1,9222,351780 ,1,9223,351770 ,1,9224,400430 ,1,9225,85435 ,1,9226,400430 ,1,9227,85455 ,1,9228,45 ,1,9229,210655 ,1,9230,351760 ,1,9231,198115 ,1,9232,400430 ,1,9233,86000 ,1,9234,45 ,1,9235,210655 ,1,9236,400430 ,1,9237,85645 ,1,9238,45 ,1,9239,210655 ,1,9240,327135 ,1,9241,400430 ,1,9242,86975 ,1,9243,45 ,1,9244,210655 ,1,9245,327125 ,1,9246,400430 ,1,9247,84965 ,1,9248,400430 ,1,9249,84995 ,1,9250,197900 ,1,9251,327115 ,1,9252,327095 ,1,9253,400430 ,1,9254,86870 ,1,9255,45 ,1,9256,210655 ,1,9257,400430 ,1,9258,84280 ,1,9259,45 ,1,9260,210655 ,1,9261,400430 ,1,9262,165440 ,1,9263,45 ,1,9264,327085 ,1,9265,199660 ,1,9266,327075 ,1,9267,327065 ,1,9268,327030 ,1,9269,186250 ,1,9270,45 ,1,9271,327595 ,1,9272,272435 ,1,9273,327020 ,1,9274,327010 ,1,9275,589130 ,1,9276,45 ,1,9277,9435 ,1,9278,327000 ,1,9279,2210 ,1,9280,542350 ,1,9281,2210 ,1,9282,542350 ,1,9283,2210 ,1,9284,542350 ,1,9285,370460 ,1,9286,542730 ,1,9287,594200 ,1,9288,542730 ,1,9289,542710 ,1,9290,594200 ,1,9291,542710 ,1,9292,555280 ,1,9293,542705 ,1,9294,581465 ,1,9295,542705 ,1,9296,542700 ,1,9297,581465 ,1,9298,542700 ,1,9299,542695 ,1,9300,587755 ,1,9301,542695 ,1,9302,542685 ,1,9303,587755 ,1,9304,542685 ,1,9305,542680 ,1,9306,594195 ,1,9307,542680 ,1,9308,542675 ,1,9309,594195 ,1,9310,542675 ,1,9311,370505 ,1,9312,585485 ,1,9313,45 ,1,9314,326985 ,1,9315,45 ,1,9316,326975 ,1,9317,585600 ,1,9318,45 ,1,9319,326965 ,1,9320,45 ,1,9321,326955 ,1,9322,2210 ,1,9323,542350 ,1,9324,585520 ,1,9325,45 ,1,9326,326940 ,1,9327,45 ,1,9328,326930 ,1,9329,555275 ,1,9330,2210 ,1,9331,542350 ,1,9332,611295 ,1,9333,45 ,1,9334,326985 ,1,9335,45 ,1,9336,326975 ,1,9337,2135 ,1,9338,555270 ,1,9339,187485 ,1,9340,187445 ,1,9341,187425 ,1,9342,163615 ,1,9343,542670 ,1,9344,594195 ,1,9345,542670 ,1,9346,542645 ,1,9347,581465 ,1,9348,542645 ,1,9349,542640 ,1,9350,594200 ,1,9351,542640 ,1,9352,542635 ,1,9353,581465 ,1,9354,542635 ,1,9355,542630 ,1,9356,587755 ,1,9357,542630 ,1,9358,542625 ,1,9359,594195 ,1,9360,542625 ,1,9361,45 ,1,9362,171855 ,1,9363,45 ,1,9364,265665 ,1,9365,45 ,1,9366,171195 ,1,9367,45 ,1,9368,171855 ,1,9369,400430 ,1,9370,126820 ,1,9371,45 ,1,9372,179760 ,1,9373,549315 ,1,9374,400430 ,1,9375,126460 ,1,9376,45 ,1,9377,179760 ,1,9378,372505 ,1,9379,550685 ,1,9380,217625 ,1,9381,552945 ,1,9382,45 ,1,9383,179760 ,1,9384,587905 ,1,9385,45 ,1,9386,326920 ,1,9387,326910 ,1,9388,2280 ,1,9389,542080 ,1,9390,2280 ,1,9391,542270 ,1,9392,555265 ,1,9393,236635 ,1,9394,2280 ,1,9395,542095 ,1,9396,2280 ,1,9397,542080 ,1,9398,587785 ,1,9399,45 ,1,9400,13320 ,1,9401,217615 ,1,9402,2210 ,1,9403,542350 ,1,9404,587745 ,1,9405,45 ,1,9406,326900 ,1,9407,217605 ,1,9408,326890 ,1,9409,2280 ,1,9410,542095 ,1,9411,45 ,1,9412,13320 ,1,9413,214155 ,1,9414,45 ,1,9415,13320 ,1,9416,2280 ,1,9417,542095 ,1,9418,217595 ,1,9419,357260 ,1,9420,354360 ,1,9421,45 ,1,9422,179760 ,1,9423,45 ,1,9424,11690 ,1,9425,357215 ,1,9426,231570 ,1,9427,231580 ,1,9428,231560 ,1,9429,225470 ,1,9430,5845 ,1,9431,299490 ,1,9432,299480 ,1,9433,248695 ,1,9434,249045 ,1,9435,299500 ,1,9436,612690 ,1,9437,354245 ,1,9438,45 ,1,9439,4315 ,1,9440,45 ,1,9441,326880 ,1,9442,326870 ,1,9443,299810 ,1,9444,163605 ,1,9445,217585 ,1,9446,552870 ,1,9447,587330 ,1,9448,45 ,1,9449,342050 ,1,9450,217560 ,1,9451,217550 ,1,9452,552845 ,1,9453,217540 ,1,9454,45 ,1,9455,331110 ,1,9456,217530 ,1,9457,300115 ,1,9458,326825 ,1,9459,217515 ,1,9460,217505 ,1,9461,45 ,1,9462,331110 ,1,9463,594085 ,1,9464,45 ,1,9465,13320 ,1,9466,184205 ,1,9467,552480 ,1,9468,263525 ,1,9469,552475 ,1,9470,217495 ,1,9471,217485 ,1,9472,217450 ,1,9473,45 ,1,9474,169850 ,1,9475,585825 ,1,9476,45 ,1,9477,198270 ,1,9478,45 ,1,9479,169850 ,1,9480,45 ,1,9481,198270 ,1,9482,45 ,1,9483,169850 ,1,9484,45 ,1,9485,198270 ,1,9486,326815 ,1,9487,263420 ,1,9488,552470 ,1,9489,326805 ,1,9490,326795 ,1,9491,326775 ,1,9492,272805 ,1,9493,263485 ,1,9494,45 ,1,9495,13320 ,1,9496,45 ,1,9497,13320 ,1,9498,45 ,1,9499,13320 ,1,9500,326765 ,1,9501,326755 ,1,9502,295320 ,1,9503,6235 ,1,9504,326745 ,1,9505,373810 ,1,9506,45 ,1,9507,5900 ,1,9508,263450 ,1,9509,326710 ,1,9510,374740 ,1,9511,273005 ,1,9512,217440 ,1,9513,613080 ,1,9514,45 ,1,9515,175900 ,1,9516,263430 ,1,9517,555255 ,1,9518,263440 ,1,9519,163575 ,1,9520,163565 ,1,9521,163555 ,1,9522,163545 ,1,9523,163535 ,1,9524,163525 ,1,9525,163515 ,1,9526,163505 ,1,9527,163465 ,1,9528,163455 ,1,9529,163445 ,1,9530,45 ,1,9531,326890 ,1,9532,45 ,1,9533,326150 ,1,9534,45 ,1,9535,326140 ,1,9536,45 ,1,9537,326130 ,1,9538,45 ,1,9539,326105 ,1,9540,45 ,1,9541,326095 ,1,9542,45 ,1,9543,326085 ,1,9544,45 ,1,9545,326075 ,1,9546,14175 ,1,9547,14165 ,1,9549,2395 ,1,9550,45 ,1,9551,9470 ,1,9552,295185 ,1,9553,613085 ,1,9554,163435 ,1,9555,326065 ,1,9556,2210 ,1,9557,542350 ,1,9558,45 ,1,9559,326055 ,1,9560,326045 ,1,9561,373475 ,1,9562,163420 ,1,9563,357405 ,1,9564,357500 ,1,9565,163410 ,1,9566,196705 ,1,9567,217430 ,1,9568,217420 ,1,9569,45 ,1,9570,179760 ,1,9571,357850 ,1,9572,326035 ,1,9573,15430 ,1,9574,163400 ,1,9575,2280 ,1,9576,542095 ,1,9577,2280 ,1,9578,542095 ,1,9579,217410 ,1,9580,357880 ,1,9581,15485 ,1,9582,163390 ,1,9583,356760 ,1,9584,369920 ,1,9585,357250 ,1,9586,576430 ,1,9587,45 ,1,9588,326000 ,1,9589,217400 ,1,9590,273280 ,1,9591,555250 ,1,9592,175785 ,1,9593,247160 ,1,9594,247140 ,1,9595,247150 ,1,9596,247130 ,1,9597,358395 ,1,9599,2395 ,1,9600,45 ,1,9601,9470 ,1,9602,2280 ,1,9603,542095 ,1,9604,2280 ,1,9605,542095 ,1,9606,2280 ,1,9607,542095 ,1,9608,213700 ,1,9609,236735 ,1,9610,551460 ,1,9611,163365 ,1,9612,168200 ,1,9613,370610 ,1,9614,277500 ,1,9615,374525 ,1,9616,374320 ,1,9617,45 ,1,9618,179760 ,1,9619,45 ,1,9620,329805 ,1,9621,45 ,1,9622,325990 ,1,9623,45 ,1,9624,209800 ,1,9625,163355 ,1,9626,371255 ,1,9627,302395 ,1,9628,2280 ,1,9629,542095 ,1,9630,2280 ,1,9631,542095 ,1,9632,231975 ,1,9633,2280 ,1,9634,542095 ,1,9635,2280 ,1,9636,542095 ,1,9637,15310 ,1,9638,354890 ,1,9639,354795 ,1,9640,217390 ,1,9641,357295 ,1,9642,163345 ,1,9643,2210 ,1,9644,542350 ,1,9645,2210 ,1,9646,542350 ,1,9647,217380 ,1,9648,222450 ,1,9649,222540 ,1,9650,222340 ,1,9651,222400 ,1,9652,222390 ,1,9653,222520 ,1,9654,220970 ,1,9655,222480 ,1,9656,222360 ,1,9657,222350 ,1,9658,217350 ,1,9659,217340 ,1,9660,354860 ,1,9661,357385 ,1,9662,45 ,1,9663,179760 ,1,9664,555245 ,1,9665,325980 ,1,9666,45 ,1,9667,242450 ,1,9668,217330 ,1,9669,45 ,1,9670,179760 ,1,9671,217320 ,1,9672,269605 ,1,9673,269615 ,1,9674,555240 ,1,9675,555210 ,1,9676,593990 ,1,9677,45 ,1,9678,5900 ,1,9679,45 ,1,9680,5900 ,1,9681,569680 ,1,9682,45 ,1,9683,341055 ,1,9684,45 ,1,9685,5900 ,1,9686,45 ,1,9687,5900 ,1,9688,45 ,1,9689,5900 ,1,9690,45 ,1,9691,5900 ,1,9692,580140 ,1,9693,45 ,1,9694,5900 ,1,9695,45 ,1,9696,5900 ,1,9697,45 ,1,9698,5900 ,1,9699,45 ,1,9700,5900 ,1,9701,45 ,1,9702,5900 ,1,9703,45 ,1,9704,5900 ,1,9705,45 ,1,9706,5900 ,1,9707,45 ,1,9708,5900 ,1,9709,568630 ,1,9710,45 ,1,9711,341055 ,1,9712,45 ,1,9713,5900 ,1,9714,45 ,1,9715,5900 ,1,9716,587260 ,1,9717,45 ,1,9718,5900 ,1,9719,45 ,1,9720,5900 ,1,9721,45 ,1,9722,5900 ,1,9723,569215 ,1,9724,45 ,1,9725,5900 ,1,9726,45 ,1,9727,5900 ,1,9728,45 ,1,9729,5900 ,1,9730,216230 ,1,9731,163335 ,1,9732,215505 ,1,9733,555205 ,1,9734,2210 ,1,9735,542350 ,1,9736,45 ,1,9737,5900 ,1,9738,45 ,1,9739,5900 ,1,9740,45 ,1,9741,5900 ,1,9742,45 ,1,9743,5900 ,1,9744,45 ,1,9745,5900 ,1,9746,45 ,1,9747,5900 ,1,9748,45 ,1,9749,5900 ,1,9750,45 ,1,9751,5900 ,1,9752,45 ,1,9753,5900 ,1,9754,45 ,1,9755,5900 ,1,9756,45 ,1,9757,5900 ,1,9758,45 ,1,9759,5900 ,1,9760,45 ,1,9761,5900 ,1,9762,45 ,1,9763,5900 ,1,9764,45 ,1,9765,5900 ,1,9766,45 ,1,9767,5900 ,1,9768,587255 ,1,9769,45 ,1,9770,5900 ,1,9771,569210 ,1,9772,45 ,1,9773,5900 ,1,9774,593980 ,1,9775,45 ,1,9776,5900 ,1,9777,593945 ,1,9778,45 ,1,9779,325970 ,1,9780,45 ,1,9781,5900 ,1,9782,45 ,1,9783,5900 ,1,9784,45 ,1,9785,5900 ,1,9786,217810 ,1,9787,45 ,1,9788,325970 ,1,9789,45 ,1,9790,5900 ,1,9791,45 ,1,9792,5900 ,1,9793,45 ,1,9794,5900 ,1,9795,45 ,1,9796,5900 ,1,9797,45 ,1,9798,5900 ,1,9799,555195 ,1,9800,45 ,1,9801,5900 ,1,9802,45 ,1,9803,5900 ,1,9804,45 ,1,9805,5900 ,1,9806,45 ,1,9807,5900 ,1,9808,45 ,1,9809,5900 ,1,9810,45 ,1,9811,5900 ,1,9812,45 ,1,9813,5900 ,1,9814,550895 ,1,9815,45 ,1,9816,341055 ,1,9817,45 ,1,9818,5900 ,1,9819,45 ,1,9820,5900 ,1,9821,45 ,1,9822,5900 ,1,9823,45 ,1,9824,5900 ,1,9825,45 ,1,9826,5900 ,1,9827,45 ,1,9828,5900 ,1,9829,45 ,1,9830,5900 ,1,9831,45 ,1,9832,331650 ,1,9833,45 ,1,9834,5900 ,1,9835,45 ,1,9836,5900 ,1,9837,45 ,1,9838,5900 ,1,9839,45 ,1,9840,5900 ,1,9841,45 ,1,9842,5900 ,1,9843,216645 ,1,9844,45 ,1,9845,331650 ,1,9846,45 ,1,9847,331650 ,1,9848,45 ,1,9849,5900 ,1,9850,45 ,1,9851,5900 ,1,9852,217300 ,1,9853,45 ,1,9854,209800 ,1,9855,45 ,1,9856,331650 ,1,9857,45 ,1,9858,331650 ,1,9859,45 ,1,9860,5900 ,1,9861,45 ,1,9862,5900 ,1,9863,45 ,1,9864,5900 ,1,9865,45 ,1,9866,5900 ,1,9867,45 ,1,9868,5900 ,1,9869,45 ,1,9870,5900 ,1,9871,45 ,1,9872,5900 ,1,9873,45 ,1,9874,5900 ,1,9875,45 ,1,9876,5900 ,1,9878,2395 ,1,9879,400430 ,1,9880,65720 ,1,9881,607355 ,1,9882,45 ,1,9883,11510 ,1,9884,607350 ,1,9885,45 ,1,9886,5900 ,1,9887,555190 ,1,9888,555185 ,1,9889,555180 ,1,9890,217290 ,1,9891,607010 ,1,9892,45 ,1,9893,175900 ,1,9894,606990 ,1,9895,45 ,1,9896,11510 ,1,9897,607020 ,1,9898,45 ,1,9899,5900 ,1,9900,607015 ,1,9901,45 ,1,9902,5900 ,1,9903,45 ,1,9904,5900 ,1,9905,45 ,1,9906,175900 ,1,9907,45 ,1,9908,11510 ,1,9909,45 ,1,9910,5900 ,1,9911,45 ,1,9912,5900 ,1,9913,612015 ,1,9914,45 ,1,9915,5900 ,1,9916,555175 ,1,9917,555155 ,1,9918,555150 ,1,9919,555145 ,1,9920,400430 ,1,9921,56290 ,1,9922,606225 ,1,9923,45 ,1,9924,5900 ,1,9925,45 ,1,9926,5900 ,1,9927,558900 ,1,9928,45 ,1,9929,171855 ,1,9930,555140 ,1,9931,45 ,1,9932,343730 ,1,9933,606230 ,1,9934,45 ,1,9935,5900 ,1,9936,217280 ,1,9937,45 ,1,9938,325950 ,1,9939,45 ,1,9940,325940 ,1,9941,45 ,1,9942,5900 ,1,9943,45 ,1,9944,5900 ,1,9945,45 ,1,9946,4765 ,1,9947,45 ,1,9948,11510 ,1,9949,45 ,1,9950,5900 ,1,9951,45 ,1,9952,11510 ,1,9953,45 ,1,9954,5900 ,1,9955,45 ,1,9956,11690 ,1,9957,45 ,1,9958,5900 ,1,9959,400430 ,1,9960,56805 ,1,9961,606325 ,1,9962,45 ,1,9963,11510 ,1,9964,606320 ,1,9965,45 ,1,9966,5900 ,1,9967,555135 ,1,9968,45 ,1,9969,5900 ,1,9970,45 ,1,9971,5900 ,1,9972,45 ,1,9973,5900 ,1,9974,2210 ,1,9975,542350 ,1,9976,555130 ,1,9977,45 ,1,9978,5900 ,1,9979,2210 ,1,9980,542350 ,1,9981,45 ,1,9982,5900 ,1,9983,45 ,1,9984,5900 ,1,9985,45 ,1,9986,5900 ,1,9987,2210 ,1,9988,542350 ,1,9989,45 ,1,9990,5900 ,1,9991,555125 ,1,9992,555120 ,1,9993,163320 ,1,9994,542620 ,1,9995,595515 ,1,9996,542620 ,1,9997,542615 ,1,9998,595510 ,1,9999,542615 ,1,10000,555110 ,1,10001,206265 ,1,10002,194970 ,1,10003,611965 ,1,10004,45 ,1,10005,195155 ,1,10006,611960 ,1,10007,45 ,1,10008,5900 ,1,10009,553980 ,1,10010,542610 ,1,10011,595515 ,1,10012,542610 ,1,10013,45 ,1,10014,5900 ,1,10015,400430 ,1,10016,90410 ,1,10017,555105 ,1,10018,555100 ,1,10019,45 ,1,10020,11510 ,1,10021,45 ,1,10022,11510 ,1,10023,555095 ,1,10024,45 ,1,10025,11510 ,1,10026,45 ,1,10027,13320 ,1,10028,45 ,1,10029,11510 ,1,10030,45 ,1,10031,11510 ,1,10032,400430 ,1,10033,127825 ,1,10034,45 ,1,10035,210905 ,1,10036,45 ,1,10037,210905 ,1,10038,2280 ,1,10039,542095 ,1,10040,2280 ,1,10041,542095 ,1,10042,2280 ,1,10043,542095 ,1,10044,2280 ,1,10045,542095 ,1,10046,2280 ,1,10047,542095 ,1,10048,7565 ,1,10049,2280 ,1,10050,542095 ,1,10051,2280 ,1,10052,542095 ,1,10053,2280 ,1,10054,542095 ,1,10055,2280 ,1,10056,542095 ,1,10057,325930 ,1,10058,2210 ,1,10059,542350 ,1,10060,325905 ,1,10061,45 ,1,10062,175900 ,1,10063,400430 ,1,10064,199220 ,1,10065,325895 ,1,10066,573650 ,1,10067,593930 ,1,10068,45 ,1,10069,331650 ,1,10070,202890 ,1,10071,217270 ,1,10072,163310 ,1,10073,555085 ,1,10074,234315 ,1,10075,571730 ,1,10076,45 ,1,10077,5900 ,1,10078,325885 ,1,10079,400430 ,1,10080,113935 ,1,10081,45 ,1,10082,343730 ,1,10083,45 ,1,10084,5900 ,1,10085,542575 ,1,10086,593925 ,1,10087,542575 ,1,10088,542570 ,1,10089,609590 ,1,10090,542570 ,1,10091,120585 ,1,10092,120565 ,1,10093,45 ,1,10094,259605 ,1,10095,228045 ,1,10096,45 ,1,10097,276975 ,1,10098,228880 ,1,10099,356520 ,1,10100,356510 ,1,10101,571170 ,1,10102,45 ,1,10103,331650 ,1,10104,45 ,1,10105,331650 ,1,10106,325875 ,1,10107,551470 ,1,10108,227965 ,1,10109,227955 ,1,10110,400430 ,1,10111,166770 ,1,10112,45 ,1,10113,325860 ,1,10114,45 ,1,10115,325850 ,1,10116,217225 ,1,10117,400430 ,1,10118,113830 ,1,10119,45 ,1,10120,343730 ,1,10121,224015 ,1,10122,555075 ,1,10123,586865 ,1,10124,45 ,1,10125,325840 ,1,10126,217215 ,1,10127,325830 ,1,10128,575420 ,1,10129,45 ,1,10130,331650 ,1,10131,325810 ,1,10132,589350 ,1,10133,45 ,1,10134,259605 ,1,10135,296510 ,1,10136,593920 ,1,10137,45 ,1,10138,331650 ,1,10139,237730 ,1,10140,237740 ,1,10141,237720 ,1,10142,549775 ,1,10143,217205 ,1,10144,325790 ,1,10145,2210 ,1,10146,542350 ,1,10147,574355 ,1,10148,45 ,1,10149,310000 ,1,10150,45 ,1,10151,325780 ,1,10152,325765 ,1,10153,45 ,1,10154,208615 ,1,10155,549295 ,1,10156,217190 ,1,10157,217180 ,1,10158,549085 ,1,10159,555070 ,1,10160,555035 ,1,10161,325755 ,1,10162,550760 ,1,10163,552615 ,1,10164,325745 ,1,10165,325735 ,1,10166,550375 ,1,10167,325710 ,1,10168,217170 ,1,10169,45 ,1,10170,179760 ,1,10171,570340 ,1,10172,45 ,1,10173,186035 ,1,10174,356325 ,1,10175,555030 ,1,10176,163300 ,1,10177,163290 ,1,10178,325700 ,1,10179,226545 ,1,10180,325690 ,1,10181,15140 ,1,10182,15885 ,1,10184,2395 ,1,10185,45 ,1,10186,9470 ,1,10187,199445 ,1,10188,15870 ,1,10189,163255 ,1,10190,325680 ,1,10191,258650 ,1,10192,260860 ,1,10193,260850 ,1,10194,542565 ,1,10195,593875 ,1,10196,542565 ,1,10197,551405 ,1,10198,550065 ,1,10199,555025 ,1,10200,45 ,1,10201,209800 ,1,10202,45 ,1,10203,217770 ,1,10204,45 ,1,10205,5900 ,1,10206,400430 ,1,10207,165120 ,1,10208,45 ,1,10209,276975 ,1,10210,45 ,1,10211,190350 ,1,10212,550200 ,1,10213,325665 ,1,10214,119110 ,1,10215,217160 ,1,10216,571560 ,1,10217,45 ,1,10218,331650 ,1,10219,45 ,1,10220,331650 ,1,10221,593870 ,1,10222,45 ,1,10223,331650 ,1,10224,577055 ,1,10225,549480 ,1,10226,549550 ,1,10227,325655 ,1,10228,325645 ,1,10229,325635 ,1,10230,325595 ,1,10231,325585 ,1,10232,325575 ,1,10233,325565 ,1,10234,325550 ,1,10235,325540 ,1,10236,325530 ,1,10237,325520 ,1,10238,325485 ,1,10239,325475 ,1,10240,325465 ,1,10241,325455 ,1,10242,325440 ,1,10243,241360 ,1,10244,575275 ,1,10245,575290 ,1,10246,45 ,1,10247,331650 ,1,10248,580405 ,1,10249,45 ,1,10250,259605 ,1,10251,262345 ,1,10252,579810 ,1,10253,45 ,1,10254,259605 ,1,10255,239440 ,1,10256,100140 ,1,10257,45 ,1,10258,259605 ,1,10259,45 ,1,10260,5900 ,1,10261,579750 ,1,10262,45 ,1,10263,259605 ,1,10264,261460 ,1,10265,593865 ,1,10266,45 ,1,10267,325430 ,1,10268,570130 ,1,10269,45 ,1,10270,5900 ,1,10271,400430 ,1,10272,88160 ,1,10273,45 ,1,10274,344025 ,1,10275,163245 ,1,10276,200075 ,1,10277,200195 ,1,10278,325420 ,1,10279,45 ,1,10280,5900 ,1,10281,325410 ,1,10282,325385 ,1,10283,325375 ,1,10284,325365 ,1,10285,325355 ,1,10286,325345 ,1,10287,325335 ,1,10288,45 ,1,10289,5900 ,1,10290,45 ,1,10291,5900 ,1,10292,45 ,1,10293,5900 ,1,10294,207570 ,1,10295,154300 ,1,10296,567400 ,1,10297,45 ,1,10298,5900 ,1,10299,163235 ,1,10300,45 ,1,10301,179760 ,1,10302,45 ,1,10303,186035 ,1,10304,2210 ,1,10305,542350 ,1,10306,154835 ,1,10307,154720 ,1,10308,154855 ,1,10309,154740 ,1,10310,155120 ,1,10311,371625 ,1,10312,217125 ,1,10313,371815 ,1,10314,371765 ,1,10315,371775 ,1,10316,371655 ,1,10317,2210 ,1,10318,542350 ,1,10319,371480 ,1,10320,371490 ,1,10321,371370 ,1,10322,371390 ,1,10323,371460 ,1,10324,371570 ,1,10325,371595 ,1,10326,371440 ,1,10327,371580 ,1,10328,371450 ,1,10329,371380 ,1,10330,45 ,1,10331,11510 ,1,10332,45 ,1,10333,209800 ,1,10334,567405 ,1,10335,45 ,1,10336,5900 ,1,10337,163225 ,1,10338,217115 ,1,10339,212945 ,1,10340,45 ,1,10341,208615 ,1,10342,45 ,1,10343,212880 ,1,10344,233065 ,1,10345,233075 ,1,10346,356445 ,1,10347,270175 ,1,10348,163215 ,1,10349,325325 ,1,10350,111210 ,1,10351,45 ,1,10352,211985 ,1,10353,400430 ,1,10354,109465 ,1,10355,569470 ,1,10356,45 ,1,10357,5900 ,1,10358,45 ,1,10359,5900 ,1,10360,45 ,1,10361,5900 ,1,10362,45 ,1,10363,5900 ,1,10364,45 ,1,10365,209800 ,1,10366,45 ,1,10367,217770 ,1,10368,45 ,1,10369,5900 ,1,10370,45 ,1,10371,5900 ,1,10372,45 ,1,10373,11510 ,1,10374,45 ,1,10375,5900 ,1,10376,45 ,1,10377,11510 ,1,10378,45 ,1,10379,5900 ,1,10380,45 ,1,10381,11510 ,1,10382,45 ,1,10383,11510 ,1,10384,45 ,1,10385,11510 ,1,10386,45 ,1,10387,5900 ,1,10388,45 ,1,10389,11510 ,1,10390,45 ,1,10391,5900 ,1,10392,45 ,1,10393,5900 ,1,10394,45 ,1,10395,5900 ,1,10396,45 ,1,10397,209800 ,1,10398,45 ,1,10399,209800 ,1,10400,45 ,1,10401,209800 ,1,10402,45 ,1,10403,217770 ,1,10404,400430 ,1,10405,110985 ,1,10406,45 ,1,10407,276975 ,1,10408,370970 ,1,10409,45 ,1,10410,5900 ,1,10411,184680 ,1,10412,45 ,1,10413,5900 ,1,10414,45 ,1,10415,5900 ,1,10416,211830 ,1,10417,163205 ,1,10418,2210 ,1,10419,542350 ,1,10420,2210 ,1,10421,542350 ,1,10422,2210 ,1,10423,542350 ,1,10424,2210 ,1,10425,542350 ,1,10427,2395 ,1,10428,45 ,1,10429,9470 ,1,10430,185400 ,1,10431,185390 ,1,10432,185410 ,1,10433,370920 ,1,10434,370910 ,1,10435,163195 ,1,10436,546035 ,1,10438,2395 ,1,10439,561520 ,1,10440,45 ,1,10441,9470 ,1,10442,163185 ,1,10443,218745 ,1,10444,185025 ,1,10446,2395 ,1,10447,45 ,1,10448,9470 ,1,10450,2395 ,1,10451,45 ,1,10452,9470 ,1,10453,185205 ,1,10455,2395 ,1,10456,45 ,1,10457,9470 ,1,10458,163155 ,1,10459,163145 ,1,10460,163135 ,1,10461,555020 ,1,10462,548405 ,1,10463,325315 ,1,10464,2210 ,1,10465,542350 ,1,10466,221410 ,1,10467,217105 ,1,10468,262310 ,1,10469,207410 ,1,10470,325290 ,1,10471,2210 ,1,10472,542350 ,1,10473,569660 ,1,10474,45 ,1,10475,329440 ,1,10476,325280 ,1,10477,221400 ,1,10478,2210 ,1,10479,542350 ,1,10480,45 ,1,10481,5900 ,1,10482,45 ,1,10483,5900 ,1,10484,217095 ,1,10485,45 ,1,10486,5900 ,1,10487,372200 ,1,10488,45 ,1,10489,179760 ,1,10490,45 ,1,10491,186035 ,1,10492,256445 ,1,10493,45 ,1,10494,5900 ,1,10495,356550 ,1,10496,372865 ,1,10498,2395 ,1,10500,2395 ,1,10501,325270 ,1,10502,325260 ,1,10503,2210 ,1,10504,542350 ,1,10505,185185 ,1,10507,2395 ,1,10508,45 ,1,10509,9470 ,1,10510,45 ,1,10511,5900 ,1,10512,218310 ,1,10513,370900 ,1,10514,325245 ,1,10515,45 ,1,10516,190350 ,1,10517,45 ,1,10518,5900 ,1,10519,325235 ,1,10520,221420 ,1,10521,217085 ,1,10522,45 ,1,10523,330210 ,1,10524,221495 ,1,10525,371010 ,1,10526,2210 ,1,10527,542350 ,1,10528,185215 ,1,10529,163125 ,1,10531,2395 ,1,10532,45 ,1,10533,9470 ,1,10534,45 ,1,10535,5900 ,1,10536,217075 ,1,10537,45 ,1,10538,5900 ,1,10539,45 ,1,10540,208615 ,1,10541,45 ,1,10542,205770 ,1,10543,45 ,1,10544,5900 ,1,10545,371135 ,1,10546,400430 ,1,10547,100555 ,1,10548,45 ,1,10549,276975 ,1,10550,562200 ,1,10551,45 ,1,10552,5900 ,1,10553,163110 ,1,10555,2395 ,1,10556,555005 ,1,10557,45 ,1,10558,209800 ,1,10559,45 ,1,10560,217770 ,1,10561,45 ,1,10562,5900 ,1,10563,45 ,1,10564,5900 ,1,10565,45 ,1,10566,5900 ,1,10567,325225 ,1,10568,325215 ,1,10569,400430 ,1,10570,131700 ,1,10571,45 ,1,10572,210655 ,1,10573,325190 ,1,10574,2210 ,1,10575,542350 ,1,10576,2210 ,1,10577,542350 ,1,10578,223100 ,1,10579,400430 ,1,10580,103125 ,1,10581,45 ,1,10582,276975 ,1,10583,185365 ,1,10584,371125 ,1,10585,185235 ,1,10587,2395 ,1,10588,45 ,1,10589,9470 ,1,10591,2395 ,1,10592,45 ,1,10593,9470 ,1,10594,565975 ,1,10595,325180 ,1,10596,325170 ,1,10597,325160 ,1,10598,325145 ,1,10599,400430 ,1,10600,124130 ,1,10601,45 ,1,10602,9435 ,1,10603,45 ,1,10604,232600 ,1,10605,163100 ,1,10606,232910 ,1,10607,325135 ,1,10608,357770 ,1,10609,325125 ,1,10610,325115 ,1,10611,325080 ,1,10612,325070 ,1,10613,572845 ,1,10614,231915 ,1,10615,183710 ,1,10617,2395 ,1,10618,183225 ,1,10619,184005 ,1,10620,183355 ,1,10621,45 ,1,10622,9435 ,1,10623,45 ,1,10624,232600 ,1,10625,325060 ,1,10626,369550 ,1,10627,359645 ,1,10628,217065 ,1,10629,593820 ,1,10630,45 ,1,10631,5900 ,1,10632,575465 ,1,10633,45 ,1,10634,5900 ,1,10635,550190 ,1,10636,163090 ,1,10637,223165 ,1,10638,223155 ,1,10639,358350 ,1,10640,358280 ,1,10641,358315 ,1,10642,358270 ,1,10643,198425 ,1,10644,358295 ,1,10645,358360 ,1,10646,223515 ,1,10647,163080 ,1,10648,223505 ,1,10649,45 ,1,10650,5900 ,1,10651,548445 ,1,10652,593815 ,1,10653,45 ,1,10654,331650 ,1,10655,250620 ,1,10657,2395 ,1,10658,549640 ,1,10659,549675 ,1,10660,548750 ,1,10661,325050 ,1,10662,198550 ,1,10663,325035 ,1,10664,325025 ,1,10665,325015 ,1,10666,358555 ,1,10667,356980 ,1,10668,241140 ,1,10669,325005 ,1,10670,246350 ,1,10671,324970 ,1,10672,550005 ,1,10673,324960 ,1,10674,324950 ,1,10675,369385 ,1,10676,357190 ,1,10677,324940 ,1,10678,358565 ,1,10679,358585 ,1,10680,190515 ,1,10681,190425 ,1,10682,190455 ,1,10683,324930 ,1,10684,358210 ,1,10685,163045 ,1,10686,45 ,1,10687,11510 ,1,10688,217055 ,1,10689,358495 ,1,10690,45 ,1,10691,11510 ,1,10692,217040 ,1,10693,358485 ,1,10694,324920 ,1,10695,45 ,1,10696,11510 ,1,10697,217030 ,1,10698,358505 ,1,10699,217020 ,1,10700,45 ,1,10701,179760 ,1,10702,324910 ,1,10703,324900 ,1,10704,324880 ,1,10705,324870 ,1,10706,163035 ,1,10707,15365 ,1,10708,542560 ,1,10709,593805 ,1,10710,542560 ,1,10711,586070 ,1,10712,45 ,1,10713,331650 ,1,10714,45 ,1,10715,331650 ,1,10716,241020 ,1,10717,179555 ,1,10718,2210 ,1,10719,542350 ,1,10720,2210 ,1,10721,542350 ,1,10722,45 ,1,10723,11510 ,1,10724,608645 ,1,10725,45 ,1,10726,11510 ,1,10727,45 ,1,10728,11510 ,1,10729,45 ,1,10730,11510 ,1,10732,2395 ,1,10733,45 ,1,10734,9470 ,1,10736,2395 ,1,10737,45 ,1,10738,9470 ,1,10739,45 ,1,10740,11510 ,1,10741,45 ,1,10742,11510 ,1,10743,45 ,1,10744,11510 ,1,10745,45 ,1,10746,11510 ,1,10747,548425 ,1,10748,324860 ,1,10749,227760 ,1,10750,227750 ,1,10751,324850 ,1,10752,227795 ,1,10753,217010 ,1,10754,216990 ,1,10755,2210 ,1,10756,542350 ,1,10757,228760 ,1,10758,324830 ,1,10759,324820 ,1,10760,571765 ,1,10761,45 ,1,10762,9435 ,1,10763,400430 ,1,10764,117985 ,1,10765,45 ,1,10766,276975 ,1,10767,400430 ,1,10768,120335 ,1,10769,45 ,1,10770,276975 ,1,10771,224345 ,1,10772,216980 ,1,10773,359125 ,1,10774,216970 ,1,10775,216960 ,1,10776,324810 ,1,10777,163025 ,1,10778,324800 ,1,10779,324775 ,1,10780,324765 ,1,10781,554995 ,1,10782,2210 ,1,10783,542350 ,1,10784,216910 ,1,10785,216900 ,1,10786,224125 ,1,10787,224145 ,1,10788,609375 ,1,10789,324755 ,1,10790,324745 ,1,10791,554985 ,1,10792,609380 ,1,10793,542555 ,1,10794,593795 ,1,10795,542555 ,1,10796,2280 ,1,10797,542210 ,1,10798,2280 ,1,10799,542070 ,1,10800,2280 ,1,10801,542065 ,1,10802,45 ,1,10803,5900 ,1,10804,45 ,1,10805,11510 ,1,10806,45 ,1,10807,11510 ,1,10808,198890 ,1,10810,2395 ,1,10811,45 ,1,10812,9470 ,1,10814,2395 ,1,10815,45 ,1,10816,9470 ,1,10818,2395 ,1,10819,45 ,1,10820,9470 ,1,10821,400430 ,1,10822,165540 ,1,10823,581385 ,1,10824,45 ,1,10825,243205 ,1,10826,324735 ,1,10827,400430 ,1,10828,165995 ,1,10829,45 ,1,10830,301565 ,1,10831,609950 ,1,10832,45 ,1,10833,208615 ,1,10834,324725 ,1,10835,216890 ,1,10836,216880 ,1,10837,549225 ,1,10838,593785 ,1,10839,324715 ,1,10840,216870 ,1,10841,216860 ,1,10842,45 ,1,10843,179760 ,1,10844,45 ,1,10845,329805 ,1,10846,45 ,1,10847,209800 ,1,10848,260905 ,1,10849,45 ,1,10850,179760 ,1,10851,45 ,1,10852,329805 ,1,10853,45 ,1,10854,209800 ,1,10855,260925 ,1,10856,260915 ,1,10857,15860 ,1,10858,369930 ,1,10859,370130 ,1,10860,553015 ,1,10861,7585 ,1,10862,5910 ,1,10863,4555 ,1,10864,6385 ,1,10865,12155 ,1,10866,10170 ,1,10867,11200 ,1,10868,12795 ,1,10869,11045 ,1,10870,7745 ,1,10871,11340 ,1,10872,10335 ,1,10873,6540 ,1,10874,5410 ,1,10875,11900 ,1,10876,7150 ,1,10877,2280 ,1,10878,542095 ,1,10879,294620 ,1,10880,263515 ,1,10881,324705 ,1,10882,585780 ,1,10883,45 ,1,10884,13320 ,1,10885,263505 ,1,10886,236245 ,1,10887,2280 ,1,10888,542095 ,1,10889,236430 ,1,10890,2280 ,1,10891,542095 ,1,10892,236580 ,1,10893,2280 ,1,10894,542095 ,1,10895,294445 ,1,10896,324675 ,1,10897,324665 ,1,10898,236335 ,1,10899,2280 ,1,10900,542095 ,1,10901,324655 ,1,10902,2280 ,1,10903,542095 ,1,10904,324645 ,1,10905,2280 ,1,10906,542095 ,1,10907,324630 ,1,10908,2280 ,1,10909,542095 ,1,10910,2280 ,1,10911,542095 ,1,10912,324620 ,1,10913,2280 ,1,10914,542095 ,1,10915,324610 ,1,10916,2280 ,1,10917,542095 ,1,10918,324600 ,1,10919,2280 ,1,10920,542095 ,1,10921,2280 ,1,10922,542095 ,1,10923,236550 ,1,10924,2280 ,1,10925,542095 ,1,10926,2280 ,1,10927,542095 ,1,10928,2280 ,1,10929,542095 ,1,10930,2280 ,1,10931,542095 ,1,10932,2280 ,1,10933,542095 ,1,10934,2280 ,1,10935,542095 ,1,10936,2280 ,1,10937,542095 ,1,10938,324575 ,1,10939,324565 ,1,10940,324555 ,1,10941,324545 ,1,10942,236115 ,1,10943,2280 ,1,10944,542095 ,1,10945,2280 ,1,10946,542095 ,1,10947,2280 ,1,10948,542095 ,1,10949,15850 ,1,10950,2280 ,1,10951,542095 ,1,10952,2280 ,1,10953,542095 ,1,10954,236570 ,1,10955,2280 ,1,10956,542095 ,1,10957,324535 ,1,10958,2280 ,1,10959,542095 ,1,10960,324525 ,1,10961,2280 ,1,10962,542095 ,1,10963,324515 ,1,10964,2280 ,1,10965,542095 ,1,10966,2280 ,1,10967,542095 ,1,10968,2280 ,1,10969,542095 ,1,10970,324505 ,1,10971,299940 ,1,10972,216850 ,1,10973,587345 ,1,10974,45 ,1,10975,342050 ,1,10976,324470 ,1,10977,324460 ,1,10978,324450 ,1,10979,45 ,1,10980,331650 ,1,10981,45 ,1,10982,5900 ,1,10983,45 ,1,10984,5900 ,1,10985,400430 ,1,10986,199175 ,1,10987,400430 ,1,10988,198760 ,1,10989,400430 ,1,10990,199540 ,1,10991,611770 ,1,10992,45 ,1,10993,5900 ,1,10994,554975 ,1,10995,45 ,1,10996,259605 ,1,10997,225500 ,1,10998,102930 ,1,10999,548575 ,1,11000,163015 ,1,11001,225460 ,1,11002,15840 ,1,11003,587205 ,1,11004,45 ,1,11005,259605 ,1,11006,548570 ,1,11007,571520 ,1,11008,548625 ,1,11009,593725 ,1,11010,45 ,1,11011,331650 ,1,11012,306455 ,1,11013,324440 ,1,11014,324425 ,1,11015,324415 ,1,11016,324405 ,1,11017,324395 ,1,11018,324355 ,1,11019,324345 ,1,11020,324335 ,1,11021,324325 ,1,11022,324305 ,1,11023,45 ,1,11024,259605 ,1,11025,207740 ,1,11026,45 ,1,11027,5900 ,1,11028,45 ,1,11029,5900 ,1,11030,216840 ,1,11031,216790 ,1,11032,216780 ,1,11033,570630 ,1,11034,45 ,1,11035,192820 ,1,11036,45 ,1,11037,192820 ,1,11038,324295 ,1,11039,45 ,1,11040,192820 ,1,11041,45 ,1,11042,5900 ,1,11043,45 ,1,11044,5900 ,1,11045,216770 ,1,11046,216760 ,1,11047,216745 ,1,11048,45 ,1,11049,192820 ,1,11050,45 ,1,11051,192820 ,1,11052,45 ,1,11053,192820 ,1,11054,45 ,1,11055,5900 ,1,11056,216735 ,1,11057,324285 ,1,11058,359295 ,1,11059,359275 ,1,11060,45 ,1,11061,5900 ,1,11062,216725 ,1,11063,227855 ,1,11064,229680 ,1,11065,324275 ,1,11066,609640 ,1,11067,45 ,1,11068,255425 ,1,11069,586805 ,1,11070,45 ,1,11071,331650 ,1,11072,45 ,1,11073,331650 ,1,11074,298645 ,1,11075,216715 ,1,11076,216695 ,1,11077,216685 ,1,11078,298870 ,1,11079,216675 ,1,11080,298655 ,1,11081,45 ,1,11082,5320 ,1,11083,298855 ,1,11084,355115 ,1,11085,552620 ,1,11086,216665 ,1,11087,298665 ,1,11088,45 ,1,11089,5320 ,1,11090,355095 ,1,11091,611390 ,1,11092,45 ,1,11093,195155 ,1,11094,216650 ,1,11095,298675 ,1,11096,45 ,1,11097,5320 ,1,11098,611420 ,1,11099,45 ,1,11100,195155 ,1,11101,45 ,1,11102,5320 ,1,11103,355075 ,1,11104,45 ,1,11105,5320 ,1,11106,355085 ,1,11107,298685 ,1,11108,548495 ,1,11109,554970 ,1,11110,374820 ,1,11111,125935 ,1,11112,125890 ,1,11113,45 ,1,11114,276975 ,1,11115,45 ,1,11116,276975 ,1,11117,2210 ,1,11118,542350 ,1,11119,573335 ,1,11120,45 ,1,11121,331650 ,1,11122,45 ,1,11123,331650 ,1,11124,324260 ,1,11125,234920 ,1,11126,2210 ,1,11127,542350 ,1,11128,554955 ,1,11129,554950 ,1,11130,45 ,1,11131,5900 ,1,11132,45 ,1,11133,5900 ,1,11134,45 ,1,11135,5900 ,1,11136,45 ,1,11137,5900 ,1,11138,45 ,1,11139,5900 ,1,11140,45 ,1,11141,5900 ,1,11142,216640 ,1,11143,45 ,1,11144,205700 ,1,11145,324250 ,1,11146,266065 ,1,11147,163000 ,1,11148,216630 ,1,11149,216620 ,1,11150,216585 ,1,11151,216575 ,1,11152,554945 ,1,11153,554900 ,1,11154,576865 ,1,11155,45 ,1,11156,259605 ,1,11157,247700 ,1,11158,593680 ,1,11159,45 ,1,11160,325430 ,1,11161,593675 ,1,11162,45 ,1,11163,325430 ,1,11164,576855 ,1,11165,45 ,1,11166,5900 ,1,11167,554895 ,1,11168,45 ,1,11169,5900 ,1,11170,582245 ,1,11171,168040 ,1,11172,551400 ,1,11173,45 ,1,11174,216580 ,1,11175,45 ,1,11176,276975 ,1,11177,277145 ,1,11178,276995 ,1,11179,324240 ,1,11180,276965 ,1,11181,254690 ,1,11182,253460 ,1,11183,259870 ,1,11184,45 ,1,11185,5900 ,1,11186,216565 ,1,11187,359675 ,1,11188,568565 ,1,11189,45 ,1,11190,343730 ,1,11191,593670 ,1,11192,45 ,1,11193,5900 ,1,11194,593660 ,1,11195,45 ,1,11196,5900 ,1,11197,575210 ,1,11198,45 ,1,11199,347100 ,1,11200,267125 ,1,11201,240560 ,1,11202,542550 ,1,11203,593655 ,1,11204,542550 ,1,11205,216555 ,1,11206,45 ,1,11207,343730 ,1,11208,45 ,1,11209,5900 ,1,11210,324230 ,1,11211,554885 ,1,11212,216540 ,1,11213,45 ,1,11214,213155 ,1,11215,364360 ,1,11216,550445 ,1,11217,45 ,1,11218,331650 ,1,11219,45 ,1,11220,331650 ,1,11221,277005 ,1,11222,374840 ,1,11223,132895 ,1,11224,240515 ,1,11225,45 ,1,11226,347100 ,1,11227,216530 ,1,11228,575170 ,1,11229,45 ,1,11230,331650 ,1,11231,45 ,1,11232,331650 ,1,11233,171380 ,1,11234,240550 ,1,11235,15825 ,1,11236,236645 ,1,11237,216520 ,1,11238,358410 ,1,11239,216510 ,1,11240,236665 ,1,11241,2280 ,1,11242,542095 ,1,11243,216470 ,1,11244,247550 ,1,11245,356020 ,1,11246,608995 ,1,11247,45 ,1,11248,167770 ,1,11249,547315 ,1,11250,216460 ,1,11251,292855 ,1,11252,216450 ,1,11253,324220 ,1,11254,2280 ,1,11255,542095 ,1,11256,324210 ,1,11257,137440 ,1,11258,137480 ,1,11259,137460 ,1,11260,357490 ,1,11261,45 ,1,11262,11510 ,1,11263,324200 ,1,11264,236285 ,1,11265,324190 ,1,11266,236235 ,1,11267,216440 ,1,11268,216425 ,1,11269,2280 ,1,11270,542095 ,1,11271,2280 ,1,11272,542095 ,1,11273,2280 ,1,11274,542095 ,1,11275,2280 ,1,11276,542095 ,1,11277,2280 ,1,11278,542095 ,1,11279,2280 ,1,11280,542095 ,1,11281,324165 ,1,11282,2210 ,1,11283,542350 ,1,11284,2210 ,1,11285,542350 ,1,11286,45 ,1,11287,324155 ,1,11288,45 ,1,11289,11510 ,1,11290,216415 ,1,11291,324145 ,1,11292,236655 ,1,11293,162990 ,1,11294,2280 ,1,11295,542095 ,1,11296,2280 ,1,11297,542095 ,1,11298,2280 ,1,11299,542095 ,1,11300,2280 ,1,11301,542095 ,1,11302,324035 ,1,11303,2280 ,1,11304,542095 ,1,11305,324025 ,1,11306,2280 ,1,11307,542095 ,1,11308,549935 ,1,11309,45 ,1,11310,5900 ,1,11311,571575 ,1,11312,45 ,1,11313,259605 ,1,11314,118800 ,1,11315,2210 ,1,11316,542350 ,1,11317,550025 ,1,11318,573985 ,1,11319,45 ,1,11320,5900 ,1,11321,221980 ,1,11322,162980 ,1,11323,45 ,1,11324,5900 ,1,11325,573890 ,1,11326,45 ,1,11327,324000 ,1,11328,45 ,1,11329,331650 ,1,11330,323990 ,1,11331,216405 ,1,11332,549520 ,1,11333,267925 ,1,11334,216395 ,1,11335,573960 ,1,11336,45 ,1,11337,11510 ,1,11338,216370 ,1,11339,267980 ,1,11340,45 ,1,11341,11510 ,1,11342,554880 ,1,11343,610050 ,1,11344,216360 ,1,11345,216350 ,1,11346,542545 ,1,11347,573925 ,1,11348,542545 ,1,11349,554875 ,1,11350,2210 ,1,11351,542350 ,1,11352,45 ,1,11353,4765 ,1,11354,323980 ,1,11355,593610 ,1,11356,45 ,1,11357,11955 ,1,11358,323970 ,1,11359,235870 ,1,11360,2210 ,1,11361,542350 ,1,11362,550670 ,1,11363,580195 ,1,11364,45 ,1,11365,259605 ,1,11366,237300 ,1,11367,580165 ,1,11368,45 ,1,11369,259605 ,1,11370,263610 ,1,11371,580350 ,1,11372,45 ,1,11373,259605 ,1,11374,45 ,1,11375,11510 ,1,11376,569685 ,1,11377,45 ,1,11378,259605 ,1,11379,263760 ,1,11380,2210 ,1,11381,542350 ,1,11382,2210 ,1,11383,542350 ,1,11384,251885 ,1,11385,323940 ,1,11386,323930 ,1,11387,323920 ,1,11388,323910 ,1,11389,45 ,1,11390,186035 ,1,11391,45 ,1,11392,5900 ,1,11393,323900 ,1,11394,562190 ,1,11395,45 ,1,11396,5900 ,1,11397,162970 ,1,11399,2395 ,1,11400,357710 ,1,11401,183265 ,1,11403,2395 ,1,11405,2395 ,1,11406,2280 ,1,11407,542060 ,1,11408,323890 ,1,11409,323880 ,1,11411,2395 ,1,11413,2395 ,1,11415,2395 ,1,11416,357620 ,1,11417,357730 ,1,11418,357645 ,1,11419,357665 ,1,11420,357635 ,1,11421,357720 ,1,11422,2210 ,1,11423,542350 ,1,11424,2210 ,1,11425,542350 ,1,11426,45 ,1,11427,5900 ,1,11428,162920 ,1,11429,554850 ,1,11430,264540 ,1,11431,45 ,1,11432,5900 ,1,11433,45 ,1,11434,211985 ,1,11435,45 ,1,11436,5900 ,1,11437,216340 ,1,11438,45 ,1,11439,208615 ,1,11440,45 ,1,11441,205770 ,1,11442,45 ,1,11443,5900 ,1,11444,45 ,1,11445,5900 ,1,11446,554845 ,1,11447,45 ,1,11448,5900 ,1,11449,45 ,1,11450,211985 ,1,11451,45 ,1,11452,340435 ,1,11453,45 ,1,11454,9435 ,1,11455,45 ,1,11456,9435 ,1,11457,199760 ,1,11458,323870 ,1,11459,323845 ,1,11460,323835 ,1,11461,199710 ,1,11462,323825 ,1,11463,221305 ,1,11464,323815 ,1,11465,323805 ,1,11466,323795 ,1,11467,45 ,1,11468,9435 ,1,11469,45 ,1,11470,9435 ,1,11471,45 ,1,11472,9435 ,1,11473,45 ,1,11474,9435 ,1,11475,45 ,1,11476,9435 ,1,11477,593590 ,1,11478,45 ,1,11479,324000 ,1,11480,323785 ,1,11481,179510 ,1,11482,323775 ,1,11483,323730 ,1,11484,323720 ,1,11485,323710 ,1,11486,323700 ,1,11487,323690 ,1,11488,262405 ,1,11489,593585 ,1,11490,45 ,1,11491,325430 ,1,11492,358180 ,1,11493,570050 ,1,11494,45 ,1,11495,331650 ,1,11496,45 ,1,11497,331650 ,1,11498,113370 ,1,11499,45 ,1,11500,330070 ,1,11501,216330 ,1,11502,323680 ,1,11503,162910 ,1,11504,370015 ,1,11505,323670 ,1,11506,258420 ,1,11507,323660 ,1,11508,198975 ,1,11509,162900 ,1,11510,198755 ,1,11511,370090 ,1,11512,113340 ,1,11513,546570 ,1,11514,608285 ,1,11515,45 ,1,11516,5900 ,1,11517,2210 ,1,11518,542350 ,1,11519,86105 ,1,11520,86715 ,1,11521,45 ,1,11522,4315 ,1,11523,45 ,1,11524,5900 ,1,11525,45 ,1,11526,5900 ,1,11527,2210 ,1,11528,542350 ,1,11529,2210 ,1,11530,542350 ,1,11531,198270 ,1,11532,257385 ,1,11533,257375 ,1,11534,370060 ,1,11535,370070 ,1,11536,593580 ,1,11537,45 ,1,11538,323635 ,1,11539,323625 ,1,11540,128465 ,1,11541,323615 ,1,11542,45 ,1,11543,5900 ,1,11544,45 ,1,11545,5900 ,1,11546,213175 ,1,11547,323605 ,1,11548,549600 ,1,11549,162890 ,1,11550,216320 ,1,11551,610085 ,1,11552,45 ,1,11553,327595 ,1,11554,323590 ,1,11555,323580 ,1,11556,593545 ,1,11557,45 ,1,11558,13320 ,1,11559,236745 ,1,11560,323570 ,1,11561,549580 ,1,11562,162880 ,1,11563,323560 ,1,11564,546760 ,1,11565,217490 ,1,11566,217500 ,1,11567,554840 ,1,11568,323530 ,1,11569,162870 ,1,11570,128690 ,1,11571,549710 ,1,11572,323520 ,1,11573,323510 ,1,11574,216300 ,1,11575,554835 ,1,11576,323500 ,1,11577,357870 ,1,11578,570410 ,1,11579,45 ,1,11580,323485 ,1,11581,574760 ,1,11582,45 ,1,11583,5900 ,1,11584,232240 ,1,11585,258925 ,1,11586,358520 ,1,11587,548745 ,1,11588,323475 ,1,11589,184880 ,1,11590,323465 ,1,11591,323455 ,1,11592,122735 ,1,11593,45 ,1,11594,240265 ,1,11595,554830 ,1,11596,198665 ,1,11597,198985 ,1,11598,593515 ,1,11599,45 ,1,11600,259605 ,1,11601,296245 ,1,11602,323430 ,1,11603,323420 ,1,11604,370080 ,1,11605,162860 ,1,11606,323410 ,1,11607,141685 ,1,11608,323400 ,1,11609,369785 ,1,11610,323380 ,1,11611,369825 ,1,11612,356945 ,1,11613,323370 ,1,11614,112220 ,1,11615,222330 ,1,11616,323360 ,1,11617,359095 ,1,11618,358145 ,1,11619,323350 ,1,11620,355430 ,1,11621,355445 ,1,11622,162850 ,1,11623,162825 ,1,11624,250790 ,1,11625,269240 ,1,11626,162815 ,1,11627,323315 ,1,11628,199455 ,1,11629,357075 ,1,11630,257475 ,1,11631,223745 ,1,11632,323305 ,1,11633,554825 ,1,11634,323295 ,1,11635,323285 ,1,11636,323275 ,1,11637,323265 ,1,11638,323255 ,1,11639,323245 ,1,11640,323215 ,1,11641,323205 ,1,11642,323195 ,1,11643,323185 ,1,11644,359625 ,1,11645,323170 ,1,11646,323160 ,1,11647,323150 ,1,11648,323140 ,1,11649,323090 ,1,11650,323080 ,1,11651,323070 ,1,11652,323060 ,1,11653,323045 ,1,11654,570490 ,1,11655,45 ,1,11656,9435 ,1,11657,224430 ,1,11658,45 ,1,11659,9435 ,1,11660,323035 ,1,11661,323025 ,1,11662,323015 ,1,11663,323000 ,1,11664,45 ,1,11665,9435 ,1,11666,216265 ,1,11667,216255 ,1,11668,216245 ,1,11669,306720 ,1,11670,322990 ,1,11671,2210 ,1,11672,542350 ,1,11673,374360 ,1,11674,204550 ,1,11675,216235 ,1,11676,322980 ,1,11677,2210 ,1,11678,542350 ,1,11679,45 ,1,11680,8740 ,1,11681,224535 ,1,11682,322970 ,1,11683,400430 ,1,11684,112465 ,1,11685,45 ,1,11686,5900 ,1,11687,45 ,1,11688,5900 ,1,11689,45 ,1,11690,5900 ,1,11691,45 ,1,11692,5900 ,1,11693,45 ,1,11694,209800 ,1,11695,45 ,1,11696,217770 ,1,11697,45 ,1,11698,5900 ,1,11699,45 ,1,11700,5900 ,1,11701,45 ,1,11702,11510 ,1,11703,45 ,1,11704,5900 ,1,11705,45 ,1,11706,11510 ,1,11707,45 ,1,11708,5900 ,1,11709,45 ,1,11710,11510 ,1,11711,45 ,1,11712,11510 ,1,11713,45 ,1,11714,11510 ,1,11715,45 ,1,11716,5900 ,1,11717,45 ,1,11718,11510 ,1,11719,45 ,1,11720,5900 ,1,11721,45 ,1,11722,5900 ,1,11723,45 ,1,11724,5900 ,1,11725,45 ,1,11726,209800 ,1,11727,45 ,1,11728,209800 ,1,11729,45 ,1,11730,209800 ,1,11731,45 ,1,11732,217770 ,1,11733,551345 ,1,11734,551305 ,1,11735,582180 ,1,11736,45 ,1,11737,13320 ,1,11738,400430 ,1,11739,167635 ,1,11740,610765 ,1,11741,45 ,1,11742,11510 ,1,11743,322955 ,1,11744,216225 ,1,11745,216215 ,1,11746,45 ,1,11747,179760 ,1,11748,45 ,1,11749,179760 ,1,11750,45 ,1,11751,209800 ,1,11752,216205 ,1,11753,45 ,1,11754,179760 ,1,11755,45 ,1,11756,209800 ,1,11757,573510 ,1,11758,45 ,1,11759,331650 ,1,11760,45 ,1,11761,331650 ,1,11762,554820 ,1,11763,552580 ,1,11764,548800 ,1,11765,15050 ,1,11766,372530 ,1,11767,322945 ,1,11768,357450 ,1,11769,357430 ,1,11770,357270 ,1,11771,357220 ,1,11772,372725 ,1,11773,216195 ,1,11774,322935 ,1,11775,162805 ,1,11776,302190 ,1,11777,322925 ,1,11778,302180 ,1,11779,216160 ,1,11780,554815 ,1,11781,216150 ,1,11782,322900 ,1,11783,216140 ,1,11784,162795 ,1,11785,290155 ,1,11786,281685 ,1,11787,551635 ,1,11788,554795 ,1,11789,272495 ,1,11790,370375 ,1,11791,322890 ,1,11792,322880 ,1,11793,375020 ,1,11794,161245 ,1,11795,612010 ,1,11796,45 ,1,11797,13320 ,1,11798,260965 ,1,11799,240275 ,1,11800,554790 ,1,11801,610920 ,1,11802,45 ,1,11803,13320 ,1,11804,278100 ,1,11805,322870 ,1,11806,322860 ,1,11807,322850 ,1,11808,261060 ,1,11809,261005 ,1,11810,260995 ,1,11811,610840 ,1,11812,216130 ,1,11813,554785 ,1,11814,216115 ,1,11815,554780 ,1,11816,216095 ,1,11817,582535 ,1,11818,322840 ,1,11819,45 ,1,11820,4315 ,1,11821,593415 ,1,11822,45 ,1,11823,322830 ,1,11824,216085 ,1,11825,281695 ,1,11826,554770 ,1,11827,322800 ,1,11828,260955 ,1,11829,216040 ,1,11830,216030 ,1,11831,162785 ,1,11832,45 ,1,11833,3525 ,1,11834,45 ,1,11835,11340 ,1,11836,169805 ,1,11837,169795 ,1,11838,612275 ,1,11839,612320 ,1,11840,45 ,1,11841,341075 ,1,11842,558310 ,1,11843,45 ,1,11844,322830 ,1,11845,322790 ,1,11846,216020 ,1,11847,322780 ,1,11848,216000 ,1,11849,322770 ,1,11850,45 ,1,11851,4315 ,1,11852,45 ,1,11853,322830 ,1,11854,215990 ,1,11855,261110 ,1,11856,261070 ,1,11857,215970 ,1,11858,582675 ,1,11859,322760 ,1,11860,45 ,1,11861,4315 ,1,11862,45 ,1,11863,322830 ,1,11864,261100 ,1,11865,215950 ,1,11866,322750 ,1,11867,322740 ,1,11868,554765 ,1,11869,322730 ,1,11870,322710 ,1,11871,322700 ,1,11872,322690 ,1,11873,322680 ,1,11874,322665 ,1,11875,322655 ,1,11876,322645 ,1,11877,322635 ,1,11878,322600 ,1,11879,322590 ,1,11880,322580 ,1,11881,322570 ,1,11882,322550 ,1,11883,322540 ,1,11884,322530 ,1,11885,322520 ,1,11886,322490 ,1,11887,322480 ,1,11888,322470 ,1,11889,322460 ,1,11890,322430 ,1,11891,215930 ,1,11892,322420 ,1,11893,45 ,1,11894,4315 ,1,11895,45 ,1,11896,322830 ,1,11897,215920 ,1,11898,322410 ,1,11899,554760 ,1,11900,261365 ,1,11901,261355 ,1,11902,261120 ,1,11903,215905 ,1,11904,322400 ,1,11905,582690 ,1,11906,215885 ,1,11907,322370 ,1,11908,45 ,1,11909,4315 ,1,11910,45 ,1,11911,322830 ,1,11912,215875 ,1,11913,215850 ,1,11914,322360 ,1,11915,45 ,1,11916,4315 ,1,11917,45 ,1,11918,322830 ,1,11919,215840 ,1,11920,261535 ,1,11921,261525 ,1,11922,215830 ,1,11923,322350 ,1,11924,582935 ,1,11925,215820 ,1,11926,261550 ,1,11927,215800 ,1,11928,322340 ,1,11929,582950 ,1,11930,45 ,1,11931,4315 ,1,11932,45 ,1,11933,322830 ,1,11934,215790 ,1,11935,554755 ,1,11936,261610 ,1,11937,261580 ,1,11938,261560 ,1,11939,215730 ,1,11940,322325 ,1,11941,582980 ,1,11942,45 ,1,11943,4315 ,1,11944,45 ,1,11945,322830 ,1,11946,215720 ,1,11947,322315 ,1,11948,215690 ,1,11949,322305 ,1,11950,45 ,1,11951,4315 ,1,11952,45 ,1,11953,322830 ,1,11954,215680 ,1,11955,322295 ,1,11956,322265 ,1,11957,215660 ,1,11958,45 ,1,11959,4315 ,1,11960,45 ,1,11961,322830 ,1,11962,261620 ,1,11963,215635 ,1,11964,322255 ,1,11965,322245 ,1,11966,322235 ,1,11967,287265 ,1,11968,322225 ,1,11969,322215 ,1,11970,322205 ,1,11971,551570 ,1,11972,261640 ,1,11973,261630 ,1,11974,215625 ,1,11975,322195 ,1,11976,583050 ,1,11977,215615 ,1,11978,322165 ,1,11979,261660 ,1,11980,261650 ,1,11981,215605 ,1,11982,322155 ,1,11983,583085 ,1,11984,215580 ,1,11985,322145 ,1,11986,45 ,1,11987,4315 ,1,11988,45 ,1,11989,322830 ,1,11990,215570 ,1,11991,282085 ,1,11992,262205 ,1,11993,262195 ,1,11994,262185 ,1,11995,262175 ,1,11996,262165 ,1,11997,262155 ,1,11998,262145 ,1,11999,262135 ,1,12000,262110 ,1,12001,262100 ,1,12002,262090 ,1,12003,262080 ,1,12004,262070 ,1,12005,262060 ,1,12006,262050 ,1,12007,262040 ,1,12008,261995 ,1,12009,261985 ,1,12010,261975 ,1,12011,261965 ,1,12012,261940 ,1,12013,261930 ,1,12014,261920 ,1,12015,261910 ,1,12016,261890 ,1,12017,261880 ,1,12018,261870 ,1,12019,261860 ,1,12020,261845 ,1,12021,261835 ,1,12022,261825 ,1,12023,261815 ,1,12024,261785 ,1,12025,261775 ,1,12026,261765 ,1,12027,261755 ,1,12028,261745 ,1,12029,261735 ,1,12030,261725 ,1,12031,261715 ,1,12032,261670 ,1,12033,215560 ,1,12034,322135 ,1,12035,583320 ,1,12036,322115 ,1,12037,322105 ,1,12038,322095 ,1,12039,322085 ,1,12040,322045 ,1,12041,12255 ,1,12042,322035 ,1,12043,612735 ,1,12044,583325 ,1,12045,45 ,1,12046,13320 ,1,12047,45 ,1,12048,13320 ,1,12049,583180 ,1,12050,45 ,1,12051,13320 ,1,12052,583290 ,1,12053,45 ,1,12054,13320 ,1,12055,582710 ,1,12056,45 ,1,12057,13320 ,1,12058,45 ,1,12059,13320 ,1,12060,45 ,1,12061,13320 ,1,12062,261130 ,1,12063,14155 ,1,12064,2210 ,1,12065,542350 ,1,12066,2280 ,1,12067,542055 ,1,12068,583105 ,1,12069,45 ,1,12070,13320 ,1,12071,322025 ,1,12072,322015 ,1,12073,322000 ,1,12074,321990 ,1,12075,612725 ,1,12076,321980 ,1,12077,583280 ,1,12078,45 ,1,12079,11955 ,1,12080,45 ,1,12081,12795 ,1,12082,583255 ,1,12083,45 ,1,12084,321970 ,1,12085,592980 ,1,12086,45 ,1,12087,13320 ,1,12088,280505 ,1,12089,321945 ,1,12090,583220 ,1,12091,45 ,1,12092,13320 ,1,12093,554725 ,1,12094,283035 ,1,12095,321935 ,1,12096,321925 ,1,12097,582715 ,1,12098,45 ,1,12099,321915 ,1,12100,321915 ,1,12101,321905 ,1,12102,321895 ,1,12103,261150 ,1,12104,321885 ,1,12105,261210 ,1,12106,261200 ,1,12107,261170 ,1,12108,261140 ,1,12109,321875 ,1,12110,2210 ,1,12111,542345 ,1,12112,2210 ,1,12113,542350 ,1,12114,2210 ,1,12115,542350 ,1,12116,2210 ,1,12117,542350 ,1,12118,2210 ,1,12119,542350 ,1,12120,14110 ,1,12121,261160 ,1,12122,321850 ,1,12123,279725 ,1,12125,2395 ,1,12126,45 ,1,12127,9470 ,1,12128,2210 ,1,12129,542350 ,1,12130,280440 ,1,12131,261325 ,1,12132,280660 ,1,12133,321840 ,1,12134,2210 ,1,12135,542345 ,1,12136,2210 ,1,12137,542345 ,1,12138,45 ,1,12139,11085 ,1,12140,583230 ,1,12141,45 ,1,12142,11085 ,1,12143,321830 ,1,12144,280390 ,1,12145,321820 ,1,12146,321800 ,1,12147,45 ,1,12148,13320 ,1,12149,45 ,1,12150,13320 ,1,12151,45 ,1,12152,13320 ,1,12153,45 ,1,12154,13320 ,1,12155,45 ,1,12156,13320 ,1,12157,45 ,1,12158,13320 ,1,12159,45 ,1,12160,13320 ,1,12161,45 ,1,12162,13320 ,1,12163,2280 ,1,12164,542160 ,1,12165,45 ,1,12166,13320 ,1,12167,45 ,1,12168,13320 ,1,12169,45 ,1,12170,13320 ,1,12171,45 ,1,12172,13320 ,1,12173,321790 ,1,12174,321780 ,1,12175,2210 ,1,12176,542345 ,1,12177,2210 ,1,12178,542345 ,1,12179,2210 ,1,12180,542300 ,1,12181,2210 ,1,12182,542350 ,1,12183,2210 ,1,12184,542295 ,1,12185,2210 ,1,12186,542345 ,1,12187,2210 ,1,12188,542345 ,1,12189,2210 ,1,12190,542350 ,1,12191,2210 ,1,12192,542350 ,1,12193,279970 ,1,12195,2395 ,1,12196,280575 ,1,12197,321770 ,1,12198,2210 ,1,12199,542345 ,1,12200,280690 ,1,12201,321715 ,1,12202,321705 ,1,12203,321695 ,1,12204,321685 ,1,12205,45 ,1,12206,11085 ,1,12207,542540 ,1,12208,585895 ,1,12209,542540 ,1,12210,45 ,1,12211,11510 ,1,12212,283015 ,1,12213,2210 ,1,12214,542350 ,1,12215,45 ,1,12216,11085 ,1,12217,321675 ,1,12218,280785 ,1,12219,321665 ,1,12220,45 ,1,12221,321915 ,1,12222,45 ,1,12223,321915 ,1,12224,551575 ,1,12225,554720 ,1,12226,261680 ,1,12227,179465 ,1,12228,321655 ,1,12229,261220 ,1,12230,321645 ,1,12231,162775 ,1,12232,215520 ,1,12233,321620 ,1,12234,321610 ,1,12235,321600 ,1,12236,321590 ,1,12237,321570 ,1,12238,321560 ,1,12239,321550 ,1,12240,612740 ,1,12241,583360 ,1,12242,45 ,1,12243,13320 ,1,12244,45 ,1,12245,13320 ,1,12246,45 ,1,12247,13320 ,1,12248,45 ,1,12249,13320 ,1,12250,45 ,1,12251,13320 ,1,12252,45 ,1,12253,13320 ,1,12254,45 ,1,12255,13320 ,1,12256,215510 ,1,12257,321540 ,1,12258,321515 ,1,12259,321505 ,1,12260,321495 ,1,12261,321485 ,1,12262,321475 ,1,12263,321465 ,1,12264,612745 ,1,12265,583370 ,1,12266,45 ,1,12267,13320 ,1,12268,45 ,1,12269,13320 ,1,12270,45 ,1,12271,13320 ,1,12272,45 ,1,12273,13320 ,1,12274,45 ,1,12275,13320 ,1,12276,45 ,1,12277,13320 ,1,12278,45 ,1,12279,13320 ,1,12280,215500 ,1,12281,321455 ,1,12282,321445 ,1,12283,11285 ,1,12284,321410 ,1,12285,321400 ,1,12286,612750 ,1,12287,583380 ,1,12288,45 ,1,12289,13320 ,1,12290,45 ,1,12291,13320 ,1,12292,45 ,1,12293,13320 ,1,12294,45 ,1,12295,13320 ,1,12296,45 ,1,12297,13320 ,1,12298,45 ,1,12299,13320 ,1,12300,45 ,1,12301,13320 ,1,12302,215490 ,1,12303,321390 ,1,12304,321380 ,1,12305,321370 ,1,12306,321360 ,1,12307,321350 ,1,12308,321340 ,1,12309,321310 ,1,12310,612755 ,1,12311,583390 ,1,12312,45 ,1,12313,13320 ,1,12314,45 ,1,12315,13320 ,1,12316,45 ,1,12317,13320 ,1,12318,45 ,1,12319,13320 ,1,12320,45 ,1,12321,13320 ,1,12322,45 ,1,12323,13320 ,1,12324,45 ,1,12325,13320 ,1,12326,215470 ,1,12327,321300 ,1,12328,321290 ,1,12329,9950 ,1,12330,321280 ,1,12331,321260 ,1,12332,612760 ,1,12333,583430 ,1,12334,45 ,1,12335,13320 ,1,12336,45 ,1,12337,13320 ,1,12338,45 ,1,12339,13320 ,1,12340,45 ,1,12341,13320 ,1,12342,45 ,1,12343,13320 ,1,12344,45 ,1,12345,13320 ,1,12346,45 ,1,12347,13320 ,1,12348,215460 ,1,12349,321250 ,1,12350,321240 ,1,12351,321230 ,1,12352,321205 ,1,12353,321195 ,1,12354,321185 ,1,12355,321175 ,1,12356,612765 ,1,12357,583440 ,1,12358,45 ,1,12359,13320 ,1,12360,45 ,1,12361,13320 ,1,12362,45 ,1,12363,13320 ,1,12364,45 ,1,12365,13320 ,1,12366,45 ,1,12367,13320 ,1,12368,45 ,1,12369,13320 ,1,12370,45 ,1,12371,13320 ,1,12372,215450 ,1,12373,321165 ,1,12374,321155 ,1,12375,2765 ,1,12376,321145 ,1,12377,321135 ,1,12378,612770 ,1,12379,583450 ,1,12380,45 ,1,12381,13320 ,1,12382,45 ,1,12383,13320 ,1,12384,45 ,1,12385,13320 ,1,12386,45 ,1,12387,13320 ,1,12388,45 ,1,12389,13320 ,1,12390,45 ,1,12391,13320 ,1,12392,45 ,1,12393,13320 ,1,12394,215440 ,1,12395,321115 ,1,12396,321105 ,1,12397,321095 ,1,12398,321085 ,1,12399,321070 ,1,12400,321060 ,1,12401,321050 ,1,12402,612795 ,1,12403,583460 ,1,12404,45 ,1,12405,13320 ,1,12406,45 ,1,12407,13320 ,1,12408,45 ,1,12409,13320 ,1,12410,45 ,1,12411,13320 ,1,12412,45 ,1,12413,13320 ,1,12414,45 ,1,12415,13320 ,1,12416,45 ,1,12417,13320 ,1,12418,215410 ,1,12419,321040 ,1,12420,320995 ,1,12421,320985 ,1,12422,320975 ,1,12423,320965 ,1,12424,320955 ,1,12425,320945 ,1,12426,612800 ,1,12427,583485 ,1,12428,45 ,1,12429,13320 ,1,12430,45 ,1,12431,13320 ,1,12432,45 ,1,12433,13320 ,1,12434,45 ,1,12435,13320 ,1,12436,45 ,1,12437,13320 ,1,12438,45 ,1,12439,13320 ,1,12440,45 ,1,12441,13320 ,1,12442,215400 ,1,12443,320935 ,1,12444,320925 ,1,12445,320900 ,1,12446,612805 ,1,12447,583495 ,1,12448,45 ,1,12449,13320 ,1,12450,45 ,1,12451,13320 ,1,12452,45 ,1,12453,13320 ,1,12454,45 ,1,12455,13320 ,1,12456,45 ,1,12457,13320 ,1,12458,45 ,1,12459,13320 ,1,12460,45 ,1,12461,13320 ,1,12462,215390 ,1,12463,320890 ,1,12464,320880 ,1,12465,320870 ,1,12466,320855 ,1,12467,320845 ,1,12468,320835 ,1,12469,2725 ,1,12470,320825 ,1,12471,612810 ,1,12472,583510 ,1,12473,45 ,1,12474,13320 ,1,12475,45 ,1,12476,13320 ,1,12477,45 ,1,12478,13320 ,1,12479,45 ,1,12480,13320 ,1,12481,45 ,1,12482,13320 ,1,12483,45 ,1,12484,13320 ,1,12485,45 ,1,12486,13320 ,1,12487,215380 ,1,12488,320800 ,1,12489,320790 ,1,12490,320780 ,1,12491,320770 ,1,12492,320760 ,1,12493,320750 ,1,12494,612820 ,1,12495,583520 ,1,12496,45 ,1,12497,13320 ,1,12498,45 ,1,12499,13320 ,1,12500,45 ,1,12501,13320 ,1,12502,45 ,1,12503,13320 ,1,12504,45 ,1,12505,13320 ,1,12506,45 ,1,12507,13320 ,1,12508,45 ,1,12509,13320 ,1,12510,215355 ,1,12511,320740 ,1,12512,320730 ,1,12513,320700 ,1,12514,320690 ,1,12515,320680 ,1,12516,320670 ,1,12517,320650 ,1,12518,612825 ,1,12519,583540 ,1,12520,45 ,1,12521,13320 ,1,12522,45 ,1,12523,13320 ,1,12524,45 ,1,12525,13320 ,1,12526,45 ,1,12527,13320 ,1,12528,45 ,1,12529,13320 ,1,12530,45 ,1,12531,13320 ,1,12532,45 ,1,12533,13320 ,1,12534,215345 ,1,12535,320640 ,1,12536,320630 ,1,12537,320620 ,1,12538,320575 ,1,12539,320565 ,1,12540,320555 ,1,12541,612830 ,1,12542,583550 ,1,12543,45 ,1,12544,13320 ,1,12545,45 ,1,12546,13320 ,1,12547,45 ,1,12548,13320 ,1,12549,45 ,1,12550,13320 ,1,12551,45 ,1,12552,13320 ,1,12553,45 ,1,12554,13320 ,1,12555,45 ,1,12556,13320 ,1,12557,215335 ,1,12558,320545 ,1,12559,320535 ,1,12560,612835 ,1,12561,583560 ,1,12562,45 ,1,12563,13320 ,1,12564,45 ,1,12565,13320 ,1,12566,45 ,1,12567,13320 ,1,12568,45 ,1,12569,13320 ,1,12570,45 ,1,12571,13320 ,1,12572,45 ,1,12573,13320 ,1,12574,45 ,1,12575,13320 ,1,12576,215325 ,1,12577,320525 ,1,12578,320515 ,1,12579,320505 ,1,12580,320490 ,1,12581,320480 ,1,12582,320470 ,1,12583,320460 ,1,12584,612860 ,1,12585,583570 ,1,12586,45 ,1,12587,13320 ,1,12588,45 ,1,12589,13320 ,1,12590,45 ,1,12591,13320 ,1,12592,45 ,1,12593,13320 ,1,12594,45 ,1,12595,13320 ,1,12596,45 ,1,12597,13320 ,1,12598,45 ,1,12599,13320 ,1,12600,215300 ,1,12601,320450 ,1,12602,320440 ,1,12603,320430 ,1,12604,320420 ,1,12605,320390 ,1,12606,612865 ,1,12607,583600 ,1,12608,45 ,1,12609,13320 ,1,12610,45 ,1,12611,13320 ,1,12612,45 ,1,12613,13320 ,1,12614,45 ,1,12615,13320 ,1,12616,45 ,1,12617,13320 ,1,12618,45 ,1,12619,13320 ,1,12620,45 ,1,12621,13320 ,1,12622,215290 ,1,12623,320380 ,1,12624,320370 ,1,12625,320360 ,1,12626,320350 ,1,12627,320340 ,1,12628,612870 ,1,12629,583610 ,1,12630,45 ,1,12631,13320 ,1,12632,45 ,1,12633,13320 ,1,12634,45 ,1,12635,13320 ,1,12636,45 ,1,12637,13320 ,1,12638,45 ,1,12639,13320 ,1,12640,45 ,1,12641,13320 ,1,12642,45 ,1,12643,13320 ,1,12644,215280 ,1,12645,320330 ,1,12646,320320 ,1,12647,320290 ,1,12648,320280 ,1,12649,320270 ,1,12650,612875 ,1,12651,583620 ,1,12652,45 ,1,12653,13320 ,1,12654,45 ,1,12655,13320 ,1,12656,45 ,1,12657,13320 ,1,12658,45 ,1,12659,13320 ,1,12660,45 ,1,12661,13320 ,1,12662,45 ,1,12663,13320 ,1,12664,45 ,1,12665,13320 ,1,12666,215270 ,1,12667,320260 ,1,12668,320245 ,1,12669,320235 ,1,12670,320225 ,1,12671,320215 ,1,12672,612885 ,1,12673,583630 ,1,12674,45 ,1,12675,13320 ,1,12676,45 ,1,12677,13320 ,1,12678,45 ,1,12679,13320 ,1,12680,45 ,1,12681,13320 ,1,12682,45 ,1,12683,13320 ,1,12684,45 ,1,12685,13320 ,1,12686,45 ,1,12687,13320 ,1,12688,215260 ,1,12689,320180 ,1,12690,320170 ,1,12691,612890 ,1,12692,583655 ,1,12693,45 ,1,12694,13320 ,1,12695,45 ,1,12696,13320 ,1,12697,45 ,1,12698,13320 ,1,12699,45 ,1,12700,13320 ,1,12701,45 ,1,12702,13320 ,1,12703,45 ,1,12704,13320 ,1,12705,45 ,1,12706,13320 ,1,12707,215250 ,1,12708,320160 ,1,12709,320150 ,1,12710,320135 ,1,12711,320125 ,1,12712,320115 ,1,12713,320105 ,1,12714,612895 ,1,12715,583665 ,1,12716,45 ,1,12717,13320 ,1,12718,45 ,1,12719,13320 ,1,12720,45 ,1,12721,13320 ,1,12722,45 ,1,12723,13320 ,1,12724,45 ,1,12725,13320 ,1,12726,45 ,1,12727,13320 ,1,12728,45 ,1,12729,13320 ,1,12730,215240 ,1,12731,320075 ,1,12732,320065 ,1,12733,320055 ,1,12734,320045 ,1,12735,320025 ,1,12736,320015 ,1,12737,612900 ,1,12738,583675 ,1,12739,45 ,1,12740,13320 ,1,12741,45 ,1,12742,13320 ,1,12743,45 ,1,12744,13320 ,1,12745,45 ,1,12746,13320 ,1,12747,45 ,1,12748,13320 ,1,12749,45 ,1,12750,13320 ,1,12751,45 ,1,12752,13320 ,1,12753,215230 ,1,12754,320005 ,1,12755,612925 ,1,12756,583685 ,1,12757,45 ,1,12758,13320 ,1,12759,45 ,1,12760,13320 ,1,12761,45 ,1,12762,13320 ,1,12763,45 ,1,12764,13320 ,1,12765,45 ,1,12766,13320 ,1,12767,45 ,1,12768,13320 ,1,12769,45 ,1,12770,13320 ,1,12771,215190 ,1,12772,319995 ,1,12773,319965 ,1,12774,319955 ,1,12775,319945 ,1,12776,319935 ,1,12777,319925 ,1,12778,612930 ,1,12779,583745 ,1,12780,45 ,1,12781,13320 ,1,12782,45 ,1,12783,13320 ,1,12784,45 ,1,12785,13320 ,1,12786,45 ,1,12787,13320 ,1,12788,45 ,1,12789,13320 ,1,12790,45 ,1,12791,13320 ,1,12792,45 ,1,12793,13320 ,1,12794,215180 ,1,12795,319915 ,1,12796,612935 ,1,12797,583755 ,1,12798,45 ,1,12799,13320 ,1,12800,45 ,1,12801,13320 ,1,12802,45 ,1,12803,13320 ,1,12804,45 ,1,12805,13320 ,1,12806,45 ,1,12807,13320 ,1,12808,45 ,1,12809,13320 ,1,12810,45 ,1,12811,13320 ,1,12812,215170 ,1,12813,319905 ,1,12814,319895 ,1,12815,319865 ,1,12816,319855 ,1,12817,319845 ,1,12818,319835 ,1,12819,612940 ,1,12820,583765 ,1,12821,45 ,1,12822,13320 ,1,12823,45 ,1,12824,13320 ,1,12825,45 ,1,12826,13320 ,1,12827,45 ,1,12828,13320 ,1,12829,45 ,1,12830,13320 ,1,12831,45 ,1,12832,13320 ,1,12833,45 ,1,12834,13320 ,1,12835,215160 ,1,12836,319825 ,1,12837,319815 ,1,12838,319805 ,1,12839,319795 ,1,12840,612945 ,1,12841,583775 ,1,12842,45 ,1,12843,13320 ,1,12844,45 ,1,12845,13320 ,1,12846,45 ,1,12847,13320 ,1,12848,45 ,1,12849,13320 ,1,12850,45 ,1,12851,13320 ,1,12852,45 ,1,12853,13320 ,1,12854,45 ,1,12855,13320 ,1,12856,215145 ,1,12857,319745 ,1,12858,319735 ,1,12859,319725 ,1,12860,319715 ,1,12861,319700 ,1,12862,319690 ,1,12863,612950 ,1,12864,583805 ,1,12865,45 ,1,12866,13320 ,1,12867,45 ,1,12868,13320 ,1,12869,45 ,1,12870,13320 ,1,12871,45 ,1,12872,13320 ,1,12873,45 ,1,12874,13320 ,1,12875,45 ,1,12876,13320 ,1,12877,45 ,1,12878,13320 ,1,12879,215135 ,1,12880,319680 ,1,12881,319670 ,1,12882,319640 ,1,12883,319630 ,1,12884,612955 ,1,12885,583815 ,1,12886,45 ,1,12887,13320 ,1,12888,45 ,1,12889,13320 ,1,12890,45 ,1,12891,13320 ,1,12892,45 ,1,12893,13320 ,1,12894,45 ,1,12895,13320 ,1,12896,45 ,1,12897,13320 ,1,12898,45 ,1,12899,13320 ,1,12900,215125 ,1,12901,319620 ,1,12902,319610 ,1,12903,319595 ,1,12904,319585 ,1,12905,319575 ,1,12906,319565 ,1,12907,612960 ,1,12908,583835 ,1,12909,45 ,1,12910,13320 ,1,12911,45 ,1,12912,13320 ,1,12913,45 ,1,12914,13320 ,1,12915,45 ,1,12916,13320 ,1,12917,45 ,1,12918,13320 ,1,12919,45 ,1,12920,13320 ,1,12921,45 ,1,12922,13320 ,1,12923,215115 ,1,12924,319535 ,1,12925,319525 ,1,12926,319515 ,1,12927,319505 ,1,12928,612985 ,1,12929,583845 ,1,12930,45 ,1,12931,13320 ,1,12932,45 ,1,12933,13320 ,1,12934,45 ,1,12935,13320 ,1,12936,45 ,1,12937,13320 ,1,12938,45 ,1,12939,13320 ,1,12940,45 ,1,12941,13320 ,1,12942,45 ,1,12943,13320 ,1,12944,215090 ,1,12945,319495 ,1,12946,319485 ,1,12947,319475 ,1,12948,319465 ,1,12949,319440 ,1,12950,319430 ,1,12951,612990 ,1,12952,583875 ,1,12953,45 ,1,12954,13320 ,1,12955,45 ,1,12956,13320 ,1,12957,45 ,1,12958,13320 ,1,12959,45 ,1,12960,13320 ,1,12961,45 ,1,12962,13320 ,1,12963,45 ,1,12964,13320 ,1,12965,45 ,1,12966,13320 ,1,12967,215080 ,1,12968,319420 ,1,12969,319410 ,1,12970,319400 ,1,12971,319390 ,1,12972,612995 ,1,12973,583885 ,1,12974,45 ,1,12975,13320 ,1,12976,45 ,1,12977,13320 ,1,12978,45 ,1,12979,13320 ,1,12980,45 ,1,12981,13320 ,1,12982,45 ,1,12983,13320 ,1,12984,45 ,1,12985,13320 ,1,12986,45 ,1,12987,13320 ,1,12988,215070 ,1,12989,319380 ,1,12990,319370 ,1,12991,319325 ,1,12992,319315 ,1,12993,319305 ,1,12994,319295 ,1,12995,613000 ,1,12996,583895 ,1,12997,45 ,1,12998,13320 ,1,12999,45 ,1,13000,13320 ,1,13001,45 ,1,13002,13320 ,1,13003,45 ,1,13004,13320 ,1,13005,45 ,1,13006,13320 ,1,13007,45 ,1,13008,13320 ,1,13009,45 ,1,13010,13320 ,1,13011,215060 ,1,13012,319285 ,1,13013,319275 ,1,13014,319265 ,1,13015,319255 ,1,13016,613005 ,1,13017,583905 ,1,13018,45 ,1,13019,13320 ,1,13020,45 ,1,13021,13320 ,1,13022,45 ,1,13023,13320 ,1,13024,45 ,1,13025,13320 ,1,13026,45 ,1,13027,13320 ,1,13028,45 ,1,13029,13320 ,1,13030,45 ,1,13031,13320 ,1,13032,215045 ,1,13033,319235 ,1,13034,319225 ,1,13035,319215 ,1,13036,319205 ,1,13037,319195 ,1,13038,319185 ,1,13039,613010 ,1,13040,583940 ,1,13041,45 ,1,13042,13320 ,1,13043,45 ,1,13044,13320 ,1,13045,45 ,1,13046,13320 ,1,13047,45 ,1,13048,13320 ,1,13049,45 ,1,13050,13320 ,1,13051,45 ,1,13052,13320 ,1,13053,45 ,1,13054,13320 ,1,13055,215035 ,1,13056,319175 ,1,13057,319165 ,1,13058,319125 ,1,13059,319115 ,1,13060,613015 ,1,13061,583950 ,1,13062,45 ,1,13063,13320 ,1,13064,45 ,1,13065,13320 ,1,13066,45 ,1,13067,13320 ,1,13068,45 ,1,13069,13320 ,1,13070,45 ,1,13071,13320 ,1,13072,45 ,1,13073,13320 ,1,13074,45 ,1,13075,13320 ,1,13076,215025 ,1,13077,319105 ,1,13078,319095 ,1,13079,319085 ,1,13080,319075 ,1,13081,319065 ,1,13082,319055 ,1,13083,613020 ,1,13084,583960 ,1,13085,45 ,1,13086,13320 ,1,13087,45 ,1,13088,13320 ,1,13089,45 ,1,13090,13320 ,1,13091,45 ,1,13092,13320 ,1,13093,45 ,1,13094,13320 ,1,13095,45 ,1,13096,13320 ,1,13097,45 ,1,13098,13320 ,1,13099,215015 ,1,13100,319030 ,1,13101,319020 ,1,13102,319010 ,1,13103,319000 ,1,13104,613045 ,1,13105,583970 ,1,13106,45 ,1,13107,13320 ,1,13108,45 ,1,13109,13320 ,1,13110,45 ,1,13111,13320 ,1,13112,45 ,1,13113,13320 ,1,13114,45 ,1,13115,13320 ,1,13116,45 ,1,13117,13320 ,1,13118,45 ,1,13119,13320 ,1,13120,262695 ,1,13121,262685 ,1,13122,262660 ,1,13123,262640 ,1,13124,262595 ,1,13125,262575 ,1,13126,262555 ,1,13127,262535 ,1,13128,262500 ,1,13129,262480 ,1,13130,262460 ,1,13131,262420 ,1,13132,262400 ,1,13133,262370 ,1,13134,262285 ,1,13135,262265 ,1,13136,262245 ,1,13137,214975 ,1,13138,584015 ,1,13139,45 ,1,13140,13320 ,1,13141,45 ,1,13142,13320 ,1,13143,214965 ,1,13144,551580 ,1,13145,45 ,1,13146,4315 ,1,13147,214955 ,1,13148,14100 ,1,13149,14090 ,1,13150,14080 ,1,13151,14070 ,1,13152,14060 ,1,13153,262295 ,1,13154,214930 ,1,13155,45 ,1,13156,4315 ,1,13157,45 ,1,13158,322830 ,1,13159,214920 ,1,13160,318990 ,1,13161,318980 ,1,13162,318970 ,1,13163,14050 ,1,13164,14040 ,1,13165,262350 ,1,13166,14005 ,1,13167,13995 ,1,13168,13985 ,1,13169,13975 ,1,13170,13955 ,1,13171,13945 ,1,13172,13935 ,1,13173,13925 ,1,13174,13885 ,1,13175,13875 ,1,13176,262305 ,1,13177,261040 ,1,13178,4400 ,1,13179,318960 ,1,13180,2280 ,1,13181,542035 ,1,13182,2210 ,1,13183,542345 ,1,13184,2210 ,1,13185,542350 ,1,13186,2210 ,1,13187,542345 ,1,13188,13865 ,1,13189,13855 ,1,13190,13840 ,1,13191,13830 ,1,13192,13820 ,1,13193,13810 ,1,13194,13790 ,1,13195,13780 ,1,13196,13770 ,1,13197,13760 ,1,13198,13740 ,1,13199,13730 ,1,13200,13720 ,1,13201,13710 ,1,13202,13680 ,1,13203,13670 ,1,13204,13660 ,1,13205,13650 ,1,13206,13640 ,1,13207,13630 ,1,13208,13620 ,1,13209,13610 ,1,13210,13580 ,1,13211,13570 ,1,13212,13560 ,1,13213,13550 ,1,13214,13540 ,1,13215,13530 ,1,13216,13520 ,1,13217,13510 ,1,13218,13460 ,1,13219,13450 ,1,13220,13440 ,1,13221,13430 ,1,13222,13415 ,1,13223,13405 ,1,13224,13395 ,1,13225,13385 ,1,13226,13355 ,1,13227,13345 ,1,13228,13335 ,1,13229,13325 ,1,13230,13315 ,1,13231,13305 ,1,13232,13295 ,1,13233,13285 ,1,13234,13245 ,1,13235,13235 ,1,13236,13225 ,1,13237,13215 ,1,13238,13200 ,1,13239,13190 ,1,13240,13180 ,1,13241,13170 ,1,13242,13135 ,1,13243,13125 ,1,13244,13115 ,1,13245,13105 ,1,13246,13095 ,1,13247,13085 ,1,13248,13075 ,1,13249,13065 ,1,13250,13045 ,1,13251,13035 ,1,13252,13025 ,1,13253,13015 ,1,13254,13000 ,1,13255,12990 ,1,13256,12980 ,1,13257,12970 ,1,13258,12920 ,1,13259,12910 ,1,13260,12900 ,1,13261,12890 ,1,13262,12880 ,1,13263,12870 ,1,13264,12860 ,1,13265,12850 ,1,13266,12820 ,1,13267,12810 ,1,13268,12800 ,1,13269,12790 ,1,13270,12775 ,1,13271,12765 ,1,13272,12755 ,1,13273,12745 ,1,13274,12720 ,1,13275,12710 ,1,13276,12700 ,1,13277,12690 ,1,13278,12680 ,1,13279,12670 ,1,13280,12660 ,1,13281,12650 ,1,13282,12620 ,1,13283,12610 ,1,13284,12600 ,1,13285,12590 ,1,13286,12580 ,1,13287,12570 ,1,13288,12560 ,1,13289,12550 ,1,13290,12510 ,1,13291,12500 ,1,13292,12490 ,1,13293,12480 ,1,13294,12470 ,1,13295,12460 ,1,13296,12450 ,1,13297,12440 ,1,13298,12400 ,1,13299,12390 ,1,13300,12380 ,1,13301,12370 ,1,13302,12360 ,1,13303,12350 ,1,13304,12340 ,1,13305,12330 ,1,13306,12300 ,1,13307,262315 ,1,13308,2210 ,1,13309,542350 ,1,13310,278740 ,1,13311,373800 ,1,13312,373790 ,1,13313,318925 ,1,13314,2280 ,1,13315,542030 ,1,13316,2280 ,1,13317,542025 ,1,13318,2280 ,1,13319,542270 ,1,13320,12290 ,1,13321,12280 ,1,13322,318915 ,1,13323,214910 ,1,13324,214900 ,1,13325,12270 ,1,13326,12260 ,1,13327,12250 ,1,13328,12240 ,1,13329,12230 ,1,13330,12215 ,1,13331,12205 ,1,13332,12195 ,1,13333,12185 ,1,13334,12170 ,1,13335,12160 ,1,13336,12150 ,1,13337,12140 ,1,13338,214865 ,1,13339,214855 ,1,13340,162765 ,1,13341,262490 ,1,13342,214835 ,1,13343,45 ,1,13344,4315 ,1,13345,45 ,1,13346,322830 ,1,13347,214820 ,1,13348,318905 ,1,13349,318885 ,1,13350,318875 ,1,13351,318865 ,1,13352,318855 ,1,13353,214810 ,1,13354,214800 ,1,13355,318830 ,1,13356,214790 ,1,13357,214770 ,1,13358,214760 ,1,13359,214750 ,1,13360,214740 ,1,13361,214720 ,1,13362,214710 ,1,13363,318820 ,1,13364,287255 ,1,13365,289000 ,1,13366,289015 ,1,13367,262705 ,1,13368,554715 ,1,13369,214700 ,1,13370,45 ,1,13371,8740 ,1,13372,261515 ,1,13373,261570 ,1,13374,262810 ,1,13375,262800 ,1,13376,262790 ,1,13377,262780 ,1,13378,262760 ,1,13379,262715 ,1,13380,214650 ,1,13381,582895 ,1,13382,45 ,1,13383,4315 ,1,13384,45 ,1,13385,322830 ,1,13386,214640 ,1,13387,214620 ,1,13388,318810 ,1,13389,45 ,1,13390,4315 ,1,13391,45 ,1,13392,322830 ,1,13393,214610 ,1,13394,318800 ,1,13395,318785 ,1,13396,318775 ,1,13397,318765 ,1,13398,214590 ,1,13399,318755 ,1,13400,45 ,1,13401,4315 ,1,13402,45 ,1,13403,322830 ,1,13404,214580 ,1,13405,318725 ,1,13406,214535 ,1,13407,318715 ,1,13408,45 ,1,13409,4315 ,1,13410,45 ,1,13411,322830 ,1,13412,214525 ,1,13413,214505 ,1,13414,45 ,1,13415,4315 ,1,13416,45 ,1,13417,322830 ,1,13418,214495 ,1,13419,214475 ,1,13420,318705 ,1,13421,45 ,1,13422,4315 ,1,13423,45 ,1,13424,322830 ,1,13425,214435 ,1,13426,318695 ,1,13427,214415 ,1,13428,318685 ,1,13429,45 ,1,13430,4315 ,1,13431,45 ,1,13432,322830 ,1,13433,214405 ,1,13434,214390 ,1,13435,290215 ,1,13436,262865 ,1,13437,262855 ,1,13438,262845 ,1,13439,214380 ,1,13440,584290 ,1,13441,214360 ,1,13442,318675 ,1,13443,45 ,1,13444,4315 ,1,13445,45 ,1,13446,322830 ,1,13447,214330 ,1,13448,554710 ,1,13449,214310 ,1,13450,318665 ,1,13451,45 ,1,13452,4315 ,1,13453,45 ,1,13454,322830 ,1,13455,214300 ,1,13456,181175 ,1,13457,318655 ,1,13458,45 ,1,13459,11510 ,1,13460,12085 ,1,13461,166650 ,1,13462,12075 ,1,13463,12065 ,1,13464,12055 ,1,13465,45 ,1,13466,11510 ,1,13467,45 ,1,13468,11510 ,1,13469,45 ,1,13470,11510 ,1,13471,45 ,1,13472,11510 ,1,13473,45 ,1,13474,11510 ,1,13475,45 ,1,13476,11510 ,1,13477,45 ,1,13478,11510 ,1,13479,45 ,1,13480,11510 ,1,13481,45 ,1,13482,11510 ,1,13483,45 ,1,13484,11510 ,1,13485,554695 ,1,13486,554690 ,1,13487,374170 ,1,13488,318635 ,1,13489,318625 ,1,13490,318615 ,1,13491,256765 ,1,13492,318605 ,1,13493,214285 ,1,13494,2280 ,1,13495,542095 ,1,13496,214275 ,1,13497,318595 ,1,13498,214265 ,1,13499,357510 ,1,13500,214255 ,1,13501,354815 ,1,13502,214220 ,1,13503,214210 ,1,13504,45 ,1,13505,179760 ,1,13506,45 ,1,13507,318585 ,1,13508,318575 ,1,13509,45 ,1,13510,13320 ,1,13511,15480 ,1,13512,370960 ,1,13513,370950 ,1,13514,162755 ,1,13515,252845 ,1,13516,221620 ,1,13517,214200 ,1,13518,318565 ,1,13519,358735 ,1,13520,358835 ,1,13521,355250 ,1,13522,355200 ,1,13523,358060 ,1,13524,351720 ,1,13525,357555 ,1,13526,355410 ,1,13527,355400 ,1,13528,355360 ,1,13529,355065 ,1,13530,2280 ,1,13531,542095 ,1,13532,318530 ,1,13533,318520 ,1,13534,318510 ,1,13535,2280 ,1,13536,542095 ,1,13537,2280 ,1,13538,542095 ,1,13539,2280 ,1,13540,542095 ,1,13541,2280 ,1,13542,542095 ,1,13543,2280 ,1,13544,542095 ,1,13545,318500 ,1,13546,2210 ,1,13547,542350 ,1,13548,2210 ,1,13549,542350 ,1,13550,2210 ,1,13551,542350 ,1,13552,214190 ,1,13553,214180 ,1,13554,354905 ,1,13555,214170 ,1,13556,45 ,1,13557,179760 ,1,13558,45 ,1,13559,179760 ,1,13560,318480 ,1,13561,275345 ,1,13562,45 ,1,13563,242450 ,1,13564,214160 ,1,13565,214150 ,1,13566,45 ,1,13567,179760 ,1,13568,14995 ,1,13569,550435 ,1,13570,355125 ,1,13571,561970 ,1,13572,318470 ,1,13573,562335 ,1,13574,2210 ,1,13575,542350 ,1,13576,45 ,1,13577,9435 ,1,13578,45 ,1,13579,9435 ,1,13580,45 ,1,13581,9435 ,1,13582,318460 ,1,13583,318450 ,1,13584,2210 ,1,13585,542350 ,1,13586,2210 ,1,13587,542350 ,1,13588,184065 ,1,13589,557905 ,1,13590,45 ,1,13591,9435 ,1,13592,45 ,1,13593,11510 ,1,13594,2210 ,1,13595,542350 ,1,13596,45 ,1,13597,9435 ,1,13598,45 ,1,13599,9435 ,1,13600,45 ,1,13601,9435 ,1,13602,45 ,1,13603,9435 ,1,13604,45 ,1,13605,9435 ,1,13606,45 ,1,13607,9435 ,1,13609,2395 ,1,13610,45 ,1,13611,9470 ,1,13612,45 ,1,13613,9435 ,1,13615,2395 ,1,13616,45 ,1,13617,9470 ,1,13618,45 ,1,13619,9435 ,1,13620,45 ,1,13621,9435 ,1,13622,45 ,1,13623,9435 ,1,13624,45 ,1,13625,9435 ,1,13627,2395 ,1,13628,45 ,1,13629,9470 ,1,13630,45 ,1,13631,9435 ,1,13632,45 ,1,13633,9435 ,1,13635,2395 ,1,13636,45 ,1,13637,9470 ,1,13638,45 ,1,13639,9435 ,1,13641,2395 ,1,13642,45 ,1,13643,9470 ,1,13644,45 ,1,13645,9435 ,1,13646,554685 ,1,13647,45 ,1,13648,9435 ,1,13649,45 ,1,13650,11510 ,1,13651,45 ,1,13652,11510 ,1,13653,2210 ,1,13654,542350 ,1,13655,551660 ,1,13656,45 ,1,13657,9435 ,1,13658,45 ,1,13659,9435 ,1,13660,45 ,1,13661,9435 ,1,13662,45 ,1,13663,9435 ,1,13664,45 ,1,13665,318420 ,1,13666,45 ,1,13667,9435 ,1,13668,318410 ,1,13669,2210 ,1,13670,542350 ,1,13671,318400 ,1,13672,318390 ,1,13673,318365 ,1,13675,2395 ,1,13676,591950 ,1,13677,45 ,1,13678,318355 ,1,13679,318345 ,1,13680,261025 ,1,13681,261015 ,1,13682,318335 ,1,13683,318305 ,1,13684,214105 ,1,13685,45 ,1,13686,13320 ,1,13687,2280 ,1,13688,542235 ,1,13689,2280 ,1,13690,542235 ,1,13691,318295 ,1,13692,280965 ,1,13693,542525 ,1,13694,591940 ,1,13695,542525 ,1,13696,278960 ,1,13697,214095 ,1,13698,45 ,1,13699,13320 ,1,13700,280875 ,1,13701,172395 ,1,13702,176795 ,1,13703,318285 ,1,13704,281835 ,1,13705,281810 ,1,13706,584405 ,1,13707,45 ,1,13708,318355 ,1,13709,45 ,1,13710,11085 ,1,13711,45 ,1,13712,12795 ,1,13713,45 ,1,13714,11510 ,1,13715,45 ,1,13716,11510 ,1,13717,45 ,1,13718,11510 ,1,13719,45 ,1,13720,11510 ,1,13721,45 ,1,13722,11510 ,1,13723,45 ,1,13724,11510 ,1,13725,45 ,1,13726,11510 ,1,13727,45 ,1,13728,11510 ,1,13729,45 ,1,13730,11510 ,1,13731,45 ,1,13732,11510 ,1,13733,45 ,1,13734,11510 ,1,13735,45 ,1,13736,11510 ,1,13737,45 ,1,13738,11510 ,1,13739,45 ,1,13740,11510 ,1,13741,45 ,1,13742,11510 ,1,13743,45 ,1,13744,11510 ,1,13745,12040 ,1,13746,45 ,1,13747,11510 ,1,13748,12030 ,1,13749,45 ,1,13750,11510 ,1,13751,12020 ,1,13752,45 ,1,13753,11510 ,1,13754,45 ,1,13755,11510 ,1,13756,12010 ,1,13757,45 ,1,13758,11510 ,1,13759,45 ,1,13760,11510 ,1,13761,45 ,1,13762,11510 ,1,13763,45 ,1,13764,11510 ,1,13765,45 ,1,13766,11510 ,1,13767,45 ,1,13768,11510 ,1,13769,45 ,1,13770,11510 ,1,13771,45 ,1,13772,11510 ,1,13773,45 ,1,13774,11510 ,1,13775,45 ,1,13776,11510 ,1,13777,45 ,1,13778,11510 ,1,13779,45 ,1,13780,11510 ,1,13781,45 ,1,13782,11510 ,1,13783,45 ,1,13784,11510 ,1,13785,45 ,1,13786,11510 ,1,13787,45 ,1,13788,11510 ,1,13789,45 ,1,13790,11510 ,1,13791,45 ,1,13792,11510 ,1,13793,45 ,1,13794,11510 ,1,13795,45 ,1,13796,11510 ,1,13797,45 ,1,13798,11510 ,1,13799,45 ,1,13800,11510 ,1,13801,45 ,1,13802,11510 ,1,13803,45 ,1,13804,11510 ,1,13805,45 ,1,13806,11510 ,1,13807,45 ,1,13808,11510 ,1,13809,45 ,1,13810,11510 ,1,13811,45 ,1,13812,11510 ,1,13813,45 ,1,13814,11510 ,1,13815,45 ,1,13816,11510 ,1,13817,45 ,1,13818,11510 ,1,13819,45 ,1,13820,318355 ,1,13821,318275 ,1,13822,318255 ,1,13823,542520 ,1,13824,591940 ,1,13825,542520 ,1,13826,171670 ,1,13827,166910 ,1,13828,2280 ,1,13829,542030 ,1,13830,2280 ,1,13831,542025 ,1,13832,2280 ,1,13833,542270 ,1,13834,542515 ,1,13835,591940 ,1,13836,542515 ,1,13837,542510 ,1,13838,591940 ,1,13839,542510 ,1,13840,45 ,1,13841,318355 ,1,13842,318245 ,1,13843,173860 ,1,13844,2210 ,1,13845,542350 ,1,13846,2210 ,1,13847,542350 ,1,13848,2210 ,1,13849,542350 ,1,13850,45 ,1,13851,11690 ,1,13852,318235 ,1,13853,261415 ,1,13854,261405 ,1,13855,261385 ,1,13856,261375 ,1,13857,261475 ,1,13858,11980 ,1,13859,11970 ,1,13860,11960 ,1,13861,11950 ,1,13862,11935 ,1,13863,11925 ,1,13864,11915 ,1,13865,11905 ,1,13866,11850 ,1,13867,11840 ,1,13868,11830 ,1,13869,11820 ,1,13870,11810 ,1,13871,11800 ,1,13872,11790 ,1,13873,11780 ,1,13874,11750 ,1,13875,11740 ,1,13876,11730 ,1,13877,11720 ,1,13878,11705 ,1,13879,11695 ,1,13880,11685 ,1,13881,11675 ,1,13882,11630 ,1,13883,11620 ,1,13884,11610 ,1,13885,11600 ,1,13886,11575 ,1,13887,11565 ,1,13888,11555 ,1,13889,11545 ,1,13890,11515 ,1,13891,11505 ,1,13892,11495 ,1,13893,11485 ,1,13894,11475 ,1,13895,11465 ,1,13896,11455 ,1,13897,11445 ,1,13898,11420 ,1,13899,11410 ,1,13900,11400 ,1,13901,11390 ,1,13902,11375 ,1,13903,11365 ,1,13904,11355 ,1,13905,11345 ,1,13906,11320 ,1,13907,11310 ,1,13908,11300 ,1,13909,11290 ,1,13910,11280 ,1,13911,11270 ,1,13912,11260 ,1,13913,11250 ,1,13914,11205 ,1,13915,11195 ,1,13916,11185 ,1,13917,11175 ,1,13918,11160 ,1,13919,11150 ,1,13920,11140 ,1,13921,11130 ,1,13922,11100 ,1,13923,11090 ,1,13924,11080 ,1,13925,11070 ,1,13926,11050 ,1,13927,11040 ,1,13928,11030 ,1,13929,11020 ,1,13930,10970 ,1,13931,10960 ,1,13932,10950 ,1,13933,10940 ,1,13934,10930 ,1,13935,10920 ,1,13936,10910 ,1,13937,10900 ,1,13938,10880 ,1,13939,10870 ,1,13940,10860 ,1,13941,10850 ,1,13942,10840 ,1,13943,10830 ,1,13944,10820 ,1,13945,10810 ,1,13946,10775 ,1,13947,10765 ,1,13948,10755 ,1,13949,10745 ,1,13950,10730 ,1,13951,10720 ,1,13952,10710 ,1,13953,10700 ,1,13954,10670 ,1,13955,10660 ,1,13956,10650 ,1,13957,10640 ,1,13958,10615 ,1,13959,10605 ,1,13960,10595 ,1,13961,10585 ,1,13962,10555 ,1,13963,10545 ,1,13964,10535 ,1,13965,10525 ,1,13966,10515 ,1,13967,10505 ,1,13968,10495 ,1,13969,10485 ,1,13970,10450 ,1,13971,10440 ,1,13972,10430 ,1,13973,10420 ,1,13974,10400 ,1,13975,10390 ,1,13976,10380 ,1,13977,10370 ,1,13978,10350 ,1,13979,10340 ,1,13980,10330 ,1,13981,10320 ,1,13982,10310 ,1,13983,10300 ,1,13984,10290 ,1,13985,10280 ,1,13986,10235 ,1,13987,10225 ,1,13988,10215 ,1,13989,10205 ,1,13990,10195 ,1,13991,10185 ,1,13992,10175 ,1,13993,10165 ,1,13994,10135 ,1,13995,10125 ,1,13996,10115 ,1,13997,10105 ,1,13998,10085 ,1,13999,10075 ,1,14000,10065 ,1,14001,10055 ,1,14002,10025 ,1,14003,10015 ,1,14004,10005 ,1,14005,9995 ,1,14006,9985 ,1,14007,9975 ,1,14008,9965 ,1,14009,9955 ,1,14010,9925 ,1,14011,9915 ,1,14012,9905 ,1,14013,9895 ,1,14014,9885 ,1,14015,9875 ,1,14016,9865 ,1,14017,9855 ,1,14018,9810 ,1,14019,9800 ,1,14020,9790 ,1,14021,9780 ,1,14022,9765 ,1,14023,9755 ,1,14024,9745 ,1,14025,9735 ,1,14026,9705 ,1,14027,9695 ,1,14028,9685 ,1,14029,9675 ,1,14030,9665 ,1,14031,9655 ,1,14032,9645 ,1,14033,9635 ,1,14034,9610 ,1,14035,9600 ,1,14036,9590 ,1,14037,9580 ,1,14038,9570 ,1,14039,9560 ,1,14040,9550 ,1,14041,9540 ,1,14042,9505 ,1,14043,9495 ,1,14044,9485 ,1,14045,9475 ,1,14046,9460 ,1,14047,9450 ,1,14048,9440 ,1,14049,9430 ,1,14050,9410 ,1,14051,9400 ,1,14052,9390 ,1,14053,9380 ,1,14054,9370 ,1,14055,9360 ,1,14056,9350 ,1,14057,9340 ,1,14058,9300 ,1,14059,9290 ,1,14060,9280 ,1,14061,9270 ,1,14062,9260 ,1,14063,9250 ,1,14064,9240 ,1,14065,9230 ,1,14066,9195 ,1,14067,9185 ,1,14068,9175 ,1,14069,9165 ,1,14070,9155 ,1,14071,9145 ,1,14072,9135 ,1,14073,9125 ,1,14074,9095 ,1,14075,9085 ,1,14076,9075 ,1,14077,9065 ,1,14078,9050 ,1,14079,9040 ,1,14080,9030 ,1,14081,9020 ,1,14082,9005 ,1,14083,8995 ,1,14084,8985 ,1,14085,8975 ,1,14086,8965 ,1,14087,8955 ,1,14088,8945 ,1,14089,8935 ,1,14090,8890 ,1,14091,8880 ,1,14092,8870 ,1,14093,8860 ,1,14094,8835 ,1,14095,8825 ,1,14096,8815 ,1,14097,8805 ,1,14098,8775 ,1,14099,8765 ,1,14100,8755 ,1,14101,8745 ,1,14102,8730 ,1,14103,8720 ,1,14104,8710 ,1,14105,8700 ,1,14106,8680 ,1,14107,8670 ,1,14108,8660 ,1,14109,8650 ,1,14110,8630 ,1,14111,8620 ,1,14112,8610 ,1,14113,8600 ,1,14114,8555 ,1,14115,8545 ,1,14116,8535 ,1,14117,8525 ,1,14118,8510 ,1,14119,8500 ,1,14120,8490 ,1,14121,8480 ,1,14122,8455 ,1,14123,8445 ,1,14124,8435 ,1,14125,8425 ,1,14126,8405 ,1,14127,8395 ,1,14128,8385 ,1,14129,8375 ,1,14130,8350 ,1,14131,8340 ,1,14132,8330 ,1,14133,8320 ,1,14134,8310 ,1,14135,8300 ,1,14136,8290 ,1,14137,8280 ,1,14138,8245 ,1,14139,8235 ,1,14140,8225 ,1,14141,8215 ,1,14142,8205 ,1,14143,8195 ,1,14144,8185 ,1,14145,8175 ,1,14146,8150 ,1,14147,8140 ,1,14148,8130 ,1,14149,8120 ,1,14150,8100 ,1,14151,8090 ,1,14152,8080 ,1,14153,8070 ,1,14154,8035 ,1,14155,8025 ,1,14156,8015 ,1,14157,8005 ,1,14158,7995 ,1,14159,7985 ,1,14160,7975 ,1,14161,7965 ,1,14162,7925 ,1,14163,7915 ,1,14164,7905 ,1,14165,7895 ,1,14166,7885 ,1,14167,7875 ,1,14168,7865 ,1,14169,7855 ,1,14170,7810 ,1,14171,7800 ,1,14172,7790 ,1,14173,7780 ,1,14174,7770 ,1,14175,7760 ,1,14176,7750 ,1,14177,7740 ,1,14178,7700 ,1,14179,7690 ,1,14180,7680 ,1,14181,7670 ,1,14182,7655 ,1,14183,7645 ,1,14184,7635 ,1,14185,7625 ,1,14186,7600 ,1,14187,7590 ,1,14188,7580 ,1,14189,7570 ,1,14190,7545 ,1,14191,7535 ,1,14192,7525 ,1,14193,7515 ,1,14194,7475 ,1,14195,7465 ,1,14196,7455 ,1,14197,7445 ,1,14198,7435 ,1,14199,7425 ,1,14200,7415 ,1,14201,7405 ,1,14202,7370 ,1,14203,7360 ,1,14204,7350 ,1,14205,7340 ,1,14206,7325 ,1,14207,7315 ,1,14208,7305 ,1,14209,7295 ,1,14210,7265 ,1,14211,7255 ,1,14212,7245 ,1,14213,7235 ,1,14214,7215 ,1,14215,7205 ,1,14216,7195 ,1,14217,7185 ,1,14218,7155 ,1,14219,7145 ,1,14220,7135 ,1,14221,7125 ,1,14222,7115 ,1,14223,7105 ,1,14224,7095 ,1,14225,7085 ,1,14226,7050 ,1,14227,7040 ,1,14228,7030 ,1,14229,7020 ,1,14230,6990 ,1,14231,6980 ,1,14232,6970 ,1,14233,6960 ,1,14234,6935 ,1,14235,6925 ,1,14236,6915 ,1,14237,6905 ,1,14238,6885 ,1,14239,6875 ,1,14240,6865 ,1,14241,6855 ,1,14242,6815 ,1,14243,6805 ,1,14244,6795 ,1,14245,6785 ,1,14246,6775 ,1,14247,6765 ,1,14248,6755 ,1,14249,6745 ,1,14250,6695 ,1,14251,6685 ,1,14252,6675 ,1,14253,6665 ,1,14254,6655 ,1,14255,6645 ,1,14256,6635 ,1,14257,6625 ,1,14258,6610 ,1,14259,6600 ,1,14260,6590 ,1,14261,6580 ,1,14262,6555 ,1,14263,6545 ,1,14264,6535 ,1,14265,6525 ,1,14266,6475 ,1,14267,6465 ,1,14268,6455 ,1,14269,6445 ,1,14270,6435 ,1,14271,6425 ,1,14272,6415 ,1,14273,6405 ,1,14274,6390 ,1,14275,6380 ,1,14276,6370 ,1,14277,6360 ,1,14278,6350 ,1,14279,6340 ,1,14280,6330 ,1,14281,6320 ,1,14282,6280 ,1,14283,6270 ,1,14284,6260 ,1,14285,6250 ,1,14286,6240 ,1,14287,6230 ,1,14288,6220 ,1,14289,6210 ,1,14290,6150 ,1,14291,6140 ,1,14292,6130 ,1,14293,6120 ,1,14294,6110 ,1,14295,6100 ,1,14296,6090 ,1,14297,6080 ,1,14298,6060 ,1,14299,6050 ,1,14300,6040 ,1,14301,6030 ,1,14302,6020 ,1,14303,6010 ,1,14304,6000 ,1,14305,5990 ,1,14306,5960 ,1,14307,5950 ,1,14308,5940 ,1,14309,5930 ,1,14310,5915 ,1,14311,5905 ,1,14312,5895 ,1,14313,5885 ,1,14314,5860 ,1,14315,5850 ,1,14316,5840 ,1,14317,5830 ,1,14318,5820 ,1,14319,5810 ,1,14320,5800 ,1,14321,5790 ,1,14322,5765 ,1,14323,5755 ,1,14324,5745 ,1,14325,5735 ,1,14326,5715 ,1,14327,5705 ,1,14328,5695 ,1,14329,5685 ,1,14330,5660 ,1,14331,5650 ,1,14332,5640 ,1,14333,5630 ,1,14334,5615 ,1,14335,5605 ,1,14336,5595 ,1,14337,5585 ,1,14338,5545 ,1,14339,5535 ,1,14340,5525 ,1,14341,5515 ,1,14342,5505 ,1,14343,5495 ,1,14344,5485 ,1,14345,5475 ,1,14346,5435 ,1,14347,5425 ,1,14348,5415 ,1,14349,5405 ,1,14350,5395 ,1,14351,5385 ,1,14352,5375 ,1,14353,5365 ,1,14354,5345 ,1,14355,5335 ,1,14356,5325 ,1,14357,5315 ,1,14358,5300 ,1,14359,5290 ,1,14360,5280 ,1,14361,5270 ,1,14362,5245 ,1,14363,5235 ,1,14364,5225 ,1,14365,5215 ,1,14366,5200 ,1,14367,5190 ,1,14368,5180 ,1,14369,5170 ,1,14370,5130 ,1,14371,5120 ,1,14372,5110 ,1,14373,5100 ,1,14374,5085 ,1,14375,5075 ,1,14376,5065 ,1,14377,5055 ,1,14378,5030 ,1,14379,5020 ,1,14380,5010 ,1,14381,5000 ,1,14382,4985 ,1,14383,4975 ,1,14384,4965 ,1,14385,4955 ,1,14386,4895 ,1,14387,4885 ,1,14388,4875 ,1,14389,4865 ,1,14390,4850 ,1,14391,4840 ,1,14392,4830 ,1,14393,4820 ,1,14394,4790 ,1,14395,4780 ,1,14396,4770 ,1,14397,4760 ,1,14398,4750 ,1,14399,4740 ,1,14400,4730 ,1,14401,4720 ,1,14402,4690 ,1,14403,4680 ,1,14404,4670 ,1,14405,4660 ,1,14406,4645 ,1,14407,4635 ,1,14408,4625 ,1,14409,4615 ,1,14410,4570 ,1,14411,4560 ,1,14412,4550 ,1,14413,4540 ,1,14414,4525 ,1,14415,4515 ,1,14416,4505 ,1,14417,4495 ,1,14418,4475 ,1,14419,4465 ,1,14420,4455 ,1,14421,4445 ,1,14422,4435 ,1,14423,4425 ,1,14424,4415 ,1,14425,4405 ,1,14426,4375 ,1,14427,4365 ,1,14428,4355 ,1,14429,4345 ,1,14430,4330 ,1,14431,4320 ,1,14432,4310 ,1,14433,4300 ,1,14434,4230 ,1,14435,4220 ,1,14436,4210 ,1,14437,4200 ,1,14438,4190 ,1,14439,4180 ,1,14440,4170 ,1,14441,4160 ,1,14442,4135 ,1,14443,4125 ,1,14444,4115 ,1,14445,4105 ,1,14446,4090 ,1,14447,4080 ,1,14448,4070 ,1,14449,4060 ,1,14450,4050 ,1,14451,4040 ,1,14452,4030 ,1,14453,4020 ,1,14454,4005 ,1,14455,3995 ,1,14456,3985 ,1,14457,3975 ,1,14458,3930 ,1,14459,3920 ,1,14460,3910 ,1,14461,3900 ,1,14462,3885 ,1,14463,3875 ,1,14464,3865 ,1,14465,3855 ,1,14466,3830 ,1,14467,3820 ,1,14468,3810 ,1,14469,3800 ,1,14470,3785 ,1,14471,3775 ,1,14472,3765 ,1,14473,3755 ,1,14474,3730 ,1,14475,3720 ,1,14476,3710 ,1,14477,3700 ,1,14478,3690 ,1,14479,3680 ,1,14480,3670 ,1,14481,3660 ,1,14482,3625 ,1,14483,3615 ,1,14484,3605 ,1,14485,3595 ,1,14486,3580 ,1,14487,3570 ,1,14488,3560 ,1,14489,3550 ,1,14490,3530 ,1,14491,3520 ,1,14492,3510 ,1,14493,3500 ,1,14494,3480 ,1,14495,3470 ,1,14496,3460 ,1,14497,3450 ,1,14498,3405 ,1,14499,3395 ,1,14500,3385 ,1,14501,3375 ,1,14502,3365 ,1,14503,3355 ,1,14504,3345 ,1,14505,3335 ,1,14506,3310 ,1,14507,3300 ,1,14508,3290 ,1,14509,3280 ,1,14510,3260 ,1,14511,3250 ,1,14512,3240 ,1,14513,3230 ,1,14514,3185 ,1,14515,3175 ,1,14516,3165 ,1,14517,3155 ,1,14518,3140 ,1,14519,3130 ,1,14520,3120 ,1,14521,3110 ,1,14522,3075 ,1,14523,3065 ,1,14524,3055 ,1,14525,3045 ,1,14526,3035 ,1,14527,3025 ,1,14528,3015 ,1,14529,3005 ,1,14530,2985 ,1,14531,2975 ,1,14532,2965 ,1,14533,2955 ,1,14534,2945 ,1,14535,2935 ,1,14536,2925 ,1,14537,2915 ,1,14538,2880 ,1,14539,2870 ,1,14540,2860 ,1,14541,2850 ,1,14542,2835 ,1,14543,2825 ,1,14544,2815 ,1,14545,2805 ,1,14546,2770 ,1,14547,2760 ,1,14548,2750 ,1,14549,2740 ,1,14550,2730 ,1,14551,2720 ,1,14552,2710 ,1,14553,2700 ,1,14554,2655 ,1,14555,2645 ,1,14556,2635 ,1,14557,2625 ,1,14558,2605 ,1,14559,2595 ,1,14560,2585 ,1,14561,2575 ,1,14562,2545 ,1,14563,2535 ,1,14564,2525 ,1,14565,2515 ,1,14566,2500 ,1,14567,2490 ,1,14568,2480 ,1,14569,2470 ,1,14570,2450 ,1,14571,2440 ,1,14572,2430 ,1,14573,2420 ,1,14574,2410 ,1,14575,2400 ,1,14576,2390 ,1,14577,2380 ,1,14578,2345 ,1,14579,2335 ,1,14580,2325 ,1,14581,2315 ,1,14582,2305 ,1,14583,2295 ,1,14584,2285 ,1,14585,2275 ,1,14586,2235 ,1,14587,2225 ,1,14588,2215 ,1,14589,2205 ,1,14590,2195 ,1,14591,2185 ,1,14592,2175 ,1,14593,2165 ,1,14594,2140 ,1,14595,2130 ,1,14596,2120 ,1,14597,2110 ,1,14598,2095 ,1,14599,2085 ,1,14600,2075 ,1,14601,2065 ,1,14602,2015 ,1,14603,2005 ,1,14604,1995 ,1,14605,1985 ,1,14606,1970 ,1,14607,1960 ,1,14608,1950 ,1,14609,1940 ,1,14610,1905 ,1,14611,1895 ,1,14612,1885 ,1,14613,1875 ,1,14614,1865 ,1,14615,1855 ,1,14616,1845 ,1,14617,1835 ,1,14618,1795 ,1,14619,1785 ,1,14620,1775 ,1,14621,1765 ,1,14622,1750 ,1,14623,1740 ,1,14624,1730 ,1,14625,1720 ,1,14626,261455 ,1,14627,261445 ,1,14628,261435 ,1,14629,261425 ,1,14630,261505 ,1,14631,1695 ,1,14632,1685 ,1,14633,1675 ,1,14634,1665 ,1,14635,1650 ,1,14636,1640 ,1,14637,1630 ,1,14638,1620 ,1,14639,1595 ,1,14640,1585 ,1,14641,1575 ,1,14642,1565 ,1,14643,1555 ,1,14644,1545 ,1,14645,1535 ,1,14646,1525 ,1,14647,1485 ,1,14648,1475 ,1,14649,1465 ,1,14650,1455 ,1,14651,1440 ,1,14652,1430 ,1,14653,1420 ,1,14654,1410 ,1,14655,1380 ,1,14656,1370 ,1,14657,1360 ,1,14658,1350 ,1,14659,1340 ,1,14660,1330 ,1,14661,1320 ,1,14662,1310 ,1,14663,1275 ,1,14664,1265 ,1,14665,1255 ,1,14666,1245 ,1,14667,1225 ,1,14668,1215 ,1,14669,1205 ,1,14670,1195 ,1,14671,1170 ,1,14672,1160 ,1,14673,1150 ,1,14674,1140 ,1,14675,1125 ,1,14676,1115 ,1,14677,1105 ,1,14678,1095 ,1,14679,1060 ,1,14680,1050 ,1,14681,1040 ,1,14682,1030 ,1,14683,1020 ,1,14684,1010 ,1,14685,1000 ,1,14686,990 ,1,14687,945 ,1,14688,935 ,1,14689,925 ,1,14690,915 ,1,14691,900 ,1,14692,890 ,1,14693,880 ,1,14694,870 ,1,14695,845 ,1,14696,835 ,1,14697,825 ,1,14698,815 ,1,14699,790 ,1,14700,780 ,1,14701,770 ,1,14702,760 ,1,14703,725 ,1,14704,715 ,1,14705,705 ,1,14706,695 ,1,14707,680 ,1,14708,670 ,1,14709,660 ,1,14710,650 ,1,14711,605 ,1,14712,595 ,1,14713,585 ,1,14714,575 ,1,14715,565 ,1,14716,555 ,1,14717,545 ,1,14718,535 ,1,14719,490 ,1,14720,480 ,1,14721,470 ,1,14722,460 ,1,14723,440 ,1,14724,430 ,1,14725,420 ,1,14726,410 ,1,14727,370 ,1,14728,360 ,1,14729,350 ,1,14730,340 ,1,14731,330 ,1,14732,320 ,1,14733,310 ,1,14734,300 ,1,14735,245 ,1,14736,235 ,1,14737,225 ,1,14738,215 ,1,14739,195 ,1,14740,185 ,1,14741,175 ,1,14742,165 ,1,14743,125 ,1,14744,115 ,1,14745,105 ,1,14746,95 ,1,14747,80 ,1,14748,70 ,1,14749,60 ,1,14750,50 ,1,14751,5 ,1,14752,675110 ,1,14753,675105 ,1,14754,675100 ,1,14755,675095 ,1,14756,675090 ,1,14757,675085 ,1,14758,675080 ,1,14759,675065 ,1,14760,675060 ,1,14761,675055 ,1,14762,675050 ,1,14763,675045 ,1,14764,675040 ,1,14765,675035 ,1,14766,675030 ,1,14767,675000 ,1,14768,674995 ,1,14769,674990 ,1,14770,674985 ,1,14771,674975 ,1,14772,674970 ,1,14773,674965 ,1,14774,674960 ,1,14775,674930 ,1,14776,674925 ,1,14777,674920 ,1,14778,674915 ,1,14779,674905 ,1,14780,674900 ,1,14781,674895 ,1,14782,674890 ,1,14783,674880 ,1,14784,674875 ,1,14785,674870 ,1,14786,674865 ,1,14787,674860 ,1,14788,674855 ,1,14789,674850 ,1,14790,674845 ,1,14791,674820 ,1,14792,674815 ,1,14793,674810 ,1,14794,674805 ,1,14795,674795 ,1,14796,674790 ,1,14797,674785 ,1,14798,674780 ,1,14799,674755 ,1,14800,674750 ,1,14801,674745 ,1,14802,674740 ,1,14803,674730 ,1,14804,674725 ,1,14805,674720 ,1,14806,674715 ,1,14807,674690 ,1,14808,674685 ,1,14809,674680 ,1,14810,674675 ,1,14811,674670 ,1,14812,674665 ,1,14813,674660 ,1,14814,674655 ,1,14815,674635 ,1,14816,674630 ,1,14817,674625 ,1,14818,674620 ,1,14819,674610 ,1,14820,674605 ,1,14821,674600 ,1,14822,674595 ,1,14823,674580 ,1,14824,674575 ,1,14825,674570 ,1,14826,674565 ,1,14827,674555 ,1,14828,674550 ,1,14829,674545 ,1,14830,674540 ,1,14831,674505 ,1,14832,674500 ,1,14833,674495 ,1,14834,674490 ,1,14835,674485 ,1,14836,674480 ,1,14837,674475 ,1,14838,674470 ,1,14839,674450 ,1,14840,674445 ,1,14841,674440 ,1,14842,674435 ,1,14843,674430 ,1,14844,674425 ,1,14845,674420 ,1,14846,674415 ,1,14847,674385 ,1,14848,674380 ,1,14849,674375 ,1,14850,674370 ,1,14851,674365 ,1,14852,674360 ,1,14853,674355 ,1,14854,674350 ,1,14855,674330 ,1,14856,674325 ,1,14857,674320 ,1,14858,674315 ,1,14859,674305 ,1,14860,674300 ,1,14861,674295 ,1,14862,674290 ,1,14863,674275 ,1,14864,674270 ,1,14865,674265 ,1,14866,674260 ,1,14867,674250 ,1,14868,674245 ,1,14869,674240 ,1,14870,674235 ,1,14871,674215 ,1,14872,674210 ,1,14873,674205 ,1,14874,674200 ,1,14875,674190 ,1,14876,674185 ,1,14877,674180 ,1,14878,674175 ,1,14879,674135 ,1,14880,674130 ,1,14881,674125 ,1,14882,674120 ,1,14883,674105 ,1,14884,674100 ,1,14885,674095 ,1,14886,674090 ,1,14887,674070 ,1,14888,674065 ,1,14889,674060 ,1,14890,674055 ,1,14891,674050 ,1,14892,674045 ,1,14893,674040 ,1,14894,674035 ,1,14895,674020 ,1,14896,674015 ,1,14897,674010 ,1,14898,674005 ,1,14899,673985 ,1,14900,673980 ,1,14901,673975 ,1,14902,673970 ,1,14903,673945 ,1,14904,673940 ,1,14905,673935 ,1,14906,673930 ,1,14907,673920 ,1,14908,673915 ,1,14909,673910 ,1,14910,673905 ,1,14911,673865 ,1,14912,673860 ,1,14913,673855 ,1,14914,673850 ,1,14915,673845 ,1,14916,673840 ,1,14917,673835 ,1,14918,673830 ,1,14919,673810 ,1,14920,673805 ,1,14921,673800 ,1,14922,673795 ,1,14923,673790 ,1,14924,673785 ,1,14925,673780 ,1,14926,673775 ,1,14927,673755 ,1,14928,673750 ,1,14929,673745 ,1,14930,673740 ,1,14931,673725 ,1,14932,673720 ,1,14933,673715 ,1,14934,673710 ,1,14935,673695 ,1,14936,673690 ,1,14937,673685 ,1,14938,673680 ,1,14939,673675 ,1,14940,673670 ,1,14941,673665 ,1,14942,673660 ,1,14943,673615 ,1,14944,673610 ,1,14945,673605 ,1,14946,673600 ,1,14947,673595 ,1,14948,673590 ,1,14949,673585 ,1,14950,673580 ,1,14951,673560 ,1,14952,673555 ,1,14953,673550 ,1,14954,673545 ,1,14955,673540 ,1,14956,673535 ,1,14957,673530 ,1,14958,673525 ,1,14959,673500 ,1,14960,673495 ,1,14961,673490 ,1,14962,673485 ,1,14963,673465 ,1,14964,673460 ,1,14965,673455 ,1,14966,673450 ,1,14967,673420 ,1,14968,673415 ,1,14969,673410 ,1,14970,673405 ,1,14971,673400 ,1,14972,673395 ,1,14973,673390 ,1,14974,673385 ,1,14975,673365 ,1,14976,673360 ,1,14977,673355 ,1,14978,673350 ,1,14979,673345 ,1,14980,673340 ,1,14981,673335 ,1,14982,673330 ,1,14983,673295 ,1,14984,673290 ,1,14985,673285 ,1,14986,673280 ,1,14987,673275 ,1,14988,673270 ,1,14989,673265 ,1,14990,673260 ,1,14991,673245 ,1,14992,673240 ,1,14993,673235 ,1,14994,673230 ,1,14995,673215 ,1,14996,673210 ,1,14997,673205 ,1,14998,673200 ,1,14999,673165 ,1,15000,673160 ,1,15001,673155 ,1,15002,673150 ,1,15003,673145 ,1,15004,673140 ,1,15005,673135 ,1,15006,673130 ,1,15007,673105 ,1,15008,673100 ,1,15009,673095 ,1,15010,673090 ,1,15011,673060 ,1,15012,673055 ,1,15013,673050 ,1,15014,673045 ,1,15015,673025 ,1,15016,673020 ,1,15017,673015 ,1,15018,673010 ,1,15019,673005 ,1,15020,673000 ,1,15021,672995 ,1,15022,672990 ,1,15023,672960 ,1,15024,672955 ,1,15025,672950 ,1,15026,672945 ,1,15027,672935 ,1,15028,672930 ,1,15029,672925 ,1,15030,672920 ,1,15031,672905 ,1,15032,672900 ,1,15033,672895 ,1,15034,672890 ,1,15035,672880 ,1,15036,672875 ,1,15037,672870 ,1,15038,672865 ,1,15039,672835 ,1,15040,672830 ,1,15041,672825 ,1,15042,672820 ,1,15043,672815 ,1,15044,672810 ,1,15045,672805 ,1,15046,672800 ,1,15047,672770 ,1,15048,672765 ,1,15049,672760 ,1,15050,672755 ,1,15051,672750 ,1,15052,672745 ,1,15053,672740 ,1,15054,672735 ,1,15055,672730 ,1,15056,672725 ,1,15057,672720 ,1,15058,672715 ,1,15059,672710 ,1,15060,672705 ,1,15061,672700 ,1,15062,672695 ,1,15063,672665 ,1,15064,672660 ,1,15065,672655 ,1,15066,672650 ,1,15067,672645 ,1,15068,672640 ,1,15069,672635 ,1,15070,672630 ,1,15071,672595 ,1,15072,672590 ,1,15073,672585 ,1,15074,672580 ,1,15075,672570 ,1,15076,672565 ,1,15077,672560 ,1,15078,672555 ,1,15079,672535 ,1,15080,672530 ,1,15081,672525 ,1,15082,672520 ,1,15083,672515 ,1,15084,672510 ,1,15085,672505 ,1,15086,672500 ,1,15087,672490 ,1,15088,672485 ,1,15089,672480 ,1,15090,672475 ,1,15091,672465 ,1,15092,672460 ,1,15093,672455 ,1,15094,672450 ,1,15095,672420 ,1,15096,672415 ,1,15097,672410 ,1,15098,672405 ,1,15099,672400 ,1,15100,672395 ,1,15101,672390 ,1,15102,672385 ,1,15103,672370 ,1,15104,672365 ,1,15105,672360 ,1,15106,672355 ,1,15107,672345 ,1,15108,672340 ,1,15109,672335 ,1,15110,672330 ,1,15111,672300 ,1,15112,672295 ,1,15113,672290 ,1,15114,672285 ,1,15115,672275 ,1,15116,672270 ,1,15117,672265 ,1,15118,672260 ,1,15119,672230 ,1,15120,672225 ,1,15121,672220 ,1,15122,672215 ,1,15123,672210 ,1,15124,672205 ,1,15125,672200 ,1,15126,672195 ,1,15127,672175 ,1,15128,672170 ,1,15129,672165 ,1,15130,672160 ,1,15131,672155 ,1,15132,672150 ,1,15133,672145 ,1,15134,672140 ,1,15135,672125 ,1,15136,672120 ,1,15137,672115 ,1,15138,672110 ,1,15139,672105 ,1,15140,672100 ,1,15141,672095 ,1,15142,672090 ,1,15143,672065 ,1,15144,672060 ,1,15145,672055 ,1,15146,672050 ,1,15147,672040 ,1,15148,672035 ,1,15149,672030 ,1,15150,672025 ,1,15151,672000 ,1,15152,671995 ,1,15153,671990 ,1,15154,671985 ,1,15155,671980 ,1,15156,671975 ,1,15157,671970 ,1,15158,671965 ,1,15159,671940 ,1,15160,671935 ,1,15161,671930 ,1,15162,671925 ,1,15163,671920 ,1,15164,671915 ,1,15165,671910 ,1,15166,671905 ,1,15167,671880 ,1,15168,671875 ,1,15169,671870 ,1,15170,671865 ,1,15171,671860 ,1,15172,671855 ,1,15173,671850 ,1,15174,671845 ,1,15175,671820 ,1,15176,671815 ,1,15177,671810 ,1,15178,671805 ,1,15179,671800 ,1,15180,671795 ,1,15181,671790 ,1,15182,671785 ,1,15183,671760 ,1,15184,671755 ,1,15185,671750 ,1,15186,671745 ,1,15187,671725 ,1,15188,671720 ,1,15189,671715 ,1,15190,671710 ,1,15191,671665 ,1,15192,671660 ,1,15193,671655 ,1,15194,671650 ,1,15195,671645 ,1,15196,671640 ,1,15197,671635 ,1,15198,671630 ,1,15199,671610 ,1,15200,671605 ,1,15201,671600 ,1,15202,671595 ,1,15203,671590 ,1,15204,671585 ,1,15205,671580 ,1,15206,671575 ,1,15207,671560 ,1,15208,671555 ,1,15209,671550 ,1,15210,671545 ,1,15211,671525 ,1,15212,671520 ,1,15213,671515 ,1,15214,671510 ,1,15215,671490 ,1,15216,671485 ,1,15217,671480 ,1,15218,671475 ,1,15219,671465 ,1,15220,671460 ,1,15221,671455 ,1,15222,671450 ,1,15223,671420 ,1,15224,671415 ,1,15225,671410 ,1,15226,671405 ,1,15227,671390 ,1,15228,671385 ,1,15229,671380 ,1,15230,671375 ,1,15231,671370 ,1,15232,671365 ,1,15233,671360 ,1,15234,671355 ,1,15235,671345 ,1,15236,671340 ,1,15237,671335 ,1,15238,671330 ,1,15239,671285 ,1,15240,671280 ,1,15241,671275 ,1,15242,671270 ,1,15243,671260 ,1,15244,671255 ,1,15245,671250 ,1,15246,671245 ,1,15247,671230 ,1,15248,671225 ,1,15249,671220 ,1,15250,671215 ,1,15251,671210 ,1,15252,671205 ,1,15253,671200 ,1,15254,671195 ,1,15255,671175 ,1,15256,671170 ,1,15257,671165 ,1,15258,671160 ,1,15259,671150 ,1,15260,671145 ,1,15261,671140 ,1,15262,671135 ,1,15263,671120 ,1,15264,671115 ,1,15265,671110 ,1,15266,671105 ,1,15267,671100 ,1,15268,671095 ,1,15269,671090 ,1,15270,671085 ,1,15271,671055 ,1,15272,671050 ,1,15273,671045 ,1,15274,671040 ,1,15275,671030 ,1,15276,671025 ,1,15277,671020 ,1,15278,671015 ,1,15279,670985 ,1,15280,670980 ,1,15281,670975 ,1,15282,670970 ,1,15283,670965 ,1,15284,670960 ,1,15285,670955 ,1,15286,670950 ,1,15287,670930 ,1,15288,670925 ,1,15289,670920 ,1,15290,670915 ,1,15291,670910 ,1,15292,670905 ,1,15293,670900 ,1,15294,670895 ,1,15295,670890 ,1,15296,670885 ,1,15297,670880 ,1,15298,670875 ,1,15299,670860 ,1,15300,670855 ,1,15301,670850 ,1,15302,670845 ,1,15303,670820 ,1,15304,670815 ,1,15305,670810 ,1,15306,670805 ,1,15307,670800 ,1,15308,670795 ,1,15309,670790 ,1,15310,670785 ,1,15311,670765 ,1,15312,670760 ,1,15313,670755 ,1,15314,670750 ,1,15315,670740 ,1,15316,670735 ,1,15317,670730 ,1,15318,670725 ,1,15319,670685 ,1,15320,670680 ,1,15321,670675 ,1,15322,670670 ,1,15323,670655 ,1,15324,670650 ,1,15325,670645 ,1,15326,670640 ,1,15327,670625 ,1,15328,670620 ,1,15329,670615 ,1,15330,670610 ,1,15331,670605 ,1,15332,670600 ,1,15333,670595 ,1,15334,670590 ,1,15335,670545 ,1,15336,670540 ,1,15337,670535 ,1,15338,670530 ,1,15339,670525 ,1,15340,670520 ,1,15341,670515 ,1,15342,670510 ,1,15343,670480 ,1,15344,670475 ,1,15345,670470 ,1,15346,670465 ,1,15347,670455 ,1,15348,670450 ,1,15349,670445 ,1,15350,670440 ,1,15351,670410 ,1,15352,670405 ,1,15353,670400 ,1,15354,670395 ,1,15355,670390 ,1,15356,670385 ,1,15357,670380 ,1,15358,670375 ,1,15359,670345 ,1,15360,670340 ,1,15361,670335 ,1,15362,670330 ,1,15363,670320 ,1,15364,670315 ,1,15365,670310 ,1,15366,670305 ,1,15367,670285 ,1,15368,670280 ,1,15369,670275 ,1,15370,670270 ,1,15371,670260 ,1,15372,670255 ,1,15373,670250 ,1,15374,670245 ,1,15375,670225 ,1,15376,670220 ,1,15377,670215 ,1,15378,670210 ,1,15379,670200 ,1,15380,670195 ,1,15381,670190 ,1,15382,670185 ,1,15383,670175 ,1,15384,670170 ,1,15385,670165 ,1,15386,670160 ,1,15387,670155 ,1,15388,670150 ,1,15389,670145 ,1,15390,670140 ,1,15391,670110 ,1,15392,670105 ,1,15393,670100 ,1,15394,670095 ,1,15395,670090 ,1,15396,670085 ,1,15397,670080 ,1,15398,670075 ,1,15399,591930 ,1,15400,45 ,1,15401,318355 ,1,15402,214085 ,1,15403,261465 ,1,15404,318225 ,1,15405,45 ,1,15406,8740 ,1,15407,670070 ,1,15408,670065 ,1,15409,45 ,1,15410,11510 ,1,15411,45 ,1,15412,11510 ,1,15413,45 ,1,15414,11510 ,1,15415,45 ,1,15416,11510 ,1,15417,45 ,1,15418,11510 ,1,15419,318180 ,1,15420,214075 ,1,15421,45 ,1,15422,179760 ,1,15423,45 ,1,15424,186035 ,1,15425,45 ,1,15426,341055 ,1,15427,45 ,1,15428,5900 ,1,15429,45 ,1,15430,5900 ,1,15431,45 ,1,15432,5900 ,1,15433,45 ,1,15434,5900 ,1,15435,215630 ,1,15436,45 ,1,15437,5900 ,1,15438,225945 ,1,15439,45 ,1,15440,5900 ,1,15441,214055 ,1,15442,45 ,1,15443,209800 ,1,15444,45 ,1,15445,5900 ,1,15446,45 ,1,15447,5900 ,1,15448,45 ,1,15449,5900 ,1,15450,45 ,1,15451,5900 ,1,15452,354705 ,1,15453,354685 ,1,15454,354695 ,1,15455,45 ,1,15456,255425 ,1,15457,318170 ,1,15458,548270 ,1,15459,106785 ,1,15460,591890 ,1,15461,45 ,1,15462,331650 ,1,15463,318160 ,1,15464,542500 ,1,15465,586940 ,1,15466,542500 ,1,15467,298845 ,1,15468,554650 ,1,15469,45 ,1,15470,318150 ,1,15471,318140 ,1,15472,370035 ,1,15473,162720 ,1,15474,354225 ,1,15475,318130 ,1,15476,354235 ,1,15477,318120 ,1,15478,45 ,1,15479,318150 ,1,15480,140130 ,1,15481,226535 ,1,15482,318110 ,1,15483,249645 ,1,15484,566445 ,1,15485,45 ,1,15486,276975 ,1,15487,318075 ,1,15488,140050 ,1,15489,45 ,1,15490,276975 ,1,15491,45 ,1,15492,5900 ,1,15493,231000 ,1,15494,225045 ,1,15495,318065 ,1,15496,2210 ,1,15497,542350 ,1,15498,570665 ,1,15499,45 ,1,15500,331650 ,1,15501,45 ,1,15502,331650 ,1,15503,591885 ,1,15504,45 ,1,15505,5900 ,1,15506,248905 ,1,15507,121605 ,1,15508,162710 ,1,15509,45 ,1,15510,5900 ,1,15511,162700 ,1,15512,230940 ,1,15513,230550 ,1,15514,230430 ,1,15515,354350 ,1,15516,354305 ,1,15517,554645 ,1,15518,359105 ,1,15519,45 ,1,15520,318150 ,1,15521,266795 ,1,15522,176210 ,1,15523,162690 ,1,15524,234560 ,1,15525,354275 ,1,15526,354255 ,1,15527,2210 ,1,15528,542350 ,1,15529,554640 ,1,15530,318055 ,1,15531,214045 ,1,15532,45 ,1,15533,5900 ,1,15534,45 ,1,15535,5900 ,1,15536,45 ,1,15537,5900 ,1,15538,45 ,1,15539,5900 ,1,15540,45 ,1,15541,5900 ,1,15542,580650 ,1,15543,45 ,1,15544,5900 ,1,15545,214035 ,1,15546,45 ,1,15547,5900 ,1,15548,45 ,1,15549,5900 ,1,15550,45 ,1,15551,5900 ,1,15552,45 ,1,15553,5900 ,1,15554,45 ,1,15555,5900 ,1,15556,45 ,1,15557,5900 ,1,15558,2210 ,1,15559,542350 ,1,15560,45 ,1,15561,213155 ,1,15562,591875 ,1,15563,45 ,1,15564,329440 ,1,15565,2210 ,1,15566,542350 ,1,15567,550755 ,1,15568,2210 ,1,15569,542350 ,1,15570,45 ,1,15571,5900 ,1,15572,45 ,1,15573,5900 ,1,15574,45 ,1,15575,5900 ,1,15576,45 ,1,15577,5900 ,1,15578,45 ,1,15579,5900 ,1,15580,568865 ,1,15581,45 ,1,15582,5900 ,1,15583,214025 ,1,15584,213990 ,1,15585,580615 ,1,15586,45 ,1,15587,342050 ,1,15588,45 ,1,15589,7585 ,1,15590,45 ,1,15591,11085 ,1,15592,213980 ,1,15593,550750 ,1,15594,580590 ,1,15595,45 ,1,15596,7585 ,1,15597,45 ,1,15598,11085 ,1,15599,318035 ,1,15600,213970 ,1,15601,180665 ,1,15602,45 ,1,15603,195155 ,1,15604,265765 ,1,15605,213960 ,1,15606,2210 ,1,15607,542350 ,1,15608,45 ,1,15609,7585 ,1,15610,45 ,1,15611,11085 ,1,15612,213950 ,1,15613,554635 ,1,15614,171390 ,1,15615,265540 ,1,15616,45 ,1,15617,309980 ,1,15618,213940 ,1,15619,45 ,1,15620,179760 ,1,15621,45 ,1,15622,5900 ,1,15623,45 ,1,15624,5900 ,1,15625,45 ,1,15626,5900 ,1,15627,45 ,1,15628,5900 ,1,15629,45 ,1,15630,5900 ,1,15631,45 ,1,15632,5900 ,1,15633,554625 ,1,15634,213930 ,1,15635,162680 ,1,15636,162670 ,1,15637,610505 ,1,15638,45 ,1,15639,318015 ,1,15640,45 ,1,15641,318005 ,1,15642,591800 ,1,15643,45 ,1,15644,5900 ,1,15645,554620 ,1,15646,554615 ,1,15647,45 ,1,15648,5900 ,1,15649,45 ,1,15650,5900 ,1,15651,45 ,1,15652,5900 ,1,15653,45 ,1,15654,5900 ,1,15655,45 ,1,15656,5900 ,1,15657,45 ,1,15658,5900 ,1,15659,216475 ,1,15660,226050 ,1,15661,162660 ,1,15662,45 ,1,15663,11510 ,1,15664,213920 ,1,15665,45 ,1,15666,4315 ,1,15667,226030 ,1,15668,354285 ,1,15669,225650 ,1,15670,45 ,1,15671,5900 ,1,15672,162650 ,1,15673,266015 ,1,15674,45 ,1,15675,318150 ,1,15676,266925 ,1,15677,266375 ,1,15678,354960 ,1,15679,354970 ,1,15680,354935 ,1,15681,354980 ,1,15682,250345 ,1,15683,213880 ,1,15684,213870 ,1,15685,213860 ,1,15686,213850 ,1,15687,213830 ,1,15688,213820 ,1,15689,45 ,1,15690,7585 ,1,15691,45 ,1,15692,11085 ,1,15693,45 ,1,15694,216580 ,1,15695,45 ,1,15696,216580 ,1,15697,45 ,1,15698,7585 ,1,15699,45 ,1,15700,11085 ,1,15701,45 ,1,15702,216580 ,1,15703,45 ,1,15704,216580 ,1,15705,554610 ,1,15706,213810 ,1,15707,213800 ,1,15708,213760 ,1,15709,213750 ,1,15710,45 ,1,15711,216580 ,1,15712,45 ,1,15713,216580 ,1,15714,45 ,1,15715,7585 ,1,15716,45 ,1,15717,11085 ,1,15718,45 ,1,15719,216580 ,1,15720,317980 ,1,15721,213740 ,1,15722,213730 ,1,15723,213715 ,1,15724,45 ,1,15725,216580 ,1,15726,45 ,1,15727,216580 ,1,15728,45 ,1,15729,7585 ,1,15730,45 ,1,15731,11085 ,1,15732,180855 ,1,15733,213705 ,1,15734,591745 ,1,15735,45 ,1,15736,243205 ,1,15737,317960 ,1,15738,162615 ,1,15739,199120 ,1,15740,266445 ,1,15741,216515 ,1,15742,213695 ,1,15743,45 ,1,15744,7585 ,1,15745,45 ,1,15746,11085 ,1,15747,45 ,1,15748,318150 ,1,15749,45 ,1,15750,318150 ,1,15751,266730 ,1,15752,591730 ,1,15753,45 ,1,15754,259605 ,1,15755,610455 ,1,15756,45 ,1,15757,327595 ,1,15758,552495 ,1,15759,45 ,1,15760,5900 ,1,15761,45 ,1,15762,325970 ,1,15763,572210 ,1,15764,45 ,1,15765,5900 ,1,15766,45 ,1,15767,5900 ,1,15768,45 ,1,15769,325970 ,1,15770,45 ,1,15771,5900 ,1,15772,45 ,1,15773,5900 ,1,15774,572245 ,1,15775,45 ,1,15776,5900 ,1,15777,45 ,1,15778,5900 ,1,15779,554575 ,1,15780,213650 ,1,15781,45 ,1,15782,13320 ,1,15783,45 ,1,15784,5900 ,1,15785,576620 ,1,15786,45 ,1,15787,5900 ,1,15788,45 ,1,15789,13320 ,1,15790,45 ,1,15791,5900 ,1,15792,45 ,1,15793,13320 ,1,15794,213640 ,1,15795,45 ,1,15796,13320 ,1,15797,213630 ,1,15798,45 ,1,15799,5900 ,1,15800,317950 ,1,15801,45 ,1,15802,5900 ,1,15803,45 ,1,15804,5900 ,1,15805,2210 ,1,15806,542350 ,1,15807,45 ,1,15808,11690 ,1,15809,45 ,1,15810,5900 ,1,15811,317935 ,1,15812,317925 ,1,15813,45 ,1,15814,5900 ,1,15815,213620 ,1,15816,45 ,1,15817,5900 ,1,15818,45 ,1,15819,5900 ,1,15820,45 ,1,15821,341055 ,1,15822,45 ,1,15823,5900 ,1,15824,45 ,1,15825,5900 ,1,15826,45 ,1,15827,5900 ,1,15828,45 ,1,15829,5900 ,1,15830,45 ,1,15831,5900 ,1,15832,550800 ,1,15833,45 ,1,15834,331650 ,1,15835,317915 ,1,15836,610290 ,1,15837,45 ,1,15838,318150 ,1,15839,374790 ,1,15840,292875 ,1,15841,548340 ,1,15842,45 ,1,15843,211985 ,1,15844,548740 ,1,15845,550195 ,1,15846,550210 ,1,15847,549945 ,1,15848,213605 ,1,15849,591695 ,1,15850,45 ,1,15851,5900 ,1,15852,45 ,1,15853,5900 ,1,15854,549960 ,1,15855,548765 ,1,15856,45 ,1,15857,5900 ,1,15858,550030 ,1,15859,574955 ,1,15860,45 ,1,15861,331650 ,1,15862,45 ,1,15863,331650 ,1,15864,132000 ,1,15865,554570 ,1,15866,575000 ,1,15867,45 ,1,15868,323485 ,1,15869,317905 ,1,15870,554565 ,1,15871,213595 ,1,15872,213585 ,1,15873,45 ,1,15874,11510 ,1,15875,45 ,1,15876,344025 ,1,15877,213575 ,1,15878,213545 ,1,15879,213535 ,1,15880,239865 ,1,15881,45 ,1,15882,341055 ,1,15883,213525 ,1,15884,575005 ,1,15885,45 ,1,15886,5900 ,1,15887,45 ,1,15888,209800 ,1,15889,591680 ,1,15890,45 ,1,15891,324000 ,1,15892,549555 ,1,15893,354755 ,1,15894,591675 ,1,15895,45 ,1,15896,324000 ,1,15897,317875 ,1,15898,45 ,1,15899,331650 ,1,15900,580340 ,1,15901,45 ,1,15902,259605 ,1,15903,262890 ,1,15904,591670 ,1,15905,45 ,1,15906,317865 ,1,15907,591665 ,1,15908,45 ,1,15909,317855 ,1,15910,591635 ,1,15911,45 ,1,15912,5900 ,1,15913,45 ,1,15914,259605 ,1,15915,45 ,1,15916,5900 ,1,15917,45 ,1,15918,5900 ,1,15919,45 ,1,15920,5900 ,1,15921,580260 ,1,15922,45 ,1,15923,259605 ,1,15924,262560 ,1,15925,579760 ,1,15926,45 ,1,15927,259605 ,1,15928,317845 ,1,15929,579875 ,1,15930,45 ,1,15931,259605 ,1,15932,591630 ,1,15933,45 ,1,15934,325430 ,1,15935,591625 ,1,15936,45 ,1,15937,325430 ,1,15938,591620 ,1,15939,45 ,1,15940,325430 ,1,15941,2210 ,1,15942,542350 ,1,15943,2210 ,1,15944,542350 ,1,15945,2210 ,1,15946,542350 ,1,15947,2210 ,1,15948,542350 ,1,15949,252865 ,1,15950,351710 ,1,15951,351700 ,1,15952,317830 ,1,15953,162605 ,1,15954,252730 ,1,15955,317755 ,1,15956,317745 ,1,15957,317735 ,1,15958,317725 ,1,15959,317715 ,1,15960,317705 ,1,15961,400430 ,1,15962,116435 ,1,15963,609625 ,1,15964,45 ,1,15965,5900 ,1,15966,45 ,1,15967,5900 ,1,15968,45 ,1,15969,5900 ,1,15970,45 ,1,15971,5900 ,1,15972,45 ,1,15973,209800 ,1,15974,45 ,1,15975,217770 ,1,15976,45 ,1,15977,5900 ,1,15978,45 ,1,15979,5900 ,1,15980,45 ,1,15981,5900 ,1,15982,45 ,1,15983,5900 ,1,15984,45 ,1,15985,5900 ,1,15986,45 ,1,15987,5900 ,1,15988,45 ,1,15989,5900 ,1,15990,45 ,1,15991,5900 ,1,15992,45 ,1,15993,5900 ,1,15994,45 ,1,15995,209800 ,1,15996,45 ,1,15997,209800 ,1,15998,45 ,1,15999,209800 ,1,16000,45 ,1,16001,217770 ,1,16002,570815 ,1,16003,45 ,1,16004,5900 ,1,16005,248840 ,1,16006,317670 ,1,16007,250500 ,1,16008,356335 ,1,16009,116230 ,1,16010,356435 ,1,16011,162595 ,1,16012,116090 ,1,16013,356425 ,1,16014,45 ,1,16015,209800 ,1,16016,45 ,1,16017,5900 ,1,16018,225660 ,1,16019,225055 ,1,16020,224980 ,1,16021,225160 ,1,16022,225680 ,1,16023,225670 ,1,16024,225120 ,1,16025,225065 ,1,16026,225095 ,1,16027,225140 ,1,16028,317660 ,1,16029,317650 ,1,16030,356295 ,1,16031,356315 ,1,16032,45 ,1,16033,209800 ,1,16034,45 ,1,16035,5900 ,1,16036,45 ,1,16037,5900 ,1,16038,248850 ,1,16039,400430 ,1,16040,115570 ,1,16041,45 ,1,16042,210915 ,1,16043,45 ,1,16044,183245 ,1,16045,45 ,1,16046,210905 ,1,16047,45 ,1,16048,198280 ,1,16049,162585 ,1,16050,162560 ,1,16051,45 ,1,16052,5900 ,1,16053,317640 ,1,16054,317625 ,1,16055,213515 ,1,16056,45 ,1,16057,208615 ,1,16058,45 ,1,16059,4315 ,1,16060,162550 ,1,16061,115765 ,1,16062,45 ,1,16063,179760 ,1,16064,45 ,1,16065,186035 ,1,16066,213500 ,1,16067,548545 ,1,16068,213490 ,1,16069,570795 ,1,16070,45 ,1,16071,5900 ,1,16072,317615 ,1,16073,45 ,1,16074,5900 ,1,16075,317605 ,1,16076,213480 ,1,16077,591615 ,1,16078,45 ,1,16079,9375 ,1,16080,45 ,1,16081,11510 ,1,16082,45 ,1,16083,11510 ,1,16084,213470 ,1,16085,45 ,1,16086,9375 ,1,16087,45 ,1,16088,11510 ,1,16089,317595 ,1,16090,45 ,1,16091,209800 ,1,16092,45 ,1,16093,209800 ,1,16094,211235 ,1,16095,570885 ,1,16096,45 ,1,16097,5900 ,1,16098,317545 ,1,16099,45 ,1,16100,5900 ,1,16101,317535 ,1,16102,45 ,1,16103,5900 ,1,16104,317525 ,1,16105,45 ,1,16106,211985 ,1,16107,213440 ,1,16108,45 ,1,16109,317515 ,1,16110,207480 ,1,16111,356185 ,1,16112,45 ,1,16113,5900 ,1,16114,45 ,1,16115,5900 ,1,16116,45 ,1,16117,5900 ,1,16118,212540 ,1,16119,212510 ,1,16120,212615 ,1,16121,45 ,1,16122,5900 ,1,16123,45 ,1,16124,5900 ,1,16125,224780 ,1,16126,224825 ,1,16127,317500 ,1,16128,45 ,1,16129,5900 ,1,16130,207015 ,1,16131,224865 ,1,16132,162540 ,1,16133,224835 ,1,16134,224845 ,1,16135,224855 ,1,16136,45 ,1,16137,5900 ,1,16138,45 ,1,16139,5900 ,1,16140,162530 ,1,16141,225310 ,1,16142,317490 ,1,16143,45 ,1,16144,5900 ,1,16145,45 ,1,16146,5900 ,1,16147,162500 ,1,16148,45 ,1,16149,5900 ,1,16150,317480 ,1,16151,2210 ,1,16152,542350 ,1,16153,225170 ,1,16154,225085 ,1,16155,225130 ,1,16156,225150 ,1,16157,225075 ,1,16158,45 ,1,16159,5900 ,1,16160,212500 ,1,16161,45 ,1,16162,5900 ,1,16163,212440 ,1,16164,45 ,1,16165,5900 ,1,16166,400430 ,1,16167,138090 ,1,16168,45 ,1,16169,5900 ,1,16170,45 ,1,16171,5900 ,1,16172,45 ,1,16173,5900 ,1,16174,45 ,1,16175,5900 ,1,16176,45 ,1,16177,5900 ,1,16178,45 ,1,16179,5900 ,1,16180,45 ,1,16181,5900 ,1,16182,45 ,1,16183,5900 ,1,16184,45 ,1,16185,5900 ,1,16186,45 ,1,16187,5900 ,1,16188,45 ,1,16189,5900 ,1,16190,45 ,1,16191,5900 ,1,16192,45 ,1,16193,209800 ,1,16194,45 ,1,16195,5900 ,1,16196,317470 ,1,16197,45 ,1,16198,5900 ,1,16199,45 ,1,16200,5900 ,1,16201,373585 ,1,16202,373695 ,1,16203,373565 ,1,16204,373740 ,1,16205,45 ,1,16206,5900 ,1,16207,45 ,1,16208,5900 ,1,16209,591605 ,1,16210,45 ,1,16211,5900 ,1,16212,45 ,1,16213,5900 ,1,16214,45 ,1,16215,5900 ,1,16216,45 ,1,16217,5900 ,1,16218,45 ,1,16219,5900 ,1,16220,45 ,1,16221,5900 ,1,16222,45 ,1,16223,5900 ,1,16224,317445 ,1,16225,45 ,1,16226,5900 ,1,16227,45 ,1,16228,5900 ,1,16229,45 ,1,16230,5900 ,1,16231,162490 ,1,16232,45 ,1,16233,5900 ,1,16234,45 ,1,16235,5900 ,1,16236,45 ,1,16237,5900 ,1,16238,213430 ,1,16239,45 ,1,16240,208615 ,1,16241,45 ,1,16242,4315 ,1,16243,45 ,1,16244,5900 ,1,16245,45 ,1,16246,211985 ,1,16247,45 ,1,16248,209800 ,1,16249,45 ,1,16250,5900 ,1,16251,45 ,1,16252,209800 ,1,16253,45 ,1,16254,217770 ,1,16255,45 ,1,16256,5900 ,1,16257,45 ,1,16258,209800 ,1,16259,45 ,1,16260,217770 ,1,16261,45 ,1,16262,5900 ,1,16263,367050 ,1,16264,45 ,1,16265,5900 ,1,16266,45 ,1,16267,5900 ,1,16268,45 ,1,16269,5900 ,1,16270,45 ,1,16271,5900 ,1,16272,45 ,1,16273,5900 ,1,16274,213420 ,1,16275,45 ,1,16276,5900 ,1,16277,162480 ,1,16278,45 ,1,16279,5900 ,1,16280,45 ,1,16281,5900 ,1,16282,162470 ,1,16283,45 ,1,16284,5900 ,1,16285,2210 ,1,16286,542350 ,1,16287,45 ,1,16288,5900 ,1,16289,162450 ,1,16290,45 ,1,16291,5900 ,1,16292,45 ,1,16293,5900 ,1,16294,2210 ,1,16295,542350 ,1,16296,213410 ,1,16297,554560 ,1,16298,45 ,1,16299,211340 ,1,16300,45 ,1,16301,5900 ,1,16302,317435 ,1,16303,213390 ,1,16304,45 ,1,16305,5900 ,1,16306,554555 ,1,16307,45 ,1,16308,5900 ,1,16309,213380 ,1,16310,210725 ,1,16311,609355 ,1,16312,45 ,1,16313,5900 ,1,16314,248365 ,1,16315,248330 ,1,16316,248320 ,1,16317,248310 ,1,16318,45 ,1,16319,5900 ,1,16320,45 ,1,16321,5900 ,1,16322,162440 ,1,16323,231450 ,1,16324,2210 ,1,16325,542350 ,1,16326,45 ,1,16327,5900 ,1,16328,45 ,1,16329,5900 ,1,16330,45 ,1,16331,5900 ,1,16332,45 ,1,16333,5900 ,1,16334,45 ,1,16335,5900 ,1,16336,2210 ,1,16337,542350 ,1,16338,213370 ,1,16339,45 ,1,16340,211340 ,1,16341,213360 ,1,16342,138460 ,1,16343,45 ,1,16344,209800 ,1,16345,45 ,1,16346,5900 ,1,16347,45 ,1,16348,5900 ,1,16349,213330 ,1,16350,45 ,1,16351,209800 ,1,16352,45 ,1,16353,5900 ,1,16354,317425 ,1,16355,45 ,1,16356,5900 ,1,16357,45 ,1,16358,5900 ,1,16359,45 ,1,16360,5900 ,1,16361,45 ,1,16362,5900 ,1,16363,45 ,1,16364,11510 ,1,16365,45 ,1,16366,5900 ,1,16367,224990 ,1,16368,225025 ,1,16369,45 ,1,16370,5900 ,1,16371,45 ,1,16372,5900 ,1,16373,45 ,1,16374,5900 ,1,16375,162430 ,1,16376,45 ,1,16377,5900 ,1,16378,162420 ,1,16379,45 ,1,16380,5900 ,1,16381,45 ,1,16382,5900 ,1,16383,45 ,1,16384,5900 ,1,16385,45 ,1,16386,5900 ,1,16387,45 ,1,16388,5900 ,1,16389,45 ,1,16390,5900 ,1,16391,45 ,1,16392,5900 ,1,16393,2210 ,1,16394,542350 ,1,16395,400430 ,1,16396,115130 ,1,16397,45 ,1,16398,276975 ,1,16399,591570 ,1,16400,45 ,1,16401,190350 ,1,16402,45 ,1,16403,190350 ,1,16404,45 ,1,16405,5900 ,1,16406,317415 ,1,16407,45 ,1,16408,5900 ,1,16409,45 ,1,16410,5900 ,1,16411,45 ,1,16412,5900 ,1,16413,45 ,1,16414,5900 ,1,16415,45 ,1,16416,5900 ,1,16417,45 ,1,16418,5900 ,1,16419,45 ,1,16420,5900 ,1,16421,371835 ,1,16422,117355 ,1,16423,207350 ,1,16424,117535 ,1,16425,207340 ,1,16426,117415 ,1,16427,207400 ,1,16428,117470 ,1,16429,207530 ,1,16430,317405 ,1,16431,118645 ,1,16432,45 ,1,16433,5900 ,1,16434,45 ,1,16435,179760 ,1,16436,45 ,1,16437,186035 ,1,16438,45 ,1,16439,211985 ,1,16441,2395 ,1,16443,2395 ,1,16445,2395 ,1,16447,2395 ,1,16448,317395 ,1,16449,357105 ,1,16450,357095 ,1,16451,357145 ,1,16452,45 ,1,16453,5900 ,1,16454,45 ,1,16455,5900 ,1,16456,400430 ,1,16457,102090 ,1,16458,45 ,1,16459,9435 ,1,16460,567875 ,1,16461,45 ,1,16462,9435 ,1,16463,45 ,1,16464,9435 ,1,16465,45 ,1,16466,9435 ,1,16467,317385 ,1,16468,572695 ,1,16469,183640 ,1,16470,317375 ,1,16471,317355 ,1,16472,317345 ,1,16473,317335 ,1,16474,317325 ,1,16475,317305 ,1,16476,317295 ,1,16477,45 ,1,16478,5900 ,1,16479,162390 ,1,16480,232560 ,1,16481,2210 ,1,16482,542350 ,1,16483,218080 ,1,16484,317285 ,1,16485,550515 ,1,16486,554550 ,1,16487,549435 ,1,16488,213320 ,1,16489,45 ,1,16490,179760 ,1,16491,554545 ,1,16492,213310 ,1,16493,45 ,1,16494,213155 ,1,16495,45 ,1,16496,5900 ,1,16497,45 ,1,16498,5900 ,1,16499,45 ,1,16500,5900 ,1,16501,45 ,1,16502,5900 ,1,16503,45 ,1,16504,5900 ,1,16505,45 ,1,16506,5900 ,1,16507,573830 ,1,16508,45 ,1,16509,5900 ,1,16510,161080 ,1,16511,612005 ,1,16512,45 ,1,16513,13320 ,1,16514,358460 ,1,16515,554540 ,1,16516,162380 ,1,16517,554505 ,1,16518,213300 ,1,16519,213285 ,1,16520,554500 ,1,16521,549880 ,1,16522,237535 ,1,16523,234655 ,1,16524,370045 ,1,16525,370005 ,1,16526,259070 ,1,16527,259060 ,1,16528,259050 ,1,16529,548795 ,1,16530,369580 ,1,16531,369570 ,1,16532,373665 ,1,16533,260830 ,1,16534,260815 ,1,16535,260805 ,1,16536,373730 ,1,16537,317275 ,1,16538,549405 ,1,16539,162370 ,1,16540,591540 ,1,16541,45 ,1,16542,324000 ,1,16543,358510 ,1,16544,174475 ,1,16545,550000 ,1,16546,45 ,1,16547,259605 ,1,16548,317245 ,1,16549,317235 ,1,16550,317225 ,1,16551,317215 ,1,16552,317190 ,1,16553,317180 ,1,16554,317170 ,1,16555,317160 ,1,16556,317125 ,1,16557,317115 ,1,16558,317105 ,1,16559,317095 ,1,16560,578345 ,1,16561,258000 ,1,16562,257990 ,1,16563,258010 ,1,16564,550010 ,1,16565,554495 ,1,16566,554490 ,1,16567,317085 ,1,16568,356935 ,1,16569,162360 ,1,16570,213275 ,1,16571,212925 ,1,16572,45 ,1,16573,208615 ,1,16574,45 ,1,16575,212880 ,1,16576,45 ,1,16577,5900 ,1,16578,45 ,1,16579,5900 ,1,16580,45 ,1,16581,5900 ,1,16582,317075 ,1,16583,213265 ,1,16584,369835 ,1,16585,317065 ,1,16586,45 ,1,16587,325430 ,1,16588,224135 ,1,16589,400430 ,1,16590,84785 ,1,16591,45 ,1,16592,210655 ,1,16593,591495 ,1,16594,45 ,1,16595,324000 ,1,16596,591490 ,1,16597,45 ,1,16598,324000 ,1,16599,553955 ,1,16600,369880 ,1,16601,199130 ,1,16602,400430 ,1,16603,87150 ,1,16604,45 ,1,16605,210655 ,1,16606,591485 ,1,16607,45 ,1,16608,324000 ,1,16609,237260 ,1,16610,237220 ,1,16611,213255 ,1,16612,194655 ,1,16613,45 ,1,16614,317055 ,1,16615,162350 ,1,16616,297700 ,1,16617,586580 ,1,16618,45 ,1,16619,331650 ,1,16620,45 ,1,16621,331650 ,1,16622,213220 ,1,16623,45 ,1,16624,179760 ,1,16625,591480 ,1,16626,45 ,1,16627,331650 ,1,16628,553950 ,1,16629,370495 ,1,16630,591475 ,1,16631,45 ,1,16632,340325 ,1,16633,45 ,1,16634,13320 ,1,16635,554470 ,1,16636,591460 ,1,16637,45 ,1,16638,340325 ,1,16639,2135 ,1,16640,591455 ,1,16641,45 ,1,16642,340325 ,1,16643,591450 ,1,16644,45 ,1,16645,340325 ,1,16646,2210 ,1,16647,542345 ,1,16648,2210 ,1,16649,542350 ,1,16650,591445 ,1,16651,45 ,1,16652,340325 ,1,16654,2395 ,1,16655,45 ,1,16656,9470 ,1,16658,2395 ,1,16659,45 ,1,16660,9470 ,1,16662,2395 ,1,16663,45 ,1,16664,9470 ,1,16665,2210 ,1,16666,542350 ,1,16667,2210 ,1,16668,542345 ,1,16669,261315 ,1,16670,317030 ,1,16671,261230 ,1,16672,45 ,1,16673,321915 ,1,16674,45 ,1,16675,321915 ,1,16676,317020 ,1,16677,317010 ,1,16678,586105 ,1,16679,45 ,1,16680,259605 ,1,16681,191185 ,1,16682,45 ,1,16683,5900 ,1,16684,226700 ,1,16685,45 ,1,16686,325430 ,1,16687,570660 ,1,16688,317000 ,1,16689,316990 ,1,16690,226265 ,1,16691,213150 ,1,16692,213140 ,1,16693,213110 ,1,16694,213100 ,1,16695,230295 ,1,16696,45 ,1,16697,255425 ,1,16698,316980 ,1,16699,45 ,1,16700,255425 ,1,16701,45 ,1,16702,5900 ,1,16703,226655 ,1,16704,226155 ,1,16705,162340 ,1,16706,226125 ,1,16707,226135 ,1,16708,226145 ,1,16709,45 ,1,16710,5900 ,1,16711,45 ,1,16712,5900 ,1,16713,45 ,1,16714,5900 ,1,16715,45 ,1,16716,5900 ,1,16717,45 ,1,16718,331650 ,1,16719,45 ,1,16720,5900 ,1,16721,45 ,1,16722,5900 ,1,16723,45 ,1,16724,5900 ,1,16725,45 ,1,16726,341055 ,1,16727,45 ,1,16728,5900 ,1,16729,45 ,1,16730,5900 ,1,16731,45 ,1,16732,5900 ,1,16733,45 ,1,16734,5900 ,1,16735,45 ,1,16736,5900 ,1,16737,45 ,1,16738,5900 ,1,16739,591425 ,1,16740,45 ,1,16741,13320 ,1,16742,586925 ,1,16743,45 ,1,16744,331650 ,1,16745,45 ,1,16746,331650 ,1,16747,213080 ,1,16748,213060 ,1,16749,213050 ,1,16750,552765 ,1,16751,611435 ,1,16752,45 ,1,16753,195155 ,1,16754,213040 ,1,16755,316970 ,1,16756,45 ,1,16757,324000 ,1,16758,577025 ,1,16759,45 ,1,16760,259605 ,1,16761,249035 ,1,16762,2210 ,1,16763,542350 ,1,16764,100245 ,1,16765,575010 ,1,16766,45 ,1,16767,5900 ,1,16768,591380 ,1,16769,45 ,1,16770,325430 ,1,16771,306540 ,1,16772,264280 ,1,16774,2395 ,1,16775,45 ,1,16776,9470 ,1,16777,15815 ,1,16778,15440 ,1,16779,266700 ,1,16780,266585 ,1,16781,162330 ,1,16782,580895 ,1,16783,45 ,1,16784,331650 ,1,16785,45 ,1,16786,331650 ,1,16787,216535 ,1,16788,266785 ,1,16789,266810 ,1,16790,161890 ,1,16791,316960 ,1,16792,266880 ,1,16793,266890 ,1,16794,213030 ,1,16795,212990 ,1,16796,212980 ,1,16797,316940 ,1,16798,162320 ,1,16799,162285 ,1,16800,316930 ,1,16801,217405 ,1,16802,212970 ,1,16803,316920 ,1,16804,400430 ,1,16805,95625 ,1,16806,400430 ,1,16807,165145 ,1,16808,179530 ,1,16809,15610 ,1,16810,316910 ,1,16811,316895 ,1,16812,354785 ,1,16813,15375 ,1,16814,162275 ,1,16815,316885 ,1,16816,162265 ,1,16817,316875 ,1,16818,369655 ,1,16819,357200 ,1,16820,162255 ,1,16821,576345 ,1,16822,45 ,1,16823,331650 ,1,16824,45 ,1,16825,331650 ,1,16826,162235 ,1,16827,316865 ,1,16828,316845 ,1,16829,316835 ,1,16830,316825 ,1,16831,369715 ,1,16832,137700 ,1,16833,369775 ,1,16834,137775 ,1,16835,369765 ,1,16836,137680 ,1,16837,137800 ,1,16838,45 ,1,16839,316815 ,1,16840,2280 ,1,16841,542095 ,1,16842,2280 ,1,16843,542095 ,1,16844,2280 ,1,16845,542095 ,1,16846,2280 ,1,16847,542095 ,1,16848,2280 ,1,16849,542095 ,1,16850,2280 ,1,16851,542095 ,1,16852,2210 ,1,16853,542350 ,1,16854,2210 ,1,16855,542350 ,1,16856,2280 ,1,16857,542095 ,1,16858,2280 ,1,16859,542095 ,1,16860,45 ,1,16861,179760 ,1,16862,45 ,1,16863,11690 ,1,16864,554465 ,1,16865,316795 ,1,16866,231260 ,1,16867,162225 ,1,16868,162215 ,1,16869,45 ,1,16870,5900 ,1,16871,231180 ,1,16872,45 ,1,16873,5900 ,1,16874,231240 ,1,16875,231250 ,1,16876,45 ,1,16877,5900 ,1,16878,248660 ,1,16879,248670 ,1,16880,230950 ,1,16881,258915 ,1,16882,2280 ,1,16883,542095 ,1,16884,2280 ,1,16885,542095 ,1,16886,2280 ,1,16887,542095 ,1,16888,2280 ,1,16889,542095 ,1,16890,2280 ,1,16891,542095 ,1,16892,2280 ,1,16893,542095 ,1,16894,2280 ,1,16895,542095 ,1,16896,2280 ,1,16897,542095 ,1,16898,316785 ,1,16899,369815 ,1,16900,122705 ,1,16901,358415 ,1,16902,45 ,1,16903,179760 ,1,16904,45 ,1,16905,11690 ,1,16906,2280 ,1,16907,542095 ,1,16908,2280 ,1,16909,542095 ,1,16910,2280 ,1,16911,542095 ,1,16912,2280 ,1,16913,542095 ,1,16914,2280 ,1,16915,542095 ,1,16916,15805 ,1,16917,15795 ,1,16918,162205 ,1,16919,162175 ,1,16920,15235 ,1,16921,15785 ,1,16922,162165 ,1,16923,212960 ,1,16924,2210 ,1,16925,542350 ,1,16926,2210 ,1,16927,542350 ,1,16928,2280 ,1,16929,542095 ,1,16930,2280 ,1,16931,542095 ,1,16932,221180 ,1,16933,221190 ,1,16934,221150 ,1,16935,221160 ,1,16936,221140 ,1,16937,221050 ,1,16938,221060 ,1,16939,221090 ,1,16940,221130 ,1,16941,221070 ,1,16942,221080 ,1,16943,354295 ,1,16944,2280 ,1,16945,542095 ,1,16946,2280 ,1,16947,542095 ,1,16948,2280 ,1,16949,542095 ,1,16950,2280 ,1,16951,542095 ,1,16952,162155 ,1,16953,316775 ,1,16954,316765 ,1,16955,212950 ,1,16956,591370 ,1,16957,45 ,1,16958,5900 ,1,16959,212940 ,1,16960,591365 ,1,16961,45 ,1,16962,5900 ,1,16963,212930 ,1,16964,591360 ,1,16965,45 ,1,16966,5900 ,1,16967,212920 ,1,16968,45 ,1,16969,5900 ,1,16970,561380 ,1,16971,45 ,1,16972,5900 ,1,16973,45 ,1,16974,5900 ,1,16975,45 ,1,16976,5900 ,1,16977,45 ,1,16978,5900 ,1,16979,549995 ,1,16980,232735 ,1,16981,372090 ,1,16982,554425 ,1,16983,212875 ,1,16984,45 ,1,16985,189535 ,1,16986,212865 ,1,16987,45 ,1,16988,3525 ,1,16989,591320 ,1,16990,45 ,1,16991,171855 ,1,16992,542495 ,1,16993,558485 ,1,16994,542495 ,1,16995,212845 ,1,16996,542490 ,1,16997,609750 ,1,16998,542490 ,1,16999,258155 ,1,17000,212835 ,1,17001,591295 ,1,17002,45 ,1,17003,5900 ,1,17004,569580 ,1,17005,45 ,1,17006,5900 ,1,17007,548760 ,1,17008,242525 ,1,17009,2210 ,1,17010,542350 ,1,17011,612645 ,1,17012,570385 ,1,17013,45 ,1,17014,323485 ,1,17015,45 ,1,17016,167555 ,1,17017,542485 ,1,17018,591290 ,1,17019,542485 ,1,17020,580020 ,1,17021,45 ,1,17022,259605 ,1,17023,263455 ,1,17024,162145 ,1,17025,263400 ,1,17026,159435 ,1,17027,45 ,1,17028,276975 ,1,17029,211660 ,1,17030,316725 ,1,17031,212825 ,1,17032,212815 ,1,17033,45 ,1,17034,9375 ,1,17035,45 ,1,17036,11510 ,1,17037,45 ,1,17038,11510 ,1,17039,45 ,1,17040,5900 ,1,17041,45 ,1,17042,5900 ,1,17043,45 ,1,17044,5900 ,1,17045,45 ,1,17046,5900 ,1,17047,45 ,1,17048,5900 ,1,17049,45 ,1,17050,5900 ,1,17051,316715 ,1,17052,45 ,1,17053,5900 ,1,17054,316705 ,1,17055,45 ,1,17056,5900 ,1,17057,45 ,1,17058,5900 ,1,17059,212760 ,1,17060,212750 ,1,17061,45 ,1,17062,9375 ,1,17063,45 ,1,17064,11510 ,1,17065,45 ,1,17066,5900 ,1,17067,45 ,1,17068,5900 ,1,17069,45 ,1,17070,5900 ,1,17071,400430 ,1,17072,103555 ,1,17073,566715 ,1,17074,45 ,1,17075,208615 ,1,17076,45 ,1,17077,212880 ,1,17078,316695 ,1,17079,316685 ,1,17080,45 ,1,17081,11510 ,1,17082,45 ,1,17083,11510 ,1,17084,316675 ,1,17085,316665 ,1,17086,316655 ,1,17087,316620 ,1,17088,316610 ,1,17089,316600 ,1,17090,45 ,1,17091,5900 ,1,17092,45 ,1,17093,11510 ,1,17094,45 ,1,17095,11510 ,1,17096,316590 ,1,17097,276415 ,1,17098,316565 ,1,17099,316555 ,1,17100,316545 ,1,17101,316535 ,1,17102,316510 ,1,17103,316500 ,1,17104,316490 ,1,17105,400430 ,1,17106,115150 ,1,17107,570900 ,1,17108,45 ,1,17109,208615 ,1,17110,45 ,1,17111,224825 ,1,17112,45 ,1,17113,224780 ,1,17114,45 ,1,17115,11510 ,1,17116,45 ,1,17117,11510 ,1,17118,316480 ,1,17119,45 ,1,17120,5900 ,1,17121,316465 ,1,17122,316455 ,1,17123,45 ,1,17124,5900 ,1,17125,224770 ,1,17126,45 ,1,17127,5900 ,1,17128,45 ,1,17129,5900 ,1,17130,373595 ,1,17131,561515 ,1,17132,45 ,1,17133,5900 ,1,17134,212200 ,1,17135,15255 ,1,17136,45 ,1,17137,5900 ,1,17138,45 ,1,17139,211985 ,1,17140,400430 ,1,17141,156260 ,1,17142,45 ,1,17143,208615 ,1,17144,45 ,1,17145,212880 ,1,17146,550580 ,1,17147,209390 ,1,17148,400430 ,1,17149,154435 ,1,17150,45 ,1,17151,208615 ,1,17152,45 ,1,17153,212880 ,1,17154,400430 ,1,17155,121745 ,1,17156,45 ,1,17157,208615 ,1,17158,45 ,1,17159,212880 ,1,17160,400430 ,1,17161,157085 ,1,17162,45 ,1,17163,276975 ,1,17164,45 ,1,17165,5900 ,1,17166,400430 ,1,17167,156010 ,1,17168,45 ,1,17169,208615 ,1,17170,45 ,1,17171,212880 ,1,17172,400430 ,1,17173,156555 ,1,17174,45 ,1,17175,208615 ,1,17176,45 ,1,17177,212880 ,1,17178,400430 ,1,17179,157925 ,1,17180,45 ,1,17181,208615 ,1,17182,45 ,1,17183,212880 ,1,17184,567410 ,1,17185,45 ,1,17186,5900 ,1,17187,162130 ,1,17188,233085 ,1,17189,232805 ,1,17191,2395 ,1,17192,45 ,1,17193,211985 ,1,17194,400430 ,1,17195,131675 ,1,17196,45 ,1,17197,11510 ,1,17198,45 ,1,17199,11510 ,1,17200,400430 ,1,17201,102890 ,1,17202,45 ,1,17203,208615 ,1,17204,45 ,1,17205,212880 ,1,17206,316445 ,1,17207,316435 ,1,17208,316400 ,1,17209,589335 ,1,17210,316390 ,1,17211,316380 ,1,17212,589340 ,1,17213,316370 ,1,17214,316360 ,1,17215,574815 ,1,17216,233495 ,1,17217,572910 ,1,17218,208365 ,1,17219,45 ,1,17220,185785 ,1,17221,400430 ,1,17222,123615 ,1,17223,45 ,1,17224,209400 ,1,17225,45 ,1,17226,212880 ,1,17227,568845 ,1,17228,45 ,1,17229,182890 ,1,17230,400430 ,1,17231,124505 ,1,17232,45 ,1,17233,209400 ,1,17234,45 ,1,17235,212880 ,1,17236,45 ,1,17237,182890 ,1,17238,550575 ,1,17239,316350 ,1,17240,316340 ,1,17241,554420 ,1,17242,316330 ,1,17243,263645 ,1,17244,373385 ,1,17245,259805 ,1,17246,316290 ,1,17247,147830 ,1,17248,147800 ,1,17249,373300 ,1,17250,162120 ,1,17251,257980 ,1,17252,212740 ,1,17253,212725 ,1,17254,212715 ,1,17255,212705 ,1,17256,259390 ,1,17257,162110 ,1,17258,369355 ,1,17259,45 ,1,17260,179760 ,1,17261,45 ,1,17262,209800 ,1,17263,316280 ,1,17264,212695 ,1,17265,162100 ,1,17266,252930 ,1,17267,252920 ,1,17268,316270 ,1,17269,252445 ,1,17270,252340 ,1,17271,162055 ,1,17272,252485 ,1,17273,259835 ,1,17274,252415 ,1,17275,252405 ,1,17276,316260 ,1,17277,316245 ,1,17278,316235 ,1,17279,316225 ,1,17280,316215 ,1,17281,316170 ,1,17282,316160 ,1,17283,356005 ,1,17284,142370 ,1,17285,45 ,1,17286,343420 ,1,17287,212655 ,1,17288,316150 ,1,17289,316140 ,1,17290,45 ,1,17291,5900 ,1,17292,316130 ,1,17293,45 ,1,17294,5900 ,1,17295,45 ,1,17296,5900 ,1,17297,45 ,1,17298,5900 ,1,17299,316120 ,1,17300,316110 ,1,17301,45 ,1,17302,5900 ,1,17303,316100 ,1,17304,45 ,1,17305,5900 ,1,17306,316075 ,1,17307,45 ,1,17308,5900 ,1,17309,45 ,1,17310,5900 ,1,17311,316065 ,1,17312,316055 ,1,17313,45 ,1,17314,5900 ,1,17315,45 ,1,17316,5900 ,1,17317,2210 ,1,17318,542350 ,1,17319,212645 ,1,17320,252320 ,1,17321,316045 ,1,17322,252910 ,1,17323,316030 ,1,17324,162045 ,1,17325,316020 ,1,17326,316010 ,1,17327,355145 ,1,17328,577690 ,1,17329,45 ,1,17330,5900 ,1,17331,45 ,1,17332,5900 ,1,17333,254235 ,1,17334,45 ,1,17335,5900 ,1,17336,256195 ,1,17337,355190 ,1,17338,256065 ,1,17339,45 ,1,17340,5900 ,1,17341,45 ,1,17342,5900 ,1,17343,256005 ,1,17344,45 ,1,17345,5900 ,1,17346,355135 ,1,17347,374470 ,1,17348,45 ,1,17349,5900 ,1,17350,2210 ,1,17351,542350 ,1,17352,370930 ,1,17353,45 ,1,17354,5900 ,1,17355,256155 ,1,17356,45 ,1,17357,5900 ,1,17358,221260 ,1,17359,45 ,1,17360,5900 ,1,17361,371155 ,1,17362,371215 ,1,17363,371165 ,1,17364,371225 ,1,17365,371175 ,1,17366,221560 ,1,17367,162035 ,1,17368,45 ,1,17369,5900 ,1,17370,221275 ,1,17371,221285 ,1,17372,162025 ,1,17373,221525 ,1,17374,2210 ,1,17375,542350 ,1,17376,45 ,1,17377,5900 ,1,17378,45 ,1,17379,5900 ,1,17380,45 ,1,17381,5900 ,1,17382,45 ,1,17383,5900 ,1,17384,356815 ,1,17385,45 ,1,17386,5900 ,1,17387,162015 ,1,17388,2210 ,1,17389,542350 ,1,17390,252875 ,1,17391,316000 ,1,17392,315975 ,1,17393,259940 ,1,17394,315965 ,1,17395,212635 ,1,17396,212625 ,1,17397,162005 ,1,17398,45 ,1,17399,179760 ,1,17400,354140 ,1,17401,212610 ,1,17402,369645 ,1,17403,2210 ,1,17404,542350 ,1,17405,577430 ,1,17406,45 ,1,17407,315955 ,1,17408,354145 ,1,17409,192365 ,1,17410,251835 ,1,17411,161995 ,1,17412,45 ,1,17413,5900 ,1,17414,45 ,1,17415,5900 ,1,17416,161985 ,1,17417,45 ,1,17418,5900 ,1,17419,45 ,1,17420,5900 ,1,17421,315945 ,1,17422,315935 ,1,17423,315925 ,1,17424,253070 ,1,17425,315915 ,1,17426,2210 ,1,17427,542350 ,1,17428,252425 ,1,17429,190660 ,1,17430,212600 ,1,17431,212590 ,1,17432,168975 ,1,17433,315870 ,1,17434,315860 ,1,17435,315850 ,1,17436,151420 ,1,17437,45 ,1,17438,11510 ,1,17439,45 ,1,17440,210905 ,1,17441,45 ,1,17442,179760 ,1,17443,45 ,1,17444,11510 ,1,17445,259820 ,1,17446,161955 ,1,17447,6215 ,1,17448,45 ,1,17449,5900 ,1,17450,11245 ,1,17451,45 ,1,17452,5900 ,1,17453,315840 ,1,17454,315830 ,1,17455,315820 ,1,17456,315810 ,1,17457,355310 ,1,17458,355350 ,1,17459,355290 ,1,17460,355330 ,1,17461,252100 ,1,17462,355280 ,1,17463,252165 ,1,17464,355340 ,1,17465,252080 ,1,17466,252145 ,1,17467,252115 ,1,17468,252125 ,1,17469,355300 ,1,17470,252090 ,1,17471,355260 ,1,17472,315785 ,1,17473,355210 ,1,17474,252015 ,1,17475,355230 ,1,17476,252070 ,1,17477,355240 ,1,17478,252005 ,1,17479,355220 ,1,17480,252175 ,1,17481,252135 ,1,17482,315775 ,1,17483,315765 ,1,17484,161945 ,1,17485,315755 ,1,17486,151645 ,1,17487,151530 ,1,17488,560985 ,1,17489,45 ,1,17490,337120 ,1,17491,369985 ,1,17492,161935 ,1,17493,212580 ,1,17494,45 ,1,17495,337120 ,1,17496,554415 ,1,17497,177200 ,1,17498,260350 ,1,17499,212545 ,1,17500,45 ,1,17501,11510 ,1,17502,45 ,1,17503,4315 ,1,17504,250540 ,1,17505,45 ,1,17506,5900 ,1,17507,315745 ,1,17508,354180 ,1,17509,260640 ,1,17510,45 ,1,17511,5900 ,1,17512,45 ,1,17513,5900 ,1,17514,45 ,1,17515,5900 ,1,17516,45 ,1,17517,5900 ,1,17518,45 ,1,17519,5900 ,1,17520,184650 ,1,17521,184660 ,1,17522,45 ,1,17523,5900 ,1,17524,45 ,1,17525,5900 ,1,17526,45 ,1,17527,5900 ,1,17528,195530 ,1,17529,315735 ,1,17530,315725 ,1,17531,251305 ,1,17532,251525 ,1,17533,251045 ,1,17534,251035 ,1,17535,251420 ,1,17536,315715 ,1,17537,315670 ,1,17538,251000 ,1,17539,252555 ,1,17540,251350 ,1,17541,315660 ,1,17542,315650 ,1,17543,315640 ,1,17544,315630 ,1,17545,315620 ,1,17546,315610 ,1,17547,252330 ,1,17548,315600 ,1,17549,252435 ,1,17550,315570 ,1,17551,45 ,1,17552,5900 ,1,17553,45 ,1,17554,5900 ,1,17555,252395 ,1,17556,212535 ,1,17557,45 ,1,17558,11510 ,1,17559,45 ,1,17560,4315 ,1,17561,252385 ,1,17562,315560 ,1,17563,252455 ,1,17564,315550 ,1,17565,252800 ,1,17566,315540 ,1,17567,45 ,1,17568,276975 ,1,17569,212525 ,1,17570,45 ,1,17571,276975 ,1,17572,45 ,1,17573,179760 ,1,17574,45 ,1,17575,209800 ,1,17576,315530 ,1,17577,315520 ,1,17578,161925 ,1,17579,315510 ,1,17580,258675 ,1,17581,258710 ,1,17582,258970 ,1,17583,258850 ,1,17584,258830 ,1,17585,258840 ,1,17586,258730 ,1,17587,258720 ,1,17588,258765 ,1,17589,259045 ,1,17590,259055 ,1,17591,259065 ,1,17592,258775 ,1,17593,258785 ,1,17594,259025 ,1,17595,258755 ,1,17596,258740 ,1,17597,259035 ,1,17598,259140 ,1,17599,259150 ,1,17600,259160 ,1,17601,259075 ,1,17602,259085 ,1,17603,259095 ,1,17604,259185 ,1,17605,258990 ,1,17606,258980 ,1,17607,244345 ,1,17608,259170 ,1,17609,258950 ,1,17610,258960 ,1,17611,258930 ,1,17612,258920 ,1,17613,258940 ,1,17614,258685 ,1,17615,258890 ,1,17616,258900 ,1,17617,258860 ,1,17618,258870 ,1,17619,258880 ,1,17620,161905 ,1,17621,260525 ,1,17622,2210 ,1,17623,542350 ,1,17624,315500 ,1,17625,147420 ,1,17626,161895 ,1,17627,45 ,1,17628,179760 ,1,17629,254145 ,1,17630,315485 ,1,17631,45 ,1,17632,5900 ,1,17633,550455 ,1,17634,2210 ,1,17635,542350 ,1,17636,45 ,1,17637,221620 ,1,17638,578340 ,1,17639,45 ,1,17640,253795 ,1,17641,212515 ,1,17642,356850 ,1,17643,315475 ,1,17644,356830 ,1,17645,250970 ,1,17646,578290 ,1,17647,45 ,1,17648,331650 ,1,17649,45 ,1,17650,331650 ,1,17651,354745 ,1,17652,591215 ,1,17653,45 ,1,17654,325430 ,1,17655,2210 ,1,17656,542350 ,1,17657,212505 ,1,17658,370100 ,1,17659,357600 ,1,17660,161885 ,1,17661,356900 ,1,17662,212495 ,1,17663,45 ,1,17664,179760 ,1,17665,45 ,1,17666,209800 ,1,17667,358090 ,1,17668,45 ,1,17669,209400 ,1,17670,239600 ,1,17671,2210 ,1,17672,542350 ,1,17673,45 ,1,17674,5900 ,1,17675,315465 ,1,17676,212485 ,1,17677,45 ,1,17678,5900 ,1,17679,212475 ,1,17680,45 ,1,17681,5900 ,1,17682,212435 ,1,17683,591165 ,1,17684,45 ,1,17685,5900 ,1,17686,45 ,1,17687,5900 ,1,17688,45 ,1,17689,5900 ,1,17690,45 ,1,17691,5900 ,1,17692,591160 ,1,17693,45 ,1,17694,325430 ,1,17695,212425 ,1,17696,591130 ,1,17697,45 ,1,17698,315455 ,1,17699,227205 ,1,17700,315445 ,1,17701,315435 ,1,17702,133210 ,1,17703,133060 ,1,17704,133040 ,1,17705,133560 ,1,17706,212415 ,1,17707,133110 ,1,17708,315425 ,1,17709,161875 ,1,17710,315415 ,1,17711,358870 ,1,17712,161835 ,1,17713,212405 ,1,17714,315385 ,1,17715,45 ,1,17716,5900 ,1,17717,315375 ,1,17718,358845 ,1,17719,358880 ,1,17720,374420 ,1,17721,315365 ,1,17722,132565 ,1,17723,179585 ,1,17724,45 ,1,17725,330070 ,1,17726,232250 ,1,17727,554410 ,1,17728,216210 ,1,17729,554405 ,1,17730,212390 ,1,17731,211125 ,1,17732,356160 ,1,17733,355425 ,1,17734,212380 ,1,17735,315355 ,1,17736,310645 ,1,17737,45 ,1,17738,5900 ,1,17739,45 ,1,17740,5900 ,1,17741,161825 ,1,17742,571455 ,1,17743,45 ,1,17744,192820 ,1,17745,161815 ,1,17746,45 ,1,17747,5900 ,1,17748,315345 ,1,17749,554400 ,1,17750,554365 ,1,17751,45 ,1,17752,5900 ,1,17753,213195 ,1,17754,315335 ,1,17755,315325 ,1,17756,212370 ,1,17757,315300 ,1,17758,161805 ,1,17759,240255 ,1,17760,231925 ,1,17761,240210 ,1,17762,231945 ,1,17763,240220 ,1,17764,240265 ,1,17765,212360 ,1,17766,132330 ,1,17767,45 ,1,17768,330070 ,1,17769,45 ,1,17770,276975 ,1,17771,45 ,1,17772,276975 ,1,17773,45 ,1,17774,255920 ,1,17775,315290 ,1,17776,315280 ,1,17777,315270 ,1,17778,315260 ,1,17779,133515 ,1,17780,575310 ,1,17781,45 ,1,17782,272495 ,1,17783,212335 ,1,17784,574880 ,1,17785,45 ,1,17786,331650 ,1,17787,45 ,1,17788,331650 ,1,17789,575125 ,1,17790,132670 ,1,17791,554360 ,1,17792,45 ,1,17793,318150 ,1,17794,161790 ,1,17795,400430 ,1,17796,190635 ,1,17797,45 ,1,17798,208615 ,1,17799,45 ,1,17800,212880 ,1,17801,354775 ,1,17802,315250 ,1,17803,400430 ,1,17804,84570 ,1,17805,400430 ,1,17806,84665 ,1,17807,549900 ,1,17808,572905 ,1,17809,400430 ,1,17810,167665 ,1,17811,45 ,1,17812,13320 ,1,17813,315240 ,1,17814,315230 ,1,17815,161780 ,1,17816,372540 ,1,17817,161770 ,1,17818,357375 ,1,17819,212325 ,1,17820,161760 ,1,17821,315195 ,1,17822,212315 ,1,17823,315185 ,1,17824,400430 ,1,17825,76720 ,1,17826,400430 ,1,17827,77155 ,1,17828,400430 ,1,17829,72550 ,1,17830,187970 ,1,17831,400430 ,1,17832,72015 ,1,17833,400430 ,1,17834,56365 ,1,17835,400430 ,1,17836,200675 ,1,17837,45 ,1,17838,8740 ,1,17839,45 ,1,17840,346875 ,1,17841,400430 ,1,17842,65785 ,1,17843,45 ,1,17844,346875 ,1,17845,45 ,1,17846,5900 ,1,17847,400430 ,1,17848,56585 ,1,17849,45 ,1,17850,5900 ,1,17851,45 ,1,17852,5900 ,1,17853,2210 ,1,17854,542350 ,1,17855,400430 ,1,17856,184310 ,1,17857,45 ,1,17858,346875 ,1,17859,45 ,1,17860,225320 ,1,17861,45 ,1,17862,5900 ,1,17863,45 ,1,17864,5900 ,1,17865,542460 ,1,17866,558275 ,1,17867,542460 ,1,17869,2395 ,1,17870,400430 ,1,17871,61710 ,1,17872,400430 ,1,17873,185220 ,1,17874,45 ,1,17875,225320 ,1,17876,45 ,1,17877,5900 ,1,17878,45 ,1,17879,5900 ,1,17880,542455 ,1,17881,558275 ,1,17882,542455 ,1,17884,2395 ,1,17885,400430 ,1,17886,171830 ,1,17887,45 ,1,17888,346875 ,1,17889,400430 ,1,17890,183370 ,1,17891,400430 ,1,17892,184740 ,1,17893,45 ,1,17894,225320 ,1,17895,45 ,1,17896,5900 ,1,17897,45 ,1,17898,5900 ,1,17899,542450 ,1,17900,584980 ,1,17901,542450 ,1,17902,400430 ,1,17903,185675 ,1,17904,400430 ,1,17905,183855 ,1,17906,45 ,1,17907,225320 ,1,17908,45 ,1,17909,5900 ,1,17910,45 ,1,17911,5900 ,1,17912,542445 ,1,17913,584860 ,1,17914,542445 ,1,17915,45 ,1,17916,5900 ,1,17917,45 ,1,17918,5900 ,1,17919,542430 ,1,17920,558275 ,1,17921,542430 ,1,17923,2395 ,1,17924,45 ,1,17925,5900 ,1,17926,45 ,1,17927,5900 ,1,17928,542425 ,1,17929,558275 ,1,17930,542425 ,1,17932,2395 ,1,17933,45 ,1,17934,225320 ,1,17935,45 ,1,17936,5900 ,1,17937,45 ,1,17938,5900 ,1,17939,542420 ,1,17940,558275 ,1,17941,542420 ,1,17942,45 ,1,17943,225320 ,1,17944,45 ,1,17945,5900 ,1,17946,45 ,1,17947,5900 ,1,17948,542415 ,1,17949,559095 ,1,17950,542415 ,1,17952,2395 ,1,17953,400430 ,1,17954,63080 ,1,17955,45 ,1,17956,225320 ,1,17957,45 ,1,17958,5900 ,1,17959,45 ,1,17960,5900 ,1,17961,542380 ,1,17962,558275 ,1,17963,542380 ,1,17964,45 ,1,17965,225320 ,1,17966,45 ,1,17967,5900 ,1,17968,45 ,1,17969,5900 ,1,17970,542375 ,1,17971,558275 ,1,17972,542375 ,1,17974,2395 ,1,17975,45 ,1,17976,225320 ,1,17977,45 ,1,17978,5900 ,1,17979,45 ,1,17980,5900 ,1,17981,542370 ,1,17982,559095 ,1,17983,542370 ,1,17985,2395 ,1,17986,45 ,1,17987,225320 ,1,17988,45 ,1,17989,5900 ,1,17990,45 ,1,17991,5900 ,1,17992,542365 ,1,17993,558275 ,1,17994,542365 ,1,17996,2395 ,1,17997,400430 ,1,17998,182920 ,1,17999,45 ,1,18000,225320 ,1,18001,45 ,1,18002,5900 ,1,18003,45 ,1,18004,5900 ,1,18005,542360 ,1,18006,584760 ,1,18007,542360 ,1,18008,45 ,1,18009,225320 ,1,18010,45 ,1,18011,5900 ,1,18012,45 ,1,18013,5900 ,1,18014,542355 ,1,18015,558275 ,1,18016,542355 ,1,18017,400430 ,1,18018,201230 ,1,18019,400430 ,1,18020,98030 ,1,18021,400430 ,1,18022,60315 ,1,18023,400430 ,1,18024,63530 ,1,18025,400430 ,1,18026,203070 ,1,18027,400430 ,1,18028,201295 ,1,18029,400430 ,1,18030,58065 ,1,18031,558305 ,1,18032,45 ,1,18033,169850 ,1,18034,45 ,1,18035,339390 ,1,18036,400430 ,1,18037,204005 ,1,18038,45 ,1,18039,169850 ,1,18040,45 ,1,18041,3770 ,1,18042,400430 ,1,18043,60810 ,1,18044,612000 ,1,18045,45 ,1,18046,13320 ,1,18047,400430 ,1,18048,191080 ,1,18049,45 ,1,18050,210915 ,1,18051,45 ,1,18052,183245 ,1,18053,45 ,1,18054,210905 ,1,18055,45 ,1,18056,198280 ,1,18057,212305 ,1,18058,45 ,1,18059,208615 ,1,18060,45 ,1,18061,205770 ,1,18062,45 ,1,18063,209800 ,1,18064,203330 ,1,18065,45 ,1,18066,179760 ,1,18067,45 ,1,18068,186035 ,1,18069,45 ,1,18070,5900 ,1,18071,212630 ,1,18072,212230 ,1,18073,45 ,1,18074,211985 ,1,18075,45 ,1,18076,5900 ,1,18077,548735 ,1,18078,552810 ,1,18079,554355 ,1,18080,550430 ,1,18081,550500 ,1,18082,354125 ,1,18083,400430 ,1,18084,140175 ,1,18085,400430 ,1,18086,140300 ,1,18087,570460 ,1,18088,45 ,1,18089,192820 ,1,18090,315175 ,1,18091,400430 ,1,18092,140195 ,1,18093,45 ,1,18094,192820 ,1,18095,315165 ,1,18096,226235 ,1,18097,400430 ,1,18098,140345 ,1,18099,570620 ,1,18100,45 ,1,18101,192820 ,1,18102,140070 ,1,18103,230765 ,1,18104,226210 ,1,18105,315145 ,1,18106,400430 ,1,18107,140375 ,1,18108,577050 ,1,18109,45 ,1,18110,192820 ,1,18111,140280 ,1,18112,227215 ,1,18113,212030 ,1,18114,356175 ,1,18115,207710 ,1,18116,2210 ,1,18117,542350 ,1,18118,315135 ,1,18119,2210 ,1,18120,542350 ,1,18121,371500 ,1,18122,161725 ,1,18123,610300 ,1,18124,45 ,1,18125,318150 ,1,18126,45 ,1,18127,259605 ,1,18128,217555 ,1,18129,548390 ,1,18130,45 ,1,18131,325430 ,1,18132,358425 ,1,18133,231550 ,1,18134,231540 ,1,18135,554350 ,1,18136,315125 ,1,18137,2280 ,1,18138,542095 ,1,18139,2280 ,1,18140,542095 ,1,18141,2280 ,1,18142,542095 ,1,18143,2280 ,1,18144,542095 ,1,18145,2280 ,1,18146,542095 ,1,18147,2280 ,1,18148,542095 ,1,18149,2280 ,1,18150,542095 ,1,18151,2280 ,1,18152,542095 ,1,18153,2280 ,1,18154,542095 ,1,18155,2280 ,1,18156,542095 ,1,18157,2280 ,1,18158,542095 ,1,18159,2280 ,1,18160,542095 ,1,18161,2280 ,1,18162,542095 ,1,18163,2280 ,1,18164,542095 ,1,18165,236010 ,1,18166,212295 ,1,18167,161715 ,1,18168,354340 ,1,18169,2210 ,1,18170,542350 ,1,18171,2210 ,1,18172,542350 ,1,18173,2210 ,1,18174,542350 ,1,18175,2210 ,1,18176,542350 ,1,18177,2210 ,1,18178,542350 ,1,18179,2210 ,1,18180,542350 ,1,18181,2280 ,1,18182,542095 ,1,18183,161705 ,1,18184,571715 ,1,18185,45 ,1,18186,5900 ,1,18187,550560 ,1,18188,400430 ,1,18189,150230 ,1,18190,45 ,1,18191,192820 ,1,18192,400430 ,1,18193,147360 ,1,18194,45 ,1,18195,315115 ,1,18196,45 ,1,18197,315080 ,1,18198,253925 ,1,18199,356840 ,1,18200,161695 ,1,18201,253795 ,1,18202,45 ,1,18203,5900 ,1,18204,45 ,1,18205,5900 ,1,18206,45 ,1,18207,5900 ,1,18208,315070 ,1,18209,2210 ,1,18210,542350 ,1,18211,2210 ,1,18212,542350 ,1,18213,257015 ,1,18214,45 ,1,18215,5900 ,1,18216,400430 ,1,18217,150430 ,1,18218,45 ,1,18219,192820 ,1,18220,161680 ,1,18221,400430 ,1,18222,147400 ,1,18223,45 ,1,18224,192820 ,1,18225,254185 ,1,18226,356805 ,1,18227,161670 ,1,18228,257130 ,1,18229,45 ,1,18230,5900 ,1,18231,185055 ,1,18233,2395 ,1,18234,45 ,1,18235,9470 ,1,18236,255605 ,1,18237,400430 ,1,18238,150345 ,1,18239,578220 ,1,18240,45 ,1,18241,192820 ,1,18242,400430 ,1,18243,147380 ,1,18244,400430 ,1,18245,150400 ,1,18246,254225 ,1,18247,400430 ,1,18248,150305 ,1,18249,45 ,1,18250,192820 ,1,18251,227815 ,1,18252,550505 ,1,18253,580425 ,1,18254,45 ,1,18255,259605 ,1,18256,161660 ,1,18257,262945 ,1,18258,580070 ,1,18259,45 ,1,18260,259605 ,1,18261,262445 ,1,18262,580470 ,1,18263,45 ,1,18264,259605 ,1,18265,580080 ,1,18266,45 ,1,18267,259605 ,1,18268,263000 ,1,18269,550645 ,1,18270,580155 ,1,18271,45 ,1,18272,259605 ,1,18273,209125 ,1,18274,315060 ,1,18275,212285 ,1,18276,315050 ,1,18277,45 ,1,18278,5900 ,1,18279,315040 ,1,18280,45 ,1,18281,5900 ,1,18282,45 ,1,18283,5900 ,1,18284,45 ,1,18285,5900 ,1,18286,45 ,1,18287,5900 ,1,18288,45 ,1,18289,5900 ,1,18290,225985 ,1,18291,315030 ,1,18292,315020 ,1,18293,45 ,1,18294,5900 ,1,18295,45 ,1,18296,5900 ,1,18297,400430 ,1,18298,133715 ,1,18299,45 ,1,18300,210655 ,1,18301,241790 ,1,18302,45 ,1,18303,5900 ,1,18304,161650 ,1,18305,157685 ,1,18306,45 ,1,18307,211985 ,1,18308,400430 ,1,18309,100245 ,1,18310,554340 ,1,18311,609265 ,1,18312,609270 ,1,18313,45 ,1,18314,5900 ,1,18315,45 ,1,18316,190350 ,1,18317,45 ,1,18318,11510 ,1,18319,315010 ,1,18320,314980 ,1,18321,180810 ,1,18322,374585 ,1,18323,160835 ,1,18324,611995 ,1,18325,45 ,1,18326,13320 ,1,18327,357840 ,1,18328,374300 ,1,18329,153585 ,1,18330,161620 ,1,18331,212275 ,1,18332,212265 ,1,18333,2210 ,1,18334,542350 ,1,18335,45 ,1,18336,276975 ,1,18337,261225 ,1,18338,199915 ,1,18339,45 ,1,18340,276975 ,1,18341,356165 ,1,18342,45 ,1,18343,5900 ,1,18344,167780 ,1,18345,212225 ,1,18346,161610 ,1,18347,45 ,1,18348,179760 ,1,18349,212215 ,1,18350,247490 ,1,18351,554335 ,1,18352,314970 ,1,18353,153515 ,1,18354,153475 ,1,18355,212205 ,1,18356,45 ,1,18357,276975 ,1,18358,161600 ,1,18359,161590 ,1,18360,153415 ,1,18361,45 ,1,18362,330070 ,1,18363,354170 ,1,18364,373640 ,1,18365,354160 ,1,18366,373580 ,1,18367,212195 ,1,18368,212180 ,1,18369,212170 ,1,18370,212160 ,1,18371,212150 ,1,18372,314960 ,1,18373,550510 ,1,18374,212100 ,1,18375,314950 ,1,18376,45 ,1,18377,5900 ,1,18378,212090 ,1,18379,578265 ,1,18380,45 ,1,18381,195155 ,1,18382,354110 ,1,18383,354120 ,1,18384,212080 ,1,18385,314940 ,1,18386,314930 ,1,18387,2210 ,1,18388,542350 ,1,18389,2210 ,1,18390,542350 ,1,18391,373530 ,1,18392,400430 ,1,18393,147545 ,1,18394,578215 ,1,18395,45 ,1,18396,192820 ,1,18397,400430 ,1,18398,147585 ,1,18399,578210 ,1,18400,45 ,1,18401,192820 ,1,18402,259920 ,1,18403,253805 ,1,18404,253890 ,1,18405,45 ,1,18406,5900 ,1,18407,400430 ,1,18408,147625 ,1,18409,578225 ,1,18410,45 ,1,18411,192820 ,1,18412,400430 ,1,18413,147645 ,1,18414,571840 ,1,18415,45 ,1,18416,192820 ,1,18417,400430 ,1,18418,147690 ,1,18419,45 ,1,18420,192820 ,1,18421,591090 ,1,18422,45 ,1,18423,259605 ,1,18424,314920 ,1,18425,550525 ,1,18426,591085 ,1,18427,45 ,1,18428,331650 ,1,18429,314910 ,1,18430,161575 ,1,18431,231955 ,1,18432,231905 ,1,18434,2395 ,1,18435,161565 ,1,18436,161555 ,1,18437,314895 ,1,18438,554330 ,1,18439,314885 ,1,18440,314875 ,1,18441,161545 ,1,18442,212070 ,1,18443,212055 ,1,18444,212045 ,1,18445,212035 ,1,18446,2210 ,1,18447,542350 ,1,18448,218160 ,1,18449,130265 ,1,18450,45 ,1,18451,276975 ,1,18452,314865 ,1,18453,130385 ,1,18454,130360 ,1,18455,130315 ,1,18456,130295 ,1,18457,238420 ,1,18458,370025 ,1,18459,212025 ,1,18460,238390 ,1,18461,45 ,1,18462,330070 ,1,18463,212000 ,1,18464,237410 ,1,18465,45 ,1,18466,329980 ,1,18467,314840 ,1,18468,199415 ,1,18469,45 ,1,18470,192820 ,1,18471,238455 ,1,18472,45 ,1,18473,192820 ,1,18474,238465 ,1,18475,45 ,1,18476,192820 ,1,18477,314830 ,1,18478,45 ,1,18479,5900 ,1,18480,211990 ,1,18481,607765 ,1,18482,45 ,1,18483,340435 ,1,18484,554325 ,1,18485,211980 ,1,18486,607905 ,1,18487,45 ,1,18488,340435 ,1,18489,400430 ,1,18490,124710 ,1,18491,400430 ,1,18492,124950 ,1,18493,45 ,1,18494,343730 ,1,18495,45 ,1,18496,343730 ,1,18497,45 ,1,18498,5900 ,1,18499,554310 ,1,18500,554305 ,1,18501,124995 ,1,18502,554290 ,1,18503,211970 ,1,18504,609845 ,1,18505,45 ,1,18506,7585 ,1,18507,45 ,1,18508,11085 ,1,18509,45 ,1,18510,5900 ,1,18511,45 ,1,18512,5900 ,1,18513,400430 ,1,18514,97870 ,1,18515,554285 ,1,18516,354390 ,1,18517,211945 ,1,18518,211935 ,1,18519,554280 ,1,18520,45 ,1,18521,179760 ,1,18522,45 ,1,18523,212880 ,1,18524,314820 ,1,18525,45 ,1,18526,323485 ,1,18527,314790 ,1,18528,571980 ,1,18529,45 ,1,18530,5900 ,1,18531,314780 ,1,18532,314770 ,1,18533,196135 ,1,18534,314760 ,1,18535,45 ,1,18536,323485 ,1,18537,314750 ,1,18538,314740 ,1,18539,314730 ,1,18540,591015 ,1,18541,314720 ,1,18542,298940 ,1,18543,45 ,1,18544,5900 ,1,18545,298900 ,1,18546,2280 ,1,18547,542020 ,1,18548,298890 ,1,18549,354420 ,1,18550,374310 ,1,18551,354410 ,1,18552,354400 ,1,18553,45 ,1,18554,11510 ,1,18555,45 ,1,18556,11510 ,1,18557,45 ,1,18558,11510 ,1,18559,45 ,1,18560,11510 ,1,18561,45 ,1,18562,11510 ,1,18563,45 ,1,18564,11510 ,1,18565,45 ,1,18566,11510 ,1,18567,45 ,1,18568,11510 ,1,18569,200170 ,1,18570,374370 ,1,18571,211925 ,1,18572,374415 ,1,18573,268610 ,1,18574,15775 ,1,18575,15620 ,1,18576,45 ,1,18577,11510 ,1,18578,45 ,1,18579,5900 ,1,18580,45 ,1,18581,11510 ,1,18582,45 ,1,18583,11510 ,1,18584,45 ,1,18585,11510 ,1,18586,354445 ,1,18587,586990 ,1,18588,45 ,1,18589,331650 ,1,18590,45 ,1,18591,331650 ,1,18592,299310 ,1,18593,196535 ,1,18594,196515 ,1,18595,45 ,1,18596,327085 ,1,18597,263790 ,1,18598,45 ,1,18599,330070 ,1,18600,314685 ,1,18601,45 ,1,18602,5900 ,1,18603,45 ,1,18604,5900 ,1,18605,45 ,1,18606,5900 ,1,18607,211915 ,1,18608,45 ,1,18609,179760 ,1,18610,45 ,1,18611,186035 ,1,18612,314675 ,1,18613,314665 ,1,18614,314655 ,1,18615,314645 ,1,18616,314635 ,1,18617,161515 ,1,18618,314625 ,1,18619,252950 ,1,18620,161505 ,1,18621,252940 ,1,18622,314615 ,1,18623,367595 ,1,18624,554275 ,1,18625,211890 ,1,18626,256770 ,1,18627,211880 ,1,18628,256865 ,1,18629,211870 ,1,18630,256855 ,1,18631,151775 ,1,18632,151975 ,1,18633,151665 ,1,18634,151605 ,1,18635,152055 ,1,18636,211860 ,1,18637,45 ,1,18638,5900 ,1,18639,215585 ,1,18640,2210 ,1,18641,542350 ,1,18642,2210 ,1,18643,542350 ,1,18644,45 ,1,18645,5900 ,1,18646,254175 ,1,18647,314585 ,1,18648,211845 ,1,18649,577285 ,1,18650,45 ,1,18651,331650 ,1,18652,45 ,1,18653,331650 ,1,18654,2210 ,1,18655,542350 ,1,18656,2210 ,1,18657,542350 ,1,18658,211835 ,1,18659,45 ,1,18660,11510 ,1,18661,45 ,1,18662,4315 ,1,18663,554255 ,1,18664,314575 ,1,18665,211825 ,1,18666,374500 ,1,18667,590965 ,1,18668,45 ,1,18669,325430 ,1,18670,15765 ,1,18671,15755 ,1,18672,314565 ,1,18673,45 ,1,18674,5900 ,1,18675,45 ,1,18676,5900 ,1,18677,45 ,1,18678,5900 ,1,18679,45 ,1,18680,5900 ,1,18681,45 ,1,18682,5900 ,1,18683,45 ,1,18684,5900 ,1,18685,107565 ,1,18686,45 ,1,18687,179760 ,1,18688,45 ,1,18689,186035 ,1,18690,45 ,1,18691,5900 ,1,18692,45 ,1,18693,5900 ,1,18694,211815 ,1,18695,45 ,1,18696,208615 ,1,18697,45 ,1,18698,205770 ,1,18699,45 ,1,18700,5900 ,1,18701,45 ,1,18702,5900 ,1,18703,45 ,1,18704,5900 ,1,18705,45 ,1,18706,5900 ,1,18707,45 ,1,18708,5900 ,1,18709,45 ,1,18710,325430 ,1,18711,15710 ,1,18712,554250 ,1,18713,211770 ,1,18714,211760 ,1,18715,590950 ,1,18716,257160 ,1,18717,211750 ,1,18718,211740 ,1,18719,259410 ,1,18720,211725 ,1,18721,211715 ,1,18722,229640 ,1,18723,554245 ,1,18724,211695 ,1,18725,211655 ,1,18726,590900 ,1,18727,45 ,1,18728,255425 ,1,18729,314555 ,1,18730,229630 ,1,18731,229580 ,1,18732,612685 ,1,18733,229590 ,1,18734,229600 ,1,18735,359300 ,1,18736,45 ,1,18737,180550 ,1,18738,45 ,1,18739,180560 ,1,18740,45 ,1,18741,9500 ,1,18742,45 ,1,18743,255425 ,1,18744,314535 ,1,18745,45 ,1,18746,255425 ,1,18747,314525 ,1,18748,45 ,1,18749,255425 ,1,18750,260690 ,1,18751,150560 ,1,18752,150535 ,1,18753,150515 ,1,18754,260650 ,1,18755,161495 ,1,18756,358165 ,1,18757,161485 ,1,18758,314515 ,1,18759,45 ,1,18760,192820 ,1,18761,314505 ,1,18762,314480 ,1,18763,2210 ,1,18764,542350 ,1,18765,45 ,1,18766,192820 ,1,18767,2210 ,1,18768,542350 ,1,18769,259475 ,1,18770,150580 ,1,18771,314470 ,1,18772,314460 ,1,18773,578815 ,1,18774,45 ,1,18775,331650 ,1,18776,45 ,1,18777,331650 ,1,18778,400430 ,1,18779,151115 ,1,18780,45 ,1,18781,210655 ,1,18782,579820 ,1,18783,45 ,1,18784,259605 ,1,18785,263700 ,1,18786,400430 ,1,18787,156890 ,1,18788,45 ,1,18789,208615 ,1,18790,45 ,1,18791,212880 ,1,18792,579480 ,1,18793,45 ,1,18794,5900 ,1,18795,45 ,1,18796,5900 ,1,18798,2395 ,1,18799,207240 ,1,18800,400430 ,1,18801,157455 ,1,18802,45 ,1,18803,208615 ,1,18804,45 ,1,18805,212880 ,1,18806,45 ,1,18807,209800 ,1,18808,579560 ,1,18809,45 ,1,18810,5900 ,1,18811,45 ,1,18812,5900 ,1,18813,45 ,1,18814,5900 ,1,18815,373505 ,1,18816,211645 ,1,18817,45 ,1,18818,208615 ,1,18819,45 ,1,18820,212880 ,1,18821,314450 ,1,18822,45 ,1,18823,5900 ,1,18824,212605 ,1,18825,356890 ,1,18826,554240 ,1,18827,211635 ,1,18828,400430 ,1,18829,156985 ,1,18830,45 ,1,18831,208615 ,1,18832,45 ,1,18833,212880 ,1,18834,45 ,1,18835,5900 ,1,18836,45 ,1,18837,5900 ,1,18838,580545 ,1,18839,45 ,1,18840,5900 ,1,18841,211625 ,1,18842,45 ,1,18843,208615 ,1,18844,45 ,1,18845,205770 ,1,18846,45 ,1,18847,5900 ,1,18848,45 ,1,18849,5900 ,1,18850,45 ,1,18851,5900 ,1,18852,45 ,1,18853,5900 ,1,18854,45 ,1,18855,5900 ,1,18856,45 ,1,18857,5900 ,1,18858,45 ,1,18859,5900 ,1,18860,45 ,1,18861,5900 ,1,18862,45 ,1,18863,5900 ,1,18864,400430 ,1,18865,160570 ,1,18866,45 ,1,18867,5900 ,1,18868,45 ,1,18869,5900 ,1,18870,45 ,1,18871,5900 ,1,18872,45 ,1,18873,211985 ,1,18874,45 ,1,18875,5900 ,1,18876,45 ,1,18877,209800 ,1,18878,45 ,1,18879,217770 ,1,18880,45 ,1,18881,5900 ,1,18882,45 ,1,18883,5900 ,1,18884,45 ,1,18885,11510 ,1,18886,45 ,1,18887,5900 ,1,18888,45 ,1,18889,11510 ,1,18890,45 ,1,18891,5900 ,1,18892,45 ,1,18893,11510 ,1,18894,45 ,1,18895,11510 ,1,18896,45 ,1,18897,11510 ,1,18898,45 ,1,18899,5900 ,1,18900,45 ,1,18901,11510 ,1,18902,45 ,1,18903,5900 ,1,18904,45 ,1,18905,5900 ,1,18906,45 ,1,18907,5900 ,1,18908,45 ,1,18909,209800 ,1,18910,45 ,1,18911,209800 ,1,18912,45 ,1,18913,209800 ,1,18914,45 ,1,18915,217770 ,1,18916,314435 ,1,18917,314425 ,1,18918,209275 ,1,18919,314415 ,1,18920,314405 ,1,18921,400430 ,1,18922,153380 ,1,18923,161475 ,1,18924,45 ,1,18925,325430 ,1,18926,550565 ,1,18927,45 ,1,18928,5900 ,1,18929,45 ,1,18930,5900 ,1,18931,45 ,1,18932,5900 ,1,18933,314365 ,1,18934,314355 ,1,18935,314345 ,1,18936,314335 ,1,18937,257940 ,1,18938,314325 ,1,18939,314315 ,1,18940,314305 ,1,18941,314295 ,1,18942,314260 ,1,18943,314250 ,1,18944,314240 ,1,18945,314230 ,1,18946,314215 ,1,18947,314205 ,1,18948,314195 ,1,18949,314185 ,1,18950,314165 ,1,18951,314155 ,1,18952,314145 ,1,18953,314135 ,1,18954,314125 ,1,18955,314115 ,1,18956,314105 ,1,18957,314095 ,1,18958,161465 ,1,18959,257730 ,1,18960,314045 ,1,18961,258030 ,1,18962,314035 ,1,18963,357590 ,1,18964,357325 ,1,18965,314025 ,1,18966,314015 ,1,18967,314000 ,1,18968,372320 ,1,18969,257910 ,1,18970,373065 ,1,18971,313990 ,1,18972,358825 ,1,18973,313980 ,1,18974,313970 ,1,18975,313950 ,1,18976,578475 ,1,18977,45 ,1,18978,324000 ,1,18979,45 ,1,18980,331650 ,1,18981,313940 ,1,18982,313930 ,1,18983,161455 ,1,18984,148945 ,1,18985,211615 ,1,18986,578640 ,1,18987,552575 ,1,18988,400430 ,1,18989,165580 ,1,18990,45 ,1,18991,225320 ,1,18992,400430 ,1,18993,191420 ,1,18994,45 ,1,18995,182815 ,1,18996,179485 ,1,18997,313920 ,1,18998,313910 ,1,18999,313900 ,1,19000,2210 ,1,19001,542350 ,1,19002,590890 ,1,19003,45 ,1,19004,325430 ,1,19005,15695 ,1,19007,2395 ,1,19008,400430 ,1,19009,151895 ,1,19010,45 ,1,19011,313890 ,1,19012,400430 ,1,19013,151550 ,1,19014,45 ,1,19015,221620 ,1,19016,45 ,1,19017,259605 ,1,19018,45 ,1,19019,253795 ,1,19020,45 ,1,19021,259605 ,1,19022,2210 ,1,19023,542350 ,1,19024,2210 ,1,19025,542350 ,1,19026,145635 ,1,19027,45 ,1,19028,11510 ,1,19029,45 ,1,19030,313880 ,1,19031,259900 ,1,19032,259880 ,1,19033,259890 ,1,19034,259845 ,1,19035,259925 ,1,19036,161445 ,1,19037,259915 ,1,19038,366955 ,1,19039,211605 ,1,19040,365765 ,1,19041,365570 ,1,19042,363790 ,1,19043,365800 ,1,19044,161425 ,1,19045,2210 ,1,19046,542350 ,1,19047,2210 ,1,19048,542350 ,1,19049,251790 ,1,19050,251825 ,1,19051,251815 ,1,19052,251780 ,1,19053,255730 ,1,19054,255740 ,1,19055,211595 ,1,19056,211570 ,1,19057,161415 ,1,19058,161405 ,1,19059,2210 ,1,19060,542350 ,1,19061,2210 ,1,19062,542350 ,1,19063,45 ,1,19064,243260 ,1,19065,45 ,1,19066,243260 ,1,19067,185065 ,1,19069,2395 ,1,19070,45 ,1,19071,9470 ,1,19072,161395 ,1,19073,255840 ,1,19074,357545 ,1,19075,400430 ,1,19076,196265 ,1,19077,45 ,1,19078,343730 ,1,19079,400430 ,1,19080,107890 ,1,19081,45 ,1,19082,182815 ,1,19083,211560 ,1,19084,45 ,1,19085,209800 ,1,19086,213335 ,1,19087,45 ,1,19088,5900 ,1,19089,2210 ,1,19090,542350 ,1,19091,548755 ,1,19092,400430 ,1,19093,146915 ,1,19094,45 ,1,19095,192820 ,1,19096,259380 ,1,19097,400430 ,1,19098,146945 ,1,19099,45 ,1,19100,192820 ,1,19101,257245 ,1,19102,400430 ,1,19103,146845 ,1,19104,45 ,1,19105,192820 ,1,19106,400430 ,1,19107,146675 ,1,19108,45 ,1,19109,192820 ,1,19110,400430 ,1,19111,146710 ,1,19112,45 ,1,19113,192820 ,1,19114,400430 ,1,19115,146820 ,1,19116,45 ,1,19117,192820 ,1,19118,259320 ,1,19119,257035 ,1,19120,400430 ,1,19121,146780 ,1,19122,45 ,1,19123,192820 ,1,19124,146630 ,1,19125,400430 ,1,19126,146750 ,1,19127,45 ,1,19128,192820 ,1,19129,400430 ,1,19130,147000 ,1,19131,259350 ,1,19132,400430 ,1,19133,146655 ,1,19134,45 ,1,19135,192820 ,1,19136,257205 ,1,19137,147035 ,1,19138,400430 ,1,19139,146865 ,1,19140,45 ,1,19141,192820 ,1,19142,259300 ,1,19143,400430 ,1,19144,150535 ,1,19145,400430 ,1,19146,150560 ,1,19147,580225 ,1,19148,45 ,1,19149,259605 ,1,19150,400430 ,1,19151,115890 ,1,19152,45 ,1,19153,182815 ,1,19154,400430 ,1,19155,109325 ,1,19156,45 ,1,19157,182815 ,1,19158,211550 ,1,19159,45 ,1,19160,209800 ,1,19161,400430 ,1,19162,111990 ,1,19163,45 ,1,19164,182815 ,1,19165,400430 ,1,19166,111745 ,1,19167,45 ,1,19168,182815 ,1,19169,400430 ,1,19170,153890 ,1,19171,45 ,1,19172,182815 ,1,19173,400430 ,1,19174,156360 ,1,19175,45 ,1,19176,182815 ,1,19177,400430 ,1,19178,118585 ,1,19179,45 ,1,19180,182815 ,1,19181,400430 ,1,19182,157210 ,1,19183,45 ,1,19184,182815 ,1,19185,212585 ,1,19186,212520 ,1,19187,400430 ,1,19188,155750 ,1,19189,45 ,1,19190,182815 ,1,19191,400430 ,1,19192,158055 ,1,19193,45 ,1,19194,208615 ,1,19195,45 ,1,19196,212880 ,1,19197,45 ,1,19198,209800 ,1,19199,211540 ,1,19200,45 ,1,19201,208615 ,1,19202,45 ,1,19203,212880 ,1,19204,400430 ,1,19205,154225 ,1,19206,45 ,1,19207,182815 ,1,19208,400430 ,1,19209,191555 ,1,19210,45 ,1,19211,182815 ,1,19212,400430 ,1,19213,111430 ,1,19214,45 ,1,19215,182815 ,1,19216,370860 ,1,19217,370840 ,1,19218,370850 ,1,19219,370820 ,1,19220,370830 ,1,19221,2210 ,1,19222,542350 ,1,19223,400430 ,1,19224,161020 ,1,19225,45 ,1,19226,182815 ,1,19227,211530 ,1,19228,211520 ,1,19229,45 ,1,19230,209800 ,1,19231,45 ,1,19232,209800 ,1,19233,45 ,1,19234,5900 ,1,19235,2210 ,1,19236,542350 ,1,19237,45 ,1,19238,5900 ,1,19239,562175 ,1,19240,45 ,1,19241,5900 ,1,19242,161380 ,1,19243,186350 ,1,19245,2395 ,1,19246,562180 ,1,19247,45 ,1,19248,9470 ,1,19249,554235 ,1,19250,45 ,1,19251,5900 ,1,19252,45 ,1,19253,5900 ,1,19254,554230 ,1,19255,554225 ,1,19256,45 ,1,19257,5900 ,1,19258,45 ,1,19259,5900 ,1,19260,554220 ,1,19261,45 ,1,19262,5900 ,1,19263,45 ,1,19264,5900 ,1,19265,208545 ,1,19266,554195 ,1,19267,400430 ,1,19268,160350 ,1,19269,45 ,1,19270,182815 ,1,19271,400430 ,1,19272,134675 ,1,19273,45 ,1,19274,182815 ,1,19275,211510 ,1,19276,161370 ,1,19277,45 ,1,19278,209800 ,1,19279,45 ,1,19280,243260 ,1,19281,243250 ,1,19282,243260 ,1,19283,243285 ,1,19284,45 ,1,19285,5900 ,1,19286,45 ,1,19287,5900 ,1,19288,45 ,1,19289,5900 ,1,19290,45 ,1,19291,5900 ,1,19292,356880 ,1,19293,45 ,1,19294,5900 ,1,19295,45 ,1,19296,5900 ,1,19297,45 ,1,19298,5900 ,1,19299,2210 ,1,19300,542350 ,1,19301,2210 ,1,19302,542350 ,1,19303,400430 ,1,19304,180760 ,1,19305,45 ,1,19306,182815 ,1,19307,15160 ,1,19308,400430 ,1,19309,112870 ,1,19310,45 ,1,19311,182815 ,1,19312,400430 ,1,19313,103310 ,1,19314,45 ,1,19315,182815 ,1,19316,184640 ,1,19317,569570 ,1,19318,45 ,1,19319,325430 ,1,19320,313820 ,1,19321,313810 ,1,19322,313800 ,1,19323,313790 ,1,19324,313780 ,1,19325,313770 ,1,19326,313745 ,1,19327,313735 ,1,19328,313725 ,1,19329,313715 ,1,19330,313700 ,1,19331,313690 ,1,19332,313680 ,1,19333,211500 ,1,19334,313670 ,1,19335,313635 ,1,19336,374535 ,1,19337,2210 ,1,19338,542350 ,1,19339,211455 ,1,19340,313625 ,1,19341,152960 ,1,19342,313615 ,1,19343,211445 ,1,19344,579015 ,1,19345,45 ,1,19346,331650 ,1,19347,45 ,1,19348,331650 ,1,19349,313605 ,1,19350,262815 ,1,19351,262805 ,1,19352,578350 ,1,19353,550530 ,1,19354,578410 ,1,19355,45 ,1,19356,259605 ,1,19357,554190 ,1,19358,554185 ,1,19359,554180 ,1,19360,554175 ,1,19361,550520 ,1,19362,578485 ,1,19364,2395 ,1,19365,357860 ,1,19366,400430 ,1,19367,190675 ,1,19368,45 ,1,19369,182815 ,1,19370,400430 ,1,19371,119930 ,1,19372,45 ,1,19373,276975 ,1,19374,359330 ,1,19375,359320 ,1,19376,359310 ,1,19377,211435 ,1,19378,359340 ,1,19379,211425 ,1,19380,313595 ,1,19381,313585 ,1,19382,313575 ,1,19383,313565 ,1,19384,313535 ,1,19385,313525 ,1,19386,180875 ,1,19387,211410 ,1,19388,313515 ,1,19389,15685 ,1,19390,211400 ,1,19391,274790 ,1,19392,274780 ,1,19393,274770 ,1,19394,313495 ,1,19395,313485 ,1,19396,45 ,1,19397,214155 ,1,19398,45 ,1,19399,331690 ,1,19400,367075 ,1,19401,357320 ,1,19402,372975 ,1,19403,373285 ,1,19404,589875 ,1,19405,194120 ,1,19406,211390 ,1,19407,586505 ,1,19408,45 ,1,19409,331650 ,1,19410,45 ,1,19411,331650 ,1,19412,246550 ,1,19413,369670 ,1,19414,400430 ,1,19415,191050 ,1,19416,45 ,1,19417,184220 ,1,19418,588375 ,1,19419,45 ,1,19420,259605 ,1,19421,45 ,1,19422,5900 ,1,19423,590835 ,1,19424,45 ,1,19425,259605 ,1,19426,584480 ,1,19427,45 ,1,19428,259605 ,1,19429,269020 ,1,19430,313475 ,1,19431,313465 ,1,19432,357065 ,1,19433,211380 ,1,19434,400430 ,1,19435,107615 ,1,19436,45 ,1,19437,184220 ,1,19438,211355 ,1,19439,45 ,1,19440,209800 ,1,19441,213205 ,1,19442,211345 ,1,19443,45 ,1,19444,5900 ,1,19445,45 ,1,19446,5900 ,1,19447,400430 ,1,19448,115425 ,1,19449,45 ,1,19450,184220 ,1,19451,400430 ,1,19452,108430 ,1,19453,45 ,1,19454,184220 ,1,19455,211335 ,1,19456,45 ,1,19457,209800 ,1,19458,400430 ,1,19459,111935 ,1,19460,45 ,1,19461,184220 ,1,19462,400430 ,1,19463,111700 ,1,19464,45 ,1,19465,184220 ,1,19466,400430 ,1,19467,153850 ,1,19468,45 ,1,19469,184220 ,1,19470,400430 ,1,19471,156240 ,1,19472,45 ,1,19473,184220 ,1,19474,400430 ,1,19475,118535 ,1,19476,45 ,1,19477,184220 ,1,19478,590825 ,1,19479,45 ,1,19480,5900 ,1,19481,400430 ,1,19482,157140 ,1,19483,45 ,1,19484,184220 ,1,19485,212775 ,1,19486,212720 ,1,19487,400430 ,1,19488,155690 ,1,19489,45 ,1,19490,184220 ,1,19491,400430 ,1,19492,154185 ,1,19493,45 ,1,19494,184220 ,1,19495,400430 ,1,19496,191515 ,1,19497,45 ,1,19498,184220 ,1,19499,400430 ,1,19500,110840 ,1,19501,45 ,1,19502,184220 ,1,19503,356870 ,1,19504,356860 ,1,19505,400430 ,1,19506,160920 ,1,19507,45 ,1,19508,184220 ,1,19509,211325 ,1,19510,211315 ,1,19511,45 ,1,19512,209800 ,1,19513,45 ,1,19514,209800 ,1,19515,400430 ,1,19516,160040 ,1,19517,45 ,1,19518,184220 ,1,19519,400430 ,1,19520,134410 ,1,19521,45 ,1,19522,184220 ,1,19523,211305 ,1,19524,45 ,1,19525,209800 ,1,19526,45 ,1,19527,243260 ,1,19528,400430 ,1,19529,180740 ,1,19530,45 ,1,19531,184220 ,1,19532,400430 ,1,19533,145760 ,1,19534,45 ,1,19535,276975 ,1,19536,400430 ,1,19537,143540 ,1,19538,45 ,1,19539,184220 ,1,19540,400430 ,1,19541,144130 ,1,19542,45 ,1,19543,182815 ,1,19544,45 ,1,19545,5900 ,1,19546,144300 ,1,19547,45 ,1,19548,179760 ,1,19549,45 ,1,19550,186035 ,1,19551,100505 ,1,19552,45 ,1,19553,179760 ,1,19554,45 ,1,19555,186035 ,1,19556,161360 ,1,19557,209660 ,1,19558,2210 ,1,19559,542350 ,1,19560,2210 ,1,19561,542350 ,1,19562,15675 ,1,19563,373435 ,1,19564,313420 ,1,19565,45 ,1,19566,5900 ,1,19567,45 ,1,19568,190350 ,1,19569,45 ,1,19570,5900 ,1,19571,45 ,1,19572,211985 ,1,19573,143495 ,1,19574,143865 ,1,19575,143665 ,1,19576,45 ,1,19577,192820 ,1,19578,144280 ,1,19579,145485 ,1,19580,145720 ,1,19581,143450 ,1,19582,145670 ,1,19583,45 ,1,19584,313410 ,1,19585,45 ,1,19586,313410 ,1,19587,2210 ,1,19588,542350 ,1,19589,45 ,1,19590,313410 ,1,19591,45 ,1,19592,313410 ,1,19593,2210 ,1,19594,542350 ,1,19595,45 ,1,19596,221620 ,1,19597,211295 ,1,19598,371875 ,1,19599,45 ,1,19600,5900 ,1,19601,211285 ,1,19602,371785 ,1,19603,45 ,1,19604,5900 ,1,19605,211260 ,1,19606,371885 ,1,19607,45 ,1,19608,5900 ,1,19609,211250 ,1,19610,371715 ,1,19611,45 ,1,19612,5900 ,1,19613,211240 ,1,19614,371615 ,1,19615,45 ,1,19616,5900 ,1,19617,313400 ,1,19618,371510 ,1,19619,371430 ,1,19620,371550 ,1,19621,371605 ,1,19622,400430 ,1,19623,112750 ,1,19624,45 ,1,19625,184220 ,1,19626,400430 ,1,19627,102995 ,1,19628,45 ,1,19629,184220 ,1,19630,579085 ,1,19631,45 ,1,19632,259605 ,1,19633,260820 ,1,19634,590820 ,1,19635,45 ,1,19636,323635 ,1,19637,579130 ,1,19638,45 ,1,19639,259605 ,1,19640,261105 ,1,19641,143010 ,1,19642,313390 ,1,19643,358625 ,1,19644,45 ,1,19645,5900 ,1,19646,257670 ,1,19647,358715 ,1,19648,45 ,1,19649,5900 ,1,19650,257720 ,1,19651,358690 ,1,19652,45 ,1,19653,5900 ,1,19654,358670 ,1,19655,45 ,1,19656,5900 ,1,19657,257590 ,1,19658,358615 ,1,19659,45 ,1,19660,5900 ,1,19661,257690 ,1,19662,358705 ,1,19663,45 ,1,19664,5900 ,1,19665,257580 ,1,19666,358605 ,1,19667,45 ,1,19668,5900 ,1,19669,257660 ,1,19670,358660 ,1,19671,45 ,1,19672,5900 ,1,19673,257600 ,1,19674,358725 ,1,19675,45 ,1,19676,5900 ,1,19677,257450 ,1,19678,358595 ,1,19679,45 ,1,19680,5900 ,1,19681,257775 ,1,19682,358680 ,1,19683,45 ,1,19684,5900 ,1,19685,590795 ,1,19686,45 ,1,19687,5900 ,1,19688,45 ,1,19689,5900 ,1,19690,578740 ,1,19691,45 ,1,19692,341055 ,1,19693,45 ,1,19694,5900 ,1,19695,45 ,1,19696,5900 ,1,19697,45 ,1,19698,5900 ,1,19699,45 ,1,19700,5900 ,1,19701,45 ,1,19702,5900 ,1,19703,45 ,1,19704,5900 ,1,19705,45 ,1,19706,5900 ,1,19707,45 ,1,19708,5900 ,1,19709,45 ,1,19710,5900 ,1,19711,45 ,1,19712,5900 ,1,19713,45 ,1,19714,5900 ,1,19715,45 ,1,19716,5900 ,1,19717,45 ,1,19718,5900 ,1,19719,45 ,1,19720,5900 ,1,19721,45 ,1,19722,5900 ,1,19723,45 ,1,19724,5900 ,1,19725,45 ,1,19726,5900 ,1,19727,45 ,1,19728,5900 ,1,19729,45 ,1,19730,5900 ,1,19731,45 ,1,19732,5900 ,1,19733,45 ,1,19734,5900 ,1,19735,45 ,1,19736,5900 ,1,19737,45 ,1,19738,5900 ,1,19739,45 ,1,19740,5900 ,1,19741,45 ,1,19742,5900 ,1,19743,45 ,1,19744,5900 ,1,19745,45 ,1,19746,5900 ,1,19747,45 ,1,19748,5900 ,1,19749,45 ,1,19750,5900 ,1,19751,45 ,1,19752,5900 ,1,19753,45 ,1,19754,5900 ,1,19755,45 ,1,19756,5900 ,1,19757,45 ,1,19758,5900 ,1,19759,45 ,1,19760,5900 ,1,19761,45 ,1,19762,5900 ,1,19763,45 ,1,19764,5900 ,1,19765,45 ,1,19766,5900 ,1,19767,45 ,1,19768,5900 ,1,19769,45 ,1,19770,5900 ,1,19771,45 ,1,19772,5900 ,1,19773,45 ,1,19774,5900 ,1,19775,45 ,1,19776,5900 ,1,19777,45 ,1,19778,5900 ,1,19779,45 ,1,19780,5900 ,1,19781,45 ,1,19782,5900 ,1,19783,313375 ,1,19784,313365 ,1,19785,578465 ,1,19786,45 ,1,19787,331650 ,1,19788,45 ,1,19789,331650 ,1,19790,550555 ,1,19791,374480 ,1,19792,578550 ,1,19793,45 ,1,19794,324000 ,1,19795,45 ,1,19796,331650 ,1,19797,149365 ,1,19798,211230 ,1,19799,400430 ,1,19800,148070 ,1,19801,45 ,1,19802,184220 ,1,19803,2210 ,1,19804,542350 ,1,19805,400430 ,1,19806,148700 ,1,19807,45 ,1,19808,182815 ,1,19809,45 ,1,19810,5900 ,1,19811,45 ,1,19812,5900 ,1,19813,211215 ,1,19814,45 ,1,19815,208615 ,1,19816,45 ,1,19817,205770 ,1,19818,211185 ,1,19819,211150 ,1,19820,354045 ,1,19821,590770 ,1,19822,45 ,1,19823,9375 ,1,19824,45 ,1,19825,11510 ,1,19826,45 ,1,19827,11510 ,1,19828,45 ,1,19829,11510 ,1,19830,45 ,1,19831,11510 ,1,19832,45 ,1,19833,11510 ,1,19834,45 ,1,19835,11510 ,1,19836,45 ,1,19837,11510 ,1,19838,45 ,1,19839,11510 ,1,19840,45 ,1,19841,11510 ,1,19842,45 ,1,19843,11510 ,1,19844,45 ,1,19845,11510 ,1,19846,45 ,1,19847,5900 ,1,19848,45 ,1,19849,5900 ,1,19850,313345 ,1,19851,148135 ,1,19852,45 ,1,19853,5900 ,1,19854,45 ,1,19855,5900 ,1,19856,45 ,1,19857,5900 ,1,19858,45 ,1,19859,5900 ,1,19860,45 ,1,19861,5900 ,1,19862,45 ,1,19863,5900 ,1,19864,45 ,1,19865,5900 ,1,19866,45 ,1,19867,5900 ,1,19868,45 ,1,19869,5900 ,1,19870,45 ,1,19871,179760 ,1,19872,45 ,1,19873,186035 ,1,19874,45 ,1,19875,5900 ,1,19876,45 ,1,19877,5900 ,1,19878,211140 ,1,19879,211130 ,1,19880,45 ,1,19881,5900 ,1,19882,45 ,1,19883,313305 ,1,19884,45 ,1,19885,5370 ,1,19886,45 ,1,19887,5900 ,1,19888,45 ,1,19889,313305 ,1,19890,45 ,1,19891,5370 ,1,19892,45 ,1,19893,5900 ,1,19894,554170 ,1,19895,45 ,1,19896,5900 ,1,19897,213260 ,1,19898,45 ,1,19899,5900 ,1,19900,45 ,1,19901,211985 ,1,19902,246135 ,1,19903,15665 ,1,19904,372495 ,1,19905,313295 ,1,19906,313280 ,1,19907,313270 ,1,19908,554165 ,1,19909,313260 ,1,19910,161350 ,1,19911,246025 ,1,19912,246035 ,1,19913,400430 ,1,19914,190655 ,1,19915,45 ,1,19916,184220 ,1,19917,179770 ,1,19918,161315 ,1,19919,590760 ,1,19920,45 ,1,19921,323635 ,1,19922,373705 ,1,19923,15060 ,1,19924,373685 ,1,19925,552570 ,1,19926,586410 ,1,19927,45 ,1,19928,259605 ,1,19929,297105 ,1,19930,356960 ,1,19931,552600 ,1,19932,400430 ,1,19933,191100 ,1,19934,45 ,1,19935,184220 ,1,19936,400430 ,1,19937,190860 ,1,19938,45 ,1,19939,182815 ,1,19940,45 ,1,19941,5900 ,1,19942,45 ,1,19943,5900 ,1,19944,400430 ,1,19945,107675 ,1,19946,45 ,1,19947,184220 ,1,19948,211120 ,1,19949,45 ,1,19950,209800 ,1,19951,213540 ,1,19952,400430 ,1,19953,107825 ,1,19954,45 ,1,19955,182815 ,1,19956,211095 ,1,19957,45 ,1,19958,209800 ,1,19959,213415 ,1,19960,400430 ,1,19961,115485 ,1,19962,45 ,1,19963,184220 ,1,19964,400430 ,1,19965,115860 ,1,19966,45 ,1,19967,182815 ,1,19968,400430 ,1,19969,108460 ,1,19970,45 ,1,19971,184220 ,1,19972,211085 ,1,19973,45 ,1,19974,209800 ,1,19975,400430 ,1,19976,109305 ,1,19977,45 ,1,19978,182815 ,1,19979,211075 ,1,19980,45 ,1,19981,209800 ,1,19982,45 ,1,19983,5900 ,1,19984,45 ,1,19985,5900 ,1,19986,161305 ,1,19987,45 ,1,19988,5900 ,1,19989,45 ,1,19990,5900 ,1,19991,45 ,1,19992,5900 ,1,19993,45 ,1,19994,5900 ,1,19995,45 ,1,19996,5900 ,1,19997,45 ,1,19998,5900 ,1,19999,45 ,1,20000,5900 ,1,20001,45 ,1,20002,5900 ,1,20003,2210 ,1,20004,542350 ,1,20005,45 ,1,20006,5900 ,1,20007,45 ,1,20008,5900 ,1,20009,400430 ,1,20010,111955 ,1,20011,45 ,1,20012,184220 ,1,20013,400430 ,1,20014,112010 ,1,20015,45 ,1,20016,182815 ,1,20017,400430 ,1,20018,111725 ,1,20019,45 ,1,20020,184220 ,1,20021,400430 ,1,20022,111790 ,1,20023,45 ,1,20024,182815 ,1,20025,400430 ,1,20026,153870 ,1,20027,45 ,1,20028,184220 ,1,20029,400430 ,1,20030,153910 ,1,20031,45 ,1,20032,182815 ,1,20033,400430 ,1,20034,156170 ,1,20035,45 ,1,20036,184220 ,1,20037,400430 ,1,20038,156305 ,1,20039,45 ,1,20040,182815 ,1,20041,400430 ,1,20042,118565 ,1,20043,45 ,1,20044,184220 ,1,20045,400430 ,1,20046,118625 ,1,20047,45 ,1,20048,182815 ,1,20049,400430 ,1,20050,157190 ,1,20051,45 ,1,20052,184220 ,1,20053,400430 ,1,20054,157235 ,1,20055,45 ,1,20056,182815 ,1,20057,400430 ,1,20058,155730 ,1,20059,45 ,1,20060,184220 ,1,20061,400430 ,1,20062,155790 ,1,20063,45 ,1,20064,182815 ,1,20065,400430 ,1,20066,154205 ,1,20067,45 ,1,20068,184220 ,1,20069,400430 ,1,20070,154245 ,1,20071,45 ,1,20072,182815 ,1,20073,400430 ,1,20074,191535 ,1,20075,45 ,1,20076,184220 ,1,20077,400430 ,1,20078,191470 ,1,20079,45 ,1,20080,182815 ,1,20081,400430 ,1,20082,110870 ,1,20083,45 ,1,20084,184220 ,1,20085,400430 ,1,20086,111190 ,1,20087,45 ,1,20088,182815 ,1,20089,185430 ,1,20091,2395 ,1,20092,45 ,1,20093,9470 ,1,20094,400430 ,1,20095,160830 ,1,20096,45 ,1,20097,184220 ,1,20098,211065 ,1,20099,211040 ,1,20100,45 ,1,20101,209800 ,1,20102,45 ,1,20103,209800 ,1,20104,400430 ,1,20105,160950 ,1,20106,45 ,1,20107,182815 ,1,20108,211030 ,1,20109,211020 ,1,20110,45 ,1,20111,209800 ,1,20112,45 ,1,20113,209800 ,1,20114,45 ,1,20115,5900 ,1,20116,554160 ,1,20117,313250 ,1,20118,400430 ,1,20119,160060 ,1,20120,45 ,1,20121,184220 ,1,20122,400430 ,1,20123,160275 ,1,20124,45 ,1,20125,182815 ,1,20126,400430 ,1,20127,134430 ,1,20128,45 ,1,20129,184220 ,1,20130,211010 ,1,20131,45 ,1,20132,209800 ,1,20133,45 ,1,20134,243260 ,1,20135,400430 ,1,20136,134605 ,1,20137,45 ,1,20138,182815 ,1,20139,211000 ,1,20140,45 ,1,20141,209800 ,1,20142,45 ,1,20143,243260 ,1,20144,400430 ,1,20145,143915 ,1,20146,45 ,1,20147,184220 ,1,20148,400430 ,1,20149,145875 ,1,20150,45 ,1,20151,182815 ,1,20152,400430 ,1,20153,112685 ,1,20154,45 ,1,20155,184220 ,1,20156,400430 ,1,20157,112780 ,1,20158,45 ,1,20159,182815 ,1,20160,400430 ,1,20161,103030 ,1,20162,45 ,1,20163,184220 ,1,20164,400430 ,1,20165,103215 ,1,20166,45 ,1,20167,182815 ,1,20168,153980 ,1,20169,45 ,1,20170,179760 ,1,20171,45 ,1,20172,186035 ,1,20173,45 ,1,20174,5900 ,1,20175,45 ,1,20176,11510 ,1,20177,357035 ,1,20178,357045 ,1,20179,357055 ,1,20180,45 ,1,20181,11510 ,1,20182,45 ,1,20183,11510 ,1,20184,45 ,1,20185,11510 ,1,20186,45 ,1,20187,11510 ,1,20188,45 ,1,20189,11510 ,1,20190,45 ,1,20191,11510 ,1,20192,579110 ,1,20193,45 ,1,20194,5900 ,1,20195,45 ,1,20196,5900 ,1,20197,210990 ,1,20198,45 ,1,20199,208615 ,1,20200,45 ,1,20201,205770 ,1,20202,45 ,1,20203,5900 ,1,20204,45 ,1,20205,5900 ,1,20206,45 ,1,20207,5900 ,1,20208,45 ,1,20209,5900 ,1,20210,210980 ,1,20211,45 ,1,20212,313205 ,1,20213,45 ,1,20214,5900 ,1,20215,45 ,1,20216,5900 ,1,20217,313195 ,1,20218,45 ,1,20219,5900 ,1,20220,210970 ,1,20221,45 ,1,20222,208615 ,1,20223,45 ,1,20224,205770 ,1,20225,210930 ,1,20226,45 ,1,20227,313205 ,1,20228,45 ,1,20229,5900 ,1,20230,45 ,1,20231,5900 ,1,20232,210920 ,1,20233,45 ,1,20234,5900 ,1,20235,313185 ,1,20236,45 ,1,20237,313205 ,1,20238,45 ,1,20239,5900 ,1,20240,45 ,1,20241,5900 ,1,20242,45 ,1,20243,5900 ,1,20244,45 ,1,20245,5900 ,1,20246,15655 ,1,20247,210910 ,1,20248,45 ,1,20249,313205 ,1,20250,45 ,1,20251,5900 ,1,20252,400430 ,1,20253,152755 ,1,20254,45 ,1,20255,5900 ,1,20256,45 ,1,20257,5900 ,1,20258,45 ,1,20259,5900 ,1,20260,45 ,1,20261,211985 ,1,20262,45 ,1,20263,5900 ,1,20264,45 ,1,20265,209800 ,1,20266,45 ,1,20267,217770 ,1,20268,45 ,1,20269,5900 ,1,20270,45 ,1,20271,5900 ,1,20272,45 ,1,20273,11510 ,1,20274,45 ,1,20275,5900 ,1,20276,45 ,1,20277,11510 ,1,20278,45 ,1,20279,5900 ,1,20280,45 ,1,20281,11510 ,1,20282,45 ,1,20283,11510 ,1,20284,45 ,1,20285,11510 ,1,20286,45 ,1,20287,5900 ,1,20288,45 ,1,20289,11510 ,1,20290,45 ,1,20291,5900 ,1,20292,45 ,1,20293,5900 ,1,20294,45 ,1,20295,5900 ,1,20296,45 ,1,20297,209800 ,1,20298,45 ,1,20299,209800 ,1,20300,45 ,1,20301,209800 ,1,20302,45 ,1,20303,217770 ,1,20304,590730 ,1,20305,45 ,1,20306,323635 ,1,20307,161295 ,1,20308,578530 ,1,20309,45 ,1,20310,5900 ,1,20311,400430 ,1,20312,148050 ,1,20313,45 ,1,20314,184220 ,1,20315,400430 ,1,20316,148460 ,1,20317,45 ,1,20318,182815 ,1,20319,400430 ,1,20320,190735 ,1,20321,45 ,1,20322,184220 ,1,20323,400430 ,1,20324,190285 ,1,20325,45 ,1,20326,182815 ,1,20327,590725 ,1,20328,45 ,1,20329,5900 ,1,20330,210900 ,1,20331,45 ,1,20332,313175 ,1,20333,45 ,1,20334,313165 ,1,20335,210890 ,1,20336,210880 ,1,20337,45 ,1,20338,327945 ,1,20339,183205 ,1,20340,45 ,1,20341,5900 ,1,20342,373445 ,1,20343,313155 ,1,20344,372100 ,1,20345,313145 ,1,20347,2395 ,1,20348,45 ,1,20349,9470 ,1,20350,45 ,1,20351,5900 ,1,20352,45 ,1,20353,5900 ,1,20354,194305 ,1,20355,369705 ,1,20356,194325 ,1,20357,369695 ,1,20358,369685 ,1,20359,369560 ,1,20360,194280 ,1,20361,45 ,1,20362,330070 ,1,20363,210870 ,1,20364,586450 ,1,20365,45 ,1,20366,331650 ,1,20367,45 ,1,20368,331650 ,1,20369,161285 ,1,20370,246570 ,1,20371,194930 ,1,20372,194910 ,1,20373,194875 ,1,20374,313135 ,1,20375,15265 ,1,20376,161275 ,1,20377,161265 ,1,20378,374380 ,1,20379,210860 ,1,20380,45 ,1,20381,276975 ,1,20382,45 ,1,20383,276975 ,1,20384,359665 ,1,20385,368995 ,1,20386,373290 ,1,20387,313105 ,1,20388,246375 ,1,20389,161255 ,1,20390,586610 ,1,20391,45 ,1,20392,324000 ,1,20393,45 ,1,20394,331650 ,1,20395,313095 ,1,20396,45 ,1,20397,11510 ,1,20398,313085 ,1,20399,562185 ,1,20400,45 ,1,20401,5900 ,1,20403,2395 ,1,20404,554110 ,1,20405,313075 ,1,20406,554105 ,1,20407,554100 ,1,20408,586400 ,1,20409,45 ,1,20410,259605 ,1,20411,297575 ,1,20412,2210 ,1,20413,542350 ,1,20414,554095 ,1,20415,554080 ,1,20416,187735 ,1,20417,210815 ,1,20418,45 ,1,20419,313205 ,1,20420,45 ,1,20421,5900 ,1,20422,45 ,1,20423,5900 ,1,20424,210805 ,1,20425,45 ,1,20426,313205 ,1,20427,45 ,1,20428,5900 ,1,20429,210795 ,1,20430,45 ,1,20431,209800 ,1,20432,590700 ,1,20433,45 ,1,20434,4315 ,1,20435,45 ,1,20436,211985 ,1,20437,210785 ,1,20438,45 ,1,20439,209800 ,1,20440,45 ,1,20441,4315 ,1,20442,45 ,1,20443,5900 ,1,20444,210770 ,1,20445,45 ,1,20446,208615 ,1,20447,45 ,1,20448,205770 ,1,20449,45 ,1,20450,5900 ,1,20451,210760 ,1,20452,45 ,1,20453,313205 ,1,20454,45 ,1,20455,5900 ,1,20456,45 ,1,20457,5900 ,1,20458,45 ,1,20459,5900 ,1,20460,45 ,1,20461,5900 ,1,20462,45 ,1,20463,5900 ,1,20464,210750 ,1,20465,45 ,1,20466,5900 ,1,20467,45 ,1,20468,5900 ,1,20469,45 ,1,20470,5900 ,1,20471,45 ,1,20472,5900 ,1,20473,2210 ,1,20474,542350 ,1,20475,45 ,1,20476,313205 ,1,20477,45 ,1,20478,5900 ,1,20479,45 ,1,20480,5900 ,1,20481,45 ,1,20482,5900 ,1,20483,45 ,1,20484,5900 ,1,20485,45 ,1,20486,5900 ,1,20487,2210 ,1,20488,542350 ,1,20489,2210 ,1,20490,542350 ,1,20491,2210 ,1,20492,542350 ,1,20493,586460 ,1,20494,45 ,1,20495,341055 ,1,20496,313060 ,1,20497,369860 ,1,20498,45 ,1,20499,5900 ,1,20500,45 ,1,20501,5900 ,1,20502,313050 ,1,20503,369870 ,1,20504,45 ,1,20505,5900 ,1,20506,45 ,1,20507,5900 ,1,20508,313040 ,1,20509,369845 ,1,20510,45 ,1,20511,5900 ,1,20512,45 ,1,20513,5900 ,1,20514,45 ,1,20515,5900 ,1,20516,45 ,1,20517,5900 ,1,20518,45 ,1,20519,5900 ,1,20520,45 ,1,20521,5900 ,1,20522,45 ,1,20523,5900 ,1,20524,45 ,1,20525,5900 ,1,20526,45 ,1,20527,5900 ,1,20528,45 ,1,20529,5900 ,1,20530,45 ,1,20531,5900 ,1,20532,45 ,1,20533,5900 ,1,20534,45 ,1,20535,5900 ,1,20536,45 ,1,20537,5900 ,1,20538,45 ,1,20539,5900 ,1,20540,45 ,1,20541,5900 ,1,20542,297305 ,1,20543,45 ,1,20544,5900 ,1,20545,297295 ,1,20546,45 ,1,20547,5900 ,1,20548,297285 ,1,20549,45 ,1,20550,325970 ,1,20551,45 ,1,20552,5900 ,1,20553,45 ,1,20554,5900 ,1,20555,45 ,1,20556,5900 ,1,20557,45 ,1,20558,5900 ,1,20559,45 ,1,20560,5900 ,1,20561,45 ,1,20562,5900 ,1,20563,2280 ,1,20564,542005 ,1,20565,45 ,1,20566,5900 ,1,20567,45 ,1,20568,5900 ,1,20569,45 ,1,20570,5900 ,1,20571,45 ,1,20572,5900 ,1,0,285 ,1,0,515 ,1,0,740 ,1,0,960 ,1,0,1395 ,1,0,1605 ,1,0,1820 ,1,0,2035 ,1,0,2260 ,1,0,2460 ,1,0,2680 ,1,0,2890 ,1,0,3205 ,1,0,3950 ,1,0,4260 ,1,0,4600 ,1,0,4805 ,1,0,5045 ,1,0,5255 ,1,0,5450 ,1,0,5675 ,1,0,5875 ,1,0,6490 ,1,0,6835 ,1,0,7075 ,1,0,7280 ,1,0,7495 ,1,0,7835 ,1,0,8045 ,1,0,8255 ,1,0,8580 ,1,0,8795 ,1,0,9210 ,1,0,9525 ,1,0,9830 ,1,0,10260 ,1,0,10800 ,1,0,10995 ,1,0,11330 ,1,0,11655 ,1,0,12530 ,1,0,12735 ,1,0,12940 ,1,0,13155 ,1,0,13490 ,1,0,14345 ,1,0,14545 ,1,0,15740 ,1,0,15940 ,1,0,16255 ,1,0,18195 ,1,0,18735 ,1,0,18965 ,1,0,19170 ,1,0,19495 ,1,0,19695 ,1,0,19925 ,1,0,20875 ,1,0,21300 ,1,0,21515 ,1,0,21745 ,1,0,21955 ,1,0,22275 ,1,0,22610 ,1,0,22830 ,1,0,23045 ,1,0,23400 ,1,0,24730 ,1,0,25065 ,1,0,25950 ,1,0,27560 ,1,0,27985 ,1,0,28435 ,1,0,29425 ,1,0,29880 ,1,0,30200 ,1,0,30615 ,1,0,32415 ,1,0,32620 ,1,0,32930 ,1,0,33150 ,1,0,33365 ,1,0,33590 ,1,0,33885 ,1,0,34610 ,1,0,35525 ,1,0,36270 ,1,0,37020 ,1,0,37320 ,1,0,37740 ,1,0,38165 ,1,0,39025 ,1,0,39245 ,1,0,39475 ,1,0,39905 ,1,0,40230 ,1,0,40480 ,1,0,40990 ,1,0,41630 ,1,0,42280 ,1,0,42915 ,1,0,43355 ,1,0,43570 ,1,0,43900 ,1,0,44345 ,1,0,44670 ,1,0,45000 ,1,0,45200 ,1,0,45420 ,1,0,46355 ,1,0,46780 ,1,0,47205 ,1,0,47605 ,1,0,47815 ,1,0,48770 ,1,0,49265 ,1,0,49595 ,1,0,50120 ,1,0,51930 ,1,0,52355 ,1,0,52810 ,1,0,53885 ,1,0,55840 ,1,0,56675 ,1,0,57115 ,1,0,57780 ,1,0,58220 ,1,0,58940 ,1,0,59570 ,1,0,60840 ,1,0,61050 ,1,0,61775 ,1,0,62105 ,1,0,62315 ,1,0,62535 ,1,0,63925 ,1,0,64360 ,1,0,64580 ,1,0,64790 ,1,0,65145 ,1,0,65335 ,1,0,65655 ,1,0,66250 ,1,0,66880 ,1,0,67605 ,1,0,68240 ,1,0,69275 ,1,0,69790 ,1,0,70405 ,1,0,71840 ,1,0,72235 ,1,0,73170 ,1,0,73495 ,1,0,74000 ,1,0,74325 ,1,0,77395 ,1,0,78355 ,1,0,78695 ,1,0,78910 ,1,0,79130 ,1,0,79530 ,1,0,80265 ,1,0,80825 ,1,0,81560 ,1,0,81880 ,1,0,82510 ,1,0,83165 ,1,0,83805 ,1,0,84140 ,1,0,84330 ,1,0,84960 ,1,0,85175 ,1,0,85510 ,1,0,85855 ,1,0,86090 ,1,0,86390 ,1,0,86700 ,1,0,87240 ,1,0,87555 ,1,0,87795 ,1,0,88010 ,1,0,88215 ,1,0,88540 ,1,0,88855 ,1,0,89160 ,1,0,89475 ,1,0,89975 ,1,0,90405 ,1,0,90705 ,1,0,91000 ,1,0,91325 ,1,0,91820 ,1,0,92140 ,1,0,92475 ,1,0,92575 ,1,0,93000 ,1,0,93295 ,1,0,93505 ,1,0,93835 ,1,0,94165 ,1,0,94475 ,1,0,94785 ,1,0,94985 ,1,0,95430 ,1,0,95545 ,1,0,96290 ,1,0,96595 ,1,0,97355 ,1,0,97890 ,1,0,98125 ,1,0,98335 ,1,0,98770 ,1,0,99525 ,1,0,99865 ,1,0,100225 ,1,0,100540 ,1,0,101880 ,1,0,102220 ,1,0,102535 ,1,0,103185 ,1,0,103400 ,1,0,104170 ,1,0,105270 ,1,0,105810 ,1,0,106105 ,1,0,106525 ,1,0,107100 ,1,0,107645 ,1,0,109275 ,1,0,110255 ,1,0,110575 ,1,0,110905 ,1,0,111780 ,1,0,112735 ,1,0,113080 ,1,0,113405 ,1,0,113745 ,1,0,114090 ,1,0,114415 ,1,0,114980 ,1,0,116520 ,1,0,119145 ,1,0,122765 ,1,0,123085 ,1,0,123810 ,1,0,124445 ,1,0,124980 ,1,0,125850 ,1,0,126700 ,1,0,127135 ,1,0,127580 ,1,0,127765 ,1,0,128310 ,1,0,128635 ,1,0,130875 ,1,0,131205 ,1,0,131540 ,1,0,133035 ,1,0,133315 ,1,0,133930 ,1,0,134465 ,1,0,134910 ,1,0,135655 ,1,0,136080 ,1,0,136410 ,1,0,137315 ,1,0,137635 ,1,0,138155 ,1,0,139030 ,1,0,139565 ,1,0,140000 ,1,0,140335 ,1,0,142895 ,1,0,143635 ,1,0,143955 ,1,0,144380 ,1,0,144700 ,1,0,145035 ,1,0,149730 ,1,0,149965 ,1,0,150280 ,1,0,150505 ,1,0,150835 ,1,0,151485 ,1,0,153340 ,1,0,155145 ,1,0,155450 ,1,0,156115 ,1,0,157785 ,1,0,159910 ,1,0,160445 ,1,0,160765 ,1,0,162410 ,1,0,162960 ,1,0,163275 ,1,0,163695 ,1,0,165305 ,1,0,165625 ,1,0,166590 ,1,0,166920 ,1,0,171145 ,1,0,173010 ,1,0,173900 ,1,0,174675 ,1,0,174910 ,1,0,175245 ,1,0,175870 ,1,0,177855 ,1,0,178340 ,1,0,178760 ,1,0,179400 ,1,0,179710 ,1,0,180270 ,1,0,180775 ,1,0,181335 ,1,0,181770 ,1,0,182325 ,1,0,182660 ,1,0,182955 ,1,0,183180 ,1,0,183520 ,1,0,183725 ,1,0,183945 ,1,0,184155 ,1,0,184485 ,1,0,184940 ,1,0,185155 ,1,0,185470 ,1,0,185810 ,1,0,186380 ,1,0,187800 ,1,0,188005 ,1,0,188645 ,1,0,188990 ,1,0,189305 ,1,0,190055 ,1,0,190385 ,1,0,192260 ,1,0,193080 ,1,0,193625 ,1,0,194345 ,1,0,195130 ,1,0,195470 ,1,0,195810 ,1,0,196115 ,1,0,196445 ,1,0,196770 ,1,0,197545 ,1,0,197880 ,1,0,198185 ,1,0,198505 ,1,0,198845 ,1,0,199275 ,1,0,199795 ,1,0,200120 ,1,0,200450 ,1,0,201205 ,1,0,202415 ,1,0,202750 ,1,0,203200 ,1,0,203525 ,1,0,204185 ,1,0,204480 ,1,0,204820 ,1,0,205610 ,1,0,205925 ,1,0,206240 ,1,0,206560 ,1,0,207330 ,1,0,208275 ,1,0,208600 ,1,0,209240 ,1,0,210200 ,1,0,210955 ,1,0,211905 ,1,0,212250 ,1,0,212910 ,1,0,213565 ,1,0,213905 ,1,0,214250 ,1,0,215105 ,1,0,215430 ,1,0,215965 ,1,0,216495 ,1,0,216830 ,1,0,217150 ,1,0,218100 ,1,0,219090 ,1,0,219415 ,1,0,219930 ,1,0,220665 ,1,0,221955 ,1,0,222280 ,1,0,222495 ,1,0,222715 ,1,0,222930 ,1,0,223140 ,1,0,224160 ,1,0,224375 ,1,0,225010 ,1,0,225330 ,1,0,225750 ,1,0,227250 ,1,0,227775 ,1,0,228940 ,1,0,229650 ,1,0,230225 ,1,0,230540 ,1,0,230980 ,1,0,231215 ,1,0,231420 ,1,0,231705 ,1,0,232165 ,1,0,233760 ,1,0,233965 ,1,0,235220 ,1,0,235555 ,1,0,236080 ,1,0,236525 ,1,0,236715 ,1,0,237080 ,1,0,239385 ,1,0,240135 ,1,0,240430 ,1,0,240770 ,1,0,240975 ,1,0,241385 ,1,0,241700 ,1,0,242125 ,1,0,242435 ,1,0,243615 ,1,0,245335 ,1,0,245675 ,1,0,246310 ,1,0,246620 ,1,0,246940 ,1,0,247400 ,1,0,248245 ,1,0,249190 ,1,0,249610 ,1,0,250475 ,1,0,251705 ,1,0,252670 ,1,0,253325 ,1,0,254165 ,1,0,254610 ,1,0,255035 ,1,0,255235 ,1,0,255445 ,1,0,255965 ,1,0,256285 ,1,0,256595 ,1,0,256890 ,1,0,257225 ,1,0,257845 ,1,0,258400 ,1,0,259115 ,1,0,259860 ,1,0,260370 ,1,0,260670 ,1,0,261190 ,1,0,261495 ,1,0,261800 ,1,0,262230 ,1,0,262530 ,1,0,262930 ,1,0,263365 ,1,0,263675 ,1,0,264210 ,1,0,265370 ,1,0,266305 ,1,0,266855 ,1,0,267955 ,1,0,268345 ,1,0,268965 ,1,0,269990 ,1,0,270305 ,1,0,271030 ,1,0,271320 ,1,0,271860 ,1,0,273080 ,1,0,273420 ,1,0,273820 ,1,0,274450 ,1,0,274750 ,1,0,275060 ,1,0,275460 ,1,0,275790 ,1,0,276105 ,1,0,276590 ,1,0,277090 ,1,0,277475 ,1,0,278385 ,1,0,278885 ,1,0,279375 ,1,0,279890 ,1,0,280205 ,1,0,280735 ,1,0,281040 ,1,0,281345 ,1,0,281640 ,1,0,282050 ,1,0,282270 ,1,0,283000 ,1,0,283840 ,1,0,284565 ,1,0,284875 ,1,0,285735 ,1,0,286030 ,1,0,286355 ,1,0,286590 ,1,0,286890 ,1,0,287410 ,1,0,287620 ,1,0,288425 ,1,0,288950 ,1,0,289340 ,1,0,289870 ,1,0,290280 ,1,0,290800 ,1,0,291295 ,1,0,291780 ,1,0,292210 ,1,0,292505 ,1,0,292810 ,1,0,293050 ,1,0,293870 ,1,0,294250 ,1,0,294770 ,1,0,295165 ,1,0,295795 ,1,0,296105 ,1,0,296735 ,1,0,296950 ,1,0,297135 ,1,0,297460 ,1,0,297770 ,1,0,298280 ,1,0,298715 ,1,0,299555 ,1,0,299965 ,1,0,300515 ,1,0,300940 ,1,0,301160 ,1,0,302230 ,1,0,303320 ,1,0,303955 ,1,0,304150 ,1,0,307415 ,1,0,307730 ,1,0,308690 ,1,0,309220 ,1,0,309955 ,1,0,310475 ,1,0,310900 ,1,0,311350 ,1,0,311775 ,1,0,312260 ,1,0,313225 ,1,0,313855 ,1,0,314380 ,1,0,315215 ,1,0,316090 ,1,0,316740 ,1,0,317045 ,1,0,317460 ,1,0,317685 ,1,0,318550 ,1,0,319340 ,1,0,319775 ,1,0,320590 ,1,0,320915 ,1,0,321745 ,1,0,321960 ,1,0,322175 ,1,0,322385 ,1,0,322815 ,1,0,323110 ,1,0,323335 ,1,0,323750 ,1,0,324590 ,1,0,324985 ,1,0,325300 ,1,0,325605 ,1,0,326015 ,1,0,326720 ,1,0,327360 ,1,0,327775 ,1,0,328310 ,1,0,328725 ,1,0,329185 ,1,0,329410 ,1,0,330125 ,1,0,330565 ,1,0,331175 ,1,0,331515 ,1,0,331830 ,1,0,332155 ,1,0,335230 ,1,0,335450 ,1,0,336430 ,1,0,337240 ,1,0,337580 ,1,0,337895 ,1,0,338570 ,1,0,339230 ,1,0,340065 ,1,0,342840 ,1,0,344425 ,1,0,345305 ,1,0,346165 ,1,0,347035 ,1,0,347340 ,1,0,347680 ,1,0,348005 ,1,0,348220 ,1,0,348855 ,1,0,349290 ,1,0,349995 ,1,0,350645 ,1,0,351085 ,1,0,351425 ,1,0,351845 ,1,0,352485 ,1,0,353035 ,1,0,355050 ,1,0,355495 ,1,0,356045 ,1,0,356480 ,1,0,356715 ,1,0,357575 ,1,0,358015 ,1,0,358750 ,1,0,359170 ,1,0,359385 ,1,0,360250 ,1,0,360565 ,1,0,360760 ,1,0,361090 ,1,0,361595 ,1,0,362625 ,1,0,362970 ,1,0,363300 ,1,0,363635 ,1,0,364210 ,1,0,364855 ,1,0,365180 ,1,0,365420 ,1,0,365630 ,1,0,365945 ,1,0,366765 ,1,0,367095 ,1,0,367640 ,1,0,369435 ,1,0,369750 ,1,0,370155 ,1,0,370480 ,1,0,370880 ,1,0,371210 ,1,0,371740 ,1,0,372060 ,1,0,372375 ,1,0,373210 ,1,0,374040 ,1,0,375190 ,1,0,375805 ,1,0,376310 ,1,0,377350 ,1,0,377420 ,1,0,377600 ,1,0,377780 ,1,0,377965 ,1,0,378240 ,1,0,378430 ,1,0,378675 ,1,0,378965 ,1,0,379640 ,1,0,379945 ,1,0,380210 ,1,0,380725 ,1,0,381350 ,1,0,382985 ,1,0,383295 ,1,0,383545 ,1,0,383795 ,1,0,384495 ,1,0,393095 ,1,0,393385 ,1,0,393705 ,1,0,394055 ,1,0,394365 ,1,0,394695 ,1,0,395515 ,1,0,395750 ,1,0,396465 ,1,0,396575 ,1,0,396695 ,1,0,396820 ,1,0,396975 ,1,0,397495 ,1,0,397610 ,1,0,397735 ,1,0,397870 ,1,0,397990 ,1,0,398115 ,1,0,398295 ,1,0,398420 ,1,0,398555 ,1,0,398695 ,1,0,398810 ,1,0,399390 ,1,0,399640 ,1,0,401615 ,1,0,402130 ,1,0,402535 ,1,0,402800 ,1,0,403270 ,1,0,403995 ,1,0,404245 ,1,0,404420 ,1,0,404625 ,1,0,404895 ,1,0,405065 ,1,0,405280 ,1,0,405465 ,1,0,405530 ,1,0,405715 ,1,0,405995 ,1,0,406195 ,1,0,406395 ,1,0,406535 ,1,0,406775 ,1,0,406900 ,1,0,408180 ,1,0,408425 ,1,0,408765 ,1,0,408955 ,1,0,409095 ,1,0,409700 ,1,0,409920 ,1,0,410605 ,1,0,412810 ,1,0,413255 ,1,0,413505 ,1,0,413710 ,1,0,413940 ,1,0,414180 ,1,0,414315 ,1,0,414515 ,1,0,414760 ,1,0,414910 ,1,0,415115 ,1,0,415240 ,1,0,415805 ,1,0,415910 ,1,0,416435 ,1,0,416615 ,1,0,416790 ,1,0,416975 ,1,0,417145 ,1,0,417425 ,1,0,417540 ,1,0,417740 ,1,0,417840 ,1,0,418225 ,1,0,418470 ,1,0,418590 ,1,0,418820 ,1,0,418965 ,1,0,419210 ,1,0,419345 ,1,0,419685 ,1,0,419820 ,1,0,420115 ,1,0,420230 ,1,0,420370 ,1,0,420715 ,1,0,420850 ,1,0,421110 ,1,0,421240 ,1,0,421430 ,1,0,421815 ,1,0,421925 ,1,0,422120 ,1,0,422245 ,1,0,422375 ,1,0,422540 ,1,0,422675 ,1,0,422800 ,1,0,423045 ,1,0,423175 ,1,0,423365 ,1,0,423515 ,1,0,423770 ,1,0,423890 ,1,0,424035 ,1,0,424170 ,1,0,424420 ,1,0,424495 ,1,0,424615 ,1,0,424755 ,1,0,424890 ,1,0,425085 ,1,0,425475 ,1,0,425690 ,1,0,425910 ,1,0,426260 ,1,0,426525 ,1,0,426845 ,1,0,427220 ,1,0,427785 ,1,0,428225 ,1,0,428570 ,1,0,428945 ,1,0,429455 ,1,0,430270 ,1,0,430475 ,1,0,430660 ,1,0,430860 ,1,0,431175 ,1,0,431380 ,1,0,431675 ,1,0,431805 ,1,0,432005 ,1,0,432195 ,1,0,432405 ,1,0,432610 ,1,0,433000 ,1,0,433195 ,1,0,433385 ,1,0,433585 ,1,0,433790 ,1,0,433970 ,1,0,434175 ,1,0,434375 ,1,0,434870 ,1,0,435010 ,1,0,435150 ,1,0,435550 ,1,0,435740 ,1,0,435915 ,1,0,436070 ,1,0,436605 ,1,0,436745 ,1,0,437020 ,1,0,437135 ,1,0,437495 ,1,0,437625 ,1,0,437865 ,1,0,437990 ,1,0,438270 ,1,0,438400 ,1,0,438530 ,1,0,438645 ,1,0,438780 ,1,0,439010 ,1,0,439165 ,1,0,439280 ,1,0,439620 ,1,0,439770 ,1,0,439980 ,1,0,440490 ,1,0,440630 ,1,0,440800 ,1,0,441075 ,1,0,441190 ,1,0,441455 ,1,0,441585 ,1,0,441915 ,1,0,442100 ,1,0,442305 ,1,0,442495 ,1,0,442945 ,1,0,443070 ,1,0,443215 ,1,0,443340 ,1,0,443595 ,1,0,443740 ,1,0,443935 ,1,0,444085 ,1,0,444345 ,1,0,444545 ,1,0,444690 ,1,0,444885 ,1,0,445030 ,1,0,445225 ,1,0,445430 ,1,0,445560 ,1,0,445775 ,1,0,445890 ,1,0,446090 ,1,0,446290 ,1,0,446670 ,1,0,446790 ,1,0,446945 ,1,0,447075 ,1,0,447495 ,1,0,447605 ,1,0,448135 ,1,0,448710 ,1,0,448905 ,1,0,449030 ,1,0,449220 ,1,0,449345 ,1,0,449725 ,1,0,449855 ,1,0,451210 ,1,0,451340 ,1,0,451470 ,1,0,451615 ,1,0,451805 ,1,0,451930 ,1,0,452130 ,1,0,452310 ,1,0,452510 ,1,0,453110 ,1,0,453300 ,1,0,453505 ,1,0,453725 ,1,0,453975 ,1,0,454095 ,1,0,454380 ,1,0,454635 ,1,0,454900 ,1,0,455110 ,1,0,455430 ,1,0,455700 ,1,0,455825 ,1,0,455945 ,1,0,456205 ,1,0,456505 ,1,0,456755 ,1,0,457010 ,1,0,457345 ,1,0,457635 ,1,0,457890 ,1,0,458290 ,1,0,458485 ,1,0,458820 ,1,0,458970 ,1,0,459095 ,1,0,459355 ,1,0,460185 ,1,0,460310 ,1,0,460445 ,1,0,460580 ,1,0,460725 ,1,0,461050 ,1,0,461710 ,1,0,461915 ,1,0,462110 ,1,0,462435 ,1,0,462705 ,1,0,462910 ,1,0,464555 ,1,0,464740 ,1,0,483510 ,1,0,483710 ,1,0,485230 ,1,0,485390 ,1,0,485510 ,1,0,488425 ,1,0,489570 ,1,0,489910 ,1,0,490175 ,1,0,490400 ,1,0,490660 ,1,0,491225 ,1,0,491420 ,1,0,491810 ,1,0,492515 ,1,0,492705 ,1,0,492835 ,1,0,492945 ,1,0,493225 ,1,0,494335 ,1,0,495060 ,1,0,496615 ,1,0,496935 ,1,0,497180 ,1,0,497765 ,1,0,498525 ,1,0,500370 ,1,0,500630 ,1,0,501255 ,1,0,504795 ,1,0,507475 ,1,0,507800 ,1,0,509440 ,1,0,509745 ,1,0,510635 ,1,0,511125 ,1,0,511625 ,1,0,512545 ,1,0,512750 ,1,0,513235 ,1,0,513380 ,1,0,513630 ,1,0,513820 ,1,0,513970 ,1,0,514150 ,1,0,514350 ,1,0,514560 ,1,0,514745 ,1,0,514915 ,1,0,515155 ,1,0,515480 ,1,0,516480 ,1,0,517605 ,1,0,518085 ,1,0,520500 ,1,0,520920 ,1,0,521270 ,1,0,522490 ,1,0,522695 ,1,0,522900 ,1,0,523110 ,1,0,523360 ,1,0,523895 ,1,0,524115 ,1,0,525215 ,1,0,526560 ,1,0,526740 ,1,0,527065 ,1,0,527185 ,1,0,528580 ,1,0,529180 ,1,0,529360 ,1,0,529635 ,1,0,529900 ,1,0,530095 ,1,0,530310 ,1,0,530495 ,1,0,530920 ,1,0,531125 ,1,0,531315 ,1,0,531490 ,1,0,531965 ,1,0,532320 ,1,0,533250 ,1,0,538540 ,1,0,538855 ,1,0,539405 ,1,0,540075 ,1,0,540630 ,1,0,540825 ,1,0,540990 ,1,0,541725 ,1,0,542330 ,1,0,542530 ,1,0,544835 ,1,0,545100 ,1,0,545290 ,1,0,545840 ,1,0,546290 ,1,0,546620 ,1,0,548215 ,1,0,548535 ,1,0,548720 ,1,0,550735 ,1,0,551135 ,1,0,555055 ,1,0,555305 ,1,0,555565 ,1,0,555695 ,1,0,555825 ,1,0,555955 ,1,0,556160 ,1,0,556295 ,1,0,556480 ,1,0,556615 ,1,0,556815 ,1,0,557120 ,1,0,557885 ,1,0,558070 ,1,0,558265 ,1,0,558470 ,1,0,558675 ,1,0,558920 ,1,0,559130 ,1,0,559305 ,1,0,560680 ,1,0,561605 ,1,0,561745 ,1,0,562105 ,1,0,562360 ,1,0,562490 ,1,0,562640 ,1,0,562900 ,1,0,563030 ,1,0,563415 ,1,0,563765 ,1,0,563980 ,1,0,564160 ,1,0,564345 ,1,0,564555 ,1,0,564925 ,1,0,565250 ,1,0,565440 ,1,0,565650 ,1,0,565770 ,1,0,565980 ,1,0,566175 ,1,0,566305 ,1,0,566435 ,1,0,566685 ,1,0,566795 ,1,0,567195 ,1,0,567375 ,1,0,567635 ,1,0,567895 ,1,0,568080 ,1,0,568335 ,1,0,568615 ,1,0,569500 ,1,0,570185 ,1,0,570300 ,1,0,570435 ,1,0,570570 ,1,0,570780 ,1,0,571015 ,1,0,571200 ,1,0,571420 ,1,0,571680 ,1,0,571830 ,1,0,571940 ,1,0,572410 ,1,0,573160 ,1,0,573410 ,1,0,573660 ,1,0,573940 ,1,0,574145 ,1,0,574335 ,1,0,574470 ,1,0,574720 ,1,0,574845 ,1,0,575040 ,1,0,575375 ,1,0,575625 ,1,0,575880 ,1,0,576085 ,1,0,576395 ,1,0,576700 ,1,0,576900 ,1,0,577070 ,1,0,577275 ,1,0,577795 ,1,0,578980 ,1,0,579255 ,1,0,579380 ,1,0,579520 ,1,0,579655 ,1,0,579790 ,1,0,579995 ,1,0,580125 ,1,0,580320 ,1,0,580440 ,1,0,580960 ,1,0,581295 ,1,0,581485 ,1,0,581625 ,1,0,581815 ,1,0,581950 ,1,0,582090 ,1,0,582435 ,1,0,582635 ,1,0,582785 ,1,0,583010 ,1,0,583130 ,1,0,583270 ,1,0,583415 ,1,0,583590 ,1,0,583725 ,1,0,584930 ,1,0,585120 ,1,0,585385 ,1,0,585560 ,1,0,585755 ,1,0,586015 ,1,0,586220 ,1,0,586430 ,1,0,586895 ,1,0,587080 ,1,0,587365 ,1,0,588060 ,1,0,589535 ,1,0,589760 ,1,0,590045 ,1,0,590365 ,1,0,590550 ,1,0,590810 ,1,0,591070 ,1,0,591340 ,1,0,591590 ,1,0,591855 ,1,0,592110 ,1,0,592295 ,1,0,592510 ,1,0,592680 ,1,0,592930 ,1,0,593905 ,1,0,594120 ,1,0,594395 ,1,0,594520 ,1,0,594710 ,1,0,594905 ,1,0,595095 ,1,0,595275 ,1,0,595550 ,1,0,596385 ,1,0,596710 ,1,0,597565 ,1,0,597800 ,1,0,599085 ,1,0,599275 ,1,0,599535 ,1,0,600420 ,1,0,600700 ,1,0,600895 ,1,0,601575 ,1,0,601985 ,1,0,602200 ,1,0,602505 ,1,0,602770 ,1,0,603060 ,1,0,603260 ,1,0,603555 ,1,0,603830 ,1,0,604065 ,1,0,604400 ,1,0,605025 ,1,0,605705 ,1,0,605905 ,1,0,606065 ,1,0,606880 ,1,0,608725 ,1,0,609060 ,1,0,609890 ,1,0,610210 ,1,0,610335 ,1,0,610515 ,1,0,610735 ,1,0,610960 ,1,0,611285 ,1,0,611925 ,1,0,612045 ,1,0,612670 ,1,0,612855 ,1,0,613685 ,1,0,613995 ,1,0,614235 ,1,0,614425 ,1,0,614620 ,1,0,614740 ,1,0,614930 ,1,0,615205 ,1,0,615380 ,1,0,615495 ,1,0,615635 ,1,0,615745 ,1,0,616020 ,1,0,616260 ,1,0,616390 ,1,0,616710 ,1,0,617465 ,1,0,617645 ,1,0,618090 ,1,0,618325 ,1,0,618525 ,1,0,619020 ,1,0,619260 ,1,0,619540 ,1,0,620035 ,1,0,620200 ,1,0,620375 ,1,0,620550 ,1,0,620730 ,1,0,621075 ,1,0,621860 ,1,0,622030 ,1,0,622500 ,1,0,622815 ,1,0,623175 ,1,0,623355 ,1,0,623545 ,1,0,623865 ,1,0,624050 ,1,0,624335 ,1,0,624635 ,1,0,624935 ,1,0,625060 ,1,0,625260 ,1,0,625460 ,1,0,625775 ,1,0,626040 ,1,0,626740 ,1,0,627270 ,1,0,627730 ,1,0,628160 ,1,0,629595 ,1,0,629860 ,1,0,630155 ,1,0,630415 ,1,0,630585 ,1,0,630810 ,1,0,631000 ,1,0,631200 ,1,0,631465 ,1,0,631640 ,1,0,631790 ,1,0,631920 ,1,0,632195 ,1,0,632905 ,1,0,633070 ,1,0,633260 ,1,0,633460 ,1,0,633640 ,1,0,633825 ,1,0,634065 ,1,0,634340 ,1,0,634630 ,1,0,634795 ,1,0,635015 ,1,0,635185 ,1,0,635375 ,1,0,635565 ,1,0,635750 ,1,0,635920 ,1,0,636410 ,1,0,636655 ,1,0,636900 ,1,0,637190 ,1,0,637680 ,1,0,637880 ,1,0,638105 ,1,0,638310 ,1,0,638545 ,1,0,638720 ,1,0,638955 ,1,0,639275 ,1,0,639675 ,1,0,639795 ,1,0,639925 ,1,0,640130 ,1,0,640380 ,1,0,640670 ,1,0,640915 ,1,0,641230 ,1,0,641710 ,1,0,641830 ,1,0,642040 ,1,0,642530 ,1,0,642720 ,1,0,643105 ,1,0,643720 ,1,0,643980 ,1,0,644245 ,1,0,644660 ,1,0,644880 ,1,0,645250 ,1,0,645420 ,1,0,646050 ,1,0,646385 ,1,0,646580 ,1,0,646765 ,1,0,647130 ,1,0,647320 ,1,0,647505 ,1,0,647695 ,1,0,647850 ,1,0,647965 ,1,0,648160 ,1,0,648355 ,1,0,648670 ,1,0,648820 ,1,0,649455 ,1,0,649815 ,1,0,651045 ,1,0,651265 ,1,0,651475 ,1,0,651955 ,1,0,652455 ,1,0,652660 ,1,0,652890 ,1,0,653135 ,1,0,653450 ,1,0,653755 ,1,0,654045 ,1,0,654360 ,1,0,654575 ,1,0,654745 ,1,0,654960 ,1,0,655160 ,1,0,655375 ,1,0,656230 ,1,0,656485 ,1,0,656790 ,1,0,657640 ,1,0,658270 ,1,0,658450 ,1,0,658785 ,1,0,660095 ,1,0,660340 ,1,0,660515 ,1,0,660750 ,1,0,661070 ,1,0,661410 ,1,0,661600 ,1,0,661915 ,1,0,662120 ,1,0,662635 ,1,0,662880 ,1,0,663095 ,1,0,663345 ,1,0,663530 ,1,0,663890 ,1,0,664085 ,1,0,664265 ,1,0,664760 ,1,0,665045 ,1,0,665575 ,1,0,665960 ,1,0,666325 ,1,0,666685 ,1,0,666875 ,1,0,667335 ,1,0,667835 ,1,0,668260 ,1,0,668605 ,1,0,668975 ,1,0,669140 ,1,0,669580 ,1,0,669840 ,1,0,670300 ,1,0,670830 ,1,0,671310 ,1,0,671780 ,1,0,672245 ,1,0,672780 ,1,0,673315 ,1,0,673435 ,1,0,673890 ,1,0,674285 ,1,0,674530 ,1,0,674885 ,1,0,290 ,1,0,640 ,1,0,965 ,1,0,1175 ,1,0,1510 ,1,0,1825 ,1,0,2155 ,1,0,3095 ,1,0,3425 ,1,0,3955 ,1,0,4930 ,1,0,5575 ,1,0,6180 ,1,0,6495 ,1,0,6840 ,1,0,7500 ,1,0,8165 ,1,0,9115 ,1,0,9530 ,1,0,10265 ,1,0,10570 ,1,0,11000 ,1,0,11335 ,1,0,11760 ,1,0,12110 ,1,0,12825 ,1,0,13160 ,1,0,13495 ,1,0,14030 ,1,0,14450 ,1,0,14750 ,1,0,15415 ,1,0,17865 ,1,0,18300 ,1,0,19160 ,1,0,19595 ,1,0,19930 ,1,0,20135 ,1,0,20655 ,1,0,20970 ,1,0,21305 ,1,0,21750 ,1,0,22055 ,1,0,22385 ,1,0,22710 ,1,0,23050 ,1,0,23620 ,1,0,24265 ,1,0,24620 ,1,0,25200 ,1,0,25515 ,1,0,26055 ,1,0,26595 ,1,0,27020 ,1,0,27325 ,1,0,27670 ,1,0,27990 ,1,0,28440 ,1,0,28770 ,1,0,29085 ,1,0,29660 ,1,0,30205 ,1,0,30620 ,1,0,30935 ,1,0,31485 ,1,0,31900 ,1,0,33045 ,1,0,33785 ,1,0,35080 ,1,0,35530 ,1,0,35960 ,1,0,36275 ,1,0,36815 ,1,0,37450 ,1,0,37850 ,1,0,38270 ,1,0,38910 ,1,0,39375 ,1,0,39805 ,1,0,40585 ,1,0,41100 ,1,0,41440 ,1,0,42060 ,1,0,43030 ,1,0,43340 ,1,0,44145 ,1,0,44455 ,1,0,44895 ,1,0,45425 ,1,0,46035 ,1,0,46670 ,1,0,47010 ,1,0,47820 ,1,0,48260 ,1,0,48560 ,1,0,49705 ,1,0,50210 ,1,0,50645 ,1,0,51175 ,1,0,51730 ,1,0,52050 ,1,0,52925 ,1,0,53230 ,1,0,53665 ,1,0,54010 ,1,0,54460 ,1,0,54760 ,1,0,54970 ,1,0,55290 ,1,0,55620 ,1,0,55940 ,1,0,56245 ,1,0,56560 ,1,0,56900 ,1,0,57225 ,1,0,57565 ,1,0,57900 ,1,0,58225 ,1,0,58525 ,1,0,58845 ,1,0,59150 ,1,0,59460 ,1,0,60000 ,1,0,60735 ,1,0,60845 ,1,0,61160 ,1,0,61485 ,1,0,61780 ,1,0,62110 ,1,0,62440 ,1,0,62745 ,1,0,63065 ,1,0,63395 ,1,0,63720 ,1,0,64030 ,1,0,64365 ,1,0,64695 ,1,0,65020 ,1,0,65340 ,1,0,65660 ,1,0,65950 ,1,0,66255 ,1,0,66570 ,1,0,67400 ,1,0,73285 ,1,0,77935 ,1,0,78700 ,1,0,82830 ,1,0,84020 ,1,0,84335 ,1,0,84760 ,1,0,85065 ,1,0,85635 ,1,0,85975 ,1,0,86275 ,1,0,86905 ,1,0,87245 ,1,0,87560 ,1,0,87895 ,1,0,88940 ,1,0,89780 ,1,0,91005 ,1,0,92040 ,1,0,93410 ,1,0,94170 ,1,0,94685 ,1,0,95960 ,1,0,96700 ,1,0,97145 ,1,0,97455 ,1,0,98455 ,1,0,98775 ,1,0,99745 ,1,0,100230 ,1,0,101760 ,1,0,102225 ,1,0,102540 ,1,0,102965 ,1,0,103295 ,1,0,103595 ,1,0,104175 ,1,0,104600 ,1,0,104925 ,1,0,105275 ,1,0,106235 ,1,0,106760 ,1,0,109800 ,1,0,110040 ,1,0,110805 ,1,0,111890 ,1,0,112205 ,1,0,112530 ,1,0,112835 ,1,0,113185 ,1,0,113505 ,1,0,114215 ,1,0,114760 ,1,0,115210 ,1,0,115525 ,1,0,115955 ,1,0,116285 ,1,0,116620 ,1,0,116945 ,1,0,117240 ,1,0,117560 ,1,0,117865 ,1,0,118200 ,1,0,118835 ,1,0,119675 ,1,0,120420 ,1,0,120810 ,1,0,121245 ,1,0,122010 ,1,0,123815 ,1,0,124105 ,1,0,124450 ,1,0,124760 ,1,0,125295 ,1,0,125855 ,1,0,126705 ,1,0,127015 ,1,0,127770 ,1,0,128100 ,1,0,128410 ,1,0,128935 ,1,0,129465 ,1,0,129690 ,1,0,130535 ,1,0,131545 ,1,0,132050 ,1,0,132385 ,1,0,134245 ,1,0,135105 ,1,0,146600 ,1,0,147880 ,1,0,148450 ,1,0,148870 ,1,0,149185 ,1,0,152025 ,1,0,152350 ,1,0,153345 ,1,0,155575 ,1,0,155890 ,1,0,156235 ,1,0,159695 ,1,0,160015 ,1,0,160340 ,1,0,160660 ,1,0,161005 ,1,0,161215 ,1,0,161740 ,1,0,162635 ,1,0,168255 ,1,0,168700 ,1,0,169165 ,1,0,171255 ,1,0,172015 ,1,0,173335 ,1,0,173785 ,1,0,174335 ,1,0,174800 ,1,0,176645 ,1,0,176980 ,1,0,178430 ,1,0,178765 ,1,0,179405 ,1,0,180900 ,1,0,181225 ,1,0,183285 ,1,0,183615 ,1,0,184160 ,1,0,185935 ,1,0,186280 ,1,0,186820 ,1,0,187155 ,1,0,189105 ,1,0,189510 ,1,0,189830 ,1,0,190160 ,1,0,190490 ,1,0,190935 ,1,0,191815 ,1,0,192150 ,1,0,192460 ,1,0,193210 ,1,0,193940 ,1,0,194250 ,1,0,195025 ,1,0,196000 ,1,0,196555 ,1,0,197330 ,1,0,197780 ,1,0,198510 ,1,0,198955 ,1,0,199280 ,1,0,200760 ,1,0,201210 ,1,0,201870 ,1,0,202980 ,1,0,208060 ,1,0,208400 ,1,0,208815 ,1,0,209140 ,1,0,212790 ,1,0,214020 ,1,0,215010 ,1,0,215545 ,1,0,216065 ,1,0,216385 ,1,0,216940 ,1,0,217260 ,1,0,217685 ,1,0,218005 ,1,0,218325 ,1,0,219305 ,1,0,220245 ,1,0,220670 ,1,0,221105 ,1,0,221325 ,1,0,221960 ,1,0,222935 ,1,0,223145 ,1,0,223605 ,1,0,223945 ,1,0,224380 ,1,0,224695 ,1,0,225015 ,1,0,225325 ,1,0,225635 ,1,0,226075 ,1,0,227125 ,1,0,228325 ,1,0,229145 ,1,0,229465 ,1,0,229780 ,1,0,230105 ,1,0,230440 ,1,0,230870 ,1,0,231935 ,1,0,236085 ,1,0,236720 ,1,0,237400 ,1,0,238445 ,1,0,238770 ,1,0,239100 ,1,0,239615 ,1,0,239830 ,1,0,240340 ,1,0,241705 ,1,0,242225 ,1,0,242440 ,1,0,243620 ,1,0,244265 ,1,0,244790 ,1,0,245445 ,1,0,245905 ,1,0,246210 ,1,0,247825 ,1,0,248130 ,1,0,248785 ,1,0,249095 ,1,0,249405 ,1,0,249720 ,1,0,250480 ,1,0,250915 ,1,0,251250 ,1,0,251590 ,1,0,252050 ,1,0,252365 ,1,0,252675 ,1,0,253000 ,1,0,253330 ,1,0,253545 ,1,0,253945 ,1,0,254260 ,1,0,254735 ,1,0,255140 ,1,0,256495 ,1,0,256895 ,1,0,257425 ,1,0,257955 ,1,0,259340 ,1,0,259550 ,1,0,261305 ,1,0,261805 ,1,0,262235 ,1,0,263035 ,1,0,263370 ,1,0,264815 ,1,0,265160 ,1,0,265375 ,1,0,265985 ,1,0,266310 ,1,0,266540 ,1,0,269995 ,1,0,270310 ,1,0,271130 ,1,0,271665 ,1,0,272365 ,1,0,272780 ,1,0,273085 ,1,0,273425 ,1,0,274025 ,1,0,274335 ,1,0,275250 ,1,0,275680 ,1,0,276110 ,1,0,276985 ,1,0,277480 ,1,0,278085 ,1,0,278670 ,1,0,279270 ,1,0,279680 ,1,0,279990 ,1,0,280525 ,1,0,280825 ,1,0,281135 ,1,0,281825 ,1,0,282395 ,1,0,282690 ,1,0,283100 ,1,0,283530 ,1,0,283945 ,1,0,291600 ,1,0,292110 ,1,0,292610 ,1,0,292815 ,1,0,293160 ,1,0,293565 ,1,0,294140 ,1,0,294555 ,1,0,295280 ,1,0,296005 ,1,0,296215 ,1,0,296625 ,1,0,297140 ,1,0,297465 ,1,0,298175 ,1,0,298485 ,1,0,299035 ,1,0,299340 ,1,0,300520 ,1,0,300825 ,1,0,301585 ,1,0,301905 ,1,0,302450 ,1,0,302995 ,1,0,303415 ,1,0,303850 ,1,0,304460 ,1,0,304915 ,1,0,305235 ,1,0,305860 ,1,0,306295 ,1,0,306905 ,1,0,307215 ,1,0,307620 ,1,0,309115 ,1,0,309630 ,1,0,310060 ,1,0,310370 ,1,0,310785 ,1,0,311215 ,1,0,311665 ,1,0,312130 ,1,0,312575 ,1,0,314075 ,1,0,316310 ,1,0,317790 ,1,0,319240 ,1,0,319780 ,1,0,320195 ,1,0,323115 ,1,0,323445 ,1,0,323860 ,1,0,324175 ,1,0,324485 ,1,0,324990 ,1,0,326115 ,1,0,326425 ,1,0,326725 ,1,0,327560 ,1,0,327980 ,1,0,328315 ,1,0,328730 ,1,0,329075 ,1,0,329415 ,1,0,330330 ,1,0,330980 ,1,0,332160 ,1,0,333495 ,1,0,333830 ,1,0,334155 ,1,0,334480 ,1,0,334800 ,1,0,335345 ,1,0,335900 ,1,0,337685 ,1,0,338110 ,1,0,338445 ,1,0,339540 ,1,0,339960 ,1,0,340395 ,1,0,340725 ,1,0,341145 ,1,0,341570 ,1,0,341915 ,1,0,342205 ,1,0,342635 ,1,0,343050 ,1,0,343475 ,1,0,343880 ,1,0,344320 ,1,0,345190 ,1,0,347240 ,1,0,348950 ,1,0,350190 ,1,0,351430 ,1,0,352380 ,1,0,353040 ,1,0,353360 ,1,0,353780 ,1,0,354100 ,1,0,354440 ,1,0,354840 ,1,0,355170 ,1,0,355615 ,1,0,355920 ,1,0,356360 ,1,0,356720 ,1,0,357025 ,1,0,357355 ,1,0,357810 ,1,0,358125 ,1,0,358645 ,1,0,360655 ,1,0,361900 ,1,0,362975 ,1,0,363875 ,1,0,364640 ,1,0,364970 ,1,0,365300 ,1,0,365635 ,1,0,365950 ,1,0,366360 ,1,0,368365 ,1,0,369020 ,1,0,371535 ,1,0,372160 ,1,0,372585 ,1,0,372910 ,1,0,376005 ,1,0,376185 ,1,0,376375 ,1,0,376605 ,1,0,376790 ,1,0,377040 ,1,0,377215 ,1,0,377405 ,1,0,378595 ,1,0,378970 ,1,0,379465 ,1,0,379810 ,1,0,380020 ,1,0,380215 ,1,0,380540 ,1,0,380730 ,1,0,381210 ,1,0,381695 ,1,0,381880 ,1,0,383720 ,1,0,383990 ,1,0,384445 ,1,0,384930 ,1,0,385590 ,1,0,385775 ,1,0,386020 ,1,0,386795 ,1,0,386980 ,1,0,387205 ,1,0,387515 ,1,0,387835 ,1,0,388075 ,1,0,389840 ,1,0,390030 ,1,0,390400 ,1,0,390705 ,1,0,392035 ,1,0,394370 ,1,0,395065 ,1,0,395330 ,1,0,395520 ,1,0,395870 ,1,0,396105 ,1,0,396405 ,1,0,396635 ,1,0,396905 ,1,0,397160 ,1,0,397365 ,1,0,398050 ,1,0,398230 ,1,0,398425 ,1,0,398630 ,1,0,398815 ,1,0,399020 ,1,0,399200 ,1,0,399395 ,1,0,399705 ,1,0,400050 ,1,0,401165 ,1,0,401365 ,1,0,402135 ,1,0,402945 ,1,0,403455 ,1,0,403725 ,1,0,404160 ,1,0,404900 ,1,0,405070 ,1,0,405350 ,1,0,405535 ,1,0,405795 ,1,0,406320 ,1,0,406605 ,1,0,406840 ,1,0,407980 ,1,0,408770 ,1,0,408960 ,1,0,409155 ,1,0,409410 ,1,0,409625 ,1,0,409805 ,1,0,410145 ,1,0,410400 ,1,0,410610 ,1,0,410800 ,1,0,410985 ,1,0,411115 ,1,0,411400 ,1,0,411595 ,1,0,412145 ,1,0,412390 ,1,0,413770 ,1,0,414390 ,1,0,414650 ,1,0,414845 ,1,0,415050 ,1,0,415610 ,1,0,415810 ,1,0,415980 ,1,0,416175 ,1,0,416375 ,1,0,417025 ,1,0,417255 ,1,0,417975 ,1,0,418230 ,1,0,418905 ,1,0,419135 ,1,0,419875 ,1,0,420160 ,1,0,420375 ,1,0,420580 ,1,0,420785 ,1,0,421030 ,1,0,421490 ,1,0,421760 ,1,0,422185 ,1,0,422440 ,1,0,422925 ,1,0,423170 ,1,0,423625 ,1,0,423895 ,1,0,424490 ,1,0,424695 ,1,0,424880 ,1,0,425335 ,1,0,425540 ,1,0,426170 ,1,0,426530 ,1,0,426905 ,1,0,427395 ,1,0,427765 ,1,0,428160 ,1,0,428685 ,1,0,429635 ,1,0,430140 ,1,0,430410 ,1,0,430865 ,1,0,431115 ,1,0,431565 ,1,0,431810 ,1,0,432260 ,1,0,432540 ,1,0,433005 ,1,0,433270 ,1,0,433590 ,1,0,434100 ,1,0,434545 ,1,0,434875 ,1,0,435155 ,1,0,435620 ,1,0,436000 ,1,0,436290 ,1,0,436610 ,1,0,437140 ,1,0,437345 ,1,0,437555 ,1,0,437795 ,1,0,439695 ,1,0,439985 ,1,0,440190 ,1,0,440365 ,1,0,440755 ,1,0,440925 ,1,0,441270 ,1,0,441655 ,1,0,441850 ,1,0,442105 ,1,0,442365 ,1,0,442620 ,1,0,442820 ,1,0,443075 ,1,0,443485 ,1,0,443800 ,1,0,443940 ,1,0,444225 ,1,0,444420 ,1,0,444615 ,1,0,444800 ,1,0,445105 ,1,0,445230 ,1,0,445435 ,1,0,445565 ,1,0,445835 ,1,0,449730 ,1,0,452570 ,1,0,452780 ,1,0,453250 ,1,0,453420 ,1,0,453845 ,1,0,454965 ,1,0,455185 ,1,0,455950 ,1,0,456210 ,1,0,456445 ,1,0,456690 ,1,0,457150 ,1,0,457685 ,1,0,457895 ,1,0,458095 ,1,0,458350 ,1,0,458565 ,1,0,459420 ,1,0,459595 ,1,0,459760 ,1,0,459985 ,1,0,460255 ,1,0,461055 ,1,0,462845 ,1,0,463090 ,1,0,463685 ,1,0,463875 ,1,0,464075 ,1,0,465525 ,1,0,465740 ,1,0,466345 ,1,0,466670 ,1,0,466845 ,1,0,467140 ,1,0,467320 ,1,0,468810 ,1,0,468975 ,1,0,469195 ,1,0,469365 ,1,0,470565 ,1,0,470915 ,1,0,471900 ,1,0,472315 ,1,0,473375 ,1,0,473540 ,1,0,474595 ,1,0,475065 ,1,0,475595 ,1,0,475735 ,1,0,476005 ,1,0,476170 ,1,0,476375 ,1,0,476555 ,1,0,476705 ,1,0,476920 ,1,0,477120 ,1,0,477320 ,1,0,477670 ,1,0,477980 ,1,0,478490 ,1,0,478815 ,1,0,479020 ,1,0,479250 ,1,0,480095 ,1,0,480975 ,1,0,481165 ,1,0,481675 ,1,0,481875 ,1,0,482145 ,1,0,482380 ,1,0,482655 ,1,0,483130 ,1,0,483315 ,1,0,483825 ,1,0,484005 ,1,0,484180 ,1,0,484725 ,1,0,484910 ,1,0,485170 ,1,0,485595 ,1,0,485915 ,1,0,486275 ,1,0,486475 ,1,0,486725 ,1,0,487555 ,1,0,487900 ,1,0,488230 ,1,0,488610 ,1,0,489190 ,1,0,489450 ,1,0,489640 ,1,0,489915 ,1,0,490260 ,1,0,490465 ,1,0,490665 ,1,0,491065 ,1,0,491490 ,1,0,492085 ,1,0,492445 ,1,0,492640 ,1,0,492840 ,1,0,493065 ,1,0,493280 ,1,0,493535 ,1,0,493750 ,1,0,494035 ,1,0,494220 ,1,0,494480 ,1,0,494655 ,1,0,494920 ,1,0,495125 ,1,0,495400 ,1,0,495920 ,1,0,496120 ,1,0,496305 ,1,0,496785 ,1,0,497370 ,1,0,497575 ,1,0,497770 ,1,0,498180 ,1,0,498585 ,1,0,498805 ,1,0,499000 ,1,0,499190 ,1,0,499380 ,1,0,499845 ,1,0,500035 ,1,0,500295 ,1,0,500615 ,1,0,500825 ,1,0,501185 ,1,0,501480 ,1,0,501875 ,1,0,502190 ,1,0,502410 ,1,0,502895 ,1,0,503260 ,1,0,503525 ,1,0,503860 ,1,0,504135 ,1,0,504320 ,1,0,504640 ,1,0,504990 ,1,0,505815 ,1,0,506245 ,1,0,506560 ,1,0,506890 ,1,0,507090 ,1,0,507370 ,1,0,508050 ,1,0,508345 ,1,0,508475 ,1,0,509610 ,1,0,510005 ,1,0,510345 ,1,0,511270 ,1,0,511465 ,1,0,512065 ,1,0,512280 ,1,0,512550 ,1,0,512875 ,1,0,513095 ,1,0,513295 ,1,0,513505 ,1,0,513890 ,1,0,514085 ,1,0,514355 ,1,0,514800 ,1,0,515410 ,1,0,515690 ,1,0,515935 ,1,0,516155 ,1,0,516600 ,1,0,517110 ,1,0,517305 ,1,0,517485 ,1,0,517685 ,1,0,518210 ,1,0,518645 ,1,0,518990 ,1,0,519220 ,1,0,519715 ,1,0,519970 ,1,0,520565 ,1,0,520755 ,1,0,521035 ,1,0,521595 ,1,0,522010 ,1,0,522275 ,1,0,522980 ,1,0,523295 ,1,0,523665 ,1,0,523835 ,1,0,524110 ,1,0,524460 ,1,0,525060 ,1,0,525510 ,1,0,525705 ,1,0,526565 ,1,0,526745 ,1,0,527330 ,1,0,527540 ,1,0,529115 ,1,0,529745 ,1,0,530175 ,1,0,530370 ,1,0,530500 ,1,0,530790 ,1,0,531070 ,1,0,531380 ,1,0,531580 ,1,0,532130 ,1,0,532505 ,1,0,532730 ,1,0,532930 ,1,0,533115 ,1,0,533320 ,1,0,533595 ,1,0,533795 ,1,0,534085 ,1,0,534535 ,1,0,535110 ,1,0,535280 ,1,0,535485 ,1,0,535740 ,1,0,536125 ,1,0,536320 ,1,0,536505 ,1,0,536760 ,1,0,536995 ,1,0,537225 ,1,0,537405 ,1,0,538130 ,1,0,539920 ,1,0,540365 ,1,0,540560 ,1,0,540690 ,1,0,540830 ,1,0,545415 ,1,0,546015 ,1,0,546230 ,1,0,547525 ,1,0,547660 ,1,0,547915 ,1,0,548220 ,1,0,548595 ,1,0,549470 ,1,0,549660 ,1,0,549865 ,1,0,550115 ,1,0,550420 ,1,0,551005 ,1,0,551990 ,1,0,552445 ,1,0,553110 ,1,0,553395 ,1,0,553600 ,1,0,555570 ,1,0,555830 ,1,0,556360 ,1,0,556700 ,1,0,556985 ,1,0,557190 ,1,0,557400 ,1,0,557595 ,1,0,557815 ,1,0,558005 ,1,0,558335 ,1,0,559565 ,1,0,559825 ,1,0,560050 ,1,0,560245 ,1,0,560745 ,1,0,561890 ,1,0,562015 ,1,0,562165 ,1,0,562280 ,1,0,562495 ,1,0,562835 ,1,0,563285 ,1,0,563480 ,1,0,563705 ,1,0,563830 ,1,0,564105 ,1,0,564220 ,1,0,564405 ,1,0,564800 ,1,0,565775 ,1,0,565905 ,1,0,566900 ,1,0,567575 ,1,0,567900 ,1,0,572880 ,1,0,573300 ,1,0,573945 ,1,0,574525 ,1,0,574725 ,1,0,574965 ,1,0,575250 ,1,0,575500 ,1,0,575750 ,1,0,576015 ,1,0,576220 ,1,0,576580 ,1,0,577390 ,1,0,577580 ,1,0,577925 ,1,0,578105 ,1,0,578655 ,1,0,578915 ,1,0,579660 ,1,0,580000 ,1,0,580325 ,1,0,580630 ,1,0,580965 ,1,0,581145 ,1,0,581795 ,1,0,582095 ,1,0,582440 ,1,0,582640 ,1,0,583135 ,1,0,583355 ,1,0,583595 ,1,0,584000 ,1,0,584195 ,1,0,584525 ,1,0,584845 ,1,0,585225 ,1,0,585445 ,1,0,585695 ,1,0,585880 ,1,0,586155 ,1,0,586365 ,1,0,586825 ,1,0,586970 ,1,0,587235 ,1,0,587430 ,1,0,588640 ,1,0,588935 ,1,0,589190 ,1,0,589765 ,1,0,590035 ,1,0,590305 ,1,0,590685 ,1,0,591075 ,1,0,591860 ,1,0,592180 ,1,0,592500 ,1,0,592800 ,1,0,593425 ,1,0,593765 ,1,0,594040 ,1,0,594250 ,1,0,596855 ,1,0,597000 ,1,0,597310 ,1,0,598365 ,1,0,598685 ,1,0,598880 ,1,0,599010 ,1,0,600105 ,1,0,600425 ,1,0,600630 ,1,0,600830 ,1,0,601085 ,1,0,601270 ,1,0,601435 ,1,0,601855 ,1,0,602125 ,1,0,602510 ,1,0,602850 ,1,0,603475 ,1,0,605840 ,1,0,606305 ,1,0,606950 ,1,0,607190 ,1,0,607545 ,1,0,608090 ,1,0,608250 ,1,0,608450 ,1,0,608665 ,1,0,608805 ,1,0,610405 ,1,0,610665 ,1,0,610875 ,1,0,611085 ,1,0,611270 ,1,0,611480 ,1,0,611660 ,1,0,612545 ,1,0,612785 ,1,0,612980 ,1,0,613165 ,1,0,613365 ,1,0,613690 ,1,0,614240 ,1,0,615250 ,1,0,615965 ,1,0,617470 ,1,0,617650 ,1,0,617975 ,1,0,618205 ,1,0,618395 ,1,0,618530 ,1,0,618795 ,1,0,619065 ,1,0,619975 ,1,0,620135 ,1,0,620380 ,1,0,620670 ,1,0,621150 ,1,0,621515 ,1,0,621865 ,1,0,622230 ,1,0,622575 ,1,0,622805 ,1,0,624505 ,1,0,625065 ,1,0,625330 ,1,0,627810 ,1,0,631205 ,1,0,631470 ,1,0,631645 ,1,0,631985 ,1,0,632260 ,1,0,633330 ,1,0,634280 ,1,0,634455 ,1,0,634635 ,1,0,634870 ,1,0,635065 ,1,0,635315 ,1,0,635490 ,1,0,635695 ,1,0,635875 ,1,0,636030 ,1,0,636215 ,1,0,637995 ,1,0,638245 ,1,0,638550 ,1,0,638645 ,1,0,638835 ,1,0,639545 ,1,0,640180 ,1,0,640385 ,1,0,640920 ,1,0,641105 ,1,0,641835 ,1,0,642045 ,1,0,642240 ,1,0,643515 ,1,0,643725 ,1,0,644100 ,1,0,644955 ,1,0,645085 ,1,0,645425 ,1,0,645740 ,1,0,646180 ,1,0,646575 ,1,0,646820 ,1,0,647010 ,1,0,647205 ,1,0,647385 ,1,0,647635 ,1,0,648165 ,1,0,648420 ,1,0,648970 ,1,0,649215 ,1,0,649440 ,1,0,649705 ,1,0,650240 ,1,0,650460 ,1,0,651960 ,1,0,652150 ,1,0,652335 ,1,0,652785 ,1,0,653515 ,1,0,653970 ,1,0,654115 ,1,0,654510 ,1,0,654915 ,1,0,655280 ,1,0,657440 ,1,0,657645 ,1,0,658315 ,1,0,658520 ,1,0,658730 ,1,0,658910 ,1,0,659020 ,1,0,659275 ,1,0,660230 ,1,0,660460 ,1,0,660690 ,1,0,660895 ,1,0,661150 ,1,0,661340 ,1,0,661535 ,1,0,661795 ,1,0,662125 ,1,0,663165 ,1,0,663410 ,1,0,663655 ,1,0,663895 ,1,0,664205 ,1,0,664405 ,1,0,664575 ,1,0,664765 ,1,0,664935 ,1,0,665100 ,1,0,665330 ,1,0,666195 ,1,0,666400 ,1,0,666635 ,1,0,667130 ,1,0,667395 ,1,0,668610 ,1,0,668785 ,1,0,669845 ,1,0,670120 ,1,0,670365 ,1,0,670710 ,1,0,671130 ,1,0,671900 ,1,0,672085 ,1,0,672320 ,1,0,672785 ,1,0,673515 ,1,0,673895 ,1,0,140 ,1,0,970 ,1,0,2355 ,1,0,2685 ,1,0,3100 ,1,0,3430 ,1,0,4395 ,1,0,4700 ,1,0,5775 ,1,0,6305 ,1,0,6500 ,1,0,6845 ,1,0,7285 ,1,0,9215 ,1,0,9720 ,1,0,10045 ,1,0,10470 ,1,0,10790 ,1,0,11235 ,1,0,11660 ,1,0,11995 ,1,0,12315 ,1,0,13595 ,1,0,15300 ,1,0,17115 ,1,0,18090 ,1,0,18420 ,1,0,18740 ,1,0,19280 ,1,0,19790 ,1,0,20445 ,1,0,20975 ,1,0,21405 ,1,0,21855 ,1,0,22280 ,1,0,22605 ,1,0,23055 ,1,0,23515 ,1,0,23940 ,1,0,24515 ,1,0,24840 ,1,0,25295 ,1,0,25625 ,1,0,25955 ,1,0,26240 ,1,0,26600 ,1,0,26895 ,1,0,27450 ,1,0,27660 ,1,0,27995 ,1,0,28335 ,1,0,28665 ,1,0,29885 ,1,0,30210 ,1,0,30520 ,1,0,31385 ,1,0,31905 ,1,0,36820 ,1,0,37130 ,1,0,37535 ,1,0,37855 ,1,0,38275 ,1,0,38595 ,1,0,38915 ,1,0,39250 ,1,0,39570 ,1,0,39910 ,1,0,40235 ,1,0,40680 ,1,0,40995 ,1,0,41320 ,1,0,41745 ,1,0,42165 ,1,0,43035 ,1,0,44015 ,1,0,45940 ,1,0,46360 ,1,0,46890 ,1,0,47500 ,1,0,48020 ,1,0,48675 ,1,0,48875 ,1,0,49165 ,1,0,49795 ,1,0,50650 ,1,0,51515 ,1,0,51935 ,1,0,52575 ,1,0,52930 ,1,0,53235 ,1,0,54015 ,1,0,55185 ,1,0,55625 ,1,0,56045 ,1,0,56680 ,1,0,57785 ,1,0,59270 ,1,0,59900 ,1,0,60295 ,1,0,61490 ,1,0,62210 ,1,0,63620 ,1,0,63915 ,1,0,64240 ,1,0,64905 ,1,0,65550 ,1,0,66885 ,1,0,68245 ,1,0,69670 ,1,0,70300 ,1,0,74410 ,1,0,75005 ,1,0,75330 ,1,0,75830 ,1,0,76890 ,1,0,77295 ,1,0,77715 ,1,0,78140 ,1,0,78590 ,1,0,80830 ,1,0,81155 ,1,0,81470 ,1,0,81765 ,1,0,82095 ,1,0,82400 ,1,0,82835 ,1,0,83070 ,1,0,83285 ,1,0,83695 ,1,0,84340 ,1,0,84550 ,1,0,85305 ,1,0,85640 ,1,0,86580 ,1,0,87250 ,1,0,88120 ,1,0,88425 ,1,0,93300 ,1,0,93725 ,1,0,94990 ,1,0,95745 ,1,0,97240 ,1,0,98130 ,1,0,99205 ,1,0,100340 ,1,0,101060 ,1,0,101660 ,1,0,102110 ,1,0,102545 ,1,0,103845 ,1,0,104280 ,1,0,104605 ,1,0,105035 ,1,0,106110 ,1,0,106530 ,1,0,107215 ,1,0,107650 ,1,0,108185 ,1,0,108730 ,1,0,109925 ,1,0,110580 ,1,0,110910 ,1,0,112095 ,1,0,112725 ,1,0,113085 ,1,0,115640 ,1,0,116055 ,1,0,116625 ,1,0,116940 ,1,0,119565 ,1,0,119880 ,1,0,120300 ,1,0,120925 ,1,0,121570 ,1,0,122235 ,1,0,122885 ,1,0,124110 ,1,0,124875 ,1,0,125525 ,1,0,125860 ,1,0,126170 ,1,0,126815 ,1,0,127140 ,1,0,127585 ,1,0,128000 ,1,0,128525 ,1,0,129575 ,1,0,130015 ,1,0,130755 ,1,0,132390 ,1,0,133320 ,1,0,134805 ,1,0,135335 ,1,0,136085 ,1,0,136525 ,1,0,136970 ,1,0,137855 ,1,0,138730 ,1,0,139135 ,1,0,139570 ,1,0,140110 ,1,0,140835 ,1,0,141265 ,1,0,141780 ,1,0,142310 ,1,0,142600 ,1,0,143095 ,1,0,143535 ,1,0,144805 ,1,0,145140 ,1,0,145475 ,1,0,146470 ,1,0,147350 ,1,0,147885 ,1,0,149510 ,1,0,151380 ,1,0,152130 ,1,0,152570 ,1,0,152905 ,1,0,153740 ,1,0,154170 ,1,0,154490 ,1,0,154810 ,1,0,155150 ,1,0,155580 ,1,0,156530 ,1,0,156850 ,1,0,157160 ,1,0,157570 ,1,0,158110 ,1,0,158515 ,1,0,159045 ,1,0,159485 ,1,0,161220 ,1,0,161865 ,1,0,162640 ,1,0,162935 ,1,0,167250 ,1,0,167575 ,1,0,167925 ,1,0,168260 ,1,0,168605 ,1,0,168935 ,1,0,169825 ,1,0,171150 ,1,0,171480 ,1,0,171790 ,1,0,172870 ,1,0,173115 ,1,0,173550 ,1,0,173905 ,1,0,175765 ,1,0,176300 ,1,0,177860 ,1,0,178205 ,1,0,179610 ,1,0,181555 ,1,0,182855 ,1,0,183400 ,1,0,184600 ,1,0,184815 ,1,0,185270 ,1,0,186385 ,1,0,187270 ,1,0,187790 ,1,0,188115 ,1,0,188540 ,1,0,189310 ,1,0,190495 ,1,0,190930 ,1,0,191250 ,1,0,192040 ,1,0,192985 ,1,0,193320 ,1,0,193725 ,1,0,194455 ,1,0,194790 ,1,0,195135 ,1,0,195475 ,1,0,196775 ,1,0,197110 ,1,0,197435 ,1,0,199285 ,1,0,199685 ,1,0,200005 ,1,0,200440 ,1,0,200755 ,1,0,201095 ,1,0,201440 ,1,0,201660 ,1,0,202095 ,1,0,202650 ,1,0,203090 ,1,0,203645 ,1,0,203960 ,1,0,204825 ,1,0,205060 ,1,0,205715 ,1,0,206790 ,1,0,208505 ,1,0,208915 ,1,0,209340 ,1,0,209870 ,1,0,210305 ,1,0,210635 ,1,0,210960 ,1,0,211690 ,1,0,212015 ,1,0,212915 ,1,0,213250 ,1,0,213790 ,1,0,214345 ,1,0,214675 ,1,0,215215 ,1,0,215550 ,1,0,216070 ,1,0,216500 ,1,0,217155 ,1,0,218445 ,1,0,218775 ,1,0,219195 ,1,0,220045 ,1,0,220790 ,1,0,222500 ,1,0,223240 ,1,0,223720 ,1,0,224495 ,1,0,224810 ,1,0,226620 ,1,0,227010 ,1,0,227350 ,1,0,227885 ,1,0,228430 ,1,0,228840 ,1,0,229435 ,1,0,229785 ,1,0,230110 ,1,0,230445 ,1,0,231095 ,1,0,232990 ,1,0,233330 ,1,0,234585 ,1,0,235015 ,1,0,235335 ,1,0,236090 ,1,0,236850 ,1,0,238330 ,1,0,239105 ,1,0,239835 ,1,0,240140 ,1,0,240665 ,1,0,242230 ,1,0,243165 ,1,0,243605 ,1,0,243955 ,1,0,244270 ,1,0,244555 ,1,0,245025 ,1,0,245340 ,1,0,245570 ,1,0,246725 ,1,0,249615 ,1,0,249950 ,1,0,250370 ,1,0,250700 ,1,0,251020 ,1,0,252055 ,1,0,253530 ,1,0,255240 ,1,0,255970 ,1,0,257530 ,1,0,257850 ,1,0,258180 ,1,0,258500 ,1,0,258805 ,1,0,259225 ,1,0,259555 ,1,0,259865 ,1,0,262025 ,1,0,262335 ,1,0,263995 ,1,0,264700 ,1,0,265040 ,1,0,265380 ,1,0,265700 ,1,0,265990 ,1,0,267960 ,1,0,269370 ,1,0,272170 ,1,0,272465 ,1,0,272885 ,1,0,273215 ,1,0,274340 ,1,0,274755 ,1,0,275255 ,1,0,275685 ,1,0,278985 ,1,0,279380 ,1,0,279685 ,1,0,281235 ,1,0,284680 ,1,0,285200 ,1,0,285620 ,1,0,286135 ,1,0,286460 ,1,0,287310 ,1,0,287715 ,1,0,288025 ,1,0,289555 ,1,0,289885 ,1,0,290170 ,1,0,290595 ,1,0,291880 ,1,0,293045 ,1,0,295695 ,1,0,296100 ,1,0,296320 ,1,0,297765 ,1,0,298375 ,1,0,299130 ,1,0,299845 ,1,0,300165 ,1,0,300510 ,1,0,300840 ,1,0,301155 ,1,0,301470 ,1,0,301680 ,1,0,301900 ,1,0,302225 ,1,0,302550 ,1,0,302885 ,1,0,303525 ,1,0,303950 ,1,0,304260 ,1,0,304585 ,1,0,311210 ,1,0,312460 ,1,0,312795 ,1,0,314600 ,1,0,315210 ,1,0,315685 ,1,0,315990 ,1,0,316305 ,1,0,318735 ,1,0,319770 ,1,0,320190 ,1,0,320715 ,1,0,327355 ,1,0,327770 ,1,0,330780 ,1,0,331170 ,1,0,331720 ,1,0,332390 ,1,0,332820 ,1,0,333490 ,1,0,333940 ,1,0,335110 ,1,0,335575 ,1,0,336550 ,1,0,337025 ,1,0,337785 ,1,0,338220 ,1,0,339645 ,1,0,340720 ,1,0,341040 ,1,0,341470 ,1,0,343570 ,1,0,347790 ,1,0,348115 ,1,0,348850 ,1,0,349285 ,1,0,349780 ,1,0,350085 ,1,0,350425 ,1,0,350760 ,1,0,351310 ,1,0,351630 ,1,0,358770 ,1,0,360360 ,1,0,361380 ,1,0,361920 ,1,0,362965 ,1,0,364205 ,1,0,364635 ,1,0,365075 ,1,0,365415 ,1,0,366145 ,1,0,366560 ,1,0,366995 ,1,0,367420 ,1,0,367845 ,1,0,368275 ,1,0,368685 ,1,0,369130 ,1,0,369545 ,1,0,369960 ,1,0,370475 ,1,0,370875 ,1,0,371315 ,1,0,371735 ,1,0,372265 ,1,0,373205 ,1,0,373615 ,1,0,374035 ,1,0,374455 ,1,0,374875 ,1,0,375185 ,1,0,375455 ,1,0,375625 ,1,0,375800 ,1,0,376910 ,1,0,377220 ,1,0,377415 ,1,0,377725 ,1,0,378045 ,1,0,379215 ,1,0,380470 ,1,0,381035 ,1,0,381205 ,1,0,381415 ,1,0,381615 ,1,0,382130 ,1,0,382310 ,1,0,382805 ,1,0,382980 ,1,0,383425 ,1,0,383790 ,1,0,384065 ,1,0,384190 ,1,0,384740 ,1,0,384870 ,1,0,387085 ,1,0,387335 ,1,0,387510 ,1,0,387695 ,1,0,388425 ,1,0,388605 ,1,0,388785 ,1,0,389585 ,1,0,389835 ,1,0,390660 ,1,0,390915 ,1,0,391095 ,1,0,391495 ,1,0,391920 ,1,0,392160 ,1,0,392470 ,1,0,392655 ,1,0,392890 ,1,0,393520 ,1,0,393700 ,1,0,394245 ,1,0,394875 ,1,0,395130 ,1,0,395700 ,1,0,395865 ,1,0,396050 ,1,0,396290 ,1,0,396460 ,1,0,396815 ,1,0,397055 ,1,0,397230 ,1,0,397425 ,1,0,398225 ,1,0,399080 ,1,0,399340 ,1,0,399510 ,1,0,399765 ,1,0,399940 ,1,0,400115 ,1,0,400340 ,1,0,400530 ,1,0,400720 ,1,0,400925 ,1,0,401110 ,1,0,401295 ,1,0,401475 ,1,0,401690 ,1,0,401900 ,1,0,402940 ,1,0,403190 ,1,0,403380 ,1,0,403585 ,1,0,403810 ,1,0,404110 ,1,0,404315 ,1,0,411175 ,1,0,411395 ,1,0,411615 ,1,0,411805 ,1,0,412805 ,1,0,413060 ,1,0,413440 ,1,0,413765 ,1,0,414125 ,1,0,414645 ,1,0,414840 ,1,0,415375 ,1,0,415800 ,1,0,416110 ,1,0,416300 ,1,0,416485 ,1,0,417420 ,1,0,417620 ,1,0,418815 ,1,0,419600 ,1,0,419870 ,1,0,420110 ,1,0,420575 ,1,0,420780 ,1,0,420970 ,1,0,421105 ,1,0,421300 ,1,0,421550 ,1,0,423765 ,1,0,424245 ,1,0,424690 ,1,0,425030 ,1,0,425275 ,1,0,426115 ,1,0,426330 ,1,0,426765 ,1,0,427035 ,1,0,427215 ,1,0,427520 ,1,0,427780 ,1,0,428090 ,1,0,428355 ,1,0,428565 ,1,0,429300 ,1,0,429630 ,1,0,429885 ,1,0,430135 ,1,0,430335 ,1,0,431750 ,1,0,432000 ,1,0,432760 ,1,0,432995 ,1,0,433265 ,1,0,433735 ,1,0,433910 ,1,0,434170 ,1,0,434295 ,1,0,434540 ,1,0,435220 ,1,0,435675 ,1,0,435910 ,1,0,436140 ,1,0,436600 ,1,0,436940 ,1,0,437550 ,1,0,437805 ,1,0,438265 ,1,0,439765 ,1,0,439975 ,1,0,441010 ,1,0,441265 ,1,0,441580 ,1,0,442690 ,1,0,445365 ,1,0,448595 ,1,0,449215 ,1,0,449795 ,1,0,450065 ,1,0,450295 ,1,0,450475 ,1,0,450905 ,1,0,451540 ,1,0,452125 ,1,0,453245 ,1,0,453500 ,1,0,454305 ,1,0,456640 ,1,0,456820 ,1,0,457145 ,1,0,457430 ,1,0,457630 ,1,0,458150 ,1,0,459090 ,1,0,459415 ,1,0,459590 ,1,0,460000 ,1,0,460380 ,1,0,460575 ,1,0,460840 ,1,0,461115 ,1,0,461390 ,1,0,462375 ,1,0,462555 ,1,0,462775 ,1,0,462980 ,1,0,463270 ,1,0,463680 ,1,0,464010 ,1,0,464410 ,1,0,464735 ,1,0,464925 ,1,0,465385 ,1,0,465520 ,1,0,465735 ,1,0,465915 ,1,0,466105 ,1,0,466225 ,1,0,466420 ,1,0,466595 ,1,0,467755 ,1,0,468615 ,1,0,468805 ,1,0,468985 ,1,0,469255 ,1,0,470320 ,1,0,470680 ,1,0,470855 ,1,0,471120 ,1,0,471375 ,1,0,471780 ,1,0,471995 ,1,0,472240 ,1,0,472760 ,1,0,472970 ,1,0,473135 ,1,0,473380 ,1,0,473535 ,1,0,473730 ,1,0,473915 ,1,0,474095 ,1,0,474240 ,1,0,474510 ,1,0,474655 ,1,0,474915 ,1,0,475060 ,1,0,475305 ,1,0,475440 ,1,0,475730 ,1,0,476000 ,1,0,476165 ,1,0,476440 ,1,0,476630 ,1,0,476930 ,1,0,477115 ,1,0,477545 ,1,0,477925 ,1,0,478110 ,1,0,478300 ,1,0,478485 ,1,0,478895 ,1,0,479105 ,1,0,479320 ,1,0,479505 ,1,0,479690 ,1,0,479875 ,1,0,480150 ,1,0,480355 ,1,0,480570 ,1,0,480760 ,1,0,480970 ,1,0,481160 ,1,0,481235 ,1,0,481420 ,1,0,481600 ,1,0,481880 ,1,0,482080 ,1,0,482265 ,1,0,482450 ,1,0,482700 ,1,0,482890 ,1,0,483070 ,1,0,483245 ,1,0,483450 ,1,0,483705 ,1,0,483880 ,1,0,484065 ,1,0,484315 ,1,0,484515 ,1,0,484720 ,1,0,484915 ,1,0,485315 ,1,0,485505 ,1,0,485965 ,1,0,486220 ,1,0,486645 ,1,0,486930 ,1,0,487175 ,1,0,487360 ,1,0,487625 ,1,0,487840 ,1,0,488015 ,1,0,488225 ,1,0,488870 ,1,0,489075 ,1,0,489245 ,1,0,489635 ,1,0,489840 ,1,0,490110 ,1,0,490330 ,1,0,490590 ,1,0,490800 ,1,0,490990 ,1,0,491220 ,1,0,491485 ,1,0,491680 ,1,0,491965 ,1,0,492335 ,1,0,492510 ,1,0,493130 ,1,0,493480 ,1,0,493680 ,1,0,493970 ,1,0,494475 ,1,0,495475 ,1,0,495660 ,1,0,495845 ,1,0,496610 ,1,0,496780 ,1,0,496930 ,1,0,497305 ,1,0,497495 ,1,0,497700 ,1,0,497895 ,1,0,498045 ,1,0,498255 ,1,0,498520 ,1,0,498935 ,1,0,499645 ,1,0,499920 ,1,0,500625 ,1,0,500890 ,1,0,501600 ,1,0,501870 ,1,0,502615 ,1,0,502890 ,1,0,503110 ,1,0,503315 ,1,0,503790 ,1,0,503995 ,1,0,504200 ,1,0,504380 ,1,0,504580 ,1,0,504705 ,1,0,505100 ,1,0,505275 ,1,0,505500 ,1,0,505700 ,1,0,506255 ,1,0,506445 ,1,0,506635 ,1,0,507240 ,1,0,507425 ,1,0,507615 ,1,0,507795 ,1,0,508045 ,1,0,508340 ,1,0,508540 ,1,0,508905 ,1,0,509050 ,1,0,509240 ,1,0,509435 ,1,0,509680 ,1,0,509940 ,1,0,510140 ,1,0,510515 ,1,0,510755 ,1,0,511055 ,1,0,511265 ,1,0,512125 ,1,0,512355 ,1,0,512540 ,1,0,512745 ,1,0,512955 ,1,0,513090 ,1,0,513300 ,1,0,513500 ,1,0,513705 ,1,0,513965 ,1,0,514235 ,1,0,514490 ,1,0,515050 ,1,0,515350 ,1,0,516025 ,1,0,516410 ,1,0,517050 ,1,0,521810 ,1,0,522005 ,1,0,522205 ,1,0,522425 ,1,0,522625 ,1,0,522830 ,1,0,523670 ,1,0,524045 ,1,0,524330 ,1,0,524710 ,1,0,524980 ,1,0,525210 ,1,0,525400 ,1,0,525585 ,1,0,525785 ,1,0,526190 ,1,0,526425 ,1,0,526820 ,1,0,527060 ,1,0,527260 ,1,0,527440 ,1,0,527730 ,1,0,527940 ,1,0,528450 ,1,0,529630 ,1,0,530630 ,1,0,531190 ,1,0,531785 ,1,0,532390 ,1,0,532870 ,1,0,533245 ,1,0,533515 ,1,0,533935 ,1,0,534200 ,1,0,534590 ,1,0,534845 ,1,0,535230 ,1,0,535480 ,1,0,535665 ,1,0,535880 ,1,0,537110 ,1,0,537975 ,1,0,538460 ,1,0,539215 ,1,0,540070 ,1,0,540275 ,1,0,541340 ,1,0,542125 ,1,0,542325 ,1,0,542845 ,1,0,545025 ,1,0,546225 ,1,0,547910 ,1,0,548530 ,1,0,553410 ,1,0,553670 ,1,0,554265 ,1,0,554460 ,1,0,554670 ,1,0,554860 ,1,0,555050 ,1,0,556695 ,1,0,556885 ,1,0,557115 ,1,0,557745 ,1,0,558405 ,1,0,558860 ,1,0,560045 ,1,0,560555 ,1,0,560875 ,1,0,563825 ,1,0,564040 ,1,0,564795 ,1,0,565710 ,1,0,567120 ,1,0,567305 ,1,0,568410 ,1,0,568610 ,1,0,568965 ,1,0,569360 ,1,0,569705 ,1,0,569930 ,1,0,571750 ,1,0,571935 ,1,0,572330 ,1,0,572605 ,1,0,572810 ,1,0,573155 ,1,0,573405 ,1,0,573665 ,1,0,573935 ,1,0,574140 ,1,0,574465 ,1,0,575875 ,1,0,576080 ,1,0,577855 ,1,0,578100 ,1,0,578310 ,1,0,578510 ,1,0,578805 ,1,0,579850 ,1,0,580315 ,1,0,580505 ,1,0,580770 ,1,0,581025 ,1,0,581290 ,1,0,581550 ,1,0,581810 ,1,0,582360 ,1,0,582550 ,1,0,582780 ,1,0,583005 ,1,0,583210 ,1,0,583720 ,1,0,584385 ,1,0,587025 ,1,0,587635 ,1,0,588385 ,1,0,588635 ,1,0,589260 ,1,0,589530 ,1,0,589850 ,1,0,590185 ,1,0,590360 ,1,0,590880 ,1,0,591200 ,1,0,591405 ,1,0,591850 ,1,0,592045 ,1,0,592235 ,1,0,592675 ,1,0,592875 ,1,0,593200 ,1,0,594245 ,1,0,594845 ,1,0,595040 ,1,0,595205 ,1,0,595545 ,1,0,596180 ,1,0,596515 ,1,0,596850 ,1,0,597255 ,1,0,597440 ,1,0,598075 ,1,0,599730 ,1,0,600415 ,1,0,600625 ,1,0,601330 ,1,0,601515 ,1,0,602275 ,1,0,602500 ,1,0,602705 ,1,0,602930 ,1,0,603255 ,1,0,603625 ,1,0,604125 ,1,0,604395 ,1,0,604735 ,1,0,605450 ,1,0,605835 ,1,0,606060 ,1,0,606735 ,1,0,607250 ,1,0,607940 ,1,0,608375 ,1,0,609125 ,1,0,609310 ,1,0,609505 ,1,0,609670 ,1,0,609885 ,1,0,610205 ,1,0,610400 ,1,0,610585 ,1,0,611340 ,1,0,611920 ,1,0,612240 ,1,0,612365 ,1,0,612540 ,1,0,613760 ,1,0,614060 ,1,0,614325 ,1,0,614510 ,1,0,614690 ,1,0,615070 ,1,0,615325 ,1,0,615505 ,1,0,615690 ,1,0,615960 ,1,0,616200 ,1,0,616845 ,1,0,617035 ,1,0,617720 ,1,0,617915 ,1,0,618085 ,1,0,618460 ,1,0,618660 ,1,0,618855 ,1,0,619125 ,1,0,619670 ,1,0,619970 ,1,0,620665 ,1,0,620900 ,1,0,621090 ,1,0,621325 ,1,0,621510 ,1,0,621800 ,1,0,621975 ,1,0,622225 ,1,0,622395 ,1,0,622570 ,1,0,623170 ,1,0,623350 ,1,0,623540 ,1,0,623995 ,1,0,624875 ,1,0,625255 ,1,0,625770 ,1,0,626035 ,1,0,626350 ,1,0,626600 ,1,0,626870 ,1,0,627140 ,1,0,627725 ,1,0,628095 ,1,0,628405 ,1,0,628825 ,1,0,628940 ,1,0,629345 ,1,0,629540 ,1,0,629725 ,1,0,629980 ,1,0,630275 ,1,0,630475 ,1,0,630655 ,1,0,630925 ,1,0,631125 ,1,0,631325 ,1,0,631980 ,1,0,632190 ,1,0,632445 ,1,0,632785 ,1,0,633010 ,1,0,634140 ,1,0,634945 ,1,0,635125 ,1,0,635500 ,1,0,635870 ,1,0,636090 ,1,0,636470 ,1,0,636790 ,1,0,637305 ,1,0,637555 ,1,0,637940 ,1,0,638195 ,1,0,638480 ,1,0,639030 ,1,0,639540 ,1,0,639670 ,1,0,639850 ,1,0,640245 ,1,0,640465 ,1,0,640725 ,1,0,641110 ,1,0,641385 ,1,0,641625 ,1,0,642300 ,1,0,642900 ,1,0,643100 ,1,0,644095 ,1,0,644595 ,1,0,645080 ,1,0,645550 ,1,0,645810 ,1,0,645985 ,1,0,646705 ,1,0,647075 ,1,0,647440 ,1,0,647960 ,1,0,648155 ,1,0,648275 ,1,0,648415 ,1,0,648555 ,1,0,649035 ,1,0,649275 ,1,0,649450 ,1,0,649645 ,1,0,650000 ,1,0,650175 ,1,0,650385 ,1,0,650590 ,1,0,653260 ,1,0,653445 ,1,0,653965 ,1,0,654235 ,1,0,654425 ,1,0,654620 ,1,0,655040 ,1,0,655155 ,1,0,655385 ,1,0,655505 ,1,0,655620 ,1,0,655920 ,1,0,656060 ,1,0,656430 ,1,0,656665 ,1,0,656785 ,1,0,657340 ,1,0,657515 ,1,0,657765 ,1,0,658080 ,1,0,658330 ,1,0,658595 ,1,0,659095 ,1,0,659270 ,1,0,659640 ,1,0,659910 ,1,0,660225 ,1,0,660565 ,1,0,660685 ,1,0,660950 ,1,0,661225 ,1,0,661470 ,1,0,661925 ,1,0,662115 ,1,0,662335 ,1,0,662575 ,1,0,662760 ,1,0,662950 ,1,0,663650 ,1,0,664455 ,1,0,664940 ,1,0,665350 ,1,0,665900 ,1,0,666470 ,1,0,666815 ,1,0,667270 ,1,0,667705 ,1,0,668005 ,1,0,668665 ,1,0,668850 ,1,0,669085 ,1,0,670030 ,1,0,7940 ,1,0,9940 ,1,0,10255 ,1,0,10565 ,1,0,11230 ,1,0,11530 ,1,0,11880 ,1,0,12840 ,1,0,13265 ,1,0,14125 ,1,0,14860 ,1,0,15195 ,1,0,15530 ,1,0,17440 ,1,0,17745 ,1,0,18200 ,1,0,18730 ,1,0,19070 ,1,0,21510 ,1,0,21850 ,1,0,22165 ,1,0,23265 ,1,0,24260 ,1,0,24615 ,1,0,24960 ,1,0,25845 ,1,0,26890 ,1,0,28210 ,1,0,33585 ,1,0,34835 ,1,0,35185 ,1,0,35845 ,1,0,36165 ,1,0,36495 ,1,0,36810 ,1,0,37125 ,1,0,37445 ,1,0,38265 ,1,0,39145 ,1,0,40225 ,1,0,41860 ,1,0,59795 ,1,0,60730 ,1,0,61480 ,1,0,63400 ,1,0,64355 ,1,0,64585 ,1,0,65445 ,1,0,69565 ,1,0,69890 ,1,0,70910 ,1,0,72135 ,1,0,74215 ,1,0,74510 ,1,0,74800 ,1,0,75225 ,1,0,75535 ,1,0,86815 ,1,0,87115 ,1,0,88630 ,1,0,89680 ,1,0,91115 ,1,0,92470 ,1,0,93605 ,1,0,94045 ,1,0,95105 ,1,0,96285 ,1,0,97900 ,1,0,98980 ,1,0,99310 ,1,0,100100 ,1,0,101185 ,1,0,101410 ,1,0,101655 ,1,0,102015 ,1,0,102315 ,1,0,102850 ,1,0,103965 ,1,0,104825 ,1,0,105385 ,1,0,105805 ,1,0,106230 ,1,0,106520 ,1,0,106870 ,1,0,107640 ,1,0,108070 ,1,0,108510 ,1,0,108950 ,1,0,109795 ,1,0,110165 ,1,0,110480 ,1,0,110800 ,1,0,111130 ,1,0,111460 ,1,0,111775 ,1,0,112090 ,1,0,112410 ,1,0,112730 ,1,0,113075 ,1,0,113400 ,1,0,114555 ,1,0,114870 ,1,0,115095 ,1,0,118410 ,1,0,121350 ,1,0,148750 ,1,0,176875 ,1,0,177305 ,1,0,177960 ,1,0,178440 ,1,0,178870 ,1,0,181765 ,1,0,182655 ,1,0,183080 ,1,0,183825 ,1,0,184150 ,1,0,186275 ,1,0,188225 ,1,0,189100 ,1,0,189630 ,1,0,189950 ,1,0,190705 ,1,0,192765 ,1,0,193315 ,1,0,193620 ,1,0,193935 ,1,0,194680 ,1,0,195360 ,1,0,195565 ,1,0,195805 ,1,0,196440 ,1,0,196665 ,1,0,197000 ,1,0,205055 ,1,0,205295 ,1,0,206140 ,1,0,207325 ,1,0,207655 ,1,0,208055 ,1,0,208395 ,1,0,212020 ,1,0,212460 ,1,0,215425 ,1,0,222925 ,1,0,223365 ,1,0,223940 ,1,0,224805 ,1,0,229460 ,1,0,229995 ,1,0,230535 ,1,0,232385 ,1,0,235675 ,1,0,236075 ,1,0,236405 ,1,0,236845 ,1,0,237190 ,1,0,237700 ,1,0,238765 ,1,0,239095 ,1,0,240660 ,1,0,240970 ,1,0,241695 ,1,0,242010 ,1,0,242330 ,1,0,242850 ,1,0,243510 ,1,0,243735 ,1,0,244450 ,1,0,244785 ,1,0,245565 ,1,0,246305 ,1,0,246615 ,1,0,246935 ,1,0,247625 ,1,0,248355 ,1,0,248980 ,1,0,249730 ,1,0,250065 ,1,0,250695 ,1,0,250910 ,1,0,251700 ,1,0,252045 ,1,0,252360 ,1,0,252995 ,1,0,253735 ,1,0,254060 ,1,0,254385 ,1,0,255030 ,1,0,255765 ,1,0,256090 ,1,0,256385 ,1,0,256995 ,1,0,257640 ,1,0,258395 ,1,0,258695 ,1,0,259005 ,1,0,259675 ,1,0,260365 ,1,0,261090 ,1,0,261400 ,1,0,262125 ,1,0,262745 ,1,0,262935 ,1,0,263670 ,1,0,264315 ,1,0,264945 ,1,0,265695 ,1,0,265980 ,1,0,266645 ,1,0,266960 ,1,0,267565 ,1,0,268250 ,1,0,268540 ,1,0,268855 ,1,0,269470 ,1,0,270200 ,1,0,270525 ,1,0,270830 ,1,0,271425 ,1,0,272165 ,1,0,272475 ,1,0,273210 ,1,0,273525 ,1,0,274120 ,1,0,274745 ,1,0,275455 ,1,0,275785 ,1,0,276490 ,1,0,277085 ,1,0,277785 ,1,0,278380 ,1,0,279075 ,1,0,279785 ,1,0,280520 ,1,0,281230 ,1,0,281925 ,1,0,282590 ,1,0,282905 ,1,0,283635 ,1,0,283940 ,1,0,287505 ,1,0,288320 ,1,0,289355 ,1,0,289765 ,1,0,289980 ,1,0,303845 ,1,0,304145 ,1,0,305230 ,1,0,306290 ,1,0,307630 ,1,0,308685 ,1,0,309745 ,1,0,310780 ,1,0,328420 ,1,0,329070 ,1,0,329930 ,1,0,330455 ,1,0,332505 ,1,0,333145 ,1,0,334040 ,1,0,334355 ,1,0,338215 ,1,0,340175 ,1,0,340390 ,1,0,340600 ,1,0,340830 ,1,0,342520 ,1,0,342940 ,1,0,343990 ,1,0,344645 ,1,0,344960 ,1,0,345525 ,1,0,346275 ,1,0,347030 ,1,0,347900 ,1,0,348215 ,1,0,348535 ,1,0,349585 ,1,0,350545 ,1,0,350980 ,1,0,351305 ,1,0,351530 ,1,0,351740 ,1,0,352035 ,1,0,353575 ,1,0,354545 ,1,0,356355 ,1,0,356710 ,1,0,357130 ,1,0,357805 ,1,0,358130 ,1,0,358435 ,1,0,358765 ,1,0,359610 ,1,0,359930 ,1,0,360355 ,1,0,362225 ,1,0,364320 ,1,0,364965 ,1,0,365840 ,1,0,366140 ,1,0,366665 ,1,0,367745 ,1,0,368075 ,1,0,368370 ,1,0,370150 ,1,0,370990 ,1,0,371530 ,1,0,371965 ,1,0,372260 ,1,0,372695 ,1,0,373115 ,1,0,373520 ,1,0,373935 ,1,0,374345 ,1,0,374660 ,1,0,374985 ,1,0,375385 ,1,0,375870 ,1,0,376370 ,1,0,376545 ,1,0,376725 ,1,0,376980 ,1,0,377165 ,1,0,377345 ,1,0,377845 ,1,0,378040 ,1,0,378545 ,1,0,379040 ,1,0,379875 ,1,0,380145 ,1,0,380335 ,1,0,380600 ,1,0,380795 ,1,0,380960 ,1,0,381285 ,1,0,381950 ,1,0,382070 ,1,0,382245 ,1,0,382615 ,1,0,382925 ,1,0,383110 ,1,0,383420 ,1,0,383600 ,1,0,383785 ,1,0,383935 ,1,0,384200 ,1,0,384620 ,1,0,385460 ,1,0,385705 ,1,0,386870 ,1,0,387505 ,1,0,387955 ,1,0,388370 ,1,0,388600 ,1,0,388790 ,1,0,389075 ,1,0,389905 ,1,0,390095 ,1,0,390520 ,1,0,390710 ,1,0,390910 ,1,0,391090 ,1,0,391570 ,1,0,391755 ,1,0,391990 ,1,0,392155 ,1,0,392325 ,1,0,392585 ,1,0,392770 ,1,0,393515 ,1,0,393785 ,1,0,393900 ,1,0,394125 ,1,0,394305 ,1,0,394940 ,1,0,395125 ,1,0,395325 ,1,0,395810 ,1,0,395990 ,1,0,397295 ,1,0,399270 ,1,0,399455 ,1,0,401225 ,1,0,401630 ,1,0,401825 ,1,0,402070 ,1,0,402330 ,1,0,402795 ,1,0,404240 ,1,0,405210 ,1,0,406390 ,1,0,406670 ,1,0,407575 ,1,0,407895 ,1,0,408110 ,1,0,408305 ,1,0,408835 ,1,0,409090 ,1,0,409350 ,1,0,409555 ,1,0,409990 ,1,0,410080 ,1,0,410335 ,1,0,410600 ,1,0,410860 ,1,0,411245 ,1,0,411460 ,1,0,411665 ,1,0,411885 ,1,0,412140 ,1,0,414640 ,1,0,415110 ,1,0,415665 ,1,0,416040 ,1,0,416495 ,1,0,416855 ,1,0,417085 ,1,0,417415 ,1,0,418220 ,1,0,418405 ,1,0,419595 ,1,0,420030 ,1,0,420225 ,1,0,421180 ,1,0,421875 ,1,0,422115 ,1,0,422300 ,1,0,422535 ,1,0,422730 ,1,0,423040 ,1,0,423300 ,1,0,424750 ,1,0,425630 ,1,0,426035 ,1,0,431110 ,1,0,431310 ,1,0,431745 ,1,0,431945 ,1,0,432190 ,1,0,432475 ,1,0,432990 ,1,0,433465 ,1,0,434610 ,1,0,434865 ,1,0,435145 ,1,0,435480 ,1,0,435815 ,1,0,436065 ,1,0,436285 ,1,0,436480 ,1,0,436685 ,1,0,437015 ,1,0,437225 ,1,0,437425 ,1,0,437620 ,1,0,437800 ,1,0,438125 ,1,0,438330 ,1,0,438525 ,1,0,438710 ,1,0,438900 ,1,0,439225 ,1,0,439420 ,1,0,439615 ,1,0,439970 ,1,0,440495 ,1,0,440695 ,1,0,441345 ,1,0,441910 ,1,0,442555 ,1,0,442895 ,1,0,443275 ,1,0,443590 ,1,0,443875 ,1,0,444415 ,1,0,444610 ,1,0,444815 ,1,0,444960 ,1,0,445165 ,1,0,445360 ,1,0,445965 ,1,0,446865 ,1,0,450060 ,1,0,450230 ,1,0,453495 ,1,0,456700 ,1,0,456880 ,1,0,460055 ,1,0,463345 ,1,0,463545 ,1,0,466785 ,1,0,470080 ,1,0,473265 ,1,0,476765 ,1,0,477235 ,1,0,480565 ,1,0,480755 ,1,0,484175 ,1,0,484585 ,1,0,487835 ,1,0,491415 ,1,0,494650 ,1,0,498175 ,1,0,498655 ,1,0,501995 ,1,0,505695 ,1,0,508900 ,1,0,512205 ,1,0,512615 ,1,0,513025 ,1,0,513440 ,1,0,513560 ,1,0,516785 ,1,0,516975 ,1,0,520415 ,1,0,520830 ,1,0,521210 ,1,0,521605 ,1,0,521730 ,1,0,521925 ,1,0,525515 ,1,0,525935 ,1,0,529110 ,1,0,532590 ,1,0,535875 ,1,0,539355 ,1,0,542715 ,1,0,542910 ,1,0,543095 ,1,0,543285 ,1,0,543470 ,1,0,543680 ,1,0,546420 ,1,0,546615 ,1,0,546825 ,1,0,547115 ,1,0,548295 ,1,0,548655 ,1,0,549190 ,1,0,549535 ,1,0,549740 ,1,0,549860 ,1,0,549980 ,1,0,550240 ,1,0,550490 ,1,0,550680 ,1,0,550890 ,1,0,551255 ,1,0,551700 ,1,0,551875 ,1,0,552045 ,1,0,552380 ,1,0,552790 ,1,0,553185 ,1,0,553665 ,1,0,553930 ,1,0,554125 ,1,0,554605 ,1,0,555045 ,1,0,555370 ,1,0,555500 ,1,0,555820 ,1,0,556020 ,1,0,556980 ,1,0,557185 ,1,0,557395 ,1,0,557740 ,1,0,557950 ,1,0,558125 ,1,0,558465 ,1,0,558755 ,1,0,558870 ,1,0,559050 ,1,0,560040 ,1,0,560375 ,1,0,561080 ,1,0,561290 ,1,0,561740 ,1,0,562355 ,1,0,562560 ,1,0,562770 ,1,0,564100 ,1,0,564550 ,1,0,566570 ,1,0,568530 ,1,0,569180 ,1,0,569785 ,1,0,570245 ,1,0,571010 ,1,0,571930 ,1,0,572600 ,1,0,573100 ,1,0,575175 ,1,0,575745 ,1,0,577520 ,1,0,577850 ,1,0,578185 ,1,0,578375 ,1,0,578650 ,1,0,579055 ,1,0,579250 ,1,0,579990 ,1,0,580180 ,1,0,580955 ,1,0,581480 ,1,0,581730 ,1,0,581945 ,1,0,582170 ,1,0,582355 ,1,0,582630 ,1,0,583925 ,1,0,584190 ,1,0,584450 ,1,0,584725 ,1,0,584925 ,1,0,585630 ,1,0,585810 ,1,0,586010 ,1,0,586425 ,1,0,586820 ,1,0,587230 ,1,0,587630 ,1,0,588055 ,1,0,588460 ,1,0,588850 ,1,0,589255 ,1,0,589685 ,1,0,590110 ,1,0,590495 ,1,0,590875 ,1,0,591270 ,1,0,591660 ,1,0,592040 ,1,0,592440 ,1,0,592815 ,1,0,593195 ,1,0,593570 ,1,0,593960 ,1,0,594390 ,1,0,594985 ,1,0,595150 ,1,0,595860 ,1,0,596445 ,1,0,596930 ,1,0,597375 ,1,0,598135 ,1,0,598555 ,1,0,599270 ,1,0,599725 ,1,0,600165 ,1,0,600620 ,1,0,601080 ,1,0,601850 ,1,0,601980 ,1,0,602130 ,1,0,602270 ,1,0,602415 ,1,0,602580 ,1,0,602700 ,1,0,602845 ,1,0,603250 ,1,0,603400 ,1,0,603690 ,1,0,603905 ,1,0,604120 ,1,0,604320 ,1,0,604515 ,1,0,604730 ,1,0,604905 ,1,0,605110 ,1,0,605315 ,1,0,605590 ,1,0,605770 ,1,0,606250 ,1,0,606435 ,1,0,606665 ,1,0,606875 ,1,0,607065 ,1,0,607375 ,1,0,607605 ,1,0,607810 ,1,0,608005 ,1,0,608245 ,1,0,608445 ,1,0,608660 ,1,0,608865 ,1,0,609055 ,1,0,609245 ,1,0,609500 ,1,0,609675 ,1,0,609880 ,1,0,610065 ,1,0,610275 ,1,0,610460 ,1,0,610660 ,1,0,610870 ,1,0,611020 ,1,0,611225 ,1,0,611475 ,1,0,612110 ,1,0,612305 ,1,0,612480 ,1,0,612665 ,1,0,612850 ,1,0,613035 ,1,0,613245 ,1,0,613490 ,1,0,613680 ,1,0,613885 ,1,0,614065 ,1,0,614320 ,1,0,614925 ,1,0,615630 ,1,0,616140 ,1,0,616335 ,1,0,616515 ,1,0,616705 ,1,0,616900 ,1,0,617100 ,1,0,617240 ,1,0,617400 ,1,0,617575 ,1,0,617780 ,1,0,617970 ,1,0,618320 ,1,0,618520 ,1,0,618725 ,1,0,618900 ,1,0,619070 ,1,0,619480 ,1,0,619665 ,1,0,620140 ,1,0,620320 ,1,0,620485 ,1,0,620960 ,1,0,621145 ,1,0,621795 ,1,0,622565 ,1,0,622740 ,1,0,622920 ,1,0,623110 ,1,0,623290 ,1,0,623475 ,1,0,623600 ,1,0,623785 ,1,0,623925 ,1,0,624155 ,1,0,624330 ,1,0,624440 ,1,0,624570 ,1,0,625410 ,1,0,625705 ,1,0,626155 ,1,0,626410 ,1,0,626680 ,1,0,626865 ,1,0,627075 ,1,0,627345 ,1,0,627595 ,1,0,627805 ,1,0,628090 ,1,0,628345 ,1,0,628510 ,1,0,628760 ,1,0,629005 ,1,0,629855 ,1,0,630040 ,1,0,630470 ,1,0,630735 ,1,0,631195 ,1,0,631460 ,1,0,631915 ,1,0,632185 ,1,0,632390 ,1,0,632580 ,1,0,632845 ,1,0,633005 ,1,0,633820 ,1,0,634460 ,1,0,634745 ,1,0,634940 ,1,0,635200 ,1,0,635435 ,1,0,635620 ,1,0,635865 ,1,0,636035 ,1,0,636345 ,1,0,636530 ,1,0,636735 ,1,0,637875 ,1,0,638120 ,1,0,638415 ,1,0,638965 ,1,0,639165 ,1,0,639385 ,1,0,639460 ,1,0,639665 ,1,0,639790 ,1,0,639985 ,1,0,640255 ,1,0,640460 ,1,0,640665 ,1,0,640850 ,1,0,641055 ,1,0,641380 ,1,0,641505 ,1,0,641620 ,1,0,642035 ,1,0,642425 ,1,0,642605 ,1,0,642790 ,1,0,642970 ,1,0,643345 ,1,0,643785 ,1,0,644180 ,1,0,644590 ,1,0,644775 ,1,0,645195 ,1,0,645545 ,1,0,645990 ,1,0,646515 ,1,0,646955 ,1,0,647380 ,1,0,647575 ,1,0,648030 ,1,0,648490 ,1,0,648900 ,1,0,649100 ,1,0,649570 ,1,0,649760 ,1,0,650170 ,1,0,650665 ,1,0,650855 ,1,0,651390 ,1,0,651615 ,1,0,652085 ,1,0,652525 ,1,0,652715 ,1,0,653205 ,1,0,653375 ,1,0,653810 ,1,0,654295 ,1,0,654505 ,1,0,655035 ,1,0,655210 ,1,0,655675 ,1,0,656240 ,1,0,656425 ,1,0,656900 ,1,0,657090 ,1,0,657510 ,1,0,658000 ,1,0,658590 ,1,0,658795 ,1,0,659265 ,1,0,659770 ,1,0,660220 ,1,0,660680 ,1,0,661145 ,1,0,661595 ,1,0,662050 ,1,0,662520 ,1,0,662890 ,1,0,663090 ,1,0,663600 ,1,0,664080 ,1,0,664260 ,1,0,664400 ,1,0,664875 ,1,0,664990 ,1,0,665155 ,1,0,665345 ,1,0,665520 ,1,0,665710 ,1,0,665895 ,1,0,666085 ,1,0,666270 ,1,0,666465 ,1,0,666810 ,1,0,667265 ,1,0,667465 ,1,0,667640 ,1,0,668415 ,1,0,668715 ,1,0,669390 ,1,0,669705 ,1,0,670025 ,1,0,670360 ,1,0,670500 ,1,0,672080 ,1,0,672240 ,1,0,672440 ,1,0,672615 ,1,0,673035 ,1,0,673430 ,1,0,673640 ,1,0,673825 ,1,0,674030 ,1,0,674710 ,1,0,35 ,1,0,390 ,1,0,735 ,1,0,1515 ,1,0,1930 ,1,0,2790 ,1,0,3090 ,1,0,3945 ,1,0,4255 ,1,0,4595 ,1,0,4925 ,1,0,5570 ,1,0,6830 ,1,0,7725 ,1,0,8060 ,1,0,9320 ,1,0,9625 ,1,0,12220 ,1,0,12525 ,1,0,13485 ,1,0,15935 ,1,0,16900 ,1,0,17860 ,1,0,18415 ,1,0,18960 ,1,0,19505 ,1,0,20035 ,1,0,20555 ,1,0,21195 ,1,0,21740 ,1,0,22825 ,1,0,23270 ,1,0,23615 ,1,0,24510 ,1,0,24955 ,1,0,25400 ,1,0,25740 ,1,0,27320 ,1,0,27880 ,1,0,28660 ,1,0,28960 ,1,0,29310 ,1,0,29655 ,1,0,30100 ,1,0,30415 ,1,0,30840 ,1,0,31280 ,1,0,32615 ,1,0,33680 ,1,0,34220 ,1,0,35180 ,1,0,36160 ,1,0,38065 ,1,0,38705 ,1,0,40365 ,1,0,41855 ,1,0,42800 ,1,0,43565 ,1,0,44140 ,1,0,44665 ,1,0,46130 ,1,0,47705 ,1,0,48130 ,1,0,48670 ,1,0,49905 ,1,0,53770 ,1,0,58010 ,1,0,58745 ,1,0,59145 ,1,0,59565 ,1,0,60725 ,1,0,61155 ,1,0,67710 ,1,0,68135 ,1,0,68450 ,1,0,68860 ,1,0,69170 ,1,0,69475 ,1,0,69665 ,1,0,70400 ,1,0,70720 ,1,0,71110 ,1,0,71850 ,1,0,72230 ,1,0,72575 ,1,0,73400 ,1,0,74210 ,1,0,74595 ,1,0,80155 ,1,0,82505 ,1,0,83495 ,1,0,84545 ,1,0,85630 ,1,0,87350 ,1,0,87680 ,1,0,89155 ,1,0,89470 ,1,0,93105 ,1,0,95540 ,1,0,99405 ,1,0,99860 ,1,0,100220 ,1,0,100535 ,1,0,101180 ,1,0,103180 ,1,0,103725 ,1,0,105040 ,1,0,105490 ,1,0,105800 ,1,0,106225 ,1,0,107875 ,1,0,108180 ,1,0,110160 ,1,0,111010 ,1,0,112405 ,1,0,113180 ,1,0,114650 ,1,0,114865 ,1,0,116280 ,1,0,116515 ,1,0,116845 ,1,0,117145 ,1,0,117455 ,1,0,117760 ,1,0,118080 ,1,0,118405 ,1,0,118720 ,1,0,119030 ,1,0,119350 ,1,0,119670 ,1,0,119995 ,1,0,120295 ,1,0,120600 ,1,0,120920 ,1,0,121240 ,1,0,121565 ,1,0,121895 ,1,0,122230 ,1,0,122565 ,1,0,122880 ,1,0,123265 ,1,0,123585 ,1,0,123920 ,1,0,124245 ,1,0,124555 ,1,0,124870 ,1,0,125200 ,1,0,125520 ,1,0,127235 ,1,0,127880 ,1,0,128630 ,1,0,128930 ,1,0,129235 ,1,0,129590 ,1,0,130230 ,1,0,130750 ,1,0,131105 ,1,0,131415 ,1,0,131745 ,1,0,134250 ,1,0,134800 ,1,0,135330 ,1,0,135650 ,1,0,135965 ,1,0,139025 ,1,0,139240 ,1,0,141260 ,1,0,141580 ,1,0,141885 ,1,0,142190 ,1,0,144055 ,1,0,144275 ,1,0,144695 ,1,0,145245 ,1,0,145470 ,1,0,145935 ,1,0,146245 ,1,0,146465 ,1,0,147680 ,1,0,148095 ,1,0,148445 ,1,0,148865 ,1,0,149960 ,1,0,150275 ,1,0,150610 ,1,0,150830 ,1,0,151040 ,1,0,151375 ,1,0,151705 ,1,0,151820 ,1,0,152695 ,1,0,152900 ,1,0,153335 ,1,0,153840 ,1,0,154700 ,1,0,155570 ,1,0,156230 ,1,0,156525 ,1,0,156965 ,1,0,157280 ,1,0,158010 ,1,0,158315 ,1,0,158625 ,1,0,159370 ,1,0,160905 ,1,0,161860 ,1,0,162080 ,1,0,162955 ,1,0,163490 ,1,0,163795 ,1,0,164040 ,1,0,164450 ,1,0,164890 ,1,0,165210 ,1,0,165715 ,1,0,166050 ,1,0,166260 ,1,0,166585 ,1,0,167140 ,1,0,167465 ,1,0,167820 ,1,0,168145 ,1,0,168600 ,1,0,169160 ,1,0,169820 ,1,0,170370 ,1,0,170795 ,1,0,171140 ,1,0,171475 ,1,0,171690 ,1,0,172225 ,1,0,173005 ,1,0,173445 ,1,0,173895 ,1,0,174670 ,1,0,174905 ,1,0,175450 ,1,0,175865 ,1,0,176200 ,1,0,176870 ,1,0,177180 ,1,0,177740 ,1,0,178335 ,1,0,179395 ,1,0,179945 ,1,0,180480 ,1,0,181005 ,1,0,181550 ,1,0,184810 ,1,0,185585 ,1,0,186500 ,1,0,186930 ,1,0,187900 ,1,0,188425 ,1,0,188985 ,1,0,189625 ,1,0,189825 ,1,0,190155 ,1,0,190485 ,1,0,190825 ,1,0,191245 ,1,0,191590 ,1,0,191915 ,1,0,192660 ,1,0,192980 ,1,0,193830 ,1,0,194575 ,1,0,194905 ,1,0,195465 ,1,0,195995 ,1,0,196550 ,1,0,196895 ,1,0,197440 ,1,0,197775 ,1,0,198305 ,1,0,198840 ,1,0,199375 ,1,0,199895 ,1,0,200655 ,1,0,201200 ,1,0,201545 ,1,0,201865 ,1,0,203640 ,1,0,204600 ,1,0,205505 ,1,0,206360 ,1,0,207320 ,1,0,208165 ,1,0,209025 ,1,0,209775 ,1,0,210735 ,1,0,211175 ,1,0,212125 ,1,0,212785 ,1,0,213245 ,1,0,213560 ,1,0,218440 ,1,0,218985 ,1,0,219515 ,1,0,220350 ,1,0,220905 ,1,0,221950 ,1,0,222725 ,1,0,223035 ,1,0,223600 ,1,0,224050 ,1,0,225425 ,1,0,226615 ,1,0,227245 ,1,0,228110 ,1,0,228640 ,1,0,229455 ,1,0,230640 ,1,0,231210 ,1,0,232045 ,1,0,233755 ,1,0,234285 ,1,0,235010 ,1,0,235670 ,1,0,236520 ,1,0,237290 ,1,0,238985 ,1,0,239280 ,1,0,240530 ,1,0,241175 ,1,0,241590 ,1,0,242120 ,1,0,242325 ,1,0,245020 ,1,0,245330 ,1,0,245670 ,1,0,246205 ,1,0,246825 ,1,0,247285 ,1,0,249725 ,1,0,250185 ,1,0,251140 ,1,0,251585 ,1,0,253105 ,1,0,253850 ,1,0,254730 ,1,0,255345 ,1,0,255540 ,1,0,256490 ,1,0,256785 ,1,0,257110 ,1,0,259670 ,1,0,261900 ,1,0,262225 ,1,0,262625 ,1,0,263150 ,1,0,264310 ,1,0,266850 ,1,0,269070 ,1,0,269375 ,1,0,271545 ,1,0,274330 ,1,0,282265 ,1,0,282585 ,1,0,283310 ,1,0,284885 ,1,0,285310 ,1,0,285840 ,1,0,286245 ,1,0,286585 ,1,0,286885 ,1,0,287195 ,1,0,288220 ,1,0,288535 ,1,0,289150 ,1,0,289665 ,1,0,290380 ,1,0,290700 ,1,0,292605 ,1,0,292935 ,1,0,294965 ,1,0,297555 ,1,0,297870 ,1,0,298170 ,1,0,298480 ,1,0,299225 ,1,0,299550 ,1,0,299855 ,1,0,300170 ,1,0,300625 ,1,0,301675 ,1,0,302350 ,1,0,302670 ,1,0,303720 ,1,0,304350 ,1,0,305135 ,1,0,305540 ,1,0,305855 ,1,0,306380 ,1,0,306700 ,1,0,307310 ,1,0,308135 ,1,0,308895 ,1,0,309215 ,1,0,309540 ,1,0,309850 ,1,0,310160 ,1,0,311110 ,1,0,311770 ,1,0,312125 ,1,0,312685 ,1,0,313015 ,1,0,314275 ,1,0,314810 ,1,0,316945 ,1,0,319145 ,1,0,321325 ,1,0,323330 ,1,0,324585 ,1,0,327245 ,1,0,328955 ,1,0,331930 ,1,0,334475 ,1,0,335445 ,1,0,336545 ,1,0,337890 ,1,0,338565 ,1,0,338905 ,1,0,339435 ,1,0,340060 ,1,0,341350 ,1,0,346490 ,1,0,346930 ,1,0,357245 ,1,0,368900 ,1,0,370770 ,1,0,371205 ,1,0,376120 ,1,0,378035 ,1,0,380015 ,1,0,381280 ,1,0,382685 ,1,0,384800 ,1,0,384985 ,1,0,385160 ,1,0,385530 ,1,0,385890 ,1,0,386320 ,1,0,386865 ,1,0,391385 ,1,0,391490 ,1,0,396045 ,1,0,400235 ,1,0,400405 ,1,0,401105 ,1,0,401290 ,1,0,401485 ,1,0,401685 ,1,0,401895 ,1,0,402200 ,1,0,402395 ,1,0,402935 ,1,0,403265 ,1,0,407775 ,1,0,410075 ,1,0,410745 ,1,0,411610 ,1,0,412385 ,1,0,412875 ,1,0,413325 ,1,0,413575 ,1,0,414185 ,1,0,414455 ,1,0,414905 ,1,0,415670 ,1,0,416105 ,1,0,416430 ,1,0,416785 ,1,0,416970 ,1,0,417250 ,1,0,417535 ,1,0,417785 ,1,0,418095 ,1,0,418660 ,1,0,419410 ,1,0,419760 ,1,0,420165 ,1,0,420775 ,1,0,421175 ,1,0,421755 ,1,0,422110 ,1,0,422530 ,1,0,422920 ,1,0,423295 ,1,0,423510 ,1,0,423690 ,1,0,424810 ,1,0,425270 ,1,0,425470 ,1,0,425625 ,1,0,426110 ,1,0,426390 ,1,0,426710 ,1,0,426965 ,1,0,427775 ,1,0,427975 ,1,0,428155 ,1,0,428350 ,1,0,428560 ,1,0,428780 ,1,0,428940 ,1,0,429120 ,1,0,429295 ,1,0,429505 ,1,0,429695 ,1,0,429880 ,1,0,430070 ,1,0,430265 ,1,0,430725 ,1,0,430970 ,1,0,431375 ,1,0,431560 ,1,0,431740 ,1,0,432280 ,1,0,433730 ,1,0,434040 ,1,0,434165 ,1,0,435005 ,1,0,435140 ,1,0,435475 ,1,0,435905 ,1,0,436490 ,1,0,436820 ,1,0,436935 ,1,0,437075 ,1,0,439160 ,1,0,440050 ,1,0,442180 ,1,0,442695 ,1,0,443065 ,1,0,443415 ,1,0,443735 ,1,0,444080 ,1,0,444290 ,1,0,444490 ,1,0,444685 ,1,0,444880 ,1,0,445160 ,1,0,445500 ,1,0,445960 ,1,0,446730 ,1,0,447215 ,1,0,447420 ,1,0,447600 ,1,0,447725 ,1,0,447865 ,1,0,448205 ,1,0,448525 ,1,0,448845 ,1,0,449280 ,1,0,449660 ,1,0,450115 ,1,0,450530 ,1,0,450900 ,1,0,451335 ,1,0,451800 ,1,0,452190 ,1,0,452645 ,1,0,453125 ,1,0,453490 ,1,0,453910 ,1,0,454300 ,1,0,454700 ,1,0,455120 ,1,0,455495 ,1,0,455890 ,1,0,456270 ,1,0,456695 ,1,0,457080 ,1,0,457565 ,1,0,458025 ,1,0,458410 ,1,0,458865 ,1,0,459225 ,1,0,459530 ,1,0,459830 ,1,0,460180 ,1,0,460510 ,1,0,460835 ,1,0,461190 ,1,0,461510 ,1,0,461850 ,1,0,462200 ,1,0,462505 ,1,0,462840 ,1,0,463160 ,1,0,463470 ,1,0,463790 ,1,0,464005 ,1,0,464205 ,1,0,464405 ,1,0,464620 ,1,0,464985 ,1,0,465280 ,1,0,465450 ,1,0,465855 ,1,0,466035 ,1,0,466415 ,1,0,466780 ,1,0,467135 ,1,0,467490 ,1,0,467885 ,1,0,468210 ,1,0,468365 ,1,0,468610 ,1,0,468870 ,1,0,469130 ,1,0,469430 ,1,0,469720 ,1,0,469950 ,1,0,470260 ,1,0,470505 ,1,0,470675 ,1,0,470795 ,1,0,471045 ,1,0,471180 ,1,0,471370 ,1,0,471670 ,1,0,471895 ,1,0,472125 ,1,0,472435 ,1,0,472915 ,1,0,473070 ,1,0,473260 ,1,0,473650 ,1,0,474045 ,1,0,474310 ,1,0,474850 ,1,0,475130 ,1,0,475505 ,1,0,475860 ,1,0,476245 ,1,0,476625 ,1,0,477230 ,1,0,478295 ,1,0,478695 ,1,0,479100 ,1,0,479635 ,1,0,480025 ,1,0,480420 ,1,0,480630 ,1,0,480905 ,1,0,481155 ,1,0,481810 ,1,0,482075 ,1,0,482320 ,1,0,482775 ,1,0,483125 ,1,0,483445 ,1,0,484060 ,1,0,484645 ,1,0,485310 ,1,0,485910 ,1,0,486535 ,1,0,487355 ,1,0,488350 ,1,0,488690 ,1,0,489240 ,1,0,490325 ,1,0,490525 ,1,0,490735 ,1,0,490870 ,1,0,491960 ,1,0,492145 ,1,0,492700 ,1,0,493125 ,1,0,493965 ,1,0,494165 ,1,0,494540 ,1,0,494850 ,1,0,495200 ,1,0,495470 ,1,0,495930 ,1,0,496175 ,1,0,496665 ,1,0,496925 ,1,0,497435 ,1,0,498105 ,1,0,498930 ,1,0,499185 ,1,0,499400 ,1,0,500365 ,1,0,500565 ,1,0,500820 ,1,0,501060 ,1,0,501250 ,1,0,501475 ,1,0,502270 ,1,0,502550 ,1,0,502760 ,1,0,502885 ,1,0,503105 ,1,0,503385 ,1,0,503785 ,1,0,504790 ,1,0,504985 ,1,0,505170 ,1,0,505355 ,1,0,505565 ,1,0,505630 ,1,0,505825 ,1,0,505990 ,1,0,506180 ,1,0,506385 ,1,0,506555 ,1,0,506765 ,1,0,506965 ,1,0,507155 ,1,0,507365 ,1,0,507790 ,1,0,508255 ,1,0,508470 ,1,0,509125 ,1,0,509305 ,1,0,509875 ,1,0,510075 ,1,0,510510 ,1,0,510705 ,1,0,510890 ,1,0,511260 ,1,0,511460 ,1,0,512275 ,1,0,512480 ,1,0,512610 ,1,0,512740 ,1,0,513020 ,1,0,513155 ,1,0,513555 ,1,0,513835 ,1,0,514145 ,1,0,514295 ,1,0,514485 ,1,0,514920 ,1,0,515110 ,1,0,515285 ,1,0,515475 ,1,0,515685 ,1,0,515885 ,1,0,516225 ,1,0,516665 ,1,0,517045 ,1,0,517250 ,1,0,517600 ,1,0,517810 ,1,0,518220 ,1,0,518465 ,1,0,518825 ,1,0,519160 ,1,0,519525 ,1,0,519780 ,1,0,519965 ,1,0,520345 ,1,0,520750 ,1,0,520970 ,1,0,521215 ,1,0,521410 ,1,0,521660 ,1,0,521805 ,1,0,521940 ,1,0,522085 ,1,0,522285 ,1,0,522485 ,1,0,522690 ,1,0,522895 ,1,0,523040 ,1,0,523715 ,1,0,524185 ,1,0,524775 ,1,0,525055 ,1,0,525345 ,1,0,525455 ,1,0,525580 ,1,0,525780 ,1,0,526000 ,1,0,526110 ,1,0,526305 ,1,0,526555 ,1,0,526815 ,1,0,527010 ,1,0,527255 ,1,0,527535 ,1,0,527800 ,1,0,528070 ,1,0,528250 ,1,0,528445 ,1,0,528685 ,1,0,529105 ,1,0,529555 ,1,0,530170 ,1,0,530365 ,1,0,531120 ,1,0,531845 ,1,0,533930 ,1,0,534280 ,1,0,535870 ,1,0,536005 ,1,0,536195 ,1,0,536635 ,1,0,536935 ,1,0,537340 ,1,0,537585 ,1,0,537780 ,1,0,538035 ,1,0,538275 ,1,0,538390 ,1,0,538595 ,1,0,538790 ,1,0,538980 ,1,0,539860 ,1,0,540685 ,1,0,540915 ,1,0,541115 ,1,0,542120 ,1,0,542320 ,1,0,542535 ,1,0,542725 ,1,0,543090 ,1,0,543370 ,1,0,543545 ,1,0,543800 ,1,0,544785 ,1,0,544965 ,1,0,545225 ,1,0,546220 ,1,0,546415 ,1,0,547110 ,1,0,547350 ,1,0,547595 ,1,0,547780 ,1,0,547980 ,1,0,548145 ,1,0,548290 ,1,0,548955 ,1,0,550485 ,1,0,550885 ,1,0,552520 ,1,0,552715 ,1,0,555645 ,1,0,556080 ,1,0,556290 ,1,0,556495 ,1,0,560035 ,1,0,561205 ,1,0,561550 ,1,0,561820 ,1,0,563035 ,1,0,563410 ,1,0,564340 ,1,0,564675 ,1,0,565000 ,1,0,565245 ,1,0,565575 ,1,0,565715 ,1,0,566050 ,1,0,566430 ,1,0,566565 ,1,0,566745 ,1,0,567190 ,1,0,567495 ,1,0,567980 ,1,0,568405 ,1,0,569025 ,1,0,569245 ,1,0,569640 ,1,0,569850 ,1,0,570565 ,1,0,571285 ,1,0,571995 ,1,0,572195 ,1,0,572405 ,1,0,572595 ,1,0,572805 ,1,0,573095 ,1,0,573295 ,1,0,573550 ,1,0,573740 ,1,0,574660 ,1,0,574905 ,1,0,575110 ,1,0,575370 ,1,0,575825 ,1,0,576075 ,1,0,576520 ,1,0,576780 ,1,0,577140 ,1,0,577650 ,1,0,578260 ,1,0,578505 ,1,0,578800 ,1,0,579050 ,1,0,579310 ,1,0,579595 ,1,0,579785 ,1,0,579985 ,1,0,580185 ,1,0,580390 ,1,0,580575 ,1,0,580765 ,1,0,580950 ,1,0,581155 ,1,0,581365 ,1,0,583715 ,1,0,584520 ,1,0,584920 ,1,0,585380 ,1,0,585555 ,1,0,585940 ,1,0,586295 ,1,0,586495 ,1,0,586685 ,1,0,586890 ,1,0,587300 ,1,0,587775 ,1,0,588720 ,1,0,588930 ,1,0,589065 ,1,0,589185 ,1,0,589470 ,1,0,589680 ,1,0,590105 ,1,0,590300 ,1,0,590490 ,1,0,590755 ,1,0,591000 ,1,0,591265 ,1,0,591515 ,1,0,591785 ,1,0,592035 ,1,0,592290 ,1,0,592575 ,1,0,592810 ,1,0,593760 ,1,0,593955 ,1,0,594240 ,1,0,595335 ,1,0,595540 ,1,0,595740 ,1,0,595920 ,1,0,596115 ,1,0,597505 ,1,0,597795 ,1,0,598005 ,1,0,598195 ,1,0,598490 ,1,0,598695 ,1,0,598875 ,1,0,599600 ,1,0,600695 ,1,0,600950 ,1,0,601915 ,1,0,602775 ,1,0,602995 ,1,0,603405 ,1,0,603760 ,1,0,603900 ,1,0,604660 ,1,0,605105 ,1,0,605765 ,1,0,605985 ,1,0,606180 ,1,0,606380 ,1,0,606570 ,1,0,606810 ,1,0,607000 ,1,0,607195 ,1,0,607600 ,1,0,608170 ,1,0,608800 ,1,0,608990 ,1,0,609185 ,1,0,609305 ,1,0,609425 ,1,0,609605 ,1,0,609735 ,1,0,609940 ,1,0,610140 ,1,0,610270 ,1,0,610465 ,1,0,610580 ,1,0,610730 ,1,0,610865 ,1,0,611025 ,1,0,611145 ,1,0,611280 ,1,0,611405 ,1,0,611540 ,1,0,611715 ,1,0,612040 ,1,0,612535 ,1,0,612660 ,1,0,613240 ,1,0,613755 ,1,0,613940 ,1,0,614115 ,1,0,614315 ,1,0,614505 ,1,0,614685 ,1,0,614860 ,1,0,615065 ,1,0,615265 ,1,0,617030 ,1,0,617235 ,1,0,617775 ,1,0,618080 ,1,0,618260 ,1,0,618655 ,1,0,619790 ,1,0,620195 ,1,0,620610 ,1,0,621265 ,1,0,621615 ,1,0,621920 ,1,0,622220 ,1,0,623165 ,1,0,623990 ,1,0,624870 ,1,0,625325 ,1,0,626090 ,1,0,626405 ,1,0,626595 ,1,0,627015 ,1,0,627525 ,1,0,627885 ,1,0,628085 ,1,0,628700 ,1,0,629070 ,1,0,629275 ,1,0,629475 ,1,0,630035 ,1,0,634935 ,1,0,635615 ,1,0,637500 ,1,0,638845 ,1,0,642105 ,1,0,642525 ,1,0,642715 ,1,0,645680 ,1,0,646450 ,1,0,646760 ,1,0,647070 ,1,0,647435 ,1,0,650305 ,1,0,650730 ,1,0,650915 ,1,0,651330 ,1,0,651470 ,1,0,651610 ,1,0,651755 ,1,0,651880 ,1,0,652025 ,1,0,652145 ,1,0,652275 ,1,0,652395 ,1,0,653010 ,1,0,653130 ,1,0,653440 ,1,0,654110 ,1,0,654805 ,1,0,655150 ,1,0,655500 ,1,0,655795 ,1,0,656545 ,1,0,657155 ,1,0,657760 ,1,0,658075 ,1,0,658325 ,1,0,658660 ,1,0,658860 ,1,0,659705 ,1,0,660830 ,1,0,661010 ,1,0,661220 ,1,0,661405 ,1,0,661590 ,1,0,661790 ,1,0,661980 ,1,0,662185 ,1,0,662330 ,1,0,662445 ,1,0,662755 ,1,0,662945 ,1,0,663160 ,1,0,663405 ,1,0,663595 ,1,0,664015 ,1,0,664335 ,1,0,664580 ,1,0,664755 ,1,0,665105 ,1,0,665280 ,1,0,665460 ,1,0,665765 ,1,0,666030 ,1,0,666515 ,1,0,667390 ,1,0,667765 ,1,0,668145 ,1,0,668425 ,1,0,668600 ,1,0,668970 ,1,0,669150 ,1,0,669385 ,1,0,669655 ,1,0,670560 ,1,0,670945 ,1,0,671305 ,1,0,671690 ,1,0,672075 ,1,0,672435 ,1,0,672690 ,1,0,672850 ,1,0,673040 ,1,0,673250 ,1,0,673705 ,1,0,673885 ,1,0,674085 ,1,0,674340 ,1,0,674525 ,1,0,674705 ,1,0,675070 ,1,0,635 ,1,0,1390 ,1,0,2030 ,1,0,2785 ,1,0,3420 ,1,0,3745 ,1,0,4390 ,1,0,5150 ,1,0,5870 ,1,0,6175 ,1,0,6725 ,1,0,7390 ,1,0,8055 ,1,0,8685 ,1,0,9110 ,1,0,9715 ,1,0,10360 ,1,0,10990 ,1,0,11650 ,1,0,12415 ,1,0,13150 ,1,0,14025 ,1,0,14340 ,1,0,14650 ,1,0,15190 ,1,0,15525 ,1,0,15930 ,1,0,16375 ,1,0,16585 ,1,0,16910 ,1,0,17435 ,1,0,18085 ,1,0,18535 ,1,0,19065 ,1,0,19500 ,1,0,19920 ,1,0,20350 ,1,0,20665 ,1,0,21085 ,1,0,21735 ,1,0,22050 ,1,0,22495 ,1,0,23395 ,1,0,23820 ,1,0,24255 ,1,0,24835 ,1,0,25195 ,1,0,25510 ,1,0,26370 ,1,0,30095 ,1,0,30930 ,1,0,32190 ,1,0,32825 ,1,0,33145 ,1,0,33995 ,1,0,34605 ,1,0,34960 ,1,0,35840 ,1,0,36385 ,1,0,37015 ,1,0,37440 ,1,0,38395 ,1,0,38700 ,1,0,39565 ,1,0,40360 ,1,0,40985 ,1,0,41435 ,1,0,41740 ,1,0,42055 ,1,0,42505 ,1,0,43350 ,1,0,43770 ,1,0,44340 ,1,0,44890 ,1,0,45415 ,1,0,46240 ,1,0,47005 ,1,0,47600 ,1,0,48015 ,1,0,48555 ,1,0,48985 ,1,0,49475 ,1,0,50115 ,1,0,50540 ,1,0,50965 ,1,0,51410 ,1,0,51925 ,1,0,52350 ,1,0,52920 ,1,0,53445 ,1,0,53765 ,1,0,54655 ,1,0,55180 ,1,0,55730 ,1,0,59560 ,1,0,59995 ,1,0,60400 ,1,0,60950 ,1,0,61375 ,1,0,62005 ,1,0,62435 ,1,0,62955 ,1,0,63510 ,1,0,63920 ,1,0,64470 ,1,0,65015 ,1,0,65855 ,1,0,66355 ,1,0,66775 ,1,0,67300 ,1,0,67935 ,1,0,69165 ,1,0,69785 ,1,0,70605 ,1,0,71310 ,1,0,71630 ,1,0,72365 ,1,0,73690 ,1,0,76325 ,1,0,76885 ,1,0,77410 ,1,0,77825 ,1,0,78235 ,1,0,78585 ,1,0,78920 ,1,0,79220 ,1,0,79535 ,1,0,79845 ,1,0,80165 ,1,0,80485 ,1,0,80820 ,1,0,81150 ,1,0,81465 ,1,0,81760 ,1,0,82090 ,1,0,82500 ,1,0,83380 ,1,0,84135 ,1,0,85060 ,1,0,85850 ,1,0,86695 ,1,0,88005 ,1,0,89575 ,1,0,90095 ,1,0,90600 ,1,0,91425 ,1,0,91720 ,1,0,92035 ,1,0,92370 ,1,0,92670 ,1,0,93510 ,1,0,94265 ,1,0,94585 ,1,0,95220 ,1,0,95535 ,1,0,96485 ,1,0,96910 ,1,0,97150 ,1,0,97680 ,1,0,98650 ,1,0,99520 ,1,0,99855 ,1,0,100865 ,1,0,101525 ,1,0,101875 ,1,0,102215 ,1,0,102530 ,1,0,103395 ,1,0,103720 ,1,0,103960 ,1,0,104380 ,1,0,104820 ,1,0,105265 ,1,0,106655 ,1,0,106980 ,1,0,109390 ,1,0,110155 ,1,0,111125 ,1,0,111665 ,1,0,111975 ,1,0,112315 ,1,0,112830 ,1,0,113070 ,1,0,113740 ,1,0,114210 ,1,0,114550 ,1,0,115205 ,1,0,115635 ,1,0,116510 ,1,0,117040 ,1,0,117450 ,1,0,117970 ,1,0,118400 ,1,0,118830 ,1,0,119155 ,1,0,119560 ,1,0,119990 ,1,0,122005 ,1,0,122345 ,1,0,123080 ,1,0,124240 ,1,0,125080 ,1,0,125405 ,1,0,125740 ,1,0,126070 ,1,0,126395 ,1,0,127130 ,1,0,129585 ,1,0,130530 ,1,0,130870 ,1,0,131640 ,1,0,132160 ,1,0,133925 ,1,0,134460 ,1,0,134795 ,1,0,135450 ,1,0,135760 ,1,0,136635 ,1,0,136965 ,1,0,137630 ,1,0,137850 ,1,0,138065 ,1,0,139020 ,1,0,139995 ,1,0,140225 ,1,0,141155 ,1,0,141880 ,1,0,142305 ,1,0,142795 ,1,0,143090 ,1,0,143630 ,1,0,144270 ,1,0,145820 ,1,0,146045 ,1,0,146595 ,1,0,146900 ,1,0,147245 ,1,0,147470 ,1,0,148555 ,1,0,148860 ,1,0,149195 ,1,0,149505 ,1,0,150825 ,1,0,151480 ,1,0,151915 ,1,0,152235 ,1,0,152690 ,1,0,153205 ,1,0,153645 ,1,0,153945 ,1,0,154285 ,1,0,154695 ,1,0,155565 ,1,0,155995 ,1,0,156730 ,1,0,157675 ,1,0,158105 ,1,0,158920 ,1,0,159365 ,1,0,159690 ,1,0,160335 ,1,0,160655 ,1,0,161335 ,1,0,161640 ,1,0,161975 ,1,0,162300 ,1,0,162735 ,1,0,163170 ,1,0,163590 ,1,0,163915 ,1,0,164465 ,1,0,164985 ,1,0,165410 ,1,0,165935 ,1,0,166700 ,1,0,167025 ,1,0,167245 ,1,0,167920 ,1,0,168250 ,1,0,168595 ,1,0,169155 ,1,0,169615 ,1,0,170365 ,1,0,171135 ,1,0,172220 ,1,0,172555 ,1,0,173000 ,1,0,173545 ,1,0,173780 ,1,0,174445 ,1,0,174900 ,1,0,175240 ,1,0,175760 ,1,0,176535 ,1,0,176865 ,1,0,177300 ,1,0,177955 ,1,0,178330 ,1,0,178660 ,1,0,178865 ,1,0,180680 ,1,0,181125 ,1,0,183395 ,1,0,183720 ,1,0,184690 ,1,0,185035 ,1,0,185370 ,1,0,185700 ,1,0,186925 ,1,0,187795 ,1,0,188755 ,1,0,189095 ,1,0,189620 ,1,0,189945 ,1,0,190380 ,1,0,191490 ,1,0,192455 ,1,0,192655 ,1,0,193205 ,1,0,193825 ,1,0,194350 ,1,0,194675 ,1,0,195020 ,1,0,195240 ,1,0,195800 ,1,0,196330 ,1,0,196660 ,1,0,197225 ,1,0,197770 ,1,0,198310 ,1,0,198950 ,1,0,199680 ,1,0,200445 ,1,0,202090 ,1,0,202645 ,1,0,202975 ,1,0,203315 ,1,0,203745 ,1,0,204475 ,1,0,205170 ,1,0,205820 ,1,0,206135 ,1,0,206680 ,1,0,207000 ,1,0,207850 ,1,0,208500 ,1,0,208700 ,1,0,209020 ,1,0,210195 ,1,0,210630 ,1,0,211170 ,1,0,211490 ,1,0,211805 ,1,0,212260 ,1,0,212905 ,1,0,213785 ,1,0,214135 ,1,0,214450 ,1,0,215005 ,1,0,215320 ,1,0,215655 ,1,0,216060 ,1,0,216610 ,1,0,216935 ,1,0,217475 ,1,0,217680 ,1,0,218220 ,1,0,218665 ,1,0,219085 ,1,0,219410 ,1,0,219730 ,1,0,220040 ,1,0,220455 ,1,0,220785 ,1,0,221100 ,1,0,221320 ,1,0,221945 ,1,0,222275 ,1,0,222615 ,1,0,222820 ,1,0,223135 ,1,0,223490 ,1,0,223825 ,1,0,224370 ,1,0,224905 ,1,0,225220 ,1,0,225535 ,1,0,225865 ,1,0,226170 ,1,0,226610 ,1,0,227240 ,1,0,227455 ,1,0,228215 ,1,0,228740 ,1,0,229775 ,1,0,230750 ,1,0,231820 ,1,0,232785 ,1,0,233865 ,1,0,235215 ,1,0,236840 ,1,0,237395 ,1,0,237905 ,1,0,240230 ,1,0,240655 ,1,0,240870 ,1,0,241280 ,1,0,241690 ,1,0,242555 ,1,0,242745 ,1,0,243380 ,1,0,243730 ,1,0,244055 ,1,0,244360 ,1,0,244685 ,1,0,245125 ,1,0,245560 ,1,0,245900 ,1,0,246200 ,1,0,246720 ,1,0,247280 ,1,0,247630 ,1,0,247930 ,1,0,248575 ,1,0,248885 ,1,0,249195 ,1,0,249420 ,1,0,249605 ,1,0,249840 ,1,0,250060 ,1,0,250365 ,1,0,250690 ,1,0,251015 ,1,0,251370 ,1,0,251695 ,1,0,252040 ,1,0,252355 ,1,0,252665 ,1,0,252990 ,1,0,253320 ,1,0,253540 ,1,0,254055 ,1,0,254380 ,1,0,254725 ,1,0,255025 ,1,0,255340 ,1,0,255655 ,1,0,255960 ,1,0,256280 ,1,0,256590 ,1,0,256885 ,1,0,257220 ,1,0,257525 ,1,0,257840 ,1,0,258175 ,1,0,258505 ,1,0,258800 ,1,0,259110 ,1,0,259440 ,1,0,260260 ,1,0,260565 ,1,0,260880 ,1,0,261705 ,1,0,262740 ,1,0,263565 ,1,0,263880 ,1,0,264305 ,1,0,265155 ,1,0,265605 ,1,0,266300 ,1,0,267560 ,1,0,268055 ,1,0,268660 ,1,0,269065 ,1,0,269575 ,1,0,269790 ,1,0,269985 ,1,0,270415 ,1,0,271025 ,1,0,271660 ,1,0,272360 ,1,0,272675 ,1,0,272985 ,1,0,273920 ,1,0,274740 ,1,0,275570 ,1,0,275890 ,1,0,277080 ,1,0,277895 ,1,0,278665 ,1,0,279780 ,1,0,280630 ,1,0,280940 ,1,0,281225 ,1,0,282900 ,1,0,283420 ,1,0,283735 ,1,0,284455 ,1,0,285935 ,1,0,286880 ,1,0,288225 ,1,0,289660 ,1,0,289975 ,1,0,290275 ,1,0,292015 ,1,0,292315 ,1,0,293040 ,1,0,293445 ,1,0,293760 ,1,0,294045 ,1,0,294360 ,1,0,294765 ,1,0,295585 ,1,0,295895 ,1,0,296210 ,1,0,297565 ,1,0,297880 ,1,0,298385 ,1,0,298600 ,1,0,299030 ,1,0,299650 ,1,0,299960 ,1,0,300505 ,1,0,300835 ,1,0,302005 ,1,0,302355 ,1,0,302880 ,1,0,303315 ,1,0,303840 ,1,0,305020 ,1,0,306390 ,1,0,307010 ,1,0,308035 ,1,0,309430 ,1,0,309950 ,1,0,311345 ,1,0,313010 ,1,0,313660 ,1,0,314070 ,1,0,314285 ,1,0,321630 ,1,0,322615 ,1,0,326120 ,1,0,326320 ,1,0,327045 ,1,0,328195 ,1,0,328635 ,1,0,328845 ,1,0,329180 ,1,0,330120 ,1,0,331825 ,1,0,334035 ,1,0,335225 ,1,0,336425 ,1,0,337020 ,1,0,338560 ,1,0,340170 ,1,0,340385 ,1,0,341140 ,1,0,341910 ,1,0,342415 ,1,0,342630 ,1,0,343665 ,1,0,343985 ,1,0,344420 ,1,0,344955 ,1,0,345830 ,1,0,346815 ,1,0,347560 ,1,0,348000 ,1,0,348325 ,1,0,348635 ,1,0,348845 ,1,0,349045 ,1,0,349690 ,1,0,350540 ,1,0,351420 ,1,0,351735 ,1,0,352050 ,1,0,352375 ,1,0,352685 ,1,0,353030 ,1,0,353355 ,1,0,353570 ,1,0,353775 ,1,0,354005 ,1,0,354205 ,1,0,354835 ,1,0,355165 ,1,0,355375 ,1,0,355610 ,1,0,356040 ,1,0,356255 ,1,0,356705 ,1,0,357125 ,1,0,357350 ,1,0,357585 ,1,0,357800 ,1,0,358010 ,1,0,358230 ,1,0,358445 ,1,0,358970 ,1,0,359165 ,1,0,359380 ,1,0,359605 ,1,0,359925 ,1,0,360245 ,1,0,360460 ,1,0,360665 ,1,0,360975 ,1,0,361375 ,1,0,361705 ,1,0,361915 ,1,0,362740 ,1,0,362960 ,1,0,363200 ,1,0,363520 ,1,0,363870 ,1,0,364095 ,1,0,364315 ,1,0,364630 ,1,0,364850 ,1,0,365070 ,1,0,365295 ,1,0,365520 ,1,0,365940 ,1,0,366135 ,1,0,366660 ,1,0,366990 ,1,0,367205 ,1,0,367635 ,1,0,367960 ,1,0,368165 ,1,0,368470 ,1,0,368780 ,1,0,369015 ,1,0,369235 ,1,0,369430 ,1,0,369745 ,1,0,370145 ,1,0,370270 ,1,0,370585 ,1,0,371005 ,1,0,371525 ,1,0,371855 ,1,0,372690 ,1,0,373930 ,1,0,375260 ,1,0,375690 ,1,0,376180 ,1,0,377340 ,1,0,378360 ,1,0,378670 ,1,0,380535 ,1,0,381345 ,1,0,381530 ,1,0,381690 ,1,0,383415 ,1,0,384440 ,1,0,385045 ,1,0,387780 ,1,0,389775 ,1,0,392330 ,1,0,392950 ,1,0,393445 ,1,0,399635 ,1,0,399880 ,1,0,400785 ,1,0,401480 ,1,0,401820 ,1,0,402195 ,1,0,402530 ,1,0,403120 ,1,0,403325 ,1,0,403935 ,1,0,405645 ,1,0,407710 ,1,0,408235 ,1,0,409550 ,1,0,410070 ,1,0,410330 ,1,0,411055 ,1,0,414580 ,1,0,416675 ,1,0,419680 ,1,0,421235 ,1,0,421425 ,1,0,423885 ,1,0,424415 ,1,0,424610 ,1,0,424945 ,1,0,425080 ,1,0,425265 ,1,0,425760 ,1,0,426255 ,1,0,426760 ,1,0,427030 ,1,0,427590 ,1,0,428085 ,1,0,428630 ,1,0,429245 ,1,0,430130 ,1,0,430470 ,1,0,431440 ,1,0,431880 ,1,0,432550 ,1,0,433400 ,1,0,434370 ,1,0,434805 ,1,0,438120 ,1,0,439220 ,1,0,439415 ,1,0,439965 ,1,0,440185 ,1,0,440625 ,1,0,440860 ,1,0,441650 ,1,0,441980 ,1,0,442175 ,1,0,442550 ,1,0,443280 ,1,0,443535 ,1,0,443870 ,1,0,444075 ,1,0,444285 ,1,0,444485 ,1,0,444680 ,1,0,444875 ,1,0,445100 ,1,0,445295 ,1,0,445505 ,1,0,445770 ,1,0,446220 ,1,0,446665 ,1,0,446860 ,1,0,447070 ,1,0,447295 ,1,0,447490 ,1,0,447730 ,1,0,447935 ,1,0,448200 ,1,0,448840 ,1,0,449025 ,1,0,449210 ,1,0,449435 ,1,0,449590 ,1,0,451410 ,1,0,452005 ,1,0,452185 ,1,0,452505 ,1,0,452775 ,1,0,453035 ,1,0,456635 ,1,0,456875 ,1,0,458145 ,1,0,458480 ,1,0,458815 ,1,0,459410 ,1,0,459650 ,1,0,459825 ,1,0,459995 ,1,0,460175 ,1,0,460720 ,1,0,460915 ,1,0,461260 ,1,0,461455 ,1,0,461645 ,1,0,462055 ,1,0,462320 ,1,0,462500 ,1,0,462835 ,1,0,463035 ,1,0,463220 ,1,0,463785 ,1,0,464000 ,1,0,464200 ,1,0,464550 ,1,0,464800 ,1,0,464980 ,1,0,465335 ,1,0,465660 ,1,0,465850 ,1,0,466030 ,1,0,466235 ,1,0,466410 ,1,0,466840 ,1,0,467015 ,1,0,467195 ,1,0,467580 ,1,0,468205 ,1,0,468485 ,1,0,468685 ,1,0,469055 ,1,0,469955 ,1,0,470370 ,1,0,471250 ,1,0,472120 ,1,0,472310 ,1,0,472560 ,1,0,473130 ,1,0,473320 ,1,0,473850 ,1,0,474380 ,1,0,474910 ,1,0,475185 ,1,0,475725 ,1,0,475995 ,1,0,476240 ,1,0,476620 ,1,0,476925 ,1,0,477110 ,1,0,477315 ,1,0,477605 ,1,0,477935 ,1,0,478230 ,1,0,478480 ,1,0,478690 ,1,0,479170 ,1,0,479630 ,1,0,480090 ,1,0,480560 ,1,0,480750 ,1,0,481035 ,1,0,481355 ,1,0,481550 ,1,0,481805 ,1,0,482070 ,1,0,483945 ,1,0,487425 ,1,0,487620 ,1,0,489905 ,1,0,490655 ,1,0,490865 ,1,0,491215 ,1,0,491480 ,1,0,491690 ,1,0,491880 ,1,0,492330 ,1,0,492505 ,1,0,492830 ,1,0,493005 ,1,0,493220 ,1,0,493425 ,1,0,493620 ,1,0,493960 ,1,0,494215 ,1,0,494470 ,1,0,494735 ,1,0,494915 ,1,0,496235 ,1,0,499640 ,1,0,499915 ,1,0,500950 ,1,0,501735 ,1,0,502000 ,1,0,502340 ,1,0,502960 ,1,0,503255 ,1,0,503930 ,1,0,504855 ,1,0,507485 ,1,0,507725 ,1,0,508040 ,1,0,509300 ,1,0,509560 ,1,0,510400 ,1,0,510630 ,1,0,510820 ,1,0,511620 ,1,0,512675 ,1,0,512870 ,1,0,513230 ,1,0,513445 ,1,0,513700 ,1,0,513960 ,1,0,514230 ,1,0,514425 ,1,0,514615 ,1,0,514860 ,1,0,515045 ,1,0,515280 ,1,0,515555 ,1,0,515820 ,1,0,516020 ,1,0,516220 ,1,0,516415 ,1,0,516660 ,1,0,516910 ,1,0,517105 ,1,0,517355 ,1,0,517965 ,1,0,518080 ,1,0,518215 ,1,0,518460 ,1,0,518695 ,1,0,518820 ,1,0,519045 ,1,0,519290 ,1,0,519520 ,1,0,519710 ,1,0,520100 ,1,0,520410 ,1,0,521030 ,1,0,521935 ,1,0,522280 ,1,0,522685 ,1,0,523355 ,1,0,523610 ,1,0,524180 ,1,0,524770 ,1,0,525205 ,1,0,525575 ,1,0,525995 ,1,0,526495 ,1,0,527530 ,1,0,527725 ,1,0,527935 ,1,0,528575 ,1,0,528750 ,1,0,529100 ,1,0,529295 ,1,0,529625 ,1,0,529825 ,1,0,530035 ,1,0,530700 ,1,0,530860 ,1,0,531065 ,1,0,531375 ,1,0,531725 ,1,0,532070 ,1,0,532450 ,1,0,532865 ,1,0,533185 ,1,0,533590 ,1,0,533925 ,1,0,534275 ,1,0,534585 ,1,0,535035 ,1,0,535360 ,1,0,535545 ,1,0,535735 ,1,0,536255 ,1,0,536440 ,1,0,536865 ,1,0,537645 ,1,0,537850 ,1,0,538030 ,1,0,538270 ,1,0,538455 ,1,0,538650 ,1,0,538850 ,1,0,539040 ,1,0,539350 ,1,0,539515 ,1,0,539725 ,1,0,539915 ,1,0,540135 ,1,0,540360 ,1,0,540555 ,1,0,540755 ,1,0,540985 ,1,0,541180 ,1,0,541395 ,1,0,541595 ,1,0,541785 ,1,0,541975 ,1,0,542200 ,1,0,542400 ,1,0,542595 ,1,0,542775 ,1,0,542975 ,1,0,543165 ,1,0,543365 ,1,0,543540 ,1,0,543740 ,1,0,543955 ,1,0,544130 ,1,0,544320 ,1,0,544490 ,1,0,544675 ,1,0,544845 ,1,0,545020 ,1,0,545220 ,1,0,545410 ,1,0,545600 ,1,0,545780 ,1,0,545950 ,1,0,546130 ,1,0,546345 ,1,0,546540 ,1,0,546740 ,1,0,546925 ,1,0,547105 ,1,0,547290 ,1,0,547470 ,1,0,547725 ,1,0,548035 ,1,0,548210 ,1,0,548825 ,1,0,549010 ,1,0,549270 ,1,0,549465 ,1,0,549805 ,1,0,549975 ,1,0,550310 ,1,0,550480 ,1,0,551380 ,1,0,551610 ,1,0,551985 ,1,0,552650 ,1,0,552860 ,1,0,553000 ,1,0,553180 ,1,0,553405 ,1,0,553660 ,1,0,553845 ,1,0,554010 ,1,0,554600 ,1,0,554740 ,1,0,554930 ,1,0,555300 ,1,0,555965 ,1,0,556490 ,1,0,556975 ,1,0,557470 ,1,0,557945 ,1,0,558400 ,1,0,559045 ,1,0,560030 ,1,0,560240 ,1,0,560615 ,1,0,561200 ,1,0,561600 ,1,0,562010 ,1,0,562160 ,1,0,563215 ,1,0,563540 ,1,0,563700 ,1,0,564545 ,1,0,564930 ,1,0,565315 ,1,0,565570 ,1,0,565840 ,1,0,566170 ,1,0,566300 ,1,0,566425 ,1,0,566740 ,1,0,567000 ,1,0,567185 ,1,0,567490 ,1,0,567705 ,1,0,567890 ,1,0,568075 ,1,0,568345 ,1,0,568760 ,1,0,569175 ,1,0,569435 ,1,0,569780 ,1,0,570010 ,1,0,570180 ,1,0,570560 ,1,0,570850 ,1,0,571280 ,1,0,571610 ,1,0,571825 ,1,0,572205 ,1,0,572475 ,1,0,572665 ,1,0,573230 ,1,0,573400 ,1,0,573735 ,1,0,574010 ,1,0,574210 ,1,0,574390 ,1,0,574655 ,1,0,574840 ,1,0,575245 ,1,0,575440 ,1,0,575560 ,1,0,575820 ,1,0,576140 ,1,0,576390 ,1,0,576575 ,1,0,576775 ,1,0,576960 ,1,0,577135 ,1,0,577325 ,1,0,577515 ,1,0,577725 ,1,0,577920 ,1,0,578180 ,1,0,578370 ,1,0,578585 ,1,0,578795 ,1,0,578975 ,1,0,579175 ,1,0,579460 ,1,0,579650 ,1,0,579845 ,1,0,580120 ,1,0,580310 ,1,0,580570 ,1,0,580760 ,1,0,580945 ,1,0,581150 ,1,0,581425 ,1,0,581620 ,1,0,581805 ,1,0,582015 ,1,0,582235 ,1,0,582430 ,1,0,583000 ,1,0,583475 ,1,0,583650 ,1,0,583870 ,1,0,584120 ,1,0,584310 ,1,0,584790 ,1,0,585310 ,1,0,585550 ,1,0,585750 ,1,0,585955 ,1,0,586290 ,1,0,586680 ,1,0,586885 ,1,0,587140 ,1,0,587565 ,1,0,587770 ,1,0,588050 ,1,0,588250 ,1,0,588455 ,1,0,588630 ,1,0,588845 ,1,0,589060 ,1,0,589250 ,1,0,589465 ,1,0,589675 ,1,0,589965 ,1,0,590240 ,1,0,590555 ,1,0,590750 ,1,0,590995 ,1,0,591210 ,1,0,591400 ,1,0,591655 ,1,0,591845 ,1,0,592175 ,1,0,592365 ,1,0,592570 ,1,0,592740 ,1,0,592925 ,1,0,593125 ,1,0,593305 ,1,0,593565 ,1,0,593755 ,1,0,594115 ,1,0,594320 ,1,0,594595 ,1,0,595220 ,1,0,595410 ,1,0,595620 ,1,0,595805 ,1,0,595980 ,1,0,596315 ,1,0,596510 ,1,0,596785 ,1,0,596995 ,1,0,597250 ,1,0,597435 ,1,0,598630 ,1,0,598815 ,1,0,598935 ,1,0,599215 ,1,0,599400 ,1,0,599665 ,1,0,599860 ,1,0,600050 ,1,0,600235 ,1,0,600510 ,1,0,600890 ,1,0,601160 ,1,0,601510 ,1,0,601635 ,1,0,601845 ,1,0,602060 ,1,0,602265 ,1,0,602495 ,1,0,602695 ,1,0,602925 ,1,0,603110 ,1,0,603320 ,1,0,603570 ,1,0,603775 ,1,0,603980 ,1,0,604185 ,1,0,604510 ,1,0,604655 ,1,0,604790 ,1,0,604965 ,1,0,605700 ,1,0,606175 ,1,0,607245 ,1,0,607465 ,1,0,607675 ,1,0,607875 ,1,0,608085 ,1,0,608310 ,1,0,608510 ,1,0,608795 ,1,0,608930 ,1,0,609370 ,1,0,609805 ,1,0,610395 ,1,0,611470 ,1,0,611775 ,1,0,611985 ,1,0,614310 ,1,0,614920 ,1,0,615060 ,1,0,615260 ,1,0,615500 ,1,0,616330 ,1,0,616510 ,1,0,616700 ,1,0,616965 ,1,0,617095 ,1,0,617230 ,1,0,617395 ,1,0,617715 ,1,0,617965 ,1,0,618155 ,1,0,618910 ,1,0,619555 ,1,0,619785 ,1,0,620605 ,1,0,623535 ,1,0,623715 ,1,0,625055 ,1,0,625250 ,1,0,625910 ,1,0,626345 ,1,0,626590 ,1,0,631570 ,1,0,631785 ,1,0,631975 ,1,0,632180 ,1,0,632450 ,1,0,632645 ,1,0,632910 ,1,0,633265 ,1,0,633465 ,1,0,633645 ,1,0,633830 ,1,0,634010 ,1,0,634205 ,1,0,634405 ,1,0,635745 ,1,0,637355 ,1,0,637560 ,1,0,637755 ,1,0,639155 ,1,0,639210 ,1,0,639550 ,1,0,639735 ,1,0,639930 ,1,0,640185 ,1,0,640390 ,1,0,640730 ,1,0,641060 ,1,0,641390 ,1,0,641570 ,1,0,641905 ,1,0,642475 ,1,0,642975 ,1,0,643165 ,1,0,643280 ,1,0,643455 ,1,0,643650 ,1,0,643855 ,1,0,644105 ,1,0,644365 ,1,0,644665 ,1,0,644960 ,1,0,645245 ,1,0,645555 ,1,0,645815 ,1,0,646310 ,1,0,647135 ,1,0,647315 ,1,0,647580 ,1,0,648150 ,1,0,648495 ,1,0,648975 ,1,0,649995 ,1,0,650310 ,1,0,651270 ,1,0,651480 ,1,0,651735 ,1,0,651885 ,1,0,652020 ,1,0,652155 ,1,0,652340 ,1,0,652460 ,1,0,652600 ,1,0,652720 ,1,0,652840 ,1,0,653015 ,1,0,653185 ,1,0,653330 ,1,0,653625 ,1,0,653815 ,1,0,653975 ,1,0,654180 ,1,0,654365 ,1,0,655165 ,1,0,655330 ,1,0,655610 ,1,0,655860 ,1,0,656065 ,1,0,656350 ,1,0,656660 ,1,0,656960 ,1,0,657160 ,1,0,658005 ,1,0,658185 ,1,0,658455 ,1,0,658665 ,1,0,658965 ,1,0,659280 ,1,0,659915 ,1,0,660100 ,1,0,660280 ,1,0,660455 ,1,0,660745 ,1,0,661800 ,1,0,662190 ,1,0,662830 ,1,0,663005 ,1,0,663400 ,1,0,663775 ,1,0,664325 ,1,0,664820 ,1,0,666740 ,1,0,669645 ,1,0,669895 ,1,0,670125 ,1,0,670565 ,1,0,670780 ,1,0,671080 ,1,0,671315 ,1,0,671835 ,1,0,672620 ,1,0,673575 ,1,0,674345 ,1,0,674835 ,1,0,675020 ,1,0,145 ,1,0,520 ,1,0,860 ,1,0,1610 ,1,0,1925 ,1,0,2265 ,1,0,3960 ,1,0,4265 ,1,0,4705 ,1,0,5035 ,1,0,5455 ,1,0,5780 ,1,0,6065 ,1,0,6395 ,1,0,6730 ,1,0,7065 ,1,0,7395 ,1,0,7840 ,1,0,8470 ,1,0,8780 ,1,0,9325 ,1,0,9835 ,1,0,10685 ,1,0,11005 ,1,0,11665 ,1,0,12000 ,1,0,12420 ,1,0,12945 ,1,0,13370 ,1,0,13500 ,1,0,13915 ,1,0,14250 ,1,0,14550 ,1,0,15080 ,1,0,15945 ,1,0,16260 ,1,0,16590 ,1,0,17120 ,1,0,17750 ,1,0,18095 ,1,0,18425 ,1,0,18745 ,1,0,19060 ,1,0,19795 ,1,0,20980 ,1,0,21520 ,1,0,22060 ,1,0,22715 ,1,0,24270 ,1,0,24945 ,1,0,25300 ,1,0,25630 ,1,0,25960 ,1,0,26245 ,1,0,26590 ,1,0,26900 ,1,0,27220 ,1,0,27870 ,1,0,29090 ,1,0,29430 ,1,0,29665 ,1,0,30420 ,1,0,31265 ,1,0,31705 ,1,0,32305 ,1,0,32715 ,1,0,33035 ,1,0,33685 ,1,0,34615 ,1,0,34945 ,1,0,35325 ,1,0,36500 ,1,0,36915 ,1,0,37730 ,1,0,38280 ,1,0,39135 ,1,0,39575 ,1,0,39915 ,1,0,40370 ,1,0,40685 ,1,0,41000 ,1,0,41325 ,1,0,42285 ,1,0,42805 ,1,0,43150 ,1,0,43455 ,1,0,43775 ,1,0,44150 ,1,0,44460 ,1,0,45005 ,1,0,45625 ,1,0,46245 ,1,0,46665 ,1,0,47015 ,1,0,47585 ,1,0,48355 ,1,0,48680 ,1,0,49600 ,1,0,49895 ,1,0,50335 ,1,0,51415 ,1,0,51720 ,1,0,52250 ,1,0,52580 ,1,0,52935 ,1,0,53240 ,1,0,53890 ,1,0,54235 ,1,0,54855 ,1,0,55510 ,1,0,57665 ,1,0,61165 ,1,0,61475 ,1,0,61785 ,1,0,62115 ,1,0,62840 ,1,0,62960 ,1,0,63290 ,1,0,63625 ,1,0,64475 ,1,0,64910 ,1,0,65025 ,1,0,66055 ,1,0,66465 ,1,0,72370 ,1,0,72870 ,1,0,73290 ,1,0,76995 ,1,0,77300 ,1,0,79430 ,1,0,79740 ,1,0,80060 ,1,0,80490 ,1,0,80835 ,1,0,81475 ,1,0,81870 ,1,0,83700 ,1,0,88015 ,1,0,88325 ,1,0,88840 ,1,0,89365 ,1,0,90505 ,1,0,93110 ,1,0,93610 ,1,0,93940 ,1,0,94370 ,1,0,94780 ,1,0,95205 ,1,0,95550 ,1,0,96080 ,1,0,96390 ,1,0,96815 ,1,0,97785 ,1,0,98985 ,1,0,99750 ,1,0,100235 ,1,0,100545 ,1,0,101065 ,1,0,101530 ,1,0,101885 ,1,0,102230 ,1,0,103970 ,1,0,104385 ,1,0,104830 ,1,0,105695 ,1,0,106875 ,1,0,107220 ,1,0,107550 ,1,0,107880 ,1,0,108625 ,1,0,109150 ,1,0,109805 ,1,0,110365 ,1,0,110790 ,1,0,111135 ,1,0,111670 ,1,0,112310 ,1,0,112625 ,1,0,112950 ,1,0,113510 ,1,0,114095 ,1,0,114765 ,1,0,115740 ,1,0,116850 ,1,0,117765 ,1,0,118725 ,1,0,119035 ,1,0,119355 ,1,0,119980 ,1,0,120815 ,1,0,121450 ,1,0,124115 ,1,0,124455 ,1,0,124880 ,1,0,125205 ,1,0,125530 ,1,0,125975 ,1,0,126400 ,1,0,126710 ,1,0,127020 ,1,0,127460 ,1,0,127885 ,1,0,128315 ,1,0,128640 ,1,0,129800 ,1,0,130130 ,1,0,130760 ,1,0,131750 ,1,0,132030 ,1,0,132505 ,1,0,132815 ,1,0,133130 ,1,0,135110 ,1,0,135455 ,1,0,135765 ,1,0,136305 ,1,0,136640 ,1,0,136860 ,1,0,137205 ,1,0,137740 ,1,0,139245 ,1,0,140115 ,1,0,140340 ,1,0,140630 ,1,0,140830 ,1,0,141045 ,1,0,141270 ,1,0,145145 ,1,0,146795 ,1,0,147890 ,1,0,149835 ,1,0,150730 ,1,0,151490 ,1,0,152355 ,1,0,155020 ,1,0,155350 ,1,0,156000 ,1,0,156430 ,1,0,157165 ,1,0,157575 ,1,0,157910 ,1,0,158730 ,1,0,159375 ,1,0,159915 ,1,0,160545 ,1,0,160910 ,1,0,161225 ,1,0,161535 ,1,0,163065 ,1,0,163280 ,1,0,163800 ,1,0,164350 ,1,0,166705 ,1,0,168705 ,1,0,169050 ,1,0,169400 ,1,0,169830 ,1,0,170055 ,1,0,170375 ,1,0,171360 ,1,0,172340 ,1,0,173235 ,1,0,173910 ,1,0,175130 ,1,0,176305 ,1,0,176650 ,1,0,176860 ,1,0,177185 ,1,0,177645 ,1,0,178085 ,1,0,178550 ,1,0,179085 ,1,0,179290 ,1,0,180575 ,1,0,180905 ,1,0,181435 ,1,0,181775 ,1,0,182200 ,1,0,183525 ,1,0,183830 ,1,0,184820 ,1,0,185590 ,1,0,185940 ,1,0,186610 ,1,0,187580 ,1,0,188230 ,1,0,188855 ,1,0,189515 ,1,0,189955 ,1,0,190390 ,1,0,190710 ,1,0,191030 ,1,0,191380 ,1,0,191920 ,1,0,192870 ,1,0,193085 ,1,0,194140 ,1,0,194460 ,1,0,194795 ,1,0,195120 ,1,0,195665 ,1,0,196120 ,1,0,197335 ,1,0,197645 ,1,0,198190 ,1,0,198515 ,1,0,199165 ,1,0,200010 ,1,0,200880 ,1,0,201550 ,1,0,202985 ,1,0,204605 ,1,0,205175 ,1,0,207440 ,1,0,207745 ,1,0,209560 ,1,0,210515 ,1,0,210840 ,1,0,211495 ,1,0,211810 ,1,0,212795 ,1,0,213910 ,1,0,216185 ,1,0,218330 ,1,0,219830 ,1,0,220550 ,1,0,220910 ,1,0,221750 ,1,0,222505 ,1,0,223495 ,1,0,223830 ,1,0,224260 ,1,0,225110 ,1,0,225430 ,1,0,225755 ,1,0,226060 ,1,0,226400 ,1,0,226625 ,1,0,227015 ,1,0,227570 ,1,0,228115 ,1,0,232155 ,1,0,232875 ,1,0,233335 ,1,0,234675 ,1,0,236410 ,1,0,237070 ,1,0,237705 ,1,0,238440 ,1,0,238775 ,1,0,239195 ,1,0,239505 ,1,0,244275 ,1,0,244560 ,1,0,245345 ,1,0,247065 ,1,0,248340 ,1,0,248880 ,1,0,249305 ,1,0,249620 ,1,0,249955 ,1,0,250600 ,1,0,251375 ,1,0,253220 ,1,0,254390 ,1,0,257645 ,1,0,259120 ,1,0,260160 ,1,0,260990 ,1,0,263155 ,1,0,263570 ,1,0,263885 ,1,0,264215 ,1,0,264510 ,1,0,264820 ,1,0,265385 ,1,0,265995 ,1,0,266315 ,1,0,266650 ,1,0,267265 ,1,0,267465 ,1,0,268060 ,1,0,269785 ,1,0,270300 ,1,0,270925 ,1,0,271550 ,1,0,272265 ,1,0,272680 ,1,0,272785 ,1,0,273325 ,1,0,274455 ,1,0,274760 ,1,0,275160 ,1,0,275895 ,1,0,276395 ,1,0,276595 ,1,0,276895 ,1,0,278570 ,1,0,278980 ,1,0,279275 ,1,0,279995 ,1,0,280325 ,1,0,281350 ,1,0,281645 ,1,0,281930 ,1,0,282275 ,1,0,282695 ,1,0,283005 ,1,0,283740 ,1,0,284145 ,1,0,284350 ,1,0,284670 ,1,0,284985 ,1,0,285190 ,1,0,285845 ,1,0,286465 ,1,0,286700 ,1,0,286895 ,1,0,287200 ,1,0,287510 ,1,0,287825 ,1,0,288130 ,1,0,288415 ,1,0,288725 ,1,0,289055 ,1,0,289240 ,1,0,289770 ,1,0,290485 ,1,0,290805 ,1,0,292020 ,1,0,292820 ,1,0,293165 ,1,0,293450 ,1,0,293860 ,1,0,294145 ,1,0,294460 ,1,0,294970 ,1,0,295285 ,1,0,295590 ,1,0,296110 ,1,0,296630 ,1,0,297145 ,1,0,298605 ,1,0,299645 ,1,0,300275 ,1,0,301055 ,1,0,301365 ,1,0,301685 ,1,0,302010 ,1,0,302235 ,1,0,302675 ,1,0,303420 ,1,0,303725 ,1,0,304580 ,1,0,306280 ,1,0,306600 ,1,0,307100 ,1,0,307420 ,1,0,308140 ,1,0,308465 ,1,0,308900 ,1,0,309225 ,1,0,310365 ,1,0,310685 ,1,0,311465 ,1,0,311780 ,1,0,312135 ,1,0,312465 ,1,0,313120 ,1,0,313445 ,1,0,313955 ,1,0,314385 ,1,0,315100 ,1,0,317890 ,1,0,320405 ,1,0,320720 ,1,0,321015 ,1,0,321330 ,1,0,322065 ,1,0,323120 ,1,0,324265 ,1,0,324375 ,1,0,324695 ,1,0,325100 ,1,0,325400 ,1,0,327250 ,1,0,328200 ,1,0,328530 ,1,0,329295 ,1,0,330570 ,1,0,332065 ,1,0,332395 ,1,0,332825 ,1,0,333385 ,1,0,333820 ,1,0,334260 ,1,0,334585 ,1,0,334890 ,1,0,335580 ,1,0,335905 ,1,0,336220 ,1,0,336555 ,1,0,336910 ,1,0,337140 ,1,0,337345 ,1,0,337790 ,1,0,338115 ,1,0,338450 ,1,0,338780 ,1,0,339110 ,1,0,339530 ,1,0,339860 ,1,0,340070 ,1,0,340605 ,1,0,341150 ,1,0,341460 ,1,0,341905 ,1,0,342105 ,1,0,342525 ,1,0,343380 ,1,0,343885 ,1,0,345085 ,1,0,345420 ,1,0,345730 ,1,0,346050 ,1,0,347345 ,1,0,348430 ,1,0,348640 ,1,0,348840 ,1,0,349050 ,1,0,349295 ,1,0,349485 ,1,0,349680 ,1,0,350000 ,1,0,350195 ,1,0,350430 ,1,0,350765 ,1,0,351745 ,1,0,352270 ,1,0,352795 ,1,0,353255 ,1,0,353895 ,1,0,354320 ,1,0,354640 ,1,0,355055 ,1,0,355380 ,1,0,355620 ,1,0,355925 ,1,0,356260 ,1,0,356725 ,1,0,357360 ,1,0,357680 ,1,0,358020 ,1,0,358650 ,1,0,358975 ,1,0,359585 ,1,0,361600 ,1,0,361810 ,1,0,362230 ,1,0,362850 ,1,0,363525 ,1,0,363880 ,1,0,364740 ,1,0,365845 ,1,0,366980 ,1,0,367315 ,1,0,367750 ,1,0,368170 ,1,0,368580 ,1,0,369025 ,1,0,371095 ,1,0,371540 ,1,0,372270 ,1,0,372590 ,1,0,373215 ,1,0,373620 ,1,0,373820 ,1,0,374145 ,1,0,374560 ,1,0,374980 ,1,0,375265 ,1,0,375460 ,1,0,375630 ,1,0,375875 ,1,0,376065 ,1,0,376380 ,1,0,376610 ,1,0,376730 ,1,0,377030 ,1,0,377170 ,1,0,377275 ,1,0,377540 ,1,0,377775 ,1,0,377970 ,1,0,378435 ,1,0,378655 ,1,0,378855 ,1,0,379220 ,1,0,379410 ,1,0,379880 ,1,0,380220 ,1,0,380545 ,1,0,380965 ,1,0,381770 ,1,0,381935 ,1,0,382315 ,1,0,382555 ,1,0,382755 ,1,0,382990 ,1,0,383230 ,1,0,383800 ,1,0,383995 ,1,0,385095 ,1,0,385270 ,1,0,385465 ,1,0,385710 ,1,0,386070 ,1,0,386325 ,1,0,386610 ,1,0,387090 ,1,0,387520 ,1,0,388080 ,1,0,388485 ,1,0,388850 ,1,0,389150 ,1,0,389645 ,1,0,390035 ,1,0,390335 ,1,0,390765 ,1,0,391165 ,1,0,391925 ,1,0,392590 ,1,0,392955 ,1,0,393390 ,1,0,394060 ,1,0,394250 ,1,0,394500 ,1,0,395010 ,1,0,395335 ,1,0,395625 ,1,0,396470 ,1,0,396910 ,1,0,397370 ,1,0,398105 ,1,0,400410 ,1,0,400725 ,1,0,401540 ,1,0,402015 ,1,0,402455 ,1,0,402805 ,1,0,403195 ,1,0,404165 ,1,0,405075 ,1,0,405285 ,1,0,405470 ,1,0,405650 ,1,0,406080 ,1,0,406400 ,1,0,407510 ,1,0,407770 ,1,0,408185 ,1,0,408430 ,1,0,408625 ,1,0,408965 ,1,0,409160 ,1,0,409355 ,1,0,410085 ,1,0,410340 ,1,0,410680 ,1,0,411180 ,1,0,411405 ,1,0,411670 ,1,0,411945 ,1,0,412205 ,1,0,412325 ,1,0,412670 ,1,0,412880 ,1,0,413580 ,1,0,413775 ,1,0,414320 ,1,0,414520 ,1,0,414695 ,1,0,414915 ,1,0,415245 ,1,0,415435 ,1,0,415615 ,1,0,416100 ,1,0,416305 ,1,0,416440 ,1,0,416545 ,1,0,417725 ,1,0,419880 ,1,0,420035 ,1,0,420315 ,1,0,420440 ,1,0,420705 ,1,0,420975 ,1,0,421245 ,1,0,421495 ,1,0,421820 ,1,0,422125 ,1,0,422365 ,1,0,422735 ,1,0,423050 ,1,0,423440 ,1,0,423775 ,1,0,424040 ,1,0,424235 ,1,0,424425 ,1,0,424815 ,1,0,427400 ,1,0,428495 ,1,0,429305 ,1,0,429800 ,1,0,430015 ,1,0,430200 ,1,0,430975 ,1,0,432410 ,1,0,434300 ,1,0,434550 ,1,0,434740 ,1,0,435555 ,1,0,435615 ,1,0,435920 ,1,0,436405 ,1,0,436825 ,1,0,437145 ,1,0,437430 ,1,0,437735 ,1,0,437995 ,1,0,438405 ,1,0,438600 ,1,0,438785 ,1,0,439085 ,1,0,439345 ,1,0,439625 ,1,0,439835 ,1,0,440055 ,1,0,440255 ,1,0,440550 ,1,0,441460 ,1,0,441660 ,1,0,441920 ,1,0,442110 ,1,0,442425 ,1,0,442545 ,1,0,442765 ,1,0,443005 ,1,0,443420 ,1,0,443745 ,1,0,443945 ,1,0,444150 ,1,0,444620 ,1,0,444890 ,1,0,445235 ,1,0,445570 ,1,0,445880 ,1,0,446155 ,1,0,446470 ,1,0,446675 ,1,0,446870 ,1,0,447145 ,1,0,447425 ,1,0,448065 ,1,0,448260 ,1,0,448465 ,1,0,448715 ,1,0,448850 ,1,0,449035 ,1,0,449225 ,1,0,449440 ,1,0,449595 ,1,0,449800 ,1,0,450055 ,1,0,450300 ,1,0,450480 ,1,0,450650 ,1,0,450910 ,1,0,451085 ,1,0,451275 ,1,0,451740 ,1,0,451935 ,1,0,452315 ,1,0,453615 ,1,0,453850 ,1,0,454160 ,1,0,454970 ,1,0,455500 ,1,0,455705 ,1,0,456320 ,1,0,456645 ,1,0,456885 ,1,0,458415 ,1,0,459100 ,1,0,460110 ,1,0,460660 ,1,0,462760 ,1,0,464415 ,1,0,465590 ,1,0,469425 ,1,0,469725 ,1,0,470085 ,1,0,470425 ,1,0,470745 ,1,0,470980 ,1,0,471255 ,1,0,471485 ,1,0,471905 ,1,0,472385 ,1,0,472690 ,1,0,472905 ,1,0,473325 ,1,0,473735 ,1,0,473920 ,1,0,474245 ,1,0,474515 ,1,0,474920 ,1,0,475445 ,1,0,475920 ,1,0,476380 ,1,0,476840 ,1,0,477240 ,1,0,477610 ,1,0,477845 ,1,0,478165 ,1,0,478495 ,1,0,478820 ,1,0,479175 ,1,0,479380 ,1,0,479510 ,1,0,479695 ,1,0,479950 ,1,0,480285 ,1,0,480480 ,1,0,480765 ,1,0,481240 ,1,0,481425 ,1,0,481605 ,1,0,481815 ,1,0,482000 ,1,0,482205 ,1,0,482385 ,1,0,482780 ,1,0,484780 ,1,0,485445 ,1,0,485660 ,1,0,485820 ,1,0,486095 ,1,0,486280 ,1,0,486650 ,1,0,486850 ,1,0,487485 ,1,0,487630 ,1,0,488750 ,1,0,489775 ,1,0,490100 ,1,0,490670 ,1,0,491135 ,1,0,491425 ,1,0,491625 ,1,0,491885 ,1,0,492090 ,1,0,494925 ,1,0,495205 ,1,0,495405 ,1,0,495600 ,1,0,496060 ,1,0,496240 ,1,0,496540 ,1,0,497500 ,1,0,497775 ,1,0,497965 ,1,0,498185 ,1,0,498375 ,1,0,498875 ,1,0,499060 ,1,0,499250 ,1,0,499455 ,1,0,499725 ,1,0,500040 ,1,0,500570 ,1,0,500750 ,1,0,501940 ,1,0,502195 ,1,0,502415 ,1,0,502620 ,1,0,502815 ,1,0,503025 ,1,0,503265 ,1,0,503465 ,1,0,503665 ,1,0,503865 ,1,0,504065 ,1,0,504270 ,1,0,504455 ,1,0,504710 ,1,0,504920 ,1,0,505105 ,1,0,505360 ,1,0,505885 ,1,0,506050 ,1,0,506315 ,1,0,506550 ,1,0,506770 ,1,0,506970 ,1,0,507160 ,1,0,508350 ,1,0,508845 ,1,0,509445 ,1,0,509880 ,1,0,510145 ,1,0,510450 ,1,0,510710 ,1,0,511060 ,1,0,511275 ,1,0,511515 ,1,0,511695 ,1,0,511895 ,1,0,513240 ,1,0,513695 ,1,0,514020 ,1,0,514155 ,1,0,514360 ,1,0,514735 ,1,0,515105 ,1,0,515355 ,1,0,515550 ,1,0,516030 ,1,0,516230 ,1,0,516485 ,1,0,516670 ,1,0,516850 ,1,0,517185 ,1,0,517360 ,1,0,517545 ,1,0,517750 ,1,0,517875 ,1,0,518150 ,1,0,518335 ,1,0,518520 ,1,0,519100 ,1,0,519650 ,1,0,519850 ,1,0,520045 ,1,0,521475 ,1,0,521735 ,1,0,522015 ,1,0,522210 ,1,0,524580 ,1,0,525710 ,1,0,525870 ,1,0,530180 ,1,0,530705 ,1,0,531435 ,1,0,531660 ,1,0,532325 ,1,0,532990 ,1,0,533190 ,1,0,533385 ,1,0,533600 ,1,0,534005 ,1,0,534345 ,1,0,534730 ,1,0,545605 ,1,0,548945 ,1,0,549135 ,1,0,549335 ,1,0,549540 ,1,0,550245 ,1,0,552115 ,1,0,552180 ,1,0,552450 ,1,0,552655 ,1,0,553190 ,1,0,553850 ,1,0,554060 ,1,0,554805 ,1,0,554990 ,1,0,555165 ,1,0,555375 ,1,0,555835 ,1,0,556365 ,1,0,556620 ,1,0,556990 ,1,0,557325 ,1,0,557600 ,1,0,558010 ,1,0,558615 ,1,0,559055 ,1,0,559225 ,1,0,559630 ,1,0,559830 ,1,0,560055 ,1,0,560250 ,1,0,560440 ,1,0,561005 ,1,0,561210 ,1,0,561415 ,1,0,561610 ,1,0,561810 ,1,0,563350 ,1,0,563545 ,1,0,563835 ,1,0,564045 ,1,0,564225 ,1,0,564410 ,1,0,564610 ,1,0,564785 ,1,0,564985 ,1,0,565190 ,1,0,565380 ,1,0,568535 ,1,0,569100 ,1,0,569365 ,1,0,569645 ,1,0,569935 ,1,0,570190 ,1,0,570650 ,1,0,570855 ,1,0,571135 ,1,0,571355 ,1,0,571615 ,1,0,572480 ,1,0,574150 ,1,0,574665 ,1,0,574910 ,1,0,575380 ,1,0,575630 ,1,0,575885 ,1,0,576145 ,1,0,576400 ,1,0,576645 ,1,0,576895 ,1,0,577145 ,1,0,577395 ,1,0,577645 ,1,0,577930 ,1,0,578190 ,1,0,578985 ,1,0,579665 ,1,0,581610 ,1,0,581735 ,1,0,582020 ,1,0,582645 ,1,0,582925 ,1,0,583215 ,1,0,583480 ,1,0,583730 ,1,0,583995 ,1,0,584255 ,1,0,584530 ,1,0,584795 ,1,0,584990 ,1,0,585230 ,1,0,585500 ,1,0,586085 ,1,0,586435 ,1,0,586760 ,1,0,587085 ,1,0,587305 ,1,0,587570 ,1,0,587840 ,1,0,588125 ,1,0,588390 ,1,0,588645 ,1,0,588940 ,1,0,589970 ,1,0,590690 ,1,0,593480 ,1,0,593770 ,1,0,593965 ,1,0,594255 ,1,0,594715 ,1,0,594910 ,1,0,595280 ,1,0,595555 ,1,0,595925 ,1,0,596185 ,1,0,596580 ,1,0,596935 ,1,0,597185 ,1,0,597380 ,1,0,597710 ,1,0,598010 ,1,0,598255 ,1,0,598485 ,1,0,600430 ,1,0,600615 ,1,0,601155 ,1,0,601860 ,1,0,602280 ,1,0,602515 ,1,0,602710 ,1,0,603115 ,1,0,603480 ,1,0,603695 ,1,0,603910 ,1,0,604130 ,1,0,604325 ,1,0,604740 ,1,0,604970 ,1,0,605455 ,1,0,607140 ,1,0,607315 ,1,0,607540 ,1,0,607750 ,1,0,607945 ,1,0,608380 ,1,0,608505 ,1,0,608730 ,1,0,608920 ,1,0,609130 ,1,0,609315 ,1,0,609555 ,1,0,609810 ,1,0,610200 ,1,0,610410 ,1,0,610570 ,1,0,610795 ,1,0,611150 ,1,0,611720 ,1,0,611930 ,1,0,612115 ,1,0,612245 ,1,0,612430 ,1,0,612605 ,1,0,612790 ,1,0,613370 ,1,0,613495 ,1,0,613675 ,1,0,615445 ,1,0,615910 ,1,0,616395 ,1,0,616585 ,1,0,616780 ,1,0,616970 ,1,0,617105 ,1,0,619905 ,1,0,620905 ,1,0,621270 ,1,0,621450 ,1,0,621620 ,1,0,622235 ,1,0,622630 ,1,0,622745 ,1,0,623465 ,1,0,623660 ,1,0,623790 ,1,0,624045 ,1,0,624265 ,1,0,624435 ,1,0,624640 ,1,0,624820 ,1,0,624995 ,1,0,625780 ,1,0,625980 ,1,0,626160 ,1,0,626335 ,1,0,626605 ,1,0,626875 ,1,0,627580 ,1,0,627890 ,1,0,628585 ,1,0,628830 ,1,0,629000 ,1,0,629210 ,1,0,629480 ,1,0,629670 ,1,0,629865 ,1,0,630860 ,1,0,631210 ,1,0,631525 ,1,0,631850 ,1,0,632895 ,1,0,633200 ,1,0,633835 ,1,0,634410 ,1,0,635625 ,1,0,635860 ,1,0,636080 ,1,0,636535 ,1,0,637250 ,1,0,637360 ,1,0,637760 ,1,0,637870 ,1,0,638185 ,1,0,638420 ,1,0,638905 ,1,0,639095 ,1,0,639555 ,1,0,639740 ,1,0,640995 ,1,0,642305 ,1,0,643215 ,1,0,643715 ,1,0,644250 ,1,0,644715 ,1,0,645200 ,1,0,645670 ,1,0,646185 ,1,0,646520 ,1,0,647445 ,1,0,647970 ,1,0,648225 ,1,0,649160 ,1,0,649710 ,1,0,649940 ,1,0,650070 ,1,0,650315 ,1,0,651540 ,1,0,651890 ,1,0,652530 ,1,0,652710 ,1,0,653630 ,1,0,654095 ,1,0,654515 ,1,0,654675 ,1,0,655680 ,1,0,655925 ,1,0,656120 ,1,0,656285 ,1,0,656550 ,1,0,656775 ,1,0,657085 ,1,0,657275 ,1,0,657770 ,1,0,658130 ,1,0,659025 ,1,0,659510 ,1,0,659710 ,1,0,659975 ,1,0,660285 ,1,0,661415 ,1,0,661860 ,1,0,662055 ,1,0,662340 ,1,0,662450 ,1,0,662580 ,1,0,663010 ,1,0,663225 ,1,0,663900 ,1,0,664460 ,1,0,664810 ,1,0,665210 ,1,0,665890 ,1,0,666405 ,1,0,666870 ,1,0,667060 ,1,0,667255 ,1,0,667470 ,1,0,667645 ,1,0,667905 ,1,0,668085 ,1,0,668310 ,1,0,668545 ,1,0,668980 ,1,0,669200 ,1,0,669320 ,1,0,669455 ,1,0,669585 ,1,0,669710 ,1,0,669835 ,1,0,669965 ,1,0,670430 ,1,0,670570 ,1,0,670715 ,1,0,670835 ,1,0,671190 ,1,0,671840 ,1,0,672250 ,1,0,672980 ,1,0,673440 ,1,0,673645 ,1,0,674075 ,1,0,674535 ,1,0,675025 ,1,0,395 ,1,0,975 ,1,0,2040 ,1,0,2795 ,1,0,2995 ,1,0,3435 ,1,0,3845 ,1,0,4270 ,1,0,4935 ,1,0,6310 ,1,0,8160 ,1,0,10155 ,1,0,10690 ,1,0,11110 ,1,0,12115 ,1,0,12425 ,1,0,12640 ,1,0,12950 ,1,0,13270 ,1,0,14015 ,1,0,14645 ,1,0,15085 ,1,0,15535 ,1,0,16805 ,1,0,17105 ,1,0,17635 ,1,0,17855 ,1,0,18305 ,1,0,20755 ,1,0,21080 ,1,0,21620 ,1,0,22720 ,1,0,23405 ,1,0,24045 ,1,0,24390 ,1,0,24625 ,1,0,24845 ,1,0,25520 ,1,0,26490 ,1,0,26905 ,1,0,27330 ,1,0,27770 ,1,0,28215 ,1,0,28555 ,1,0,28965 ,1,0,29435 ,1,0,30105 ,1,0,30625 ,1,0,31055 ,1,0,31910 ,1,0,32710 ,1,0,33140 ,1,0,34000 ,1,0,34840 ,1,0,35190 ,1,0,35850 ,1,0,36910 ,1,0,38500 ,1,0,38920 ,1,0,39255 ,1,0,39580 ,1,0,39920 ,1,0,40240 ,1,0,40575 ,1,0,40880 ,1,0,41215 ,1,0,41635 ,1,0,41965 ,1,0,42395 ,1,0,42705 ,1,0,43040 ,1,0,43460 ,1,0,43905 ,1,0,44350 ,1,0,44675 ,1,0,45095 ,1,0,45430 ,1,0,45840 ,1,0,46250 ,1,0,48880 ,1,0,49605 ,1,0,50015 ,1,0,50340 ,1,0,50970 ,1,0,51610 ,1,0,52145 ,1,0,52695 ,1,0,53035 ,1,0,53775 ,1,0,54750 ,1,0,55190 ,1,0,56050 ,1,0,56460 ,1,0,56905 ,1,0,57230 ,1,0,57670 ,1,0,58425 ,1,0,59030 ,1,0,59690 ,1,0,60300 ,1,0,60850 ,1,0,61055 ,1,0,62215 ,1,0,62845 ,1,0,63295 ,1,0,64370 ,1,0,64795 ,1,0,65435 ,1,0,67090 ,1,0,67715 ,1,0,69995 ,1,0,70290 ,1,0,70610 ,1,0,72035 ,1,0,72350 ,1,0,73070 ,1,0,73390 ,1,0,74700 ,1,0,75125 ,1,0,75520 ,1,0,76035 ,1,0,76330 ,1,0,77000 ,1,0,77305 ,1,0,77810 ,1,0,78240 ,1,0,78580 ,1,0,79960 ,1,0,80710 ,1,0,81160 ,1,0,81980 ,1,0,82295 ,1,0,82515 ,1,0,83075 ,1,0,83375 ,1,0,84005 ,1,0,84555 ,1,0,84850 ,1,0,85310 ,1,0,85740 ,1,0,86395 ,1,0,86800 ,1,0,87225 ,1,0,87685 ,1,0,88125 ,1,0,88520 ,1,0,89980 ,1,0,90595 ,1,0,91010 ,1,0,92045 ,1,0,92580 ,1,0,93115 ,1,0,93615 ,1,0,93840 ,1,0,94270 ,1,0,94995 ,1,0,95555 ,1,0,96175 ,1,0,96705 ,1,0,97360 ,1,0,98015 ,1,0,98340 ,1,0,99530 ,1,0,99870 ,1,0,100240 ,1,0,102420 ,1,0,102970 ,1,0,103405 ,1,0,103730 ,1,0,104180 ,1,0,104505 ,1,0,105495 ,1,0,106095 ,1,0,106535 ,1,0,106880 ,1,0,107330 ,1,0,107655 ,1,0,108075 ,1,0,108400 ,1,0,108840 ,1,0,109155 ,1,0,109585 ,1,0,109930 ,1,0,110370 ,1,0,110680 ,1,0,111015 ,1,0,111350 ,1,0,111785 ,1,0,112400 ,1,0,113395 ,1,0,114420 ,1,0,114545 ,1,0,114875 ,1,0,115215 ,1,0,119040 ,1,0,119460 ,1,0,119780 ,1,0,120195 ,1,0,120820 ,1,0,121145 ,1,0,121665 ,1,0,122015 ,1,0,122670 ,1,0,123700 ,1,0,124120 ,1,0,124460 ,1,0,126495 ,1,0,127465 ,1,0,127870 ,1,0,128505 ,1,0,128625 ,1,0,128940 ,1,0,130020 ,1,0,135115 ,1,0,135970 ,1,0,136310 ,1,0,137190 ,1,0,137505 ,1,0,139250 ,1,0,139790 ,1,0,139990 ,1,0,141380 ,1,0,141890 ,1,0,143205 ,1,0,144370 ,1,0,145480 ,1,0,146365 ,1,0,147130 ,1,0,151590 ,1,0,152135 ,1,0,153950 ,1,0,154595 ,1,0,154920 ,1,0,155250 ,1,0,155455 ,1,0,156635 ,1,0,156855 ,1,0,157170 ,1,0,157915 ,1,0,159380 ,1,0,160770 ,1,0,163700 ,1,0,164025 ,1,0,164355 ,1,0,164680 ,1,0,164990 ,1,0,165310 ,1,0,167145 ,1,0,167700 ,1,0,168030 ,1,0,168470 ,1,0,168825 ,1,0,169170 ,1,0,170685 ,1,0,171260 ,1,0,172120 ,1,0,172440 ,1,0,172875 ,1,0,173450 ,1,0,174225 ,1,0,174680 ,1,0,175135 ,1,0,175455 ,1,0,175755 ,1,0,176100 ,1,0,176430 ,1,0,176770 ,1,0,177415 ,1,0,178090 ,1,0,178325 ,1,0,178875 ,1,0,179950 ,1,0,180780 ,1,0,181010 ,1,0,181340 ,1,0,181655 ,1,0,182205 ,1,0,182960 ,1,0,183620 ,1,0,184375 ,1,0,184825 ,1,0,185945 ,1,0,186935 ,1,0,187160 ,1,0,188010 ,1,0,188545 ,1,0,188860 ,1,0,189960 ,1,0,190500 ,1,0,190830 ,1,0,191255 ,1,0,191595 ,1,0,191925 ,1,0,192465 ,1,0,192760 ,1,0,193090 ,1,0,193730 ,1,0,194035 ,1,0,194465 ,1,0,195815 ,1,0,196335 ,1,0,196780 ,1,0,197115 ,1,0,197650 ,1,0,200125 ,1,0,201665 ,1,0,201985 ,1,0,202285 ,1,0,204810 ,1,0,205180 ,1,0,205615 ,1,0,206040 ,1,0,206685 ,1,0,207110 ,1,0,207445 ,1,0,209345 ,1,0,209675 ,1,0,210090 ,1,0,212465 ,1,0,212800 ,1,0,213135 ,1,0,216190 ,1,0,216945 ,1,0,217480 ,1,0,217905 ,1,0,218320 ,1,0,218670 ,1,0,218990 ,1,0,219310 ,1,0,219935 ,1,0,220675 ,1,0,221110 ,1,0,223725 ,1,0,223950 ,1,0,224385 ,1,0,229890 ,1,0,230115 ,1,0,231825 ,1,0,232260 ,1,0,237805 ,1,0,238115 ,1,0,238650 ,1,0,244565 ,1,0,245005 ,1,0,245325 ,1,0,246830 ,1,0,248460 ,1,0,249845 ,1,0,250070 ,1,0,250485 ,1,0,251145 ,1,0,251475 ,1,0,252475 ,1,0,254065 ,1,0,254395 ,1,0,256390 ,1,0,256690 ,1,0,257000 ,1,0,257855 ,1,0,258290 ,1,0,258810 ,1,0,259010 ,1,0,259330 ,1,0,259560 ,1,0,260885 ,1,0,261310 ,1,0,262240 ,1,0,265165 ,1,0,266000 ,1,0,266545 ,1,0,267070 ,1,0,269475 ,1,0,270205 ,1,0,271135 ,1,0,271865 ,1,0,279775 ,1,0,280315 ,1,0,280635 ,1,0,280945 ,1,0,281240 ,1,0,281935 ,1,0,282595 ,1,0,284570 ,1,0,285625 ,1,0,285930 ,1,0,286360 ,1,0,286785 ,1,0,287315 ,1,0,287830 ,1,0,288325 ,1,0,289245 ,1,0,289450 ,1,0,289985 ,1,0,290490 ,1,0,290915 ,1,0,294655 ,1,0,295495 ,1,0,298490 ,1,0,298925 ,1,0,299230 ,1,0,300280 ,1,0,301785 ,1,0,302240 ,1,0,302680 ,1,0,303000 ,1,0,303530 ,1,0,304045 ,1,0,304465 ,1,0,305025 ,1,0,305335 ,1,0,305645 ,1,0,306155 ,1,0,306490 ,1,0,307830 ,1,0,308145 ,1,0,309005 ,1,0,309635 ,1,0,310165 ,1,0,312020 ,1,0,312470 ,1,0,313450 ,1,0,315220 ,1,0,315690 ,1,0,316315 ,1,0,317365 ,1,0,317690 ,1,0,318205 ,1,0,318740 ,1,0,319980 ,1,0,321120 ,1,0,323125 ,1,0,323340 ,1,0,323755 ,1,0,324380 ,1,0,325610 ,1,0,326020 ,1,0,326625 ,1,0,326945 ,1,0,328190 ,1,0,328735 ,1,0,329190 ,1,0,329520 ,1,0,329825 ,1,0,330130 ,1,0,330670 ,1,0,331180 ,1,0,331725 ,1,0,332830 ,1,0,333265 ,1,0,333945 ,1,0,334360 ,1,0,335000 ,1,0,335585 ,1,0,336110 ,1,0,336435 ,1,0,336800 ,1,0,337900 ,1,0,338440 ,1,0,338785 ,1,0,339650 ,1,0,339965 ,1,0,340275 ,1,0,340610 ,1,0,340935 ,1,0,341255 ,1,0,342640 ,1,0,343055 ,1,0,344430 ,1,0,344745 ,1,0,345195 ,1,0,345635 ,1,0,346055 ,1,0,346380 ,1,0,347565 ,1,0,348425 ,1,0,349055 ,1,0,349385 ,1,0,349895 ,1,0,350435 ,1,0,350770 ,1,0,351635 ,1,0,352150 ,1,0,352800 ,1,0,353260 ,1,0,353460 ,1,0,353565 ,1,0,353900 ,1,0,354210 ,1,0,354550 ,1,0,354845 ,1,0,355175 ,1,0,355500 ,1,0,355820 ,1,0,356145 ,1,0,356485 ,1,0,356730 ,1,0,357030 ,1,0,357365 ,1,0,357685 ,1,0,358025 ,1,0,358235 ,1,0,358540 ,1,0,358860 ,1,0,359175 ,1,0,359500 ,1,0,359795 ,1,0,360135 ,1,0,360345 ,1,0,360570 ,1,0,360765 ,1,0,360980 ,1,0,361180 ,1,0,361385 ,1,0,361710 ,1,0,362015 ,1,0,362235 ,1,0,362425 ,1,0,362630 ,1,0,362855 ,1,0,363205 ,1,0,363415 ,1,0,363640 ,1,0,363885 ,1,0,364100 ,1,0,364325 ,1,0,364530 ,1,0,364745 ,1,0,364975 ,1,0,365175 ,1,0,365410 ,1,0,365735 ,1,0,366255 ,1,0,366455 ,1,0,366880 ,1,0,367210 ,1,0,367425 ,1,0,367630 ,1,0,367965 ,1,0,368475 ,1,0,368690 ,1,0,368905 ,1,0,369135 ,1,0,369965 ,1,0,370160 ,1,0,370365 ,1,0,370575 ,1,0,370885 ,1,0,371415 ,1,0,371745 ,1,0,372380 ,1,0,372595 ,1,0,372800 ,1,0,373105 ,1,0,373430 ,1,0,374350 ,1,0,374880 ,1,0,375070 ,1,0,375380 ,1,0,375750 ,1,0,375880 ,1,0,376010 ,1,0,376125 ,1,0,376245 ,1,0,376430 ,1,0,376915 ,1,0,378050 ,1,0,379225 ,1,0,379395 ,1,0,379815 ,1,0,380080 ,1,0,380400 ,1,0,380735 ,1,0,381095 ,1,0,381215 ,1,0,381405 ,1,0,381535 ,1,0,381760 ,1,0,381885 ,1,0,382495 ,1,0,382620 ,1,0,382740 ,1,0,383300 ,1,0,383605 ,1,0,383860 ,1,0,384070 ,1,0,384310 ,1,0,384430 ,1,0,384745 ,1,0,384875 ,1,0,384980 ,1,0,385275 ,1,0,385470 ,1,0,385595 ,1,0,385715 ,1,0,385825 ,1,0,385955 ,1,0,386075 ,1,0,387770 ,1,0,387895 ,1,0,388010 ,1,0,388145 ,1,0,388260 ,1,0,388475 ,1,0,388740 ,1,0,389320 ,1,0,389955 ,1,0,390770 ,1,0,391170 ,1,0,391855 ,1,0,392660 ,1,0,392960 ,1,0,393100 ,1,0,393710 ,1,0,393905 ,1,0,394065 ,1,0,394575 ,1,0,394700 ,1,0,395060 ,1,0,395190 ,1,0,396760 ,1,0,397740 ,1,0,397995 ,1,0,398290 ,1,0,398430 ,1,0,398560 ,1,0,398820 ,1,0,399885 ,1,0,400120 ,1,0,400345 ,1,0,400525 ,1,0,400650 ,1,0,400855 ,1,0,401040 ,1,0,401230 ,1,0,401430 ,1,0,401545 ,1,0,401675 ,1,0,401830 ,1,0,401955 ,1,0,402075 ,1,0,402205 ,1,0,402335 ,1,0,402460 ,1,0,402600 ,1,0,402745 ,1,0,402950 ,1,0,403125 ,1,0,403275 ,1,0,403460 ,1,0,403590 ,1,0,403730 ,1,0,403870 ,1,0,404000 ,1,0,404170 ,1,0,404570 ,1,0,404820 ,1,0,405005 ,1,0,405215 ,1,0,405475 ,1,0,405800 ,1,0,405930 ,1,0,406075 ,1,0,406200 ,1,0,406325 ,1,0,406460 ,1,0,406780 ,1,0,406905 ,1,0,407030 ,1,0,407150 ,1,0,407390 ,1,0,407580 ,1,0,407900 ,1,0,408435 ,1,0,408560 ,1,0,408700 ,1,0,408840 ,1,0,409025 ,1,0,409165 ,1,0,409415 ,1,0,409560 ,1,0,409810 ,1,0,410140 ,1,0,410265 ,1,0,410535 ,1,0,410795 ,1,0,410920 ,1,0,411120 ,1,0,411325 ,1,0,411465 ,1,0,411810 ,1,0,412020 ,1,0,412210 ,1,0,412330 ,1,0,412575 ,1,0,412865 ,1,0,413065 ,1,0,413385 ,1,0,413885 ,1,0,414000 ,1,0,414130 ,1,0,414630 ,1,0,414920 ,1,0,415045 ,1,0,415250 ,1,0,415725 ,1,0,415915 ,1,0,416295 ,1,0,416620 ,1,0,416795 ,1,0,416910 ,1,0,417090 ,1,0,417200 ,1,0,417355 ,1,0,417545 ,1,0,418100 ,1,0,418235 ,1,0,418710 ,1,0,418825 ,1,0,419030 ,1,0,419140 ,1,0,419280 ,1,0,420235 ,1,0,420380 ,1,0,420500 ,1,0,420635 ,1,0,420790 ,1,0,420905 ,1,0,421115 ,1,0,421230 ,1,0,421615 ,1,0,422250 ,1,0,422445 ,1,0,422605 ,1,0,422740 ,1,0,422865 ,1,0,423305 ,1,0,423780 ,1,0,423965 ,1,0,424300 ,1,0,424820 ,1,0,425280 ,1,0,425405 ,1,0,425835 ,1,0,425965 ,1,0,426120 ,1,0,426265 ,1,0,426460 ,1,0,426770 ,1,0,427040 ,1,0,427405 ,1,0,427650 ,1,0,427905 ,1,0,428025 ,1,0,428230 ,1,0,428360 ,1,0,428575 ,1,0,428690 ,1,0,428875 ,1,0,429060 ,1,0,429190 ,1,0,429380 ,1,0,429805 ,1,0,430020 ,1,0,430480 ,1,0,430665 ,1,0,430980 ,1,0,431505 ,1,0,432080 ,1,0,432335 ,1,0,432480 ,1,0,432680 ,1,0,433070 ,1,0,433200 ,1,0,433340 ,1,0,433470 ,1,0,433595 ,1,0,433740 ,1,0,433860 ,1,0,433975 ,1,0,434180 ,1,0,434365 ,1,0,434555 ,1,0,434950 ,1,0,435210 ,1,0,435410 ,1,0,435680 ,1,0,435820 ,1,0,436145 ,1,0,436295 ,1,0,436410 ,1,0,436545 ,1,0,436690 ,1,0,436945 ,1,0,437230 ,1,0,437435 ,1,0,437560 ,1,0,437740 ,1,0,437870 ,1,0,437975 ,1,0,438130 ,1,0,438335 ,1,0,438465 ,1,0,438715 ,1,0,438960 ,1,0,439090 ,1,0,439350 ,1,0,439490 ,1,0,439700 ,1,0,439890 ,1,0,440120 ,1,0,440260 ,1,0,440370 ,1,0,440700 ,1,0,440930 ,1,0,441065 ,1,0,441260 ,1,0,441450 ,1,0,441665 ,1,0,441795 ,1,0,441985 ,1,0,442115 ,1,0,442250 ,1,0,442625 ,1,0,442880 ,1,0,443080 ,1,0,443220 ,1,0,443345 ,1,0,443660 ,1,0,443950 ,1,0,444230 ,1,0,444350 ,1,0,445575 ,1,0,445720 ,1,0,446025 ,1,0,446225 ,1,0,446475 ,1,0,446650 ,1,0,446875 ,1,0,447080 ,1,0,447220 ,1,0,447350 ,1,0,447610 ,1,0,447805 ,1,0,447995 ,1,0,448265 ,1,0,448455 ,1,0,448650 ,1,0,448765 ,1,0,449015 ,1,0,449350 ,1,0,449650 ,1,0,449925 ,1,0,450120 ,1,0,450485 ,1,0,450655 ,1,0,450760 ,1,0,450915 ,1,0,451035 ,1,0,451265 ,1,0,451415 ,1,0,451620 ,1,0,451810 ,1,0,451940 ,1,0,452135 ,1,0,452255 ,1,0,452490 ,1,0,452650 ,1,0,452785 ,1,0,452920 ,1,0,453980 ,1,0,454100 ,1,0,454310 ,1,0,454565 ,1,0,454705 ,1,0,454845 ,1,0,455040 ,1,0,455245 ,1,0,455435 ,1,0,456325 ,1,0,456625 ,1,0,456810 ,1,0,457015 ,1,0,457155 ,1,0,457350 ,1,0,457490 ,1,0,457620 ,1,0,457820 ,1,0,457960 ,1,0,458210 ,1,0,458400 ,1,0,458630 ,1,0,458755 ,1,0,458920 ,1,0,459035 ,1,0,459155 ,1,0,459890 ,1,0,460060 ,1,0,460165 ,1,0,460385 ,1,0,460585 ,1,0,460920 ,1,0,461195 ,1,0,461325 ,1,0,461650 ,1,0,461795 ,1,0,461920 ,1,0,462115 ,1,0,462380 ,1,0,462510 ,1,0,462850 ,1,0,462985 ,1,0,463150 ,1,0,463275 ,1,0,463475 ,1,0,463935 ,1,0,464670 ,1,0,464930 ,1,0,465455 ,1,0,465860 ,1,0,466170 ,1,0,466850 ,1,0,467020 ,1,0,467145 ,1,0,467310 ,1,0,467705 ,1,0,467890 ,1,0,468135 ,1,0,468425 ,1,0,469305 ,1,0,469500 ,1,0,469660 ,1,0,469835 ,1,0,470010 ,1,0,474370 ,1,0,474600 ,1,0,474725 ,1,0,474855 ,1,0,475360 ,1,0,475510 ,1,0,475865 ,1,0,476010 ,1,0,476385 ,1,0,476635 ,1,0,476845 ,1,0,478035 ,1,0,478500 ,1,0,478700 ,1,0,478900 ,1,0,479255 ,1,0,479385 ,1,0,479515 ,1,0,479620 ,1,0,479765 ,1,0,479880 ,1,0,480030 ,1,0,480155 ,1,0,480980 ,1,0,481170 ,1,0,481300 ,1,0,481430 ,1,0,481680 ,1,0,482005 ,1,0,483950 ,1,0,484120 ,1,0,484245 ,1,0,484385 ,1,0,484520 ,1,0,484650 ,1,0,484775 ,1,0,485090 ,1,0,485235 ,1,0,485600 ,1,0,485715 ,1,0,485825 ,1,0,485970 ,1,0,486160 ,1,0,486285 ,1,0,486405 ,1,0,486540 ,1,0,486935 ,1,0,487055 ,1,0,487235 ,1,0,487365 ,1,0,487490 ,1,0,487705 ,1,0,487905 ,1,0,488020 ,1,0,488155 ,1,0,488285 ,1,0,488415 ,1,0,488615 ,1,0,488755 ,1,0,488875 ,1,0,488990 ,1,0,489130 ,1,0,489250 ,1,0,489375 ,1,0,489645 ,1,0,489770 ,1,0,489985 ,1,0,490180 ,1,0,490405 ,1,0,490595 ,1,0,490875 ,1,0,491140 ,1,0,491355 ,1,0,491550 ,1,0,491815 ,1,0,492520 ,1,0,492645 ,1,0,492765 ,1,0,492890 ,1,0,493070 ,1,0,493230 ,1,0,493360 ,1,0,493540 ,1,0,493685 ,1,0,493905 ,1,0,494150 ,1,0,494465 ,1,0,494660 ,1,0,494790 ,1,0,495005 ,1,0,495210 ,1,0,495410 ,1,0,495540 ,1,0,495665 ,1,0,495850 ,1,0,496125 ,1,0,496245 ,1,0,496545 ,1,0,496670 ,1,0,496855 ,1,0,497070 ,1,0,497240 ,1,0,497375 ,1,0,497580 ,1,0,497705 ,1,0,497835 ,1,0,498110 ,1,0,498310 ,1,0,498455 ,1,0,498590 ,1,0,498735 ,1,0,498865 ,1,0,499055 ,1,0,499320 ,1,0,499650 ,1,0,500030 ,1,0,500170 ,1,0,500300 ,1,0,500510 ,1,0,501190 ,1,0,501335 ,1,0,501470 ,1,0,501800 ,1,0,501945 ,1,0,502120 ,1,0,502275 ,1,0,502470 ,1,0,502685 ,1,0,502820 ,1,0,503030 ,1,0,503180 ,1,0,503390 ,1,0,503530 ,1,0,503670 ,1,0,503795 ,1,0,504000 ,1,0,504385 ,1,0,504525 ,1,0,504635 ,1,0,504860 ,1,0,504995 ,1,0,514365 ,1,0,514480 ,1,0,515485 ,1,0,515620 ,1,0,517610 ,1,0,518525 ,1,0,518755 ,1,0,518875 ,1,0,518985 ,1,0,519225 ,1,0,519395 ,1,0,519720 ,1,0,519855 ,1,0,519975 ,1,0,520640 ,1,0,521100 ,1,0,522020 ,1,0,522215 ,1,0,522355 ,1,0,522965 ,1,0,523425 ,1,0,524655 ,1,0,524850 ,1,0,525200 ,1,0,527265 ,1,0,528935 ,1,0,529120 ,1,0,530250 ,1,0,530430 ,1,0,530985 ,1,0,531365 ,1,0,531665 ,1,0,531850 ,1,0,532255 ,1,0,532395 ,1,0,532595 ,1,0,532735 ,1,0,532875 ,1,0,532995 ,1,0,533120 ,1,0,533325 ,1,0,533860 ,1,0,534450 ,1,0,534735 ,1,0,535865 ,1,0,536060 ,1,0,536385 ,1,0,537160 ,1,0,537290 ,1,0,537410 ,1,0,537590 ,1,0,537785 ,1,0,538040 ,1,0,538265 ,1,0,538860 ,1,0,539730 ,1,0,539925 ,1,0,540080 ,1,0,540695 ,1,0,541045 ,1,0,541175 ,1,0,541335 ,1,0,541470 ,1,0,541600 ,1,0,541855 ,1,0,542130 ,1,0,542335 ,1,0,542780 ,1,0,545955 ,1,0,546135 ,1,0,546480 ,1,0,546930 ,1,0,547280 ,1,0,547410 ,1,0,547850 ,1,0,548085 ,1,0,548300 ,1,0,548775 ,1,0,549070 ,1,0,549275 ,1,0,550545 ,1,0,550740 ,1,0,552320 ,1,0,552455 ,1,0,553935 ,1,0,554130 ,1,0,556890 ,1,0,557055 ,1,0,557195 ,1,0,557330 ,1,0,557475 ,1,0,557605 ,1,0,557750 ,1,0,557890 ,1,0,558015 ,1,0,558680 ,1,0,559060 ,1,0,559230 ,1,0,559380 ,1,0,559505 ,1,0,559635 ,1,0,560120 ,1,0,560310 ,1,0,561010 ,1,0,561535 ,1,0,561750 ,1,0,561955 ,1,0,562110 ,1,0,562285 ,1,0,562565 ,1,0,562710 ,1,0,562840 ,1,0,562970 ,1,0,563155 ,1,0,563340 ,1,0,563485 ,1,0,563600 ,1,0,563710 ,1,0,563815 ,1,0,564050 ,1,0,564230 ,1,0,564415 ,1,0,564615 ,1,0,564740 ,1,0,564870 ,1,0,565255 ,1,0,565655 ,1,0,565765 ,1,0,565910 ,1,0,566045 ,1,0,566180 ,1,0,566310 ,1,0,566575 ,1,0,567005 ,1,0,567125 ,1,0,567250 ,1,0,567380 ,1,0,567500 ,1,0,567640 ,1,0,567835 ,1,0,567970 ,1,0,568145 ,1,0,568265 ,1,0,568415 ,1,0,568595 ,1,0,568820 ,1,0,569105 ,1,0,569710 ,1,0,569940 ,1,0,570065 ,1,0,570175 ,1,0,570305 ,1,0,570440 ,1,0,570720 ,1,0,570910 ,1,0,571020 ,1,0,571205 ,1,0,571360 ,1,0,571815 ,1,0,572000 ,1,0,572145 ,1,0,572270 ,1,0,572415 ,1,0,572530 ,1,0,572730 ,1,0,572885 ,1,0,573165 ,1,0,574015 ,1,0,574215 ,1,0,574395 ,1,0,574530 ,1,0,574670 ,1,0,574790 ,1,0,574915 ,1,0,575035 ,1,0,575620 ,1,0,575755 ,1,0,576210 ,1,0,576405 ,1,0,576840 ,1,0,577400 ,1,0,577525 ,1,0,577935 ,1,0,578380 ,1,0,578725 ,1,0,578920 ,1,0,579385 ,1,0,579525 ,1,0,579670 ,1,0,579780 ,1,0,579925 ,1,0,580130 ,1,0,580380 ,1,0,580635 ,1,0,580775 ,1,0,580885 ,1,0,581370 ,1,0,581555 ,1,0,582100 ,1,0,582295 ,1,0,582445 ,1,0,582555 ,1,0,582790 ,1,0,583070 ,1,0,583420 ,1,0,584180 ,1,0,584390 ,1,0,584515 ,1,0,584670 ,1,0,584785 ,1,0,584935 ,1,0,585040 ,1,0,585170 ,1,0,585390 ,1,0,585565 ,1,0,585760 ,1,0,586020 ,1,0,586160 ,1,0,586370 ,1,0,586565 ,1,0,586690 ,1,0,586975 ,1,0,587145 ,1,0,587370 ,1,0,587500 ,1,0,587640 ,1,0,587780 ,1,0,587915 ,1,0,588130 ,1,0,588395 ,1,0,588650 ,1,0,589195 ,1,0,589380 ,1,0,589540 ,1,0,589770 ,1,0,589975 ,1,0,590115 ,1,0,590310 ,1,0,590500 ,1,0,590615 ,1,0,590815 ,1,0,591005 ,1,0,591345 ,1,0,591595 ,1,0,591790 ,1,0,592050 ,1,0,592935 ,1,0,593130 ,1,0,593310 ,1,0,593420 ,1,0,593575 ,1,0,593830 ,1,0,593970 ,1,0,594125 ,1,0,594400 ,1,0,594525 ,1,0,594660 ,1,0,594785 ,1,0,595045 ,1,0,595415 ,1,0,595610 ,1,0,595725 ,1,0,595930 ,1,0,596120 ,1,0,596255 ,1,0,596390 ,1,0,596585 ,1,0,596780 ,1,0,596940 ,1,0,597075 ,1,0,597385 ,1,0,597510 ,1,0,597805 ,1,0,598015 ,1,0,598305 ,1,0,598435 ,1,0,598560 ,1,0,598750 ,1,0,598940 ,1,0,599090 ,1,0,599265 ,1,0,599470 ,1,0,599735 ,1,0,599930 ,1,0,600240 ,1,0,601020 ,1,0,601210 ,1,0,601520 ,1,0,601640 ,1,0,601785 ,1,0,602065 ,1,0,602285 ,1,0,602520 ,1,0,602715 ,1,0,602855 ,1,0,603050 ,1,0,603185 ,1,0,603700 ,1,0,603915 ,1,0,604585 ,1,0,605030 ,1,0,605250 ,1,0,605910 ,1,0,606070 ,1,0,606255 ,1,0,606440 ,1,0,606555 ,1,0,606815 ,1,0,607145 ,1,0,607320 ,1,0,607470 ,1,0,607755 ,1,0,608095 ,1,0,608305 ,1,0,608590 ,1,0,608855 ,1,0,609135 ,1,0,609250 ,1,0,609510 ,1,0,609740 ,1,0,610000 ,1,0,610280 ,1,0,610520 ,1,0,610670 ,1,0,610880 ,1,0,611090 ,1,0,611345 ,1,0,611545 ,1,0,611840 ,1,0,612120 ,1,0,612250 ,1,0,612485 ,1,0,612730 ,1,0,612920 ,1,0,613170 ,1,0,613375 ,1,0,613500 ,1,0,613620 ,1,0,613765 ,1,0,614120 ,1,0,614245 ,1,0,614430 ,1,0,614680 ,1,0,614995 ,1,0,615330 ,1,0,615450 ,1,0,615735 ,1,0,615970 ,1,0,616190 ,1,0,616340 ,1,0,616450 ,1,0,616590 ,1,0,616905 ,1,0,617025 ,1,0,617245 ,1,0,617405 ,1,0,617525 ,1,0,617725 ,1,0,618595 ,1,0,618730 ,1,0,618960 ,1,0,619130 ,1,0,619265 ,1,0,619675 ,1,0,619795 ,1,0,620085 ,1,0,620325 ,1,0,620600 ,1,0,620795 ,1,0,620965 ,1,0,621155 ,1,0,621455 ,1,0,621625 ,1,0,621805 ,1,0,622140 ,1,0,622335 ,1,0,623160 ,1,0,623665 ,1,0,624575 ,1,0,624695 ,1,0,624880 ,1,0,625135 ,1,0,625520 ,1,0,625915 ,1,0,626225 ,1,0,626415 ,1,0,626940 ,1,0,627080 ,1,0,627530 ,1,0,627735 ,1,0,627895 ,1,0,628410 ,1,0,629075 ,1,0,629215 ,1,0,629400 ,1,0,629600 ,1,0,629870 ,1,0,630105 ,1,0,630350 ,1,0,630480 ,1,0,630660 ,1,0,630865 ,1,0,631190 ,1,0,631390 ,1,0,631520 ,1,0,631650 ,1,0,631775 ,1,0,632110 ,1,0,632265 ,1,0,632385 ,1,0,632585 ,1,0,632710 ,1,0,632850 ,1,0,632955 ,1,0,633075 ,1,0,633190 ,1,0,633335 ,1,0,633530 ,1,0,633705 ,1,0,633840 ,1,0,633950 ,1,0,634210 ,1,0,636205 ,1,0,637750 ,1,0,638055 ,1,0,639330 ,1,0,639655 ,1,0,639785 ,1,0,639935 ,1,0,640050 ,1,0,640175 ,1,0,640470 ,1,0,640595 ,1,0,640720 ,1,0,640845 ,1,0,641395 ,1,0,641630 ,1,0,642295 ,1,0,642840 ,1,0,643580 ,1,0,644110 ,1,0,644305 ,1,0,645140 ,1,0,645620 ,1,0,645745 ,1,0,645875 ,1,0,646245 ,1,0,646375 ,1,0,646635 ,1,0,646770 ,1,0,646885 ,1,0,647005 ,1,0,647140 ,1,0,647255 ,1,0,647430 ,1,0,647905 ,1,0,648025 ,1,0,648425 ,1,0,648660 ,1,0,648765 ,1,0,649630 ,1,0,649945 ,1,0,650390 ,1,0,650525 ,1,0,650670 ,1,0,650800 ,1,0,650980 ,1,0,651185 ,1,0,651335 ,1,0,651485 ,1,0,651620 ,1,0,651825 ,1,0,652070 ,1,0,652280 ,1,0,652400 ,1,0,652535 ,1,0,652775 ,1,0,653265 ,1,0,653430 ,1,0,653620 ,1,0,653860 ,1,0,653980 ,1,0,654240 ,1,0,654350 ,1,0,654520 ,1,0,654680 ,1,0,654865 ,1,0,655140 ,1,0,655560 ,1,0,655790 ,1,0,655930 ,1,0,656605 ,1,0,656955 ,1,0,661280 ,1,0,661805 ,1,0,661975 ,1,0,662195 ,1,0,663170 ,1,0,663290 ,1,0,663590 ,1,0,664465 ,1,0,665715 ,1,0,665825 ,1,0,666020 ,1,0,666330 ,1,0,666460 ,1,0,668010 ,1,0,668140 ,1,0,668845 ,1,0,669090 ,1,0,669460 ,1,0,669590 ,1,0,669775 ,1,0,669970 ,1,0,670435 ,1,0,670575 ,1,0,670935 ,1,0,671125 ,1,0,671570 ,1,0,671695 ,1,0,672190 ,1,0,672375 ,1,0,672855 ,1,0,672985 ,1,0,673185 ,1,0,673320 ,1,0,674025 ,1,0,674280 ,1,0,674400 ,1,0,674515 ,1,0,674650 ,1,0,674840 ,1,0,675010 ,1,0,40 ,1,0,280 ,1,0,745 ,1,0,1080 ,1,0,1295 ,1,0,1600 ,1,0,2045 ,1,0,2360 ,1,0,2690 ,1,0,2895 ,1,0,3210 ,1,0,3440 ,1,0,4275 ,1,0,4605 ,1,0,5155 ,1,0,7945 ,1,0,8260 ,1,0,9945 ,1,0,10475 ,1,0,11010 ,1,0,11240 ,1,0,11535 ,1,0,11885 ,1,0,12120 ,1,0,12320 ,1,0,12535 ,1,0,12955 ,1,0,13470 ,1,0,13795 ,1,0,14130 ,1,0,14555 ,1,0,15200 ,1,0,15540 ,1,0,15745 ,1,0,15925 ,1,0,16595 ,1,0,17235 ,1,0,17755 ,1,0,17970 ,1,0,20450 ,1,0,20760 ,1,0,21200 ,1,0,21950 ,1,0,22160 ,1,0,22500 ,1,0,22815 ,1,0,23625 ,1,0,23920 ,1,0,24630 ,1,0,25070 ,1,0,25525 ,1,0,26060 ,1,0,26375 ,1,0,26700 ,1,0,28220 ,1,0,28560 ,1,0,28865 ,1,0,29075 ,1,0,29555 ,1,0,29870 ,1,0,30215 ,1,0,30425 ,1,0,30630 ,1,0,30825 ,1,0,31175 ,1,0,31390 ,1,0,31595 ,1,0,32310 ,1,0,32610 ,1,0,33260 ,1,0,34325 ,1,0,34620 ,1,0,35075 ,1,0,35330 ,1,0,35535 ,1,0,36150 ,1,0,36485 ,1,0,36695 ,1,0,38710 ,1,0,38925 ,1,0,39260 ,1,0,39585 ,1,0,39925 ,1,0,40125 ,1,0,40485 ,1,0,40885 ,1,0,41105 ,1,0,41330 ,1,0,41955 ,1,0,42170 ,1,0,42510 ,1,0,42810 ,1,0,43155 ,1,0,43465 ,1,0,43780 ,1,0,44020 ,1,0,44355 ,1,0,44555 ,1,0,44780 ,1,0,44995 ,1,0,45205 ,1,0,45530 ,1,0,45830 ,1,0,50345 ,1,0,50545 ,1,0,50760 ,1,0,50975 ,1,0,51420 ,1,0,51615 ,1,0,52055 ,1,0,52465 ,1,0,52700 ,1,0,53040 ,1,0,53340 ,1,0,53780 ,1,0,53995 ,1,0,54350 ,1,0,54550 ,1,0,55295 ,1,0,55735 ,1,0,55945 ,1,0,56250 ,1,0,56565 ,1,0,56910 ,1,0,57235 ,1,0,57550 ,1,0,58015 ,1,0,58230 ,1,0,58530 ,1,0,58750 ,1,0,59575 ,1,0,59895 ,1,0,60110 ,1,0,60405 ,1,0,60610 ,1,0,60855 ,1,0,61790 ,1,0,63175 ,1,0,64035 ,1,0,64800 ,1,0,65150 ,1,0,65345 ,1,0,67195 ,1,0,67405 ,1,0,67720 ,1,0,67940 ,1,0,68250 ,1,0,68550 ,1,0,68965 ,1,0,69175 ,1,0,69480 ,1,0,69675 ,1,0,69895 ,1,0,70505 ,1,0,70915 ,1,0,71415 ,1,0,72030 ,1,0,72240 ,1,0,72475 ,1,0,72765 ,1,0,73065 ,1,0,73895 ,1,0,74195 ,1,0,74895 ,1,0,75230 ,1,0,75425 ,1,0,75630 ,1,0,75835 ,1,0,76040 ,1,0,76450 ,1,0,77310 ,1,0,78145 ,1,0,79020 ,1,0,79630 ,1,0,80270 ,1,0,80700 ,1,0,80945 ,1,0,81270 ,1,0,82080 ,1,0,82965 ,1,0,83500 ,1,0,83910 ,1,0,84325 ,1,0,85180 ,1,0,85620 ,1,0,87000 ,1,0,87340 ,1,0,87565 ,1,0,87785 ,1,0,89670 ,1,0,90510 ,1,0,90805 ,1,0,91210 ,1,0,91515 ,1,0,91710 ,1,0,92030 ,1,0,92280 ,1,0,92890 ,1,0,95000 ,1,0,95325 ,1,0,95965 ,1,0,96600 ,1,0,97030 ,1,0,97790 ,1,0,98020 ,1,0,98240 ,1,0,98975 ,1,0,99200 ,1,0,99535 ,1,0,99875 ,1,0,100345 ,1,0,100650 ,1,0,102855 ,1,0,103080 ,1,0,103490 ,1,0,104390 ,1,0,106985 ,1,0,107660 ,1,0,107885 ,1,0,108080 ,1,0,108405 ,1,0,108720 ,1,0,108955 ,1,0,109160 ,1,0,109380 ,1,0,109790 ,1,0,110030 ,1,0,110485 ,1,0,111465 ,1,0,111675 ,1,0,112195 ,1,0,112840 ,1,0,113190 ,1,0,113515 ,1,0,113855 ,1,0,114425 ,1,0,114855 ,1,0,115090 ,1,0,115945 ,1,0,116155 ,1,0,116400 ,1,0,116630 ,1,0,116855 ,1,0,117135 ,1,0,117335 ,1,0,117555 ,1,0,117770 ,1,0,118085 ,1,0,119455 ,1,0,120200 ,1,0,120410 ,1,0,120695 ,1,0,120930 ,1,0,121455 ,1,0,121670 ,1,0,122350 ,1,0,122555 ,1,0,123175 ,1,0,123370 ,1,0,123805 ,1,0,124250 ,1,0,124745 ,1,0,124985 ,1,0,125630 ,1,0,125980 ,1,0,126290 ,1,0,126715 ,1,0,127025 ,1,0,127345 ,1,0,128200 ,1,0,128945 ,1,0,129470 ,1,0,129695 ,1,0,130025 ,1,0,130640 ,1,0,130985 ,1,0,131315 ,1,0,131530 ,1,0,131940 ,1,0,132285 ,1,0,132510 ,1,0,132710 ,1,0,133135 ,1,0,133325 ,1,0,135005 ,1,0,135205 ,1,0,135460 ,1,0,135770 ,1,0,136090 ,1,0,136285 ,1,0,136645 ,1,0,136865 ,1,0,137090 ,1,0,137510 ,1,0,137860 ,1,0,138060 ,1,0,138390 ,1,0,138610 ,1,0,138920 ,1,0,139140 ,1,0,139355 ,1,0,139555 ,1,0,139890 ,1,0,144160 ,1,0,147475 ,1,0,147780 ,1,0,148335 ,1,0,148655 ,1,0,149970 ,1,0,150175 ,1,0,151150 ,1,0,151495 ,1,0,151710 ,1,0,152030 ,1,0,152575 ,1,0,153210 ,1,0,153445 ,1,0,154175 ,1,0,154495 ,1,0,155155 ,1,0,156535 ,1,0,156970 ,1,0,158735 ,1,0,158925 ,1,0,159255 ,1,0,160020 ,1,0,162085 ,1,0,162305 ,1,0,162520 ,1,0,163595 ,1,0,163920 ,1,0,164685 ,1,0,164995 ,1,0,165825 ,1,0,166055 ,1,0,167030 ,1,0,167470 ,1,0,167930 ,1,0,168150 ,1,0,168365 ,1,0,168610 ,1,0,168830 ,1,0,169040 ,1,0,169510 ,1,0,169835 ,1,0,170250 ,1,0,170570 ,1,0,170800 ,1,0,171265 ,1,0,171695 ,1,0,172230 ,1,0,172445 ,1,0,172665 ,1,0,173240 ,1,0,173670 ,1,0,174120 ,1,0,174450 ,1,0,174685 ,1,0,175010 ,1,0,175655 ,1,0,175980 ,1,0,176310 ,1,0,176655 ,1,0,177190 ,1,0,177420 ,1,0,177745 ,1,0,177965 ,1,0,178210 ,1,0,178770 ,1,0,179090 ,1,0,179600 ,1,0,179955 ,1,0,180160 ,1,0,180390 ,1,0,180785 ,1,0,181230 ,1,0,181560 ,1,0,181780 ,1,0,182000 ,1,0,182330 ,1,0,182665 ,1,0,182860 ,1,0,183085 ,1,0,183405 ,1,0,183610 ,1,0,183835 ,1,0,184165 ,1,0,184490 ,1,0,184830 ,1,0,185040 ,1,0,185475 ,1,0,185815 ,1,0,186160 ,1,0,186505 ,1,0,186720 ,1,0,187040 ,1,0,187380 ,1,0,188235 ,1,0,188650 ,1,0,188995 ,1,0,189315 ,1,0,189835 ,1,0,190715 ,1,0,191035 ,1,0,191385 ,1,0,192045 ,1,0,192255 ,1,0,192875 ,1,0,193095 ,1,0,193410 ,1,0,193630 ,1,0,193945 ,1,0,194145 ,1,0,194580 ,1,0,195245 ,1,0,195450 ,1,0,195670 ,1,0,196125 ,1,0,196545 ,1,0,196890 ,1,0,197120 ,1,0,197550 ,1,0,197875 ,1,0,198195 ,1,0,198520 ,1,0,198850 ,1,0,199050 ,1,0,199265 ,1,0,199800 ,1,0,200230 ,1,0,200550 ,1,0,200995 ,1,0,201330 ,1,0,201765 ,1,0,201990 ,1,0,202185 ,1,0,202545 ,1,0,202990 ,1,0,203410 ,1,0,203635 ,1,0,204485 ,1,0,204715 ,1,0,205185 ,1,0,205395 ,1,0,206030 ,1,0,206365 ,1,0,206690 ,1,0,207005 ,1,0,207220 ,1,0,207855 ,1,0,208160 ,1,0,208705 ,1,0,208920 ,1,0,209350 ,1,0,209565 ,1,0,209970 ,1,0,210205 ,1,0,210415 ,1,0,210640 ,1,0,210845 ,1,0,211180 ,1,0,211370 ,1,0,212130 ,1,0,214455 ,1,0,214680 ,1,0,214885 ,1,0,219520 ,1,0,220050 ,1,0,220240 ,1,0,221330 ,1,0,221545 ,1,0,221755 ,1,0,222070 ,1,0,222380 ,1,0,223245 ,1,0,223610 ,1,0,223925 ,1,0,224265 ,1,0,224590 ,1,0,224910 ,1,0,225435 ,1,0,226285 ,1,0,226730 ,1,0,227255 ,1,0,227460 ,1,0,227675 ,1,0,229560 ,1,0,229895 ,1,0,230330 ,1,0,230755 ,1,0,231100 ,1,0,231315 ,1,0,231520 ,1,0,231830 ,1,0,232995 ,1,0,233340 ,1,0,233765 ,1,0,234895 ,1,0,235115 ,1,0,235430 ,1,0,235885 ,1,0,236095 ,1,0,236300 ,1,0,236530 ,1,0,236725 ,1,0,237280 ,1,0,238220 ,1,0,238990 ,1,0,239825 ,1,0,240235 ,1,0,244795 ,1,0,245130 ,1,0,245790 ,1,0,246215 ,1,0,246410 ,1,0,246715 ,1,0,246945 ,1,0,247405 ,1,0,247935 ,1,0,248250 ,1,0,248465 ,1,0,248985 ,1,0,249310 ,1,0,250075 ,1,0,250375 ,1,0,250705 ,1,0,251025 ,1,0,251380 ,1,0,252060 ,1,0,252370 ,1,0,252660 ,1,0,252900 ,1,0,253225 ,1,0,253420 ,1,0,253740 ,1,0,254045 ,1,0,254400 ,1,0,254615 ,1,0,254925 ,1,0,255350 ,1,0,255660 ,1,0,255855 ,1,0,257115 ,1,0,257430 ,1,0,257650 ,1,0,258075 ,1,0,258405 ,1,0,258815 ,1,0,259125 ,1,0,259445 ,1,0,259770 ,1,0,260165 ,1,0,260570 ,1,0,260890 ,1,0,261095 ,1,0,263160 ,1,0,263350 ,1,0,263680 ,1,0,264515 ,1,0,264825 ,1,0,265880 ,1,0,266105 ,1,0,266425 ,1,0,266655 ,1,0,266860 ,1,0,267170 ,1,0,267665 ,1,0,269580 ,1,0,269980 ,1,0,270530 ,1,0,270730 ,1,0,271035 ,1,0,271430 ,1,0,271655 ,1,0,272975 ,1,0,273330 ,1,0,273530 ,1,0,273715 ,1,0,274345 ,1,0,274550 ,1,0,274735 ,1,0,275065 ,1,0,275355 ,1,0,275900 ,1,0,276690 ,1,0,277470 ,1,0,278890 ,1,0,279170 ,1,0,279485 ,1,0,279985 ,1,0,280210 ,1,0,280530 ,1,0,281335 ,1,0,281625 ,1,0,281940 ,1,0,282280 ,1,0,282600 ,1,0,282995 ,1,0,283315 ,1,0,283730 ,1,0,283950 ,1,0,284460 ,1,0,285610 ,1,0,287515 ,1,0,287720 ,1,0,288030 ,1,0,290495 ,1,0,291300 ,1,0,292215 ,1,0,292415 ,1,0,292615 ,1,0,292825 ,1,0,293055 ,1,0,293455 ,1,0,295290 ,1,0,295595 ,1,0,295900 ,1,0,296115 ,1,0,296620 ,1,0,297150 ,1,0,297345 ,1,0,297775 ,1,0,297975 ,1,0,298610 ,1,0,298815 ,1,0,300070 ,1,0,300400 ,1,0,301265 ,1,0,301670 ,1,0,302015 ,1,0,302455 ,1,0,302875 ,1,0,303105 ,1,0,303425 ,1,0,303960 ,1,0,304470 ,1,0,304805 ,1,0,305340 ,1,0,305530 ,1,0,306495 ,1,0,306910 ,1,0,307720 ,1,0,308150 ,1,0,308470 ,1,0,308790 ,1,0,309010 ,1,0,310995 ,1,0,311565 ,1,0,311785 ,1,0,312025 ,1,0,313020 ,1,0,313230 ,1,0,313455 ,1,0,313645 ,1,0,313860 ,1,0,314080 ,1,0,314390 ,1,0,315310 ,1,0,315590 ,1,0,315895 ,1,0,316195 ,1,0,316425 ,1,0,316645 ,1,0,316855 ,1,0,317570 ,1,0,317995 ,1,0,318320 ,1,0,319345 ,1,0,319650 ,1,0,320705 ,1,0,321020 ,1,0,321215 ,1,0,321530 ,1,0,321955 ,1,0,322390 ,1,0,323130 ,1,0,323545 ,1,0,323850 ,1,0,325305 ,1,0,325615 ,1,0,326225 ,1,0,326430 ,1,0,326850 ,1,0,327050 ,1,0,327565 ,1,0,327880 ,1,0,328850 ,1,0,329080 ,1,0,329300 ,1,0,329935 ,1,0,331165 ,1,0,332605 ,1,0,333150 ,1,0,333390 ,1,0,333705 ,1,0,334045 ,1,0,334365 ,1,0,334695 ,1,0,334895 ,1,0,335115 ,1,0,335350 ,1,0,335565 ,1,0,335790 ,1,0,336115 ,1,0,336315 ,1,0,336560 ,1,0,336805 ,1,0,337030 ,1,0,337245 ,1,0,337465 ,1,0,337905 ,1,0,338120 ,1,0,338330 ,1,0,339010 ,1,0,339235 ,1,0,342210 ,1,0,342420 ,1,0,342645 ,1,0,343060 ,1,0,343995 ,1,0,344205 ,1,0,344750 ,1,0,345200 ,1,0,345640 ,1,0,346060 ,1,0,346280 ,1,0,346495 ,1,0,346935 ,1,0,347570 ,1,0,348330 ,1,0,348745 ,1,0,349170 ,1,0,349985 ,1,0,350315 ,1,0,350885 ,1,0,351535 ,1,0,352490 ,1,0,352910 ,1,0,353155 ,1,0,353905 ,1,0,354325 ,1,0,355505 ,1,0,355930 ,1,0,356365 ,1,0,357135 ,1,0,358030 ,1,0,358980 ,1,0,359390 ,1,0,362635 ,1,0,362980 ,1,0,363210 ,1,0,363530 ,1,0,363760 ,1,0,364000 ,1,0,364215 ,1,0,365720 ,1,0,366040 ,1,0,366260 ,1,0,366460 ,1,0,366770 ,1,0,367100 ,1,0,367320 ,1,0,367850 ,1,0,368175 ,1,0,368585 ,1,0,371420 ,1,0,371750 ,1,0,372470 ,1,0,372915 ,1,0,373515 ,1,0,373920 ,1,0,374460 ,1,0,374885 ,1,0,375195 ,1,0,375325 ,1,0,375515 ,1,0,375810 ,1,0,376190 ,1,0,376435 ,1,0,376615 ,1,0,376920 ,1,0,377095 ,1,0,377280 ,1,0,377835 ,1,0,378030 ,1,0,378185 ,1,0,378850 ,1,0,379755 ,1,0,379865 ,1,0,380085 ,1,0,380270 ,1,0,380740 ,1,0,380970 ,1,0,381220 ,1,0,381355 ,1,0,381470 ,1,0,381680 ,1,0,381820 ,1,0,382010 ,1,0,382250 ,1,0,382440 ,1,0,382690 ,1,0,382910 ,1,0,383360 ,1,0,383610 ,1,0,384140 ,1,0,384385 ,1,0,384550 ,1,0,384675 ,1,0,384805 ,1,0,385030 ,1,0,385150 ,1,0,385280 ,1,0,385450 ,1,0,385640 ,1,0,385820 ,1,0,386015 ,1,0,386190 ,1,0,386380 ,1,0,386495 ,1,0,386740 ,1,0,386985 ,1,0,387095 ,1,0,387320 ,1,0,387525 ,1,0,387700 ,1,0,388150 ,1,0,388675 ,1,0,388910 ,1,0,389155 ,1,0,389255 ,1,0,389540 ,1,0,389715 ,1,0,389895 ,1,0,390405 ,1,0,390510 ,1,0,390845 ,1,0,390970 ,1,0,392475 ,1,0,392595 ,1,0,392715 ,1,0,392965 ,1,0,393315 ,1,0,393635 ,1,0,393770 ,1,0,393910 ,1,0,394505 ,1,0,394635 ,1,0,394945 ,1,0,395195 ,1,0,395630 ,1,0,395930 ,1,0,396110 ,1,0,396400 ,1,0,396525 ,1,0,396890 ,1,0,397165 ,1,0,397355 ,1,0,397500 ,1,0,397675 ,1,0,397875 ,1,0,398235 ,1,0,398355 ,1,0,398490 ,1,0,398755 ,1,0,399140 ,1,0,399275 ,1,0,399460 ,1,0,399935 ,1,0,400055 ,1,0,400470 ,1,0,400595 ,1,0,400730 ,1,0,400860 ,1,0,400985 ,1,0,401115 ,1,0,401235 ,1,0,401425 ,1,0,401745 ,1,0,402190 ,1,0,402340 ,1,0,402465 ,1,0,402605 ,1,0,402735 ,1,0,403010 ,1,0,403255 ,1,0,403385 ,1,0,403575 ,1,0,403735 ,1,0,403865 ,1,0,404005 ,1,0,404155 ,1,0,404560 ,1,0,404685 ,1,0,404825 ,1,0,405080 ,1,0,405355 ,1,0,405920 ,1,0,406125 ,1,0,406255 ,1,0,406540 ,1,0,407155 ,1,0,407265 ,1,0,407395 ,1,0,407515 ,1,0,407645 ,1,0,407825 ,1,0,408035 ,1,0,408550 ,1,0,408705 ,1,0,408970 ,1,0,409100 ,1,0,409220 ,1,0,409420 ,1,0,409630 ,1,0,409995 ,1,0,410270 ,1,0,410470 ,1,0,410685 ,1,0,411250 ,1,0,411540 ,1,0,411675 ,1,0,411815 ,1,0,411950 ,1,0,412450 ,1,0,413260 ,1,0,413510 ,1,0,413945 ,1,0,414525 ,1,0,414765 ,1,0,415380 ,1,0,415495 ,1,0,415620 ,1,0,415730 ,1,0,416550 ,1,0,416680 ,1,0,417260 ,1,0,418105 ,1,0,418595 ,1,0,419690 ,1,0,419810 ,1,0,419965 ,1,0,420240 ,1,0,420385 ,1,0,420495 ,1,0,421480 ,1,0,421620 ,1,0,422130 ,1,0,423235 ,1,0,423370 ,1,0,423520 ,1,0,423695 ,1,0,424175 ,1,0,424745 ,1,0,425205 ,1,0,425905 ,1,0,426175 ,1,0,426535 ,1,0,426645 ,1,0,426850 ,1,0,426970 ,1,0,427095 ,1,0,427225 ,1,0,427410 ,1,0,427525 ,1,0,427655 ,1,0,429865 ,1,0,430275 ,1,0,430400 ,1,0,431245 ,1,0,431445 ,1,0,432200 ,1,0,432615 ,1,0,432930 ,1,0,433135 ,1,0,435485 ,1,0,436215 ,1,0,436415 ,1,0,436615 ,1,0,437025 ,1,0,437285 ,1,0,437440 ,1,0,437610 ,1,0,438135 ,1,0,438410 ,1,0,438535 ,1,0,439230 ,1,0,440705 ,1,0,440865 ,1,0,441015 ,1,0,441195 ,1,0,441350 ,1,0,441520 ,1,0,443350 ,1,0,443725 ,1,0,444090 ,1,0,444280 ,1,0,444625 ,1,0,444955 ,1,0,445110 ,1,0,445300 ,1,0,445420 ,1,0,445650 ,1,0,445765 ,1,0,445970 ,1,0,446160 ,1,0,446295 ,1,0,446465 ,1,0,446735 ,1,0,446880 ,1,0,447010 ,1,0,447500 ,1,0,447670 ,1,0,448140 ,1,0,448600 ,1,0,448770 ,1,0,448970 ,1,0,449155 ,1,0,449355 ,1,0,449535 ,1,0,449735 ,1,0,449860 ,1,0,451080 ,1,0,451345 ,1,0,451475 ,1,0,451815 ,1,0,451945 ,1,0,452300 ,1,0,452710 ,1,0,452845 ,1,0,452975 ,1,0,453185 ,1,0,453355 ,1,0,453510 ,1,0,453620 ,1,0,453840 ,1,0,454045 ,1,0,454315 ,1,0,454570 ,1,0,454710 ,1,0,454825 ,1,0,455045 ,1,0,455190 ,1,0,455380 ,1,0,455505 ,1,0,455955 ,1,0,456390 ,1,0,456890 ,1,0,457070 ,1,0,460315 ,1,0,460515 ,1,0,460665 ,1,0,460845 ,1,0,461060 ,1,0,461315 ,1,0,461580 ,1,0,461715 ,1,0,462120 ,1,0,462620 ,1,0,462990 ,1,0,463095 ,1,0,463795 ,1,0,464015 ,1,0,464210 ,1,0,464345 ,1,0,464470 ,1,0,464805 ,1,0,465050 ,1,0,465220 ,1,0,465340 ,1,0,465845 ,1,0,466040 ,1,0,466725 ,1,0,467025 ,1,0,467130 ,1,0,467375 ,1,0,467560 ,1,0,467700 ,1,0,468005 ,1,0,468260 ,1,0,468370 ,1,0,468620 ,1,0,468815 ,1,0,469060 ,1,0,469245 ,1,0,469490 ,1,0,470075 ,1,0,470195 ,1,0,470685 ,1,0,470845 ,1,0,471380 ,1,0,472375 ,1,0,473655 ,1,0,473925 ,1,0,474315 ,1,0,474520 ,1,0,474795 ,1,0,475070 ,1,0,475365 ,1,0,475800 ,1,0,475925 ,1,0,476155 ,1,0,477055 ,1,0,477245 ,1,0,477490 ,1,0,477850 ,1,0,478040 ,1,0,478235 ,1,0,478415 ,1,0,478625 ,1,0,479025 ,1,0,479180 ,1,0,479390 ,1,0,479520 ,1,0,479700 ,1,0,479885 ,1,0,480035 ,1,0,480215 ,1,0,480360 ,1,0,480485 ,1,0,481145 ,1,0,481610 ,1,0,481740 ,1,0,482445 ,1,0,482645 ,1,0,482835 ,1,0,482960 ,1,0,483185 ,1,0,483375 ,1,0,483515 ,1,0,483650 ,1,0,483885 ,1,0,483995 ,1,0,484185 ,1,0,484445 ,1,0,484640 ,1,0,484840 ,1,0,484965 ,1,0,485175 ,1,0,485320 ,1,0,485515 ,1,0,485830 ,1,0,485960 ,1,0,486100 ,1,0,486290 ,1,0,486655 ,1,0,486855 ,1,0,487000 ,1,0,487115 ,1,0,487370 ,1,0,487765 ,1,0,487890 ,1,0,488220 ,1,0,488355 ,1,0,488530 ,1,0,488680 ,1,0,488805 ,1,0,488995 ,1,0,489255 ,1,0,489455 ,1,0,489650 ,1,0,489845 ,1,0,489990 ,1,0,490265 ,1,0,490410 ,1,0,490530 ,1,0,490675 ,1,0,490880 ,1,0,491070 ,1,0,491345 ,1,0,491495 ,1,0,491875 ,1,0,492025 ,1,0,492150 ,1,0,492275 ,1,0,492395 ,1,0,492580 ,1,0,492710 ,1,0,492845 ,1,0,493055 ,1,0,493285 ,1,0,493625 ,1,0,493820 ,1,0,496675 ,1,0,496790 ,1,0,497310 ,1,0,497505 ,1,0,497690 ,1,0,497840 ,1,0,498035 ,1,0,498260 ,1,0,498380 ,1,0,498530 ,1,0,498810 ,1,0,499325 ,1,0,499790 ,1,0,500100 ,1,0,500375 ,1,0,500830 ,1,0,501065 ,1,0,501340 ,1,0,502330 ,1,0,503035 ,1,0,503395 ,1,0,504005 ,1,0,504585 ,1,0,504715 ,1,0,505110 ,1,0,505485 ,1,0,505755 ,1,0,506825 ,1,0,507375 ,1,0,508545 ,1,0,508775 ,1,0,510940 ,1,0,511065 ,1,0,511395 ,1,0,512210 ,1,0,512555 ,1,0,512880 ,1,0,513160 ,1,0,513770 ,1,0,514090 ,1,0,514285 ,1,0,515940 ,1,0,516100 ,1,0,516490 ,1,0,516960 ,1,0,517740 ,1,0,518275 ,1,0,518470 ,1,0,518635 ,1,0,518810 ,1,0,518930 ,1,0,519585 ,1,0,519785 ,1,0,519905 ,1,0,520050 ,1,0,520210 ,1,0,520330 ,1,0,520505 ,1,0,520745 ,1,0,521340 ,1,0,522345 ,1,0,522495 ,1,0,522700 ,1,0,523185 ,1,0,523365 ,1,0,523550 ,1,0,523775 ,1,0,524190 ,1,0,524520 ,1,0,526195 ,1,0,526630 ,1,0,526885 ,1,0,527190 ,1,0,527335 ,1,0,527445 ,1,0,527660 ,1,0,527945 ,1,0,528185 ,1,0,528390 ,1,0,529240 ,1,0,529750 ,1,0,529905 ,1,0,530025 ,1,0,530255 ,1,0,530505 ,1,0,530635 ,1,0,530865 ,1,0,530990 ,1,0,531250 ,1,0,531585 ,1,0,531915 ,1,0,532795 ,1,0,533045 ,1,0,533255 ,1,0,533605 ,1,0,534010 ,1,0,534455 ,1,0,534655 ,1,0,534840 ,1,0,534960 ,1,0,535105 ,1,0,535415 ,1,0,535670 ,1,0,536200 ,1,0,536390 ,1,0,536565 ,1,0,536700 ,1,0,536870 ,1,0,537165 ,1,0,537595 ,1,0,537910 ,1,0,538045 ,1,0,538185 ,1,0,538385 ,1,0,538655 ,1,0,538865 ,1,0,539220 ,1,0,539335 ,1,0,539520 ,1,0,539800 ,1,0,539930 ,1,0,540280 ,1,0,540420 ,1,0,540700 ,1,0,541265 ,1,0,541475 ,1,0,541790 ,1,0,541980 ,1,0,542135 ,1,0,542405 ,1,0,542600 ,1,0,542770 ,1,0,542960 ,1,0,543100 ,1,0,543290 ,1,0,543420 ,1,0,543620 ,1,0,543805 ,1,0,543960 ,1,0,544615 ,1,0,545105 ,1,0,545230 ,1,0,545475 ,1,0,545725 ,1,0,545845 ,1,0,546020 ,1,0,546210 ,1,0,546545 ,1,0,546745 ,1,0,546935 ,1,0,547035 ,1,0,547215 ,1,0,547530 ,1,0,547785 ,1,0,547920 ,1,0,548225 ,1,0,548360 ,1,0,548540 ,1,0,548725 ,1,0,548895 ,1,0,549075 ,1,0,549390 ,1,0,549665 ,1,0,550120 ,1,0,550370 ,1,0,550620 ,1,0,550870 ,1,0,551260 ,1,0,551435 ,1,0,551615 ,1,0,551880 ,1,0,552120 ,1,0,552325 ,1,0,552460 ,1,0,552595 ,1,0,552795 ,1,0,553855 ,1,0,554135 ,1,0,554270 ,1,0,554380 ,1,0,554525 ,1,0,554745 ,1,0,555060 ,1,0,555290 ,1,0,555435 ,1,0,555575 ,1,0,555750 ,1,0,555895 ,1,0,556085 ,1,0,556300 ,1,0,556430 ,1,0,556545 ,1,0,556705 ,1,0,556960 ,1,0,557125 ,1,0,557335 ,1,0,557535 ,1,0,557665 ,1,0,557820 ,1,0,557955 ,1,0,558075 ,1,0,558195 ,1,0,558340 ,1,0,558455 ,1,0,558620 ,1,0,558915 ,1,0,559310 ,1,0,559555 ,1,0,559835 ,1,0,560315 ,1,0,560685 ,1,0,560940 ,1,0,561215 ,1,0,561420 ,1,0,561895 ,1,0,562020 ,1,0,562290 ,1,0,562435 ,1,0,563100 ,1,0,567770 ,1,0,568540 ,1,0,568675 ,1,0,568890 ,1,0,569300 ,1,0,569440 ,1,0,569635 ,1,0,570015 ,1,0,570120 ,1,0,570310 ,1,0,570445 ,1,0,570575 ,1,0,571290 ,1,0,572275 ,1,0,572735 ,1,0,572890 ,1,0,573485 ,1,0,573885 ,1,0,574400 ,1,0,574970 ,1,0,577860 ,1,0,578195 ,1,0,578305 ,1,0,578515 ,1,0,578660 ,1,0,579060 ,1,0,579465 ,1,0,579910 ,1,0,580780 ,1,0,587505 ,1,0,587995 ,1,0,588255 ,1,0,589265 ,1,0,589690 ,1,0,589855 ,1,0,590245 ,1,0,592300 ,1,0,592430 ,1,0,592870 ,1,0,593375 ,1,0,594325 ,1,0,594585 ,1,0,599405 ,1,0,599540 ,1,0,600310 ,1,0,600775 ,1,0,601090 ,1,0,601440 ,1,0,601910 ,1,0,602070 ,1,0,602490 ,1,0,603120 ,1,0,603985 ,1,0,604250 ,1,0,604405 ,1,0,604665 ,1,0,604910 ,1,0,605115 ,1,0,605595 ,1,0,605990 ,1,0,606185 ,1,0,606310 ,1,0,606500 ,1,0,606740 ,1,0,606870 ,1,0,607070 ,1,0,607310 ,1,0,607475 ,1,0,607610 ,1,0,607740 ,1,0,607880 ,1,0,608010 ,1,0,608455 ,1,0,608595 ,1,0,609360 ,1,0,610145 ,1,0,617785 ,1,0,625335 ,1,0,625525 ,1,0,625710 ,1,0,626470 ,1,0,626610 ,1,0,627275 ,1,0,628020 ,1,0,628275 ,1,0,628455 ,1,0,628705 ,1,0,629280 ,1,0,629485 ,1,0,629605 ,1,0,629790 ,1,0,630160 ,1,0,630665 ,1,0,630870 ,1,0,631005 ,1,0,632455 ,1,0,632650 ,1,0,633580 ,1,0,636540 ,1,0,636660 ,1,0,636845 ,1,0,637070 ,1,0,638725 ,1,0,638910 ,1,0,639100 ,1,0,639720 ,1,0,641045 ,1,0,641235 ,1,0,641370 ,1,0,641495 ,1,0,641635 ,1,0,641840 ,1,0,642180 ,1,0,642725 ,1,0,642845 ,1,0,643095 ,1,0,643220 ,1,0,643350 ,1,0,643585 ,1,0,643930 ,1,0,644165 ,1,0,644310 ,1,0,644425 ,1,0,644525 ,1,0,644765 ,1,0,645020 ,1,0,645310 ,1,0,645540 ,1,0,645820 ,1,0,645920 ,1,0,646175 ,1,0,647565 ,1,0,647900 ,1,0,648220 ,1,0,648360 ,1,0,650965 ,1,0,651115 ,1,0,651490 ,1,0,651820 ,1,0,652210 ,1,0,652540 ,1,0,657995 ,1,0,658190 ,1,0,658460 ,1,0,658670 ,1,0,659145 ,1,0,659345 ,1,0,659630 ,1,0,659765 ,1,0,661075 ,1,0,661605 ,1,0,662200 ,1,0,662345 ,1,0,662750 ,1,0,663015 ,1,0,663150 ,1,0,663340 ,1,0,663660 ,1,0,663905 ,1,0,664270 ,1,0,664390 ,1,0,664525 ,1,0,664635 ,1,0,664995 ,1,0,665275 ,1,0,665465 ,1,0,665580 ,1,0,665705 ,1,0,665830 ,1,0,665965 ,1,0,666385 ,1,0,666820 ,1,0,667450 ,1,0,667630 ,1,0,667770 ,1,0,667895 ,1,0,668000 ,1,0,668265 ,1,0,669030 ,1,0,669780 ,1,0,670130 ,1,0,670370 ,1,0,670720 ,1,0,671185 ,1,0,671440 ,1,0,671625 ,1,0,671770 ,1,0,671950 ,1,0,672070 ,1,0,672180 ,1,0,672445 ,1,0,672790 ,1,0,673190 ,1,0,673325 ,1,0,673445 ,1,0,673650 ,1,0,673815 ,1,0,673965 ,1,0,674225 ,1,0,674335 ,1,0,674590 ,1,0,674830 ,1,0,150 ,1,0,400 ,1,0,620 ,1,0,850 ,1,0,1085 ,1,0,1400 ,1,0,2050 ,1,0,2365 ,1,0,2665 ,1,0,3080 ,1,0,3415 ,1,0,3965 ,1,0,4280 ,1,0,4485 ,1,0,4810 ,1,0,5160 ,1,0,6185 ,1,0,6505 ,1,0,7730 ,1,0,8585 ,1,0,9100 ,1,0,9725 ,1,0,9935 ,1,0,10270 ,1,0,11115 ,1,0,11325 ,1,0,11890 ,1,0,12125 ,1,0,12540 ,1,0,12730 ,1,0,12960 ,1,0,13145 ,1,0,13375 ,1,0,13600 ,1,0,14135 ,1,0,14350 ,1,0,14740 ,1,0,14975 ,1,0,15400 ,1,0,16465 ,1,0,17975 ,1,0,20025 ,1,0,20335 ,1,0,20560 ,1,0,20880 ,1,0,21290 ,1,0,22390 ,1,0,23155 ,1,0,24155 ,1,0,24395 ,1,0,25185 ,1,0,25530 ,1,0,25745 ,1,0,26045 ,1,0,26250 ,1,0,26475 ,1,0,26795 ,1,0,27025 ,1,0,27215 ,1,0,27550 ,1,0,28000 ,1,0,28200 ,1,0,28445 ,1,0,31490 ,1,0,31915 ,1,0,32420 ,1,0,32830 ,1,0,33245 ,1,0,33690 ,1,0,34005 ,1,0,34330 ,1,0,35195 ,1,0,35430 ,1,0,36700 ,1,0,37135 ,1,0,37960 ,1,0,38715 ,1,0,39030 ,1,0,39265 ,1,0,39590 ,1,0,39930 ,1,0,41445 ,1,0,42175 ,1,0,42600 ,1,0,46480 ,1,0,46895 ,1,0,47210 ,1,0,47400 ,1,0,47710 ,1,0,48265 ,1,0,48655 ,1,0,50000 ,1,0,50350 ,1,0,50655 ,1,0,50980 ,1,0,51290 ,1,0,51620 ,1,0,51940 ,1,0,52240 ,1,0,52800 ,1,0,53655 ,1,0,54355 ,1,0,55070 ,1,0,55410 ,1,0,55845 ,1,0,56145 ,1,0,56570 ,1,0,56785 ,1,0,57015 ,1,0,57205 ,1,0,57455 ,1,0,58000 ,1,0,58935 ,1,0,61890 ,1,0,64900 ,1,0,67705 ,1,0,70615 ,1,0,73490 ,1,0,76335 ,1,0,79435 ,1,0,82520 ,1,0,82945 ,1,0,86095 ,1,0,89165 ,1,0,92145 ,1,0,95110 ,1,0,98230 ,1,0,101280 ,1,0,104805 ,1,0,107865 ,1,0,111355 ,1,0,114430 ,1,0,117460 ,1,0,117775 ,1,0,120795 ,1,0,121250 ,1,0,121675 ,1,0,121885 ,1,0,124885 ,1,0,125075 ,1,0,128185 ,1,0,131630 ,1,0,134580 ,1,0,137745 ,1,0,140730 ,1,0,143760 ,1,0,143960 ,1,0,144165 ,1,0,147010 ,1,0,147250 ,1,0,147455 ,1,0,147785 ,1,0,149075 ,1,0,149410 ,1,0,149975 ,1,0,150285 ,1,0,150510 ,1,0,150720 ,1,0,150940 ,1,0,151260 ,1,0,151595 ,1,0,152020 ,1,0,152360 ,1,0,152700 ,1,0,153010 ,1,0,153325 ,1,0,153650 ,1,0,153955 ,1,0,154180 ,1,0,154500 ,1,0,155025 ,1,0,155240 ,1,0,155585 ,1,0,155780 ,1,0,156005 ,1,0,156860 ,1,0,157175 ,1,0,157565 ,1,0,157920 ,1,0,158320 ,1,0,159150 ,1,0,160345 ,1,0,160775 ,1,0,161230 ,1,0,161745 ,1,0,162310 ,1,0,162740 ,1,0,163790 ,1,0,164235 ,1,0,165515 ,1,0,165830 ,1,0,166160 ,1,0,166470 ,1,0,166820 ,1,0,167015 ,1,0,167705 ,1,0,168475 ,1,0,168940 ,1,0,169175 ,1,0,169405 ,1,0,169620 ,1,0,170785 ,1,0,171155 ,1,0,171485 ,1,0,172020 ,1,0,172235 ,1,0,172560 ,1,0,173015 ,1,0,173675 ,1,0,173915 ,1,0,174795 ,1,0,175460 ,1,0,175985 ,1,0,176530 ,1,0,177425 ,1,0,177970 ,1,0,178985 ,1,0,179295 ,1,0,179495 ,1,0,179715 ,1,0,179960 ,1,0,180165 ,1,0,180385 ,1,0,180790 ,1,0,181015 ,1,0,181235 ,1,0,181440 ,1,0,181785 ,1,0,181995 ,1,0,182210 ,1,0,182425 ,1,0,182640 ,1,0,182965 ,1,0,184045 ,1,0,184275 ,1,0,184495 ,1,0,184695 ,1,0,185045 ,1,0,185275 ,1,0,185465 ,1,0,185695 ,1,0,186050 ,1,0,186710 ,1,0,187475 ,1,0,188000 ,1,0,188240 ,1,0,188430 ,1,0,188655 ,1,0,188865 ,1,0,189295 ,1,0,189725 ,1,0,190165 ,1,0,190720 ,1,0,191390 ,1,0,191600 ,1,0,191910 ,1,0,192155 ,1,0,192355 ,1,0,193520 ,1,0,193930 ,1,0,194255 ,1,0,194470 ,1,0,194780 ,1,0,195250 ,1,0,196005 ,1,0,196450 ,1,0,196670 ,1,0,197005 ,1,0,197980 ,1,0,198200 ,1,0,198525 ,1,0,198720 ,1,0,198960 ,1,0,199170 ,1,0,199380 ,1,0,199690 ,1,0,200130 ,1,0,200340 ,1,0,200660 ,1,0,201100 ,1,0,201335 ,1,0,201770 ,1,0,202190 ,1,0,202635 ,1,0,203095 ,1,0,203530 ,1,0,203965 ,1,0,204375 ,1,0,204610 ,1,0,205045 ,1,0,205495 ,1,0,205930 ,1,0,206145 ,1,0,206565 ,1,0,206990 ,1,0,207450 ,1,0,207860 ,1,0,208045 ,1,0,208510 ,1,0,208925 ,1,0,209355 ,1,0,209780 ,1,0,210210 ,1,0,210645 ,1,0,211060 ,1,0,211475 ,1,0,211910 ,1,0,212350 ,1,0,212685 ,1,0,212895 ,1,0,213350 ,1,0,213670 ,1,0,214140 ,1,0,214460 ,1,0,214785 ,1,0,215220 ,1,0,215435 ,1,0,215650 ,1,0,216170 ,1,0,216390 ,1,0,216615 ,1,0,216835 ,1,0,217050 ,1,0,217265 ,1,0,217465 ,1,0,217910 ,1,0,218450 ,1,0,218675 ,1,0,219825 ,1,0,220155 ,1,0,220915 ,1,0,221215 ,1,0,221550 ,1,0,221965 ,1,0,223615 ,1,0,224055 ,1,0,224390 ,1,0,224815 ,1,0,225225 ,1,0,225540 ,1,0,226290 ,1,0,226825 ,1,0,227665 ,1,0,228945 ,1,0,229655 ,1,0,230985 ,1,0,231515 ,1,0,232050 ,1,0,232390 ,1,0,232675 ,1,0,233000 ,1,0,233345 ,1,0,233650 ,1,0,234060 ,1,0,234290 ,1,0,234670 ,1,0,235000 ,1,0,235225 ,1,0,235890 ,1,0,236070 ,1,0,236535 ,1,0,236710 ,1,0,236955 ,1,0,237495 ,1,0,238010 ,1,0,238335 ,1,0,238780 ,1,0,239110 ,1,0,239930 ,1,0,240535 ,1,0,241180 ,1,0,241595 ,1,0,241910 ,1,0,242235 ,1,0,242425 ,1,0,243050 ,1,0,243740 ,1,0,244060 ,1,0,244570 ,1,0,245575 ,1,0,246610 ,1,0,246950 ,1,0,247175 ,1,0,247735 ,1,0,251010 ,1,0,251255 ,1,0,251470 ,1,0,251710 ,1,0,251925 ,1,0,252375 ,1,0,252570 ,1,0,252785 ,1,0,253205 ,1,0,253425 ,1,0,253840 ,1,0,254265 ,1,0,254500 ,1,0,256585 ,1,0,257535 ,1,0,257960 ,1,0,258385 ,1,0,258820 ,1,0,259565 ,1,0,260060 ,1,0,261810 ,1,0,263040 ,1,0,265170 ,1,0,265390 ,1,0,266205 ,1,0,266525 ,1,0,267175 ,1,0,268065 ,1,0,268860 ,1,0,269270 ,1,0,269885 ,1,0,270210 ,1,0,270825 ,1,0,271325 ,1,0,271555 ,1,0,271765 ,1,0,271960 ,1,0,272150 ,1,0,272370 ,1,0,272570 ,1,0,272875 ,1,0,273090 ,1,0,273315 ,1,0,273535 ,1,0,274460 ,1,0,274850 ,1,0,275260 ,1,0,275465 ,1,0,275795 ,1,0,276000 ,1,0,277280 ,1,0,277580 ,1,0,277790 ,1,0,279385 ,1,0,279590 ,1,0,280215 ,1,0,280420 ,1,0,280640 ,1,0,280830 ,1,0,281440 ,1,0,281730 ,1,0,282055 ,1,0,282285 ,1,0,282795 ,1,0,283105 ,1,0,283300 ,1,0,283535 ,1,0,283955 ,1,0,284345 ,1,0,284780 ,1,0,285295 ,1,0,285495 ,1,0,285740 ,1,0,286140 ,1,0,286595 ,1,0,287520 ,1,0,288135 ,1,0,288540 ,1,0,288730 ,1,0,288955 ,1,0,289145 ,1,0,289455 ,1,0,289650 ,1,0,290175 ,1,0,290385 ,1,0,290600 ,1,0,290810 ,1,0,291005 ,1,0,291305 ,1,0,291605 ,1,0,291885 ,1,0,292205 ,1,0,292510 ,1,0,292830 ,1,0,293155 ,1,0,293460 ,1,0,293765 ,1,0,294040 ,1,0,294350 ,1,0,294650 ,1,0,295070 ,1,0,295580 ,1,0,295905 ,1,0,296220 ,1,0,296525 ,1,0,298285 ,1,0,298720 ,1,0,299135 ,1,0,299460 ,1,0,300075 ,1,0,300500 ,1,0,300730 ,1,0,300930 ,1,0,301260 ,1,0,301475 ,1,0,301790 ,1,0,302110 ,1,0,302445 ,1,0,302780 ,1,0,303110 ,1,0,303535 ,1,0,303730 ,1,0,304810 ,1,0,305345 ,1,0,305755 ,1,0,306160 ,1,0,306705 ,1,0,307105 ,1,0,307530 ,1,0,308040 ,1,0,308350 ,1,0,308795 ,1,0,309230 ,1,0,309435 ,1,0,311670 ,1,0,312030 ,1,0,312365 ,1,0,312800 ,1,0,313125 ,1,0,313550 ,1,0,313865 ,1,0,314085 ,1,0,314395 ,1,0,314605 ,1,0,315105 ,1,0,315695 ,1,0,315980 ,1,0,316415 ,1,0,316745 ,1,0,317145 ,1,0,317575 ,1,0,317895 ,1,0,318325 ,1,0,319045 ,1,0,319350 ,1,0,319785 ,1,0,320200 ,1,0,320595 ,1,0,321220 ,1,0,321750 ,1,0,322070 ,1,0,322280 ,1,0,322620 ,1,0,323760 ,1,0,324070 ,1,0,324385 ,1,0,325510 ,1,0,325725 ,1,0,326230 ,1,0,326435 ,1,0,327055 ,1,0,327350 ,1,0,327780 ,1,0,328085 ,1,0,328320 ,1,0,328960 ,1,0,329195 ,1,0,329420 ,1,0,330335 ,1,0,331305 ,1,0,331520 ,1,0,331835 ,1,0,332270 ,1,0,333270 ,1,0,334485 ,1,0,335795 ,1,0,337470 ,1,0,342745 ,1,0,343160 ,1,0,344210 ,1,0,344525 ,1,0,344965 ,1,0,345310 ,1,0,345930 ,1,0,346170 ,1,0,346500 ,1,0,346820 ,1,0,347230 ,1,0,348100 ,1,0,348335 ,1,0,349380 ,1,0,350550 ,1,0,350775 ,1,0,351435 ,1,0,351640 ,1,0,352495 ,1,0,352805 ,1,0,353465 ,1,0,353910 ,1,0,354330 ,1,0,354555 ,1,0,354955 ,1,0,355180 ,1,0,355485 ,1,0,355935 ,1,0,356370 ,1,0,356600 ,1,0,357140 ,1,0,357485 ,1,0,357690 ,1,0,358345 ,1,0,358545 ,1,0,359800 ,1,0,360870 ,1,0,362020 ,1,0,362985 ,1,0,363535 ,1,0,365305 ,1,0,366565 ,1,0,367855 ,1,0,369030 ,1,0,369440 ,1,0,369855 ,1,0,370370 ,1,0,370680 ,1,0,370890 ,1,0,371100 ,1,0,371425 ,1,0,371970 ,1,0,374665 ,1,0,374890 ,1,0,378365 ,1,0,382560 ,1,0,383160 ,1,0,383285 ,1,0,385260 ,1,0,386375 ,1,0,387530 ,1,0,388200 ,1,0,388900 ,1,0,389845 ,1,0,389960 ,1,0,390220 ,1,0,390410 ,1,0,390585 ,1,0,390850 ,1,0,393320 ,1,0,396230 ,1,0,398825 ,1,0,399145 ,1,0,399280 ,1,0,399400 ,1,0,399575 ,1,0,399750 ,1,0,402610 ,1,0,404010 ,1,0,404250 ,1,0,404690 ,1,0,405220 ,1,0,405540 ,1,0,405805 ,1,0,406000 ,1,0,406315 ,1,0,406530 ,1,0,406910 ,1,0,407085 ,1,0,407270 ,1,0,407400 ,1,0,407585 ,1,0,407715 ,1,0,407905 ,1,0,408115 ,1,0,408360 ,1,0,408775 ,1,0,409105 ,1,0,409360 ,1,0,409815 ,1,0,410255 ,1,0,410530 ,1,0,411125 ,1,0,411470 ,1,0,411680 ,1,0,411820 ,1,0,412025 ,1,0,412150 ,1,0,412520 ,1,0,412625 ,1,0,412735 ,1,0,412925 ,1,0,413055 ,1,0,413185 ,1,0,413445 ,1,0,414395 ,1,0,414585 ,1,0,415120 ,1,0,415310 ,1,0,415500 ,1,0,415735 ,1,0,415920 ,1,0,416860 ,1,0,417195 ,1,0,418085 ,1,0,418410 ,1,0,418665 ,1,0,418810 ,1,0,419035 ,1,0,419205 ,1,0,419340 ,1,0,419465 ,1,0,419695 ,1,0,419885 ,1,0,420245 ,1,0,420640 ,1,0,420910 ,1,0,421035 ,1,0,421185 ,1,0,421370 ,1,0,421605 ,1,0,421805 ,1,0,422035 ,1,0,422305 ,1,0,422610 ,1,0,422855 ,1,0,423105 ,1,0,423375 ,1,0,423630 ,1,0,423900 ,1,0,424180 ,1,0,424430 ,1,0,424620 ,1,0,424825 ,1,0,425015 ,1,0,425190 ,1,0,425410 ,1,0,425695 ,1,0,425970 ,1,0,426270 ,1,0,426540 ,1,0,426775 ,1,0,426975 ,1,0,427155 ,1,0,427330 ,1,0,427530 ,1,0,427710 ,1,0,427910 ,1,0,428095 ,1,0,428285 ,1,0,428430 ,1,0,428555 ,1,0,428695 ,1,0,428825 ,1,0,429005 ,1,0,429195 ,1,0,429385 ,1,0,429575 ,1,0,429745 ,1,0,429945 ,1,0,430145 ,1,0,430340 ,1,0,430460 ,1,0,430600 ,1,0,430730 ,1,0,430855 ,1,0,430985 ,1,0,431120 ,1,0,431250 ,1,0,431385 ,1,0,431570 ,1,0,431815 ,1,0,431935 ,1,0,432205 ,1,0,432415 ,1,0,432620 ,1,0,432875 ,1,0,433075 ,1,0,433275 ,1,0,433475 ,1,0,433670 ,1,0,433865 ,1,0,434185 ,1,0,434605 ,1,0,434810 ,1,0,435015 ,1,0,435280 ,1,0,435490 ,1,0,435735 ,1,0,435895 ,1,0,436075 ,1,0,436300 ,1,0,436620 ,1,0,436815 ,1,0,436950 ,1,0,437150 ,1,0,437350 ,1,0,437545 ,1,0,437925 ,1,0,438340 ,1,0,438790 ,1,0,439210 ,1,0,439755 ,1,0,440360 ,1,0,440555 ,1,0,440935 ,1,0,441525 ,1,0,441670 ,1,0,441785 ,1,0,442300 ,1,0,442430 ,1,0,442825 ,1,0,443085 ,1,0,443530 ,1,0,443665 ,1,0,443955 ,1,0,444155 ,1,0,444355 ,1,0,444495 ,1,0,444745 ,1,0,445035 ,1,0,445290 ,1,0,445655 ,1,0,446020 ,1,0,446145 ,1,0,446285 ,1,0,446400 ,1,0,446950 ,1,0,447140 ,1,0,447290 ,1,0,447675 ,1,0,447870 ,1,0,448000 ,1,0,448210 ,1,0,448605 ,1,0,448700 ,1,0,448855 ,1,0,449100 ,1,0,449360 ,1,0,449740 ,1,0,449995 ,1,0,450125 ,1,0,450305 ,1,0,450705 ,1,0,450920 ,1,0,451150 ,1,0,451350 ,1,0,451545 ,1,0,451685 ,1,0,451950 ,1,0,452065 ,1,0,452180 ,1,0,452375 ,1,0,452575 ,1,0,452850 ,1,0,453040 ,1,0,453240 ,1,0,453425 ,1,0,453610 ,1,0,453730 ,1,0,453985 ,1,0,454225 ,1,0,454440 ,1,0,454630 ,1,0,454775 ,1,0,454895 ,1,0,455050 ,1,0,455195 ,1,0,455510 ,1,0,455810 ,1,0,456075 ,1,0,456215 ,1,0,456330 ,1,0,456450 ,1,0,456575 ,1,0,456760 ,1,0,456895 ,1,0,457000 ,1,0,457160 ,1,0,457280 ,1,0,457435 ,1,0,457570 ,1,0,457825 ,1,0,458140 ,1,0,458635 ,1,0,459700 ,1,0,459880 ,1,0,460590 ,1,0,460730 ,1,0,460995 ,1,0,461200 ,1,0,461460 ,1,0,461585 ,1,0,461720 ,1,0,461845 ,1,0,461995 ,1,0,462125 ,1,0,462490 ,1,0,462915 ,1,0,463350 ,1,0,463550 ,1,0,463670 ,1,0,463800 ,1,0,464625 ,1,0,464745 ,1,0,464865 ,1,0,465055 ,1,0,465225 ,1,0,465530 ,1,0,465665 ,1,0,466045 ,1,0,466350 ,1,0,467200 ,1,0,467380 ,1,0,468480 ,1,0,469790 ,1,0,470015 ,1,0,471550 ,1,0,472245 ,1,0,472440 ,1,0,472565 ,1,0,473075 ,1,0,473250 ,1,0,473660 ,1,0,473855 ,1,0,473995 ,1,0,474100 ,1,0,474235 ,1,0,474440 ,1,0,474730 ,1,0,474925 ,1,0,475245 ,1,0,475370 ,1,0,475740 ,1,0,475870 ,1,0,476305 ,1,0,476850 ,1,0,476995 ,1,0,477105 ,1,0,477250 ,1,0,477380 ,1,0,477480 ,1,0,477675 ,1,0,477775 ,1,0,478170 ,1,0,478305 ,1,0,478420 ,1,0,478705 ,1,0,478960 ,1,0,479260 ,1,0,479500 ,1,0,479810 ,1,0,479955 ,1,0,480100 ,1,0,480220 ,1,0,480365 ,1,0,480475 ,1,0,480635 ,1,0,481745 ,1,0,482210 ,1,0,482520 ,1,0,482840 ,1,0,482950 ,1,0,483190 ,1,0,483380 ,1,0,483590 ,1,0,483765 ,1,0,484070 ,1,0,484320 ,1,0,484845 ,1,0,485025 ,1,0,485160 ,1,0,485325 ,1,0,485520 ,1,0,485835 ,1,0,486025 ,1,0,486165 ,1,0,486270 ,1,0,486465 ,1,0,486940 ,1,0,487495 ,1,0,487615 ,1,0,488360 ,1,0,488535 ,1,0,488940 ,1,0,489510 ,1,0,489655 ,1,0,490185 ,1,0,490740 ,1,0,490885 ,1,0,491075 ,1,0,491555 ,1,0,491805 ,1,0,492080 ,1,0,492210 ,1,0,492340 ,1,0,492495 ,1,0,492770 ,1,0,493135 ,1,0,493290 ,1,0,493430 ,1,0,493545 ,1,0,493670 ,1,0,493825 ,1,0,493975 ,1,0,494100 ,1,0,494225 ,1,0,494415 ,1,0,494930 ,1,0,495055 ,1,0,495345 ,1,0,495590 ,1,0,495730 ,1,0,495855 ,1,0,497075 ,1,0,497380 ,1,0,497585 ,1,0,497845 ,1,0,498460 ,1,0,498740 ,1,0,498940 ,1,0,499255 ,1,0,499515 ,1,0,499730 ,1,0,499925 ,1,0,500360 ,1,0,500755 ,1,0,501070 ,1,0,501345 ,1,0,501725 ,1,0,501950 ,1,0,502125 ,1,0,502420 ,1,0,502625 ,1,0,502900 ,1,0,503250 ,1,0,503535 ,1,0,505680 ,1,0,505995 ,1,0,507165 ,1,0,508260 ,1,0,510010 ,1,0,510270 ,1,0,511835 ,1,0,512285 ,1,0,512485 ,1,0,512680 ,1,0,514240 ,1,0,514430 ,1,0,514675 ,1,0,514980 ,1,0,515225 ,1,0,515695 ,1,0,516210 ,1,0,516540 ,1,0,516790 ,1,0,516915 ,1,0,517415 ,1,0,517880 ,1,0,518340 ,1,0,518530 ,1,0,518700 ,1,0,518880 ,1,0,519335 ,1,0,520275 ,1,0,520420 ,1,0,520645 ,1,0,520835 ,1,0,521040 ,1,0,521160 ,1,0,521345 ,1,0,521480 ,1,0,521665 ,1,0,521815 ,1,0,522090 ,1,0,522500 ,1,0,522705 ,1,0,522905 ,1,0,523030 ,1,0,523235 ,1,0,523340 ,1,0,523555 ,1,0,523900 ,1,0,524050 ,1,0,524195 ,1,0,524320 ,1,0,524465 ,1,0,524585 ,1,0,524705 ,1,0,524840 ,1,0,524985 ,1,0,525130 ,1,0,525350 ,1,0,525460 ,1,0,525590 ,1,0,525700 ,1,0,525940 ,1,0,526115 ,1,0,526310 ,1,0,526430 ,1,0,526545 ,1,0,526750 ,1,0,526955 ,1,0,527125 ,1,0,527320 ,1,0,527450 ,1,0,527595 ,1,0,527855 ,1,0,528005 ,1,0,528125 ,1,0,528255 ,1,0,528455 ,1,0,528630 ,1,0,528755 ,1,0,528850 ,1,0,528990 ,1,0,529090 ,1,0,529300 ,1,0,529495 ,1,0,529610 ,1,0,529755 ,1,0,529910 ,1,0,530100 ,1,0,530375 ,1,0,530565 ,1,0,530795 ,1,0,530995 ,1,0,531130 ,1,0,531320 ,1,0,531670 ,1,0,531855 ,1,0,532260 ,1,0,532400 ,1,0,532500 ,1,0,532655 ,1,0,532790 ,1,0,533125 ,1,0,534260 ,1,0,534595 ,1,0,535040 ,1,0,535285 ,1,0,535420 ,1,0,535675 ,1,0,535935 ,1,0,536130 ,1,0,536445 ,1,0,536570 ,1,0,536940 ,1,0,537170 ,1,0,537415 ,1,0,537650 ,1,0,537790 ,1,0,537915 ,1,0,538050 ,1,0,538190 ,1,0,538465 ,1,0,538660 ,1,0,538870 ,1,0,539045 ,1,0,539225 ,1,0,539455 ,1,0,539735 ,1,0,539935 ,1,0,540085 ,1,0,540285 ,1,0,540415 ,1,0,540620 ,1,0,540835 ,1,0,541050 ,1,0,541270 ,1,0,541455 ,1,0,541665 ,1,0,541780 ,1,0,542050 ,1,0,542260 ,1,0,542470 ,1,0,543465 ,1,0,543670 ,1,0,543885 ,1,0,544015 ,1,0,544210 ,1,0,544375 ,1,0,544555 ,1,0,544730 ,1,0,544970 ,1,0,545160 ,1,0,545350 ,1,0,545730 ,1,0,545895 ,1,0,546140 ,1,0,546350 ,1,0,546475 ,1,0,546750 ,1,0,547120 ,1,0,547790 ,1,0,547985 ,1,0,548090 ,1,0,548305 ,1,0,548600 ,1,0,548900 ,1,0,549280 ,1,0,549670 ,1,0,550100 ,1,0,550625 ,1,0,550810 ,1,0,551060 ,1,0,551320 ,1,0,551550 ,1,0,551815 ,1,0,552185 ,1,0,552330 ,1,0,552525 ,1,0,552930 ,1,0,553335 ,1,0,553605 ,1,0,553860 ,1,0,554000 ,1,0,554140 ,1,0,554385 ,1,0,554530 ,1,0,554750 ,1,0,554865 ,1,0,555225 ,1,0,555380 ,1,0,556165 ,1,0,556370 ,1,0,556625 ,1,0,556820 ,1,0,557060 ,1,0,557200 ,1,0,557385 ,1,0,557540 ,1,0,557670 ,1,0,557875 ,1,0,558020 ,1,0,558200 ,1,0,558410 ,1,0,558530 ,1,0,559115 ,1,0,559315 ,1,0,559640 ,1,0,559890 ,1,0,560060 ,1,0,560320 ,1,0,560935 ,1,0,561195 ,1,0,561410 ,1,0,561615 ,1,0,562170 ,1,0,562345 ,1,0,562645 ,1,0,562845 ,1,0,562975 ,1,0,563220 ,1,0,563550 ,1,0,563760 ,1,0,563910 ,1,0,564110 ,1,0,564215 ,1,0,564420 ,1,0,564620 ,1,0,565120 ,1,0,565320 ,1,0,565445 ,1,0,565915 ,1,0,566315 ,1,0,566440 ,1,0,566630 ,1,0,566735 ,1,0,566880 ,1,0,566995 ,1,0,567245 ,1,0,567385 ,1,0,567630 ,1,0,567905 ,1,0,568150 ,1,0,568270 ,1,0,568475 ,1,0,568680 ,1,0,568895 ,1,0,569030 ,1,0,569185 ,1,0,569295 ,1,0,569505 ,1,0,569700 ,1,0,569945 ,1,0,570125 ,1,0,570315 ,1,0,570580 ,1,0,570725 ,1,0,571025 ,1,0,571130 ,1,0,571295 ,1,0,571500 ,1,0,571685 ,1,0,571925 ,1,0,572140 ,1,0,572465 ,1,0,572670 ,1,0,572815 ,1,0,573105 ,1,0,573235 ,1,0,573350 ,1,0,573545 ,1,0,573745 ,1,0,573875 ,1,0,574080 ,1,0,574220 ,1,0,574775 ,1,0,574975 ,1,0,575890 ,1,0,576020 ,1,0,576455 ,1,0,576585 ,1,0,576705 ,1,0,577210 ,1,0,577585 ,1,0,578045 ,1,0,578200 ,1,0,578360 ,1,0,578500 ,1,0,578665 ,1,0,579065 ,1,0,579315 ,1,0,579530 ,1,0,579735 ,1,0,580005 ,1,0,580110 ,1,0,580330 ,1,0,580510 ,1,0,580690 ,1,0,580970 ,1,0,581220 ,1,0,581490 ,1,0,581890 ,1,0,582105 ,1,0,582240 ,1,0,582415 ,1,0,582700 ,1,0,582930 ,1,0,583140 ,1,0,583425 ,1,0,583640 ,1,0,583800 ,1,0,584245 ,1,0,584370 ,1,0,584605 ,1,0,584730 ,1,0,584850 ,1,0,585045 ,1,0,585235 ,1,0,585440 ,1,0,585570 ,1,0,585700 ,1,0,585885 ,1,0,586025 ,1,0,586225 ,1,0,586375 ,1,0,586500 ,1,0,586695 ,1,0,586830 ,1,0,586955 ,1,0,587090 ,1,0,587240 ,1,0,587375 ,1,0,587560 ,1,0,587720 ,1,0,587845 ,1,0,588000 ,1,0,588135 ,1,0,588325 ,1,0,588580 ,1,0,588725 ,1,0,588855 ,1,0,589055 ,1,0,589175 ,1,0,589475 ,1,0,589695 ,1,0,590120 ,1,0,590420 ,1,0,590805 ,1,0,591145 ,1,0,591520 ,1,0,592055 ,1,0,592580 ,1,0,592745 ,1,0,593485 ,1,0,593635 ,1,0,593775 ,1,0,593975 ,1,0,594180 ,1,0,594465 ,1,0,594720 ,1,0,594840 ,1,0,594970 ,1,0,595155 ,1,0,595340 ,1,0,595475 ,1,0,595670 ,1,0,595810 ,1,0,595935 ,1,0,596045 ,1,0,596170 ,1,0,596310 ,1,0,596450 ,1,0,596575 ,1,0,596695 ,1,0,596860 ,1,0,596990 ,1,0,597125 ,1,0,597260 ,1,0,597570 ,1,0,597705 ,1,0,598080 ,1,0,598370 ,1,0,599015 ,1,0,599340 ,1,0,599475 ,1,0,599720 ,1,0,599990 ,1,0,600170 ,1,0,600410 ,1,0,600835 ,1,0,601095 ,1,0,601275 ,1,0,601445 ,1,0,601645 ,1,0,601865 ,1,0,602075 ,1,0,602260 ,1,0,602585 ,1,0,602720 ,1,0,603125 ,1,0,603485 ,1,0,603835 ,1,0,604330 ,1,0,604670 ,1,0,605095 ,1,0,605380 ,1,0,605525 ,1,0,606190 ,1,0,606360 ,1,0,606505 ,1,0,606745 ,1,0,607255 ,1,0,607595 ,1,0,608100 ,1,0,608600 ,1,0,609295 ,1,0,609430 ,1,0,609725 ,1,0,609895 ,1,0,610150 ,1,0,610285 ,1,0,610725 ,1,0,610945 ,1,0,611155 ,1,0,611410 ,1,0,611530 ,1,0,611725 ,1,0,612180 ,1,0,612310 ,1,0,612475 ,1,0,612675 ,1,0,612840 ,1,0,613250 ,1,0,613770 ,1,0,613945 ,1,0,614370 ,1,0,614865 ,1,0,615050 ,1,0,615685 ,1,0,616265 ,1,0,616520 ,1,0,616715 ,1,0,616830 ,1,0,619115 ,1,0,619420 ,1,0,620735 ,1,0,620970 ,1,0,621380 ,1,0,621560 ,1,0,621680 ,1,0,621810 ,1,0,622025 ,1,0,622555 ,1,0,623360 ,1,0,623670 ,1,0,624100 ,1,0,624270 ,1,0,624755 ,1,0,625265 ,1,0,625530 ,1,0,625760 ,1,0,625985 ,1,0,626400 ,1,0,626530 ,1,0,626685 ,1,0,626880 ,1,0,627130 ,1,0,627350 ,1,0,627515 ,1,0,627655 ,1,0,627815 ,1,0,627965 ,1,0,628150 ,1,0,628400 ,1,0,628515 ,1,0,628640 ,1,0,628765 ,1,0,628945 ,1,0,629080 ,1,0,629195 ,1,0,629335 ,1,0,629465 ,1,0,629610 ,1,0,629730 ,1,0,629875 ,1,0,630045 ,1,0,630150 ,1,0,630280 ,1,0,630405 ,1,0,630535 ,1,0,630670 ,1,0,630855 ,1,0,631130 ,1,0,631655 ,1,0,631900 ,1,0,632270 ,1,0,633000 ,1,0,633755 ,1,0,633955 ,1,0,634950 ,1,0,635310 ,1,0,636155 ,1,0,636740 ,1,0,637120 ,1,0,638730 ,1,0,640055 ,1,0,641305 ,1,0,641705 ,1,0,641960 ,1,0,644950 ,1,0,645090 ,1,0,645625 ,1,0,646055 ,1,0,646250 ,1,0,646455 ,1,0,646640 ,1,0,646945 ,1,0,647065 ,1,0,647375 ,1,0,648430 ,1,0,649575 ,1,0,649870 ,1,0,650380 ,1,0,650650 ,1,0,651110 ,1,0,653070 ,1,0,654430 ,1,0,655935 ,1,0,656905 ,1,0,657030 ,1,0,658195 ,1,0,658395 ,1,0,658515 ,1,0,658735 ,1,0,658865 ,1,0,658960 ,1,0,659210 ,1,0,659465 ,1,0,659715 ,1,0,659835 ,1,0,660105 ,1,0,660405 ,1,0,660695 ,1,0,661005 ,1,0,661520 ,1,0,661740 ,1,0,662390 ,1,0,662700 ,1,0,663080 ,1,0,663645 ,1,0,664195 ,1,0,664470 ,1,0,666335 ,1,0,666825 ,1,0,667135 ,1,0,667385 ,1,0,667575 ,1,0,667840 ,1,0,668660 ,1,0,668905 ,1,0,669205 ,1,0,669315 ,1,0,669465 ,1,0,669595 ,1,0,669715 ,1,0,669900 ,1,0,670135 ,1,0,670420 ,1,0,670580 ,1,0,670695 ,1,0,670840 ,1,0,671000 ,1,0,671445 ,1,0,671565 ,1,0,671700 ,1,0,672625 ,1,0,672975 ,1,0,673120 ,1,0,673310 ,1,0,673520 ,1,0,673655 ,1,0,750 ,1,0,980 ,1,0,2245 ,1,0,2560 ,1,0,2900 ,1,0,3320 ,1,0,3645 ,1,0,3835 ,1,0,4145 ,1,0,4380 ,1,0,4710 ,1,0,4940 ,1,0,5260 ,1,0,5460 ,1,0,5975 ,1,0,6190 ,1,0,6510 ,1,0,6735 ,1,0,6945 ,1,0,7175 ,1,0,7505 ,1,0,7720 ,1,0,7950 ,1,0,8265 ,1,0,8590 ,1,0,8915 ,1,0,9220 ,1,0,9710 ,1,0,10040 ,1,0,10240 ,1,0,10575 ,1,0,11430 ,1,0,11895 ,1,0,12630 ,1,0,13360 ,1,0,13695 ,1,0,14140 ,1,0,14335 ,1,0,15070 ,1,0,15630 ,1,0,16045 ,1,0,16265 ,1,0,16600 ,1,0,16810 ,1,0,17015 ,1,0,17340 ,1,0,17535 ,1,0,17760 ,1,0,17960 ,1,0,18310 ,1,0,18625 ,1,0,18970 ,1,0,20140 ,1,0,21625 ,1,0,21860 ,1,0,23410 ,1,0,23825 ,1,0,24050 ,1,0,24400 ,1,0,24605 ,1,0,24850 ,1,0,25305 ,1,0,25500 ,1,0,25850 ,1,0,26150 ,1,0,26380 ,1,0,26690 ,1,0,27455 ,1,0,28970 ,1,0,29190 ,1,0,29770 ,1,0,30195 ,1,0,30395 ,1,0,30720 ,1,0,31165 ,1,0,31375 ,1,0,32020 ,1,0,32510 ,1,0,34225 ,1,0,34420 ,1,0,34720 ,1,0,35730 ,1,0,35950 ,1,0,36705 ,1,0,37025 ,1,0,37225 ,1,0,37965 ,1,0,38900 ,1,0,39270 ,1,0,39465 ,1,0,39700 ,1,0,39935 ,1,0,40245 ,1,0,40470 ,1,0,40690 ,1,0,40890 ,1,0,41090 ,1,0,41315 ,1,0,41535 ,1,0,41865 ,1,0,42065 ,1,0,42385 ,1,0,42795 ,1,0,43045 ,1,0,43250 ,1,0,43575 ,1,0,43785 ,1,0,44025 ,1,0,44360 ,1,0,44680 ,1,0,45210 ,1,0,46040 ,1,0,46365 ,1,0,46995 ,1,0,47195 ,1,0,47700 ,1,0,48135 ,1,0,48450 ,1,0,48775 ,1,0,49270 ,1,0,50315 ,1,0,50550 ,1,0,51075 ,1,0,51395 ,1,0,51625 ,1,0,52335 ,1,0,52585 ,1,0,53220 ,1,0,53450 ,1,0,53785 ,1,0,54120 ,1,0,54555 ,1,0,54975 ,1,0,55405 ,1,0,55825 ,1,0,56255 ,1,0,56550 ,1,0,56880 ,1,0,57330 ,1,0,57790 ,1,0,58115 ,1,0,58535 ,1,0,58850 ,1,0,59580 ,1,0,59800 ,1,0,60005 ,1,0,60305 ,1,0,60510 ,1,0,60740 ,1,0,60945 ,1,0,61150 ,1,0,61380 ,1,0,61680 ,1,0,62120 ,1,0,62415 ,1,0,62730 ,1,0,63050 ,1,0,63300 ,1,0,63605 ,1,0,63820 ,1,0,64680 ,1,0,65030 ,1,0,65555 ,1,0,66060 ,1,0,66260 ,1,0,66455 ,1,0,66680 ,1,0,66890 ,1,0,67200 ,1,0,67395 ,1,0,67610 ,1,0,68030 ,1,0,68540 ,1,0,69070 ,1,0,69465 ,1,0,69900 ,1,0,70410 ,1,0,70920 ,1,0,71420 ,1,0,72245 ,1,0,72465 ,1,0,72770 ,1,0,73295 ,1,0,73595 ,1,0,73885 ,1,0,74100 ,1,0,75115 ,1,0,75420 ,1,0,75635 ,1,0,76135 ,1,0,76455 ,1,0,76765 ,1,0,77005 ,1,0,77290 ,1,0,77620 ,1,0,77940 ,1,0,78245 ,1,0,78465 ,1,0,78705 ,1,0,79025 ,1,0,79745 ,1,0,80065 ,1,0,80375 ,1,0,80600 ,1,0,81145 ,1,0,81460 ,1,0,81770 ,1,0,82200 ,1,0,82525 ,1,0,82840 ,1,0,83170 ,1,0,83505 ,1,0,83685 ,1,0,84120 ,1,0,84445 ,1,0,84645 ,1,0,84855 ,1,0,85050 ,1,0,85300 ,1,0,85515 ,1,0,85730 ,1,0,86100 ,1,0,86375 ,1,0,86685 ,1,0,86910 ,1,0,87120 ,1,0,87455 ,1,0,87690 ,1,0,87900 ,1,0,88110 ,1,0,88420 ,1,0,88740 ,1,0,89045 ,1,0,89350 ,1,0,89580 ,1,0,90195 ,1,0,90810 ,1,0,91015 ,1,0,91215 ,1,0,91520 ,1,0,91825 ,1,0,92260 ,1,0,92460 ,1,0,92765 ,1,0,93090 ,1,0,93305 ,1,0,93710 ,1,0,94050 ,1,0,94260 ,1,0,94480 ,1,0,94690 ,1,0,95005 ,1,0,95330 ,1,0,95660 ,1,0,95855 ,1,0,96085 ,1,0,96295 ,1,0,96475 ,1,0,96805 ,1,0,97035 ,1,0,97460 ,1,0,97660 ,1,0,98025 ,1,0,98550 ,1,0,98880 ,1,0,99635 ,1,0,99995 ,1,0,100330 ,1,0,100550 ,1,0,100870 ,1,0,101070 ,1,0,102205 ,1,0,102425 ,1,0,102750 ,1,0,102975 ,1,0,103280 ,1,0,103600 ,1,0,103975 ,1,0,104165 ,1,0,104495 ,1,0,104710 ,1,0,104930 ,1,0,105150 ,1,0,105375 ,1,0,105595 ,1,0,105790 ,1,0,106425 ,1,0,106990 ,1,0,107975 ,1,0,108190 ,1,0,108385 ,1,0,108630 ,1,0,108845 ,1,0,109145 ,1,0,109485 ,1,0,109935 ,1,0,110685 ,1,0,111000 ,1,0,113300 ,1,0,113975 ,1,0,114200 ,1,0,114435 ,1,0,115220 ,1,0,115410 ,1,0,115630 ,1,0,115850 ,1,0,116045 ,1,0,116270 ,1,0,116610 ,1,0,117465 ,1,0,118090 ,1,0,118295 ,1,0,119045 ,1,0,121440 ,1,0,121680 ,1,0,123170 ,1,0,123375 ,1,0,123905 ,1,0,124225 ,1,0,124440 ,1,0,129475 ,1,0,129700 ,1,0,129910 ,1,0,130120 ,1,0,130425 ,1,0,130745 ,1,0,130990 ,1,0,131195 ,1,0,132395 ,1,0,132610 ,1,0,133935 ,1,0,134145 ,1,0,136190 ,1,0,136530 ,1,0,136750 ,1,0,136975 ,1,0,137320 ,1,0,137515 ,1,0,137845 ,1,0,138160 ,1,0,138495 ,1,0,138830 ,1,0,139255 ,1,0,139680 ,1,0,139895 ,1,0,140220 ,1,0,140525 ,1,0,140950 ,1,0,141385 ,1,0,141785 ,1,0,142405 ,1,0,143315 ,1,0,143640 ,1,0,144170 ,1,0,144490 ,1,0,145040 ,1,0,145940 ,1,0,146250 ,1,0,146905 ,1,0,147135 ,1,0,147355 ,1,0,147685 ,1,0,148225 ,1,0,148560 ,1,0,148755 ,1,0,148965 ,1,0,149305 ,1,0,149615 ,1,0,150290 ,1,0,150500 ,1,0,150840 ,1,0,151045 ,1,0,151265 ,1,0,151600 ,1,0,152140 ,1,0,152365 ,1,0,152680 ,1,0,153545 ,1,0,153960 ,1,0,154505 ,1,0,154705 ,1,0,155030 ,1,0,155590 ,1,0,156120 ,1,0,157680 ,1,0,160220 ,1,0,160450 ,1,0,160665 ,1,0,161120 ,1,0,161435 ,1,0,161750 ,1,0,162290 ,1,0,163175 ,1,0,164690 ,1,0,165930 ,1,0,166475 ,1,0,166710 ,1,0,166925 ,1,0,167355 ,1,0,167580 ,1,0,168585 ,1,0,168945 ,1,0,169270 ,1,0,169500 ,1,0,169725 ,1,0,169940 ,1,0,170140 ,1,0,170380 ,1,0,170690 ,1,0,171025 ,1,0,171245 ,1,0,171585 ,1,0,171910 ,1,0,172345 ,1,0,172670 ,1,0,172880 ,1,0,173120 ,1,0,173455 ,1,0,173660 ,1,0,173920 ,1,0,174115 ,1,0,174555 ,1,0,175140 ,1,0,175345 ,1,0,175660 ,1,0,175990 ,1,0,176435 ,1,0,177085 ,1,0,177430 ,1,0,177750 ,1,0,178095 ,1,0,178855 ,1,0,179280 ,1,0,179500 ,1,0,179720 ,1,0,179965 ,1,0,180275 ,1,0,180770 ,1,0,181020 ,1,0,181445 ,1,0,181885 ,1,0,182215 ,1,0,182530 ,1,0,182970 ,1,0,183185 ,1,0,183410 ,1,0,184035 ,1,0,184280 ,1,0,184700 ,1,0,185030 ,1,0,185595 ,1,0,185950 ,1,0,186155 ,1,0,186390 ,1,0,187045 ,1,0,187370 ,1,0,187585 ,1,0,187905 ,1,0,188335 ,1,0,188640 ,1,0,188870 ,1,0,189195 ,1,0,189635 ,1,0,189840 ,1,0,190280 ,1,0,190600 ,1,0,191150 ,1,0,191395 ,1,0,191715 ,1,0,192050 ,1,0,192345 ,1,0,193510 ,1,0,195675 ,1,0,196010 ,1,0,196455 ,1,0,196785 ,1,0,197340 ,1,0,197655 ,1,0,200555 ,1,0,200885 ,1,0,201215 ,1,0,203205 ,1,0,203415 ,1,0,204490 ,1,0,204720 ,1,0,204925 ,1,0,205400 ,1,0,205710 ,1,0,206570 ,1,0,209360 ,1,0,209570 ,1,0,209865 ,1,0,210190 ,1,0,210965 ,1,0,212470 ,1,0,212780 ,1,0,213015 ,1,0,213235 ,1,0,213465 ,1,0,213795 ,1,0,214145 ,1,0,214575 ,1,0,215310 ,1,0,215780 ,1,0,215960 ,1,0,216290 ,1,0,216605 ,1,0,217580 ,1,0,217800 ,1,0,218010 ,1,0,218555 ,1,0,219300 ,1,0,219525 ,1,0,220055 ,1,0,220450 ,1,0,220900 ,1,0,221335 ,1,0,221650 ,1,0,221970 ,1,0,222260 ,1,0,222510 ,1,0,222825 ,1,0,223250 ,1,0,223710 ,1,0,224270 ,1,0,225005 ,1,0,225870 ,1,0,226630 ,1,0,227345 ,1,0,227560 ,1,0,227875 ,1,0,228320 ,1,0,228645 ,1,0,229880 ,1,0,230120 ,1,0,230435 ,1,0,230645 ,1,0,230875 ,1,0,231220 ,1,0,231835 ,1,0,232265 ,1,0,232575 ,1,0,233655 ,1,0,233955 ,1,0,234170 ,1,0,234490 ,1,0,235230 ,1,0,235660 ,1,0,235880 ,1,0,238320 ,1,0,239090 ,1,0,239510 ,1,0,240240 ,1,0,240670 ,1,0,240980 ,1,0,241390 ,1,0,242640 ,1,0,242855 ,1,0,243150 ,1,0,243385 ,1,0,243745 ,1,0,244160 ,1,0,244575 ,1,0,245135 ,1,0,245680 ,1,0,245910 ,1,0,246820 ,1,0,247170 ,1,0,247525 ,1,0,248990 ,1,0,250180 ,1,0,250360 ,1,0,251150 ,1,0,251930 ,1,0,252575 ,1,0,252890 ,1,0,253745 ,1,0,254405 ,1,0,254715 ,1,0,254930 ,1,0,255245 ,1,0,255760 ,1,0,255975 ,1,0,256290 ,1,0,256500 ,1,0,257005 ,1,0,257420 ,1,0,257745 ,1,0,257965 ,1,0,258295 ,1,0,258700 ,1,0,259130 ,1,0,259435 ,1,0,259855 ,1,0,260150 ,1,0,260675 ,1,0,260870 ,1,0,261295 ,1,0,261500 ,1,0,261710 ,1,0,262030 ,1,0,262215 ,1,0,262840 ,1,0,263140 ,1,0,263470 ,1,0,263890 ,1,0,264520 ,1,0,265175 ,1,0,265495 ,1,0,266110 ,1,0,266320 ,1,0,266965 ,1,0,267670 ,1,0,268070 ,1,0,268545 ,1,0,269275 ,1,0,270615 ,1,0,271965 ,1,0,272775 ,1,0,273095 ,1,0,273430 ,1,0,273825 ,1,0,274350 ,1,0,274640 ,1,0,275070 ,1,0,275265 ,1,0,275470 ,1,0,275800 ,1,0,276115 ,1,0,278090 ,1,0,278485 ,1,0,278675 ,1,0,280090 ,1,0,281945 ,1,0,282385 ,1,0,282700 ,1,0,283110 ,1,0,283425 ,1,0,285500 ,1,0,285745 ,1,0,286125 ,1,0,286875 ,1,0,287615 ,1,0,287835 ,1,0,288120 ,1,0,288835 ,1,0,289250 ,1,0,290695 ,1,0,291285 ,1,0,293745 ,1,0,294975 ,1,0,296000 ,1,0,296530 ,1,0,297660 ,1,0,297980 ,1,0,298270 ,1,0,298495 ,1,0,298930 ,1,0,299235 ,1,0,300285 ,1,0,300630 ,1,0,301060 ,1,0,301355 ,1,0,301795 ,1,0,301995 ,1,0,302555 ,1,0,303115 ,1,0,303310 ,1,0,303515 ,1,0,303945 ,1,0,304265 ,1,0,304475 ,1,0,305440 ,1,0,305760 ,1,0,306165 ,1,0,306810 ,1,0,307005 ,1,0,307315 ,1,0,307535 ,1,0,307935 ,1,0,308260 ,1,0,308475 ,1,0,308885 ,1,0,309210 ,1,0,309440 ,1,0,309640 ,1,0,309960 ,1,0,310265 ,1,0,310790 ,1,0,311220 ,1,0,311455 ,1,0,311660 ,1,0,311910 ,1,0,312140 ,1,0,312580 ,1,0,312805 ,1,0,313235 ,1,0,313555 ,1,0,313870 ,1,0,314705 ,1,0,315315 ,1,0,315700 ,1,0,316080 ,1,0,316320 ,1,0,316520 ,1,0,316750 ,1,0,317040 ,1,0,317580 ,1,0,317985 ,1,0,318210 ,1,0,319150 ,1,0,319450 ,1,0,319885 ,1,0,320095 ,1,0,320410 ,1,0,321025 ,1,0,321435 ,1,0,321635 ,1,0,321865 ,1,0,322180 ,1,0,322375 ,1,0,322720 ,1,0,322910 ,1,0,323435 ,1,0,325105 ,1,0,326730 ,1,0,327155 ,1,0,327670 ,1,0,328325 ,1,0,328535 ,1,0,328740 ,1,0,329940 ,1,0,330575 ,1,0,330785 ,1,0,331310 ,1,0,331935 ,1,0,332165 ,1,0,332500 ,1,0,332835 ,1,0,333030 ,1,0,333395 ,1,0,333595 ,1,0,334050 ,1,0,334265 ,1,0,334470 ,1,0,334700 ,1,0,334885 ,1,0,335235 ,1,0,335455 ,1,0,335690 ,1,0,335910 ,1,0,336225 ,1,0,336415 ,1,0,336810 ,1,0,337035 ,1,0,337475 ,1,0,337795 ,1,0,338575 ,1,0,338790 ,1,0,339015 ,1,0,339750 ,1,0,340495 ,1,0,340730 ,1,0,340940 ,1,0,341155 ,1,0,341355 ,1,0,341575 ,1,0,342010 ,1,0,342315 ,1,0,342650 ,1,0,342930 ,1,0,343370 ,1,0,343670 ,1,0,343980 ,1,0,344200 ,1,0,344530 ,1,0,344755 ,1,0,345090 ,1,0,345300 ,1,0,345645 ,1,0,346160 ,1,0,346385 ,1,0,346695 ,1,0,347040 ,1,0,347350 ,1,0,347575 ,1,0,347995 ,1,0,348645 ,1,0,349060 ,1,0,349275 ,1,0,349590 ,1,0,349885 ,1,0,350200 ,1,0,350440 ,1,0,351090 ,1,0,351440 ,1,0,351625 ,1,0,351945 ,1,0,352265 ,1,0,352500 ,1,0,352810 ,1,0,353150 ,1,0,353470 ,1,0,353675 ,1,0,353890 ,1,0,354215 ,1,0,354430 ,1,0,354740 ,1,0,354950 ,1,0,355185 ,1,0,355385 ,1,0,355705 ,1,0,356150 ,1,0,356490 ,1,0,356735 ,1,0,357115 ,1,0,357695 ,1,0,358035 ,1,0,358335 ,1,0,358655 ,1,0,359180 ,1,0,359395 ,1,0,359705 ,1,0,360030 ,1,0,360235 ,1,0,360555 ,1,0,360875 ,1,0,361390 ,1,0,361605 ,1,0,362745 ,1,0,362990 ,1,0,363305 ,1,0,363645 ,1,0,363990 ,1,0,364310 ,1,0,364860 ,1,0,365310 ,1,0,365830 ,1,0,366150 ,1,0,366445 ,1,0,366875 ,1,0,367215 ,1,0,367530 ,1,0,367970 ,1,0,368280 ,1,0,368910 ,1,0,369445 ,1,0,369755 ,1,0,370275 ,1,0,370485 ,1,0,370895 ,1,0,371195 ,1,0,371860 ,1,0,372165 ,1,0,372700 ,1,0,374245 ,1,0,374555 ,1,0,375125 ,1,0,375330 ,1,0,375520 ,1,0,375695 ,1,0,375885 ,1,0,376250 ,1,0,376670 ,1,0,376795 ,1,0,376925 ,1,0,377100 ,1,0,377285 ,1,0,377960 ,1,0,378170 ,1,0,378425 ,1,0,378785 ,1,0,378900 ,1,0,379045 ,1,0,379285 ,1,0,379470 ,1,0,379575 ,1,0,379700 ,1,0,379820 ,1,0,380010 ,1,0,380150 ,1,0,380550 ,1,0,380710 ,1,0,380845 ,1,0,381040 ,1,0,381360 ,1,0,381465 ,1,0,382015 ,1,0,382865 ,1,0,382995 ,1,0,383165 ,1,0,383350 ,1,0,383535 ,1,0,383725 ,1,0,383930 ,1,0,384075 ,1,0,384250 ,1,0,384375 ,1,0,384680 ,1,0,386080 ,1,0,386800 ,1,0,387145 ,1,0,387390 ,1,0,387500 ,1,0,387945 ,1,0,388610 ,1,0,389380 ,1,0,389535 ,1,0,389650 ,1,0,389965 ,1,0,390100 ,1,0,390415 ,1,0,390590 ,1,0,390775 ,1,0,390920 ,1,0,391080 ,1,0,391230 ,1,0,391430 ,1,0,391575 ,1,0,391695 ,1,0,391860 ,1,0,391985 ,1,0,392165 ,1,0,392280 ,1,0,392395 ,1,0,392570 ,1,0,392895 ,1,0,393025 ,1,0,393210 ,1,0,393325 ,1,0,393450 ,1,0,393715 ,1,0,393915 ,1,0,394045 ,1,0,394310 ,1,0,394415 ,1,0,394640 ,1,0,394805 ,1,0,395015 ,1,0,395135 ,1,0,395320 ,1,0,395460 ,1,0,395575 ,1,0,395685 ,1,0,395855 ,1,0,396700 ,1,0,396980 ,1,0,397300 ,1,0,397485 ,1,0,397615 ,1,0,397745 ,1,0,397880 ,1,0,398055 ,1,0,398240 ,1,0,398415 ,1,0,398565 ,1,0,398700 ,1,0,398830 ,1,0,398960 ,1,0,399205 ,1,0,399335 ,1,0,399580 ,1,0,400060 ,1,0,400220 ,1,0,400415 ,1,0,400790 ,1,0,401045 ,1,0,401370 ,1,0,401550 ,1,0,402260 ,1,0,402680 ,1,0,403115 ,1,0,403375 ,1,0,404490 ,1,0,405195 ,1,0,405785 ,1,0,408170 ,1,0,408365 ,1,0,408630 ,1,0,408900 ,1,0,409080 ,1,0,409225 ,1,0,409425 ,1,0,409820 ,1,0,410000 ,1,0,410205 ,1,0,410345 ,1,0,410615 ,1,0,410865 ,1,0,410990 ,1,0,411255 ,1,0,411475 ,1,0,411685 ,1,0,412030 ,1,0,412265 ,1,0,412500 ,1,0,412740 ,1,0,412985 ,1,0,413240 ,1,0,413430 ,1,0,413660 ,1,0,413830 ,1,0,414005 ,1,0,414120 ,1,0,414255 ,1,0,414400 ,1,0,414575 ,1,0,414770 ,1,0,414925 ,1,0,415125 ,1,0,415370 ,1,0,415505 ,1,0,415600 ,1,0,415720 ,1,0,415925 ,1,0,416955 ,1,0,417265 ,1,0,417475 ,1,0,417905 ,1,0,418460 ,1,0,418960 ,1,0,419145 ,1,0,419470 ,1,0,419765 ,1,0,419970 ,1,0,420105 ,1,0,420250 ,1,0,420360 ,1,0,421930 ,1,0,422040 ,1,0,422310 ,1,0,422615 ,1,0,423025 ,1,0,423240 ,1,0,423360 ,1,0,423565 ,1,0,423700 ,1,0,423830 ,1,0,423955 ,1,0,424185 ,1,0,424435 ,1,0,424950 ,1,0,425135 ,1,0,425285 ,1,0,425415 ,1,0,425545 ,1,0,425700 ,1,0,425840 ,1,0,425975 ,1,0,426100 ,1,0,426240 ,1,0,426395 ,1,0,426515 ,1,0,426780 ,1,0,426960 ,1,0,427160 ,1,0,427275 ,1,0,427380 ,1,0,428080 ,1,0,428435 ,1,0,428765 ,1,0,429010 ,1,0,429125 ,1,0,429310 ,1,0,429500 ,1,0,429810 ,1,0,429950 ,1,0,430595 ,1,0,430800 ,1,0,430990 ,1,0,431180 ,1,0,431390 ,1,0,431575 ,1,0,431875 ,1,0,432010 ,1,0,432135 ,1,0,432340 ,1,0,432465 ,1,0,432625 ,1,0,432750 ,1,0,432935 ,1,0,433080 ,1,0,433600 ,1,0,433980 ,1,0,434105 ,1,0,434745 ,1,0,434940 ,1,0,435160 ,1,0,435285 ,1,0,436625 ,1,0,437355 ,1,0,439685 ,1,0,439955 ,1,0,440315 ,1,0,440635 ,1,0,440940 ,1,0,441120 ,1,0,441405 ,1,0,441675 ,1,0,448270 ,1,0,449365 ,1,0,449865 ,1,0,450925 ,1,0,451155 ,1,0,451355 ,1,0,451675 ,1,0,452070 ,1,0,452580 ,1,0,452715 ,1,0,452835 ,1,0,453175 ,1,0,453555 ,1,0,453675 ,1,0,453900 ,1,0,454090 ,1,0,454320 ,1,0,454555 ,1,0,455055 ,1,0,455315 ,1,0,455575 ,1,0,455695 ,1,0,456080 ,1,0,456190 ,1,0,456335 ,1,0,456440 ,1,0,457330 ,1,0,457495 ,1,0,457690 ,1,0,457810 ,1,0,457965 ,1,0,458080 ,1,0,458355 ,1,0,458490 ,1,0,458640 ,1,0,460320 ,1,0,460565 ,1,0,460780 ,1,0,460990 ,1,0,461205 ,1,0,461395 ,1,0,461655 ,1,0,461790 ,1,0,461985 ,1,0,462130 ,1,0,462310 ,1,0,462830 ,1,0,463780 ,1,0,464135 ,1,0,464330 ,1,0,464560 ,1,0,464730 ,1,0,464915 ,1,0,465330 ,1,0,465745 ,1,0,466405 ,1,0,466530 ,1,0,466855 ,1,0,467005 ,1,0,467205 ,1,0,467640 ,1,0,467815 ,1,0,467945 ,1,0,468140 ,1,0,468690 ,1,0,469135 ,1,0,470555 ,1,0,470690 ,1,0,470920 ,1,0,471050 ,1,0,471260 ,1,0,471360 ,1,0,471555 ,1,0,471675 ,1,0,471840 ,1,0,472000 ,1,0,472115 ,1,0,472320 ,1,0,472445 ,1,0,472555 ,1,0,473645 ,1,0,473785 ,1,0,474105 ,1,0,474445 ,1,0,474720 ,1,0,474840 ,1,0,474995 ,1,0,475190 ,1,0,475375 ,1,0,475515 ,1,0,475655 ,1,0,475795 ,1,0,476105 ,1,0,476310 ,1,0,476610 ,1,0,477595 ,1,0,477725 ,1,0,478045 ,1,0,478175 ,1,0,478285 ,1,0,478425 ,1,0,478570 ,1,0,478685 ,1,0,478905 ,1,0,479030 ,1,0,479185 ,1,0,479325 ,1,0,479575 ,1,0,479960 ,1,0,480080 ,1,0,480225 ,1,0,480345 ,1,0,480770 ,1,0,480900 ,1,0,481040 ,1,0,481820 ,1,0,482150 ,1,0,482270 ,1,0,482390 ,1,0,482525 ,1,0,484190 ,1,0,484590 ,1,0,484850 ,1,0,485240 ,1,0,485525 ,1,0,485900 ,1,0,486030 ,1,0,486225 ,1,0,486410 ,1,0,486545 ,1,0,486945 ,1,0,487060 ,1,0,487180 ,1,0,487290 ,1,0,487480 ,1,0,487710 ,1,0,488025 ,1,0,488160 ,1,0,488480 ,1,0,488620 ,1,0,488810 ,1,0,488930 ,1,0,489380 ,1,0,489660 ,1,0,489850 ,1,0,490050 ,1,0,490580 ,1,0,490790 ,1,0,491210 ,1,0,491560 ,1,0,492215 ,1,0,492400 ,1,0,492570 ,1,0,492995 ,1,0,493140 ,1,0,493435 ,1,0,493550 ,1,0,493755 ,1,0,493955 ,1,0,494210 ,1,0,494340 ,1,0,494530 ,1,0,495215 ,1,0,496000 ,1,0,496430 ,1,0,496680 ,1,0,497000 ,1,0,497235 ,1,0,497440 ,1,0,498090 ,1,0,498440 ,1,0,498660 ,1,0,499315 ,1,0,499460 ,1,0,499625 ,1,0,500230 ,1,0,500435 ,1,0,500740 ,1,0,500885 ,1,0,501405 ,1,0,501670 ,1,0,501935 ,1,0,502130 ,1,0,502765 ,1,0,502905 ,1,0,503020 ,1,0,503185 ,1,0,503310 ,1,0,503540 ,1,0,503675 ,1,0,503925 ,1,0,504205 ,1,0,504925 ,1,0,505220 ,1,0,505365 ,1,0,505570 ,1,0,506320 ,1,0,506505 ,1,0,506705 ,1,0,506830 ,1,0,507025 ,1,0,507430 ,1,0,507670 ,1,0,507865 ,1,0,508265 ,1,0,508550 ,1,0,508780 ,1,0,508895 ,1,0,509000 ,1,0,509115 ,1,0,509310 ,1,0,509430 ,1,0,509685 ,1,0,509870 ,1,0,510015 ,1,0,510150 ,1,0,510405 ,1,0,510575 ,1,0,510895 ,1,0,511250 ,1,0,511520 ,1,0,511760 ,1,0,512005 ,1,0,512290 ,1,0,512490 ,1,0,512805 ,1,0,513010 ,1,0,513165 ,1,0,513385 ,1,0,513565 ,1,0,513765 ,1,0,513895 ,1,0,514015 ,1,0,514680 ,1,0,515340 ,1,0,515875 ,1,0,516090 ,1,0,516295 ,1,0,516605 ,1,0,516720 ,1,0,516855 ,1,0,517115 ,1,0,517365 ,1,0,517475 ,1,0,517970 ,1,0,518075 ,1,0,518345 ,1,0,518450 ,1,0,518590 ,1,0,519105 ,1,0,519210 ,1,0,519460 ,1,0,519840 ,1,0,520160 ,1,0,520405 ,1,0,520560 ,1,0,520700 ,1,0,520840 ,1,0,521025 ,1,0,521350 ,1,0,521535 ,1,0,521670 ,1,0,521820 ,1,0,522025 ,1,0,522220 ,1,0,522430 ,1,0,522615 ,1,0,522820 ,1,0,523190 ,1,0,523480 ,1,0,523615 ,1,0,523840 ,1,0,524200 ,1,0,524780 ,1,0,524990 ,1,0,525135 ,1,0,525280 ,1,0,525465 ,1,0,525595 ,1,0,525790 ,1,0,526005 ,1,0,526200 ,1,0,526315 ,1,0,526500 ,1,0,526625 ,1,0,526825 ,1,0,527000 ,1,0,527860 ,1,0,528190 ,1,0,528375 ,1,0,528625 ,1,0,528855 ,1,0,529045 ,1,0,529305 ,1,0,529435 ,1,0,529685 ,1,0,529970 ,1,0,530160 ,1,0,530510 ,1,0,530710 ,1,0,530915 ,1,0,531115 ,1,0,531590 ,1,0,531790 ,1,0,532015 ,1,0,532200 ,1,0,532660 ,1,0,533000 ,1,0,533180 ,1,0,533505 ,1,0,533740 ,1,0,534015 ,1,0,534660 ,1,0,534965 ,1,0,535805 ,1,0,536325 ,1,0,536450 ,1,0,536575 ,1,0,536860 ,1,0,537000 ,1,0,537575 ,1,0,537770 ,1,0,538020 ,1,0,538195 ,1,0,538470 ,1,0,538665 ,1,0,538785 ,1,0,539275 ,1,0,539590 ,1,0,539795 ,1,0,540000 ,1,0,540140 ,1,0,540290 ,1,0,540485 ,1,0,540760 ,1,0,540920 ,1,0,541055 ,1,0,541275 ,1,0,541400 ,1,0,541730 ,1,0,541920 ,1,0,542140 ,1,0,542340 ,1,0,542475 ,1,0,542655 ,1,0,543030 ,1,0,543225 ,1,0,543550 ,1,0,543810 ,1,0,544075 ,1,0,544270 ,1,0,544380 ,1,0,544560 ,1,0,544790 ,1,0,545030 ,1,0,545295 ,1,0,545535 ,1,0,545825 ,1,0,546070 ,1,0,546550 ,1,0,547355 ,1,0,547535 ,1,0,547665 ,1,0,547775 ,1,0,547970 ,1,0,548095 ,1,0,548475 ,1,0,548830 ,1,0,549015 ,1,0,549125 ,1,0,549285 ,1,0,549395 ,1,0,549545 ,1,0,549655 ,1,0,549795 ,1,0,549915 ,1,0,550045 ,1,0,550180 ,1,0,550425 ,1,0,550745 ,1,0,551065 ,1,0,551195 ,1,0,552435 ,1,0,552660 ,1,0,552800 ,1,0,553005 ,1,0,553340 ,1,0,553535 ,1,0,553785 ,1,0,554145 ,1,0,554535 ,1,0,554730 ,1,0,554855 ,1,0,555755 ,1,0,556170 ,1,0,556280 ,1,0,556550 ,1,0,556710 ,1,0,557205 ,1,0,558975 ,1,0,559320 ,1,0,559445 ,1,0,559840 ,1,0,560620 ,1,0,560810 ,1,0,561360 ,1,0,561620 ,1,0,562025 ,1,0,562480 ,1,0,562980 ,1,0,563280 ,1,0,563470 ,1,0,565195 ,1,0,565515 ,1,0,566295 ,1,0,566555 ,1,0,566680 ,1,0,566800 ,1,0,567360 ,1,0,567505 ,1,0,567825 ,1,0,568545 ,1,0,569190 ,1,0,570320 ,1,0,570425 ,1,0,570555 ,1,0,570730 ,1,0,570840 ,1,0,571300 ,1,0,571505 ,1,0,571690 ,1,0,572335 ,1,0,572610 ,1,0,572820 ,1,0,572970 ,1,0,573170 ,1,0,573415 ,1,0,573750 ,1,0,573930 ,1,0,574135 ,1,0,574280 ,1,0,574385 ,1,0,574535 ,1,0,574645 ,1,0,574850 ,1,0,574980 ,1,0,575115 ,1,0,575305 ,1,0,575760 ,1,0,576000 ,1,0,576150 ,1,0,576275 ,1,0,576375 ,1,0,576515 ,1,0,576710 ,1,0,576950 ,1,0,577125 ,1,0,577405 ,1,0,577530 ,1,0,577845 ,1,0,578205 ,1,0,578445 ,1,0,578590 ,1,0,578970 ,1,0,579180 ,1,0,579370 ,1,0,579535 ,1,0,579675 ,1,0,579855 ,1,0,580060 ,1,0,580335 ,1,0,580620 ,1,0,580835 ,1,0,580975 ,1,0,581095 ,1,0,581300 ,1,0,582010 ,1,0,582495 ,1,0,582650 ,1,0,582795 ,1,0,583535 ,1,0,583735 ,1,0,583930 ,1,0,584125 ,1,0,584315 ,1,0,585050 ,1,0,585240 ,1,0,585890 ,1,0,586030 ,1,0,587245 ,1,0,587645 ,1,0,587850 ,1,0,587985 ,1,0,588140 ,1,0,588260 ,1,0,588380 ,1,0,588570 ,1,0,588730 ,1,0,589455 ,1,0,589600 ,1,0,589775 ,1,0,591410 ,1,0,591525 ,1,0,591970 ,1,0,592115 ,1,0,592280 ,1,0,594045 ,1,0,594185 ,1,0,594315 ,1,0,594530 ,1,0,597365 ,1,0,597495 ,1,0,597645 ,1,0,597810 ,1,0,598375 ,1,0,598930 ,1,0,599460 ,1,0,599605 ,1,0,599935 ,1,0,600160 ,1,0,600705 ,1,0,601495 ,1,0,601650 ,1,0,601770 ,1,0,602205 ,1,0,602420 ,1,0,602725 ,1,0,602860 ,1,0,603490 ,1,0,603705 ,1,0,603990 ,1,0,605320 ,1,0,605640 ,1,0,605915 ,1,0,606165 ,1,0,607125 ,1,0,607380 ,1,0,607800 ,1,0,608175 ,1,0,611160 ,1,0,611350 ,1,0,611485 ,1,0,611730 ,1,0,611980 ,1,0,612680 ,1,0,613040 ,1,0,613175 ,1,0,613355 ,1,0,613570 ,1,0,613775 ,1,0,614000 ,1,0,614110 ,1,0,614305 ,1,0,614515 ,1,0,614625 ,1,0,615955 ,1,0,616975 ,1,0,617110 ,1,0,617475 ,1,0,617910 ,1,0,618095 ,1,0,618265 ,1,0,618380 ,1,0,618600 ,1,0,618735 ,1,0,619190 ,1,0,619310 ,1,0,619610 ,1,0,619910 ,1,0,620090 ,1,0,620675 ,1,0,620840 ,1,0,621255 ,1,0,621925 ,1,0,622145 ,1,0,622450 ,1,0,622915 ,1,0,623040 ,1,0,623230 ,1,0,623655 ,1,0,624095 ,1,0,624630 ,1,0,624760 ,1,0,624865 ,1,0,625130 ,1,0,625715 ,1,0,625920 ,1,0,626165 ,1,0,626615 ,1,0,626810 ,1,0,626945 ,1,0,627070 ,1,0,627280 ,1,0,627465 ,1,0,627740 ,1,0,627900 ,1,0,628080 ,1,0,628280 ,1,0,628520 ,1,0,628695 ,1,0,629150 ,1,0,629405 ,1,0,629535 ,1,0,629660 ,1,0,630100 ,1,0,630285 ,1,0,630795 ,1,0,631010 ,1,0,631135 ,1,0,631275 ,1,0,631730 ,1,0,632050 ,1,0,632325 ,1,0,632460 ,1,0,632635 ,1,0,632790 ,1,0,633125 ,1,0,633340 ,1,0,633520 ,1,0,633695 ,1,0,21205 ,1,0,21400 ,1,0,21630 ,1,0,21845 ,1,0,22065 ,1,0,22260 ,1,0,22505 ,1,0,22725 ,1,0,22930 ,1,0,23160 ,1,0,23415 ,1,0,23610 ,1,0,23830 ,1,0,24040 ,1,0,24275 ,1,0,24505 ,1,0,24735 ,2,14997,25355 ,2,14997,25375 ,2,14997,25655 ,2,14997,28580 ,2,14997,29155 ,2,14997,32210 ,2,14997,32330 ,2,14997,32370 ,2,14997,32490 ,2,14997,32785 ,2,14997,32910 ,2,14997,33020 ,2,14997,35340 ,2,14997,43195 ,2,14997,43935 ,2,14997,44260 ,2,14997,44745 ,2,14997,44810 ,2,14997,44915 ,2,14997,44935 ,2,14997,45085 ,2,14997,45460 ,2,14997,46315 ,2,14997,47655 ,2,14997,48835 ,2,14997,49520 ,2,14997,49560 ,2,14997,49615 ,2,14997,50170 ,2,14997,50200 ,2,14997,51880 ,2,14997,51910 ,2,14997,54985 ,2,14997,55560 ,2,14997,55710 ,2,14997,55755 ,2,14997,58640 ,2,14997,59455 ,2,14997,59505 ,2,14997,63750 ,2,14997,65370 ,2,14997,67465 ,2,14997,97075 ,2,14997,97435 ,2,14997,97490 ,2,14997,97530 ,2,14997,97885 ,2,14997,98210 ,2,14997,99060 ,2,14997,112610 ,2,14997,112980 ,2,14997,129995 ,2,14997,130605 ,2,14997,132765 ,2,14997,133065 ,2,14997,135055 ,2,14997,135085 ,2,14997,135290 ,2,14997,135685 ,2,14997,135785 ,2,14997,135850 ,2,14997,137485 ,2,14997,138750 ,2,14997,139340 ,2,14997,139695 ,2,14997,139845 ,2,14997,139925 ,2,14997,139945 ,2,14997,140010 ,2,14997,140055 ,2,14997,140075 ,2,14997,140145 ,2,14997,140165 ,2,14997,140380 ,2,14997,140700 ,2,14997,141465 ,2,14997,141650 ,2,14997,141690 ,2,14997,141720 ,2,14997,141745 ,2,14997,141765 ,2,14997,141805 ,2,14997,141865 ,2,14997,142220 ,2,14997,142265 ,2,14997,142520 ,2,14997,142560 ,2,14997,143355 ,2,14997,143380 ,2,14997,143510 ,2,14997,143555 ,2,14997,143575 ,2,14997,143700 ,2,14997,143720 ,2,14997,143790 ,2,14997,143835 ,2,14997,143900 ,2,14997,143930 ,2,14997,144045 ,2,14997,144115 ,2,14997,144205 ,2,14997,144400 ,2,14997,144420 ,2,14997,144450 ,2,14997,144670 ,2,14997,144790 ,2,14997,144935 ,2,14997,145000 ,2,14997,145060 ,2,14997,145110 ,2,14997,145205 ,2,14997,145435 ,2,14997,145455 ,2,14997,145500 ,2,14997,145535 ,2,14997,145555 ,2,14997,145610 ,2,14997,145630 ,2,14997,145655 ,2,14997,145675 ,2,14997,145725 ,2,14997,145765 ,2,14997,146180 ,2,14997,146215 ,2,14997,146235 ,2,14997,146280 ,2,14997,146305 ,2,14997,146325 ,2,14997,146375 ,2,14997,146415 ,2,14997,146490 ,2,14997,147260 ,2,14997,147280 ,2,14997,147765 ,2,14997,147935 ,2,14997,147955 ,2,14997,148120 ,2,14997,148175 ,2,14997,148245 ,2,14997,148290 ,2,14997,148345 ,2,14997,148365 ,2,14997,148400 ,2,14997,148420 ,2,14997,148485 ,2,14997,148515 ,2,14997,148695 ,2,14997,148995 ,2,14997,149065 ,2,14997,149125 ,2,14997,149155 ,2,14997,149225 ,2,14997,149260 ,2,14997,149320 ,2,14997,149420 ,2,14997,149440 ,2,14997,149495 ,2,14997,149535 ,2,14997,149555 ,2,14997,149580 ,2,14997,149685 ,2,14997,149745 ,2,14997,149875 ,2,14997,149905 ,2,14997,149925 ,2,14997,150200 ,2,14998,215630 ,2,14999,415 ,2,14998,224545 ,2,14999,415 ,2,14998,172200 ,2,14999,415 ,2,14998,173175 ,2,14999,415 ,2,14998,278870 ,2,14999,415 ,2,14998,9355 ,2,14999,485 ,2,14998,184505 ,2,14999,415 ,2,14998,166650 ,2,14999,425 ,2,14998,176795 ,2,14999,425 ,2,14998,299940 ,2,14999,415 ,2,14998,171975 ,2,14999,165605 ,2,14998,166610 ,2,14999,425 ,2,14998,166620 ,2,14999,425 ,2,14998,10665 ,2,14999,415 ,2,14998,167780 ,2,14999,415 ,2,14998,189885 ,2,14999,425 ,2,14998,166620 ,2,14999,425 ,2,14998,9355 ,2,14999,435 ,2,14998,173945 ,2,14999,415 ,2,14998,176480 ,2,14999,425 ,2,14998,175910 ,2,14999,415 ,2,14998,291230 ,2,14999,415 ,2,14998,176805 ,2,14999,425 ,2,14998,291545 ,2,14999,415 ,2,14998,291420 ,2,14999,425 ,2,14998,9355 ,2,14999,455 ,2,14998,9355 ,2,14999,415 ,2,14998,175105 ,2,14999,415 ,2,14998,252705 ,2,14999,415 ,2,14998,9355 ,2,14999,425 ,2,14998,10665 ,2,14999,415 ,2,14998,9355 ,2,14999,415 ,2,14998,9355 ,2,14999,425 ,2,14998,9355 ,2,14999,435 ,1,8,279675 ,1,16,425 ,2,15000,141280 ,2,15001,615295 ,1,8,279530 ,1,16,425 ,2,15000,141280 ,2,15001,615295 ,1,8,176805 ,1,16,425 ,2,15000,141280 ,2,15001,615295 ,1,8,6680 ,1,16,425 ,2,15000,141280 ,2,15001,615295 ,1,8,13210 ,1,16,425 ,2,15000,141280 ,2,15001,615295 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15003,910 ,2,15005,90 ,1,0,606150 ,2,15005,90 ,1,0,606155 ,2,15005,90 ,1,0,606155 ,2,15005,90 ,1,0,606160 ,2,15005,90 ,1,0,606160 ,2,15005,90 ,1,0,606195 ,2,15005,90 ,1,0,606195 ,2,15005,90 ,1,0,606200 ,2,15005,90 ,1,0,606200 ,2,15005,90 ,1,0,606205 ,2,15005,90 ,1,0,606205 ,2,15005,90 ,1,0,606220 ,1,1,606210 ,1,2,606220 ,2,15005,90 ,1,0,606225 ,1,1,606230 ,1,2,606225 ,2,15005,90 ,1,0,606235 ,2,15005,90 ,1,0,606235 ,1,1,606260 ,1,2,606235 ,2,15005,90 ,1,0,606270 ,1,1,606265 ,1,2,606270 ,2,15005,90 ,1,0,606270 ,2,15005,90 ,1,0,606265 ,1,1,606270 ,2,15005,90 ,1,0,606275 ,2,15005,90 ,1,0,606275 ,2,15005,90 ,1,0,606260 ,1,1,606235 ,2,15005,90 ,1,0,606280 ,2,15005,90 ,1,0,606280 ,2,15005,90 ,1,0,606285 ,2,15005,90 ,1,0,606285 ,2,15005,90 ,1,0,606290 ,2,15005,90 ,1,0,606290 ,2,15005,90 ,1,0,606295 ,2,15005,90 ,1,0,606295 ,2,15005,90 ,1,0,606315 ,2,15005,90 ,1,0,606315 ,2,15005,90 ,1,0,606325 ,1,1,606320 ,1,2,606325 ,2,15005,90 ,1,0,606320 ,1,1,606325 ,2,15005,90 ,1,0,606325 ,2,15005,90 ,1,0,600035 ,1,1,599885 ,2,15005,90 ,1,0,606340 ,1,1,606330 ,2,15005,90 ,1,0,606340 ,1,1,606330 ,2,15005,90 ,1,0,606350 ,1,1,606345 ,2,15005,90 ,1,0,606350 ,1,1,606345 ,2,15005,90 ,1,0,606385 ,1,1,606355 ,2,15005,90 ,1,0,606395 ,1,1,606390 ,2,15005,90 ,1,0,606395 ,1,1,606390 ,2,15005,90 ,1,0,606410 ,1,1,606400 ,2,15005,90 ,1,0,606385 ,1,1,606355 ,2,15005,90 ,1,0,606420 ,1,1,606415 ,2,15005,90 ,1,0,606420 ,1,1,606415 ,2,15005,90 ,1,0,606455 ,1,1,606450 ,1,2,606445 ,1,3,606425 ,1,4,606455 ,1,5,606450 ,2,15005,90 ,1,0,606455 ,1,1,606450 ,2,15005,90 ,1,0,606445 ,1,1,606425 ,1,2,606455 ,1,3,606450 ,2,15005,90 ,1,0,606480 ,1,1,606475 ,1,2,606470 ,1,3,606460 ,2,15005,90 ,1,0,606470 ,1,1,606460 ,2,15005,90 ,1,0,606485 ,2,15005,90 ,1,0,600005 ,2,15005,90 ,1,0,606510 ,2,15005,90 ,1,0,606515 ,2,15005,90 ,1,0,606520 ,2,15005,90 ,1,0,606520 ,2,15005,90 ,1,0,558435 ,2,15005,90 ,1,0,606525 ,2,15005,90 ,1,0,606525 ,2,15005,90 ,1,0,606530 ,2,15005,90 ,1,0,600065 ,2,15005,90 ,1,0,558310 ,2,15005,90 ,1,0,606535 ,2,15005,90 ,1,0,606535 ,2,15005,90 ,1,0,606540 ,2,15005,90 ,1,0,606540 ,2,15005,90 ,1,0,606545 ,2,15005,90 ,1,0,606545 ,2,15005,90 ,1,0,606575 ,2,15005,90 ,1,0,606575 ,2,15005,90 ,1,0,606580 ,2,15005,90 ,1,0,606580 ,2,15005,90 ,1,0,606585 ,2,15005,90 ,1,0,606585 ,2,15005,90 ,1,0,606590 ,2,15005,90 ,1,0,606595 ,2,15005,90 ,1,0,606595 ,2,15005,90 ,1,0,606590 ,2,15005,90 ,1,0,606600 ,2,15005,90 ,1,0,606600 ,2,15005,90 ,1,0,606605 ,2,15005,90 ,1,0,606605 ,2,15005,90 ,1,0,606610 ,2,15005,90 ,1,0,606625 ,2,15005,90 ,1,0,606625 ,2,15005,90 ,1,0,606610 ,2,15005,90 ,1,0,606630 ,2,15005,90 ,1,0,606635 ,2,15005,90 ,1,0,606635 ,2,15005,90 ,1,0,606645 ,1,1,606640 ,2,15005,90 ,1,0,606640 ,2,15005,90 ,1,0,606650 ,2,15005,90 ,1,0,606655 ,2,15005,90 ,1,0,606655 ,2,15005,90 ,1,0,606230 ,1,1,606225 ,2,15005,90 ,1,0,606210 ,1,1,606220 ,2,15005,90 ,1,0,606670 ,1,1,606660 ,2,15005,90 ,1,0,606660 ,2,15005,90 ,1,0,606680 ,1,1,606675 ,2,15005,90 ,1,0,606675 ,2,15005,90 ,1,0,606685 ,2,15005,90 ,1,0,606700 ,2,15005,90 ,1,0,606700 ,2,15005,90 ,1,0,606150 ,2,15005,90 ,1,0,606710 ,1,1,606705 ,1,2,606710 ,2,15005,90 ,1,0,606705 ,1,1,606710 ,2,15005,90 ,1,0,606755 ,1,1,606715 ,1,2,606755 ,2,15005,90 ,1,0,606715 ,1,1,606755 ,2,15005,90 ,1,0,606755 ,2,15005,90 ,1,0,606225 ,2,15005,90 ,1,0,606760 ,2,15005,90 ,1,0,606765 ,2,15005,90 ,1,0,606770 ,2,15005,90 ,1,0,606775 ,2,15005,90 ,1,0,606775 ,2,15005,90 ,1,0,606770 ,2,15005,90 ,1,0,606780 ,2,15005,90 ,1,0,606780 ,2,15005,90 ,1,0,606785 ,2,15005,90 ,1,0,606785 ,2,15005,90 ,1,0,606790 ,2,15005,90 ,1,0,606790 ,2,15005,90 ,1,0,606820 ,2,15005,90 ,1,0,606820 ,2,15005,90 ,1,0,606825 ,2,15005,90 ,1,0,606830 ,2,15005,90 ,1,0,606830 ,2,15005,90 ,1,0,606835 ,2,15005,90 ,1,0,606835 ,2,15005,90 ,1,0,559165 ,2,15005,90 ,1,0,606845 ,2,15005,90 ,1,0,606845 ,2,15005,90 ,1,0,558280 ,2,15005,90 ,1,0,559210 ,2,15005,90 ,1,0,559255 ,2,15005,90 ,1,0,606850 ,2,15005,90 ,1,0,606850 ,2,15005,90 ,1,0,606855 ,2,15005,90 ,1,0,606860 ,2,15005,90 ,1,0,606860 ,2,15005,90 ,1,0,558990 ,2,15005,90 ,1,0,606885 ,2,15005,90 ,1,0,606885 ,2,15005,90 ,1,0,606890 ,2,15005,90 ,1,0,606890 ,2,15005,90 ,1,0,606895 ,2,15005,90 ,1,0,606900 ,2,15005,90 ,1,0,606900 ,2,15005,90 ,1,0,606765 ,2,15005,90 ,1,0,606760 ,2,15005,90 ,1,0,606920 ,2,15005,90 ,1,0,606920 ,2,15005,90 ,1,0,606925 ,2,15005,90 ,1,0,606925 ,2,15005,90 ,1,0,559650 ,2,15005,90 ,1,0,559665 ,2,15005,90 ,1,0,600040 ,2,15005,90 ,1,0,559715 ,2,15005,90 ,1,0,559540 ,2,15005,90 ,1,0,559540 ,2,15005,90 ,1,0,606935 ,1,1,606930 ,2,15005,90 ,1,0,606960 ,1,1,606955 ,2,15005,90 ,1,0,606970 ,1,1,606965 ,2,15005,90 ,1,0,606970 ,1,1,606965 ,2,15005,90 ,1,0,606985 ,1,1,606980 ,2,15005,90 ,1,0,606985 ,1,1,606980 ,2,15005,90 ,1,0,607020 ,1,1,607015 ,1,2,607010 ,1,3,606990 ,1,4,607020 ,1,5,607015 ,2,15005,90 ,1,0,607035 ,1,1,607025 ,2,15005,90 ,1,0,607045 ,1,1,607040 ,2,15005,90 ,1,0,607045 ,1,1,607040 ,2,15005,90 ,1,0,607075 ,1,1,607050 ,2,15005,90 ,1,0,607075 ,1,1,607050 ,2,15005,90 ,1,0,607035 ,1,1,607025 ,2,15005,90 ,1,0,607020 ,1,1,607015 ,2,15005,90 ,1,0,607010 ,1,1,606990 ,1,2,607020 ,1,3,607015 ,2,15005,90 ,1,0,607020 ,2,15005,90 ,1,0,607100 ,1,1,607090 ,1,2,607085 ,1,3,607080 ,2,15005,90 ,1,0,607085 ,1,1,607080 ,2,15005,90 ,1,0,607110 ,1,1,607105 ,2,15005,90 ,1,0,607110 ,1,1,607105 ,2,15005,90 ,1,0,607150 ,1,1,607115 ,2,15005,90 ,1,0,607160 ,1,1,607155 ,2,15005,90 ,1,0,607175 ,1,1,607170 ,2,15005,90 ,1,0,607175 ,1,1,607170 ,2,15005,90 ,1,0,607175 ,2,15005,90 ,1,0,607160 ,1,1,607155 ,2,15005,90 ,1,0,607185 ,1,1,607180 ,2,15005,90 ,1,0,607185 ,1,1,607180 ,2,15005,90 ,1,0,607150 ,1,1,607115 ,2,15005,90 ,1,0,607205 ,1,1,607200 ,2,15005,90 ,1,0,607215 ,1,1,607210 ,2,15005,90 ,1,0,607225 ,1,1,607220 ,2,15005,90 ,1,0,607265 ,1,1,607235 ,2,15005,90 ,1,0,607275 ,1,1,607270 ,2,15005,90 ,1,0,607275 ,1,1,607270 ,2,15005,90 ,1,0,607285 ,1,1,607280 ,2,15005,90 ,1,0,607285 ,1,1,607280 ,2,15005,90 ,1,0,607265 ,1,1,607235 ,2,15005,90 ,1,0,607295 ,1,1,607290 ,2,15005,90 ,1,0,607295 ,1,1,607290 ,2,15005,90 ,1,0,607235 ,2,15005,90 ,1,0,607265 ,2,15005,90 ,1,0,607225 ,1,1,607220 ,2,15005,90 ,1,0,607215 ,1,1,607210 ,2,15005,90 ,1,0,607205 ,1,1,607200 ,2,15005,90 ,1,0,606960 ,1,1,606955 ,2,15005,90 ,1,0,607330 ,2,15005,90 ,1,0,607335 ,2,15005,90 ,1,0,607335 ,2,15005,90 ,1,0,607340 ,2,15005,90 ,1,0,607340 ,2,15005,90 ,1,0,607355 ,1,1,607350 ,1,2,607355 ,2,15005,90 ,1,0,607350 ,1,1,607355 ,2,15005,90 ,1,0,607355 ,2,15005,90 ,1,0,607365 ,1,1,607360 ,2,15005,90 ,1,0,607360 ,2,15005,90 ,1,0,607330 ,2,15005,90 ,1,0,607325 ,2,15005,90 ,1,0,607385 ,2,15005,90 ,1,0,607385 ,2,15005,90 ,1,0,607390 ,2,15005,90 ,1,0,607395 ,2,15005,90 ,1,0,607395 ,2,15005,90 ,1,0,607325 ,2,15005,90 ,1,0,607400 ,2,15005,90 ,1,0,607400 ,2,15005,90 ,1,0,607420 ,1,1,607415 ,2,15005,90 ,1,0,607430 ,1,1,607425 ,2,15005,90 ,1,0,607500 ,1,1,607495 ,2,15005,90 ,1,0,607515 ,1,1,607505 ,2,15005,90 ,1,0,607515 ,1,1,607505 ,2,15005,90 ,1,0,607525 ,1,1,607520 ,2,15005,90 ,1,0,607525 ,1,1,607520 ,2,15005,90 ,1,0,560355 ,2,15005,90 ,1,0,607550 ,1,1,607530 ,2,15005,90 ,1,0,607550 ,1,1,607530 ,2,15005,90 ,1,0,607500 ,1,1,607495 ,2,15005,90 ,1,0,607495 ,2,15005,90 ,1,0,607500 ,2,15005,90 ,1,0,607430 ,1,1,607425 ,2,15005,90 ,1,0,607420 ,1,1,607415 ,2,15005,90 ,1,0,599885 ,1,1,558275 ,2,15005,90 ,1,0,607560 ,2,15005,90 ,1,0,607575 ,1,1,607565 ,2,15005,90 ,1,0,607615 ,1,1,607590 ,2,15005,90 ,1,0,607615 ,1,1,607590 ,2,15005,90 ,1,0,607625 ,1,1,607620 ,2,15005,90 ,1,0,607625 ,1,1,607620 ,2,15005,90 ,1,0,607635 ,1,1,607630 ,2,15005,90 ,1,0,607635 ,1,1,607630 ,2,15005,90 ,1,0,607590 ,2,15005,90 ,1,0,607615 ,2,15005,90 ,1,0,607575 ,1,1,607565 ,2,15005,90 ,1,0,607695 ,1,1,607690 ,2,15005,90 ,1,0,607695 ,1,1,607690 ,2,15005,90 ,1,0,607715 ,1,1,607705 ,2,15005,90 ,1,0,560635 ,2,15005,90 ,1,0,560650 ,2,15005,90 ,1,0,560655 ,2,15005,90 ,1,0,607720 ,2,15005,90 ,1,0,607760 ,1,1,607730 ,1,2,607725 ,2,15005,90 ,1,0,560700 ,2,15005,90 ,1,0,607765 ,2,15005,90 ,1,0,600035 ,1,1,600035 ,2,15005,90 ,1,0,560720 ,2,15005,90 ,1,0,607770 ,2,15005,90 ,1,0,560760 ,2,15005,90 ,1,0,600035 ,1,1,600035 ,2,15005,90 ,1,0,607775 ,2,15005,90 ,1,0,607785 ,1,1,607780 ,2,15005,90 ,1,0,607795 ,1,1,607790 ,2,15005,90 ,1,0,607815 ,2,15005,90 ,1,0,607830 ,1,1,607825 ,1,2,607820 ,2,15005,90 ,1,0,607845 ,1,1,607840 ,2,15005,90 ,1,0,560835 ,2,15005,90 ,1,0,560845 ,2,15005,90 ,1,0,560885 ,2,15005,90 ,1,0,607855 ,1,1,607850 ,2,15005,90 ,1,0,607895 ,1,1,607890 ,1,2,607885 ,2,15005,90 ,1,0,607900 ,2,15005,90 ,1,0,607905 ,2,15005,90 ,1,0,607910 ,2,15005,90 ,1,0,607915 ,2,15005,90 ,1,0,607950 ,1,1,607920 ,2,15005,90 ,1,0,607960 ,1,1,607955 ,2,15005,90 ,1,0,607965 ,2,15005,90 ,1,0,607980 ,1,1,607975 ,1,2,607970 ,2,15005,90 ,1,0,608015 ,1,1,607985 ,2,15005,90 ,1,0,560950 ,2,15005,90 ,1,0,600040 ,1,1,600040 ,2,15005,90 ,1,0,560970 ,2,15005,90 ,1,0,561025 ,2,15005,90 ,1,0,561035 ,2,15005,90 ,1,0,561045 ,2,15005,90 ,1,0,607560 ,2,15005,90 ,1,0,561055 ,2,15005,90 ,1,0,608020 ,2,15005,90 ,1,0,608025 ,2,15005,90 ,1,0,608045 ,1,1,608030 ,2,15005,90 ,1,0,608055 ,1,1,608050 ,2,15005,90 ,1,0,608060 ,2,15005,90 ,1,0,608060 ,2,15005,90 ,1,0,608105 ,2,15005,90 ,1,0,608105 ,2,15005,90 ,1,0,608115 ,1,1,608110 ,2,15005,90 ,1,0,608115 ,1,1,608110 ,2,15005,90 ,1,0,608120 ,2,15005,90 ,1,0,608110 ,2,15005,90 ,1,0,608140 ,2,15005,90 ,1,0,608140 ,2,15005,90 ,1,0,608155 ,1,1,608150 ,1,2,608145 ,2,15005,90 ,1,0,608190 ,1,1,608185 ,1,2,608180 ,2,15005,90 ,1,0,608195 ,2,15005,90 ,1,0,608210 ,2,15005,90 ,1,0,608215 ,2,15005,90 ,1,0,608215 ,2,15005,90 ,1,0,608220 ,2,15005,90 ,1,0,608220 ,2,15005,90 ,1,0,608260 ,2,15005,90 ,1,0,608260 ,2,15005,90 ,1,0,608265 ,2,15005,90 ,1,0,608265 ,2,15005,90 ,1,0,110 ,2,15005,90 ,1,0,560100 ,2,15005,90 ,1,0,608270 ,2,15005,90 ,1,0,608275 ,2,15005,90 ,1,0,608275 ,2,15005,90 ,1,0,608285 ,2,15005,90 ,1,0,608290 ,2,15005,90 ,1,0,561625 ,2,15005,90 ,1,0,561650 ,2,15005,90 ,1,0,608315 ,1,1,608300 ,1,2,608295 ,2,15005,90 ,1,0,608320 ,2,15005,90 ,1,0,561660 ,2,15005,90 ,1,0,562035 ,2,15005,90 ,1,0,562575 ,2,15005,90 ,1,0,608325 ,2,15005,90 ,1,0,608325 ,2,15005,90 ,1,0,608340 ,2,15005,90 ,1,0,608340 ,2,15005,90 ,1,0,608350 ,2,15005,90 ,1,0,608350 ,2,15005,90 ,1,0,562785 ,2,15005,90 ,1,0,606030 ,2,15005,90 ,1,0,562785 ,1,1,562815 ,2,15005,90 ,1,0,608355 ,2,15005,90 ,1,0,608355 ,2,15005,90 ,1,0,558275 ,1,1,599885 ,2,15005,90 ,1,0,608385 ,2,15005,90 ,1,0,608385 ,2,15005,90 ,1,0,608390 ,2,15005,90 ,1,0,608390 ,2,15005,90 ,1,0,563070 ,2,15005,90 ,1,0,608395 ,2,15005,90 ,1,0,563235 ,2,15005,90 ,1,0,608400 ,2,15005,90 ,1,0,563300 ,2,15005,90 ,1,0,608415 ,2,15005,90 ,1,0,608415 ,2,15005,90 ,1,0,608420 ,2,15005,90 ,1,0,608420 ,2,15005,90 ,1,0,608425 ,2,15005,90 ,1,0,608425 ,2,15005,90 ,1,0,608430 ,2,15005,90 ,1,0,608430 ,2,15005,90 ,1,0,608470 ,1,1,608465 ,1,2,608470 ,2,15005,90 ,1,0,608470 ,2,15005,90 ,1,0,608465 ,1,1,608470 ,2,15005,90 ,1,0,608475 ,2,15005,90 ,1,0,608475 ,2,15005,90 ,1,0,608485 ,1,1,608480 ,2,15005,90 ,1,0,608480 ,2,15005,90 ,1,0,608490 ,2,15005,90 ,1,0,608495 ,2,15005,90 ,1,0,608495 ,2,15005,90 ,1,0,608490 ,2,15005,90 ,1,0,563505 ,2,15005,90 ,1,0,608500 ,2,15005,90 ,1,0,599975 ,1,1,563570 ,2,15005,90 ,1,0,563555 ,2,15005,90 ,1,0,599975 ,1,1,563650 ,2,15005,90 ,1,0,608515 ,2,15005,90 ,1,0,608520 ,2,15005,90 ,1,0,608520 ,2,15005,90 ,1,0,608525 ,2,15005,90 ,1,0,608525 ,2,15005,90 ,1,0,608530 ,2,15005,90 ,1,0,608530 ,2,15005,90 ,1,0,560975 ,2,15005,90 ,1,0,608540 ,2,15005,90 ,1,0,608540 ,2,15005,90 ,1,0,608515 ,2,15005,90 ,1,0,608545 ,2,15005,90 ,1,0,608550 ,2,15005,90 ,1,0,608550 ,2,15005,90 ,1,0,608555 ,2,15005,90 ,1,0,608555 ,2,15005,90 ,1,0,608605 ,2,15005,90 ,1,0,608605 ,2,15005,90 ,1,0,608610 ,2,15005,90 ,1,0,608610 ,2,15005,90 ,1,0,608615 ,2,15005,90 ,1,0,608615 ,2,15005,90 ,1,0,608620 ,2,15005,90 ,1,0,608620 ,2,15005,90 ,1,0,608635 ,2,15005,90 ,1,0,608635 ,2,15005,90 ,1,0,608640 ,2,15005,90 ,1,0,608640 ,2,15005,90 ,1,0,608645 ,2,15005,90 ,1,0,608645 ,2,15005,90 ,1,0,608650 ,2,15005,90 ,1,0,608670 ,2,15005,90 ,1,0,608675 ,2,15005,90 ,1,0,608675 ,2,15005,90 ,1,0,608680 ,2,15005,90 ,1,0,608680 ,2,15005,90 ,1,0,608670 ,2,15005,90 ,1,0,608650 ,2,15005,90 ,1,0,608545 ,2,15005,90 ,1,0,561515 ,2,15005,90 ,1,0,561500 ,2,15005,90 ,1,0,608685 ,2,15005,90 ,1,0,608685 ,2,15005,90 ,1,0,561380 ,2,15005,90 ,1,0,608695 ,2,15005,90 ,1,0,608695 ,2,15005,90 ,1,0,608700 ,2,15005,90 ,1,0,608700 ,2,15005,90 ,1,0,564945 ,2,15005,90 ,1,0,608705 ,2,15005,90 ,1,0,608710 ,2,15005,90 ,1,0,608710 ,2,15005,90 ,1,0,599880 ,1,1,565095 ,2,15005,90 ,1,0,561430 ,2,15005,90 ,1,0,565150 ,2,15005,90 ,1,0,565130 ,2,15005,90 ,1,0,565130 ,2,15005,90 ,1,0,608735 ,2,15005,90 ,1,0,608740 ,2,15005,90 ,1,0,608740 ,2,15005,90 ,1,0,608745 ,2,15005,90 ,1,0,608750 ,2,15005,90 ,1,0,608750 ,2,15005,90 ,1,0,608745 ,2,15005,90 ,1,0,608755 ,2,15005,90 ,1,0,608755 ,2,15005,90 ,1,0,608760 ,2,15005,90 ,1,0,608760 ,2,15005,90 ,1,0,608765 ,2,15005,90 ,1,0,608765 ,2,15005,90 ,1,0,608770 ,2,15005,90 ,1,0,608810 ,2,15005,90 ,1,0,608770 ,2,15005,90 ,1,0,608815 ,2,15005,90 ,1,0,608820 ,2,15005,90 ,1,0,608815 ,2,15005,90 ,1,0,608825 ,2,15005,90 ,1,0,608835 ,2,15005,90 ,1,0,608835 ,2,15005,90 ,1,0,608840 ,2,15005,90 ,1,0,608845 ,2,15005,90 ,1,0,608850 ,2,15005,90 ,1,0,608850 ,2,15005,90 ,1,0,608870 ,2,15005,90 ,1,0,608870 ,2,15005,90 ,1,0,608880 ,1,1,608875 ,1,2,608880 ,2,15005,90 ,1,0,608880 ,2,15005,90 ,1,0,608875 ,1,1,608880 ,2,15005,90 ,1,0,608895 ,1,1,608885 ,1,2,608895 ,2,15005,90 ,1,0,608895 ,2,15005,90 ,1,0,608885 ,1,1,608895 ,2,15005,90 ,1,0,608905 ,1,1,608900 ,1,2,608905 ,2,15005,90 ,1,0,608900 ,1,1,608905 ,2,15005,90 ,1,0,608910 ,2,15005,90 ,1,0,608935 ,2,15005,90 ,1,0,608935 ,2,15005,90 ,1,0,608940 ,2,15005,90 ,1,0,608940 ,2,15005,90 ,1,0,608845 ,2,15005,90 ,1,0,608840 ,2,15005,90 ,1,0,608825 ,2,15005,90 ,1,0,608945 ,2,15005,90 ,1,0,608945 ,2,15005,90 ,1,0,608950 ,2,15005,90 ,1,0,608955 ,2,15005,90 ,1,0,608955 ,2,15005,90 ,1,0,608950 ,2,15005,90 ,1,0,600030 ,2,15005,90 ,1,0,608735 ,2,15005,90 ,1,0,608960 ,2,15005,90 ,1,0,608960 ,2,15005,90 ,1,0,608965 ,2,15005,90 ,1,0,608965 ,2,15005,90 ,1,0,608970 ,2,15005,90 ,1,0,608970 ,2,15005,90 ,1,0,608995 ,2,15005,90 ,1,0,609000 ,2,15005,90 ,1,0,609000 ,2,15005,90 ,1,0,608995 ,2,15005,90 ,1,0,609010 ,2,15005,90 ,1,0,609010 ,2,15005,90 ,1,0,609030 ,1,1,609025 ,2,15005,90 ,1,0,566195 ,2,15005,90 ,1,0,609030 ,1,1,609025 ,2,15005,90 ,1,0,609035 ,2,15005,90 ,1,0,609035 ,2,15005,90 ,1,0,609040 ,2,15005,90 ,1,0,609040 ,2,15005,90 ,1,0,609070 ,2,15005,90 ,1,0,609070 ,2,15005,90 ,1,0,566285 ,2,15005,90 ,1,0,566370 ,2,15005,90 ,1,0,566815 ,2,15005,90 ,1,0,606035 ,2,15005,90 ,1,0,566845 ,2,15005,90 ,1,0,566855 ,2,15005,90 ,1,0,566770 ,2,15005,90 ,1,0,609075 ,2,15005,90 ,1,0,609075 ,2,15005,90 ,1,0,609080 ,2,15005,90 ,1,0,609080 ,2,15005,90 ,1,0,609095 ,1,1,609085 ,2,15005,90 ,1,0,609095 ,2,15005,90 ,1,0,609095 ,1,1,609085 ,2,15005,90 ,1,0,609100 ,2,15005,90 ,1,0,609100 ,2,15005,90 ,1,0,609105 ,2,15005,90 ,1,0,609110 ,2,15005,90 ,1,0,609140 ,2,15005,90 ,1,0,609140 ,2,15005,90 ,1,0,609145 ,2,15005,90 ,1,0,609145 ,2,15005,90 ,1,0,609150 ,2,15005,90 ,1,0,609150 ,2,15005,90 ,1,0,609110 ,2,15005,90 ,1,0,609155 ,2,15005,90 ,1,0,609155 ,2,15005,90 ,1,0,609160 ,2,15005,90 ,1,0,609160 ,2,15005,90 ,1,0,609165 ,2,15005,90 ,1,0,609165 ,2,15005,90 ,1,0,609170 ,2,15005,90 ,1,0,609170 ,2,15005,90 ,1,0,609175 ,2,15005,90 ,1,0,609175 ,2,15005,90 ,1,0,609195 ,2,15005,90 ,1,0,609195 ,2,15005,90 ,1,0,609200 ,2,15005,90 ,1,0,609200 ,2,15005,90 ,1,0,609205 ,2,15005,90 ,1,0,609210 ,2,15005,90 ,1,0,609215 ,2,15005,90 ,1,0,609220 ,2,15005,90 ,1,0,609225 ,2,15005,90 ,1,0,609230 ,2,15005,90 ,1,0,609255 ,2,15005,90 ,1,0,609255 ,2,15005,90 ,1,0,609260 ,2,15005,90 ,1,0,609265 ,2,15005,90 ,1,0,609265 ,2,15005,90 ,1,0,609270 ,2,15005,90 ,1,0,609275 ,2,15005,90 ,1,0,609280 ,2,15005,90 ,1,0,609285 ,2,15005,90 ,1,0,609290 ,2,15005,90 ,1,0,609290 ,2,15005,90 ,1,0,609320 ,2,15005,90 ,1,0,567445 ,2,15005,90 ,1,0,609325 ,2,15005,90 ,1,0,609330 ,2,15005,90 ,1,0,609335 ,2,15005,90 ,1,0,609340 ,2,15005,90 ,1,0,599970 ,1,1,567470 ,2,15005,90 ,1,0,567470 ,1,1,599970 ,2,15005,90 ,1,0,609345 ,2,15005,90 ,1,0,609345 ,2,15005,90 ,1,0,609350 ,2,15005,90 ,1,0,609350 ,2,15005,90 ,1,0,609355 ,2,15005,90 ,1,0,567625 ,2,15005,90 ,1,0,609375 ,2,15005,90 ,1,0,609375 ,2,15005,90 ,1,0,609380 ,2,15005,90 ,1,0,609380 ,2,15005,90 ,1,0,567805 ,2,15005,90 ,1,0,609390 ,1,1,609385 ,2,15005,90 ,1,0,609390 ,2,15005,90 ,1,0,609390 ,1,1,609385 ,2,15005,90 ,1,0,609395 ,2,15005,90 ,1,0,609395 ,2,15005,90 ,1,0,609400 ,2,15005,90 ,1,0,609400 ,2,15005,90 ,1,0,568060 ,2,15005,90 ,1,0,609410 ,1,1,609405 ,1,2,609410 ,2,15005,90 ,1,0,609410 ,2,15005,90 ,1,0,609405 ,1,1,609410 ,2,15005,90 ,1,0,609445 ,2,15005,90 ,1,0,609445 ,2,15005,90 ,1,0,609450 ,2,15005,90 ,1,0,568125 ,2,15005,90 ,1,0,609455 ,2,15005,90 ,1,0,568365 ,2,15005,90 ,1,0,609455 ,2,15005,90 ,1,0,609460 ,2,15005,90 ,1,0,609460 ,2,15005,90 ,1,0,568425 ,1,1,568420 ,2,15005,90 ,1,0,568360 ,2,15005,90 ,1,0,568420 ,2,15005,90 ,1,0,566950 ,2,15005,90 ,1,0,609465 ,2,15005,90 ,1,0,609470 ,2,15005,90 ,1,0,609475 ,2,15005,90 ,1,0,609480 ,2,15005,90 ,1,0,609515 ,2,15005,90 ,1,0,609520 ,2,15005,90 ,1,0,609530 ,2,15005,90 ,1,0,609530 ,2,15005,90 ,1,0,580980 ,2,15005,90 ,1,0,609535 ,2,15005,90 ,1,0,609535 ,2,15005,90 ,1,0,609540 ,2,15005,90 ,1,0,609540 ,2,15005,90 ,1,0,568865 ,2,15005,90 ,1,0,569000 ,2,15005,90 ,1,0,609545 ,2,15005,90 ,1,0,609550 ,2,15005,90 ,1,0,609565 ,1,1,609560 ,2,15005,90 ,1,0,609570 ,2,15005,90 ,1,0,609570 ,2,15005,90 ,1,0,609575 ,2,15005,90 ,1,0,609575 ,2,15005,90 ,1,0,569125 ,2,15005,90 ,1,0,567805 ,1,1,569260 ,2,15005,90 ,1,0,567805 ,1,1,569470 ,2,15005,90 ,1,0,569660 ,2,15005,90 ,1,0,568460 ,2,15005,90 ,1,0,569855 ,2,15005,90 ,1,0,569885 ,2,15005,90 ,1,0,569970 ,2,15005,90 ,1,0,570050 ,2,15005,90 ,1,0,567805 ,1,1,570130 ,2,15005,90 ,1,0,609585 ,1,1,609580 ,2,15005,90 ,1,0,609585 ,1,1,609580 ,2,15005,90 ,1,0,570165 ,2,15005,90 ,1,0,609590 ,2,15005,90 ,1,0,609590 ,2,15005,90 ,1,0,570665 ,2,15005,90 ,1,0,609595 ,2,15005,90 ,1,0,570680 ,2,15005,90 ,1,0,609595 ,2,15005,90 ,1,0,609620 ,2,15005,90 ,1,0,570750 ,2,15005,90 ,1,0,609620 ,2,15005,90 ,1,0,609625 ,2,15005,90 ,1,0,609630 ,2,15005,90 ,1,0,609630 ,2,15005,90 ,1,0,570965 ,2,15005,90 ,1,0,570985 ,2,15005,90 ,1,0,609625 ,2,15005,90 ,1,0,570750 ,1,1,609625 ,2,15005,90 ,1,0,571170 ,2,15005,90 ,1,0,609640 ,2,15005,90 ,1,0,609645 ,2,15005,90 ,1,0,571520 ,2,15005,90 ,1,0,609650 ,2,15005,90 ,1,0,609655 ,2,15005,90 ,1,0,609655 ,2,15005,90 ,1,0,609650 ,2,15005,90 ,1,0,609680 ,2,15005,90 ,1,0,609680 ,2,15005,90 ,1,0,571560 ,2,15005,90 ,1,0,561460 ,2,15005,90 ,1,0,609640 ,2,15005,90 ,1,0,609685 ,2,15005,90 ,1,0,609685 ,2,15005,90 ,1,0,572115 ,2,15005,90 ,1,0,572310 ,2,15005,90 ,1,0,572450 ,1,1,572380 ,2,15005,90 ,1,0,572500 ,2,15005,90 ,1,0,572555 ,2,15005,90 ,1,0,569580 ,2,15005,90 ,1,0,572620 ,2,15005,90 ,1,0,609690 ,2,15005,90 ,1,0,609690 ,2,15005,90 ,1,0,609695 ,2,15005,90 ,1,0,609695 ,2,15005,90 ,1,0,572680 ,2,15005,90 ,1,0,572705 ,2,15005,90 ,1,0,609750 ,1,1,572975 ,1,2,609750 ,2,15005,90 ,1,0,609705 ,1,1,572980 ,1,2,609705 ,2,15005,90 ,1,0,609705 ,1,1,606075 ,1,2,609705 ,2,15005,90 ,1,0,609715 ,1,1,609710 ,2,15005,90 ,1,0,609715 ,1,1,609710 ,2,15005,90 ,1,0,609705 ,1,1,572980 ,2,15005,90 ,1,0,609705 ,2,15005,90 ,1,0,609750 ,1,1,573000 ,1,2,609750 ,2,15005,90 ,1,0,609750 ,1,1,606080 ,1,2,609750 ,2,15005,90 ,1,0,609755 ,2,15005,90 ,1,0,609755 ,2,15005,90 ,1,0,609760 ,1,1,573025 ,1,2,609760 ,2,15005,90 ,1,0,609760 ,1,1,573030 ,1,2,609760 ,2,15005,90 ,1,0,609760 ,1,1,606085 ,1,2,609760 ,2,15005,90 ,1,0,609770 ,1,1,573040 ,1,2,609770 ,2,15005,90 ,1,0,609770 ,1,1,573055 ,1,2,609770 ,2,15005,90 ,1,0,609770 ,1,1,606090 ,1,2,609770 ,2,15005,90 ,1,0,609780 ,1,1,609775 ,2,15005,90 ,1,0,609780 ,1,1,609775 ,2,15005,90 ,1,0,609770 ,1,1,573040 ,2,15005,90 ,1,0,609770 ,2,15005,90 ,1,0,609835 ,2,15005,90 ,1,0,609835 ,2,15005,90 ,1,0,609770 ,2,15005,90 ,1,0,609760 ,2,15005,90 ,1,0,609760 ,2,15005,90 ,1,0,609840 ,2,15005,90 ,1,0,609840 ,2,15005,90 ,1,0,609750 ,2,15005,90 ,1,0,609845 ,2,15005,90 ,1,0,609845 ,2,15005,90 ,1,0,609750 ,2,15005,90 ,1,0,609850 ,2,15005,90 ,1,0,609850 ,2,15005,90 ,1,0,573240 ,2,15005,90 ,1,0,600040 ,1,1,573250 ,2,15005,90 ,1,0,573335 ,2,15005,90 ,1,0,609855 ,2,15005,90 ,1,0,573385 ,2,15005,90 ,1,0,609860 ,2,15005,90 ,1,0,609860 ,2,15005,90 ,1,0,609900 ,2,15005,90 ,1,0,609905 ,2,15005,90 ,1,0,599870 ,2,15005,90 ,1,0,609910 ,2,15005,90 ,1,0,609915 ,2,15005,90 ,1,0,609915 ,2,15005,90 ,1,0,609920 ,2,15005,90 ,1,0,609920 ,2,15005,90 ,1,0,609930 ,1,1,609925 ,2,15005,90 ,1,0,609930 ,2,15005,90 ,1,0,573510 ,1,1,609935 ,2,15005,90 ,1,0,609945 ,2,15005,90 ,1,0,609945 ,2,15005,90 ,1,0,573525 ,1,1,609945 ,2,15005,90 ,1,0,609935 ,2,15005,90 ,1,0,573510 ,2,15005,90 ,1,0,609935 ,2,15005,90 ,1,0,609950 ,2,15005,90 ,1,0,609950 ,2,15005,90 ,1,0,573575 ,2,15005,90 ,1,0,609955 ,2,15005,90 ,1,0,609955 ,2,15005,90 ,1,0,609960 ,2,15005,90 ,1,0,609960 ,2,15005,90 ,1,0,609965 ,2,15005,90 ,1,0,609970 ,2,15005,90 ,1,0,573675 ,2,15005,90 ,1,0,609975 ,2,15005,90 ,1,0,609975 ,2,15005,90 ,1,0,609980 ,2,15005,90 ,1,0,609980 ,2,15005,90 ,1,0,610005 ,2,15005,90 ,1,0,610005 ,2,15005,90 ,1,0,609965 ,2,15005,90 ,1,0,609970 ,2,15005,90 ,1,0,610010 ,2,15005,90 ,1,0,610015 ,2,15005,90 ,1,0,610015 ,2,15005,90 ,1,0,610010 ,2,15005,90 ,1,0,610020 ,2,15005,90 ,1,0,610020 ,2,15005,90 ,1,0,610035 ,2,15005,90 ,1,0,573890 ,2,15005,90 ,1,0,610040 ,2,15005,90 ,1,0,610040 ,2,15005,90 ,1,0,610045 ,2,15005,90 ,1,0,610045 ,2,15005,90 ,1,0,610050 ,2,15005,90 ,1,0,610050 ,2,15005,90 ,1,0,573960 ,2,15005,90 ,1,0,567740 ,1,1,100 ,2,15005,90 ,1,0,573985 ,2,15005,90 ,1,0,610075 ,2,15005,90 ,1,0,574030 ,2,15005,90 ,1,0,574085 ,2,15005,90 ,1,0,610080 ,2,15005,90 ,1,0,610080 ,2,15005,90 ,1,0,574115 ,1,1,610085 ,2,15005,90 ,1,0,610085 ,2,15005,90 ,1,0,574115 ,2,15005,90 ,1,0,610085 ,2,15005,90 ,1,0,610090 ,2,15005,90 ,1,0,610090 ,2,15005,90 ,1,0,574165 ,1,1,610090 ,1,2,574165 ,2,15005,90 ,1,0,610105 ,2,15005,90 ,1,0,610105 ,2,15005,90 ,1,0,574180 ,1,1,610105 ,2,15005,90 ,1,0,610110 ,2,15005,90 ,1,0,610110 ,2,15005,90 ,1,0,610115 ,2,15005,90 ,1,0,610115 ,2,15005,90 ,1,0,610155 ,1,1,610120 ,1,2,610155 ,2,15005,90 ,1,0,610120 ,2,15005,90 ,1,0,610155 ,2,15005,90 ,1,0,610120 ,1,1,610155 ,2,15005,90 ,1,0,610160 ,2,15005,90 ,1,0,610165 ,2,15005,90 ,1,0,610165 ,2,15005,90 ,1,0,574355 ,2,15005,90 ,1,0,610170 ,2,15005,90 ,1,0,610170 ,2,15005,90 ,1,0,609910 ,2,15005,90 ,1,0,610180 ,2,15005,90 ,1,0,610185 ,2,15005,90 ,1,0,610190 ,2,15005,90 ,1,0,610190 ,2,15005,90 ,1,0,573440 ,2,15005,90 ,1,0,610195 ,2,15005,90 ,1,0,610215 ,2,15005,90 ,1,0,610215 ,2,15005,90 ,1,0,610220 ,2,15005,90 ,1,0,610225 ,2,15005,90 ,1,0,610225 ,2,15005,90 ,1,0,610230 ,2,15005,90 ,1,0,610240 ,2,15005,90 ,1,0,610240 ,2,15005,90 ,1,0,574490 ,1,1,610240 ,2,15005,90 ,1,0,574505 ,1,1,610245 ,2,15005,90 ,1,0,610245 ,2,15005,90 ,1,0,574505 ,2,15005,90 ,1,0,610245 ,2,15005,90 ,1,0,574565 ,2,15005,90 ,1,0,574590 ,2,15005,90 ,1,0,610250 ,2,15005,90 ,1,0,610250 ,2,15005,90 ,1,0,567855 ,2,15005,90 ,1,0,572380 ,2,15005,90 ,1,0,574710 ,2,15005,90 ,1,0,572770 ,2,15005,90 ,1,0,574880 ,2,15005,90 ,1,0,610255 ,2,15005,90 ,1,0,610255 ,2,15005,90 ,1,0,574955 ,2,15005,90 ,1,0,575010 ,2,15005,90 ,1,0,610290 ,2,15005,90 ,1,0,610290 ,2,15005,90 ,1,0,575170 ,2,15005,90 ,1,0,610295 ,2,15005,90 ,1,0,610300 ,2,15005,90 ,1,0,610300 ,2,15005,90 ,1,0,575135 ,2,15005,90 ,1,0,610305 ,2,15005,90 ,1,0,610305 ,2,15005,90 ,1,0,562300 ,2,15005,90 ,1,0,610310 ,2,15005,90 ,1,0,610310 ,2,15005,90 ,1,0,610320 ,1,1,610315 ,2,15005,90 ,1,0,575470 ,1,1,575465 ,2,15005,90 ,1,0,567805 ,1,1,575650 ,2,15005,90 ,1,0,610320 ,1,1,610315 ,2,15005,90 ,1,0,576285 ,2,15005,90 ,1,0,575465 ,2,15005,90 ,1,0,576345 ,2,15005,90 ,1,0,576425 ,2,15005,90 ,1,0,576485 ,2,15005,90 ,1,0,567805 ,1,1,572245 ,2,15005,90 ,1,0,610350 ,1,1,576650 ,1,2,610350 ,1,3,610325 ,2,15005,90 ,1,0,610345 ,1,1,576660 ,1,2,610345 ,1,3,610340 ,2,15005,90 ,1,0,610345 ,1,1,606095 ,1,2,610345 ,1,3,610340 ,2,15005,90 ,1,0,610345 ,1,1,576660 ,2,15005,90 ,1,0,610345 ,1,1,610340 ,2,15005,90 ,1,0,610350 ,1,1,576675 ,1,2,610350 ,1,3,610325 ,2,15005,90 ,1,0,610350 ,1,1,606100 ,1,2,610350 ,1,3,610325 ,2,15005,90 ,1,0,610365 ,1,1,610360 ,2,15005,90 ,1,0,610365 ,1,1,610360 ,2,15005,90 ,1,0,610375 ,1,1,576715 ,1,2,610375 ,1,3,610370 ,2,15005,90 ,1,0,610375 ,1,1,576720 ,1,2,610375 ,1,3,610370 ,2,15005,90 ,1,0,610375 ,1,1,606105 ,1,2,610375 ,1,3,610370 ,2,15005,90 ,1,0,610375 ,1,1,576715 ,2,15005,90 ,1,0,610375 ,1,1,610370 ,2,15005,90 ,1,0,610375 ,1,1,610370 ,2,15005,90 ,1,0,610350 ,1,1,610325 ,2,15005,90 ,1,0,610325 ,2,15005,90 ,1,0,610350 ,2,15005,90 ,1,0,567680 ,2,15005,90 ,1,0,576985 ,2,15005,90 ,1,0,577095 ,2,15005,90 ,1,0,610445 ,2,15005,90 ,1,0,610445 ,2,15005,90 ,1,0,610450 ,2,15005,90 ,1,0,577225 ,2,15005,90 ,1,0,570130 ,2,15005,90 ,1,0,577285 ,2,15005,90 ,1,0,577415 ,2,15005,90 ,1,0,577745 ,2,15005,90 ,1,0,577745 ,1,1,577745 ,2,15005,90 ,1,0,577815 ,2,15005,90 ,1,0,577895 ,1,1,577880 ,2,15005,90 ,1,0,577910 ,1,1,577745 ,2,15005,90 ,1,0,578055 ,1,1,578040 ,2,15005,90 ,1,0,577910 ,2,15005,90 ,1,0,578125 ,2,15005,90 ,1,0,578150 ,2,15005,90 ,1,0,578265 ,2,15005,90 ,1,0,578290 ,2,15005,90 ,1,0,578465 ,2,15005,90 ,1,0,578475 ,2,15005,90 ,1,0,578550 ,2,15005,90 ,1,0,578530 ,2,15005,90 ,1,0,578815 ,2,15005,90 ,1,0,579015 ,2,15005,90 ,1,0,567805 ,1,1,579110 ,2,15005,90 ,1,0,579225 ,2,15005,90 ,1,0,610455 ,2,15005,90 ,1,0,610455 ,2,15005,90 ,1,0,610470 ,2,15005,90 ,1,0,610470 ,2,15005,90 ,1,0,610475 ,2,15005,90 ,1,0,562405 ,2,15005,90 ,1,0,610475 ,2,15005,90 ,1,0,610480 ,2,15005,90 ,1,0,610480 ,2,15005,90 ,1,0,579860 ,2,15005,90 ,1,0,569260 ,2,15005,90 ,1,0,575650 ,2,15005,90 ,1,0,567805 ,1,1,580545 ,2,15005,90 ,1,0,610485 ,2,15005,90 ,1,0,610490 ,2,15005,90 ,1,0,610495 ,2,15005,90 ,1,0,610500 ,2,15005,90 ,1,0,610505 ,2,15005,90 ,1,0,610525 ,2,15005,90 ,1,0,580590 ,2,15005,90 ,1,0,580615 ,2,15005,90 ,1,0,580680 ,2,15005,90 ,1,0,580710 ,2,15005,90 ,1,0,580730 ,2,15005,90 ,1,0,580785 ,2,15005,90 ,1,0,580800 ,2,15005,90 ,1,0,580895 ,2,15005,90 ,1,0,610530 ,2,15005,90 ,1,0,610530 ,2,15005,90 ,1,0,610535 ,2,15005,90 ,1,0,610535 ,2,15005,90 ,1,0,610540 ,2,15005,90 ,1,0,610540 ,2,15005,90 ,1,0,609525 ,2,15005,90 ,1,0,609525 ,2,15005,90 ,1,0,610550 ,2,15005,90 ,1,0,610550 ,2,15005,90 ,1,0,581190 ,2,15005,90 ,1,0,610555 ,2,15005,90 ,1,0,610555 ,2,15005,90 ,1,0,610560 ,2,15005,90 ,1,0,610560 ,2,15005,90 ,1,0,610565 ,2,15005,90 ,1,0,610565 ,2,15005,90 ,1,0,610590 ,2,15005,90 ,1,0,610590 ,2,15005,90 ,1,0,610595 ,2,15005,90 ,1,0,610595 ,2,15005,90 ,1,0,610605 ,1,1,610600 ,1,2,610605 ,2,15005,90 ,1,0,610605 ,2,15005,90 ,1,0,610600 ,1,1,610605 ,2,15005,90 ,1,0,581460 ,2,15005,90 ,1,0,581495 ,2,15005,90 ,1,0,610620 ,2,15005,90 ,1,0,610620 ,2,15005,90 ,1,0,610625 ,1,1,610630 ,1,2,610625 ,2,15005,90 ,1,0,610625 ,2,15005,90 ,1,0,610630 ,1,1,610625 ,2,15005,90 ,1,0,581685 ,2,15005,90 ,1,0,610635 ,2,15005,90 ,1,0,610635 ,2,15005,90 ,1,0,581750 ,2,15005,90 ,1,0,610685 ,2,15005,90 ,1,0,610685 ,2,15005,90 ,1,0,581855 ,2,15005,90 ,1,0,599880 ,1,1,561435 ,2,15005,90 ,1,0,610700 ,1,1,610695 ,2,15005,90 ,1,0,610700 ,1,1,610695 ,2,15005,90 ,1,0,610715 ,1,1,610710 ,2,15005,90 ,1,0,599970 ,1,1,577745 ,2,15005,90 ,1,0,599970 ,1,1,561380 ,2,15005,90 ,1,0,599970 ,1,1,577910 ,2,15005,90 ,1,0,599970 ,1,1,567750 ,2,15005,90 ,1,0,581910 ,1,1,599970 ,2,15005,90 ,1,0,599880 ,1,1,577745 ,2,15005,90 ,1,0,567740 ,1,1,581920 ,2,15005,90 ,1,0,571235 ,2,15005,90 ,1,0,610720 ,2,15005,90 ,1,0,581930 ,2,15005,90 ,1,0,610740 ,2,15005,90 ,1,0,610745 ,2,15005,90 ,1,0,568045 ,1,1,581930 ,2,15005,90 ,1,0,581985 ,1,1,575135 ,2,15005,90 ,1,0,610750 ,2,15005,90 ,1,0,610750 ,2,15005,90 ,1,0,610755 ,2,15005,90 ,1,0,610765 ,2,15005,90 ,1,0,610770 ,2,15005,90 ,1,0,610770 ,2,15005,90 ,1,0,610775 ,2,15005,90 ,1,0,610780 ,2,15005,90 ,1,0,610800 ,2,15005,90 ,1,0,610800 ,2,15005,90 ,1,0,610805 ,2,15005,90 ,1,0,610805 ,2,15005,90 ,1,0,610780 ,2,15005,90 ,1,0,610775 ,2,15005,90 ,1,0,610765 ,2,15005,90 ,1,0,610810 ,2,15005,90 ,1,0,610810 ,2,15005,90 ,1,0,610815 ,2,15005,90 ,1,0,610755 ,2,15005,90 ,1,0,582205 ,2,15005,90 ,1,0,582245 ,2,15005,90 ,1,0,599970 ,1,1,599880 ,2,15005,90 ,1,0,599880 ,1,1,582275 ,2,15005,90 ,1,0,610830 ,2,15005,90 ,1,0,610830 ,2,15005,90 ,1,0,610835 ,2,15005,90 ,1,0,610835 ,2,15005,90 ,1,0,582330 ,1,1,100 ,2,15005,90 ,1,0,567740 ,1,1,571235 ,2,15005,90 ,1,0,599880 ,1,1,577910 ,2,15005,90 ,1,0,610840 ,2,15005,90 ,1,0,610845 ,2,15005,90 ,1,0,610845 ,2,15005,90 ,1,0,610890 ,2,15005,90 ,1,0,610890 ,2,15005,90 ,1,0,582715 ,2,15005,90 ,1,0,610895 ,2,15005,90 ,1,0,610895 ,2,15005,90 ,1,0,610900 ,2,15005,90 ,1,0,610900 ,2,15005,90 ,1,0,610905 ,2,15005,90 ,1,0,610915 ,2,15005,90 ,1,0,610915 ,2,15005,90 ,1,0,599880 ,1,1,599970 ,2,15005,90 ,1,0,582710 ,2,15005,90 ,1,0,582590 ,2,15005,90 ,1,0,610920 ,2,15005,90 ,1,0,610930 ,1,1,610925 ,2,15005,90 ,1,0,610930 ,1,1,610925 ,2,15005,90 ,1,0,610965 ,2,15005,90 ,1,0,610965 ,2,15005,90 ,1,0,582405 ,1,1,582405 ,2,15005,90 ,1,0,584430 ,1,1,599880 ,2,15005,90 ,1,0,610715 ,1,1,610710 ,2,15005,90 ,1,0,610710 ,2,15005,90 ,1,0,610715 ,2,15005,90 ,1,0,610970 ,1,1,610975 ,2,15005,90 ,1,0,610970 ,1,1,610975 ,2,15005,90 ,1,0,610990 ,1,1,584535 ,2,15005,90 ,1,0,610980 ,2,15005,90 ,1,0,610990 ,1,1,610980 ,2,15005,90 ,1,0,611000 ,2,15005,90 ,1,0,610995 ,1,1,611000 ,2,15005,90 ,1,0,610975 ,2,15005,90 ,1,0,611005 ,2,15005,90 ,1,0,611005 ,2,15005,90 ,1,0,611030 ,2,15005,90 ,1,0,611030 ,2,15005,90 ,1,0,611035 ,2,15005,90 ,1,0,611035 ,2,15005,90 ,1,0,599895 ,2,15005,90 ,1,0,611040 ,2,15005,90 ,1,0,611040 ,2,15005,90 ,1,0,611045 ,2,15005,90 ,1,0,611045 ,2,15005,90 ,1,0,611055 ,2,15005,90 ,1,0,611060 ,2,15005,90 ,1,0,611060 ,2,15005,90 ,1,0,611065 ,2,15005,90 ,1,0,611065 ,2,15005,90 ,1,0,611070 ,2,15005,90 ,1,0,611070 ,2,15005,90 ,1,0,611095 ,2,15005,90 ,1,0,611100 ,2,15005,90 ,1,0,611100 ,2,15005,90 ,1,0,599900 ,2,15005,90 ,1,0,611105 ,2,15005,90 ,1,0,611105 ,2,15005,90 ,1,0,611110 ,2,15005,90 ,1,0,611110 ,2,15005,90 ,1,0,611120 ,2,15005,90 ,1,0,611125 ,2,15005,90 ,1,0,611125 ,2,15005,90 ,1,0,611130 ,2,15005,90 ,1,0,611130 ,2,15005,90 ,1,0,611135 ,2,15005,90 ,1,0,611135 ,2,15005,90 ,1,0,611165 ,2,15005,90 ,1,0,611170 ,2,15005,90 ,1,0,611170 ,2,15005,90 ,1,0,599905 ,2,15005,90 ,1,0,611175 ,2,15005,90 ,1,0,611175 ,2,15005,90 ,1,0,611180 ,2,15005,90 ,1,0,611180 ,2,15005,90 ,1,0,611185 ,2,15005,90 ,1,0,611190 ,2,15005,90 ,1,0,611190 ,2,15005,90 ,1,0,611195 ,2,15005,90 ,1,0,611195 ,2,15005,90 ,1,0,611200 ,2,15005,90 ,1,0,611200 ,2,15005,90 ,1,0,611230 ,2,15005,90 ,1,0,611235 ,2,15005,90 ,1,0,611235 ,2,15005,90 ,1,0,611240 ,2,15005,90 ,1,0,611240 ,2,15005,90 ,1,0,611245 ,2,15005,90 ,1,0,611245 ,2,15005,90 ,1,0,611250 ,2,15005,90 ,1,0,611255 ,2,15005,90 ,1,0,611255 ,2,15005,90 ,1,0,561455 ,2,15005,90 ,1,0,585210 ,2,15005,90 ,1,0,558580 ,2,15005,90 ,1,0,558415 ,2,15005,90 ,1,0,585400 ,2,15005,90 ,1,0,585420 ,2,15005,90 ,1,0,611260 ,2,15005,90 ,1,0,611260 ,2,15005,90 ,1,0,585485 ,2,15005,90 ,1,0,611290 ,1,1,611265 ,2,15005,90 ,1,0,611290 ,1,1,611265 ,2,15005,90 ,1,0,585520 ,2,15005,90 ,1,0,611300 ,1,1,611295 ,2,15005,90 ,1,0,611300 ,2,15005,90 ,1,0,611300 ,1,1,611295 ,2,15005,90 ,1,0,611295 ,2,15005,90 ,1,0,611305 ,1,1,585540 ,1,2,611305 ,2,15005,90 ,1,0,611305 ,2,15005,90 ,1,0,611305 ,1,1,585540 ,2,15005,90 ,1,0,611305 ,2,15005,90 ,1,0,611310 ,2,15005,90 ,1,0,611310 ,2,15005,90 ,1,0,611315 ,2,15005,90 ,1,0,611315 ,2,15005,90 ,1,0,611320 ,2,15005,90 ,1,0,611320 ,2,15005,90 ,1,0,585600 ,2,15005,90 ,1,0,585640 ,2,15005,90 ,1,0,611325 ,2,15005,90 ,1,0,611325 ,2,15005,90 ,1,0,599880 ,1,1,599870 ,2,15005,90 ,1,0,562990 ,2,15005,90 ,1,0,585820 ,2,15005,90 ,1,0,585740 ,2,15005,90 ,1,0,611355 ,2,15005,90 ,1,0,611360 ,2,15005,90 ,1,0,611360 ,2,15005,90 ,1,0,611365 ,2,15005,90 ,1,0,611365 ,2,15005,90 ,1,0,611370 ,2,15005,90 ,1,0,586045 ,2,15005,90 ,1,0,599880 ,1,1,600040 ,2,15005,90 ,1,0,586070 ,2,15005,90 ,1,0,586450 ,2,15005,90 ,1,0,586505 ,2,15005,90 ,1,0,586580 ,2,15005,90 ,1,0,586610 ,2,15005,90 ,1,0,586665 ,2,15005,90 ,1,0,567740 ,1,1,575210 ,2,15005,90 ,1,0,586745 ,2,15005,90 ,1,0,611380 ,2,15005,90 ,1,0,611380 ,2,15005,90 ,1,0,586805 ,1,1,611390 ,1,2,611385 ,2,15005,90 ,1,0,611390 ,1,1,611385 ,2,15005,90 ,1,0,586805 ,2,15005,90 ,1,0,611390 ,1,1,611385 ,2,15005,90 ,1,0,611395 ,2,15005,90 ,1,0,611395 ,2,15005,90 ,1,0,586855 ,2,15005,90 ,1,0,611420 ,1,1,586865 ,1,2,611420 ,2,15005,90 ,1,0,611420 ,2,15005,90 ,1,0,611420 ,1,1,586865 ,2,15005,90 ,1,0,611420 ,2,15005,90 ,1,0,611430 ,1,1,611425 ,2,15005,90 ,1,0,611430 ,1,1,611425 ,2,15005,90 ,1,0,586910 ,2,15005,90 ,1,0,611430 ,2,15005,90 ,1,0,586925 ,1,1,611435 ,2,15005,90 ,1,0,611435 ,2,15005,90 ,1,0,586925 ,2,15005,90 ,1,0,611435 ,2,15005,90 ,1,0,586990 ,2,15005,90 ,1,0,587095 ,2,15005,90 ,1,0,611440 ,2,15005,90 ,1,0,611445 ,2,15005,90 ,1,0,611445 ,2,15005,90 ,1,0,611440 ,2,15005,90 ,1,0,587330 ,2,15005,90 ,1,0,587345 ,2,15005,90 ,1,0,587405 ,2,15005,90 ,1,0,587440 ,2,15005,90 ,1,0,599970 ,1,1,587520 ,2,15005,90 ,1,0,599970 ,1,1,587540 ,2,15005,90 ,1,0,599970 ,1,1,587575 ,2,15005,90 ,1,0,587605 ,2,15005,90 ,1,0,587745 ,2,15005,90 ,1,0,587875 ,2,15005,90 ,1,0,587890 ,2,15005,90 ,1,0,100 ,1,1,587905 ,1,2,100 ,2,15005,90 ,1,0,588020 ,2,15005,90 ,1,0,588040 ,2,15005,90 ,1,0,588090 ,2,15005,90 ,1,0,588150 ,2,15005,90 ,1,0,588170 ,2,15005,90 ,1,0,588220 ,2,15005,90 ,1,0,611450 ,2,15005,90 ,1,0,611450 ,2,15005,90 ,1,0,611455 ,2,15005,90 ,1,0,611455 ,2,15005,90 ,1,0,611490 ,2,15005,90 ,1,0,611490 ,2,15005,90 ,1,0,611495 ,2,15005,90 ,1,0,611495 ,2,15005,90 ,1,0,611500 ,2,15005,90 ,1,0,611500 ,2,15005,90 ,1,0,611505 ,2,15005,90 ,1,0,611505 ,2,15005,90 ,1,0,611510 ,2,15005,90 ,1,0,611510 ,2,15005,90 ,1,0,611520 ,1,1,611515 ,1,2,611520 ,2,15005,90 ,1,0,611520 ,2,15005,90 ,1,0,611515 ,1,1,611520 ,2,15005,90 ,1,0,611525 ,2,15005,90 ,1,0,611550 ,2,15005,90 ,1,0,611550 ,2,15005,90 ,1,0,611525 ,2,15005,90 ,1,0,611555 ,2,15005,90 ,1,0,611555 ,2,15005,90 ,1,0,611560 ,2,15005,90 ,1,0,611560 ,2,15005,90 ,1,0,611565 ,2,15005,90 ,1,0,611565 ,2,15005,90 ,1,0,611575 ,2,15005,90 ,1,0,611575 ,2,15005,90 ,1,0,611585 ,1,1,611580 ,1,2,611585 ,1,3,611580 ,2,15005,90 ,1,0,611610 ,1,1,611605 ,1,2,611590 ,2,15005,90 ,1,0,611610 ,1,1,611605 ,1,2,611590 ,2,15005,90 ,1,0,611590 ,2,15005,90 ,1,0,611585 ,1,1,611580 ,1,2,611585 ,2,15005,90 ,1,0,611585 ,1,1,611580 ,2,15005,90 ,1,0,611615 ,2,15005,90 ,1,0,611615 ,1,1,611615 ,1,2,611620 ,1,3,611615 ,1,4,611620 ,2,15005,90 ,1,0,611640 ,1,1,611635 ,1,2,611630 ,1,3,611640 ,2,15005,90 ,1,0,611640 ,2,15005,90 ,1,0,611635 ,1,1,611630 ,1,2,611640 ,2,15005,90 ,1,0,611615 ,1,1,611615 ,1,2,611620 ,1,3,611615 ,2,15005,90 ,1,0,611615 ,1,1,611620 ,2,15005,90 ,1,0,611665 ,1,1,611645 ,1,2,611645 ,1,3,611665 ,1,4,611645 ,2,15005,90 ,1,0,611665 ,1,1,611645 ,1,2,611645 ,2,15005,90 ,1,0,611665 ,1,1,611645 ,2,15005,90 ,1,0,611670 ,2,15005,90 ,1,0,611670 ,1,1,611675 ,1,2,611670 ,1,3,611670 ,1,4,611675 ,1,5,611670 ,2,15005,90 ,1,0,611670 ,1,1,611675 ,1,2,611670 ,1,3,611670 ,2,15005,90 ,1,0,611675 ,1,1,611670 ,2,15005,90 ,1,0,611680 ,2,15005,90 ,1,0,611680 ,2,15005,90 ,1,0,611695 ,1,1,611690 ,1,2,611685 ,2,15005,90 ,1,0,611695 ,1,1,611690 ,2,15005,90 ,1,0,611695 ,1,1,611690 ,1,2,611685 ,2,15005,90 ,1,0,611685 ,2,15005,90 ,1,0,611735 ,1,1,611700 ,1,2,611735 ,1,3,611700 ,2,15005,90 ,1,0,611735 ,1,1,611700 ,2,15005,90 ,1,0,611735 ,1,1,611700 ,1,2,611735 ,2,15005,90 ,1,0,611735 ,1,1,611700 ,2,15005,90 ,1,0,611740 ,2,15005,90 ,1,0,611740 ,1,1,611745 ,2,15005,90 ,1,0,611740 ,1,1,611745 ,2,15005,90 ,1,0,611755 ,1,1,588910 ,1,2,611750 ,1,3,611755 ,1,4,611750 ,2,15005,90 ,1,0,611755 ,1,1,588915 ,1,2,611755 ,1,3,611750 ,2,15005,90 ,1,0,611755 ,1,1,606110 ,1,2,611755 ,1,3,611750 ,2,15005,90 ,1,0,611755 ,1,1,588910 ,1,2,611750 ,2,15005,90 ,1,0,611755 ,1,1,611750 ,2,15005,90 ,1,0,611760 ,2,15005,90 ,1,0,611760 ,2,15005,90 ,1,0,611765 ,2,15005,90 ,1,0,611765 ,2,15005,90 ,1,0,611780 ,1,1,611770 ,2,15005,90 ,1,0,611780 ,1,1,611770 ,2,15005,90 ,1,0,611770 ,2,15005,90 ,1,0,611785 ,2,15005,90 ,1,0,611785 ,1,1,611790 ,1,2,611785 ,2,15005,90 ,1,0,611790 ,1,1,611785 ,2,15005,90 ,1,0,611810 ,1,1,611795 ,1,2,611810 ,2,15005,90 ,1,0,611795 ,1,1,611810 ,2,15005,90 ,1,0,611810 ,2,15005,90 ,1,0,611820 ,1,1,611815 ,2,15005,90 ,1,0,611820 ,1,1,611815 ,2,15005,90 ,1,0,611815 ,2,15005,90 ,1,0,611825 ,2,15005,90 ,1,0,611825 ,2,15005,90 ,1,0,611850 ,2,15005,90 ,1,0,611850 ,2,15005,90 ,1,0,589130 ,2,15005,90 ,1,0,611855 ,2,15005,90 ,1,0,611855 ,2,15005,90 ,1,0,611860 ,2,15005,90 ,1,0,611860 ,2,15005,90 ,1,0,611865 ,2,15005,90 ,1,0,611865 ,2,15005,90 ,1,0,611880 ,2,15005,90 ,1,0,611880 ,2,15005,90 ,1,0,611890 ,1,1,611885 ,1,2,611885 ,1,3,611890 ,1,4,611885 ,2,15005,90 ,1,0,611890 ,1,1,611885 ,2,15005,90 ,1,0,611890 ,1,1,611885 ,1,2,611885 ,2,15005,90 ,1,0,611890 ,1,1,611885 ,2,15005,90 ,1,0,611895 ,2,15005,90 ,1,0,611895 ,2,15005,90 ,1,0,611935 ,2,15005,90 ,1,0,611935 ,2,15005,90 ,1,0,611940 ,2,15005,90 ,1,0,611940 ,2,15005,90 ,1,0,611945 ,2,15005,90 ,1,0,611945 ,2,15005,90 ,1,0,611950 ,2,15005,90 ,1,0,611950 ,2,15005,90 ,1,0,611955 ,2,15005,90 ,1,0,611955 ,2,15005,90 ,1,0,559540 ,2,15005,90 ,1,0,589815 ,2,15005,90 ,1,0,589875 ,2,15005,90 ,1,0,589985 ,2,15005,90 ,1,0,611965 ,1,1,611960 ,2,15005,90 ,1,0,611965 ,1,1,611960 ,2,15005,90 ,1,0,611960 ,2,15005,90 ,1,0,582335 ,1,1,100 ,2,15005,90 ,1,0,600010 ,2,15005,90 ,1,0,590290 ,2,15005,90 ,1,0,611970 ,2,15005,90 ,1,0,611970 ,2,15005,90 ,1,0,599885 ,1,1,600035 ,2,15005,90 ,1,0,611990 ,2,15005,90 ,1,0,611990 ,2,15005,90 ,1,0,581510 ,2,15005,90 ,1,0,568030 ,2,15005,90 ,1,0,590645 ,2,15005,90 ,1,0,567805 ,1,1,590700 ,2,15005,90 ,1,0,590700 ,1,1,567805 ,2,15005,90 ,1,0,568420 ,1,1,590700 ,2,15005,90 ,1,0,590700 ,1,1,568420 ,2,15005,90 ,1,0,609275 ,2,15005,90 ,1,0,609285 ,2,15005,90 ,1,0,590765 ,2,15005,90 ,1,0,567805 ,1,1,599940 ,2,15005,90 ,1,0,568420 ,1,1,590795 ,2,15005,90 ,1,0,590795 ,1,1,568420 ,2,15005,90 ,1,0,567805 ,1,1,590795 ,2,15005,90 ,1,0,590795 ,1,1,567805 ,2,15005,90 ,1,0,609205 ,2,15005,90 ,1,0,567045 ,2,15005,90 ,1,0,590845 ,2,15005,90 ,1,0,567285 ,2,15005,90 ,1,0,609280 ,2,15005,90 ,1,0,590895 ,1,1,599940 ,2,15005,90 ,1,0,590900 ,2,15005,90 ,1,0,590950 ,2,15005,90 ,1,0,590970 ,2,15005,90 ,1,0,577635 ,2,15005,90 ,1,0,570385 ,2,15005,90 ,1,0,609840 ,1,1,609760 ,1,2,609840 ,2,15005,90 ,1,0,609845 ,1,1,591035 ,1,2,609845 ,2,15005,90 ,1,0,609845 ,1,1,591040 ,1,2,609845 ,2,15005,90 ,1,0,609845 ,1,1,606120 ,1,2,609845 ,2,15005,90 ,1,0,609750 ,1,1,609755 ,2,15005,90 ,1,0,609750 ,1,1,572975 ,1,2,609750 ,1,3,572975 ,2,15005,90 ,1,0,110 ,1,1,607905 ,2,15005,90 ,1,0,591080 ,2,15005,90 ,1,0,591115 ,2,15005,90 ,1,0,609270 ,2,15005,90 ,1,0,567680 ,1,1,599970 ,2,15005,90 ,1,0,599870 ,1,1,599870 ,2,15005,90 ,1,0,575125 ,2,15005,90 ,1,0,591125 ,2,15005,90 ,1,0,575070 ,2,15005,90 ,1,0,574760 ,2,15005,90 ,1,0,572365 ,2,15005,90 ,1,0,560665 ,2,15005,90 ,1,0,577660 ,2,15005,90 ,1,0,599940 ,1,1,591350 ,1,2,599940 ,2,15005,90 ,1,0,599940 ,1,1,591355 ,1,2,599940 ,2,15005,90 ,1,0,599940 ,1,1,606125 ,1,2,599940 ,2,15005,90 ,1,0,576430 ,2,15005,90 ,1,0,611515 ,1,1,591465 ,1,2,611520 ,1,3,611515 ,1,4,611520 ,2,15005,90 ,1,0,611515 ,1,1,591470 ,1,2,611515 ,1,3,611520 ,2,15005,90 ,1,0,611515 ,1,1,606130 ,1,2,611515 ,1,3,611520 ,2,15005,90 ,1,0,575045 ,2,15005,90 ,1,0,591535 ,1,1,591130 ,2,15005,90 ,1,0,610220 ,2,15005,90 ,1,0,610745 ,2,15005,90 ,1,0,610740 ,2,15005,90 ,1,0,573830 ,2,15005,90 ,1,0,577295 ,2,15005,90 ,1,0,567600 ,2,15005,90 ,1,0,570885 ,2,15005,90 ,1,0,563745 ,1,1,560975 ,2,15005,90 ,1,0,575000 ,2,15005,90 ,1,0,599970 ,1,1,599940 ,2,15005,90 ,1,0,594915 ,2,15005,90 ,1,0,610495 ,2,15005,90 ,1,0,610500 ,2,15005,90 ,1,0,610525 ,2,15005,90 ,1,0,591820 ,2,15005,90 ,1,0,580980 ,1,1,591875 ,2,15005,90 ,1,0,593870 ,2,15005,90 ,1,0,586855 ,1,1,611395 ,2,15005,90 ,1,0,582405 ,2,15005,90 ,1,0,610325 ,1,1,610350 ,1,2,610325 ,2,15005,90 ,1,0,567740 ,1,1,591995 ,2,15005,90 ,1,0,567740 ,1,1,592005 ,2,15005,90 ,1,0,584290 ,2,15005,90 ,1,0,561570 ,2,15005,90 ,1,0,582690 ,2,15005,90 ,1,0,583220 ,2,15005,90 ,1,0,582935 ,2,15005,90 ,1,0,582980 ,2,15005,90 ,1,0,584015 ,2,15005,90 ,1,0,582895 ,2,15005,90 ,1,0,599880 ,1,1,582505 ,2,15005,90 ,1,0,593445 ,2,15005,90 ,1,0,582950 ,2,15005,90 ,1,0,591930 ,2,15005,90 ,1,0,593460 ,2,15005,90 ,1,0,563745 ,2,15005,90 ,1,0,569980 ,2,15005,90 ,1,0,591085 ,2,15005,90 ,1,0,570410 ,2,15005,90 ,1,0,593540 ,2,15005,90 ,1,0,600040 ,1,1,567805 ,2,15005,90 ,1,0,567680 ,1,1,566855 ,2,15005,90 ,1,0,593595 ,2,15005,90 ,1,0,593610 ,2,15005,90 ,1,0,567740 ,2,15005,90 ,1,0,593670 ,2,15005,90 ,1,0,610295 ,2,15005,90 ,1,0,599970 ,1,1,567805 ,2,15005,90 ,1,0,599970 ,1,1,593685 ,1,2,599970 ,1,3,568420 ,2,15005,90 ,1,0,599970 ,1,1,593700 ,1,2,599970 ,1,3,568420 ,2,15005,90 ,1,0,599970 ,1,1,606135 ,1,2,599970 ,1,3,568420 ,2,15005,90 ,1,0,599970 ,1,1,568460 ,2,15005,90 ,1,0,593920 ,2,15005,90 ,1,0,573280 ,2,15005,90 ,1,0,571180 ,2,15005,90 ,1,0,611740 ,1,1,611745 ,1,2,611740 ,1,3,611745 ,2,15005,90 ,1,0,593790 ,1,1,100 ,2,15005,90 ,1,0,593795 ,2,15005,90 ,1,0,593800 ,2,15005,90 ,1,0,609450 ,2,15005,90 ,1,0,609225 ,2,15005,90 ,1,0,577470 ,2,15005,90 ,1,0,593860 ,2,15005,90 ,1,0,575210 ,2,15005,90 ,1,0,593930 ,2,15005,90 ,1,0,573315 ,2,15005,90 ,1,0,569150 ,2,15005,90 ,1,0,586910 ,1,1,611430 ,1,2,611425 ,2,15005,90 ,1,0,570365 ,2,15005,90 ,1,0,610195 ,2,15005,90 ,1,0,611690 ,2,15005,90 ,1,0,610350 ,1,1,576650 ,1,2,576650 ,1,3,610350 ,1,4,576650 ,2,15005,90 ,1,0,610375 ,1,1,610370 ,1,2,610365 ,1,3,610360 ,2,15005,90 ,1,0,100 ,1,1,611960 ,2,15005,90 ,1,0,608465 ,1,1,608470 ,2,15005,90 ,1,0,608430 ,1,1,608465 ,1,2,608430 ,2,15005,90 ,1,0,606290 ,1,1,606235 ,1,2,606290 ,2,15005,90 ,1,0,606315 ,1,1,606320 ,1,2,606315 ,2,15005,90 ,1,0,606230 ,1,1,606225 ,1,2,606230 ,2,15005,90 ,1,0,606420 ,1,1,606415 ,1,2,606445 ,1,3,606425 ,1,4,606420 ,1,5,606415 ,2,15005,90 ,1,0,606205 ,1,1,606210 ,1,2,606205 ,2,15005,90 ,1,0,606265 ,1,1,606270 ,2,15005,90 ,1,0,606985 ,1,1,606980 ,1,2,607010 ,1,3,606990 ,1,4,606985 ,1,5,606980 ,2,15005,90 ,1,0,607020 ,1,1,607010 ,1,2,607020 ,2,15005,90 ,1,0,606150 ,1,1,606705 ,1,2,606150 ,2,15005,90 ,1,0,607340 ,1,1,607350 ,1,2,607340 ,2,15005,90 ,1,0,567740 ,1,1,568565 ,2,15005,90 ,1,0,566930 ,1,1,593985 ,2,15005,90 ,1,0,567680 ,1,1,568420 ,2,15005,90 ,1,0,593995 ,2,15005,90 ,1,0,568565 ,2,15005,90 ,1,0,594015 ,2,15005,90 ,1,0,610160 ,2,15005,90 ,1,0,585780 ,2,15005,90 ,1,0,590325 ,2,15005,90 ,1,0,611300 ,1,1,599970 ,2,15005,90 ,1,0,594190 ,1,1,599970 ,2,15005,90 ,1,0,100 ,1,1,594200 ,1,2,100 ,2,15005,90 ,1,0,571330 ,2,15005,90 ,1,0,567750 ,2,15005,90 ,1,0,594210 ,2,15005,90 ,1,0,600040 ,1,1,100 ,2,15005,90 ,1,0,561335 ,2,15005,90 ,1,0,594260 ,2,15005,90 ,1,0,594265 ,2,15005,90 ,1,0,569615 ,2,15005,90 ,1,0,594270 ,1,1,599940 ,2,15005,90 ,1,0,594275 ,2,15005,90 ,1,0,609855 ,2,15005,90 ,1,0,609905 ,2,15005,90 ,1,0,599880 ,1,1,559725 ,2,15005,90 ,1,0,594345 ,2,15005,90 ,1,0,575135 ,2,15005,90 ,1,0,573500 ,1,1,594420 ,2,15005,90 ,1,0,594425 ,2,15005,90 ,1,0,581755 ,2,15005,90 ,1,0,591480 ,2,15005,90 ,1,0,594440 ,2,15005,90 ,1,0,606705 ,2,15005,90 ,1,0,606675 ,1,1,606680 ,1,2,606675 ,2,15005,90 ,1,0,606160 ,1,1,606155 ,2,15005,90 ,1,0,610715 ,1,1,610710 ,1,2,610700 ,1,3,610695 ,2,15005,90 ,1,0,606590 ,1,1,606585 ,2,15005,90 ,1,0,607075 ,1,1,607050 ,1,2,607045 ,1,3,607040 ,2,15005,90 ,1,0,612020 ,2,15005,90 ,1,0,612020 ,2,15005,90 ,1,0,606630 ,1,1,611895 ,2,15005,90 ,1,0,606770 ,1,1,606775 ,2,15005,90 ,1,0,606610 ,1,1,606625 ,2,15005,90 ,1,0,607285 ,1,1,607280 ,1,2,607275 ,1,3,607270 ,2,15005,90 ,1,0,606640 ,1,1,606645 ,1,2,606640 ,2,15005,90 ,1,0,609145 ,1,1,609140 ,2,15005,90 ,1,0,607085 ,1,1,607080 ,1,2,607100 ,1,3,607090 ,1,4,607085 ,1,5,607080 ,2,15005,90 ,1,0,607525 ,1,1,607520 ,1,2,607515 ,1,3,607505 ,2,15005,90 ,1,0,607360 ,1,1,607365 ,1,2,607360 ,2,15005,90 ,1,0,607325 ,1,1,607330 ,2,15005,90 ,1,0,608480 ,1,1,608485 ,1,2,608480 ,2,15005,90 ,1,0,608420 ,1,1,608415 ,2,15005,90 ,1,0,599895 ,1,1,611040 ,2,15005,90 ,1,0,599975 ,1,1,606785 ,2,15005,90 ,1,0,599900 ,1,1,611105 ,2,15005,90 ,1,0,599945 ,1,1,611240 ,2,15005,90 ,1,0,599905 ,1,1,611175 ,2,15005,90 ,1,0,599895 ,1,1,611065 ,2,15005,90 ,1,0,599975 ,1,1,610895 ,2,15005,90 ,1,0,599905 ,1,1,611195 ,2,15005,90 ,1,0,599945 ,1,1,606790 ,2,15005,90 ,1,0,606660 ,1,1,606670 ,1,2,606660 ,2,15005,90 ,1,0,599900 ,1,1,611130 ,2,15005,90 ,1,0,589575 ,2,15005,90 ,1,0,606470 ,1,1,606460 ,1,2,606480 ,1,3,606475 ,1,4,606470 ,1,5,606460 ,2,15005,90 ,1,0,606385 ,1,1,606355 ,1,2,606350 ,1,3,606345 ,2,15005,90 ,1,0,568420 ,1,1,600040 ,2,15005,90 ,1,0,594555 ,2,15005,90 ,1,0,610075 ,2,15005,90 ,1,0,591675 ,2,15005,90 ,1,0,593590 ,2,15005,90 ,1,0,570280 ,2,15005,90 ,1,0,594580 ,2,15005,90 ,1,0,594600 ,2,15005,90 ,1,0,594630 ,1,1,594605 ,2,15005,90 ,1,0,594635 ,2,15005,90 ,1,0,561435 ,2,15005,90 ,1,0,599940 ,1,1,594665 ,1,2,599940 ,1,3,599880 ,2,15005,90 ,1,0,599940 ,1,1,594670 ,1,2,599940 ,1,3,599880 ,2,15005,90 ,1,0,599940 ,1,1,606145 ,1,2,599940 ,1,3,599880 ,2,15005,90 ,1,0,594735 ,2,15005,90 ,1,0,565960 ,2,15005,90 ,1,0,594740 ,2,15005,90 ,1,0,594800 ,2,15005,90 ,1,0,575420 ,2,15005,90 ,1,0,599970 ,1,1,589495 ,2,15005,90 ,1,0,599970 ,1,1,571775 ,2,15005,90 ,1,0,599970 ,1,1,571330 ,2,15005,90 ,1,0,599970 ,1,1,594805 ,2,15005,90 ,1,0,594810 ,2,15005,90 ,1,0,594825 ,2,15005,90 ,1,0,594830 ,2,15005,90 ,1,0,594835 ,2,15005,90 ,1,0,594850 ,2,15005,90 ,1,0,578895 ,2,15005,90 ,1,0,591485 ,2,15005,90 ,1,0,569250 ,2,15005,90 ,1,0,580650 ,2,15005,90 ,1,0,593725 ,2,15005,90 ,1,0,591495 ,2,15005,90 ,1,0,575290 ,2,15005,90 ,1,0,568590 ,2,15005,90 ,1,0,594925 ,2,15005,90 ,1,0,599970 ,1,1,594950 ,2,15005,90 ,1,0,599970 ,1,1,594955 ,2,15005,90 ,1,0,606655 ,1,1,606235 ,1,2,606655 ,2,15005,90 ,1,0,581450 ,2,15005,90 ,1,0,587815 ,2,15005,90 ,1,0,595000 ,2,15005,90 ,1,0,595015 ,2,15005,90 ,1,0,577485 ,2,15005,90 ,1,0,612050 ,2,15005,90 ,1,0,587755 ,2,15005,90 ,1,0,581465 ,2,15005,90 ,1,0,573850 ,2,15005,90 ,1,0,573370 ,2,15005,90 ,1,0,580260 ,2,15005,90 ,1,0,609925 ,2,15005,90 ,1,0,100 ,1,1,600040 ,2,15005,90 ,1,0,600040 ,1,1,574260 ,2,15005,90 ,1,0,595125 ,2,15005,90 ,1,0,595130 ,2,15005,90 ,1,0,595135 ,1,1,609960 ,2,15005,90 ,1,0,595140 ,2,15005,90 ,1,0,599870 ,2,15005,90 ,1,0,612055 ,2,15005,90 ,1,0,612055 ,2,15005,90 ,1,0,568045 ,2,15005,90 ,1,0,595200 ,2,15005,90 ,1,0,611675 ,1,1,611670 ,1,2,611670 ,1,3,611675 ,1,4,611670 ,2,15005,90 ,1,0,611615 ,1,1,611620 ,1,2,611615 ,1,3,611620 ,2,15005,90 ,1,0,110 ,1,1,607910 ,2,15005,90 ,1,0,110 ,1,1,607950 ,1,2,607920 ,2,15005,90 ,1,0,110 ,1,1,607785 ,1,2,607780 ,2,15005,90 ,1,0,608905 ,2,15005,90 ,1,0,573500 ,2,15005,90 ,1,0,607615 ,1,1,607615 ,1,2,607590 ,1,3,607615 ,1,4,607590 ,2,15005,90 ,1,0,609150 ,1,1,609145 ,1,2,609150 ,2,15005,90 ,1,0,608425 ,1,1,608420 ,1,2,608425 ,2,15005,90 ,1,0,110 ,1,1,607770 ,2,15005,90 ,1,0,110 ,1,1,560665 ,2,15005,90 ,1,0,600065 ,1,1,558090 ,2,15005,90 ,1,0,110 ,1,1,608910 ,2,15005,90 ,1,0,608060 ,1,1,608060 ,2,15005,90 ,1,0,611060 ,1,1,599895 ,1,2,611060 ,2,15005,90 ,1,0,611045 ,1,1,599895 ,1,2,611045 ,2,15005,90 ,1,0,606860 ,1,1,599975 ,1,2,606860 ,2,15005,90 ,1,0,606850 ,1,1,599975 ,1,2,606850 ,2,15005,90 ,1,0,611125 ,1,1,599900 ,1,2,611125 ,2,15005,90 ,1,0,611110 ,1,1,599900 ,1,2,611110 ,2,15005,90 ,1,0,611255 ,1,1,599945 ,1,2,611255 ,2,15005,90 ,1,0,611245 ,1,1,599945 ,1,2,611245 ,2,15005,90 ,1,0,611190 ,1,1,599905 ,1,2,611190 ,2,15005,90 ,1,0,611180 ,1,1,599905 ,1,2,611180 ,2,15005,90 ,1,0,611100 ,1,1,599895 ,1,2,611100 ,2,15005,90 ,1,0,611070 ,1,1,599895 ,1,2,611070 ,2,15005,90 ,1,0,610915 ,1,1,599975 ,1,2,610915 ,2,15005,90 ,1,0,610900 ,1,1,599975 ,1,2,610900 ,2,15005,90 ,1,0,611235 ,1,1,599905 ,1,2,611235 ,2,15005,90 ,1,0,611200 ,1,1,599905 ,1,2,611200 ,2,15005,90 ,1,0,606830 ,1,1,599945 ,1,2,606830 ,2,15005,90 ,1,0,606820 ,1,1,599945 ,1,2,606820 ,2,15005,90 ,1,0,611170 ,1,1,599900 ,1,2,611170 ,2,15005,90 ,1,0,611135 ,1,1,599900 ,1,2,611135 ,2,15005,90 ,1,0,609350 ,1,1,609345 ,1,2,609350 ,2,15005,90 ,1,0,610600 ,1,1,610605 ,2,15005,90 ,1,0,599975 ,1,1,563290 ,2,15005,90 ,1,0,563290 ,2,15005,90 ,1,0,607590 ,1,1,607615 ,1,2,607590 ,1,3,607590 ,1,4,607615 ,1,5,607590 ,2,15005,90 ,1,0,572700 ,2,15005,90 ,1,0,594270 ,2,15005,90 ,1,0,595585 ,2,15005,90 ,1,0,595590 ,2,15005,90 ,1,0,562375 ,2,15005,90 ,1,0,568845 ,2,15005,90 ,1,0,578535 ,2,15005,90 ,1,0,590440 ,2,15005,90 ,1,0,559670 ,2,15005,90 ,1,0,571305 ,2,15005,90 ,1,0,609260 ,2,15005,90 ,1,0,609105 ,2,15005,90 ,1,0,609215 ,2,15005,90 ,1,0,599970 ,1,1,593510 ,2,15005,90 ,1,0,608060 ,1,1,608105 ,2,15005,90 ,1,0,595905 ,1,1,608060 ,2,15005,90 ,1,0,599880 ,1,1,577485 ,2,15005,90 ,1,0,599880 ,1,1,565160 ,2,15005,90 ,1,0,561430 ,1,1,599880 ,2,15005,90 ,1,0,612095 ,1,1,612090 ,2,15005,90 ,1,0,612090 ,2,15005,90 ,1,0,612125 ,2,15005,90 ,1,0,595975 ,2,15005,90 ,1,0,595960 ,2,15005,90 ,1,0,596020 ,2,15005,90 ,1,0,610995 ,1,1,584545 ,2,15005,90 ,1,0,610995 ,1,1,611000 ,2,15005,90 ,1,0,599880 ,1,1,565155 ,2,15005,90 ,1,0,565155 ,2,15005,90 ,1,0,594145 ,2,15005,90 ,1,0,600040 ,1,1,594725 ,2,15005,90 ,1,0,600040 ,1,1,565875 ,2,15005,90 ,1,0,600040 ,1,1,596025 ,2,15005,90 ,1,0,572710 ,2,15005,90 ,1,0,596085 ,2,15005,90 ,1,0,599970 ,1,1,596095 ,2,15005,90 ,1,0,599970 ,1,1,568160 ,2,15005,90 ,1,0,595690 ,2,15005,90 ,1,0,609320 ,2,15005,90 ,1,0,568040 ,2,15005,90 ,1,0,567470 ,1,1,560975 ,2,15005,90 ,1,0,567750 ,1,1,567745 ,2,15005,90 ,1,0,609630 ,2,15005,90 ,1,0,596165 ,2,15005,90 ,1,0,563770 ,2,15005,90 ,1,0,596195 ,2,15005,90 ,1,0,606780 ,1,1,606770 ,1,2,606780 ,2,15005,90 ,1,0,599970 ,1,1,599970 ,2,15005,90 ,1,0,599970 ,1,1,566855 ,2,15005,90 ,1,0,596230 ,2,15005,90 ,1,0,606900 ,1,1,606770 ,1,2,606900 ,2,15005,90 ,1,0,606580 ,1,1,606545 ,1,2,606580 ,2,15005,90 ,1,0,596270 ,2,15005,90 ,1,0,577895 ,2,15005,90 ,1,0,577820 ,2,15005,90 ,1,0,607395 ,1,1,607385 ,1,2,607395 ,2,15005,90 ,1,0,596325 ,1,1,599970 ,2,15005,90 ,1,0,596325 ,2,15005,90 ,1,0,596330 ,2,15005,90 ,1,0,596355 ,2,15005,90 ,1,0,600040 ,1,1,599880 ,2,15005,90 ,1,0,599880 ,1,1,596395 ,2,15005,90 ,1,0,599880 ,1,1,596400 ,2,15005,90 ,1,0,596395 ,2,15005,90 ,1,0,566930 ,2,15005,90 ,1,0,599970 ,1,1,566715 ,2,15005,90 ,1,0,599970 ,1,1,595680 ,2,15005,90 ,1,0,596410 ,2,15005,90 ,1,0,565045 ,2,15005,90 ,1,0,596415 ,2,15005,90 ,1,0,577350 ,2,15005,90 ,1,0,608060 ,1,1,608140 ,2,15005,90 ,1,0,566615 ,2,15005,90 ,1,0,596425 ,1,1,566615 ,2,15005,90 ,1,0,566265 ,2,15005,90 ,1,0,596460 ,2,15005,90 ,1,0,599970 ,1,1,596465 ,2,15005,90 ,1,0,596475 ,2,15005,90 ,1,0,596485 ,2,15005,90 ,1,0,584575 ,2,15005,90 ,1,0,561155 ,1,1,608115 ,2,15005,90 ,1,0,599875 ,1,1,600065 ,2,15005,90 ,1,0,100 ,1,1,600065 ,2,15005,90 ,1,0,100 ,1,1,600065 ,1,2,558090 ,2,15005,90 ,1,0,606700 ,1,1,606160 ,1,2,606700 ,2,15005,90 ,1,0,596605 ,2,15005,90 ,1,0,599885 ,1,1,600065 ,2,15005,90 ,1,0,596625 ,2,15005,90 ,1,0,561795 ,2,15005,90 ,1,0,562180 ,1,1,599880 ,2,15005,90 ,1,0,559725 ,2,15005,90 ,1,0,600035 ,2,15005,90 ,1,0,599880 ,1,1,561340 ,2,15005,90 ,1,0,612130 ,2,15005,90 ,1,0,599880 ,1,1,561430 ,1,2,562475 ,2,15005,90 ,1,0,596685 ,2,15005,90 ,1,0,571775 ,2,15005,90 ,1,0,596715 ,2,15005,90 ,1,0,596720 ,2,15005,90 ,1,0,561560 ,2,15005,90 ,1,0,599970 ,1,1,567750 ,1,2,561430 ,2,15005,90 ,1,0,560980 ,2,15005,90 ,1,0,608270 ,2,15005,90 ,1,0,581185 ,2,15005,90 ,1,0,110 ,1,1,600065 ,1,2,558090 ,2,15005,90 ,1,0,595515 ,2,15005,90 ,1,0,596730 ,2,15005,90 ,1,0,596865 ,2,15005,90 ,1,0,612140 ,2,15005,90 ,1,0,612155 ,2,15005,90 ,1,0,612155 ,2,15005,90 ,1,0,574355 ,1,1,597195 ,2,15005,90 ,1,0,612160 ,2,15005,90 ,1,0,612160 ,2,15005,90 ,1,0,574355 ,1,1,574355 ,2,15005,90 ,1,0,612195 ,1,1,612170 ,1,2,612165 ,2,15005,90 ,1,0,612210 ,1,1,612205 ,1,2,612200 ,2,15005,90 ,1,0,612220 ,1,1,612215 ,2,15005,90 ,1,0,612230 ,1,1,612225 ,2,15005,90 ,1,0,612255 ,2,15005,90 ,1,0,612260 ,2,15005,90 ,1,0,606630 ,2,15005,90 ,1,0,606935 ,1,1,606930 ,2,15005,90 ,1,0,606515 ,2,15005,90 ,1,0,611355 ,2,15005,90 ,1,0,606510 ,2,15005,90 ,1,0,608500 ,2,15005,90 ,1,0,599880 ,1,1,599880 ,2,15005,90 ,1,0,599885 ,1,1,599885 ,2,15005,90 ,1,0,599880 ,1,1,100 ,2,15005,90 ,1,0,599885 ,1,1,100 ,2,15005,90 ,1,0,599880 ,2,15005,90 ,1,0,599885 ,2,15005,90 ,1,0,599940 ,2,15005,90 ,1,0,599945 ,2,15005,90 ,1,0,599970 ,2,15005,90 ,1,0,599975 ,2,15007,1870 ,2,15008,615310 ,2,15009,544290 ,2,15010,615305 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543450 ,2,15010,615305 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543455 ,2,15010,613140 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543455 ,2,15010,615270 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543475 ,2,15010,613180 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,543475 ,2,15010,613215 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543485 ,2,15010,613210 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543510 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,613270 ,2,15009,543515 ,2,15010,613255 ,2,15011,45 ,2,15007,1870 ,2,15008,615240 ,2,15009,543515 ,2,15010,615235 ,2,15011,45 ,2,15007,1870 ,2,15008,615240 ,2,15009,543520 ,2,15010,613285 ,2,15011,45 ,2,15007,1870 ,2,15008,615230 ,2,15009,543520 ,2,15010,615225 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543565 ,2,15010,613315 ,2,15011,45 ,2,15007,1870 ,2,15008,615230 ,2,15009,543570 ,2,15010,613320 ,2,15011,45 ,2,15007,1870 ,2,15008,613405 ,2,15009,543570 ,2,15010,613400 ,2,15011,45 ,2,15007,1870 ,2,15008,613405 ,2,15009,543575 ,2,15010,613330 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543580 ,2,15010,613345 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543580 ,2,15010,613390 ,2,15011,45 ,2,15007,1870 ,2,15008,613515 ,2,15009,543565 ,2,15010,613475 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543625 ,2,15010,613425 ,2,15011,45 ,2,15007,280810 ,2,15008,613440 ,2,15009,45 ,2,15010,613435 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543650 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543565 ,2,15010,613530 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543565 ,2,15010,613535 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,543565 ,2,15010,615185 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,543655 ,2,15010,613550 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,543690 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,613595 ,2,15009,543695 ,2,15010,613585 ,2,15011,45 ,2,15007,1870 ,2,15008,613405 ,2,15009,543695 ,2,15010,613600 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,543710 ,2,15010,613605 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613610 ,2,15011,56915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,56935 ,2,15007,1870 ,2,15008,613635 ,2,15009,45 ,2,15010,613630 ,2,15011,45 ,2,15007,1870 ,2,15008,613985 ,2,15009,45 ,2,15010,613980 ,2,15011,45 ,2,15007,1870 ,2,15008,613965 ,2,15009,45 ,2,15010,613960 ,2,15011,45 ,2,15007,1870 ,2,15008,613660 ,2,15009,45 ,2,15010,613655 ,2,15011,45 ,2,15007,1870 ,2,15008,613660 ,2,15009,45 ,2,15010,613645 ,2,15011,45 ,2,15007,1870 ,2,15008,613670 ,2,15009,543715 ,2,15010,613665 ,2,15011,45 ,2,15007,1870 ,2,15008,613715 ,2,15009,543715 ,2,15010,613710 ,2,15011,45 ,2,15007,1870 ,2,15008,613715 ,2,15009,543720 ,2,15010,613695 ,2,15011,45 ,2,15007,1870 ,2,15008,613955 ,2,15009,543715 ,2,15010,613950 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,543715 ,2,15010,613920 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,543750 ,2,15010,613725 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,543755 ,2,15010,613730 ,2,15011,45 ,2,15007,1870 ,2,15008,613840 ,2,15009,543755 ,2,15010,613835 ,2,15011,45 ,2,15007,1870 ,2,15008,613820 ,2,15009,543760 ,2,15010,613815 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,543815 ,2,15010,613725 ,2,15011,45 ,2,15007,1870 ,2,15008,613870 ,2,15009,543820 ,2,15010,613845 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,543825 ,2,15010,613890 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,543855 ,2,15010,613915 ,2,15011,45 ,2,15007,1870 ,2,15008,614015 ,2,15009,45 ,2,15010,614010 ,2,15011,45 ,2,15007,1870 ,2,15008,614645 ,2,15009,45 ,2,15010,614640 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,543865 ,2,15010,614030 ,2,15011,45 ,2,15007,1870 ,2,15008,614040 ,2,15009,45 ,2,15010,614035 ,2,15011,45 ,2,15007,1870 ,2,15008,614085 ,2,15009,45 ,2,15010,614080 ,2,15011,45 ,2,15007,1870 ,2,15008,614075 ,2,15009,45 ,2,15010,614070 ,2,15011,45 ,2,15007,1870 ,2,15008,614105 ,2,15009,45 ,2,15010,614100 ,2,15011,45 ,2,15007,1870 ,2,15008,614095 ,2,15009,45 ,2,15010,614090 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557790 ,2,15010,614125 ,2,15011,45 ,2,15007,1870 ,2,15008,614135 ,2,15009,45 ,2,15010,614130 ,2,15011,45 ,2,15007,1870 ,2,15008,614145 ,2,15009,45 ,2,15010,614140 ,2,15011,45 ,2,15007,1870 ,2,15008,614160 ,2,15009,543900 ,2,15010,614150 ,2,15011,45 ,2,15007,281650 ,2,15008,614195 ,2,15009,543905 ,2,15010,614185 ,2,15011,45 ,2,15007,1870 ,2,15008,614205 ,2,15009,45 ,2,15010,614200 ,2,15011,45 ,2,15007,1870 ,2,15008,614220 ,2,15009,45 ,2,15010,614215 ,2,15011,45 ,2,15007,281965 ,2,15008,614265 ,2,15009,45 ,2,15010,614260 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,557790 ,2,15010,614270 ,2,15011,45 ,2,15007,1870 ,2,15008,614335 ,2,15009,45 ,2,15010,614330 ,2,15011,45 ,2,15007,1870 ,2,15008,614300 ,2,15009,557790 ,2,15010,614295 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543915 ,2,15010,614290 ,2,15011,45 ,2,15007,1870 ,2,15008,614345 ,2,15009,557790 ,2,15010,614340 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557760 ,2,15010,614350 ,2,15011,45 ,2,15007,1870 ,2,15008,614360 ,2,15009,45 ,2,15010,614355 ,2,15011,45 ,2,15007,1870 ,2,15008,614375 ,2,15009,45 ,2,15010,614365 ,2,15011,45 ,2,15007,1870 ,2,15008,614385 ,2,15009,45 ,2,15010,614380 ,2,15011,45 ,2,15007,282235 ,2,15008,614405 ,2,15009,45 ,2,15010,614400 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,557760 ,2,15010,614395 ,2,15011,45 ,2,15007,1870 ,2,15008,614435 ,2,15009,45 ,2,15010,614410 ,2,15011,45 ,2,15007,282245 ,2,15008,614445 ,2,15009,45 ,2,15010,614440 ,2,15011,45 ,2,15007,1870 ,2,15008,614465 ,2,15009,45 ,2,15010,614450 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543920 ,2,15010,614470 ,2,15011,45 ,2,15007,1870 ,2,15008,614480 ,2,15009,543920 ,2,15010,614475 ,2,15011,45 ,2,15007,1870 ,2,15008,614575 ,2,15009,543920 ,2,15010,614570 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543925 ,2,15010,614530 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614545 ,2,15011,58855 ,2,15007,1870 ,2,15008,615275 ,2,15009,543965 ,2,15010,614560 ,2,15011,45 ,2,15007,1870 ,2,15008,614265 ,2,15009,45 ,2,15010,614580 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543970 ,2,15010,614585 ,2,15011,45 ,2,15007,1870 ,2,15008,614600 ,2,15009,45 ,2,15010,614595 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614605 ,2,15011,59450 ,2,15007,1870 ,2,15008,614635 ,2,15009,45 ,2,15010,614630 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543980 ,2,15010,614665 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544000 ,2,15010,614675 ,2,15011,45 ,2,15007,1870 ,2,15008,614700 ,2,15009,45 ,2,15010,614695 ,2,15011,45 ,2,15007,1870 ,2,15008,614725 ,2,15009,45 ,2,15010,614720 ,2,15011,45 ,2,15007,1870 ,2,15008,614735 ,2,15009,45 ,2,15010,614730 ,2,15011,45 ,2,15007,1870 ,2,15008,614765 ,2,15009,45 ,2,15010,614760 ,2,15011,45 ,2,15007,1870 ,2,15008,614775 ,2,15009,45 ,2,15010,614770 ,2,15011,45 ,2,15007,1870 ,2,15008,614790 ,2,15009,45 ,2,15010,614785 ,2,15011,45 ,2,15007,1870 ,2,15008,614800 ,2,15009,45 ,2,15010,614795 ,2,15011,45 ,2,15007,1870 ,2,15008,614810 ,2,15009,45 ,2,15010,614805 ,2,15011,45 ,2,15007,1870 ,2,15008,614835 ,2,15009,544005 ,2,15010,614815 ,2,15011,45 ,2,15007,1870 ,2,15008,614875 ,2,15009,544005 ,2,15010,614870 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544020 ,2,15010,614850 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544005 ,2,15010,614880 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544035 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544005 ,2,15010,614895 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544050 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,614940 ,2,15009,544055 ,2,15010,614900 ,2,15011,45 ,2,15007,1870 ,2,15008,615000 ,2,15009,544055 ,2,15010,614980 ,2,15011,45 ,2,15007,1870 ,2,15008,615000 ,2,15009,544060 ,2,15010,614945 ,2,15011,45 ,2,15007,1870 ,2,15008,614965 ,2,15009,544060 ,2,15010,614955 ,2,15011,45 ,2,15007,1870 ,2,15008,614975 ,2,15009,45 ,2,15010,614970 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544095 ,2,15010,615015 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544055 ,2,15010,615025 ,2,15011,45 ,2,15007,1870 ,2,15008,615040 ,2,15009,544100 ,2,15010,615030 ,2,15011,45 ,2,15007,1870 ,2,15008,615090 ,2,15009,544110 ,2,15010,615080 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544140 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,614965 ,2,15009,544110 ,2,15010,615100 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544110 ,2,15010,615105 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544150 ,2,15010,615110 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544005 ,2,15010,615145 ,2,15011,45 ,2,15007,1870 ,2,15008,614965 ,2,15009,544150 ,2,15010,615150 ,2,15011,45 ,2,15007,1870 ,2,15008,615175 ,2,15009,544175 ,2,15010,615170 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544175 ,2,15010,615160 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544185 ,2,15010,615180 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544225 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544245 ,2,15010,615245 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544255 ,2,15010,615280 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,543455 ,2,15010,615285 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544285 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615345 ,2,15009,544295 ,2,15010,615335 ,2,15011,45 ,2,15007,1870 ,2,15008,613405 ,2,15009,544295 ,2,15010,615350 ,2,15011,45 ,2,15007,1870 ,2,15008,615345 ,2,15009,544305 ,2,15010,615370 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,544330 ,2,15010,615390 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544335 ,2,15010,615395 ,2,15011,45 ,2,15007,1870 ,2,15008,615420 ,2,15009,544340 ,2,15010,615415 ,2,15011,45 ,2,15007,1870 ,2,15008,616165 ,2,15009,544340 ,2,15010,616160 ,2,15011,45 ,2,15007,1870 ,2,15008,616155 ,2,15009,544345 ,2,15010,616150 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544350 ,2,15010,615455 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544360 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,616155 ,2,15009,544350 ,2,15010,615465 ,2,15011,45 ,2,15007,1870 ,2,15008,613515 ,2,15009,544350 ,2,15010,615470 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544405 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544350 ,2,15010,615475 ,2,15011,45 ,2,15007,1870 ,2,15008,615485 ,2,15009,45 ,2,15010,615480 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544340 ,2,15010,615490 ,2,15011,45 ,2,15007,284025 ,2,15008,615995 ,2,15009,45 ,2,15010,615990 ,2,15011,45 ,2,15007,1870 ,2,15008,615515 ,2,15009,45 ,2,15010,615510 ,2,15011,45 ,2,15007,1870 ,2,15008,615985 ,2,15009,45 ,2,15010,615980 ,2,15011,45 ,2,15007,1870 ,2,15008,615950 ,2,15009,45 ,2,15010,615945 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544415 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,615925 ,2,15009,45 ,2,15010,615920 ,2,15011,45 ,2,15007,1870 ,2,15008,615525 ,2,15009,45 ,2,15010,615520 ,2,15011,45 ,2,15007,1870 ,2,15008,615915 ,2,15009,45 ,2,15010,615900 ,2,15011,45 ,2,15007,1870 ,2,15008,615545 ,2,15009,45 ,2,15010,615540 ,2,15011,45 ,2,15007,1870 ,2,15008,615555 ,2,15009,45 ,2,15010,615550 ,2,15011,45 ,2,15007,1870 ,2,15008,615675 ,2,15009,45 ,2,15010,615670 ,2,15011,45 ,2,15007,1870 ,2,15008,615645 ,2,15009,45 ,2,15010,615615 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557770 ,2,15010,615580 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544425 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,615590 ,2,15009,45 ,2,15010,615585 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544435 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,557770 ,2,15010,615595 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,557770 ,2,15010,615600 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,557770 ,2,15010,615605 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544450 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615665 ,2,15009,544465 ,2,15010,615660 ,2,15011,45 ,2,15007,1870 ,2,15008,615705 ,2,15009,45 ,2,15010,615700 ,2,15011,45 ,2,15007,1870 ,2,15008,615695 ,2,15009,45 ,2,15010,615680 ,2,15011,45 ,2,15007,1870 ,2,15008,615715 ,2,15009,45 ,2,15010,615710 ,2,15011,45 ,2,15007,1870 ,2,15008,615770 ,2,15009,45 ,2,15010,615765 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,544495 ,2,15010,615755 ,2,15011,45 ,2,15007,1870 ,2,15008,615750 ,2,15009,45 ,2,15010,615730 ,2,15011,45 ,2,15007,1870 ,2,15008,615780 ,2,15009,45 ,2,15010,615775 ,2,15011,45 ,2,15007,1870 ,2,15008,615800 ,2,15009,45 ,2,15010,615795 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,544500 ,2,15010,615785 ,2,15011,45 ,2,15007,1870 ,2,15008,615810 ,2,15009,45 ,2,15010,615805 ,2,15011,45 ,2,15007,1870 ,2,15008,615830 ,2,15009,45 ,2,15010,615825 ,2,15011,45 ,2,15007,1870 ,2,15008,615865 ,2,15009,45 ,2,15010,615840 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,544505 ,2,15010,615835 ,2,15011,45 ,2,15007,1870 ,2,15008,615875 ,2,15009,45 ,2,15010,615870 ,2,15011,45 ,2,15007,1870 ,2,15008,615885 ,2,15009,45 ,2,15010,615880 ,2,15011,45 ,2,15007,1870 ,2,15008,615895 ,2,15009,45 ,2,15010,615890 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544520 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,557790 ,2,15010,615930 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,557790 ,2,15010,615935 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544535 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,544570 ,2,15010,615975 ,2,15011,45 ,2,15007,1870 ,2,15008,615995 ,2,15009,45 ,2,15010,615990 ,2,15011,45 ,2,15007,1870 ,2,15008,616005 ,2,15009,557785 ,2,15010,616000 ,2,15011,45 ,2,15007,1870 ,2,15008,616030 ,2,15009,557785 ,2,15010,616025 ,2,15011,45 ,2,15007,1870 ,2,15008,616030 ,2,15009,557785 ,2,15010,616025 ,2,15011,45 ,2,15007,1870 ,2,15008,615420 ,2,15009,557785 ,2,15010,616010 ,2,15011,45 ,2,15007,1870 ,2,15008,616050 ,2,15009,544575 ,2,15010,616035 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544575 ,2,15010,616055 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,544575 ,2,15010,616060 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544595 ,2,15010,616090 ,2,15011,45 ,2,15007,1870 ,2,15008,616100 ,2,15009,45 ,2,15010,616095 ,2,15011,45 ,2,15007,1870 ,2,15008,616115 ,2,15009,45 ,2,15010,616105 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,544350 ,2,15010,616120 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,544350 ,2,15010,616125 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544610 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615545 ,2,15009,45 ,2,15010,615540 ,2,15011,45 ,2,15007,1870 ,2,15008,616180 ,2,15009,45 ,2,15010,616175 ,2,15011,45 ,2,15007,1870 ,2,15008,616205 ,2,15009,45 ,2,15010,616185 ,2,15011,45 ,2,15007,1870 ,2,15008,616215 ,2,15009,45 ,2,15010,616210 ,2,15011,45 ,2,15007,1870 ,2,15008,616225 ,2,15009,45 ,2,15010,616220 ,2,15011,45 ,2,15007,1870 ,2,15008,616470 ,2,15009,45 ,2,15010,616465 ,2,15011,45 ,2,15007,1870 ,2,15008,616470 ,2,15009,45 ,2,15010,616465 ,2,15011,45 ,2,15007,1870 ,2,15008,613965 ,2,15009,45 ,2,15010,613960 ,2,15011,45 ,2,15007,1870 ,2,15008,616460 ,2,15009,45 ,2,15010,616435 ,2,15011,45 ,2,15007,1870 ,2,15008,616460 ,2,15009,45 ,2,15010,616435 ,2,15011,45 ,2,15007,1870 ,2,15008,616285 ,2,15009,544630 ,2,15010,616235 ,2,15011,45 ,2,15007,1870 ,2,15008,616275 ,2,15009,45 ,2,15010,616240 ,2,15011,45 ,2,15007,284490 ,2,15008,616295 ,2,15009,45 ,2,15010,616290 ,2,15011,45 ,2,15007,1870 ,2,15008,616305 ,2,15009,45 ,2,15010,616300 ,2,15011,45 ,2,15007,1870 ,2,15008,616345 ,2,15009,45 ,2,15010,616310 ,2,15011,45 ,2,15007,1870 ,2,15008,616305 ,2,15009,45 ,2,15010,616300 ,2,15011,45 ,2,15007,1870 ,2,15008,616355 ,2,15009,45 ,2,15010,616350 ,2,15011,45 ,2,15007,1870 ,2,15008,616370 ,2,15009,544640 ,2,15010,616360 ,2,15011,45 ,2,15007,1870 ,2,15008,616295 ,2,15009,45 ,2,15010,616290 ,2,15011,45 ,2,15007,1870 ,2,15008,616275 ,2,15009,45 ,2,15010,616240 ,2,15011,45 ,2,15007,1870 ,2,15008,616380 ,2,15009,45 ,2,15010,616375 ,2,15011,45 ,2,15007,1870 ,2,15008,616405 ,2,15009,45 ,2,15010,616400 ,2,15011,45 ,2,15007,1870 ,2,15008,616415 ,2,15009,45 ,2,15010,616410 ,2,15011,45 ,2,15007,1870 ,2,15008,616425 ,2,15009,544650 ,2,15010,616420 ,2,15011,45 ,2,15007,1870 ,2,15008,616345 ,2,15009,45 ,2,15010,616310 ,2,15011,45 ,2,15007,1870 ,2,15008,616285 ,2,15009,544650 ,2,15010,616430 ,2,15011,45 ,2,15007,1870 ,2,15008,616485 ,2,15009,544655 ,2,15010,616475 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544690 ,2,15010,614560 ,2,15011,45 ,2,15007,1870 ,2,15008,616495 ,2,15009,544655 ,2,15010,616490 ,2,15011,45 ,2,15007,1870 ,2,15008,616525 ,2,15009,45 ,2,15010,616500 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,544695 ,2,15010,616530 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616540 ,2,15011,64560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620810 ,2,15011,64645 ,2,15007,292345 ,2,15008,620780 ,2,15009,45 ,2,15010,620775 ,2,15011,45 ,2,15007,1870 ,2,15008,620780 ,2,15009,45 ,2,15010,620775 ,2,15011,45 ,2,15007,1870 ,2,15008,616560 ,2,15009,45 ,2,15010,616555 ,2,15011,45 ,2,15007,1870 ,2,15008,616560 ,2,15009,45 ,2,15010,616555 ,2,15011,45 ,2,15007,1870 ,2,15008,616615 ,2,15009,544710 ,2,15010,616600 ,2,15011,45 ,2,15007,1870 ,2,15008,617215 ,2,15009,545050 ,2,15010,617210 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,545050 ,2,15010,616955 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544720 ,2,15010,616630 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544740 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,616720 ,2,15009,544745 ,2,15010,616665 ,2,15011,45 ,2,15007,1870 ,2,15008,616795 ,2,15009,544800 ,2,15010,616790 ,2,15011,45 ,2,15007,1870 ,2,15008,616785 ,2,15009,544750 ,2,15010,616760 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544760 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,616785 ,2,15009,544765 ,2,15010,616745 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544765 ,2,15010,616755 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544810 ,2,15010,616800 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544820 ,2,15010,616805 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544830 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,616850 ,2,15009,544850 ,2,15010,616810 ,2,15011,45 ,2,15007,1870 ,2,15008,616950 ,2,15009,544850 ,2,15010,616945 ,2,15011,45 ,2,15007,1870 ,2,15008,616950 ,2,15009,544855 ,2,15010,616855 ,2,15011,45 ,2,15007,1870 ,2,15008,616915 ,2,15009,544855 ,2,15010,616910 ,2,15011,45 ,2,15007,1870 ,2,15008,616915 ,2,15009,544860 ,2,15010,616870 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544860 ,2,15010,616880 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544870 ,2,15010,616885 ,2,15011,45 ,2,15007,1870 ,2,15008,616940 ,2,15009,544855 ,2,15010,616925 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544885 ,2,15010,616920 ,2,15011,45 ,2,15007,1870 ,2,15008,617005 ,2,15009,544905 ,2,15010,616985 ,2,15011,45 ,2,15007,1870 ,2,15008,617200 ,2,15009,544905 ,2,15010,617195 ,2,15011,45 ,2,15007,1870 ,2,15008,617200 ,2,15009,544910 ,2,15010,617010 ,2,15011,45 ,2,15007,1870 ,2,15008,617190 ,2,15009,544910 ,2,15010,617185 ,2,15011,45 ,2,15007,1870 ,2,15008,617190 ,2,15009,544915 ,2,15010,617020 ,2,15011,45 ,2,15007,1870 ,2,15008,617180 ,2,15009,544915 ,2,15010,617160 ,2,15011,45 ,2,15007,1870 ,2,15008,617180 ,2,15009,544935 ,2,15010,617050 ,2,15011,45 ,2,15007,1870 ,2,15008,617120 ,2,15009,544935 ,2,15010,617075 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,544945 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,617120 ,2,15009,544950 ,2,15010,617060 ,2,15011,45 ,2,15007,1870 ,2,15008,616785 ,2,15009,544950 ,2,15010,617070 ,2,15011,45 ,2,15007,1870 ,2,15008,617135 ,2,15009,544935 ,2,15010,617130 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544995 ,2,15010,617145 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545000 ,2,15010,617150 ,2,15011,45 ,2,15007,1870 ,2,15008,617215 ,2,15009,544905 ,2,15010,617205 ,2,15011,45 ,2,15007,1870 ,2,15008,617255 ,2,15009,45 ,2,15010,617250 ,2,15011,45 ,2,15007,285100 ,2,15008,617280 ,2,15009,45 ,2,15010,617265 ,2,15011,45 ,2,15007,1870 ,2,15008,617280 ,2,15009,45 ,2,15010,617265 ,2,15011,45 ,2,15007,1870 ,2,15008,617290 ,2,15009,45 ,2,15010,617285 ,2,15011,45 ,2,15007,1870 ,2,15008,617345 ,2,15009,545140 ,2,15010,617340 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,545060 ,2,15010,617310 ,2,15011,45 ,2,15007,1870 ,2,15008,617345 ,2,15009,545080 ,2,15010,617340 ,2,15011,45 ,2,15007,1870 ,2,15008,617320 ,2,15009,545085 ,2,15010,617315 ,2,15011,45 ,2,15007,1870 ,2,15008,613405 ,2,15009,545085 ,2,15010,617325 ,2,15011,45 ,2,15007,1870 ,2,15008,617345 ,2,15009,545115 ,2,15010,617330 ,2,15011,45 ,2,15007,1870 ,2,15008,617345 ,2,15009,545125 ,2,15010,617335 ,2,15011,45 ,2,15007,1870 ,2,15008,617355 ,2,15009,545145 ,2,15010,617350 ,2,15011,45 ,2,15007,1870 ,2,15008,617430 ,2,15009,545145 ,2,15010,617425 ,2,15011,45 ,2,15007,1870 ,2,15008,617430 ,2,15009,545150 ,2,15010,617360 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,545150 ,2,15010,617370 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,545150 ,2,15010,617375 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545150 ,2,15010,617415 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545180 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,545150 ,2,15010,617420 ,2,15011,45 ,2,15007,1870 ,2,15008,617345 ,2,15009,545145 ,2,15010,617435 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,545145 ,2,15010,617440 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,545145 ,2,15010,617445 ,2,15011,45 ,2,15007,1870 ,2,15008,617490 ,2,15009,545195 ,2,15010,617480 ,2,15011,45 ,2,15007,1870 ,2,15008,617510 ,2,15009,545205 ,2,15010,617495 ,2,15011,45 ,2,15007,1870 ,2,15008,617680 ,2,15009,545205 ,2,15010,617675 ,2,15011,45 ,2,15007,1870 ,2,15008,617680 ,2,15009,545210 ,2,15010,617515 ,2,15011,45 ,2,15007,1870 ,2,15008,617670 ,2,15009,545210 ,2,15010,617665 ,2,15011,45 ,2,15007,1870 ,2,15008,617670 ,2,15009,545245 ,2,15010,617540 ,2,15011,45 ,2,15007,1870 ,2,15008,617620 ,2,15009,545245 ,2,15010,617615 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,545255 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,617620 ,2,15009,545260 ,2,15010,617550 ,2,15011,45 ,2,15007,1870 ,2,15008,616785 ,2,15009,545260 ,2,15010,617560 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545270 ,2,15010,617565 ,2,15011,45 ,2,15007,1870 ,2,15008,617605 ,2,15009,545260 ,2,15010,617600 ,2,15011,45 ,2,15007,1870 ,2,15008,617605 ,2,15009,545275 ,2,15010,617590 ,2,15011,45 ,2,15007,1870 ,2,15008,617135 ,2,15009,545245 ,2,15010,617625 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545305 ,2,15010,617630 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545310 ,2,15010,617660 ,2,15011,45 ,2,15007,1870 ,2,15008,617690 ,2,15009,545325 ,2,15010,617685 ,2,15011,45 ,2,15007,1870 ,2,15008,617740 ,2,15009,545325 ,2,15010,617735 ,2,15011,45 ,2,15007,1870 ,2,15008,613715 ,2,15009,545325 ,2,15010,617730 ,2,15011,45 ,2,15007,1870 ,2,15008,617755 ,2,15009,545325 ,2,15010,617750 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,545325 ,2,15010,617745 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,66845 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,66855 ,2,15007,1870 ,2,15008,617800 ,2,15009,45 ,2,15010,617795 ,2,15011,45 ,2,15007,1870 ,2,15008,617800 ,2,15009,45 ,2,15010,617765 ,2,15011,45 ,2,15007,1870 ,2,15008,618630 ,2,15009,45 ,2,15010,618625 ,2,15011,45 ,2,15007,1870 ,2,15008,617810 ,2,15009,45 ,2,15010,617805 ,2,15011,45 ,2,15007,1870 ,2,15008,618620 ,2,15009,545755 ,2,15010,618615 ,2,15011,45 ,2,15007,1870 ,2,15008,617840 ,2,15009,45 ,2,15010,617835 ,2,15011,45 ,2,15007,1870 ,2,15008,617885 ,2,15009,45 ,2,15010,617880 ,2,15011,45 ,2,15007,1870 ,2,15008,617885 ,2,15009,45 ,2,15010,617875 ,2,15011,45 ,2,15007,1870 ,2,15008,617810 ,2,15009,45 ,2,15010,617890 ,2,15011,45 ,2,15007,1870 ,2,15008,617900 ,2,15009,45 ,2,15010,617895 ,2,15011,45 ,2,15007,1870 ,2,15008,617920 ,2,15009,545335 ,2,15010,617905 ,2,15011,45 ,2,15007,1870 ,2,15008,618040 ,2,15009,545335 ,2,15010,618035 ,2,15011,45 ,2,15007,1870 ,2,15008,618040 ,2,15009,545355 ,2,15010,617935 ,2,15011,45 ,2,15007,1870 ,2,15008,616795 ,2,15009,545355 ,2,15010,617945 ,2,15011,45 ,2,15007,1870 ,2,15008,617990 ,2,15009,545355 ,2,15010,617985 ,2,15011,45 ,2,15007,1870 ,2,15008,617990 ,2,15009,545365 ,2,15010,617950 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,545365 ,2,15010,617980 ,2,15011,45 ,2,15007,285890 ,2,15008,618005 ,2,15009,545375 ,2,15010,617995 ,2,15011,45 ,2,15007,1870 ,2,15008,618005 ,2,15009,545375 ,2,15010,618010 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545385 ,2,15010,618015 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,545390 ,2,15010,618030 ,2,15011,45 ,2,15007,1870 ,2,15008,618055 ,2,15009,545425 ,2,15010,618050 ,2,15011,45 ,2,15007,1870 ,2,15008,618040 ,2,15009,545425 ,2,15010,618060 ,2,15011,45 ,2,15007,1870 ,2,15008,617990 ,2,15009,45 ,2,15010,618065 ,2,15011,45 ,2,15007,1870 ,2,15008,618620 ,2,15009,545440 ,2,15010,618110 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618115 ,2,15011,67580 ,2,15007,1870 ,2,15008,618620 ,2,15009,545445 ,2,15010,618120 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618175 ,2,15011,67630 ,2,15007,1870 ,2,15008,618160 ,2,15009,45 ,2,15010,618135 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,545450 ,2,15010,618125 ,2,15011,45 ,2,15007,1870 ,2,15008,618170 ,2,15009,45 ,2,15010,618165 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618210 ,2,15011,68010 ,2,15007,1870 ,2,15008,618620 ,2,15009,545485 ,2,15010,618215 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618225 ,2,15011,68060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618240 ,2,15011,68090 ,2,15007,1870 ,2,15008,616980 ,2,15009,545495 ,2,15010,618245 ,2,15011,45 ,2,15007,1870 ,2,15008,618620 ,2,15009,545505 ,2,15010,618250 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618285 ,2,15011,68140 ,2,15007,1870 ,2,15008,618280 ,2,15009,45 ,2,15010,618275 ,2,15011,45 ,2,15007,1870 ,2,15008,618280 ,2,15009,45 ,2,15010,618270 ,2,15011,45 ,2,15007,1870 ,2,15008,618620 ,2,15009,545515 ,2,15010,618295 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618360 ,2,15011,68210 ,2,15007,1870 ,2,15008,618355 ,2,15009,45 ,2,15010,618350 ,2,15011,45 ,2,15007,1870 ,2,15008,618355 ,2,15009,45 ,2,15010,618305 ,2,15011,45 ,2,15007,1870 ,2,15008,618345 ,2,15009,45 ,2,15010,618340 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618370 ,2,15011,68275 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618415 ,2,15011,68365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618430 ,2,15011,68385 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618480 ,2,15011,68465 ,2,15007,1870 ,2,15008,618620 ,2,15009,545580 ,2,15010,618485 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618490 ,2,15011,68485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618500 ,2,15011,68520 ,2,15007,1870 ,2,15008,613660 ,2,15009,45 ,2,15010,613645 ,2,15011,45 ,2,15007,1870 ,2,15008,617885 ,2,15009,45 ,2,15010,617875 ,2,15011,45 ,2,15007,1870 ,2,15008,617810 ,2,15009,45 ,2,15010,617805 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618115 ,2,15011,68555 ,2,15007,1870 ,2,15008,618540 ,2,15009,45 ,2,15010,618535 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618210 ,2,15011,68680 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618240 ,2,15011,68735 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618370 ,2,15011,68775 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618415 ,2,15011,68865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618430 ,2,15011,68885 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618480 ,2,15011,68970 ,2,15007,286270 ,2,15008,616980 ,2,15009,545495 ,2,15010,618300 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618565 ,2,15011,69000 ,2,15007,1870 ,2,15008,616980 ,2,15009,545700 ,2,15010,618560 ,2,15011,45 ,2,15007,1870 ,2,15008,618355 ,2,15009,45 ,2,15010,618305 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618175 ,2,15011,69020 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,69030 ,2,15007,1870 ,2,15008,618160 ,2,15009,45 ,2,15010,618135 ,2,15011,45 ,2,15007,1870 ,2,15008,618170 ,2,15009,45 ,2,15010,618165 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618220 ,2,15011,69075 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618225 ,2,15011,69085 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618220 ,2,15011,69095 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618490 ,2,15011,69115 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618610 ,2,15011,69135 ,2,15007,1870 ,2,15008,618280 ,2,15009,45 ,2,15010,618270 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618500 ,2,15011,69145 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618640 ,2,15011,69330 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618685 ,2,15011,69445 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618740 ,2,15011,69605 ,2,15007,1870 ,2,15008,618770 ,2,15009,545785 ,2,15010,618750 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545785 ,2,15010,618775 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545800 ,2,15010,618800 ,2,15011,45 ,2,15007,1870 ,2,15008,618770 ,2,15009,45 ,2,15010,618805 ,2,15011,45 ,2,15007,1870 ,2,15008,618885 ,2,15009,45 ,2,15010,618880 ,2,15011,45 ,2,15007,1870 ,2,15008,618885 ,2,15009,545805 ,2,15010,618810 ,2,15011,45 ,2,15007,1870 ,2,15008,618830 ,2,15009,45 ,2,15010,618825 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,545820 ,2,15010,618835 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618865 ,2,15011,70080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,70125 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618875 ,2,15011,70145 ,2,15007,1870 ,2,15008,618780 ,2,15009,545855 ,2,15010,618915 ,2,15011,45 ,2,15007,1870 ,2,15008,618925 ,2,15009,45 ,2,15010,618920 ,2,15011,45 ,2,15007,1870 ,2,15008,618935 ,2,15009,45 ,2,15010,618930 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,45 ,2,15010,618940 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618970 ,2,15011,70335 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619000 ,2,15011,70415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619045 ,2,15011,70465 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619050 ,2,15011,70530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619060 ,2,15011,70630 ,2,15007,1870 ,2,15008,619095 ,2,15009,545880 ,2,15010,619085 ,2,15011,45 ,2,15007,1870 ,2,15008,619170 ,2,15009,545880 ,2,15010,619165 ,2,15011,45 ,2,15007,1870 ,2,15008,619170 ,2,15009,545900 ,2,15010,619100 ,2,15011,45 ,2,15007,1870 ,2,15008,619135 ,2,15009,545910 ,2,15010,619110 ,2,15011,45 ,2,15007,1870 ,2,15008,619170 ,2,15009,545910 ,2,15010,619140 ,2,15011,45 ,2,15007,1870 ,2,15008,619155 ,2,15009,545920 ,2,15010,619145 ,2,15011,45 ,2,15007,1870 ,2,15008,619135 ,2,15009,545920 ,2,15010,619160 ,2,15011,45 ,2,15007,1870 ,2,15008,618770 ,2,15009,545880 ,2,15010,619200 ,2,15011,45 ,2,15007,287460 ,2,15008,618780 ,2,15009,545930 ,2,15010,619210 ,2,15011,45 ,2,15007,287540 ,2,15008,617490 ,2,15009,545935 ,2,15010,619215 ,2,15011,45 ,2,15007,1870 ,2,15008,617255 ,2,15009,45 ,2,15010,617250 ,2,15011,45 ,2,15007,1870 ,2,15008,619230 ,2,15009,45 ,2,15010,619225 ,2,15011,45 ,2,15007,1870 ,2,15008,619240 ,2,15009,45 ,2,15010,619235 ,2,15011,45 ,2,15007,287635 ,2,15008,619240 ,2,15009,45 ,2,15010,619235 ,2,15011,45 ,2,15007,1870 ,2,15008,619280 ,2,15009,45 ,2,15010,619275 ,2,15011,45 ,2,15007,1870 ,2,15008,619280 ,2,15009,45 ,2,15010,619275 ,2,15011,45 ,2,15007,1870 ,2,15008,619230 ,2,15009,45 ,2,15010,619225 ,2,15011,45 ,2,15007,1870 ,2,15008,615810 ,2,15009,45 ,2,15010,615805 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620810 ,2,15011,71425 ,2,15007,287940 ,2,15008,615895 ,2,15009,45 ,2,15010,615890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557755 ,2,15010,614350 ,2,15011,45 ,2,15007,1870 ,2,15008,619325 ,2,15009,45 ,2,15010,619320 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545975 ,2,15010,619340 ,2,15011,45 ,2,15007,1870 ,2,15008,619350 ,2,15009,45 ,2,15010,619345 ,2,15011,45 ,2,15007,288240 ,2,15008,619365 ,2,15009,45 ,2,15010,619355 ,2,15011,45 ,2,15007,1870 ,2,15008,619365 ,2,15009,45 ,2,15010,619355 ,2,15011,45 ,2,15007,1870 ,2,15008,619375 ,2,15009,45 ,2,15010,619370 ,2,15011,45 ,2,15007,1870 ,2,15008,619375 ,2,15009,45 ,2,15010,619370 ,2,15011,45 ,2,15007,288800 ,2,15008,619455 ,2,15009,45 ,2,15010,619450 ,2,15011,45 ,2,15007,1870 ,2,15008,619455 ,2,15009,45 ,2,15010,619450 ,2,15011,45 ,2,15007,1870 ,2,15008,619440 ,2,15009,45 ,2,15010,619400 ,2,15011,45 ,2,15007,288765 ,2,15008,619440 ,2,15009,45 ,2,15010,619400 ,2,15011,45 ,2,15007,1870 ,2,15008,619350 ,2,15009,45 ,2,15010,619345 ,2,15011,45 ,2,15007,1870 ,2,15008,619465 ,2,15009,45 ,2,15010,619460 ,2,15011,45 ,2,15007,1870 ,2,15008,619475 ,2,15009,45 ,2,15010,619470 ,2,15011,45 ,2,15007,1870 ,2,15008,619465 ,2,15009,45 ,2,15010,619460 ,2,15011,45 ,2,15007,1870 ,2,15008,619490 ,2,15009,45 ,2,15010,619485 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557785 ,2,15010,614125 ,2,15011,45 ,2,15007,289030 ,2,15008,619510 ,2,15009,45 ,2,15010,619500 ,2,15011,45 ,2,15007,1870 ,2,15008,619520 ,2,15009,45 ,2,15010,619515 ,2,15011,45 ,2,15007,1870 ,2,15008,619565 ,2,15009,45 ,2,15010,619560 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545990 ,2,15010,619585 ,2,15011,45 ,2,15007,289490 ,2,15008,619650 ,2,15009,45 ,2,15010,619645 ,2,15011,45 ,2,15007,1870 ,2,15008,619650 ,2,15009,45 ,2,15010,619645 ,2,15011,45 ,2,15007,1870 ,2,15008,619595 ,2,15009,45 ,2,15010,619590 ,2,15011,45 ,2,15007,1870 ,2,15008,619595 ,2,15009,45 ,2,15010,619590 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619635 ,2,15011,73545 ,2,15007,1870 ,2,15008,619630 ,2,15009,45 ,2,15010,619625 ,2,15011,45 ,2,15007,1870 ,2,15008,619630 ,2,15009,45 ,2,15010,619625 ,2,15011,45 ,2,15007,1870 ,2,15008,619620 ,2,15009,45 ,2,15010,619615 ,2,15011,45 ,2,15007,1870 ,2,15008,619620 ,2,15009,45 ,2,15010,619615 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545995 ,2,15010,619640 ,2,15011,45 ,2,15007,1870 ,2,15008,619730 ,2,15009,45 ,2,15010,619715 ,2,15011,45 ,2,15007,1870 ,2,15008,619740 ,2,15009,45 ,2,15010,619735 ,2,15011,45 ,2,15007,1870 ,2,15008,619760 ,2,15009,45 ,2,15010,619745 ,2,15011,45 ,2,15007,1870 ,2,15008,619770 ,2,15009,45 ,2,15010,619765 ,2,15011,45 ,2,15007,1870 ,2,15008,619800 ,2,15009,45 ,2,15010,619775 ,2,15011,45 ,2,15007,1870 ,2,15008,619815 ,2,15009,45 ,2,15010,619810 ,2,15011,45 ,2,15007,1870 ,2,15008,619830 ,2,15009,45 ,2,15010,619825 ,2,15011,45 ,2,15007,1870 ,2,15008,619840 ,2,15009,45 ,2,15010,619835 ,2,15011,45 ,2,15007,1870 ,2,15008,619855 ,2,15009,45 ,2,15010,619850 ,2,15011,45 ,2,15007,1870 ,2,15008,619865 ,2,15009,45 ,2,15010,619860 ,2,15011,45 ,2,15007,1870 ,2,15008,619875 ,2,15009,45 ,2,15010,619870 ,2,15011,45 ,2,15007,1870 ,2,15008,619885 ,2,15009,45 ,2,15010,619880 ,2,15011,45 ,2,15007,289950 ,2,15008,619920 ,2,15009,45 ,2,15010,619915 ,2,15011,45 ,2,15007,1870 ,2,15008,619930 ,2,15009,45 ,2,15010,619925 ,2,15011,45 ,2,15007,1870 ,2,15008,619945 ,2,15009,45 ,2,15010,619940 ,2,15011,45 ,2,15007,1870 ,2,15008,619955 ,2,15009,45 ,2,15010,619950 ,2,15011,45 ,2,15007,1870 ,2,15008,619990 ,2,15009,45 ,2,15010,619985 ,2,15011,45 ,2,15007,1870 ,2,15008,620000 ,2,15009,45 ,2,15010,619995 ,2,15011,45 ,2,15007,1870 ,2,15008,620010 ,2,15009,45 ,2,15010,620005 ,2,15011,45 ,2,15007,1870 ,2,15008,620020 ,2,15009,45 ,2,15010,620015 ,2,15011,45 ,2,15007,1870 ,2,15008,620045 ,2,15009,45 ,2,15010,620040 ,2,15011,45 ,2,15007,1870 ,2,15008,620055 ,2,15009,45 ,2,15010,620050 ,2,15011,45 ,2,15007,1870 ,2,15008,620065 ,2,15009,45 ,2,15010,620060 ,2,15011,45 ,2,15007,1870 ,2,15008,620075 ,2,15009,45 ,2,15010,620070 ,2,15011,45 ,2,15007,1870 ,2,15008,620100 ,2,15009,45 ,2,15010,620095 ,2,15011,45 ,2,15007,1870 ,2,15008,620110 ,2,15009,45 ,2,15010,620105 ,2,15011,45 ,2,15007,1870 ,2,15008,620120 ,2,15009,45 ,2,15010,620115 ,2,15011,45 ,2,15007,1870 ,2,15008,620130 ,2,15009,45 ,2,15010,620125 ,2,15011,45 ,2,15007,1870 ,2,15008,620150 ,2,15009,45 ,2,15010,620145 ,2,15011,45 ,2,15007,1870 ,2,15008,620160 ,2,15009,45 ,2,15010,620155 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,546030 ,2,15010,620165 ,2,15011,45 ,2,15007,1870 ,2,15008,620175 ,2,15009,45 ,2,15010,620170 ,2,15011,45 ,2,15007,1870 ,2,15008,620210 ,2,15009,45 ,2,15010,620180 ,2,15011,45 ,2,15007,1870 ,2,15008,620220 ,2,15009,45 ,2,15010,620215 ,2,15011,45 ,2,15007,1870 ,2,15008,620230 ,2,15009,45 ,2,15010,620225 ,2,15011,45 ,2,15007,1870 ,2,15008,620240 ,2,15009,45 ,2,15010,620235 ,2,15011,45 ,2,15007,1870 ,2,15008,620130 ,2,15009,45 ,2,15010,620125 ,2,15011,45 ,2,15007,1870 ,2,15008,619760 ,2,15009,45 ,2,15010,619745 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,546035 ,2,15010,620245 ,2,15011,45 ,2,15007,290865 ,2,15008,620230 ,2,15009,45 ,2,15010,620225 ,2,15011,45 ,2,15007,1870 ,2,15008,619800 ,2,15009,45 ,2,15010,619775 ,2,15011,45 ,2,15007,1870 ,2,15008,620265 ,2,15009,45 ,2,15010,620260 ,2,15011,45 ,2,15007,1870 ,2,15008,620290 ,2,15009,45 ,2,15010,620275 ,2,15011,45 ,2,15007,1870 ,2,15008,620300 ,2,15009,45 ,2,15010,620295 ,2,15011,45 ,2,15007,1870 ,2,15008,620330 ,2,15009,45 ,2,15010,620305 ,2,15011,45 ,2,15007,1870 ,2,15008,620340 ,2,15009,45 ,2,15010,620335 ,2,15011,45 ,2,15007,1870 ,2,15008,620120 ,2,15009,45 ,2,15010,620115 ,2,15011,45 ,2,15007,1870 ,2,15008,620350 ,2,15009,45 ,2,15010,620345 ,2,15011,45 ,2,15007,1870 ,2,15008,620360 ,2,15009,45 ,2,15010,620355 ,2,15011,45 ,2,15007,1870 ,2,15008,620385 ,2,15009,45 ,2,15010,620365 ,2,15011,45 ,2,15007,1870 ,2,15008,620395 ,2,15009,45 ,2,15010,620390 ,2,15011,45 ,2,15007,1870 ,2,15008,620045 ,2,15009,45 ,2,15010,620040 ,2,15011,45 ,2,15007,1870 ,2,15008,620290 ,2,15009,45 ,2,15010,620275 ,2,15011,45 ,2,15007,1870 ,2,15008,620410 ,2,15009,45 ,2,15010,620400 ,2,15011,45 ,2,15007,1870 ,2,15008,619885 ,2,15009,45 ,2,15010,619880 ,2,15011,45 ,2,15007,291540 ,2,15008,620420 ,2,15009,45 ,2,15010,620415 ,2,15011,45 ,2,15007,1870 ,2,15008,620065 ,2,15009,45 ,2,15010,620060 ,2,15011,45 ,2,15007,1870 ,2,15008,620110 ,2,15009,45 ,2,15010,620105 ,2,15011,45 ,2,15007,1870 ,2,15008,620440 ,2,15009,45 ,2,15010,620425 ,2,15011,45 ,2,15007,1870 ,2,15008,620450 ,2,15009,45 ,2,15010,620445 ,2,15011,45 ,2,15007,1870 ,2,15008,620450 ,2,15009,45 ,2,15010,620445 ,2,15011,45 ,2,15007,1870 ,2,15008,620465 ,2,15009,45 ,2,15010,620455 ,2,15011,45 ,2,15007,1870 ,2,15008,620475 ,2,15009,45 ,2,15010,620470 ,2,15011,45 ,2,15007,1870 ,2,15008,620495 ,2,15009,45 ,2,15010,620480 ,2,15011,45 ,2,15007,1870 ,2,15008,620505 ,2,15009,45 ,2,15010,620500 ,2,15011,45 ,2,15007,1870 ,2,15008,620515 ,2,15009,45 ,2,15010,620510 ,2,15011,45 ,2,15007,1870 ,2,15008,620495 ,2,15009,45 ,2,15010,620480 ,2,15011,45 ,2,15007,1870 ,2,15008,620420 ,2,15009,45 ,2,15010,620415 ,2,15011,45 ,2,15007,1870 ,2,15008,620150 ,2,15009,45 ,2,15010,620145 ,2,15011,45 ,2,15007,1870 ,2,15008,620525 ,2,15009,45 ,2,15010,620520 ,2,15011,45 ,2,15007,291825 ,2,15008,620525 ,2,15009,45 ,2,15010,620520 ,2,15011,45 ,2,15007,1870 ,2,15008,620560 ,2,15009,45 ,2,15010,620530 ,2,15011,45 ,2,15007,1870 ,2,15008,620570 ,2,15009,45 ,2,15010,620565 ,2,15011,45 ,2,15007,1870 ,2,15008,620580 ,2,15009,45 ,2,15010,620575 ,2,15011,45 ,2,15007,1870 ,2,15008,620590 ,2,15009,45 ,2,15010,620585 ,2,15011,45 ,2,15007,1870 ,2,15008,620615 ,2,15009,45 ,2,15010,620595 ,2,15011,45 ,2,15007,1870 ,2,15008,620265 ,2,15009,45 ,2,15010,620260 ,2,15011,45 ,2,15007,1870 ,2,15008,620625 ,2,15009,45 ,2,15010,620620 ,2,15011,45 ,2,15007,1870 ,2,15008,620640 ,2,15009,45 ,2,15010,620630 ,2,15011,45 ,2,15007,1870 ,2,15008,620650 ,2,15009,45 ,2,15010,620645 ,2,15011,45 ,2,15007,1870 ,2,15008,620650 ,2,15009,45 ,2,15010,620645 ,2,15011,45 ,2,15007,1870 ,2,15008,619920 ,2,15009,45 ,2,15010,619915 ,2,15011,45 ,2,15007,1870 ,2,15008,620410 ,2,15009,45 ,2,15010,620400 ,2,15011,45 ,2,15007,1870 ,2,15008,620680 ,2,15009,45 ,2,15010,620655 ,2,15011,45 ,2,15007,1870 ,2,15008,620680 ,2,15009,45 ,2,15010,620655 ,2,15011,45 ,2,15007,1870 ,2,15008,620695 ,2,15009,45 ,2,15010,620690 ,2,15011,45 ,2,15007,1870 ,2,15008,620705 ,2,15009,45 ,2,15010,620700 ,2,15011,45 ,2,15007,1870 ,2,15008,620715 ,2,15009,45 ,2,15010,620710 ,2,15011,45 ,2,15007,1870 ,2,15008,620750 ,2,15009,45 ,2,15010,620745 ,2,15011,45 ,2,15007,1870 ,2,15008,620760 ,2,15009,45 ,2,15010,620755 ,2,15011,45 ,2,15007,1870 ,2,15008,620770 ,2,15009,45 ,2,15010,620765 ,2,15011,45 ,2,15007,1870 ,2,15008,620160 ,2,15009,45 ,2,15010,620155 ,2,15011,45 ,2,15007,1870 ,2,15008,620440 ,2,15009,45 ,2,15010,620425 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619575 ,2,15011,77750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620800 ,2,15011,77770 ,2,15007,1870 ,2,15008,620820 ,2,15009,544655 ,2,15010,620815 ,2,15011,45 ,2,15007,1870 ,2,15008,616495 ,2,15009,544655 ,2,15010,616490 ,2,15011,45 ,2,15007,1870 ,2,15008,616370 ,2,15009,544655 ,2,15010,620825 ,2,15011,45 ,2,15007,1870 ,2,15008,620835 ,2,15009,545930 ,2,15010,620830 ,2,15011,45 ,2,15007,1870 ,2,15008,616370 ,2,15009,545930 ,2,15010,620850 ,2,15011,45 ,2,15007,1870 ,2,15008,620860 ,2,15009,544655 ,2,15010,620855 ,2,15011,45 ,2,15007,1870 ,2,15008,620870 ,2,15009,546040 ,2,15010,620865 ,2,15011,45 ,2,15007,1870 ,2,15008,616525 ,2,15009,45 ,2,15010,616500 ,2,15011,45 ,2,15007,1870 ,2,15008,616285 ,2,15009,546040 ,2,15010,620875 ,2,15011,45 ,2,15007,1870 ,2,15008,616205 ,2,15009,45 ,2,15010,616185 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620880 ,2,15011,77995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620885 ,2,15011,78095 ,2,15007,1870 ,2,15008,619170 ,2,15009,545930 ,2,15010,620910 ,2,15011,45 ,2,15007,1870 ,2,15008,620920 ,2,15009,45 ,2,15010,620915 ,2,15011,45 ,2,15007,1870 ,2,15008,620920 ,2,15009,45 ,2,15010,620915 ,2,15011,45 ,2,15007,1870 ,2,15008,620935 ,2,15009,546045 ,2,15010,620925 ,2,15011,45 ,2,15007,1870 ,2,15008,619135 ,2,15009,546045 ,2,15010,620940 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620945 ,2,15011,78430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620975 ,2,15011,78495 ,2,15007,1870 ,2,15008,615275 ,2,15009,544570 ,2,15010,620980 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,621400 ,2,15011,78540 ,2,15007,1870 ,2,15008,621395 ,2,15009,45 ,2,15010,621390 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620985 ,2,15011,78595 ,2,15007,1870 ,2,15008,620995 ,2,15009,45 ,2,15010,620990 ,2,15011,45 ,2,15007,1870 ,2,15008,621035 ,2,15009,546055 ,2,15010,621005 ,2,15011,45 ,2,15007,293620 ,2,15008,621070 ,2,15009,546055 ,2,15010,621065 ,2,15011,45 ,2,15007,1870 ,2,15008,621070 ,2,15009,546080 ,2,15010,621045 ,2,15011,45 ,2,15007,1870 ,2,15008,621035 ,2,15009,546080 ,2,15010,621050 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,546080 ,2,15010,621055 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,546080 ,2,15010,621060 ,2,15011,45 ,2,15007,1870 ,2,15008,621100 ,2,15009,45 ,2,15010,621095 ,2,15011,45 ,2,15007,1870 ,2,15008,621170 ,2,15009,45 ,2,15010,621165 ,2,15011,45 ,2,15007,1870 ,2,15008,621070 ,2,15009,546090 ,2,15010,621105 ,2,15011,45 ,2,15007,293670 ,2,15008,621125 ,2,15009,546095 ,2,15010,621120 ,2,15011,45 ,2,15007,1870 ,2,15008,621035 ,2,15009,546090 ,2,15010,621110 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,546105 ,2,15010,621130 ,2,15011,45 ,2,15007,293690 ,2,15008,621160 ,2,15009,45 ,2,15010,621135 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557790 ,2,15010,621175 ,2,15011,45 ,2,15007,1870 ,2,15008,614445 ,2,15009,45 ,2,15010,621185 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543920 ,2,15010,621190 ,2,15011,45 ,2,15007,1870 ,2,15008,621215 ,2,15009,546110 ,2,15010,621195 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,546110 ,2,15010,621220 ,2,15011,45 ,2,15007,1870 ,2,15008,621230 ,2,15009,45 ,2,15010,621225 ,2,15011,45 ,2,15007,1870 ,2,15008,621245 ,2,15009,45 ,2,15010,621240 ,2,15011,45 ,2,15007,1870 ,2,15008,621275 ,2,15009,45 ,2,15010,621250 ,2,15011,45 ,2,15007,1870 ,2,15008,621285 ,2,15009,545325 ,2,15010,621280 ,2,15011,45 ,2,15007,1870 ,2,15008,621305 ,2,15009,545325 ,2,15010,621300 ,2,15011,45 ,2,15007,1870 ,2,15008,621295 ,2,15009,545325 ,2,15010,621290 ,2,15011,45 ,2,15007,1870 ,2,15008,621330 ,2,15009,546120 ,2,15010,621310 ,2,15011,45 ,2,15007,1870 ,2,15008,621340 ,2,15009,546120 ,2,15010,621335 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,546120 ,2,15010,621345 ,2,15011,45 ,2,15007,1870 ,2,15008,613715 ,2,15009,546120 ,2,15010,621350 ,2,15011,45 ,2,15007,1870 ,2,15008,621360 ,2,15009,45 ,2,15010,621355 ,2,15011,45 ,2,15007,1870 ,2,15008,615995 ,2,15009,45 ,2,15010,621365 ,2,15011,45 ,2,15007,1870 ,2,15008,617345 ,2,15009,557755 ,2,15010,621405 ,2,15011,45 ,2,15007,294705 ,2,15008,621170 ,2,15009,45 ,2,15010,621165 ,2,15011,45 ,2,15007,1870 ,2,15008,621415 ,2,15009,45 ,2,15010,621410 ,2,15011,45 ,2,15007,1870 ,2,15008,621460 ,2,15009,546160 ,2,15010,621420 ,2,15011,45 ,2,15007,1870 ,2,15008,614575 ,2,15009,546160 ,2,15010,621465 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,546160 ,2,15010,621470 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,557755 ,2,15010,621475 ,2,15011,45 ,2,15007,1870 ,2,15008,616225 ,2,15009,45 ,2,15010,616220 ,2,15011,45 ,2,15007,1870 ,2,15008,621495 ,2,15009,546170 ,2,15010,621485 ,2,15011,45 ,2,15007,1870 ,2,15008,617430 ,2,15009,546170 ,2,15010,621520 ,2,15011,45 ,2,15007,1870 ,2,15008,621530 ,2,15009,45 ,2,15010,621525 ,2,15011,45 ,2,15007,1870 ,2,15008,621540 ,2,15009,45 ,2,15010,621535 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,546190 ,2,15010,621545 ,2,15011,45 ,2,15007,294925 ,2,15008,621565 ,2,15009,45 ,2,15010,621555 ,2,15011,45 ,2,15007,1870 ,2,15008,621565 ,2,15009,45 ,2,15010,621550 ,2,15011,45 ,2,15007,1870 ,2,15008,621575 ,2,15009,45 ,2,15010,621570 ,2,15011,45 ,2,15007,1870 ,2,15008,621585 ,2,15009,45 ,2,15010,621580 ,2,15011,45 ,2,15007,1870 ,2,15008,621595 ,2,15009,45 ,2,15010,621590 ,2,15011,45 ,2,15007,1870 ,2,15008,621630 ,2,15009,45 ,2,15010,621600 ,2,15011,45 ,2,15007,1870 ,2,15008,621665 ,2,15009,45 ,2,15010,621660 ,2,15011,45 ,2,15007,1870 ,2,15008,621645 ,2,15009,45 ,2,15010,621640 ,2,15011,45 ,2,15007,1870 ,2,15008,621645 ,2,15009,45 ,2,15010,621655 ,2,15011,45 ,2,15007,1870 ,2,15008,621685 ,2,15009,45 ,2,15010,621670 ,2,15011,45 ,2,15007,1870 ,2,15008,621695 ,2,15009,45 ,2,15010,621690 ,2,15011,45 ,2,15007,1870 ,2,15008,621705 ,2,15009,45 ,2,15010,621700 ,2,15011,45 ,2,15007,1870 ,2,15008,621685 ,2,15009,45 ,2,15010,621710 ,2,15011,45 ,2,15007,1870 ,2,15008,621720 ,2,15009,45 ,2,15010,621715 ,2,15011,45 ,2,15007,1870 ,2,15008,621745 ,2,15009,45 ,2,15010,621740 ,2,15011,45 ,2,15007,1870 ,2,15008,621755 ,2,15009,45 ,2,15010,621750 ,2,15011,45 ,2,15007,1870 ,2,15008,621775 ,2,15009,45 ,2,15010,621770 ,2,15011,45 ,2,15007,1870 ,2,15008,621815 ,2,15009,45 ,2,15010,621780 ,2,15011,45 ,2,15007,1870 ,2,15008,621825 ,2,15009,45 ,2,15010,621820 ,2,15011,45 ,2,15007,1870 ,2,15008,621835 ,2,15009,45 ,2,15010,621830 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,546200 ,2,15010,621840 ,2,15011,45 ,2,15007,1870 ,2,15008,621850 ,2,15009,45 ,2,15010,621845 ,2,15011,45 ,2,15007,1870 ,2,15008,621875 ,2,15009,45 ,2,15010,621870 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,621880 ,2,15011,82275 ,2,15007,1870 ,2,15008,621890 ,2,15009,45 ,2,15010,621885 ,2,15011,45 ,2,15007,1870 ,2,15008,621900 ,2,15009,45 ,2,15010,621895 ,2,15011,45 ,2,15007,1870 ,2,15008,621930 ,2,15009,45 ,2,15010,621905 ,2,15011,45 ,2,15007,1870 ,2,15008,621940 ,2,15009,45 ,2,15010,621935 ,2,15011,45 ,2,15007,295660 ,2,15008,621965 ,2,15009,45 ,2,15010,621960 ,2,15011,45 ,2,15007,1870 ,2,15008,621955 ,2,15009,45 ,2,15010,621945 ,2,15011,45 ,2,15007,295720 ,2,15008,621980 ,2,15009,45 ,2,15010,621970 ,2,15011,45 ,2,15007,1870 ,2,15008,621990 ,2,15009,45 ,2,15010,621985 ,2,15011,45 ,2,15007,1870 ,2,15008,622000 ,2,15009,45 ,2,15010,621995 ,2,15011,45 ,2,15007,1870 ,2,15008,622010 ,2,15009,45 ,2,15010,622005 ,2,15011,45 ,2,15007,1870 ,2,15008,622035 ,2,15009,45 ,2,15010,622015 ,2,15011,45 ,2,15007,1870 ,2,15008,622045 ,2,15009,45 ,2,15010,622040 ,2,15011,45 ,2,15007,1870 ,2,15008,622055 ,2,15009,45 ,2,15010,622050 ,2,15011,45 ,2,15007,1870 ,2,15008,622065 ,2,15009,546235 ,2,15010,622060 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546235 ,2,15010,622295 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546245 ,2,15010,622070 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546250 ,2,15010,622090 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,557790 ,2,15010,622100 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546270 ,2,15010,622105 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546295 ,2,15010,622070 ,2,15011,45 ,2,15007,1870 ,2,15008,622130 ,2,15009,546300 ,2,15010,622115 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546305 ,2,15010,622155 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,546305 ,2,15010,622170 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546330 ,2,15010,622185 ,2,15011,45 ,2,15007,1870 ,2,15008,622240 ,2,15009,546355 ,2,15010,622190 ,2,15011,45 ,2,15007,1870 ,2,15008,622275 ,2,15009,546355 ,2,15010,622270 ,2,15011,45 ,2,15007,1870 ,2,15008,622275 ,2,15009,546360 ,2,15010,622245 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546360 ,2,15010,622255 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,546360 ,2,15010,622265 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,546355 ,2,15010,622280 ,2,15011,45 ,2,15007,1870 ,2,15008,622310 ,2,15009,45 ,2,15010,622305 ,2,15011,45 ,2,15007,295845 ,2,15008,622320 ,2,15009,45 ,2,15010,622315 ,2,15011,45 ,2,15007,1870 ,2,15008,622330 ,2,15009,45 ,2,15010,622325 ,2,15011,45 ,2,15007,1870 ,2,15008,622360 ,2,15009,45 ,2,15010,622355 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546375 ,2,15010,622375 ,2,15011,45 ,2,15007,1870 ,2,15008,622385 ,2,15009,45 ,2,15010,622380 ,2,15011,45 ,2,15007,295985 ,2,15008,622405 ,2,15009,45 ,2,15010,622400 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,546380 ,2,15010,622410 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,546385 ,2,15010,622420 ,2,15011,45 ,2,15007,296050 ,2,15008,622430 ,2,15009,45 ,2,15010,622425 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,557710 ,2,15010,622460 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,546390 ,2,15010,622465 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622470 ,2,15011,83220 ,2,15007,1870 ,2,15008,622480 ,2,15009,45 ,2,15010,622475 ,2,15011,45 ,2,15007,1870 ,2,15008,622490 ,2,15009,45 ,2,15010,622485 ,2,15011,45 ,2,15007,1870 ,2,15008,622510 ,2,15009,45 ,2,15010,622495 ,2,15011,45 ,2,15007,1870 ,2,15008,622520 ,2,15009,45 ,2,15010,622515 ,2,15011,45 ,2,15007,1870 ,2,15008,622530 ,2,15009,45 ,2,15010,622525 ,2,15011,45 ,2,15007,1870 ,2,15008,622540 ,2,15009,45 ,2,15010,622535 ,2,15011,45 ,2,15007,1870 ,2,15008,622580 ,2,15009,45 ,2,15010,622545 ,2,15011,45 ,2,15007,1870 ,2,15008,622590 ,2,15009,45 ,2,15010,622585 ,2,15011,45 ,2,15007,1870 ,2,15008,617990 ,2,15009,546425 ,2,15010,622595 ,2,15011,45 ,2,15007,296345 ,2,15008,619170 ,2,15009,45 ,2,15010,622610 ,2,15011,45 ,2,15007,1870 ,2,15008,622665 ,2,15009,45 ,2,15010,622660 ,2,15011,45 ,2,15007,1870 ,2,15008,622665 ,2,15009,45 ,2,15010,622615 ,2,15011,45 ,2,15007,1870 ,2,15008,622625 ,2,15009,45 ,2,15010,622620 ,2,15011,45 ,2,15007,296405 ,2,15008,616980 ,2,15009,45 ,2,15010,622635 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622640 ,2,15011,83535 ,2,15007,1870 ,2,15008,622650 ,2,15009,45 ,2,15010,622645 ,2,15011,45 ,2,15007,1870 ,2,15008,622690 ,2,15009,45 ,2,15010,622685 ,2,15011,45 ,2,15007,1870 ,2,15008,622700 ,2,15009,557765 ,2,15010,622695 ,2,15011,45 ,2,15007,1870 ,2,15008,624120 ,2,15009,557765 ,2,15010,624115 ,2,15011,45 ,2,15007,1870 ,2,15008,624120 ,2,15009,557765 ,2,15010,624115 ,2,15011,45 ,2,15007,298035 ,2,15008,624110 ,2,15009,557765 ,2,15010,624105 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546430 ,2,15010,622710 ,2,15011,45 ,2,15007,297065 ,2,15008,622900 ,2,15009,45 ,2,15010,622895 ,2,15011,45 ,2,15007,1870 ,2,15008,622900 ,2,15009,45 ,2,15010,622895 ,2,15011,45 ,2,15007,1870 ,2,15008,622760 ,2,15009,546435 ,2,15010,622720 ,2,15011,45 ,2,15007,1870 ,2,15008,622770 ,2,15009,45 ,2,15010,622765 ,2,15011,45 ,2,15007,1870 ,2,15008,622780 ,2,15009,546435 ,2,15010,622775 ,2,15011,45 ,2,15007,1870 ,2,15008,622770 ,2,15009,45 ,2,15010,622765 ,2,15011,45 ,2,15007,1870 ,2,15008,622860 ,2,15009,546485 ,2,15010,622855 ,2,15011,45 ,2,15007,1870 ,2,15008,622860 ,2,15009,546450 ,2,15010,622785 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,546450 ,2,15010,622795 ,2,15011,45 ,2,15007,1870 ,2,15008,622830 ,2,15009,546460 ,2,15010,622820 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,546460 ,2,15010,622835 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,546460 ,2,15010,622845 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,546450 ,2,15010,622850 ,2,15011,45 ,2,15007,1870 ,2,15008,622880 ,2,15009,45 ,2,15010,622875 ,2,15011,45 ,2,15007,1870 ,2,15008,622910 ,2,15009,45 ,2,15010,622905 ,2,15011,45 ,2,15007,1870 ,2,15008,622780 ,2,15009,546430 ,2,15010,622925 ,2,15011,45 ,2,15007,1870 ,2,15008,622940 ,2,15009,546505 ,2,15010,622930 ,2,15011,45 ,2,15007,1870 ,2,15008,623950 ,2,15009,546505 ,2,15010,623945 ,2,15011,45 ,2,15007,1870 ,2,15008,623950 ,2,15009,546510 ,2,15010,622955 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546510 ,2,15010,622965 ,2,15011,45 ,2,15007,1870 ,2,15008,623940 ,2,15009,557765 ,2,15010,623935 ,2,15011,45 ,2,15007,1870 ,2,15008,623005 ,2,15009,557765 ,2,15010,623000 ,2,15011,45 ,2,15007,1870 ,2,15008,623090 ,2,15009,557765 ,2,15010,623085 ,2,15011,45 ,2,15007,1870 ,2,15008,623090 ,2,15009,557765 ,2,15010,623085 ,2,15011,45 ,2,15007,1870 ,2,15008,622700 ,2,15009,557765 ,2,15010,622695 ,2,15011,45 ,2,15007,1870 ,2,15008,623070 ,2,15009,45 ,2,15010,623065 ,2,15011,45 ,2,15007,1870 ,2,15008,623070 ,2,15009,45 ,2,15010,623065 ,2,15011,45 ,2,15007,1870 ,2,15008,623015 ,2,15009,45 ,2,15010,623010 ,2,15011,45 ,2,15007,1870 ,2,15008,623025 ,2,15009,45 ,2,15010,623020 ,2,15011,45 ,2,15007,1870 ,2,15008,623060 ,2,15009,45 ,2,15010,623055 ,2,15011,45 ,2,15007,1870 ,2,15008,622910 ,2,15009,45 ,2,15010,622905 ,2,15011,45 ,2,15007,1870 ,2,15008,623115 ,2,15009,557765 ,2,15010,623100 ,2,15011,45 ,2,15007,1870 ,2,15008,623125 ,2,15009,557765 ,2,15010,623120 ,2,15011,45 ,2,15007,1870 ,2,15008,623135 ,2,15009,557765 ,2,15010,623130 ,2,15011,45 ,2,15007,1870 ,2,15008,623125 ,2,15009,557765 ,2,15010,623120 ,2,15011,45 ,2,15007,1870 ,2,15008,623135 ,2,15009,557765 ,2,15010,623130 ,2,15011,45 ,2,15007,1870 ,2,15008,623150 ,2,15009,546570 ,2,15010,623140 ,2,15011,45 ,2,15007,1870 ,2,15008,623185 ,2,15009,546570 ,2,15010,623180 ,2,15011,45 ,2,15007,1870 ,2,15008,623195 ,2,15009,45 ,2,15010,623190 ,2,15011,45 ,2,15007,1870 ,2,15008,623205 ,2,15009,557765 ,2,15010,623200 ,2,15011,45 ,2,15007,1870 ,2,15008,623215 ,2,15009,557765 ,2,15010,623210 ,2,15011,45 ,2,15007,1870 ,2,15008,623240 ,2,15009,557765 ,2,15010,623235 ,2,15011,45 ,2,15007,1870 ,2,15008,623205 ,2,15009,557765 ,2,15010,623200 ,2,15011,45 ,2,15007,1870 ,2,15008,623250 ,2,15009,557765 ,2,15010,623245 ,2,15011,45 ,2,15007,1870 ,2,15008,623265 ,2,15009,557765 ,2,15010,623260 ,2,15011,45 ,2,15007,1870 ,2,15008,623305 ,2,15009,557765 ,2,15010,623300 ,2,15011,45 ,2,15007,1870 ,2,15008,623305 ,2,15009,557765 ,2,15010,623300 ,2,15011,45 ,2,15007,1870 ,2,15008,623275 ,2,15009,45 ,2,15010,623270 ,2,15011,45 ,2,15007,1870 ,2,15008,623215 ,2,15009,557765 ,2,15010,623210 ,2,15011,45 ,2,15007,1870 ,2,15008,623060 ,2,15009,45 ,2,15010,623055 ,2,15011,45 ,2,15007,1870 ,2,15008,623025 ,2,15009,45 ,2,15010,623020 ,2,15011,45 ,2,15007,1870 ,2,15008,623325 ,2,15009,546580 ,2,15010,623310 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546580 ,2,15010,623330 ,2,15011,45 ,2,15007,1870 ,2,15008,623185 ,2,15009,546590 ,2,15010,623335 ,2,15011,45 ,2,15007,1870 ,2,15008,623370 ,2,15009,546590 ,2,15010,623365 ,2,15011,45 ,2,15007,1870 ,2,15008,623395 ,2,15009,546600 ,2,15010,623380 ,2,15011,45 ,2,15007,1870 ,2,15008,623185 ,2,15009,546600 ,2,15010,623400 ,2,15011,45 ,2,15007,1870 ,2,15008,623410 ,2,15009,45 ,2,15010,623405 ,2,15011,45 ,2,15007,1870 ,2,15008,623425 ,2,15009,45 ,2,15010,623420 ,2,15011,45 ,2,15007,1870 ,2,15008,623425 ,2,15009,45 ,2,15010,623420 ,2,15011,45 ,2,15007,1870 ,2,15008,623435 ,2,15009,45 ,2,15010,623430 ,2,15011,45 ,2,15007,1870 ,2,15008,623450 ,2,15009,45 ,2,15010,623445 ,2,15011,45 ,2,15007,1870 ,2,15008,623460 ,2,15009,45 ,2,15010,623455 ,2,15011,45 ,2,15007,1870 ,2,15008,623485 ,2,15009,45 ,2,15010,623480 ,2,15011,45 ,2,15007,1870 ,2,15008,623410 ,2,15009,45 ,2,15010,623405 ,2,15011,45 ,2,15007,1870 ,2,15008,623435 ,2,15009,45 ,2,15010,623430 ,2,15011,45 ,2,15007,1870 ,2,15008,623485 ,2,15009,45 ,2,15010,623480 ,2,15011,45 ,2,15007,1870 ,2,15008,623450 ,2,15009,45 ,2,15010,623445 ,2,15011,45 ,2,15007,1870 ,2,15008,623495 ,2,15009,45 ,2,15010,623490 ,2,15011,45 ,2,15007,1870 ,2,15008,623505 ,2,15009,45 ,2,15010,623500 ,2,15011,45 ,2,15007,1870 ,2,15008,623460 ,2,15009,45 ,2,15010,623455 ,2,15011,45 ,2,15007,1870 ,2,15008,623515 ,2,15009,45 ,2,15010,623510 ,2,15011,45 ,2,15007,1870 ,2,15008,623495 ,2,15009,45 ,2,15010,623490 ,2,15011,45 ,2,15007,1870 ,2,15008,623555 ,2,15009,557765 ,2,15010,623550 ,2,15011,45 ,2,15007,1870 ,2,15008,623620 ,2,15009,557765 ,2,15010,623615 ,2,15011,45 ,2,15007,1870 ,2,15008,623620 ,2,15009,546630 ,2,15010,623560 ,2,15011,45 ,2,15007,1870 ,2,15008,623585 ,2,15009,546640 ,2,15010,623575 ,2,15011,45 ,2,15007,1870 ,2,15008,623620 ,2,15009,546640 ,2,15010,623590 ,2,15011,45 ,2,15007,1870 ,2,15008,623620 ,2,15009,546630 ,2,15010,623560 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,546655 ,2,15010,623625 ,2,15011,45 ,2,15007,1870 ,2,15008,623620 ,2,15009,546655 ,2,15010,623640 ,2,15011,45 ,2,15007,1870 ,2,15008,623675 ,2,15009,546665 ,2,15010,623645 ,2,15011,45 ,2,15007,1870 ,2,15008,623370 ,2,15009,546675 ,2,15010,623680 ,2,15011,45 ,2,15007,1870 ,2,15008,623695 ,2,15009,557765 ,2,15010,623690 ,2,15011,45 ,2,15007,1870 ,2,15008,623735 ,2,15009,557765 ,2,15010,623730 ,2,15011,45 ,2,15007,1870 ,2,15008,623735 ,2,15009,557765 ,2,15010,623730 ,2,15011,45 ,2,15007,1870 ,2,15008,623725 ,2,15009,557765 ,2,15010,623710 ,2,15011,45 ,2,15007,1870 ,2,15008,623725 ,2,15009,546680 ,2,15010,623700 ,2,15011,45 ,2,15007,1870 ,2,15008,623760 ,2,15009,557765 ,2,15010,623740 ,2,15011,45 ,2,15007,1870 ,2,15008,623770 ,2,15009,557765 ,2,15010,623765 ,2,15011,45 ,2,15007,1870 ,2,15008,623795 ,2,15009,557765 ,2,15010,623775 ,2,15011,45 ,2,15007,1870 ,2,15008,623805 ,2,15009,557765 ,2,15010,623800 ,2,15011,45 ,2,15007,1870 ,2,15008,623830 ,2,15009,557765 ,2,15010,623810 ,2,15011,45 ,2,15007,1870 ,2,15008,623840 ,2,15009,557765 ,2,15010,623835 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546590 ,2,15010,623845 ,2,15011,45 ,2,15007,1870 ,2,15008,623875 ,2,15009,557765 ,2,15010,623870 ,2,15011,45 ,2,15007,1870 ,2,15008,623895 ,2,15009,546690 ,2,15010,623880 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546690 ,2,15010,623900 ,2,15011,45 ,2,15007,1870 ,2,15008,623675 ,2,15009,546675 ,2,15010,623905 ,2,15011,45 ,2,15007,1870 ,2,15008,623325 ,2,15009,546665 ,2,15010,623910 ,2,15011,45 ,2,15007,1870 ,2,15008,623965 ,2,15009,546760 ,2,15010,623960 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,546760 ,2,15010,623970 ,2,15011,45 ,2,15007,1870 ,2,15008,624005 ,2,15009,546765 ,2,15010,624000 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,546765 ,2,15010,624010 ,2,15011,45 ,2,15007,1870 ,2,15008,624030 ,2,15009,546770 ,2,15010,624015 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,546770 ,2,15010,624035 ,2,15011,45 ,2,15007,1870 ,2,15008,624055 ,2,15009,546780 ,2,15010,624040 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,546780 ,2,15010,624060 ,2,15011,45 ,2,15007,1870 ,2,15008,624070 ,2,15009,557785 ,2,15010,624065 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,557785 ,2,15010,624075 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546630 ,2,15010,624080 ,2,15011,45 ,2,15007,1870 ,2,15008,624110 ,2,15009,546790 ,2,15010,624090 ,2,15011,45 ,2,15007,1870 ,2,15008,623015 ,2,15009,45 ,2,15010,623010 ,2,15011,45 ,2,15007,1870 ,2,15008,624130 ,2,15009,45 ,2,15010,624125 ,2,15011,45 ,2,15007,1870 ,2,15008,624140 ,2,15009,45 ,2,15010,624135 ,2,15011,45 ,2,15007,1870 ,2,15008,624165 ,2,15009,45 ,2,15010,624160 ,2,15011,45 ,2,15007,1870 ,2,15008,624175 ,2,15009,45 ,2,15010,624170 ,2,15011,45 ,2,15007,1870 ,2,15008,624190 ,2,15009,45 ,2,15010,624185 ,2,15011,45 ,2,15007,1870 ,2,15008,624200 ,2,15009,45 ,2,15010,624195 ,2,15011,45 ,2,15007,1870 ,2,15008,624175 ,2,15009,45 ,2,15010,624170 ,2,15011,45 ,2,15007,1870 ,2,15008,624200 ,2,15009,45 ,2,15010,624195 ,2,15011,45 ,2,15007,1870 ,2,15008,624190 ,2,15009,45 ,2,15010,624185 ,2,15011,45 ,2,15007,1870 ,2,15008,624215 ,2,15009,45 ,2,15010,624210 ,2,15011,45 ,2,15007,1870 ,2,15008,624225 ,2,15009,45 ,2,15010,624220 ,2,15011,45 ,2,15007,1870 ,2,15008,624165 ,2,15009,45 ,2,15010,624160 ,2,15011,45 ,2,15007,1870 ,2,15008,624235 ,2,15009,45 ,2,15010,624230 ,2,15011,45 ,2,15007,1870 ,2,15008,624235 ,2,15009,45 ,2,15010,624230 ,2,15011,45 ,2,15007,1870 ,2,15008,624225 ,2,15009,45 ,2,15010,624220 ,2,15011,45 ,2,15007,1870 ,2,15008,624215 ,2,15009,45 ,2,15010,624210 ,2,15011,45 ,2,15007,1870 ,2,15008,624130 ,2,15009,45 ,2,15010,624125 ,2,15011,45 ,2,15007,1870 ,2,15008,624245 ,2,15009,45 ,2,15010,624240 ,2,15011,45 ,2,15007,1870 ,2,15008,624280 ,2,15009,45 ,2,15010,624275 ,2,15011,45 ,2,15007,1870 ,2,15008,624290 ,2,15009,45 ,2,15010,624285 ,2,15011,45 ,2,15007,1870 ,2,15008,624300 ,2,15009,557765 ,2,15010,624295 ,2,15011,45 ,2,15007,1870 ,2,15008,624310 ,2,15009,45 ,2,15010,624305 ,2,15011,45 ,2,15007,1870 ,2,15008,624345 ,2,15009,45 ,2,15010,624340 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,546830 ,2,15010,618800 ,2,15011,45 ,2,15007,1870 ,2,15008,624355 ,2,15009,45 ,2,15010,624350 ,2,15011,45 ,2,15007,1870 ,2,15008,624370 ,2,15009,45 ,2,15010,624365 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,88160 ,2,15007,1870 ,2,15008,624345 ,2,15009,45 ,2,15010,624340 ,2,15011,45 ,2,15007,1870 ,2,15008,614085 ,2,15009,45 ,2,15010,614080 ,2,15011,45 ,2,15007,1870 ,2,15008,624390 ,2,15009,45 ,2,15010,624380 ,2,15011,45 ,2,15007,1870 ,2,15008,646000 ,2,15009,45 ,2,15010,645995 ,2,15011,45 ,2,15007,1870 ,2,15008,646000 ,2,15009,45 ,2,15010,645995 ,2,15011,45 ,2,15007,1870 ,2,15008,645965 ,2,15009,45 ,2,15010,645960 ,2,15011,45 ,2,15007,1870 ,2,15008,645965 ,2,15009,45 ,2,15010,645960 ,2,15011,45 ,2,15007,1870 ,2,15008,624400 ,2,15009,45 ,2,15010,624395 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,546835 ,2,15010,624405 ,2,15011,45 ,2,15007,298580 ,2,15008,624400 ,2,15009,45 ,2,15010,624415 ,2,15011,45 ,2,15007,1870 ,2,15008,624425 ,2,15009,45 ,2,15010,624420 ,2,15011,45 ,2,15007,1870 ,2,15008,624450 ,2,15009,45 ,2,15010,624445 ,2,15011,45 ,2,15007,1870 ,2,15008,624390 ,2,15009,45 ,2,15010,624380 ,2,15011,45 ,2,15007,1870 ,2,15008,624725 ,2,15009,45 ,2,15010,624715 ,2,15011,45 ,2,15007,1870 ,2,15008,624725 ,2,15009,45 ,2,15010,624715 ,2,15011,45 ,2,15007,1870 ,2,15008,624550 ,2,15009,45 ,2,15010,624545 ,2,15011,45 ,2,15007,1870 ,2,15008,624550 ,2,15009,45 ,2,15010,624545 ,2,15011,45 ,2,15007,1870 ,2,15008,624540 ,2,15009,45 ,2,15010,624535 ,2,15011,45 ,2,15007,1870 ,2,15008,624540 ,2,15009,45 ,2,15010,624535 ,2,15011,45 ,2,15007,1870 ,2,15008,624465 ,2,15009,45 ,2,15010,624460 ,2,15011,45 ,2,15007,1870 ,2,15008,624480 ,2,15009,546845 ,2,15010,624470 ,2,15011,45 ,2,15007,1870 ,2,15008,624520 ,2,15009,45 ,2,15010,624515 ,2,15011,45 ,2,15007,298820 ,2,15008,624480 ,2,15009,45 ,2,15010,624530 ,2,15011,45 ,2,15007,1870 ,2,15008,624585 ,2,15009,45 ,2,15010,624580 ,2,15011,45 ,2,15007,1870 ,2,15008,624595 ,2,15009,45 ,2,15010,624590 ,2,15011,45 ,2,15007,1870 ,2,15008,624595 ,2,15009,45 ,2,15010,624590 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,546855 ,2,15010,624605 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624615 ,2,15011,88695 ,2,15007,1870 ,2,15008,618780 ,2,15009,546860 ,2,15010,624610 ,2,15011,45 ,2,15007,1870 ,2,15008,620505 ,2,15009,45 ,2,15010,620500 ,2,15011,45 ,2,15007,1870 ,2,15008,624650 ,2,15009,45 ,2,15010,624645 ,2,15011,45 ,2,15007,298955 ,2,15008,624660 ,2,15009,45 ,2,15010,624655 ,2,15011,45 ,2,15007,1870 ,2,15008,624660 ,2,15009,45 ,2,15010,624655 ,2,15011,45 ,2,15007,1870 ,2,15008,624670 ,2,15009,45 ,2,15010,624665 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,546865 ,2,15010,624675 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624700 ,2,15011,88870 ,2,15007,1870 ,2,15008,615275 ,2,15009,546885 ,2,15010,624710 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,557755 ,2,15010,624735 ,2,15011,45 ,2,15007,1870 ,2,15008,624770 ,2,15009,546890 ,2,15010,624740 ,2,15011,45 ,2,15007,1870 ,2,15008,625605 ,2,15009,546890 ,2,15010,625600 ,2,15011,45 ,2,15007,1870 ,2,15008,625605 ,2,15009,546895 ,2,15010,624775 ,2,15011,45 ,2,15007,1870 ,2,15008,625450 ,2,15009,546895 ,2,15010,625445 ,2,15011,45 ,2,15007,1870 ,2,15008,624825 ,2,15009,546940 ,2,15010,624800 ,2,15011,45 ,2,15007,1870 ,2,15008,624845 ,2,15009,546940 ,2,15010,624840 ,2,15011,45 ,2,15007,1870 ,2,15008,624845 ,2,15009,546945 ,2,15010,624830 ,2,15011,45 ,2,15007,1870 ,2,15008,624885 ,2,15009,546940 ,2,15010,624860 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,546940 ,2,15010,625430 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,546970 ,2,15010,624890 ,2,15011,45 ,2,15007,1870 ,2,15008,624970 ,2,15009,546970 ,2,15010,624965 ,2,15011,45 ,2,15007,1870 ,2,15008,624910 ,2,15009,547000 ,2,15010,624905 ,2,15011,45 ,2,15007,1870 ,2,15008,624960 ,2,15009,547000 ,2,15010,624955 ,2,15011,45 ,2,15007,1870 ,2,15008,624950 ,2,15009,547015 ,2,15010,624945 ,2,15011,45 ,2,15007,1870 ,2,15008,625005 ,2,15009,547020 ,2,15010,624975 ,2,15011,45 ,2,15007,1870 ,2,15008,625425 ,2,15009,547020 ,2,15010,625420 ,2,15011,45 ,2,15007,1870 ,2,15008,625425 ,2,15009,547025 ,2,15010,625010 ,2,15011,45 ,2,15007,1870 ,2,15008,625450 ,2,15009,547025 ,2,15010,625020 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,547025 ,2,15010,625030 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545930 ,2,15010,625035 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,547025 ,2,15010,625040 ,2,15011,45 ,2,15007,299170 ,2,15008,625080 ,2,15009,547050 ,2,15010,625045 ,2,15011,45 ,2,15007,1870 ,2,15008,625080 ,2,15009,547050 ,2,15010,625085 ,2,15011,45 ,2,15007,1870 ,2,15008,625395 ,2,15009,547050 ,2,15010,625390 ,2,15011,45 ,2,15007,1870 ,2,15008,625395 ,2,15009,547055 ,2,15010,625090 ,2,15011,45 ,2,15007,1870 ,2,15008,625385 ,2,15009,547055 ,2,15010,625380 ,2,15011,45 ,2,15007,1870 ,2,15008,625385 ,2,15009,547060 ,2,15010,625110 ,2,15011,45 ,2,15007,1870 ,2,15008,624825 ,2,15009,547060 ,2,15010,625120 ,2,15011,45 ,2,15007,1870 ,2,15008,624845 ,2,15009,547060 ,2,15010,625140 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,547060 ,2,15010,625145 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625150 ,2,15011,89270 ,2,15007,1870 ,2,15008,625165 ,2,15009,547070 ,2,15010,625155 ,2,15011,45 ,2,15007,1870 ,2,15008,625175 ,2,15009,547080 ,2,15010,625170 ,2,15011,45 ,2,15007,1870 ,2,15008,625385 ,2,15009,547085 ,2,15010,625205 ,2,15011,45 ,2,15007,1870 ,2,15008,625215 ,2,15009,547130 ,2,15010,625210 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,547135 ,2,15010,622255 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,547135 ,2,15010,622265 ,2,15011,45 ,2,15007,1870 ,2,15008,625230 ,2,15009,547145 ,2,15010,625225 ,2,15011,45 ,2,15007,1870 ,2,15008,625215 ,2,15009,547145 ,2,15010,625235 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625270 ,2,15011,90055 ,2,15007,1870 ,2,15008,625305 ,2,15009,45 ,2,15010,625300 ,2,15011,45 ,2,15007,1870 ,2,15008,625305 ,2,15009,547160 ,2,15010,625280 ,2,15011,45 ,2,15007,1870 ,2,15008,625305 ,2,15009,45 ,2,15010,625295 ,2,15011,45 ,2,15007,1870 ,2,15008,625350 ,2,15009,547175 ,2,15010,625310 ,2,15011,45 ,2,15007,1870 ,2,15008,625165 ,2,15009,547175 ,2,15010,625355 ,2,15011,45 ,2,15007,1870 ,2,15008,618770 ,2,15009,545930 ,2,15010,625415 ,2,15011,45 ,2,15007,299835 ,2,15008,625350 ,2,15009,546895 ,2,15010,625455 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546895 ,2,15010,625465 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,546895 ,2,15010,625470 ,2,15011,45 ,2,15007,1870 ,2,15008,625485 ,2,15009,547200 ,2,15010,625475 ,2,15011,45 ,2,15007,1870 ,2,15008,625605 ,2,15009,547200 ,2,15010,625490 ,2,15011,45 ,2,15007,1870 ,2,15008,625565 ,2,15009,547200 ,2,15010,625560 ,2,15011,45 ,2,15007,1870 ,2,15008,625545 ,2,15009,547235 ,2,15010,625540 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,547230 ,2,15010,625535 ,2,15011,45 ,2,15007,1870 ,2,15008,625605 ,2,15009,547235 ,2,15010,625550 ,2,15011,45 ,2,15007,1870 ,2,15008,618770 ,2,15009,547255 ,2,15010,625570 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,545930 ,2,15010,619210 ,2,15011,45 ,2,15007,299970 ,2,15008,625165 ,2,15009,546895 ,2,15010,625575 ,2,15011,45 ,2,15007,299980 ,2,15008,625395 ,2,15009,546895 ,2,15010,625590 ,2,15011,45 ,2,15007,1870 ,2,15008,625630 ,2,15009,546890 ,2,15010,625625 ,2,15011,45 ,2,15007,1870 ,2,15008,625605 ,2,15009,547270 ,2,15010,625620 ,2,15011,45 ,2,15007,1870 ,2,15008,625655 ,2,15009,547295 ,2,15010,625645 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,547295 ,2,15010,625660 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,547295 ,2,15010,625670 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,546885 ,2,15010,624680 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543905 ,2,15010,625675 ,2,15011,45 ,2,15007,1870 ,2,15008,625685 ,2,15009,45 ,2,15010,625680 ,2,15011,45 ,2,15007,1870 ,2,15008,645850 ,2,15009,45 ,2,15010,645845 ,2,15011,45 ,2,15007,1870 ,2,15008,645850 ,2,15009,45 ,2,15010,645845 ,2,15011,45 ,2,15007,1870 ,2,15008,626955 ,2,15009,45 ,2,15010,626950 ,2,15011,45 ,2,15007,1870 ,2,15008,626955 ,2,15009,45 ,2,15010,626950 ,2,15011,45 ,2,15007,1870 ,2,15008,626915 ,2,15009,45 ,2,15010,626910 ,2,15011,45 ,2,15007,1870 ,2,15008,626915 ,2,15009,45 ,2,15010,626910 ,2,15011,45 ,2,15007,1870 ,2,15008,624450 ,2,15009,45 ,2,15010,624445 ,2,15011,45 ,2,15007,1870 ,2,15008,625790 ,2,15009,45 ,2,15010,625785 ,2,15011,45 ,2,15007,1870 ,2,15008,625790 ,2,15009,45 ,2,15010,625785 ,2,15011,45 ,2,15007,1870 ,2,15008,625725 ,2,15009,45 ,2,15010,625720 ,2,15011,45 ,2,15007,1870 ,2,15008,625725 ,2,15009,45 ,2,15010,625720 ,2,15011,45 ,2,15007,1870 ,2,15008,625735 ,2,15009,45 ,2,15010,625730 ,2,15011,45 ,2,15007,1870 ,2,15008,625755 ,2,15009,45 ,2,15010,625750 ,2,15011,45 ,2,15007,1870 ,2,15008,625755 ,2,15009,45 ,2,15010,625750 ,2,15011,45 ,2,15007,1870 ,2,15008,625745 ,2,15009,45 ,2,15010,625740 ,2,15011,45 ,2,15007,1870 ,2,15008,625830 ,2,15009,45 ,2,15010,625825 ,2,15011,45 ,2,15007,1870 ,2,15008,625840 ,2,15009,45 ,2,15010,625835 ,2,15011,45 ,2,15007,1870 ,2,15008,625860 ,2,15009,45 ,2,15010,625855 ,2,15011,45 ,2,15007,1870 ,2,15008,625870 ,2,15009,45 ,2,15010,625865 ,2,15011,45 ,2,15007,300595 ,2,15008,625840 ,2,15009,45 ,2,15010,625835 ,2,15011,45 ,2,15007,1870 ,2,15008,625880 ,2,15009,547305 ,2,15010,625875 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547305 ,2,15010,625885 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,547305 ,2,15010,625890 ,2,15011,45 ,2,15007,1870 ,2,15008,626015 ,2,15009,45 ,2,15010,626010 ,2,15011,45 ,2,15007,1870 ,2,15008,626015 ,2,15009,45 ,2,15010,626010 ,2,15011,45 ,2,15007,1870 ,2,15008,625930 ,2,15009,45 ,2,15010,625925 ,2,15011,45 ,2,15007,300670 ,2,15008,625945 ,2,15009,45 ,2,15010,625940 ,2,15011,45 ,2,15007,1870 ,2,15008,625960 ,2,15009,45 ,2,15010,625955 ,2,15011,45 ,2,15007,1870 ,2,15008,625995 ,2,15009,45 ,2,15010,625990 ,2,15011,45 ,2,15007,1870 ,2,15008,626005 ,2,15009,45 ,2,15010,626000 ,2,15011,45 ,2,15007,1870 ,2,15008,625945 ,2,15009,45 ,2,15010,625940 ,2,15011,45 ,2,15007,1870 ,2,15008,625830 ,2,15009,45 ,2,15010,625825 ,2,15011,45 ,2,15007,1870 ,2,15008,626050 ,2,15009,547315 ,2,15010,626020 ,2,15011,45 ,2,15007,1870 ,2,15008,626060 ,2,15009,45 ,2,15010,626055 ,2,15011,45 ,2,15007,1870 ,2,15008,626070 ,2,15009,45 ,2,15010,626065 ,2,15011,45 ,2,15007,1870 ,2,15008,626145 ,2,15009,45 ,2,15010,626140 ,2,15011,45 ,2,15007,1870 ,2,15008,626145 ,2,15009,45 ,2,15010,626140 ,2,15011,45 ,2,15007,1870 ,2,15008,626080 ,2,15009,45 ,2,15010,626075 ,2,15011,45 ,2,15007,1870 ,2,15008,626115 ,2,15009,45 ,2,15010,626110 ,2,15011,45 ,2,15007,1870 ,2,15008,626135 ,2,15009,45 ,2,15010,626130 ,2,15011,45 ,2,15007,1870 ,2,15008,626115 ,2,15009,45 ,2,15010,626110 ,2,15011,45 ,2,15007,1870 ,2,15008,626175 ,2,15009,45 ,2,15010,626170 ,2,15011,45 ,2,15007,1870 ,2,15008,626105 ,2,15009,45 ,2,15010,626180 ,2,15011,45 ,2,15007,1870 ,2,15008,626190 ,2,15009,45 ,2,15010,626185 ,2,15011,45 ,2,15007,1870 ,2,15008,626105 ,2,15009,557755 ,2,15010,626195 ,2,15011,45 ,2,15007,1870 ,2,15008,626205 ,2,15009,45 ,2,15010,626200 ,2,15011,45 ,2,15007,1870 ,2,15008,626240 ,2,15009,45 ,2,15010,626235 ,2,15011,45 ,2,15007,1870 ,2,15008,626250 ,2,15009,45 ,2,15010,626245 ,2,15011,45 ,2,15007,1870 ,2,15008,615705 ,2,15009,45 ,2,15010,615700 ,2,15011,45 ,2,15007,1870 ,2,15008,614135 ,2,15009,45 ,2,15010,614130 ,2,15011,45 ,2,15007,1870 ,2,15008,626270 ,2,15009,547360 ,2,15010,626260 ,2,15011,45 ,2,15007,1870 ,2,15008,626295 ,2,15009,45 ,2,15010,626290 ,2,15011,45 ,2,15007,1870 ,2,15008,626270 ,2,15009,544690 ,2,15010,626300 ,2,15011,45 ,2,15007,1870 ,2,15008,626310 ,2,15009,45 ,2,15010,626305 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,547375 ,2,15010,626325 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,547380 ,2,15010,626355 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,547390 ,2,15010,626365 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,547420 ,2,15010,626375 ,2,15011,45 ,2,15007,1870 ,2,15008,626385 ,2,15009,45 ,2,15010,626380 ,2,15011,45 ,2,15007,1870 ,2,15008,626310 ,2,15009,45 ,2,15010,626305 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,547430 ,2,15010,626365 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,547315 ,2,15010,626390 ,2,15011,45 ,2,15007,1870 ,2,15008,626425 ,2,15009,45 ,2,15010,626420 ,2,15011,45 ,2,15007,1870 ,2,15008,626435 ,2,15009,45 ,2,15010,626430 ,2,15011,45 ,2,15007,1870 ,2,15008,626520 ,2,15009,45 ,2,15010,626515 ,2,15011,45 ,2,15007,1870 ,2,15008,626520 ,2,15009,45 ,2,15010,626515 ,2,15011,45 ,2,15007,1870 ,2,15008,626445 ,2,15009,45 ,2,15010,626440 ,2,15011,45 ,2,15007,1870 ,2,15008,626455 ,2,15009,45 ,2,15010,626450 ,2,15011,45 ,2,15007,301880 ,2,15008,626490 ,2,15009,45 ,2,15010,626485 ,2,15011,45 ,2,15007,1870 ,2,15008,626505 ,2,15009,45 ,2,15010,626495 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547435 ,2,15010,626510 ,2,15011,45 ,2,15007,1870 ,2,15008,626490 ,2,15009,45 ,2,15010,626485 ,2,15011,45 ,2,15007,1870 ,2,15008,626445 ,2,15009,45 ,2,15010,626440 ,2,15011,45 ,2,15007,1870 ,2,15008,626455 ,2,15009,45 ,2,15010,626450 ,2,15011,45 ,2,15007,1870 ,2,15008,626435 ,2,15009,45 ,2,15010,626430 ,2,15011,45 ,2,15007,1870 ,2,15008,626540 ,2,15009,45 ,2,15010,626535 ,2,15011,45 ,2,15007,1870 ,2,15008,626550 ,2,15009,45 ,2,15010,626545 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547445 ,2,15010,626555 ,2,15011,45 ,2,15007,303065 ,2,15008,626885 ,2,15009,45 ,2,15010,626855 ,2,15011,45 ,2,15007,1870 ,2,15008,626885 ,2,15009,45 ,2,15010,626855 ,2,15011,45 ,2,15007,1870 ,2,15008,626570 ,2,15009,45 ,2,15010,626565 ,2,15011,45 ,2,15007,1870 ,2,15008,626630 ,2,15009,45 ,2,15010,626625 ,2,15011,45 ,2,15007,1870 ,2,15008,626630 ,2,15009,45 ,2,15010,626625 ,2,15011,45 ,2,15007,1870 ,2,15008,626640 ,2,15009,45 ,2,15010,626635 ,2,15011,45 ,2,15007,1870 ,2,15008,626640 ,2,15009,45 ,2,15010,626635 ,2,15011,45 ,2,15007,1870 ,2,15008,626655 ,2,15009,45 ,2,15010,626650 ,2,15011,45 ,2,15007,1870 ,2,15008,626570 ,2,15009,45 ,2,15010,626565 ,2,15011,45 ,2,15007,1870 ,2,15008,626655 ,2,15009,45 ,2,15010,626650 ,2,15011,45 ,2,15007,1870 ,2,15008,626665 ,2,15009,45 ,2,15010,626660 ,2,15011,45 ,2,15007,1870 ,2,15008,626665 ,2,15009,45 ,2,15010,626660 ,2,15011,45 ,2,15007,1870 ,2,15008,626700 ,2,15009,45 ,2,15010,626695 ,2,15011,45 ,2,15007,1870 ,2,15008,626700 ,2,15009,45 ,2,15010,626695 ,2,15011,45 ,2,15007,1870 ,2,15008,626710 ,2,15009,45 ,2,15010,626705 ,2,15011,45 ,2,15007,1870 ,2,15008,626710 ,2,15009,45 ,2,15010,626705 ,2,15011,45 ,2,15007,1870 ,2,15008,626720 ,2,15009,45 ,2,15010,626715 ,2,15011,45 ,2,15007,1870 ,2,15008,626720 ,2,15009,45 ,2,15010,626715 ,2,15011,45 ,2,15007,1870 ,2,15008,626730 ,2,15009,45 ,2,15010,626725 ,2,15011,45 ,2,15007,1870 ,2,15008,626730 ,2,15009,45 ,2,15010,626725 ,2,15011,45 ,2,15007,1870 ,2,15008,626750 ,2,15009,45 ,2,15010,626745 ,2,15011,45 ,2,15007,1870 ,2,15008,626750 ,2,15009,45 ,2,15010,626745 ,2,15011,45 ,2,15007,1870 ,2,15008,626760 ,2,15009,45 ,2,15010,626755 ,2,15011,45 ,2,15007,1870 ,2,15008,626760 ,2,15009,45 ,2,15010,626755 ,2,15011,45 ,2,15007,1870 ,2,15008,626790 ,2,15009,45 ,2,15010,626785 ,2,15011,45 ,2,15007,1870 ,2,15008,626815 ,2,15009,45 ,2,15010,626795 ,2,15011,45 ,2,15007,1870 ,2,15008,626825 ,2,15009,45 ,2,15010,626820 ,2,15011,45 ,2,15007,1870 ,2,15008,626825 ,2,15009,45 ,2,15010,626820 ,2,15011,45 ,2,15007,1870 ,2,15008,626815 ,2,15009,45 ,2,15010,626795 ,2,15011,45 ,2,15007,1870 ,2,15008,626845 ,2,15009,45 ,2,15010,626840 ,2,15011,45 ,2,15007,1870 ,2,15008,626845 ,2,15009,45 ,2,15010,626840 ,2,15011,45 ,2,15007,303025 ,2,15008,626790 ,2,15009,45 ,2,15010,626785 ,2,15011,45 ,2,15007,1870 ,2,15008,626895 ,2,15009,45 ,2,15010,626890 ,2,15011,45 ,2,15007,1870 ,2,15008,626925 ,2,15009,45 ,2,15010,626920 ,2,15011,45 ,2,15007,1870 ,2,15008,626925 ,2,15009,45 ,2,15010,626920 ,2,15011,45 ,2,15007,1870 ,2,15008,627040 ,2,15009,45 ,2,15010,627035 ,2,15011,45 ,2,15007,1870 ,2,15008,627040 ,2,15009,45 ,2,15010,627035 ,2,15011,45 ,2,15007,1870 ,2,15008,627030 ,2,15009,45 ,2,15010,627025 ,2,15011,45 ,2,15007,1870 ,2,15008,627030 ,2,15009,45 ,2,15010,627025 ,2,15011,45 ,2,15007,1870 ,2,15008,626985 ,2,15009,45 ,2,15010,626980 ,2,15011,45 ,2,15007,1870 ,2,15008,626985 ,2,15009,45 ,2,15010,626980 ,2,15011,45 ,2,15007,1870 ,2,15008,626975 ,2,15009,45 ,2,15010,626970 ,2,15011,45 ,2,15007,1870 ,2,15008,626975 ,2,15009,45 ,2,15010,626970 ,2,15011,45 ,2,15007,1870 ,2,15008,626965 ,2,15009,45 ,2,15010,626960 ,2,15011,45 ,2,15007,1870 ,2,15008,626965 ,2,15009,45 ,2,15010,626960 ,2,15011,45 ,2,15007,303165 ,2,15008,626505 ,2,15009,45 ,2,15010,626495 ,2,15011,45 ,2,15007,1870 ,2,15008,627055 ,2,15009,45 ,2,15010,627050 ,2,15011,45 ,2,15007,1870 ,2,15008,628435 ,2,15009,45 ,2,15010,628430 ,2,15011,45 ,2,15007,1870 ,2,15008,628435 ,2,15009,45 ,2,15010,628430 ,2,15011,45 ,2,15007,1870 ,2,15008,627090 ,2,15009,45 ,2,15010,627085 ,2,15011,45 ,2,15007,1870 ,2,15008,627090 ,2,15009,45 ,2,15010,627085 ,2,15011,45 ,2,15007,1870 ,2,15008,627100 ,2,15009,45 ,2,15010,627095 ,2,15011,45 ,2,15007,303325 ,2,15008,627115 ,2,15009,45 ,2,15010,627110 ,2,15011,45 ,2,15007,1870 ,2,15008,627200 ,2,15009,45 ,2,15010,627190 ,2,15011,45 ,2,15007,1870 ,2,15008,627200 ,2,15009,45 ,2,15010,627190 ,2,15011,45 ,2,15007,1870 ,2,15008,627145 ,2,15009,547450 ,2,15010,627120 ,2,15011,45 ,2,15007,1870 ,2,15008,627145 ,2,15009,547455 ,2,15010,627125 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,547450 ,2,15010,627150 ,2,15011,45 ,2,15007,1870 ,2,15008,627160 ,2,15009,45 ,2,15010,627155 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,547460 ,2,15010,627175 ,2,15011,45 ,2,15007,304035 ,2,15008,627160 ,2,15009,45 ,2,15010,627155 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,547475 ,2,15010,627180 ,2,15011,45 ,2,15007,304070 ,2,15008,627055 ,2,15009,45 ,2,15010,627050 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547475 ,2,15010,627205 ,2,15011,45 ,2,15007,1870 ,2,15008,627115 ,2,15009,45 ,2,15010,627110 ,2,15011,45 ,2,15007,1870 ,2,15008,627215 ,2,15009,45 ,2,15010,627210 ,2,15011,45 ,2,15007,1870 ,2,15008,627225 ,2,15009,45 ,2,15010,627220 ,2,15011,45 ,2,15007,1870 ,2,15008,627235 ,2,15009,45 ,2,15010,627230 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547480 ,2,15010,627285 ,2,15011,45 ,2,15007,304185 ,2,15008,627295 ,2,15009,45 ,2,15010,627290 ,2,15011,45 ,2,15007,1870 ,2,15008,627310 ,2,15009,45 ,2,15010,627300 ,2,15011,45 ,2,15007,1870 ,2,15008,627320 ,2,15009,45 ,2,15010,627315 ,2,15011,45 ,2,15007,1870 ,2,15008,627320 ,2,15009,45 ,2,15010,627315 ,2,15011,45 ,2,15007,1870 ,2,15008,627370 ,2,15009,45 ,2,15010,627365 ,2,15011,45 ,2,15007,1870 ,2,15008,627380 ,2,15009,45 ,2,15010,627375 ,2,15011,45 ,2,15007,1870 ,2,15008,627390 ,2,15009,45 ,2,15010,627385 ,2,15011,45 ,2,15007,1870 ,2,15008,627360 ,2,15009,547515 ,2,15010,627440 ,2,15011,45 ,2,15007,1870 ,2,15008,627470 ,2,15009,544690 ,2,15010,627455 ,2,15011,45 ,2,15007,1870 ,2,15008,616370 ,2,15009,544690 ,2,15010,627475 ,2,15011,45 ,2,15007,1870 ,2,15008,627485 ,2,15009,45 ,2,15010,627480 ,2,15011,45 ,2,15007,1870 ,2,15008,627500 ,2,15009,45 ,2,15010,627495 ,2,15011,45 ,2,15007,1870 ,2,15008,628175 ,2,15009,45 ,2,15010,628170 ,2,15011,45 ,2,15007,1870 ,2,15008,628175 ,2,15009,45 ,2,15010,628170 ,2,15011,45 ,2,15007,1870 ,2,15008,627510 ,2,15009,45 ,2,15010,627505 ,2,15011,45 ,2,15007,1870 ,2,15008,627545 ,2,15009,547550 ,2,15010,627535 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547550 ,2,15010,627550 ,2,15011,45 ,2,15007,1870 ,2,15008,627560 ,2,15009,45 ,2,15010,627555 ,2,15011,45 ,2,15007,304400 ,2,15008,627570 ,2,15009,45 ,2,15010,627565 ,2,15011,45 ,2,15007,1870 ,2,15008,627605 ,2,15009,45 ,2,15010,627600 ,2,15011,45 ,2,15007,1870 ,2,15008,627615 ,2,15009,45 ,2,15010,627610 ,2,15011,45 ,2,15007,1870 ,2,15008,627630 ,2,15009,45 ,2,15010,627625 ,2,15011,45 ,2,15007,1870 ,2,15008,627665 ,2,15009,45 ,2,15010,627635 ,2,15011,45 ,2,15007,1870 ,2,15008,627680 ,2,15009,547565 ,2,15010,627670 ,2,15011,45 ,2,15007,1870 ,2,15008,627755 ,2,15009,547565 ,2,15010,627750 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,547575 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,627755 ,2,15009,547580 ,2,15010,627695 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,547580 ,2,15010,627705 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547580 ,2,15010,627710 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547610 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,547580 ,2,15010,627745 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547565 ,2,15010,627785 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547620 ,2,15010,627760 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,547620 ,2,15010,627780 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,547565 ,2,15010,627820 ,2,15011,45 ,2,15007,304715 ,2,15008,627835 ,2,15009,547630 ,2,15010,627825 ,2,15011,45 ,2,15007,1870 ,2,15008,627835 ,2,15009,547630 ,2,15010,627845 ,2,15011,45 ,2,15007,1870 ,2,15008,627860 ,2,15009,547675 ,2,15010,627850 ,2,15011,45 ,2,15007,1870 ,2,15008,627680 ,2,15009,547675 ,2,15010,627905 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547690 ,2,15010,627920 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547675 ,2,15010,627935 ,2,15011,45 ,2,15007,1870 ,2,15008,627950 ,2,15009,547700 ,2,15010,627940 ,2,15011,45 ,2,15007,1870 ,2,15008,627680 ,2,15009,547700 ,2,15010,627970 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547715 ,2,15010,627920 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547700 ,2,15010,627975 ,2,15011,45 ,2,15007,1870 ,2,15008,627790 ,2,15009,547740 ,2,15010,627920 ,2,15011,45 ,2,15007,1870 ,2,15008,627615 ,2,15009,45 ,2,15010,627610 ,2,15011,45 ,2,15007,1870 ,2,15008,627985 ,2,15009,45 ,2,15010,627980 ,2,15011,45 ,2,15007,305050 ,2,15008,627510 ,2,15009,45 ,2,15010,627505 ,2,15011,45 ,2,15007,1870 ,2,15008,628000 ,2,15009,45 ,2,15010,627995 ,2,15011,45 ,2,15007,1870 ,2,15008,628010 ,2,15009,45 ,2,15010,628005 ,2,15011,45 ,2,15007,1870 ,2,15008,628040 ,2,15009,547795 ,2,15010,628030 ,2,15011,45 ,2,15007,1870 ,2,15008,627570 ,2,15009,45 ,2,15010,627565 ,2,15011,45 ,2,15007,1870 ,2,15008,628055 ,2,15009,547810 ,2,15010,628045 ,2,15011,45 ,2,15007,1870 ,2,15008,628065 ,2,15009,45 ,2,15010,628060 ,2,15011,45 ,2,15007,1870 ,2,15008,628105 ,2,15009,45 ,2,15010,628100 ,2,15011,45 ,2,15007,1870 ,2,15008,628115 ,2,15009,45 ,2,15010,628110 ,2,15011,45 ,2,15007,1870 ,2,15008,628130 ,2,15009,45 ,2,15010,628125 ,2,15011,45 ,2,15007,1870 ,2,15008,627545 ,2,15009,547865 ,2,15010,628140 ,2,15011,45 ,2,15007,1870 ,2,15008,619955 ,2,15009,45 ,2,15010,619950 ,2,15011,45 ,2,15007,1870 ,2,15008,628105 ,2,15009,45 ,2,15010,628100 ,2,15011,45 ,2,15007,1870 ,2,15008,627560 ,2,15009,45 ,2,15010,627555 ,2,15011,45 ,2,15007,1870 ,2,15008,627605 ,2,15009,45 ,2,15010,627600 ,2,15011,45 ,2,15007,1870 ,2,15008,628000 ,2,15009,45 ,2,15010,627995 ,2,15011,45 ,2,15007,1870 ,2,15008,627500 ,2,15009,45 ,2,15010,627495 ,2,15011,45 ,2,15007,1870 ,2,15008,627235 ,2,15009,45 ,2,15010,627230 ,2,15011,45 ,2,15007,1870 ,2,15008,628190 ,2,15009,45 ,2,15010,628180 ,2,15011,45 ,2,15007,1870 ,2,15008,628200 ,2,15009,45 ,2,15010,628195 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,547875 ,2,15010,628205 ,2,15011,45 ,2,15007,305710 ,2,15008,628200 ,2,15009,45 ,2,15010,628195 ,2,15011,45 ,2,15007,1870 ,2,15008,628230 ,2,15009,45 ,2,15010,628225 ,2,15011,45 ,2,15007,1870 ,2,15008,628255 ,2,15009,45 ,2,15010,628250 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,547935 ,2,15010,628290 ,2,15011,45 ,2,15007,305865 ,2,15008,628300 ,2,15009,45 ,2,15010,628295 ,2,15011,45 ,2,15007,1870 ,2,15008,628300 ,2,15009,45 ,2,15010,628295 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,547940 ,2,15010,628305 ,2,15011,45 ,2,15007,1870 ,2,15008,628255 ,2,15009,45 ,2,15010,628250 ,2,15011,45 ,2,15007,1870 ,2,15008,628315 ,2,15009,45 ,2,15010,628310 ,2,15011,45 ,2,15007,1870 ,2,15008,628315 ,2,15009,45 ,2,15010,628310 ,2,15011,45 ,2,15007,1870 ,2,15008,628350 ,2,15009,547945 ,2,15010,628320 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547945 ,2,15010,628355 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,547960 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,547945 ,2,15010,628360 ,2,15011,45 ,2,15007,1870 ,2,15008,628190 ,2,15009,45 ,2,15010,628180 ,2,15011,45 ,2,15007,1870 ,2,15008,627485 ,2,15009,45 ,2,15010,627480 ,2,15011,45 ,2,15007,1870 ,2,15008,627295 ,2,15009,45 ,2,15010,627290 ,2,15011,45 ,2,15007,1870 ,2,15008,627380 ,2,15009,45 ,2,15010,627375 ,2,15011,45 ,2,15007,1870 ,2,15008,628425 ,2,15009,45 ,2,15010,628420 ,2,15011,45 ,2,15007,1870 ,2,15008,628445 ,2,15009,45 ,2,15010,628440 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,547990 ,2,15010,628450 ,2,15011,45 ,2,15007,1870 ,2,15008,628445 ,2,15009,45 ,2,15010,628440 ,2,15011,45 ,2,15007,1870 ,2,15008,628470 ,2,15009,45 ,2,15010,628465 ,2,15011,45 ,2,15007,1870 ,2,15008,628480 ,2,15009,45 ,2,15010,628475 ,2,15011,45 ,2,15007,1870 ,2,15008,628490 ,2,15009,45 ,2,15010,628485 ,2,15011,45 ,2,15007,1870 ,2,15008,628500 ,2,15009,45 ,2,15010,628495 ,2,15011,45 ,2,15007,1870 ,2,15008,628530 ,2,15009,547475 ,2,15010,628525 ,2,15011,45 ,2,15007,1870 ,2,15008,616285 ,2,15009,547475 ,2,15010,628535 ,2,15011,45 ,2,15007,1870 ,2,15008,628545 ,2,15009,45 ,2,15010,628540 ,2,15011,45 ,2,15007,306820 ,2,15008,628650 ,2,15009,45 ,2,15010,628645 ,2,15011,45 ,2,15007,1870 ,2,15008,628650 ,2,15009,45 ,2,15010,628645 ,2,15011,45 ,2,15007,1870 ,2,15008,628595 ,2,15009,547995 ,2,15010,628555 ,2,15011,45 ,2,15007,1870 ,2,15008,628605 ,2,15009,45 ,2,15010,628600 ,2,15011,45 ,2,15007,1870 ,2,15008,628605 ,2,15009,45 ,2,15010,628600 ,2,15011,45 ,2,15007,1870 ,2,15008,628620 ,2,15009,548005 ,2,15010,628610 ,2,15011,45 ,2,15007,306795 ,2,15008,628630 ,2,15009,45 ,2,15010,628625 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619055 ,2,15011,101545 ,2,15007,306880 ,2,15008,620715 ,2,15009,45 ,2,15010,620710 ,2,15011,45 ,2,15007,1870 ,2,15008,629530 ,2,15009,45 ,2,15010,629525 ,2,15011,45 ,2,15007,1870 ,2,15008,629530 ,2,15009,45 ,2,15010,629525 ,2,15011,45 ,2,15007,1870 ,2,15008,628980 ,2,15009,45 ,2,15010,628965 ,2,15011,45 ,2,15007,1870 ,2,15008,628980 ,2,15009,45 ,2,15010,628965 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,548015 ,2,15010,628660 ,2,15011,45 ,2,15007,307735 ,2,15008,628960 ,2,15009,45 ,2,15010,628955 ,2,15011,45 ,2,15007,1870 ,2,15008,628960 ,2,15009,45 ,2,15010,628955 ,2,15011,45 ,2,15007,1870 ,2,15008,628680 ,2,15009,548025 ,2,15010,628675 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,548020 ,2,15010,628715 ,2,15011,45 ,2,15007,1870 ,2,15008,628725 ,2,15009,45 ,2,15010,628720 ,2,15011,45 ,2,15007,1870 ,2,15008,628725 ,2,15009,45 ,2,15010,628720 ,2,15011,45 ,2,15007,307025 ,2,15008,628740 ,2,15009,45 ,2,15010,628735 ,2,15011,45 ,2,15007,1870 ,2,15008,628740 ,2,15009,45 ,2,15010,628735 ,2,15011,45 ,2,15007,1870 ,2,15008,628770 ,2,15009,45 ,2,15010,628745 ,2,15011,45 ,2,15007,1870 ,2,15008,628770 ,2,15009,45 ,2,15010,628745 ,2,15011,45 ,2,15007,1870 ,2,15008,628780 ,2,15009,45 ,2,15010,628775 ,2,15011,45 ,2,15007,1870 ,2,15008,628780 ,2,15009,45 ,2,15010,628775 ,2,15011,45 ,2,15007,1870 ,2,15008,628790 ,2,15009,45 ,2,15010,628785 ,2,15011,45 ,2,15007,1870 ,2,15008,628790 ,2,15009,45 ,2,15010,628785 ,2,15011,45 ,2,15007,1870 ,2,15008,628800 ,2,15009,45 ,2,15010,628795 ,2,15011,45 ,2,15007,1870 ,2,15008,628835 ,2,15009,45 ,2,15010,628805 ,2,15011,45 ,2,15007,1870 ,2,15008,628850 ,2,15009,548045 ,2,15010,628840 ,2,15011,45 ,2,15007,1870 ,2,15008,628870 ,2,15009,45 ,2,15010,628865 ,2,15011,45 ,2,15007,1870 ,2,15008,627360 ,2,15009,548045 ,2,15010,628875 ,2,15011,45 ,2,15007,1870 ,2,15008,628850 ,2,15009,548055 ,2,15010,628895 ,2,15011,45 ,2,15007,1870 ,2,15008,628905 ,2,15009,45 ,2,15010,628900 ,2,15011,45 ,2,15007,1870 ,2,15008,628870 ,2,15009,45 ,2,15010,628865 ,2,15011,45 ,2,15007,1870 ,2,15008,628915 ,2,15009,45 ,2,15010,628910 ,2,15011,45 ,2,15007,1870 ,2,15008,628835 ,2,15009,45 ,2,15010,628805 ,2,15011,45 ,2,15007,1870 ,2,15008,628990 ,2,15009,45 ,2,15010,628985 ,2,15011,45 ,2,15007,1870 ,2,15008,629015 ,2,15009,45 ,2,15010,629010 ,2,15011,45 ,2,15007,1870 ,2,15008,629025 ,2,15009,45 ,2,15010,629020 ,2,15011,45 ,2,15007,1870 ,2,15008,629040 ,2,15009,45 ,2,15010,629035 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,557715 ,2,15010,629045 ,2,15011,45 ,2,15007,1870 ,2,15008,629095 ,2,15009,45 ,2,15010,629050 ,2,15011,45 ,2,15007,307875 ,2,15008,629040 ,2,15009,45 ,2,15010,629035 ,2,15011,45 ,2,15007,1870 ,2,15008,629105 ,2,15009,45 ,2,15010,629100 ,2,15011,45 ,2,15007,1870 ,2,15008,629105 ,2,15009,45 ,2,15010,629100 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548065 ,2,15010,629125 ,2,15011,45 ,2,15007,308315 ,2,15008,629520 ,2,15009,45 ,2,15010,629515 ,2,15011,45 ,2,15007,1870 ,2,15008,629520 ,2,15009,45 ,2,15010,629515 ,2,15011,45 ,2,15007,1870 ,2,15008,629135 ,2,15009,45 ,2,15010,629130 ,2,15011,45 ,2,15007,1870 ,2,15008,629155 ,2,15009,45 ,2,15010,629140 ,2,15011,45 ,2,15007,1870 ,2,15008,629290 ,2,15009,45 ,2,15010,629285 ,2,15011,45 ,2,15007,1870 ,2,15008,629290 ,2,15009,45 ,2,15010,629285 ,2,15011,45 ,2,15007,1870 ,2,15008,629165 ,2,15009,45 ,2,15010,629160 ,2,15011,45 ,2,15007,1870 ,2,15008,629175 ,2,15009,45 ,2,15010,629170 ,2,15011,45 ,2,15007,1870 ,2,15008,629185 ,2,15009,45 ,2,15010,629180 ,2,15011,45 ,2,15007,1870 ,2,15008,629185 ,2,15009,45 ,2,15010,629180 ,2,15011,45 ,2,15007,307985 ,2,15008,629220 ,2,15009,45 ,2,15010,629190 ,2,15011,45 ,2,15007,1870 ,2,15008,629230 ,2,15009,45 ,2,15010,629225 ,2,15011,45 ,2,15007,1870 ,2,15008,629255 ,2,15009,548070 ,2,15010,629235 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,548075 ,2,15010,629260 ,2,15011,45 ,2,15007,1870 ,2,15008,629175 ,2,15009,45 ,2,15010,629170 ,2,15011,45 ,2,15007,1870 ,2,15008,629220 ,2,15009,45 ,2,15010,629190 ,2,15011,45 ,2,15007,1870 ,2,15008,629300 ,2,15009,45 ,2,15010,629295 ,2,15011,45 ,2,15007,1870 ,2,15008,629315 ,2,15009,45 ,2,15010,629310 ,2,15011,45 ,2,15007,1870 ,2,15008,629325 ,2,15009,45 ,2,15010,629320 ,2,15011,45 ,2,15007,1870 ,2,15008,629300 ,2,15009,45 ,2,15010,629295 ,2,15011,45 ,2,15007,1870 ,2,15008,629360 ,2,15009,548120 ,2,15010,629375 ,2,15011,45 ,2,15007,1870 ,2,15008,629155 ,2,15009,45 ,2,15010,629140 ,2,15011,45 ,2,15007,1870 ,2,15008,629385 ,2,15009,45 ,2,15010,629380 ,2,15011,45 ,2,15007,1870 ,2,15008,615175 ,2,15009,548065 ,2,15010,629390 ,2,15011,45 ,2,15007,1870 ,2,15008,629425 ,2,15009,45 ,2,15010,629420 ,2,15011,45 ,2,15007,1870 ,2,15008,629135 ,2,15009,45 ,2,15010,629130 ,2,15011,45 ,2,15007,1870 ,2,15008,629435 ,2,15009,45 ,2,15010,629430 ,2,15011,45 ,2,15007,1870 ,2,15008,629435 ,2,15009,45 ,2,15010,629430 ,2,15011,45 ,2,15007,1870 ,2,15008,629450 ,2,15009,45 ,2,15010,629445 ,2,15011,45 ,2,15007,1870 ,2,15008,629425 ,2,15009,45 ,2,15010,629420 ,2,15011,45 ,2,15007,1870 ,2,15008,629490 ,2,15009,45 ,2,15010,629455 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629495 ,2,15011,104460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629500 ,2,15011,104480 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629505 ,2,15011,104520 ,2,15007,1870 ,2,15008,629575 ,2,15009,548125 ,2,15010,629545 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548130 ,2,15010,629550 ,2,15011,45 ,2,15007,1870 ,2,15008,629560 ,2,15009,45 ,2,15010,629555 ,2,15011,45 ,2,15007,1870 ,2,15008,629615 ,2,15009,548125 ,2,15010,629580 ,2,15011,45 ,2,15007,1870 ,2,15008,629625 ,2,15009,45 ,2,15010,629620 ,2,15011,45 ,2,15007,1870 ,2,15008,629615 ,2,15009,548150 ,2,15010,629630 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,548160 ,2,15010,629645 ,2,15011,45 ,2,15007,308530 ,2,15008,629655 ,2,15009,45 ,2,15010,629650 ,2,15011,45 ,2,15007,1870 ,2,15008,629615 ,2,15009,548165 ,2,15010,629675 ,2,15011,45 ,2,15007,1870 ,2,15008,629685 ,2,15009,45 ,2,15010,629680 ,2,15011,45 ,2,15007,1870 ,2,15008,629615 ,2,15009,548150 ,2,15010,629630 ,2,15011,45 ,2,15007,1870 ,2,15008,629700 ,2,15009,45 ,2,15010,629690 ,2,15011,45 ,2,15007,1870 ,2,15008,629710 ,2,15009,45 ,2,15010,629705 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629740 ,2,15011,104890 ,2,15007,308650 ,2,15008,629735 ,2,15009,45 ,2,15010,629715 ,2,15011,45 ,2,15007,1870 ,2,15008,629750 ,2,15009,45 ,2,15010,629745 ,2,15011,45 ,2,15007,1870 ,2,15008,629760 ,2,15009,45 ,2,15010,629755 ,2,15011,45 ,2,15007,1870 ,2,15008,629770 ,2,15009,45 ,2,15010,629765 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629795 ,2,15011,105105 ,2,15007,1870 ,2,15008,615275 ,2,15009,548170 ,2,15010,629800 ,2,15011,45 ,2,15007,308770 ,2,15008,629810 ,2,15009,548175 ,2,15010,629805 ,2,15011,45 ,2,15007,1870 ,2,15008,629770 ,2,15009,45 ,2,15010,629765 ,2,15011,45 ,2,15007,1870 ,2,15008,629835 ,2,15009,45 ,2,15010,629830 ,2,15011,45 ,2,15007,1870 ,2,15008,629845 ,2,15009,45 ,2,15010,629840 ,2,15011,45 ,2,15007,1870 ,2,15008,629890 ,2,15009,45 ,2,15010,629885 ,2,15011,45 ,2,15007,1870 ,2,15008,629900 ,2,15009,45 ,2,15010,629895 ,2,15011,45 ,2,15007,308810 ,2,15008,629910 ,2,15009,45 ,2,15010,629905 ,2,15011,45 ,2,15007,1870 ,2,15008,629920 ,2,15009,45 ,2,15010,629915 ,2,15011,45 ,2,15007,1870 ,2,15008,629940 ,2,15009,45 ,2,15010,629935 ,2,15011,45 ,2,15007,1870 ,2,15008,629655 ,2,15009,45 ,2,15010,629650 ,2,15011,45 ,2,15007,1870 ,2,15008,629890 ,2,15009,45 ,2,15010,629885 ,2,15011,45 ,2,15007,1870 ,2,15008,630005 ,2,15009,45 ,2,15010,630000 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548170 ,2,15010,630010 ,2,15011,45 ,2,15007,1870 ,2,15008,630020 ,2,15009,45 ,2,15010,630015 ,2,15011,45 ,2,15007,1870 ,2,15008,630060 ,2,15009,45 ,2,15010,630055 ,2,15011,45 ,2,15007,1870 ,2,15008,629940 ,2,15009,45 ,2,15010,629935 ,2,15011,45 ,2,15007,1870 ,2,15008,630080 ,2,15009,45 ,2,15010,630070 ,2,15011,45 ,2,15007,1870 ,2,15008,630090 ,2,15009,45 ,2,15010,630085 ,2,15011,45 ,2,15007,1870 ,2,15008,630110 ,2,15009,45 ,2,15010,630095 ,2,15011,45 ,2,15007,1870 ,2,15008,630110 ,2,15009,45 ,2,15010,630095 ,2,15011,45 ,2,15007,1870 ,2,15008,645525 ,2,15009,45 ,2,15010,645520 ,2,15011,45 ,2,15007,1870 ,2,15008,645525 ,2,15009,45 ,2,15010,645520 ,2,15011,45 ,2,15007,1870 ,2,15008,630090 ,2,15009,45 ,2,15010,630085 ,2,15011,45 ,2,15007,1870 ,2,15008,630125 ,2,15009,548255 ,2,15010,630115 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,548255 ,2,15010,630130 ,2,15011,45 ,2,15007,1870 ,2,15008,630140 ,2,15009,45 ,2,15010,630135 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548265 ,2,15010,630145 ,2,15011,45 ,2,15007,1870 ,2,15008,645505 ,2,15009,45 ,2,15010,645500 ,2,15011,45 ,2,15007,1870 ,2,15008,645505 ,2,15009,45 ,2,15010,645500 ,2,15011,45 ,2,15007,1870 ,2,15008,630170 ,2,15009,45 ,2,15010,630165 ,2,15011,45 ,2,15007,1870 ,2,15008,645165 ,2,15009,45 ,2,15010,645160 ,2,15011,45 ,2,15007,1870 ,2,15008,645165 ,2,15009,45 ,2,15010,645160 ,2,15011,45 ,2,15007,1870 ,2,15008,630180 ,2,15009,45 ,2,15010,630175 ,2,15011,45 ,2,15007,309755 ,2,15008,630230 ,2,15009,548320 ,2,15010,630220 ,2,15011,45 ,2,15007,1870 ,2,15008,630230 ,2,15009,548270 ,2,15010,630185 ,2,15011,45 ,2,15007,1870 ,2,15008,630200 ,2,15009,548270 ,2,15010,630195 ,2,15011,45 ,2,15007,1870 ,2,15008,630200 ,2,15009,548320 ,2,15010,630235 ,2,15011,45 ,2,15007,1870 ,2,15008,629910 ,2,15009,45 ,2,15010,629905 ,2,15011,45 ,2,15007,1870 ,2,15008,620075 ,2,15009,45 ,2,15010,620070 ,2,15011,45 ,2,15007,1870 ,2,15008,630250 ,2,15009,45 ,2,15010,630245 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548330 ,2,15010,630255 ,2,15011,45 ,2,15007,340555 ,2,15008,645025 ,2,15009,45 ,2,15010,645000 ,2,15011,45 ,2,15007,1870 ,2,15008,645025 ,2,15009,45 ,2,15010,645000 ,2,15011,45 ,2,15007,1870 ,2,15008,630320 ,2,15009,45 ,2,15010,630315 ,2,15011,45 ,2,15007,1870 ,2,15008,630320 ,2,15009,45 ,2,15010,630315 ,2,15011,45 ,2,15007,1870 ,2,15008,630290 ,2,15009,45 ,2,15010,630260 ,2,15011,45 ,2,15007,1870 ,2,15008,630300 ,2,15009,45 ,2,15010,630295 ,2,15011,45 ,2,15007,1870 ,2,15008,630310 ,2,15009,45 ,2,15010,630305 ,2,15011,45 ,2,15007,1870 ,2,15008,630355 ,2,15009,45 ,2,15010,630325 ,2,15011,45 ,2,15007,1870 ,2,15008,630890 ,2,15009,45 ,2,15010,630885 ,2,15011,45 ,2,15007,1870 ,2,15008,630890 ,2,15009,45 ,2,15010,630885 ,2,15011,45 ,2,15007,1870 ,2,15008,630745 ,2,15009,45 ,2,15010,630720 ,2,15011,45 ,2,15007,1870 ,2,15008,630745 ,2,15009,45 ,2,15010,630720 ,2,15011,45 ,2,15007,1870 ,2,15008,630710 ,2,15009,45 ,2,15010,630705 ,2,15011,45 ,2,15007,1870 ,2,15008,630710 ,2,15009,45 ,2,15010,630705 ,2,15011,45 ,2,15007,1870 ,2,15008,630375 ,2,15009,548340 ,2,15010,630360 ,2,15011,45 ,2,15007,309900 ,2,15008,630370 ,2,15009,45 ,2,15010,630365 ,2,15011,45 ,2,15007,1870 ,2,15008,630385 ,2,15009,548340 ,2,15010,630380 ,2,15011,45 ,2,15007,1870 ,2,15008,630385 ,2,15009,548340 ,2,15010,630380 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548340 ,2,15010,630435 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,548340 ,2,15010,630550 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548365 ,2,15010,630450 ,2,15011,45 ,2,15007,1870 ,2,15008,630490 ,2,15009,45 ,2,15010,630455 ,2,15011,45 ,2,15007,1870 ,2,15008,624370 ,2,15009,45 ,2,15010,624365 ,2,15011,45 ,2,15007,1870 ,2,15008,630500 ,2,15009,45 ,2,15010,630495 ,2,15011,45 ,2,15007,1870 ,2,15008,629750 ,2,15009,45 ,2,15010,629745 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548375 ,2,15010,630520 ,2,15011,45 ,2,15007,1870 ,2,15008,624355 ,2,15009,45 ,2,15010,624350 ,2,15011,45 ,2,15007,1870 ,2,15008,630545 ,2,15009,45 ,2,15010,630525 ,2,15011,45 ,2,15007,1870 ,2,15008,630575 ,2,15009,548390 ,2,15010,630560 ,2,15011,45 ,2,15007,310075 ,2,15008,630570 ,2,15009,45 ,2,15010,630565 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548390 ,2,15010,630580 ,2,15011,45 ,2,15007,1870 ,2,15008,630600 ,2,15009,45 ,2,15010,630595 ,2,15011,45 ,2,15007,1870 ,2,15008,630370 ,2,15009,45 ,2,15010,630365 ,2,15011,45 ,2,15007,1870 ,2,15008,630375 ,2,15009,548340 ,2,15010,630360 ,2,15011,45 ,2,15007,1870 ,2,15008,630610 ,2,15009,45 ,2,15010,630605 ,2,15011,45 ,2,15007,1870 ,2,15008,630005 ,2,15009,45 ,2,15010,630000 ,2,15011,45 ,2,15007,1870 ,2,15008,630620 ,2,15009,45 ,2,15010,630615 ,2,15011,45 ,2,15007,1870 ,2,15008,630630 ,2,15009,45 ,2,15010,630625 ,2,15011,45 ,2,15007,1870 ,2,15008,630620 ,2,15009,45 ,2,15010,630615 ,2,15011,45 ,2,15007,1870 ,2,15008,630630 ,2,15009,45 ,2,15010,630625 ,2,15011,45 ,2,15007,1870 ,2,15008,630610 ,2,15009,45 ,2,15010,630605 ,2,15011,45 ,2,15007,1870 ,2,15008,630570 ,2,15009,45 ,2,15010,630565 ,2,15011,45 ,2,15007,1870 ,2,15008,630575 ,2,15009,548390 ,2,15010,630560 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,548395 ,2,15010,630675 ,2,15011,45 ,2,15007,1870 ,2,15008,630690 ,2,15009,548015 ,2,15010,630685 ,2,15011,45 ,2,15007,1870 ,2,15008,630690 ,2,15009,548015 ,2,15010,630685 ,2,15011,45 ,2,15007,1870 ,2,15008,628680 ,2,15009,548015 ,2,15010,630680 ,2,15011,45 ,2,15007,1870 ,2,15008,628710 ,2,15009,548395 ,2,15010,630715 ,2,15011,45 ,2,15007,1870 ,2,15008,630755 ,2,15009,45 ,2,15010,630750 ,2,15011,45 ,2,15007,1870 ,2,15008,630765 ,2,15009,45 ,2,15010,630760 ,2,15011,45 ,2,15007,1870 ,2,15008,630775 ,2,15009,45 ,2,15010,630770 ,2,15011,45 ,2,15007,1870 ,2,15008,630775 ,2,15009,45 ,2,15010,630770 ,2,15011,45 ,2,15007,1870 ,2,15008,630880 ,2,15009,45 ,2,15010,630875 ,2,15011,45 ,2,15007,1870 ,2,15008,630880 ,2,15009,45 ,2,15010,630875 ,2,15011,45 ,2,15007,1870 ,2,15008,630820 ,2,15009,45 ,2,15010,630815 ,2,15011,45 ,2,15007,1870 ,2,15008,630830 ,2,15009,45 ,2,15010,630825 ,2,15011,45 ,2,15007,1870 ,2,15008,630830 ,2,15009,45 ,2,15010,630825 ,2,15011,45 ,2,15007,1870 ,2,15008,630840 ,2,15009,45 ,2,15010,630835 ,2,15011,45 ,2,15007,1870 ,2,15008,630840 ,2,15009,45 ,2,15010,630835 ,2,15011,45 ,2,15007,1870 ,2,15008,630850 ,2,15009,45 ,2,15010,630845 ,2,15011,45 ,2,15007,1870 ,2,15008,630850 ,2,15009,45 ,2,15010,630845 ,2,15011,45 ,2,15007,1870 ,2,15008,630905 ,2,15009,45 ,2,15010,630900 ,2,15011,45 ,2,15007,1870 ,2,15008,631220 ,2,15009,45 ,2,15010,631215 ,2,15011,45 ,2,15007,1870 ,2,15008,631220 ,2,15009,45 ,2,15010,631215 ,2,15011,45 ,2,15007,1870 ,2,15008,630970 ,2,15009,45 ,2,15010,630965 ,2,15011,45 ,2,15007,1870 ,2,15008,630970 ,2,15009,45 ,2,15010,630965 ,2,15011,45 ,2,15007,1870 ,2,15008,630960 ,2,15009,45 ,2,15010,630955 ,2,15011,45 ,2,15007,1870 ,2,15008,630960 ,2,15009,45 ,2,15010,630955 ,2,15011,45 ,2,15007,1870 ,2,15008,630945 ,2,15009,45 ,2,15010,630940 ,2,15011,45 ,2,15007,1870 ,2,15008,630945 ,2,15009,45 ,2,15010,630940 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,548400 ,2,15010,630910 ,2,15011,45 ,2,15007,1870 ,2,15008,630935 ,2,15009,548015 ,2,15010,630915 ,2,15011,45 ,2,15007,1870 ,2,15008,630935 ,2,15009,548015 ,2,15010,630915 ,2,15011,45 ,2,15007,1870 ,2,15008,628710 ,2,15009,548400 ,2,15010,630950 ,2,15011,45 ,2,15007,1870 ,2,15008,627310 ,2,15009,45 ,2,15010,627300 ,2,15011,45 ,2,15007,1870 ,2,15008,631020 ,2,15009,45 ,2,15010,631015 ,2,15011,45 ,2,15007,1870 ,2,15008,631030 ,2,15009,45 ,2,15010,631025 ,2,15011,45 ,2,15007,1870 ,2,15008,631040 ,2,15009,45 ,2,15010,631035 ,2,15011,45 ,2,15007,1870 ,2,15008,631050 ,2,15009,45 ,2,15010,631045 ,2,15011,45 ,2,15007,1870 ,2,15008,631070 ,2,15009,45 ,2,15010,631065 ,2,15011,45 ,2,15007,1870 ,2,15008,631080 ,2,15009,45 ,2,15010,631075 ,2,15011,45 ,2,15007,1870 ,2,15008,630290 ,2,15009,45 ,2,15010,630260 ,2,15011,45 ,2,15007,1870 ,2,15008,631095 ,2,15009,45 ,2,15010,631090 ,2,15011,45 ,2,15007,1870 ,2,15008,619840 ,2,15009,45 ,2,15010,619835 ,2,15011,45 ,2,15007,311490 ,2,15008,631080 ,2,15009,45 ,2,15010,631075 ,2,15011,45 ,2,15007,1870 ,2,15008,620350 ,2,15009,45 ,2,15010,620345 ,2,15011,45 ,2,15007,1870 ,2,15008,631140 ,2,15009,45 ,2,15010,631100 ,2,15011,45 ,2,15007,1870 ,2,15008,631185 ,2,15009,45 ,2,15010,631180 ,2,15011,45 ,2,15007,1870 ,2,15008,631185 ,2,15009,45 ,2,15010,631180 ,2,15011,45 ,2,15007,1870 ,2,15008,631150 ,2,15009,45 ,2,15010,631145 ,2,15011,45 ,2,15007,1870 ,2,15008,631170 ,2,15009,45 ,2,15010,631155 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,548405 ,2,15010,631175 ,2,15011,45 ,2,15007,311675 ,2,15008,631150 ,2,15009,45 ,2,15010,631145 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,548420 ,2,15010,631225 ,2,15011,45 ,2,15007,1870 ,2,15008,631240 ,2,15009,45 ,2,15010,631230 ,2,15011,45 ,2,15007,1870 ,2,15008,631250 ,2,15009,45 ,2,15010,631245 ,2,15011,45 ,2,15007,1870 ,2,15008,644045 ,2,15009,45 ,2,15010,644030 ,2,15011,45 ,2,15007,1870 ,2,15008,644045 ,2,15009,45 ,2,15010,644030 ,2,15011,45 ,2,15007,1870 ,2,15008,643495 ,2,15009,45 ,2,15010,643490 ,2,15011,45 ,2,15007,1870 ,2,15008,643495 ,2,15009,45 ,2,15010,643490 ,2,15011,45 ,2,15007,1870 ,2,15008,643485 ,2,15009,45 ,2,15010,643475 ,2,15011,45 ,2,15007,1870 ,2,15008,643485 ,2,15009,45 ,2,15010,643475 ,2,15011,45 ,2,15007,1870 ,2,15008,643470 ,2,15009,45 ,2,15010,643465 ,2,15011,45 ,2,15007,1870 ,2,15008,643470 ,2,15009,45 ,2,15010,643465 ,2,15011,45 ,2,15007,1870 ,2,15008,631285 ,2,15009,45 ,2,15010,631255 ,2,15011,45 ,2,15007,1870 ,2,15008,631295 ,2,15009,45 ,2,15010,631290 ,2,15011,45 ,2,15007,1870 ,2,15008,631305 ,2,15009,45 ,2,15010,631300 ,2,15011,45 ,2,15007,1870 ,2,15008,631315 ,2,15009,45 ,2,15010,631310 ,2,15011,45 ,2,15007,1870 ,2,15008,631330 ,2,15009,45 ,2,15010,631320 ,2,15011,45 ,2,15007,1870 ,2,15008,631340 ,2,15009,45 ,2,15010,631335 ,2,15011,45 ,2,15007,1870 ,2,15008,631360 ,2,15009,45 ,2,15010,631345 ,2,15011,45 ,2,15007,1870 ,2,15008,631370 ,2,15009,45 ,2,15010,631365 ,2,15011,45 ,2,15007,1870 ,2,15008,631370 ,2,15009,45 ,2,15010,631365 ,2,15011,45 ,2,15007,1870 ,2,15008,631400 ,2,15009,548425 ,2,15010,631375 ,2,15011,45 ,2,15007,312965 ,2,15008,631360 ,2,15009,45 ,2,15010,631345 ,2,15011,45 ,2,15007,1870 ,2,15008,631400 ,2,15009,548425 ,2,15010,631375 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548425 ,2,15010,631405 ,2,15011,45 ,2,15007,1870 ,2,15008,631425 ,2,15009,548430 ,2,15010,631410 ,2,15011,45 ,2,15007,1870 ,2,15008,631420 ,2,15009,45 ,2,15010,631415 ,2,15011,45 ,2,15007,1870 ,2,15008,631420 ,2,15009,45 ,2,15010,631415 ,2,15011,45 ,2,15007,1870 ,2,15008,631485 ,2,15009,548430 ,2,15010,631480 ,2,15011,45 ,2,15007,1870 ,2,15008,631485 ,2,15009,548430 ,2,15010,631480 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548430 ,2,15010,631430 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,548430 ,2,15010,631435 ,2,15011,45 ,2,15007,1870 ,2,15008,631495 ,2,15009,45 ,2,15010,631490 ,2,15011,45 ,2,15007,1870 ,2,15008,631515 ,2,15009,548435 ,2,15010,631500 ,2,15011,45 ,2,15007,313160 ,2,15008,631510 ,2,15009,45 ,2,15010,631505 ,2,15011,45 ,2,15007,1870 ,2,15008,631510 ,2,15009,45 ,2,15010,631505 ,2,15011,45 ,2,15007,1870 ,2,15008,631515 ,2,15009,548435 ,2,15010,631500 ,2,15011,45 ,2,15007,1870 ,2,15008,631545 ,2,15009,548435 ,2,15010,631540 ,2,15011,45 ,2,15007,1870 ,2,15008,631545 ,2,15009,548435 ,2,15010,631540 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548435 ,2,15010,631530 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,548435 ,2,15010,631535 ,2,15011,45 ,2,15007,1870 ,2,15008,631555 ,2,15009,45 ,2,15010,631550 ,2,15011,45 ,2,15007,1870 ,2,15008,631565 ,2,15009,45 ,2,15010,631560 ,2,15011,45 ,2,15007,1870 ,2,15008,631590 ,2,15009,548445 ,2,15010,631585 ,2,15011,45 ,2,15007,313200 ,2,15008,631565 ,2,15009,45 ,2,15010,631560 ,2,15011,45 ,2,15007,1870 ,2,15008,631600 ,2,15009,45 ,2,15010,631595 ,2,15011,45 ,2,15007,1870 ,2,15008,631760 ,2,15009,45 ,2,15010,631755 ,2,15011,45 ,2,15007,1870 ,2,15008,631760 ,2,15009,45 ,2,15010,631755 ,2,15011,45 ,2,15007,1870 ,2,15008,631620 ,2,15009,45 ,2,15010,631615 ,2,15011,45 ,2,15007,1870 ,2,15008,631695 ,2,15009,45 ,2,15010,631690 ,2,15011,45 ,2,15007,1870 ,2,15008,631695 ,2,15009,45 ,2,15010,631690 ,2,15011,45 ,2,15007,1870 ,2,15008,631680 ,2,15009,45 ,2,15010,631675 ,2,15011,45 ,2,15007,1870 ,2,15008,631680 ,2,15009,45 ,2,15010,631675 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,548450 ,2,15010,631625 ,2,15011,45 ,2,15007,1870 ,2,15008,631670 ,2,15009,548015 ,2,15010,631630 ,2,15011,45 ,2,15007,1870 ,2,15008,628710 ,2,15009,548450 ,2,15010,631685 ,2,15011,45 ,2,15007,1870 ,2,15008,631705 ,2,15009,45 ,2,15010,631700 ,2,15011,45 ,2,15007,1870 ,2,15008,631740 ,2,15009,45 ,2,15010,631735 ,2,15011,45 ,2,15007,1870 ,2,15008,631750 ,2,15009,45 ,2,15010,631745 ,2,15011,45 ,2,15007,1870 ,2,15008,631670 ,2,15009,548015 ,2,15010,631630 ,2,15011,45 ,2,15007,1870 ,2,15008,631770 ,2,15009,45 ,2,15010,631765 ,2,15011,45 ,2,15007,1870 ,2,15008,631770 ,2,15009,45 ,2,15010,631765 ,2,15011,45 ,2,15007,1870 ,2,15008,631830 ,2,15009,45 ,2,15010,631825 ,2,15011,45 ,2,15007,1870 ,2,15008,631840 ,2,15009,45 ,2,15010,631835 ,2,15011,45 ,2,15007,1870 ,2,15008,631860 ,2,15009,548445 ,2,15010,631855 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548445 ,2,15010,631865 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,548445 ,2,15010,631870 ,2,15011,45 ,2,15007,1870 ,2,15008,631880 ,2,15009,45 ,2,15010,631875 ,2,15011,45 ,2,15007,1870 ,2,15008,631890 ,2,15009,45 ,2,15010,631885 ,2,15011,45 ,2,15007,1870 ,2,15008,631930 ,2,15009,45 ,2,15010,631925 ,2,15011,45 ,2,15007,1870 ,2,15008,631590 ,2,15009,548445 ,2,15010,631585 ,2,15011,45 ,2,15007,1870 ,2,15008,631860 ,2,15009,548445 ,2,15010,631855 ,2,15011,45 ,2,15007,1870 ,2,15008,631940 ,2,15009,45 ,2,15010,631935 ,2,15011,45 ,2,15007,1870 ,2,15008,622780 ,2,15009,548480 ,2,15010,631945 ,2,15011,45 ,2,15007,1870 ,2,15008,631955 ,2,15009,45 ,2,15010,631950 ,2,15011,45 ,2,15007,329425 ,2,15008,641140 ,2,15009,45 ,2,15010,641135 ,2,15011,45 ,2,15007,1870 ,2,15008,641140 ,2,15009,45 ,2,15010,641135 ,2,15011,45 ,2,15007,1870 ,2,15008,641120 ,2,15009,45 ,2,15010,641115 ,2,15011,45 ,2,15007,1870 ,2,15008,641120 ,2,15009,45 ,2,15010,641115 ,2,15011,45 ,2,15007,1870 ,2,15008,641100 ,2,15009,45 ,2,15010,641095 ,2,15011,45 ,2,15007,1870 ,2,15008,641100 ,2,15009,45 ,2,15010,641095 ,2,15011,45 ,2,15007,1870 ,2,15008,631990 ,2,15009,45 ,2,15010,631960 ,2,15011,45 ,2,15007,1870 ,2,15008,632000 ,2,15009,45 ,2,15010,631995 ,2,15011,45 ,2,15007,1870 ,2,15008,632025 ,2,15009,45 ,2,15010,632005 ,2,15011,45 ,2,15007,1870 ,2,15008,632000 ,2,15009,45 ,2,15010,631995 ,2,15011,45 ,2,15007,1870 ,2,15008,632040 ,2,15009,548485 ,2,15010,632030 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632055 ,2,15011,113830 ,2,15007,1870 ,2,15008,632065 ,2,15009,45 ,2,15010,632060 ,2,15011,45 ,2,15007,1870 ,2,15008,632115 ,2,15009,45 ,2,15010,632090 ,2,15011,45 ,2,15007,1870 ,2,15008,632115 ,2,15009,45 ,2,15010,632090 ,2,15011,45 ,2,15007,1870 ,2,15008,632085 ,2,15009,45 ,2,15010,632080 ,2,15011,45 ,2,15007,1870 ,2,15008,632085 ,2,15009,45 ,2,15010,632080 ,2,15011,45 ,2,15007,1870 ,2,15008,632025 ,2,15009,45 ,2,15010,632005 ,2,15011,45 ,2,15007,1870 ,2,15008,632075 ,2,15009,45 ,2,15010,632070 ,2,15011,45 ,2,15007,1870 ,2,15008,632075 ,2,15009,45 ,2,15010,632070 ,2,15011,45 ,2,15007,1870 ,2,15008,632130 ,2,15009,45 ,2,15010,632125 ,2,15011,45 ,2,15007,1870 ,2,15008,632350 ,2,15009,45 ,2,15010,632345 ,2,15011,45 ,2,15007,1870 ,2,15008,632350 ,2,15009,45 ,2,15010,632345 ,2,15011,45 ,2,15007,1870 ,2,15008,632160 ,2,15009,45 ,2,15010,632155 ,2,15011,45 ,2,15007,1870 ,2,15008,632170 ,2,15009,45 ,2,15010,632165 ,2,15011,45 ,2,15007,1870 ,2,15008,632210 ,2,15009,45 ,2,15010,632205 ,2,15011,45 ,2,15007,1870 ,2,15008,632340 ,2,15009,45 ,2,15010,632335 ,2,15011,45 ,2,15007,1870 ,2,15008,632340 ,2,15009,45 ,2,15010,632335 ,2,15011,45 ,2,15007,1870 ,2,15008,632220 ,2,15009,45 ,2,15010,632215 ,2,15011,45 ,2,15007,1870 ,2,15008,632235 ,2,15009,45 ,2,15010,632230 ,2,15011,45 ,2,15007,1870 ,2,15008,632245 ,2,15009,45 ,2,15010,632240 ,2,15011,45 ,2,15007,1870 ,2,15008,632285 ,2,15009,45 ,2,15010,632280 ,2,15011,45 ,2,15007,1870 ,2,15008,632295 ,2,15009,45 ,2,15010,632290 ,2,15011,45 ,2,15007,1870 ,2,15008,632245 ,2,15009,45 ,2,15010,632240 ,2,15011,45 ,2,15007,1870 ,2,15008,632295 ,2,15009,45 ,2,15010,632290 ,2,15011,45 ,2,15007,1870 ,2,15008,632310 ,2,15009,45 ,2,15010,632305 ,2,15011,45 ,2,15007,1870 ,2,15008,632310 ,2,15009,45 ,2,15010,632305 ,2,15011,45 ,2,15007,1870 ,2,15008,632320 ,2,15009,45 ,2,15010,632315 ,2,15011,45 ,2,15007,1870 ,2,15008,632365 ,2,15009,45 ,2,15010,632360 ,2,15011,45 ,2,15007,1870 ,2,15008,632210 ,2,15009,45 ,2,15010,632205 ,2,15011,45 ,2,15007,1870 ,2,15008,632375 ,2,15009,45 ,2,15010,632370 ,2,15011,45 ,2,15007,1870 ,2,15008,632160 ,2,15009,45 ,2,15010,632155 ,2,15011,45 ,2,15007,1870 ,2,15008,632400 ,2,15009,45 ,2,15010,632395 ,2,15011,45 ,2,15007,1870 ,2,15008,640645 ,2,15009,548495 ,2,15010,632405 ,2,15011,45 ,2,15007,328285 ,2,15008,640640 ,2,15009,45 ,2,15010,640635 ,2,15011,45 ,2,15007,1870 ,2,15008,640640 ,2,15009,45 ,2,15010,640635 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,548510 ,2,15010,632415 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,548515 ,2,15010,632420 ,2,15011,45 ,2,15007,1870 ,2,15008,632430 ,2,15009,45 ,2,15010,632425 ,2,15011,45 ,2,15007,1870 ,2,15008,632430 ,2,15009,45 ,2,15010,632425 ,2,15011,45 ,2,15007,1870 ,2,15008,632470 ,2,15009,45 ,2,15010,632465 ,2,15011,45 ,2,15007,1870 ,2,15008,632720 ,2,15009,548520 ,2,15010,632475 ,2,15011,45 ,2,15007,1870 ,2,15008,627360 ,2,15009,548545 ,2,15010,632480 ,2,15011,45 ,2,15007,314775 ,2,15008,632690 ,2,15009,45 ,2,15010,632685 ,2,15011,45 ,2,15007,1870 ,2,15008,632690 ,2,15009,45 ,2,15010,632685 ,2,15011,45 ,2,15007,1870 ,2,15008,631990 ,2,15009,45 ,2,15010,631960 ,2,15011,45 ,2,15007,1870 ,2,15008,632495 ,2,15009,45 ,2,15010,632490 ,2,15011,45 ,2,15007,1870 ,2,15008,632505 ,2,15009,45 ,2,15010,632500 ,2,15011,45 ,2,15007,1870 ,2,15008,632515 ,2,15009,45 ,2,15010,632510 ,2,15011,45 ,2,15007,1870 ,2,15008,632525 ,2,15009,45 ,2,15010,632520 ,2,15011,45 ,2,15007,1870 ,2,15008,632540 ,2,15009,45 ,2,15010,632535 ,2,15011,45 ,2,15007,1870 ,2,15008,632550 ,2,15009,45 ,2,15010,632545 ,2,15011,45 ,2,15007,1870 ,2,15008,632600 ,2,15009,45 ,2,15010,632595 ,2,15011,45 ,2,15007,1870 ,2,15008,632525 ,2,15009,45 ,2,15010,632520 ,2,15011,45 ,2,15007,1870 ,2,15008,632600 ,2,15009,45 ,2,15010,632595 ,2,15011,45 ,2,15007,1870 ,2,15008,632610 ,2,15009,45 ,2,15010,632605 ,2,15011,45 ,2,15007,1870 ,2,15008,632620 ,2,15009,45 ,2,15010,632615 ,2,15011,45 ,2,15007,1870 ,2,15008,632630 ,2,15009,45 ,2,15010,632625 ,2,15011,45 ,2,15007,1870 ,2,15008,632540 ,2,15009,45 ,2,15010,632535 ,2,15011,45 ,2,15007,1870 ,2,15008,632660 ,2,15009,45 ,2,15010,632655 ,2,15011,45 ,2,15007,1870 ,2,15008,630300 ,2,15009,45 ,2,15010,630295 ,2,15011,45 ,2,15007,1870 ,2,15008,632660 ,2,15009,45 ,2,15010,632655 ,2,15011,45 ,2,15007,1870 ,2,15008,632670 ,2,15009,45 ,2,15010,632665 ,2,15011,45 ,2,15007,1870 ,2,15008,632550 ,2,15009,45 ,2,15010,632545 ,2,15011,45 ,2,15007,1870 ,2,15008,632505 ,2,15009,45 ,2,15010,632500 ,2,15011,45 ,2,15007,1870 ,2,15008,632730 ,2,15009,548520 ,2,15010,632725 ,2,15011,45 ,2,15007,1870 ,2,15008,632730 ,2,15009,548555 ,2,15010,632735 ,2,15011,45 ,2,15007,1870 ,2,15008,632750 ,2,15009,548560 ,2,15010,632745 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,548560 ,2,15010,632755 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548560 ,2,15010,632795 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548545 ,2,15010,632805 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,115765 ,2,15007,1870 ,2,15008,632815 ,2,15009,45 ,2,15010,632810 ,2,15011,45 ,2,15007,1870 ,2,15008,632825 ,2,15009,548570 ,2,15010,632820 ,2,15011,45 ,2,15007,315035 ,2,15008,632630 ,2,15009,45 ,2,15010,632625 ,2,15011,45 ,2,15007,1870 ,2,15008,632720 ,2,15009,548570 ,2,15010,632830 ,2,15011,45 ,2,15007,1870 ,2,15008,632865 ,2,15009,548575 ,2,15010,632860 ,2,15011,45 ,2,15007,315110 ,2,15008,632515 ,2,15009,45 ,2,15010,632510 ,2,15011,45 ,2,15007,1870 ,2,15008,632720 ,2,15009,548575 ,2,15010,632870 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,548605 ,2,15010,632875 ,2,15011,45 ,2,15007,1870 ,2,15008,632815 ,2,15009,45 ,2,15010,632810 ,2,15011,45 ,2,15007,1870 ,2,15008,632885 ,2,15009,45 ,2,15010,632880 ,2,15011,45 ,2,15007,1870 ,2,15008,632915 ,2,15009,45 ,2,15010,632890 ,2,15011,45 ,2,15007,1870 ,2,15008,632885 ,2,15009,45 ,2,15010,632880 ,2,15011,45 ,2,15007,1870 ,2,15008,632915 ,2,15009,45 ,2,15010,632890 ,2,15011,45 ,2,15007,1870 ,2,15008,632925 ,2,15009,45 ,2,15010,632920 ,2,15011,45 ,2,15007,1870 ,2,15008,632925 ,2,15009,45 ,2,15010,632920 ,2,15011,45 ,2,15007,1870 ,2,15008,632935 ,2,15009,45 ,2,15010,632930 ,2,15011,45 ,2,15007,1870 ,2,15008,632935 ,2,15009,45 ,2,15010,632930 ,2,15011,45 ,2,15007,1870 ,2,15008,632945 ,2,15009,45 ,2,15010,632940 ,2,15011,45 ,2,15007,1870 ,2,15008,632945 ,2,15009,45 ,2,15010,632940 ,2,15011,45 ,2,15007,1870 ,2,15008,632960 ,2,15009,45 ,2,15010,632950 ,2,15011,45 ,2,15007,1870 ,2,15008,632960 ,2,15009,45 ,2,15010,632950 ,2,15011,45 ,2,15007,1870 ,2,15008,632970 ,2,15009,45 ,2,15010,632965 ,2,15011,45 ,2,15007,1870 ,2,15008,634245 ,2,15009,45 ,2,15010,634230 ,2,15011,45 ,2,15007,1870 ,2,15008,634245 ,2,15009,45 ,2,15010,634230 ,2,15011,45 ,2,15007,1870 ,2,15008,632980 ,2,15009,45 ,2,15010,632975 ,2,15011,45 ,2,15007,1870 ,2,15008,632990 ,2,15009,45 ,2,15010,632985 ,2,15011,45 ,2,15007,1870 ,2,15008,633015 ,2,15009,45 ,2,15010,632995 ,2,15011,45 ,2,15007,1870 ,2,15008,633025 ,2,15009,45 ,2,15010,633020 ,2,15011,45 ,2,15007,1870 ,2,15008,633045 ,2,15009,45 ,2,15010,633030 ,2,15011,45 ,2,15007,1870 ,2,15008,633095 ,2,15009,548610 ,2,15010,633050 ,2,15011,45 ,2,15007,315950 ,2,15008,633090 ,2,15009,45 ,2,15010,633085 ,2,15011,45 ,2,15007,1870 ,2,15008,633090 ,2,15009,45 ,2,15010,633085 ,2,15011,45 ,2,15007,1870 ,2,15008,633095 ,2,15009,548610 ,2,15010,633050 ,2,15011,45 ,2,15007,1870 ,2,15008,633060 ,2,15009,45 ,2,15010,633055 ,2,15011,45 ,2,15007,1870 ,2,15008,633060 ,2,15009,45 ,2,15010,633055 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548610 ,2,15010,633100 ,2,15011,45 ,2,15007,1870 ,2,15008,633890 ,2,15009,548615 ,2,15010,633105 ,2,15011,45 ,2,15007,317080 ,2,15008,633880 ,2,15009,45 ,2,15010,633875 ,2,15011,45 ,2,15007,1870 ,2,15008,633880 ,2,15009,45 ,2,15010,633875 ,2,15011,45 ,2,15007,1870 ,2,15008,633215 ,2,15009,45 ,2,15010,633210 ,2,15011,45 ,2,15007,1870 ,2,15008,633215 ,2,15009,45 ,2,15010,633210 ,2,15011,45 ,2,15007,316155 ,2,15008,633205 ,2,15009,45 ,2,15010,633175 ,2,15011,45 ,2,15007,1870 ,2,15008,633205 ,2,15009,45 ,2,15010,633175 ,2,15011,45 ,2,15007,1870 ,2,15008,633115 ,2,15009,45 ,2,15010,633110 ,2,15011,45 ,2,15007,1870 ,2,15008,633140 ,2,15009,45 ,2,15010,633120 ,2,15011,45 ,2,15007,1870 ,2,15008,633155 ,2,15009,45 ,2,15010,633150 ,2,15011,45 ,2,15007,316060 ,2,15008,633115 ,2,15009,45 ,2,15010,633110 ,2,15011,45 ,2,15007,1870 ,2,15008,633170 ,2,15009,45 ,2,15010,633165 ,2,15011,45 ,2,15007,1870 ,2,15008,633235 ,2,15009,45 ,2,15010,633220 ,2,15011,45 ,2,15007,1870 ,2,15008,633245 ,2,15009,45 ,2,15010,633240 ,2,15011,45 ,2,15007,1870 ,2,15008,633270 ,2,15009,45 ,2,15010,633250 ,2,15011,45 ,2,15007,1870 ,2,15008,633280 ,2,15009,45 ,2,15010,633275 ,2,15011,45 ,2,15007,1870 ,2,15008,633295 ,2,15009,45 ,2,15010,633290 ,2,15011,45 ,2,15007,1870 ,2,15008,633305 ,2,15009,45 ,2,15010,633300 ,2,15011,45 ,2,15007,1870 ,2,15008,633350 ,2,15009,45 ,2,15010,633345 ,2,15011,45 ,2,15007,1870 ,2,15008,633270 ,2,15009,45 ,2,15010,633250 ,2,15011,45 ,2,15007,1870 ,2,15008,633360 ,2,15009,45 ,2,15010,633355 ,2,15011,45 ,2,15007,1870 ,2,15008,633380 ,2,15009,45 ,2,15010,633375 ,2,15011,45 ,2,15007,1870 ,2,15008,633390 ,2,15009,45 ,2,15010,633385 ,2,15011,45 ,2,15007,1870 ,2,15008,633380 ,2,15009,45 ,2,15010,633375 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,118340 ,2,15007,1870 ,2,15008,633410 ,2,15009,45 ,2,15010,633405 ,2,15011,45 ,2,15007,1870 ,2,15008,633430 ,2,15009,45 ,2,15010,633420 ,2,15011,45 ,2,15007,1870 ,2,15008,633410 ,2,15009,45 ,2,15010,633405 ,2,15011,45 ,2,15007,1870 ,2,15008,633440 ,2,15009,45 ,2,15010,633435 ,2,15011,45 ,2,15007,1870 ,2,15008,633480 ,2,15009,548625 ,2,15010,633445 ,2,15011,45 ,2,15007,1870 ,2,15008,633440 ,2,15009,45 ,2,15010,633435 ,2,15011,45 ,2,15007,1870 ,2,15008,633490 ,2,15009,548625 ,2,15010,633485 ,2,15011,45 ,2,15007,1870 ,2,15008,633500 ,2,15009,45 ,2,15010,633495 ,2,15011,45 ,2,15007,1870 ,2,15008,633510 ,2,15009,45 ,2,15010,633505 ,2,15011,45 ,2,15007,1870 ,2,15008,633535 ,2,15009,45 ,2,15010,633515 ,2,15011,45 ,2,15007,1870 ,2,15008,633545 ,2,15009,45 ,2,15010,633540 ,2,15011,45 ,2,15007,1870 ,2,15008,633555 ,2,15009,45 ,2,15010,633550 ,2,15011,45 ,2,15007,316905 ,2,15008,633855 ,2,15009,45 ,2,15010,633850 ,2,15011,45 ,2,15007,1870 ,2,15008,633855 ,2,15009,45 ,2,15010,633850 ,2,15011,45 ,2,15007,1870 ,2,15008,633565 ,2,15009,45 ,2,15010,633560 ,2,15011,45 ,2,15007,1870 ,2,15008,633715 ,2,15009,45 ,2,15010,633710 ,2,15011,45 ,2,15007,1870 ,2,15008,633715 ,2,15009,45 ,2,15010,633710 ,2,15011,45 ,2,15007,1870 ,2,15008,633685 ,2,15009,45 ,2,15010,633680 ,2,15011,45 ,2,15007,1870 ,2,15008,633685 ,2,15009,45 ,2,15010,633680 ,2,15011,45 ,2,15007,1870 ,2,15008,633650 ,2,15009,45 ,2,15010,633625 ,2,15011,45 ,2,15007,1870 ,2,15008,633650 ,2,15009,45 ,2,15010,633625 ,2,15011,45 ,2,15007,1870 ,2,15008,633620 ,2,15009,548015 ,2,15010,633615 ,2,15011,45 ,2,15007,1870 ,2,15008,633610 ,2,15009,548630 ,2,15010,633600 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,548640 ,2,15010,633595 ,2,15011,45 ,2,15007,1870 ,2,15008,633675 ,2,15009,548015 ,2,15010,633670 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,548670 ,2,15010,633665 ,2,15011,45 ,2,15007,1870 ,2,15008,633725 ,2,15009,45 ,2,15010,633720 ,2,15011,45 ,2,15007,1870 ,2,15008,633735 ,2,15009,45 ,2,15010,633730 ,2,15011,45 ,2,15007,1870 ,2,15008,633745 ,2,15009,45 ,2,15010,633740 ,2,15011,45 ,2,15007,1870 ,2,15008,633765 ,2,15009,548680 ,2,15010,633760 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548680 ,2,15010,633770 ,2,15011,45 ,2,15007,1870 ,2,15008,633785 ,2,15009,45 ,2,15010,633775 ,2,15011,45 ,2,15007,316880 ,2,15008,624110 ,2,15009,548685 ,2,15010,633790 ,2,15011,45 ,2,15007,1870 ,2,15008,633800 ,2,15009,45 ,2,15010,633795 ,2,15011,45 ,2,15007,1870 ,2,15008,633765 ,2,15009,548680 ,2,15010,633760 ,2,15011,45 ,2,15007,316915 ,2,15008,624110 ,2,15009,546780 ,2,15010,633860 ,2,15011,45 ,2,15007,1870 ,2,15008,633280 ,2,15009,45 ,2,15010,633275 ,2,15011,45 ,2,15007,1870 ,2,15008,633870 ,2,15009,45 ,2,15010,633865 ,2,15011,45 ,2,15007,1870 ,2,15008,633870 ,2,15009,45 ,2,15010,633865 ,2,15011,45 ,2,15007,317060 ,2,15008,620475 ,2,15009,45 ,2,15010,620470 ,2,15011,45 ,2,15007,1870 ,2,15008,633490 ,2,15009,548615 ,2,15010,633895 ,2,15011,45 ,2,15007,1870 ,2,15008,633920 ,2,15009,45 ,2,15010,633915 ,2,15011,45 ,2,15007,1870 ,2,15008,633045 ,2,15009,45 ,2,15010,633030 ,2,15011,45 ,2,15007,1870 ,2,15008,633930 ,2,15009,45 ,2,15010,633925 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634015 ,2,15011,119895 ,2,15007,1870 ,2,15008,633985 ,2,15009,45 ,2,15010,633975 ,2,15011,45 ,2,15007,1870 ,2,15008,633985 ,2,15009,45 ,2,15010,633975 ,2,15011,45 ,2,15007,1870 ,2,15008,633970 ,2,15009,45 ,2,15010,633965 ,2,15011,45 ,2,15007,1870 ,2,15008,633995 ,2,15009,45 ,2,15010,633990 ,2,15011,45 ,2,15007,1870 ,2,15008,633535 ,2,15009,45 ,2,15010,633515 ,2,15011,45 ,2,15007,1870 ,2,15008,634030 ,2,15009,45 ,2,15010,634025 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634115 ,2,15011,120120 ,2,15007,1870 ,2,15008,634045 ,2,15009,45 ,2,15010,634040 ,2,15011,45 ,2,15007,1870 ,2,15008,634055 ,2,15009,45 ,2,15010,634050 ,2,15011,45 ,2,15007,1870 ,2,15008,634045 ,2,15009,45 ,2,15010,634040 ,2,15011,45 ,2,15007,1870 ,2,15008,634080 ,2,15009,45 ,2,15010,634075 ,2,15011,45 ,2,15007,1870 ,2,15008,634090 ,2,15009,45 ,2,15010,634085 ,2,15011,45 ,2,15007,1870 ,2,15008,634110 ,2,15009,45 ,2,15010,634105 ,2,15011,45 ,2,15007,1870 ,2,15008,634155 ,2,15009,45 ,2,15010,634150 ,2,15011,45 ,2,15007,1870 ,2,15008,632990 ,2,15009,45 ,2,15010,632985 ,2,15011,45 ,2,15007,1870 ,2,15008,634170 ,2,15009,45 ,2,15010,634160 ,2,15011,45 ,2,15007,1870 ,2,15008,633015 ,2,15009,45 ,2,15010,632995 ,2,15011,45 ,2,15007,1870 ,2,15008,634180 ,2,15009,45 ,2,15010,634175 ,2,15011,45 ,2,15007,1870 ,2,15008,634215 ,2,15009,45 ,2,15010,634185 ,2,15011,45 ,2,15007,1870 ,2,15008,634225 ,2,15009,45 ,2,15010,634220 ,2,15011,45 ,2,15007,1870 ,2,15008,634225 ,2,15009,45 ,2,15010,634220 ,2,15011,45 ,2,15007,1870 ,2,15008,634255 ,2,15009,45 ,2,15010,634250 ,2,15011,45 ,2,15007,1870 ,2,15008,640615 ,2,15009,45 ,2,15010,640610 ,2,15011,45 ,2,15007,1870 ,2,15008,640615 ,2,15009,45 ,2,15010,640610 ,2,15011,45 ,2,15007,1870 ,2,15008,634295 ,2,15009,45 ,2,15010,634290 ,2,15011,45 ,2,15007,1870 ,2,15008,634295 ,2,15009,45 ,2,15010,634290 ,2,15011,45 ,2,15007,1870 ,2,15008,634285 ,2,15009,45 ,2,15010,634260 ,2,15011,45 ,2,15007,1870 ,2,15008,634285 ,2,15009,45 ,2,15010,634260 ,2,15011,45 ,2,15007,1870 ,2,15008,634310 ,2,15009,45 ,2,15010,634300 ,2,15011,45 ,2,15007,1870 ,2,15008,631955 ,2,15009,45 ,2,15010,631950 ,2,15011,45 ,2,15007,1870 ,2,15008,634310 ,2,15009,45 ,2,15010,634300 ,2,15011,45 ,2,15007,1870 ,2,15008,634320 ,2,15009,45 ,2,15010,634315 ,2,15011,45 ,2,15007,1870 ,2,15008,634320 ,2,15009,45 ,2,15010,634315 ,2,15011,45 ,2,15007,1870 ,2,15008,634350 ,2,15009,45 ,2,15010,634325 ,2,15011,45 ,2,15007,1870 ,2,15008,634360 ,2,15009,548735 ,2,15010,634355 ,2,15011,45 ,2,15007,318070 ,2,15008,634350 ,2,15009,45 ,2,15010,634325 ,2,15011,45 ,2,15007,1870 ,2,15008,634375 ,2,15009,45 ,2,15010,634365 ,2,15011,45 ,2,15007,1870 ,2,15008,634385 ,2,15009,45 ,2,15010,634380 ,2,15011,45 ,2,15007,1870 ,2,15008,634385 ,2,15009,45 ,2,15010,634380 ,2,15011,45 ,2,15007,1870 ,2,15008,634420 ,2,15009,45 ,2,15010,634415 ,2,15011,45 ,2,15007,1870 ,2,15008,634430 ,2,15009,45 ,2,15010,634425 ,2,15011,45 ,2,15007,1870 ,2,15008,640235 ,2,15009,45 ,2,15010,640230 ,2,15011,45 ,2,15007,1870 ,2,15008,640235 ,2,15009,45 ,2,15010,640230 ,2,15011,45 ,2,15007,1870 ,2,15008,634440 ,2,15009,45 ,2,15010,634435 ,2,15011,45 ,2,15007,1870 ,2,15008,634450 ,2,15009,45 ,2,15010,634445 ,2,15011,45 ,2,15007,1870 ,2,15008,632610 ,2,15009,45 ,2,15010,632605 ,2,15011,45 ,2,15007,1870 ,2,15008,634470 ,2,15009,45 ,2,15010,634465 ,2,15011,45 ,2,15007,1870 ,2,15008,634480 ,2,15009,45 ,2,15010,634475 ,2,15011,45 ,2,15007,1870 ,2,15008,634490 ,2,15009,45 ,2,15010,634485 ,2,15011,45 ,2,15007,1870 ,2,15008,634500 ,2,15009,45 ,2,15010,634495 ,2,15011,45 ,2,15007,1870 ,2,15008,634520 ,2,15009,45 ,2,15010,634515 ,2,15011,45 ,2,15007,1870 ,2,15008,634520 ,2,15009,45 ,2,15010,634515 ,2,15011,45 ,2,15007,1870 ,2,15008,634530 ,2,15009,45 ,2,15010,634525 ,2,15011,45 ,2,15007,1870 ,2,15008,634545 ,2,15009,45 ,2,15010,634540 ,2,15011,45 ,2,15007,1870 ,2,15008,634555 ,2,15009,45 ,2,15010,634550 ,2,15011,45 ,2,15007,1870 ,2,15008,634500 ,2,15009,45 ,2,15010,634495 ,2,15011,45 ,2,15007,1870 ,2,15008,634570 ,2,15009,45 ,2,15010,634565 ,2,15011,45 ,2,15007,1870 ,2,15008,634555 ,2,15009,45 ,2,15010,634550 ,2,15011,45 ,2,15007,1870 ,2,15008,634580 ,2,15009,45 ,2,15010,634575 ,2,15011,45 ,2,15007,1870 ,2,15008,634605 ,2,15009,548740 ,2,15010,634590 ,2,15011,45 ,2,15007,318415 ,2,15008,634600 ,2,15009,45 ,2,15010,634595 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548740 ,2,15010,634640 ,2,15011,45 ,2,15007,1870 ,2,15008,634650 ,2,15009,45 ,2,15010,634645 ,2,15011,45 ,2,15007,1870 ,2,15008,638080 ,2,15009,45 ,2,15010,638075 ,2,15011,45 ,2,15007,1870 ,2,15008,638080 ,2,15009,45 ,2,15010,638075 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638070 ,2,15011,122745 ,2,15007,1870 ,2,15008,634665 ,2,15009,45 ,2,15010,634660 ,2,15011,45 ,2,15007,323685 ,2,15008,638065 ,2,15009,45 ,2,15010,638040 ,2,15011,45 ,2,15007,1870 ,2,15008,638065 ,2,15009,45 ,2,15010,638040 ,2,15011,45 ,2,15007,1870 ,2,15008,634675 ,2,15009,45 ,2,15010,634670 ,2,15011,45 ,2,15007,318560 ,2,15008,634675 ,2,15009,45 ,2,15010,634670 ,2,15011,45 ,2,15007,1870 ,2,15008,634695 ,2,15009,45 ,2,15010,634690 ,2,15011,45 ,2,15007,1870 ,2,15008,634695 ,2,15009,45 ,2,15010,634690 ,2,15011,45 ,2,15007,1870 ,2,15008,634710 ,2,15009,45 ,2,15010,634700 ,2,15011,45 ,2,15007,1870 ,2,15008,634710 ,2,15009,45 ,2,15010,634700 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,548745 ,2,15010,634715 ,2,15011,45 ,2,15007,318680 ,2,15008,634725 ,2,15009,45 ,2,15010,634720 ,2,15011,45 ,2,15007,1870 ,2,15008,634725 ,2,15009,45 ,2,15010,634720 ,2,15011,45 ,2,15007,1870 ,2,15008,634760 ,2,15009,45 ,2,15010,634755 ,2,15011,45 ,2,15007,1870 ,2,15008,634770 ,2,15009,45 ,2,15010,634765 ,2,15011,45 ,2,15007,1870 ,2,15008,634780 ,2,15009,45 ,2,15010,634775 ,2,15011,45 ,2,15007,1870 ,2,15008,634790 ,2,15009,548750 ,2,15010,634785 ,2,15011,45 ,2,15007,318760 ,2,15008,634780 ,2,15009,45 ,2,15010,634775 ,2,15011,45 ,2,15007,1870 ,2,15008,634810 ,2,15009,548750 ,2,15010,634805 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548750 ,2,15010,634815 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,548750 ,2,15010,634820 ,2,15011,45 ,2,15007,1870 ,2,15008,634830 ,2,15009,45 ,2,15010,634825 ,2,15011,45 ,2,15007,1870 ,2,15008,637885 ,2,15009,45 ,2,15010,637860 ,2,15011,45 ,2,15007,1870 ,2,15008,637885 ,2,15009,45 ,2,15010,637860 ,2,15011,45 ,2,15007,1870 ,2,15008,634880 ,2,15009,548755 ,2,15010,634835 ,2,15011,45 ,2,15007,318805 ,2,15008,634875 ,2,15009,45 ,2,15010,634840 ,2,15011,45 ,2,15007,1870 ,2,15008,634890 ,2,15009,548755 ,2,15010,634885 ,2,15011,45 ,2,15007,1870 ,2,15008,634910 ,2,15009,548760 ,2,15010,634905 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,548760 ,2,15010,634915 ,2,15011,45 ,2,15007,1870 ,2,15008,634955 ,2,15009,45 ,2,15010,634920 ,2,15011,45 ,2,15007,1870 ,2,15008,634965 ,2,15009,548765 ,2,15010,634960 ,2,15011,45 ,2,15007,318850 ,2,15008,634955 ,2,15009,45 ,2,15010,634920 ,2,15011,45 ,2,15007,1870 ,2,15008,634890 ,2,15009,548770 ,2,15010,634970 ,2,15011,45 ,2,15007,1870 ,2,15008,634985 ,2,15009,548770 ,2,15010,634980 ,2,15011,45 ,2,15007,1870 ,2,15008,634985 ,2,15009,548785 ,2,15010,634990 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548785 ,2,15010,635025 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,548785 ,2,15010,635030 ,2,15011,45 ,2,15007,1870 ,2,15008,637685 ,2,15009,548795 ,2,15010,635035 ,2,15011,45 ,2,15007,323180 ,2,15008,637675 ,2,15009,45 ,2,15010,637670 ,2,15011,45 ,2,15007,1870 ,2,15008,637675 ,2,15009,45 ,2,15010,637670 ,2,15011,45 ,2,15007,1870 ,2,15008,635050 ,2,15009,45 ,2,15010,635045 ,2,15011,45 ,2,15007,1870 ,2,15008,635075 ,2,15009,45 ,2,15010,635060 ,2,15011,45 ,2,15007,1870 ,2,15008,619930 ,2,15009,45 ,2,15010,619925 ,2,15011,45 ,2,15007,318985 ,2,15008,635075 ,2,15009,45 ,2,15010,635060 ,2,15011,45 ,2,15007,318995 ,2,15008,620240 ,2,15009,45 ,2,15010,620235 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,548800 ,2,15010,635080 ,2,15011,45 ,2,15007,1870 ,2,15008,635090 ,2,15009,45 ,2,15010,635085 ,2,15011,45 ,2,15007,1870 ,2,15008,635090 ,2,15009,45 ,2,15010,635085 ,2,15011,45 ,2,15007,1870 ,2,15008,635170 ,2,15009,45 ,2,15010,635165 ,2,15011,45 ,2,15007,1870 ,2,15008,635170 ,2,15009,45 ,2,15010,635165 ,2,15011,45 ,2,15007,319180 ,2,15008,635160 ,2,15009,45 ,2,15010,635150 ,2,15011,45 ,2,15007,1870 ,2,15008,635160 ,2,15009,45 ,2,15010,635150 ,2,15011,45 ,2,15007,1870 ,2,15008,635105 ,2,15009,45 ,2,15010,635100 ,2,15011,45 ,2,15007,1870 ,2,15008,635105 ,2,15009,45 ,2,15010,635100 ,2,15011,45 ,2,15007,1870 ,2,15008,635135 ,2,15009,45 ,2,15010,635110 ,2,15011,45 ,2,15007,1870 ,2,15008,635145 ,2,15009,45 ,2,15010,635140 ,2,15011,45 ,2,15007,1870 ,2,15008,635205 ,2,15009,45 ,2,15010,635175 ,2,15011,45 ,2,15007,1870 ,2,15008,635220 ,2,15009,45 ,2,15010,635215 ,2,15011,45 ,2,15007,1870 ,2,15008,635220 ,2,15009,45 ,2,15010,635215 ,2,15011,45 ,2,15007,1870 ,2,15008,635235 ,2,15009,45 ,2,15010,635230 ,2,15011,45 ,2,15007,1870 ,2,15008,635235 ,2,15009,45 ,2,15010,635230 ,2,15011,45 ,2,15007,1870 ,2,15008,635245 ,2,15009,45 ,2,15010,635240 ,2,15011,45 ,2,15007,1870 ,2,15008,635050 ,2,15009,45 ,2,15010,635045 ,2,15011,45 ,2,15007,1870 ,2,15008,635245 ,2,15009,45 ,2,15010,635240 ,2,15011,45 ,2,15007,1870 ,2,15008,635265 ,2,15009,45 ,2,15010,635260 ,2,15011,45 ,2,15007,1870 ,2,15008,635275 ,2,15009,45 ,2,15010,635270 ,2,15011,45 ,2,15007,1870 ,2,15008,635285 ,2,15009,45 ,2,15010,635280 ,2,15011,45 ,2,15007,1870 ,2,15008,635285 ,2,15009,45 ,2,15010,635280 ,2,15011,45 ,2,15007,1870 ,2,15008,635295 ,2,15009,45 ,2,15010,635290 ,2,15011,45 ,2,15007,1870 ,2,15008,635405 ,2,15009,548805 ,2,15010,635320 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548855 ,2,15010,635385 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548815 ,2,15010,635330 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,548845 ,2,15010,635360 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,548835 ,2,15010,635335 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548860 ,2,15010,635390 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,548870 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,635605 ,2,15009,548805 ,2,15010,635600 ,2,15011,45 ,2,15007,1870 ,2,15008,635605 ,2,15009,548905 ,2,15010,635410 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548910 ,2,15010,635415 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548915 ,2,15010,635445 ,2,15011,45 ,2,15007,1870 ,2,15008,635580 ,2,15009,548905 ,2,15010,635575 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548925 ,2,15010,635460 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548930 ,2,15010,635470 ,2,15011,45 ,2,15007,1870 ,2,15008,635525 ,2,15009,548960 ,2,15010,635520 ,2,15011,45 ,2,15007,1870 ,2,15008,635525 ,2,15009,548935 ,2,15010,635480 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,548935 ,2,15010,635485 ,2,15011,45 ,2,15007,1870 ,2,15008,635570 ,2,15009,548980 ,2,15010,635540 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548975 ,2,15010,635535 ,2,15011,45 ,2,15007,1870 ,2,15008,614875 ,2,15009,548990 ,2,15010,635585 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548990 ,2,15010,635590 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,549020 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,548990 ,2,15010,635595 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,549035 ,2,15010,635640 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,549040 ,2,15010,635645 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,549040 ,2,15010,635655 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,548855 ,2,15010,635660 ,2,15011,45 ,2,15007,1870 ,2,15008,635295 ,2,15009,45 ,2,15010,635290 ,2,15011,45 ,2,15007,1870 ,2,15008,635275 ,2,15009,45 ,2,15010,635270 ,2,15011,45 ,2,15007,1870 ,2,15008,637685 ,2,15009,548795 ,2,15010,635035 ,2,15011,45 ,2,15007,1870 ,2,15008,623620 ,2,15009,548685 ,2,15010,635665 ,2,15011,45 ,2,15007,1870 ,2,15008,635705 ,2,15009,549045 ,2,15010,635670 ,2,15011,45 ,2,15007,1870 ,2,15008,635735 ,2,15009,549055 ,2,15010,635710 ,2,15011,45 ,2,15007,319840 ,2,15008,635730 ,2,15009,45 ,2,15010,635725 ,2,15011,45 ,2,15007,1870 ,2,15008,635730 ,2,15009,45 ,2,15010,635725 ,2,15011,45 ,2,15007,319820 ,2,15008,635735 ,2,15009,549055 ,2,15010,635710 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,549080 ,2,15010,635715 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549055 ,2,15010,635740 ,2,15011,45 ,2,15007,1870 ,2,15008,635760 ,2,15009,45 ,2,15010,635755 ,2,15011,45 ,2,15007,1870 ,2,15008,635770 ,2,15009,45 ,2,15010,635765 ,2,15011,45 ,2,15007,322775 ,2,15008,637460 ,2,15009,45 ,2,15010,637455 ,2,15011,45 ,2,15007,1870 ,2,15008,637460 ,2,15009,45 ,2,15010,637455 ,2,15011,45 ,2,15007,1870 ,2,15008,635780 ,2,15009,45 ,2,15010,635775 ,2,15011,45 ,2,15007,319900 ,2,15008,635790 ,2,15009,45 ,2,15010,635785 ,2,15011,45 ,2,15007,1870 ,2,15008,635825 ,2,15009,45 ,2,15010,635820 ,2,15011,45 ,2,15007,1870 ,2,15008,635835 ,2,15009,45 ,2,15010,635830 ,2,15011,45 ,2,15007,1870 ,2,15008,635880 ,2,15009,549085 ,2,15010,635840 ,2,15011,45 ,2,15007,320000 ,2,15008,635850 ,2,15009,45 ,2,15010,635845 ,2,15011,45 ,2,15007,1870 ,2,15008,635890 ,2,15009,549085 ,2,15010,635885 ,2,15011,45 ,2,15007,1870 ,2,15008,635900 ,2,15009,45 ,2,15010,635895 ,2,15011,45 ,2,15007,1870 ,2,15008,635835 ,2,15009,45 ,2,15010,635830 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635915 ,2,15011,125580 ,2,15007,320110 ,2,15008,635910 ,2,15009,45 ,2,15010,635905 ,2,15011,45 ,2,15007,1870 ,2,15008,635935 ,2,15009,45 ,2,15010,635930 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,549095 ,2,15010,635945 ,2,15011,45 ,2,15007,320220 ,2,15008,630600 ,2,15009,45 ,2,15010,630595 ,2,15011,45 ,2,15007,1870 ,2,15008,635960 ,2,15009,549105 ,2,15010,635955 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549140 ,2,15010,635990 ,2,15011,45 ,2,15007,1870 ,2,15008,635960 ,2,15009,549145 ,2,15010,635995 ,2,15011,45 ,2,15007,1870 ,2,15008,636010 ,2,15009,545930 ,2,15010,636005 ,2,15011,45 ,2,15007,320455 ,2,15008,635960 ,2,15009,45 ,2,15010,636015 ,2,15011,45 ,2,15007,1870 ,2,15008,635910 ,2,15009,45 ,2,15010,635905 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549155 ,2,15010,636040 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549170 ,2,15010,636050 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549180 ,2,15010,636065 ,2,15011,45 ,2,15007,1870 ,2,15008,636075 ,2,15009,45 ,2,15010,636070 ,2,15011,45 ,2,15007,320570 ,2,15008,636075 ,2,15009,45 ,2,15010,636070 ,2,15011,45 ,2,15007,1870 ,2,15008,636145 ,2,15009,549210 ,2,15010,636095 ,2,15011,45 ,2,15007,320645 ,2,15008,636140 ,2,15009,549235 ,2,15010,636135 ,2,15011,45 ,2,15007,1870 ,2,15008,636140 ,2,15009,549215 ,2,15010,636105 ,2,15011,45 ,2,15007,1870 ,2,15008,636145 ,2,15009,549225 ,2,15010,636130 ,2,15011,45 ,2,15007,1870 ,2,15008,636140 ,2,15009,549215 ,2,15010,636105 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549240 ,2,15010,636160 ,2,15011,45 ,2,15007,1870 ,2,15008,636175 ,2,15009,549250 ,2,15010,636165 ,2,15011,45 ,2,15007,1870 ,2,15008,636190 ,2,15009,549250 ,2,15010,636185 ,2,15011,45 ,2,15007,1870 ,2,15008,636200 ,2,15009,549250 ,2,15010,636195 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549295 ,2,15010,636220 ,2,15011,45 ,2,15007,320675 ,2,15008,636230 ,2,15009,45 ,2,15010,636225 ,2,15011,45 ,2,15007,1870 ,2,15008,636255 ,2,15009,549300 ,2,15010,636235 ,2,15011,45 ,2,15007,1870 ,2,15008,636265 ,2,15009,549300 ,2,15010,636260 ,2,15011,45 ,2,15007,1870 ,2,15008,636300 ,2,15009,45 ,2,15010,636295 ,2,15011,45 ,2,15007,1870 ,2,15008,636265 ,2,15009,549315 ,2,15010,636305 ,2,15011,45 ,2,15007,1870 ,2,15008,636175 ,2,15009,549315 ,2,15010,636320 ,2,15011,45 ,2,15007,1870 ,2,15008,636350 ,2,15009,549325 ,2,15010,636330 ,2,15011,45 ,2,15007,1870 ,2,15008,636190 ,2,15009,549330 ,2,15010,636355 ,2,15011,45 ,2,15007,1870 ,2,15008,636370 ,2,15009,45 ,2,15010,636365 ,2,15011,45 ,2,15007,1870 ,2,15008,636380 ,2,15009,45 ,2,15010,636375 ,2,15011,45 ,2,15007,1870 ,2,15008,636370 ,2,15009,45 ,2,15010,636365 ,2,15011,45 ,2,15007,1870 ,2,15008,636415 ,2,15009,45 ,2,15010,636385 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,549345 ,2,15010,636420 ,2,15011,45 ,2,15007,320850 ,2,15008,636430 ,2,15009,45 ,2,15010,636425 ,2,15011,45 ,2,15007,1870 ,2,15008,628595 ,2,15009,549350 ,2,15010,636445 ,2,15011,45 ,2,15007,1870 ,2,15008,636415 ,2,15009,45 ,2,15010,636385 ,2,15011,45 ,2,15007,320970 ,2,15008,636265 ,2,15009,549365 ,2,15010,636460 ,2,15011,45 ,2,15007,1870 ,2,15008,635960 ,2,15009,549370 ,2,15010,636490 ,2,15011,45 ,2,15007,1870 ,2,15008,635960 ,2,15009,549325 ,2,15010,636495 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,549095 ,2,15010,636500 ,2,15011,45 ,2,15007,1870 ,2,15008,636350 ,2,15009,549330 ,2,15010,636505 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,127065 ,2,15007,1870 ,2,15008,636545 ,2,15009,549405 ,2,15010,636510 ,2,15011,45 ,2,15007,1870 ,2,15008,636575 ,2,15009,549405 ,2,15010,636570 ,2,15011,45 ,2,15007,1870 ,2,15008,636575 ,2,15009,549410 ,2,15010,636550 ,2,15011,45 ,2,15007,1870 ,2,15008,636265 ,2,15009,549410 ,2,15010,636560 ,2,15011,45 ,2,15007,1870 ,2,15008,636595 ,2,15009,549435 ,2,15010,636585 ,2,15011,45 ,2,15007,1870 ,2,15008,636255 ,2,15009,549435 ,2,15010,636600 ,2,15011,45 ,2,15007,1870 ,2,15008,636615 ,2,15009,45 ,2,15010,636605 ,2,15011,45 ,2,15007,1870 ,2,15008,636615 ,2,15009,45 ,2,15010,636605 ,2,15011,45 ,2,15007,1870 ,2,15008,636625 ,2,15009,45 ,2,15010,636620 ,2,15011,45 ,2,15007,321295 ,2,15008,636675 ,2,15009,45 ,2,15010,636670 ,2,15011,45 ,2,15007,1870 ,2,15008,636675 ,2,15009,45 ,2,15010,636670 ,2,15011,45 ,2,15007,1870 ,2,15008,636665 ,2,15009,45 ,2,15010,636630 ,2,15011,45 ,2,15007,1870 ,2,15008,635880 ,2,15009,549085 ,2,15010,635840 ,2,15011,45 ,2,15007,1870 ,2,15008,636710 ,2,15009,549480 ,2,15010,636695 ,2,15011,45 ,2,15007,321395 ,2,15008,636705 ,2,15009,45 ,2,15010,636700 ,2,15011,45 ,2,15007,1870 ,2,15008,636705 ,2,15009,45 ,2,15010,636700 ,2,15011,45 ,2,15007,1870 ,2,15008,636710 ,2,15009,549480 ,2,15010,636695 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549480 ,2,15010,636745 ,2,15011,45 ,2,15007,1870 ,2,15008,636755 ,2,15009,45 ,2,15010,636750 ,2,15011,45 ,2,15007,1870 ,2,15008,636770 ,2,15009,549485 ,2,15010,636760 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549485 ,2,15010,636775 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549505 ,2,15010,618800 ,2,15011,45 ,2,15007,1870 ,2,15008,636800 ,2,15009,549510 ,2,15010,636780 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549520 ,2,15010,636805 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,549550 ,2,15010,636810 ,2,15011,45 ,2,15007,1870 ,2,15008,636820 ,2,15009,45 ,2,15010,636815 ,2,15011,45 ,2,15007,1870 ,2,15008,636830 ,2,15009,45 ,2,15010,636825 ,2,15011,45 ,2,15007,1870 ,2,15008,636855 ,2,15009,45 ,2,15010,636850 ,2,15011,45 ,2,15007,321470 ,2,15008,636820 ,2,15009,45 ,2,15010,636815 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549555 ,2,15010,636860 ,2,15011,45 ,2,15007,1870 ,2,15008,636880 ,2,15009,549555 ,2,15010,636865 ,2,15011,45 ,2,15007,1870 ,2,15008,636800 ,2,15009,549555 ,2,15010,636885 ,2,15011,45 ,2,15007,321510 ,2,15008,636895 ,2,15009,45 ,2,15010,636890 ,2,15011,45 ,2,15007,1870 ,2,15008,636895 ,2,15009,45 ,2,15010,636890 ,2,15011,45 ,2,15007,1870 ,2,15008,636915 ,2,15009,549565 ,2,15010,636910 ,2,15011,45 ,2,15007,1870 ,2,15008,636800 ,2,15009,549565 ,2,15010,636920 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549565 ,2,15010,636925 ,2,15011,45 ,2,15007,1870 ,2,15008,636940 ,2,15009,45 ,2,15010,636935 ,2,15011,45 ,2,15007,1870 ,2,15008,636965 ,2,15009,45 ,2,15010,636950 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,549570 ,2,15010,636970 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,549580 ,2,15010,636980 ,2,15011,45 ,2,15007,1870 ,2,15008,636995 ,2,15009,45 ,2,15010,636990 ,2,15011,45 ,2,15007,1870 ,2,15008,637035 ,2,15009,549585 ,2,15010,637000 ,2,15011,45 ,2,15007,1870 ,2,15008,637030 ,2,15009,549600 ,2,15010,637025 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549605 ,2,15010,637040 ,2,15011,45 ,2,15007,1870 ,2,15008,637055 ,2,15009,549615 ,2,15010,637045 ,2,15011,45 ,2,15007,1870 ,2,15008,637080 ,2,15009,549615 ,2,15010,637060 ,2,15011,45 ,2,15007,1870 ,2,15008,637090 ,2,15009,549640 ,2,15010,637085 ,2,15011,45 ,2,15007,1870 ,2,15008,637055 ,2,15009,549615 ,2,15010,637045 ,2,15011,45 ,2,15007,1870 ,2,15008,637030 ,2,15009,549645 ,2,15010,637095 ,2,15011,45 ,2,15007,1870 ,2,15008,637035 ,2,15009,549675 ,2,15010,637105 ,2,15011,45 ,2,15007,1870 ,2,15008,637030 ,2,15009,549645 ,2,15010,637095 ,2,15011,45 ,2,15007,1870 ,2,15008,637115 ,2,15009,45 ,2,15010,637110 ,2,15011,45 ,2,15007,1870 ,2,15008,637130 ,2,15009,45 ,2,15010,637125 ,2,15011,45 ,2,15007,1870 ,2,15008,637165 ,2,15009,549690 ,2,15010,637155 ,2,15011,45 ,2,15007,1870 ,2,15008,637090 ,2,15009,549705 ,2,15010,637170 ,2,15011,45 ,2,15007,1870 ,2,15008,637055 ,2,15009,549710 ,2,15010,637210 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549715 ,2,15010,637220 ,2,15011,45 ,2,15007,1870 ,2,15008,624300 ,2,15009,557765 ,2,15010,624295 ,2,15011,45 ,2,15007,1870 ,2,15008,637230 ,2,15009,45 ,2,15010,637225 ,2,15011,45 ,2,15007,1870 ,2,15008,637240 ,2,15009,45 ,2,15010,637235 ,2,15011,45 ,2,15007,322535 ,2,15008,637240 ,2,15009,45 ,2,15010,637235 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637265 ,2,15011,129205 ,2,15007,1870 ,2,15008,635760 ,2,15009,45 ,2,15010,635755 ,2,15011,45 ,2,15007,1870 ,2,15008,637275 ,2,15009,45 ,2,15010,637270 ,2,15011,45 ,2,15007,1870 ,2,15008,635960 ,2,15009,545930 ,2,15010,637285 ,2,15011,45 ,2,15007,1870 ,2,15008,636230 ,2,15009,45 ,2,15010,636225 ,2,15011,45 ,2,15007,1870 ,2,15008,637295 ,2,15009,45 ,2,15010,637290 ,2,15011,45 ,2,15007,1870 ,2,15008,635770 ,2,15009,45 ,2,15010,635765 ,2,15011,45 ,2,15007,1870 ,2,15008,637310 ,2,15009,45 ,2,15010,637300 ,2,15011,45 ,2,15007,1870 ,2,15008,637325 ,2,15009,549765 ,2,15010,637315 ,2,15011,45 ,2,15007,1870 ,2,15008,637335 ,2,15009,549765 ,2,15010,637330 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,549775 ,2,15010,637340 ,2,15011,45 ,2,15007,322630 ,2,15008,637275 ,2,15009,45 ,2,15010,637270 ,2,15011,45 ,2,15007,1870 ,2,15008,637375 ,2,15009,45 ,2,15010,637370 ,2,15011,45 ,2,15007,1870 ,2,15008,635790 ,2,15009,45 ,2,15010,635785 ,2,15011,45 ,2,15007,1870 ,2,15008,637410 ,2,15009,45 ,2,15010,637405 ,2,15011,45 ,2,15007,1870 ,2,15008,635890 ,2,15009,549085 ,2,15010,635885 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549085 ,2,15010,637435 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,549085 ,2,15010,637440 ,2,15011,45 ,2,15007,1870 ,2,15008,635850 ,2,15009,45 ,2,15010,635845 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,549830 ,2,15010,637450 ,2,15011,45 ,2,15007,1870 ,2,15008,637505 ,2,15009,45 ,2,15010,637465 ,2,15011,45 ,2,15007,1870 ,2,15008,636575 ,2,15009,549840 ,2,15010,637510 ,2,15011,45 ,2,15007,1870 ,2,15008,637525 ,2,15009,45 ,2,15010,637520 ,2,15011,45 ,2,15007,1870 ,2,15008,635705 ,2,15009,549880 ,2,15010,637540 ,2,15011,45 ,2,15007,1870 ,2,15008,637580 ,2,15009,549890 ,2,15010,637570 ,2,15011,45 ,2,15007,1870 ,2,15008,637595 ,2,15009,549900 ,2,15010,637590 ,2,15011,45 ,2,15007,1870 ,2,15008,637580 ,2,15009,549890 ,2,15010,637570 ,2,15011,45 ,2,15007,1870 ,2,15008,637605 ,2,15009,45 ,2,15010,637600 ,2,15011,45 ,2,15007,1870 ,2,15008,637595 ,2,15009,549905 ,2,15010,637625 ,2,15011,45 ,2,15007,1870 ,2,15008,637580 ,2,15009,549920 ,2,15010,637635 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,549925 ,2,15010,637640 ,2,15011,45 ,2,15007,1870 ,2,15008,637605 ,2,15009,45 ,2,15010,637600 ,2,15011,45 ,2,15007,1870 ,2,15008,635265 ,2,15009,45 ,2,15010,635260 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,548795 ,2,15010,637690 ,2,15011,45 ,2,15007,1870 ,2,15008,637700 ,2,15009,45 ,2,15010,637695 ,2,15011,45 ,2,15007,1870 ,2,15008,637720 ,2,15009,549935 ,2,15010,637715 ,2,15011,45 ,2,15007,323200 ,2,15008,637700 ,2,15009,45 ,2,15010,637695 ,2,15011,45 ,2,15007,1870 ,2,15008,634965 ,2,15009,548765 ,2,15010,634960 ,2,15011,45 ,2,15007,1870 ,2,15008,637730 ,2,15009,548765 ,2,15010,637725 ,2,15011,45 ,2,15007,1870 ,2,15008,637780 ,2,15009,549945 ,2,15010,637765 ,2,15011,45 ,2,15007,323250 ,2,15008,637775 ,2,15009,45 ,2,15010,637770 ,2,15011,45 ,2,15007,1870 ,2,15008,637730 ,2,15009,549945 ,2,15010,637785 ,2,15011,45 ,2,15007,1870 ,2,15008,637730 ,2,15009,549950 ,2,15010,637790 ,2,15011,45 ,2,15007,1870 ,2,15008,634890 ,2,15009,549950 ,2,15010,637800 ,2,15011,45 ,2,15007,1870 ,2,15008,637825 ,2,15009,549960 ,2,15010,637820 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,549960 ,2,15010,637830 ,2,15011,45 ,2,15007,1870 ,2,15008,637720 ,2,15009,549935 ,2,15010,637715 ,2,15011,45 ,2,15007,1870 ,2,15008,637730 ,2,15009,549935 ,2,15010,637835 ,2,15011,45 ,2,15007,1870 ,2,15008,634875 ,2,15009,45 ,2,15010,634840 ,2,15011,45 ,2,15007,1870 ,2,15008,634880 ,2,15009,548755 ,2,15010,634835 ,2,15011,45 ,2,15007,1870 ,2,15008,637850 ,2,15009,549995 ,2,15010,637845 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,549995 ,2,15010,637855 ,2,15011,45 ,2,15007,1870 ,2,15008,637775 ,2,15009,45 ,2,15010,637770 ,2,15011,45 ,2,15007,1870 ,2,15008,637780 ,2,15009,549945 ,2,15010,637765 ,2,15011,45 ,2,15007,1870 ,2,15008,637895 ,2,15009,550000 ,2,15010,637890 ,2,15011,45 ,2,15007,323355 ,2,15008,634830 ,2,15009,45 ,2,15010,634825 ,2,15011,45 ,2,15007,1870 ,2,15008,637905 ,2,15009,550005 ,2,15010,637900 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,550005 ,2,15010,637910 ,2,15011,45 ,2,15007,1870 ,2,15008,634770 ,2,15009,45 ,2,15010,634765 ,2,15011,45 ,2,15007,1870 ,2,15008,637920 ,2,15009,45 ,2,15010,637915 ,2,15011,45 ,2,15007,1870 ,2,15008,637955 ,2,15009,45 ,2,15010,637950 ,2,15011,45 ,2,15007,1870 ,2,15008,634760 ,2,15009,45 ,2,15010,634755 ,2,15011,45 ,2,15007,1870 ,2,15008,637895 ,2,15009,550000 ,2,15010,637890 ,2,15011,45 ,2,15007,1870 ,2,15008,637730 ,2,15009,550000 ,2,15010,637960 ,2,15011,45 ,2,15007,1870 ,2,15008,634790 ,2,15009,548750 ,2,15010,634785 ,2,15011,45 ,2,15007,1870 ,2,15008,634810 ,2,15009,548750 ,2,15010,634805 ,2,15011,45 ,2,15007,1870 ,2,15008,637975 ,2,15009,45 ,2,15010,637965 ,2,15011,45 ,2,15007,1870 ,2,15008,635135 ,2,15009,45 ,2,15010,635110 ,2,15011,45 ,2,15007,1870 ,2,15008,637985 ,2,15009,45 ,2,15010,637980 ,2,15011,45 ,2,15007,1870 ,2,15008,638000 ,2,15009,45 ,2,15010,637990 ,2,15011,45 ,2,15007,1870 ,2,15008,638035 ,2,15009,45 ,2,15010,638030 ,2,15011,45 ,2,15007,1870 ,2,15008,638035 ,2,15009,45 ,2,15010,638030 ,2,15011,45 ,2,15007,1870 ,2,15008,638010 ,2,15009,45 ,2,15010,638005 ,2,15011,45 ,2,15007,1870 ,2,15008,638025 ,2,15009,45 ,2,15010,638015 ,2,15011,45 ,2,15007,1870 ,2,15008,638090 ,2,15009,45 ,2,15010,638085 ,2,15011,45 ,2,15007,1870 ,2,15008,638100 ,2,15009,45 ,2,15010,638095 ,2,15011,45 ,2,15007,1870 ,2,15008,638130 ,2,15009,550010 ,2,15010,638125 ,2,15011,45 ,2,15007,323715 ,2,15008,638100 ,2,15009,45 ,2,15010,638095 ,2,15011,45 ,2,15007,1870 ,2,15008,638140 ,2,15009,45 ,2,15010,638135 ,2,15011,45 ,2,15007,1870 ,2,15008,638160 ,2,15009,45 ,2,15010,638155 ,2,15011,45 ,2,15007,1870 ,2,15008,638170 ,2,15009,550010 ,2,15010,638165 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550010 ,2,15010,638200 ,2,15011,45 ,2,15007,1870 ,2,15008,638330 ,2,15009,550010 ,2,15010,638325 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550015 ,2,15010,638215 ,2,15011,45 ,2,15007,1870 ,2,15008,638225 ,2,15009,45 ,2,15010,638220 ,2,15011,45 ,2,15007,1870 ,2,15008,638235 ,2,15009,45 ,2,15010,638230 ,2,15011,45 ,2,15007,1870 ,2,15008,638255 ,2,15009,550025 ,2,15010,638250 ,2,15011,45 ,2,15007,323790 ,2,15008,638235 ,2,15009,45 ,2,15010,638230 ,2,15011,45 ,2,15007,1870 ,2,15008,638265 ,2,15009,45 ,2,15010,638260 ,2,15011,45 ,2,15007,1870 ,2,15008,638255 ,2,15009,550025 ,2,15010,638250 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550025 ,2,15010,638275 ,2,15011,45 ,2,15007,1870 ,2,15008,638265 ,2,15009,45 ,2,15010,638260 ,2,15011,45 ,2,15007,323895 ,2,15008,629810 ,2,15009,550030 ,2,15010,638285 ,2,15011,45 ,2,15007,1870 ,2,15008,638320 ,2,15009,45 ,2,15010,638290 ,2,15011,45 ,2,15007,1870 ,2,15008,638130 ,2,15009,550010 ,2,15010,638125 ,2,15011,45 ,2,15007,1870 ,2,15008,638170 ,2,15009,550010 ,2,15010,638165 ,2,15011,45 ,2,15007,324040 ,2,15008,638160 ,2,15009,45 ,2,15010,638155 ,2,15011,45 ,2,15007,1870 ,2,15008,638340 ,2,15009,45 ,2,15010,638335 ,2,15011,45 ,2,15007,1870 ,2,15008,638140 ,2,15009,45 ,2,15010,638135 ,2,15011,45 ,2,15007,1870 ,2,15008,638350 ,2,15009,45 ,2,15010,638345 ,2,15011,45 ,2,15007,324185 ,2,15008,634665 ,2,15009,45 ,2,15010,634660 ,2,15011,45 ,2,15007,1870 ,2,15008,638360 ,2,15009,45 ,2,15010,638355 ,2,15011,45 ,2,15007,1870 ,2,15008,638370 ,2,15009,45 ,2,15010,638365 ,2,15011,45 ,2,15007,1870 ,2,15008,638380 ,2,15009,45 ,2,15010,638375 ,2,15011,45 ,2,15007,324625 ,2,15008,638610 ,2,15009,45 ,2,15010,638605 ,2,15011,45 ,2,15007,1870 ,2,15008,638610 ,2,15009,45 ,2,15010,638605 ,2,15011,45 ,2,15007,324410 ,2,15008,638395 ,2,15009,45 ,2,15010,638390 ,2,15011,45 ,2,15007,1870 ,2,15008,638395 ,2,15009,45 ,2,15010,638390 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550055 ,2,15010,638425 ,2,15011,45 ,2,15007,1870 ,2,15008,638455 ,2,15009,45 ,2,15010,638440 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550065 ,2,15010,638460 ,2,15011,45 ,2,15007,324445 ,2,15008,638455 ,2,15009,45 ,2,15010,638440 ,2,15011,45 ,2,15007,1870 ,2,15008,638490 ,2,15009,45 ,2,15010,638470 ,2,15011,45 ,2,15007,1870 ,2,15008,638500 ,2,15009,45 ,2,15010,638495 ,2,15011,45 ,2,15007,1870 ,2,15008,638515 ,2,15009,45 ,2,15010,638505 ,2,15011,45 ,2,15007,1870 ,2,15008,638530 ,2,15009,550075 ,2,15010,638520 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550075 ,2,15010,638555 ,2,15011,45 ,2,15007,1870 ,2,15008,638565 ,2,15009,550085 ,2,15010,638560 ,2,15011,45 ,2,15007,324550 ,2,15008,638435 ,2,15009,550085 ,2,15010,638570 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550090 ,2,15010,638580 ,2,15011,45 ,2,15007,1870 ,2,15008,638595 ,2,15009,550065 ,2,15010,638590 ,2,15011,45 ,2,15007,1870 ,2,15008,638490 ,2,15009,45 ,2,15010,638470 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629500 ,2,15011,133060 ,2,15007,1870 ,2,15008,638635 ,2,15009,45 ,2,15010,638630 ,2,15011,45 ,2,15007,1870 ,2,15008,638635 ,2,15009,45 ,2,15010,638630 ,2,15011,45 ,2,15007,1870 ,2,15008,638625 ,2,15009,45 ,2,15010,638615 ,2,15011,45 ,2,15007,1870 ,2,15008,638655 ,2,15009,45 ,2,15010,638640 ,2,15011,45 ,2,15007,1870 ,2,15008,638655 ,2,15009,45 ,2,15010,638640 ,2,15011,45 ,2,15007,1870 ,2,15008,638670 ,2,15009,45 ,2,15010,638665 ,2,15011,45 ,2,15007,1870 ,2,15008,638670 ,2,15009,45 ,2,15010,638665 ,2,15011,45 ,2,15007,1870 ,2,15008,638685 ,2,15009,45 ,2,15010,638680 ,2,15011,45 ,2,15007,1870 ,2,15008,638695 ,2,15009,45 ,2,15010,638690 ,2,15011,45 ,2,15007,1870 ,2,15008,638745 ,2,15009,550130 ,2,15010,638740 ,2,15011,45 ,2,15007,1870 ,2,15008,638765 ,2,15009,550130 ,2,15010,638760 ,2,15011,45 ,2,15007,1870 ,2,15008,638765 ,2,15009,550135 ,2,15010,638750 ,2,15011,45 ,2,15007,1870 ,2,15008,638775 ,2,15009,45 ,2,15010,638770 ,2,15011,45 ,2,15007,1870 ,2,15008,638790 ,2,15009,45 ,2,15010,638785 ,2,15011,45 ,2,15007,1870 ,2,15008,638790 ,2,15009,45 ,2,15010,638785 ,2,15011,45 ,2,15007,1870 ,2,15008,638800 ,2,15009,45 ,2,15010,638795 ,2,15011,45 ,2,15007,1870 ,2,15008,638820 ,2,15009,45 ,2,15010,638815 ,2,15011,45 ,2,15007,1870 ,2,15008,638830 ,2,15009,45 ,2,15010,638825 ,2,15011,45 ,2,15007,1870 ,2,15008,638830 ,2,15009,45 ,2,15010,638825 ,2,15011,45 ,2,15007,1870 ,2,15008,638855 ,2,15009,45 ,2,15010,638850 ,2,15011,45 ,2,15007,1870 ,2,15008,638865 ,2,15009,45 ,2,15010,638860 ,2,15011,45 ,2,15007,1870 ,2,15008,638880 ,2,15009,45 ,2,15010,638875 ,2,15011,45 ,2,15007,1870 ,2,15008,638920 ,2,15009,550150 ,2,15010,638885 ,2,15011,45 ,2,15007,1870 ,2,15008,638920 ,2,15009,550155 ,2,15010,638925 ,2,15011,45 ,2,15007,325380 ,2,15008,638880 ,2,15009,45 ,2,15010,638875 ,2,15011,45 ,2,15007,325405 ,2,15008,638855 ,2,15009,45 ,2,15010,638850 ,2,15011,45 ,2,15007,1870 ,2,15008,638935 ,2,15009,45 ,2,15010,638930 ,2,15011,45 ,2,15007,1870 ,2,15008,638945 ,2,15009,45 ,2,15010,638940 ,2,15011,45 ,2,15007,1870 ,2,15008,638945 ,2,15009,45 ,2,15010,638940 ,2,15011,45 ,2,15007,1870 ,2,15008,638935 ,2,15009,45 ,2,15010,638930 ,2,15011,45 ,2,15007,1870 ,2,15008,638970 ,2,15009,45 ,2,15010,638950 ,2,15011,45 ,2,15007,1870 ,2,15008,639170 ,2,15009,45 ,2,15010,639150 ,2,15011,45 ,2,15007,1870 ,2,15008,639170 ,2,15009,45 ,2,15010,639150 ,2,15011,45 ,2,15007,1870 ,2,15008,638980 ,2,15009,45 ,2,15010,638975 ,2,15011,45 ,2,15007,1870 ,2,15008,638990 ,2,15009,45 ,2,15010,638985 ,2,15011,45 ,2,15007,1870 ,2,15008,639040 ,2,15009,45 ,2,15010,639005 ,2,15011,45 ,2,15007,1870 ,2,15008,639040 ,2,15009,45 ,2,15010,639005 ,2,15011,45 ,2,15007,1870 ,2,15008,639000 ,2,15009,45 ,2,15010,638995 ,2,15011,45 ,2,15007,1870 ,2,15008,639050 ,2,15009,45 ,2,15010,639045 ,2,15011,45 ,2,15007,1870 ,2,15008,638990 ,2,15009,45 ,2,15010,638985 ,2,15011,45 ,2,15007,1870 ,2,15008,639065 ,2,15009,45 ,2,15010,639055 ,2,15011,45 ,2,15007,1870 ,2,15008,639075 ,2,15009,548015 ,2,15010,639070 ,2,15011,45 ,2,15007,1870 ,2,15008,639105 ,2,15009,45 ,2,15010,639080 ,2,15011,45 ,2,15007,1870 ,2,15008,639115 ,2,15009,45 ,2,15010,639110 ,2,15011,45 ,2,15007,1870 ,2,15008,638980 ,2,15009,45 ,2,15010,638975 ,2,15011,45 ,2,15007,1870 ,2,15008,639135 ,2,15009,45 ,2,15010,639120 ,2,15011,45 ,2,15007,1870 ,2,15008,639050 ,2,15009,45 ,2,15010,639045 ,2,15011,45 ,2,15007,1870 ,2,15008,628710 ,2,15009,550160 ,2,15010,639140 ,2,15011,45 ,2,15007,1870 ,2,15008,639075 ,2,15009,548015 ,2,15010,639070 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,550160 ,2,15010,639145 ,2,15011,45 ,2,15007,1870 ,2,15008,638970 ,2,15009,45 ,2,15010,638950 ,2,15011,45 ,2,15007,1870 ,2,15008,639180 ,2,15009,45 ,2,15010,639175 ,2,15011,45 ,2,15007,1870 ,2,15008,639190 ,2,15009,45 ,2,15010,639185 ,2,15011,45 ,2,15007,1870 ,2,15008,639180 ,2,15009,45 ,2,15010,639175 ,2,15011,45 ,2,15007,1870 ,2,15008,639200 ,2,15009,45 ,2,15010,639195 ,2,15011,45 ,2,15007,1870 ,2,15008,639200 ,2,15009,45 ,2,15010,639195 ,2,15011,45 ,2,15007,1870 ,2,15008,639220 ,2,15009,45 ,2,15010,639205 ,2,15011,45 ,2,15007,1870 ,2,15008,639220 ,2,15009,45 ,2,15010,639205 ,2,15011,45 ,2,15007,1870 ,2,15008,639230 ,2,15009,45 ,2,15010,639225 ,2,15011,45 ,2,15007,1870 ,2,15008,639240 ,2,15009,45 ,2,15010,639235 ,2,15011,45 ,2,15007,1870 ,2,15008,639240 ,2,15009,45 ,2,15010,639235 ,2,15011,45 ,2,15007,1870 ,2,15008,639230 ,2,15009,45 ,2,15010,639225 ,2,15011,45 ,2,15007,1870 ,2,15008,639250 ,2,15009,45 ,2,15010,639245 ,2,15011,45 ,2,15007,1870 ,2,15008,639285 ,2,15009,45 ,2,15010,639255 ,2,15011,45 ,2,15007,1870 ,2,15008,639250 ,2,15009,45 ,2,15010,639245 ,2,15011,45 ,2,15007,1870 ,2,15008,639295 ,2,15009,45 ,2,15010,639290 ,2,15011,45 ,2,15007,1870 ,2,15008,639295 ,2,15009,45 ,2,15010,639290 ,2,15011,45 ,2,15007,1870 ,2,15008,639305 ,2,15009,45 ,2,15010,639300 ,2,15011,45 ,2,15007,1870 ,2,15008,639305 ,2,15009,45 ,2,15010,639300 ,2,15011,45 ,2,15007,1870 ,2,15008,639315 ,2,15009,45 ,2,15010,639310 ,2,15011,45 ,2,15007,1870 ,2,15008,639315 ,2,15009,45 ,2,15010,639310 ,2,15011,45 ,2,15007,1870 ,2,15008,639340 ,2,15009,45 ,2,15010,639320 ,2,15011,45 ,2,15007,1870 ,2,15008,639340 ,2,15009,45 ,2,15010,639320 ,2,15011,45 ,2,15007,1870 ,2,15008,620175 ,2,15009,45 ,2,15010,620170 ,2,15011,45 ,2,15007,1870 ,2,15008,639350 ,2,15009,45 ,2,15010,639345 ,2,15011,45 ,2,15007,1870 ,2,15008,639350 ,2,15009,45 ,2,15010,639345 ,2,15011,45 ,2,15007,1870 ,2,15008,639365 ,2,15009,45 ,2,15010,639355 ,2,15011,45 ,2,15007,1870 ,2,15008,639365 ,2,15009,45 ,2,15010,639355 ,2,15011,45 ,2,15007,1870 ,2,15008,639375 ,2,15009,45 ,2,15010,639370 ,2,15011,45 ,2,15007,1870 ,2,15008,639375 ,2,15009,45 ,2,15010,639370 ,2,15011,45 ,2,15007,1870 ,2,15008,639395 ,2,15009,45 ,2,15010,639380 ,2,15011,45 ,2,15007,1870 ,2,15008,639395 ,2,15009,45 ,2,15010,639380 ,2,15011,45 ,2,15007,1870 ,2,15008,639405 ,2,15009,45 ,2,15010,639400 ,2,15011,45 ,2,15007,1870 ,2,15008,639415 ,2,15009,45 ,2,15010,639410 ,2,15011,45 ,2,15007,1870 ,2,15008,639405 ,2,15009,45 ,2,15010,639400 ,2,15011,45 ,2,15007,1870 ,2,15008,639425 ,2,15009,45 ,2,15010,639420 ,2,15011,45 ,2,15007,1870 ,2,15008,639425 ,2,15009,45 ,2,15010,639420 ,2,15011,45 ,2,15007,1870 ,2,15008,639465 ,2,15009,45 ,2,15010,639430 ,2,15011,45 ,2,15007,1870 ,2,15008,639475 ,2,15009,45 ,2,15010,639470 ,2,15011,45 ,2,15007,1870 ,2,15008,639505 ,2,15009,45 ,2,15010,639480 ,2,15011,45 ,2,15007,1870 ,2,15008,639465 ,2,15009,45 ,2,15010,639430 ,2,15011,45 ,2,15007,1870 ,2,15008,639515 ,2,15009,45 ,2,15010,639510 ,2,15011,45 ,2,15007,1870 ,2,15008,639515 ,2,15009,45 ,2,15010,639510 ,2,15011,45 ,2,15007,1870 ,2,15008,639560 ,2,15009,45 ,2,15010,639520 ,2,15011,45 ,2,15007,1870 ,2,15008,639570 ,2,15009,45 ,2,15010,639565 ,2,15011,45 ,2,15007,1870 ,2,15008,639570 ,2,15009,45 ,2,15010,639565 ,2,15011,45 ,2,15007,1870 ,2,15008,639560 ,2,15009,45 ,2,15010,639520 ,2,15011,45 ,2,15007,1870 ,2,15008,639580 ,2,15009,45 ,2,15010,639575 ,2,15011,45 ,2,15007,1870 ,2,15008,639580 ,2,15009,45 ,2,15010,639575 ,2,15011,45 ,2,15007,1870 ,2,15008,639590 ,2,15009,45 ,2,15010,639585 ,2,15011,45 ,2,15007,1870 ,2,15008,639590 ,2,15009,45 ,2,15010,639585 ,2,15011,45 ,2,15007,1870 ,2,15008,639615 ,2,15009,45 ,2,15010,639595 ,2,15011,45 ,2,15007,1870 ,2,15008,639625 ,2,15009,45 ,2,15010,639620 ,2,15011,45 ,2,15007,1870 ,2,15008,639635 ,2,15009,45 ,2,15010,639630 ,2,15011,45 ,2,15007,1870 ,2,15008,639625 ,2,15009,45 ,2,15010,639620 ,2,15011,45 ,2,15007,1870 ,2,15008,639645 ,2,15009,45 ,2,15010,639640 ,2,15011,45 ,2,15007,1870 ,2,15008,639680 ,2,15009,45 ,2,15010,639650 ,2,15011,45 ,2,15007,1870 ,2,15008,639690 ,2,15009,45 ,2,15010,639685 ,2,15011,45 ,2,15007,1870 ,2,15008,639825 ,2,15009,45 ,2,15010,639815 ,2,15011,45 ,2,15007,1870 ,2,15008,639825 ,2,15009,45 ,2,15010,639815 ,2,15011,45 ,2,15007,1870 ,2,15008,639700 ,2,15009,45 ,2,15010,639695 ,2,15011,45 ,2,15007,1870 ,2,15008,639710 ,2,15009,45 ,2,15010,639705 ,2,15011,45 ,2,15007,1870 ,2,15008,639745 ,2,15009,45 ,2,15010,639715 ,2,15011,45 ,2,15007,1870 ,2,15008,639755 ,2,15009,45 ,2,15010,639750 ,2,15011,45 ,2,15007,1870 ,2,15008,639755 ,2,15009,45 ,2,15010,639750 ,2,15011,45 ,2,15007,1870 ,2,15008,639700 ,2,15009,45 ,2,15010,639695 ,2,15011,45 ,2,15007,1870 ,2,15008,639765 ,2,15009,45 ,2,15010,639760 ,2,15011,45 ,2,15007,1870 ,2,15008,639765 ,2,15009,45 ,2,15010,639760 ,2,15011,45 ,2,15007,1870 ,2,15008,639775 ,2,15009,45 ,2,15010,639770 ,2,15011,45 ,2,15007,1870 ,2,15008,639800 ,2,15009,45 ,2,15010,639780 ,2,15011,45 ,2,15007,1870 ,2,15008,639800 ,2,15009,45 ,2,15010,639780 ,2,15011,45 ,2,15007,1870 ,2,15008,639810 ,2,15009,45 ,2,15010,639805 ,2,15011,45 ,2,15007,1870 ,2,15008,639615 ,2,15009,45 ,2,15010,639595 ,2,15011,45 ,2,15007,1870 ,2,15008,639835 ,2,15009,45 ,2,15010,639830 ,2,15011,45 ,2,15007,1870 ,2,15008,639855 ,2,15009,45 ,2,15010,639840 ,2,15011,45 ,2,15007,1870 ,2,15008,639865 ,2,15009,550185 ,2,15010,639860 ,2,15011,45 ,2,15007,327005 ,2,15008,639855 ,2,15009,45 ,2,15010,639840 ,2,15011,45 ,2,15007,1870 ,2,15008,639890 ,2,15009,550190 ,2,15010,639870 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,550190 ,2,15010,639895 ,2,15011,45 ,2,15007,1870 ,2,15008,639865 ,2,15009,550185 ,2,15010,639860 ,2,15011,45 ,2,15007,1870 ,2,15008,637730 ,2,15009,550185 ,2,15010,639900 ,2,15011,45 ,2,15007,1870 ,2,15008,639940 ,2,15009,45 ,2,15010,639905 ,2,15011,45 ,2,15007,1870 ,2,15008,634600 ,2,15009,45 ,2,15010,634595 ,2,15011,45 ,2,15007,1870 ,2,15008,634605 ,2,15009,548740 ,2,15010,634590 ,2,15011,45 ,2,15007,1870 ,2,15008,639955 ,2,15009,45 ,2,15010,639950 ,2,15011,45 ,2,15007,1870 ,2,15008,639975 ,2,15009,550195 ,2,15010,639960 ,2,15011,45 ,2,15007,327090 ,2,15008,639970 ,2,15009,45 ,2,15010,639965 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550195 ,2,15010,639995 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,550195 ,2,15010,640000 ,2,15011,45 ,2,15007,1870 ,2,15008,640010 ,2,15009,45 ,2,15010,640005 ,2,15011,45 ,2,15007,1870 ,2,15008,640030 ,2,15009,550195 ,2,15010,640025 ,2,15011,45 ,2,15007,1870 ,2,15008,639975 ,2,15009,550195 ,2,15010,639960 ,2,15011,45 ,2,15007,1870 ,2,15008,640040 ,2,15009,45 ,2,15010,640035 ,2,15011,45 ,2,15007,1870 ,2,15008,640070 ,2,15009,550200 ,2,15010,640065 ,2,15011,45 ,2,15007,327160 ,2,15008,640040 ,2,15009,45 ,2,15010,640035 ,2,15011,45 ,2,15007,1870 ,2,15008,636965 ,2,15009,45 ,2,15010,636950 ,2,15011,45 ,2,15007,1870 ,2,15008,640070 ,2,15009,550200 ,2,15010,640065 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550200 ,2,15010,640075 ,2,15011,45 ,2,15007,1870 ,2,15008,640105 ,2,15009,45 ,2,15010,640100 ,2,15011,45 ,2,15007,1870 ,2,15008,639970 ,2,15009,45 ,2,15010,639965 ,2,15011,45 ,2,15007,1870 ,2,15008,640030 ,2,15009,550195 ,2,15010,640025 ,2,15011,45 ,2,15007,1870 ,2,15008,640115 ,2,15009,550210 ,2,15010,640110 ,2,15011,45 ,2,15007,327420 ,2,15008,639955 ,2,15009,45 ,2,15010,639950 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550210 ,2,15010,640135 ,2,15011,45 ,2,15007,1870 ,2,15008,640145 ,2,15009,45 ,2,15010,640140 ,2,15011,45 ,2,15007,1870 ,2,15008,634450 ,2,15009,45 ,2,15010,634445 ,2,15011,45 ,2,15007,1870 ,2,15008,640155 ,2,15009,45 ,2,15010,640150 ,2,15011,45 ,2,15007,1870 ,2,15008,634480 ,2,15009,45 ,2,15010,634475 ,2,15011,45 ,2,15007,1870 ,2,15008,638320 ,2,15009,45 ,2,15010,638290 ,2,15011,45 ,2,15007,1870 ,2,15008,634440 ,2,15009,45 ,2,15010,634435 ,2,15011,45 ,2,15007,1870 ,2,15008,640165 ,2,15009,45 ,2,15010,640160 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,550215 ,2,15010,640170 ,2,15011,45 ,2,15007,1870 ,2,15008,634545 ,2,15009,45 ,2,15010,634540 ,2,15011,45 ,2,15007,1870 ,2,15008,640195 ,2,15009,45 ,2,15010,640190 ,2,15011,45 ,2,15007,1870 ,2,15008,640195 ,2,15009,45 ,2,15010,640190 ,2,15011,45 ,2,15007,1870 ,2,15008,640205 ,2,15009,45 ,2,15010,640200 ,2,15011,45 ,2,15007,1870 ,2,15008,640155 ,2,15009,45 ,2,15010,640150 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640220 ,2,15011,138460 ,2,15007,1870 ,2,15008,640165 ,2,15009,45 ,2,15010,640160 ,2,15011,45 ,2,15007,1870 ,2,15008,640205 ,2,15009,45 ,2,15010,640200 ,2,15011,45 ,2,15007,1870 ,2,15008,627360 ,2,15009,548015 ,2,15010,640225 ,2,15011,45 ,2,15007,1870 ,2,15008,640265 ,2,15009,45 ,2,15010,640260 ,2,15011,45 ,2,15007,1870 ,2,15008,640330 ,2,15009,550220 ,2,15010,640270 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550280 ,2,15010,640315 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550225 ,2,15010,640285 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550265 ,2,15010,640290 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,550270 ,2,15010,640300 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550285 ,2,15010,640320 ,2,15011,45 ,2,15007,1870 ,2,15008,640410 ,2,15009,550220 ,2,15010,640405 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,550295 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,640410 ,2,15009,550300 ,2,15010,640350 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550315 ,2,15010,640355 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550320 ,2,15010,640360 ,2,15011,45 ,2,15007,1870 ,2,15008,635525 ,2,15009,550325 ,2,15010,640395 ,2,15011,45 ,2,15007,1870 ,2,15008,616785 ,2,15009,550335 ,2,15010,640400 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,550280 ,2,15010,640420 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,550345 ,2,15010,640425 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,550350 ,2,15010,640430 ,2,15011,45 ,2,15007,1870 ,2,15008,640475 ,2,15009,45 ,2,15010,640435 ,2,15011,45 ,2,15007,1870 ,2,15008,640485 ,2,15009,45 ,2,15010,640480 ,2,15011,45 ,2,15007,1870 ,2,15008,640485 ,2,15009,45 ,2,15010,640480 ,2,15011,45 ,2,15007,1870 ,2,15008,640500 ,2,15009,550030 ,2,15010,640490 ,2,15011,45 ,2,15007,1870 ,2,15008,640510 ,2,15009,550030 ,2,15010,640505 ,2,15011,45 ,2,15007,1870 ,2,15008,640520 ,2,15009,45 ,2,15010,640515 ,2,15011,45 ,2,15007,1870 ,2,15008,640530 ,2,15009,550375 ,2,15010,640525 ,2,15011,45 ,2,15007,1870 ,2,15008,628595 ,2,15009,550375 ,2,15010,640535 ,2,15011,45 ,2,15007,1870 ,2,15008,640265 ,2,15009,45 ,2,15010,640260 ,2,15011,45 ,2,15007,1870 ,2,15008,640520 ,2,15009,45 ,2,15010,640515 ,2,15011,45 ,2,15007,1870 ,2,15008,634430 ,2,15009,45 ,2,15010,634425 ,2,15011,45 ,2,15007,1870 ,2,15008,640550 ,2,15009,45 ,2,15010,640545 ,2,15011,45 ,2,15007,1870 ,2,15008,634470 ,2,15009,45 ,2,15010,634465 ,2,15011,45 ,2,15007,1870 ,2,15008,634360 ,2,15009,548735 ,2,15010,634355 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548735 ,2,15010,640555 ,2,15011,45 ,2,15007,1870 ,2,15008,640605 ,2,15009,45 ,2,15010,640560 ,2,15011,45 ,2,15007,1870 ,2,15008,640605 ,2,15009,45 ,2,15010,640560 ,2,15011,45 ,2,15007,1870 ,2,15008,640630 ,2,15009,45 ,2,15010,640620 ,2,15011,45 ,2,15007,1870 ,2,15008,632970 ,2,15009,45 ,2,15010,632965 ,2,15011,45 ,2,15007,1870 ,2,15008,640645 ,2,15009,548495 ,2,15010,632405 ,2,15011,45 ,2,15007,1870 ,2,15008,640690 ,2,15009,548495 ,2,15010,640685 ,2,15011,45 ,2,15007,1870 ,2,15008,640690 ,2,15009,548495 ,2,15010,640685 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,548495 ,2,15010,640675 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,548495 ,2,15010,640680 ,2,15011,45 ,2,15007,1870 ,2,15008,640700 ,2,15009,45 ,2,15010,640695 ,2,15011,45 ,2,15007,1870 ,2,15008,640710 ,2,15009,45 ,2,15010,640705 ,2,15011,45 ,2,15007,1870 ,2,15008,640740 ,2,15009,45 ,2,15010,640735 ,2,15011,45 ,2,15007,1870 ,2,15008,640750 ,2,15009,45 ,2,15010,640745 ,2,15011,45 ,2,15007,1870 ,2,15008,640765 ,2,15009,550380 ,2,15010,640760 ,2,15011,45 ,2,15007,328400 ,2,15008,640700 ,2,15009,45 ,2,15010,640695 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550380 ,2,15010,640770 ,2,15011,45 ,2,15007,1870 ,2,15008,640710 ,2,15009,45 ,2,15010,640705 ,2,15011,45 ,2,15007,1870 ,2,15008,640795 ,2,15009,45 ,2,15010,640775 ,2,15011,45 ,2,15007,1870 ,2,15008,640740 ,2,15009,45 ,2,15010,640735 ,2,15011,45 ,2,15007,1870 ,2,15008,640805 ,2,15009,45 ,2,15010,640800 ,2,15011,45 ,2,15007,1870 ,2,15008,640805 ,2,15009,45 ,2,15010,640800 ,2,15011,45 ,2,15007,1870 ,2,15008,640825 ,2,15009,45 ,2,15010,640810 ,2,15011,45 ,2,15007,1870 ,2,15008,632170 ,2,15009,45 ,2,15010,632165 ,2,15011,45 ,2,15007,1870 ,2,15008,640855 ,2,15009,45 ,2,15010,640840 ,2,15011,45 ,2,15007,1870 ,2,15008,640880 ,2,15009,45 ,2,15010,640870 ,2,15011,45 ,2,15007,1870 ,2,15008,640880 ,2,15009,45 ,2,15010,640870 ,2,15011,45 ,2,15007,1870 ,2,15008,640865 ,2,15009,45 ,2,15010,640860 ,2,15011,45 ,2,15007,1870 ,2,15008,640890 ,2,15009,45 ,2,15010,640885 ,2,15011,45 ,2,15007,1870 ,2,15008,640925 ,2,15009,550385 ,2,15010,640895 ,2,15011,45 ,2,15007,328820 ,2,15008,640890 ,2,15009,45 ,2,15010,640885 ,2,15011,45 ,2,15007,1870 ,2,15008,640925 ,2,15009,550385 ,2,15010,640895 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550385 ,2,15010,640930 ,2,15011,45 ,2,15007,1870 ,2,15008,640940 ,2,15009,546765 ,2,15010,640935 ,2,15011,45 ,2,15007,1870 ,2,15008,640960 ,2,15009,550390 ,2,15010,640950 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,550390 ,2,15010,640965 ,2,15011,45 ,2,15007,1870 ,2,15008,641010 ,2,15009,45 ,2,15010,641005 ,2,15011,45 ,2,15007,1870 ,2,15008,641020 ,2,15009,548685 ,2,15010,641015 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,548685 ,2,15010,641025 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641030 ,2,15011,140790 ,2,15007,1870 ,2,15008,641065 ,2,15009,45 ,2,15010,641035 ,2,15011,45 ,2,15007,1870 ,2,15008,641020 ,2,15009,548685 ,2,15010,641015 ,2,15011,45 ,2,15007,1870 ,2,15008,624005 ,2,15009,546765 ,2,15010,624000 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,550405 ,2,15010,641075 ,2,15011,45 ,2,15007,329125 ,2,15008,636800 ,2,15009,45 ,2,15010,641080 ,2,15011,45 ,2,15007,1870 ,2,15008,641090 ,2,15009,45 ,2,15010,641085 ,2,15011,45 ,2,15007,1870 ,2,15008,641130 ,2,15009,45 ,2,15010,641125 ,2,15011,45 ,2,15007,1870 ,2,15008,641150 ,2,15009,550410 ,2,15010,641145 ,2,15011,45 ,2,15007,1870 ,2,15008,641170 ,2,15009,45 ,2,15010,641165 ,2,15011,45 ,2,15007,1870 ,2,15008,641180 ,2,15009,45 ,2,15010,641175 ,2,15011,45 ,2,15007,1870 ,2,15008,641205 ,2,15009,550430 ,2,15010,641190 ,2,15011,45 ,2,15007,329715 ,2,15008,641200 ,2,15009,45 ,2,15010,641195 ,2,15011,45 ,2,15007,1870 ,2,15008,641200 ,2,15009,45 ,2,15010,641195 ,2,15011,45 ,2,15007,1870 ,2,15008,641205 ,2,15009,550430 ,2,15010,641190 ,2,15011,45 ,2,15007,1870 ,2,15008,631095 ,2,15009,45 ,2,15010,631090 ,2,15011,45 ,2,15007,1870 ,2,15008,641325 ,2,15009,550430 ,2,15010,641320 ,2,15011,45 ,2,15007,1870 ,2,15008,641325 ,2,15009,550430 ,2,15010,641320 ,2,15011,45 ,2,15007,1870 ,2,15008,641290 ,2,15009,550430 ,2,15010,641285 ,2,15011,45 ,2,15007,1870 ,2,15008,641290 ,2,15009,550430 ,2,15010,641285 ,2,15011,45 ,2,15007,1870 ,2,15008,641260 ,2,15009,550430 ,2,15010,641255 ,2,15011,45 ,2,15007,1870 ,2,15008,641260 ,2,15009,550430 ,2,15010,641255 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550430 ,2,15010,641245 ,2,15011,45 ,2,15007,1870 ,2,15008,638330 ,2,15009,550430 ,2,15010,641250 ,2,15011,45 ,2,15007,329780 ,2,15008,641280 ,2,15009,45 ,2,15010,641275 ,2,15011,45 ,2,15007,1870 ,2,15008,641280 ,2,15009,45 ,2,15010,641275 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,550430 ,2,15010,641315 ,2,15011,45 ,2,15007,1870 ,2,15008,641345 ,2,15009,45 ,2,15010,641330 ,2,15011,45 ,2,15007,1870 ,2,15008,641660 ,2,15009,550435 ,2,15010,641350 ,2,15011,45 ,2,15007,330265 ,2,15008,641655 ,2,15009,45 ,2,15010,641650 ,2,15011,45 ,2,15007,1870 ,2,15008,641655 ,2,15009,45 ,2,15010,641650 ,2,15011,45 ,2,15007,1870 ,2,15008,641360 ,2,15009,45 ,2,15010,641355 ,2,15011,45 ,2,15007,1870 ,2,15008,641360 ,2,15009,45 ,2,15010,641355 ,2,15011,45 ,2,15007,1870 ,2,15008,641405 ,2,15009,45 ,2,15010,641400 ,2,15011,45 ,2,15007,1870 ,2,15008,641405 ,2,15009,45 ,2,15010,641400 ,2,15011,45 ,2,15007,1870 ,2,15008,641415 ,2,15009,45 ,2,15010,641410 ,2,15011,45 ,2,15007,1870 ,2,15008,641415 ,2,15009,45 ,2,15010,641410 ,2,15011,45 ,2,15007,1870 ,2,15008,641430 ,2,15009,45 ,2,15010,641425 ,2,15011,45 ,2,15007,1870 ,2,15008,641430 ,2,15009,45 ,2,15010,641425 ,2,15011,45 ,2,15007,1870 ,2,15008,620220 ,2,15009,45 ,2,15010,620215 ,2,15011,45 ,2,15007,1870 ,2,15008,641440 ,2,15009,45 ,2,15010,641435 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641450 ,2,15011,142370 ,2,15007,329995 ,2,15008,618780 ,2,15009,45 ,2,15010,618940 ,2,15011,45 ,2,15007,1870 ,2,15008,641460 ,2,15009,45 ,2,15010,641455 ,2,15011,45 ,2,15007,1870 ,2,15008,641460 ,2,15009,45 ,2,15010,641455 ,2,15011,45 ,2,15007,1870 ,2,15008,641470 ,2,15009,45 ,2,15010,641465 ,2,15011,45 ,2,15007,1870 ,2,15008,641480 ,2,15009,45 ,2,15010,641475 ,2,15011,45 ,2,15007,1870 ,2,15008,641510 ,2,15009,45 ,2,15010,641485 ,2,15011,45 ,2,15007,1870 ,2,15008,641520 ,2,15009,45 ,2,15010,641515 ,2,15011,45 ,2,15007,1870 ,2,15008,641530 ,2,15009,45 ,2,15010,641525 ,2,15011,45 ,2,15007,1870 ,2,15008,641540 ,2,15009,45 ,2,15010,641535 ,2,15011,45 ,2,15007,1870 ,2,15008,641575 ,2,15009,45 ,2,15010,641545 ,2,15011,45 ,2,15007,1870 ,2,15008,641585 ,2,15009,45 ,2,15010,641580 ,2,15011,45 ,2,15007,1870 ,2,15008,641540 ,2,15009,45 ,2,15010,641535 ,2,15011,45 ,2,15007,1870 ,2,15008,641595 ,2,15009,45 ,2,15010,641590 ,2,15011,45 ,2,15007,1870 ,2,15008,641605 ,2,15009,45 ,2,15010,641600 ,2,15011,45 ,2,15007,1870 ,2,15008,641645 ,2,15009,45 ,2,15010,641610 ,2,15011,45 ,2,15007,1870 ,2,15008,641440 ,2,15009,45 ,2,15010,641435 ,2,15011,45 ,2,15007,1870 ,2,15008,622760 ,2,15009,550435 ,2,15010,641680 ,2,15011,45 ,2,15007,330350 ,2,15008,631140 ,2,15009,45 ,2,15010,631100 ,2,15011,45 ,2,15007,1870 ,2,15008,641690 ,2,15009,45 ,2,15010,641685 ,2,15011,45 ,2,15007,330420 ,2,15008,641715 ,2,15009,45 ,2,15010,641695 ,2,15011,45 ,2,15007,1870 ,2,15008,641715 ,2,15009,45 ,2,15010,641695 ,2,15011,45 ,2,15007,1870 ,2,15008,641725 ,2,15009,45 ,2,15010,641720 ,2,15011,45 ,2,15007,1870 ,2,15008,642250 ,2,15009,45 ,2,15010,642230 ,2,15011,45 ,2,15007,1870 ,2,15008,642250 ,2,15009,45 ,2,15010,642230 ,2,15011,45 ,2,15007,1870 ,2,15008,641740 ,2,15009,45 ,2,15010,641730 ,2,15011,45 ,2,15007,1870 ,2,15008,641740 ,2,15009,45 ,2,15010,641730 ,2,15011,45 ,2,15007,1870 ,2,15008,641750 ,2,15009,45 ,2,15010,641745 ,2,15011,45 ,2,15007,1870 ,2,15008,641765 ,2,15009,45 ,2,15010,641755 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,550440 ,2,15010,641770 ,2,15011,45 ,2,15007,330645 ,2,15008,641855 ,2,15009,45 ,2,15010,641850 ,2,15011,45 ,2,15007,1870 ,2,15008,641855 ,2,15009,45 ,2,15010,641850 ,2,15011,45 ,2,15007,1870 ,2,15008,641785 ,2,15009,45 ,2,15010,641780 ,2,15011,45 ,2,15007,1870 ,2,15008,641785 ,2,15009,45 ,2,15010,641780 ,2,15011,45 ,2,15007,1870 ,2,15008,641795 ,2,15009,45 ,2,15010,641790 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,550445 ,2,15010,641845 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,550455 ,2,15010,641860 ,2,15011,45 ,2,15007,331390 ,2,15008,641765 ,2,15009,45 ,2,15010,641755 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642165 ,2,15011,144385 ,2,15007,1870 ,2,15008,642160 ,2,15009,45 ,2,15010,642155 ,2,15011,45 ,2,15007,1870 ,2,15008,642160 ,2,15009,45 ,2,15010,642155 ,2,15011,45 ,2,15007,1870 ,2,15008,641885 ,2,15009,45 ,2,15010,641880 ,2,15011,45 ,2,15007,1870 ,2,15008,641915 ,2,15009,45 ,2,15010,641910 ,2,15011,45 ,2,15007,1870 ,2,15008,641925 ,2,15009,45 ,2,15010,641920 ,2,15011,45 ,2,15007,1870 ,2,15008,641935 ,2,15009,45 ,2,15010,641930 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,550460 ,2,15010,641940 ,2,15011,45 ,2,15007,331675 ,2,15008,641925 ,2,15009,45 ,2,15010,641920 ,2,15011,45 ,2,15007,331685 ,2,15008,641965 ,2,15009,45 ,2,15010,641945 ,2,15011,45 ,2,15007,1870 ,2,15008,641975 ,2,15009,45 ,2,15010,641970 ,2,15011,45 ,2,15007,1870 ,2,15008,641965 ,2,15009,45 ,2,15010,641945 ,2,15011,45 ,2,15007,331735 ,2,15008,641795 ,2,15009,45 ,2,15010,641790 ,2,15011,45 ,2,15007,1870 ,2,15008,641995 ,2,15009,45 ,2,15010,641980 ,2,15011,45 ,2,15007,1870 ,2,15008,641935 ,2,15009,45 ,2,15010,641930 ,2,15011,45 ,2,15007,1870 ,2,15008,642005 ,2,15009,45 ,2,15010,642000 ,2,15011,45 ,2,15007,1870 ,2,15008,642055 ,2,15009,45 ,2,15010,642010 ,2,15011,45 ,2,15007,1870 ,2,15008,642065 ,2,15009,45 ,2,15010,642060 ,2,15011,45 ,2,15007,1870 ,2,15008,642080 ,2,15009,45 ,2,15010,642070 ,2,15011,45 ,2,15007,1870 ,2,15008,642090 ,2,15009,45 ,2,15010,642085 ,2,15011,45 ,2,15007,1870 ,2,15008,642090 ,2,15009,45 ,2,15010,642085 ,2,15011,45 ,2,15007,1870 ,2,15008,642080 ,2,15009,45 ,2,15010,642070 ,2,15011,45 ,2,15007,1870 ,2,15008,642120 ,2,15009,45 ,2,15010,642095 ,2,15011,45 ,2,15007,1870 ,2,15008,642130 ,2,15009,45 ,2,15010,642125 ,2,15011,45 ,2,15007,1870 ,2,15008,642150 ,2,15009,45 ,2,15010,642135 ,2,15011,45 ,2,15007,1870 ,2,15008,642195 ,2,15009,45 ,2,15010,642190 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,550465 ,2,15010,642200 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,550470 ,2,15010,642205 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,550495 ,2,15010,642215 ,2,15011,45 ,2,15007,332130 ,2,15008,641975 ,2,15009,45 ,2,15010,641970 ,2,15011,45 ,2,15007,1870 ,2,15008,642195 ,2,15009,45 ,2,15010,642190 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,145670 ,2,15007,1870 ,2,15008,641575 ,2,15009,45 ,2,15010,641545 ,2,15011,45 ,2,15007,1870 ,2,15008,641480 ,2,15009,45 ,2,15010,641475 ,2,15011,45 ,2,15007,1870 ,2,15008,641645 ,2,15009,45 ,2,15010,641610 ,2,15011,45 ,2,15007,1870 ,2,15008,642260 ,2,15009,45 ,2,15010,642255 ,2,15011,45 ,2,15007,1870 ,2,15008,642275 ,2,15009,45 ,2,15010,642265 ,2,15011,45 ,2,15007,1870 ,2,15008,642285 ,2,15009,45 ,2,15010,642280 ,2,15011,45 ,2,15007,1870 ,2,15008,642310 ,2,15009,548015 ,2,15010,642290 ,2,15011,45 ,2,15007,1870 ,2,15008,642320 ,2,15009,550500 ,2,15010,642315 ,2,15011,45 ,2,15007,332845 ,2,15008,642275 ,2,15009,45 ,2,15010,642265 ,2,15011,45 ,2,15007,1870 ,2,15008,622760 ,2,15009,550500 ,2,15010,642325 ,2,15011,45 ,2,15007,1870 ,2,15008,642350 ,2,15009,550505 ,2,15010,642335 ,2,15011,45 ,2,15007,332875 ,2,15008,642345 ,2,15009,45 ,2,15010,642340 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550505 ,2,15010,642370 ,2,15011,45 ,2,15007,1870 ,2,15008,633430 ,2,15009,45 ,2,15010,633420 ,2,15011,45 ,2,15007,1870 ,2,15008,633295 ,2,15009,45 ,2,15010,633290 ,2,15011,45 ,2,15007,1870 ,2,15008,633360 ,2,15009,45 ,2,15010,633355 ,2,15011,45 ,2,15007,1870 ,2,15008,633305 ,2,15009,45 ,2,15010,633300 ,2,15011,45 ,2,15007,1870 ,2,15008,642410 ,2,15009,45 ,2,15010,642405 ,2,15011,45 ,2,15007,1870 ,2,15008,642430 ,2,15009,45 ,2,15010,642415 ,2,15011,45 ,2,15007,1870 ,2,15008,642440 ,2,15009,45 ,2,15010,642435 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,550510 ,2,15010,642445 ,2,15011,45 ,2,15007,333340 ,2,15008,642440 ,2,15009,45 ,2,15010,642435 ,2,15011,45 ,2,15007,1870 ,2,15008,642455 ,2,15009,45 ,2,15010,642450 ,2,15011,45 ,2,15007,1870 ,2,15008,642465 ,2,15009,45 ,2,15010,642460 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,636325 ,2,15011,147420 ,2,15007,1870 ,2,15008,642500 ,2,15009,550515 ,2,15010,642485 ,2,15011,45 ,2,15007,333655 ,2,15008,642495 ,2,15009,45 ,2,15010,642490 ,2,15011,45 ,2,15007,1870 ,2,15008,642495 ,2,15009,45 ,2,15010,642490 ,2,15011,45 ,2,15007,1870 ,2,15008,642500 ,2,15009,550515 ,2,15010,642485 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550515 ,2,15010,642505 ,2,15011,45 ,2,15007,1870 ,2,15008,642515 ,2,15009,45 ,2,15010,642510 ,2,15011,45 ,2,15007,1870 ,2,15008,642465 ,2,15009,45 ,2,15010,642460 ,2,15011,45 ,2,15007,1870 ,2,15008,642285 ,2,15009,45 ,2,15010,642280 ,2,15011,45 ,2,15007,1870 ,2,15008,641660 ,2,15009,550435 ,2,15010,641350 ,2,15011,45 ,2,15007,1870 ,2,15008,641750 ,2,15009,45 ,2,15010,641745 ,2,15011,45 ,2,15007,1870 ,2,15008,642545 ,2,15009,45 ,2,15010,642540 ,2,15011,45 ,2,15007,1870 ,2,15008,642560 ,2,15009,45 ,2,15010,642550 ,2,15011,45 ,2,15007,1870 ,2,15008,642570 ,2,15009,45 ,2,15010,642565 ,2,15011,45 ,2,15007,1870 ,2,15008,642610 ,2,15009,45 ,2,15010,642575 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,548015 ,2,15010,642615 ,2,15011,45 ,2,15007,1870 ,2,15008,642625 ,2,15009,45 ,2,15010,642620 ,2,15011,45 ,2,15007,1870 ,2,15008,642640 ,2,15009,45 ,2,15010,642635 ,2,15011,45 ,2,15007,1870 ,2,15008,642610 ,2,15009,45 ,2,15010,642575 ,2,15011,45 ,2,15007,1870 ,2,15008,642655 ,2,15009,45 ,2,15010,642645 ,2,15011,45 ,2,15007,1870 ,2,15008,642665 ,2,15009,45 ,2,15010,642660 ,2,15011,45 ,2,15007,1870 ,2,15008,642685 ,2,15009,550520 ,2,15010,642670 ,2,15011,45 ,2,15007,334630 ,2,15008,642665 ,2,15009,45 ,2,15010,642660 ,2,15011,45 ,2,15007,1870 ,2,15008,642730 ,2,15009,550525 ,2,15010,642690 ,2,15011,45 ,2,15007,334650 ,2,15008,642700 ,2,15009,45 ,2,15010,642695 ,2,15011,45 ,2,15007,1870 ,2,15008,642740 ,2,15009,550525 ,2,15010,642735 ,2,15011,45 ,2,15007,1870 ,2,15008,642760 ,2,15009,45 ,2,15010,642745 ,2,15011,45 ,2,15007,1870 ,2,15008,642770 ,2,15009,45 ,2,15010,642765 ,2,15011,45 ,2,15007,1870 ,2,15008,642770 ,2,15009,45 ,2,15010,642765 ,2,15011,45 ,2,15007,1870 ,2,15008,642795 ,2,15009,45 ,2,15010,642775 ,2,15011,45 ,2,15007,1870 ,2,15008,642760 ,2,15009,45 ,2,15010,642745 ,2,15011,45 ,2,15007,334845 ,2,15008,642795 ,2,15009,45 ,2,15010,642775 ,2,15011,45 ,2,15007,1870 ,2,15008,620705 ,2,15009,45 ,2,15010,620700 ,2,15011,45 ,2,15007,1870 ,2,15008,642815 ,2,15009,550530 ,2,15010,642800 ,2,15011,45 ,2,15007,334920 ,2,15008,642810 ,2,15009,45 ,2,15010,642805 ,2,15011,45 ,2,15007,1870 ,2,15008,642825 ,2,15009,550530 ,2,15010,642820 ,2,15011,45 ,2,15007,1870 ,2,15008,642850 ,2,15009,550520 ,2,15010,642830 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550520 ,2,15010,642855 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,550520 ,2,15010,642860 ,2,15011,45 ,2,15007,1870 ,2,15008,642700 ,2,15009,45 ,2,15010,642695 ,2,15011,45 ,2,15007,1870 ,2,15008,642730 ,2,15009,550525 ,2,15010,642690 ,2,15011,45 ,2,15007,1870 ,2,15008,642625 ,2,15009,45 ,2,15010,642620 ,2,15011,45 ,2,15007,1870 ,2,15008,642810 ,2,15009,45 ,2,15010,642805 ,2,15011,45 ,2,15007,1870 ,2,15008,642815 ,2,15009,550530 ,2,15010,642800 ,2,15011,45 ,2,15007,1870 ,2,15008,642880 ,2,15009,45 ,2,15010,642865 ,2,15011,45 ,2,15007,1870 ,2,15008,642740 ,2,15009,550525 ,2,15010,642735 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550525 ,2,15010,642885 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,550525 ,2,15010,642890 ,2,15011,45 ,2,15007,1870 ,2,15008,642910 ,2,15009,550555 ,2,15010,642895 ,2,15011,45 ,2,15007,1870 ,2,15008,623635 ,2,15009,550555 ,2,15010,642915 ,2,15011,45 ,2,15007,1870 ,2,15008,642685 ,2,15009,550520 ,2,15010,642670 ,2,15011,45 ,2,15007,1870 ,2,15008,642850 ,2,15009,550520 ,2,15010,642830 ,2,15011,45 ,2,15007,1870 ,2,15008,642925 ,2,15009,45 ,2,15010,642920 ,2,15011,45 ,2,15007,1870 ,2,15008,642655 ,2,15009,45 ,2,15010,642645 ,2,15011,45 ,2,15007,1870 ,2,15008,642640 ,2,15009,45 ,2,15010,642635 ,2,15011,45 ,2,15007,1870 ,2,15008,642825 ,2,15009,550530 ,2,15010,642820 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550530 ,2,15010,642935 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,550530 ,2,15010,642940 ,2,15011,45 ,2,15007,1870 ,2,15008,642950 ,2,15009,45 ,2,15010,642945 ,2,15011,45 ,2,15007,1870 ,2,15008,642990 ,2,15009,45 ,2,15010,642985 ,2,15011,45 ,2,15007,1870 ,2,15008,642545 ,2,15009,45 ,2,15010,642540 ,2,15011,45 ,2,15007,1870 ,2,15008,643015 ,2,15009,550560 ,2,15010,642995 ,2,15011,45 ,2,15007,335365 ,2,15008,643010 ,2,15009,45 ,2,15010,643000 ,2,15011,45 ,2,15007,1870 ,2,15008,643025 ,2,15009,550560 ,2,15010,643020 ,2,15011,45 ,2,15007,1870 ,2,15008,622780 ,2,15009,549140 ,2,15010,643050 ,2,15011,45 ,2,15007,1870 ,2,15008,642455 ,2,15009,45 ,2,15010,642450 ,2,15011,45 ,2,15007,1870 ,2,15008,642345 ,2,15009,45 ,2,15010,642340 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637660 ,2,15011,150795 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642480 ,2,15011,150850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637665 ,2,15011,150870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642385 ,2,15011,150900 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642400 ,2,15011,150920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642380 ,2,15011,150955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642375 ,2,15011,150990 ,2,15007,1870 ,2,15008,643060 ,2,15009,45 ,2,15010,643055 ,2,15011,45 ,2,15007,335540 ,2,15008,633390 ,2,15009,45 ,2,15010,633385 ,2,15011,45 ,2,15007,1870 ,2,15008,643010 ,2,15009,45 ,2,15010,643000 ,2,15011,45 ,2,15007,1870 ,2,15008,643015 ,2,15009,550560 ,2,15010,642995 ,2,15011,45 ,2,15007,1870 ,2,15008,643075 ,2,15009,45 ,2,15010,643065 ,2,15011,45 ,2,15007,1870 ,2,15008,643085 ,2,15009,550500 ,2,15010,643080 ,2,15011,45 ,2,15007,1870 ,2,15008,642320 ,2,15009,550500 ,2,15010,642315 ,2,15011,45 ,2,15007,1870 ,2,15008,643025 ,2,15009,550560 ,2,15010,643020 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550560 ,2,15010,643090 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,550560 ,2,15010,643110 ,2,15011,45 ,2,15007,1870 ,2,15008,643120 ,2,15009,45 ,2,15010,643115 ,2,15011,45 ,2,15007,1870 ,2,15008,641595 ,2,15009,45 ,2,15010,641590 ,2,15011,45 ,2,15007,1870 ,2,15008,642410 ,2,15009,45 ,2,15010,642405 ,2,15011,45 ,2,15007,1870 ,2,15008,643170 ,2,15009,45 ,2,15010,643145 ,2,15011,45 ,2,15007,1870 ,2,15008,643180 ,2,15009,550565 ,2,15010,643175 ,2,15011,45 ,2,15007,336290 ,2,15008,643170 ,2,15009,45 ,2,15010,643145 ,2,15011,45 ,2,15007,1870 ,2,15008,643190 ,2,15009,45 ,2,15010,643185 ,2,15011,45 ,2,15007,1870 ,2,15008,643200 ,2,15009,550565 ,2,15010,643195 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550565 ,2,15010,643205 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,550565 ,2,15010,643225 ,2,15011,45 ,2,15007,1870 ,2,15008,643235 ,2,15009,45 ,2,15010,643230 ,2,15011,45 ,2,15007,1870 ,2,15008,643250 ,2,15009,45 ,2,15010,643240 ,2,15011,45 ,2,15007,1870 ,2,15008,643260 ,2,15009,45 ,2,15010,643255 ,2,15011,45 ,2,15007,1870 ,2,15008,643250 ,2,15009,45 ,2,15010,643240 ,2,15011,45 ,2,15007,1870 ,2,15008,643290 ,2,15009,45 ,2,15010,643265 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,550570 ,2,15010,643295 ,2,15011,45 ,2,15007,1870 ,2,15008,642310 ,2,15009,548015 ,2,15010,642290 ,2,15011,45 ,2,15007,1870 ,2,15008,643305 ,2,15009,45 ,2,15010,643300 ,2,15011,45 ,2,15007,1870 ,2,15008,643190 ,2,15009,45 ,2,15010,643185 ,2,15011,45 ,2,15007,1870 ,2,15008,643315 ,2,15009,45 ,2,15010,643310 ,2,15011,45 ,2,15007,1870 ,2,15008,643180 ,2,15009,550565 ,2,15010,643175 ,2,15011,45 ,2,15007,1870 ,2,15008,643200 ,2,15009,550565 ,2,15010,643195 ,2,15011,45 ,2,15007,1870 ,2,15008,643325 ,2,15009,45 ,2,15010,643320 ,2,15011,45 ,2,15007,1870 ,2,15008,643360 ,2,15009,45 ,2,15010,643355 ,2,15011,45 ,2,15007,1870 ,2,15008,643360 ,2,15009,45 ,2,15010,643355 ,2,15011,45 ,2,15007,1870 ,2,15008,643325 ,2,15009,45 ,2,15010,643320 ,2,15011,45 ,2,15007,1870 ,2,15008,643315 ,2,15009,45 ,2,15010,643310 ,2,15011,45 ,2,15007,1870 ,2,15008,643290 ,2,15009,45 ,2,15010,643265 ,2,15011,45 ,2,15007,1870 ,2,15008,643370 ,2,15009,45 ,2,15010,643365 ,2,15011,45 ,2,15007,1870 ,2,15008,643380 ,2,15009,45 ,2,15010,643375 ,2,15011,45 ,2,15007,1870 ,2,15008,643390 ,2,15009,550575 ,2,15010,643385 ,2,15011,45 ,2,15007,336655 ,2,15008,643380 ,2,15009,45 ,2,15010,643375 ,2,15011,45 ,2,15007,1870 ,2,15008,643390 ,2,15009,550575 ,2,15010,643385 ,2,15011,45 ,2,15007,1870 ,2,15008,643405 ,2,15009,550575 ,2,15010,643400 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,643410 ,2,15011,153380 ,2,15007,1870 ,2,15008,643405 ,2,15009,550575 ,2,15010,643400 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550575 ,2,15010,643415 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,550575 ,2,15010,643425 ,2,15011,45 ,2,15007,1870 ,2,15008,643435 ,2,15009,45 ,2,15010,643430 ,2,15011,45 ,2,15007,1870 ,2,15008,643460 ,2,15009,45 ,2,15010,643440 ,2,15011,45 ,2,15007,1870 ,2,15008,631285 ,2,15009,45 ,2,15010,631255 ,2,15011,45 ,2,15007,1870 ,2,15008,631295 ,2,15009,45 ,2,15010,631290 ,2,15011,45 ,2,15007,1870 ,2,15008,631340 ,2,15009,45 ,2,15010,631335 ,2,15011,45 ,2,15007,1870 ,2,15008,643525 ,2,15009,45 ,2,15010,643520 ,2,15011,45 ,2,15007,1870 ,2,15008,643535 ,2,15009,45 ,2,15010,643530 ,2,15011,45 ,2,15007,1870 ,2,15008,643545 ,2,15009,45 ,2,15010,643540 ,2,15011,45 ,2,15007,1870 ,2,15008,643590 ,2,15009,45 ,2,15010,643555 ,2,15011,45 ,2,15007,1870 ,2,15008,643600 ,2,15009,45 ,2,15010,643595 ,2,15011,45 ,2,15007,1870 ,2,15008,643610 ,2,15009,550130 ,2,15010,643605 ,2,15011,45 ,2,15007,1870 ,2,15008,643620 ,2,15009,550130 ,2,15010,643615 ,2,15011,45 ,2,15007,1870 ,2,15008,643655 ,2,15009,550130 ,2,15010,643625 ,2,15011,45 ,2,15007,1870 ,2,15008,643665 ,2,15009,45 ,2,15010,643660 ,2,15011,45 ,2,15007,1870 ,2,15008,643685 ,2,15009,45 ,2,15010,643670 ,2,15011,45 ,2,15007,1870 ,2,15008,643695 ,2,15009,45 ,2,15010,643690 ,2,15011,45 ,2,15007,1870 ,2,15008,643735 ,2,15009,550580 ,2,15010,643700 ,2,15011,45 ,2,15007,1870 ,2,15008,643745 ,2,15009,45 ,2,15010,643740 ,2,15011,45 ,2,15007,1870 ,2,15008,643620 ,2,15009,550590 ,2,15010,643750 ,2,15011,45 ,2,15007,1870 ,2,15008,643765 ,2,15009,550130 ,2,15010,643760 ,2,15011,45 ,2,15007,1870 ,2,15008,643795 ,2,15009,550130 ,2,15010,643790 ,2,15011,45 ,2,15007,1870 ,2,15008,628115 ,2,15009,45 ,2,15010,628110 ,2,15011,45 ,2,15007,1870 ,2,15008,643795 ,2,15009,550640 ,2,15010,643800 ,2,15011,45 ,2,15007,1870 ,2,15008,643825 ,2,15009,550645 ,2,15010,643820 ,2,15011,45 ,2,15007,1870 ,2,15008,643795 ,2,15009,550645 ,2,15010,643830 ,2,15011,45 ,2,15007,1870 ,2,15008,643870 ,2,15009,45 ,2,15010,643835 ,2,15011,45 ,2,15007,1870 ,2,15008,643525 ,2,15009,45 ,2,15010,643520 ,2,15011,45 ,2,15007,1870 ,2,15008,643880 ,2,15009,45 ,2,15010,643875 ,2,15011,45 ,2,15007,1870 ,2,15008,643900 ,2,15009,45 ,2,15010,643885 ,2,15011,45 ,2,15007,1870 ,2,15008,643620 ,2,15009,550640 ,2,15010,643905 ,2,15011,45 ,2,15007,1870 ,2,15008,643915 ,2,15009,45 ,2,15010,643910 ,2,15011,45 ,2,15007,1870 ,2,15008,627665 ,2,15009,45 ,2,15010,627635 ,2,15011,45 ,2,15007,1870 ,2,15008,643940 ,2,15009,45 ,2,15010,643935 ,2,15011,45 ,2,15007,1870 ,2,15008,643950 ,2,15009,45 ,2,15010,643945 ,2,15011,45 ,2,15007,1870 ,2,15008,643960 ,2,15009,546765 ,2,15010,643955 ,2,15011,45 ,2,15007,1870 ,2,15008,643620 ,2,15009,546765 ,2,15010,643965 ,2,15011,45 ,2,15007,1870 ,2,15008,643990 ,2,15009,45 ,2,15010,643970 ,2,15011,45 ,2,15007,1870 ,2,15008,644000 ,2,15009,45 ,2,15010,643995 ,2,15011,45 ,2,15007,1870 ,2,15008,644015 ,2,15009,45 ,2,15010,644005 ,2,15011,45 ,2,15007,1870 ,2,15008,644025 ,2,15009,45 ,2,15010,644020 ,2,15011,45 ,2,15007,1870 ,2,15008,644055 ,2,15009,45 ,2,15010,644050 ,2,15011,45 ,2,15007,1870 ,2,15008,643880 ,2,15009,45 ,2,15010,643875 ,2,15011,45 ,2,15007,1870 ,2,15008,644070 ,2,15009,45 ,2,15010,644060 ,2,15011,45 ,2,15007,1870 ,2,15008,644080 ,2,15009,45 ,2,15010,644075 ,2,15011,45 ,2,15007,1870 ,2,15008,644115 ,2,15009,45 ,2,15010,644085 ,2,15011,45 ,2,15007,1870 ,2,15008,644080 ,2,15009,45 ,2,15010,644075 ,2,15011,45 ,2,15007,1870 ,2,15008,644125 ,2,15009,45 ,2,15010,644120 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,550665 ,2,15010,644145 ,2,15011,45 ,2,15007,1870 ,2,15008,644125 ,2,15009,45 ,2,15010,644120 ,2,15011,45 ,2,15007,1870 ,2,15008,644155 ,2,15009,45 ,2,15010,644150 ,2,15011,45 ,2,15007,1870 ,2,15008,644190 ,2,15009,45 ,2,15010,644185 ,2,15011,45 ,2,15007,1870 ,2,15008,643685 ,2,15009,45 ,2,15010,643670 ,2,15011,45 ,2,15007,1870 ,2,15008,644200 ,2,15009,45 ,2,15010,644195 ,2,15011,45 ,2,15007,1870 ,2,15008,631620 ,2,15009,45 ,2,15010,631615 ,2,15011,45 ,2,15007,1870 ,2,15008,644210 ,2,15009,45 ,2,15010,644205 ,2,15011,45 ,2,15007,1870 ,2,15008,643870 ,2,15009,45 ,2,15010,643835 ,2,15011,45 ,2,15007,1870 ,2,15008,644220 ,2,15009,45 ,2,15010,644215 ,2,15011,45 ,2,15007,1870 ,2,15008,644260 ,2,15009,45 ,2,15010,644255 ,2,15011,45 ,2,15007,1870 ,2,15008,640510 ,2,15009,550410 ,2,15010,644265 ,2,15011,45 ,2,15007,1870 ,2,15008,644280 ,2,15009,45 ,2,15010,644270 ,2,15011,45 ,2,15007,1870 ,2,15008,634255 ,2,15009,45 ,2,15010,634250 ,2,15011,45 ,2,15007,1870 ,2,15008,644290 ,2,15009,45 ,2,15010,644285 ,2,15011,45 ,2,15007,1870 ,2,15008,638025 ,2,15009,45 ,2,15010,638015 ,2,15011,45 ,2,15007,1870 ,2,15008,644315 ,2,15009,45 ,2,15010,644295 ,2,15011,45 ,2,15007,1870 ,2,15008,644025 ,2,15009,45 ,2,15010,644020 ,2,15011,45 ,2,15007,1870 ,2,15008,644325 ,2,15009,45 ,2,15010,644320 ,2,15011,45 ,2,15007,1870 ,2,15008,644335 ,2,15009,550670 ,2,15010,644330 ,2,15011,45 ,2,15007,339315 ,2,15008,644325 ,2,15009,45 ,2,15010,644320 ,2,15011,45 ,2,15007,1870 ,2,15008,644345 ,2,15009,45 ,2,15010,644340 ,2,15011,45 ,2,15007,1870 ,2,15008,644370 ,2,15009,45 ,2,15010,644350 ,2,15011,45 ,2,15007,1870 ,2,15008,631315 ,2,15009,45 ,2,15010,631310 ,2,15011,45 ,2,15007,1870 ,2,15008,644380 ,2,15009,45 ,2,15010,644375 ,2,15011,45 ,2,15007,1870 ,2,15008,631305 ,2,15009,45 ,2,15010,631300 ,2,15011,45 ,2,15007,1870 ,2,15008,644390 ,2,15009,45 ,2,15010,644385 ,2,15011,45 ,2,15007,1870 ,2,15008,643535 ,2,15009,45 ,2,15010,643530 ,2,15011,45 ,2,15007,1870 ,2,15008,644400 ,2,15009,45 ,2,15010,644395 ,2,15011,45 ,2,15007,1870 ,2,15008,643745 ,2,15009,45 ,2,15010,643740 ,2,15011,45 ,2,15007,1870 ,2,15008,644430 ,2,15009,45 ,2,15010,644405 ,2,15011,45 ,2,15007,1870 ,2,15008,643600 ,2,15009,45 ,2,15010,643595 ,2,15011,45 ,2,15007,1870 ,2,15008,644440 ,2,15009,45 ,2,15010,644435 ,2,15011,45 ,2,15007,1870 ,2,15008,644455 ,2,15009,550675 ,2,15010,644445 ,2,15011,45 ,2,15007,1870 ,2,15008,640510 ,2,15009,550675 ,2,15010,644460 ,2,15011,45 ,2,15007,1870 ,2,15008,644455 ,2,15009,550675 ,2,15010,644445 ,2,15011,45 ,2,15007,1870 ,2,15008,644470 ,2,15009,45 ,2,15010,644465 ,2,15011,45 ,2,15007,1870 ,2,15008,643950 ,2,15009,45 ,2,15010,643945 ,2,15011,45 ,2,15007,1870 ,2,15008,644485 ,2,15009,45 ,2,15010,644480 ,2,15011,45 ,2,15007,1870 ,2,15008,643460 ,2,15009,45 ,2,15010,643440 ,2,15011,45 ,2,15007,1870 ,2,15008,644495 ,2,15009,550685 ,2,15010,644490 ,2,15011,45 ,2,15007,1870 ,2,15008,644510 ,2,15009,550685 ,2,15010,644505 ,2,15011,45 ,2,15007,1870 ,2,15008,644520 ,2,15009,45 ,2,15010,644515 ,2,15011,45 ,2,15007,1870 ,2,15008,644015 ,2,15009,45 ,2,15010,644005 ,2,15011,45 ,2,15007,1870 ,2,15008,644535 ,2,15009,45 ,2,15010,644530 ,2,15011,45 ,2,15007,1870 ,2,15008,643590 ,2,15009,45 ,2,15010,643555 ,2,15011,45 ,2,15007,1870 ,2,15008,644545 ,2,15009,45 ,2,15010,644540 ,2,15011,45 ,2,15007,1870 ,2,15008,643825 ,2,15009,550645 ,2,15010,643820 ,2,15011,45 ,2,15007,1870 ,2,15008,644560 ,2,15009,45 ,2,15010,644555 ,2,15011,45 ,2,15007,1870 ,2,15008,643545 ,2,15009,45 ,2,15010,643540 ,2,15011,45 ,2,15007,1870 ,2,15008,628545 ,2,15009,45 ,2,15010,628540 ,2,15011,45 ,2,15007,1870 ,2,15008,644570 ,2,15009,45 ,2,15010,644565 ,2,15011,45 ,2,15007,1870 ,2,15008,644605 ,2,15009,45 ,2,15010,644600 ,2,15011,45 ,2,15007,1870 ,2,15008,644615 ,2,15009,45 ,2,15010,644610 ,2,15011,45 ,2,15007,1870 ,2,15008,644640 ,2,15009,45 ,2,15010,644635 ,2,15011,45 ,2,15007,1870 ,2,15008,644650 ,2,15009,45 ,2,15010,644645 ,2,15011,45 ,2,15007,1870 ,2,15008,643915 ,2,15009,45 ,2,15010,643910 ,2,15011,45 ,2,15007,1870 ,2,15008,644680 ,2,15009,45 ,2,15010,644675 ,2,15011,45 ,2,15007,1870 ,2,15008,644000 ,2,15009,45 ,2,15010,643995 ,2,15011,45 ,2,15007,1870 ,2,15008,644615 ,2,15009,45 ,2,15010,644610 ,2,15011,45 ,2,15007,1870 ,2,15008,644570 ,2,15009,45 ,2,15010,644565 ,2,15011,45 ,2,15007,1870 ,2,15008,643695 ,2,15009,45 ,2,15010,643690 ,2,15011,45 ,2,15007,1870 ,2,15008,644690 ,2,15009,45 ,2,15010,644685 ,2,15011,45 ,2,15007,1870 ,2,15008,644700 ,2,15009,45 ,2,15010,644695 ,2,15011,45 ,2,15007,1870 ,2,15008,644485 ,2,15009,45 ,2,15010,644480 ,2,15011,45 ,2,15007,1870 ,2,15008,644710 ,2,15009,45 ,2,15010,644705 ,2,15011,45 ,2,15007,1870 ,2,15008,643900 ,2,15009,45 ,2,15010,643885 ,2,15011,45 ,2,15007,1870 ,2,15008,644725 ,2,15009,45 ,2,15010,644720 ,2,15011,45 ,2,15007,1870 ,2,15008,644735 ,2,15009,45 ,2,15010,644730 ,2,15011,45 ,2,15007,1870 ,2,15008,643665 ,2,15009,45 ,2,15010,643660 ,2,15011,45 ,2,15007,1870 ,2,15008,644335 ,2,15009,550670 ,2,15010,644330 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550670 ,2,15010,644740 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629505 ,2,15011,159435 ,2,15007,1870 ,2,15008,644750 ,2,15009,45 ,2,15010,644745 ,2,15011,45 ,2,15007,1870 ,2,15008,644440 ,2,15009,45 ,2,15010,644435 ,2,15011,45 ,2,15007,1870 ,2,15008,644780 ,2,15009,45 ,2,15010,644755 ,2,15011,45 ,2,15007,1870 ,2,15008,643960 ,2,15009,546765 ,2,15010,643955 ,2,15011,45 ,2,15007,1870 ,2,15008,644790 ,2,15009,45 ,2,15010,644785 ,2,15011,45 ,2,15007,1870 ,2,15008,644845 ,2,15009,45 ,2,15010,644840 ,2,15011,45 ,2,15007,1870 ,2,15008,644845 ,2,15009,45 ,2,15010,644840 ,2,15011,45 ,2,15007,1870 ,2,15008,644820 ,2,15009,45 ,2,15010,644815 ,2,15011,45 ,2,15007,1870 ,2,15008,644820 ,2,15009,45 ,2,15010,644815 ,2,15011,45 ,2,15007,1870 ,2,15008,644810 ,2,15009,45 ,2,15010,644805 ,2,15011,45 ,2,15007,1870 ,2,15008,644810 ,2,15009,45 ,2,15010,644805 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,548545 ,2,15010,644795 ,2,15011,45 ,2,15007,1870 ,2,15008,644855 ,2,15009,45 ,2,15010,644850 ,2,15011,45 ,2,15007,1870 ,2,15008,644865 ,2,15009,45 ,2,15010,644860 ,2,15011,45 ,2,15007,1870 ,2,15008,644865 ,2,15009,45 ,2,15010,644860 ,2,15011,45 ,2,15007,1870 ,2,15008,644875 ,2,15009,45 ,2,15010,644870 ,2,15011,45 ,2,15007,1870 ,2,15008,643765 ,2,15009,550130 ,2,15010,643760 ,2,15011,45 ,2,15007,1870 ,2,15008,644895 ,2,15009,45 ,2,15010,644890 ,2,15011,45 ,2,15007,1870 ,2,15008,643940 ,2,15009,45 ,2,15010,643935 ,2,15011,45 ,2,15007,1870 ,2,15008,644260 ,2,15009,45 ,2,15010,644255 ,2,15011,45 ,2,15007,1870 ,2,15008,639115 ,2,15009,45 ,2,15010,639110 ,2,15011,45 ,2,15007,1870 ,2,15008,644510 ,2,15009,550685 ,2,15010,644505 ,2,15011,45 ,2,15007,1870 ,2,15008,640510 ,2,15009,550685 ,2,15010,644900 ,2,15011,45 ,2,15007,1870 ,2,15008,644920 ,2,15009,45 ,2,15010,644905 ,2,15011,45 ,2,15007,1870 ,2,15008,644995 ,2,15009,45 ,2,15010,644990 ,2,15011,45 ,2,15007,1870 ,2,15008,644995 ,2,15009,45 ,2,15010,644990 ,2,15011,45 ,2,15007,1870 ,2,15008,644985 ,2,15009,45 ,2,15010,644980 ,2,15011,45 ,2,15007,1870 ,2,15008,644985 ,2,15009,45 ,2,15010,644980 ,2,15011,45 ,2,15007,1870 ,2,15008,644970 ,2,15009,45 ,2,15010,644965 ,2,15011,45 ,2,15007,1870 ,2,15008,644970 ,2,15009,45 ,2,15010,644965 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,550690 ,2,15010,644925 ,2,15011,45 ,2,15007,1870 ,2,15008,644935 ,2,15009,548015 ,2,15010,644930 ,2,15011,45 ,2,15007,1870 ,2,15008,644935 ,2,15009,548015 ,2,15010,644930 ,2,15011,45 ,2,15007,1870 ,2,15008,628710 ,2,15009,550690 ,2,15010,644975 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,645055 ,2,15011,161260 ,2,15007,1870 ,2,15008,645100 ,2,15009,45 ,2,15010,645095 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,550750 ,2,15010,645105 ,2,15011,45 ,2,15007,340775 ,2,15008,645100 ,2,15009,45 ,2,15010,645095 ,2,15011,45 ,2,15007,1870 ,2,15008,645120 ,2,15009,45 ,2,15010,645110 ,2,15011,45 ,2,15007,1870 ,2,15008,630170 ,2,15009,45 ,2,15010,630165 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,645125 ,2,15011,161375 ,2,15007,1870 ,2,15008,615310 ,2,15009,550755 ,2,15010,645130 ,2,15011,45 ,2,15007,340785 ,2,15008,630250 ,2,15009,45 ,2,15010,630245 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,550755 ,2,15010,645135 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,548265 ,2,15010,645145 ,2,15011,45 ,2,15007,1870 ,2,15008,645155 ,2,15009,45 ,2,15010,645150 ,2,15011,45 ,2,15007,1870 ,2,15008,645155 ,2,15009,45 ,2,15010,645150 ,2,15011,45 ,2,15007,1870 ,2,15008,645175 ,2,15009,45 ,2,15010,645170 ,2,15011,45 ,2,15007,1870 ,2,15008,645205 ,2,15009,45 ,2,15010,645180 ,2,15011,45 ,2,15007,1870 ,2,15008,645215 ,2,15009,550760 ,2,15010,645210 ,2,15011,45 ,2,15007,340970 ,2,15008,645205 ,2,15009,45 ,2,15010,645180 ,2,15011,45 ,2,15007,1870 ,2,15008,645235 ,2,15009,550765 ,2,15010,645220 ,2,15011,45 ,2,15007,340995 ,2,15008,645230 ,2,15009,45 ,2,15010,645225 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550765 ,2,15010,645240 ,2,15011,45 ,2,15007,1870 ,2,15008,645260 ,2,15009,45 ,2,15010,645255 ,2,15011,45 ,2,15007,1870 ,2,15008,645290 ,2,15009,550785 ,2,15010,645265 ,2,15011,45 ,2,15007,341025 ,2,15008,645285 ,2,15009,45 ,2,15010,645270 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550785 ,2,15010,645295 ,2,15011,45 ,2,15007,1870 ,2,15008,645325 ,2,15009,550790 ,2,15010,645300 ,2,15011,45 ,2,15007,341060 ,2,15008,645320 ,2,15009,45 ,2,15010,645315 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550790 ,2,15010,645330 ,2,15011,45 ,2,15007,1870 ,2,15008,645350 ,2,15009,550795 ,2,15010,645335 ,2,15011,45 ,2,15007,341080 ,2,15008,645345 ,2,15009,45 ,2,15010,645340 ,2,15011,45 ,2,15007,1870 ,2,15008,638435 ,2,15009,550795 ,2,15010,645365 ,2,15011,45 ,2,15007,1870 ,2,15008,645375 ,2,15009,45 ,2,15010,645370 ,2,15011,45 ,2,15007,1870 ,2,15008,645390 ,2,15009,45 ,2,15010,645380 ,2,15011,45 ,2,15007,1870 ,2,15008,645230 ,2,15009,45 ,2,15010,645225 ,2,15011,45 ,2,15007,1870 ,2,15008,645285 ,2,15009,45 ,2,15010,645270 ,2,15011,45 ,2,15007,1870 ,2,15008,645345 ,2,15009,45 ,2,15010,645340 ,2,15011,45 ,2,15007,1870 ,2,15008,645320 ,2,15009,45 ,2,15010,645315 ,2,15011,45 ,2,15007,1870 ,2,15008,645215 ,2,15009,550760 ,2,15010,645210 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550760 ,2,15010,645395 ,2,15011,45 ,2,15007,1870 ,2,15008,645175 ,2,15009,45 ,2,15010,645170 ,2,15011,45 ,2,15007,1870 ,2,15008,645405 ,2,15009,45 ,2,15010,645400 ,2,15011,45 ,2,15007,1870 ,2,15008,645435 ,2,15009,550800 ,2,15010,645430 ,2,15011,45 ,2,15007,341290 ,2,15008,645405 ,2,15009,45 ,2,15010,645400 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550800 ,2,15010,645440 ,2,15011,45 ,2,15007,1870 ,2,15008,645455 ,2,15009,45 ,2,15010,645445 ,2,15011,45 ,2,15007,1870 ,2,15008,645465 ,2,15009,550800 ,2,15010,645460 ,2,15011,45 ,2,15007,1870 ,2,15008,645490 ,2,15009,548265 ,2,15010,645470 ,2,15011,45 ,2,15007,1870 ,2,15008,630230 ,2,15009,548265 ,2,15010,645495 ,2,15011,45 ,2,15007,1870 ,2,15008,645465 ,2,15009,550800 ,2,15010,645460 ,2,15011,45 ,2,15007,1870 ,2,15008,645435 ,2,15009,550800 ,2,15010,645430 ,2,15011,45 ,2,15007,341620 ,2,15008,630140 ,2,15009,45 ,2,15010,630135 ,2,15011,45 ,2,15007,1870 ,2,15008,645535 ,2,15009,45 ,2,15010,645530 ,2,15011,45 ,2,15007,1870 ,2,15008,645565 ,2,15009,45 ,2,15010,645560 ,2,15011,45 ,2,15007,1870 ,2,15008,645575 ,2,15009,45 ,2,15010,645570 ,2,15011,45 ,2,15007,1870 ,2,15008,645595 ,2,15009,550820 ,2,15010,645585 ,2,15011,45 ,2,15007,1870 ,2,15008,629900 ,2,15009,45 ,2,15010,629895 ,2,15011,45 ,2,15007,1870 ,2,15008,645635 ,2,15009,550830 ,2,15010,645600 ,2,15011,45 ,2,15007,1870 ,2,15008,629615 ,2,15009,550830 ,2,15010,645640 ,2,15011,45 ,2,15007,1870 ,2,15008,630020 ,2,15009,45 ,2,15010,630015 ,2,15011,45 ,2,15007,1870 ,2,15008,629735 ,2,15009,45 ,2,15010,629715 ,2,15011,45 ,2,15007,1870 ,2,15008,629810 ,2,15009,550845 ,2,15010,645645 ,2,15011,45 ,2,15007,1870 ,2,15008,629920 ,2,15009,45 ,2,15010,629915 ,2,15011,45 ,2,15007,341715 ,2,15008,640510 ,2,15009,550845 ,2,15010,645655 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,550855 ,2,15010,645660 ,2,15011,45 ,2,15007,1870 ,2,15008,645685 ,2,15009,45 ,2,15010,645665 ,2,15011,45 ,2,15007,1870 ,2,15008,645695 ,2,15009,45 ,2,15010,645690 ,2,15011,45 ,2,15007,1870 ,2,15008,629760 ,2,15009,45 ,2,15010,629755 ,2,15011,45 ,2,15007,1870 ,2,15008,629560 ,2,15009,45 ,2,15010,629555 ,2,15011,45 ,2,15007,1870 ,2,15008,630060 ,2,15009,45 ,2,15010,630055 ,2,15011,45 ,2,15007,1870 ,2,15008,629835 ,2,15009,45 ,2,15010,629830 ,2,15011,45 ,2,15007,1870 ,2,15008,640510 ,2,15009,550895 ,2,15010,645700 ,2,15011,45 ,2,15007,1870 ,2,15008,629810 ,2,15009,550895 ,2,15010,645710 ,2,15011,45 ,2,15007,1870 ,2,15008,645720 ,2,15009,45 ,2,15010,645715 ,2,15011,45 ,2,15007,1870 ,2,15008,645755 ,2,15009,45 ,2,15010,645750 ,2,15011,45 ,2,15007,1870 ,2,15008,629685 ,2,15009,45 ,2,15010,629680 ,2,15011,45 ,2,15007,1870 ,2,15008,631250 ,2,15009,45 ,2,15010,631245 ,2,15011,45 ,2,15007,1870 ,2,15008,644605 ,2,15009,45 ,2,15010,644600 ,2,15011,45 ,2,15007,1870 ,2,15008,629710 ,2,15009,45 ,2,15010,629705 ,2,15011,45 ,2,15007,1870 ,2,15008,629845 ,2,15009,45 ,2,15010,629840 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,550905 ,2,15010,645765 ,2,15011,45 ,2,15007,342015 ,2,15008,619490 ,2,15009,45 ,2,15010,619485 ,2,15011,45 ,2,15007,1870 ,2,15008,628990 ,2,15009,45 ,2,15010,628985 ,2,15011,45 ,2,15007,1870 ,2,15008,645785 ,2,15009,550910 ,2,15010,645775 ,2,15011,45 ,2,15007,1870 ,2,15008,645835 ,2,15009,550910 ,2,15010,645840 ,2,15011,45 ,2,15007,1870 ,2,15008,645890 ,2,15009,45 ,2,15010,645885 ,2,15011,45 ,2,15007,1870 ,2,15008,645890 ,2,15009,45 ,2,15010,645885 ,2,15011,45 ,2,15007,1870 ,2,15008,645880 ,2,15009,45 ,2,15010,645865 ,2,15011,45 ,2,15007,1870 ,2,15008,645880 ,2,15009,45 ,2,15010,645865 ,2,15011,45 ,2,15007,1870 ,2,15008,645860 ,2,15009,45 ,2,15010,645855 ,2,15011,45 ,2,15007,1870 ,2,15008,645860 ,2,15009,45 ,2,15010,645855 ,2,15011,45 ,2,15007,1870 ,2,15008,645935 ,2,15009,550960 ,2,15010,645925 ,2,15011,45 ,2,15007,1870 ,2,15008,645935 ,2,15009,550940 ,2,15010,645895 ,2,15011,45 ,2,15007,1870 ,2,15008,645695 ,2,15009,45 ,2,15010,645690 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,550940 ,2,15010,645905 ,2,15011,45 ,2,15007,342605 ,2,15008,645915 ,2,15009,550940 ,2,15010,645910 ,2,15011,45 ,2,15007,1870 ,2,15008,645915 ,2,15009,550960 ,2,15010,645940 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,550960 ,2,15010,645955 ,2,15011,45 ,2,15007,1870 ,2,15008,646010 ,2,15009,45 ,2,15010,646005 ,2,15011,45 ,2,15007,1870 ,2,15008,625685 ,2,15009,45 ,2,15010,625680 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,550975 ,2,15010,646020 ,2,15011,45 ,2,15007,1870 ,2,15008,624280 ,2,15009,45 ,2,15010,624275 ,2,15011,45 ,2,15007,1870 ,2,15008,646070 ,2,15009,45 ,2,15010,646065 ,2,15011,45 ,2,15007,1870 ,2,15008,646085 ,2,15009,550980 ,2,15010,646075 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,550985 ,2,15010,646090 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,550985 ,2,15010,646095 ,2,15011,45 ,2,15007,1870 ,2,15008,646120 ,2,15009,45 ,2,15010,646100 ,2,15011,45 ,2,15007,1870 ,2,15008,646130 ,2,15009,45 ,2,15010,646125 ,2,15011,45 ,2,15007,1870 ,2,15008,646130 ,2,15009,45 ,2,15010,646125 ,2,15011,45 ,2,15007,1870 ,2,15008,646150 ,2,15009,45 ,2,15010,646135 ,2,15011,45 ,2,15007,1870 ,2,15008,646160 ,2,15009,45 ,2,15010,646155 ,2,15011,45 ,2,15007,1870 ,2,15008,646190 ,2,15009,45 ,2,15010,646165 ,2,15011,45 ,2,15007,1870 ,2,15008,646190 ,2,15009,45 ,2,15010,646165 ,2,15011,45 ,2,15007,343495 ,2,15008,646150 ,2,15009,45 ,2,15010,646135 ,2,15011,45 ,2,15007,343530 ,2,15008,616980 ,2,15009,45 ,2,15010,622635 ,2,15011,45 ,2,15007,343540 ,2,15008,646160 ,2,15009,45 ,2,15010,646155 ,2,15011,45 ,2,15007,1870 ,2,15008,646205 ,2,15009,45 ,2,15010,646200 ,2,15011,45 ,2,15007,1870 ,2,15008,646220 ,2,15009,45 ,2,15010,646215 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,557705 ,2,15010,622460 ,2,15011,45 ,2,15007,1870 ,2,15008,646230 ,2,15009,45 ,2,15010,646225 ,2,15011,45 ,2,15007,1870 ,2,15008,646265 ,2,15009,45 ,2,15010,646260 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,165950 ,2,15007,1870 ,2,15008,646275 ,2,15009,45 ,2,15010,646270 ,2,15011,45 ,2,15007,1870 ,2,15008,646290 ,2,15009,45 ,2,15010,646285 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551015 ,2,15010,646320 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551020 ,2,15010,646325 ,2,15011,45 ,2,15007,1870 ,2,15008,646290 ,2,15009,45 ,2,15010,646285 ,2,15011,45 ,2,15007,1870 ,2,15008,646220 ,2,15009,45 ,2,15010,646215 ,2,15011,45 ,2,15007,1870 ,2,15008,646335 ,2,15009,45 ,2,15010,646330 ,2,15011,45 ,2,15007,1870 ,2,15008,646335 ,2,15009,45 ,2,15010,646330 ,2,15011,45 ,2,15007,1870 ,2,15008,646355 ,2,15009,45 ,2,15010,646350 ,2,15011,45 ,2,15007,1870 ,2,15008,646390 ,2,15009,551025 ,2,15010,646360 ,2,15011,45 ,2,15007,1870 ,2,15008,617430 ,2,15009,551025 ,2,15010,646395 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551025 ,2,15010,646400 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551025 ,2,15010,646405 ,2,15011,45 ,2,15007,1870 ,2,15008,646420 ,2,15009,551035 ,2,15010,646415 ,2,15011,45 ,2,15007,1870 ,2,15008,617430 ,2,15009,551040 ,2,15010,617425 ,2,15011,45 ,2,15007,1870 ,2,15008,646430 ,2,15009,45 ,2,15010,646425 ,2,15011,45 ,2,15007,1870 ,2,15008,646470 ,2,15009,45 ,2,15010,646465 ,2,15011,45 ,2,15007,1870 ,2,15008,646490 ,2,15009,551050 ,2,15010,646475 ,2,15011,45 ,2,15007,344160 ,2,15008,646485 ,2,15009,45 ,2,15010,646480 ,2,15011,45 ,2,15007,1870 ,2,15008,646500 ,2,15009,551050 ,2,15010,646495 ,2,15011,45 ,2,15007,1870 ,2,15008,646500 ,2,15009,551070 ,2,15010,646525 ,2,15011,45 ,2,15007,1870 ,2,15008,625960 ,2,15009,45 ,2,15010,625955 ,2,15011,45 ,2,15007,1870 ,2,15008,646485 ,2,15009,45 ,2,15010,646480 ,2,15011,45 ,2,15007,1870 ,2,15008,646540 ,2,15009,45 ,2,15010,646535 ,2,15011,45 ,2,15007,1870 ,2,15008,646470 ,2,15009,45 ,2,15010,646465 ,2,15011,45 ,2,15007,1870 ,2,15008,646550 ,2,15009,551080 ,2,15010,646545 ,2,15011,45 ,2,15007,344270 ,2,15008,646430 ,2,15009,45 ,2,15010,646425 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,551080 ,2,15010,646555 ,2,15011,45 ,2,15007,1870 ,2,15008,646585 ,2,15009,551080 ,2,15010,646560 ,2,15011,45 ,2,15007,1870 ,2,15008,646550 ,2,15009,551080 ,2,15010,646545 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646590 ,2,15011,166770 ,2,15007,1870 ,2,15008,626005 ,2,15009,45 ,2,15010,626000 ,2,15011,45 ,2,15007,1870 ,2,15008,646605 ,2,15009,551085 ,2,15010,646595 ,2,15011,45 ,2,15007,1870 ,2,15008,646500 ,2,15009,551085 ,2,15010,646610 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551050 ,2,15010,646615 ,2,15011,45 ,2,15007,1870 ,2,15008,646645 ,2,15009,551050 ,2,15010,646620 ,2,15011,45 ,2,15007,1870 ,2,15008,646490 ,2,15009,551050 ,2,15010,646475 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551095 ,2,15010,646655 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,551100 ,2,15010,646660 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551085 ,2,15010,646675 ,2,15011,45 ,2,15007,1870 ,2,15008,646585 ,2,15009,551080 ,2,15010,646560 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,551140 ,2,15010,616660 ,2,15011,45 ,2,15007,1870 ,2,15008,646715 ,2,15009,551145 ,2,15010,646685 ,2,15011,45 ,2,15007,1870 ,2,15008,650015 ,2,15009,45 ,2,15010,650010 ,2,15011,45 ,2,15007,1870 ,2,15008,650015 ,2,15009,45 ,2,15010,650010 ,2,15011,45 ,2,15007,344580 ,2,15008,633490 ,2,15009,551205 ,2,15010,650740 ,2,15011,45 ,2,15007,1870 ,2,15008,650750 ,2,15009,45 ,2,15010,650745 ,2,15011,45 ,2,15007,1870 ,2,15008,650765 ,2,15009,45 ,2,15010,650760 ,2,15011,45 ,2,15007,1870 ,2,15008,650765 ,2,15009,45 ,2,15010,650760 ,2,15011,45 ,2,15007,1870 ,2,15008,650775 ,2,15009,45 ,2,15010,650770 ,2,15011,45 ,2,15007,1870 ,2,15008,650815 ,2,15009,45 ,2,15010,650810 ,2,15011,45 ,2,15007,1870 ,2,15008,650830 ,2,15009,45 ,2,15010,650820 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551215 ,2,15010,650835 ,2,15011,45 ,2,15007,344910 ,2,15008,651225 ,2,15009,550440 ,2,15010,651220 ,2,15011,45 ,2,15007,1870 ,2,15008,651225 ,2,15009,550440 ,2,15010,651220 ,2,15011,45 ,2,15007,1870 ,2,15008,650885 ,2,15009,550440 ,2,15010,650875 ,2,15011,45 ,2,15007,1870 ,2,15008,650885 ,2,15009,550440 ,2,15010,650875 ,2,15011,45 ,2,15007,1870 ,2,15008,650870 ,2,15009,550440 ,2,15010,650865 ,2,15011,45 ,2,15007,1870 ,2,15008,650870 ,2,15009,551275 ,2,15010,650840 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,551275 ,2,15010,650860 ,2,15011,45 ,2,15007,1870 ,2,15008,650895 ,2,15009,45 ,2,15010,650890 ,2,15011,45 ,2,15007,1870 ,2,15008,650920 ,2,15009,45 ,2,15010,650900 ,2,15011,45 ,2,15007,1870 ,2,15008,651135 ,2,15009,551285 ,2,15010,651130 ,2,15011,45 ,2,15007,1870 ,2,15008,651135 ,2,15009,551290 ,2,15010,650940 ,2,15011,45 ,2,15007,1870 ,2,15008,651085 ,2,15009,551290 ,2,15010,651070 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,551305 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,651085 ,2,15009,551310 ,2,15010,650950 ,2,15011,45 ,2,15007,1870 ,2,15008,651060 ,2,15009,551310 ,2,15010,651055 ,2,15011,45 ,2,15007,1870 ,2,15008,651020 ,2,15009,551315 ,2,15010,651015 ,2,15011,45 ,2,15007,1870 ,2,15008,651020 ,2,15009,551330 ,2,15010,650995 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551330 ,2,15010,651005 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551345 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,551330 ,2,15010,651010 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,551310 ,2,15010,651065 ,2,15011,45 ,2,15007,1870 ,2,15008,651125 ,2,15009,551290 ,2,15010,651120 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,551385 ,2,15010,651095 ,2,15011,45 ,2,15007,1870 ,2,15008,651155 ,2,15009,551400 ,2,15010,651150 ,2,15011,45 ,2,15007,1870 ,2,15008,650895 ,2,15009,45 ,2,15010,650890 ,2,15011,45 ,2,15007,1870 ,2,15008,630230 ,2,15009,551400 ,2,15010,651160 ,2,15011,45 ,2,15007,1870 ,2,15008,651195 ,2,15009,45 ,2,15010,651165 ,2,15011,45 ,2,15007,1870 ,2,15008,651205 ,2,15009,551405 ,2,15010,651200 ,2,15011,45 ,2,15007,344860 ,2,15008,651195 ,2,15009,45 ,2,15010,651165 ,2,15011,45 ,2,15007,1870 ,2,15008,650920 ,2,15009,45 ,2,15010,650900 ,2,15011,45 ,2,15007,1870 ,2,15008,651205 ,2,15009,551405 ,2,15010,651200 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,551405 ,2,15010,651210 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,636325 ,2,15011,168155 ,2,15007,1870 ,2,15008,651280 ,2,15009,551420 ,2,15010,651230 ,2,15011,45 ,2,15007,1870 ,2,15008,636255 ,2,15009,551420 ,2,15010,651285 ,2,15011,45 ,2,15007,1870 ,2,15008,651295 ,2,15009,45 ,2,15010,651290 ,2,15011,45 ,2,15007,1870 ,2,15008,651310 ,2,15009,45 ,2,15010,651305 ,2,15011,45 ,2,15007,1870 ,2,15008,651345 ,2,15009,45 ,2,15010,651340 ,2,15011,45 ,2,15007,1870 ,2,15008,651345 ,2,15009,45 ,2,15010,651340 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551460 ,2,15010,651355 ,2,15011,45 ,2,15007,1870 ,2,15008,651375 ,2,15009,45 ,2,15010,651370 ,2,15011,45 ,2,15007,345045 ,2,15008,651375 ,2,15009,45 ,2,15010,651370 ,2,15011,45 ,2,15007,1870 ,2,15008,651640 ,2,15009,45 ,2,15010,651635 ,2,15011,45 ,2,15007,1870 ,2,15008,651655 ,2,15009,45 ,2,15010,651645 ,2,15011,45 ,2,15007,1870 ,2,15008,651665 ,2,15009,45 ,2,15010,651660 ,2,15011,45 ,2,15007,1870 ,2,15008,651685 ,2,15009,45 ,2,15010,651670 ,2,15011,45 ,2,15007,1870 ,2,15008,651685 ,2,15009,45 ,2,15010,651670 ,2,15011,45 ,2,15007,1870 ,2,15008,651695 ,2,15009,45 ,2,15010,651690 ,2,15011,45 ,2,15007,1870 ,2,15008,651655 ,2,15009,45 ,2,15010,651645 ,2,15011,45 ,2,15007,1870 ,2,15008,651430 ,2,15009,45 ,2,15010,651700 ,2,15011,45 ,2,15007,1870 ,2,15008,651435 ,2,15009,45 ,2,15010,651710 ,2,15011,45 ,2,15007,1870 ,2,15008,651435 ,2,15009,45 ,2,15010,651710 ,2,15011,45 ,2,15007,1870 ,2,15008,650335 ,2,15009,45 ,2,15010,651715 ,2,15011,45 ,2,15007,1870 ,2,15008,650340 ,2,15009,45 ,2,15010,651720 ,2,15011,45 ,2,15007,1870 ,2,15008,651760 ,2,15009,45 ,2,15010,651725 ,2,15011,45 ,2,15007,1870 ,2,15008,647615 ,2,15009,45 ,2,15010,651765 ,2,15011,45 ,2,15007,1870 ,2,15008,647650 ,2,15009,45 ,2,15010,651770 ,2,15011,45 ,2,15007,1870 ,2,15008,647650 ,2,15009,45 ,2,15010,651770 ,2,15011,45 ,2,15007,1870 ,2,15008,647655 ,2,15009,45 ,2,15010,651775 ,2,15011,45 ,2,15007,1870 ,2,15008,647620 ,2,15009,45 ,2,15010,651790 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618865 ,2,15011,168615 ,2,15007,1870 ,2,15008,647620 ,2,15009,45 ,2,15010,651790 ,2,15011,45 ,2,15007,1870 ,2,15008,647610 ,2,15009,45 ,2,15010,651795 ,2,15011,45 ,2,15007,1870 ,2,15008,650530 ,2,15009,45 ,2,15010,651805 ,2,15011,45 ,2,15007,1870 ,2,15008,650505 ,2,15009,45 ,2,15010,651840 ,2,15011,45 ,2,15007,1870 ,2,15008,650505 ,2,15009,45 ,2,15010,651840 ,2,15011,45 ,2,15007,1870 ,2,15008,651835 ,2,15009,45 ,2,15010,651830 ,2,15011,45 ,2,15007,1870 ,2,15008,650500 ,2,15009,45 ,2,15010,651845 ,2,15011,45 ,2,15007,1870 ,2,15008,651860 ,2,15009,557790 ,2,15010,651855 ,2,15011,45 ,2,15007,1870 ,2,15008,651925 ,2,15009,557790 ,2,15010,651920 ,2,15011,45 ,2,15007,1870 ,2,15008,651925 ,2,15009,551485 ,2,15010,651865 ,2,15011,45 ,2,15007,1870 ,2,15008,616165 ,2,15009,551485 ,2,15010,651895 ,2,15011,45 ,2,15007,1870 ,2,15008,651915 ,2,15009,551485 ,2,15010,651910 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551515 ,2,15010,651905 ,2,15011,45 ,2,15007,345710 ,2,15008,647640 ,2,15009,45 ,2,15010,651930 ,2,15011,45 ,2,15007,1870 ,2,15008,647645 ,2,15009,45 ,2,15010,651970 ,2,15011,45 ,2,15007,1870 ,2,15008,647640 ,2,15009,45 ,2,15010,651930 ,2,15011,45 ,2,15007,1870 ,2,15008,650510 ,2,15009,45 ,2,15010,651975 ,2,15011,45 ,2,15007,1870 ,2,15008,650530 ,2,15009,45 ,2,15010,651805 ,2,15011,45 ,2,15007,1870 ,2,15008,650545 ,2,15009,45 ,2,15010,651980 ,2,15011,45 ,2,15007,1870 ,2,15008,650140 ,2,15009,45 ,2,15010,651985 ,2,15011,45 ,2,15007,1870 ,2,15008,647700 ,2,15009,45 ,2,15010,651990 ,2,15011,45 ,2,15007,1870 ,2,15008,647675 ,2,15009,45 ,2,15010,651995 ,2,15011,45 ,2,15007,1870 ,2,15008,650225 ,2,15009,45 ,2,15010,652000 ,2,15011,45 ,2,15007,347155 ,2,15008,652105 ,2,15009,45 ,2,15010,652100 ,2,15011,45 ,2,15007,1870 ,2,15008,652105 ,2,15009,45 ,2,15010,652100 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,551520 ,2,15010,652005 ,2,15011,45 ,2,15007,1870 ,2,15008,652035 ,2,15009,45 ,2,15010,652030 ,2,15011,45 ,2,15007,1870 ,2,15008,614765 ,2,15009,45 ,2,15010,652040 ,2,15011,45 ,2,15007,1870 ,2,15008,652050 ,2,15009,45 ,2,15010,652045 ,2,15011,45 ,2,15007,1870 ,2,15008,652060 ,2,15009,45 ,2,15010,652055 ,2,15011,45 ,2,15007,1870 ,2,15008,652090 ,2,15009,45 ,2,15010,652065 ,2,15011,45 ,2,15007,1870 ,2,15008,652035 ,2,15009,45 ,2,15010,652095 ,2,15011,45 ,2,15007,1870 ,2,15008,650405 ,2,15009,45 ,2,15010,652110 ,2,15011,45 ,2,15007,1870 ,2,15008,647670 ,2,15009,45 ,2,15010,652115 ,2,15011,45 ,2,15007,1870 ,2,15008,647670 ,2,15009,45 ,2,15010,652115 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551535 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,652125 ,2,15009,45 ,2,15010,652120 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551545 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551565 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,647660 ,2,15009,45 ,2,15010,652160 ,2,15011,45 ,2,15007,1870 ,2,15008,650260 ,2,15009,45 ,2,15010,652165 ,2,15011,45 ,2,15007,1870 ,2,15008,650330 ,2,15009,45 ,2,15010,652175 ,2,15011,45 ,2,15007,1870 ,2,15008,650330 ,2,15009,45 ,2,15010,652175 ,2,15011,45 ,2,15007,1870 ,2,15008,651555 ,2,15009,45 ,2,15010,652170 ,2,15011,45 ,2,15007,1870 ,2,15008,651590 ,2,15009,45 ,2,15010,652180 ,2,15011,45 ,2,15007,1870 ,2,15008,647665 ,2,15009,45 ,2,15010,652190 ,2,15011,45 ,2,15007,1870 ,2,15008,647665 ,2,15009,45 ,2,15010,652190 ,2,15011,45 ,2,15007,1870 ,2,15008,650220 ,2,15009,45 ,2,15010,652185 ,2,15011,45 ,2,15007,1870 ,2,15008,651595 ,2,15009,45 ,2,15010,652195 ,2,15011,45 ,2,15007,1870 ,2,15008,647870 ,2,15009,45 ,2,15010,652215 ,2,15011,45 ,2,15007,1870 ,2,15008,651500 ,2,15009,45 ,2,15010,652220 ,2,15011,45 ,2,15007,1870 ,2,15008,647855 ,2,15009,45 ,2,15010,652225 ,2,15011,45 ,2,15007,1870 ,2,15008,647895 ,2,15009,45 ,2,15010,652240 ,2,15011,45 ,2,15007,1870 ,2,15008,647895 ,2,15009,45 ,2,15010,652240 ,2,15011,45 ,2,15007,1870 ,2,15008,652235 ,2,15009,45 ,2,15010,652230 ,2,15011,45 ,2,15007,1870 ,2,15008,650265 ,2,15009,45 ,2,15010,652245 ,2,15011,45 ,2,15007,1870 ,2,15008,647910 ,2,15009,45 ,2,15010,652250 ,2,15011,45 ,2,15007,1870 ,2,15008,647860 ,2,15009,45 ,2,15010,652285 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,551570 ,2,15010,652290 ,2,15011,45 ,2,15007,1870 ,2,15008,647830 ,2,15009,45 ,2,15010,652295 ,2,15011,45 ,2,15007,1870 ,2,15008,652305 ,2,15009,45 ,2,15010,652300 ,2,15011,45 ,2,15007,1870 ,2,15008,650710 ,2,15009,45 ,2,15010,652310 ,2,15011,45 ,2,15007,1870 ,2,15008,650690 ,2,15009,45 ,2,15010,652315 ,2,15011,45 ,2,15007,1870 ,2,15008,650705 ,2,15009,45 ,2,15010,652350 ,2,15011,45 ,2,15007,1870 ,2,15008,650705 ,2,15009,45 ,2,15010,652350 ,2,15011,45 ,2,15007,1870 ,2,15008,652345 ,2,15009,45 ,2,15010,652320 ,2,15011,45 ,2,15007,1870 ,2,15008,650685 ,2,15009,45 ,2,15010,652355 ,2,15011,45 ,2,15007,1870 ,2,15008,651630 ,2,15009,45 ,2,15010,652360 ,2,15011,45 ,2,15007,1870 ,2,15008,652505 ,2,15009,45 ,2,15010,652500 ,2,15011,45 ,2,15007,1870 ,2,15008,652505 ,2,15009,45 ,2,15010,652500 ,2,15011,45 ,2,15007,1870 ,2,15008,650620 ,2,15009,45 ,2,15010,652365 ,2,15011,45 ,2,15007,1870 ,2,15008,652425 ,2,15009,45 ,2,15010,652420 ,2,15011,45 ,2,15007,1870 ,2,15008,652425 ,2,15009,45 ,2,15010,652420 ,2,15011,45 ,2,15007,1870 ,2,15008,652375 ,2,15009,45 ,2,15010,652370 ,2,15011,45 ,2,15007,1870 ,2,15008,652405 ,2,15009,45 ,2,15010,652380 ,2,15011,45 ,2,15007,1870 ,2,15008,652415 ,2,15009,45 ,2,15010,652410 ,2,15011,45 ,2,15007,1870 ,2,15008,650635 ,2,15009,45 ,2,15010,652430 ,2,15011,45 ,2,15007,1870 ,2,15008,652375 ,2,15009,45 ,2,15010,652370 ,2,15011,45 ,2,15007,1870 ,2,15008,650625 ,2,15009,45 ,2,15010,652435 ,2,15011,45 ,2,15007,348280 ,2,15008,650625 ,2,15009,45 ,2,15010,652435 ,2,15011,45 ,2,15007,1870 ,2,15008,651400 ,2,15009,45 ,2,15010,652440 ,2,15011,45 ,2,15007,1870 ,2,15008,651400 ,2,15009,45 ,2,15010,652440 ,2,15011,45 ,2,15007,1870 ,2,15008,650620 ,2,15009,45 ,2,15010,652365 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551575 ,2,15010,652465 ,2,15011,45 ,2,15007,1870 ,2,15008,650680 ,2,15009,45 ,2,15010,652470 ,2,15011,45 ,2,15007,1870 ,2,15008,650675 ,2,15009,45 ,2,15010,652475 ,2,15011,45 ,2,15007,1870 ,2,15008,650630 ,2,15009,45 ,2,15010,652490 ,2,15011,45 ,2,15007,1870 ,2,15008,650635 ,2,15009,45 ,2,15010,652430 ,2,15011,45 ,2,15007,1870 ,2,15008,646840 ,2,15009,45 ,2,15010,652495 ,2,15011,45 ,2,15007,1870 ,2,15008,646840 ,2,15009,45 ,2,15010,652495 ,2,15011,45 ,2,15007,1870 ,2,15008,652405 ,2,15009,45 ,2,15010,652380 ,2,15011,45 ,2,15007,1870 ,2,15008,650675 ,2,15009,45 ,2,15010,652475 ,2,15011,45 ,2,15007,1870 ,2,15008,652415 ,2,15009,45 ,2,15010,652410 ,2,15011,45 ,2,15007,1870 ,2,15008,651630 ,2,15009,45 ,2,15010,652360 ,2,15011,45 ,2,15007,1870 ,2,15008,651585 ,2,15009,45 ,2,15010,652555 ,2,15011,45 ,2,15007,1870 ,2,15008,651585 ,2,15009,45 ,2,15010,652555 ,2,15011,45 ,2,15007,1870 ,2,15008,651410 ,2,15009,45 ,2,15010,652565 ,2,15011,45 ,2,15007,1870 ,2,15008,651410 ,2,15009,45 ,2,15010,652565 ,2,15011,45 ,2,15007,1870 ,2,15008,651405 ,2,15009,45 ,2,15010,652580 ,2,15011,45 ,2,15007,1870 ,2,15008,651405 ,2,15009,45 ,2,15010,652580 ,2,15011,45 ,2,15007,1870 ,2,15008,650535 ,2,15009,45 ,2,15010,652590 ,2,15011,45 ,2,15007,1870 ,2,15008,650535 ,2,15009,45 ,2,15010,652590 ,2,15011,45 ,2,15007,1870 ,2,15008,651580 ,2,15009,45 ,2,15010,652610 ,2,15011,45 ,2,15007,1870 ,2,15008,651580 ,2,15009,45 ,2,15010,652610 ,2,15011,45 ,2,15007,1870 ,2,15008,652630 ,2,15009,45 ,2,15010,652620 ,2,15011,45 ,2,15007,1870 ,2,15008,652630 ,2,15009,45 ,2,15010,652620 ,2,15011,45 ,2,15007,1870 ,2,15008,652645 ,2,15009,45 ,2,15010,652640 ,2,15011,45 ,2,15007,1870 ,2,15008,652645 ,2,15009,45 ,2,15010,652640 ,2,15011,45 ,2,15007,1870 ,2,15008,651425 ,2,15009,45 ,2,15010,652670 ,2,15011,45 ,2,15007,1870 ,2,15008,651425 ,2,15009,45 ,2,15010,652670 ,2,15011,45 ,2,15007,1870 ,2,15008,650435 ,2,15009,45 ,2,15010,652680 ,2,15011,45 ,2,15007,1870 ,2,15008,650435 ,2,15009,45 ,2,15010,652680 ,2,15011,45 ,2,15007,1870 ,2,15008,650540 ,2,15009,45 ,2,15010,652690 ,2,15011,45 ,2,15007,1870 ,2,15008,650540 ,2,15009,45 ,2,15010,652690 ,2,15011,45 ,2,15007,1870 ,2,15008,650515 ,2,15009,45 ,2,15010,652700 ,2,15011,45 ,2,15007,1870 ,2,15008,650515 ,2,15009,45 ,2,15010,652700 ,2,15011,45 ,2,15007,1870 ,2,15008,650480 ,2,15009,45 ,2,15010,652730 ,2,15011,45 ,2,15007,1870 ,2,15008,650480 ,2,15009,45 ,2,15010,652730 ,2,15011,45 ,2,15007,1870 ,2,15008,650425 ,2,15009,45 ,2,15010,652740 ,2,15011,45 ,2,15007,1870 ,2,15008,650425 ,2,15009,45 ,2,15010,652740 ,2,15011,45 ,2,15007,1870 ,2,15008,647890 ,2,15009,45 ,2,15010,652760 ,2,15011,45 ,2,15007,1870 ,2,15008,647890 ,2,15009,45 ,2,15010,652760 ,2,15011,45 ,2,15007,1870 ,2,15008,647880 ,2,15009,45 ,2,15010,652770 ,2,15011,45 ,2,15007,1870 ,2,15008,647880 ,2,15009,45 ,2,15010,652770 ,2,15011,45 ,2,15007,1870 ,2,15008,647885 ,2,15009,45 ,2,15010,652795 ,2,15011,45 ,2,15007,1870 ,2,15008,647885 ,2,15009,45 ,2,15010,652795 ,2,15011,45 ,2,15007,1870 ,2,15008,647865 ,2,15009,45 ,2,15010,652805 ,2,15011,45 ,2,15007,1870 ,2,15008,647865 ,2,15009,45 ,2,15010,652805 ,2,15011,45 ,2,15007,1870 ,2,15008,651510 ,2,15009,45 ,2,15010,652815 ,2,15011,45 ,2,15007,1870 ,2,15008,651510 ,2,15009,45 ,2,15010,652815 ,2,15011,45 ,2,15007,1870 ,2,15008,651505 ,2,15009,45 ,2,15010,652825 ,2,15011,45 ,2,15007,1870 ,2,15008,651505 ,2,15009,45 ,2,15010,652825 ,2,15011,45 ,2,15007,1870 ,2,15008,650420 ,2,15009,45 ,2,15010,652850 ,2,15011,45 ,2,15007,1870 ,2,15008,650420 ,2,15009,45 ,2,15010,652850 ,2,15011,45 ,2,15007,1870 ,2,15008,652865 ,2,15009,45 ,2,15010,652860 ,2,15011,45 ,2,15007,1870 ,2,15008,652865 ,2,15009,45 ,2,15010,652860 ,2,15011,45 ,2,15007,1870 ,2,15008,652880 ,2,15009,45 ,2,15010,652875 ,2,15011,45 ,2,15007,1870 ,2,15008,652880 ,2,15009,45 ,2,15010,652875 ,2,15011,45 ,2,15007,1870 ,2,15008,652910 ,2,15009,45 ,2,15010,652905 ,2,15011,45 ,2,15007,1870 ,2,15008,652910 ,2,15009,45 ,2,15010,652905 ,2,15011,45 ,2,15007,1870 ,2,15008,651420 ,2,15009,45 ,2,15010,652930 ,2,15011,45 ,2,15007,1870 ,2,15008,651420 ,2,15009,45 ,2,15010,652930 ,2,15011,45 ,2,15007,1870 ,2,15008,652945 ,2,15009,45 ,2,15010,652940 ,2,15011,45 ,2,15007,1870 ,2,15008,652945 ,2,15009,45 ,2,15010,652940 ,2,15011,45 ,2,15007,1870 ,2,15008,652965 ,2,15009,45 ,2,15010,652960 ,2,15011,45 ,2,15007,1870 ,2,15008,652965 ,2,15009,45 ,2,15010,652960 ,2,15011,45 ,2,15007,1870 ,2,15008,650555 ,2,15009,45 ,2,15010,652975 ,2,15011,45 ,2,15007,1870 ,2,15008,650555 ,2,15009,45 ,2,15010,652975 ,2,15011,45 ,2,15007,1870 ,2,15008,650560 ,2,15009,45 ,2,15010,652985 ,2,15011,45 ,2,15007,1870 ,2,15008,650560 ,2,15009,45 ,2,15010,652985 ,2,15011,45 ,2,15007,1870 ,2,15008,653025 ,2,15009,45 ,2,15010,653020 ,2,15011,45 ,2,15007,1870 ,2,15008,653025 ,2,15009,45 ,2,15010,653020 ,2,15011,45 ,2,15007,1870 ,2,15008,650720 ,2,15009,45 ,2,15010,653035 ,2,15011,45 ,2,15007,1870 ,2,15008,650720 ,2,15009,45 ,2,15010,653035 ,2,15011,45 ,2,15007,1870 ,2,15008,653055 ,2,15009,45 ,2,15010,653050 ,2,15011,45 ,2,15007,1870 ,2,15008,653055 ,2,15009,45 ,2,15010,653050 ,2,15011,45 ,2,15007,1870 ,2,15008,653080 ,2,15009,45 ,2,15010,653075 ,2,15011,45 ,2,15007,1870 ,2,15008,653080 ,2,15009,45 ,2,15010,653075 ,2,15011,45 ,2,15007,1870 ,2,15008,653105 ,2,15009,45 ,2,15010,653090 ,2,15011,45 ,2,15007,1870 ,2,15008,653105 ,2,15009,45 ,2,15010,653090 ,2,15011,45 ,2,15007,1870 ,2,15008,650375 ,2,15009,45 ,2,15010,653115 ,2,15011,45 ,2,15007,1870 ,2,15008,650375 ,2,15009,45 ,2,15010,653115 ,2,15011,45 ,2,15007,1870 ,2,15008,650400 ,2,15009,45 ,2,15010,653140 ,2,15011,45 ,2,15007,1870 ,2,15008,650400 ,2,15009,45 ,2,15010,653140 ,2,15011,45 ,2,15007,1870 ,2,15008,650395 ,2,15009,45 ,2,15010,653150 ,2,15011,45 ,2,15007,1870 ,2,15008,650395 ,2,15009,45 ,2,15010,653150 ,2,15011,45 ,2,15007,1870 ,2,15008,650430 ,2,15009,45 ,2,15010,653160 ,2,15011,45 ,2,15007,1870 ,2,15008,650430 ,2,15009,45 ,2,15010,653160 ,2,15011,45 ,2,15007,1870 ,2,15008,650465 ,2,15009,45 ,2,15010,653170 ,2,15011,45 ,2,15007,1870 ,2,15008,650465 ,2,15009,45 ,2,15010,653170 ,2,15011,45 ,2,15007,1870 ,2,15008,653215 ,2,15009,45 ,2,15010,653210 ,2,15011,45 ,2,15007,1870 ,2,15008,653215 ,2,15009,45 ,2,15010,653210 ,2,15011,45 ,2,15007,1870 ,2,15008,653230 ,2,15009,45 ,2,15010,653225 ,2,15011,45 ,2,15007,1870 ,2,15008,653230 ,2,15009,45 ,2,15010,653225 ,2,15011,45 ,2,15007,1870 ,2,15008,653245 ,2,15009,45 ,2,15010,653240 ,2,15011,45 ,2,15007,1870 ,2,15008,653285 ,2,15009,45 ,2,15010,653280 ,2,15011,45 ,2,15007,1870 ,2,15008,653285 ,2,15009,45 ,2,15010,653280 ,2,15011,45 ,2,15007,1870 ,2,15008,651560 ,2,15009,45 ,2,15010,653275 ,2,15011,45 ,2,15007,1870 ,2,15008,647545 ,2,15009,45 ,2,15010,653290 ,2,15011,45 ,2,15007,1870 ,2,15008,653310 ,2,15009,45 ,2,15010,653305 ,2,15011,45 ,2,15007,1870 ,2,15008,653335 ,2,15009,45 ,2,15010,653320 ,2,15011,45 ,2,15007,1870 ,2,15008,653335 ,2,15009,45 ,2,15010,653320 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551580 ,2,15010,653315 ,2,15011,45 ,2,15007,1870 ,2,15008,647550 ,2,15009,45 ,2,15010,653340 ,2,15011,45 ,2,15007,1870 ,2,15008,649990 ,2,15009,45 ,2,15010,653345 ,2,15011,45 ,2,15007,1870 ,2,15008,650365 ,2,15009,45 ,2,15010,653350 ,2,15011,45 ,2,15007,1870 ,2,15008,650360 ,2,15009,45 ,2,15010,653355 ,2,15011,45 ,2,15007,1870 ,2,15008,650360 ,2,15009,45 ,2,15010,653355 ,2,15011,45 ,2,15007,1870 ,2,15008,650215 ,2,15009,45 ,2,15010,653360 ,2,15011,45 ,2,15007,1870 ,2,15008,650370 ,2,15009,45 ,2,15010,653365 ,2,15011,45 ,2,15007,1870 ,2,15008,650190 ,2,15009,45 ,2,15010,653370 ,2,15011,45 ,2,15007,1870 ,2,15008,650180 ,2,15009,45 ,2,15010,653385 ,2,15011,45 ,2,15007,1870 ,2,15008,650155 ,2,15009,45 ,2,15010,653390 ,2,15011,45 ,2,15007,1870 ,2,15008,650150 ,2,15009,45 ,2,15010,653395 ,2,15011,45 ,2,15007,1870 ,2,15008,650145 ,2,15009,45 ,2,15010,653400 ,2,15011,45 ,2,15007,1870 ,2,15008,650195 ,2,15009,45 ,2,15010,653410 ,2,15011,45 ,2,15007,1870 ,2,15008,641800 ,2,15009,45 ,2,15010,653415 ,2,15011,45 ,2,15007,1870 ,2,15008,650210 ,2,15009,45 ,2,15010,653420 ,2,15011,45 ,2,15007,1870 ,2,15008,650185 ,2,15009,45 ,2,15010,653425 ,2,15011,45 ,2,15007,1870 ,2,15008,647645 ,2,15009,45 ,2,15010,651970 ,2,15011,45 ,2,15007,1870 ,2,15008,650250 ,2,15009,45 ,2,15010,653455 ,2,15011,45 ,2,15007,1870 ,2,15008,650255 ,2,15009,45 ,2,15010,653460 ,2,15011,45 ,2,15007,1870 ,2,15008,650255 ,2,15009,45 ,2,15010,653460 ,2,15011,45 ,2,15007,1870 ,2,15008,650325 ,2,15009,45 ,2,15010,653465 ,2,15011,45 ,2,15007,1870 ,2,15008,650280 ,2,15009,45 ,2,15010,653470 ,2,15011,45 ,2,15007,1870 ,2,15008,650275 ,2,15009,45 ,2,15010,653480 ,2,15011,45 ,2,15007,1870 ,2,15008,646835 ,2,15009,45 ,2,15010,653485 ,2,15011,45 ,2,15007,1870 ,2,15008,650270 ,2,15009,45 ,2,15010,653490 ,2,15011,45 ,2,15007,1870 ,2,15008,641775 ,2,15009,45 ,2,15010,653495 ,2,15011,45 ,2,15007,1870 ,2,15008,651550 ,2,15009,45 ,2,15010,653520 ,2,15011,45 ,2,15007,1870 ,2,15008,651550 ,2,15009,45 ,2,15010,653520 ,2,15011,45 ,2,15007,1870 ,2,15008,653530 ,2,15009,45 ,2,15010,653525 ,2,15011,45 ,2,15007,1870 ,2,15008,653540 ,2,15009,45 ,2,15010,653535 ,2,15011,45 ,2,15007,1870 ,2,15008,650335 ,2,15009,45 ,2,15010,651715 ,2,15011,45 ,2,15007,1870 ,2,15008,651560 ,2,15009,45 ,2,15010,653275 ,2,15011,45 ,2,15007,1870 ,2,15008,651835 ,2,15009,45 ,2,15010,651830 ,2,15011,45 ,2,15007,1870 ,2,15008,651555 ,2,15009,45 ,2,15010,652170 ,2,15011,45 ,2,15007,1870 ,2,15008,650225 ,2,15009,45 ,2,15010,652000 ,2,15011,45 ,2,15007,1870 ,2,15008,650140 ,2,15009,45 ,2,15010,651985 ,2,15011,45 ,2,15007,1870 ,2,15008,650340 ,2,15009,45 ,2,15010,651720 ,2,15011,45 ,2,15007,1870 ,2,15008,650220 ,2,15009,45 ,2,15010,652185 ,2,15011,45 ,2,15007,1870 ,2,15008,652345 ,2,15009,45 ,2,15010,652320 ,2,15011,45 ,2,15007,1870 ,2,15008,651500 ,2,15009,45 ,2,15010,652220 ,2,15011,45 ,2,15007,1870 ,2,15008,652305 ,2,15009,45 ,2,15010,652300 ,2,15011,45 ,2,15007,1870 ,2,15008,652235 ,2,15009,45 ,2,15010,652230 ,2,15011,45 ,2,15007,353420 ,2,15008,653575 ,2,15009,551635 ,2,15010,653600 ,2,15011,45 ,2,15007,1870 ,2,15008,651665 ,2,15009,45 ,2,15010,651660 ,2,15011,45 ,2,15007,1870 ,2,15008,653610 ,2,15009,45 ,2,15010,653605 ,2,15011,45 ,2,15007,1870 ,2,15008,653640 ,2,15009,45 ,2,15010,653635 ,2,15011,45 ,2,15007,1870 ,2,15008,651640 ,2,15009,45 ,2,15010,651635 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,551145 ,2,15010,653645 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551660 ,2,15010,653650 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551665 ,2,15010,653660 ,2,15011,45 ,2,15007,1870 ,2,15008,653670 ,2,15009,45 ,2,15010,653665 ,2,15011,45 ,2,15007,1870 ,2,15008,653710 ,2,15009,45 ,2,15010,653705 ,2,15011,45 ,2,15007,1870 ,2,15008,653710 ,2,15009,45 ,2,15010,653705 ,2,15011,45 ,2,15007,1870 ,2,15008,653700 ,2,15009,45 ,2,15010,653675 ,2,15011,45 ,2,15007,1870 ,2,15008,653735 ,2,15009,551710 ,2,15010,653725 ,2,15011,45 ,2,15007,1870 ,2,15008,653735 ,2,15009,551720 ,2,15010,653760 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,551725 ,2,15010,653765 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653820 ,2,15011,180640 ,2,15007,1870 ,2,15008,618860 ,2,15009,551740 ,2,15010,653795 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,551740 ,2,15010,653825 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,551750 ,2,15010,653830 ,2,15011,45 ,2,15007,1870 ,2,15008,653840 ,2,15009,45 ,2,15010,653835 ,2,15011,45 ,2,15007,354710 ,2,15008,653880 ,2,15009,45 ,2,15010,653875 ,2,15011,45 ,2,15007,1870 ,2,15008,621965 ,2,15009,45 ,2,15010,653850 ,2,15011,45 ,2,15007,1870 ,2,15008,653880 ,2,15009,45 ,2,15010,653855 ,2,15011,45 ,2,15007,354620 ,2,15008,615275 ,2,15009,45 ,2,15010,653865 ,2,15011,45 ,2,15007,1870 ,2,15008,653890 ,2,15009,45 ,2,15010,653885 ,2,15011,45 ,2,15007,1870 ,2,15008,653920 ,2,15009,551765 ,2,15010,653895 ,2,15011,45 ,2,15007,1870 ,2,15008,625425 ,2,15009,551765 ,2,15010,653925 ,2,15011,45 ,2,15007,1870 ,2,15008,625545 ,2,15009,551765 ,2,15010,653930 ,2,15011,45 ,2,15007,1870 ,2,15008,653940 ,2,15009,45 ,2,15010,653935 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,45 ,2,15010,653945 ,2,15011,45 ,2,15007,1870 ,2,15008,653955 ,2,15009,45 ,2,15010,653950 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,45 ,2,15010,653990 ,2,15011,45 ,2,15007,1870 ,2,15008,654005 ,2,15009,551775 ,2,15010,654000 ,2,15011,45 ,2,15007,1870 ,2,15008,625305 ,2,15009,551775 ,2,15010,654010 ,2,15011,45 ,2,15007,1870 ,2,15008,654025 ,2,15009,551790 ,2,15010,654015 ,2,15011,45 ,2,15007,1870 ,2,15008,654055 ,2,15009,557760 ,2,15010,654050 ,2,15011,45 ,2,15007,1870 ,2,15008,654025 ,2,15009,557760 ,2,15010,654060 ,2,15011,45 ,2,15007,1870 ,2,15008,654075 ,2,15009,45 ,2,15010,654065 ,2,15011,45 ,2,15007,1870 ,2,15008,654085 ,2,15009,45 ,2,15010,654080 ,2,15011,45 ,2,15007,1870 ,2,15008,654120 ,2,15009,45 ,2,15010,654090 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551800 ,2,15010,654125 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551800 ,2,15010,654130 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551820 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654145 ,2,15009,45 ,2,15010,654135 ,2,15011,45 ,2,15007,1870 ,2,15008,654155 ,2,15009,45 ,2,15010,654150 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551830 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,551800 ,2,15010,654160 ,2,15011,45 ,2,15007,1870 ,2,15008,654195 ,2,15009,45 ,2,15010,654190 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,551800 ,2,15010,654200 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551845 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551855 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654210 ,2,15009,45 ,2,15010,654205 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551895 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551910 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551915 ,2,15010,654215 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551915 ,2,15010,654220 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551925 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654255 ,2,15009,45 ,2,15010,654225 ,2,15011,45 ,2,15007,1870 ,2,15008,654265 ,2,15009,45 ,2,15010,654260 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551945 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,551915 ,2,15010,654270 ,2,15011,45 ,2,15007,1870 ,2,15008,654280 ,2,15009,45 ,2,15010,654275 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,551915 ,2,15010,654285 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551960 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,551970 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654300 ,2,15009,45 ,2,15010,654290 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551995 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552010 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552020 ,2,15010,654305 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552020 ,2,15010,654310 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552030 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654320 ,2,15009,45 ,2,15010,654315 ,2,15011,45 ,2,15007,1870 ,2,15008,654330 ,2,15009,45 ,2,15010,654325 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552065 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,552020 ,2,15010,654335 ,2,15011,45 ,2,15007,1870 ,2,15008,654375 ,2,15009,45 ,2,15010,654370 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,552020 ,2,15010,654380 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552080 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552095 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654395 ,2,15009,45 ,2,15010,654385 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552105 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552135 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552145 ,2,15010,613225 ,2,15011,45 ,2,15007,1870 ,2,15008,654405 ,2,15009,45 ,2,15010,654400 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552155 ,2,15010,613525 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552200 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,654440 ,2,15009,45 ,2,15010,654410 ,2,15011,45 ,2,15007,1870 ,2,15008,654450 ,2,15009,45 ,2,15010,654445 ,2,15011,45 ,2,15007,1870 ,2,15008,654450 ,2,15009,45 ,2,15010,654445 ,2,15011,45 ,2,15007,1870 ,2,15008,654465 ,2,15009,45 ,2,15010,654455 ,2,15011,45 ,2,15007,1870 ,2,15008,654475 ,2,15009,45 ,2,15010,654470 ,2,15011,45 ,2,15007,1870 ,2,15008,654525 ,2,15009,45 ,2,15010,654480 ,2,15011,45 ,2,15007,1870 ,2,15008,647780 ,2,15009,45 ,2,15010,654530 ,2,15011,45 ,2,15007,1870 ,2,15008,650570 ,2,15009,45 ,2,15010,654535 ,2,15011,45 ,2,15007,1870 ,2,15008,650610 ,2,15009,45 ,2,15010,654540 ,2,15011,45 ,2,15007,1870 ,2,15008,654550 ,2,15009,45 ,2,15010,654545 ,2,15011,45 ,2,15007,1870 ,2,15008,647745 ,2,15009,45 ,2,15010,654555 ,2,15011,45 ,2,15007,1870 ,2,15008,654585 ,2,15009,45 ,2,15010,654580 ,2,15011,45 ,2,15007,1870 ,2,15008,615665 ,2,15009,552205 ,2,15010,654560 ,2,15011,45 ,2,15007,1870 ,2,15008,654595 ,2,15009,45 ,2,15010,654590 ,2,15011,45 ,2,15007,1870 ,2,15008,654605 ,2,15009,45 ,2,15010,654600 ,2,15011,45 ,2,15007,1870 ,2,15008,647760 ,2,15009,45 ,2,15010,654610 ,2,15011,45 ,2,15007,1870 ,2,15008,654635 ,2,15009,45 ,2,15010,654630 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,552210 ,2,15010,654615 ,2,15011,45 ,2,15007,1870 ,2,15008,654645 ,2,15009,45 ,2,15010,654640 ,2,15011,45 ,2,15007,1870 ,2,15008,654655 ,2,15009,45 ,2,15010,654650 ,2,15011,45 ,2,15007,1870 ,2,15008,647085 ,2,15009,45 ,2,15010,654660 ,2,15011,45 ,2,15007,1870 ,2,15008,654695 ,2,15009,45 ,2,15010,654690 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,552215 ,2,15010,654665 ,2,15011,45 ,2,15007,1870 ,2,15008,654705 ,2,15009,45 ,2,15010,654700 ,2,15011,45 ,2,15007,1870 ,2,15008,654720 ,2,15009,45 ,2,15010,654715 ,2,15011,45 ,2,15007,1870 ,2,15008,654730 ,2,15009,45 ,2,15010,654725 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,552220 ,2,15010,654750 ,2,15011,45 ,2,15007,1870 ,2,15008,647030 ,2,15009,45 ,2,15010,654755 ,2,15011,45 ,2,15007,1870 ,2,15008,654765 ,2,15009,45 ,2,15010,654760 ,2,15011,45 ,2,15007,1870 ,2,15008,647175 ,2,15009,45 ,2,15010,654775 ,2,15011,45 ,2,15007,1870 ,2,15008,654785 ,2,15009,45 ,2,15010,654780 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,552225 ,2,15010,654790 ,2,15011,45 ,2,15007,1870 ,2,15008,654815 ,2,15009,45 ,2,15010,654810 ,2,15011,45 ,2,15007,1870 ,2,15008,647825 ,2,15009,45 ,2,15010,654820 ,2,15011,45 ,2,15007,1870 ,2,15008,654835 ,2,15009,45 ,2,15010,654825 ,2,15011,45 ,2,15007,1870 ,2,15008,647095 ,2,15009,45 ,2,15010,654840 ,2,15011,45 ,2,15007,1870 ,2,15008,654850 ,2,15009,45 ,2,15010,654845 ,2,15011,45 ,2,15007,1870 ,2,15008,647050 ,2,15009,45 ,2,15010,654870 ,2,15011,45 ,2,15007,1870 ,2,15008,654885 ,2,15009,45 ,2,15010,654880 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,552230 ,2,15010,654875 ,2,15011,45 ,2,15007,1870 ,2,15008,654895 ,2,15009,45 ,2,15010,654890 ,2,15011,45 ,2,15007,1870 ,2,15008,654905 ,2,15009,45 ,2,15010,654900 ,2,15011,45 ,2,15007,1870 ,2,15008,654925 ,2,15009,45 ,2,15010,654920 ,2,15011,45 ,2,15007,1870 ,2,15008,654935 ,2,15009,45 ,2,15010,654930 ,2,15011,45 ,2,15007,1870 ,2,15008,654950 ,2,15009,552250 ,2,15010,654940 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,552260 ,2,15010,654955 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552250 ,2,15010,654970 ,2,15011,45 ,2,15007,1870 ,2,15008,654985 ,2,15009,45 ,2,15010,654980 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,45 ,2,15010,655000 ,2,15011,45 ,2,15007,1870 ,2,15008,655060 ,2,15009,552265 ,2,15010,655015 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,552290 ,2,15010,655065 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552265 ,2,15010,655075 ,2,15011,45 ,2,15007,1870 ,2,15008,655105 ,2,15009,552295 ,2,15010,655080 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552300 ,2,15010,655085 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,552340 ,2,15010,655110 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,552350 ,2,15010,655120 ,2,15011,45 ,2,15007,1870 ,2,15008,655105 ,2,15009,552355 ,2,15010,655135 ,2,15011,45 ,2,15007,1870 ,2,15008,655190 ,2,15009,552390 ,2,15010,655180 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,552390 ,2,15010,655195 ,2,15011,45 ,2,15007,1870 ,2,15008,655205 ,2,15009,552400 ,2,15010,655200 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,552410 ,2,15010,655225 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552400 ,2,15010,655230 ,2,15011,45 ,2,15007,1870 ,2,15008,655240 ,2,15009,45 ,2,15010,655235 ,2,15011,45 ,2,15007,1870 ,2,15008,655270 ,2,15009,552415 ,2,15010,655255 ,2,15011,45 ,2,15007,357275 ,2,15008,655265 ,2,15009,45 ,2,15010,655260 ,2,15011,45 ,2,15007,1870 ,2,15008,655290 ,2,15009,552415 ,2,15010,655285 ,2,15011,45 ,2,15007,1870 ,2,15008,655265 ,2,15009,45 ,2,15010,655260 ,2,15011,45 ,2,15007,1870 ,2,15008,655300 ,2,15009,45 ,2,15010,655295 ,2,15011,45 ,2,15007,1870 ,2,15008,655270 ,2,15009,552415 ,2,15010,655255 ,2,15011,45 ,2,15007,1870 ,2,15008,655300 ,2,15009,45 ,2,15010,655295 ,2,15011,45 ,2,15007,1870 ,2,15008,655290 ,2,15009,552415 ,2,15010,655285 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552415 ,2,15010,655305 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,552415 ,2,15010,655310 ,2,15011,45 ,2,15007,1870 ,2,15008,646730 ,2,15009,552420 ,2,15010,655320 ,2,15011,45 ,2,15007,1870 ,2,15008,651515 ,2,15009,45 ,2,15010,655335 ,2,15011,45 ,2,15007,1870 ,2,15008,655345 ,2,15009,45 ,2,15010,655340 ,2,15011,45 ,2,15007,1870 ,2,15008,655345 ,2,15009,45 ,2,15010,655340 ,2,15011,45 ,2,15007,1870 ,2,15008,646750 ,2,15009,45 ,2,15010,655350 ,2,15011,45 ,2,15007,1870 ,2,15008,646785 ,2,15009,45 ,2,15010,655355 ,2,15011,45 ,2,15007,357605 ,2,15008,646795 ,2,15009,45 ,2,15010,655360 ,2,15011,45 ,2,15007,1870 ,2,15008,646795 ,2,15009,45 ,2,15010,655360 ,2,15011,45 ,2,15007,1870 ,2,15008,646790 ,2,15009,45 ,2,15010,655365 ,2,15011,45 ,2,15007,1870 ,2,15008,646745 ,2,15009,45 ,2,15010,655370 ,2,15011,45 ,2,15007,1870 ,2,15008,646745 ,2,15009,45 ,2,15010,655370 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552465 ,2,15010,655390 ,2,15011,45 ,2,15007,1870 ,2,15008,646775 ,2,15009,45 ,2,15010,655395 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552470 ,2,15010,655400 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615075 ,2,15011,189050 ,2,15007,1870 ,2,15008,615275 ,2,15009,552475 ,2,15010,655405 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,655410 ,2,15011,189070 ,2,15007,1870 ,2,15008,646775 ,2,15009,45 ,2,15010,655395 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552480 ,2,15010,655415 ,2,15011,45 ,2,15007,1870 ,2,15008,646780 ,2,15009,45 ,2,15010,655420 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614590 ,2,15011,189275 ,2,15007,1870 ,2,15008,650130 ,2,15009,45 ,2,15010,655425 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552490 ,2,15010,655450 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543900 ,2,15010,655460 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,543905 ,2,15010,655465 ,2,15011,45 ,2,15007,1870 ,2,15008,655480 ,2,15009,552495 ,2,15010,655475 ,2,15011,45 ,2,15007,1870 ,2,15008,655515 ,2,15009,552505 ,2,15010,655510 ,2,15011,45 ,2,15007,1870 ,2,15008,616165 ,2,15009,552505 ,2,15010,655520 ,2,15011,45 ,2,15007,1870 ,2,15008,655535 ,2,15009,552505 ,2,15010,655530 ,2,15011,45 ,2,15007,1870 ,2,15008,655545 ,2,15009,45 ,2,15010,655540 ,2,15011,45 ,2,15007,1870 ,2,15008,655545 ,2,15009,45 ,2,15010,655540 ,2,15011,45 ,2,15007,1870 ,2,15008,651395 ,2,15009,45 ,2,15010,655570 ,2,15011,45 ,2,15007,1870 ,2,15008,650565 ,2,15009,45 ,2,15010,655575 ,2,15011,45 ,2,15007,1870 ,2,15008,650600 ,2,15009,45 ,2,15010,655580 ,2,15011,45 ,2,15007,1870 ,2,15008,619710 ,2,15009,45 ,2,15010,655585 ,2,15011,45 ,2,15007,1870 ,2,15008,647735 ,2,15009,45 ,2,15010,655590 ,2,15011,45 ,2,15007,1870 ,2,15008,647720 ,2,15009,45 ,2,15010,655595 ,2,15011,45 ,2,15007,1870 ,2,15008,647715 ,2,15009,45 ,2,15010,655600 ,2,15011,45 ,2,15007,1870 ,2,15008,647715 ,2,15009,45 ,2,15010,655600 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552550 ,2,15010,655605 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552555 ,2,15010,655625 ,2,15011,45 ,2,15007,1870 ,2,15008,655635 ,2,15009,45 ,2,15010,655630 ,2,15011,45 ,2,15007,1870 ,2,15008,655645 ,2,15009,45 ,2,15010,655640 ,2,15011,45 ,2,15007,1870 ,2,15008,655655 ,2,15009,552565 ,2,15010,655650 ,2,15011,45 ,2,15007,360495 ,2,15008,655645 ,2,15009,45 ,2,15010,655640 ,2,15011,45 ,2,15007,1870 ,2,15008,655655 ,2,15009,552565 ,2,15010,655650 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552565 ,2,15010,655660 ,2,15011,45 ,2,15007,1870 ,2,15008,655695 ,2,15009,45 ,2,15010,655690 ,2,15011,45 ,2,15007,1870 ,2,15008,655705 ,2,15009,45 ,2,15010,655700 ,2,15011,45 ,2,15007,1870 ,2,15008,655720 ,2,15009,45 ,2,15010,655715 ,2,15011,45 ,2,15007,1870 ,2,15008,655705 ,2,15009,45 ,2,15010,655700 ,2,15011,45 ,2,15007,1870 ,2,15008,655730 ,2,15009,45 ,2,15010,655725 ,2,15011,45 ,2,15007,1870 ,2,15008,655750 ,2,15009,45 ,2,15010,655745 ,2,15011,45 ,2,15007,1870 ,2,15008,655760 ,2,15009,45 ,2,15010,655755 ,2,15011,45 ,2,15007,1870 ,2,15008,650605 ,2,15009,45 ,2,15010,655765 ,2,15011,45 ,2,15007,1870 ,2,15008,650615 ,2,15009,45 ,2,15010,655770 ,2,15011,45 ,2,15007,1870 ,2,15008,650005 ,2,15009,45 ,2,15010,655775 ,2,15011,45 ,2,15007,1870 ,2,15008,650410 ,2,15009,45 ,2,15010,655780 ,2,15011,45 ,2,15007,1870 ,2,15008,647750 ,2,15009,45 ,2,15010,655800 ,2,15011,45 ,2,15007,1870 ,2,15008,647755 ,2,15009,45 ,2,15010,655805 ,2,15011,45 ,2,15007,1870 ,2,15008,647765 ,2,15009,45 ,2,15010,655810 ,2,15011,45 ,2,15007,1870 ,2,15008,647770 ,2,15009,45 ,2,15010,655815 ,2,15011,45 ,2,15007,1870 ,2,15008,647775 ,2,15009,45 ,2,15010,655825 ,2,15011,45 ,2,15007,1870 ,2,15008,647105 ,2,15009,45 ,2,15010,655830 ,2,15011,45 ,2,15007,1870 ,2,15008,642225 ,2,15009,45 ,2,15010,655835 ,2,15011,45 ,2,15007,1870 ,2,15008,647060 ,2,15009,45 ,2,15010,655840 ,2,15011,45 ,2,15007,1870 ,2,15008,647080 ,2,15009,45 ,2,15010,655865 ,2,15011,45 ,2,15007,1870 ,2,15008,647045 ,2,15009,45 ,2,15010,655870 ,2,15011,45 ,2,15007,1870 ,2,15008,647820 ,2,15009,45 ,2,15010,655875 ,2,15011,45 ,2,15007,1870 ,2,15008,647055 ,2,15009,45 ,2,15010,655880 ,2,15011,45 ,2,15007,1870 ,2,15008,647090 ,2,15009,45 ,2,15010,655890 ,2,15011,45 ,2,15007,1870 ,2,15008,647815 ,2,15009,45 ,2,15010,655895 ,2,15011,45 ,2,15007,1870 ,2,15008,647180 ,2,15009,45 ,2,15010,655900 ,2,15011,45 ,2,15007,1870 ,2,15008,647185 ,2,15009,45 ,2,15010,655905 ,2,15011,45 ,2,15007,1870 ,2,15008,647215 ,2,15009,45 ,2,15010,655950 ,2,15011,45 ,2,15007,1870 ,2,15008,655960 ,2,15009,45 ,2,15010,655955 ,2,15011,45 ,2,15007,1870 ,2,15008,655980 ,2,15009,45 ,2,15010,655975 ,2,15011,45 ,2,15007,1870 ,2,15008,655980 ,2,15009,45 ,2,15010,655975 ,2,15011,45 ,2,15007,1870 ,2,15008,628710 ,2,15009,550570 ,2,15010,655965 ,2,15011,45 ,2,15007,1870 ,2,15008,655990 ,2,15009,45 ,2,15010,655985 ,2,15011,45 ,2,15007,1870 ,2,15008,656005 ,2,15009,45 ,2,15010,656000 ,2,15011,45 ,2,15007,1870 ,2,15008,656015 ,2,15009,45 ,2,15010,656010 ,2,15011,45 ,2,15007,1870 ,2,15008,656030 ,2,15009,45 ,2,15010,656025 ,2,15011,45 ,2,15007,1870 ,2,15008,655960 ,2,15009,45 ,2,15010,655955 ,2,15011,45 ,2,15007,1870 ,2,15008,656040 ,2,15009,45 ,2,15010,656035 ,2,15011,45 ,2,15007,1870 ,2,15008,656005 ,2,15009,45 ,2,15010,656000 ,2,15011,45 ,2,15007,1870 ,2,15008,656075 ,2,15009,45 ,2,15010,656070 ,2,15011,45 ,2,15007,1870 ,2,15008,656085 ,2,15009,45 ,2,15010,656080 ,2,15011,45 ,2,15007,1870 ,2,15008,656095 ,2,15009,552570 ,2,15010,656090 ,2,15011,45 ,2,15007,363765 ,2,15008,656085 ,2,15009,45 ,2,15010,656080 ,2,15011,45 ,2,15007,1870 ,2,15008,656030 ,2,15009,45 ,2,15010,656025 ,2,15011,45 ,2,15007,1870 ,2,15008,656015 ,2,15009,45 ,2,15010,656010 ,2,15011,45 ,2,15007,1870 ,2,15008,656105 ,2,15009,45 ,2,15010,656100 ,2,15011,45 ,2,15007,1870 ,2,15008,656130 ,2,15009,45 ,2,15010,656125 ,2,15011,45 ,2,15007,1870 ,2,15008,656160 ,2,15009,552575 ,2,15010,656135 ,2,15011,45 ,2,15007,363935 ,2,15008,656155 ,2,15009,45 ,2,15010,656140 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552575 ,2,15010,656165 ,2,15011,45 ,2,15007,1870 ,2,15008,656190 ,2,15009,552570 ,2,15010,656170 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552570 ,2,15010,656195 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,552570 ,2,15010,656200 ,2,15011,45 ,2,15007,1870 ,2,15008,656095 ,2,15009,552570 ,2,15010,656090 ,2,15011,45 ,2,15007,1870 ,2,15008,656190 ,2,15009,552570 ,2,15010,656170 ,2,15011,45 ,2,15007,1870 ,2,15008,656155 ,2,15009,45 ,2,15010,656140 ,2,15011,45 ,2,15007,1870 ,2,15008,656160 ,2,15009,552575 ,2,15010,656135 ,2,15011,45 ,2,15007,1870 ,2,15008,656220 ,2,15009,552580 ,2,15010,656205 ,2,15011,45 ,2,15007,364515 ,2,15008,656215 ,2,15009,45 ,2,15010,656210 ,2,15011,45 ,2,15007,1870 ,2,15008,656215 ,2,15009,45 ,2,15010,656210 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552580 ,2,15010,656225 ,2,15011,45 ,2,15007,1870 ,2,15008,656260 ,2,15009,552600 ,2,15010,656245 ,2,15011,45 ,2,15007,364605 ,2,15008,656255 ,2,15009,45 ,2,15010,656250 ,2,15011,45 ,2,15007,1870 ,2,15008,656255 ,2,15009,45 ,2,15010,656250 ,2,15011,45 ,2,15007,1870 ,2,15008,656260 ,2,15009,552600 ,2,15010,656245 ,2,15011,45 ,2,15007,1870 ,2,15008,656280 ,2,15009,552600 ,2,15010,656275 ,2,15011,45 ,2,15007,1870 ,2,15008,656280 ,2,15009,552600 ,2,15010,656275 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552600 ,2,15010,656265 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,552600 ,2,15010,656270 ,2,15011,45 ,2,15007,1870 ,2,15008,656330 ,2,15009,552605 ,2,15010,656290 ,2,15011,45 ,2,15007,365050 ,2,15008,656325 ,2,15009,45 ,2,15010,656305 ,2,15011,45 ,2,15007,1870 ,2,15008,656325 ,2,15009,45 ,2,15010,656305 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552610 ,2,15010,656295 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,551240 ,2,15010,656300 ,2,15011,45 ,2,15007,1870 ,2,15008,656330 ,2,15009,552605 ,2,15010,656290 ,2,15011,45 ,2,15007,1870 ,2,15008,656355 ,2,15009,552605 ,2,15010,656340 ,2,15011,45 ,2,15007,1870 ,2,15008,656355 ,2,15009,552605 ,2,15010,656340 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552605 ,2,15010,656335 ,2,15011,45 ,2,15007,1870 ,2,15008,656385 ,2,15009,552615 ,2,15010,656360 ,2,15011,45 ,2,15007,365085 ,2,15008,656370 ,2,15009,45 ,2,15010,656365 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552615 ,2,15010,656390 ,2,15011,45 ,2,15007,1870 ,2,15008,656370 ,2,15009,45 ,2,15010,656365 ,2,15011,45 ,2,15007,1870 ,2,15008,656400 ,2,15009,552615 ,2,15010,656395 ,2,15011,45 ,2,15007,1870 ,2,15008,656400 ,2,15009,552615 ,2,15010,656395 ,2,15011,45 ,2,15007,1870 ,2,15008,656385 ,2,15009,552615 ,2,15010,656360 ,2,15011,45 ,2,15007,1870 ,2,15008,656455 ,2,15009,552620 ,2,15010,656445 ,2,15011,45 ,2,15007,1870 ,2,15008,656505 ,2,15009,552630 ,2,15010,656460 ,2,15011,45 ,2,15007,365330 ,2,15008,656500 ,2,15009,552635 ,2,15010,656475 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552665 ,2,15010,656510 ,2,15011,45 ,2,15007,1870 ,2,15008,656525 ,2,15009,552675 ,2,15010,656515 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552690 ,2,15010,656530 ,2,15011,45 ,2,15007,1870 ,2,15008,656525 ,2,15009,552675 ,2,15010,656515 ,2,15011,45 ,2,15007,1870 ,2,15008,656565 ,2,15009,552695 ,2,15010,656535 ,2,15011,45 ,2,15007,365370 ,2,15008,656455 ,2,15009,552700 ,2,15010,656555 ,2,15011,45 ,2,15007,1870 ,2,15008,656500 ,2,15009,552705 ,2,15010,656570 ,2,15011,45 ,2,15007,1870 ,2,15008,656500 ,2,15009,552730 ,2,15010,656580 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552740 ,2,15010,656595 ,2,15011,45 ,2,15007,1870 ,2,15008,656500 ,2,15009,552730 ,2,15010,656580 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,552755 ,2,15010,656620 ,2,15011,45 ,2,15007,1870 ,2,15008,656640 ,2,15009,552760 ,2,15010,656625 ,2,15011,45 ,2,15007,365445 ,2,15008,656525 ,2,15009,552765 ,2,15010,656635 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552770 ,2,15010,656645 ,2,15011,45 ,2,15007,1870 ,2,15008,656655 ,2,15009,45 ,2,15010,656650 ,2,15011,45 ,2,15007,1870 ,2,15008,656455 ,2,15009,552620 ,2,15010,656445 ,2,15011,45 ,2,15007,1870 ,2,15008,656675 ,2,15009,45 ,2,15010,656670 ,2,15011,45 ,2,15007,1870 ,2,15008,656695 ,2,15009,552810 ,2,15010,656680 ,2,15011,45 ,2,15007,365660 ,2,15008,656690 ,2,15009,45 ,2,15010,656685 ,2,15011,45 ,2,15007,1870 ,2,15008,656705 ,2,15009,552810 ,2,15010,656700 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632120 ,2,15011,196135 ,2,15007,1870 ,2,15008,656730 ,2,15009,45 ,2,15010,656725 ,2,15011,45 ,2,15007,1870 ,2,15008,656740 ,2,15009,45 ,2,15010,656735 ,2,15011,45 ,2,15007,1870 ,2,15008,656740 ,2,15009,45 ,2,15010,656735 ,2,15011,45 ,2,15007,1870 ,2,15008,656705 ,2,15009,552810 ,2,15010,656700 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552810 ,2,15010,656755 ,2,15011,45 ,2,15007,1870 ,2,15008,630555 ,2,15009,552810 ,2,15010,656760 ,2,15011,45 ,2,15007,1870 ,2,15008,656690 ,2,15009,45 ,2,15010,656685 ,2,15011,45 ,2,15007,1870 ,2,15008,656695 ,2,15009,552810 ,2,15010,656680 ,2,15011,45 ,2,15007,1870 ,2,15008,656770 ,2,15009,45 ,2,15010,656765 ,2,15011,45 ,2,15007,1870 ,2,15008,656800 ,2,15009,45 ,2,15010,656795 ,2,15011,45 ,2,15007,1870 ,2,15008,656820 ,2,15009,552815 ,2,15010,656805 ,2,15011,45 ,2,15007,366540 ,2,15008,656815 ,2,15009,45 ,2,15010,656810 ,2,15011,45 ,2,15007,1870 ,2,15008,656815 ,2,15009,45 ,2,15010,656810 ,2,15011,45 ,2,15007,1870 ,2,15008,656820 ,2,15009,552815 ,2,15010,656805 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552815 ,2,15010,656825 ,2,15011,45 ,2,15007,1870 ,2,15008,638820 ,2,15009,45 ,2,15010,638815 ,2,15011,45 ,2,15007,1870 ,2,15008,656860 ,2,15009,45 ,2,15010,656855 ,2,15011,45 ,2,15007,1870 ,2,15008,656870 ,2,15009,45 ,2,15010,656865 ,2,15011,45 ,2,15007,1870 ,2,15008,656860 ,2,15009,45 ,2,15010,656855 ,2,15011,45 ,2,15007,1870 ,2,15008,656880 ,2,15009,45 ,2,15010,656875 ,2,15011,45 ,2,15007,1870 ,2,15008,656970 ,2,15009,45 ,2,15010,656965 ,2,15011,45 ,2,15007,1870 ,2,15008,656970 ,2,15009,45 ,2,15010,656965 ,2,15011,45 ,2,15007,1870 ,2,15008,656940 ,2,15009,45 ,2,15010,656935 ,2,15011,45 ,2,15007,1870 ,2,15008,656940 ,2,15009,45 ,2,15010,656935 ,2,15011,45 ,2,15007,1870 ,2,15008,656890 ,2,15009,45 ,2,15010,656885 ,2,15011,45 ,2,15007,1870 ,2,15008,656915 ,2,15009,45 ,2,15010,656910 ,2,15011,45 ,2,15007,1870 ,2,15008,632825 ,2,15009,548570 ,2,15010,632820 ,2,15011,45 ,2,15007,1870 ,2,15008,656925 ,2,15009,45 ,2,15010,656920 ,2,15011,45 ,2,15007,1870 ,2,15008,632865 ,2,15009,548575 ,2,15010,632860 ,2,15011,45 ,2,15007,1870 ,2,15008,656890 ,2,15009,45 ,2,15010,656885 ,2,15011,45 ,2,15007,1870 ,2,15008,656925 ,2,15009,45 ,2,15010,656920 ,2,15011,45 ,2,15007,1870 ,2,15008,656950 ,2,15009,45 ,2,15010,656945 ,2,15011,45 ,2,15007,1870 ,2,15008,656980 ,2,15009,45 ,2,15010,656975 ,2,15011,45 ,2,15007,1870 ,2,15008,656880 ,2,15009,45 ,2,15010,656875 ,2,15011,45 ,2,15007,1870 ,2,15008,657060 ,2,15009,552820 ,2,15010,657050 ,2,15011,45 ,2,15007,1870 ,2,15008,657060 ,2,15009,552830 ,2,15010,657005 ,2,15011,45 ,2,15007,1870 ,2,15008,622275 ,2,15009,552830 ,2,15010,657040 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,552830 ,2,15010,657045 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,552845 ,2,15010,657065 ,2,15011,45 ,2,15007,366935 ,2,15008,657105 ,2,15009,45 ,2,15010,657100 ,2,15011,45 ,2,15007,1870 ,2,15008,657105 ,2,15009,45 ,2,15010,657100 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552865 ,2,15010,657070 ,2,15011,45 ,2,15007,366925 ,2,15008,657095 ,2,15009,45 ,2,15010,657075 ,2,15011,45 ,2,15007,1870 ,2,15008,657095 ,2,15009,45 ,2,15010,657075 ,2,15011,45 ,2,15007,1870 ,2,15008,657115 ,2,15009,45 ,2,15010,657110 ,2,15011,45 ,2,15007,1870 ,2,15008,657125 ,2,15009,45 ,2,15010,657120 ,2,15011,45 ,2,15007,1870 ,2,15008,657125 ,2,15009,45 ,2,15010,657120 ,2,15011,45 ,2,15007,1870 ,2,15008,622300 ,2,15009,552870 ,2,15010,657130 ,2,15011,45 ,2,15007,1870 ,2,15008,657530 ,2,15009,45 ,2,15010,657525 ,2,15011,45 ,2,15007,1870 ,2,15008,657530 ,2,15009,45 ,2,15010,657525 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552875 ,2,15010,657170 ,2,15011,45 ,2,15007,367030 ,2,15008,657180 ,2,15009,45 ,2,15010,657175 ,2,15011,45 ,2,15007,1870 ,2,15008,657195 ,2,15009,45 ,2,15010,657190 ,2,15011,45 ,2,15007,1870 ,2,15008,657205 ,2,15009,45 ,2,15010,657200 ,2,15011,45 ,2,15007,1870 ,2,15008,657220 ,2,15009,45 ,2,15010,657215 ,2,15011,45 ,2,15007,1870 ,2,15008,657195 ,2,15009,45 ,2,15010,657190 ,2,15011,45 ,2,15007,1870 ,2,15008,657220 ,2,15009,45 ,2,15010,657215 ,2,15011,45 ,2,15007,1870 ,2,15008,657230 ,2,15009,45 ,2,15010,657225 ,2,15011,45 ,2,15007,1870 ,2,15008,626060 ,2,15009,45 ,2,15010,626055 ,2,15011,45 ,2,15007,1870 ,2,15008,657240 ,2,15009,45 ,2,15010,657235 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552880 ,2,15010,657245 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657290 ,2,15011,197555 ,2,15007,1870 ,2,15008,657285 ,2,15009,45 ,2,15010,657250 ,2,15011,45 ,2,15007,1870 ,2,15008,657285 ,2,15009,45 ,2,15010,657250 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552895 ,2,15010,657295 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,552865 ,2,15010,657300 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,552900 ,2,15010,657315 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,552845 ,2,15010,657320 ,2,15011,45 ,2,15007,1870 ,2,15008,657330 ,2,15009,45 ,2,15010,657325 ,2,15011,45 ,2,15007,1870 ,2,15008,657350 ,2,15009,45 ,2,15010,657345 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552865 ,2,15010,657355 ,2,15011,45 ,2,15007,367275 ,2,15008,657350 ,2,15009,45 ,2,15010,657345 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552905 ,2,15010,657365 ,2,15011,45 ,2,15007,1870 ,2,15008,657375 ,2,15009,45 ,2,15010,657370 ,2,15011,45 ,2,15007,1870 ,2,15008,657115 ,2,15009,45 ,2,15010,657110 ,2,15011,45 ,2,15007,1870 ,2,15008,657390 ,2,15009,45 ,2,15010,657380 ,2,15011,45 ,2,15007,1870 ,2,15008,657400 ,2,15009,45 ,2,15010,657395 ,2,15011,45 ,2,15007,1870 ,2,15008,657400 ,2,15009,45 ,2,15010,657395 ,2,15011,45 ,2,15007,1870 ,2,15008,657410 ,2,15009,45 ,2,15010,657405 ,2,15011,45 ,2,15007,1870 ,2,15008,657420 ,2,15009,45 ,2,15010,657415 ,2,15011,45 ,2,15007,1870 ,2,15008,657420 ,2,15009,45 ,2,15010,657415 ,2,15011,45 ,2,15007,1870 ,2,15008,657455 ,2,15009,45 ,2,15010,657425 ,2,15011,45 ,2,15007,1870 ,2,15008,657465 ,2,15009,45 ,2,15010,657460 ,2,15011,45 ,2,15007,1870 ,2,15008,657465 ,2,15009,45 ,2,15010,657460 ,2,15011,45 ,2,15007,1870 ,2,15008,657455 ,2,15009,45 ,2,15010,657425 ,2,15011,45 ,2,15007,1870 ,2,15008,657180 ,2,15009,45 ,2,15010,657175 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552910 ,2,15010,657470 ,2,15011,45 ,2,15007,367615 ,2,15008,657480 ,2,15009,45 ,2,15010,657475 ,2,15011,45 ,2,15007,1870 ,2,15008,657490 ,2,15009,45 ,2,15010,657485 ,2,15011,45 ,2,15007,367755 ,2,15008,615275 ,2,15009,45 ,2,15010,653865 ,2,15011,45 ,2,15007,1870 ,2,15008,657480 ,2,15009,45 ,2,15010,657475 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,552910 ,2,15010,657520 ,2,15011,45 ,2,15007,1870 ,2,15008,657205 ,2,15009,45 ,2,15010,657200 ,2,15011,45 ,2,15007,1870 ,2,15008,657545 ,2,15009,45 ,2,15010,657535 ,2,15011,45 ,2,15007,1870 ,2,15008,657555 ,2,15009,45 ,2,15010,657550 ,2,15011,45 ,2,15007,1870 ,2,15008,657570 ,2,15009,45 ,2,15010,657560 ,2,15011,45 ,2,15007,1870 ,2,15008,657545 ,2,15009,45 ,2,15010,657535 ,2,15011,45 ,2,15007,1870 ,2,15008,657580 ,2,15009,45 ,2,15010,657575 ,2,15011,45 ,2,15007,1870 ,2,15008,657600 ,2,15009,45 ,2,15010,657585 ,2,15011,45 ,2,15007,1870 ,2,15008,657600 ,2,15009,45 ,2,15010,657585 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552935 ,2,15010,657605 ,2,15011,45 ,2,15007,368035 ,2,15008,657570 ,2,15009,45 ,2,15010,657560 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552940 ,2,15010,657610 ,2,15011,45 ,2,15007,368055 ,2,15008,657580 ,2,15009,45 ,2,15010,657575 ,2,15011,45 ,2,15007,1870 ,2,15008,657650 ,2,15009,45 ,2,15010,657615 ,2,15011,45 ,2,15007,1870 ,2,15008,656565 ,2,15009,552945 ,2,15010,657655 ,2,15011,45 ,2,15007,1870 ,2,15008,656455 ,2,15009,45 ,2,15010,657660 ,2,15011,45 ,2,15007,1870 ,2,15008,657675 ,2,15009,45 ,2,15010,657665 ,2,15011,45 ,2,15007,1870 ,2,15008,657685 ,2,15009,45 ,2,15010,657680 ,2,15011,45 ,2,15007,1870 ,2,15008,633930 ,2,15009,45 ,2,15010,633925 ,2,15011,45 ,2,15007,1870 ,2,15008,638695 ,2,15009,45 ,2,15010,638690 ,2,15011,45 ,2,15007,368190 ,2,15008,637030 ,2,15009,557755 ,2,15010,657690 ,2,15011,45 ,2,15007,1870 ,2,15008,657710 ,2,15009,45 ,2,15010,657705 ,2,15011,45 ,2,15007,1870 ,2,15008,646720 ,2,15009,45 ,2,15010,657715 ,2,15011,45 ,2,15007,1870 ,2,15008,650135 ,2,15009,45 ,2,15010,657720 ,2,15011,45 ,2,15007,1870 ,2,15008,646800 ,2,15009,45 ,2,15010,657735 ,2,15011,45 ,2,15007,1870 ,2,15008,646800 ,2,15009,45 ,2,15010,657735 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552950 ,2,15010,657740 ,2,15011,45 ,2,15007,368295 ,2,15008,646720 ,2,15009,45 ,2,15010,657715 ,2,15011,45 ,2,15007,1870 ,2,15008,646805 ,2,15009,45 ,2,15010,657745 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656830 ,2,15011,199220 ,2,15007,1870 ,2,15008,618780 ,2,15009,552960 ,2,15010,657775 ,2,15011,45 ,2,15007,1870 ,2,15008,646735 ,2,15009,45 ,2,15010,657790 ,2,15011,45 ,2,15007,1870 ,2,15008,646735 ,2,15009,45 ,2,15010,657790 ,2,15011,45 ,2,15007,1870 ,2,15008,646725 ,2,15009,45 ,2,15010,657780 ,2,15011,45 ,2,15007,1870 ,2,15008,646740 ,2,15009,45 ,2,15010,657785 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552965 ,2,15010,657800 ,2,15011,45 ,2,15007,1870 ,2,15008,646740 ,2,15009,45 ,2,15010,657785 ,2,15011,45 ,2,15007,1870 ,2,15008,646810 ,2,15009,45 ,2,15010,657805 ,2,15011,45 ,2,15007,1870 ,2,15008,646810 ,2,15009,45 ,2,15010,657805 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,552970 ,2,15010,657815 ,2,15011,45 ,2,15007,368450 ,2,15008,650135 ,2,15009,45 ,2,15010,657720 ,2,15011,45 ,2,15007,1870 ,2,15008,657850 ,2,15009,45 ,2,15010,657845 ,2,15011,45 ,2,15007,1870 ,2,15008,657865 ,2,15009,45 ,2,15010,657860 ,2,15011,45 ,2,15007,1870 ,2,15008,657895 ,2,15009,552975 ,2,15010,657870 ,2,15011,45 ,2,15007,368740 ,2,15008,657880 ,2,15009,45 ,2,15010,657875 ,2,15011,45 ,2,15007,1870 ,2,15008,657880 ,2,15009,45 ,2,15010,657875 ,2,15011,45 ,2,15007,1870 ,2,15008,657895 ,2,15009,552975 ,2,15010,657870 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,552975 ,2,15010,657900 ,2,15011,45 ,2,15007,1870 ,2,15008,657910 ,2,15009,45 ,2,15010,657905 ,2,15011,45 ,2,15007,1870 ,2,15008,644380 ,2,15009,45 ,2,15010,644375 ,2,15011,45 ,2,15007,1870 ,2,15008,644220 ,2,15009,45 ,2,15010,644215 ,2,15011,45 ,2,15007,1870 ,2,15008,657935 ,2,15009,553015 ,2,15010,657920 ,2,15011,45 ,2,15007,368845 ,2,15008,657930 ,2,15009,45 ,2,15010,657925 ,2,15011,45 ,2,15007,1870 ,2,15008,657930 ,2,15009,45 ,2,15010,657925 ,2,15011,45 ,2,15007,1870 ,2,15008,657935 ,2,15009,553015 ,2,15010,657920 ,2,15011,45 ,2,15007,1870 ,2,15008,657960 ,2,15009,553015 ,2,15010,657955 ,2,15011,45 ,2,15007,1870 ,2,15008,657960 ,2,15009,553015 ,2,15010,657955 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,553015 ,2,15010,657945 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,553015 ,2,15010,657950 ,2,15011,45 ,2,15007,368940 ,2,15008,656525 ,2,15009,45 ,2,15010,657970 ,2,15011,45 ,2,15007,1870 ,2,15008,644640 ,2,15009,45 ,2,15010,644635 ,2,15011,45 ,2,15007,1870 ,2,15008,657985 ,2,15009,553020 ,2,15010,657975 ,2,15011,45 ,2,15007,1870 ,2,15008,658015 ,2,15009,45 ,2,15010,658010 ,2,15011,45 ,2,15007,1870 ,2,15008,658025 ,2,15009,45 ,2,15010,658020 ,2,15011,45 ,2,15007,1870 ,2,15008,658045 ,2,15009,553030 ,2,15010,658035 ,2,15011,45 ,2,15007,1870 ,2,15008,658085 ,2,15009,45 ,2,15010,658050 ,2,15011,45 ,2,15007,1870 ,2,15008,658095 ,2,15009,45 ,2,15010,658090 ,2,15011,45 ,2,15007,1870 ,2,15008,658085 ,2,15009,45 ,2,15010,658050 ,2,15011,45 ,2,15007,1870 ,2,15008,658110 ,2,15009,45 ,2,15010,658100 ,2,15011,45 ,2,15007,1870 ,2,15008,658120 ,2,15009,45 ,2,15010,658115 ,2,15011,45 ,2,15007,1870 ,2,15008,658135 ,2,15009,45 ,2,15010,658125 ,2,15011,45 ,2,15007,1870 ,2,15008,658095 ,2,15009,45 ,2,15010,658090 ,2,15011,45 ,2,15007,1870 ,2,15008,658145 ,2,15009,45 ,2,15010,658140 ,2,15011,45 ,2,15007,1870 ,2,15008,658160 ,2,15009,553040 ,2,15010,658150 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553040 ,2,15010,658165 ,2,15011,45 ,2,15007,1870 ,2,15008,658210 ,2,15009,553050 ,2,15010,658170 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553050 ,2,15010,658215 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553050 ,2,15010,658220 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,553065 ,2,15010,658235 ,2,15011,45 ,2,15007,1870 ,2,15008,658250 ,2,15009,553065 ,2,15010,658245 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553065 ,2,15010,658275 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553065 ,2,15010,658280 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553085 ,2,15010,614890 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553065 ,2,15010,658285 ,2,15011,45 ,2,15007,1870 ,2,15008,658295 ,2,15009,553090 ,2,15010,658290 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553090 ,2,15010,658300 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,543905 ,2,15010,658305 ,2,15011,45 ,2,15007,1870 ,2,15008,658340 ,2,15009,553100 ,2,15010,658310 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553115 ,2,15010,617370 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553115 ,2,15010,617420 ,2,15011,45 ,2,15007,1870 ,2,15008,658360 ,2,15009,553125 ,2,15010,658345 ,2,15011,45 ,2,15007,1870 ,2,15008,658410 ,2,15009,553125 ,2,15010,658405 ,2,15011,45 ,2,15007,1870 ,2,15008,658410 ,2,15009,553130 ,2,15010,658365 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553130 ,2,15010,658375 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553130 ,2,15010,658400 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553125 ,2,15010,658415 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553125 ,2,15010,658420 ,2,15011,45 ,2,15007,1870 ,2,15008,658435 ,2,15009,553155 ,2,15010,658425 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553155 ,2,15010,658470 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553195 ,2,15010,658475 ,2,15011,45 ,2,15007,1870 ,2,15008,658490 ,2,15009,553195 ,2,15010,658485 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553195 ,2,15010,658495 ,2,15011,45 ,2,15007,1870 ,2,15008,658525 ,2,15009,553205 ,2,15010,658500 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553205 ,2,15010,658530 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553220 ,2,15010,658535 ,2,15011,45 ,2,15007,1870 ,2,15008,658555 ,2,15009,553220 ,2,15010,658550 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553220 ,2,15010,658560 ,2,15011,45 ,2,15007,1870 ,2,15008,658600 ,2,15009,553230 ,2,15010,658565 ,2,15011,45 ,2,15007,1870 ,2,15008,658640 ,2,15009,553280 ,2,15010,658635 ,2,15011,45 ,2,15007,1870 ,2,15008,658640 ,2,15009,553235 ,2,15010,658605 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553275 ,2,15010,658630 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553290 ,2,15010,658475 ,2,15011,45 ,2,15007,1870 ,2,15008,658680 ,2,15009,553295 ,2,15010,658675 ,2,15011,45 ,2,15007,1870 ,2,15008,658715 ,2,15009,553350 ,2,15010,658710 ,2,15011,45 ,2,15007,1870 ,2,15008,658715 ,2,15009,553300 ,2,15010,658685 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553305 ,2,15010,613550 ,2,15011,45 ,2,15007,1870 ,2,15008,658745 ,2,15009,553360 ,2,15010,658720 ,2,15011,45 ,2,15007,1870 ,2,15008,658640 ,2,15009,553370 ,2,15010,658750 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553380 ,2,15010,658755 ,2,15011,45 ,2,15007,1870 ,2,15008,658765 ,2,15009,553385 ,2,15010,658760 ,2,15011,45 ,2,15007,1870 ,2,15008,658715 ,2,15009,553415 ,2,15010,658770 ,2,15011,45 ,2,15007,1870 ,2,15008,658780 ,2,15009,553425 ,2,15010,658775 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553425 ,2,15010,658800 ,2,15011,45 ,2,15007,1870 ,2,15008,658835 ,2,15009,553435 ,2,15010,658805 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,553440 ,2,15010,658815 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553450 ,2,15010,658840 ,2,15011,45 ,2,15007,1870 ,2,15008,658885 ,2,15009,553480 ,2,15010,658870 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,553485 ,2,15010,658875 ,2,15011,45 ,2,15007,1870 ,2,15008,658835 ,2,15009,553490 ,2,15010,658890 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553500 ,2,15010,658895 ,2,15011,45 ,2,15007,1870 ,2,15008,658920 ,2,15009,553505 ,2,15010,658900 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,553505 ,2,15010,658905 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553500 ,2,15010,658925 ,2,15011,45 ,2,15007,1870 ,2,15008,658945 ,2,15009,553515 ,2,15010,658930 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,553545 ,2,15010,658935 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,553550 ,2,15010,658940 ,2,15011,45 ,2,15007,1870 ,2,15008,658835 ,2,15009,553555 ,2,15010,658950 ,2,15011,45 ,2,15007,1870 ,2,15008,658970 ,2,15009,45 ,2,15010,658955 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543970 ,2,15010,658975 ,2,15011,45 ,2,15007,1870 ,2,15008,658985 ,2,15009,543970 ,2,15010,658980 ,2,15011,45 ,2,15007,1870 ,2,15008,659000 ,2,15009,553565 ,2,15010,658990 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553565 ,2,15010,659005 ,2,15011,45 ,2,15007,1870 ,2,15008,659055 ,2,15009,553575 ,2,15010,659040 ,2,15011,45 ,2,15007,1870 ,2,15008,621035 ,2,15009,553575 ,2,15010,659045 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553575 ,2,15010,659065 ,2,15011,45 ,2,15007,1870 ,2,15008,659100 ,2,15009,553610 ,2,15010,659070 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553620 ,2,15010,659105 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553625 ,2,15010,659110 ,2,15011,45 ,2,15007,1870 ,2,15008,659130 ,2,15009,553635 ,2,15010,659120 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553625 ,2,15010,659135 ,2,15011,45 ,2,15007,1870 ,2,15008,659130 ,2,15009,553645 ,2,15010,659165 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,553680 ,2,15010,659170 ,2,15011,45 ,2,15007,1870 ,2,15008,659190 ,2,15009,553685 ,2,15010,659180 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553695 ,2,15010,621220 ,2,15011,45 ,2,15007,1870 ,2,15008,659220 ,2,15009,553705 ,2,15010,659195 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553705 ,2,15010,659225 ,2,15011,45 ,2,15007,1870 ,2,15008,659245 ,2,15009,553715 ,2,15010,659230 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553715 ,2,15010,659250 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,544150 ,2,15010,659255 ,2,15011,45 ,2,15007,1870 ,2,15008,659295 ,2,15009,45 ,2,15010,659290 ,2,15011,45 ,2,15007,1870 ,2,15008,613440 ,2,15009,553725 ,2,15010,659300 ,2,15011,45 ,2,15007,1870 ,2,15008,659295 ,2,15009,45 ,2,15010,659290 ,2,15011,45 ,2,15007,1870 ,2,15008,650090 ,2,15009,45 ,2,15010,659305 ,2,15011,45 ,2,15007,1870 ,2,15008,621395 ,2,15009,45 ,2,15010,621390 ,2,15011,45 ,2,15007,1870 ,2,15008,650095 ,2,15009,45 ,2,15010,659310 ,2,15011,45 ,2,15007,1870 ,2,15008,650110 ,2,15009,45 ,2,15010,659325 ,2,15011,45 ,2,15007,1870 ,2,15008,650110 ,2,15009,45 ,2,15010,659325 ,2,15011,45 ,2,15007,1870 ,2,15008,650100 ,2,15009,45 ,2,15010,659315 ,2,15011,45 ,2,15007,1870 ,2,15008,650105 ,2,15009,45 ,2,15010,659320 ,2,15011,45 ,2,15007,1870 ,2,15008,650120 ,2,15009,45 ,2,15010,659350 ,2,15011,45 ,2,15007,1870 ,2,15008,650120 ,2,15009,45 ,2,15010,659350 ,2,15011,45 ,2,15007,1870 ,2,15008,650090 ,2,15009,45 ,2,15010,659305 ,2,15011,45 ,2,15007,1870 ,2,15008,650125 ,2,15009,45 ,2,15010,659355 ,2,15011,45 ,2,15007,1870 ,2,15008,650125 ,2,15009,45 ,2,15010,659355 ,2,15011,45 ,2,15007,1870 ,2,15008,659385 ,2,15009,553730 ,2,15010,659360 ,2,15011,45 ,2,15007,1870 ,2,15008,625165 ,2,15009,553730 ,2,15010,659390 ,2,15011,45 ,2,15007,1870 ,2,15008,659400 ,2,15009,45 ,2,15010,659395 ,2,15011,45 ,2,15007,1870 ,2,15008,659425 ,2,15009,45 ,2,15010,659420 ,2,15011,45 ,2,15007,1870 ,2,15008,659400 ,2,15009,45 ,2,15010,659395 ,2,15011,45 ,2,15007,1870 ,2,15008,659435 ,2,15009,45 ,2,15010,659430 ,2,15011,45 ,2,15007,1870 ,2,15008,659450 ,2,15009,553740 ,2,15010,659440 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553740 ,2,15010,659455 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,552490 ,2,15010,659470 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,543900 ,2,15010,659475 ,2,15011,45 ,2,15007,1870 ,2,15008,659485 ,2,15009,45 ,2,15010,659480 ,2,15011,45 ,2,15007,1870 ,2,15008,659495 ,2,15009,45 ,2,15010,659490 ,2,15011,45 ,2,15007,1870 ,2,15008,659505 ,2,15009,45 ,2,15010,659500 ,2,15011,45 ,2,15007,1870 ,2,15008,659520 ,2,15009,45 ,2,15010,659515 ,2,15011,45 ,2,15007,1870 ,2,15008,655750 ,2,15009,45 ,2,15010,655745 ,2,15011,45 ,2,15007,1870 ,2,15008,659530 ,2,15009,45 ,2,15010,659525 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,553755 ,2,15010,659540 ,2,15011,45 ,2,15007,1870 ,2,15008,659555 ,2,15009,553755 ,2,15010,659550 ,2,15011,45 ,2,15007,1870 ,2,15008,627755 ,2,15009,553755 ,2,15010,659580 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,553790 ,2,15010,659590 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,553755 ,2,15010,659595 ,2,15011,45 ,2,15007,1870 ,2,15008,659610 ,2,15009,553795 ,2,15010,659605 ,2,15011,45 ,2,15007,1870 ,2,15008,635380 ,2,15009,553800 ,2,15010,635485 ,2,15011,45 ,2,15007,1870 ,2,15008,658835 ,2,15009,553805 ,2,15010,659615 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,553830 ,2,15010,613580 ,2,15011,45 ,2,15007,1870 ,2,15008,659645 ,2,15009,45 ,2,15010,659620 ,2,15011,45 ,2,15007,1870 ,2,15008,659655 ,2,15009,45 ,2,15010,659650 ,2,15011,45 ,2,15007,1870 ,2,15008,659665 ,2,15009,45 ,2,15010,659660 ,2,15011,45 ,2,15007,1870 ,2,15008,659675 ,2,15009,45 ,2,15010,659670 ,2,15011,45 ,2,15007,381265 ,2,15008,659735 ,2,15009,45 ,2,15010,659730 ,2,15011,45 ,2,15007,1870 ,2,15008,659735 ,2,15009,45 ,2,15010,659730 ,2,15011,45 ,2,15007,1870 ,2,15008,659725 ,2,15009,45 ,2,15010,659720 ,2,15011,45 ,2,15007,1870 ,2,15008,659745 ,2,15009,45 ,2,15010,659740 ,2,15011,45 ,2,15007,1870 ,2,15008,659775 ,2,15009,553835 ,2,15010,659750 ,2,15011,45 ,2,15007,1870 ,2,15008,659790 ,2,15009,553880 ,2,15010,659780 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,553880 ,2,15010,659800 ,2,15011,45 ,2,15007,1870 ,2,15008,647605 ,2,15009,553895 ,2,15010,659805 ,2,15011,45 ,2,15007,1870 ,2,15008,647605 ,2,15009,553900 ,2,15010,659810 ,2,15011,45 ,2,15007,1870 ,2,15008,647805 ,2,15009,45 ,2,15010,659845 ,2,15011,45 ,2,15007,1870 ,2,15008,647605 ,2,15009,553940 ,2,15010,659855 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629985 ,2,15011,205420 ,2,15007,1870 ,2,15008,650045 ,2,15009,45 ,2,15010,659860 ,2,15011,45 ,2,15007,1870 ,2,15008,659885 ,2,15009,45 ,2,15010,659880 ,2,15011,45 ,2,15007,1870 ,2,15008,659885 ,2,15009,45 ,2,15010,659880 ,2,15011,45 ,2,15007,1870 ,2,15008,650035 ,2,15009,45 ,2,15010,659890 ,2,15011,45 ,2,15007,1870 ,2,15008,650040 ,2,15009,45 ,2,15010,659925 ,2,15011,45 ,2,15007,1870 ,2,15008,650040 ,2,15009,45 ,2,15010,659925 ,2,15011,45 ,2,15007,1870 ,2,15008,659920 ,2,15009,45 ,2,15010,659895 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,553945 ,2,15010,616535 ,2,15011,45 ,2,15007,1870 ,2,15008,650050 ,2,15009,45 ,2,15010,659930 ,2,15011,45 ,2,15007,1870 ,2,15008,650020 ,2,15009,45 ,2,15010,659935 ,2,15011,45 ,2,15007,1870 ,2,15008,659950 ,2,15009,45 ,2,15010,659945 ,2,15011,45 ,2,15007,1870 ,2,15008,659960 ,2,15009,45 ,2,15010,659955 ,2,15011,45 ,2,15007,1870 ,2,15008,657685 ,2,15009,45 ,2,15010,657680 ,2,15011,45 ,2,15007,1870 ,2,15008,659985 ,2,15009,45 ,2,15010,659980 ,2,15011,45 ,2,15007,1870 ,2,15008,659995 ,2,15009,45 ,2,15010,659990 ,2,15011,45 ,2,15007,1870 ,2,15008,660010 ,2,15009,45 ,2,15010,660005 ,2,15011,45 ,2,15007,1870 ,2,15008,660020 ,2,15009,45 ,2,15010,660015 ,2,15011,45 ,2,15007,1870 ,2,15008,660045 ,2,15009,45 ,2,15010,660040 ,2,15011,45 ,2,15007,1870 ,2,15008,660055 ,2,15009,45 ,2,15010,660050 ,2,15011,45 ,2,15007,1870 ,2,15008,660070 ,2,15009,45 ,2,15010,660065 ,2,15011,45 ,2,15007,1870 ,2,15008,660080 ,2,15009,45 ,2,15010,660075 ,2,15011,45 ,2,15007,1870 ,2,15008,660115 ,2,15009,45 ,2,15010,660110 ,2,15011,45 ,2,15007,1870 ,2,15008,660140 ,2,15009,553950 ,2,15010,660120 ,2,15011,45 ,2,15007,384565 ,2,15008,660135 ,2,15009,45 ,2,15010,660125 ,2,15011,45 ,2,15007,1870 ,2,15008,660135 ,2,15009,45 ,2,15010,660125 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,553950 ,2,15010,660145 ,2,15011,45 ,2,15007,1870 ,2,15008,660140 ,2,15009,553950 ,2,15010,660120 ,2,15011,45 ,2,15007,385300 ,2,15008,660155 ,2,15009,45 ,2,15010,660150 ,2,15011,45 ,2,15007,1870 ,2,15008,660155 ,2,15009,45 ,2,15010,660150 ,2,15011,45 ,2,15007,1870 ,2,15008,660165 ,2,15009,553955 ,2,15010,660160 ,2,15011,45 ,2,15007,1870 ,2,15008,636800 ,2,15009,553955 ,2,15010,660170 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,553955 ,2,15010,660175 ,2,15011,45 ,2,15007,1870 ,2,15008,660185 ,2,15009,45 ,2,15010,660180 ,2,15011,45 ,2,15007,1870 ,2,15008,660235 ,2,15009,45 ,2,15010,660190 ,2,15011,45 ,2,15007,1870 ,2,15008,660295 ,2,15009,553965 ,2,15010,660265 ,2,15011,45 ,2,15007,1870 ,2,15008,660295 ,2,15009,553965 ,2,15010,660265 ,2,15011,45 ,2,15007,1870 ,2,15008,660250 ,2,15009,553965 ,2,15010,660245 ,2,15011,45 ,2,15007,1870 ,2,15008,660250 ,2,15009,553965 ,2,15010,660245 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,553965 ,2,15010,660240 ,2,15011,45 ,2,15007,1870 ,2,15008,641585 ,2,15009,45 ,2,15010,641580 ,2,15011,45 ,2,15007,1870 ,2,15008,660260 ,2,15009,45 ,2,15010,660255 ,2,15011,45 ,2,15007,1870 ,2,15008,660290 ,2,15009,45 ,2,15010,660270 ,2,15011,45 ,2,15007,1870 ,2,15008,660290 ,2,15009,45 ,2,15010,660270 ,2,15011,45 ,2,15007,1870 ,2,15008,660310 ,2,15009,553970 ,2,15010,660300 ,2,15011,45 ,2,15007,1870 ,2,15008,622180 ,2,15009,553980 ,2,15010,660315 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660320 ,2,15011,206480 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660325 ,2,15011,206500 ,2,15007,1870 ,2,15008,660350 ,2,15009,45 ,2,15010,660345 ,2,15011,45 ,2,15007,1870 ,2,15008,660360 ,2,15009,45 ,2,15010,660355 ,2,15011,45 ,2,15007,1870 ,2,15008,660375 ,2,15009,45 ,2,15010,660370 ,2,15011,45 ,2,15007,1870 ,2,15008,647800 ,2,15009,45 ,2,15010,660380 ,2,15011,45 ,2,15007,1870 ,2,15008,647455 ,2,15009,45 ,2,15010,660385 ,2,15011,45 ,2,15007,1870 ,2,15008,647530 ,2,15009,45 ,2,15010,660410 ,2,15011,45 ,2,15007,1870 ,2,15008,660420 ,2,15009,45 ,2,15010,660415 ,2,15011,45 ,2,15007,1870 ,2,15008,660430 ,2,15009,45 ,2,15010,660425 ,2,15011,45 ,2,15007,1870 ,2,15008,660440 ,2,15009,45 ,2,15010,660435 ,2,15011,45 ,2,15007,1870 ,2,15008,660465 ,2,15009,45 ,2,15010,660445 ,2,15011,45 ,2,15007,1870 ,2,15008,660475 ,2,15009,45 ,2,15010,660470 ,2,15011,45 ,2,15007,1870 ,2,15008,660485 ,2,15009,45 ,2,15010,660480 ,2,15011,45 ,2,15007,1870 ,2,15008,660495 ,2,15009,45 ,2,15010,660490 ,2,15011,45 ,2,15007,1870 ,2,15008,660525 ,2,15009,45 ,2,15010,660500 ,2,15011,45 ,2,15007,1870 ,2,15008,660535 ,2,15009,45 ,2,15010,660530 ,2,15011,45 ,2,15007,1870 ,2,15008,660545 ,2,15009,45 ,2,15010,660540 ,2,15011,45 ,2,15007,1870 ,2,15008,660555 ,2,15009,45 ,2,15010,660550 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,554015 ,2,15010,660560 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,554020 ,2,15010,660575 ,2,15011,45 ,2,15007,1870 ,2,15008,660585 ,2,15009,45 ,2,15010,660580 ,2,15011,45 ,2,15007,389705 ,2,15008,619270 ,2,15009,552490 ,2,15010,660590 ,2,15011,45 ,2,15007,1870 ,2,15008,660600 ,2,15009,45 ,2,15010,660595 ,2,15011,45 ,2,15007,1870 ,2,15008,660610 ,2,15009,45 ,2,15010,660605 ,2,15011,45 ,2,15007,1870 ,2,15008,660630 ,2,15009,45 ,2,15010,660625 ,2,15011,45 ,2,15007,1870 ,2,15008,660640 ,2,15009,45 ,2,15010,660635 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660645 ,2,15011,207505 ,2,15007,1870 ,2,15008,660655 ,2,15009,45 ,2,15010,660650 ,2,15011,45 ,2,15007,1870 ,2,15008,660700 ,2,15009,45 ,2,15010,660660 ,2,15011,45 ,2,15007,1870 ,2,15008,660710 ,2,15009,45 ,2,15010,660705 ,2,15011,45 ,2,15007,1870 ,2,15008,660725 ,2,15009,45 ,2,15010,660715 ,2,15011,45 ,2,15007,1870 ,2,15008,647710 ,2,15009,45 ,2,15010,660730 ,2,15011,45 ,2,15007,1870 ,2,15008,650470 ,2,15009,45 ,2,15010,660735 ,2,15011,45 ,2,15007,1870 ,2,15008,614040 ,2,15009,45 ,2,15010,614035 ,2,15011,45 ,2,15007,390340 ,2,15008,647710 ,2,15009,45 ,2,15010,660730 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660740 ,2,15011,208220 ,2,15007,1870 ,2,15008,660760 ,2,15009,45 ,2,15010,660755 ,2,15011,45 ,2,15007,390820 ,2,15008,660760 ,2,15009,45 ,2,15010,660755 ,2,15011,45 ,2,15007,1870 ,2,15008,660770 ,2,15009,45 ,2,15010,660765 ,2,15011,45 ,2,15007,1870 ,2,15008,660800 ,2,15009,45 ,2,15010,660795 ,2,15011,45 ,2,15007,1870 ,2,15008,660810 ,2,15009,45 ,2,15010,660805 ,2,15011,45 ,2,15007,1870 ,2,15008,660845 ,2,15009,45 ,2,15010,660840 ,2,15011,45 ,2,15007,1870 ,2,15008,660845 ,2,15009,45 ,2,15010,660840 ,2,15011,45 ,2,15007,1870 ,2,15008,660855 ,2,15009,45 ,2,15010,660850 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660865 ,2,15011,208365 ,2,15007,1870 ,2,15008,660875 ,2,15009,45 ,2,15010,660870 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660880 ,2,15011,208440 ,2,15007,1870 ,2,15008,660905 ,2,15009,45 ,2,15010,660900 ,2,15011,45 ,2,15007,1870 ,2,15008,660915 ,2,15009,45 ,2,15010,660910 ,2,15011,45 ,2,15007,1870 ,2,15008,647730 ,2,15009,45 ,2,15010,660920 ,2,15011,45 ,2,15007,1870 ,2,15008,651380 ,2,15009,45 ,2,15010,660925 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,554025 ,2,15010,660930 ,2,15011,45 ,2,15007,1870 ,2,15008,647725 ,2,15009,45 ,2,15010,660935 ,2,15011,45 ,2,15007,392750 ,2,15008,651380 ,2,15009,45 ,2,15010,660925 ,2,15011,45 ,2,15007,1870 ,2,15008,647730 ,2,15009,45 ,2,15010,660920 ,2,15011,45 ,2,15007,1870 ,2,15008,660960 ,2,15009,45 ,2,15010,660955 ,2,15011,45 ,2,15007,1870 ,2,15008,660980 ,2,15009,554030 ,2,15010,660965 ,2,15011,45 ,2,15007,1870 ,2,15008,659775 ,2,15009,554030 ,2,15010,660985 ,2,15011,45 ,2,15007,1870 ,2,15008,660995 ,2,15009,45 ,2,15010,660990 ,2,15011,45 ,2,15007,1870 ,2,15008,661020 ,2,15009,45 ,2,15010,661015 ,2,15011,45 ,2,15007,1870 ,2,15008,661030 ,2,15009,545325 ,2,15010,661025 ,2,15011,45 ,2,15007,1870 ,2,15008,661045 ,2,15009,45 ,2,15010,661040 ,2,15011,45 ,2,15007,1870 ,2,15008,661055 ,2,15009,45 ,2,15010,661050 ,2,15011,45 ,2,15007,1870 ,2,15008,661085 ,2,15009,554045 ,2,15010,661080 ,2,15011,45 ,2,15007,1870 ,2,15008,613925 ,2,15009,554045 ,2,15010,661090 ,2,15011,45 ,2,15007,1870 ,2,15008,661115 ,2,15009,45 ,2,15010,661095 ,2,15011,45 ,2,15007,1870 ,2,15008,661125 ,2,15009,45 ,2,15010,661120 ,2,15011,45 ,2,15007,1870 ,2,15008,661160 ,2,15009,546120 ,2,15010,661130 ,2,15011,45 ,2,15007,1870 ,2,15008,661170 ,2,15009,45 ,2,15010,661165 ,2,15011,45 ,2,15007,1870 ,2,15008,661190 ,2,15009,554050 ,2,15010,661185 ,2,15011,45 ,2,15007,1870 ,2,15008,613395 ,2,15009,554050 ,2,15010,661195 ,2,15011,45 ,2,15007,1870 ,2,15008,661235 ,2,15009,45 ,2,15010,661230 ,2,15011,45 ,2,15007,1870 ,2,15008,661235 ,2,15009,45 ,2,15010,661230 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,554065 ,2,15010,661240 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,554070 ,2,15010,661245 ,2,15011,45 ,2,15007,1870 ,2,15008,661255 ,2,15009,45 ,2,15010,661250 ,2,15011,45 ,2,15007,1870 ,2,15008,647705 ,2,15009,45 ,2,15010,661260 ,2,15011,45 ,2,15007,1870 ,2,15008,619170 ,2,15009,554075 ,2,15010,661265 ,2,15011,45 ,2,15007,397555 ,2,15008,647705 ,2,15009,45 ,2,15010,661260 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,554075 ,2,15010,661290 ,2,15011,45 ,2,15007,1870 ,2,15008,643140 ,2,15009,45 ,2,15010,661295 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661300 ,2,15011,222545 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661305 ,2,15011,217815 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661320 ,2,15011,210795 ,2,15007,400460 ,2,15008,656075 ,2,15009,45 ,2,15010,656070 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661325 ,2,15011,218905 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661330 ,2,15011,223565 ,2,15007,1870 ,2,15008,656105 ,2,15009,45 ,2,15010,656100 ,2,15011,45 ,2,15007,1870 ,2,15008,642950 ,2,15009,45 ,2,15010,642945 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661335 ,2,15011,211510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661350 ,2,15011,211560 ,2,15007,1870 ,2,15008,656130 ,2,15009,45 ,2,15010,656125 ,2,15011,45 ,2,15007,1870 ,2,15008,639635 ,2,15009,45 ,2,15010,639630 ,2,15011,45 ,2,15007,400665 ,2,15008,632750 ,2,15009,548015 ,2,15010,661355 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661360 ,2,15011,211150 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661365 ,2,15011,211185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661360 ,2,15011,211195 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661365 ,2,15011,211205 ,2,15007,400695 ,2,15008,642990 ,2,15009,45 ,2,15010,642985 ,2,15011,45 ,2,15007,1870 ,2,15008,643260 ,2,15009,45 ,2,15010,643255 ,2,15011,45 ,2,15007,1870 ,2,15008,628130 ,2,15009,45 ,2,15010,628125 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661375 ,2,15011,212940 ,2,15007,1870 ,2,15008,658110 ,2,15009,45 ,2,15010,658100 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661380 ,2,15011,211400 ,2,15007,400880 ,2,15008,627835 ,2,15009,554230 ,2,15010,661385 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660320 ,2,15011,211595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661390 ,2,15011,223575 ,2,15007,1870 ,2,15008,656800 ,2,15009,45 ,2,15010,656795 ,2,15011,45 ,2,15007,400960 ,2,15008,628915 ,2,15009,45 ,2,15010,628910 ,2,15011,45 ,2,15007,400970 ,2,15008,633995 ,2,15009,45 ,2,15010,633990 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661420 ,2,15011,211665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661425 ,2,15011,211705 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661430 ,2,15011,218945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661435 ,2,15011,218955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661440 ,2,15011,219015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661445 ,2,15011,219025 ,2,15007,401025 ,2,15008,643060 ,2,15009,45 ,2,15010,643055 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661450 ,2,15011,211760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661455 ,2,15011,211770 ,2,15007,1870 ,2,15008,634420 ,2,15009,45 ,2,15010,634415 ,2,15011,45 ,2,15007,1870 ,2,15008,660260 ,2,15009,45 ,2,15010,660255 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661475 ,2,15011,223510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661480 ,2,15011,211915 ,2,15007,1870 ,2,15008,644710 ,2,15009,45 ,2,15010,644705 ,2,15011,45 ,2,15007,1870 ,2,15008,632400 ,2,15009,45 ,2,15010,632395 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661485 ,2,15011,211935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661490 ,2,15011,211970 ,2,15007,1870 ,2,15008,635395 ,2,15009,554295 ,2,15010,661500 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,554300 ,2,15010,661505 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661510 ,2,15011,212000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661515 ,2,15011,217865 ,2,15007,1870 ,2,15008,639190 ,2,15009,45 ,2,15010,639185 ,2,15011,45 ,2,15007,1870 ,2,15008,638685 ,2,15009,45 ,2,15010,638680 ,2,15011,45 ,2,15007,1870 ,2,15008,636995 ,2,15009,45 ,2,15010,636990 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661540 ,2,15011,212090 ,2,15007,1870 ,2,15008,639415 ,2,15009,45 ,2,15010,639410 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638070 ,2,15011,212360 ,2,15007,401380 ,2,15008,627835 ,2,15009,554400 ,2,15010,661550 ,2,15011,45 ,2,15007,401410 ,2,15008,638380 ,2,15009,45 ,2,15010,638375 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661555 ,2,15011,212425 ,2,15007,1870 ,2,15008,638000 ,2,15009,45 ,2,15010,637990 ,2,15011,45 ,2,15007,1870 ,2,15008,637905 ,2,15009,550005 ,2,15010,637900 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661565 ,2,15011,212435 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661570 ,2,15011,212930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661575 ,2,15011,212495 ,2,15007,1870 ,2,15008,644390 ,2,15009,45 ,2,15010,644385 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661580 ,2,15011,212505 ,2,15007,1870 ,2,15008,637115 ,2,15009,45 ,2,15010,637110 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661615 ,2,15011,212610 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661620 ,2,15011,212705 ,2,15007,1870 ,2,15008,638800 ,2,15009,45 ,2,15010,638795 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661625 ,2,15011,212740 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661630 ,2,15011,213480 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661640 ,2,15011,213500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661630 ,2,15011,212770 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661640 ,2,15011,212805 ,2,15007,1870 ,2,15008,615420 ,2,15009,544340 ,2,15010,615415 ,2,15011,45 ,2,15007,1870 ,2,15008,634910 ,2,15009,548760 ,2,15010,634905 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661645 ,2,15011,212835 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615075 ,2,15011,212855 ,2,15007,1870 ,2,15008,615310 ,2,15009,549040 ,2,15010,661650 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661655 ,2,15011,212865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661675 ,2,15011,212875 ,2,15007,1870 ,2,15008,635395 ,2,15009,554430 ,2,15010,661680 ,2,15011,45 ,2,15007,1870 ,2,15008,635395 ,2,15009,554435 ,2,15010,661685 ,2,15011,45 ,2,15007,1870 ,2,15008,624055 ,2,15009,546780 ,2,15010,624040 ,2,15011,45 ,2,15007,401695 ,2,15008,623635 ,2,15009,557765 ,2,15010,661690 ,2,15011,45 ,2,15007,1870 ,2,15008,637850 ,2,15009,549995 ,2,15010,637845 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661705 ,2,15011,212950 ,2,15007,1870 ,2,15008,634375 ,2,15009,45 ,2,15010,634365 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661710 ,2,15011,216695 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661715 ,2,15011,213080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661745 ,2,15011,213090 ,2,15007,1870 ,2,15008,656455 ,2,15009,552765 ,2,15010,661720 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661750 ,2,15011,218995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661755 ,2,15011,219005 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661760 ,2,15011,213160 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661765 ,2,15011,213170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661770 ,2,15011,213190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661775 ,2,15011,213200 ,2,15007,1870 ,2,15008,640325 ,2,15009,554475 ,2,15010,661780 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,554480 ,2,15010,661810 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661815 ,2,15011,213210 ,2,15007,1870 ,2,15008,630545 ,2,15009,45 ,2,15010,630525 ,2,15011,45 ,2,15007,1870 ,2,15008,637230 ,2,15009,45 ,2,15010,637225 ,2,15011,45 ,2,15007,1870 ,2,15008,660165 ,2,15009,553955 ,2,15010,660160 ,2,15011,45 ,2,15007,1870 ,2,15008,639775 ,2,15009,45 ,2,15010,639770 ,2,15011,45 ,2,15007,401860 ,2,15008,638090 ,2,15009,45 ,2,15010,638085 ,2,15011,45 ,2,15007,1870 ,2,15008,636915 ,2,15009,549565 ,2,15010,636910 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661820 ,2,15011,213285 ,2,15007,1870 ,2,15008,635705 ,2,15009,554500 ,2,15010,661825 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661830 ,2,15011,213320 ,2,15007,1870 ,2,15008,644370 ,2,15009,45 ,2,15010,644350 ,2,15011,45 ,2,15007,1870 ,2,15008,632620 ,2,15009,45 ,2,15010,632615 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661835 ,2,15011,213360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661840 ,2,15011,213410 ,2,15007,1870 ,2,15008,634530 ,2,15009,45 ,2,15010,634525 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661845 ,2,15011,213440 ,2,15007,401975 ,2,15008,632750 ,2,15009,548545 ,2,15010,661865 ,2,15011,45 ,2,15007,1870 ,2,15008,631330 ,2,15009,45 ,2,15010,631320 ,2,15011,45 ,2,15007,1870 ,2,15008,641170 ,2,15009,45 ,2,15010,641165 ,2,15011,45 ,2,15007,1870 ,2,15008,643370 ,2,15009,45 ,2,15010,643365 ,2,15011,45 ,2,15007,1870 ,2,15008,643655 ,2,15009,550130 ,2,15010,643625 ,2,15011,45 ,2,15007,1870 ,2,15008,638745 ,2,15009,550130 ,2,15010,638740 ,2,15011,45 ,2,15007,402020 ,2,15008,638765 ,2,15009,550590 ,2,15010,661870 ,2,15011,45 ,2,15007,1870 ,2,15008,636830 ,2,15009,45 ,2,15010,636825 ,2,15011,45 ,2,15007,1870 ,2,15008,636880 ,2,15009,549555 ,2,15010,636865 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661875 ,2,15011,223265 ,2,15007,1870 ,2,15008,637825 ,2,15009,549960 ,2,15010,637820 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661880 ,2,15011,213605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661890 ,2,15011,213620 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661895 ,2,15011,213630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,213685 ,2,15007,402090 ,2,15008,643735 ,2,15009,552495 ,2,15010,661900 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661905 ,2,15011,213860 ,2,15007,1870 ,2,15008,645375 ,2,15009,45 ,2,15010,645370 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661930 ,2,15011,213705 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661935 ,2,15011,220530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661940 ,2,15011,217710 ,2,15007,402225 ,2,15008,613440 ,2,15009,45 ,2,15010,613435 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,645055 ,2,15011,213930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661945 ,2,15011,213940 ,2,15007,1870 ,2,15008,615275 ,2,15009,548330 ,2,15010,661955 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,548330 ,2,15010,661960 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661965 ,2,15011,213950 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661970 ,2,15011,214025 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661985 ,2,15011,213970 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661990 ,2,15011,213980 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661995 ,2,15011,213990 ,2,15007,402295 ,2,15008,630180 ,2,15009,45 ,2,15010,630175 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662000 ,2,15011,214045 ,2,15007,1870 ,2,15008,640630 ,2,15009,45 ,2,15010,640620 ,2,15011,45 ,2,15007,402310 ,2,15008,630230 ,2,15009,548270 ,2,15010,630185 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662010 ,2,15011,214075 ,2,15007,1870 ,2,15008,655720 ,2,15009,45 ,2,15010,655715 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662015 ,2,15011,214085 ,2,15007,1870 ,2,15008,651430 ,2,15009,45 ,2,15010,651700 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662020 ,2,15011,214095 ,2,15007,402370 ,2,15008,653595 ,2,15009,554680 ,2,15010,662025 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662060 ,2,15011,214105 ,2,15007,402380 ,2,15008,653595 ,2,15009,554795 ,2,15010,662065 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662070 ,2,15011,214150 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662075 ,2,15011,217340 ,2,15007,1870 ,2,15008,615275 ,2,15009,555245 ,2,15010,662085 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662090 ,2,15011,217350 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662095 ,2,15011,214210 ,2,15007,1870 ,2,15008,615210 ,2,15009,554785 ,2,15010,662100 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,554780 ,2,15010,662130 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662135 ,2,15011,214300 ,2,15007,1870 ,2,15008,653540 ,2,15009,45 ,2,15010,653535 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662140 ,2,15011,214310 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662135 ,2,15011,214320 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662145 ,2,15011,214330 ,2,15007,1870 ,2,15008,653530 ,2,15009,45 ,2,15010,653525 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662155 ,2,15011,214360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662145 ,2,15011,214370 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662160 ,2,15011,214380 ,2,15007,1870 ,2,15008,641775 ,2,15009,45 ,2,15010,653495 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662165 ,2,15011,214390 ,2,15007,1870 ,2,15008,650260 ,2,15009,45 ,2,15010,652165 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662170 ,2,15011,214405 ,2,15007,1870 ,2,15008,650265 ,2,15009,45 ,2,15010,652245 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662205 ,2,15011,214415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662170 ,2,15011,214425 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662210 ,2,15011,214435 ,2,15007,1870 ,2,15008,650270 ,2,15009,45 ,2,15010,653490 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662215 ,2,15011,214475 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662210 ,2,15011,214485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662220 ,2,15011,214495 ,2,15007,1870 ,2,15008,646835 ,2,15009,45 ,2,15010,653485 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662230 ,2,15011,214505 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662220 ,2,15011,214515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662235 ,2,15011,214525 ,2,15007,1870 ,2,15008,650275 ,2,15009,45 ,2,15010,653480 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662240 ,2,15011,214535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662235 ,2,15011,214545 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662245 ,2,15011,214580 ,2,15007,1870 ,2,15008,650280 ,2,15009,45 ,2,15010,653470 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662260 ,2,15011,214590 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662245 ,2,15011,214600 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662265 ,2,15011,214610 ,2,15007,1870 ,2,15008,650325 ,2,15009,45 ,2,15010,653465 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662270 ,2,15011,214620 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662265 ,2,15011,214630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662275 ,2,15011,214640 ,2,15007,1870 ,2,15008,650250 ,2,15009,45 ,2,15010,653455 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662285 ,2,15011,214650 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662275 ,2,15011,214690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662290 ,2,15011,214700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662295 ,2,15011,214710 ,2,15007,1870 ,2,15008,650185 ,2,15009,45 ,2,15010,653425 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662300 ,2,15011,214720 ,2,15007,1870 ,2,15008,650210 ,2,15009,45 ,2,15010,653420 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662350 ,2,15011,214740 ,2,15007,1870 ,2,15008,641800 ,2,15009,45 ,2,15010,653415 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662355 ,2,15011,214750 ,2,15007,1870 ,2,15008,650195 ,2,15009,45 ,2,15010,653410 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662360 ,2,15011,214760 ,2,15007,1870 ,2,15008,650145 ,2,15009,45 ,2,15010,653400 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662365 ,2,15011,214770 ,2,15007,1870 ,2,15008,650150 ,2,15009,45 ,2,15010,653395 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662370 ,2,15011,214790 ,2,15007,1870 ,2,15008,650155 ,2,15009,45 ,2,15010,653390 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662375 ,2,15011,214800 ,2,15007,1870 ,2,15008,650180 ,2,15009,45 ,2,15010,653385 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662380 ,2,15011,214810 ,2,15007,1870 ,2,15008,650190 ,2,15009,45 ,2,15010,653370 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662385 ,2,15011,214820 ,2,15007,1870 ,2,15008,650370 ,2,15009,45 ,2,15010,653365 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662395 ,2,15011,214835 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662385 ,2,15011,214845 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662400 ,2,15011,214855 ,2,15007,1870 ,2,15008,650215 ,2,15009,45 ,2,15010,653360 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662405 ,2,15011,214865 ,2,15007,1870 ,2,15008,650365 ,2,15009,45 ,2,15010,653350 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662410 ,2,15011,214900 ,2,15007,1870 ,2,15008,649990 ,2,15009,45 ,2,15010,653345 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662415 ,2,15011,214910 ,2,15007,1870 ,2,15008,647550 ,2,15009,45 ,2,15010,653340 ,2,15011,45 ,2,15007,1870 ,2,15008,662425 ,2,15009,45 ,2,15010,662420 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662430 ,2,15011,214920 ,2,15007,1870 ,2,15008,653310 ,2,15009,45 ,2,15010,653305 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662460 ,2,15011,214930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662430 ,2,15011,214945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662465 ,2,15011,214955 ,2,15007,1870 ,2,15008,647545 ,2,15009,45 ,2,15010,653290 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662470 ,2,15011,214975 ,2,15007,1870 ,2,15008,653245 ,2,15009,45 ,2,15010,653240 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662475 ,2,15011,215015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662495 ,2,15011,215025 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662500 ,2,15011,215035 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662505 ,2,15011,215045 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662510 ,2,15011,215060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662530 ,2,15011,215070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662535 ,2,15011,215080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662540 ,2,15011,215090 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662545 ,2,15011,215115 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662550 ,2,15011,215125 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662555 ,2,15011,215135 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662560 ,2,15011,215145 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662565 ,2,15011,215160 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662585 ,2,15011,215170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662590 ,2,15011,215180 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662595 ,2,15011,215190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662600 ,2,15011,215230 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662605 ,2,15011,215240 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662610 ,2,15011,215250 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662615 ,2,15011,215260 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662620 ,2,15011,215270 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662640 ,2,15011,215280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662645 ,2,15011,215290 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662650 ,2,15011,215300 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662655 ,2,15011,215325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662665 ,2,15011,215335 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662670 ,2,15011,215345 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662675 ,2,15011,215355 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662680 ,2,15011,215380 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662705 ,2,15011,215390 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662710 ,2,15011,215400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662715 ,2,15011,215410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662720 ,2,15011,215440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662730 ,2,15011,215450 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662735 ,2,15011,215460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662740 ,2,15011,215470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662745 ,2,15011,215490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662765 ,2,15011,215500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662770 ,2,15011,215510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662775 ,2,15011,215520 ,2,15007,1870 ,2,15008,650680 ,2,15009,45 ,2,15010,652470 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662780 ,2,15011,215560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662795 ,2,15011,215570 ,2,15007,1870 ,2,15008,650685 ,2,15009,45 ,2,15010,652355 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662800 ,2,15011,215580 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662795 ,2,15011,215590 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662805 ,2,15011,215605 ,2,15007,1870 ,2,15008,650690 ,2,15009,45 ,2,15010,652315 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662810 ,2,15011,215615 ,2,15007,1870 ,2,15008,650710 ,2,15009,45 ,2,15010,652310 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662835 ,2,15011,215625 ,2,15007,1870 ,2,15008,647830 ,2,15009,45 ,2,15010,652295 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662840 ,2,15011,215635 ,2,15007,1870 ,2,15008,647860 ,2,15009,45 ,2,15010,652285 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662845 ,2,15011,215660 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662840 ,2,15011,215670 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662850 ,2,15011,215680 ,2,15007,1870 ,2,15008,647910 ,2,15009,45 ,2,15010,652250 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662855 ,2,15011,215690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662850 ,2,15011,215710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662860 ,2,15011,215720 ,2,15007,1870 ,2,15008,647855 ,2,15009,45 ,2,15010,652225 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662865 ,2,15011,215730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662860 ,2,15011,215740 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662870 ,2,15011,215790 ,2,15007,1870 ,2,15008,647870 ,2,15009,45 ,2,15010,652215 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662895 ,2,15011,215800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662870 ,2,15011,215810 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662900 ,2,15011,215820 ,2,15007,1870 ,2,15008,651595 ,2,15009,45 ,2,15010,652195 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662905 ,2,15011,215830 ,2,15007,1870 ,2,15008,651590 ,2,15009,45 ,2,15010,652180 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662910 ,2,15011,215840 ,2,15007,1870 ,2,15008,647660 ,2,15009,45 ,2,15010,652160 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662915 ,2,15011,215850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662910 ,2,15011,215860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662920 ,2,15011,215875 ,2,15007,1870 ,2,15008,650405 ,2,15009,45 ,2,15010,652110 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662925 ,2,15011,215885 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662920 ,2,15011,215895 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662930 ,2,15011,215905 ,2,15007,1870 ,2,15008,647675 ,2,15009,45 ,2,15010,651995 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662955 ,2,15011,215920 ,2,15007,1870 ,2,15008,647700 ,2,15009,45 ,2,15010,651990 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662960 ,2,15011,215930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662955 ,2,15011,215940 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662965 ,2,15011,215950 ,2,15007,1870 ,2,15008,650545 ,2,15009,45 ,2,15010,651980 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662970 ,2,15011,215970 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662965 ,2,15011,215980 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662980 ,2,15011,215990 ,2,15007,1870 ,2,15008,650510 ,2,15009,45 ,2,15010,651975 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662985 ,2,15011,216000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662980 ,2,15011,216010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662990 ,2,15011,216020 ,2,15007,1870 ,2,15008,650500 ,2,15009,45 ,2,15010,651845 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614255 ,2,15011,216040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662995 ,2,15011,216085 ,2,15007,1870 ,2,15008,614265 ,2,15009,45 ,2,15010,614260 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663025 ,2,15011,216095 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,662995 ,2,15011,216105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663030 ,2,15011,216115 ,2,15007,403420 ,2,15008,647655 ,2,15009,45 ,2,15010,651775 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663035 ,2,15011,216130 ,2,15007,1870 ,2,15008,645490 ,2,15009,548265 ,2,15010,645470 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663040 ,2,15011,216205 ,2,15007,1870 ,2,15008,644280 ,2,15009,45 ,2,15010,644270 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663050 ,2,15011,217690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663055 ,2,15011,216245 ,2,15007,1870 ,2,15008,616980 ,2,15009,557240 ,2,15010,663060 ,2,15011,45 ,2,15007,1870 ,2,15008,655635 ,2,15009,45 ,2,15010,655630 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663065 ,2,15011,216300 ,2,15007,1870 ,2,15008,636625 ,2,15009,45 ,2,15010,636620 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663100 ,2,15011,216310 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663105 ,2,15011,216320 ,2,15007,1870 ,2,15008,655240 ,2,15009,45 ,2,15010,655235 ,2,15011,45 ,2,15007,1870 ,2,15008,631600 ,2,15009,45 ,2,15010,631595 ,2,15011,45 ,2,15007,1870 ,2,15008,639940 ,2,15009,45 ,2,15010,639905 ,2,15011,45 ,2,15007,1870 ,2,15008,638010 ,2,15009,45 ,2,15010,638005 ,2,15011,45 ,2,15007,403560 ,2,15008,636755 ,2,15009,45 ,2,15010,636750 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663110 ,2,15011,216350 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663115 ,2,15011,216360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663125 ,2,15011,216395 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663130 ,2,15011,216405 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663135 ,2,15011,216565 ,2,15007,1870 ,2,15008,663175 ,2,15009,550085 ,2,15010,663140 ,2,15011,45 ,2,15007,403705 ,2,15008,638435 ,2,15009,554890 ,2,15010,663180 ,2,15011,45 ,2,15007,1870 ,2,15008,638515 ,2,15009,45 ,2,15010,638505 ,2,15011,45 ,2,15007,1870 ,2,15008,634570 ,2,15009,45 ,2,15010,634565 ,2,15011,45 ,2,15007,1870 ,2,15008,634580 ,2,15009,45 ,2,15010,634575 ,2,15011,45 ,2,15007,403755 ,2,15008,640325 ,2,15009,554905 ,2,15010,663185 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,554940 ,2,15010,663190 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663200 ,2,15011,216640 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663205 ,2,15011,216715 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663210 ,2,15011,216770 ,2,15007,1870 ,2,15008,659960 ,2,15009,45 ,2,15010,659955 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663215 ,2,15011,216850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663230 ,2,15011,216870 ,2,15007,1870 ,2,15008,633565 ,2,15009,45 ,2,15010,633560 ,2,15011,45 ,2,15007,1870 ,2,15008,636145 ,2,15009,554980 ,2,15010,663235 ,2,15011,45 ,2,15007,403895 ,2,15008,636140 ,2,15009,45 ,2,15010,663240 ,2,15011,45 ,2,15007,1870 ,2,15008,628595 ,2,15009,547995 ,2,15010,628555 ,2,15011,45 ,2,15007,403945 ,2,15008,632320 ,2,15009,45 ,2,15010,632315 ,2,15011,45 ,2,15007,1870 ,2,15008,629360 ,2,15009,555000 ,2,15010,663245 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663260 ,2,15011,217020 ,2,15007,1870 ,2,15008,631555 ,2,15009,45 ,2,15010,631550 ,2,15011,45 ,2,15007,1870 ,2,15008,639890 ,2,15009,550190 ,2,15010,639870 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663265 ,2,15011,217065 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663270 ,2,15011,217855 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663275 ,2,15011,217095 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663295 ,2,15011,217105 ,2,15007,404055 ,2,15008,631040 ,2,15009,45 ,2,15010,631035 ,2,15011,45 ,2,15007,1870 ,2,15008,631705 ,2,15009,45 ,2,15010,631700 ,2,15011,45 ,2,15007,1870 ,2,15008,640865 ,2,15009,45 ,2,15010,640860 ,2,15011,45 ,2,15007,1870 ,2,15008,650870 ,2,15009,551275 ,2,15010,650840 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663300 ,2,15011,217170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663305 ,2,15011,217205 ,2,15007,1870 ,2,15008,637295 ,2,15009,45 ,2,15010,637290 ,2,15011,45 ,2,15007,1870 ,2,15008,632040 ,2,15009,555080 ,2,15010,663310 ,2,15011,45 ,2,15007,1870 ,2,15008,660070 ,2,15009,45 ,2,15010,660065 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663315 ,2,15011,217280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663320 ,2,15011,217290 ,2,15007,404130 ,2,15008,645595 ,2,15009,548170 ,2,15010,663325 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,555200 ,2,15010,663330 ,2,15011,45 ,2,15007,1870 ,2,15008,627360 ,2,15009,557155 ,2,15010,663350 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,557155 ,2,15010,663355 ,2,15011,45 ,2,15007,404135 ,2,15008,627835 ,2,15009,555240 ,2,15010,663360 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663365 ,2,15011,217330 ,2,15007,404150 ,2,15008,637080 ,2,15009,557755 ,2,15010,663370 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663375 ,2,15011,217410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663380 ,2,15011,217420 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663385 ,2,15011,217440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663415 ,2,15011,217450 ,2,15007,1870 ,2,15008,646780 ,2,15009,45 ,2,15010,655420 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663420 ,2,15011,217485 ,2,15007,1870 ,2,15008,646790 ,2,15009,45 ,2,15010,655365 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663425 ,2,15011,217495 ,2,15007,1870 ,2,15008,646785 ,2,15009,45 ,2,15010,655355 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,557785 ,2,15010,663430 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663445 ,2,15011,217505 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663450 ,2,15011,217515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663455 ,2,15011,217540 ,2,15007,1870 ,2,15008,618780 ,2,15009,547255 ,2,15010,663460 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663480 ,2,15011,217585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663485 ,2,15011,217595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663490 ,2,15011,217615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663495 ,2,15011,217625 ,2,15007,404365 ,2,15008,654935 ,2,15009,45 ,2,15010,654930 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,45 ,2,15010,663500 ,2,15011,45 ,2,15007,404370 ,2,15008,615210 ,2,15009,45 ,2,15010,663505 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663510 ,2,15011,217635 ,2,15007,1870 ,2,15008,636380 ,2,15009,45 ,2,15010,636375 ,2,15011,45 ,2,15007,404405 ,2,15008,615275 ,2,15009,545930 ,2,15010,663515 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663535 ,2,15011,217720 ,2,15007,1870 ,2,15008,644200 ,2,15009,45 ,2,15010,644195 ,2,15011,45 ,2,15007,404430 ,2,15008,641150 ,2,15009,550410 ,2,15010,641145 ,2,15011,45 ,2,15007,404435 ,2,15008,630490 ,2,15009,45 ,2,15010,630455 ,2,15011,45 ,2,15007,404465 ,2,15008,620750 ,2,15009,45 ,2,15010,620745 ,2,15011,45 ,2,15007,404535 ,2,15008,663545 ,2,15009,45 ,2,15010,663540 ,2,15011,45 ,2,15007,1870 ,2,15008,663545 ,2,15009,45 ,2,15010,663540 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663550 ,2,15011,217925 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663560 ,2,15011,217885 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663550 ,2,15011,217915 ,2,15007,1870 ,2,15008,623635 ,2,15009,45 ,2,15010,663565 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625950 ,2,15011,217945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663570 ,2,15011,217960 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638600 ,2,15011,218045 ,2,15007,1870 ,2,15008,638500 ,2,15009,45 ,2,15010,638495 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663575 ,2,15011,220160 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663605 ,2,15011,220170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663575 ,2,15011,218075 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663605 ,2,15011,218085 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663610 ,2,15011,218115 ,2,15007,404630 ,2,15008,645260 ,2,15009,45 ,2,15010,645255 ,2,15011,45 ,2,15007,1870 ,2,15008,637430 ,2,15009,45 ,2,15010,663615 ,2,15011,45 ,2,15007,1870 ,2,15008,644070 ,2,15009,45 ,2,15010,644060 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663620 ,2,15011,218175 ,2,15007,1870 ,2,15008,613220 ,2,15009,555465 ,2,15010,663625 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,555520 ,2,15010,615015 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663630 ,2,15011,218235 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663635 ,2,15011,218245 ,2,15007,404700 ,2,15008,625080 ,2,15009,547025 ,2,15010,663640 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663665 ,2,15011,218275 ,2,15007,404710 ,2,15008,625385 ,2,15009,551765 ,2,15010,663670 ,2,15011,45 ,2,15007,1870 ,2,15008,645635 ,2,15009,548165 ,2,15010,663675 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635915 ,2,15011,219975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663680 ,2,15011,219985 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663685 ,2,15011,219995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663680 ,2,15011,218470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663685 ,2,15011,218480 ,2,15007,1870 ,2,15008,641065 ,2,15009,45 ,2,15010,641035 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663690 ,2,15011,218515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663695 ,2,15011,218525 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663700 ,2,15011,218535 ,2,15007,404790 ,2,15008,631930 ,2,15009,45 ,2,15010,631925 ,2,15011,45 ,2,15007,404830 ,2,15008,631810 ,2,15009,555805 ,2,15010,663720 ,2,15011,45 ,2,15007,1870 ,2,15008,663740 ,2,15009,45 ,2,15010,663735 ,2,15011,45 ,2,15007,1870 ,2,15008,663740 ,2,15009,45 ,2,15010,663735 ,2,15011,45 ,2,15007,1870 ,2,15008,663730 ,2,15009,45 ,2,15010,663725 ,2,15011,45 ,2,15007,1870 ,2,15008,663730 ,2,15009,45 ,2,15010,663725 ,2,15011,45 ,2,15007,1870 ,2,15008,631425 ,2,15009,548430 ,2,15010,631410 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663745 ,2,15011,218560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663750 ,2,15011,218570 ,2,15007,404860 ,2,15008,640325 ,2,15009,555855 ,2,15010,663755 ,2,15011,45 ,2,15007,1870 ,2,15008,640325 ,2,15009,555860 ,2,15010,663785 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663790 ,2,15011,218760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663795 ,2,15011,218600 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663800 ,2,15011,218610 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663810 ,2,15011,218630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663815 ,2,15011,218685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663820 ,2,15011,218740 ,2,15007,404940 ,2,15008,625870 ,2,15009,45 ,2,15010,625865 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663825 ,2,15011,218790 ,2,15007,1870 ,2,15008,640750 ,2,15009,45 ,2,15010,640745 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625220 ,2,15011,218820 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663830 ,2,15011,218830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663835 ,2,15011,218840 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663840 ,2,15011,218875 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663845 ,2,15011,218885 ,2,15007,405025 ,2,15008,631030 ,2,15009,45 ,2,15010,631025 ,2,15011,45 ,2,15007,405050 ,2,15008,632220 ,2,15009,45 ,2,15010,632215 ,2,15011,45 ,2,15007,405055 ,2,15008,634080 ,2,15009,45 ,2,15010,634075 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663855 ,2,15011,218925 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663860 ,2,15011,218935 ,2,15007,405100 ,2,15008,634090 ,2,15009,45 ,2,15010,634085 ,2,15011,45 ,2,15007,405115 ,2,15008,634055 ,2,15009,45 ,2,15010,634050 ,2,15011,45 ,2,15007,405150 ,2,15008,633350 ,2,15009,45 ,2,15010,633345 ,2,15011,45 ,2,15007,405165 ,2,15008,659745 ,2,15009,45 ,2,15010,659740 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663865 ,2,15011,219040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663870 ,2,15011,219050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663910 ,2,15011,219060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663915 ,2,15011,219070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637265 ,2,15011,219120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663920 ,2,15011,219140 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663925 ,2,15011,219180 ,2,15007,405260 ,2,15008,645390 ,2,15009,45 ,2,15010,645380 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663930 ,2,15011,219215 ,2,15007,1870 ,2,15008,660855 ,2,15009,45 ,2,15010,660850 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663945 ,2,15011,220100 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663970 ,2,15011,219465 ,2,15007,1870 ,2,15008,618860 ,2,15009,552970 ,2,15010,663975 ,2,15011,45 ,2,15007,405435 ,2,15008,646265 ,2,15009,45 ,2,15010,646260 ,2,15011,45 ,2,15007,1870 ,2,15008,625440 ,2,15009,551020 ,2,15010,663980 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663985 ,2,15011,219565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663990 ,2,15011,219590 ,2,15007,1870 ,2,15008,660770 ,2,15009,45 ,2,15010,660765 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663995 ,2,15011,219610 ,2,15007,1870 ,2,15008,664005 ,2,15009,45 ,2,15010,664000 ,2,15011,45 ,2,15007,405545 ,2,15008,660800 ,2,15009,45 ,2,15010,660795 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664025 ,2,15011,219650 ,2,15007,1870 ,2,15008,664035 ,2,15009,45 ,2,15010,664030 ,2,15011,45 ,2,15007,1870 ,2,15008,664005 ,2,15009,45 ,2,15010,664000 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664040 ,2,15011,219680 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664060 ,2,15011,219690 ,2,15007,1870 ,2,15008,664070 ,2,15009,45 ,2,15010,664065 ,2,15011,45 ,2,15007,1870 ,2,15008,664095 ,2,15009,45 ,2,15010,664090 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664100 ,2,15011,219845 ,2,15007,1870 ,2,15008,618860 ,2,15009,549140 ,2,15010,664105 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664115 ,2,15011,219795 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619055 ,2,15011,219955 ,2,15007,405765 ,2,15008,632750 ,2,15009,549095 ,2,15010,664120 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664125 ,2,15011,223530 ,2,15007,405875 ,2,15008,632750 ,2,15009,550405 ,2,15010,664130 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,220180 ,2,15007,1870 ,2,15008,636145 ,2,15009,556215 ,2,15010,664145 ,2,15011,45 ,2,15007,1870 ,2,15008,636140 ,2,15009,549315 ,2,15010,664150 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664155 ,2,15011,220190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664170 ,2,15011,220200 ,2,15007,1870 ,2,15008,660020 ,2,15009,45 ,2,15010,660015 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664175 ,2,15011,220210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664180 ,2,15011,220220 ,2,15007,1870 ,2,15008,636545 ,2,15009,556235 ,2,15010,664185 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664210 ,2,15011,220230 ,2,15007,1870 ,2,15008,658045 ,2,15009,553030 ,2,15010,658035 ,2,15011,45 ,2,15007,1870 ,2,15008,620330 ,2,15009,45 ,2,15010,620305 ,2,15011,45 ,2,15007,1870 ,2,15008,664220 ,2,15009,557785 ,2,15010,664215 ,2,15011,45 ,2,15007,1870 ,2,15008,658045 ,2,15009,557785 ,2,15010,664225 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664240 ,2,15011,220250 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664240 ,2,15011,220260 ,2,15007,1870 ,2,15008,624825 ,2,15009,551775 ,2,15010,664245 ,2,15011,45 ,2,15007,1870 ,2,15008,624825 ,2,15009,45 ,2,15010,664250 ,2,15011,45 ,2,15007,1870 ,2,15008,624845 ,2,15009,556315 ,2,15010,664280 ,2,15011,45 ,2,15007,1870 ,2,15008,624845 ,2,15009,547135 ,2,15010,664285 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664290 ,2,15011,223390 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664295 ,2,15011,223400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664290 ,2,15011,220370 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664295 ,2,15011,220380 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664305 ,2,15011,220425 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664310 ,2,15011,220460 ,2,15007,1870 ,2,15008,628905 ,2,15009,45 ,2,15010,628900 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664315 ,2,15011,220470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664320 ,2,15011,220510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664340 ,2,15011,220995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664345 ,2,15011,220710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664350 ,2,15011,220700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664355 ,2,15011,220605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664365 ,2,15011,220615 ,2,15007,1870 ,2,15008,615210 ,2,15009,45 ,2,15010,663505 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,660645 ,2,15011,220625 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664370 ,2,15011,220635 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664375 ,2,15011,220690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664380 ,2,15011,221235 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664410 ,2,15011,220750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664415 ,2,15011,220940 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664420 ,2,15011,220800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664425 ,2,15011,223315 ,2,15007,1870 ,2,15008,664435 ,2,15009,45 ,2,15010,664430 ,2,15011,45 ,2,15007,1870 ,2,15008,664445 ,2,15009,45 ,2,15010,664440 ,2,15011,45 ,2,15007,1870 ,2,15008,664485 ,2,15009,45 ,2,15010,664480 ,2,15011,45 ,2,15007,1870 ,2,15008,664495 ,2,15009,45 ,2,15010,664490 ,2,15011,45 ,2,15007,1870 ,2,15008,664510 ,2,15009,45 ,2,15010,664505 ,2,15011,45 ,2,15007,1870 ,2,15008,664520 ,2,15009,45 ,2,15010,664515 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,220920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,220930 ,2,15007,406275 ,2,15008,625165 ,2,15009,547060 ,2,15010,664535 ,2,15011,45 ,2,15007,1870 ,2,15008,647605 ,2,15009,555715 ,2,15010,664540 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,551485 ,2,15010,664545 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,552505 ,2,15010,664550 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,557790 ,2,15010,663430 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663450 ,2,15011,220965 ,2,15007,1870 ,2,15008,620615 ,2,15009,45 ,2,15010,620595 ,2,15011,45 ,2,15007,1870 ,2,15008,619815 ,2,15009,45 ,2,15010,619810 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664555 ,2,15011,220975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664560 ,2,15011,221225 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664565 ,2,15011,221015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664570 ,2,15011,221205 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664585 ,2,15011,221125 ,2,15007,1870 ,2,15008,629575 ,2,15009,548125 ,2,15010,629545 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544340 ,2,15010,664590 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664595 ,2,15011,221340 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664600 ,2,15011,221350 ,2,15007,406555 ,2,15008,633155 ,2,15009,45 ,2,15010,633150 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664615 ,2,15011,221370 ,2,15007,406570 ,2,15008,628040 ,2,15009,547550 ,2,15010,664620 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664625 ,2,15011,221490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664630 ,2,15011,221500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664625 ,2,15011,221405 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664630 ,2,15011,221415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664640 ,2,15011,221475 ,2,15007,406635 ,2,15008,632750 ,2,15009,547475 ,2,15010,664645 ,2,15011,45 ,2,15007,406650 ,2,15008,632750 ,2,15009,547550 ,2,15010,664650 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664655 ,2,15011,221510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664665 ,2,15011,221520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664655 ,2,15011,221555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664665 ,2,15011,221565 ,2,15007,406695 ,2,15008,632750 ,2,15009,557755 ,2,15010,664670 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664675 ,2,15011,221585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664680 ,2,15011,221595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664675 ,2,15011,221605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664680 ,2,15011,221615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664695 ,2,15011,221625 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620880 ,2,15011,221655 ,2,15007,406720 ,2,15008,632750 ,2,15009,547445 ,2,15010,664700 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664705 ,2,15011,221665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664710 ,2,15011,221675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664705 ,2,15011,221685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664710 ,2,15011,221700 ,2,15007,1870 ,2,15008,615310 ,2,15009,545145 ,2,15010,664715 ,2,15011,45 ,2,15007,1870 ,2,15008,622275 ,2,15009,547295 ,2,15010,664720 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664725 ,2,15011,221710 ,2,15007,1870 ,2,15008,659385 ,2,15009,546250 ,2,15010,664730 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,545800 ,2,15010,664770 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664845 ,2,15011,221780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664835 ,2,15011,221790 ,2,15007,1870 ,2,15008,618860 ,2,15009,556770 ,2,15010,664830 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,556770 ,2,15010,664840 ,2,15011,45 ,2,15007,1870 ,2,15008,621955 ,2,15009,45 ,2,15010,664850 ,2,15011,45 ,2,15007,406795 ,2,15008,664860 ,2,15009,45 ,2,15010,664855 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,556790 ,2,15010,664890 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,556780 ,2,15010,664895 ,2,15011,45 ,2,15007,1870 ,2,15008,621395 ,2,15009,45 ,2,15010,664900 ,2,15011,45 ,2,15007,1870 ,2,15008,664915 ,2,15009,45 ,2,15010,664910 ,2,15011,45 ,2,15007,1870 ,2,15008,660980 ,2,15009,557405 ,2,15010,664920 ,2,15011,45 ,2,15007,1870 ,2,15008,624825 ,2,15009,547070 ,2,15010,664925 ,2,15011,45 ,2,15007,406875 ,2,15008,625350 ,2,15009,547060 ,2,15010,664945 ,2,15011,45 ,2,15007,406880 ,2,15008,660980 ,2,15009,546895 ,2,15010,664950 ,2,15011,45 ,2,15007,1870 ,2,15008,664960 ,2,15009,45 ,2,15010,664955 ,2,15011,45 ,2,15007,1870 ,2,15008,653735 ,2,15009,556800 ,2,15010,664965 ,2,15011,45 ,2,15007,407040 ,2,15008,625860 ,2,15009,45 ,2,15010,625855 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,545920 ,2,15010,664970 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664975 ,2,15011,222195 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664980 ,2,15011,222205 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665005 ,2,15011,222220 ,2,15007,407090 ,2,15008,665015 ,2,15009,45 ,2,15010,665010 ,2,15011,45 ,2,15007,1870 ,2,15008,665025 ,2,15009,45 ,2,15010,665020 ,2,15011,45 ,2,15007,407125 ,2,15008,629385 ,2,15009,45 ,2,15010,629380 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665030 ,2,15011,222760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665035 ,2,15011,222770 ,2,15007,407215 ,2,15008,632750 ,2,15009,547480 ,2,15010,665040 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665060 ,2,15011,222475 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665065 ,2,15011,222515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665060 ,2,15011,222525 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665065 ,2,15011,222535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665075 ,2,15011,222560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665070 ,2,15011,222570 ,2,15007,1870 ,2,15008,615310 ,2,15009,547565 ,2,15010,665080 ,2,15011,45 ,2,15007,407285 ,2,15008,628500 ,2,15009,45 ,2,15010,628495 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665085 ,2,15011,222650 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665090 ,2,15011,222660 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665095 ,2,15011,222750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665110 ,2,15011,222705 ,2,15007,407330 ,2,15008,627145 ,2,15009,547450 ,2,15010,627120 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665115 ,2,15011,222730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665120 ,2,15011,222800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665125 ,2,15011,222830 ,2,15007,407420 ,2,15008,629315 ,2,15009,45 ,2,15010,629310 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624615 ,2,15011,223015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665130 ,2,15011,222880 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665135 ,2,15011,222890 ,2,15007,1870 ,2,15008,616980 ,2,15009,545260 ,2,15010,665140 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665145 ,2,15011,222945 ,2,15007,1870 ,2,15008,620860 ,2,15009,544655 ,2,15010,620855 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638660 ,2,15011,222955 ,2,15007,407460 ,2,15008,627835 ,2,15009,548170 ,2,15010,665165 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665170 ,2,15011,222995 ,2,15007,1870 ,2,15008,626080 ,2,15009,45 ,2,15010,626075 ,2,15011,45 ,2,15007,1870 ,2,15008,626135 ,2,15009,45 ,2,15010,626130 ,2,15011,45 ,2,15007,1870 ,2,15008,665180 ,2,15009,45 ,2,15010,665175 ,2,15011,45 ,2,15007,407555 ,2,15008,650050 ,2,15009,45 ,2,15010,659930 ,2,15011,45 ,2,15007,407560 ,2,15008,650020 ,2,15009,45 ,2,15010,659935 ,2,15011,45 ,2,15007,1870 ,2,15008,615210 ,2,15009,557150 ,2,15010,665185 ,2,15011,45 ,2,15007,1870 ,2,15008,645755 ,2,15009,45 ,2,15010,645750 ,2,15011,45 ,2,15007,407600 ,2,15008,627835 ,2,15009,557785 ,2,15010,665190 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,645760 ,2,15011,223105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665195 ,2,15011,224075 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,223325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665200 ,2,15011,223335 ,2,15007,407755 ,2,15008,632750 ,2,15009,553945 ,2,15010,665225 ,2,15011,45 ,2,15007,1870 ,2,15008,627835 ,2,15009,547565 ,2,15010,665230 ,2,15011,45 ,2,15007,407795 ,2,15008,624520 ,2,15009,45 ,2,15010,624515 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665235 ,2,15011,223455 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,223500 ,2,15007,1870 ,2,15008,618860 ,2,15009,546045 ,2,15010,665240 ,2,15011,45 ,2,15007,407845 ,2,15008,629095 ,2,15009,45 ,2,15010,629050 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665255 ,2,15011,223640 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665260 ,2,15011,223650 ,2,15007,1870 ,2,15008,618780 ,2,15009,545880 ,2,15010,665265 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,545880 ,2,15010,665270 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665285 ,2,15011,223750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665290 ,2,15011,223770 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665295 ,2,15011,223780 ,2,15007,1870 ,2,15008,618860 ,2,15009,545785 ,2,15010,665300 ,2,15011,45 ,2,15007,1870 ,2,15008,665310 ,2,15009,45 ,2,15010,665305 ,2,15011,45 ,2,15007,1870 ,2,15008,665320 ,2,15009,45 ,2,15010,665315 ,2,15011,45 ,2,15007,1870 ,2,15008,665380 ,2,15009,45 ,2,15010,665370 ,2,15011,45 ,2,15007,1870 ,2,15008,665360 ,2,15009,45 ,2,15010,665355 ,2,15011,45 ,2,15007,1870 ,2,15008,616980 ,2,15009,557720 ,2,15010,629045 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665385 ,2,15011,223915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665390 ,2,15011,223955 ,2,15007,1870 ,2,15008,618005 ,2,15009,545355 ,2,15010,665415 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665420 ,2,15011,223985 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665430 ,2,15011,224010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614590 ,2,15011,224030 ,2,15007,408050 ,2,15008,616165 ,2,15009,543905 ,2,15010,665495 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543905 ,2,15010,665500 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543475 ,2,15010,665505 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,45 ,2,15010,665510 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,543900 ,2,15010,665750 ,2,15011,45 ,2,15007,1870 ,2,15008,620580 ,2,15009,45 ,2,15010,620575 ,2,15011,45 ,2,15007,1870 ,2,15008,619730 ,2,15009,45 ,2,15010,619715 ,2,15011,45 ,2,15007,408070 ,2,15008,619475 ,2,15009,45 ,2,15010,619470 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663810 ,2,15011,224095 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665760 ,2,15011,224110 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665770 ,2,15011,224120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665775 ,2,15011,224130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665285 ,2,15011,224140 ,2,15007,1870 ,2,15008,665785 ,2,15009,45 ,2,15010,665780 ,2,15011,45 ,2,15007,1870 ,2,15008,665795 ,2,15009,45 ,2,15010,665790 ,2,15011,45 ,2,15007,1870 ,2,15008,665805 ,2,15009,45 ,2,15010,665800 ,2,15011,45 ,2,15007,1870 ,2,15008,665845 ,2,15009,45 ,2,15010,665840 ,2,15011,45 ,2,15007,1870 ,2,15008,665855 ,2,15009,45 ,2,15010,665850 ,2,15011,45 ,2,15007,1870 ,2,15008,665870 ,2,15009,45 ,2,15010,665865 ,2,15011,45 ,2,15007,1870 ,2,15008,665880 ,2,15009,45 ,2,15010,665875 ,2,15011,45 ,2,15007,1870 ,2,15008,665910 ,2,15009,45 ,2,15010,665905 ,2,15011,45 ,2,15007,1870 ,2,15008,665930 ,2,15009,557550 ,2,15010,665915 ,2,15011,45 ,2,15007,1870 ,2,15008,665925 ,2,15009,45 ,2,15010,665920 ,2,15011,45 ,2,15007,1870 ,2,15008,629565 ,2,15009,557550 ,2,15010,665935 ,2,15011,45 ,2,15007,1870 ,2,15008,665970 ,2,15009,557550 ,2,15010,665940 ,2,15011,45 ,2,15007,1870 ,2,15008,665930 ,2,15009,557550 ,2,15010,665915 ,2,15011,45 ,2,15007,1870 ,2,15008,665925 ,2,15009,45 ,2,15010,665920 ,2,15011,45 ,2,15007,1870 ,2,15008,665980 ,2,15009,45 ,2,15010,665975 ,2,15011,45 ,2,15007,1870 ,2,15008,647230 ,2,15009,45 ,2,15010,665985 ,2,15011,45 ,2,15007,1870 ,2,15008,647225 ,2,15009,45 ,2,15010,666000 ,2,15011,45 ,2,15007,1870 ,2,15008,647235 ,2,15009,45 ,2,15010,666005 ,2,15011,45 ,2,15007,1870 ,2,15008,647240 ,2,15009,45 ,2,15010,666010 ,2,15011,45 ,2,15007,1870 ,2,15008,647220 ,2,15009,45 ,2,15010,666015 ,2,15011,45 ,2,15007,1870 ,2,15008,643550 ,2,15009,45 ,2,15010,666035 ,2,15011,45 ,2,15007,1870 ,2,15008,666045 ,2,15009,45 ,2,15010,666040 ,2,15011,45 ,2,15007,1870 ,2,15008,666055 ,2,15009,45 ,2,15010,666050 ,2,15011,45 ,2,15007,1870 ,2,15008,647915 ,2,15009,45 ,2,15010,666060 ,2,15011,45 ,2,15007,1870 ,2,15008,666070 ,2,15009,45 ,2,15010,666065 ,2,15011,45 ,2,15007,1870 ,2,15008,647585 ,2,15009,45 ,2,15010,666090 ,2,15011,45 ,2,15007,1870 ,2,15008,666100 ,2,15009,45 ,2,15010,666095 ,2,15011,45 ,2,15007,1870 ,2,15008,647245 ,2,15009,45 ,2,15010,666105 ,2,15011,45 ,2,15007,1870 ,2,15008,647595 ,2,15009,45 ,2,15010,666115 ,2,15011,45 ,2,15007,1870 ,2,15008,647590 ,2,15009,45 ,2,15010,666120 ,2,15011,45 ,2,15007,1870 ,2,15008,647920 ,2,15009,45 ,2,15010,666130 ,2,15011,45 ,2,15007,1870 ,2,15008,647425 ,2,15009,45 ,2,15010,666150 ,2,15011,45 ,2,15007,1870 ,2,15008,647420 ,2,15009,45 ,2,15010,666155 ,2,15011,45 ,2,15007,1870 ,2,15008,647270 ,2,15009,45 ,2,15010,666160 ,2,15011,45 ,2,15007,1870 ,2,15008,647795 ,2,15009,45 ,2,15010,666165 ,2,15011,45 ,2,15007,1870 ,2,15008,650715 ,2,15009,45 ,2,15010,666175 ,2,15011,45 ,2,15007,1870 ,2,15008,647810 ,2,15009,45 ,2,15010,666180 ,2,15011,45 ,2,15007,1870 ,2,15008,666190 ,2,15009,45 ,2,15010,666185 ,2,15011,45 ,2,15007,1870 ,2,15008,647325 ,2,15009,45 ,2,15010,666200 ,2,15011,45 ,2,15007,1870 ,2,15008,647025 ,2,15009,45 ,2,15010,666205 ,2,15011,45 ,2,15007,1870 ,2,15008,666215 ,2,15009,45 ,2,15010,666210 ,2,15011,45 ,2,15007,1870 ,2,15008,647540 ,2,15009,45 ,2,15010,666220 ,2,15011,45 ,2,15007,1870 ,2,15008,647450 ,2,15009,45 ,2,15010,666225 ,2,15011,45 ,2,15007,1870 ,2,15008,619705 ,2,15009,45 ,2,15010,666230 ,2,15011,45 ,2,15007,1870 ,2,15008,666280 ,2,15009,45 ,2,15010,666235 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666285 ,2,15011,224425 ,2,15007,1870 ,2,15008,666295 ,2,15009,45 ,2,15010,666290 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666300 ,2,15011,224455 ,2,15007,1870 ,2,15008,636575 ,2,15009,557560 ,2,15010,666305 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,549775 ,2,15010,666310 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666315 ,2,15011,224465 ,2,15007,1870 ,2,15008,615210 ,2,15009,557575 ,2,15010,666340 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666350 ,2,15011,224500 ,2,15007,1870 ,2,15008,636575 ,2,15009,554500 ,2,15010,666355 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,643130 ,2,15011,224510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666365 ,2,15011,224520 ,2,15007,1870 ,2,15008,660810 ,2,15009,45 ,2,15010,660805 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557380 ,2,15010,666370 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666375 ,2,15011,224530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666380 ,2,15011,224540 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641450 ,2,15011,224550 ,2,15007,1870 ,2,15008,625385 ,2,15009,547025 ,2,15010,666410 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666415 ,2,15011,224560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666420 ,2,15011,224570 ,2,15007,1870 ,2,15008,615175 ,2,15009,544150 ,2,15010,666425 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664340 ,2,15011,224600 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666435 ,2,15011,224610 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666440 ,2,15011,224620 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,626900 ,2,15011,224630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656440 ,2,15011,224640 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666445 ,2,15011,224650 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666450 ,2,15011,224660 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666475 ,2,15011,224670 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666480 ,2,15011,224700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666485 ,2,15011,224710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666490 ,2,15011,224720 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666495 ,2,15011,224730 ,2,15007,1870 ,2,15008,615310 ,2,15009,557450 ,2,15010,666500 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663825 ,2,15011,224745 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666505 ,2,15011,224755 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666510 ,2,15011,224765 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666520 ,2,15011,224775 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666520 ,2,15011,224830 ,2,15007,1870 ,2,15008,615310 ,2,15009,546250 ,2,15010,666525 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,546830 ,2,15010,664770 ,2,15011,45 ,2,15007,1870 ,2,15008,618860 ,2,15009,549505 ,2,15010,664770 ,2,15011,45 ,2,15007,1870 ,2,15008,647280 ,2,15009,45 ,2,15010,666530 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666535 ,2,15011,224850 ,2,15007,1870 ,2,15008,615310 ,2,15009,557380 ,2,15010,666540 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666545 ,2,15011,224860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666550 ,2,15011,224870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666555 ,2,15011,224880 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663135 ,2,15011,224890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666585 ,2,15011,224915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642535 ,2,15011,224925 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666590 ,2,15011,224935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666595 ,2,15011,224945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640835 ,2,15011,224955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614590 ,2,15011,224965 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666600 ,2,15011,224975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666605 ,2,15011,224985 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665030 ,2,15011,225020 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666610 ,2,15011,225030 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666615 ,2,15011,225040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666620 ,2,15011,225050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666640 ,2,15011,225060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666640 ,2,15011,225070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666645 ,2,15011,225080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640080 ,2,15011,225090 ,2,15007,1870 ,2,15008,615210 ,2,15009,557785 ,2,15010,615935 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,225115 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666650 ,2,15011,225125 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666655 ,2,15011,225135 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666655 ,2,15011,225145 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666660 ,2,15011,225155 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666660 ,2,15011,225165 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666665 ,2,15011,225175 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632055 ,2,15011,225185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666670 ,2,15011,225235 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663270 ,2,15011,225245 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,225255 ,2,15007,1870 ,2,15008,647525 ,2,15009,45 ,2,15010,666675 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666695 ,2,15011,225265 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666700 ,2,15011,225295 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628380 ,2,15011,225305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666705 ,2,15011,225315 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666710 ,2,15011,225335 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666715 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666720 ,2,15011,225345 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666720 ,2,15011,225355 ,2,15007,1870 ,2,15008,624845 ,2,15009,45 ,2,15010,666725 ,2,15011,45 ,2,15007,1870 ,2,15008,617215 ,2,15009,544710 ,2,15010,666730 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666750 ,2,15011,225365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666755 ,2,15011,225375 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666760 ,2,15011,225385 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666765 ,2,15011,225405 ,2,15007,1870 ,2,15008,614835 ,2,15009,544150 ,2,15010,666770 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666760 ,2,15011,225445 ,2,15007,1870 ,2,15008,616980 ,2,15009,557585 ,2,15010,666775 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666780 ,2,15011,225465 ,2,15007,1870 ,2,15008,615275 ,2,15009,555340 ,2,15010,666785 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629110 ,2,15011,225475 ,2,15007,1870 ,2,15008,615275 ,2,15009,557765 ,2,15010,615580 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666830 ,2,15011,225485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666835 ,2,15011,225495 ,2,15007,1870 ,2,15008,615210 ,2,15009,548170 ,2,15010,666840 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666845 ,2,15011,224840 ,2,15007,1870 ,2,15008,660905 ,2,15009,45 ,2,15010,660900 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666850 ,2,15011,225505 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666855 ,2,15011,225515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666860 ,2,15011,225545 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666865 ,2,15011,225555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666880 ,2,15011,225565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666885 ,2,15011,225575 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666890 ,2,15011,225590 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629985 ,2,15011,225600 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664305 ,2,15011,225610 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666895 ,2,15011,225620 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622435 ,2,15011,225645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666910 ,2,15011,225655 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666915 ,2,15011,225665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666920 ,2,15011,225675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,643135 ,2,15011,225700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666925 ,2,15011,225710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666925 ,2,15011,225720 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666950 ,2,15011,225730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666955 ,2,15011,225770 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666960 ,2,15011,225790 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666965 ,2,15011,225800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666980 ,2,15011,225815 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666985 ,2,15011,225825 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666990 ,2,15011,225835 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,666995 ,2,15011,225845 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667020 ,2,15011,225875 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667020 ,2,15011,225885 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,651215 ,2,15011,225895 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667025 ,2,15011,225905 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667030 ,2,15011,225920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667035 ,2,15011,225930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667030 ,2,15011,225940 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,639945 ,2,15011,225950 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667040 ,2,15011,225970 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667040 ,2,15011,225980 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667045 ,2,15011,225990 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667050 ,2,15011,226000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667055 ,2,15011,226015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667075 ,2,15011,226025 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667080 ,2,15011,226035 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667085 ,2,15011,226045 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667090 ,2,15011,226080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637260 ,2,15011,226090 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667105 ,2,15011,226100 ,2,15007,1870 ,2,15008,616980 ,2,15009,551235 ,2,15010,667110 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667115 ,2,15011,226110 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667120 ,2,15011,226120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641870 ,2,15011,226130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667140 ,2,15011,226140 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661335 ,2,15011,226150 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667145 ,2,15011,226185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667150 ,2,15011,226195 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667155 ,2,15011,226205 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667170 ,2,15011,226215 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667175 ,2,15011,226230 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667180 ,2,15011,226240 ,2,15007,1870 ,2,15008,651925 ,2,15009,552490 ,2,15010,667185 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628655 ,2,15011,226250 ,2,15007,1870 ,2,15008,630080 ,2,15009,45 ,2,15010,630070 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667200 ,2,15011,226260 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661350 ,2,15011,226295 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667205 ,2,15011,226305 ,2,15007,1870 ,2,15008,618860 ,2,15009,545855 ,2,15010,667210 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667215 ,2,15011,226315 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667220 ,2,15011,225455 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664375 ,2,15011,226325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667225 ,2,15011,226350 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614255 ,2,15011,226360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667230 ,2,15011,226370 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,664570 ,2,15011,226380 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667235 ,2,15011,226410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667275 ,2,15011,226420 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667280 ,2,15011,226430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667285 ,2,15011,224820 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656830 ,2,15011,226440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667290 ,2,15011,225395 ,2,15007,1870 ,2,15008,615275 ,2,15009,554715 ,2,15010,667300 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557760 ,2,15010,667305 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667310 ,2,15011,226460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667315 ,2,15011,226470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667340 ,2,15011,226480 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667345 ,2,15011,226490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667350 ,2,15011,226520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667350 ,2,15011,226530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667355 ,2,15011,226540 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667365 ,2,15011,226550 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667365 ,2,15011,226565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667370 ,2,15011,226575 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667375 ,2,15011,226585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667375 ,2,15011,226595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667380 ,2,15011,226640 ,2,15007,1870 ,2,15008,626250 ,2,15009,45 ,2,15010,626245 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667400 ,2,15011,226650 ,2,15007,1870 ,2,15008,646855 ,2,15009,45 ,2,15010,667405 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667410 ,2,15011,226660 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663050 ,2,15011,226670 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667415 ,2,15011,226685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667425 ,2,15011,226695 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667430 ,2,15011,226705 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667435 ,2,15011,226715 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640830 ,2,15011,226735 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667440 ,2,15011,226745 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667440 ,2,15011,226755 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667475 ,2,15011,226765 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661305 ,2,15011,226775 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667480 ,2,15011,226785 ,2,15007,1870 ,2,15008,647290 ,2,15009,45 ,2,15010,667485 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667490 ,2,15011,226795 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667495 ,2,15011,226805 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667495 ,2,15011,226830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667500 ,2,15011,226840 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667500 ,2,15011,226850 ,2,15007,1870 ,2,15008,665025 ,2,15009,45 ,2,15010,665020 ,2,15011,45 ,2,15007,1870 ,2,15008,617510 ,2,15009,544710 ,2,15010,667505 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667510 ,2,15011,226860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667525 ,2,15011,226870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667530 ,2,15011,226880 ,2,15007,1870 ,2,15008,665845 ,2,15009,45 ,2,15010,665840 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,226890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667535 ,2,15011,226900 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667540 ,2,15011,226920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667550 ,2,15011,226930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667555 ,2,15011,226940 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667560 ,2,15011,226950 ,2,15007,1870 ,2,15008,618885 ,2,15009,45 ,2,15010,667565 ,2,15011,45 ,2,15007,1870 ,2,15008,643085 ,2,15009,550500 ,2,15010,643080 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,651300 ,2,15011,226960 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667590 ,2,15011,226970 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667595 ,2,15011,226980 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667600 ,2,15011,226990 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634390 ,2,15011,227025 ,2,15007,1870 ,2,15008,665855 ,2,15009,45 ,2,15010,665850 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,555265 ,2,15010,667605 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667610 ,2,15011,227035 ,2,15007,1870 ,2,15008,615275 ,2,15009,557405 ,2,15010,667615 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667620 ,2,15011,227045 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667625 ,2,15011,227055 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667650 ,2,15011,227065 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667655 ,2,15011,227075 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667660 ,2,15011,227085 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667665 ,2,15011,227095 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,227135 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,227145 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667685 ,2,15011,227155 ,2,15007,1870 ,2,15008,615275 ,2,15009,546780 ,2,15010,667690 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667695 ,2,15011,227165 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667700 ,2,15011,227180 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667700 ,2,15011,227190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667710 ,2,15011,227200 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667715 ,2,15011,227210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667720 ,2,15011,227260 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667725 ,2,15011,227270 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667730 ,2,15011,227280 ,2,15007,1870 ,2,15008,629025 ,2,15009,45 ,2,15010,629020 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667735 ,2,15011,227290 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661655 ,2,15011,227305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667740 ,2,15011,227315 ,2,15007,1870 ,2,15008,647275 ,2,15009,45 ,2,15010,667745 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,227325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667775 ,2,15011,227335 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667780 ,2,15011,227355 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667785 ,2,15011,227365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667790 ,2,15011,227375 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667790 ,2,15011,227385 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667795 ,2,15011,227395 ,2,15007,1870 ,2,15008,627185 ,2,15009,45 ,2,15010,667800 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667805 ,2,15011,227405 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667810 ,2,15011,227415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667845 ,2,15011,227425 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667850 ,2,15011,227480 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667855 ,2,15011,227490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667860 ,2,15011,227500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667860 ,2,15011,227510 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667875 ,2,15011,227520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667880 ,2,15011,227530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667885 ,2,15011,227540 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667890 ,2,15011,227550 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667910 ,2,15011,227575 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667915 ,2,15011,227585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667915 ,2,15011,227595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667920 ,2,15011,227605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615075 ,2,15011,227615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667925 ,2,15011,227625 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667925 ,2,15011,227635 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667930 ,2,15011,227645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667935 ,2,15011,227680 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667935 ,2,15011,227690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667940 ,2,15011,227700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667945 ,2,15011,227710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667955 ,2,15011,227725 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667960 ,2,15011,227735 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646025 ,2,15011,227745 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667965 ,2,15011,227755 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667965 ,2,15011,227780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667970 ,2,15011,227790 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667980 ,2,15011,227800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634000 ,2,15011,227810 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667985 ,2,15011,227830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667990 ,2,15011,227840 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,667995 ,2,15011,227850 ,2,15007,1870 ,2,15008,660875 ,2,15009,45 ,2,15010,660870 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668015 ,2,15011,227860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668020 ,2,15011,227890 ,2,15007,1870 ,2,15008,643075 ,2,15009,45 ,2,15010,643065 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668025 ,2,15011,227900 ,2,15007,1870 ,2,15008,647485 ,2,15009,45 ,2,15010,668030 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634145 ,2,15011,227910 ,2,15007,1870 ,2,15008,616980 ,2,15009,557570 ,2,15010,668035 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668040 ,2,15011,227920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668045 ,2,15011,227930 ,2,15007,1870 ,2,15008,655515 ,2,15009,543900 ,2,15010,668050 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668095 ,2,15011,227940 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668100 ,2,15011,227950 ,2,15007,1870 ,2,15008,665880 ,2,15009,45 ,2,15010,665875 ,2,15011,45 ,2,15007,1870 ,2,15008,636575 ,2,15009,45 ,2,15010,668105 ,2,15011,45 ,2,15007,1870 ,2,15008,615275 ,2,15009,557280 ,2,15010,668110 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668120 ,2,15011,225780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668125 ,2,15011,227960 ,2,15007,1870 ,2,15008,631170 ,2,15009,45 ,2,15010,631155 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668130 ,2,15011,228020 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668135 ,2,15011,228030 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668150 ,2,15011,228040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668150 ,2,15011,228050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668155 ,2,15011,228060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668160 ,2,15011,228070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668160 ,2,15011,228080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668165 ,2,15011,228090 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,668175 ,2,15011,228125 ,2,15007,1870 ,2,15008,614160 ,2,15009,45 ,2,15010,668190 ,2,15011,45 ,2,15007,408240 ,2,15008,628415 ,2,15009,45 ,2,15010,668205 ,2,15011,45 ,2,15007,1870 ,2,15008,628415 ,2,15009,45 ,2,15010,668205 ,2,15011,45 ,2,15007,408245 ,2,15008,614405 ,2,15009,45 ,2,15010,668215 ,2,15011,45 ,2,15007,408250 ,2,15008,614405 ,2,15009,45 ,2,15010,668215 ,2,15011,45 ,2,15007,408255 ,2,15008,668225 ,2,15009,45 ,2,15010,668220 ,2,15011,45 ,2,15007,408270 ,2,15008,668235 ,2,15009,45 ,2,15010,668230 ,2,15011,45 ,2,15007,408275 ,2,15008,668270 ,2,15009,45 ,2,15010,668240 ,2,15011,45 ,2,15007,1870 ,2,15008,668280 ,2,15009,45 ,2,15010,668275 ,2,15011,45 ,2,15007,408280 ,2,15008,668280 ,2,15009,45 ,2,15010,668285 ,2,15011,45 ,2,15007,408285 ,2,15008,668280 ,2,15009,45 ,2,15010,668285 ,2,15011,45 ,2,15007,1870 ,2,15008,642630 ,2,15009,45 ,2,15010,668290 ,2,15011,45 ,2,15007,1870 ,2,15008,614600 ,2,15009,45 ,2,15010,668295 ,2,15011,45 ,2,15007,1870 ,2,15008,668305 ,2,15009,45 ,2,15010,668300 ,2,15011,45 ,2,15007,408385 ,2,15008,668305 ,2,15009,45 ,2,15010,668325 ,2,15011,45 ,2,15007,408400 ,2,15008,668305 ,2,15009,45 ,2,15010,668325 ,2,15011,45 ,2,15007,1870 ,2,15008,614645 ,2,15009,45 ,2,15010,668330 ,2,15011,45 ,2,15007,1870 ,2,15008,614645 ,2,15009,45 ,2,15010,668330 ,2,15011,45 ,2,15007,1870 ,2,15008,628630 ,2,15009,45 ,2,15010,628625 ,2,15011,45 ,2,15007,1870 ,2,15008,618830 ,2,15009,45 ,2,15010,668335 ,2,15011,45 ,2,15007,1870 ,2,15008,618830 ,2,15009,45 ,2,15010,668335 ,2,15011,45 ,2,15007,1870 ,2,15008,651385 ,2,15009,45 ,2,15010,668340 ,2,15011,45 ,2,15007,408460 ,2,15008,631085 ,2,15009,45 ,2,15010,668345 ,2,15011,45 ,2,15007,1860 ,2,15008,643500 ,2,15009,45 ,2,15010,668350 ,2,15011,45 ,2,15007,1860 ,2,15008,643500 ,2,15009,45 ,2,15010,668355 ,2,15011,45 ,2,15007,1860 ,2,15008,643500 ,2,15009,45 ,2,15010,668355 ,2,15011,45 ,2,15007,1870 ,2,15008,613220 ,2,15009,543485 ,2,15010,613190 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,56290 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,56365 ,2,15007,1870 ,2,15008,613395 ,2,15009,543595 ,2,15010,613380 ,2,15011,45 ,2,15007,1870 ,2,15008,613515 ,2,15009,543625 ,2,15010,613410 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613430 ,2,15011,56480 ,2,15007,1870 ,2,15008,613440 ,2,15009,543635 ,2,15010,613460 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613470 ,2,15011,56490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,56585 ,2,15007,1870 ,2,15008,615210 ,2,15009,543655 ,2,15010,613540 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,56805 ,2,15007,1870 ,2,15008,613840 ,2,15009,543760 ,2,15010,613790 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,57805 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614210 ,2,15011,58065 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614255 ,2,15011,58235 ,2,15007,1870 ,2,15008,614575 ,2,15009,543925 ,2,15010,614520 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613470 ,2,15011,58875 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614550 ,2,15011,58915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614555 ,2,15011,58945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614590 ,2,15011,59295 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,59820 ,2,15007,1870 ,2,15008,614875 ,2,15009,544020 ,2,15010,614840 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615005 ,2,15011,60185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615075 ,2,15011,60235 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,60315 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,60810 ,2,15007,1870 ,2,15008,615365 ,2,15009,544305 ,2,15010,615355 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,61025 ,2,15007,1870 ,2,15008,616165 ,2,15009,544345 ,2,15010,615425 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,61400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,61590 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,61710 ,2,15007,1870 ,2,15008,615665 ,2,15009,544455 ,2,15010,615650 ,2,15011,45 ,2,15007,1870 ,2,15008,615760 ,2,15009,544470 ,2,15010,615720 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,63080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,63530 ,2,15007,1870 ,2,15008,615310 ,2,15009,544700 ,2,15010,616535 ,2,15011,45 ,2,15007,1870 ,2,15008,615310 ,2,15009,544705 ,2,15010,616535 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,64710 ,2,15007,1870 ,2,15008,616795 ,2,15009,544750 ,2,15010,616725 ,2,15011,45 ,2,15007,1870 ,2,15008,617135 ,2,15009,544985 ,2,15010,617125 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617260 ,2,15011,65610 ,2,15007,1870 ,2,15008,617345 ,2,15009,545060 ,2,15010,617300 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,65720 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,65765 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,65785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617655 ,2,15011,66650 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,66835 ,2,15007,1870 ,2,15008,618620 ,2,15009,545330 ,2,15010,617825 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617870 ,2,15011,67010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,67640 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618220 ,2,15011,68070 ,2,15007,1870 ,2,15008,616980 ,2,15009,545520 ,2,15010,618300 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,68500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618115 ,2,15011,68530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618555 ,2,15011,68565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618175 ,2,15011,69010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618225 ,2,15011,69040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618570 ,2,15011,69105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618285 ,2,15011,69125 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,69300 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618635 ,2,15011,69320 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,69350 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618670 ,2,15011,69435 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,69575 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618695 ,2,15011,69595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,69795 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,70305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618945 ,2,15011,70325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618980 ,2,15011,70375 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619035 ,2,15011,70455 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619055 ,2,15011,70555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,70575 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,70725 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619205 ,2,15011,70785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619055 ,2,15011,71365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619285 ,2,15011,71385 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619295 ,2,15011,71490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619300 ,2,15011,71525 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619305 ,2,15011,71575 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,71595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619315 ,2,15011,71640 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619315 ,2,15011,71710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,71765 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619380 ,2,15011,72015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619390 ,2,15011,72275 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619380 ,2,15011,72550 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619495 ,2,15011,73030 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,73415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619570 ,2,15011,73445 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619575 ,2,15011,73465 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,73500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619600 ,2,15011,73530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,73730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619680 ,2,15011,73760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,73805 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619305 ,2,15011,73855 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,73910 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613615 ,2,15011,73955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619380 ,2,15011,76720 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619380 ,2,15011,77155 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,78310 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619205 ,2,15011,78360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,78955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614590 ,2,15011,80190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614550 ,2,15011,81120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614555 ,2,15011,81165 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,621400 ,2,15011,81185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,620885 ,2,15011,81240 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,81340 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,621480 ,2,15011,81410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,621400 ,2,15011,81945 ,2,15007,1870 ,2,15008,622180 ,2,15009,546315 ,2,15010,622160 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622345 ,2,15011,82800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622350 ,2,15011,82850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622370 ,2,15011,82920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622435 ,2,15011,83110 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,83290 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618865 ,2,15011,83340 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622655 ,2,15011,83650 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,83705 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,622670 ,2,15011,83935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,84280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,84365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,84390 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,84505 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,84525 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,84570 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,84665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,84785 ,2,15007,1870 ,2,15008,622780 ,2,15009,546490 ,2,15010,622885 ,2,15011,45 ,2,15007,1870 ,2,15008,623940 ,2,15009,546520 ,2,15010,622970 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,84965 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,84995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,85210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,85240 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,85435 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,85455 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,85645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,85755 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,85865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,86000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,86105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,86715 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,86870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,86975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,87150 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,87190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624455 ,2,15011,88565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624525 ,2,15011,88650 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624620 ,2,15011,88750 ,2,15007,1870 ,2,15008,622300 ,2,15009,546880 ,2,15010,624680 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624705 ,2,15011,88900 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624730 ,2,15011,88920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,88965 ,2,15007,1870 ,2,15008,624825 ,2,15009,546910 ,2,15010,624790 ,2,15011,45 ,2,15007,1870 ,2,15008,624885 ,2,15009,546955 ,2,15010,624850 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,89005 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,89075 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,89310 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89330 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89390 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89495 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625220 ,2,15011,89595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,89615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,89645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,89695 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89725 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,89850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,90005 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625275 ,2,15011,90135 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,90365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,90410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,90515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,90755 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,90785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618690 ,2,15011,91020 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,91350 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618865 ,2,15011,91330 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,91400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618865 ,2,15011,91440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618865 ,2,15011,91500 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624700 ,2,15011,88945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,91630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,91695 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,91785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625795 ,2,15011,91940 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625800 ,2,15011,91960 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625935 ,2,15011,92170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,92190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625950 ,2,15011,92235 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625935 ,2,15011,92430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,625935 ,2,15011,92600 ,2,15007,1870 ,2,15008,626105 ,2,15009,547320 ,2,15010,626085 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,626480 ,2,15011,93760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,94055 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,626780 ,2,15011,94325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,626830 ,2,15011,94485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,626850 ,2,15011,94790 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,626900 ,2,15011,93730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,627045 ,2,15011,95625 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,627060 ,2,15011,95705 ,2,15007,1870 ,2,15008,627360 ,2,15009,547485 ,2,15010,627325 ,2,15011,45 ,2,15007,1870 ,2,15008,627420 ,2,15009,547500 ,2,15010,627410 ,2,15011,45 ,2,15007,1870 ,2,15008,627450 ,2,15009,547510 ,2,15010,627425 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,97070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,97420 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,627910 ,2,15011,97740 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,627910 ,2,15011,97850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,97870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,627910 ,2,15011,97975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,98030 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,100140 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,100245 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628365 ,2,15011,100400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628380 ,2,15011,100465 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,100505 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628390 ,2,15011,100555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628655 ,2,15011,95675 ,2,15007,1870 ,2,15008,628710 ,2,15009,548020 ,2,15010,628670 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628730 ,2,15011,101715 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628730 ,2,15011,101845 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628730 ,2,15011,102090 ,2,15007,1870 ,2,15008,628680 ,2,15009,548055 ,2,15010,628880 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,102890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,102930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,102995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,103030 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628390 ,2,15011,103125 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,103215 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,103310 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628995 ,2,15011,103555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629110 ,2,15011,103810 ,2,15007,1870 ,2,15008,629360 ,2,15009,548105 ,2,15010,629350 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,104285 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629740 ,2,15011,104935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629965 ,2,15011,105825 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629985 ,2,15011,105950 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,106405 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,106785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,107050 ,2,15007,1870 ,2,15008,630555 ,2,15009,548365 ,2,15010,630440 ,2,15011,45 ,2,15007,1870 ,2,15008,630515 ,2,15009,548375 ,2,15010,630505 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,107565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,107615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,107675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,107825 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,107890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,108360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,108430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,108460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,630780 ,2,15011,108520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,630780 ,2,15011,108655 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,630780 ,2,15011,108970 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,109305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,109325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,109465 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,110840 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,110870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628390 ,2,15011,110985 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,111210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111725 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111745 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111790 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,111990 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,112010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,112465 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,112685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,112750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,112780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,112870 ,2,15007,1870 ,2,15008,631810 ,2,15009,548455 ,2,15010,631795 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,113340 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,113370 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632055 ,2,15011,113935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632120 ,2,15011,114010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628390 ,2,15011,115130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632680 ,2,15011,115150 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,115425 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,115485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628365 ,2,15011,115570 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,115860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,115890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632855 ,2,15011,116090 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632855 ,2,15011,116230 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,116435 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,117215 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,117355 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,117415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,117470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,117535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633145 ,2,15011,117685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633160 ,2,15011,117780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,117985 ,2,15007,1870 ,2,15008,633620 ,2,15009,548630 ,2,15010,633570 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,118535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,118565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,118585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,118625 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,118645 ,2,15007,1870 ,2,15008,633675 ,2,15009,548670 ,2,15010,633655 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,118800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,119110 ,2,15007,1870 ,2,15008,633490 ,2,15009,548695 ,2,15010,633900 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,119930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634000 ,2,15011,119950 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,120335 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634120 ,2,15011,120565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634145 ,2,15011,120585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,117265 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,120975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,121000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,121605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,121745 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634390 ,2,15011,122355 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634655 ,2,15011,122735 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634685 ,2,15011,122925 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634685 ,2,15011,122955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635055 ,2,15011,123615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635095 ,2,15011,123830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635210 ,2,15011,124130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635055 ,2,15011,124505 ,2,15007,1870 ,2,15008,635395 ,2,15009,548810 ,2,15010,635325 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,124710 ,2,15007,1870 ,2,15008,635580 ,2,15009,548920 ,2,15010,635455 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,124950 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635630 ,2,15011,124995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635815 ,2,15011,125410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635815 ,2,15011,125440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,125890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634145 ,2,15011,125935 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,636325 ,2,15011,126460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,636325 ,2,15011,126820 ,2,15007,1870 ,2,15008,636200 ,2,15009,549370 ,2,15010,636480 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,636945 ,2,15011,127825 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,128465 ,2,15007,1870 ,2,15008,637080 ,2,15009,549680 ,2,15010,637135 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,128690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,636325 ,2,15011,129060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,129110 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637260 ,2,15011,129155 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635815 ,2,15011,129410 ,2,15007,1870 ,2,15008,637335 ,2,15009,549780 ,2,15010,637345 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,635815 ,2,15011,129490 ,2,15007,1870 ,2,15008,637430 ,2,15009,549820 ,2,15010,637415 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637445 ,2,15011,129865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634145 ,2,15011,130265 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,130295 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637660 ,2,15011,130315 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634115 ,2,15011,130360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637665 ,2,15011,130385 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,130785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619380 ,2,15011,131675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,131700 ,2,15007,1870 ,2,15008,638330 ,2,15009,550015 ,2,15010,638205 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638280 ,2,15011,132000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,132330 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,132565 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638385 ,2,15011,132670 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638600 ,2,15011,132895 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629505 ,2,15011,133040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,133110 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,133210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,638660 ,2,15011,133515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,133560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,133715 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,134410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,134430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,134605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,134675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,134765 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,134865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,639945 ,2,15011,122705 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640080 ,2,15011,137440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640080 ,2,15011,137460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640080 ,2,15011,137480 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,639945 ,2,15011,137680 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,137700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,137775 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,137800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,138090 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,140050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,140070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640830 ,2,15011,140130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,140175 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634115 ,2,15011,140195 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,140280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637660 ,2,15011,140300 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637665 ,2,15011,140345 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,640835 ,2,15011,140375 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641070 ,2,15011,140645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,141635 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,112220 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,141685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,143010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,143450 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,143495 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,143540 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,143665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,143865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,143915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,144130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641870 ,2,15011,144280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,144300 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641875 ,2,15011,144355 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642220 ,2,15011,145280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,145485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642165 ,2,15011,145635 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,145720 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628390 ,2,15011,145760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,145875 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,146630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642375 ,2,15011,146655 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634015 ,2,15011,146675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634015 ,2,15011,146710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637665 ,2,15011,146750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634115 ,2,15011,146780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637660 ,2,15011,146820 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642380 ,2,15011,146845 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,146865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642385 ,2,15011,146915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642400 ,2,15011,146945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,147000 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,147035 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642480 ,2,15011,147360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,147380 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642380 ,2,15011,147545 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642375 ,2,15011,147585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642400 ,2,15011,147625 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634015 ,2,15011,147645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634015 ,2,15011,147690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,147800 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642535 ,2,15011,147830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,148050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,148070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,148135 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,148460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,148700 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,148945 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,149365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,147400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637660 ,2,15011,150230 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,150305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642385 ,2,15011,150345 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634015 ,2,15011,150400 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637665 ,2,15011,150430 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,150515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,634115 ,2,15011,150535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,637665 ,2,15011,150560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,150580 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,151115 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,643125 ,2,15011,151420 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618220 ,2,15011,151530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,643130 ,2,15011,151550 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,151605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618220 ,2,15011,151645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,151665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,151775 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,643135 ,2,15011,151895 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,151975 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,152055 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,152755 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,152960 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,153415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,153475 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,153515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,153585 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,153850 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,153870 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,153890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,153910 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,153980 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,154185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,154205 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,154225 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,154245 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628385 ,2,15011,154300 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,154435 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,154720 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,154740 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,154835 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,154855 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,155120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,155690 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,155730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,155750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,155790 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,156010 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,156170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,156240 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,156260 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,156305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,156360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,156555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,156890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,156985 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628390 ,2,15011,157085 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,157140 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,157190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,157210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,157235 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,157455 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,157685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,157925 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,158055 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,644130 ,2,15011,158335 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160060 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160275 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160350 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,160570 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,160950 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,161020 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,161890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,162415 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642165 ,2,15011,162465 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,617760 ,2,15011,162645 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629985 ,2,15011,163095 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629985 ,2,15011,163130 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629985 ,2,15011,163180 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,645760 ,2,15011,163660 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,104660 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,163750 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,163835 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615400 ,2,15011,163980 ,2,15007,1870 ,2,15008,645835 ,2,15009,550930 ,2,15010,645790 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164250 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164315 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164370 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,641450 ,2,15011,164470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164855 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,164925 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,645970 ,2,15011,165120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,627045 ,2,15011,165145 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619525 ,2,15011,165175 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,165360 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,165440 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646025 ,2,15011,165540 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646030 ,2,15011,165580 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646195 ,2,15011,165890 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646295 ,2,15011,165970 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646300 ,2,15011,165995 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,646650 ,2,15011,167000 ,2,15007,1870 ,2,15008,650935 ,2,15009,551285 ,2,15010,650925 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,167635 ,2,15007,1870 ,2,15008,651060 ,2,15009,551315 ,2,15010,650985 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,167665 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,651215 ,2,15011,168040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,651300 ,2,15011,168200 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,168915 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,171710 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,171830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652480 ,2,15011,173845 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652550 ,2,15011,174105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652560 ,2,15011,174190 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652575 ,2,15011,174295 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652585 ,2,15011,174365 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652605 ,2,15011,174460 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652615 ,2,15011,174520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652635 ,2,15011,174615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652665 ,2,15011,174725 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652675 ,2,15011,174805 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652685 ,2,15011,174865 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652695 ,2,15011,174960 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652725 ,2,15011,175040 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652735 ,2,15011,175145 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652755 ,2,15011,175210 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652765 ,2,15011,175305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652790 ,2,15011,175375 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652800 ,2,15011,175475 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652810 ,2,15011,175535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652820 ,2,15011,175605 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652845 ,2,15011,175685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652855 ,2,15011,175770 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652870 ,2,15011,175830 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652900 ,2,15011,175930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652915 ,2,15011,176015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652935 ,2,15011,176105 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652955 ,2,15011,176170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652970 ,2,15011,176250 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652980 ,2,15011,176340 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,652990 ,2,15011,176445 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653030 ,2,15011,176505 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653045 ,2,15011,176595 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653060 ,2,15011,176685 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653085 ,2,15011,176780 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653110 ,2,15011,176840 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653120 ,2,15011,176930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653145 ,2,15011,177015 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653155 ,2,15011,177090 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653165 ,2,15011,177155 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653175 ,2,15011,177245 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653220 ,2,15011,177330 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653235 ,2,15011,177435 ,2,15007,1870 ,2,15008,653575 ,2,15009,551590 ,2,15010,653550 ,2,15011,45 ,2,15007,1870 ,2,15008,653595 ,2,15009,551625 ,2,15010,653580 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653740 ,2,15011,180600 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653785 ,2,15011,180630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,180740 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,180760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653845 ,2,15011,180955 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619055 ,2,15011,181485 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,653870 ,2,15011,181525 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,181730 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619050 ,2,15011,181980 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,182785 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,182920 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,183240 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,183370 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,183695 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,183855 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,184170 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,184310 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,184615 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,184740 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,185080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,185220 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,185530 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,185675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,618870 ,2,15011,187425 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,655005 ,2,15011,187445 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,655010 ,2,15011,187485 ,2,15007,1870 ,2,15008,655130 ,2,15009,552345 ,2,15010,655115 ,2,15011,45 ,2,15007,1870 ,2,15008,654975 ,2,15009,552365 ,2,15010,655170 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,189490 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,190285 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,190425 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,190455 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616550 ,2,15011,190515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628920 ,2,15011,190635 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,190655 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,190675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,190735 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,190860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628365 ,2,15011,191080 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191100 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,191185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191420 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191470 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,628925 ,2,15011,191555 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,194120 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,194280 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,194305 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,194325 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,194655 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,194875 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,642375 ,2,15011,194910 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,633415 ,2,15011,194930 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656440 ,2,15011,195525 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656440 ,2,15011,195545 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,632055 ,2,15011,196265 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,624375 ,2,15011,196515 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,623095 ,2,15011,196535 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656830 ,2,15011,196705 ,2,15007,1870 ,2,15008,657000 ,2,15009,552820 ,2,15010,656990 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657165 ,2,15011,197400 ,2,15007,1870 ,2,15008,618780 ,2,15009,45 ,2,15010,618940 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657360 ,2,15011,197885 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656830 ,2,15011,198760 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657750 ,2,15011,199240 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657810 ,2,15011,199175 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657810 ,2,15011,199410 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,199540 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,657855 ,2,15011,199560 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,200675 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,201230 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,201295 ,2,15007,1870 ,2,15008,659160 ,2,15009,553645 ,2,15010,659155 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,203070 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,614210 ,2,15011,204005 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,659585 ,2,15011,204050 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613350 ,2,15011,204445 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,659680 ,2,15011,204520 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,204550 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,629440 ,2,15011,204725 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,204860 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,619080 ,2,15011,205115 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,616540 ,2,15011,205630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,613275 ,2,15011,206265 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,661200 ,2,15011,209750 ,2,15007,1870 ,2,15008,638435 ,2,15009,555420 ,2,15010,638570 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,615005 ,2,15011,218185 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663935 ,2,15011,219255 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,663940 ,2,15011,219315 ,2,15007,1870 ,2,15008,618780 ,2,15009,556230 ,2,15010,635990 ,2,15011,45 ,2,15007,1870 ,2,15008,632750 ,2,15009,556945 ,2,15010,632745 ,2,15011,45 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,656830 ,2,15011,223630 ,2,15007,1870 ,2,15008,613280 ,2,15009,45 ,2,15010,665365 ,2,15011,223905 ,2,15007,1870 ,2,15008,614160 ,2,15009,45 ,2,15010,668190 ,2,15011,45 ,2,15007,1870 ,2,15008,618780 ,2,15009,547255 ,2,15010,668210 ,2,15011,45 ,2,15007,1870 ,2,15008,642630 ,2,15009,45 ,2,15010,668290 ,2,15011,45 ,2,15007,1870 ,2,15008,614600 ,2,15009,45 ,2,15010,668295 ,2,15011,45 ,2,15007,1870 ,2,14985,562785 ,2,15007,1870 ,2,14985,566815 ,2,15007,1870 ,2,14985,572980 ,2,15007,1870 ,2,14985,573000 ,2,15007,1870 ,2,14985,573030 ,2,15007,1870 ,2,14985,573055 ,2,15007,1870 ,2,14985,576660 ,2,15007,1870 ,2,14985,576675 ,2,15007,1870 ,2,14985,576720 ,2,15007,1870 ,2,14985,588915 ,2,15007,1870 ,2,14985,591040 ,2,15007,1870 ,2,14985,591355 ,2,15007,1870 ,2,14985,591470 ,2,15007,1870 ,2,14985,593700 ,2,15007,1870 ,2,14985,594670 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,56150 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,56160 ,2,15007,1870 ,2,14956,11265 ,2,15010,613145 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,613185 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613195 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,56270 ,2,15007,1870 ,2,14956,6540 ,2,15010,613260 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613265 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613260 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613290 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613290 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613325 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613335 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613340 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,613385 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,613415 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613465 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,56510 ,2,15007,1870 ,2,14956,11265 ,2,15010,613545 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,56815 ,2,15007,1870 ,2,14956,6540 ,2,15010,613590 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613325 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613700 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613705 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,167330 ,2,15010,613720 ,2,15014,600035 ,2,15015,57075 ,2,15007,1870 ,2,14956,167340 ,2,15010,613135 ,2,15014,600035 ,2,15015,57075 ,2,15007,1870 ,2,14956,6880 ,2,15010,613780 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613785 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613785 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613795 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613805 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613810 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,167330 ,2,15010,613720 ,2,15014,600035 ,2,15015,57095 ,2,15007,1870 ,2,14956,167340 ,2,15010,613135 ,2,15014,600035 ,2,15015,57095 ,2,15007,1870 ,2,14956,167420 ,2,15010,613850 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,167430 ,2,15010,613855 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,167440 ,2,15010,613860 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,167450 ,2,15010,613865 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,167440 ,2,15010,613895 ,2,15014,600035 ,2,15015,57085 ,2,15007,1870 ,2,14956,167450 ,2,15010,613900 ,2,15014,600035 ,2,15015,57085 ,2,15007,1870 ,2,14956,167420 ,2,15010,613905 ,2,15014,600035 ,2,15015,57085 ,2,15007,1870 ,2,14956,167430 ,2,15010,613910 ,2,15014,600035 ,2,15015,57085 ,2,15007,1870 ,2,14956,6880 ,2,15010,613970 ,2,15014,600035 ,2,15015,57240 ,2,15007,1870 ,2,14956,11265 ,2,15010,614155 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614190 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,614285 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,614525 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,614535 ,2,15014,600035 ,2,15015,58830 ,2,15007,1870 ,2,14956,6880 ,2,15010,614660 ,2,15014,600035 ,2,15015,59665 ,2,15007,1870 ,2,14956,6880 ,2,15010,614670 ,2,15014,600035 ,2,15015,59705 ,2,15007,1870 ,2,14956,11265 ,2,15010,614820 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,614845 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,60080 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,60135 ,2,15007,1870 ,2,14956,11265 ,2,15010,614905 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,614950 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,615010 ,2,15014,600035 ,2,15015,60175 ,2,15007,1870 ,2,14956,6880 ,2,15010,615035 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615085 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,60265 ,2,15007,1870 ,2,14956,11265 ,2,15010,615115 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615155 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613905 ,2,15014,600035 ,2,15015,56760 ,2,15007,1870 ,2,14956,6540 ,2,15010,613910 ,2,15014,600035 ,2,15015,56760 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,60540 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,60550 ,2,15007,1870 ,2,14956,6880 ,2,15010,613905 ,2,15014,600035 ,2,15015,56260 ,2,15007,1870 ,2,14956,6540 ,2,15010,613910 ,2,15014,600035 ,2,15015,56260 ,2,15007,1870 ,2,14956,6880 ,2,15010,613905 ,2,15014,600035 ,2,15015,60865 ,2,15007,1870 ,2,14956,6540 ,2,15010,613910 ,2,15014,600035 ,2,15015,60865 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,60905 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,60925 ,2,15007,1870 ,2,14956,6540 ,2,15010,613265 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,615340 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,615340 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,615360 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615405 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615430 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615460 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,61090 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,61170 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,61360 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,61555 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,61630 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,61860 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,61905 ,2,15007,1870 ,2,14956,172275 ,2,15010,615655 ,2,15014,559095 ,2,15015,45 ,2,15007,1870 ,2,14956,172275 ,2,15010,615725 ,2,15014,558275 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,62995 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,63250 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,63270 ,2,15007,1870 ,2,14956,6880 ,2,15010,616040 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,616065 ,2,15014,600035 ,2,15015,63540 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,63845 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,63865 ,2,15007,1870 ,2,14956,6880 ,2,15010,616280 ,2,15014,559535 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,616365 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616605 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616610 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616620 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616625 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616635 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616650 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616655 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174790 ,2,15010,613720 ,2,15014,600035 ,2,15015,64820 ,2,15007,1870 ,2,14956,174810 ,2,15010,613135 ,2,15014,600035 ,2,15015,64820 ,2,15007,1870 ,2,14956,174820 ,2,15010,616675 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174830 ,2,15010,616680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616685 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616690 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616730 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616735 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174790 ,2,15010,613720 ,2,15014,600035 ,2,15015,64830 ,2,15007,1870 ,2,14956,174810 ,2,15010,613135 ,2,15014,600035 ,2,15015,64830 ,2,15007,1870 ,2,14956,3390 ,2,15010,616735 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616750 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174955 ,2,15010,613895 ,2,15014,600035 ,2,15015,64770 ,2,15007,1870 ,2,14956,174965 ,2,15010,613900 ,2,15014,600035 ,2,15015,64770 ,2,15007,1870 ,2,14956,3390 ,2,15010,613905 ,2,15014,600035 ,2,15015,64770 ,2,15007,1870 ,2,14956,11200 ,2,15010,613910 ,2,15014,600035 ,2,15015,64770 ,2,15007,1870 ,2,14956,174790 ,2,15010,613720 ,2,15014,600035 ,2,15015,65040 ,2,15007,1870 ,2,14956,174810 ,2,15010,613135 ,2,15014,600035 ,2,15015,65040 ,2,15007,1870 ,2,14956,3390 ,2,15010,616815 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616820 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616820 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616860 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616865 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616860 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616875 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,613415 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616815 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616990 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616995 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616995 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617015 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617015 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617040 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617045 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617040 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617055 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174790 ,2,15010,613720 ,2,15014,600035 ,2,15015,65245 ,2,15007,1870 ,2,14956,174810 ,2,15010,613135 ,2,15014,600035 ,2,15015,65245 ,2,15007,1870 ,2,14956,3390 ,2,15010,617055 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617065 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616750 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616620 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617045 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,617295 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,65685 ,2,15007,1870 ,2,14956,11265 ,2,15010,617305 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,65730 ,2,15007,1870 ,2,14956,6540 ,2,15010,613340 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613590 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613905 ,2,15014,600035 ,2,15015,65695 ,2,15007,1870 ,2,14956,6540 ,2,15010,613910 ,2,15014,600035 ,2,15015,65695 ,2,15007,1870 ,2,14956,11265 ,2,15010,617365 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,65825 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,65860 ,2,15007,1870 ,2,14956,6880 ,2,15010,617485 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617500 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617505 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617505 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617530 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617535 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617530 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617545 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174790 ,2,15010,613720 ,2,15014,600035 ,2,15015,66390 ,2,15007,1870 ,2,14956,174810 ,2,15010,613135 ,2,15014,600035 ,2,15015,66390 ,2,15007,1870 ,2,14956,3390 ,2,15010,617545 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617555 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,613185 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617595 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617535 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,617830 ,2,15014,600020 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616690 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616675 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617925 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617930 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617940 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,615035 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617955 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617955 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,618000 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617930 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617925 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,618045 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616675 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,618045 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,618100 ,2,15014,600035 ,2,15015,67530 ,2,15007,1870 ,2,14956,12655 ,2,15010,618105 ,2,15014,600035 ,2,15015,67530 ,2,15007,1870 ,2,14956,12655 ,2,15010,618185 ,2,15014,600035 ,2,15015,67990 ,2,15007,1870 ,2,14956,177125 ,2,15010,618190 ,2,15014,600035 ,2,15015,68000 ,2,15007,1870 ,2,14956,177140 ,2,15010,618195 ,2,15014,600035 ,2,15015,68000 ,2,15007,1870 ,2,14956,12655 ,2,15010,618200 ,2,15014,600035 ,2,15015,68000 ,2,15007,1870 ,2,14956,6880 ,2,15010,618235 ,2,15014,600035 ,2,15015,68080 ,2,15007,1870 ,2,14956,6880 ,2,15010,618290 ,2,15014,600035 ,2,15015,68190 ,2,15007,1870 ,2,14956,12655 ,2,15010,618365 ,2,15014,600035 ,2,15015,68265 ,2,15007,1870 ,2,14956,177125 ,2,15010,618375 ,2,15014,600035 ,2,15015,68285 ,2,15007,1870 ,2,14956,177140 ,2,15010,618400 ,2,15014,600035 ,2,15015,68285 ,2,15007,1870 ,2,14956,6880 ,2,15010,618405 ,2,15014,600035 ,2,15015,68335 ,2,15007,1870 ,2,14956,12655 ,2,15010,618410 ,2,15014,600035 ,2,15015,68335 ,2,15007,1870 ,2,14956,12655 ,2,15010,618425 ,2,15014,600035 ,2,15015,68375 ,2,15007,1870 ,2,14956,177125 ,2,15010,618435 ,2,15014,600035 ,2,15015,68425 ,2,15007,1870 ,2,14956,177140 ,2,15010,618440 ,2,15014,600035 ,2,15015,68425 ,2,15007,1870 ,2,14956,12655 ,2,15010,618465 ,2,15014,600035 ,2,15015,68425 ,2,15007,1870 ,2,14956,6880 ,2,15010,618470 ,2,15014,600035 ,2,15015,68455 ,2,15007,1870 ,2,14956,12655 ,2,15010,618475 ,2,15014,600035 ,2,15015,68455 ,2,15007,1870 ,2,14956,6880 ,2,15010,618100 ,2,15014,600035 ,2,15015,68600 ,2,15007,1870 ,2,14956,12655 ,2,15010,618105 ,2,15014,600035 ,2,15015,68600 ,2,15007,1870 ,2,14956,177125 ,2,15010,618190 ,2,15014,600035 ,2,15015,68670 ,2,15007,1870 ,2,14956,177140 ,2,15010,618195 ,2,15014,600035 ,2,15015,68670 ,2,15007,1870 ,2,14956,12655 ,2,15010,618200 ,2,15014,600035 ,2,15015,68670 ,2,15007,1870 ,2,14956,12655 ,2,15010,618185 ,2,15014,600035 ,2,15015,68715 ,2,15007,1870 ,2,14956,6880 ,2,15010,618235 ,2,15014,600035 ,2,15015,68725 ,2,15007,1870 ,2,14956,6880 ,2,15010,618290 ,2,15014,600035 ,2,15015,68755 ,2,15007,1870 ,2,14956,12655 ,2,15010,618365 ,2,15014,600035 ,2,15015,68765 ,2,15007,1870 ,2,14956,177125 ,2,15010,618375 ,2,15014,600035 ,2,15015,68785 ,2,15007,1870 ,2,14956,177140 ,2,15010,618400 ,2,15014,600035 ,2,15015,68785 ,2,15007,1870 ,2,14956,6880 ,2,15010,618405 ,2,15014,600035 ,2,15015,68835 ,2,15007,1870 ,2,14956,12655 ,2,15010,618410 ,2,15014,600035 ,2,15015,68835 ,2,15007,1870 ,2,14956,12655 ,2,15010,618425 ,2,15014,600035 ,2,15015,68875 ,2,15007,1870 ,2,14956,177125 ,2,15010,618435 ,2,15014,600035 ,2,15015,68920 ,2,15007,1870 ,2,14956,177140 ,2,15010,618440 ,2,15014,600035 ,2,15015,68920 ,2,15007,1870 ,2,14956,12655 ,2,15010,618465 ,2,15014,600035 ,2,15015,68920 ,2,15007,1870 ,2,14956,6880 ,2,15010,618470 ,2,15014,600035 ,2,15015,68940 ,2,15007,1870 ,2,14956,12655 ,2,15010,618475 ,2,15014,600035 ,2,15015,68940 ,2,15007,1870 ,2,14956,12655 ,2,15010,618645 ,2,15014,600035 ,2,15015,69310 ,2,15007,1870 ,2,14956,12655 ,2,15010,618665 ,2,15014,600035 ,2,15015,69405 ,2,15007,1870 ,2,14956,6880 ,2,15010,618675 ,2,15014,600035 ,2,15015,69425 ,2,15007,1870 ,2,14956,12655 ,2,15010,618680 ,2,15014,600035 ,2,15015,69425 ,2,15007,1870 ,2,14956,6880 ,2,15010,618700 ,2,15014,600035 ,2,15015,69585 ,2,15007,1870 ,2,14956,12655 ,2,15010,618745 ,2,15014,600035 ,2,15015,69585 ,2,15007,1870 ,2,14956,6880 ,2,15010,618755 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,618785 ,2,15014,600035 ,2,15015,69650 ,2,15007,1870 ,2,14956,6880 ,2,15010,618815 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,618820 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,616605 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,618895 ,2,15014,600035 ,2,15015,70250 ,2,15007,1870 ,2,14956,177125 ,2,15010,618950 ,2,15014,600035 ,2,15015,70315 ,2,15007,1870 ,2,14956,177140 ,2,15010,618965 ,2,15014,600035 ,2,15015,70315 ,2,15007,1870 ,2,14956,12655 ,2,15010,618975 ,2,15014,600035 ,2,15015,70315 ,2,15007,1870 ,2,14956,177125 ,2,15010,618985 ,2,15014,600035 ,2,15015,70365 ,2,15007,1870 ,2,14956,177140 ,2,15010,618990 ,2,15014,600035 ,2,15015,70365 ,2,15007,1870 ,2,14956,12655 ,2,15010,618995 ,2,15014,600035 ,2,15015,70365 ,2,15007,1870 ,2,14956,12655 ,2,15010,619025 ,2,15014,600035 ,2,15015,70435 ,2,15007,1870 ,2,14956,12655 ,2,15010,619030 ,2,15014,600035 ,2,15015,70435 ,2,15007,1870 ,2,14956,12655 ,2,15010,619040 ,2,15014,600035 ,2,15015,70445 ,2,15007,1870 ,2,14956,6880 ,2,15010,619090 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,619105 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,618815 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,619150 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,8030 ,2,15010,619290 ,2,15014,600040 ,2,15015,71445 ,2,15007,1870 ,2,14956,6880 ,2,15010,619330 ,2,15014,600040 ,2,15015,71670 ,2,15007,1870 ,2,14956,6880 ,2,15010,619385 ,2,15014,600005 ,2,15015,72090 ,2,15007,1870 ,2,14956,6880 ,2,15010,619395 ,2,15014,600005 ,2,15015,72265 ,2,15007,1870 ,2,14956,182065 ,2,15010,619685 ,2,15014,600040 ,2,15015,73815 ,2,15007,1870 ,2,14956,182075 ,2,15010,619690 ,2,15014,600040 ,2,15015,73815 ,2,15007,1870 ,2,14956,182085 ,2,15010,619695 ,2,15014,600040 ,2,15015,73815 ,2,15007,1870 ,2,14956,6880 ,2,15010,619700 ,2,15014,600040 ,2,15015,73865 ,2,15007,1870 ,2,14956,6880 ,2,15010,620930 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,621040 ,2,15014,562720 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,621010 ,2,15014,562720 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,621040 ,2,15014,562720 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615340 ,2,15014,562745 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,621200 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,621425 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,621490 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,621635 ,2,15014,600035 ,2,15015,81720 ,2,15007,1870 ,2,14956,6880 ,2,15010,621635 ,2,15014,600035 ,2,15015,82350 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,82590 ,2,15007,1870 ,2,14956,6880 ,2,15010,622095 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,614885 ,2,15014,600035 ,2,15015,82610 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,82640 ,2,15007,1870 ,2,14956,6540 ,2,15010,622120 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622125 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622165 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613905 ,2,15014,600035 ,2,15015,82630 ,2,15007,1870 ,2,14956,6540 ,2,15010,613910 ,2,15014,600035 ,2,15015,82630 ,2,15007,1870 ,2,14956,6880 ,2,15010,622195 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622250 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622415 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622715 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622725 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622790 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622825 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622890 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622935 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622960 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622990 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623145 ,2,15014,599980 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623315 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623340 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623375 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623565 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623580 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623630 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623650 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623685 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623705 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,623885 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624025 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,12750 ,2,15010,624085 ,2,15014,600040 ,2,15015,84875 ,2,15007,1870 ,2,14956,12655 ,2,15010,618785 ,2,15014,600040 ,2,15015,88055 ,2,15007,1870 ,2,14956,6880 ,2,15010,624430 ,2,15014,600035 ,2,15015,88430 ,2,15007,1870 ,2,14956,6880 ,2,15010,624475 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624765 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624780 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624785 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624795 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624835 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624855 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624895 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,613805 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,624900 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624915 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624920 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,624980 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625015 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625075 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625105 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625115 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625160 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,625105 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625075 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,622125 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622250 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,622250 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,622195 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625240 ,2,15014,600035 ,2,15015,90045 ,2,15007,1870 ,2,14956,6880 ,2,15010,625285 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625345 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625480 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625495 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625500 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625615 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,625650 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,615360 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,626025 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,626100 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,626255 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,626265 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,626315 ,2,15014,600040 ,2,15015,93620 ,2,15007,1870 ,2,14956,11200 ,2,15010,626320 ,2,15014,600040 ,2,15015,93620 ,2,15007,1870 ,2,14956,6880 ,2,15010,626360 ,2,15014,600040 ,2,15015,93630 ,2,15007,1870 ,2,14956,6880 ,2,15010,626370 ,2,15014,600040 ,2,15015,93640 ,2,15007,1870 ,2,14956,6880 ,2,15010,626360 ,2,15014,600040 ,2,15015,93670 ,2,15007,1870 ,2,14956,208290 ,2,15010,627355 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,208290 ,2,15010,627415 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,208370 ,2,15010,627415 ,2,15014,566975 ,2,15015,45 ,2,15007,1870 ,2,14956,208290 ,2,15010,627445 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,627540 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,97185 ,2,15007,1870 ,2,14956,11265 ,2,15010,627675 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,97430 ,2,15007,1870 ,2,14956,11265 ,2,15010,627700 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,97505 ,2,15007,1870 ,2,14956,11265 ,2,15010,627775 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,627830 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,627855 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,627915 ,2,15014,600035 ,2,15015,97750 ,2,15007,1870 ,2,14956,11265 ,2,15010,627945 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,627915 ,2,15014,600035 ,2,15015,97880 ,2,15007,1870 ,2,14956,12655 ,2,15010,627915 ,2,15014,600035 ,2,15015,98140 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98255 ,2,15007,1870 ,2,14956,6540 ,2,15010,615295 ,2,15014,600040 ,2,15015,98265 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98305 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98350 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98400 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98430 ,2,15007,1870 ,2,14956,6880 ,2,15010,628035 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98615 ,2,15007,1870 ,2,14956,6880 ,2,15010,628050 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98660 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98720 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98800 ,2,15007,1870 ,2,14956,6540 ,2,15010,627620 ,2,15014,600040 ,2,15015,98895 ,2,15007,1870 ,2,14956,6540 ,2,15010,628135 ,2,15014,600040 ,2,15015,98955 ,2,15007,1870 ,2,14956,6540 ,2,15010,628165 ,2,15014,600040 ,2,15015,98990 ,2,15007,1870 ,2,14956,11265 ,2,15010,628220 ,2,15014,600035 ,2,15015,99430 ,2,15007,1870 ,2,14956,11265 ,2,15010,628235 ,2,15014,600035 ,2,15015,99440 ,2,15007,1870 ,2,14956,11265 ,2,15010,628240 ,2,15014,600035 ,2,15015,99450 ,2,15007,1870 ,2,14956,11265 ,2,15010,628245 ,2,15014,600035 ,2,15015,99460 ,2,15007,1870 ,2,14956,11265 ,2,15010,628325 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,99940 ,2,15007,1870 ,2,14956,6880 ,2,15010,628395 ,2,15014,567600 ,2,15015,100565 ,2,15007,1870 ,2,14956,6880 ,2,15010,628560 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,628615 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,208370 ,2,15010,623565 ,2,15014,567815 ,2,15015,45 ,2,15007,1870 ,2,14956,208290 ,2,15010,628685 ,2,15014,567805 ,2,15015,45 ,2,15007,1870 ,2,14956,208290 ,2,15010,628845 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,208290 ,2,15010,628890 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,629245 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,629250 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,629355 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,629365 ,2,15014,600040 ,2,15015,104080 ,2,15007,1870 ,2,14956,6880 ,2,15010,629570 ,2,15014,568360 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,629640 ,2,15014,568360 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,629945 ,2,15014,568590 ,2,15015,105420 ,2,15007,1870 ,2,14956,6880 ,2,15010,629950 ,2,15014,568360 ,2,15015,105460 ,2,15007,1870 ,2,14956,6880 ,2,15010,629955 ,2,15014,568590 ,2,15015,105505 ,2,15007,1870 ,2,14956,6880 ,2,15010,629960 ,2,15014,568460 ,2,15015,105525 ,2,15007,1870 ,2,14956,6880 ,2,15010,629970 ,2,15014,568360 ,2,15015,105885 ,2,15007,1870 ,2,14956,6880 ,2,15010,629990 ,2,15014,566930 ,2,15015,105980 ,2,15007,1870 ,2,14956,6880 ,2,15010,630065 ,2,15014,568365 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,630120 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,630190 ,2,15014,563745 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,630225 ,2,15014,563745 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,630390 ,2,15014,600040 ,2,15015,107135 ,2,15007,1870 ,2,14956,6880 ,2,15010,630420 ,2,15014,600040 ,2,15015,107145 ,2,15007,1870 ,2,14956,12750 ,2,15010,630425 ,2,15014,600040 ,2,15015,107155 ,2,15007,1870 ,2,14956,6880 ,2,15010,630430 ,2,15014,600040 ,2,15015,107155 ,2,15007,1870 ,2,14956,6880 ,2,15010,630445 ,2,15014,568365 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,630510 ,2,15014,568365 ,2,15015,45 ,2,15007,1870 ,2,14956,12750 ,2,15010,631800 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,631805 ,2,15014,568460 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,632035 ,2,15014,570365 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,632410 ,2,15014,600035 ,2,15015,114700 ,2,15007,1870 ,2,14956,225390 ,2,15010,632695 ,2,15014,570745 ,2,15015,45 ,2,15007,1870 ,2,14956,225390 ,2,15010,632740 ,2,15014,570745 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,629245 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,632800 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,633885 ,2,15014,571235 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,633285 ,2,15014,600040 ,2,15015,118110 ,2,15007,1870 ,2,14956,6880 ,2,15010,633585 ,2,15014,567805 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,633590 ,2,15014,567805 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,633660 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,633905 ,2,15014,571235 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,634975 ,2,15014,572540 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,635020 ,2,15014,572540 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617305 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635345 ,2,15014,572990 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635350 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635355 ,2,15014,572990 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635355 ,2,15014,572990 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,635400 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,124720 ,2,15007,1870 ,2,14956,11265 ,2,15010,635450 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,635475 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635505 ,2,15014,573070 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635510 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635515 ,2,15014,573070 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635515 ,2,15014,573070 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,635515 ,2,15014,573070 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,635530 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,124910 ,2,15007,1870 ,2,14956,6880 ,2,15010,635635 ,2,15014,600035 ,2,15015,125085 ,2,15007,1870 ,2,14956,6880 ,2,15010,635700 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,635940 ,2,15014,600040 ,2,15015,125775 ,2,15007,1870 ,2,14956,6880 ,2,15010,635950 ,2,15014,600040 ,2,15015,125820 ,2,15007,1870 ,2,14956,6880 ,2,15010,635965 ,2,15014,600040 ,2,15015,125830 ,2,15007,1870 ,2,14956,6880 ,2,15010,635985 ,2,15014,600040 ,2,15015,125985 ,2,15007,1870 ,2,14956,6880 ,2,15010,636000 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636020 ,2,15014,600040 ,2,15015,126015 ,2,15007,1870 ,2,14956,6880 ,2,15010,636045 ,2,15014,600040 ,2,15015,126135 ,2,15007,1870 ,2,14956,234500 ,2,15010,636055 ,2,15014,600040 ,2,15015,126175 ,2,15007,1870 ,2,14956,6880 ,2,15010,636060 ,2,15014,600040 ,2,15015,126175 ,2,15007,1870 ,2,14956,6880 ,2,15010,636100 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636110 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636170 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636250 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636310 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636335 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636360 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636450 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636455 ,2,15014,600040 ,2,15015,126865 ,2,15007,1870 ,2,14956,6880 ,2,15010,636485 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636515 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636555 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636590 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636680 ,2,15014,600040 ,2,15015,127370 ,2,15007,1870 ,2,14956,6880 ,2,15010,636765 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,618785 ,2,15014,600040 ,2,15015,127470 ,2,15007,1870 ,2,14956,6880 ,2,15010,636795 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,636455 ,2,15014,600040 ,2,15015,127675 ,2,15007,1870 ,2,14956,6880 ,2,15010,636975 ,2,15014,600040 ,2,15015,127250 ,2,15007,1870 ,2,14956,6880 ,2,15010,637005 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637050 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637100 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637140 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637160 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637205 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,8190 ,2,15010,637215 ,2,15014,574235 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,635940 ,2,15014,600040 ,2,15015,128700 ,2,15007,1870 ,2,14956,6880 ,2,15010,637320 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637365 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637380 ,2,15014,600040 ,2,15015,129715 ,2,15007,1870 ,2,14956,6880 ,2,15010,635940 ,2,15014,600040 ,2,15015,129725 ,2,15007,1870 ,2,14956,6880 ,2,15010,637420 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,635985 ,2,15014,600040 ,2,15015,129875 ,2,15007,1870 ,2,14956,6880 ,2,15010,637515 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637530 ,2,15014,600040 ,2,15015,130155 ,2,15007,1870 ,2,14956,6880 ,2,15010,637535 ,2,15014,600040 ,2,15015,130180 ,2,15007,1870 ,2,14956,6880 ,2,15010,637565 ,2,15014,600040 ,2,15015,130190 ,2,15007,1870 ,2,14956,6880 ,2,15010,637575 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637630 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,637795 ,2,15014,572540 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,638210 ,2,15014,568365 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,638430 ,2,15014,575135 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,638465 ,2,15014,575135 ,2,15015,132760 ,2,15007,1870 ,2,14956,6880 ,2,15010,638525 ,2,15014,575135 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,638585 ,2,15014,575135 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,638755 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,638890 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,638915 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,640275 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617305 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,640295 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635345 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,640345 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174790 ,2,15010,613720 ,2,15014,600035 ,2,15015,138960 ,2,15007,1870 ,2,14956,174810 ,2,15010,613135 ,2,15014,600035 ,2,15015,138960 ,2,15007,1870 ,2,14956,3390 ,2,15010,635345 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635350 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635355 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635355 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635355 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635355 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,640345 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,640955 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,641000 ,2,15014,600040 ,2,15015,140655 ,2,15007,1870 ,2,14956,6880 ,2,15010,643730 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,643755 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,643805 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,644140 ,2,15014,600040 ,2,15015,158355 ,2,15007,1870 ,2,14956,6880 ,2,15010,645030 ,2,15014,600040 ,2,15015,161175 ,2,15007,1870 ,2,14956,6880 ,2,15010,645035 ,2,15014,600040 ,2,15015,161185 ,2,15007,1870 ,2,14956,6880 ,2,15010,645040 ,2,15014,600040 ,2,15015,161195 ,2,15007,1870 ,2,14956,6880 ,2,15010,645045 ,2,15014,600040 ,2,15015,161240 ,2,15007,1870 ,2,14956,6880 ,2,15010,645050 ,2,15014,600040 ,2,15015,161250 ,2,15007,1870 ,2,14956,6880 ,2,15010,645060 ,2,15014,600040 ,2,15015,161270 ,2,15007,1870 ,2,14956,6880 ,2,15010,645590 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,645630 ,2,15014,568360 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,645650 ,2,15014,566950 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,645705 ,2,15014,566950 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,645780 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,645830 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,645900 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,645930 ,2,15014,566930 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,646015 ,2,15014,600040 ,2,15015,165380 ,2,15007,1870 ,2,14956,6540 ,2,15010,628325 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,646080 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,646365 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,617295 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,646365 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,646530 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,646600 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,174955 ,2,15010,613720 ,2,15014,600035 ,2,15015,167180 ,2,15007,1870 ,2,14956,174965 ,2,15010,613135 ,2,15014,600035 ,2,15015,167180 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646690 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,616635 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,650805 ,2,15014,600040 ,2,15015,167210 ,2,15007,1870 ,2,14956,6880 ,2,15010,650805 ,2,15014,600040 ,2,15015,167390 ,2,15007,1870 ,2,14956,6880 ,2,15010,650805 ,2,15014,600040 ,2,15015,167415 ,2,15007,1870 ,2,14956,6880 ,2,15010,650845 ,2,15014,577765 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,650930 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,650945 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613135 ,2,15014,600040 ,2,15015,167645 ,2,15007,1870 ,2,14956,11265 ,2,15010,650955 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,650990 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,651000 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600040 ,2,15015,167745 ,2,15007,1870 ,2,14956,11265 ,2,15010,651090 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,651100 ,2,15014,600040 ,2,15015,167870 ,2,15007,1870 ,2,14956,6880 ,2,15010,651275 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,651350 ,2,15014,600040 ,2,15015,168165 ,2,15007,1870 ,2,14956,6880 ,2,15010,651800 ,2,15014,600040 ,2,15015,168665 ,2,15007,1870 ,2,14956,11265 ,2,15010,651870 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,651900 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,171665 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,171750 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,171990 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,172040 ,2,15007,1870 ,2,14956,6880 ,2,15010,653545 ,2,15014,600040 ,2,15015,179915 ,2,15007,1870 ,2,14956,289810 ,2,15010,653555 ,2,15014,582405 ,2,15015,45 ,2,15007,1870 ,2,14956,289820 ,2,15010,653570 ,2,15014,582405 ,2,15015,45 ,2,15007,1870 ,2,14956,289925 ,2,15010,653585 ,2,15014,582405 ,2,15015,45 ,2,15007,1870 ,2,14956,10335 ,2,15010,653715 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,653730 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,653770 ,2,15014,600040 ,2,15015,180590 ,2,15007,1870 ,2,14956,10335 ,2,15010,653775 ,2,15014,600040 ,2,15015,180590 ,2,15007,1870 ,2,14956,10335 ,2,15010,653790 ,2,15014,600040 ,2,15015,180610 ,2,15007,1870 ,2,14956,12655 ,2,15010,653800 ,2,15014,600040 ,2,15015,180610 ,2,15007,1870 ,2,14956,6880 ,2,15010,653900 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,653995 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,654020 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,182765 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,182830 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,183130 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,183150 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,183220 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,183305 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,183580 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,183600 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,183675 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,183750 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,184020 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,184060 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,184120 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,184215 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,184500 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,184520 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,184575 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,184655 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,184965 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,184990 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,185060 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,185135 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,185405 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,185425 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,185500 ,2,15007,1870 ,2,14956,6880 ,2,15010,613520 ,2,15014,600035 ,2,15015,185610 ,2,15007,1870 ,2,14956,6880 ,2,15010,615215 ,2,15014,600035 ,2,15015,185845 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,185880 ,2,15007,1870 ,2,14956,11265 ,2,15010,654945 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,655050 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,655055 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,655090 ,2,15014,585530 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655100 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655125 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655175 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655185 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655125 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,7400 ,2,15010,655315 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655455 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,655470 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655485 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,655525 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656450 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,656465 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656470 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656520 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656560 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,656585 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656590 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656630 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,656995 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,657035 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,657980 ,2,15014,568360 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,658040 ,2,15014,600040 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658155 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658205 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658240 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,614885 ,2,15014,600035 ,2,15015,200695 ,2,15007,1870 ,2,14956,11265 ,2,15010,616990 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658335 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,617365 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658350 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658370 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658430 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658480 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658505 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658540 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,615035 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617955 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658610 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,658615 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658625 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658480 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,614525 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,658690 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658705 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,613545 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,615035 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,617955 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,614525 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658480 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,640295 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,658810 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,658825 ,2,15014,588820 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658830 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,658880 ,2,15014,588835 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635505 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,658335 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,233145 ,2,15010,617365 ,2,15014,588880 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,658880 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635505 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,658995 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,659050 ,2,15014,588995 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,659075 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,659080 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,659115 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,659125 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,659115 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,613335 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,621200 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,659185 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,659215 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,659240 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,659365 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,659445 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,659545 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,627915 ,2,15014,600035 ,2,15015,204090 ,2,15007,1870 ,2,14956,233145 ,2,15010,635505 ,2,15014,589425 ,2,15015,45 ,2,15007,1870 ,2,14956,11200 ,2,15010,635510 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,613135 ,2,15014,600035 ,2,15015,204130 ,2,15007,1870 ,2,14956,6880 ,2,15010,659755 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,659785 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12750 ,2,15010,613135 ,2,15014,589575 ,2,15015,205355 ,2,15007,1870 ,2,14956,6880 ,2,15010,659815 ,2,15014,589575 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,659850 ,2,15014,589575 ,2,15015,205345 ,2,15007,1870 ,2,14956,6880 ,2,15010,660305 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6540 ,2,15010,659075 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,660970 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,661175 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,661545 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,616655 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,615010 ,2,15014,600035 ,2,15015,218225 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,664055 ,2,15014,600035 ,2,15015,114700 ,2,15007,1870 ,2,14956,6880 ,2,15010,664160 ,2,15014,600040 ,2,15015,220220 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,11265 ,2,15010,664235 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,626255 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,12655 ,2,15010,664805 ,2,15014,600040 ,2,15015,221780 ,2,15007,1870 ,2,14956,10335 ,2,15010,664825 ,2,15014,600040 ,2,15015,221780 ,2,15007,1870 ,2,14956,6880 ,2,15010,664885 ,2,15014,600035 ,2,15015,221830 ,2,15007,1870 ,2,14956,11265 ,2,15010,665755 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,3390 ,2,15010,646680 ,2,15014,600035 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,666125 ,2,15014,600020 ,2,15015,45 ,2,15007,1870 ,2,14956,6880 ,2,15010,664825 ,2,15014,600040 ,2,15015,224455 ,2,15007,1870 ,2,14956,12655 ,2,15010,666345 ,2,15014,600035 ,2,15015,224465 ,2,15007,1870 ,2,14956,177125 ,2,15010,666345 ,2,15014,600035 ,2,15015,224820 ,2,15007,1870 ,2,14956,177140 ,2,15010,664805 ,2,15014,600035 ,2,15015,224820 ,2,15007,1870 ,2,14956,12655 ,2,15010,664825 ,2,15014,600035 ,2,15015,224820 ,2,15007,1870 ,2,14956,177125 ,2,15010,666345 ,2,15014,600035 ,2,15015,224840 ,2,15007,1870 ,2,14956,177140 ,2,15010,664805 ,2,15014,600035 ,2,15015,224840 ,2,15007,1870 ,2,14956,12655 ,2,15010,664825 ,2,15014,600035 ,2,15015,224840 ,2,15007,1870 ,2,14956,6880 ,2,15010,664805 ,2,15014,600035 ,2,15015,225395 ,2,15007,1870 ,2,14956,12655 ,2,15010,664825 ,2,15014,600035 ,2,15015,225395 ,2,15007,1870 ,2,14956,6880 ,2,15010,664805 ,2,15014,600035 ,2,15015,225455 ,2,15007,1870 ,2,14956,12655 ,2,15010,664825 ,2,15014,600035 ,2,15015,225455 ,2,15007,1870 ,2,14956,12655 ,2,15010,664825 ,2,15014,600035 ,2,15015,225515 ,2,15007,1870 ,2,14956,12655 ,2,15010,664825 ,2,15014,600035 ,2,15015,226035 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,56480 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,56490 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,58235 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,58875 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,58915 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,58945 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,59295 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,59450 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,59820 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,60185 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,67010 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,68530 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,68565 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69010 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69040 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69105 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69125 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69300 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,69320 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69350 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,69435 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,69575 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,69595 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,70325 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,70375 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,70455 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,70555 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,70575 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,71365 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,72275 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,73730 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,64645 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,80190 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81120 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81165 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81185 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81240 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81340 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81410 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,81945 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,82800 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,82850 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,82920 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,83110 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,83650 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,83705 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,88565 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,88650 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,88900 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,100465 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,104935 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,105825 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,105950 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,114010 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,119950 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,122355 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,129865 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,158335 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,163180 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,165890 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,167000 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,173845 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174105 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174190 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174295 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174365 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174460 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174520 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174615 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174725 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174805 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174865 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,174960 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175040 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175145 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175210 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175305 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175375 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175475 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175535 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175605 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175685 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175770 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175830 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,175930 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176015 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176105 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176170 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176250 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176340 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176445 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176505 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176595 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176685 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176780 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176840 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,176930 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,177015 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,177090 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,177155 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,177245 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,177330 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,177435 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,180600 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,180630 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,181485 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,181525 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,181980 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,189050 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,189275 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,205630 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,120 ,2,15020,218185 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,219255 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,219315 ,2,15021,45 ,2,15010,45 ,2,15017,45 ,2,15018,45 ,2,15019,45 ,2,15020,223630 ,2,15021,45 ,2,15010,45 ],"strings":["<unknown>" ,"<artificial root>" ,"null" ,"sentinel" ,"transition_sentinel" ,"<empty_array>" ,"<zero_array>" ,"<dynamic type>" ,"<void type>" ,"[]" ,"true" ,"false" ,"<extractor parameter types>" ,"<extractor parameter names>" ,"<empty>" ,"<implicit getter>" ,"<implicit setter>" ,"<implicit static getter>" ,"<method extractor>" ,"<invoke closure>" ,"<invoke field>" ,"<nsm dispatcher>" ,"<dyn forwarder>" ,"<cached arguments descriptor>" ,"<empty icdata entries>" ,"<empty subtype entries>" ,"<base object>" ,"Unnamed [int] (nil)" ,"Unnamed [Array] (nil)" ,"\u001A" ,"_setAsyncThreadStackTrace" ,"4" ,"O" ,"MonomorphicSmiableCall" ,"_growRegExpStack" ,"3" ,"<not named>" ,"ClosureData" ,"f" ,"!=" ,"h" ,"toString" ,"Uint64List" ,"UnwindError" ,"ž" ,"‚" ,"covariant" ,"class" ,"abstract" ,"Ð" ,"™" ,"StreamIterator" ,"Int64List" ,"this" ,"_Int64ArrayView" ,"ä" ,":function_type_arguments_var" ,"dart.library.mirrors" ,"ApiError" ,"Int32List" ,"Ë" ,"Namespace" ,"external" ,"—" ,"Map" ,"®" ,"q" ,"ParameterTypeCheck" ,":entry_points_temp" ,"±" ,"§" ,"|" ,"_allocateInvocationMirror" ,"++" ,":Eval" ,"factory result" ,"double" ,"_MirrorReference" ,"Float32x4" ,"_boundsCheckForPartialInstantiation" ,"@" ,"Future.microtask" ,"V" ,":capture_length" ,"_ExternalUint16Array" ,"Û" ,"List" ,"_ImmutableMap" ,"(" ,"?" ,"_CastError" ,"s" ,"get:runtimeType" ,"_Int64List" ," " ,"ø" ,"â" ,":L" ,"??" ,":index_temp" ,"_classRangeCheck" ,"\u0015" ,"_throwNew" ,"MegamorphicCache" ,"!" ,"_TypeParameter" ,"_ExternalUint8Array" ,"void" ,"Ì" ,"start" ,"ÿ" ,"_WeakProperty" ,"\f" ,":async_completer" ,"name" ,"if" ,"_Uint64ArrayView" ,"_SyncIterator" ,"_evaluateAssertion" ,":result" ,"Null" ,"^=" ,":current_context_var" ,"6" ,"\u0005" ,":async_stack_trace" ,"library" ,"Int16List." ,"_CompileTimeError" ,"_ImmutableList" ,"·" ,"continue" ,"I" ,"€" ,"Ò" ,"default" ,"ï" ,"¬" ,"Int16" ,"new" ,"_ExternalFloat32Array" ,"‡" ,"Int64List." ,"~\/" ,"_get" ,"Never" ,"_scanFlags" ,"ñ" ,"_Float64x2" ,"_" ,"P" ,"Int32x4List" ,"Int8" ,"¡" ,"_Float32List" ,"~" ,"æ" ,"_ClassMirror" ,"dart:collection" ,"_Float32x4List" ,"NativeFunction" ,"._create" ,"DynamicLibrary" ,"<anonymous signature>" ,"StreamController" ,".value" ,"pragma" ,"dart:isolate" ,"œ" ,"d" ,"‰" ,"o" ,":await_ctx_var" ,"as" ,"Õ" ,":string_param" ,"%=" ,"\u0013" ,"*" ,"_AsyncAwaitCompleter" ,"_runPendingImmediateCallback" ,"_ExternalUint32Array" ,"_stackTrace" ,"B" ,"values" ,"_setLength" ,"dart.library.ffi" ,"Int8List." ,"get:future" ,"_TypeRef" ,"u" ,"KernelProgramInfo" ,"RedirectionData" ,"ú" ,"=" ,"¸" ,"_SyncIterable." ,"Å" ,"\u0018" ,"#" ,"===" ,"wasm" ,"_Double" ,"operator" ,"-" ,"patch" ,"callback" ,"FfiTrampolineData" ,"Î" ,"LanguageError" ,"_Int32x4" ,"catch" ,"ó" ,"Ü" ,"l" ,"Future.value" ,"9" ,"_MethodMirror" ,":arg_desc" ,"dart.developer.causal_async_stacks" ,"rethrow" ,"_asyncStarMoveNextHelper" ,"_IntegerImplementation" ,"_ParameterMirror" ,"current" ,"\u001F" ,"--" ,"è" ,"x" ,"" ,"_wordCharacterMap" ,"\n" ,"v" ,"Double" ,"Type" ,"dart.library." ,"dart.isVM" ,"\u0003" ,"" ,"_ExternalUint8ClampedArray" ,"try" ,"’" ,"_MirrorSystem" ,"finally" ,"_Future" ,"dart.vm.product" ,"Float64x2" ,"_handleMessage" ,"dart.library.wasm" ,"_ExternalInt32Array" ,"typedef" ,":char_in_match" ,"dart.io" ,"clear" ,"×" ,"getID" ,"NativeType" ,"while" ,"type '" ,"_RawReceivePortImpl" ,"ByteData." ,"dart:core" ,"¾" ,"CodeSourceMap" ," " ,"controller" ," of " ,"._withType" ,"_Float64x2List" ," in type cast" ,"c" ,"Int8List" ,"<<=" ,"_asyncStarListenHelper" ,"_Float32ArrayView" ,"export" ,"isPaused" ,"dart:async" ,"Map._fromLiteral" ,"ü" ,"nativewrappers" ,"yield" ,"_SyncIterable" ,"\u0011" ,"_GrowableList" ,"\u0016" ,"??=" ,"Float32x4List." ,"_LateInitializationError" ,"IsolateSpawnException" ,"length" ,"È" ,"X" ,"&&" ,"C" ,"get:hashCode" ,"TransferableTypedData" ,"*=" ,"_GrowableList._withData" ,"Ç" ,"is" ,"dart:_internal" ,"_lookupHandler" ,"ByteData._view" ,"$" ,"NoSuchMethodError" ,"D" ,"<optimized out>" ,"\/=" ,"_ExternalFloat64x2Array" ,"bool" ,"J" ,">=" ,"RegExp" ,"Int32" ,"" ,"\/" ,"S" ,"StreamIterator." ,"dart:wasm" ,"_List" ,"Float" ,"_FfiCallback" ,"new " ,"_InternalLinkedHashMap" ,"\b" ,"Struct" ,":stack_trace" ,"&" ,"ByteData" ,"identityHashCode" ,"_ByteBuffer" ,"vm:never-inline" ,":switch_expr" ,"<not initialized>" ,"identical" ,"<<" ,"_TypedefMirror" ,"Þ" ,"j" ,"[]=" ,"T" ,"_Uint64List" ,"›" ,"<anonymous closure>" ,"switch" ,"Code" ,"„" ,"_ByteDataView" ,"\u000F" ,"Int32x4List." ,"\u001D" ,"" ,"_Uint8ClampedList" ,"isSync" ,"._" ,"_instanceOf" ,"case" ,"Deleted enum value from " ,"int" ,"\u0001" ,"z" ,"ContextScope" ,":string_param_length" ,"||" ,"Future" ,"ê" ,"Uint64List." ,"õ" ,"þ" ,"]" ,"0" ,"‹" ,"å" ,"_resultOrListeners" ,"_StreamImpl" ,") => " ,"Ñ" ,"F" ,"¥" ,"UnsupportedError" ,"get:" ,"_CapabilityImpl" ,"Float64List." ,"¢" ,"_StreamController" ,"_RegExp" ,"in" ,", " ,":await_jump_var" ,"Z" ,"static" ,"a" ,"List.filled" ,")" ,"Ê" ,"_simpleInstanceOf" ,"Uint16List" ,"SignatureData" ,"¼" ,"_StackTrace" ,"throw" ,"ExternalName" ,"M" ,":stack_trace_var" ,"_CompactLinkedHashSet" ,"Uint32List." ,"µ" ,"_Int32x4ArrayView" ,"Uint32" ,"dart:" ,"Class" ,"«" ,"»" ,"_haveSameRuntimeType" ,"_Int8ArrayView" ,"Á" ,"vm.inferred-type.metadata" ,"dart:vmservice_io" ,"TypeArguments" ,"\r" ,"vm.procedure-attributes.metadata" ,"Uint32List" ,"_ExternalInt16Array" ,"A" ,"InstructionsSection" ,"Uint8ClampedList" ,"÷" ,"Ø" ,"r" ,"${" ,"_Uint16ArrayView" ,"_interpolate" ,">" ,"for" ,"W" ,"#sizeOf" ,"¹" ,"::" ,"dart:mirrors" ,"Function" ,"_Utf8Decoder" ,"ð" ,"_Closure.call" ,"_AssertionError" ,"+" ,"_SpecialTypeMirror" ,"Context" ," " ,"_stateData" ,"Uint8List" ,"\u0014" ,"FallThroughError" ,"do" ,"vm:exact-result-type" ,"options" ,">>=" ,"_List." ,"const" ,"_TypeVariableMirror" ,"dart:ffi" ,"_Random" ,"_clearAsyncThreadStackTrace" ,"ì" ,"_SourceLocation" ,"\u0006" ,"&=" ,"_Int8List" ,"Void" ,"Float64x2List." ,"native" ,":char_in_capture" ,"_Float32x4ArrayView" ,"\u001B" ,"List." ,"=>" ,"LibraryPrefix" ,"i" ,"" ,"package:" ,"˜" ,"_name" ,":finally_ret_val" ,"_Uint32ArrayView" ,"stream" ,"AbstractClassInstantiationError" ,"_StringBase" ,"dart:nativewrappers" ,"Ó" ,"2" ,"Library" ,"N" ,"_AsyncAwaitCompleter." ,"Ä" ,"vm:non-nullable-result-type" ,"}" ,"_Float64List" ,"Default" ,"ç" ,"_VariableMirror" ,"_Closure" ,"\\" ,"©" ,"²" ,"dynamic" ,"‘" ,"Ã" ,"_onData" ,"Š" ,"g" ,"RangeError" ,"_ExternalOneByteString" ,"–" ,"Symbol" ,"unsafeCast" ,":closure" ,"get:call" ,"dart:_vmservice" ,"n" ,"implements" ,":current_character" ,";" ,"call" ,":start_index_param" ,":iterator" ,"¿" ,"dart:developer" ,"!==" ,"_Int32List" ,"other" ,"_throwNewInvocation" ,"List._fromLiteral" ,"function result" ,"_FutureListener" ,"ù" ,"t" ,"<" ,"?." ,"Completer.sync" ,":matcher" ,"Æ" ,"%" ,"init:" ,"-=" ,"FreeListElement" ,"Float32List." ,"_OneByteString" ,"#DebugClass" ,"_current" ,"_InvocationMirror" ,"\u000B" ,"ã" ,"num" ,"Uint16" ,"Uint64" ,"CompressedStackMaps" ,"Ý" ,".range" ,"Ú" ,"Í" ,"\u0012" ,"_ExternalUint64Array" ,"break" ,"|=" ,"\"" ,"_simpleInstanceOfTrue" ,"_simpleInstanceOfFalse" ,"," ,"5" ,"import" ,"_Uint8ClampedArrayView" ,"\u0004" ,"î" ,"get" ,"_LibraryDependencyMirror" ,"°" ,"ICData" ,"PcDescriptors" ,":exception" ,"add" ,"StackOverflowError" ,"#!" ,"Instructions" ,"deferred" ,"_Mint" ,"H" ,"Float32x4List" ,"†" ,"é" ,"_ImmutableMap._create" ,"¯" ,"_allocateInvocationMirrorForClosure" ,"_Smi" ,"_SendPortImpl" ,"ˆ" ,"_UserTag" ,"IntPtr" ,"ForwardingCorpse" ,"Q" ,"UnhandledException" ,"_Float32x4" ,"_BufferingStreamSubscription" ,"_rehashObjects" ,"”" ,":position_registers" ,"" ,"^" ,"ò" ,"Ÿ" ,"e" ,"Symbol." ,"dart:typed_data" ,"vm:prefer-inline" ,"Field" ,"print" ,"¦" ,"removeLast" ,"_TypeError" ,"_Uint32List" ,"à" ,"_ExternalInt32x4Array" ," extends " ,"dart-ext:" ,"get:length" ,"…" ,"enum" ,"." ,"#fromPointer" ,"NullThrownError" ," is from " ,"catchError" ,"_GrowableList." ,"_awaiter" ,"unary-" ,"cancel" ,"FormatException" ,"\u0010" ,"û" ,"else" ,"noSuchMethod" ,"set:" ,"£" ,"String" ,"_Int16ArrayView" ,"IntegerDivisionByZeroException" ,"'" ,"Ž" ,"½" ,"À" ,"PatchClass" ,"set" ,"L" ,"\u0019" ,"with" ,"b" ,"_LibraryMirror" ,":match_end_index" ,"_ExternalFloat32x4Array" ,"_TransferableTypedDataImpl" ,":expr_temp" ,"_AsyncStarStreamController." ,"Ô" ,"Ï" ,"K" ,"Y" ,"_ExternalTwoByteString" ,"E" ,"¨" ,"7" ,"á" ,"Uint8" ,"_CombinatorMirror" ,"m" ,">>" ,"_Int32x4List" ,"evaluate:source" ,"factory" ,"Object" ,"_Uint8ArrayView" ,"\u001E" ,":saved_try_context_var" ,":" ,"_Type" ,"­" ,"¶" ,"•" ,"ß" ,"value" ,"_ExternalFloat64Array" ,"iterator" ,"SubtypeTestCache" ,"dart:_" ,"\t" ,"_IsolateMirror" ,"assert" ,"vm:testing.unsafe.trace-entrypoints-fn" ,"\u0002" ,"_Float64ArrayView" ,"index" ,":capture_start_index" ,":exception_var" ,"ô" ,"last" ,"Float64List" ,"_ByteBuffer._New" ," where\n" ,"Uint8ClampedList." ,"Int64" ,"w" ,"final" ,"ë" ,"_AsyncStarStreamController" ,"y" ,"_Int32ArrayView" ,"_Int16List" ,"_AsyncStreamController" ,"_asFunctionInternal" ,"p" ,"¤" ,"return" ,"\u0017" ,".." ,"_AsyncAwaitCompleter.start" ,"_prependTypeArguments" ,"OutOfMemoryError" ,"' is not a subtype of " ,"º" ,"LocalVarDescriptors" ,"_varData" ,"ý" ,"G" ,"`" ,"dyn:" ,":controller_stream" ,"ObjectPool" ,"ExceptionHandlers" ,"ClassID" ,"_LibraryPrefix" ,"_TwoByteString" ,"1" ,"_ControllerSubscription" ,"CyclicInitializationError" ,"Œ" ,"_state" ,"ª" ,"Completer" ,":stack" ,"then" ,"vm:entry-point" ,"_StreamIterator" ,"_ExternalInt8Array" ,"[" ,"var" ,":type_arguments" ,"³" ,"Error" ,"É" ,"_interpolateSingle" ,":original:" ,"Ö" ,"ArgumentError" ,"_deleted_enum_sentinel" ,"Int32x4" ,"´" ,"Int16List" ,"Â" ,"_Float64x2ArrayView" ,"_completeOnAsyncReturn" ,"ƒ" ,"R" ,"8" ,"Pointer" ,"~\/=" ,"_FunctionTypeMirror" ,"ö" ,":stack_pointer" ,"Uint16List." ,"U" ,"_future" ,"š" ,"<=" ,"k" ,":match_start_index" ,":try_finally_return_value" ,"_ensureScheduleImmediate" ,"Ù" ,"future" ,"dart.developer.timeline" ,"SingleTargetCache" ,"ffi" ,"Bytecode" ,"\u001C" ,"_runExtension" ,"UnlinkedCall" ,"_Uint8List" ,"Script" ,"_handleExposedException" ,":controller" ,"Float64x2List" ,"super" ,"part" ,"{" ,"Uint8List." ,":async_op" ,"í" ,"“" ,"+=" ,"Float32List" ,"Int32List." ,"moveNext" ,"\u000E" ,":current_position" ,"==" ,"\u0007" ,"extends" ,"FutureOr" ,"boolean expression" ,"_ExternalInt64Array" ,"_Uint16List" ,"" ,"Unnamed [Code] (nil)" ,"<instructions>" ,"owner_" ,"exception_handlers_" ,"pc_descriptors_" ,"catch_entry_" ,"compressed_stackmaps_" ,"inlined_id_to_function_" ,"code_source_map_" ,"type_arguments_" ,"symbol-table" ,"Stub:GetCStackPointer" ,"Stub:JumpToFrame" ,"Stub:RunExceptionHandler" ,"Stub:DeoptForRewind" ,"Stub:WriteBarrier" ,"Stub:WriteBarrierWrappers" ,"Stub:ArrayWriteBarrier" ,"Stub:PrintStopMessage" ,"Stub:AllocateArray" ,"Stub:AllocateMintSharedWithFPURegs" ,"Stub:AllocateMintSharedWithoutFPURegs" ,"Stub:AllocateContext" ,"Stub:AllocateObject" ,"Stub:AllocateObjectParameterized" ,"Stub:AllocateObjectSlow" ,"Stub:CloneContext" ,"Stub:CallToRuntime" ,"Stub:LazyCompile" ,"Stub:InterpretCall" ,"Stub:CallBootstrapNative" ,"Stub:CallNoScopeNative" ,"Stub:CallAutoScopeNative" ,"Stub:FixCallersTarget" ,"Stub:CallStaticFunction" ,"Stub:OptimizeFunction" ,"Stub:InvokeDartCode" ,"Stub:InvokeDartCodeFromBytecode" ,"Stub:DebugStepCheck" ,"Stub:SwitchableCallMiss" ,"Stub:MonomorphicSmiableCheck" ,"Stub:SingleTargetCall" ,"Stub:ICCallThroughCode" ,"Stub:MegamorphicCall" ,"Stub:FixAllocationStubTarget" ,"Stub:Deoptimize" ,"Stub:DeoptimizeLazyFromReturn" ,"Stub:DeoptimizeLazyFromThrow" ,"Stub:UnoptimizedIdenticalWithNumberCheck" ,"Stub:OptimizedIdenticalWithNumberCheck" ,"Stub:ICCallBreakpoint" ,"Stub:UnoptStaticCallBreakpoint" ,"Stub:RuntimeCallBreakpoint" ,"Stub:OneArgCheckInlineCache" ,"Stub:TwoArgsCheckInlineCache" ,"Stub:SmiAddInlineCache" ,"Stub:SmiLessInlineCache" ,"Stub:SmiEqualInlineCache" ,"Stub:OneArgOptimizedCheckInlineCache" ,"Stub:TwoArgsOptimizedCheckInlineCache" ,"Stub:ZeroArgsUnoptimizedStaticCall" ,"Stub:OneArgUnoptimizedStaticCall" ,"Stub:TwoArgsUnoptimizedStaticCall" ,"Stub:Subtype1TestCache" ,"Stub:Subtype2TestCache" ,"Stub:Subtype4TestCache" ,"Stub:Subtype6TestCache" ,"Stub:DefaultTypeTest" ,"Stub:DefaultNullableTypeTest" ,"Stub:TopTypeTypeTest" ,"Stub:UnreachableTypeTest" ,"Stub:SlowTypeTest" ,"Stub:LazySpecializeTypeTest" ,"Stub:LazySpecializeNullableTypeTest" ,"Stub:CallClosureNoSuchMethod" ,"Stub:FrameAwaitingMaterialization" ,"Stub:AsynchronousGapMarker" ,"Stub:DispatchTableNullError" ,"Stub:NullErrorSharedWithFPURegs" ,"Stub:NullErrorSharedWithoutFPURegs" ,"Stub:NullArgErrorSharedWithFPURegs" ,"Stub:NullArgErrorSharedWithoutFPURegs" ,"Stub:RangeErrorSharedWithFPURegs" ,"Stub:RangeErrorSharedWithoutFPURegs" ,"Stub:StackOverflowSharedWithFPURegs" ,"Stub:StackOverflowSharedWithoutFPURegs" ,"Stub:OneArgCheckInlineCacheWithExactnessCheck" ,"Stub:OneArgOptimizedCheckInlineCacheWithExactnessCheck" ,"Stub:EnterSafepoint" ,"Stub:ExitSafepoint" ,"Stub:CallNativeThroughSafepoint" ,"Stub:InitStaticField" ,"Stub:InitInstanceField" ,"Stub:InitLateInstanceField" ,"Stub:InitLateFinalInstanceField" ,"Stub:Throw" ,"Stub:ReThrow" ,"Stub:AssertBoolean" ,"Stub:InstanceOf" ,"Stub:InstantiateTypeArguments" ,"Stub:InstantiateTypeArgumentsMayShareInstantiatorTA" ,"Stub:InstantiateTypeArgumentsMayShareFunctionTA" ,"Stub:NoSuchMethodDispatcher" ,"Unnamed [(RO) _OneByteString] (nil)" ,"_kDartVmSnapshotInstructions" ,"Precompiled_Stub_NoSuchMethodDispatcher" ,"Precompiled_Stub_InstantiateTypeArgumentsMayShareFunctionTA" ,"Precompiled_Stub_InstantiateTypeArgumentsMayShareInstantiatorTA" ,"Precompiled_Stub_InstantiateTypeArguments" ,"Precompiled_Stub_InstanceOf" ,"Precompiled_Stub_AssertBoolean" ,"Precompiled_Stub_ReThrow" ,"Precompiled_Stub_Throw" ,"Precompiled_Stub_InitLateFinalInstanceField" ,"Precompiled_Stub_InitLateInstanceField" ,"Precompiled_Stub_InitInstanceField" ,"Precompiled_Stub_InitStaticField" ,"Precompiled_Stub_CallNativeThroughSafepoint" ,"Precompiled_Stub_ExitSafepoint" ,"Precompiled_Stub_EnterSafepoint" ,"Precompiled_Stub_OneArgOptimizedCheckInlineCacheWithExactnessCheck" ,"Precompiled_Stub_OneArgCheckInlineCacheWithExactnessCheck" ,"Precompiled_Stub_StackOverflowSharedWithoutFPURegs" ,"Precompiled_Stub_StackOverflowSharedWithFPURegs" ,"Precompiled_Stub_RangeErrorSharedWithoutFPURegs" ,"Precompiled_Stub_RangeErrorSharedWithFPURegs" ,"Precompiled_Stub_NullArgErrorSharedWithoutFPURegs" ,"Precompiled_Stub_NullArgErrorSharedWithFPURegs" ,"Precompiled_Stub_NullErrorSharedWithoutFPURegs" ,"Precompiled_Stub_NullErrorSharedWithFPURegs" ,"Precompiled_Stub_DispatchTableNullError" ,"Precompiled_Stub_AsynchronousGapMarker" ,"Precompiled_Stub_FrameAwaitingMaterialization" ,"Precompiled_Stub_CallClosureNoSuchMethod" ,"Precompiled_Stub_LazySpecializeNullableTypeTest" ,"Precompiled_Stub_LazySpecializeTypeTest" ,"Precompiled_Stub_SlowTypeTest" ,"Precompiled_Stub_UnreachableTypeTest" ,"Precompiled_Stub_TopTypeTypeTest" ,"Precompiled_Stub_DefaultNullableTypeTest" ,"Precompiled_Stub_DefaultTypeTest" ,"Precompiled_Stub_Subtype6TestCache" ,"Precompiled_Stub_Subtype4TestCache" ,"Precompiled_Stub_Subtype2TestCache" ,"Precompiled_Stub_Subtype1TestCache" ,"Precompiled_Stub_TwoArgsUnoptimizedStaticCall" ,"Precompiled_Stub_OneArgUnoptimizedStaticCall" ,"Precompiled_Stub_ZeroArgsUnoptimizedStaticCall" ,"Precompiled_Stub_TwoArgsOptimizedCheckInlineCache" ,"Precompiled_Stub_OneArgOptimizedCheckInlineCache" ,"Precompiled_Stub_SmiEqualInlineCache" ,"Precompiled_Stub_SmiLessInlineCache" ,"Precompiled_Stub_SmiAddInlineCache" ,"Precompiled_Stub_TwoArgsCheckInlineCache" ,"Precompiled_Stub_OneArgCheckInlineCache" ,"Precompiled_Stub_RuntimeCallBreakpoint" ,"Precompiled_Stub_UnoptStaticCallBreakpoint" ,"Precompiled_Stub_ICCallBreakpoint" ,"Precompiled_Stub_OptimizedIdenticalWithNumberCheck" ,"Precompiled_Stub_UnoptimizedIdenticalWithNumberCheck" ,"Precompiled_Stub_DeoptimizeLazyFromThrow" ,"Precompiled_Stub_DeoptimizeLazyFromReturn" ,"Precompiled_Stub_Deoptimize" ,"Precompiled_Stub_FixAllocationStubTarget" ,"Precompiled_Stub_MegamorphicCall" ,"Precompiled_Stub_ICCallThroughCode" ,"Precompiled_Stub_SingleTargetCall" ,"Precompiled_Stub_MonomorphicSmiableCheck" ,"Precompiled_Stub_SwitchableCallMiss" ,"Precompiled_Stub_DebugStepCheck" ,"Precompiled_Stub_InvokeDartCodeFromBytecode" ,"Precompiled_Stub_InvokeDartCode" ,"Precompiled_Stub_OptimizeFunction" ,"Precompiled_Stub_CallStaticFunction" ,"Precompiled_Stub_FixCallersTarget" ,"Precompiled_Stub_CallAutoScopeNative" ,"Precompiled_Stub_CallNoScopeNative" ,"Precompiled_Stub_CallBootstrapNative" ,"Precompiled_Stub_InterpretCall" ,"Precompiled_Stub_LazyCompile" ,"Precompiled_Stub_CallToRuntime" ,"Precompiled_Stub_CloneContext" ,"Precompiled_Stub_AllocateObjectSlow" ,"Precompiled_Stub_AllocateObjectParameterized" ,"Precompiled_Stub_AllocateObject" ,"Precompiled_Stub_AllocateContext" ,"Precompiled_Stub_AllocateMintSharedWithoutFPURegs" ,"Precompiled_Stub_AllocateMintSharedWithFPURegs" ,"Precompiled_Stub_AllocateArray" ,"Precompiled_Stub_PrintStopMessage" ,"Precompiled_Stub_ArrayWriteBarrier" ,"Precompiled_Stub_WriteBarrierWrappers" ,"Precompiled_Stub_WriteBarrier" ,"Precompiled_Stub_DeoptForRewind" ,"Precompiled_Stub_RunExceptionHandler" ,"Precompiled_Stub_JumpToFrame" ,"Precompiled_Stub_GetCStackPointer" ,"Unnamed [Class] (nil)" ,"Unnamed [ObjectPool] (nil)" ,"Unnamed [PcDescriptors] (nil)" ,"Unnamed [CodeSourceMap] (nil)" ,"Unnamed [CompressedStackMaps] (nil)" ,"Unnamed [ExceptionHandlers] (nil)" ,"Unnamed [TypeArguments] (nil)" ,"dart:core\/iterable.dart" ,"get:first" ,"skip" ,"skipWhile" ,"get:isNotEmpty" ,"join" ,"growable" ,"dart:core\/list.dart" ,"dart:_internal\/iterable.dart" ,"EfficientLengthIterable" ,"dyn:add" ,"dyn:[]" ,"dart:collection\/list.dart" ,"dyn:+" ,"contains" ,"get:contains" ,"get:isEmpty" ,"dart:core\/iterator.dart" ,"Iterator" ,"get:iterator" ,"_CastIterableBase@11040228" ,"dart:core\/comparable.dart" ,"Comparable" ,"compare" ,"_compareAny@3220832" ,"ListMixin" ,"elementAt" ,"expand" ,"where" ,"get:reversed" ,"lastIndexWhere" ,"get:last" ,"sublist" ,"forEach" ,"orElse" ,"test" ,"firstWhere" ,"dart:core\/set.dart" ,"get:add" ,"Internal_inquireIs64Bit" ,"_inquireIs64Bit@11040228" ,"dart:_internal-patch\/internal_patch.dart" ,"noname" ,"_receiver_" ,"dart:_internal\/print.dart" ,"printToZone" ,"dart:_internal-patch\/print_patch.dart" ,"init:_printClosure@11040228" ,"_printClosure@11040228" ,"printToConsole" ,"dart:core\/stacktrace.dart" ,"StackTrace" ,"dart:core-patch\/errors_patch.dart" ,"_stackTrace@0150898" ,"get:stackTrace" ,"Object_toString" ,"dart:core-patch\/object_patch.dart" ,"_toString@0150898" ,"_objectToString@0150898" ,"toEncodable" ,"dart:convert\/codec.dart" ,"Codec" ,"dart:convert\/json.dart" ,"RT" ,"RS" ,"dart:async\/stream.dart" ,"StreamTransformer" ,"StreamTransformerBase" ,"dart:convert\/converter.dart" ,"ST" ,"SS" ,"TT" ,"TS" ,"dart:_internal\/async_cast.dart" ,"CastConverter" ,"Converter" ,"convert" ,"JsonEncoder" ,"get:encoder" ,"reviver" ,"source" ,"decode" ,"JsonCodec" ,"encode" ,"_stringToSafeString@0150898" ,"safeToString" ,"set:_stackTrace@0150898" ,"get:_stackTrace@0150898" ,"get:_errorExplanation@0150898" ,"get:_errorName@0150898" ,"checkNotNull" ,"ArgumentError.value" ,"ArgumentError." ,"message" ,"get:message" ,"dart:core\/errors.dart" ,"checkValidRange" ,"IndexError" ,"IndexError." ,"checkValidIndex" ,"checkValueInInterval" ,"RangeError.value" ,"RangeError." ,"end" ,"dart:core\/num.dart" ,"Double_parse" ,"dart:core-patch\/double_patch.dart" ,"dart:core\/double.dart" ,"Expected envelope, got nothing" ,"Invalid envelope" ,"Invalid method call" ,"Message corrupted" ,"dart:core\/exceptions.dart" ,"_Exception@0150898" ,"Exception." ,"Exception" ,"FormatException." ,"parse" ,"_tryParseDouble@0150898" ,"_nativeParse@0150898" ,"dart:core-patch\/integers_patch.dart" ,"dart:core\/int.dart" ,"TypedData_Int64Array_new" ,"dart:typed_data-patch\/typed_data_patch.dart" ,"TypedData" ,"_TypedIntList@7027147" ,"init:_int64OverflowLimits@0150898" ,"_int64OverflowLimits@0150898" ,"radix" ,"_allocate@0150898" ,"_concatAll@0150898" ,"String_concatRange" ,"StringBase_joinReplaceAllResult" ,"_joinReplaceAllResult@0150898" ,"List_allocate" ,"_List@0150898." ,"dart:core-patch\/growable_array.dart" ,"init:_emptyList@0150898" ,"_emptyList@0150898" ,"get:_emptyList@0150898" ,"_allocateData@0150898" ,"_grow@0150898" ,"_addReplaceSlice@0150898" ,"GrowableList_allocate" ,"_GrowableList@0150898._withData@0150898" ,"_GrowableList@0150898." ,"_setAt@0150898" ,"_setRange@0150898" ,"get:_isOneByte@0150898" ,"replaceRange" ,"replaceFirst" ,"dyn:replaceFirst" ,"String_concat" ,"String_charAt" ,"dart:core-patch\/string_patch.dart" ,"Integer_bitOrFromInteger" ,"_bitOrFromInteger@0150898" ,"TwoByteString_allocateFromTwoByteList" ,"_allocateFromTwoByteList@0150898" ,"_createStringFromIterable@0150898" ,"get:codeUnits" ,"String_getHashCode" ,"get:_identityHashCode@0150898" ,"dart:core\/pattern.dart" ,"Pattern" ,"_substringMatches@0150898" ,"String_getLength" ,"trimRight" ,"substring" ,"lastIndexOf" ,"_lastNonWhitespace@0150898" ,"_substringUnchecked@0150898" ,"Match" ,"_matchString@0150898" ,"dart:core\/string.dart" ,"BidirectionalIterator" ,"get:current" ,"RuneIterator" ,"Runes" ,"get:runes" ,"_splitMapJoinEmptyString@0150898" ,"split" ,"StringBase_substringUnchecked" ,"_substringUncheckedNative@0150898" ,"_firstNonWhitespace@0150898" ,"String_toLowerCase" ,"toLowerCase" ,"dart:core-patch\/string_buffer_patch.dart" ,"dart:core\/string_buffer.dart" ,"dart:core\/string_sink.dart" ,"StringSink" ,"writeln" ,"writeAll" ,"TypedData_Uint16Array_new" ,"writeCharCode" ,"StringBuffer_createStringFromUint16Array" ,"_create@0150898" ,"_shrink@0150898" ,"set:length" ,"_compact@0150898" ,"_addPart@0150898" ,"_consumeBuffer@0150898" ,"_ensureCapacity@0150898" ,"StringBuffer." ,"_bufferPosition@0150898" ,"set:_bufferPosition@0150898" ,"StringBuffer" ,"write" ,"String.fromCharCode" ,"String.fromCharCodes" ,"dart:core-patch\/regexp_patch.dart" ,"dart:core\/regexp.dart" ,"RegExpMatch" ,"get:groupCount" ,"group" ,"_start@0150898" ,"get:start" ,"_RegExpMatch@0150898" ,"_end@0150898" ,"[email protected]" ,"_AllMatchesIterator@0150898" ,"dart:collection\/iterable.dart" ,"dart:collection\/splay_tree.dart" ,"_defaultCompare@3220832" ,"_dynamicCompare@3220832" ,"_iterablePartsToStrings@3220832" ,"dart:collection\/hash_map.dart" ,"_defaultHashCode@3220832" ,"_defaultEquals@3220832" ,"dart:collection-patch\/compact_hash.dart" ,"_rehashObjects@3220832" ,"init:_toStringVisiting@3220832" ,"_toStringVisiting@3220832" ,"get:_toStringVisiting@3220832" ,"_isToStringVisiting@3220832" ,"iterableToFullString" ,"iterableToShortString" ,"IterableBase" ,"_AllMatchesIterable@0150898" ,"onNonMatch" ,"onMatch" ,"pattern" ,"splitMapJoin" ,"startsWith" ,"indexOf" ,"_concatRange@0150898" ,"matchAsPrefix" ,"padRight" ,"padLeft" ,"endsWith" ,"compareTo" ,"_interpolateSingle@0150898" ,"createFromCharCodes" ,"trimLeft" ,"_joinReplaceAllOneByteResult@0150898" ,"_createOneByteString@0150898" ,"replaceAll" ,"trim" ,"_scanCodeUnits@0150898" ,"allMatches" ,"StringBase_createFromCodePoints" ,"_createFromCodePoints@0150898" ,"String_toUpperCase" ,"toUpperCase" ,"_stringIdentity@0150898" ,"_StringBase@0150898" ,"_concatRangeNative@0150898" ,"_interpolate@0150898" ,"_remainderFromInteger@0150898" ,"remainder" ,"Integer_truncDivFromInteger" ,"_truncDivFromInteger@0150898" ,"onError" ,"_initInt64OverflowLimits@0150898" ,"_parseBlock@0150898" ,"_parseRadix@0150898" ,"_throwFormatException@0150898" ,"_kNull@0150898" ,"_parse@0150898" ,"get:_int64OverflowLimits@0150898" ,"_tryParseSmi@0150898" ,"Double_doubleFromInteger" ,"[email protected]" ,"toDouble" ,"tryParse" ,"get:end" ,"RangeError.range" ,"checkNotNegative" ,"_checkCount@11040228" ,"Isolate_spawnFunction" ,"spawnFunction" ,"Internal_writeIntoOneByteString" ,"writeIntoOneByteString" ,"Internal_allocateOneByteString" ,"allocateOneByteString" ,"Internal_allocateTwoByteString" ,"allocateTwoByteString" ,"get:_printClosure@11040228" ,"Internal_boundsCheckForPartialInstantiation" ,"_boundsCheckForPartialInstantiation@11040228" ,"Internal_makeListFixedLength" ,"makeListFixedLength" ,"Internal_prependTypeArguments" ,"_prependTypeArguments@11040228" ,"Internal_makeFixedListUnmodifiable" ,"makeFixedListUnmodifiable" ,"_classRangeCheck@11040228" ,"parseHexByte" ,"Internal_writeIntoTwoByteString" ,"writeIntoTwoByteString" ,"UnsupportedError." ,"_unsupportedPrint@11040228" ,"init:is64Bit" ,"is64Bit" ,"get:is64Bit" ,"LinkedHashMap_setIndex" ,"set:_index@3220832" ,"_HashVMBase@3220832" ,"_setDeletedAt@3220832" ,"_nextProbe@3220832" ,"_firstProbe@3220832" ,"_hashPattern@3220832" ,"_HashBase@3220832" ,"_indexSizeToHashMask@3220832" ,"TypedData_Uint32Array_new" ,"_usedData@3220832" ,"set:_usedData@3220832" ,"_HashFieldBase@3220832" ,"_HashFieldBase@3220832." ,"_isModifiedSince@3220832" ,"get:_checkSum@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase@3220832." ,"_OperatorEqualsAndHashCode@3220832" ,"_equals@3220832" ,"_hashCode@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode@3220832." ,"dart:collection\/set.dart" ,"SetMixin" ,"map" ,"_IdenticalAndIdentityHashCode@3220832" ,"__CompactLinkedIdentityHashSet&_CompactLinkedHashSet&_IdenticalAndIdentityHashCode@3220832." ,"__CompactLinkedIdentityHashSet&_CompactLinkedHashSet&_IdenticalAndIdentityHashCode@3220832" ,"_newEmpty@3220832" ,"_CompactLinkedIdentityHashSet@3220832." ,"_CompactLinkedIdentityHashSet@3220832" ,"dart:collection-patch\/collection_patch.dart" ,"get:test" ,"_TypeTest@3220832" ,"remove" ,"_CompactLinkedCustomHashSet@3220832" ,"_CompactLinkedCustomHashSet@3220832." ,"difference" ,"intersection" ,"removeAll" ,"addAll" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode&SetMixin@3220832" ,"__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode&SetMixin@3220832." ,"_CompactLinkedHashSet@3220832." ,"isValidKey" ,"hashCode" ,"equals" ,"dart:collection\/linked_hash_set.dart" ,"LinkedHashSet.of" ,"LinkedHashSet.from" ,"LinkedHashSet" ,"LinkedHashSet." ,"_conditionalAdd@11040228" ,"CastSet" ,"newSet" ,"Set" ,"toSet" ,"fold" ,"take" ,"__CastListBase&_CastIterableBase&ListMixin@11040228" ,"setRange" ,"removeAt" ,"insertAll" ,"insert" ,"sort" ,"_CastListBase@11040228" ,"CastList" ,"castFrom" ,"dart:core-patch\/array_patch.dart" ,"List.unmodifiable" ,"generator" ,"List.generate" ,"List.of" ,"elements" ,"List.from" ,"List.empty" ,"fill" ,"List._fromLiteral@0150898" ,"toList" ,"get:single" ,"Iterable" ,"cast" ,"dyn:cast" ,"dart:_internal\/cast.dart" ,"CastIterable" ,"_EfficientLengthCastIterable@11040228" ,"CastIterable." ,"getRange" ,"fillRange" ,"dyn:fillRange" ,"ConcurrentModificationError" ,"any" ,"removeWhere" ,"_createBiggerBuffer@489432058" ,"TypedData_Uint8Array_new" ,"TypedData_setRange" ,"_setRange@7027147" ,"_TypedListBase@7027147" ,"TypedDataView_length" ,"TypedDataView_offsetInBytes" ,"get:offsetInBytes" ,"ByteBuffer" ,"_DoubleListMixin@7027147" ,"__Float32ArrayView&_TypedListView&_DoubleListMixin@7027147" ,"SpawnedType" ,"_TypedDoubleListMixin@7027147" ,"__Float64ArrayView&_TypedListView&_DoubleListMixin&_TypedDoubleListMixin@7027147" ,"_createList@7027147" ,"get:elementSizeInBytes" ,"TypedDataView_Float64ArrayView_new" ,"_Float64ArrayView@7027147._@7027147" ,"_Float64ArrayView@7027147" ,"Integer_moduloFromInteger" ,"_moduloFromInteger@0150898" ,"_rangeCheck@7027147" ,"_toUint32@7027147" ,"_toInt32@7027147" ,"_toUint16@7027147" ,"_toInt16@7027147" ,"_toClampedUint8@7027147" ,"_toUint8@7027147" ,"_toInt8@7027147" ,"_toInt@7027147" ,"_byteSwap32@7027147" ,"_offsetAlignmentCheck@7027147" ,"_TypedFloatList@7027147" ,"TypedData_Float64Array_new" ,"asFloat64List" ,"_IntListMixin@7027147" ,"_TypedIntListMixin@7027147" ,"__Int64ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"TypedDataView_Int64ArrayView_new" ,"_Int64ArrayView@7027147._@7027147" ,"_Int64ArrayView@7027147" ,"asInt64List" ,"__Int32ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"TypedDataView_Int32ArrayView_new" ,"_Int32ArrayView@7027147._@7027147" ,"_Int32ArrayView@7027147" ,"TypedData_Int32Array_new" ,"asInt32List" ,"__Int8ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"TypedDataView_Int8ArrayView_new" ,"_Int8ArrayView@7027147._@7027147" ,"_Int8ArrayView@7027147" ,"Int8List.fromList" ,"TypedData_Int8Array_new" ,"asInt8List" ,"TypedDataView_ByteDataView_new" ,"_ByteDataView@7027147._@7027147" ,"getUint32" ,"getUint8" ,"setUint32" ,"getInt32" ,"setFloat32" ,"setInt64" ,"getUint16" ,"setFloat64" ,"getFloat64" ,"getInt64" ,"setInt32" ,"setUint16" ,"get:lengthInBytes" ,"_ByteDataView@7027147" ,"ByteData.view" ,"ByteData._view@7027147" ,"asByteData" ,"_ByteBuffer@7027147._New@7027147" ,"_ByteBuffer@7027147" ,"get:buffer" ,"_TypedListView@7027147" ,"__Int8ArrayView&_TypedListView&_IntListMixin@7027147" ,"__Uint8ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"TypedDataView_Uint8ArrayView_new" ,"_Uint8ArrayView@7027147._@7027147" ,"_Uint8ArrayView@7027147" ,"asUint8List" ,"Uint8List.view" ,"Uint8List.fromList" ,"_IntBuffer@489432058" ,"Uint8Buffer." ,"Uint8Buffer" ,"_createBuffer@489432058" ,"_closeGap@3220832" ,"WhereTypeIterable" ,"whereType" ,"StateError" ,"tooFew" ,"tooMany" ,"IterableElementError" ,"noElement" ,"lastWhere" ,"_filter@3220832" ,"_ListBase&Object&ListMixin@3220832" ,"listToString" ,"ListBase" ,"@489432058" ,"package:typed_data\/typed_buffers.dart" ,"typed_data.typed_buffers" ,"_reverse@489432058" ,"_grow@489432058" ,"_insertKnownLength@489432058" ,"_addAll@489432058" ,"_ensureCapacity@489432058" ,"_add@489432058" ,"_TypedDataBuffer@489432058" ,"_setRange@489432058" ,"AssertionError" ,"get:_messageString@0150898" ,"_evaluateAssertion@0150898" ,"AssertionError_throwNew" ,"_doThrowNew@0150898" ,"_throwNew@0150898" ,"_AssertionError@0150898._create@0150898" ,"_AssertionError@0150898" ,"UnimplementedError" ,"describeEnum" ,"_minInt64ToRadixString@0150898" ,"_toPow2String@0150898" ,"toRadixString" ,"describeIdentity" ,"shortHash" ,"get:value" ,"DiagnosticableNode" ,"minLevel" ,"toStringShort" ,"_DiagnosticableTree&Object&Diagnosticable@200198569." ,"_DiagnosticableTree&Object&Diagnosticable@200198569" ,"DiagnosticableTree." ,"DiagnosticableTree" ,"_NoDefaultValue@200198569" ,"_maybeCacheValue@200198569" ,"DiagnosticsProperty" ,"parentConfiguration" ,"allowWrap" ,"level" ,"style" ,"DiagnosticsNode.message" ,"DiagnosticsNode" ,"Diagnosticable" ,"TextTreeConfiguration" ,"DiagnosticsTreeStyle.singleLine" ,"DiagnosticsTreeStyle.truncateChildren" ,"DiagnosticsTreeStyle.error" ,"DiagnosticsTreeStyle.shallow" ,"DiagnosticsTreeStyle" ,"DiagnosticLevel.hidden" ,"DiagnosticLevel.summary" ,"DiagnosticLevel.info" ,"DiagnosticLevel.hint" ,"DiagnosticLevel" ,"DiagnosticableTreeNode" ,"@200198569" ,"package:flutter\/src\/foundation\/diagnostics.dart" ,"DiagnosticableTreeMixin" ,"_FlutterError&Error&DiagnosticableTreeMixin@191022608" ,"ErrorHint." ,"ErrorHint" ,"init:propertiesTransformers" ,"propertiesTransformers" ,"toDiagnosticsNode" ,"US" ,"en" ,"dart:ui\/lerp.dart" ,"dart:ui\/text.dart" ,"dart:ui\/semantics.dart" ,"dart:ui\/pointer.dart" ,"dart:ui\/natives.dart" ,"dart:ui\/hash_codes.dart" ,"dart:ui\/geometry.dart" ,"dart:ui\/compositing.dart" ,"dart:ui\/annotations.dart" ,"dart:ui\/painting.dart" ,"dart:ui\/hooks.dart" ,"dart:ui\/channel_buffers.dart" ,"Window_setNeedsReportTimings" ,"_nativeSetNeedsReportTimings@16065589" ,"get:_nativeSetNeedsReportTimings@16065589" ,"Window._@16065589" ,"init:window" ,"window" ,"_InternalLinkedHashMap@3220832." ,"dart:collection\/linked_hash_map.dart" ,"dart:core\/map.dart" ,"RV" ,"RK" ,"SV" ,"SK" ,"MapMixin" ,"dart:collection\/maps.dart" ,"_fillMapWithIterables@3220832" ,"mapToString" ,"MapBase" ,"get:keys" ,"containsKey" ,"CastMap" ,"V2" ,"K2" ,"LinkedHashMap.from" ,"MapView" ,"_UnmodifiableMapMixin@3220832" ,"_UnmodifiableMapView&MapView&_UnmodifiableMapMixin@3220832" ,"UnmodifiableMapView" ,"dart:core-patch\/map_patch.dart" ,"Map.unmodifiable" ,"Map." ,"LinkedHashMap.fromIterables" ,"_regenerateIndex@3220832" ,"dyn:_regenerateIndex@3220832" ,"updateAll" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin@3220832." ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin@3220832" ,"_LinkedHashMapMixin@3220832" ,"_insert@3220832" ,"putIfAbsent" ,"_getValueOrData@3220832" ,"_findValueOrInsertPoint@3220832" ,"_init@3220832" ,"get:values" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin@3220832." ,"_rehash@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase@3220832." ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase@3220832" ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase&_IdenticalAndIdentityHashCode@3220832." ,"__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase&_IdenticalAndIdentityHashCode@3220832" ,"_CompactLinkedIdentityHashMap@3220832." ,"_CompactLinkedIdentityHashMap@3220832" ,"LinkedHashMap.identity" ,"LinkedHashMap" ,"LinkedHashMap." ,"Map._fromLiteral@0150898" ,"_StoredMessage@16065589" ,"_onDropItem@16065589" ,"get:_onDropItem@16065589" ,"Logger_PrintString" ,"Logger_PrintDebugString" ,"_printDebugString@16065589" ,"_Logger@16065589" ,"_printString@16065589" ,"CastQueue" ,"Queue" ,"ListIterable" ,"dart:collection\/queue.dart" ,"_tail@3220832" ,"set:_tail@3220832" ,"_add@3220832" ,"_preGrow@3220832" ,"addFirst" ,"_nextPowerOf2@3220832" ,"_grow@3220832" ,"ListQueue." ,"_calculateCapacity@3220832" ,"_checkModification@3220832" ,"addLast" ,"_writeToList@3220832" ,"ListQueue" ,"removeFirst" ,"pop" ,"push" ,"set:dropItemCallback" ,"_RingBuffer@16065589." ,"_RingBuffer@16065589" ,"_dropOverflowItems@16065589" ,"resize" ,"dyn:[]=" ,"key" ,"get:key" ,"MapEntry" ,"get:entries" ,"__InternalLinkedHashMap&_HashVMBase&MapMixin@3220832" ,"get:remove" ,"__InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin@3220832" ,"__InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin&_HashBase@3220832" ,"__InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin&_HashBase&_OperatorEqualsAndHashCode@3220832" ,"allowMalformed" ,"codeUnits" ,"dart:convert\/encoding.dart" ,"Encoding" ,"dart:convert\/utf.dart" ,"Utf8Encoder" ,"Utf8Codec" ,"handleMessage" ,"_getString@16065589" ,"dart:async-patch\/schedule_microtask_patch.dart" ,"_setScheduleImmediateClosure@4048458" ,"dart:async\/schedule_microtask.dart" ,"init:_isInCallbackLoop@4048458" ,"_isInCallbackLoop@4048458" ,"next" ,"set:next" ,"get:next" ,"_AsyncCallbackEntry@4048458" ,"_lastPriorityCallback@4048458" ,"_lastCallback@4048458" ,"_nextCallback@4048458" ,"dart:async\/zone.dart" ,"init:_current@4048458" ,"_current@4048458" ,"inSameErrorZone" ,"_AsyncRun@4048458" ,"_scheduleImmediate@4048458" ,"ZoneDelegate" ,"_rootHandleUncaughtError@4048458" ,"_rootDelegate@4048458" ,"HashMap.from" ,"HashMap" ,"set:value" ,"dyn:set:value" ,"_HashMapEntry@3220832" ,"_resize@3220832" ,"_HashMap@3220832." ,"_addEntry@3220832" ,"_removeEntry@3220832" ,"containsValue" ,"_HashMap@3220832" ,"_CustomHashMap@3220832" ,"_CustomHashMap@3220832." ,"_IdentityHashMap@3220832." ,"_IdentityHashMap@3220832" ,"HashMap." ,"init:_rootMap@4048458" ,"_rootMap@4048458" ,"runUnary" ,"get:_parentDelegate@4048458" ,"get:_delegate@4048458" ,"zoneValues" ,"specification" ,"fork" ,"get:_print@4048458" ,"dyn:*" ,"dyn:-" ,"dart:core\/duration.dart" ,"get:inMinutes" ,"get:inMicroseconds" ,"get:inMilliseconds" ,"get:inSeconds" ,"get:inHours" ,"microseconds" ,"milliseconds" ,"seconds" ,"minutes" ,"hours" ,"days" ,"Duration." ,"Duration" ,"dart:async\/timer.dart" ,"dart:async-patch\/timer_patch.dart" ,"_createPeriodicTimer@4048458" ,"_createTimer@4048458" ,"run" ,"Timer.periodic" ,"Timer." ,"Timer" ,"get:_createTimer@4048458" ,"bindCallbackGuarded" ,"T2" ,"T1" ,"registerBinaryCallback" ,"handleUncaughtError" ,"get:_createPeriodicTimer@4048458" ,"bindUnaryCallbackGuarded" ,"get:_map@4048458" ,"defaultStackTrace" ,"AsyncError." ,"stackTrace" ,"AsyncError" ,"get:_errorCallback@4048458" ,"runUnaryGuarded" ,"_ZoneSpecification@4048458" ,"createPeriodicTimer" ,"createTimer" ,"scheduleMicrotask" ,"errorCallback" ,"registerUnaryCallback" ,"registerCallback" ,"runBinary" ,"ZoneSpecification.from" ,"ZoneSpecification" ,"get:_fork@4048458" ,"runBinaryGuarded" ,"get:errorZone" ,"bindCallback" ,"get:_rootMap@4048458" ,"bindUnaryCallback" ,"get:_scheduleMicrotask@4048458" ,"runGuarded" ,"_RootZone@4048458" ,"_rootPrint@4048458" ,"_handleUncaughtError@4048458" ,"_scheduleMicrotask@4048458" ,"_CustomZone@4048458" ,"_CustomZone@4048458." ,"_rootFork@4048458" ,"_rootCreateTimer@4048458" ,"_rootCreatePeriodicTimer@4048458" ,"_rootScheduleMicrotask@4048458" ,"_rootErrorCallback@4048458" ,"_ZoneFunction@4048458" ,"get:_handleUncaughtError@4048458" ,"_Zone@4048458" ,"_enter@4048458" ,"Zone" ,"get:_current@4048458" ,"dart:async\/stream_pipe.dart" ,"_addErrorWithReplacement@4048458" ,"dart:async-patch\/async_patch.dart" ,"_completeOnAsyncReturn@4048458" ,"dart:async\/stream_impl.dart" ,"_nullDoneHandler@4048458" ,"_rootRun@4048458" ,"_printToZone@4048458" ,"_runZoned@4048458" ,"_rootRegisterUnaryCallback@4048458" ,"dart:async\/stream_controller.dart" ,"_runGuarded@4048458" ,"StackTrace_setAsyncThreadStackTrace" ,"_setAsyncThreadStackTrace@4048458" ,"_schedulePriorityAsyncCallback@4048458" ,"_scheduleAsyncCallback@4048458" ,"_asyncStarMoveNextHelper@4048458" ,"_microtaskLoop@4048458" ,"_nullErrorHandler@4048458" ,"_rootRunUnary@4048458" ,"dart:async\/future_impl.dart" ,"_resultOrListeners@4048458" ,"[email protected]" ,"get:_chainSource@4048458" ,"_chainCoreFuture@4048458" ,"_setErrorObject@4048458" ,"set:_resultOrListeners@4048458" ,"_asyncComplete@4048458" ,"_setPendingComplete@4048458" ,"_propagateToListeners@4048458" ,"_completeError@4048458" ,"_completeWithValue@4048458" ,"_prependListeners@4048458" ,"_clearPendingComplete@4048458" ,"_setChained@4048458" ,"whenComplete" ,"_setError@4048458" ,"_setValue@4048458" ,"_chainFuture@4048458" ,"get:_completeError@4048458" ,"_asyncCompleteWithValue@4048458" ,"get:_error@4048458" ,"[email protected]" ,"_asyncCompleteError@4048458" ,"dart:core\/function.dart" ,"handleWhenComplete" ,"dart:async\/future.dart" ,"handleError" ,"matchesErrorTest" ,"handleValue" ,"get:hasErrorCallback" ,"get:_whenCompleteAction@4048458" ,"get:_errorTest@4048458" ,"get:_onValue@4048458" ,"[email protected]" ,"get:callback" ,"_FutureListener@4048458" ,"_removeListeners@4048458" ,"_Future@4048458." ,"_chainForeignFuture@4048458" ,"_reverseListeners@4048458" ,"[email protected]" ,"get:_resultOrListeners@4048458" ,"_complete@4048458" ,"_Future@4048458" ,"_cloneResult@4048458" ,"_addListener@4048458" ,"_thenAwait@4048458" ,"LateInitializationError" ,"_LateInitializationError@0150898." ,"_LateInitializationError@0150898" ,"_awaitHelper@4048458" ,"_rootRunBinary@4048458" ,"_registerErrorHandler@4048458" ,"_rootRegisterBinaryCallback@4048458" ,"zoneSpecification" ,"body" ,"runZonedGuarded" ,"_rootRegisterCallback@4048458" ,"_ensureScheduleImmediate@4048458" ,"Async_rethrow" ,"_rethrow@4048458" ,"_asyncThenWrapperHelper@4048458" ,"_nullDataHandler@4048458" ,"_startMicrotaskLoop@4048458" ,"DartAsync_fatal" ,"_fatal@4048458" ,"_asyncErrorWrapperHelper@4048458" ,"AsyncStarMoveNext_debuggerStepCheck" ,"_moveNextDebuggerStepCheck@4048458" ,"get:isCompleted" ,"completeError" ,"_Completer@4048458" ,"_Completer@4048458." ,"complete" ,"_SyncCompleter@4048458." ,"_SyncCompleter@4048458" ,"Completer." ,"_future@4048458" ,"get:complete" ,"_AsyncAwaitCompleter@4048458." ,"set:isSync" ,"get:isSync" ,"get:_future@4048458" ,"_AsyncAwaitCompleter@4048458" ,"drain" ,"_resize@16065589" ,"_isEmpty@16065589" ,"_pop@16065589" ,"_printDebug@16065589" ,"_makeRingBuffer@16065589" ,"ChannelBuffers." ,"ChannelBuffers" ,"init:channelBuffers" ,"channelBuffers" ,"alphaBlend" ,"Color." ,"get:opacity" ,"withAlpha" ,"get:red" ,"get:green" ,"Double_toInt" ,"toInt" ,"Double_round" ,"roundToDouble" ,"round" ,"getAlphaFromOpacity" ,"withOpacity" ,"get:blue" ,"lerp" ,"computeLuminance" ,"Color.fromARGB" ,"get:alpha" ,"Color" ,"quaternarySystemFill" ,"label" ,"inactiveGray" ,"systemBackground" ,"systemBlue" ,"_CupertinoDynamicColor&Color&Diagnosticable@164482824" ,"@164482824" ,"package:flutter\/src\/cupertino\/colors.dart" ,"nullOk" ,"context" ,"resolveFrom" ,"get:_isInterfaceElevationDependent@164482824" ,"get:_isHighContrastDependent@164482824" ,"get:_isPlatformBrightnessDependent@164482824" ,"resolvable" ,"resolve" ,"CupertinoDynamicColor" ,"_encodeTextStyle@16065589" ,"_print@16065589" ,"_getLocaleClosure@16065589" ,"get:channelBuffers" ,"_invoke1@16065589" ,"_updateAlwaysUse24HourFormat@16065589" ,"_scaleAlpha@16065589" ,"_dispatchSemanticsAction@16065589" ,"_runMainZoned@16065589" ,"_lerpDouble@16065589" ,"_updateTextScaleFactor@16065589" ,"_updateLocales@16065589" ,"_updateSemanticsEnabled@16065589" ,"_getScheduleMicrotaskClosure@16065589" ,"_Jenkins@16065589" ,"combine" ,"hashList" ,"_futurize@16065589" ,"lerpDouble" ,"_invoke@16065589" ,"_getPrintClosure@16065589" ,"_encodeColorList@16065589" ,"_encodeParagraphStyle@16065589" ,"_setupHooks@16065589" ,"TypedData_Float32Array_new" ,"Float32List.fromList" ,"OffsetBase" ,"Rect.fromCircle" ,"get:bottomRight" ,"get:topRight" ,"get:bottomLeft" ,"deflate" ,"get:centerLeft" ,"get:width" ,"dart:math-patch\/math_patch.dart" ,"dart:math" ,"log" ,"exp" ,"cos" ,"sin" ,"pow" ,"atan2" ,"Math_log" ,"_log@12383281" ,"Math_exp" ,"_exp@12383281" ,"Math_cos" ,"_cos@12383281" ,"Math_sin" ,"_sin@12383281" ,"Math_atan2" ,"_atan2@12383281" ,"min" ,"max" ,"intersect" ,"get:center" ,"Rect.fromPoints" ,"get:height" ,"inflate" ,"shift" ,"translate" ,"expandToInclude" ,"Rect.fromLTRB" ,"get:longestSide" ,"topRight" ,"bottomRight" ,"center" ,"bottomLeft" ,"Size" ,"get:size" ,"Rect.fromCenter" ,"get:shortestSide" ,"get:topLeft" ,"Rect.fromLTWH" ,"Rect" ,"get:direction" ,"get:distance" ,"get:distanceSquared" ,"Offset" ,"get:dy" ,"get:dx" ,"_encodeTwoPoints@16065589" ,"PointerDataPacket" ,"PointerData." ,"PointerData" ,"_unpackPointerDataPacket@16065589" ,"_formatMS@16065589" ,"get:totalSpan" ,"get:rasterDuration" ,"get:buildDuration" ,"_rawDuration@16065589" ,"FrameTiming" ,"_reportTimings@16065589" ,"TypedData_SetFloat64" ,"_setFloat64@7027147" ,"TypedData_SetInt32x4" ,"_setInt32x4@7027147" ,"TypedData_SetUint32" ,"_setUint32@7027147" ,"TypedData_SetUint16" ,"_setUint16@7027147" ,"_setCodeUnits@7027147" ,"TypedData_length" ,"TypedData_SetFloat64x2" ,"_setFloat64x2@7027147" ,"TypedData_SetUint8" ,"_setUint8@7027147" ,"TypedData_SetInt16" ,"_setInt16@7027147" ,"TypedData_SetFloat32" ,"_setFloat32@7027147" ,"TypedData_SetUint64" ,"_setUint64@7027147" ,"TypedData_GetFloat64x2" ,"_getFloat64x2@7027147" ,"TypedData_SetInt8" ,"_setInt8@7027147" ,"TypedData_SetInt32" ,"_setInt32@7027147" ,"TypedData_SetFloat32x4" ,"_setFloat32x4@7027147" ,"TypedData_SetInt64" ,"_setInt64@7027147" ,"_TypedList@7027147" ,"_encodeStrut@16065589" ,"get:disableAnimations" ,"get:invertColors" ,"get:accessibleNavigation" ,"AccessibilityFeatures" ,"_updateAccessibilityFeatures@16065589" ,"WindowPadding" ,"_updateWindowMetrics@16065589" ,"_dispatchPointerDataPacket@16065589" ,"_updateUserSettingsData@16065589" ,"NativeFieldWrapperClass2" ,"FrameInfo_image" ,"Image_height" ,"Image_width" ,"Image._@16065589" ,"Image" ,"get:image" ,"FrameInfo_durationMillis" ,"get:_durationMillis@16065589" ,"get:duration" ,"FrameInfo._@16065589" ,"FrameInfo" ,"_getNextFrame@16065589" ,"get:_getNextFrame@16065589" ,"Codec_getNextFrame" ,"getNextFrame" ,"Codec_repetitionCount" ,"get:repetitionCount" ,"Codec_frameCount" ,"get:frameCount" ,"Codec._@16065589" ,"instantiateImageCodec" ,"ScheduleMicrotask" ,"_scheduleMicrotask@16065589" ,"Window_respondToPlatformMessage" ,"_respondToPlatformMessage@16065589" ,"_dispatchPlatformMessage@16065589" ,"get:window" ,"_drawFrame@16065589" ,"A3" ,"A2" ,"A1" ,"_invoke3@16065589" ,"Window_reportUnhandledException" ,"_reportUnhandledException@16065589" ,"_updatePlatformResolvedLocale@16065589" ,"_listEquals@16065589" ,"hashValues" ,"_beginFrame@16065589" ,"_lerpInt@16065589" ,"_instantiateImageCodec@16065589" ,"_updateLifecycleState@16065589" ,"_updatePlatformBrightness@16065589" ,"PointerChange.down" ,"PointerChange.move" ,"PointerChange.cancel" ,"PointerChange.hover" ,"PointerChange.up" ,"PointerChange.remove" ,"PointerChange.add" ,"PointerChange" ,"ParagraphBuilder_build" ,"_build@16065589" ,"build" ,"ParagraphBuilder_addText" ,"_addText@16065589" ,"addText" ,"ParagraphBuilder_pop" ,"_encodeLocale@16065589" ,"ParagraphBuilder_pushStyle" ,"_pushStyle@16065589" ,"_encodeShadows@16065589" ,"pushStyle" ,"ParagraphBuilder_constructor" ,"_constructor@16065589" ,"ParagraphBuilder." ,"ParagraphBuilder" ,"TextHeightBehavior" ,"textInside" ,"textAfter" ,"textBefore" ,"get:isValid" ,"TextRange" ,"FontStyle.italic" ,"FontStyle.normal" ,"FontStyle" ,"PaintingStyle.stroke" ,"PaintingStyle.fill" ,"PaintingStyle" ,"locale" ,"ellipsis" ,"strutStyle" ,"fontStyle" ,"fontWeight" ,"textHeightBehavior" ,"height" ,"fontSize" ,"fontFamily" ,"maxLines" ,"textAlign" ,"textDirection" ,"ParagraphStyle." ,"ParagraphStyle" ,"PlaceholderAlignment.middle" ,"PlaceholderAlignment.bottom" ,"PlaceholderAlignment.belowBaseline" ,"PlaceholderAlignment.top" ,"PlaceholderAlignment.aboveBaseline" ,"PlaceholderAlignment.baseline" ,"PlaceholderAlignment" ,"FramePhase.rasterStart" ,"FramePhase.buildStart" ,"FramePhase.buildFinish" ,"FramePhase.rasterFinish" ,"FramePhase" ,"StrokeJoin" ,"PhysicalShapeEngineLayer" ,"get:blurSigma" ,"convertRadiusToSigma" ,"Shadow" ,"ParagraphConstraints" ,"doAntiAlias" ,"path" ,"clipPath" ,"get:_value32@16065589" ,"drawRRect" ,"clipOp" ,"rect" ,"clipRect" ,"drawImageRect" ,"drawRect" ,"transform" ,"drawArc" ,"Canvas_transform" ,"_transform@16065589" ,"drawCircle" ,"drawLine" ,"PictureRecorder_isRecording" ,"get:isRecording" ,"Canvas." ,"drawShadow" ,"Canvas_drawImageRect" ,"_drawImageRect@16065589" ,"Canvas_drawDRRect" ,"_drawDRRect@16065589" ,"Canvas_drawCircle" ,"_drawCircle@16065589" ,"Canvas_clipRRect" ,"_clipRRect@16065589" ,"Canvas_clipRect" ,"_clipRect@16065589" ,"Canvas_drawRRect" ,"_drawRRect@16065589" ,"rrect" ,"clipRRect" ,"scale" ,"Canvas_clipPath" ,"_clipPath@16065589" ,"Canvas_translate" ,"Canvas_rotate" ,"rotate" ,"drawPath" ,"saveLayer" ,"Paragraph_paint" ,"_paint@16065589" ,"drawParagraph" ,"Canvas_drawShadow" ,"_drawShadow@16065589" ,"Canvas_scale" ,"_scale@16065589" ,"Canvas_constructor" ,"Canvas_drawRect" ,"_drawRect@16065589" ,"Canvas_drawArc" ,"_drawArc@16065589" ,"Canvas_drawLine" ,"_drawLine@16065589" ,"Canvas_save" ,"save" ,"Canvas_saveLayer" ,"_saveLayer@16065589" ,"Canvas_restore" ,"restore" ,"drawDRRect" ,"Canvas_drawPath" ,"_drawPath@16065589" ,"Canvas" ,"BoxWidthStyle.tight" ,"BoxWidthStyle" ,"StrokeCap" ,"SemanticsFlag" ,"_HashEnd@16065589" ,"Scene_dispose" ,"dispose" ,"Scene._@16065589" ,"Scene" ,"rowBytes" ,"format" ,"width" ,"get:rowBytes" ,"get:format" ,"_ImageInfo@16065589" ,"ClipPathEngineLayer" ,"TextDirection.ltr" ,"TextDirection.rtl" ,"TextDirection" ,"ImageFilter" ,"OpacityEngineLayer" ,"Shader._@16065589" ,"Shader" ,"ColorFilter_initSrgbToLinearGamma" ,"_initSrgbToLinearGamma@16065589" ,"ColorFilter_initLinearToSrgbGamma" ,"_initLinearToSrgbGamma@16065589" ,"ColorFilter_constructor" ,"[email protected]" ,"[email protected]" ,"creator" ,"get:creator" ,"_ColorFilter@16065589" ,"Picture_toImage" ,"_toImage@16065589" ,"toImage" ,"Picture._@16065589" ,"Picture" ,"Brightness.dark" ,"Brightness.light" ,"Brightness" ,"StrutStyle." ,"StrutStyle" ,"TextAffinity.downstream" ,"TextAffinity.upstream" ,"TextAffinity" ,"toRect" ,"TextBox.fromLTRBD" ,"TextBox" ,"init:enableDithering" ,"enableDithering" ,"init:_kBlendModeDefault@16065589" ,"_kBlendModeDefault@16065589" ,"set:shader" ,"set:strokeWidth" ,"set:isAntiAlias" ,"get:_kBlendModeDefault@16065589" ,"set:invertColors" ,"set:strokeCap" ,"get:color" ,"set:color" ,"_toNativeColorFilter@16065589" ,"set:colorFilter" ,"set:style" ,"Paint." ,"set:filterQuality" ,"set:_dither@16065589" ,"set:blendMode" ,"set:maskFilter" ,"Paint" ,"getBoxesForPlaceholders" ,"getWordBoundary" ,"getLineBoundary" ,"Paragraph_layout" ,"_layout@16065589" ,"Paragraph_getWordBoundary" ,"_getWordBoundary@16065589" ,"Paragraph_getRectsForRange" ,"_getBoxesForRange@16065589" ,"Paragraph_didExceedMaxLines" ,"get:didExceedMaxLines" ,"Paragraph_maxIntrinsicWidth" ,"get:maxIntrinsicWidth" ,"getPositionForOffset" ,"Paragraph_ideographicBaseline" ,"get:ideographicBaseline" ,"Paragraph_getRectsForPlaceholders" ,"_getBoxesForPlaceholders@16065589" ,"Paragraph_width" ,"_decodeTextBoxes@16065589" ,"Paragraph_getLineBoundary" ,"_getLineBoundary@16065589" ,"layout" ,"Paragraph_alphabeticBaseline" ,"get:alphabeticBaseline" ,"Paragraph_height" ,"boxWidthStyle" ,"boxHeightStyle" ,"getBoxesForRange" ,"Paragraph_minIntrinsicWidth" ,"get:minIntrinsicWidth" ,"Paragraph_getPositionForOffset" ,"_getPositionForOffset@16065589" ,"Paragraph._@16065589" ,"Paragraph" ,"TransformEngineLayer" ,"TextDecoration" ,"FontFeature" ,"_validateColorStops@16065589" ,"Gradient_initLinear" ,"_initLinear@16065589" ,"Gradient_constructor" ,"Gradient.linear" ,"Gradient" ,"fontFeatures" ,"shadows" ,"foreground" ,"background" ,"wordSpacing" ,"letterSpacing" ,"fontFamilyFallback" ,"textBaseline" ,"decorationThickness" ,"decorationStyle" ,"decorationColor" ,"decoration" ,"color" ,"TextStyle." ,"TextStyle" ,"ImageShader_initWithImage" ,"_initWithImage@16065589" ,"ImageShader_constructor" ,"ImageShader." ,"ImageShader" ,"Clip.antiAliasWithSaveLayer" ,"Clip.none" ,"Clip.antiAlias" ,"Clip.hardEdge" ,"Clip" ,"willChangeHint" ,"isComplexHint" ,"picture" ,"offset" ,"addPicture" ,"SceneBuilder_pop" ,"SceneBuilder." ,"addRetained" ,"SceneBuilder_build" ,"SceneBuilder_setCheckerboardRasterCacheImages" ,"setCheckerboardRasterCacheImages" ,"SceneBuilder_setRasterizerTracingThreshold" ,"setRasterizerTracingThreshold" ,"oldLayer" ,"matrix4" ,"pushTransform" ,"SceneBuilder_pushClipPath" ,"_pushClipPath@16065589" ,"dy" ,"dx" ,"pushOffset" ,"SceneBuilder_pushClipRect" ,"_pushClipRect@16065589" ,"SceneBuilder_addRetained" ,"_addRetained@16065589" ,"clipBehavior" ,"shadowColor" ,"elevation" ,"pushPhysicalShape" ,"SceneBuilder_pushTransform" ,"_pushTransform@16065589" ,"SceneBuilder_pushOffset" ,"_pushOffset@16065589" ,"addPerformanceOverlay" ,"SceneBuilder_addPicture" ,"_addPicture@16065589" ,"SceneBuilder_addPerformanceOverlay" ,"_addPerformanceOverlay@16065589" ,"SceneBuilder_pushPhysicalShape" ,"_pushPhysicalShape@16065589" ,"SceneBuilder_constructor" ,"pushClipPath" ,"alpha" ,"pushOpacity" ,"SceneBuilder_pushOpacity" ,"_pushOpacity@16065589" ,"SceneBuilder_setCheckerboardOffscreenLayers" ,"setCheckerboardOffscreenLayers" ,"pushClipRect" ,"SceneBuilder" ,"Radius" ,"ClipOp" ,"PointerDeviceKind.touch" ,"PointerDeviceKind.unknown" ,"PointerDeviceKind.invertedStylus" ,"PointerDeviceKind.stylus" ,"PointerDeviceKind.mouse" ,"PointerDeviceKind" ,"SemanticsUpdate._@16065589" ,"SemanticsUpdate" ,"AppLifecycleState.detached" ,"AppLifecycleState.inactive" ,"AppLifecycleState.paused" ,"AppLifecycleState.resumed" ,"AppLifecycleState" ,"SemanticsUpdateBuilder_build" ,"SemanticsUpdateBuilder_updateCustomAction" ,"_updateCustomAction@16065589" ,"overrideId" ,"hint" ,"id" ,"updateCustomAction" ,"SemanticsUpdateBuilder_updateNode" ,"_updateNode@16065589" ,"additionalActions" ,"childrenInHitTestOrder" ,"childrenInTraversalOrder" ,"decreasedValue" ,"increasedValue" ,"thickness" ,"scrollExtentMin" ,"scrollExtentMax" ,"scrollPosition" ,"scrollIndex" ,"scrollChildren" ,"platformViewId" ,"textSelectionExtent" ,"textSelectionBase" ,"currentValueLength" ,"maxValueLength" ,"actions" ,"flags" ,"updateNode" ,"SemanticsUpdateBuilder_constructor" ,"SemanticsUpdateBuilder." ,"SemanticsUpdateBuilder" ,"EngineLayer._@16065589" ,"EngineLayer" ,"ColorFilter" ,"Path_contains" ,"_contains@16065589" ,"Path_addRRect" ,"_addRRect@16065589" ,"addOval" ,"addRRect" ,"Path." ,"addRect" ,"Path_constructor" ,"Path_shift" ,"_shift@16065589" ,"Path_moveTo" ,"moveTo" ,"Path_reset" ,"reset" ,"Path_addOval" ,"_addOval@16065589" ,"Path_close" ,"close" ,"Path_op" ,"_op@16065589" ,"Path_lineTo" ,"lineTo" ,"Path_addRect" ,"_addRect@16065589" ,"Path_quadraticBezierTo" ,"quadraticBezierTo" ,"Path" ,"PathOperation.union" ,"PathOperation" ,"BoxHeightStyle.tight" ,"BoxHeightStyle" ,"PointerSignalKind.none" ,"PointerSignalKind.unknown" ,"PointerSignalKind.scroll" ,"PointerSignalKind" ,"BlendMode.modulate" ,"BlendMode" ,"TextDecorationStyle.wavy" ,"TextDecorationStyle.solid" ,"TextDecorationStyle.dashed" ,"TextDecorationStyle.double" ,"TextDecorationStyle.dotted" ,"TextDecorationStyle" ,"TextPosition" ,"MaskFilter" ,"TileMode.clamp" ,"TileMode" ,"FontWeight" ,"_EngineLayerWrapper@16065589" ,"OffsetEngineLayer" ,"get:blRadius" ,"_getMin@16065589" ,"get:outerRect" ,"RRect.fromRectAndRadius" ,"RRect.fromRectAndCorners" ,"get:brRadius" ,"RRect.fromRectXY" ,"scaleRadii" ,"get:trRadius" ,"get:tlRadius" ,"RRect" ,"FilterQuality.low" ,"FilterQuality" ,"TextAlign.left" ,"TextAlign.center" ,"TextAlign.end" ,"TextAlign.start" ,"TextAlign.right" ,"TextAlign.justify" ,"TextAlign" ,"SemanticsAction" ,"TextBaseline.ideographic" ,"TextBaseline.alphabetic" ,"TextBaseline" ,"BlurStyle" ,"PictureRecorder_endRecording" ,"_endRecording@16065589" ,"endRecording" ,"PictureRecorder_constructor" ,"PictureRecorder." ,"PictureRecorder" ,"ClipRectEngineLayer" ,"@16065589" ,"dart:ui" ,"dart.ui" ,"dart:ui\/window.dart" ,"_cachedLocaleString@16065589" ,"_cachedLocale@16065589" ,"_rawToString@16065589" ,"get:countryCode" ,"get:languageCode" ,"Locale" ,"get:defaultRouteName" ,"set:onAccessibilityFeaturesChanged" ,"set:onMetricsChanged" ,"Window_scheduleFrame" ,"scheduleFrame" ,"set:onDrawFrame" ,"set:onPointerDataPacket" ,"set:onSemanticsAction" ,"Window_sendPlatformMessage" ,"_sendPlatformMessage@16065589" ,"set:onReportTimings" ,"set:onSemanticsEnabledChanged" ,"Window_defaultRouteName" ,"_defaultRouteName@16065589" ,"Window_updateSemantics" ,"updateSemantics" ,"Window_render" ,"render" ,"set:onTextScaleFactorChanged" ,"_zonedPlatformMessageResponseCallback@16065589" ,"set:onBeginFrame" ,"set:onPlatformMessage" ,"sendPlatformMessage" ,"get:initialLifecycleState" ,"set:onPlatformBrightnessChanged" ,"set:onLocaleChanged" ,"Window" ,"get:locale" ,"_localeClosure@16065589" ,"formatException" ,"get:summary" ,"exceptionAsString" ,"get:library" ,"get:propertiesTransformers" ,"FlutterErrorDetails" ,"ErrorSummary." ,"ErrorSummary" ,"valueToString" ,"_ErrorDiagnostic@191022608." ,"_ErrorDiagnostic@191022608" ,"ErrorSpacer" ,"ErrorDescription." ,"ErrorDescription" ,"_FlutterErrorDetailsNode@191022608" ,"@191022608" ,"package:flutter\/src\/foundation\/assertions.dart" ,"init:_errorCount@191022608" ,"_errorCount@191022608" ,"init:presentError" ,"presentError" ,"init:onError" ,"reportError" ,"package:flutter\/src\/foundation\/print.dart" ,"init:debugPrint" ,"debugPrint" ,"wrapWidth" ,"_debugPrintCompleter@208110992" ,"dart:core\/stopwatch.dart" ,"Stopwatch_frequency" ,"dart:core-patch\/stopwatch_patch.dart" ,"_computeFrequency@0150898" ,"_initTicker@0150898" ,"init:_frequency@0150898" ,"_frequency@0150898" ,"Stopwatch_now" ,"_now@0150898" ,"get:elapsedMicroseconds" ,"get:elapsed" ,"get:elapsedTicks" ,"stop" ,"Stopwatch." ,"get:_frequency@0150898" ,"Stopwatch" ,"get:_debugPrintStopwatch@208110992" ,"init:_debugPrintScheduled@208110992" ,"_debugPrintScheduled@208110992" ,"_AsyncCompleter@4048458." ,"_AsyncCompleter@4048458" ,"dart:core\/print.dart" ,"setChars" ,"_createTables@0150898" ,"dart:core\/uri.dart" ,"init:_scannerTables@0150898" ,"_scannerTables@0150898" ,"dart:core-patch\/uri_patch.dart" ,"init:_uriBaseClosure@0150898" ,"error" ,"GrowableList_setIndexed" ,"_setIndexed@0150898" ,"GrowableList_setLength" ,"_setLength@0150898" ,"parseIPv6Address" ,"_parseIPv4Address@0150898" ,"_compareScheme@0150898" ,"isScheme" ,"dyn:isScheme" ,"get:_text@0150898" ,"init:hashCode" ,"_computePathSegments@0150898" ,"init:pathSegments" ,"pathSegments" ,"_writeAuthority@0150898" ,"_initializeText@0150898" ,"init:_text@0150898" ,"_text@0150898" ,"Uri_isWindowsPlatform" ,"get:_isWindowsPlatform@0150898" ,"init:_isWindowsCached@0150898" ,"_isWindowsCached@0150898" ,"fragment" ,"queryParameters" ,"query" ,"port" ,"host" ,"userInfo" ,"scheme" ,"_Uri@0150898." ,"_previous@3220832" ,"dart:collection\/linked_list.dart" ,"unlink" ,"LinkedListEntry" ,"set:_previous@3220832" ,"_next@3220832" ,"set:_next@3220832" ,"_unlink@3220832" ,"LinkedList" ,"_list@3220832" ,"set:_list@3220832" ,"updateFirst" ,"newEntry" ,"entry" ,"_insertBefore@3220832" ,"RegExp_factory" ,"dotAll" ,"unicode" ,"caseSensitive" ,"multiLine" ,"init:_recentlyUsed@0150898" ,"_RegExpHashKey@0150898" ,"_recentlyUsed@0150898" ,"init:_cache@0150898" ,"_RegExpHashValue@0150898" ,"_cache@0150898" ,"get:_recentlyUsed@0150898" ,"get:_cache@0150898" ,"RegExp_ExecuteMatchSticky" ,"_ExecuteMatchSticky@0150898" ,"RegExp_ExecuteMatch" ,"_ExecuteMatch@0150898" ,"RegExp_getGroupCount" ,"get:_groupCount@0150898" ,"RegExp_getIsUnicode" ,"get:isUnicode" ,"hasMatch" ,"firstMatch" ,"_RegExp@0150898" ,"_RegExp@0150898." ,"RegExp." ,"ListIterator." ,"ListIterator" ,"windows" ,"[email protected]" ,"_isUnreservedChar@0150898" ,"_checkWindowsPathReservedCharacters@0150898" ,"_isSchemeCharacter@0150898" ,"get:scheme" ,"get:path" ,"get:hasQuery" ,"_isZoneIDChar@0150898" ,"_makePath@0150898" ,"_makeFileUri@0150898" ,"_hexCharPairToByte@0150898" ,"get:_isWindowsCached@0150898" ,"get:pathSegments" ,"get:hasPort" ,"_checkWindowsDriveLetter@0150898" ,"_mayContainDotSegments@0150898" ,"_mergePaths@0150898" ,"_normalizeZoneID@0150898" ,"_makeWindowsFileUrl@0150898" ,"_fail@0150898" ,"get:hasAbsolutePath" ,"_isRegNameChar@0150898" ,"get:hasAuthority" ,"_makePort@0150898" ,"get:query" ,"_makeFragment@0150898" ,"_escapeScheme@0150898" ,"_defaultPort@0150898" ,"_makeHost@0150898" ,"_normalizePath@0150898" ,"_makeUserInfo@0150898" ,"toFilePath" ,"_checkNonWindowsPathReservedCharacters@0150898" ,"get:hasFragment" ,"_normalizeRegName@0150898" ,"_escapeChar@0150898" ,"resolveUri" ,"_removeDotSegments@0150898" ,"_makeScheme@0150898" ,"_isGeneralDelimiter@0150898" ,"get:host" ,"[email protected]" ,"_normalizeRelativePath@0150898" ,"get:userInfo" ,"_uriDecode@0150898" ,"_checkZoneID@0150898" ,"[email protected]" ,"_normalizeEscape@0150898" ,"get:hasEmptyPath" ,"_canonicalizeScheme@0150898" ,"get:_isWindows@0150898" ,"get:fragment" ,"get:port" ,"get:hasScheme" ,"_toWindowsFilePath@0150898" ,"_makeQuery@0150898" ,"escapeDelimiters" ,"charTable" ,"component" ,"_normalizeOrSubstring@0150898" ,"_normalize@0150898" ,"_toFilePath@0150898" ,"_Uri@0150898" ,"_uriEncode@0150898" ,"encodeFull" ,"decodeComponent" ,"get:_isHttps@0150898" ,"_isPort@0150898" ,"get:_isPackage@0150898" ,"_computeScheme@0150898" ,"_simpleMerge@0150898" ,"_toNonSimple@0150898" ,"_SimpleUri@0150898." ,"get:_isHttp@0150898" ,"get:_isFile@0150898" ,"removeFragment" ,"_SimpleUri@0150898" ,"get:_scannerTables@0150898" ,"_scan@0150898" ,"_uriEncodeBytes@0150898" ,"_DataUri@0150898" ,"_DataUri@0150898." ,"_computeUri@0150898" ,"get:uri" ,"_writeUri@0150898" ,"dart:convert\/ascii.dart" ,"_UnicodeSubsetEncoder@10003594" ,"AsciiEncoder" ,"AsciiCodec" ,"UriData.fromString" ,"UriData" ,"Base64Encoder" ,"dart:convert\/base64.dart" ,"Base64Codec" ,"_checkPadding@10003594" ,"init:_inverseAlphabet@10003594" ,"_inverseAlphabet@10003594" ,"init:_emptyBuffer@10003594" ,"_emptyBuffer@10003594" ,"_trimPaddingChars@10003594" ,"_allocateBuffer@10003594" ,"decodeChunk" ,"get:_emptyBuffer@10003594" ,"_Base64Decoder@10003594" ,"get:_inverseAlphabet@10003594" ,"normalize" ,"get:isOdd" ,"_startsWithData@0150898" ,"base64" ,"parameters" ,"encoding" ,"mimeType" ,"content" ,"Uri.dataFromString" ,"get:_uriBaseClosure@0150898" ,"get:base" ,"Uri" ,"_uriBaseClosure@0150898" ,"dart:core-patch\/identical_patch.dart" ,"Identical_comparison" ,"_unsupportedUriBase@0150898" ,"Object_setHash" ,"_setHash@0150898" ,"Object_getHash" ,"_getHash@0150898" ,"dart:core-patch\/bigint_patch.dart" ,"_newDigits@0150898" ,"_max@0150898" ,"debugPrintThrottled" ,"init:_debugPrintBuffer@208110992" ,"_debugPrintBuffer@208110992" ,"init:_debugPrintedCharacters@208110992" ,"_debugPrintedCharacters@208110992" ,"init:_indentPattern@208110992" ,"_indentPattern@208110992" ,"_WordWrapParseMode.inSpace" ,"_WordWrapParseMode.inWord" ,"_WordWrapParseMode.atBreak" ,"_WordWrapParseMode@208110992" ,"get:_debugPrintBuffer@208110992" ,"_debugPrintTask@208110992" ,"init:_debugPrintStopwatch@208110992" ,"_debugPrintStopwatch@208110992" ,"get:_indentPattern@208110992" ,"dart:core-patch\/core_patch.dart" ,"_SyncIterable@0150898" ,"wrapIndent" ,"debugWordWrap" ,"@208110992" ,"get:debugPrint" ,"forceReport" ,"details" ,"dumpErrorToConsole" ,"FlutterError." ,"get:presentError" ,"get:onError" ,"FlutterError" ,"dart:_internal\/list.dart" ,"ReversedListIterable" ,"IsolateSpawnException." ,"dart:io\/stdio.dart" ,"dart:io-patch\/common_patch.dart" ,"dart:io\/socket.dart" ,"dart:io\/service_object.dart" ,"dart:io\/secure_socket.dart" ,"dart:io\/process.dart" ,"dart:io-patch\/platform_patch.dart" ,"dart:io\/platform_impl.dart" ,"dart:io\/platform.dart" ,"dart:io\/overrides.dart" ,"dart:io\/network_profiling.dart" ,"dart:io\/namespace_impl.dart" ,"dart:io\/link.dart" ,"dart:io\/io_service.dart" ,"dart:io\/io_resource_info.dart" ,"dart:io\/file_system_entity.dart" ,"dart:io\/file_impl.dart" ,"dart:io\/file.dart" ,"dart:io-patch\/eventhandler_patch.dart" ,"dart:io\/eventhandler.dart" ,"dart:io\/embedder_config.dart" ,"dart:io-patch\/directory_patch.dart" ,"dart:io\/directory_impl.dart" ,"dart:io\/directory.dart" ,"dart:io\/bytes_builder.dart" ,"dart:io-patch\/secure_socket_patch.dart" ,"dart:io-patch\/socket_patch.dart" ,"dart:io-patch\/process_patch.dart" ,"dart:io-patch\/namespace_patch.dart" ,"dart:io-patch\/io_service_patch.dart" ,"dart:io-patch\/file_patch.dart" ,"init:_ioOverridesToken@15069316" ,"_ioOverridesToken@15069316" ,"init:_signalControllers@15069316" ,"_cancel@15069316" ,"_listen@15069316" ,"_SignalController@15069316" ,"_signalControllers@15069316" ,"_invalidArgument@15069316" ,"_makeUint8ListView@15069316" ,"get:_signalControllers@15069316" ,"IOException" ,"FileSystemException." ,"FileSystemException" ,"Directory_Current" ,"_toStringFromUtf8Array@15069316" ,"_toNullTerminatedUtf8Array@15069316" ,"_toUtf8Array@15069316" ,"FileSystemEntity" ,"_checkNotNull@15069316" ,"[email protected]" ,"Directory.fromRawPath" ,"IOOverrides" ,"_Directory@15069316." ,"Directory." ,"Directory" ,"_Directory@15069316" ,"_current@15069316" ,"Namespace_Create" ,"NativeFieldWrapperClass1" ,"_setupNamespace@15069316" ,"Namespace_GetPointer" ,"_getPointer@15069316" ,"get:_namespacePointer@15069316" ,"_Namespace@15069316" ,"_cachedNamespace@15069316" ,"Namespace_GetDefault" ,"_getDefault@15069316" ,"_NamespaceImpl@15069316" ,"_create@15069316" ,"get:_namespace@15069316" ,"_uriBaseClosure@15069316" ,"_getUriBaseClosure@15069316" ,"_isErrorResponse@15069316" ,"_getWatchSignalInternal@15069316" ,"get:name" ,"InternetAddressType" ,"InternetAddressType._from@15069316" ,"Datagram" ,"_makeDatagram@15069316" ,"get:_ioOverridesToken@15069316" ,"_getHttpEnableTimelineLogging@15069316" ,"_setStdioFDs@15069316" ,"_setupHooks@15069316" ,"_success@15069316" ,"dart:_http\/embedder_config.dart" ,"init:_embedderAllowsHttp@14463476" ,"_embedderAllowsHttp@14463476" ,"@14463476" ,"dart:_http" ,"dart._http" ,"init:_enableTimelineLogging@14463476" ,"_enableTimelineLogging@14463476" ,"HttpClient" ,"set:enableTimelineLogging" ,"_setHttpEnableTimelineLogging@15069316" ,"_exceptionFromResponse@15069316" ,"_missingArgument@15069316" ,"_SecureFilter@15069316" ,"HandshakeException." ,"HandshakeException" ,"buffers" ,"init:ENCRYPTED_SIZE" ,"ENCRYPTED_SIZE" ,"init:SIZE" ,"SIZE" ,"get:buffers" ,"get:ENCRYPTED_SIZE" ,"get:SIZE" ,"_SecureFilterImpl@15069316" ,"_localeClosure@15069316" ,"get:operatingSystem" ,"Platform_OperatingSystem" ,"_operatingSystem@15069316" ,"set:_nativeScript@15069316" ,"_Platform@15069316" ,"[email protected]" ,"File.fromRawPath" ,"_File@15069316." ,"File." ,"File" ,"X509Certificate._@15069316" ,"X509Certificate" ,"IOService_NewServicePort" ,"dart:isolate\/capability.dart" ,"Capability" ,"SendPort" ,"_newServicePort@15069316" ,"_returnPort@15069316" ,"_getPort@15069316" ,"_IOServicePorts@15069316." ,"_IOServicePorts@15069316" ,"RawSocketEvent" ,"_ServiceObject@15069316" ,"init:_maySleep@15069316" ,"_maySleep@15069316" ,"init:_maySetLineMode@15069316" ,"_maySetLineMode@15069316" ,"init:_maySetEchoMode@15069316" ,"_maySetEchoMode@15069316" ,"init:_mayExit@15069316" ,"_mayExit@15069316" ,"_EmbedderConfig@15069316" ,"[email protected]" ,"Link.fromRawPath" ,"_Link@15069316." ,"Link." ,"Link" ,"_NativeSocketNativeWrapper@15069316" ,"_X509CertificateImpl@15069316" ,"cancelOnError" ,"onDone" ,"onData" ,"StreamSubscription" ,"listen" ,"CastStream" ,"_StreamImpl@4048458" ,"_createSubscription@4048458" ,"_GeneratedStreamImpl@4048458" ,"Stream.fromIterable" ,"Stream" ,"_onSubscriptionStateChange@15069316" ,"_onPauseStateChange@15069316" ,"_RawSocket@15069316" ,"data" ,"set:end" ,"set:start" ,"set:data" ,"_ExternalBuffer@15069316" ,"ProcessSignal" ,"EventHandler_SendData" ,"_sendData@15069316" ,"EventHandler_TimerMillisecondClock" ,"_timerMillisecondClock@15069316" ,"_EventHandler@15069316" ,"TlsException." ,"type" ,"get:type" ,"TlsException" ,"_watchSignalInternal@15069316" ,"_ProcessUtils@15069316" ,"getVersion" ,"dart:developer\/extension.dart" ,"ServiceExtensionResponse.error" ,"ServiceExtensionResponse.result" ,"ServiceExtensionResponse" ,"_validateErrorCode@5383715" ,"init:_idToSocketStatistic@15069316" ,"_idToSocketStatistic@15069316" ,"get:_idToSocketStatistic@15069316" ,"pause" ,"toJson" ,"_serviceExtensionHandler@15069316" ,"Developer_registerExtension" ,"dart:developer-patch\/developer.dart" ,"Timeline_reportFlowEvent" ,"dart:developer-patch\/timeline.dart" ,"_reportFlowEvent@5383715" ,"Timeline_reportTaskEvent" ,"_reportTaskEvent@5383715" ,"Timeline_getNextAsyncId" ,"_getNextAsyncId@5383715" ,"Timeline_isDartStreamEnabled" ,"_isDartStreamEnabled@5383715" ,"dart:developer\/timeline.dart" ,"_argumentsAsJson@5383715" ,"Developer_lookupExtension" ,"_lookupExtension@5383715" ,"Developer_postEvent" ,"_postEvent@5383715" ,"postEvent" ,"_registerExtension@5383715" ,"registerExtension" ,"_registerServiceExtension@15069316" ,"_NetworkProfiling@15069316" ,"_SocketStatistic@15069316" ,"_errorMessage@15069316" ,"_errorCode@15069316" ,"set:_errorMessage@15069316" ,"set:_errorCode@15069316" ,"_ProcessStartStatus@15069316" ,"multiplex" ,"_NativeSocket@15069316" ,"__NativeSocket&_NativeSocketNativeWrapper&_ServiceObject@15069316" ,"_SocketProfile@15069316" ,"File_Length" ,"_RandomAccessFileOpsImpl@15069316" ,"CertificateException." ,"CertificateException" ,"init:_id@15069316" ,"_id@15069316" ,"init:_messageMap@15069316" ,"_messageMap@15069316" ,"_replyToPort@15069316" ,"RawReceivePortImpl_get_id" ,"dart:isolate-patch\/isolate_patch.dart" ,"_initHandlerMap@1026248" ,"init:_handlerMap@1026248" ,"_handlerMap@1026248" ,"set:handler" ,"RawReceivePortImpl_closeInternal" ,"_closeInternal@1026248" ,"_pendingImmediateCallback@1026248" ,"dart:isolate-patch\/timer_impl.dart" ,"_setupHooks@1026248" ,"SendPortImpl_sendInternal_" ,"SendPortImpl_get_hashcode" ,"_get_hashcode@1026248" ,"SendPortImpl_get_id" ,"_SendPortImpl@1026248" ,"_sendInternal@1026248" ,"send" ,"_startIsolate@1026248" ,"_getStartMainIsolateFunction@1026248" ,"_startMainIsolate@1026248" ,"_getIsolateScheduleImmediateClosure@1026248" ,"_isolateScheduleImmediate@1026248" ,"_runPendingImmediateCallback@1026248" ,"_handleMessage@1026248" ,"_lookupHandler@1026248" ,"RawReceivePortImpl_get_sendport" ,"_get_sendport@1026248" ,"get:sendPort" ,"RawReceivePortImpl_factory" ,"_RawReceivePortImpl@1026248." ,"get:_handlerMap@1026248" ,"_RawReceivePortImpl@1026248" ,"_get_id@1026248" ,"RawReceivePort." ,"RawReceivePort" ,"_receivePort@15069316" ,"init:_servicePorts@15069316" ,"_servicePorts@15069316" ,"_dispatch@15069316" ,"_getNextId@15069316" ,"_finalize@15069316" ,"_ensureInitialize@15069316" ,"get:_messageMap@15069316" ,"get:_replyToPort@15069316" ,"get:_servicePorts@15069316" ,"_IOService@15069316" ,"_dispatchWithNamespace@15069316" ,"_namespacePointer@15069316" ,"_File@15069316" ,"get:_operatingSystem@15069316" ,"init:isFuchsia" ,"isFuchsia" ,"init:isIOS" ,"isIOS" ,"init:isAndroid" ,"isAndroid" ,"init:isWindows" ,"isWindows" ,"init:isMacOS" ,"isMacOS" ,"init:isLinux" ,"isLinux" ,"init:_operatingSystem@15069316" ,"get:isFuchsia" ,"get:isIOS" ,"get:isAndroid" ,"get:isWindows" ,"get:isMacOS" ,"get:isLinux" ,"Platform" ,"RawSocket" ,"_Link@15069316" ,"_RandomAccessFileOps@15069316" ,"@15069316" ,"dart:io" ,"dart:io\/common.dart" ,"OSError." ,"OSError" ,"package:flutter\/src\/animation\/listener_helpers.dart" ,"ValueNotifier." ,"ValueNotifier" ,"notifyListeners" ,"get:notifyListeners" ,"get:addListener" ,"removeListener" ,"get:hasListeners" ,"ChangeNotifier." ,"_listeners@195329750" ,"HashedObserverList." ,"HashedObserverList" ,"@206023516" ,"package:flutter\/src\/foundation\/observer_list.dart" ,"ObserverList." ,"ObserverList" ,"get:_listeners@195329750" ,"ChangeNotifier" ,"_MergingListenable@195329750" ,"ValueListenable" ,"@195329750" ,"package:flutter\/src\/foundation\/change_notifier.dart" ,"Listenable" ,"AnimationStatus.reverse" ,"AnimationStatus.forward" ,"AnimationStatus.completed" ,"AnimationStatus.dismissed" ,"AnimationStatus" ,"@151368416" ,"package:flutter\/src\/animation\/animation.dart" ,"toStringDetails" ,"AnimationEagerListenerMixin" ,"AnimationLocalListenersMixin" ,"AnimationLazyListenerMixin" ,"@155091803" ,"AnimationLocalStatusListenersMixin" ,"notifyStatusListeners" ,"removeStatusListener" ,"addStatusListener" ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin@152066280." ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@152066280." ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@152066280" ,"_valueChangeHandler@153411118" ,"get:_valueChangeHandler@153411118" ,"_statusChangeHandler@153411118" ,"get:_statusChangeHandler@153411118" ,"get:status" ,"onSwitchedTrain" ,"_nextTrain@153411118" ,"_currentTrain@153411118" ,"TrainHoppingAnimation." ,"TrainHoppingAnimation" ,"didStopListening" ,"didStartListening" ,"set:parent" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@153411118." ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@153411118." ,"ProxyAnimation." ,"ProxyAnimation" ,"get:notifyStatusListeners" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@153411118" ,"AnimationMin." ,"AnimationMin" ,"_TrainHoppingMode.maximize" ,"_TrainHoppingMode.minimize" ,"_TrainHoppingMode@153411118" ,"_ReverseAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalStatusListenersMixin@153411118." ,"_ReverseAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalStatusListenersMixin@153411118" ,"ReverseAnimation." ,"ReverseAnimation" ,"_AlwaysCompleteAnimation@153411118" ,"TabBarIndicatorSize" ,"@334014024" ,"package:flutter\/src\/material\/tabs.dart" ,"__ChangeAnimation&Animation&AnimationWithParentMixin@334014024" ,"_updateCurveDirection@153411118" ,"get:_updateCurveDirection@153411118" ,"get:_useForwardCurve@153411118" ,"reverseCurve" ,"parent" ,"curve" ,"CurvedAnimation." ,"CurvedAnimation" ,"didUnregisterListener" ,"didRegisterListener" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin@153411118" ,"_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@153411118" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin@153411118" ,"FabFloatOffsetY" ,"_rightOffsetX@283063916" ,"_leftOffsetX@283063916" ,"getOffset" ,"StandardFabLocation" ,"FabEndOffsetX" ,"getOffsetY" ,"__EndFloatFabLocation&StandardFabLocation&FabEndOffsetX&FabFloatOffsetY@283063916" ,"FloatingActionButtonLocation" ,"getOffsetX" ,"__EndTopFabLocation&StandardFabLocation&FabEndOffsetX@283063916" ,"FloatingActionButtonAnimator" ,"_EndFloatFabLocation@283063916" ,"CurveTween" ,"init:_thresholdCenterTween@283063916" ,"_ChainedEvaluation@156105126" ,"chain" ,"evaluate" ,"Animatable" ,"_thresholdCenterTween@283063916" ,"begin" ,"set:begin" ,"Tween" ,"init:_rotationTween@283063916" ,"_rotationTween@283063916" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@153411118." ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@153411118." ,"_AnimationSwap@283063916." ,"getRotationAnimation" ,"ParametricCurve" ,"get:flipped" ,"Curve" ,"transformInternal" ,"Threshold" ,"Cubic" ,"_DecelerateCurve@154484502" ,"_Linear@154484502" ,"SawTooth" ,"Interval" ,"@154484502" ,"package:flutter\/src\/animation\/curves.dart" ,"FlippedCurve" ,"getScaleAnimation" ,"progress" ,"get:_thresholdCenterTween@283063916" ,"get:_rotationTween@283063916" ,"_ScalingFabMotionAnimator@283063916" ,"@283063916" ,"package:flutter\/src\/material\/floating_action_button_location.dart" ,"_AnimationSwap@283063916" ,"_maybeNotifyListeners@153411118" ,"get:_maybeNotifyListeners@153411118" ,"_maybeNotifyStatusListeners@153411118" ,"get:_maybeNotifyStatusListeners@153411118" ,"CompoundAnimation." ,"first" ,"CompoundAnimation" ,"_AlwaysDismissedAnimation@153411118" ,"AlwaysStoppedAnimation" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@153411118" ,"_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin@153411118" ,"@153411118" ,"package:flutter\/src\/animation\/animations.dart" ,"AnimationWithParentMixin" ,"__AnimatedEvaluation&Animation&AnimationWithParentMixin@156105126" ,"SizeTween" ,"RectTween" ,"ReverseTween." ,"ReverseTween" ,"ColorTween" ,"IntTween" ,"@156105126" ,"package:flutter\/src\/animation\/tween.dart" ,"_AnimatedEvaluation@156105126" ,"animate" ,"drive" ,"get:isDismissed" ,"Animation" ,"_AnimationController&Animation&AnimationEagerListenerMixin@152066280" ,"tolerance" ,"velocity" ,"spring" ,"ScrollSpringSimulation." ,"ScrollSpringSimulation" ,"_CriticalSolution@396485910." ,"_CriticalSolution@396485910" ,"SpringType.overDamped" ,"SpringType.underDamped" ,"SpringType.criticallyDamped" ,"SpringType" ,"_UnderdampedSolution@396485910." ,"_OverdampedSolution@396485910." ,"_SpringSolution@396485910." ,"_SpringSolution@396485910" ,"@395445710" ,"package:flutter\/src\/physics\/simulation.dart" ,"Simulation" ,"isDone" ,"SpringSimulation." ,"SpringSimulation" ,"_OverdampedSolution@396485910" ,"_UnderdampedSolution@396485910" ,"@396485910" ,"package:flutter\/src\/physics\/spring_simulation.dart" ,"SpringDescription" ,"init:_kFlingSpringDescription@152066280" ,"_kFlingSpringDescription@152066280" ,"get:_kFlingSpringDescription@152066280" ,"_InterpolationSimulation@152066280." ,"_InterpolationSimulation@152066280" ,"_AnimationDirection.reverse" ,"_AnimationDirection.forward" ,"_AnimationDirection@152066280" ,"_RepeatingSimulation@152066280." ,"reverse" ,"get:reverse" ,"_RepeatingSimulation@152066280" ,"onValue" ,"get:orCancel" ,"whenCompleteOrCancel" ,"_complete@447494659" ,"TickerFuture.complete" ,"TickerFuture._@447494659" ,"TickerFuture" ,"TickerProvider" ,"_tick@447494659" ,"get:_tick@447494659" ,"debugIncludeStack" ,"unscheduleTick" ,"rescheduling" ,"scheduleTick" ,"get:shouldScheduleTick" ,"canceled" ,"get:isTicking" ,"set:muted" ,"Ticker" ,"@447494659" ,"package:flutter\/src\/scheduler\/ticker.dart" ,"TickerCanceled" ,"_cancel@447494659" ,"package:flutter\/src\/scheduler\/binding.dart" ,"@193264518" ,"package:flutter\/src\/foundation\/binding.dart" ,"set:flow" ,"finish" ,"_SyncBlock@5383715" ,"_startSync@5383715" ,"init:_stack@5383715" ,"_stack@5383715" ,"arguments" ,"flow" ,"function" ,"timeSync" ,"finishSync" ,"Timeline" ,"get:_stack@5383715" ,"startSync" ,"lockEvents" ,"initServiceExtensions" ,"package:flutter\/src\/services\/binding.dart" ,"init:_timeDilation@444222615" ,"_timeDilation@444222615" ,"get:transientCallbackCount" ,"scheduler" ,"priority" ,"defaultSchedulingStrategy" ,"get:timeDilation" ,"SchedulerPhase.transientCallbacks" ,"SchedulerPhase.midFrameMicrotasks" ,"SchedulerPhase.postFrameCallbacks" ,"SchedulerPhase.persistentCallbacks" ,"SchedulerPhase.idle" ,"SchedulerPhase" ,"_TaskEntry@444222615." ,"_TaskEntry@444222615" ,"_FrameCallbackEntry@444222615." ,"_FrameCallbackEntry@444222615" ,"@444222615" ,"_instance@444222615" ,"_taskSorter@444222615" ,"SchedulerBinding" ,"_ServicesBinding&BindingBase&SchedulerBinding@455240726" ,"get:defaultBinaryMessenger" ,"@454275344" ,"package:flutter\/src\/services\/binary_messenger.dart" ,"setMessageHandler" ,"BinaryMessenger" ,"init:_mockHandlers@455240726" ,"_mockHandlers@455240726" ,"init:_handlers@455240726" ,"_handlers@455240726" ,"handlePlatformMessage" ,"get:handlePlatformMessage" ,"_sendPlatformMessage@455240726" ,"get:_mockHandlers@455240726" ,"get:_handlers@455240726" ,"_DefaultBinaryMessenger@455240726" ,"@455240726" ,"_instance@455240726" ,"_parseAppLifecycleMessage@455240726" ,"LicenseEntry" ,"_collectors@203204121" ,"addLicense" ,"LicenseRegistry" ,"@203204121" ,"package:flutter\/src\/foundation\/licenses.dart" ,"LicenseEntryWithLineBreaks" ,"_parseLicenses@455240726" ,"ServicesBinding" ,"_handleLifecycleMessage@455240726" ,"get:_handleLifecycleMessage@455240726" ,"_EventDispatch@4048458" ,"_close@4048458" ,"_EventSink@4048458" ,"_StreamControllerLifecycle@4048458" ,"StreamConsumer" ,"dart:core\/sink.dart" ,"Sink" ,"EventSink" ,"StreamSink" ,"_recordResume@4048458" ,"_add@4048458" ,"get:stream" ,"get:hasListener" ,"_addEventError@4048458" ,"get:isPaused" ,"get:_add@4048458" ,"_recordCancel@4048458" ,"_subscribe@4048458" ,"addError" ,"_next@4048458" ,"_onData@4048458" ,"_sendData@4048458" ,"set:_onData@4048458" ,"resume" ,"_onResume@4048458" ,"get:_onResume@4048458" ,"_onPause@4048458" ,"get:_onPause@4048458" ,"cancelSchedule" ,"_PendingEvents@4048458" ,"schedule" ,"_handleDone@4048458" ,"_ForwardingStream@4048458" ,"_handleError@4048458" ,"_addError@4048458" ,"_MapStream@4048458" ,"_handleData@4048458" ,"get:_addError@4048458" ,"_onCancel@4048458" ,"get:_handleDone@4048458" ,"get:_handleError@4048458" ,"get:_handleData@4048458" ,"_ForwardingStreamSubscription@4048458." ,"_ForwardingStreamSubscription@4048458" ,"_guardCallback@4048458" ,"_BufferingStreamSubscription@4048458." ,"get:_onData@4048458" ,"_setPendingEvents@4048458" ,"_decrementPauseCount@4048458" ,"_registerDoneHandler@4048458" ,"_sendError@4048458" ,"_registerDataHandler@4048458" ,"_DelayedEvent@4048458" ,"handleNext" ,"_StreamImplEvents@4048458" ,"_addPending@4048458" ,"get:_mayResumeInput@4048458" ,"_checkState@4048458" ,"get:_close@4048458" ,"_cancel@4048458" ,"[email protected]" ,"_sendDone@4048458" ,"_BufferingStreamSubscription@4048458" ,"_ControllerSubscription@4048458." ,"_ControllerSubscription@4048458" ,"_setRemoveAfterFiring@4048458" ,"_BroadcastSubscription@4048458." ,"_BroadcastSubscription@4048458" ,"set:_next@4048458" ,"_previous@4048458" ,"set:_previous@4048458" ,"onListen" ,"set:onListen" ,"_callOnCancel@4048458" ,"addStream" ,"_ensureDoneFuture@4048458" ,"_recordPause@4048458" ,"set:onResume" ,"get:_mayAddEvent@4048458" ,"onCancel" ,"set:onCancel" ,"get:isClosed" ,"_forEachListener@4048458" ,"_removeListener@4048458" ,"_BroadcastStreamController@4048458" ,"dart:async\/broadcast_stream_controller.dart" ,"_AsyncBroadcastStreamController@4048458" ,"sync" ,"StreamController.broadcast" ,"_StreamControllerBase@4048458" ,"_state@4048458" ,"_varData@4048458" ,"get:_isInitialState@4048458" ,"_ensurePendingEvents@4048458" ,"get:_varData@4048458" ,"get:_isCanceled@4048458" ,"SynchronousStreamController" ,"_SyncStreamControllerDispatch@4048458" ,"_SyncStreamController@4048458" ,"_closeUnchecked@4048458" ,"set:_varData@4048458" ,"_badEventState@4048458" ,"init:_nullFuture@4048458" ,"_nullFuture@4048458" ,"get:_nullFuture@4048458" ,"set:_state@4048458" ,"onResume" ,"get:_pendingEvents@4048458" ,"get:_subscription@4048458" ,"get:_state@4048458" ,"get:_isAddingStream@4048458" ,"_StreamController@4048458" ,"_AsyncStreamControllerDispatch@4048458" ,"_AsyncStreamController@4048458" ,"onPause" ,"StreamController." ,"runBody" ,"get:runBody" ,"scheduleGenerator" ,"set:controller" ,"get:controller" ,"_AsyncStarStreamController@4048458" ,"get:onCancel" ,"get:onResume" ,"get:onListen" ,"_AsyncStarStreamController@4048458." ,"_addLicenses@455240726" ,"get:_addLicenses@455240726" ,"_invokeFrameCallback@444222615" ,"handleDrawFrame" ,"_handleDrawFrame@444222615" ,"get:_handleDrawFrame@444222615" ,"_adjustForEpoch@444222615" ,"handleBeginFrame" ,"_handleBeginFrame@444222615" ,"get:_handleBeginFrame@444222615" ,"ensureFrameCallbacksRegistered" ,"_WidgetsBinding&BindingBase&ServicesBinding@509399801" ,"_SystemFontsNotifier@354047248." ,"_SystemFontsNotifier@354047248" ,"@354047248" ,"package:flutter\/src\/painting\/binding.dart" ,"init:shaderWarmUp" ,"warmUpOnCanvas" ,"DefaultShaderWarmUp" ,"@384477968" ,"package:flutter\/src\/painting\/shader_warm_up.dart" ,"execute" ,"ShaderWarmUp" ,"shaderWarmUp" ,"_instance@354047248" ,"get:shaderWarmUp" ,"PaintingBinding" ,"handleSystemMessage" ,"get:handleSystemMessage" ,"cacheHeight" ,"cacheWidth" ,"bytes" ,"get:instantiateImageCodec" ,"handleMemoryPressure" ,"_CachedImage@373034022" ,"_PendingImage@373034022" ,"_LiveImage@373034022" ,"@373034022" ,"package:flutter\/src\/painting\/image_cache.dart" ,"_CompactIterable@3220832" ,"_checkCacheSize@373034022" ,"loader" ,"silent" ,"informationCollector" ,"stack" ,"exception" ,"setImage" ,"_handleAppFrame@377483930" ,"get:_handleAppFrame@377483930" ,"_handleCodecReady@377483930" ,"get:_handleCodecReady@377483930" ,"_emitFrame@377483930" ,"scheduleFrameCallback" ,"_scheduleAppFrame@377483930" ,"_decodeNextFrameAndSchedule@377483930" ,"_hasFrameDurationPassed@377483930" ,"ImageStreamCompleter." ,"chunkEvents" ,"codec" ,"MultiFrameImageStreamCompleter." ,"MultiFrameImageStreamCompleter" ,"setCompleter" ,"ImageStream" ,"ImageChunkEvent" ,"ImageInfo" ,"ImageStreamListener" ,"@377483930" ,"package:flutter\/src\/painting\/image_stream.dart" ,"removeOnLastListenerRemovedCallback" ,"addOnLastListenerRemovedCallback" ,"ImageStreamCompleter" ,"_trackLiveImage@373034022" ,"_touch@373034022" ,"includeLive" ,"evict" ,"ImageCache" ,"ImageCache." ,"createImageCache" ,"MissingPluginException" ,"MessageCodec" ,"MethodCall" ,"PlatformException" ,"@461240122" ,"package:flutter\/src\/services\/message_codec.dart" ,"MethodCodec" ,"code" ,"encodeErrorEnvelope" ,"encodeSuccessEnvelope" ,"decodeEnvelope" ,"decodeMethodCall" ,"encodeMethodCall" ,"JSONMethodCodec" ,"decodeMessage" ,"encodeMessage" ,"JSONMessageCodec" ,"StringCodec" ,"StandardMethodCodec" ,"@96348627" ,"package:flutter\/src\/services\/message_codecs.dart" ,"endian" ,"done" ,"_alignTo@209185525" ,"putFloat64List" ,"putInt64List" ,"putInt32List" ,"putUint8List" ,"putFloat64" ,"putInt64" ,"putInt32" ,"putUint32" ,"putUint16" ,"putUint8" ,"WriteBuffer." ,"WriteBuffer" ,"@209185525" ,"package:flutter\/src\/foundation\/serialization.dart" ,"getFloat64List" ,"getInt64List" ,"getInt32List" ,"getUint8List" ,"get:hasRemaining" ,"_position@209185525" ,"set:_position@209185525" ,"ReadBuffer" ,"readSize" ,"writeSize" ,"readValueOfType" ,"readValue" ,"writeValue" ,"StandardMessageCodec" ,"flutter\/accessibility" ,"flutter\/system" ,"flutter\/keyevent" ,"flutter\/lifecycle" ,"dart:core-patch\/expando_patch.dart" ,"dart:core\/expando.dart" ,"WeakProperty_new" ,"_new@0150898" ,"_WeakProperty@0150898." ,"init:_deletedEntry@0150898" ,"_deletedEntry@0150898" ,"dyn:~\/" ,"get:_limit@0150898" ,"_checkType@0150898" ,"_rehash@0150898" ,"Expando." ,"get:_deletedEntry@0150898" ,"Expando" ,"init:_methodChannelHandlers@462480135" ,"_methodChannelHandlers@462480135" ,"get:_methodChannelHandlers@462480135" ,"plugins.flutter.io\/firebase_crashlytics" ,"plugins.flutter.io\/firebase_auth" ,"plugins.flutter.io\/shared_preferences" ,"plugins.flutter.io\/google_sign_in" ,"flutter\/navigation" ,"_handleAsMethodCall@462480135" ,"setMethodCallHandler" ,"invokeMapMethod" ,"invokeMethod" ,"missingOk" ,"method" ,"_invokeMethod@462480135" ,"MethodChannel" ,"flutter\/mousecursor" ,"flutter\/platform" ,"flutter\/textinput" ,"OptionalMethodChannel" ,"@462480135" ,"package:flutter\/src\/services\/platform_channel.dart" ,"BasicMessageChannel" ,"get:binaryMessenger" ,"HitTestDispatcher" ,"HitTestable" ,"popTransform" ,"HitTestResult.wrap" ,"HitTestResult." ,"HitTestResult" ,"target" ,"get:target" ,"HitTestEntry" ,"@224494604" ,"package:flutter\/src\/gestures\/hit_test.dart" ,"HitTestTarget" ,"_instance@215304576" ,"GestureBinding" ,"@215304576" ,"package:flutter\/src\/gestures\/binding.dart" ,"FlutterErrorDetailsForPointerEventDispatcher" ,"FlutterErrorDetailsForPointerRouter" ,"@230407777" ,"package:flutter\/src\/gestures\/pointer_router.dart" ,"_dispatch@230407777" ,"removeGlobalRoute" ,"addGlobalRoute" ,"removeRoute" ,"addRoute" ,"PointerRouter." ,"PointerRouter" ,"_dispatchEventToRoutes@230407777" ,"route" ,"dispatchEvent" ,"_handlePointerEvent@215304576" ,"_flushPointerEventQueue@215304576" ,"PointerSignalEvent" ,"transformed" ,"PointerEnterEvent.fromMouseEvent" ,"PointerEnterEvent" ,"PointerAddedEvent" ,"PointerScrollEvent" ,"PointerCancelEvent" ,"PointerExitEvent.fromMouseEvent" ,"PointerExitEvent" ,"PointerRemovedEvent" ,"PointerMoveEvent" ,"PointerUpEvent" ,"PointerDownEvent" ,"PointerHoverEvent" ,"@222050165" ,"package:flutter\/src\/gestures\/events.dart" ,"package:vector_math\/src\/vector_math_64\/vector4.dart" ,"package:vector_math\/src\/vector_math_64\/vector3.dart" ,"package:vector_math\/src\/vector_math_64\/vector.dart" ,"Vector" ,"sub" ,"scaled" ,"setValues" ,"clone" ,"Vector3.zero" ,"Vector3." ,"Vector3.copy" ,"Vector3" ,"Vector4.copy" ,"Vector4." ,"Vector4.zero" ,"Vector4" ,"@401361246" ,"package:vector_math\/vector_math_64.dart" ,"vector_math_64" ,"package:vector_math\/src\/vector_math_64\/matrix4.dart" ,"transform3" ,"Matrix4.zero" ,"setTranslationRaw" ,"tryInvert" ,"rotateZ" ,"perspectiveTransform" ,"getRow" ,"Matrix4.rotationZ" ,"copyInverse" ,"Matrix4.identity" ,"Matrix4.copy" ,"setRotationZ" ,"Matrix4.translationValues" ,"setIdentity" ,"setFrom" ,"invert" ,"isZero" ,"multiply" ,"multiplied" ,"Matrix4.diagonal3Values" ,"Matrix4" ,"setRow" ,"removePerspectiveTransform" ,"transformedEndPosition" ,"untransformedEndPosition" ,"untransformedDelta" ,"transformDeltaViaPositions" ,"transformPosition" ,"PointerEvent" ,"_synthesiseDownButtons@217358395" ,"@217358395" ,"package:flutter\/src\/gestures\/converter.dart" ,"_toLogicalPixels@217358395" ,"PointerEventConverter" ,"_handlePointerDataPacket@215304576" ,"get:_handlePointerDataPacket@215304576" ,"initInstances" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding@509399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding@509399801" ,"@448275577" ,"package:flutter\/src\/semantics\/binding.dart" ,"_instance@448275577" ,"get:instance" ,"SemanticsBinding" ,"handleAccessibilityFeaturesChanged" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding@509399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding@509399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding@509399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding@509399801" ,"_RendererBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&SemanticsBinding@403452173" ,"_RendererBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&SemanticsBinding&HitTestable@403452173" ,"@403452173" ,"package:flutter\/src\/rendering\/binding.dart" ,"_instance@403452173" ,"RendererBinding" ,"handlePlatformBrightnessChanged" ,"hitTest" ,"get:hitTest" ,"@204344403" ,"package:flutter\/src\/foundation\/node.dart" ,"redepthChild" ,"get:redepthChild" ,"dropChild" ,"adoptChild" ,"detach" ,"attach" ,"redepthChildren" ,"AbstractNode" ,"markAsExplicit" ,"set:namesRoute" ,"_addAction@450082469" ,"set:isFocusable" ,"get:isMultiline" ,"set:isButton" ,"set:elevation" ,"set:isEnabled" ,"set:hasImplicitScrolling" ,"SemanticsConfiguration." ,"set:onLongPress" ,"set:onCopy" ,"isCompatibleWith" ,"set:onScrollLeft" ,"set:onScrollRight" ,"set:onMoveCursorForwardByCharacter" ,"set:isFocused" ,"set:scrollExtentMax" ,"set:onScrollUp" ,"set:label" ,"set:onDismiss" ,"set:onMoveCursorForwardByWord" ,"copy" ,"addTagForChildren" ,"set:scrollExtentMin" ,"set:isReadOnly" ,"set:isObscured" ,"set:isMergingSemanticsOfDescendants" ,"set:onScrollDown" ,"set:isSelected" ,"set:isSemanticBoundary" ,"set:scrollPosition" ,"set:onCut" ,"set:isHidden" ,"set:textSelection" ,"set:scrollChildCount" ,"set:onMoveCursorBackwardByCharacter" ,"set:isHeader" ,"set:onMoveCursorBackwardByWord" ,"set:isMultiline" ,"_setFlag@450082469" ,"set:scrollIndex" ,"set:isTextField" ,"set:textDirection" ,"set:onTap" ,"set:liveRegion" ,"_addArgumentlessAction@450082469" ,"_onCustomSemanticsAction@450082469" ,"set:currentValueLength" ,"set:onSetSelection" ,"set:onPaste" ,"set:isImage" ,"sortedWithinKnot" ,"sortedWithinVerticalGroup" ,"_SemanticsSortGroup@450082469." ,"_SemanticsSortGroup@450082469" ,"_BoxEdge@450082469" ,"_childrenInDefaultOrder@450082469" ,"_pointInParentCoordinates@450082469" ,"_concatStrings@450082469" ,"absorb" ,"set:indexInParent" ,"set:scopesRoute" ,"SemanticsConfiguration" ,"get:config" ,"elevationAdjustment" ,"parentPaintClipRect" ,"parentSemanticsClipRect" ,"compileChildren" ,"_InterestingSemanticsFragment@419266271." ,"_RootSemanticsFragment@419266271." ,"_RootSemanticsFragment@419266271" ,"get:abortsWalk" ,"_AbortingSemanticsFragment@419266271." ,"_AbortingSemanticsFragment@419266271" ,"_ensureConfigIsWritable@419266271" ,"_SwitchableSemanticsFragment@419266271." ,"_SwitchableSemanticsFragment@419266271" ,"addAncestor" ,"addTags" ,"get:interestingFragments" ,"get:owner" ,"_InterestingSemanticsFragment@419266271" ,"RelayoutWhenSystemFontsChangeMixin" ,"ParentData" ,"ChildType" ,"ContainerParentDataMixin" ,"_ContainerSemanticsFragment@419266271." ,"_ContainerSemanticsFragment@419266271" ,"Constraints" ,"FlutterErrorDetailsForRendering" ,"RenderObjectWithChildMixin" ,"ParentDataType" ,"ContainerRenderObjectMixin" ,"DiagnosticsDebugCreator" ,"SemanticsHandle._@419266271" ,"SemanticsHandle" ,"@362104375" ,"package:flutter\/src\/painting\/clip.dart" ,"get:annotations" ,"AnnotationResult." ,"AnnotationResult" ,"addToScene" ,"applyTransform" ,"set:offset" ,"set:alpha" ,"OpacityLayer" ,"onlyFirst" ,"localPosition" ,"result" ,"findAnnotations" ,"@379374251" ,"package:flutter\/src\/painting\/matrix_utils.dart" ,"_minMax@379374251" ,"forceToPoint" ,"inverseTransformRect" ,"transformRect" ,"_accumulate@379374251" ,"_safeTransformRect@379374251" ,"isIdentity" ,"matrixEquals" ,"getAsTranslation" ,"MatrixUtils" ,"transformPoint" ,"_transformOffset@414518307" ,"set:transform" ,"TransformLayer" ,"get:alwaysNeedsAddToScene" ,"_SetBase@3220832" ,"dart:collection\/hash_set.dart" ,"_HashSet@3220832." ,"HashSet.from" ,"HashSet." ,"HashSet" ,"_newSet@3220832" ,"_HashSetEntry@3220832" ,"_newSimilarSet@3220832" ,"get:_newSimilarSet@3220832" ,"_IdentityHashSet@3220832." ,"_IdentityHashSet@3220832" ,"_CustomHashSet@3220832." ,"_CustomHashSet@3220832" ,"_remove@3220832" ,"_HashSet@3220832" ,"get:parent" ,"_establishTransform@414518307" ,"_collectTransformForLayerChain@414518307" ,"getLastTransform" ,"set:link" ,"FollowerLayer" ,"OffsetLayer" ,"PerformanceOverlayLayer." ,"PerformanceOverlayLayer" ,"set:clipBehavior" ,"set:clipRect" ,"ClipRectLayer" ,"set:isComplexHint" ,"set:picture" ,"PictureLayer" ,"AnnotationEntry" ,"_addToSceneWithRetainedRendering@414518307" ,"addChildrenToScene" ,"removeAllChildren" ,"_removeChild@414518307" ,"updateSubtreeNeedsAddToScene" ,"buildScene" ,"ContainerLayer" ,"opaque" ,"size" ,"AnnotatedRegionLayer." ,"AnnotatedRegionLayer" ,"LayerLink" ,"set:clipPath" ,"ClipPathLayer" ,"set:shadowColor" ,"PhysicalModelLayer" ,"LeaderLayer" ,"@414518307" ,"package:flutter\/src\/rendering\/layer.dart" ,"findAllAnnotations" ,"find" ,"get:previousSibling" ,"get:nextSibling" ,"set:engineLayer" ,"Layer" ,"markNeedsAddToScene" ,"append" ,"_startRecording@419266271" ,"get:canvas" ,"clipRectAndPaint" ,"clipPathAndPaint" ,"_clipAndPaint@362104375" ,"ClipContext" ,"appendLayer" ,"_debugReportException@419266271" ,"_paintWithContext@419266271" ,"childContext" ,"debugAlsoPaintedParent" ,"child" ,"_repaintCompositedChild@419266271" ,"addLayer" ,"stopRecordingIfNeeded" ,"paintChild" ,"painter" ,"bounds" ,"needsCompositing" ,"setIsComplexHint" ,"_compositeChild@419266271" ,"childPaintBounds" ,"childLayer" ,"pushLayer" ,"repaintCompositedChild" ,"createChildContext" ,"PaintingContext" ,"_SemanticsFragment@419266271" ,"_TraversalSortNode@450082469" ,"dart:_internal\/sort.dart" ,"_insertionSort@11040228" ,"Sort" ,"_dualPivotQuicksort@11040228" ,"_doSort@11040228" ,"Object_haveSameRuntimeType" ,"_haveSameRuntimeType@0150898" ,"_childrenInTraversalOrder@450082469" ,"get:hasChildren" ,"_sortedListsEqual@450082469" ,"SemanticsData" ,"init:_actions@450082469" ,"_actions@450082469" ,"init:_ids@450082469" ,"_ids@450082469" ,"init:_nextId@450082469" ,"_nextId@450082469" ,"getAction" ,"CustomSemanticsAction" ,"get:_actions@450082469" ,"get:_ids@450082469" ,"getIdentifier" ,"getSemanticsData" ,"init:_kEmptyCustomSemanticsActionsList@450082469" ,"_kEmptyCustomSemanticsActionsList@450082469" ,"get:_kEmptyCustomSemanticsActionsList@450082469" ,"_initIdentityTransform@450082469" ,"init:_kIdentityTransform@450082469" ,"_kIdentityTransform@450082469" ,"get:_kIdentityTransform@450082469" ,"init:_kEmptyChildList@450082469" ,"_kEmptyChildList@450082469" ,"get:_kEmptyChildList@450082469" ,"_addToUpdate@450082469" ,"SemanticsOwner." ,"SemanticsOwner" ,"WhereIterable" ,"_markDirty@450082469" ,"sendSemanticsUpdate" ,"get:_semanticsConfiguration@419266271" ,"mergeIntoParent" ,"_getSemanticsForParent@419266271" ,"_updateSemantics@419266271" ,"flushSemantics" ,"_didDisposeSemanticsHandle@419266271" ,"listener" ,"ensureSemantics" ,"_skippedPaintingOnLayer@419266271" ,"flushPaint" ,"markNeedsPaint" ,"_updateCompositingBits@419266271" ,"flushCompositingBits" ,"_enableMutationsToDirtySubtrees@419266271" ,"markNeedsSemanticsUpdate" ,"_layoutWithoutResize@419266271" ,"flushLayout" ,"set:rootNode" ,"requestVisualUpdate" ,"PipelineOwner." ,"PipelineOwner" ,"RenderObject." ,"getTransformTo" ,"describeApproximatePaintClip" ,"set:layer" ,"assembleSemanticsNode" ,"duration" ,"descendant" ,"showOnScreen" ,"applyPaintTransform" ,"describeForError" ,"get:needsCompositing" ,"_cleanChildRelayoutBoundary@419266271" ,"get:sizedByParent" ,"scheduleInitialSemantics" ,"paint" ,"handleEvent" ,"invokeLayoutCallback" ,"get:showOnScreen" ,"visitChildren" ,"scheduleInitialPaint" ,"sendEvent" ,"sendSemanticsEvent" ,"markNeedsCompositingBitsUpdate" ,"get:markNeedsSemanticsUpdate" ,"clearSemantics" ,"describeSemanticsClip" ,"_cleanRelayoutBoundary@419266271" ,"describeSemanticsConfiguration" ,"get:isRepaintBoundary" ,"get:constraints" ,"replaceRootLayer" ,"scheduleInitialLayout" ,"markNeedsLayoutForSizedByParentChange" ,"get:alwaysNeedsCompositing" ,"get:handleEvent" ,"get:markNeedsPaint" ,"markNeedsLayout" ,"parentUsesSize" ,"constraints" ,"markParentNeedsLayout" ,"visitChildrenForSemantics" ,"setupParentData" ,"RenderObject" ,"init:_temporaryTransformHolder@419266271" ,"_temporaryTransformHolder@419266271" ,"get:dropFromTree" ,"_intersectRects@419266271" ,"_applyIntermediatePaintTransforms@419266271" ,"_transformRect@419266271" ,"_computeValues@419266271" ,"_SemanticsGeometry@419266271." ,"get:_temporaryTransformHolder@419266271" ,"_SemanticsGeometry@419266271" ,"@419266271" ,"package:flutter\/src\/rendering\/object.dart" ,"_RenderObject&AbstractNode&DiagnosticableTreeMixin@419266271" ,"SemanticsSortKey" ,"doCompare" ,"OrdinalSortKey" ,"DebugSemanticsDumpOrder" ,"SemanticsHintOverrides" ,"RenderViewport.excludeFromScrolling" ,"RenderViewport.twoPane" ,"SemanticsTag" ,"_SemanticsDiagnosticableNode@450082469" ,"SemanticsProperties" ,"@450082469" ,"package:flutter\/src\/semantics\/semantics.dart" ,"init:_kEmptyConfig@450082469" ,"_kEmptyConfig@450082469" ,"init:_lastIdentifier@450082469" ,"_lastIdentifier@450082469" ,"childrenInInversePaintOrder" ,"config" ,"updateWith" ,"SemanticsNode." ,"get:_kEmptyConfig@450082469" ,"set:isMergedIntoParent" ,"ValueKey" ,"LocalKey" ,"dart:core\/type.dart" ,"_TypeLiteral@202174814" ,"@202174814" ,"package:flutter\/src\/foundation\/key.dart" ,"Key" ,"_canPerformAction@450082469" ,"owner" ,"SemanticsNode.root" ,"_isDifferentFromCurrentSemanticAnnotation@450082469" ,"isTagged" ,"childOrder" ,"_generateNewId@450082469" ,"_replaceChildren@450082469" ,"set:rect" ,"SemanticsNode" ,"_visitDescendants@450082469" ,"_getSemanticsActionHandlerForId@450082469" ,"performAction" ,"_handleSemanticsAction@403452173" ,"get:_handleSemanticsAction@403452173" ,"RenderBoxContainerDefaultsMixin" ,"tighten" ,"BoxConstraints.tightForFinite" ,"enforce" ,"widthConstraints" ,"bottom" ,"right" ,"top" ,"left" ,"copyWith" ,"clamp" ,"inflateRect" ,"get:_left@368303931" ,"EdgeInsets.fromWindowPadding" ,"EdgeInsets" ,"EdgeInsetsDirectional" ,"_left@368303931" ,"_MixedEdgeInsets@368303931" ,"@368303931" ,"package:flutter\/src\/painting\/edge_insets.dart" ,"along" ,"get:horizontal" ,"EdgeInsetsGeometry" ,"get:vertical" ,"constrainWidth" ,"get:hasInfiniteWidth" ,"get:isTight" ,"constrainHeight" ,"get:isNormalized" ,"get:hasBoundedWidth" ,"BoxConstraints.loose" ,"get:hasTightWidth" ,"constrainDimensions" ,"heightConstraints" ,"constrainSizeAndAttemptToPreserveAspectRatio" ,"maxHeight" ,"minHeight" ,"maxWidth" ,"minWidth" ,"get:hasInfiniteHeight" ,"get:biggest" ,"loosen" ,"get:hasTightHeight" ,"get:smallest" ,"get:hasBoundedHeight" ,"constrain" ,"BoxConstraints" ,"_IntrinsicDimension.minHeight" ,"_IntrinsicDimension.minWidth" ,"_IntrinsicDimension.maxHeight" ,"_IntrinsicDimension.maxWidth" ,"_IntrinsicDimension@404392247" ,"position" ,"addWithRawTransform" ,"addWithPaintOffset" ,"addWithPaintTransform" ,"BoxHitTestResult.wrap" ,"BoxHitTestResult" ,"nextSibling" ,"set:nextSibling" ,"previousSibling" ,"set:previousSibling" ,"_ContainerBoxParentData&BoxParentData&ContainerParentDataMixin@404392247" ,"ContainerBoxParentData" ,"BoxHitTestEntry" ,"BoxParentData" ,"_IntrinsicDimensionsCacheEntry@404392247" ,"@404392247" ,"package:flutter\/src\/rendering\/box.dart" ,"set:size" ,"ancestor" ,"point" ,"localToGlobal" ,"globalToLocal" ,"getMaxIntrinsicHeight" ,"get:markNeedsLayout" ,"computeMaxIntrinsicHeight" ,"onlyReal" ,"baseline" ,"getDistanceToBaseline" ,"computeMinIntrinsicHeight" ,"get:computeMinIntrinsicHeight" ,"get:paintBounds" ,"performLayout" ,"getMaxIntrinsicWidth" ,"_computeIntrinsicDimension@404392247" ,"get:computeMaxIntrinsicHeight" ,"hitTestChildren" ,"computeMinIntrinsicWidth" ,"getMinIntrinsicWidth" ,"hitTestSelf" ,"performResize" ,"getDistanceToActualBaseline" ,"computeMaxIntrinsicWidth" ,"get:computeMaxIntrinsicWidth" ,"RenderBox." ,"get:computeMinIntrinsicWidth" ,"get:semanticBounds" ,"computeDistanceToActualBaseline" ,"getMinIntrinsicHeight" ,"RenderBox" ,"set:child" ,"get:child" ,"_RenderView&RenderObject&RenderObjectWithChildMixin@440268214." ,"_RenderView&RenderObject&RenderObjectWithChildMixin@440268214" ,"toMatrix" ,"ViewConfiguration" ,"@440268214" ,"package:flutter\/src\/rendering\/view.dart" ,"_updateMatricesAndCreateNewRootLayer@440268214" ,"configuration" ,"RenderView." ,"_stringify@473077576" ,"ApplicationSwitcherDescription" ,"_toMap@473077576" ,"SystemUiOverlayStyle" ,"DeviceOrientation.portraitUp" ,"DeviceOrientation" ,"@473077576" ,"package:flutter\/src\/services\/system_chrome.dart" ,"_latestStyle@473077576" ,"_pendingStyle@473077576" ,"setApplicationSwitcherDescription" ,"setPreferredOrientations" ,"SystemChrome" ,"setSystemUIOverlayStyle" ,"TargetPlatform.linux" ,"TargetPlatform.fuchsia" ,"TargetPlatform.macOS" ,"TargetPlatform.android" ,"TargetPlatform.windows" ,"TargetPlatform.iOS" ,"@207399751" ,"package:flutter\/src\/foundation\/platform.dart" ,"TargetPlatform" ,"@488188673" ,"package:flutter\/src\/foundation\/_platform_io.dart" ,"get:defaultTargetPlatform" ,"_updateSystemChrome@440268214" ,"package:flutter\/src\/rendering\/mouse_cursor.dart" ,"click" ,"text" ,"basic" ,"createSession" ,"get:debugDescription" ,"SystemMouseCursor" ,"activate" ,"_SystemMouseCursorSession@417306348" ,"MappedIterator" ,"firstNonDeferred" ,"_DeferringMouseCursor@417306348" ,"MouseCursor" ,"MouseCursorSession" ,"@417306348" ,"MouseTrackerCursorMixin" ,"MaterialState.disabled" ,"MaterialState.pressed" ,"MaterialState.hovered" ,"MaterialState.focused" ,"MaterialState" ,"_ClickableMouseCursor@301420358" ,"resolveAs" ,"MaterialStateProperty" ,"@301420358" ,"package:flutter\/src\/material\/material_state.dart" ,"MaterialStateMouseCursor" ,"get:device" ,"_handleDeviceUpdateMouseCursor@417306348" ,"_findFirstCursor@417306348" ,"handleDeviceUpdate" ,"BaseMouseTracker." ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin@418325758." ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin@418325758" ,"replaceLatestEvent" ,"replaceAnnotations" ,"_MouseState@418325758." ,"_MouseState@418325758" ,"_handleDeviceUpdateMouseEvents@418325758" ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin&_MouseTrackerEventMixin@418325758." ,"_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin&_MouseTrackerEventMixin@418325758" ,"_MouseTrackerEventMixin@418325758" ,"_handleEvent@418325758" ,"get:_handleEvent@418325758" ,"_updateAllDevices@418325758" ,"_findAnnotations@418325758" ,"_shouldMarkStateDirty@418325758" ,"_deviceUpdatePhase@418325758" ,"_monitorMouseConnection@418325758" ,"get:mouseIsConnected" ,"addPostFrameCallback" ,"schedulePostFrameCheck" ,"BaseMouseTracker" ,"MouseTracker." ,"MouseTracker" ,"MouseTrackerUpdateDetails" ,"@418325758" ,"package:flutter\/src\/rendering\/mouse_tracking.dart" ,"get:onHover" ,"get:onEnter" ,"get:onExit" ,"MouseTrackerAnnotation" ,"hitTestMouseTrackers" ,"get:hitTestMouseTrackers" ,"set:configuration" ,"prepareInitialFrame" ,"compositeFrame" ,"RenderView" ,"get:renderView" ,"scheduleForcedFrame" ,"handleMetricsChanged" ,"removeTimingsCallback" ,"GlobalObjectKey" ,"_ElementLifecycle@28042623" ,"init:_registry@28042623" ,"_registry@28042623" ,"get:currentState" ,"get:currentContext" ,"get:_currentElement@28042623" ,"_unregister@28042623" ,"_register@28042623" ,"debugLabel" ,"GlobalKey." ,"get:_registry@28042623" ,"GlobalKey" ,"init:builder" ,"builder" ,"createRenderObject" ,"_defaultErrorWidgetBuilder@28042623" ,"ErrorWidget.withDetails" ,"get:builder" ,"ErrorWidget" ,"createElement" ,"StatelessWidget" ,"detachRenderObject" ,"attachRenderObject" ,"_updateSlot@28042623" ,"_updateParentData@28042623" ,"unmount" ,"deactivate" ,"deactivateChild" ,"canUpdate" ,"replaceWithNullIfForgotten" ,"forgottenChildren" ,"newWidgets" ,"oldChildren" ,"updateChildren" ,"performRebuild" ,"update" ,"mount" ,"_findAncestorParentDataElement@28042623" ,"_findAncestorRenderObjectElement@28042623" ,"get:renderObject" ,"get:widget" ,"RenderObjectElement." ,"RenderObjectElement" ,"removeChildRenderObject" ,"moveChildRenderObject" ,"insertChildRenderObject" ,"LeafRenderObjectElement." ,"LeafRenderObjectElement" ,"InheritedWidget" ,"updated" ,"ProxyElement." ,"ProxyElement" ,"init:_nextHashCode@28042623" ,"_nextHashCode@28042623" ,"getElementForInheritedWidgetOfExactType" ,"inflateWidget" ,"updateChild" ,"describeElement" ,"findAncestorStateOfType" ,"aspect" ,"dependOnInheritedWidgetOfExactType" ,"findRenderObject" ,"findAncestorWidgetOfExactType" ,"updateSlotForChild" ,"forgetChild" ,"_debugSetAllowIgnoredCallsToMarkNeedsBuild@28042623" ,"_updateDepth@28042623" ,"_activateWithParent@28042623" ,"_retakeInactiveElement@28042623" ,"scheduleBuildFor" ,"markNeedsBuild" ,"didChangeDependencies" ,"debugGetCreatorChain" ,"dependOnInheritedElement" ,"rebuild" ,"_sort@28042623" ,"visitAncestorElements" ,"_updateInheritance@28042623" ,"findRootAncestorStateOfType" ,"Element." ,"_activateRecursively@28042623" ,"visitChildElements" ,"findAncestorRenderObjectOfType" ,"Element" ,"get:children" ,"MultiChildRenderObjectElement." ,"MultiChildRenderObjectElement" ,"_firstBuild@28042623" ,"_widget@28042623" ,"set:_widget@28042623" ,"ComponentElement." ,"StatefulElement." ,"StatefulElement" ,"buildScope" ,"lockState" ,"_FocusNode&Object&DiagnosticableTreeMixin@514042876" ,"_handlePointerEvent@514042876" ,"_markDetached@514042876" ,"get:_handlePointerEvent@514042876" ,"_markNeedsUpdate@514042876" ,"WhereTypeIterator" ,"get:descendants" ,"disposition" ,"unfocus" ,"requestFocus" ,"get:traversalDescendants" ,"get:canRequestFocus" ,"set:skipTraversal" ,"get:ancestors" ,"onKey" ,"oldScope" ,"node" ,"_FocusTraversalGroupInfo@528280150" ,"@552313948" ,"package:flutter\/src\/widgets\/inherited_notifier.dart" ,"updateShouldNotify" ,"InheritedNotifier" ,"_handleUpdate@552313948" ,"get:_handleUpdate@552313948" ,"notifyClients" ,"InheritedElement." ,"_InheritedNotifierElement@552313948." ,"_InheritedNotifierElement@552313948" ,"AxisDirection.left" ,"AxisDirection.down" ,"AxisDirection.right" ,"AxisDirection.up" ,"RenderComparison.paint" ,"RenderComparison.layout" ,"RenderComparison.identical" ,"RenderComparison.metadata" ,"RenderComparison" ,"Axis.vertical" ,"Axis.horizontal" ,"Axis" ,"VerticalDirection.down" ,"VerticalDirection" ,"@352409233" ,"package:flutter\/src\/painting\/basic_types.dart" ,"AxisDirection" ,"getAxisDirectionFromAxisReverseAndDirectionality" ,"updateRenderObject" ,"package:flutter\/src\/widgets\/ticker_provider.dart" ,"setState" ,"_didChangeEntryOpacity@511319124" ,"_remove@511319124" ,"setEquals" ,"mapEquals" ,"@196414040" ,"package:flutter\/src\/foundation\/collections.dart" ,"listEquals" ,"above" ,"below" ,"newEntries" ,"rearrange" ,"entries" ,"initState" ,"OverlayState." ,"OverlayState" ,"_WidgetTicker@39311458" ,"of" ,"TickerMode" ,"SingleTickerProviderStateMixin" ,"_EffectiveTickerMode@39311458" ,"@39311458" ,"TickerProviderStateMixin" ,"_removeTicker@39311458" ,"createTicker" ,"_OverlayState&State&TickerProviderStateMixin@511319124" ,"_markNeedsBuild@511319124" ,"_OverlayEntryWidgetState@511319124" ,"get:maintainState" ,"set:opaque" ,"maintainState" ,"OverlayEntry." ,"OverlayEntry" ,"createState" ,"debugRequiredFor" ,"rootOverlay" ,"Overlay" ,"_TheatreElement@511319124." ,"_TheatreElement@511319124" ,"paintStack" ,"set:skipCount" ,"getIntrinsicDimension" ,"_markNeedResolution@511319124" ,"_resolve@511319124" ,"get:_firstOnstageChild@511319124" ,"get:paintStack" ,"get:_lastOnstageChild@511319124" ,"__RenderTheatre&RenderBox&ContainerRenderObjectMixin@511319124." ,"children" ,"skipCount" ,"_RenderTheatre@511319124." ,"_RenderTheatre@511319124" ,"_Theatre@511319124" ,"_OverlayEntryWidget@511319124" ,"@511319124" ,"package:flutter\/src\/widgets\/overlay.dart" ,"StackParentData" ,"after" ,"move" ,"_removeFromChildList@419266271" ,"_insertIntoChildList@419266271" ,"__RenderTheatre&RenderBox&ContainerRenderObjectMixin@511319124" ,"defaultPaint" ,"defaultHitTestChildren" ,"defaultComputeDistanceToHighestActualBaseline" ,"_RenderStack&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@435419958." ,"_RenderStack&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@435419958" ,"Overflow.clip" ,"Overflow" ,"StackFit.passthrough" ,"StackFit.expand" ,"StackFit.loose" ,"StackFit" ,"RelativeRect.fromRect" ,"RelativeRect.fromSize" ,"RelativeRect" ,"@435419958" ,"package:flutter\/src\/rendering\/stack.dart" ,"set:overflow" ,"_markNeedResolution@435419958" ,"TextAlignVertical" ,"Double_toStringAsFixed" ,"_toStringAsFixed@0150898" ,"toStringAsFixed" ,"_stringify@351341779" ,"inscribe" ,"withinRect" ,"alongSize" ,"alongOffset" ,"get:_x@351341779" ,"Alignment" ,"_x@351341779" ,"_MixedAlignment@351341779" ,"AlignmentDirectional" ,"@351341779" ,"package:flutter\/src\/painting\/alignment.dart" ,"AlignmentGeometry" ,"get:alignment" ,"_resolve@435419958" ,"overflow" ,"fit" ,"alignment" ,"RenderStack." ,"set:alignment" ,"layoutPositionedChild" ,"set:fit" ,"RenderStack" ,"Stack" ,"TextParentData" ,"get:childCount" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin@420149678." ,"childAfter" ,"get:firstChild" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin@420149678" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@420149678." ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@420149678" ,"systemFontsDidChange" ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&RelayoutWhenSystemFontsChangeMixin@420149678." ,"_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&RelayoutWhenSystemFontsChangeMixin@420149678" ,"TextOverflow.clip" ,"TextOverflow.visible" ,"TextOverflow.fade" ,"TextOverflow.ellipsis" ,"TextOverflow" ,"@420149678" ,"package:flutter\/src\/rendering\/paragraph.dart" ,"Double_ceil" ,"ceilToDouble" ,"PlaceholderDimensions" ,"TextWidthBasis.parent" ,"TextWidthBasis" ,"_CaretMetrics@388105366" ,"@388105366" ,"package:flutter\/src\/painting\/text_painter.dart" ,"whiteHelsinki caption" ,"Arial" ,"Liberation Sans" ,"DejaVu Sans" ,"Cantarell" ,"Ubuntu" ,"Roboto" ,"whiteRedmond subtitle1" ,"Segoe UI" ,"englishLike overline 2014" ,"whiteMountainView subtitle2" ,"dense display3 2014" ,"blackCupertino headline6" ,".SF UI Display" ,"tall body1 2014" ,"blackHelsinki headline2" ,"whiteMountainView headline5" ,"whiteMountainView headline6" ,"blackRedmond headline4" ,"whiteMountainView headline4" ,"whiteMountainView caption" ,"dense subhead 2014" ,"whiteHelsinki headline6" ,"blackCupertino headline5" ,"blackHelsinki headline1" ,"whiteHelsinki bodyText2" ,"whiteRedmond caption" ,"blackRedmond headline1" ,"whiteCupertino headline2" ,"whiteCupertino bodyText1" ,".SF UI Text" ,"whiteRedmond bodyText2" ,"whiteCupertino headline5" ,"whiteCupertino subtitle2" ,"blackCupertino subtitle2" ,"whiteRedmond headline1" ,"blackHelsinki caption" ,"blackHelsinki bodyText2" ,"whiteRedmond headline6" ,"whiteMountainView headline2" ,"blackMountainView headline6" ,"blackCupertino headline4" ,"whiteHelsinki headline3" ,"dense title 2014" ,"englishLike display4 2014" ,"blackCupertino caption" ,"tall title 2014" ,"whiteHelsinki button" ,"blackMountainView subtitle1" ,"englishLike subhead 2014" ,"whiteRedmond headline2" ,"blackMountainView bodyText2" ,"whiteRedmond headline5" ,"blackMountainView headline3" ,"blackHelsinki headline4" ,"blackMountainView bodyText1" ,"englishLike display2 2014" ,"whiteHelsinki headline2" ,"tall display1 2014" ,"whiteRedmond headline4" ,"tall overline 2014" ,"whiteCupertino headline3" ,"blackRedmond caption" ,"blackCupertino headline2" ,"dense overline 2014" ,"whiteCupertino headline6" ,"dense subtitle 2014" ,"dense body1 2014" ,"whiteCupertino overline" ,"blackCupertino overline" ,"dense headline 2014" ,"tall subtitle 2014" ,"tall display4 2014" ,"whiteCupertino headline4" ,"blackRedmond headline2" ,"tall caption 2014" ,"englishLike body2 2014" ,"blackMountainView headline1" ,"blackCupertino headline3" ,"tall subhead 2014" ,"blackRedmond subtitle1" ,"whiteHelsinki headline4" ,"whiteHelsinki subtitle1" ,"tall display3 2014" ,"englishLike button 2014" ,"whiteHelsinki headline1" ,"dense button 2014" ,"blackRedmond bodyText1" ,"whiteHelsinki bodyText1" ,"whiteHelsinki subtitle2" ,"whiteRedmond headline3" ,"englishLike display1 2014" ,"englishLike subtitle 2014" ,"englishLike body1 2014" ,"fallback style; consider putting your text in a Material" ,"monospace" ,"whiteCupertino headline1" ,"blackMountainView caption" ,"tall headline 2014" ,"blackCupertino headline1" ,"dense caption 2014" ,"blackRedmond headline3" ,"dense display2 2014" ,"whiteMountainView headline3" ,"whiteHelsinki overline" ,"blackHelsinki bodyText1" ,"dense body2 2014" ,"dense display4 2014" ,"tall body2 2014" ,"whiteCupertino caption" ,"whiteMountainView bodyText1" ,"whiteMountainView overline" ,"whiteRedmond button" ,"blackMountainView button" ,"blackHelsinki overline" ,"whiteCupertino button" ,"englishLike headline 2014" ,"whiteMountainView subtitle1" ,"dense display1 2014" ,"blackMountainView subtitle2" ,"blackRedmond overline" ,"whiteCupertino subtitle1" ,"blackCupertino subtitle1" ,"englishLike title 2014" ,"whiteMountainView button" ,"tall display2 2014" ,"blackHelsinki headline5" ,"englishLike display3 2014" ,"blackHelsinki headline3" ,"englishLike caption 2014" ,"blackRedmond headline5" ,"blackMountainView headline2" ,"whiteCupertino bodyText2" ,"whiteHelsinki headline5" ,"whiteRedmond bodyText1" ,"blackHelsinki subtitle1" ,"tall button 2014" ,"blackMountainView headline5" ,"blackRedmond subtitle2" ,"blackCupertino button" ,"blackRedmond button" ,"blackHelsinki button" ,"blackHelsinki headline6" ,"whiteMountainView bodyText2" ,"blackRedmond headline6" ,"whiteRedmond subtitle2" ,"whiteRedmond overline" ,"blackCupertino bodyText2" ,"blackRedmond bodyText2" ,"whiteMountainView headline1" ,".SF Pro Text" ,"blackHelsinki subtitle2" ,"blackMountainView overline" ,"blackMountainView headline4" ,"blackCupertino bodyText1" ,"@390401080" ,"package:flutter\/src\/painting\/text_style.dart" ,"@387310338" ,"package:flutter\/src\/painting\/strut_style.dart" ,"package" ,"leading" ,"forceStrutHeight" ,"textStyle" ,"StrutStyle.fromTextStyle" ,"textScaleFactor" ,"getParagraphStyle" ,"merge" ,"heightDelta" ,"heightFactor" ,"wordSpacingDelta" ,"wordSpacingFactor" ,"letterSpacingDelta" ,"letterSpacingFactor" ,"fontWeightDelta" ,"fontSizeDelta" ,"fontSizeFactor" ,"decorationThicknessDelta" ,"decorationThicknessFactor" ,"backgroundColor" ,"apply" ,"inherit" ,"get:fontFamilyFallback" ,"getTextStyle" ,"get:preferredLineHeight" ,"includePlaceholders" ,"includeSemanticsLabels" ,"buffer" ,"InlineSpanSemanticsInformation" ,"increment" ,"Accumulator" ,"@378141754" ,"package:flutter\/src\/painting\/inline_span.dart" ,"codeUnitAt" ,"computeSemanticsInformation" ,"getSemanticsInformation" ,"getSpanForPosition" ,"InlineSpan" ,"@389009668" ,"package:flutter\/src\/painting\/text_span.dart" ,"codeUnitAtVisitor" ,"getSpanForPositionVisitor" ,"dimensions" ,"TextSpan" ,"computeToPlainText" ,"toPlainText" ,"_getRectFromDownstream@388105366" ,"getOffsetBefore" ,"getOffsetForCaret" ,"set:locale" ,"getOffsetAfter" ,"selection" ,"getBoxesForSelection" ,"setPlaceholderDimensions" ,"set:text" ,"getFullHeightForCaret" ,"get:_emptyOffset@388105366" ,"_createParagraphStyle@388105366" ,"_getRectFromUpstream@388105366" ,"_computeCaretMetrics@388105366" ,"set:ellipsis" ,"set:textAlign" ,"set:strutStyle" ,"set:textScaleFactor" ,"set:maxLines" ,"_applyFloatingPointHack@388105366" ,"TextPainter" ,"_computeIntrinsicHeight@420149678" ,"textWidthBasis" ,"softWrap" ,"RenderParagraph." ,"_computeChildrenWidthWithMaxIntrinsics@420149678" ,"get:text" ,"_computeChildrenHeightWithMinIntrinsics@420149678" ,"set:textWidthBasis" ,"_layoutTextWithConstraints@420149678" ,"_layoutChildren@420149678" ,"get:textDirection" ,"_computeChildrenWidthWithMinIntrinsics@420149678" ,"set:softWrap" ,"_canComputeIntrinsics@420149678" ,"_layoutText@420149678" ,"get:systemFontsDidChange" ,"set:textHeightBehavior" ,"_extractPlaceholderSpans@420149678" ,"get:textScaleFactor" ,"_combineSemanticsInfo@420149678" ,"_setParentData@420149678" ,"RenderParagraph" ,"_extractChildren@480167661" ,"RichText." ,"RichText" ,"alignChild" ,"_markNeedResolution@426204652" ,"_resolve@426204652" ,"RenderAligningShiftedBox." ,"RenderAligningShiftedBox" ,"set:padding" ,"padding" ,"RenderPadding." ,"RenderPadding" ,"_getSize@426204652" ,"@491314005" ,"package:flutter\/src\/widgets\/preferred_size.dart" ,"PreferredSizeWidget" ,"_getEffectiveCenterTitle@240187611" ,"bottomOpacity" ,"toolbarOpacity" ,"titleSpacing" ,"excludeHeaderSemantics" ,"centerTitle" ,"primary" ,"textTheme" ,"actionsIconTheme" ,"iconTheme" ,"brightness" ,"shape" ,"flexibleSpace" ,"title" ,"automaticallyImplyLeading" ,"AppBar." ,"AppBar" ,"DrawerController" ,"_DrawerControllerState&State&SingleTickerProviderStateMixin@273517151" ,"DrawerAlignment" ,"@273517151" ,"package:flutter\/src\/material\/drawer.dart" ,"_handleDragCancel@273517151" ,"_handleHistoryEntryRemoved@273517151" ,"_animationChanged@273517151" ,"DrawerControllerState" ,"open" ,"Scaffold" ,"_ScaffoldState&State&TickerProviderStateMixin@319420462" ,"_ScaffoldScope@319420462" ,"_FloatingActionButtonTransition@319420462" ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin@159305771." ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin@159305771" ,"@159305771" ,"package:flutter\/src\/cupertino\/action_sheet.dart" ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@159305771." ,"__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@159305771" ,"_getSize@405472081" ,"delegate" ,"RenderCustomMultiChildLayoutBox." ,"NavigationToolbar" ,"_ToolbarSlot.middle" ,"_ToolbarSlot.trailing" ,"_ToolbarSlot.leading" ,"_ToolbarSlot@576023576" ,"@576023576" ,"package:flutter\/src\/widgets\/navigation_toolbar.dart" ,"_ToolbarLayout@576023576" ,"RenderCustomMultiChildLayoutBox" ,"MultiChildLayoutParentData" ,"@405472081" ,"package:flutter\/src\/rendering\/custom_layout.dart" ,"getSize" ,"_callPerformLayout@405472081" ,"positionChild" ,"layoutChild" ,"hasChild" ,"MultiChildLayoutDelegate" ,"_ScaffoldLayout@319420462." ,"_ScaffoldLayout@319420462" ,"floatingActionButtonArea" ,"bottomNavigationBarTop" ,"_scaleFloatingActionButton@319420462" ,"ScaffoldGeometry" ,"ScaffoldFeatureController" ,"_BodyBuilder@319420462" ,"_ScaffoldSlot.bottomSheet" ,"_ScaffoldSlot.snackBar" ,"_ScaffoldSlot.bottomNavigationBar" ,"_ScaffoldSlot.drawer" ,"_ScaffoldSlot.statusBar" ,"_ScaffoldSlot.persistentFooter" ,"_ScaffoldSlot.body" ,"_ScaffoldSlot.appBar" ,"_ScaffoldSlot.endDrawer" ,"_ScaffoldSlot.floatingActionButton" ,"_ScaffoldSlot.bodyScrim" ,"_ScaffoldSlot@319420462" ,"__FloatingActionButtonTransitionState&State&TickerProviderStateMixin@319420462" ,"ScaffoldPrelayoutGeometry" ,"_BodyBoxConstraints@319420462" ,"_StandardBottomSheet@319420462" ,"init:_entranceTurnTween@319420462" ,"_entranceTurnTween@319420462" ,"floatingActionButtonScale" ,"_updateWith@319420462" ,"_onProgressChanged@319420462" ,"get:_onProgressChanged@319420462" ,"_handlePreviousAnimationStatusChanged@319420462" ,"get:_handlePreviousAnimationStatusChanged@319420462" ,"_updateGeometryScale@319420462" ,"_updateAnimations@319420462" ,"didUpdateWidget" ,"get:_entranceTurnTween@319420462" ,"_FloatingActionButtonTransitionState@319420462" ,"_ScaffoldGeometryNotifier@319420462." ,"_ScaffoldGeometryNotifier@319420462" ,"@319420462" ,"package:flutter\/src\/material\/scaffold.dart" ,"get:_resizeToAvoidBottomInset@319420462" ,"_maybeBuildPersistentBottomSheet@319420462" ,"openDrawer" ,"get:hasEndDrawer" ,"keepScrollOffset" ,"initialScrollOffset" ,"@520437953" ,"package:flutter\/src\/widgets\/scroll_controller.dart" ,"debugFillDescription" ,"ScrollDirection.forward" ,"ScrollDirection.idle" ,"ScrollDirection.reverse" ,"ScrollDirection" ,"@442519463" ,"package:flutter\/src\/rendering\/viewport_offset.dart" ,"LayoutChangedNotification" ,"_dispatch@538140401" ,"NotificationListener" ,"@538140401" ,"package:flutter\/src\/widgets\/notification_listener.dart" ,"visitAncestor" ,"get:visitAncestor" ,"Notification" ,"dispatch" ,"ViewportNotificationMixin" ,"get:depth" ,"_ScrollNotification&LayoutChangedNotification&ViewportNotificationMixin@555159306" ,"ScrollNotification" ,"defaultScrollNotificationPredicate" ,"dragDetails" ,"DragUpdateDetails" ,"DragDownDetails" ,"DragStartDetails" ,"@220100346" ,"package:flutter\/src\/gestures\/drag_details.dart" ,"norm" ,"_Vector@226188158." ,"_Vector@226188158" ,"LeastSquaresSolver" ,"PolynomialFit." ,"PolynomialFit" ,"@226188158" ,"package:flutter\/src\/gestures\/lsq_solver.dart" ,"_Matrix@226188158." ,"_Matrix@226188158" ,"solve" ,"abs" ,"getVelocityEstimate" ,"addPosition" ,"VelocityTracker." ,"VelocityTracker" ,"pixelsPerSecond" ,"get:pixelsPerSecond" ,"VelocityEstimate" ,"_PointAtTime@236010635" ,"@236010635" ,"package:flutter\/src\/gestures\/velocity_tracker.dart" ,"clampMagnitude" ,"Velocity" ,"get:velocity" ,"DragEndDetails" ,"get:dragDetails" ,"ScrollEndNotification" ,"ScrollStartNotification" ,"ScrollUpdateNotification" ,"OverscrollNotification" ,"@555159306" ,"package:flutter\/src\/widgets\/scroll_notification.dart" ,"UserScrollNotification" ,"Future.error" ,"cleanUp" ,"eagerError" ,"futures" ,"wait" ,"CacheExtentStyle.pixel" ,"CacheExtentStyle.viewport" ,"CacheExtentStyle" ,"applyGrowthDirectionToScrollDirection" ,"applyGrowthDirectionToAxisDirection" ,"SliverGeometry" ,"crossAxisPosition" ,"mainAxisPosition" ,"crossAxisOffset" ,"mainAxisOffset" ,"paintOffset" ,"addWithAxisOffset" ,"SliverHitTestResult.wrap" ,"SliverHitTestResult" ,"SliverPhysicalContainerParentData" ,"_SliverLogicalContainerParentData&SliverLogicalParentData&ContainerParentDataMixin@427505787" ,"SliverPhysicalParentData" ,"_SliverPhysicalContainerParentData&SliverPhysicalParentData&ContainerParentDataMixin@427505787" ,"RenderSliverHelpers" ,"SliverHitTestEntry" ,"SliverLogicalContainerParentData" ,"crossAxisExtent" ,"maxExtent" ,"minExtent" ,"asBoxConstraints" ,"get:axis" ,"cacheOrigin" ,"remainingCacheExtent" ,"viewportMainAxisExtent" ,"crossAxisDirection" ,"remainingPaintExtent" ,"overlap" ,"precedingScrollExtent" ,"scrollOffset" ,"userScrollDirection" ,"growthDirection" ,"axisDirection" ,"SliverConstraints" ,"GrowthDirection.forward" ,"GrowthDirection.reverse" ,"GrowthDirection" ,"SliverLogicalParentData" ,"@427505787" ,"package:flutter\/src\/rendering\/sliver.dart" ,"childCrossAxisPosition" ,"to" ,"from" ,"calculateCacheOffset" ,"calculatePaintOffset" ,"set:geometry" ,"RenderSliver." ,"RenderSliver" ,"ParentDataClass" ,"set:crossAxisDirection" ,"set:cacheExtentStyle" ,"_RenderViewportBase&RenderBox&ContainerRenderObjectMixin@441057554." ,"cacheExtentStyle" ,"cacheExtent" ,"RenderViewportBase." ,"computeAbsolutePaintOffset" ,"set:axisDirection" ,"showInViewport" ,"paintOffsetOf" ,"_yieldEachIterable@0150898" ,"set:_yieldEachIterable@0150898" ,"_current@0150898" ,"set:_current@0150898" ,"_SyncIterator@0150898" ,"get:childrenInPaintOrder" ,"_paintContents@441057554" ,"get:_paintContents@441057554" ,"getOffsetToReveal" ,"advance" ,"mainAxisExtent" ,"layoutOffset" ,"layoutChildSequence" ,"set:cacheExtent" ,"RenderViewportBase" ,"get:childrenInHitTestOrder" ,"computeChildMainAxisPosition" ,"maxScrollObstructionExtentBefore" ,"scrollOffsetOf" ,"updateChildLayoutOffset" ,"updateOutOfBandData" ,"get:childAfter" ,"_attemptLayout@441057554" ,"RenderShrinkWrappingViewport." ,"RenderShrinkWrappingViewport" ,"childBefore" ,"get:childBefore" ,"anchor" ,"RenderViewport." ,"set:anchor" ,"set:center" ,"RenderViewport" ,"_RenderViewportBase&RenderBox&ContainerRenderObjectMixin@441057554" ,"RevealedOffset" ,"@441057554" ,"package:flutter\/src\/rendering\/viewport.dart" ,"RenderAbstractViewport" ,"alignmentPolicy" ,"object" ,"ensureVisible" ,"createBallisticSimulation" ,"applyBoundaryConditions" ,"applyTo" ,"ClampingScrollPhysics" ,"isScrolling" ,"newPosition" ,"oldPosition" ,"adjustPositionForNewDimensions" ,"RangeMaintainingScrollPhysics" ,"get:dragStartDistanceMotionThreshold" ,"carriedMomentum" ,"get:minFlingVelocity" ,"applyPhysicsToUserOffset" ,"frictionFactor" ,"BouncingScrollPhysics" ,"shouldAcceptUserOffset" ,"AlwaysScrollableScrollPhysics" ,"@521316757" ,"package:flutter\/src\/widgets\/scroll_physics.dart" ,"@397491837" ,"package:flutter\/src\/physics\/tolerance.dart" ,"Tolerance" ,"init:_kDefaultTolerance@521316757" ,"_kDefaultTolerance@521316757" ,"init:_kDefaultSpring@521316757" ,"_kDefaultSpring@521316757" ,"get:_kDefaultTolerance@521316757" ,"get:spring" ,"get:maxFlingVelocity" ,"buildParent" ,"get:tolerance" ,"get:_kDefaultSpring@521316757" ,"get:minFlingDistance" ,"get:allowImplicitScrolling" ,"ScrollPhysics" ,"recommendDeferredLoading" ,"get:axisDirection" ,"@557164591" ,"package:flutter\/src\/widgets\/scroll_position_with_single_context.dart" ,"get:isScrolling" ,"get:shouldIgnorePointer" ,"applyNewDimensions" ,"IdleScrollActivity" ,"ScrollHoldController" ,"goIdle" ,"goBallistic" ,"_end@579498029" ,"get:_end@579498029" ,"didOverscrollBy" ,"didUpdateScrollPositionBy" ,"scrollFactor" ,"onVerticalDragUpdate" ,"onHorizontalDragUpdate" ,"onLongPress" ,"onTap" ,"RenderSemanticsGestureHandler." ,"_performSemanticScrollRight@423160605" ,"get:_performSemanticScrollRight@423160605" ,"set:onVerticalDragUpdate" ,"set:onHorizontalDragUpdate" ,"_performSemanticScrollUp@423160605" ,"_performSemanticScrollDown@423160605" ,"get:_performSemanticScrollDown@423160605" ,"_isValidAction@423160605" ,"get:_performSemanticScrollUp@423160605" ,"_performSemanticScrollLeft@423160605" ,"get:_performSemanticScrollLeft@423160605" ,"RenderSemanticsGestureHandler" ,"set:validActions" ,"behavior" ,"HitTestBehavior.opaque" ,"HitTestBehavior.deferToChild" ,"HitTestBehavior.translucent" ,"HitTestBehavior" ,"get:behavior" ,"RawGestureDetector" ,"GestureArenaEntry" ,"GestureDisposition.rejected" ,"GestureDisposition.accepted" ,"GestureDisposition" ,"_GestureArena@214060655." ,"_GestureArena@214060655" ,"_resolveInFavorOf@214060655" ,"_resolveByDefault@214060655" ,"_tryToResolveArena@214060655" ,"_resolve@214060655" ,"release" ,"hold" ,"sweep" ,"GestureArenaManager." ,"GestureArenaManager" ,"@214060655" ,"package:flutter\/src\/gestures\/arena.dart" ,"GestureArenaMember" ,"_GestureRecognizer&GestureArenaMember&DiagnosticableTreeMixin@232296176" ,"DragStartBehavior.down" ,"DragStartBehavior.start" ,"DragStartBehavior" ,"GestureRecognizerState.ready" ,"GestureRecognizerState.defunct" ,"GestureRecognizerState.possible" ,"GestureRecognizerState" ,"_getGlobalDistance@232296176" ,"_stopTimer@232296176" ,"didStopTrackingLastPointer" ,"rejectGesture" ,"acceptGesture" ,"debugReport" ,"invokeCallback" ,"LongPressMoveUpdateDetails" ,"_reset@225232524" ,"_checkLongPressEnd@225232524" ,"_checkLongPressMoveUpdate@225232524" ,"handlePrimaryPointer" ,"didExceedDeadline" ,"isPointerAllowed" ,"kind" ,"postAcceptSlopTolerance" ,"debugOwner" ,"LongPressGestureRecognizer." ,"LongPressGestureRecognizer" ,"LongPressEndDetails" ,"@225232524" ,"package:flutter\/src\/gestures\/long_press.dart" ,"LongPressStartDetails" ,"_checkLongPressStart@225232524" ,"reason" ,"down" ,"handleTapCancel" ,"up" ,"handleTapUp" ,"handleTapDown" ,"TapGestureRecognizer." ,"onTapDown" ,"get:onTapDown" ,"TapGestureRecognizer" ,"TapUpDetails" ,"TapDownDetails" ,"@234069716" ,"package:flutter\/src\/gestures\/tap.dart" ,"_reset@234069716" ,"_checkCancel@234069716" ,"initializer" ,"constructor" ,"_AnyTapGestureRecognizerFactory@575005443" ,"_ModalBarrierGestureDetector@575005443" ,"assignSemantics" ,"_ModalBarrierSemanticsDelegate@575005443" ,"ModalBarrier" ,"_RenderProxyBoxMixin&RenderBox&RenderObjectWithChildMixin@423160605" ,"RenderProxyBoxMixin" ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin@423160605." ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin@423160605" ,"RenderAnimatedOpacityMixin" ,"_updateOpacity@423160605" ,"get:_updateOpacity@423160605" ,"set:alwaysIncludeSemantics" ,"set:opacity" ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin&RenderAnimatedOpacityMixin@423160605." ,"_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin&RenderAnimatedOpacityMixin@423160605" ,"_RenderShiftedBox&RenderBox&RenderObjectWithChildMixin@426204652." ,"_RenderProxyBox&RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin@423160605." ,"RenderProxyBox." ,"opacity" ,"alwaysIncludeSemantics" ,"RenderAnimatedOpacity." ,"RenderAnimatedOpacity" ,"FadeTransition" ,"get:turns" ,"RotationTransition" ,"AnimatedBuilder" ,"DecoratedBoxTransition" ,"_handleChange@496170175" ,"get:_handleChange@496170175" ,"_AnimatedState@496170175" ,"get:position" ,"SlideTransition" ,"get:scale" ,"ScaleTransition" ,"@496170175" ,"package:flutter\/src\/widgets\/transitions.dart" ,"AnimatedWidget" ,"AnimatedModalBarrier" ,"@575005443" ,"package:flutter\/src\/widgets\/modal_barrier.dart" ,"_AnyTapGestureRecognizer@575005443." ,"_AnyTapGestureRecognizer@575005443" ,"_checkUp@234069716" ,"startTrackingPointer" ,"addAllowedPointer" ,"BaseTapGestureRecognizer." ,"BaseTapGestureRecognizer" ,"_checkDown@234069716" ,"didExceedDeadlineWithEvent" ,"GestureRecognizer." ,"OneSequenceGestureRecognizer." ,"preAcceptSlopTolerance" ,"deadline" ,"PrimaryPointerGestureRecognizer." ,"PrimaryPointerGestureRecognizer" ,"OffsetPair.fromEventPosition" ,"OffsetPair" ,"stopTrackingIfPointerNoLongerDown" ,"stopTrackingPointer" ,"_addPointerToArena@232296176" ,"resolvePointer" ,"handleNonAllowedPointer" ,"OneSequenceGestureRecognizer" ,"@232296176" ,"package:flutter\/src\/gestures\/recognizer.dart" ,"getKindForPointer" ,"addPointer" ,"GestureRecognizer" ,"GestureRecognizerFactoryWithHandlers" ,"GestureRecognizerFactory" ,"_GestureSemantics@548132872" ,"dragStartBehavior" ,"excludeFromSemantics" ,"onScaleEnd" ,"onScaleUpdate" ,"onScaleStart" ,"onPanCancel" ,"onPanEnd" ,"onPanUpdate" ,"onPanStart" ,"onPanDown" ,"onForcePressEnd" ,"onForcePressUpdate" ,"onForcePressPeak" ,"onForcePressStart" ,"onHorizontalDragCancel" ,"onHorizontalDragEnd" ,"onHorizontalDragStart" ,"onHorizontalDragDown" ,"onVerticalDragCancel" ,"onVerticalDragEnd" ,"onVerticalDragStart" ,"onVerticalDragDown" ,"onSecondaryLongPressEnd" ,"onSecondaryLongPressUp" ,"onSecondaryLongPressMoveUpdate" ,"onSecondaryLongPressStart" ,"onSecondaryLongPress" ,"onLongPressEnd" ,"onLongPressUp" ,"onLongPressMoveUpdate" ,"onLongPressStart" ,"onDoubleTap" ,"onSecondaryTapCancel" ,"onSecondaryTapUp" ,"onSecondaryTapDown" ,"onSecondaryTap" ,"onTapCancel" ,"onTapUp" ,"GestureDetector." ,"_ForceState.ready" ,"_ForceState.possible" ,"_ForceState.peaked" ,"_ForceState.started" ,"_ForceState.accepted" ,"_ForceState@223518508" ,"@223518508" ,"package:flutter\/src\/gestures\/force_press.dart" ,"ForcePressDetails" ,"_inverseLerp@223518508" ,"interpolation" ,"peakPressure" ,"startPressure" ,"ForcePressGestureRecognizer." ,"ForcePressGestureRecognizer" ,"get:onForcePressEnd" ,"get:onForcePressStart" ,"GestureDetector" ,"SemanticsGestureDelegate" ,"_getPrimaryValueFromOffset@227099969" ,"_getDeltaForDetails@227099969" ,"isFlingGesture" ,"VerticalDragGestureRecognizer." ,"VerticalDragGestureRecognizer" ,"PanGestureRecognizer." ,"PanGestureRecognizer" ,"HorizontalDragGestureRecognizer." ,"HorizontalDragGestureRecognizer" ,"_DragState.possible" ,"_DragState.accepted" ,"_DragState.ready" ,"_DragState@227099969" ,"@227099969" ,"package:flutter\/src\/gestures\/monodrag.dart" ,"_checkDown@227099969" ,"_checkStart@227099969" ,"DragGestureRecognizer." ,"_checkCancel@227099969" ,"reject" ,"pointer" ,"_giveUpPointer@227099969" ,"minFlingVelocity" ,"globalPosition" ,"primaryDelta" ,"delta" ,"sourceTimeStamp" ,"_checkUpdate@227099969" ,"_checkEnd@227099969" ,"DragGestureRecognizer" ,"_getVerticalDragUpdateHandler@548132872" ,"_getHorizontalDragUpdateHandler@548132872" ,"_getLongPressHandler@548132872" ,"_getTapHandler@548132872" ,"_DefaultSemanticsGestureDelegate@548132872" ,"@548132872" ,"package:flutter\/src\/widgets\/gesture_detector.dart" ,"_updateSemanticsForRenderObject@548132872" ,"get:_updateSemanticsForRenderObject@548132872" ,"_handlePointerDown@548132872" ,"get:_handlePointerDown@548132872" ,"get:_defaultBehavior@548132872" ,"_syncAll@548132872" ,"replaceGestureRecognizers" ,"RawGestureDetectorState" ,"replaceSemanticsActions" ,"setSemanticsActions" ,"_updateSemanticActions@556085019" ,"setPixels" ,"_tick@579498029" ,"get:_tick@579498029" ,"dispatchOverscrollNotification" ,"applyMoveTo" ,"resetActivity" ,"BallisticScrollActivity." ,"BallisticScrollActivity" ,"get:done" ,"DrivenScrollActivity." ,"DrivenScrollActivity" ,"dispatchScrollEndNotification" ,"dispatchScrollUpdateNotification" ,"dispatchScrollStartNotification" ,"updateDelegate" ,"ScrollActivity" ,"HoldScrollActivity" ,"DragScrollActivity" ,"@219286954" ,"package:flutter\/src\/gestures\/drag.dart" ,"Drag" ,"_adjustForScrollStartThreshold@579498029" ,"_maybeLoseMomentum@579498029" ,"get:_reversed@579498029" ,"ScrollDragController." ,"ScrollDragController" ,"@579498029" ,"package:flutter\/src\/widgets\/scroll_activity.dart" ,"ScrollActivityDelegate" ,"get:dispose" ,"drag" ,"applyUserOffset" ,"correctPixels" ,"get:_effectiveIgnoringSemantics@423160605" ,"set:ignoringSemantics" ,"ignoringSemantics" ,"ignoring" ,"RenderIgnorePointer." ,"RenderIgnorePointer" ,"set:ignoring" ,"setIgnorePointer" ,"_ScrollPosition&ViewportOffset&ScrollMetrics@556085019." ,"ScrollPosition." ,"initialPixels" ,"physics" ,"ScrollPositionWithSingleContext." ,"jumpTo" ,"ScrollPositionWithSingleContext" ,"viewportFraction" ,"viewportDimension" ,"pixels" ,"maxScrollExtent" ,"minScrollExtent" ,"get:extentAfter" ,"get:extentInside" ,"get:extentBefore" ,"ScrollMetrics" ,"@574372966" ,"package:flutter\/src\/widgets\/scroll_metrics.dart" ,"FixedScrollMetrics" ,"get:_initialPageOffset@585030489" ,"getPixelsFromPage" ,"getPageFromPixels" ,"get:page" ,"previousPage" ,"nextPage" ,"page" ,"animateToPage" ,"keepPage" ,"initialPage" ,"PageController." ,"PageController" ,"init:_defaultPageController@585030489" ,"_defaultPageController@585030489" ,"get:_defaultPageController@585030489" ,"_getTargetPixels@585030489" ,"_getPixels@585030489" ,"_getPage@585030489" ,"PageScrollPhysics" ,"estimateMaxScrollOffset" ,"SliverChildDelegate" ,"_createErrorWidget@523358031" ,"_kDefaultSemanticIndexCallback@523358031" ,"shouldRebuild" ,"get:estimatedChildCount" ,"findIndexByKey" ,"_findChildIndex@523358031" ,"semanticIndexOffset" ,"semanticIndexCallback" ,"addSemanticIndexes" ,"addAutomaticKeepAlives" ,"addRepaintBoundaries" ,"SliverChildListDelegate." ,"SliverChildListDelegate" ,"childScrollOffset" ,"childMainAxisPosition" ,"computeMaxScrollOffset" ,"getGeometryForChildIndex" ,"_getOffsetFromStartInCrossAxis@430097367" ,"ceil" ,"getMaxChildIndexForScrollOffset" ,"Double_trunc_div" ,"_trunc_div@0150898" ,"getMinChildIndexForScrollOffset" ,"SliverGridRegularTileLayout" ,"getBoxConstraints" ,"SliverGridGeometry" ,"SliverGridParentData" ,"SliverGridDelegate" ,"SliverGridLayout" ,"@430097367" ,"package:flutter\/src\/rendering\/sliver_grid.dart" ,"getLayout" ,"_YearPickerGridDelegate@498246833" ,"get:debugCheckContext" ,"clipCallback" ,"borderRadius" ,"customBorder" ,"radius" ,"canvas" ,"paintInkCircle" ,"subtract" ,"BorderRadiusGeometry" ,"_topLeft@355070249" ,"get:_topLeft@355070249" ,"_MixedBorderRadius@355070249" ,"@355070249" ,"package:flutter\/src\/painting\/border_radius.dart" ,"toRRect" ,"BorderRadius" ,"BorderRadius.circular" ,"init:kMaterialEdges" ,"MaterialType.circle" ,"MaterialType.card" ,"MaterialType.transparency" ,"MaterialType.canvas" ,"MaterialType.button" ,"MaterialType" ,"kMaterialEdges" ,"get:kMaterialEdges" ,"_didChangeLayout@298372823" ,"_removeFeature@298372823" ,"addInkFeature" ,"vsync" ,"_RenderInkFeatures@298372823." ,"_RenderInkFeatures@298372823" ,"Material" ,"__MaterialState&State&TickerProviderStateMixin@298372823" ,"didUpdateTweens" ,"forEachTween" ,"_AnimatedOpacityState@497443363" ,"TextStyleTween" ,"AnimatedPhysicalModel" ,"_constructTweens@497443363" ,"_updateTween@497443363" ,"_shouldAnimateTween@497443363" ,"_updateCurve@497443363" ,"ImplicitlyAnimatedWidgetState" ,"_ImplicitlyAnimatedWidgetState&State&SingleTickerProviderStateMixin@497443363" ,"BoxPainter" ,"@366230966" ,"package:flutter\/src\/painting\/decoration.dart" ,"@360053944" ,"package:flutter\/src\/painting\/box_shadow.dart" ,"toPaint" ,"BoxShadow" ,"lerpList" ,"reversed" ,"paintBorder" ,"BorderStyle.solid" ,"BorderStyle.none" ,"canMerge" ,"BorderSide" ,"OutlinedBorder" ,"BorderStyle" ,"@356168635" ,"package:flutter\/src\/painting\/borders.dart" ,"lerpTo" ,"lerpFrom" ,"ShapeBorder" ,"_paintUniformBorderWithRectangle@357461502" ,"_paintUniformBorderWithCircle@357461502" ,"_paintUniformBorderWithRadius@357461502" ,"getOuterPath" ,"BoxBorder" ,"BoxShape.circle" ,"BoxShape.rectangle" ,"BoxShape" ,"get:isUniform" ,"get:dimensions" ,"Border.all" ,"Border" ,"@357461502" ,"package:flutter\/src\/painting\/box_border.dart" ,"BorderDirectional" ,"_paintBackgroundColor@358196095" ,"_paintShadows@358196095" ,"_paintBox@358196095" ,"_getBackgroundPaint@358196095" ,"_BoxDecorationPainter@358196095" ,"@358196095" ,"package:flutter\/src\/painting\/box_decoration.dart" ,"createBoxPainter" ,"get:isComplex" ,"getClipPath" ,"get:padding" ,"BoxDecoration" ,"_ColorsAndStops@372499651" ,"Node" ,"set:right" ,"set:left" ,"_SplayTreeNode@3220832" ,"_SplayTreeSetNode@3220832" ,"get:_last@3220832" ,"get:_first@3220832" ,"_addNewRoot@3220832" ,"_splayMax@3220832" ,"_splayMin@3220832" ,"_splay@3220832" ,"_SplayTree@3220832" ,"IterableMixin" ,"_SplayTreeSet&_SplayTree&IterableMixin@3220832" ,"_SplayTreeSet&_SplayTree&IterableMixin&SetMixin@3220832" ,"get:_newSet@3220832" ,"_root@3220832" ,"get:_root@3220832" ,"SplayTreeSet" ,"SplayTreeSet." ,"_interpolateColorsAndStops@372499651" ,"_sample@372499651" ,"@372499651" ,"package:flutter\/src\/painting\/gradient.dart" ,"createShader" ,"LinearGradient" ,"init:_kGradientShadowTween@177053933" ,"_kGradientShadowTween@177053933" ,"init:_kMiddleLeftTween@177053933" ,"_kMiddleLeftTween@177053933" ,"init:_kRightMiddleTween@177053933" ,"_kRightMiddleTween@177053933" ,"get:_kGradientShadowTween@177053933" ,"get:_kMiddleLeftTween@177053933" ,"get:_kRightMiddleTween@177053933" ,"_allHeroesFor@565011697" ,"Hero" ,"_boundingBoxFor@565011697" ,"HeroFlightDirection.pop" ,"HeroFlightDirection.push" ,"HeroFlightDirection" ,"notify" ,"get:notify" ,"_NavigatorPopObservation@529124995" ,"_NavigatorRemoveObservation@529124995" ,"RouteSettings" ,"@577409680" ,"package:flutter\/src\/widgets\/route_notification_messages.dart" ,"RouteNotificationMessages" ,"maybeNotifyRouteChange" ,"get:settings" ,"shouldAnnounceChangeToNext" ,"init:suitableForTransitionAnimationPredicate" ,"suitableForTransitionAnimationPredicate" ,"get:suitableForTransitionAnimationPredicate" ,"previousPresent" ,"previous" ,"isNewFirst" ,"navigator" ,"handlePush" ,"Lists" ,"handleRemoval" ,"handlePop" ,"init:willBePresentPredicate" ,"willBePresentPredicate" ,"get:willBePresentPredicate" ,"handleDidPopNext" ,"didAdd" ,"handleAdd" ,"init:isPresentPredicate" ,"isPresentPredicate" ,"get:isPresentPredicate" ,"rearrangeOverlay" ,"_flushHistoryUpdates@529124995" ,"get:_allRouteOverlayEntries@529124995" ,"_updateEffectiveObservers@529124995" ,"allowNull" ,"_routeNamed@529124995" ,"_afterNavigation@529124995" ,"_getRouteAfter@529124995" ,"_handlePointerUpOrCancel@529124995" ,"get:_handlePointerUpOrCancel@529124995" ,"_getRouteBefore@529124995" ,"get:userGestureInProgress" ,"_handlePointerDown@529124995" ,"get:_handlePointerDown@529124995" ,"_updateHeroController@529124995" ,"maybePop" ,"NavigatorState." ,"settings" ,"Route." ,"_NotAnnounced@529124995." ,"init:notAnnounced" ,"notAnnounced" ,"get:notAnnounced" ,"_RouteEntry@529124995." ,"_flushRouteAnnouncement@529124995" ,"_flushObserverNotifications@529124995" ,"set:_userGesturesInProgress@529124995" ,"routeName" ,"pushNamed" ,"_cancelActivePointers@529124995" ,"TO" ,"newRoute" ,"pushReplacement" ,"findFirstFocus" ,"_doRequestFocus@514042876" ,"autofocus" ,"get:focusedChild" ,"get:nearestScope" ,"canRequestFocus" ,"skipTraversal" ,"FocusScopeNode." ,"FocusScopeNode" ,"setFirstFocus" ,"_ModalScope@49188637" ,"get:willHandlePopInternally" ,"didPop" ,"willPop" ,"_ModalRoute&TransitionRoute&LocalHistoryRoute@49188637." ,"_ModalRoute&TransitionRoute&LocalHistoryRoute@49188637" ,"filter" ,"PopupRoute." ,"PopupRoute" ,"_notifyRemoved@49188637" ,"LocalHistoryEntry" ,"buildTransitions" ,"createOverlayEntries" ,"_buildModalBarrier@49188637" ,"get:_buildModalBarrier@49188637" ,"didPush" ,"get:hasScopedWillPopCallback" ,"install" ,"get:isFirst" ,"get:canPop" ,"changedExternalState" ,"OverlayRoute." ,"TransitionRoute." ,"PageStorage" ,"keys" ,"_StorageEntryIdentifier@584357337" ,"PageStorageKey" ,"@584357337" ,"package:flutter\/src\/widgets\/page_storage.dart" ,"identifier" ,"readState" ,"writeState" ,"_computeIdentifier@584357337" ,"_allKeys@584357337" ,"_maybeAddKey@584357337" ,"PageStorageBucket" ,"ModalRoute." ,"changedInternalState" ,"_buildModalScope@49188637" ,"get:_buildModalScope@49188637" ,"get:subtreeContext" ,"didChangePrevious" ,"ModalRoute" ,"LocalHistoryRoute" ,"finalize" ,"isRoutePredicate" ,"get:finishedWhenPopped" ,"get:overlayEntries" ,"OverlayRoute" ,"canTransitionFrom" ,"didChangeNext" ,"didPopNext" ,"_handleStatusChanged@49188637" ,"get:_handleStatusChanged@49188637" ,"_setSecondaryAnimation@49188637" ,"@484323179" ,"package:flutter\/src\/widgets\/pages.dart" ,"PageRoute." ,"PageRoute" ,"@306331911" ,"package:flutter\/src\/material\/page.dart" ,"buildPage" ,"canTransitionTo" ,"fullscreenDialog" ,"MaterialPageRoute." ,"MaterialPageRoute" ,"get:debugLabel" ,"_PopupMenuRoute@310182389." ,"@311391735" ,"package:flutter\/src\/material\/popup_menu_theme.dart" ,"PopupMenuThemeData" ,"_CaptureAll@494220367" ,"@494220367" ,"package:flutter\/src\/widgets\/inherited_theme.dart" ,"captureAll" ,"InheritedTheme" ,"PopupMenuTheme" ,"rootNavigator" ,"localeOf" ,"Localizations" ,"_Pending@483081674" ,"@211330144" ,"package:flutter\/src\/foundation\/synchronous_future.dart" ,"SynchronousFuture" ,"LocalizationsDelegate" ,"_loadAll@483081674" ,"WidgetsLocalizations" ,"_LocalizationsScope@483081674" ,"load" ,"DefaultWidgetsLocalizations" ,"shouldReload" ,"isSupported" ,"_WidgetsLocalizationsDelegate@483081674" ,"@483081674" ,"package:flutter\/src\/widgets\/localizations.dart" ,"get:_textDirection@483081674" ,"_anyDelegatesShouldReload@483081674" ,"_LocalizationsState@483081674." ,"_LocalizationsState@483081674" ,"resourcesFor" ,"_MaterialLocalizationsDelegate@300075540" ,"formatDecimal" ,"dart:core-patch\/date_patch.dart" ,"dart:core\/date_time.dart" ,"get:millisecondsSinceEpoch" ,"DateTime_timeZoneOffsetInSeconds" ,"_timeZoneOffsetInSecondsForClampedSeconds@0150898" ,"DateTime.now" ,"get:weekday" ,"_threeDigits@0150898" ,"dyn:%" ,"get:_localDateInUtcMicros@0150898" ,"_fourDigits@0150898" ,"DateTime_currentTimeMicros" ,"_getCurrentMicros@0150898" ,"_timeZoneOffsetInSeconds@0150898" ,"get:microsecond" ,"isAfter" ,"get:second" ,"DateTime.utc" ,"_brokenDownDateToValue@0150898" ,"get:_parts@0150898" ,"isBefore" ,"_dayFromYear@0150898" ,"DateTime._now@0150898" ,"get:minute" ,"DateTime_localTimeZoneAdjustmentInSeconds" ,"_localTimeZoneAdjustmentInSeconds@0150898" ,"_weekDay@0150898" ,"_equivalentYear@0150898" ,"_isLeapYear@0150898" ,"DateTime." ,"get:millisecond" ,"_yearsFromSecondsSinceEpoch@0150898" ,"DateTime._withValue@0150898" ,"_computeUpperPart@0150898" ,"isUtc" ,"millisecondsSinceEpoch" ,"DateTime.fromMillisecondsSinceEpoch" ,"get:hour" ,"_flooredDivision@0150898" ,"get:day" ,"get:month" ,"DateTime._internal@0150898" ,"_twoDigits@0150898" ,"_equivalentSeconds@0150898" ,"DateTime" ,"get:year" ,"formatMonthYear" ,"formatFullDate" ,"formatYear" ,"DefaultMaterialLocalizations" ,"@300075540" ,"package:flutter\/src\/material\/material_localizations.dart" ,"MaterialLocalizations" ,"useRootNavigator" ,"semanticLabel" ,"items" ,"initialValue" ,"captureInheritedThemes" ,"showMenu" ,"_RenderMenuItem@310182389." ,"_RenderMenuItem@310182389" ,"showButtonMenu" ,"get:showButtonMenu" ,"PopupMenuButtonState" ,"PopupMenuItem" ,"PopupMenuButton" ,"getPositionForChild" ,"getConstraintsForChild" ,"_PopupMenuRouteLayout@310182389" ,"_MenuItem@310182389" ,"PopupMenuEntry" ,"_PopupMenu@310182389" ,"handleTap" ,"get:handleTap" ,"buildChild" ,"PopupMenuItemState" ,"@310182389" ,"package:flutter\/src\/material\/popup_menu.dart" ,"_PopupMenuRoute@310182389" ,"createAnimation" ,"createAnimationController" ,"didReplace" ,"_updateSecondaryAnimation@49188637" ,"TransitionRoute" ,"_ModalScopeStatus@49188637" ,"@49188637" ,"package:flutter\/src\/widgets\/routes.dart" ,"_forceRebuildPage@49188637" ,"_ModalScopeState@49188637." ,"_ModalScopeState@49188637" ,"get:_shouldIgnoreFocusRequest@49188637" ,"get:isCurrent" ,"_routeSetState@49188637" ,"set:offstage" ,"_doCreateRectTween@565011697" ,"shouldIncludedChildInPlaceholder" ,"startFlight" ,"get:animation" ,"_buildOverlay@565011697" ,"get:_buildOverlay@565011697" ,"divert" ,"_handleAnimationUpdate@565011697" ,"get:_handleAnimationUpdate@565011697" ,"_HeroFlight@565011697." ,"get:tag" ,"_handleFlightEnded@565011697" ,"get:_handleFlightEnded@565011697" ,"init:_defaultHeroFlightShuttleBuilder@565011697" ,"_defaultHeroFlightShuttleBuilder@565011697" ,"get:_defaultHeroFlightShuttleBuilder@565011697" ,"_startHeroTransition@565011697" ,"_maybeStartHeroTransition@565011697" ,"didStartUserGesture" ,"finalizeRoute" ,"_getIndexBefore@529124995" ,"get:overlay" ,"NavigatorState" ,"RouteTransitionRecord" ,"_NotAnnounced@529124995" ,"RoutePopDisposition.doNotPop" ,"RoutePopDisposition.bubble" ,"RoutePopDisposition.pop" ,"RoutePopDisposition" ,"HeroControllerScope" ,"_NavigatorReplaceObservation@529124995" ,"pageRouteToPagelessRoutes" ,"locationToExitingPageRoute" ,"newPageRouteHistory" ,"DefaultTransitionDelegate" ,"TransitionDelegate" ,"_NavigatorPushObservation@529124995" ,"get:isActive" ,"didComplete" ,"Route" ,"_NavigatorObservation@529124995" ,"isReplaced" ,"get:hasPage" ,"markForPop" ,"markForComplete" ,"_RouteEntry@529124995" ,"_RouteLifecycle.dispose" ,"_RouteLifecycle.popping" ,"_RouteLifecycle.adding" ,"_RouteLifecycle.disposed" ,"_RouteLifecycle.push" ,"_RouteLifecycle.pop" ,"_RouteLifecycle.removing" ,"_RouteLifecycle.add" ,"_RouteLifecycle.remove" ,"_RouteLifecycle.pushReplace" ,"_RouteLifecycle.staging" ,"_RouteLifecycle.pushing" ,"_RouteLifecycle.replace" ,"_RouteLifecycle.idle" ,"_RouteLifecycle@529124995" ,"Page" ,"_NavigatorState&State&TickerProviderStateMixin@529124995" ,"defaultGenerateInitialRoutes" ,"Navigator" ,"@529124995" ,"package:flutter\/src\/widgets\/navigator.dart" ,"NavigatorObserver" ,"oldRoute" ,"HeroController." ,"HeroController" ,"init:_reverseTween@565011697" ,"_reverseTween@565011697" ,"get:_reverseTween@565011697" ,"_HeroFlight@565011697" ,"_HeroFlightManifest@565011697" ,"@565011697" ,"package:flutter\/src\/widgets\/heroes.dart" ,"_HeroState@565011697." ,"_HeroState@565011697" ,"ensurePlaceholderIsHidden" ,"keepPlaceholder" ,"endFlight" ,"didStopUserGesture" ,"Double_floor" ,"floorToDouble" ,"floor" ,"dragEnd" ,"dragUpdate" ,"_CupertinoBackGestureController@177053933." ,"_CupertinoBackGestureController@177053933" ,"secondaryRouteAnimation" ,"primaryRouteAnimation" ,"linearTransition" ,"CupertinoPageTransition." ,"buildPageTransitions" ,"_startPopGesture@177053933" ,"_isPopGestureEnabled@177053933" ,"isPopGestureInProgress" ,"CupertinoPageRoute" ,"_CupertinoBackGestureDetector@177053933" ,"_CupertinoEdgeShadowPainter@177053933" ,"_handlePointerDown@177053933" ,"get:_handlePointerDown@177053933" ,"_handleDragCancel@177053933" ,"get:_handleDragCancel@177053933" ,"_handleDragEnd@177053933" ,"get:_handleDragEnd@177053933" ,"_handleDragUpdate@177053933" ,"get:_handleDragUpdate@177053933" ,"_handleDragStart@177053933" ,"get:_handleDragStart@177053933" ,"_convertToLogical@177053933" ,"_CupertinoBackGestureDetectorState@177053933" ,"CupertinoPageTransition" ,"@177053933" ,"package:flutter\/src\/cupertino\/route.dart" ,"_CupertinoEdgeShadowDecoration@177053933" ,"Decoration" ,"DecorationTween" ,"AnimatedPadding" ,"_AnimatedPhysicalModelState@497443363" ,"_AnimatedDefaultTextStyleState@497443363" ,"_handleAnimationChanged@497443363" ,"get:_handleAnimationChanged@497443363" ,"AnimatedWidgetBaseState" ,"EdgeInsetsGeometryTween" ,"_AnimatedPaddingState@497443363" ,"AnimatedOpacity" ,"BorderRadiusTween" ,"AnimatedDefaultTextStyle" ,"@497443363" ,"package:flutter\/src\/widgets\/implicit_animations.dart" ,"ImplicitlyAnimatedWidget" ,"_MaterialInterior@298372823" ,"ShapeBorderTween" ,"MaterialInkController" ,"_ShapeBorderPaint@298372823" ,"_InkFeatures@298372823" ,"_MaterialInteriorState@298372823" ,"_adjustBorderRadius@383493913" ,"_adjustRect@383493913" ,"_RoundedRectangleToCircleBorder@383493913" ,"@383493913" ,"package:flutter\/src\/painting\/rounded_rectangle_border.dart" ,"RoundedRectangleBorder" ,"_getShape@298372823" ,"_transparentInterior@298372823" ,"_getBackgroundColor@298372823" ,"_MaterialState@298372823." ,"_MaterialState@298372823" ,"CustomPainterSemantics" ,"_paintWithPainter@406012902" ,"willChange" ,"preferredSize" ,"isComplex" ,"foregroundPainter" ,"RenderCustomPaint." ,"_updateSemanticsChildren@406012902" ,"shouldRebuildSemantics" ,"_didUpdatePainter@406012902" ,"_canUpdateSemanticsChild@406012902" ,"_updateSemanticsChild@406012902" ,"set:painter" ,"set:foregroundPainter" ,"set:preferredSize" ,"RenderCustomPaint" ,"@406012902" ,"package:flutter\/src\/rendering\/custom_paint.dart" ,"CustomPainter" ,"shouldRepaint" ,"_ShapeBorderPainter@298372823" ,"@298372823" ,"package:flutter\/src\/material\/material.dart" ,"_paint@298372823" ,"InkFeature" ,"InteractiveInkFeature" ,"getRectCallback" ,"get:getRectCallback" ,"InkResponse" ,"package:flutter\/src\/widgets\/automatic_keep_alive.dart" ,"_HighlightType.hover" ,"_HighlightType.pressed" ,"_HighlightType.focus" ,"_HighlightType@294059085" ,"_InkResponseStateWidget@294059085" ,"InteractiveInkFeatureFactory" ,"_ParentInkResponseState@294059085" ,"KeepAliveHandle." ,"KeepAliveHandle" ,"AutomaticKeepAlive" ,"KeepAliveNotification" ,"_applyParentData@28042623" ,"applyWidgetOutOfTurn" ,"_addClient@495490736" ,"get:_addClient@495490736" ,"_createCallback@495490736" ,"_updateParentDataOfChild@495490736" ,"_getChildElement@495490736" ,"_updateChild@495490736" ,"_AutomaticKeepAliveState@495490736" ,"@495490736" ,"AutomaticKeepAliveClientMixin" ,"get:highlightsExist" ,"get:wantKeepAlive" ,"updateKeepAlive" ,"_releaseKeepAlive@495490736" ,"_ensureKeepAlive@495490736" ,"__InkResponseState&State&AutomaticKeepAliveClientMixin@294059085" ,"_InkSplashFactory@293036029" ,"_handleAlphaStatusChanged@293036029" ,"get:_handleAlphaStatusChanged@293036029" ,"paintFeature" ,"confirm" ,"InkSplash" ,"_getClipCallback@293036029" ,"@293036029" ,"package:flutter\/src\/material\/ink_splash.dart" ,"_getSplashRadiusForPositionInSize@293036029" ,"_getTargetRadius@293036029" ,"InkSplash." ,"onRemoved" ,"rectCallback" ,"containedInkWell" ,"referenceBox" ,"create" ,"_createInkFeature@294059085" ,"@279191779" ,"package:flutter\/src\/material\/feedback.dart" ,"_platform@279191779" ,"@458511188" ,"package:flutter\/src\/services\/haptic_feedback.dart" ,"HapticFeedback" ,"vibrate" ,"forLongPress" ,"Feedback" ,"forTap" ,"_handleAlphaStatusChanged@291209331" ,"@291209331" ,"package:flutter\/src\/material\/ink_highlight.dart" ,"_paintHighlight@291209331" ,"InkHighlight" ,"get:_handleAlphaStatusChanged@291209331" ,"InkHighlight." ,"Intent" ,"_getParent@513441002" ,"removeActionListener" ,"addActionListener" ,"isEnabled" ,"Action." ,"Action" ,"invokeAction" ,"invoke" ,"_findDispatcher@513441002" ,"_visitActionsAncestors@513441002" ,"Actions" ,"DoNothingIntent" ,"_ActionsMarker@513441002" ,"CallbackAction." ,"CallbackAction" ,"DoNothingAction." ,"DoNothingAction" ,"ContextAction" ,"_handleActionChanged@513441002" ,"get:_handleActionChanged@513441002" ,"_updateActionListeners@513441002" ,"_ActionsState@513441002." ,"_ActionsState@513441002" ,"ActionDispatcher" ,"@513441002" ,"package:flutter\/src\/widgets\/actions.dart" ,"ActivateIntent" ,"_handleAction@294059085" ,"_handleMouseExit@294059085" ,"get:_handleMouseExit@294059085" ,"_handleMouseEnter@294059085" ,"_handleTap@294059085" ,"get:_anyChildInkResponsePressed@294059085" ,"updateHighlight" ,"_handleTapCancel@294059085" ,"get:_handleTapCancel@294059085" ,"_startSplash@294059085" ,"get:enabled" ,"get:_handleMouseEnter@294059085" ,"NavigationMode.traditional" ,"NavigationMode.directional" ,"NavigationMode" ,"@481282825" ,"package:flutter\/src\/widgets\/media_query.dart" ,"removeBottom" ,"removeRight" ,"removeTop" ,"removeLeft" ,"removeViewInsets" ,"removePadding" ,"navigationMode" ,"boldText" ,"accessibleNavigation" ,"invertColors" ,"disableAnimations" ,"highContrast" ,"alwaysUse24HourFormat" ,"physicalDepth" ,"systemGestureInsets" ,"viewInsets" ,"viewPadding" ,"platformBrightness" ,"devicePixelRatio" ,"MediaQueryData.fromWindow" ,"MediaQueryData" ,"boldTextOverride" ,"textScaleFactorOf" ,"MediaQuery.removeViewInsets" ,"MediaQuery.removePadding" ,"MediaQuery" ,"_handleFocusUpdate@294059085" ,"get:_handleFocusUpdate@294059085" ,"_handleHoverChange@294059085" ,"_InkResponseState@294059085." ,"get:_shouldShowFocus@294059085" ,"getHighlightColorForType" ,"_isWidgetEnabled@294059085" ,"markChildInkResponsePressed" ,"FocusHighlightMode.touch" ,"FocusHighlightMode.traditional" ,"FocusHighlightMode" ,"_handleFocusHighlightModeChange@294059085" ,"get:_handleFocusHighlightModeChange@294059085" ,"_handleTapDown@294059085" ,"get:_handleTapDown@294059085" ,"_updateFocusHighlights@294059085" ,"get:_handleAction@294059085" ,"_handleDoubleTap@294059085" ,"get:_canRequestFocus@294059085" ,"_InkResponseState@294059085" ,"_ParentInkResponseProvider@294059085" ,"@294059085" ,"package:flutter\/src\/material\/ink_well.dart" ,"InkWell" ,"margin" ,"foregroundDecoration" ,"getApproximateClipRect" ,"CustomClipper" ,"shouldReclip" ,"getClip" ,"_DecorationClipper@544235064" ,"set:position" ,"set:decoration" ,"RenderDecoratedBox." ,"RenderDecoratedBox" ,"DecoratedBox" ,"@544235064" ,"package:flutter\/src\/widgets\/container.dart" ,"get:_paddingIncludingDecoration@544235064" ,"Container" ,"Container." ,"customSemanticsActions" ,"onDidLoseAccessibilityFocus" ,"onDidGainAccessibilityFocus" ,"onSetSelection" ,"onMoveCursorBackwardByCharacter" ,"onMoveCursorForwardByCharacter" ,"onDismiss" ,"onPaste" ,"onCut" ,"onCopy" ,"onDecrease" ,"onIncrease" ,"onScrollDown" ,"onScrollUp" ,"onScrollRight" ,"onScrollLeft" ,"sortKey" ,"onLongPressHint" ,"onTapHint" ,"liveRegion" ,"image" ,"hidden" ,"namesRoute" ,"scopesRoute" ,"multiline" ,"obscured" ,"inMutuallyExclusiveGroup" ,"focused" ,"focusable" ,"readOnly" ,"textField" ,"header" ,"link" ,"button" ,"toggled" ,"selected" ,"checked" ,"enabled" ,"excludeSemantics" ,"explicitChildNodes" ,"container" ,"Semantics." ,"wrap" ,"DefaultTextStyle" ,"@533420430" ,"package:flutter\/src\/widgets\/text.dart" ,"Text" ,"MaterialTapTargetSize.padded" ,"MaterialTapTargetSize.shrinkWrap" ,"MaterialTapTargetSize" ,"_FifoCache@340408314." ,"init:_localizedThemeDataCache@340408314" ,"_localizedThemeDataCache@340408314" ,"@249120218" ,"package:flutter\/src\/material\/bottom_navigation_bar_theme.dart" ,"@248237691" ,"package:flutter\/src\/material\/bottom_navigation_bar.dart" ,"BottomNavigationBarType" ,"BottomNavigationBarThemeData" ,"@254200583" ,"package:flutter\/src\/material\/button_bar_theme.dart" ,"MainAxisAlignment.end" ,"MainAxisAlignment.spaceAround" ,"MainAxisAlignment.spaceBetween" ,"MainAxisAlignment.start" ,"MainAxisAlignment.center" ,"MainAxisAlignment.spaceEvenly" ,"package:flutter\/src\/rendering\/debug_overflow_indicator.dart" ,"_startIsTopLeft@411478290" ,"_OverflowSide@408233388" ,"@408233388" ,"DebugOverflowIndicatorMixin" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin@411478290." ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@411478290." ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&DebugOverflowIndicatorMixin@411478290." ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&DebugOverflowIndicatorMixin@411478290" ,"MainAxisSize.min" ,"MainAxisSize.max" ,"MainAxisSize" ,"FlexParentData" ,"FlexFit.loose" ,"FlexFit.tight" ,"FlexFit" ,"_getMainSize@411478290" ,"_getFlex@411478290" ,"_getCrossSize@411478290" ,"get:_hasOverflow@411478290" ,"set:mainAxisSize" ,"set:mainAxisAlignment" ,"set:verticalDirection" ,"set:crossAxisAlignment" ,"verticalDirection" ,"mainAxisSize" ,"mainAxisAlignment" ,"direction" ,"crossAxisAlignment" ,"RenderFlex." ,"childSize" ,"extent" ,"sizingDirection" ,"_getIntrinsicSize@411478290" ,"set:textBaseline" ,"set:direction" ,"RenderFlex" ,"CrossAxisAlignment.start" ,"CrossAxisAlignment.baseline" ,"CrossAxisAlignment.end" ,"CrossAxisAlignment.stretch" ,"CrossAxisAlignment.center" ,"CrossAxisAlignment" ,"get:defaultPaint" ,"defaultComputeDistanceToFirstActualBaseline" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@411478290" ,"_RenderFlex&RenderBox&ContainerRenderObjectMixin@411478290" ,"@411478290" ,"package:flutter\/src\/rendering\/flex.dart" ,"MainAxisAlignment" ,"ButtonBarThemeData" ,"DividerTheme" ,"@272512473" ,"package:flutter\/src\/material\/divider_theme.dart" ,"DividerThemeData" ,"@245219936" ,"package:flutter\/src\/material\/banner_theme.dart" ,"MaterialBannerThemeData" ,"@251487157" ,"package:flutter\/src\/material\/bottom_sheet_theme.dart" ,"BottomSheetThemeData" ,"SnackBarBehavior" ,"@327063486" ,"package:flutter\/src\/material\/snack_bar_theme.dart" ,"SnackBarThemeData" ,"ScriptCategory.englishLike" ,"ScriptCategory" ,"@348382893" ,"package:flutter\/src\/material\/typography.dart" ,"Typography._withPlatform@348382893" ,"tall" ,"dense" ,"englishLike" ,"white" ,"black" ,"platform" ,"Typography.material2014" ,"Typography" ,"@304277801" ,"package:flutter\/src\/material\/navigation_rail_theme.dart" ,"NavigationRailThemeData" ,"@284399144" ,"package:flutter\/src\/material\/floating_action_button_theme.dart" ,"FloatingActionButtonThemeData" ,"@270294779" ,"package:flutter\/src\/material\/dialog_theme.dart" ,"DialogTheme" ,"@263049969" ,"package:flutter\/src\/material\/color_scheme.dart" ,"onBackground" ,"onSurface" ,"onSecondary" ,"onPrimary" ,"surface" ,"secondaryVariant" ,"secondary" ,"primaryVariant" ,"_brightnessFor@263049969" ,"ColorScheme.fromSwatch" ,"ColorScheme" ,"@247337866" ,"package:flutter\/src\/material\/bottom_app_bar_theme.dart" ,"BottomAppBarTheme" ,"@241092148" ,"package:flutter\/src\/material\/app_bar_theme.dart" ,"AppBarTheme" ,"@261321686" ,"package:flutter\/src\/material\/chip_theme.dart" ,"primaryColor" ,"secondaryColor" ,"labelStyle" ,"ChipThemeData.fromDefaults" ,"ChipThemeData" ,"@257240984" ,"package:flutter\/src\/material\/card_theme.dart" ,"CardTheme" ,"TooltipTheme" ,"@347080376" ,"package:flutter\/src\/material\/tooltip_theme.dart" ,"TooltipThemeData" ,"@331164651" ,"package:flutter\/src\/material\/tab_bar_theme.dart" ,"TabBarTheme" ,"ShowValueIndicator" ,"Thumb" ,"@325362734" ,"package:flutter\/src\/material\/slider_theme.dart" ,"SliderThemeData" ,"@482485077" ,"package:flutter\/src\/widgets\/icon_theme_data.dart" ,"get:isConcrete" ,"_CupertinoIconThemeData&IconThemeData&Diagnosticable@169449307" ,"@169449307" ,"package:flutter\/src\/cupertino\/icon_theme_data.dart" ,"CupertinoIconThemeData" ,"IconThemeData" ,"@338176439" ,"package:flutter\/src\/material\/text_theme.dart" ,"body1" ,"body2" ,"subtitle" ,"subhead" ,"headline" ,"display1" ,"display2" ,"display3" ,"display4" ,"overline" ,"caption" ,"bodyText2" ,"bodyText1" ,"subtitle2" ,"subtitle1" ,"headline6" ,"headline5" ,"headline4" ,"headline3" ,"headline2" ,"headline1" ,"TextTheme" ,"@344308615" ,"package:flutter\/src\/material\/toggle_buttons_theme.dart" ,"ToggleButtonsThemeData" ,"estimateBrightnessForColor" ,"fixTextFieldOutlineLabel" ,"bottomNavigationBarTheme" ,"buttonBarTheme" ,"dividerTheme" ,"bannerTheme" ,"popupMenuTheme" ,"bottomSheetTheme" ,"snackBarTheme" ,"cupertinoOverrideTheme" ,"typography" ,"navigationRailTheme" ,"floatingActionButtonTheme" ,"dialogTheme" ,"colorScheme" ,"bottomAppBarTheme" ,"appBarTheme" ,"pageTransitionsTheme" ,"applyElevationOverlayColor" ,"materialTapTargetSize" ,"chipTheme" ,"cardTheme" ,"tooltipTheme" ,"tabBarTheme" ,"sliderTheme" ,"accentIconTheme" ,"primaryIconTheme" ,"inputDecorationTheme" ,"accentTextTheme" ,"primaryTextTheme" ,"toggleableActiveColor" ,"errorColor" ,"hintColor" ,"indicatorColor" ,"dialogBackgroundColor" ,"textSelectionHandleColor" ,"cursorColor" ,"textSelectionColor" ,"secondaryHeaderColor" ,"buttonColor" ,"toggleButtonsTheme" ,"buttonTheme" ,"disabledColor" ,"unselectedWidgetColor" ,"selectedRowColor" ,"splashFactory" ,"splashColor" ,"highlightColor" ,"hoverColor" ,"focusColor" ,"dividerColor" ,"cardColor" ,"bottomAppBarColor" ,"scaffoldBackgroundColor" ,"canvasColor" ,"accentColorBrightness" ,"accentColor" ,"primaryColorDark" ,"primaryColorLight" ,"primaryColorBrightness" ,"visualDensity" ,"ButtonTheme" ,"ButtonBarLayoutBehavior.padded" ,"ButtonBarLayoutBehavior" ,"ButtonTextTheme.normal" ,"ButtonTextTheme.primary" ,"ButtonTextTheme.accent" ,"ButtonTextTheme" ,"@255378263" ,"package:flutter\/src\/material\/button_theme.dart" ,"alignedDropdown" ,"layoutBehavior" ,"getConstraints" ,"getShape" ,"getPadding" ,"getHighlightColor" ,"getHoverColor" ,"getFocusColor" ,"getSplashColor" ,"getTextColor" ,"getFillColor" ,"getDisabledTextColor" ,"getBrightness" ,"ButtonThemeData" ,"ThemeData.fallback" ,"ThemeData.light" ,"primarySwatch" ,"ThemeData." ,"get:_localizedThemeDataCache@340408314" ,"ThemeData" ,"_FifoCache@340408314" ,"CupertinoTextThemeData" ,"@187439196" ,"package:flutter\/src\/cupertino\/text_theme.dart" ,"_TextThemeDefaultsBuilder@187439196" ,"_applyLabelColor@187439196" ,"get:textStyle" ,"_DefaultCupertinoTextThemeData@188195667" ,"createDefaults" ,"_CupertinoTextThemeDefaults@188195667" ,"resolveTextTheme" ,"_CupertinoThemeDefaults@188195667" ,"_InheritedCupertinoTheme@188195667" ,"_NoDefaultCupertinoThemeData@188195667" ,"get:brightness" ,"brightnessOf" ,"MaterialBasedCupertinoThemeData._@340408314" ,"CupertinoTheme" ,"@188195667" ,"package:flutter\/src\/cupertino\/theme.dart" ,"noDefault" ,"get:primaryColor" ,"get:textTheme" ,"get:primaryContrastingColor" ,"CupertinoThemeData" ,"MaterialBasedCupertinoThemeData." ,"MaterialBasedCupertinoThemeData" ,"effectiveConstraints" ,"get:baseSizeAdjustment" ,"VisualDensity" ,"@340408314" ,"package:flutter\/src\/material\/theme_data.dart" ,"_IdentityThemeDataCacheKey@340408314" ,"localize" ,"package:flutter\/src\/material\/theme.dart" ,"init:_kFallbackTheme@339067045" ,"_kFallbackTheme@339067045" ,"AnimatedTheme" ,"ThemeDataTween" ,"_AnimatedThemeState@339067045" ,"_InheritedTheme@339067045" ,"@339067045" ,"Theme" ,"get:_kFallbackTheme@339067045" ,"shadowThemeOnly" ,"_buildYearItem@498246833" ,"get:_buildYearItem@498246833" ,"get:_itemCount@498246833" ,"_YearPickerState@498246833" ,"_YearPicker@498246833" ,"_MonthPicker@498246833" ,"__DatePickerModeToggleButtonState&State&SingleTickerProviderStateMixin@498246833" ,"_getDayHeaders@498246833" ,"_DayHeaders@498246833" ,"_DatePickerModeToggleButtonState@498246833" ,"monthDelta" ,"getDaysInMonth" ,"isSameDay" ,"addMonthsToMonthDate" ,"firstDayOffset" ,"@500014234" ,"package:flutter\/src\/material\/pickers\/date_utils.dart" ,"dateOnly" ,"selectableDayPredicate" ,"initialCalendarMode" ,"onDisplayedMonthChanged" ,"currentDate" ,"onDateChanged" ,"lastDate" ,"initialDate" ,"firstDate" ,"CalendarDatePicker." ,"CalendarDatePicker" ,"_handleDayChanged@498246833" ,"get:_handleDayChanged@498246833" ,"_handleYearChanged@498246833" ,"get:_handleYearChanged@498246833" ,"_handleMonthChanged@498246833" ,"get:_handleMonthChanged@498246833" ,"_buildPicker@498246833" ,"_handleModeChanged@498246833" ,"_vibrate@498246833" ,"_CalendarDatePickerState@498246833." ,"_CalendarDatePickerState@498246833" ,"_DayPicker@498246833" ,"_DatePickerModeToggleButton@498246833" ,"_buildItems@498246833" ,"get:_buildItems@498246833" ,"@451029772" ,"package:flutter\/src\/semantics\/semantics_service.dart" ,"tooltip" ,"SemanticsService" ,"announce" ,"_handlePreviousMonth@498246833" ,"get:_handlePreviousMonth@498246833" ,"_handleNextMonth@498246833" ,"get:_handleNextMonth@498246833" ,"_handleMonthPageChanged@498246833" ,"get:_handleMonthPageChanged@498246833" ,"get:_isDisplayingLastMonth@498246833" ,"get:_isDisplayingFirstMonth@498246833" ,"_MonthPickerState@498246833" ,"@498246833" ,"package:flutter\/src\/material\/pickers\/calendar_date_picker.dart" ,"_DayPickerGridDelegate@498246833" ,"set:gridDelegate" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin@432211670." ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers&RenderSliverWithKeepAliveMixin@432211670." ,"RenderSliverMultiBoxAdaptor." ,"RenderSliverGrid." ,"RenderSliverGrid" ,"applyPaintTransformForBoxChild" ,"hitTestBoxChild" ,"_getRightWayUp@427505787" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers@432211670." ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers@432211670" ,"KeepAliveParentDataMixin" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin&RenderSliverHelpers&RenderSliverWithKeepAliveMixin@432211670" ,"didAdoptChild" ,"_RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin@432211670" ,"SliverMultiBoxAdaptorParentData" ,"_SliverMultiBoxAdaptorParentData&SliverLogicalParentData&ContainerParentDataMixin&KeepAliveParentDataMixin@432211670" ,"collectGarbage" ,"_createOrObtainChild@432211670" ,"setDidUnderflow" ,"addInitialChild" ,"removeChild" ,"_destroyOrCacheChild@432211670" ,"childConstraints" ,"insertAndLayoutChild" ,"paintExtentOf" ,"insertAndLayoutLeadingChild" ,"RenderSliverMultiBoxAdaptor" ,"RenderSliverWithKeepAliveMixin" ,"_SliverMultiBoxAdaptorParentData&SliverLogicalParentData&ContainerParentDataMixin@432211670" ,"@432211670" ,"package:flutter\/src\/rendering\/sliver_multi_box_adaptor.dart" ,"RenderSliverBoxChildManager" ,"createChild" ,"didStartLayout" ,"_build@523358031" ,"_extrapolateMaxScrollOffset@523358031" ,"get:removeChild" ,"_SplayTreeMapNode@3220832" ,"_SplayTreeMap&_SplayTree&MapMixin@3220832" ,"firstKeyAfter" ,"lastKeyBefore" ,"lastKey" ,"firstKey" ,"SplayTreeMap" ,"SplayTreeMap." ,"SliverMultiBoxAdaptorElement." ,"trailingScrollOffset" ,"leadingScrollOffset" ,"lastIndex" ,"firstIndex" ,"didFinishLayout" ,"SliverMultiBoxAdaptorElement" ,"@431392659" ,"package:flutter\/src\/rendering\/sliver_list.dart" ,"RenderSliverList." ,"RenderSliverList" ,"SliverList." ,"SliverList" ,"applyParentData" ,"KeepAlive" ,"SliverWithKeepAliveWidget." ,"SliverWithKeepAliveWidget" ,"_SaltedValueKey@523358031" ,"SliverMultiBoxAdaptorWidget." ,"SliverMultiBoxAdaptorWidget" ,"gridDelegate" ,"SliverGrid." ,"SliverGrid" ,"@523358031" ,"package:flutter\/src\/widgets\/sliver.dart" ,"SliverChildBuilderDelegate" ,"allowImplicitScrolling" ,"pageSnapping" ,"scrollDirection" ,"onPageChanged" ,"itemCount" ,"itemBuilder" ,"PageView.builder" ,"PageView" ,"_getDirection@585030489" ,"_PageViewState@585030489" ,"_ForceImplicitScrollPhysics@585030489" ,"@585030489" ,"package:flutter\/src\/widgets\/page_view.dart" ,"PageMetrics" ,"applyContentDimensions" ,"applyViewportDimension" ,"restoreScrollOffset" ,"saveScrollOffset" ,"forcePixels" ,"set:viewportFraction" ,"_PagePosition@585030489." ,"_PagePosition@585030489" ,"recommendDeferredLoadingForContext" ,"Scrollable" ,"_ScrollableState&State&TickerProviderStateMixin@531019050" ,"ScrollIncrementType.line" ,"ScrollIncrementType.page" ,"ScrollIntent" ,"set:semanticChildCount" ,"set:allowImplicitScrolling" ,"semanticChildCount" ,"_RenderScrollSemantics@531019050." ,"_RenderScrollSemantics@531019050" ,"_ScrollableScope@531019050" ,"_getIncrement@531019050" ,"state" ,"_calculateScrollIncrement@531019050" ,"ScrollAction." ,"ScrollAction" ,"ScrollIncrementType" ,"_ScrollSemantics@531019050" ,"@531019050" ,"package:flutter\/src\/widgets\/scrollable.dart" ,"@554300709" ,"package:flutter\/src\/widgets\/scroll_context.dart" ,"ScrollContext" ,"_handlePointerScroll@531019050" ,"_disposeDrag@531019050" ,"@231276358" ,"package:flutter\/src\/gestures\/pointer_signal_resolver.dart" ,"PointerSignalResolver" ,"register" ,"_receivedPointerSignal@531019050" ,"get:_receivedPointerSignal@531019050" ,"_handleDragCancel@531019050" ,"get:_handleDragCancel@531019050" ,"_handleDragUpdate@531019050" ,"_shouldUpdatePosition@531019050" ,"_disposeHold@531019050" ,"get:_disposeHold@531019050" ,"_handleDragEnd@531019050" ,"_handleDragStart@531019050" ,"get:_handleDragEnd@531019050" ,"_handleDragDown@531019050" ,"_targetScrollOffsetForPointerScroll@531019050" ,"get:_handlePointerScroll@531019050" ,"setCanDrag" ,"get:_disposeDrag@531019050" ,"get:_handleDragDown@531019050" ,"get:storageContext" ,"get:_handleDragStart@531019050" ,"get:_handleDragUpdate@531019050" ,"ScrollConfiguration" ,"@490031464" ,"package:flutter\/src\/widgets\/scroll_configuration.dart" ,"buildViewportChrome" ,"ScrollBehavior" ,"MaterialApp" ,"dart:core-patch\/array.dart" ,"_FixedSizeArrayIterator@0150898." ,"_FixedSizeArrayIterator@0150898" ,"_maxBy@242458455" ,"_CornerId.topRight" ,"_CornerId.bottomRight" ,"_CornerId.bottomLeft" ,"_CornerId.topLeft" ,"_CornerId@242458455" ,"sweepAngle" ,"get:endAngle" ,"get:beginAngle" ,"get:radius" ,"_initialize@242458455" ,"MaterialPointArcTween" ,"_Diagonal@242458455" ,"@242458455" ,"package:flutter\/src\/material\/arc.dart" ,"get:endArc" ,"get:beginArc" ,"_cornerFor@242458455" ,"_diagonalSupport@242458455" ,"MaterialRectArcTween" ,"_createRectTween@239125171" ,"get:_createRectTween@239125171" ,"get:_localizationsDelegates@239125171" ,"_MaterialAppState@239125171" ,"ThemeMode.system" ,"ThemeMode" ,"@239125171" ,"package:flutter\/src\/material\/app.dart" ,"_MaterialScrollBehavior@239125171" ,"getPlatform" ,"getScrollPhysics" ,"_updatePosition@531019050" ,"ScrollableState." ,"ScrollableState" ,"get:notificationContext" ,"didUpdateScrollDirection" ,"updateUserScrollDirection" ,"didStartScroll" ,"didEndScroll" ,"beginActivity" ,"nearZero" ,"@398009153" ,"package:flutter\/src\/physics\/utils.dart" ,"nearEqual" ,"animateTo" ,"ViewportOffset." ,"ViewportOffset" ,"get:atEdge" ,"get:outOfRange" ,"_ScrollPosition&ViewportOffset&ScrollMetrics@556085019" ,"ScrollPositionAlignmentPolicy.keepVisibleAtStart" ,"ScrollPositionAlignmentPolicy.keepVisibleAtEnd" ,"ScrollPositionAlignmentPolicy.explicit" ,"ScrollPositionAlignmentPolicy" ,"@556085019" ,"package:flutter\/src\/widgets\/scroll_position.dart" ,"correctForNewDimensions" ,"correctBy" ,"ScrollPosition" ,"createScrollPosition" ,"get:offset" ,"get:hasClients" ,"ScrollController" ,"ScrollController." ,"ScaffoldState." ,"_buildEndDrawer@319420462" ,"get:hasDrawer" ,"_buildDrawer@319420462" ,"LayoutId." ,"maintainBottomViewPadding" ,"removeBottomInset" ,"removeBottomPadding" ,"removeRightPadding" ,"removeTopPadding" ,"removeLeftPadding" ,"childId" ,"_addIfNonNull@319420462" ,"_handleStatusBarTap@319420462" ,"get:_handleStatusBarTap@319420462" ,"ScaffoldState" ,"openEndDrawer" ,"_handleDrawerButtonEnd@240187611" ,"get:_handleDrawerButtonEnd@240187611" ,"_handleDrawerButton@240187611" ,"get:_handleDrawerButton@240187611" ,"_AppBarState@240187611" ,"@240187611" ,"package:flutter\/src\/material\/app_bar.dart" ,"_ToolbarContainerLayout@240187611" ,"shouldRelayout" ,"init:debugDeterministicCursor" ,"debugDeterministicCursor" ,"get:strutStyle" ,"forceLine" ,"toolbarOptions" ,"textInputAction" ,"textCapitalization" ,"smartQuotesType" ,"smartDashesType" ,"showSelectionHandles" ,"showCursor" ,"selectionWidthStyle" ,"selectionHeightStyle" ,"selectionControls" ,"selectionColor" ,"scrollPhysics" ,"scrollPadding" ,"scrollController" ,"rendererIgnoresPointer" ,"paintCursorAboveText" ,"onSubmitted" ,"onSelectionHandleTapped" ,"onSelectionChanged" ,"onEditingComplete" ,"onChanged" ,"obscuringCharacter" ,"obscureText" ,"mouseCursor" ,"minLines" ,"keyboardType" ,"keyboardAppearance" ,"inputFormatters" ,"focusNode" ,"expands" ,"enableSuggestions" ,"enableInteractiveSelection" ,"cursorWidth" ,"cursorRadius" ,"cursorOpacityAnimates" ,"cursorOffset" ,"backgroundCursorColor" ,"autofillHints" ,"autocorrectionTextRectColor" ,"autocorrect" ,"EditableText." ,"EditableText" ,"_EditableTextState&State&AutomaticKeepAliveClientMixin@559183791" ,"WidgetsBindingObserver" ,"didChangeAccessibilityFeatures" ,"didHaveMemoryPressure" ,"didChangeAppLifecycleState" ,"didChangeLocales" ,"didChangePlatformBrightness" ,"didChangeTextScaleFactor" ,"didPushRoute" ,"didPopRoute" ,"_EditableTextState&State&AutomaticKeepAliveClientMixin&WidgetsBindingObserver@559183791" ,"_EditableTextState&State&AutomaticKeepAliveClientMixin&WidgetsBindingObserver&TickerProviderStateMixin@559183791" ,"ToolbarOptions" ,"@476206251" ,"package:flutter\/src\/services\/text_editing.dart" ,"isDirectional" ,"affinity" ,"extentOffset" ,"baseOffset" ,"get:extent" ,"TextSelection.collapsed" ,"TextSelection." ,"TextSelection" ,"RawFloatingCursorPoint" ,"_toTextPoint@478206165" ,"FloatingCursorDragState.End" ,"FloatingCursorDragState.Start" ,"FloatingCursorDragState.Update" ,"FloatingCursorDragState" ,"_toTextCursorAction@478206165" ,"TextInputAction.continueAction" ,"TextInputAction.emergencyCall" ,"TextInputAction.join" ,"TextInputAction.route" ,"TextInputAction.go" ,"TextInputAction.previous" ,"TextInputAction.none" ,"TextInputAction.send" ,"TextInputAction.next" ,"TextInputAction.newline" ,"TextInputAction.search" ,"TextInputAction.unspecified" ,"TextInputAction.done" ,"TextInputAction" ,"_toTextInputAction@478206165" ,"_toTextAffinity@478206165" ,"init:_nextId@478206165" ,"_nextId@478206165" ,"_handleTextInputInvocation@478206165" ,"get:_handleTextInputInvocation@478206165" ,"TextInput._@478206165" ,"init:_instance@478206165" ,"_instance@478206165" ,"get:_instance@478206165" ,"connectionClosedReceived" ,"_setStyle@478206165" ,"setStyle" ,"_setEditableSizeAndTransform@478206165" ,"setEditableSizeAndTransform" ,"toJSON" ,"_setEditingState@478206165" ,"setEditingState" ,"_requestAutofill@478206165" ,"requestAutofill" ,"_show@478206165" ,"show" ,"get:attached" ,"TextInputConnection._@478206165" ,"TextInputConnection" ,"SmartDashesType.enabled" ,"SmartDashesType" ,"TextInputClient" ,"TextCapitalization.sentences" ,"TextCapitalization" ,"SmartQuotesType.enabled" ,"SmartQuotesType" ,"get:_name@478206165" ,"AutofillScope" ,"AutofillClient" ,"AutofillScopeMixin" ,"@453046340" ,"package:flutter\/src\/services\/autofill.dart" ,"AutofillConfiguration" ,"dyn:toJson" ,"TextInputConfiguration" ,"TextInputType" ,"TextSelectionDelegate" ,"_clearClient@478206165" ,"_scheduleHide@478206165" ,"_attach@478206165" ,"TextInput" ,"@478206165" ,"package:flutter\/src\/services\/text_input.dart" ,"composing" ,"TextEditingValue.fromJSON" ,"TextEditingValue" ,"isSelectionWithinTextBounds" ,"clearComposing" ,"set:selection" ,"get:selection" ,"withComposing" ,"buildTextSpan" ,"TextEditingController.fromValue" ,"TextEditingController." ,"TextEditingController" ,"@477124616" ,"package:flutter\/src\/services\/text_formatter.dart" ,"TextInputFormatter" ,"getDirection" ,"isWhitespace" ,"formatEditUpdate" ,"_WhitespaceDirectionalityFormatter@559183791." ,"_WhitespaceDirectionalityFormatter@559183791" ,"@316317193" ,"package:flutter\/src\/material\/range_slider.dart" ,"__RenderRangeSlider&RenderBox&RelayoutWhenSystemFontsChangeMixin@316317193." ,"__RenderRangeSlider&RenderBox&RelayoutWhenSystemFontsChangeMixin@316317193" ,"_isTrailingSurrogate@409245603" ,"_isLeadingSurrogate@409245603" ,"SelectionChangedCause.tap" ,"SelectionChangedCause.forcePress" ,"SelectionChangedCause.keyboard" ,"SelectionChangedCause.drag" ,"SelectionChangedCause.longPress" ,"SelectionChangedCause" ,"TextSelectionPoint" ,"@409245603" ,"package:flutter\/src\/rendering\/editable.dart" ,"get:_nonModifierKeys@409245603" ,"get:_macOsModifierKeys@409245603" ,"get:_modifierKeys@409245603" ,"init:_interestingKeys@409245603" ,"KeyboardKey" ,"PhysicalKeyboardKey" ,"@459369999" ,"package:flutter\/src\/services\/keyboard_key.dart" ,"init:_synonyms@459369999" ,"_synonyms@459369999" ,"collapseSynonyms" ,"get:synonyms" ,"isControlCharacter" ,"findKeyByKeyId" ,"get:_synonyms@459369999" ,"LogicalKeyboardKey" ,"_interestingKeys@409245603" ,"init:_macOsModifierKeys@409245603" ,"_macOsModifierKeys@409245603" ,"init:_modifierKeys@409245603" ,"_modifierKeys@409245603" ,"get:_movementKeys@409245603" ,"get:_shortcutKeys@409245603" ,"init:_nonModifierKeys@409245603" ,"_nonModifierKeys@409245603" ,"init:_shortcutKeys@409245603" ,"_shortcutKeys@409245603" ,"init:_movementKeys@409245603" ,"_movementKeys@409245603" ,"_handleMoveCursorForwardByWord@409245603" ,"set:devicePixelRatio" ,"_handleSelectionChange@409245603" ,"_handleTapDown@409245603" ,"get:_handleTapDown@409245603" ,"get:_isMultiline@409245603" ,"set:expands" ,"set:startHandleLayerLink" ,"cause" ,"selectWordEdge" ,"_getPreviousWord@409245603" ,"_handleLongPress@409245603" ,"get:_handleLongPress@409245603" ,"set:cursorWidth" ,"get:_plainText@409245603" ,"selectPosition" ,"_paintPromptRectIfNeeded@409245603" ,"_selectLineAtOffset@409245603" ,"selectPositionAt" ,"get:promptRectColor" ,"_preferredHeight@409245603" ,"_handleTap@409245603" ,"get:_handleTap@409245603" ,"set:minLines" ,"_paintFloatingCaret@409245603" ,"_paintCaret@409245603" ,"set:cursorRadius" ,"get:_value@559183791" ,"get:_hasInputConnection@559183791" ,"_updateRemoteEditingValueIfNeeded@559183791" ,"set:_value@559183791" ,"get:_textDirection@559183791" ,"_formatAndSetValue@559183791" ,"set:textEditingValue" ,"_handleDelete@409245603" ,"getEndpointsForSelection" ,"set:cursorColor" ,"selectWord" ,"_handleShortcuts@409245603" ,"set:selectionColor" ,"setPromptRectRange" ,"selectWordsInRange" ,"getLocalRectForCaret" ,"set:paintCursorAboveText" ,"_handleSetSelection@409245603" ,"get:_handleSetSelection@409245603" ,"_paintContents@409245603" ,"get:_paintContents@409245603" ,"_getNextWord@409245603" ,"get:_viewportExtent@409245603" ,"RawKeyUpEvent" ,"RawKeyDownEvent" ,"KeyboardSide.left" ,"KeyboardSide.any" ,"KeyboardSide.all" ,"KeyboardSide.right" ,"KeyboardSide" ,"get:modifiersPressed" ,"RawKeyEventData" ,"ModifierKey.numLockModifier" ,"ModifierKey.metaModifier" ,"ModifierKey.controlModifier" ,"ModifierKey.capsLockModifier" ,"ModifierKey.altModifier" ,"ModifierKey.scrollLockModifier" ,"ModifierKey.shiftModifier" ,"ModifierKey.functionModifier" ,"_ModifierSidePair@465461389" ,"ModifierKey.symbolModifier" ,"ModifierKey" ,"@465461389" ,"package:flutter\/src\/services\/raw_keyboard.dart" ,"get:logicalKey" ,"get:physicalKey" ,"get:keysPressed" ,"get:isMetaPressed" ,"get:isAltPressed" ,"get:isShiftPressed" ,"get:isControlPressed" ,"isKeyPressed" ,"@471422532" ,"package:flutter\/src\/services\/raw_keyboard_windows.dart" ,"getModifierSide" ,"side" ,"isModifierPressed" ,"_isLeftRightModifierPressed@471422532" ,"get:keyLabel" ,"RawKeyEventDataWindows" ,"@470342469" ,"package:flutter\/src\/services\/raw_keyboard_web.dart" ,"RawKeyEventDataWeb" ,"logicalKey" ,"numpadKey" ,"isDown" ,"keyCode" ,"modifiers" ,"_mergeModifiers@468138806" ,"GLFWKeyHelper" ,"KeyHelper." ,"KeyHelper" ,"_GLFWKeyHelper&Object&KeyHelper@468138806" ,"@468138806" ,"package:flutter\/src\/services\/raw_keyboard_linux.dart" ,"RawKeyEventDataLinux" ,"@469244645" ,"package:flutter\/src\/services\/raw_keyboard_macos.dart" ,"_isUnprintableKey@469244645" ,"_isLeftRightModifierPressed@469244645" ,"RawKeyEventDataMacOs" ,"@467349049" ,"package:flutter\/src\/services\/raw_keyboard_fuchsia.dart" ,"_isLeftRightModifierPressed@467349049" ,"RawKeyEventDataFuchsia" ,"@466177474" ,"package:flutter\/src\/services\/raw_keyboard_android.dart" ,"_isLeftRightModifierPressed@466177474" ,"RawKeyEventDataAndroid" ,"RawKeyEvent.fromMessage" ,"RawKeyEvent" ,"get:_allModifiersExceptFn@465461389" ,"init:_allModifiers@465461389" ,"_allModifiers@465461389" ,"init:_allModifiersExceptFn@465461389" ,"_allModifiersExceptFn@465461389" ,"init:_modifierKeyMap@465461389" ,"_modifierKeyMap@465461389" ,"_handleKeyEvent@465461389" ,"get:_handleKeyEvent@465461389" ,"RawKeyboard._@465461389" ,"init:instance" ,"instance" ,"_synchronizeModifiers@465461389" ,"get:_allModifiers@465461389" ,"get:_modifierKeyMap@465461389" ,"RawKeyboard" ,"set:hasFocus" ,"_paintSelection@409245603" ,"set:obscureText" ,"_layoutText@409245603" ,"_handleMoveCursorBackwardByWord@409245603" ,"get:_handleMoveCursorBackwardByWord@409245603" ,"_onlyWhitespace@409245603" ,"handleLongPress" ,"_getMaxScrollExtent@409245603" ,"get:selectionEnabled" ,"get:_viewportAxis@409245603" ,"get:textEditingValue" ,"_handleKeyEvent@409245603" ,"_handleMoveCursorForwardByCharacter@409245603" ,"get:_handleMoveCursorForwardByCharacter@409245603" ,"_handleMoveCursorBackwardByCharacter@409245603" ,"get:_handleMoveCursorBackwardByCharacter@409245603" ,"get:_getCaretPrototype@409245603" ,"lineModifier" ,"wordModifier" ,"_handleMovement@409245603" ,"markNeedsTextLayout" ,"get:_paintOffset@409245603" ,"_getPixelPerfectCursorOffset@409245603" ,"set:selectionWidthStyle" ,"set:selectionHeightStyle" ,"get:_handleKeyEvent@409245603" ,"floatingCursorAddedMargin" ,"textSelectionDelegate" ,"startHandleLayerLink" ,"promptRectRange" ,"promptRectColor" ,"onCaretChanged" ,"ignorePointer" ,"hasFocus" ,"endHandleLayerLink" ,"RenderEditable." ,"get:_handleMoveCursorForwardByWord@409245603" ,"getPositionForPoint" ,"set:cursorOffset" ,"_selectWordAtOffset@409245603" ,"_updateSelectionExtentsVisibility@409245603" ,"_paintHandleLayers@409245603" ,"calculateBoundedFloatingCursorOffset" ,"set:endHandleLayerLink" ,"set:showCursor" ,"get:_hasVisualOverflow@409245603" ,"set:promptRectColor" ,"set:forceLine" ,"set:readOnly" ,"resetLerpValue" ,"lastTextPosition" ,"boundedOffset" ,"setFloatingCursor" ,"get:_interestingKeys@409245603" ,"get:_caretMargin@409245603" ,"RenderEditable" ,"_Editable@559183791" ,"@559183791" ,"package:flutter\/src\/widgets\/editable_text.dart" ,"bringIntoView" ,"_startCursorTimer@559183791" ,"ClipboardStatus.pasteable" ,"ClipboardStatus.notPasteable" ,"ClipboardStatus.unknown" ,"ClipboardStatus" ,"TextSelectionGestureDetectorBuilderDelegate" ,"ToolbarItemsParentData" ,"didChangeMetrics" ,"_ClipboardStatusNotifier&ValueNotifier&WidgetsBindingObserver@485111801." ,"_ClipboardStatusNotifier&ValueNotifier&WidgetsBindingObserver@485111801" ,"_handleDragUpdateThrottled@485111801" ,"get:_handleDragUpdateThrottled@485111801" ,"_handleTapUp@485111801" ,"_forcePressEnded@485111801" ,"_forcePressStarted@485111801" ,"get:_forcePressStarted@485111801" ,"get:_handleTapUp@485111801" ,"_handleDragStart@485111801" ,"get:_forcePressEnded@485111801" ,"_handleDragUpdate@485111801" ,"get:_handleDragUpdate@485111801" ,"_handleDragEnd@485111801" ,"get:_handleDragEnd@485111801" ,"_handleLongPressStart@485111801" ,"_handleTapDown@485111801" ,"get:_handleTapDown@485111801" ,"_handleLongPressEnd@485111801" ,"get:_handleDragStart@485111801" ,"_handleLongPressMoveUpdate@485111801" ,"get:_handleLongPressMoveUpdate@485111801" ,"get:_handleLongPressEnd@485111801" ,"_handleTapCancel@485111801" ,"get:_handleTapCancel@485111801" ,"_doubleTapTimeout@485111801" ,"get:_doubleTapTimeout@485111801" ,"_isWithinDoubleTapTolerance@485111801" ,"get:_handleLongPressStart@485111801" ,"_TextSelectionGestureDetectorState@485111801" ,"handleSelectAll" ,"handlePaste" ,"ClipboardData" ,"@456325543" ,"package:flutter\/src\/services\/clipboard.dart" ,"getData" ,"Clipboard" ,"setData" ,"handleCopy" ,"handleCut" ,"canPaste" ,"canCopy" ,"canCut" ,"TextSelectionControls" ,"TextSelectionHandleType.right" ,"TextSelectionHandleType.left" ,"TextSelectionHandleType.collapsed" ,"TextSelectionHandleType" ,"get:renderEditable" ,"onDragSelectionUpdate" ,"get:onDragSelectionUpdate" ,"onSingleTapCancel" ,"get:_toolbarOpacity@485111801" ,"get:_selection@485111801" ,"_buildToolbar@485111801" ,"get:_buildToolbar@485111801" ,"showToolbar" ,"TextField" ,"onSingleLongTapStart" ,"get:onSingleLongTapStart" ,"get:_editableText@335181401" ,"_requestKeyboard@335181401" ,"onSingleTapUp" ,"get:onSingleTapUp" ,"onSingleLongTapMoveUpdate" ,"get:onSingleLongTapMoveUpdate" ,"_TextFieldSelectionGestureDetectorBuilder@335181401" ,"@335181401" ,"package:flutter\/src\/material\/text_field.dart" ,"get:_canRequestFocus@335181401" ,"get:_effectiveController@335181401" ,"_handleSelectionHandleTapped@335181401" ,"_handleSelectionChanged@335181401" ,"get:_handleSelectionChanged@335181401" ,"_shouldShowSelectionHandles@335181401" ,"get:_currentLength@335181401" ,"_handleHover@335181401" ,"get:_effectiveFocusNode@335181401" ,"_Decoration@296019562" ,"FloatingLabelBehavior.auto" ,"FloatingLabelBehavior" ,"set:helperError" ,"_layoutLineBox@296019562" ,"_minWidth@296019562" ,"set:container" ,"_boxSize@296019562" ,"_paintLabel@296019562" ,"get:_paintLabel@296019562" ,"_boxParentData@296019562" ,"_updateChild@296019562" ,"_minHeight@296019562" ,"set:suffix" ,"set:hint" ,"set:suffixIcon" ,"_maxWidth@296019562" ,"get:_isOutlineAligned@296019562" ,"set:prefixIcon" ,"set:icon" ,"get:_children@296019562" ,"set:prefix" ,"set:textAlignVertical" ,"_lineHeight@296019562" ,"set:input" ,"get:contentPadding" ,"_RenderDecoration@296019562." ,"_layout@296019562" ,"set:counter" ,"_RenderDecoration@296019562" ,"_Decorator@296019562" ,"_BorderContainer@296019562" ,"get:_hasInlineLabel@296019562" ,"get:_floatingLabelEnabled@296019562" ,"_getFillColor@296019562" ,"_getActiveColor@296019562" ,"_getInlineStyle@296019562" ,"_getHelperStyle@296019562" ,"get:isHovering" ,"_handleChange@296019562" ,"_getDefaultBorderColor@296019562" ,"get:isFocused" ,"get:decoration" ,"gapPercentage" ,"gapExtent" ,"gapStart" ,"get:isOutline" ,"_NoInputBorder@295401927" ,"InputBorder" ,"@295401927" ,"package:flutter\/src\/material\/input_border.dart" ,"borderSide" ,"UnderlineInputBorder" ,"_getDefaultBorder@296019562" ,"_getHoverColor@296019562" ,"_getDefaultIconColor@296019562" ,"get:_handleChange@296019562" ,"get:textAlign" ,"_getErrorStyle@296019562" ,"_InputDecoratorState@296019562." ,"_InputDecoratorState@296019562" ,"_HelperErrorState@296019562" ,"__BorderContainerState&State&TickerProviderStateMixin@296019562" ,"isEmpty" ,"InputDecorator" ,"_RenderDecorationLayout@296019562" ,"_HelperError@296019562" ,"set:extent" ,"_InputBorderGap@296019562." ,"_InputBorderGap@296019562" ,"__InputDecoratorState&State&TickerProviderStateMixin@296019562" ,"_InputBorderTween@296019562" ,"_BorderContainerState@296019562" ,"InputDecorationTheme" ,"_updateRenderObject@296019562" ,"_mountChild@296019562" ,"_RenderDecorationElement@296019562." ,"_RenderDecorationElement@296019562" ,"__HelperErrorState&State&SingleTickerProviderStateMixin@296019562" ,"get:blendedColor" ,"_InputBorderPainter@296019562." ,"_InputBorderPainter@296019562" ,"_DecorationSlot.counter" ,"_DecorationSlot.prefixIcon" ,"_DecorationSlot.prefix" ,"_DecorationSlot.icon" ,"_DecorationSlot.suffixIcon" ,"_DecorationSlot.hint" ,"_DecorationSlot.container" ,"_DecorationSlot.label" ,"_DecorationSlot.suffix" ,"_DecorationSlot.input" ,"_DecorationSlot.helperError" ,"_DecorationSlot@296019562" ,"@296019562" ,"package:flutter\/src\/material\/input_decorator.dart" ,"alignLabelWithHint" ,"semanticCounterText" ,"border" ,"enabledBorder" ,"disabledBorder" ,"focusedErrorBorder" ,"focusedBorder" ,"errorBorder" ,"fillColor" ,"filled" ,"counterStyle" ,"counterText" ,"counter" ,"suffixIconConstraints" ,"suffixStyle" ,"suffixText" ,"suffix" ,"suffixIcon" ,"prefixStyle" ,"prefixIconConstraints" ,"prefixText" ,"prefix" ,"prefixIcon" ,"contentPadding" ,"isDense" ,"isCollapsed" ,"floatingLabelBehavior" ,"hasFloatingPlaceholder" ,"errorMaxLines" ,"errorStyle" ,"errorText" ,"hintMaxLines" ,"hintStyle" ,"hintText" ,"helperMaxLines" ,"helperStyle" ,"helperText" ,"labelText" ,"icon" ,"InputDecoration" ,"applyDefaults" ,"_getEffectiveDecoration@335181401" ,"get:_isEnabled@335181401" ,"get:_handleSelectionHandleTapped@335181401" ,"_TextFieldState@335181401." ,"_TextFieldState@335181401" ,"onDoubleTapDown" ,"get:onDoubleTapDown" ,"onDragSelectionEnd" ,"get:onDragSelectionEnd" ,"get:onSingleTapCancel" ,"get:editableText" ,"onSingleLongTapEnd" ,"get:onSingleLongTapEnd" ,"buildGestureDetector" ,"onDragSelectionStart" ,"get:onDragSelectionStart" ,"TextSelectionGestureDetectorBuilder" ,"_handleTap@485111801" ,"get:_handleTap@485111801" ,"get:_visibility@485111801" ,"_handleVisibilityChanged@485111801" ,"get:_handleVisibilityChanged@485111801" ,"_chooseType@485111801" ,"get:_opacity@485111801" ,"_TextSelectionHandleOverlayState@485111801" ,"TextSelectionGestureDetector" ,"_TransparentTapGestureRecognizer@485111801." ,"_TransparentTapGestureRecognizer@485111801" ,"renderObject" ,"_TextSelectionHandleOverlay@485111801" ,"_TextSelectionHandlePosition.end" ,"_TextSelectionHandlePosition.start" ,"_TextSelectionHandlePosition@485111801" ,"ClipboardStatusNotifier." ,"ClipboardStatusNotifier" ,"__TextSelectionHandleOverlayState&State&SingleTickerProviderStateMixin@485111801" ,"@485111801" ,"package:flutter\/src\/widgets\/text_selection.dart" ,"hide" ,"@598346943" ,"package:flutter\/src\/widgets\/visibility.dart" ,"Visibility" ,"_buildHandle@485111801" ,"updateForScroll" ,"set:handlesVisible" ,"handlesVisible" ,"toolbarLayerLink" ,"selectionDelegate" ,"clipboardStatus" ,"TextSelectionOverlay." ,"_markNeedsBuild@485111801" ,"get:_markNeedsBuild@485111801" ,"_handleSelectionHandleChanged@485111801" ,"hideToolbar" ,"TextSelectionOverlay" ,"showHandles" ,"updateFloatingCursor" ,"EditableTextState." ,"_cursorTick@559183791" ,"_handleSelectionChanged@559183791" ,"_updateSizeAndTransform@559183791" ,"removeObserver" ,"addObserver" ,"_handleFocusChanged@559183791" ,"get:_handleFocusChanged@559183791" ,"_cursorWaitForStart@559183791" ,"get:_cursorWaitForStart@559183791" ,"_onFloatingCursorResetTick@559183791" ,"get:_onFloatingCursorResetTick@559183791" ,"_semanticsOnCut@559183791" ,"_openOrCloseInputConnectionIfNeeded@559183791" ,"_closeInputConnectionIfNeeded@559183791" ,"updateEditingValue" ,"_didChangeTextEditingValue@559183791" ,"get:_didChangeTextEditingValue@559183791" ,"get:_hasFocus@559183791" ,"_finalizeEditing@559183791" ,"get:_cursorColor@559183791" ,"_startOrStopCursorTimerIfNeeded@559183791" ,"_handleCaretChanged@559183791" ,"get:_handleCaretChanged@559183791" ,"get:currentTextEditingValue" ,"get:_devicePixelRatio@559183791" ,"get:copyEnabled" ,"_onCursorColorTick@559183791" ,"_showCaretOnScreen@559183791" ,"_onChangedClipboardStatus@559183791" ,"get:_onChangedClipboardStatus@559183791" ,"resetCharTicks" ,"_stopCursorTimer@559183791" ,"get:_floatingCursorOffset@559183791" ,"_getOffsetToRevealCaret@559183791" ,"get:pasteEnabled" ,"_updateOrDisposeSelectionOverlayIfNeeded@559183791" ,"get:_handleSelectionChanged@559183791" ,"get:_onCursorColorTick@559183791" ,"requestKeyboard" ,"_openInputConnection@559183791" ,"_semanticsOnCopy@559183791" ,"get:_isMultiline@559183791" ,"get:cutEnabled" ,"_semanticsOnPaste@559183791" ,"toggleToolbar" ,"connectionClosed" ,"get:textInputConfiguration" ,"get:_cursorTick@559183791" ,"showAutocorrectionPromptRect" ,"EditableTextState" ,"get:selectAllEnabled" ,"canSelectAll" ,"getHandleAnchor" ,"buildHandle" ,"buildToolbar" ,"getHandleSize" ,"_MaterialTextSelectionControls@337283233" ,"init:materialTextSelectionControls" ,"materialTextSelectionControls" ,"get:materialTextSelectionControls" ,"_TextSelectionToolbar@337283233" ,"_TextSelectionToolbarItemsElement@337283233." ,"_TextSelectionToolbarItemsElement@337283233" ,"__TextSelectionToolbarState&State&TickerProviderStateMixin@337283233" ,"_TextSelectionToolbarContainer@337283233" ,"_TextSelectionHandlePainter@337283233" ,"set:overflowOpen" ,"_TextSelectionToolbarContainerRenderBox@337283233." ,"_TextSelectionToolbarContainerRenderBox@337283233" ,"__TextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin@337283233." ,"__TextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin@337283233" ,"_TextSelectionToolbarItems@337283233" ,"_onChangedClipboardStatus@337283233" ,"get:_onChangedClipboardStatus@337283233" ,"_reset@337283233" ,"@299446589" ,"package:flutter\/src\/material\/material_button.dart" ,"MaterialButton" ,"@280234391" ,"package:flutter\/src\/material\/flat_button.dart" ,"TextButton" ,"_getItem@337283233" ,"_TextSelectionToolbarState@337283233." ,"_TextSelectionToolbarState@337283233" ,"_placeChildren@337283233" ,"_shouldPaintChild@337283233" ,"_layoutChildren@337283233" ,"set:isAbove" ,"_TextSelectionToolbarItemsRenderBox@337283233." ,"_TextSelectionToolbarItemsRenderBox@337283233" ,"@337283233" ,"package:flutter\/src\/material\/text_selection.dart" ,"_centerOn@337283233" ,"_TextSelectionToolbarLayout@337283233" ,"Tooltip" ,"ensureTooltipVisible" ,"get:ensureTooltipVisible" ,"immediately" ,"_showTooltip@346220820" ,"_handleStatusChanged@346220820" ,"get:_handleStatusChanged@346220820" ,"_handleMouseTrackerChange@346220820" ,"get:_handleMouseTrackerChange@346220820" ,"_handlePointerEvent@346220820" ,"_hideTooltip@346220820" ,"_createNewEntry@346220820" ,"_handleLongPress@346220820" ,"get:_handleLongPress@346220820" ,"get:_handlePointerEvent@346220820" ,"_removeEntry@346220820" ,"_TooltipState@346220820" ,"__TooltipState&State&SingleTickerProviderStateMixin@346220820" ,"_TooltipOverlay@346220820" ,"@346220820" ,"package:flutter\/src\/material\/tooltip.dart" ,"_TooltipPositionDelegate@346220820" ,"set:delegate" ,"RenderCustomSingleChildLayoutBox." ,"RenderCustomSingleChildLayoutBox" ,"set:heightFactor" ,"set:widthFactor" ,"widthFactor" ,"RenderPositionedBox." ,"RenderPositionedBox" ,"RenderShiftedBox." ,"RenderShiftedBox" ,"SingleChildLayoutDelegate" ,"@426204652" ,"package:flutter\/src\/rendering\/shifted_box.dart" ,"_RenderShiftedBox&RenderBox&RenderObjectWithChildMixin@426204652" ,"_RenderProxyBox&RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin@423160605" ,"RenderProxyBox" ,"RenderProxyBoxWithHitTestBehavior." ,"RenderProxyBoxWithHitTestBehavior" ,"RenderOpacity." ,"RenderOpacity" ,"set:hidden" ,"set:customSemanticsActions" ,"set:focused" ,"onMoveCursorForwardByWord" ,"onMoveCursorBackwardByWord" ,"hintOverrides" ,"RenderSemanticsAnnotations." ,"_performDismiss@423160605" ,"_performCut@423160605" ,"get:_performCut@423160605" ,"_performScrollLeft@423160605" ,"set:excludeSemantics" ,"_performTap@423160605" ,"get:_performTap@423160605" ,"_performCopy@423160605" ,"_performScrollUp@423160605" ,"set:obscured" ,"set:decreasedValue" ,"set:hintOverrides" ,"set:onDidLoseAccessibilityFocus" ,"set:enabled" ,"_performLongPress@423160605" ,"set:sortKey" ,"set:inMutuallyExclusiveGroup" ,"_performPaste@423160605" ,"get:_performPaste@423160605" ,"set:onIncrease" ,"_performDidGainAccessibilityFocus@423160605" ,"_performIncrease@423160605" ,"set:checked" ,"_performDecrease@423160605" ,"set:onDecrease" ,"set:increasedValue" ,"set:onDidGainAccessibilityFocus" ,"set:focusable" ,"set:textField" ,"set:toggled" ,"get:_performCopy@423160605" ,"get:_performDismiss@423160605" ,"set:button" ,"set:header" ,"set:multiline" ,"_performScrollRight@423160605" ,"set:maxValueLength" ,"_performDidLoseAccessibilityFocus@423160605" ,"set:explicitChildNodes" ,"_performScrollDown@423160605" ,"set:image" ,"set:selected" ,"RenderSemanticsAnnotations" ,"Double_getIsInfinite" ,"get:isInfinite" ,"get:isFinite" ,"_applyStep@423160605" ,"set:stepHeight" ,"set:stepWidth" ,"stepWidth" ,"stepHeight" ,"RenderIntrinsicWidth." ,"RenderIntrinsicWidth" ,"RenderRepaintBoundary." ,"RenderRepaintBoundary" ,"get:_defaultClip@423160605" ,"RenderClipPath" ,"ShapeBorderClipper" ,"set:absorbing" ,"absorbing" ,"RenderAbsorbPointer." ,"RenderAbsorbPointer" ,"_limitConstraints@423160605" ,"set:maxHeight" ,"set:maxWidth" ,"RenderLimitedBox." ,"RenderLimitedBox" ,"offstage" ,"RenderOffstage." ,"RenderOffstage" ,"set:sized" ,"sized" ,"RenderAnnotatedRegion." ,"alwaysNeedsCompositing" ,"RenderAnnotatedRegion" ,"get:_effectiveTransform@423160605" ,"set:origin" ,"transformHitTests" ,"origin" ,"RenderTransform." ,"RenderTransform" ,"get:_markNeedsClip@423160605" ,"_updateClip@423160605" ,"_markNeedsClip@423160605" ,"set:clipper" ,"_RenderCustomClip@423160605." ,"_RenderCustomClip@423160605" ,"get:layer" ,"clipper" ,"_RenderPhysicalModelBase@423160605." ,"RenderPhysicalShape." ,"RenderPhysicalShape" ,"set:borderRadius" ,"set:shape" ,"RenderPhysicalModel." ,"RenderPhysicalModel" ,"onPointerUp" ,"onPointerSignal" ,"onPointerMove" ,"onPointerDown" ,"onPointerCancel" ,"RenderPointerListener." ,"RenderPointerListener" ,"set:additionalConstraints" ,"additionalConstraints" ,"RenderConstrainedBox." ,"RenderConstrainedBox" ,"RenderLeaderLayer." ,"RenderLeaderLayer" ,"_RenderPhysicalModelBase@423160605" ,"getCurrentTransform" ,"set:showWhenUnlinked" ,"showWhenUnlinked" ,"RenderFollowerLayer." ,"RenderFollowerLayer" ,"set:excluding" ,"excluding" ,"RenderExcludeSemantics." ,"RenderExcludeSemantics" ,"_handleUpdatedMouseIsConnected@423160605" ,"get:_handleUpdatedMouseIsConnected@423160605" ,"_setAnnotationIsActive@423160605" ,"mustRepaint" ,"_markPropertyUpdated@423160605" ,"set:cursor" ,"set:onExit" ,"set:onHover" ,"set:onEnter" ,"onHover" ,"onExit" ,"onEnter" ,"cursor" ,"RenderMouseRegion." ,"RenderMouseRegion" ,"RenderClipRect." ,"RenderClipRect" ,"DecorationPosition.foreground" ,"DecorationPosition.background" ,"DecorationPosition" ,"set:index" ,"get:index" ,"RenderIndexedSemantics." ,"RenderIndexedSemantics" ,"RenderMergeSemantics." ,"RenderMergeSemantics" ,"set:translation" ,"translation" ,"RenderFractionalTranslation." ,"RenderFractionalTranslation" ,"@423160605" ,"package:flutter\/src\/rendering\/proxy_box.dart" ,"set:blocking" ,"blocking" ,"RenderBlockSemantics." ,"RenderBlockSemantics" ,"BlockSemantics" ,"ConstrainedBox" ,"PlatformAssetBundle." ,"PlatformAssetBundle" ,"_utf8decode@452177032" ,"cache" ,"loadString" ,"AssetBundle" ,"@452177032" ,"package:flutter\/src\/services\/asset_bundle.dart" ,"loadStructuredData" ,"CachingAssetBundle" ,"CachingAssetBundle." ,"_initRootBundle@452177032" ,"init:rootBundle" ,"rootBundle" ,"get:rootBundle" ,"DefaultAssetBundle" ,"Listener" ,"LimitedBox" ,"CustomMultiChildLayout" ,"_PointerListener@480167661" ,"Column." ,"Column" ,"LayoutId" ,"IgnorePointer" ,"didUnmountRenderObject" ,"CustomPaint" ,"FractionalTranslation" ,"MouseRegion" ,"KeyedSubtree" ,"CustomSingleChildLayout" ,"Padding" ,"Opacity" ,"angle" ,"Transform.rotate" ,"Transform" ,"RepaintBoundary" ,"_RenderColoredBox@480167661." ,"_RenderColoredBox@480167661" ,"Positioned.directional" ,"Positioned" ,"_RawMouseRegion@480167661." ,"_RawMouseRegion@480167661" ,"Align" ,"Expanded" ,"MergeSemantics" ,"get:_stepWidth@480167661" ,"IntrinsicWidth" ,"PhysicalModel" ,"get:_additionalConstraints@480167661" ,"SizedBox" ,"_getTextDirection@480167661" ,"properties" ,"get:properties" ,"Semantics" ,"_OffstageElement@480167661." ,"_OffstageElement@480167661" ,"Row" ,"CompositedTransformFollower" ,"IndexedSemantics" ,"Offstage" ,"Builder" ,"Center" ,"CompositedTransformTarget" ,"PositionedDirectional" ,"AbsorbPointer" ,"handleExit" ,"get:handleExit" ,"getHandleExit" ,"_MouseRegionState@480167661" ,"ColoredBox" ,"ClipRect" ,"@510016527" ,"package:flutter\/src\/widgets\/nested_scroll_view.dart" ,"_RenderSliverOverlapAbsorber&RenderSliver&RenderObjectWithChildMixin@510016527." ,"_RenderSliverOverlapAbsorber&RenderSliver&RenderObjectWithChildMixin@510016527" ,"get:crossAxisPadding" ,"get:mainAxisPadding" ,"get:afterPadding" ,"get:beforePadding" ,"RenderSliverEdgeInsetsPadding." ,"RenderSliverEdgeInsetsPadding" ,"@433065309" ,"package:flutter\/src\/rendering\/sliver_padding.dart" ,"_markNeedsResolution@433065309" ,"_resolve@433065309" ,"RenderSliverPadding." ,"RenderSliverPadding" ,"SliverPadding" ,"@413402377" ,"package:flutter\/src\/rendering\/image.dart" ,"set:width" ,"set:centerSlice" ,"set:scale" ,"_resolve@413402377" ,"_markNeedResolution@413402377" ,"set:height" ,"set:repeat" ,"set:colorBlendMode" ,"_sizeForConstraints@413402377" ,"set:matchTextDirection" ,"_updateColorFilter@413402377" ,"RenderImage." ,"RenderImage" ,"RawImage" ,"PhysicalShape" ,"ExcludeSemantics" ,"getEffectiveTextDirection" ,"Flex" ,"Flexible" ,"ListBodyParentData" ,"_RenderListBody&RenderBox&ContainerRenderObjectMixin@415367922." ,"_RenderListBody&RenderBox&ContainerRenderObjectMixin@415367922" ,"_RenderListBody&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@415367922." ,"_RenderListBody&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@415367922" ,"@415367922" ,"package:flutter\/src\/rendering\/list_body.dart" ,"RenderListBody." ,"_getIntrinsicCrossAxis@415367922" ,"_getIntrinsicMainAxis@415367922" ,"get:mainAxis" ,"RenderListBody" ,"_getDirection@480167661" ,"ListBody" ,"@480167661" ,"package:flutter\/src\/widgets\/basic.dart" ,"Directionality" ,"get:directionalAncestors" ,"_movingInsertionSort@97139894" ,"insertionSort" ,"_mergeSort@97139894" ,"@97139894" ,"package:collection\/src\/algorithms.dart" ,"_merge@97139894" ,"@114238165" ,"package:collection\/src\/utils.dart" ,"defaultCompare" ,"list" ,"mergeSort" ,"sortWithDirectionality" ,"commonDirectionalityOf" ,"_ReadingOrderSortData@528280150." ,"_ReadingOrderSortData@528280150" ,"_findDirectionality@528280150" ,"get:rect" ,"get:directionality" ,"_ReadingOrderDirectionalGroupData@528280150" ,"ReadingOrderTraversalPolicy." ,"ReadingOrderTraversalPolicy" ,"_collectDirectionalityGroups@528280150" ,"inBand" ,"_pickNext@528280150" ,"sortDescendants" ,"count" ,"_focusAndEnsureVisible@528280150" ,"_getAncestor@528280150" ,"_WidgetOrderTraversalPolicy&FocusTraversalPolicy&DirectionalFocusTraversalPolicyMixin@528280150." ,"invalidateScopeData" ,"forward" ,"currentNode" ,"_moveFocus@528280150" ,"_sortAllDescendants@528280150" ,"_FocusTraversalGroupMarker@528280150" ,"_getMarker@528280150" ,"fromEnd" ,"_findInitialFocus@528280150" ,"findLastFocus" ,"FocusTraversalPolicy" ,"DirectionalFocusTraversalPolicyMixin" ,"FocusTraversalGroup" ,"NextFocusAction." ,"NextFocusAction" ,"_DirectionalPolicyData@528280150" ,"DirectionalFocusAction." ,"DirectionalFocusAction" ,"RequestFocusAction." ,"RequestFocusAction" ,"PreviousFocusAction." ,"PreviousFocusAction" ,"TraversalDirection.right" ,"TraversalDirection.up" ,"TraversalDirection.left" ,"TraversalDirection.down" ,"TraversalDirection" ,"_DirectionalPolicyDataEntry@528280150" ,"NextFocusIntent" ,"DirectionalFocusIntent" ,"PreviousFocusIntent" ,"RequestFocusIntent" ,"_FocusTraversalGroupState@528280150" ,"@528280150" ,"package:flutter\/src\/widgets\/focus_traversal.dart" ,"inDirection" ,"_pushPolicyData@528280150" ,"_popPolicyDataIfNeeded@528280150" ,"_sortAndFilterVertically@528280150" ,"_sortAndFilterHorizontally@528280150" ,"vertical" ,"_sortAndFindInitial@528280150" ,"findFirstFocusInDirection" ,"_WidgetOrderTraversalPolicy&FocusTraversalPolicy&DirectionalFocusTraversalPolicyMixin@528280150" ,"changedScope" ,"_handleFocusChanged@515492240" ,"get:_handleFocusChanged@515492240" ,"_handleAutofocus@515492240" ,"_createNode@515492240" ,"_initNode@515492240" ,"get:focusNode" ,"_FocusState@515492240" ,"FocusScope" ,"_FocusMarker@515492240" ,"_FocusScopeState@515492240" ,"@515492240" ,"package:flutter\/src\/widgets\/focus_scope.dart" ,"Focus" ,"reparent" ,"FocusAttachment" ,"_markNextFocus@514042876" ,"previousFocus" ,"_notify@514042876" ,"removeScopeFocus" ,"_removeChild@514042876" ,"set:canRequestFocus" ,"nextFocus" ,"set:descendantsAreFocusable" ,"consumeKeyboardToken" ,"_updateManager@514042876" ,"descendantsAreFocusable" ,"FocusNode." ,"get:hasPrimaryFocus" ,"get:hasFocus" ,"get:enclosingScope" ,"_reparent@514042876" ,"focusInDirection" ,"FocusNode" ,"_setAsFocusedChildForScope@514042876" ,"_applyFocusChange@514042876" ,"get:highlightMode" ,"_handleRawKeyEvent@514042876" ,"get:_handleRawKeyEvent@514042876" ,"_updateHighlightMode@514042876" ,"_notifyHighlightModeListeners@514042876" ,"addHighlightModeListener" ,"get:_defaultModeForPlatform@514042876" ,"_markPropertiesChanged@514042876" ,"get:_applyFocusChange@514042876" ,"removeHighlightModeListener" ,"FocusManager" ,"get:focusManager" ,"get:primaryFocus" ,"UnfocusDisposition.previouslyFocusedChild" ,"UnfocusDisposition.scope" ,"UnfocusDisposition" ,"FocusHighlightStrategy.automatic" ,"FocusHighlightStrategy" ,"@514042876" ,"package:flutter\/src\/widgets\/focus_manager.dart" ,"_FocusNode&Object&DiagnosticableTreeMixin&ChangeNotifier@514042876" ,"_FocusNode&Object&DiagnosticableTreeMixin&ChangeNotifier@514042876." ,"FocusManager." ,"_InactiveElements@28042623." ,"onBuildScheduled" ,"BuildOwner." ,"BuildOwner" ,"IndexedSlot" ,"ProxyWidget" ,"LabeledGlobalKey" ,"MultiChildRenderObjectWidget" ,"Widget." ,"Widget" ,"ParentDataElement." ,"ParentDataElement" ,"State" ,"_StateLifecycle@28042623" ,"ComponentElement" ,"_unmount@28042623" ,"get:_unmount@28042623" ,"_deactivateRecursively@28042623" ,"_unmountAll@28042623" ,"_InactiveElements@28042623" ,"assignOwner" ,"RootRenderObjectElement." ,"RootRenderObjectElement" ,"StatelessElement." ,"StatelessElement" ,"StatefulWidget" ,"RenderObjectWidget." ,"RenderObjectWidget" ,"ParentDataWidget" ,"notifyDependent" ,"updateDependencies" ,"setDependencies" ,"InheritedElement" ,"UniqueKey" ,"DebugCreator" ,"BuildContext" ,"SingleChildRenderObjectWidget" ,"SingleChildRenderObjectElement." ,"SingleChildRenderObjectElement" ,"LeafRenderObjectWidget" ,"@28042623" ,"package:flutter\/src\/widgets\/framework.dart" ,"_debugReportException@28042623" ,"finalizeTree" ,"_executeTimingsCallbacks@444222615" ,"get:_executeTimingsCallbacks@444222615" ,"addTimingsCallback" ,"drawFrame" ,"_handlePersistentFrameCallback@403452173" ,"get:_handlePersistentFrameCallback@403452173" ,"createViewConfiguration" ,"_handleSemanticsOwnerDisposed@403452173" ,"get:_handleSemanticsOwnerDisposed@403452173" ,"initMouseTracker" ,"deferFirstFrame" ,"_handleSemanticsOwnerCreated@403452173" ,"scheduleWarmUpFrame" ,"allowFirstFrame" ,"get:_handleSemanticsOwnerCreated@403452173" ,"set:renderView" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding@509399801." ,"PriorityQueue" ,"@108248793" ,"package:collection\/src\/priority_queue.dart" ,"_grow@108248793" ,"_bubbleDown@108248793" ,"_bubbleUp@108248793" ,"_removeLast@108248793" ,"_add@108248793" ,"HeapPriorityQueue." ,"HeapPriorityQueue" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding@509399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding@509399801." ,"_handleSemanticsEnabledChanged@403452173" ,"get:_handleSemanticsEnabledChanged@403452173" ,"addPersistentFrameCallback" ,"get:handlePlatformBrightnessChanged" ,"handleTextScaleFactorChanged" ,"get:handleTextScaleFactorChanged" ,"get:handleMetricsChanged" ,"ensureVisualUpdate" ,"get:ensureVisualUpdate" ,"initRenderView" ,"setSemanticsEnabled" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding@509399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&RendererBinding@509399801" ,"_WidgetsBinding&BindingBase&ServicesBinding&SchedulerBinding&GestureBinding&RendererBinding&SemanticsBinding@509399801" ,"_instance@509399801" ,"WidgetsBinding" ,"_handleNavigationInvocation@509399801" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding@509399801." ,"dispatchLocalesChanged" ,"handleLocaleChanged" ,"get:handleLocaleChanged" ,"handlePopRoute" ,"handlePushRoute" ,"_rebuild@509399801" ,"RenderObjectToWidgetElement." ,"RenderObjectToWidgetElement" ,"RenderObjectToWidgetAdapter." ,"RenderObjectToWidgetAdapter" ,"attachToRenderTree" ,"attachRootWidget" ,"get:_handleNavigationInvocation@509399801" ,"scheduleAttachRootWidget" ,"get:handleAccessibilityFeaturesChanged" ,"_handleBuildScheduled@509399801" ,"get:_handleBuildScheduled@509399801" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding@509399801" ,"get:framesEnabled" ,"_setFramesEnabledState@444222615" ,"handleAppLifecycleStateChanged" ,"readInitialLifecycleStateFromNativeWindow" ,"initLicenses" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding@509399801." ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding@509399801" ,"BindingBase." ,"BindingBase" ,"get:_flushPointerEventQueue@215304576" ,"cancelPointer" ,"get:cancelPointer" ,"unlocked" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding@509399801" ,"WidgetsFlutterBinding." ,"WidgetsFlutterBinding" ,"ensureInitialized" ,"runApp" ,"@509399801" ,"package:flutter\/src\/widgets\/binding.dart" ,"_ensureEventLoopCallback@444222615" ,"get:endOfFrame" ,"resetEpoch" ,"handleEventLoopCallback" ,"_runTasks@444222615" ,"get:_runTasks@444222615" ,"task" ,"scheduleTask" ,"_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding@509399801" ,"cancelFrameCallbackWithId" ,"absorbTicker" ,"resync" ,"_tick@152066280" ,"animationBehavior" ,"upperBound" ,"lowerBound" ,"reverseDuration" ,"AnimationController." ,"_checkStatusChanged@152066280" ,"_animateToInternal@152066280" ,"_directionSetter@152066280" ,"get:_directionSetter@152066280" ,"get:_tick@152066280" ,"_internalSetValue@152066280" ,"animateBack" ,"_startSimulation@152066280" ,"period" ,"repeat" ,"AnimationController.unbounded" ,"fling" ,"animateWith" ,"AnimationController" ,"AnimationBehavior.normal" ,"AnimationBehavior.preserve" ,"AnimationBehavior" ,"@152066280" ,"package:flutter\/src\/animation\/animation_controller.dart" ,"_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin@152066280" ,"addListener" ,"ExpandIterable" ,"package:firebase_auth_platform_interface\/src\/method_channel_firebase_auth.dart" ,"PlatformAdditionalUserInfo" ,"_decodeAdditionalUserInfo@142501543" ,"PlatformAuthResult" ,"PlatformUserInfo" ,"PlatformUser" ,"_decodeAuthResult@142501543" ,"_decodeUserInfo@142501543" ,"_decodeUser@142501543" ,"_asMap@142501543" ,"GoogleAuthCredential" ,"PhoneAuthCredential" ,"get:codeAutoRetrievalTimeout" ,"_PhoneAuthCallbacks@142501543" ,"_callHandler@142501543" ,"get:_callHandler@142501543" ,"signOut" ,"get:signOut" ,"_onAuthStateChangedHandler@142501543" ,"signInWithCredential" ,"getCurrentUser" ,"init:_token@142501543" ,"_token@142501543" ,"get:_token@142501543" ,"FirebaseAuthPlatform." ,"MethodChannelFirebaseAuth." ,"MethodChannelFirebaseAuth" ,"AuthCredential" ,"@63304592" ,"package:plugin_platform_interface\/plugin_platform_interface.dart" ,"plugin_platform_interface" ,"verifyToken" ,"PlatformInterface" ,"init:_instance@142501543" ,"_instance@142501543" ,"get:_instance@142501543" ,"FirebaseAuthPlatform" ,"@142501543" ,"package:firebase_auth_platform_interface\/firebase_auth_platform_interface.dart" ,"firebase_auth_platform_interface" ,"package:firebase_auth_platform_interface\/src\/types.dart" ,"AuthException" ,"@288331726" ,"package:flutter\/src\/material\/icon_button.dart" ,"IconButton" ,"get:_startIndex@11040228" ,"SubListIterable." ,"SubListIterable" ,"get:_endIndex@11040228" ,"MappedListIterable" ,"_loadAsync@375477495" ,"AssetBundleImageProvider" ,"resolveStreamForKey" ,"_createErrorHandlerAndKey@375477495" ,"createStream" ,"ImageProvider" ,"AssetBundleImageKey" ,"setError" ,"_ErrorImageCompleter@375477495." ,"_ErrorImageCompleter@375477495" ,"@375477495" ,"package:flutter\/src\/painting\/image_provider.dart" ,"bundle" ,"ImageConfiguration" ,"createLocalImageConfiguration" ,"__ImageState&State&WidgetsBindingObserver@545215529" ,"_handleImageFrame@545215529" ,"get:_handleImageFrame@545215529" ,"_stopListeningToStream@545215529" ,"_listenToStream@545215529" ,"_updateSourceStream@545215529" ,"recreateListener" ,"_getListener@545215529" ,"@569234176" ,"package:flutter\/src\/widgets\/scroll_aware_image_provider.dart" ,"@376097849" ,"package:flutter\/src\/painting\/image_resolution.dart" ,"init:_extractRatioRegExp@376097849" ,"_extractRatioRegExp@376097849" ,"_parseScale@376097849" ,"_findNearest@376097849" ,"_chooseVariant@376097849" ,"_manifestParser@376097849" ,"get:_extractRatioRegExp@376097849" ,"get:package" ,"AssetImage" ,"obtainKey" ,"ScrollAwareImageProvider" ,"_resolveImage@545215529" ,"_updateInvertColors@545215529" ,"_ImageState@545215529" ,"@545215529" ,"package:flutter\/src\/widgets\/image.dart" ,"yug" ,"yuu" ,"zom" ,"yos" ,"mtm" ,"ymt" ,"lrr" ,"yma" ,"ybd" ,"suj" ,"xsj" ,"waw" ,"xkh" ,"acn" ,"xia" ,"cax" ,"xba" ,"ema" ,"uok" ,"taj" ,"tsf" ,"tnf" ,"kak" ,"tne" ,"tyj" ,"tmp" ,"weo" ,"tlw" ,"twm" ,"tkk" ,"ras" ,"tie" ,"thx" ,"tpo" ,"thc" ,"tdu" ,"skk" ,"hle" ,"sca" ,"pub" ,"puz" ,"prt" ,"pry" ,"lcq" ,"ppr" ,"bfy" ,"ppa" ,"phr" ,"pmu" ,"huw" ,"pmc" ,"adx" ,"pcr" ,"oun" ,"nts" ,"ngv" ,"nnx" ,"kdz" ,"ncp" ,"xny" ,"nad" ,"myt" ,"mwj" ,"mry" ,"mst" ,"cir" ,"meg" ,"rmx" ,"lmm" ,"raq" ,"lii" ,"kzt" ,"kzj" ,"tvd" ,"kxe" ,"yam" ,"kwq" ,"gdj" ,"kvs" ,"dtp" ,"ktr" ,"bmf" ,"krm" ,"kwv" ,"koj" ,"kml" ,"kgh" ,"tdf" ,"kgc" ,"oyb" ,"jeg" ,"gal" ,"ilw" ,"opa" ,"ibi" ,"jal" ,"hrr" ,"duz" ,"guv" ,"nyc" ,"gti" ,"gvr" ,"ggn" ,"vaj" ,"gfx" ,"dev" ,"gav" ,"prs" ,"drw" ,"khk" ,"drh" ,"quh" ,"cqu" ,"pij" ,"coy" ,"xch" ,"cmk" ,"cmr" ,"cka" ,"mom" ,"cjr" ,"rki" ,"ccq" ,"drl" ,"bjd" ,"bcg" ,"bgm" ,"nun" ,"ayx" ,"ktz" ,"aue" ,"dz" ,"adp" ,"aas" ,"aam" ,"ro" ,"mo" ,"jv" ,"jw" ,"yi" ,"ji" ,"he" ,"iw" ,"FieldPathType.documentId" ,"@82225381" ,"package:cloud_firestore_platform_interface\/src\/internal\/field_path_type.dart" ,"FieldPathType" ,"mode" ,"CD" ,"ZR" ,"YE" ,"YD" ,"TL" ,"TP" ,"FR" ,"FX" ,"DE" ,"DD" ,"MM" ,"BU" ,"ZZZZ" ,"zzzz" ,"mm:ss" ,"ms" ,"h a z" ,"jz" ,"h:mm a z" ,"jmz" ,"h:mm a v" ,"jmv" ,"h:mm:ss a" ,"jms" ,"h:mm a" ,"jm" ,"h a" ,"HH:mm:ss" ,"Hms" ,"HH:mm" ,"Hm" ,"HH" ,"QQQQ y" ,"yQQQQ" ,"QQQ y" ,"yQQQ" ,"EEEE, MMMM d, y" ,"yMMMMEEEEd" ,"MMMM d, y" ,"yMMMMd" ,"MMMM y" ,"yMMMM" ,"EEE, MMM d, y" ,"yMMMEd" ,"MMM d, y" ,"yMMMd" ,"MMM y" ,"yMMM" ,"EEE, M\/d\/y" ,"yMEd" ,"M\/d\/y" ,"yMd" ,"M\/y" ,"yM" ,"QQQQ" ,"QQQ" ,"EEEE, MMMM d" ,"MMMMEEEEd" ,"MMMM d" ,"MMMMd" ,"MMMM" ,"EEE, MMM d" ,"MMMEd" ,"MMM d" ,"MMMd" ,"MMM" ,"EEE, M\/d" ,"MEd" ,"M\/d" ,"Md" ,"LLLL" ,"LLL" ,"EEEE" ,"EEE" ,"Fn" ,"GameButtonZ" ,"GameButtonY" ,"GameButtonX" ,"GameButtonThumbRight" ,"GameButtonThumbLeft" ,"GameButtonStart" ,"GameButtonSelect" ,"GameButtonRight2" ,"GameButtonRight1" ,"GameButtonMode" ,"GameButtonLeft2" ,"GameButtonLeft1" ,"GameButtonC" ,"GameButtonB" ,"GameButtonA" ,"GameButton16" ,"GameButton15" ,"GameButton14" ,"GameButton13" ,"GameButton12" ,"GameButton11" ,"GameButton10" ,"GameButton9" ,"GameButton8" ,"GameButton7" ,"GameButton6" ,"GameButton5" ,"GameButton4" ,"GameButton3" ,"GameButton2" ,"GameButton1" ,"ShowAllWindows" ,"KeyboardLayoutSelect" ,"MailSend" ,"MailForward" ,"MailReply" ,"ZoomToggle" ,"BrowserFavorites" ,"BrowserRefresh" ,"BrowserStop" ,"BrowserForward" ,"BrowserBack" ,"BrowserHome" ,"BrowserSearch" ,"LaunchAssistant" ,"LaunchScreenSaver" ,"SelectTask" ,"LaunchControlPanel" ,"LaunchApp1" ,"LaunchApp2" ,"LaunchMail" ,"MediaSelect" ,"MediaPlayPause" ,"Eject" ,"MediaStop" ,"MediaTrackPrevious" ,"MediaTrackNext" ,"MediaRewind" ,"MediaFastForward" ,"MediaRecord" ,"MediaPause" ,"MediaPlay" ,"BrightnessDown" ,"BrightnessUp" ,"MetaRight" ,"AltRight" ,"ShiftRight" ,"ControlRight" ,"MetaLeft" ,"AltLeft" ,"ShiftLeft" ,"ControlLeft" ,"NumpadClearEntry" ,"NumpadClear" ,"NumpadMemorySubtract" ,"NumpadMemoryAdd" ,"NumpadMemoryClear" ,"NumpadMemoryRecall" ,"NumpadMemoryStore" ,"NumpadBackspace" ,"NumpadParenRight" ,"NumpadParenLeft" ,"Props" ,"Abort" ,"Lang5" ,"Lang4" ,"Lang3" ,"Lang2" ,"Lang1" ,"NonConvert" ,"Convert" ,"IntlYen" ,"KanaMode" ,"IntlRo" ,"NumpadComma" ,"AudioVolumeDown" ,"AudioVolumeUp" ,"AudioVolumeMute" ,"Find" ,"Paste" ,"Copy" ,"Cut" ,"Undo" ,"Again" ,"Select" ,"Help" ,"Open" ,"F24" ,"F23" ,"F22" ,"F21" ,"F20" ,"F19" ,"F18" ,"F17" ,"F16" ,"F15" ,"F14" ,"F13" ,"NumpadEqual" ,"Power" ,"ContextMenu" ,"IntlBackslash" ,"NumpadDecimal" ,"Numpad0" ,"Numpad9" ,"Numpad8" ,"Numpad7" ,"Numpad6" ,"Numpad5" ,"Numpad4" ,"Numpad3" ,"Numpad2" ,"Numpad1" ,"NumpadEnter" ,"NumpadAdd" ,"NumpadSubtract" ,"NumpadMultiply" ,"NumpadDivide" ,"NumLock" ,"ArrowUp" ,"ArrowDown" ,"ArrowLeft" ,"ArrowRight" ,"PageDown" ,"End" ,"Delete" ,"PageUp" ,"Home" ,"Insert" ,"Pause" ,"ScrollLock" ,"PrintScreen" ,"F12" ,"F11" ,"F10" ,"F9" ,"F8" ,"F7" ,"F6" ,"F5" ,"F4" ,"F3" ,"F2" ,"F1" ,"CapsLock" ,"Slash" ,"Period" ,"Comma" ,"Backquote" ,"Quote" ,"Semicolon" ,"Backslash" ,"BracketRight" ,"BracketLeft" ,"Equal" ,"Minus" ,"Space" ,"Tab" ,"Backspace" ,"Escape" ,"Enter" ,"Digit0" ,"Digit9" ,"Digit8" ,"Digit7" ,"Digit6" ,"Digit5" ,"Digit4" ,"Digit3" ,"Digit2" ,"Digit1" ,"KeyZ" ,"KeyY" ,"KeyX" ,"KeyW" ,"KeyV" ,"KeyU" ,"KeyT" ,"KeyS" ,"KeyR" ,"KeyQ" ,"KeyP" ,"KeyO" ,"KeyN" ,"KeyM" ,"KeyL" ,"KeyK" ,"KeyJ" ,"KeyI" ,"KeyH" ,"KeyG" ,"KeyF" ,"KeyE" ,"KeyD" ,"KeyC" ,"KeyB" ,"KeyA" ,"DisplayToggleIntExt" ,"WakeUp" ,"Sleep" ,"PrivacyScreenToggle" ,"Turbo" ,"Resume" ,"Suspend" ,"FnLock" ,"Super" ,"Hyper" ,"None" ,"PageTransitionsBuilder" ,"FadeUpwardsPageTransitionsBuilder" ,"init:_easeInTween@307490068" ,"_easeInTween@307490068" ,"init:_fastOutSlowInTween@307490068" ,"_fastOutSlowInTween@307490068" ,"init:_bottomUpTween@307490068" ,"_bottomUpTween@307490068" ,"routeAnimation" ,"_FadeUpwardsPageTransition@307490068." ,"get:_easeInTween@307490068" ,"get:_fastOutSlowInTween@307490068" ,"get:_bottomUpTween@307490068" ,"_FadeUpwardsPageTransition@307490068" ,"_all@307490068" ,"PageTransitionsTheme" ,"@307490068" ,"package:flutter\/src\/material\/page_transitions_theme.dart" ,"CupertinoPageTransitionsBuilder" ,"init:_tempHashStore4@516043213" ,"_tempHashStore4@516043213" ,"init:_tempHashStore3@516043213" ,"_tempHashStore3@516043213" ,"KeySet.fromSet" ,"KeySet." ,"get:_tempHashStore4@516043213" ,"get:_tempHashStore3@516043213" ,"KeySet" ,"_LogicalKeySet&KeySet&[email protected]" ,"_LogicalKeySet&KeySet&Diagnosticable@516043213." ,"_LogicalKeySet&KeySet&Diagnosticable@516043213" ,"_DelegatingIterableBase@113184915" ,"DelegatingIterable" ,"@113184915" ,"package:collection\/src\/wrappers.dart" ,"get:_setBase@113184915" ,"DelegatingSet" ,"_throw@112278439" ,"UnmodifiableSetMixin" ,"_UnmodifiableSetView&DelegatingSet&UnmodifiableSetMixin@112278439" ,"@112278439" ,"package:collection\/src\/unmodifiable_wrappers.dart" ,"UnmodifiableSetView" ,"LogicalKeySet.fromSet" ,"keysPressed" ,"event" ,"handleKeypress" ,"set:shortcuts" ,"modal" ,"shortcuts" ,"ShortcutManager." ,"ShortcutManager" ,"_ShortcutsMarker@516043213" ,"Shortcuts" ,"_ShortcutManager&ChangeNotifier&Diagnosticable@516043213." ,"_ShortcutManager&ChangeNotifier&Diagnosticable@516043213" ,"_handleOnKey@516043213" ,"get:_handleOnKey@516043213" ,"get:manager" ,"_ShortcutsState@516043213" ,"@516043213" ,"package:flutter\/src\/widgets\/shortcuts.dart" ,"LogicalKeySet." ,"LogicalKeySet" ,"FontWeight.w900" ,"FontWeight.w800" ,"FontWeight.w700" ,"FontWeight.w600" ,"FontWeight.w500" ,"FontWeight.w400" ,"FontWeight.w300" ,"FontWeight.w200" ,"FontWeight.w100" ,"_ModalRoute@42264537." ,"@40185334" ,"package:animations\/src\/fade_scale_transition.dart" ,"init:_fadeOutTransition@40185334" ,"_fadeOutTransition@40185334" ,"init:_scaleInTransition@40185334" ,"_scaleInTransition@40185334" ,"init:_fadeInTransition@40185334" ,"_fadeInTransition@40185334" ,"get:_fadeOutTransition@40185334" ,"get:_scaleInTransition@40185334" ,"get:_fadeInTransition@40185334" ,"FadeScaleTransition" ,"transitionBuilder" ,"Dismiss" ,"ModalConfiguration" ,"FadeScaleTransitionConfiguration" ,"get:transitionBuilder" ,"showModal" ,"@42264537" ,"package:animations\/src\/modal.dart" ,"_ModalRoute@42264537" ,"dart:core\/symbol.dart" ,"SIC" ,"AESMode.sic" ,"package:encrypt\/src\/encrypter.dart" ,"package:encrypt\/src\/encrypted.dart" ,"package:encrypt\/src\/algorithm.dart" ,"Algorithm" ,"Key.fromBase64" ,"get:base64" ,"Encrypted.fromLength" ,"Encrypted.fromBase64" ,"Encrypted" ,"package:pointycastle\/src\/api\/cipher_parameters.dart" ,"CipherParameters" ,"package:pointycastle\/src\/api\/stream_cipher.dart" ,"package:pointycastle\/src\/api\/signer.dart" ,"package:pointycastle\/src\/api\/secure_random.dart" ,"package:pointycastle\/src\/api\/registry_factory_exception.dart" ,"package:pointycastle\/src\/api\/parameters_with_iv.dart" ,"package:pointycastle\/src\/api\/padding.dart" ,"package:pointycastle\/src\/api\/padded_block_cipher_parameters.dart" ,"package:pointycastle\/src\/api\/padded_block_cipher.dart" ,"package:pointycastle\/src\/api\/mac.dart" ,"package:pointycastle\/src\/api\/key_generator.dart" ,"package:pointycastle\/src\/api\/key_derivator.dart" ,"package:pointycastle\/src\/api\/digest.dart" ,"package:pointycastle\/src\/api\/block_cipher.dart" ,"package:pointycastle\/src\/api\/asymmetric_block_cipher.dart" ,"package:pointycastle\/src\/api\/algorithm.dart" ,"RegistryFactoryException.unknown" ,"init:_specialRegExpChars@632301108" ,"_specialRegExpChars@632301108" ,"_RegistryImpl@632301108." ,"init:registry" ,"FactoryRegistry" ,"registry" ,"_escapeRegExp@632301108" ,"get:_specialRegExpChars@632301108" ,"get:registry" ,"tryFactory" ,"DynamicFactoryConfig.suffix" ,"DynamicFactoryConfig.regex" ,"DynamicFactoryConfig" ,"FactoryConfig" ,"StaticFactoryConfig" ,"@632301108" ,"package:pointycastle\/src\/registry\/registry.dart" ,"pointycastle.src.registry" ,"_addStaticFactoryConfig@632301108" ,"_RegistryImpl@632301108" ,"_addDynamicFactoryConfig@632301108" ,"package:pointycastle\/stream\/sic.dart" ,"init:FACTORY_CONFIG" ,"FACTORY_CONFIG" ,"@738297498" ,"package:pointycastle\/src\/impl\/base_stream_cipher.dart" ,"pointycastle.src.impl.base_stream_cipher" ,"process" ,"BaseStreamCipher" ,"@651045914" ,"pointycastle.impl.stream_cipher.sic" ,"_incrementCounter@651045914" ,"_feedCounter@651045914" ,"_feedCounterIfNeeded@651045914" ,"returnByte" ,"processBytes" ,"init" ,"SICStreamCipher." ,"SICStreamCipher" ,"get:FACTORY_CONFIG" ,"package:pointycastle\/stream\/salsa20.dart" ,"@733412779" ,"pointycastle.impl.stream_cipher.salsa20" ,"UnmodifiableListMixin" ,"UnmodifiableListBase" ,"CodeUnits" ,"init:_tau@733412779" ,"_tau@733412779" ,"init:_sigma@733412779" ,"_sigma@733412779" ,"package:pointycastle\/src\/ufixnum.dart" ,"init:_MASK32_HI_BITS@642143242" ,"_MASK32_HI_BITS@642143242" ,"rotr32" ,"Register64List." ,"Register64List.from" ,"Register64List" ,"unpack32" ,"crotl32" ,"sum32" ,"pack32" ,"_padWrite@642143242" ,"unpack" ,"rotl" ,"shiftr" ,"shiftl" ,"xor" ,"and" ,"not" ,"sum" ,"Register64." ,"_lo32@642143242" ,"get:_lo32@642143242" ,"Register64" ,"@642143242" ,"pointycastle.src.ufixnum" ,"get:_MASK32_HI_BITS@642143242" ,"shiftl32" ,"rotl32" ,"setAll" ,"_salsa20Core@733412779" ,"_generateKeyStream@733412779" ,"_setKey@733412779" ,"Salsa20Engine." ,"get:_tau@733412779" ,"get:_sigma@733412779" ,"Salsa20Engine" ,"package:pointycastle\/stream\/ctr.dart" ,"@646151975" ,"pointycastle.impl.stream_cipher.ctr" ,"CTRStreamCipher." ,"CTRStreamCipher" ,"_registerSigners@739106361" ,"_registerPaddings@739106361" ,"_registerBlockCiphers@739106361" ,"_registerECCurves@739106361" ,"_registerAsymmetricCiphers@739106361" ,"_registerMacs@739106361" ,"_registerPaddedBlockCiphers@739106361" ,"_registerDigests@739106361" ,"_registerRandoms@739106361" ,"_registerKeyGenerators@739106361" ,"_registerKeyDerivators@739106361" ,"@739106361" ,"package:pointycastle\/src\/registry\/registration.dart" ,"pointycastle.src.registry.impl" ,"_registerStreamCiphers@739106361" ,"package:pointycastle\/signers\/rsa_signer.dart" ,"@732060559" ,"pointycastle.impl.signer.rsa_signer" ,"init:_DIGEST_IDENTIFIER_HEXES@732060559" ,"_DIGEST_IDENTIFIER_HEXES@732060559" ,"_hexStringToBytes@732060559" ,"RSASigner." ,"get:_DIGEST_IDENTIFIER_HEXES@732060559" ,"RSASigner" ,"package:pointycastle\/signers\/ecdsa_signer.dart" ,"@731134294" ,"pointycastle.impl.signer.ecdsa_signer" ,"ECDSASigner" ,"package:pointycastle\/random\/fortuna_random.dart" ,"@636160334" ,"pointycastle.impl.secure_random.fortuna_random" ,"dart:core\/bigint.dart" ,"dyn:&" ,"_rsh@0150898" ,"init:one" ,"one" ,"get:one" ,"init:_minusOne@0150898" ,"_minusOne@0150898" ,"get:_minusOne@0150898" ,"init:zero" ,"zero" ,"get:zero" ,"_drShift@0150898" ,"dyn:>>" ,"_cloneDigits@0150898" ,"_mulAdd@0150898" ,"Bool_fromEnvironment" ,"defaultValue" ,"dart:core-patch\/bool_patch.dart" ,"bool.fromEnvironment" ,"init:_isIntrinsified@0150898" ,"_isIntrinsified@0150898" ,"get:_isIntrinsified@0150898" ,"_estimateQuotientDigit@0150898" ,"_absSub@0150898" ,"_compareDigits@0150898" ,"_dlShiftDigits@0150898" ,"_lsh@0150898" ,"_lShiftDigits@0150898" ,"_divRem@0150898" ,"_lastRem_nsh@0150898" ,"get:_lastRem_nsh@0150898" ,"_lastRemUsed@0150898" ,"get:_lastRemUsed@0150898" ,"_lastQuoRemDigits@0150898" ,"get:_lastQuoRemDigits@0150898" ,"_rem@0150898" ,"_ensureSystemBigInt@0150898" ,"init:_parseRE@0150898" ,"_parseRE@0150898" ,"_lastQuoRemUsed@0150898" ,"_lastDivisorUsed@0150898" ,"_lastDivisorDigits@0150898" ,"_lastDividendUsed@0150898" ,"_lastDividendDigits@0150898" ,"init:_oneBillion@0150898" ,"_oneBillion@0150898" ,"init:two" ,"two" ,"_rShiftDigits@0150898" ,"_absAndNotSetSign@0150898" ,"_binaryGcd@0150898" ,"_BigIntReduction@0150898" ,"_mul@0150898" ,"_sqr@0150898" ,"_revert@0150898" ,"_convert@0150898" ,"_invDigit@0150898" ,"_BigIntMontgomeryReduction@0150898." ,"_normModulusUsed@0150898" ,"get:_normModulusUsed@0150898" ,"_BigIntMontgomeryReduction@0150898" ,"_mulMod@0150898" ,"_reduce@0150898" ,"List_setIndexed" ,"_BigIntClassicReduction@0150898" ,"_BigIntClassicReduction@0150898." ,"modPow" ,"_remDigits@0150898" ,"_mulDigits@0150898" ,"_absCompare@0150898" ,"get:sign" ,"get:_oneBillion@0150898" ,"_absAdd@0150898" ,"_parseHex@0150898" ,"_tryParse@0150898" ,"_div@0150898" ,"get:bitLength" ,"_sqrAdd@0150898" ,"_sqrDigits@0150898" ,"get:two" ,"_dlShift@0150898" ,"_absAddSetSign@0150898" ,"get:_lastQuoRemUsed@0150898" ,"_absSubSetSign@0150898" ,"get:isEven" ,"_absAndSetSign@0150898" ,"_absOrSetSign@0150898" ,"get:_parseRE@0150898" ,"get:isNegative" ,"modInverse" ,"_drShiftDigits@0150898" ,"_BigIntImpl@0150898" ,"_BigIntImpl@0150898._@0150898" ,"_BigIntImpl@0150898._fromInt@0150898" ,"[email protected]" ,"BigInt.from" ,"BigInt" ,"nextBigInteger" ,"@737302708" ,"package:pointycastle\/src\/impl\/secure_random_base.dart" ,"pointycastle.src.impl.random.secure_random_base" ,"_incrementInput@730370236" ,"nextUint8" ,"_randomBits@737302708" ,"nextBytes" ,"SecureRandomBase" ,"@730370236" ,"package:pointycastle\/random\/block_ctr_random.dart" ,"pointycastle.impl.secure_random.block_ctr_random" ,"__Int8List&_TypedList&_IntListMixin@7027147" ,"seed" ,"BlockCtrRandom" ,"BlockCtrRandom." ,"@729025418" ,"package:pointycastle\/random\/auto_seed_block_ctr_random.dart" ,"pointycastle.impl.secure_random.auto_seed_block_ctr_random" ,"_doAutoReseed@729025418" ,"_autoReseedIfNeededAfter@729025418" ,"AutoSeedBlockCtrRandom." ,"AutoSeedBlockCtrRandom" ,"@631061696" ,"package:pointycastle\/src\/impl\/base_block_cipher.dart" ,"pointycastle.src.impl.base_block_cipher" ,"BaseBlockCipher" ,"init:_Tinv3@641039921" ,"_Tinv3@641039921" ,"init:_Tinv2@641039921" ,"_Tinv2@641039921" ,"init:_Tinv1@641039921" ,"_Tinv1@641039921" ,"init:_Tinv0@641039921" ,"_Tinv0@641039921" ,"init:_T3@641039921" ,"_T3@641039921" ,"init:_T2@641039921" ,"_T2@641039921" ,"init:_T1@641039921" ,"_T1@641039921" ,"init:_T0@641039921" ,"_T0@641039921" ,"init:_rcon@641039921" ,"_rcon@641039921" ,"init:_Si@641039921" ,"_Si@641039921" ,"init:_S@641039921" ,"_S@641039921" ,"_subWord@641039921" ,"_inv_mcol@641039921" ,"_FFmulX@641039921" ,"_shift@641039921" ,"get:_Tinv3@641039921" ,"get:_Tinv2@641039921" ,"get:_Tinv1@641039921" ,"get:_Tinv0@641039921" ,"get:_T3@641039921" ,"get:_T2@641039921" ,"get:_T1@641039921" ,"get:_T0@641039921" ,"get:_rcon@641039921" ,"get:_Si@641039921" ,"get:_S@641039921" ,"@641039921" ,"package:pointycastle\/block\/aes_fast.dart" ,"pointycastle.impl.block_cipher.aes_fast" ,"_packBlock@641039921" ,"_unpackBlock@641039921" ,"_decryptBlock@641039921" ,"_encryptBlock@641039921" ,"processBlock" ,"get:blockSize" ,"AESFastEngine" ,"FortunaRandom." ,"FortunaRandom" ,"package:pointycastle\/paddings\/iso7816d4.dart" ,"@736316677" ,"package:pointycastle\/src\/impl\/base_padding.dart" ,"pointycastle.src.impl.base_padding" ,"BasePadding" ,"@728402128" ,"pointycastle.impl.padding.iso7816d4" ,"padCount" ,"addPadding" ,"ISO7816d4Padding" ,"package:pointycastle\/paddings\/pkcs7.dart" ,"@727413549" ,"pointycastle.impl.padding.pkcs7" ,"PKCS7Padding" ,"package:pointycastle\/padded_block_cipher\/padded_block_cipher_impl.dart" ,"@726286351" ,"pointycastle.impl.padded_block_cipher.padded_block_cipher_impl" ,"doFinal" ,"PaddedBlockCipherImpl" ,"package:pointycastle\/macs\/cbc_block_cipher_mac.dart" ,"@735472409" ,"package:pointycastle\/src\/impl\/base_mac.dart" ,"pointycastle.src.impl.base_mac" ,"BaseMac" ,"@725502562" ,"pointycastle.impl.mac.cbc_block_cipher_mac" ,"get:macSize" ,"@643520057" ,"package:pointycastle\/block\/modes\/cbc.dart" ,"pointycastle.impl.block_cipher.modes.cbc" ,"_decryptBlock@643520057" ,"_encryptBlock@643520057" ,"CBCBlockCipher" ,"CBCBlockCipher." ,"CBCBlockCipherMac." ,"CBCBlockCipherMac.fromCipherAndPadding" ,"CBCBlockCipherMac" ,"package:pointycastle\/macs\/cmac.dart" ,"@724312482" ,"pointycastle.impl.mac.cmac" ,"lookupPoly" ,"CMac." ,"CMac.fromCipher" ,"CMac" ,"package:pointycastle\/macs\/hmac.dart" ,"@723404795" ,"pointycastle.impl.mac.hmac" ,"init:_DIGEST_BLOCK_LENGTH@723404795" ,"_DIGEST_BLOCK_LENGTH@723404795" ,"HMac." ,"get:_DIGEST_BLOCK_LENGTH@723404795" ,"HMac" ,"package:pointycastle\/key_generators\/rsa_key_generator.dart" ,"@722372698" ,"pointycastle.impl.key_generator.rsa_key_generator" ,"RSAKeyGenerator" ,"package:pointycastle\/key_generators\/ec_key_generator.dart" ,"@721399033" ,"pointycastle.impl.key_generator.ec_key_generator" ,"ECKeyGenerator" ,"package:pointycastle\/key_derivators\/scrypt.dart" ,"@734362233" ,"package:pointycastle\/src\/impl\/base_key_derivator.dart" ,"pointycastle.src.impl.base_key_derivator" ,"BaseKeyDerivator" ,"@719157459" ,"pointycastle.impl.key_derivator.scrypt" ,"Scrypt" ,"package:pointycastle\/key_derivators\/pbkdf2.dart" ,"@718142753" ,"pointycastle.impl.key_derivator.pbkdf2" ,"PBKDF2KeyDerivator." ,"PBKDF2KeyDerivator" ,"package:pointycastle\/ecc\/curves\/secp521r1.dart" ,"ECCurve" ,"ECPoint" ,"ECDomainParameters" ,"@671481373" ,"package:pointycastle\/ecc\/api.dart" ,"pointycastle.api.ecc" ,"ECFieldElement" ,"ECFieldElementBase" ,"encodeBigInt" ,"init:_byteMask@640469613" ,"_byteMask@640469613" ,"get:_byteMask@640469613" ,"@640469613" ,"package:pointycastle\/src\/utils.dart" ,"pointycastle.src.utils" ,"decodeBigInt" ,"_fromArray@673249982" ,"_windowNaf@715069709" ,"set:preCompInfo" ,"_lucasSequence@715069709" ,"SecureRandom." ,"sqrt" ,"square" ,"ECFieldElement." ,"twice" ,"_WNafPreCompInfo@715069709" ,"_WNafMultiplier@715069709" ,"_testBit@715069709" ,"_lbit@715069709" ,"decompressPoint" ,"fromBigInteger" ,"get:fieldSize" ,"ECCurve." ,"@715069709" ,"package:pointycastle\/ecc\/ecc_fp.dart" ,"pointycastle.impl.ecc.ecc_fp" ,"ECPoint." ,"createPoint" ,"decodePoint" ,"ECCurveBase." ,"ECCurveBase" ,"ECPointBase" ,"PreCompInfo" ,"@673249982" ,"package:pointycastle\/ecc\/ecc_base.dart" ,"pointycastle.impl.ecc.ecc_base" ,"ECDomainParametersImpl." ,"ECDomainParametersImpl" ,"@714117017" ,"pointycastle.impl.ec_domain_parameters.secp521r1" ,"_make@714117017" ,"@674522418" ,"package:pointycastle\/src\/ec_standard_curve_constructor.dart" ,"pointycastle.src.registry.ec_standard_curve_constructor" ,"constructFpStandardCurve" ,"ECCurve_secp521r1." ,"ECCurve_secp521r1._super@714117017" ,"ECCurve_secp521r1" ,"package:pointycastle\/ecc\/curves\/secp384r1.dart" ,"@713249435" ,"pointycastle.impl.ec_domain_parameters.secp384r1" ,"_make@713249435" ,"ECCurve_secp384r1." ,"ECCurve_secp384r1._super@713249435" ,"ECCurve_secp384r1" ,"package:pointycastle\/ecc\/curves\/secp256r1.dart" ,"@712493561" ,"pointycastle.impl.ec_domain_parameters.secp256r1" ,"_make@712493561" ,"ECCurve_secp256r1." ,"ECCurve_secp256r1._super@712493561" ,"ECCurve_secp256r1" ,"package:pointycastle\/ecc\/curves\/secp256k1.dart" ,"@711069956" ,"pointycastle.impl.ec_domain_parameters.secp256k1" ,"_make@711069956" ,"ECCurve_secp256k1." ,"ECCurve_secp256k1._super@711069956" ,"ECCurve_secp256k1" ,"package:pointycastle\/ecc\/curves\/secp224r1.dart" ,"@710309820" ,"pointycastle.impl.ec_domain_parameters.secp224r1" ,"_make@710309820" ,"ECCurve_secp224r1." ,"ECCurve_secp224r1._super@710309820" ,"ECCurve_secp224r1" ,"package:pointycastle\/ecc\/curves\/secp224k1.dart" ,"@709009234" ,"pointycastle.impl.ec_domain_parameters.secp224k1" ,"_make@709009234" ,"ECCurve_secp224k1." ,"ECCurve_secp224k1._super@709009234" ,"ECCurve_secp224k1" ,"package:pointycastle\/ecc\/curves\/secp192r1.dart" ,"@708226699" ,"pointycastle.impl.ec_domain_parameters.secp192r1" ,"_make@708226699" ,"ECCurve_secp192r1." ,"ECCurve_secp192r1._super@708226699" ,"ECCurve_secp192r1" ,"package:pointycastle\/ecc\/curves\/secp192k1.dart" ,"@707159089" ,"pointycastle.impl.ec_domain_parameters.secp192k1" ,"_make@707159089" ,"ECCurve_secp192k1." ,"ECCurve_secp192k1._super@707159089" ,"ECCurve_secp192k1" ,"package:pointycastle\/ecc\/curves\/secp160r2.dart" ,"@706166658" ,"pointycastle.impl.ec_domain_parameters.secp160r2" ,"_make@706166658" ,"ECCurve_secp160r2." ,"ECCurve_secp160r2._super@706166658" ,"ECCurve_secp160r2" ,"package:pointycastle\/ecc\/curves\/secp160r1.dart" ,"@705308126" ,"pointycastle.impl.ec_domain_parameters.secp160r1" ,"_make@705308126" ,"ECCurve_secp160r1." ,"ECCurve_secp160r1._super@705308126" ,"ECCurve_secp160r1" ,"package:pointycastle\/ecc\/curves\/secp160k1.dart" ,"@704280080" ,"pointycastle.impl.ec_domain_parameters.secp160k1" ,"_make@704280080" ,"ECCurve_secp160k1." ,"ECCurve_secp160k1._super@704280080" ,"ECCurve_secp160k1" ,"package:pointycastle\/ecc\/curves\/secp128r2.dart" ,"@703417788" ,"pointycastle.impl.ec_domain_parameters.secp128r2" ,"_make@703417788" ,"ECCurve_secp128r2." ,"ECCurve_secp128r2._super@703417788" ,"ECCurve_secp128r2" ,"package:pointycastle\/ecc\/curves\/secp128r1.dart" ,"@702377861" ,"pointycastle.impl.ec_domain_parameters.secp128r1" ,"_make@702377861" ,"ECCurve_secp128r1." ,"ECCurve_secp128r1._super@702377861" ,"ECCurve_secp128r1" ,"package:pointycastle\/ecc\/curves\/secp112r2.dart" ,"@701397283" ,"pointycastle.impl.ec_domain_parameters.secp112r2" ,"_make@701397283" ,"ECCurve_secp112r2." ,"ECCurve_secp112r2._super@701397283" ,"ECCurve_secp112r2" ,"package:pointycastle\/ecc\/curves\/secp112r1.dart" ,"@700485455" ,"pointycastle.impl.ec_domain_parameters.secp112r1" ,"_make@700485455" ,"ECCurve_secp112r1." ,"ECCurve_secp112r1._super@700485455" ,"ECCurve_secp112r1" ,"package:pointycastle\/ecc\/curves\/prime256v1.dart" ,"@699383858" ,"pointycastle.impl.ec_domain_parameters.prime256v1" ,"_make@699383858" ,"ECCurve_prime256v1." ,"ECCurve_prime256v1._super@699383858" ,"ECCurve_prime256v1" ,"package:pointycastle\/ecc\/curves\/prime239v3.dart" ,"@698315396" ,"pointycastle.impl.ec_domain_parameters.prime239v3" ,"_make@698315396" ,"ECCurve_prime239v3." ,"ECCurve_prime239v3._super@698315396" ,"ECCurve_prime239v3" ,"package:pointycastle\/ecc\/curves\/prime239v2.dart" ,"@697456944" ,"pointycastle.impl.ec_domain_parameters.prime239v2" ,"_make@697456944" ,"ECCurve_prime239v2." ,"ECCurve_prime239v2._super@697456944" ,"ECCurve_prime239v2" ,"package:pointycastle\/ecc\/curves\/prime239v1.dart" ,"@696209703" ,"pointycastle.impl.ec_domain_parameters.prime239v1" ,"_make@696209703" ,"ECCurve_prime239v1." ,"ECCurve_prime239v1._super@696209703" ,"ECCurve_prime239v1" ,"package:pointycastle\/ecc\/curves\/prime192v3.dart" ,"@695166994" ,"pointycastle.impl.ec_domain_parameters.prime192v3" ,"_make@695166994" ,"ECCurve_prime192v3." ,"ECCurve_prime192v3._super@695166994" ,"ECCurve_prime192v3" ,"package:pointycastle\/ecc\/curves\/prime192v2.dart" ,"@694358284" ,"pointycastle.impl.ec_domain_parameters.prime192v2" ,"_make@694358284" ,"ECCurve_prime192v2." ,"ECCurve_prime192v2._super@694358284" ,"ECCurve_prime192v2" ,"package:pointycastle\/ecc\/curves\/prime192v1.dart" ,"@693050614" ,"pointycastle.impl.ec_domain_parameters.prime192v1" ,"_make@693050614" ,"ECCurve_prime192v1." ,"ECCurve_prime192v1._super@693050614" ,"ECCurve_prime192v1" ,"package:pointycastle\/ecc\/curves\/gostr3410_2001_cryptopro_xchb.dart" ,"@692510465" ,"pointycastle.impl.ec_domain_parameters.gostr3410_2001_cryptopro_xchb" ,"_make@692510465" ,"ECCurve_gostr3410_2001_cryptopro_xchb." ,"ECCurve_gostr3410_2001_cryptopro_xchb._super@692510465" ,"ECCurve_gostr3410_2001_cryptopro_xchb" ,"package:pointycastle\/ecc\/curves\/gostr3410_2001_cryptopro_xcha.dart" ,"@691493575" ,"pointycastle.impl.ec_domain_parameters.gostr3410_2001_cryptopro_xcha" ,"_make@691493575" ,"ECCurve_gostr3410_2001_cryptopro_xcha." ,"ECCurve_gostr3410_2001_cryptopro_xcha._super@691493575" ,"ECCurve_gostr3410_2001_cryptopro_xcha" ,"package:pointycastle\/ecc\/curves\/gostr3410_2001_cryptopro_c.dart" ,"@690029833" ,"pointycastle.impl.ec_domain_parameters.gostr3410_2001_cryptopro_c" ,"_make@690029833" ,"ECCurve_gostr3410_2001_cryptopro_c." ,"ECCurve_gostr3410_2001_cryptopro_c._super@690029833" ,"ECCurve_gostr3410_2001_cryptopro_c" ,"package:pointycastle\/ecc\/curves\/gostr3410_2001_cryptopro_b.dart" ,"@689271363" ,"pointycastle.impl.ec_domain_parameters.gostr3410_2001_cryptopro_b" ,"_make@689271363" ,"ECCurve_gostr3410_2001_cryptopro_b." ,"ECCurve_gostr3410_2001_cryptopro_b._super@689271363" ,"ECCurve_gostr3410_2001_cryptopro_b" ,"package:pointycastle\/ecc\/curves\/gostr3410_2001_cryptopro_a.dart" ,"@688201361" ,"pointycastle.impl.ec_domain_parameters.gostr3410_2001_cryptopro_a" ,"_make@688201361" ,"ECCurve_gostr3410_2001_cryptopro_a." ,"ECCurve_gostr3410_2001_cryptopro_a._super@688201361" ,"ECCurve_gostr3410_2001_cryptopro_a" ,"package:pointycastle\/ecc\/curves\/brainpoolp512t1.dart" ,"@687113648" ,"pointycastle.impl.ec_domain_parameters.brainpoolp512t1" ,"_make@687113648" ,"ECCurve_brainpoolp512t1." ,"ECCurve_brainpoolp512t1._super@687113648" ,"ECCurve_brainpoolp512t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp512r1.dart" ,"@686215992" ,"pointycastle.impl.ec_domain_parameters.brainpoolp512r1" ,"_make@686215992" ,"ECCurve_brainpoolp512r1." ,"ECCurve_brainpoolp512r1._super@686215992" ,"ECCurve_brainpoolp512r1" ,"package:pointycastle\/ecc\/curves\/brainpoolp384t1.dart" ,"@685104730" ,"pointycastle.impl.ec_domain_parameters.brainpoolp384t1" ,"_make@685104730" ,"ECCurve_brainpoolp384t1." ,"ECCurve_brainpoolp384t1._super@685104730" ,"ECCurve_brainpoolp384t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp384r1.dart" ,"@684278996" ,"pointycastle.impl.ec_domain_parameters.brainpoolp384r1" ,"_make@684278996" ,"ECCurve_brainpoolp384r1." ,"ECCurve_brainpoolp384r1._super@684278996" ,"ECCurve_brainpoolp384r1" ,"package:pointycastle\/ecc\/curves\/brainpoolp320t1.dart" ,"@683083086" ,"pointycastle.impl.ec_domain_parameters.brainpoolp320t1" ,"_make@683083086" ,"ECCurve_brainpoolp320t1." ,"ECCurve_brainpoolp320t1._super@683083086" ,"ECCurve_brainpoolp320t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp320r1.dart" ,"@682072419" ,"pointycastle.impl.ec_domain_parameters.brainpoolp320r1" ,"_make@682072419" ,"ECCurve_brainpoolp320r1." ,"ECCurve_brainpoolp320r1._super@682072419" ,"ECCurve_brainpoolp320r1" ,"package:pointycastle\/ecc\/curves\/brainpoolp256t1.dart" ,"@681262991" ,"pointycastle.impl.ec_domain_parameters.brainpoolp256t1" ,"_make@681262991" ,"ECCurve_brainpoolp256t1." ,"ECCurve_brainpoolp256t1._super@681262991" ,"ECCurve_brainpoolp256t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp256r1.dart" ,"@680275808" ,"pointycastle.impl.ec_domain_parameters.brainpoolp256r1" ,"_make@680275808" ,"ECCurve_brainpoolp256r1." ,"ECCurve_brainpoolp256r1._super@680275808" ,"ECCurve_brainpoolp256r1" ,"package:pointycastle\/ecc\/curves\/brainpoolp224t1.dart" ,"@679044209" ,"pointycastle.impl.ec_domain_parameters.brainpoolp224t1" ,"_make@679044209" ,"ECCurve_brainpoolp224t1." ,"ECCurve_brainpoolp224t1._super@679044209" ,"ECCurve_brainpoolp224t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp224r1.dart" ,"@678447697" ,"pointycastle.impl.ec_domain_parameters.brainpoolp224r1" ,"_make@678447697" ,"ECCurve_brainpoolp224r1." ,"ECCurve_brainpoolp224r1._super@678447697" ,"ECCurve_brainpoolp224r1" ,"package:pointycastle\/ecc\/curves\/brainpoolp192t1.dart" ,"@677366774" ,"pointycastle.impl.ec_domain_parameters.brainpoolp192t1" ,"_make@677366774" ,"ECCurve_brainpoolp192t1." ,"ECCurve_brainpoolp192t1._super@677366774" ,"ECCurve_brainpoolp192t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp192r1.dart" ,"@676452040" ,"pointycastle.impl.ec_domain_parameters.brainpoolp192r1" ,"_make@676452040" ,"ECCurve_brainpoolp192r1." ,"ECCurve_brainpoolp192r1._super@676452040" ,"ECCurve_brainpoolp192r1" ,"package:pointycastle\/ecc\/curves\/brainpoolp160t1.dart" ,"@675372507" ,"pointycastle.impl.ec_domain_parameters.brainpoolp160t1" ,"_make@675372507" ,"ECCurve_brainpoolp160t1." ,"ECCurve_brainpoolp160t1._super@675372507" ,"ECCurve_brainpoolp160t1" ,"package:pointycastle\/ecc\/curves\/brainpoolp160r1.dart" ,"@672296239" ,"pointycastle.impl.ec_domain_parameters.brainpoolp160r1" ,"_make@672296239" ,"ECCurve_brainpoolp160r1." ,"ECCurve_brainpoolp160r1._super@672296239" ,"ECCurve_brainpoolp160r1" ,"package:pointycastle\/digests\/whirlpool.dart" ,"@653465517" ,"package:pointycastle\/src\/impl\/base_digest.dart" ,"pointycastle.src.impl.base_digest" ,"BaseDigest" ,"@670497587" ,"pointycastle.impl.digest.whirlpool" ,"WhirlpoolDigest." ,"digestSize" ,"get:digestSize" ,"WhirlpoolDigest" ,"package:pointycastle\/digests\/tiger.dart" ,"@669436522" ,"pointycastle.impl.digest.tiger" ,"TigerDigest." ,"TigerDigest" ,"package:pointycastle\/digests\/sha512t.dart" ,"init:_NAME_REGEX@668210196" ,"_NAME_REGEX@668210196" ,"get:_NAME_REGEX@668210196" ,"@666182471" ,"package:pointycastle\/src\/impl\/long_sha2_family_digest.dart" ,"pointycastle.src.impl.digests.long_sha2_family_digest" ,"init:_K@666182471" ,"_K@666182471" ,"init:_MAX_BYTE_COUNT1@666182471" ,"_MAX_BYTE_COUNT1@666182471" ,"_Sum1@666182471" ,"_Sigma0@666182471" ,"_adjustByteCounts@666182471" ,"_processWord@666182471" ,"_Ch@666182471" ,"_Sigma1@666182471" ,"_processLength@666182471" ,"updateByte" ,"_wordBufferOffset@666182471" ,"set:_wordBufferOffset@666182471" ,"LongSHA2FamilyDigest." ,"_Sum0@666182471" ,"get:_K@666182471" ,"_Maj@666182471" ,"_processBlock@666182471" ,"get:_MAX_BYTE_COUNT1@666182471" ,"LongSHA2FamilyDigest" ,"@668210196" ,"pointycastle.impl.digest.sha512t" ,"init:_H_MASK@668210196" ,"_H_MASK@668210196" ,"_generateIVs@668210196" ,"SHA512tDigest." ,"get:_H_MASK@668210196" ,"SHA512tDigest" ,"package:pointycastle\/digests\/sha512.dart" ,"@667360518" ,"pointycastle.impl.digest.sha512" ,"SHA512Digest." ,"SHA512Digest" ,"package:pointycastle\/digests\/sha384.dart" ,"@665499753" ,"pointycastle.impl.digest.sha384" ,"SHA384Digest." ,"SHA384Digest" ,"package:pointycastle\/digests\/sha256.dart" ,"@656461525" ,"package:pointycastle\/src\/impl\/md4_family_digest.dart" ,"pointycastle.src.impl.digests.md4_family_digest" ,"_packState@656461525" ,"_processLength@656461525" ,"_processPadding@656461525" ,"_processWordIfBufferFull@656461525" ,"_doProcessBlock@656461525" ,"_processWord@656461525" ,"MD4FamilyDigest." ,"MD4FamilyDigest" ,"@663095769" ,"pointycastle.impl.digest.sha256" ,"resetState" ,"SHA256Digest." ,"SHA256Digest" ,"package:pointycastle\/digests\/sha224.dart" ,"@662509380" ,"pointycastle.impl.digest.sha224" ,"SHA224Digest." ,"SHA224Digest" ,"package:pointycastle\/digests\/sha3.dart" ,"init:_NAME_REGEX@664312058" ,"_NAME_REGEX@664312058" ,"get:_NAME_REGEX@664312058" ,"@664312058" ,"pointycastle.impl.digest.sha3" ,"_initSponge@664312058" ,"_init@664312058" ,"SHA3Digest." ,"SHA3Digest" ,"package:pointycastle\/digests\/sha1.dart" ,"@637252417" ,"pointycastle.impl.digest.sha1" ,"_g@637252417" ,"_h@637252417" ,"_f@637252417" ,"SHA1Digest." ,"SHA1Digest" ,"package:pointycastle\/digests\/ripemd320.dart" ,"@661310936" ,"pointycastle.impl.digest.ripemd320" ,"RIPEMD320Digest." ,"RIPEMD320Digest" ,"package:pointycastle\/digests\/ripemd256.dart" ,"@660257118" ,"pointycastle.impl.digest.ripemd256" ,"RIPEMD256Digest." ,"RIPEMD256Digest" ,"package:pointycastle\/digests\/ripemd160.dart" ,"@659370056" ,"pointycastle.impl.digest.ripemd160" ,"RIPEMD160Digest." ,"RIPEMD160Digest" ,"package:pointycastle\/digests\/ripemd128.dart" ,"@658086836" ,"pointycastle.impl.digest.ripemd128" ,"RIPEMD128Digest." ,"RIPEMD128Digest" ,"package:pointycastle\/digests\/md5.dart" ,"@657432850" ,"pointycastle.impl.digest.md5" ,"MD5Digest." ,"MD5Digest" ,"package:pointycastle\/digests\/md4.dart" ,"@655427456" ,"pointycastle.impl.digest.md4" ,"MD4Digest." ,"MD4Digest" ,"package:pointycastle\/digests\/md2.dart" ,"@654241706" ,"pointycastle.impl.digest.md2" ,"MD2Digest." ,"MD2Digest" ,"package:pointycastle\/digests\/blake2b.dart" ,"init:_blake2b_IV@652051828" ,"_blake2b_IV@652051828" ,"get:_blake2b_IV@652051828" ,"@652051828" ,"pointycastle.impl.digest.blake2b" ,"personalization" ,"salt" ,"Blake2bDigest." ,"Blake2bDigest" ,"package:pointycastle\/block\/modes\/sic.dart" ,"@629067213" ,"package:pointycastle\/adapters\/stream_cipher_as_block_cipher.dart" ,"pointycastle.impl.adapters.stream_cipher_as_block_cipher" ,"blockSize" ,"StreamCipherAsBlockCipher" ,"@650380011" ,"pointycastle.impl.block_cipher.modes.sic" ,"SICBlockCipher" ,"package:pointycastle\/block\/modes\/ofb.dart" ,"@649308593" ,"pointycastle.impl.block_cipher.modes.ofb" ,"OFBBlockCipher." ,"OFBBlockCipher" ,"package:pointycastle\/block\/modes\/gctr.dart" ,"@648283055" ,"pointycastle.impl.block_cipher.modes.gctr" ,"_intTobytes@648283055" ,"_bytesToint@648283055" ,"GCTRBlockCipher." ,"GCTRBlockCipher" ,"package:pointycastle\/block\/modes\/ecb.dart" ,"@647063339" ,"pointycastle.impl.block_cipher.modes.ecb" ,"ECBBlockCipher" ,"package:pointycastle\/block\/modes\/ctr.dart" ,"@645135169" ,"pointycastle.impl.block_cipher.modes.ctr" ,"CTRBlockCipher" ,"package:pointycastle\/block\/modes\/cfb.dart" ,"@644171941" ,"pointycastle.impl.block_cipher.modes.cfb" ,"_decryptBlock@644171941" ,"_encryptBlock@644171941" ,"CFBBlockCipher." ,"CFBBlockCipher" ,"package:pointycastle\/asymmetric\/rsa.dart" ,"@635126980" ,"package:pointycastle\/src\/impl\/base_asymmetric_block_cipher.dart" ,"pointycastle.src.impl.base_asymmetric_block_cipher" ,"BaseAsymmetricBlockCipher" ,"@639254022" ,"pointycastle.impl.asymmetric_block_cipher.rsa" ,"RSAEngine" ,"package:pointycastle\/asymmetric\/pkcs1.dart" ,"@638523613" ,"pointycastle.impl.asymmetric_block_cipher.pkcs1" ,"PKCS1Encoding" ,"package:pointycastle\/asymmetric\/oaep.dart" ,"@634423671" ,"pointycastle.impl.asymmetric_block_cipher.oeap" ,"OAEPEncoding." ,"OAEPEncoding" ,"registerFactories" ,"_initialize@632301108" ,"_checkInit@632301108" ,"_createConstructor@632301108" ,"getConstructor" ,"AsymmetricBlockCipher." ,"AsymmetricBlockCipher" ,"PaddingCipherParameters" ,"UnderlyingCipherParameters" ,"PaddedBlockCipherParameters" ,"RegistryFactoryException.invalid" ,"RegistryFactoryException" ,"Digest." ,"Digest" ,"StreamCipher" ,"UnderlyingParameters" ,"ParametersWithIV" ,"BlockCipher." ,"BlockCipher" ,"SecureRandom" ,"Signer" ,"Padding." ,"KeyDerivator" ,"PaddedBlockCipher." ,"PaddedBlockCipher" ,"KeyGenerator" ,"Mac." ,"Mac" ,"@630495788" ,"package:pointycastle\/api.dart" ,"pointycastle.api" ,"package:pointycastle\/src\/api\/key_parameter.dart" ,"KeyParameter" ,"_paddedParams@37180997" ,"_buildParams@37180997" ,"iv" ,"encrypted" ,"decrypt" ,"AES." ,"AES" ,"decryptBytes" ,"input" ,"encryptBytes" ,"Encrypter" ,"IV.fromLength" ,"IV" ,"@37180997" ,"package:encrypt\/encrypt.dart" ,"encrypt" ,"package:encrypt\/src\/algorithms\/aes.dart" ,"AESMode" ,"OFB-64" ,"AESMode.ofb64" ,"OFB-64\/GCTR" ,"AESMode.ofb64Gctr" ,"ECB" ,"AESMode.ecb" ,"CTR" ,"AESMode.ctr" ,"CFB-64" ,"AESMode.cfb64" ,"CBC" ,"AESMode.cbc" ,"dart:core-patch\/immutable_map.dart" ,"_ImmutableMap@0150898._create@0150898" ,"_ImmutableMap@0150898" ,"@518439825" ,"package:flutter\/src\/widgets\/animated_size.dart" ,"RenderAnimatedSizeState.stable" ,"RenderAnimatedSizeState.changed" ,"RenderAnimatedSizeState.unstable" ,"RenderAnimatedSizeState.start" ,"RenderAnimatedSizeState" ,"@402160358" ,"package:flutter\/src\/rendering\/animated_size.dart" ,"_layoutUnstable@402160358" ,"_layoutChanged@402160358" ,"_layoutStable@402160358" ,"_layoutStart@402160358" ,"_restartAnimation@402160358" ,"get:_animatedSize@402160358" ,"set:vsync" ,"set:curve" ,"set:reverseDuration" ,"set:duration" ,"RenderAnimatedSize." ,"RenderAnimatedSize" ,"AnimatedSize" ,"_spawn@487206865" ,"compute" ,"@487206865" ,"package:flutter\/src\/foundation\/_isolates_io.dart" ,"_IsolateConfiguration@487206865" ,"@410451017" ,"package:flutter\/src\/rendering\/error.dart" ,"init:backgroundColor" ,"init:minimumWidth" ,"minimumWidth" ,"init:padding" ,"RenderErrorBox." ,"get:backgroundColor" ,"RenderErrorBox" ,"_createTimerHandler@1026248" ,"_scheduleWakeup@1026248" ,"_shutdownTimerHandler@1026248" ,"_cancelWakeup@1026248" ,"init:_sentinelTimer@1026248" ,"_sentinelTimer@1026248" ,"get:_sentinelTimer@1026248" ,"_TimerHeap@1026248." ,"init:_heap@1026248" ,"_heap@1026248" ,"get:_heap@1026248" ,"_notifyEventHandler@1026248" ,"_notifyZeroHandler@1026248" ,"init:_lastZeroTimer@1026248" ,"_lastZeroTimer@1026248" ,"get:_lastZeroTimer@1026248" ,"_enqueue@1026248" ,"dyn:_enqueue@1026248" ,"_advanceWakeupTime@1026248" ,"dyn:_advanceWakeupTime@1026248" ,"_tick@1026248" ,"set:_tick@1026248" ,"dyn:set:_tick@1026248" ,"_wakeupTime@1026248" ,"set:_wakeupTime@1026248" ,"dyn:set:_wakeupTime@1026248" ,"_callback@1026248" ,"set:_callback@1026248" ,"dyn:set:_callback@1026248" ,"_indexOrNext@1026248" ,"set:_indexOrNext@1026248" ,"dyn:set:_indexOrNext@1026248" ,"init:_handlingCallbacks@1026248" ,"_handlingCallbacks@1026248" ,"init:_scheduledWakeupTime@1026248" ,"_scheduledWakeupTime@1026248" ,"_sendPort@1026248" ,"_receivePort@1026248" ,"init:_idCount@1026248" ,"_idCount@1026248" ,"_firstZeroTimer@1026248" ,"_nextId@1026248" ,"get:_callback@1026248" ,"_createTimer@1026248" ,"[email protected]" ,"_queueFromZeroEvent@1026248" ,"_queueFromTimeoutEvent@1026248" ,"_Timer@1026248." ,"_Timer@1026248._internal@1026248" ,"_runTimers@1026248" ,"_compareTo@1026248" ,"_factory@1026248" ,"_Timer@1026248" ,"_leftChildIndex@1026248" ,"_parentIndex@1026248" ,"_parent@1026248" ,"_bubbleUp@1026248" ,"_resize@1026248" ,"_TimerHeap@1026248" ,"_swap@1026248" ,"_bubbleDown@1026248" ,"_SyncBroadcastStreamController@4048458" ,"get:close" ,"[email protected]" ,"_ReceivePortImpl@1026248." ,"ReceivePort." ,"ReceivePort" ,"_ReceivePortImpl@1026248" ,"perform" ,"_DelayedData@4048458" ,"dart:convert-patch\/convert_patch.dart" ,"saveState" ,"restoreState" ,"dart:convert" ,"_defaultToEncodable@10003594" ,"_JsonListener@10003594" ,"endObject" ,"popContainer" ,"_BuildJsonListener@10003594." ,"propertyValue" ,"handleBool" ,"arrayElement" ,"handleNull" ,"endArray" ,"propertyName" ,"pushContainer" ,"beginArray" ,"beginObject" ,"handleString" ,"_BuildJsonListener@10003594" ,"handleNumber" ,"parseNum" ,"getString" ,"_initialCapacity@10003594" ,"_NumberBuffer@10003594." ,"_NumberBuffer@10003594" ,"ensureCapacity" ,"_parseJson@10003594" ,"_parseDouble@10003594" ,"parseDouble" ,"endString" ,"addCharToString" ,"addSliceToString" ,"beginString" ,"getChar" ,"_JsonStringParser@10003594." ,"_JsonStringParser@10003594" ,"copyCharsToList" ,"beginChunkNumber" ,"parseNumber" ,"parseStringEscape" ,"parseTrue" ,"addNumberChunk" ,"chunkString" ,"_ChunkedJsonParser@10003594." ,"parseStringToBuffer" ,"chunkStringEscapeU" ,"continueChunkNumber" ,"finishChunkNumber" ,"parseKeywordPrefix" ,"parseFalse" ,"parseString" ,"set:buffer" ,"parsePartial" ,"parsePartialString" ,"parsePartialKeyword" ,"parsePartialNumber" ,"parseNull" ,"_ChunkedJsonParser@10003594" ,"fail" ,"_Float64x2ListMixin@7027147" ,"TypedData_Float64x2Array_new" ,"__Float64x2ArrayView&_TypedListView&_Float64x2ListMixin@7027147" ,"__Float64x2List&_TypedList&_Float64x2ListMixin@7027147" ,"_Int32x4ListMixin@7027147" ,"TypedData_Int32x4Array_new" ,"__Int32x4ArrayView&_TypedListView&_Int32x4ListMixin@7027147" ,"__Int32x4List&_TypedList&_Int32x4ListMixin@7027147" ,"_Float32x4ListMixin@7027147" ,"TypedData_Float32x4Array_new" ,"__Float32x4ArrayView&_TypedListView&_Float32x4ListMixin@7027147" ,"__Float32x4List&_TypedList&_Float32x4ListMixin@7027147" ,"__Float32List&_TypedList&_DoubleListMixin@7027147" ,"nodeId" ,"toMap" ,"SemanticsEvent" ,"tap" ,"getDataMap" ,"TapSemanticEvent" ,"TooltipSemanticsEvent" ,"longPress" ,"LongPressSemanticsEvent" ,"@512521511" ,"package:flutter\/src\/semantics\/semantics_event.dart" ,"AnnounceSemanticsEvent" ,"_Float64x2ArrayView@7027147" ,"_Int32x4ArrayView@7027147" ,"_Float32x4ArrayView@7027147" ,"__Float64List&_TypedList&_DoubleListMixin&_TypedDoubleListMixin@7027147" ,"__Float32ArrayView&_TypedListView&_DoubleListMixin&_TypedDoubleListMixin@7027147" ,"_Float32ArrayView@7027147" ,"__Float32List&_TypedList&_DoubleListMixin&_TypedDoubleListMixin@7027147" ,"TypedData_Uint64Array_new" ,"__Uint64ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Uint64ArrayView@7027147" ,"__Uint64List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Int64List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Uint32ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Uint32ArrayView@7027147" ,"__Uint32List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Int32List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Uint16List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Uint16ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Uint16ArrayView@7027147" ,"_Uint16List@7027147" ,"TypedData_Int16Array_new" ,"__Int16List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Int16ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Int16ArrayView@7027147" ,"_Int16List@7027147" ,"TypedData_Uint8ClampedArray_new" ,"__Uint8ClampedArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin@7027147" ,"_Uint8ClampedArrayView@7027147" ,"__Uint8ClampedList&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Uint8List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"__Int8List&_TypedList&_IntListMixin&_TypedIntListMixin@7027147" ,"hash" ,"IterableEquality" ,"get:isValidKey" ,"get:hash" ,"get:equals" ,"DeepCollectionEquality" ,"MapEquality" ,"_UnorderedEquality@103183165" ,"SetEquality" ,"Equality" ,"DefaultEquality" ,"ListEquality" ,"@103183165" ,"package:collection\/src\/equality.dart" ,"_MapEntry@103183165" ,"List_getLength" ,"GrowableList_getLength" ,"init:_rotationTween@312243954" ,"_rotationTween@312243954" ,"init:_offsetTween@312243954" ,"_offsetTween@312243954" ,"init:_strokeTailTween@312243954" ,"_strokeTailTween@312243954" ,"init:_strokeHeadTween@312243954" ,"_strokeHeadTween@312243954" ,"_buildAnimation@312243954" ,"_buildSemanticsWrapper@312243954" ,"_CircularProgressIndicatorPainter@312243954." ,"_buildIndicator@312243954" ,"get:_rotationTween@312243954" ,"get:_offsetTween@312243954" ,"get:_strokeTailTween@312243954" ,"get:_strokeHeadTween@312243954" ,"_CircularProgressIndicatorState@312243954" ,"CircularProgressIndicator" ,"ProgressIndicator" ,"__CircularProgressIndicatorState&State&SingleTickerProviderStateMixin@312243954" ,"@312243954" ,"package:flutter\/src\/material\/progress_indicator.dart" ,"_CircularProgressIndicatorPainter@312243954" ,"dyn:containsKey" ,"LocaleDataException" ,"MessageLookup" ,"@614381073" ,"package:intl\/src\/intl_helpers.dart" ,"intl_helpers" ,"_throwException@614381073" ,"package:intl\/src\/intl\/date_format_helpers.dart" ,"package:intl\/src\/intl\/date_format_field.dart" ,"package:intl\/src\/intl\/date_format.dart" ,"ordinalDayFromMarchFirst" ,"_isLeapYear@33383093" ,"_dayOfYear@33383093" ,"init:_twoEscapedQuotes@33383093" ,"_twoEscapedQuotes@33383093" ,"_patchQuotes@33383093" ,"_DateFormatQuotedField@33383093." ,"get:_twoEscapedQuotes@33383093" ,"_DateFormatQuotedField@33383093" ,"_DateFormatField@33383093." ,"_DateFormatField@33383093" ,"get:en_USPatterns" ,"init:en_USPatterns" ,"en_USPatterns" ,"@610137389" ,"package:intl\/date_symbols.dart" ,"date_symbols" ,"DateSymbols" ,"init:en_USSymbols" ,"en_USSymbols" ,"get:en_USSymbols" ,"package:intl\/src\/date_format_internal.dart" ,"init:_dateTimeSymbols@613168376" ,"_dateTimeSymbols@613168376" ,"cachedDateSymbols" ,"init:dateTimePatterns" ,"dateTimePatterns" ,"get:dateTimePatterns" ,"lastDateSymbolLocale" ,"@613168376" ,"date_format_internal" ,"get:_dateTimeSymbols@613168376" ,"get:dateTimeSymbols" ,"get:dateSymbols" ,"formatEra" ,"init:_useNativeDigitsByDefault@33383093" ,"_useNativeDigitsByDefault@33383093" ,"get:_useNativeDigitsByDefault@33383093" ,"shouldUseNativeDigitsByDefaultFor" ,"get:useNativeDigits" ,"get:localeZero" ,"init:_asciiZeroCodeUnit@33383093" ,"_asciiZeroCodeUnit@33383093" ,"get:_asciiZeroCodeUnit@33383093" ,"get:usesNativeDigits" ,"get:usesAsciiDigits" ,"get:localeZeroCodeUnit" ,"_localizeDigits@33383093" ,"Double_truncate" ,"truncateToDouble" ,"truncate" ,"formatField" ,"formatStandaloneDay" ,"get:symbols" ,"format0To23Hours" ,"format24Hours" ,"formatDayOfWeek" ,"formatDayOfMonth" ,"format0To11Hours" ,"formatStandaloneMonth" ,"formatQuarter" ,"formatTimeZoneId" ,"formatDayOfYear" ,"formatFractionalSeconds" ,"formatAmPm" ,"formatSeconds" ,"format1To12Hours" ,"padTo" ,"formatTimeZoneRFC" ,"formatMinutes" ,"formatTimeZone" ,"_DateFormatPatternField@33383093." ,"formatMonth" ,"_DateFormatPatternField@33383093" ,"init:_matchers@33383093" ,"_matchers@33383093" ,"get:_matchers@33383093" ,"localeExists" ,"get:_fieldConstructors@33383093" ,"add_jms" ,"get:_availableSkeletons@33383093" ,"_parsePatternHelper@33383093" ,"_appendPattern@33383093" ,"addPattern" ,"_match@33383093" ,"parsePattern" ,"get:_formatFields@33383093" ,"_useDefaultPattern@33383093" ,"add_yMMMMd" ,"shortLocale" ,"onFailure" ,"newLocale" ,"verifiedLocale" ,"DateFormat." ,"DateFormat" ,"_DateFormatLiteralField@33383093." ,"_DateFormatLiteralField@33383093" ,"@33383093" ,"package:intl\/intl.dart" ,"intl" ,"en_US" ,"init:systemLocale" ,"systemLocale" ,"_defaultLocale@33383093" ,"_throwLocaleError@33383093" ,"Intl" ,"get:defaultLocale" ,"getCurrentLocale" ,"canonicalizedLocale" ,"_isFallback@614381073" ,"UninitializedLocaleData." ,"UninitializedLocaleData" ,"@619438866" ,"package:path\/src\/path_exception.dart" ,"PathException" ,"List_slice" ,"_sliceInternal@0150898" ,"_slice@0150898" ,"@525200818" ,"package:flutter\/src\/widgets\/annotated_region.dart" ,"AnnotatedRegion" ,"FixedLengthListMixin" ,"FixedLengthListBase" ,"@446100543" ,"package:flutter\/src\/scheduler\/priority.dart" ,"Priority" ,"_setIndexedFloat64x2@7027147" ,"_ExternalFloat64x2Array@7027147" ,"_getIndexedFloat64x2@7027147" ,"_setIndexedInt32x4@7027147" ,"_ExternalInt32x4Array@7027147" ,"_getIndexedInt32x4@7027147" ,"_setIndexedFloat32x4@7027147" ,"_ExternalFloat32x4Array@7027147" ,"_getIndexedFloat32x4@7027147" ,"_setIndexedFloat64@7027147" ,"_ExternalFloat64Array@7027147" ,"_getIndexedFloat64@7027147" ,"_setIndexedFloat32@7027147" ,"_ExternalFloat32Array@7027147" ,"_getIndexedFloat32@7027147" ,"@740045225" ,"package:shared_preferences_platform_interface\/shared_preferences_platform_interface.dart" ,"init:_instance@740045225" ,"_instance@740045225" ,"get:_instance@740045225" ,"SharedPreferencesStorePlatform" ,"@741370450" ,"package:shared_preferences_platform_interface\/method_channel_shared_preferences.dart" ,"getAll" ,"setValue" ,"MethodChannelSharedPreferencesStore" ,"_invokeBoolMethod@741370450" ,"RawMaterialButton" ,"_updateState@252412912" ,"get:_disabled@252412912" ,"get:_pressed@252412912" ,"_handleHighlightChanged@252412912" ,"get:_handleHighlightChanged@252412912" ,"_handleHoveredChanged@252412912" ,"get:_handleHoveredChanged@252412912" ,"_handleFocusedChanged@252412912" ,"_RawMaterialButtonState@252412912." ,"get:_focused@252412912" ,"get:_hovered@252412912" ,"get:_effectiveElevation@252412912" ,"get:_handleFocusedChanged@252412912" ,"_RawMaterialButtonState@252412912" ,"_InputPadding@252412912" ,"@252412912" ,"package:flutter\/src\/material\/button.dart" ,"set:minSize" ,"_RenderInputPadding@252412912." ,"_RenderInputPadding@252412912" ,"_SingleChildViewport@591426794" ,"_getDirection@591426794" ,"SingleChildScrollView" ,"@591426794" ,"package:flutter\/src\/widgets\/single_child_scroll_view.dart" ,"get:_maxScrollExtent@591426794" ,"_shouldClipAtPaintOffset@591426794" ,"_RenderSingleChildViewport@591426794." ,"get:_viewportExtent@591426794" ,"_hasScrolled@591426794" ,"get:_hasScrolled@591426794" ,"_paintOffsetForPosition@591426794" ,"get:_paintOffset@591426794" ,"_getInnerConstraints@591426794" ,"_RenderSingleChildViewport@591426794" ,"PerformanceOverlayOption" ,"@421266397" ,"package:flutter\/src\/rendering\/performance_overlay.dart" ,"get:_intrinsicHeight@421266397" ,"set:optionsMask" ,"RenderPerformanceOverlay." ,"RenderPerformanceOverlay" ,"WeakProperty_getValue" ,"_getValue@0150898" ,"_Float64x2List@7027147" ,"_Int32x4List@7027147" ,"_Float32x4List@7027147" ,"_Float64List@7027147" ,"_Float32List@7027147" ,"_getIndexedUint64@7027147" ,"_ExternalUint64Array@7027147" ,"_setIndexedUint64@7027147" ,"_Uint64List@7027147" ,"_getIndexedInt64@7027147" ,"_ExternalInt64Array@7027147" ,"_setIndexedInt64@7027147" ,"_Int64List@7027147" ,"_getIndexedUint32@7027147" ,"_ExternalUint32Array@7027147" ,"_setIndexedUint32@7027147" ,"_Uint32List@7027147" ,"_getIndexedInt32@7027147" ,"_ExternalInt32Array@7027147" ,"_setIndexedInt32@7027147" ,"_Int32List@7027147" ,"_getIndexedUint16@7027147" ,"_ExternalUint16Array@7027147" ,"_setIndexedUint16@7027147" ,"_getIndexedInt16@7027147" ,"_ExternalInt16Array@7027147" ,"_setIndexedInt16@7027147" ,"_ExternalUint8ClampedArray@7027147" ,"_Uint8ClampedList@7027147" ,"_ExternalUint8Array@7027147" ,"_Uint8List@7027147" ,"_ExternalInt8Array@7027147" ,"_Int8List@7027147" ,"__CupertinoTextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@186300207." ,"__CupertinoTextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin@186300207" ,"_CupertinoTextSelectionControls@186300207" ,"init:cupertinoTextSelectionControls" ,"cupertinoTextSelectionControls" ,"get:cupertinoTextSelectionControls" ,"_clipPath@186300207" ,"set:isArrowPointingDown" ,"set:arrowTipX" ,"set:barTopY" ,"_ToolbarRenderBox@186300207." ,"_ToolbarRenderBox@186300207" ,"_CupertinoTextSelectionToolbarItems@186300207" ,"CupertinoTextSelectionToolbar" ,"_CupertinoTextSelectionToolbarItemsSlot.nextButtonDisabled" ,"_CupertinoTextSelectionToolbarItemsSlot.backButton" ,"_CupertinoTextSelectionToolbarItemsSlot.nextButton" ,"_CupertinoTextSelectionToolbarItemsSlot@186300207" ,"_CupertinoTextSelectionToolbarContent@186300207" ,"_mountChild@186300207" ,"_updateChild@186300207" ,"set:nextButtonDisabled" ,"set:nextButton" ,"set:backButton" ,"_updateRenderObject@186300207" ,"_CupertinoTextSelectionToolbarItemsElement@186300207." ,"_CupertinoTextSelectionToolbarItemsElement@186300207" ,"_ToolbarParentData@186300207" ,"_TextSelectionHandlePainter@186300207" ,"_onChangedClipboardStatus@186300207" ,"get:_onChangedClipboardStatus@186300207" ,"_CupertinoTextSelectionToolbarWrapperState@186300207" ,"__CupertinoTextSelectionToolbarContentState&State&TickerProviderStateMixin@186300207" ,"_statusListener@186300207" ,"get:_statusListener@186300207" ,"_handlePreviousPage@186300207" ,"get:_handlePreviousPage@186300207" ,"_handleNextPage@186300207" ,"get:_handleNextPage@186300207" ,"_CupertinoTextSelectionToolbarContentState@186300207" ,"_CupertinoTextSelectionToolbarWrapper@186300207" ,"@186300207" ,"package:flutter\/src\/cupertino\/text_selection.dart" ,"set:page" ,"set:dividerWidth" ,"_CupertinoTextSelectionToolbarItemsRenderBox@186300207." ,"_CupertinoTextSelectionToolbarItemsRenderBox@186300207" ,"hitTestChild" ,"DualTransitionBuilder" ,"@46239604" ,"package:animations\/src\/dual_transition_builder.dart" ,"_animationListener@46239604" ,"get:_animationListener@46239604" ,"lastEffective" ,"_calculateEffectiveAnimationStatus@46239604" ,"_DualTransitionBuilderState@46239604." ,"_DualTransitionBuilderState@46239604" ,"_updateAnimations@46239604" ,"CupertinoButton" ,"__CupertinoButtonState&State&SingleTickerProviderStateMixin@163145554" ,"@163145554" ,"package:flutter\/src\/cupertino\/button.dart" ,"_handleTapCancel@163145554" ,"get:_handleTapCancel@163145554" ,"_handleTapUp@163145554" ,"get:_handleTapUp@163145554" ,"_handleTapDown@163145554" ,"get:_handleTapDown@163145554" ,"_animate@163145554" ,"_CupertinoButtonState@163145554." ,"_CupertinoButtonState@163145554" ,"_setTween@163145554" ,"init:defaultActions" ,"defaultActions" ,"init:_defaultMacOsShortcuts@526236006" ,"_defaultMacOsShortcuts@526236006" ,"init:_defaultShortcuts@526236006" ,"_defaultShortcuts@526236006" ,"init:showPerformanceOverlayOverride" ,"showPerformanceOverlayOverride" ,"get:defaultShortcuts" ,"debugShowWidgetInspector" ,"supportedLocales" ,"showSemanticsDebugger" ,"showPerformanceOverlay" ,"routes" ,"pageRouteBuilder" ,"onUnknownRoute" ,"onGenerateTitle" ,"onGenerateRoute" ,"onGenerateInitialRoutes" ,"navigatorObservers" ,"navigatorKey" ,"localizationsDelegates" ,"localeResolutionCallback" ,"localeListResolutionCallback" ,"inspectorSelectButtonBuilder" ,"initialRoute" ,"home" ,"debugShowCheckedModeBanner" ,"checkerboardRasterCacheImages" ,"checkerboardOffscreenLayers" ,"WidgetsApp." ,"get:defaultActions" ,"get:_defaultMacOsShortcuts@526236006" ,"get:_defaultShortcuts@526236006" ,"WidgetsApp" ,"__WidgetsAppState&State&WidgetsBindingObserver@526236006" ,"__MediaQueryFromWindowsState&State&WidgetsBindingObserver@526236006" ,"_MediaQueryFromWindow@526236006" ,"_MediaQueryFromWindowsState@526236006" ,"@526236006" ,"package:flutter\/src\/widgets\/app.dart" ,"_onUnknownRoute@526236006" ,"get:_onUnknownRoute@526236006" ,"_onGenerateRoute@526236006" ,"get:_onGenerateRoute@526236006" ,"get:_localizationsDelegates@526236006" ,"basicLocaleListResolution" ,"_resolveLocales@526236006" ,"_updateNavigator@526236006" ,"_WidgetsAppState@526236006" ,"_unsubscribe@536480208" ,"_StreamBuilderBaseState@536480208" ,"FutureBuilder" ,"afterDisconnected" ,"afterDone" ,"afterError" ,"afterData" ,"initial" ,"StreamBuilder" ,"StreamBuilderBase" ,"_subscribe@536480208" ,"_FutureBuilderState@536480208" ,"ConnectionState.waiting" ,"ConnectionState.none" ,"ConnectionState.active" ,"ConnectionState.done" ,"ConnectionState" ,"@536480208" ,"package:flutter\/src\/widgets\/async.dart" ,"AsyncSnapshot" ,"inState" ,"afterConnected" ,"_recede@583442496" ,"scrollEnd" ,"pull" ,"absorbImpact" ,"_handleScrollNotification@583442496" ,"get:_handleScrollNotification@583442496" ,"_GlowingOverscrollIndicatorState@583442496." ,"_GlowingOverscrollIndicatorState@583442496" ,"@551035049" ,"package:flutter\/src\/widgets\/draggable_scrollable_sheet.dart" ,"_DraggableScrollableNotification&Notification&ViewportNotificationMixin@551035049" ,"OverscrollIndicatorNotification" ,"__GlowingOverscrollIndicatorState&State&TickerProviderStateMixin@583442496" ,"GlowingOverscrollIndicator" ,"_GlowState.idle" ,"_GlowState.recede" ,"_GlowState.pull" ,"_GlowState.absorb" ,"_GlowState@583442496" ,"_paintSide@583442496" ,"_GlowingOverscrollIndicatorPainter@583442496" ,"@583442496" ,"package:flutter\/src\/widgets\/overscroll_indicator.dart" ,"init:_crossAxisHalfTime@583442496" ,"_crossAxisHalfTime@583442496" ,"_tickDisplacement@583442496" ,"get:_tickDisplacement@583442496" ,"_changePhase@583442496" ,"get:_changePhase@583442496" ,"_GlowController@583442496." ,"get:_crossAxisHalfTime@583442496" ,"_GlowController@583442496" ,"set:axis" ,"HomeScreen" ,"@30110098" ,"package:Dayflect\/screens\/home_screen.dart" ,"selectDate" ,"get:selectDate" ,"buildTitleText" ,"AlertDialog" ,"@269506021" ,"package:flutter\/src\/material\/dialog.dart" ,"Dialog" ,"buildCalendarDialog" ,"keyboardDismissBehavior" ,"itemExtent" ,"shrinkWrap" ,"ShrinkWrappingViewport" ,"_updateCenter@581166613" ,"_ViewportElement@581166613." ,"_ViewportElement@581166613" ,"@581166613" ,"package:flutter\/src\/widgets\/viewport.dart" ,"getDefaultCrossAxisDirection" ,"Viewport" ,"buildViewport" ,"ScrollView" ,"buildChildLayout" ,"GridView.builder" ,"GridView" ,"buildSlivers" ,"BoxScrollView" ,"ScrollViewKeyboardDismissBehavior.manual" ,"ScrollViewKeyboardDismissBehavior" ,"@522108986" ,"package:flutter\/src\/widgets\/scroll_view.dart" ,"ListView" ,"ListView.builder" ,"buildMemoryListView" ,"_ControllerStream@4048458" ,"_BroadcastStream@4048458" ,"includeMetadataChanges" ,"@80103126" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/query_snapshot.dart" ,"init:_token@80103126" ,"_token@80103126" ,"verifyExtends" ,"QuerySnapshotPlatform." ,"documents" ,"@71237419" ,"package:cloud_firestore_platform_interface\/src\/document_snapshot.dart" ,"DocumentSnapshotPlatform" ,"get:documents" ,"get:_token@80103126" ,"QuerySnapshotPlatform" ,"@67005525" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/query.dart" ,"init:_token@67005525" ,"_token@67005525" ,"QueryPlatform." ,"get:_token@67005525" ,"QueryPlatform" ,"@84048382" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_query.dart" ,"isCollectionGroup" ,"pathComponents" ,"firestore" ,"MethodChannelQuery." ,"MethodChannelQuery" ,"snapshots" ,"package:cloud_firestore\/src\/utils\/codec_utility.dart" ,"package:cloud_firestore\/src\/query.dart" ,"package:cloud_firestore\/src\/firestore.dart" ,"package:cloud_firestore\/src\/document_snapshot.dart" ,"package:cloud_firestore\/src\/document_reference.dart" ,"package:cloud_firestore\/src\/collection_reference.dart" ,"document" ,"CollectionReference" ,"collection" ,"@95517916" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/utils\/firestore_message_codec.dart" ,"FirestoreMessageCodec" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_firestore.dart" ,"init:channel" ,"channel" ,"@64158059" ,"init:_transactionHandlers@64158059" ,"@68420969" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/transaction.dart" ,"init:_token@68420969" ,"_token@68420969" ,"TransactionPlatform." ,"get:_token@68420969" ,"TransactionPlatform" ,"_transactionHandlers@64158059" ,"init:documentObservers" ,"documentObservers" ,"init:queryObservers" ,"queryObservers" ,"init:_initialized@64158059" ,"_initialized@64158059" ,"@85042827" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_document_reference.dart" ,"@66471929" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/document_reference.dart" ,"init:_token@66471929" ,"_token@66471929" ,"DocumentReferencePlatform." ,"get:_token@66471929" ,"DocumentReferencePlatform" ,"delete" ,"updateData" ,"MethodChannelDocumentReference." ,"MethodChannelDocumentReference" ,"@83495477" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_collection_reference.dart" ,"Random_nextState" ,"dart:math\/random.dart" ,"Random_setupSeed" ,"_setupSeed@12383281" ,"Random_initialSeed" ,"_initialSeed@12383281" ,"init:_prng@12383281" ,"_prng@12383281" ,"get:_prng@12383281" ,"_nextSeed@12383281" ,"Random." ,"Random" ,"_state@12383281" ,"get:_state@12383281" ,"_Random@12383281" ,"_nextState@12383281" ,"nextInt" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/utils\/auto_id_generator.dart" ,"init:_random@86201389" ,"_random@86201389" ,"@86201389" ,"AutoIdGenerator" ,"get:_random@86201389" ,"autoId" ,"MethodChannelCollectionReference." ,"MethodChannelCollectionReference" ,"@65316370" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/collection_reference.dart" ,"CollectionReferencePlatform" ,"withApp" ,"get:_transactionHandlers@64158059" ,"get:documentObservers" ,"get:queryObservers" ,"MethodChannelFirestore" ,"get:channel" ,"package:cloud_firestore_platform_interface\/cloud_firestore_platform_interface.dart" ,"init:_token@61444837" ,"_token@61444837" ,"@61444837" ,"cloud_firestore_platform_interface" ,"_instance@61444837" ,"FirestorePlatform.instanceFor" ,"FirestorePlatform" ,"get:_token@61444837" ,"FirestorePlatform." ,"package:firebase_core\/src\/default_app_name_io.dart" ,"init:firebaseDefaultAppName" ,"firebaseDefaultAppName" ,"@145107428" ,"get:firebaseDefaultAppName" ,"package:firebase_core\/src\/firebase_app.dart" ,"init:defaultAppName" ,"defaultAppName" ,"get:defaultAppName" ,"@144316298" ,"FirebaseApp" ,"app" ,"MethodChannelFirestore." ,"get:_delegate@32385638" ,"Firestore." ,"Firestore" ,"replaceValueWithDelegatesInMap" ,"DocumentReference._@32385638" ,"DocumentReference" ,"valueDecode" ,"valueEncode" ,"replaceDelegatesWithValueInArray" ,"replaceDelegatesWithValueInMap" ,"replaceValueWithDelegatesInArray" ,"_CodecUtility@32385638" ,"get:exists" ,"get:data" ,"DocumentSnapshot" ,"@32385638" ,"package:cloud_firestore\/cloud_firestore.dart" ,"cloud_firestore" ,"package:cloud_firestore\/src\/query_snapshot.dart" ,"QuerySnapshot._@32385638" ,"QuerySnapshot" ,"Query" ,"package:firebase_auth\/src\/user_metadata.dart" ,"package:firebase_auth\/src\/firebase_user.dart" ,"package:firebase_auth\/src\/firebase_auth.dart" ,"package:firebase_auth\/src\/auth_result.dart" ,"package:firebase_auth\/src\/auth_provider\/google_auth_provider.dart" ,"getCredential" ,"GoogleAuthProvider" ,"FirebaseUser._@19464419" ,"FirebaseUser" ,"AuthResult._@19464419" ,"AuthResult" ,"currentUser" ,"FirebaseAuth" ,"@19464419" ,"package:firebase_auth\/firebase_auth.dart" ,"firebase_auth" ,"package:firebase_auth\/src\/user_info.dart" ,"UserInfo" ,"get:uid" ,"@34040058" ,"package:Dayflect\/utils\/firestore_provider.dart" ,"deleteMemory" ,"updateMemory" ,"addMemory" ,"signInUser" ,"FirestoreProvider." ,"FirestoreProvider" ,"getMemories" ,"buildMemories" ,"MaterialIcons" ,"@567226237" ,"package:flutter\/src\/widgets\/icon_data.dart" ,"IconData" ,"@566001244" ,"package:flutter\/src\/widgets\/icon.dart" ,"Icon" ,"selectedNextDay" ,"iconColor" ,"buildSkipButton" ,"buildTappableDateContainer" ,"buildDateRow" ,"buildMenuButton" ,"buildExtendedAppBar" ,"GoogleSignInAuthentication" ,"@604223697" ,"package:google_sign_in\/src\/common.dart" ,"GoogleIdentity" ,"get:authentication" ,"GoogleSignInAccount" ,"@20494901" ,"package:google_sign_in\/google_sign_in.dart" ,"@607328371" ,"package:google_sign_in_platform_interface\/src\/method_channel_google_sign_in.dart" ,"SignInOption.standard" ,"SignInOption" ,"GoogleSignInTokenData" ,"@608259816" ,"package:google_sign_in_platform_interface\/src\/types.dart" ,"GoogleSignInUserData" ,"signIn" ,"get:signIn" ,"shouldRecoverAuth" ,"email" ,"getTokens" ,"clientId" ,"signInOption" ,"scopes" ,"hostedDomain" ,"MethodChannelGoogleSignIn" ,"package:google_sign_in_platform_interface\/google_sign_in_platform_interface.dart" ,"init:_instance@603043202" ,"_instance@603043202" ,"@603043202" ,"GoogleSignInPlatform" ,"get:_instance@603043202" ,"canSkipCall" ,"_addMethodCall@20494901" ,"_waitFor@20494901" ,"_ensureInitialized@20494901" ,"_setCurrentUser@20494901" ,"_callMethod@20494901" ,"GoogleSignIn." ,"GoogleSignIn" ,"@18235017" ,"package:Dayflect\/auth\/auth_provider.dart" ,"AuthProvider" ,"AuthProvider." ,"@36151656" ,"package:Dayflect\/utils\/encrypt.dart" ,"decryptData" ,"encryptData" ,"generateAndSaveEncryptionKey" ,"Encrypt." ,"Encrypt" ,"_HomeScreenState@30110098." ,"_HomeScreenState@30110098" ,"SignInScreen" ,"SignInState.notSignedIn" ,"SignInState.signingIn" ,"SignInState.loading" ,"SignInState" ,"@26392946" ,"package:Dayflect\/screens\/sign_in_screen.dart" ,"buildSubtitleText" ,"buildSignInButton" ,"buildSignInContainer" ,"buildSigningInContainer" ,"_SignInScreenState@26392946" ,"checkUserSignedIn" ,"MemoryContainer" ,"__MemoryContainerState&State&SingleTickerProviderStateMixin@35208829" ,"@35208829" ,"package:Dayflect\/widgets\/memory_container.dart" ,"buildSaveButton" ,"buildCancelButton" ,"buildAddMemoryButton" ,"buildDecryptedText" ,"buildTextField" ,"buildMemoryContainer" ,"buildMoreButton" ,"buildYearText" ,"buildYearsAgoText" ,"buildYearRow" ,"buildEditOptions" ,"buildBody" ,"_MemoryContainerState@35208829" ,"@549091131" ,"package:flutter\/src\/widgets\/disposable_build_context.dart" ,"get:context" ,"DisposableBuildContext" ,"_StringMatch@0150898" ,"verticalOffset" ,"preferBelow" ,"@371518740" ,"package:flutter\/src\/painting\/geometry.dart" ,"positionDependentBox" ,"@253102673" ,"package:flutter\/src\/material\/button_bar.dart" ,"_RenderButtonBarRow@253102673" ,"@363179376" ,"package:flutter\/src\/painting\/colors.dart" ,"ColorSwatch" ,"@429092230" ,"package:flutter\/src\/rendering\/sliver_fixed_extent_list.dart" ,"_calculateTrailingGarbage@429092230" ,"_calculateLeadingGarbage@429092230" ,"indexToLayoutOffset" ,"RenderSliverFixedExtentBoxAdaptor." ,"RenderSliverFixedExtentBoxAdaptor" ,"@428298556" ,"package:flutter\/src\/rendering\/sliver_fill.dart" ,"RenderSliverFillViewport." ,"RenderSliverFillViewport" ,"get:itemExtent" ,"_SliverFractionalPadding@580138684" ,"_SliverFillViewportRenderObjectWidget@580138684" ,"SliverFillViewport" ,"@580138684" ,"package:flutter\/src\/widgets\/sliver_fill.dart" ,"_markNeedsResolution@580138684" ,"_RenderSliverFractionalPadding@580138684." ,"_RenderSliverFractionalPadding@580138684" ,"_resolve@580138684" ,"WhereIterator" ,"SkipWhileIterable" ,"List_getIndexed" ,"GrowableList_getIndexed" ,"EmptyIterable" ,"_HashSetIterator@3220832" ,"_SplayTreeValueIterable@3220832" ,"EfficientLengthSkipIterable." ,"SkipIterable." ,"SkipIterable._@11040228" ,"SkipIterable" ,"EfficientLengthSkipIterable._@11040228" ,"EfficientLengthSkipIterable" ,"_ImmutableMapKeyIterator@0150898" ,"_ImmutableMapKeyIterable@0150898" ,"_ImmutableMapValueIterator@0150898" ,"_ImmutableMapValueIterable@0150898" ,"_HashMapIterator@3220832" ,"_HashMapKeyIterator@3220832" ,"_HashMapIterable@3220832" ,"_HashMapKeyIterable@3220832" ,"_HashMapValueIterator@3220832" ,"_HashMapValueIterable@3220832" ,"_ListQueueIterator@3220832" ,"_rebuildWorkList@3220832" ,"_SplayTreeIterator@3220832" ,"_findLeftMostDescendent@3220832" ,"_SplayTreeIterator@3220832." ,"_SplayTreeKeyIterator@3220832." ,"_SplayTreeKeyIterator@3220832" ,"_SplayTreeKeyIterable@3220832" ,"_SplayTreeValueIterator@3220832." ,"_SplayTreeValueIterator@3220832" ,"_StringAllMatchesIterator@0150898" ,"_StringAllMatchesIterable@0150898" ,"_checkSum@3220832" ,"_CompactIterator@3220832" ,"_CompactIterator@3220832." ,"_LinkedListIterator@3220832" ,"CastIterator" ,"EfficientLengthMappedIterable" ,"MappedIterable." ,"MappedIterable" ,"ExpandIterator" ,"SkipIterator" ,"SkipWhileIterator" ,"_check@76324729" ,"@76324729" ,"package:cloud_firestore_platform_interface\/src\/timestamp.dart" ,"_validateRange@76324729" ,"Timestamp." ,"Timestamp" ,"_validateArgList@617448123" ,"_parseUri@617448123" ,"@623451078" ,"package:path\/src\/internal_style.dart" ,"pathsEqual" ,"relativePathToUri" ,"@626084555" ,"package:path\/src\/style\/url.dart" ,"absolutePathToUri" ,"pathFromUri" ,"withDrive" ,"rootLength" ,"needsSeparator" ,"isSeparator" ,"containsSeparator" ,"UrlStyle." ,"separator" ,"get:separator" ,"UrlStyle" ,"isRootRelative" ,"@627334854" ,"package:path\/src\/style\/windows.dart" ,"WindowsStyle." ,"WindowsStyle" ,"getRoot" ,"InternalStyle" ,"@625389178" ,"package:path\/src\/style\/posix.dart" ,"PosixStyle" ,"PosixStyle." ,"package:path\/src\/style.dart" ,"init:posix" ,"posix" ,"get:posix" ,"init:windows" ,"get:windows" ,"init:url" ,"url" ,"get:url" ,"_getPlatformStyle@618105565" ,"init:platform" ,"@618105565" ,"Style" ,"get:platform" ,"Context._internal@617448123" ,"createInternal" ,"@617448123" ,"package:path\/src\/context.dart" ,"@624432923" ,"package:path\/src\/parsed_path.dart" ,"canonicalize" ,"removeTrailingSeparators" ,"get:hasTrailingSeparator" ,"ParsedPath" ,"ParsedPath.parse" ,"_parse@617448123" ,"joinAll" ,"prettyUri" ,"isRelative" ,"_needsNormalization@617448123" ,"relative" ,"fromUri" ,"isAbsolute" ,"toUri" ,"absolute" ,"_current@616232984" ,"_currentUriBase@616232984" ,"init:context" ,"@616232984" ,"package:path\/path.dart" ,"Context." ,"Float64x2_sub" ,"Int32x4_sub" ,"Float32x4_sub" ,"_getKeyOrData@3220832" ,"Float64x2_add" ,"Int32x4_add" ,"Float32x4_add" ,"_IterablePendingEvents@4048458." ,"_IterablePendingEvents@4048458" ,"paintContents" ,"doPaint" ,"BoxFit.fitHeight" ,"BoxFit.contain" ,"BoxFit.cover" ,"BoxFit.fitWidth" ,"BoxFit.scaleDown" ,"BoxFit.none" ,"BoxFit.fill" ,"BoxFit" ,"@359480040" ,"package:flutter\/src\/painting\/box_fit.dart" ,"FittedSizes" ,"applyBoxFit" ,"ImageRepeat.noRepeat" ,"ImageRepeat" ,"@367297748" ,"package:flutter\/src\/painting\/decoration_image.dart" ,"paintImage" ,"_TypedListIterator@7027147" ,"@361008294" ,"package:flutter\/src\/painting\/circle_border.dart" ,"CircleBorder" ,"_adjustBorderRadius@386467860" ,"_StadiumToRoundedRectangleBorder@386467860" ,"_adjustRect@386467860" ,"_StadiumToCircleBorder@386467860" ,"@386467860" ,"package:flutter\/src\/painting\/stadium_border.dart" ,"StadiumBorder" ,"_joinWithSeparator@0150898" ,"@530038718" ,"package:flutter\/src\/widgets\/performance_overlay.dart" ,"PerformanceOverlay" ,"_UnmodifiableSet@3220832" ,"_SplayTreeNodeIterator@3220832." ,"_SplayTreeNodeIterator@3220832" ,"_simulation@558443839" ,"_overscrollSimulation@558443839" ,"_underscrollSimulation@558443839" ,"@393071952" ,"package:flutter\/src\/physics\/friction_simulation.dart" ,"FrictionSimulation." ,"FrictionSimulation" ,"get:finalX" ,"timeAtX" ,"BouncingScrollSimulation." ,"BouncingScrollSimulation" ,"@558443839" ,"package:flutter\/src\/widgets\/scroll_simulation.dart" ,"init:_kDecelerationRate@558443839" ,"_kDecelerationRate@558443839" ,"_flingDuration@558443839" ,"friction" ,"ClampingScrollSimulation." ,"get:_kDecelerationRate@558443839" ,"ClampingScrollSimulation" ,"@72414746" ,"package:cloud_firestore_platform_interface\/src\/field_path.dart" ,"FieldPath" ,"_onTimeout@229391311" ,"get:_onTimeout@229391311" ,"_CountdownZoned@229391311." ,"_CountdownZoned@229391311" ,"@229391311" ,"package:flutter\/src\/gestures\/multitap.dart" ,"hasElapsedMinTime" ,"isWithinGlobalTolerance" ,"_TapTracker@229391311." ,"_TapTracker@229391311" ,"_reject@229391311" ,"_registerSecondTap@229391311" ,"_handleEvent@229391311" ,"_registerFirstTap@229391311" ,"_freezeTracker@229391311" ,"_checkUp@229391311" ,"_trackFirstTap@229391311" ,"get:_handleEvent@229391311" ,"DoubleTapGestureRecognizer." ,"_reset@229391311" ,"get:_reset@229391311" ,"_startDoubleTapTimer@229391311" ,"_stopDoubleTapTimer@229391311" ,"DoubleTapGestureRecognizer" ,"get:_reject@229391311" ,"_clearTrackers@229391311" ,"Double_modulo" ,"_modulo@0150898" ,"makeErrorHandler" ,"_AddStreamState@4048458." ,"_AddStreamState@4048458" ,"get:_sendDone@4048458" ,"_schedule@4048458" ,"_DoneStreamSubscription@4048458." ,"_DoneStreamSubscription@4048458" ,"dart:ffi-patch\/ffi_patch.dart" ,"dart:ffi\/native_type.dart" ,"Pointer.fromAddress" ,"Ffi_fromAddress" ,"_fromAddress@8050071" ,"WeakProperty_setValue" ,"_setValue@0150898" ,"_Location@535171358" ,"_getCreationLocation@535171358" ,"_isLocalCreationLocation@535171358" ,"_ElementLocationStatsTracker@535171358." ,"InspectorSelection." ,"InspectorSelection" ,"_WidgetInspectorService@535171358." ,"init:_instance@535171358" ,"_instance@535171358" ,"get:_instance@535171358" ,"WidgetInspectorService" ,"_WidgetInspectorService@535171358" ,"isWidgetCreationTracked" ,"processElement" ,"_describeRelevantUserCode@535171358" ,"_parseDiagnosticsNode@535171358" ,"transformDebugCreator" ,"_LocationCount@535171358" ,"_InspectorReferenceData@535171358" ,"@535171358" ,"package:flutter\/src\/widgets\/widget_inspector.dart" ,"_ElementLocationStatsTracker@535171358" ,"package:Dayflect\/main.dart" ,"MyApp" ,"@568033112" ,"package:flutter\/src\/widgets\/icon_theme.dart" ,"_getInheritedIconThemeData@568033112" ,"IconTheme" ,"BackButton" ,"@243114528" ,"package:flutter\/src\/material\/back_button.dart" ,"BackButtonIcon" ,"_getIconData@243114528" ,"@271283978" ,"package:flutter\/src\/material\/divider.dart" ,"Divider" ,"createBorderSide" ,"_DefaultHeroTag@282192485" ,"@282192485" ,"package:flutter\/src\/material\/floating_action_button.dart" ,"FloatingActionButton" ,"@589234669" ,"package:flutter\/src\/widgets\/safe_area.dart" ,"SafeArea" ,"@578080686" ,"package:flutter\/src\/widgets\/primary_scroll_controller.dart" ,"PrimaryScrollController" ,"@596250364" ,"package:flutter\/src\/widgets\/spacer.dart" ,"Spacer" ,"@534387583" ,"package:flutter\/src\/widgets\/title.dart" ,"Title" ,"@38161078" ,"package:Dayflect\/widgets\/warning_dialog.dart" ,"WarningDialog" ,"buildDeleteButton" ,"buildKeepButton" ,"buildBodyText" ,"_WarningDialogState@38161078" ,"_WarningDialogState@38161078." ,"_CupertinoLocalizationsDelegate@172010061" ,"DefaultCupertinoLocalizations" ,"@172010061" ,"package:flutter\/src\/cupertino\/localizations.dart" ,"CupertinoLocalizations" ,"@492097796" ,"package:flutter\/src\/material\/elevation_overlay.dart" ,"ElevationOverlay" ,"applyOverlay" ,"Float64x2_mul" ,"Float32x4_mul" ,"_AutofillGroupState&State&AutofillScopeMixin@537212999" ,"_AutofillScope@537212999" ,"@537212999" ,"package:flutter\/src\/widgets\/autofill.dart" ,"AutofillGroupState" ,"AutofillGroup" ,"@199222532" ,"package:flutter\/src\/foundation\/debug.dart" ,"debugFormatDouble" ,"WeakProperty_getKey" ,"_getKey@0150898" ,"_onData@11040228" ,"get:_onData@11040228" ,"CastStreamSubscription." ,"CastStreamSubscription" ,"dart:core-patch\/null_patch.dart" ,"Double_hashCode" ,"init:_hashCodeRnd@0150898" ,"_hashCodeRnd@0150898" ,"get:_hashCodeRnd@0150898" ,"_objectHashCode@0150898" ,"Object_runtimeType" ,"findSide" ,"dart:_internal-patch\/symbol_patch.dart" ,"Intl.locale" ,"dart:_internal\/symbol.dart" ,"computeUnmangledName" ,"getName" ,"@70330810" ,"package:cloud_firestore_platform_interface\/src\/blob.dart" ,"Blob" ,"@73271743" ,"package:cloud_firestore_platform_interface\/src\/geo_point.dart" ,"GeoPoint" ,"package:quiver\/src\/core\/hash.dart" ,"_combine@149084891" ,"hash3" ,"@149084891" ,"package:quiver\/core.dart" ,"quiver.core" ,"_finish@149084891" ,"hashObjects" ,"_combine@751285449" ,"@751285449" ,"package:vector_math\/hash.dart" ,"_finish@751285449" ,"Ffi_dl_getHandle" ,"dart:ffi-patch\/ffi_dynamic_library_patch.dart" ,"dart:ffi\/dynamic_library.dart" ,"getHandle" ,"CapabilityImpl_get_hashcode" ,"CapabilityImpl_equals" ,"_equals@1026248" ,"_CapabilityImpl@1026248" ,"Closure_computeHash" ,"_computeHash@0150898" ,"Type_getHashCode" ,"AbstractType_toString" ,"_AbstractType@0150898" ,"dart:core-patch\/type_patch.dart" ,"Type_equality" ,"_Type@0150898" ,"CastError" ,"TypeError" ,"TypeError_throwNew" ,"_TypeError@0150898._create@0150898" ,"_TypeError@0150898" ,"_CastError@0150898._create@0150898" ,"_CastError@0150898" ,"_CompileTimeError@0150898" ,"NullThrownError." ,"FallThroughError._create@0150898" ,"AbstractClassInstantiationError._create@0150898" ,"dart:core-patch\/invocation_mirror_patch.dart" ,"dart:core\/invocation.dart" ,"Invocation" ,"_allocateInvocationMirrorForClosure@0150898" ,"_allocateInvocationMirror@0150898" ,"get:isAccessor" ,"get:namedArguments" ,"get:positionalArguments" ,"InvocationMirror_unpackTypeArguments" ,"_unpackTypeArguments@0150898" ,"get:typeArguments" ,"get:_typeArgsLen@0150898" ,"get:memberName" ,"_setMemberNameAndType@0150898" ,"_InvocationMirror@0150898._withType@0150898" ,"_InvocationMirror@0150898" ,"get:isGetter" ,"NoSuchMethodError_existingMethodSignature" ,"_existingMethodSignature@0150898" ,"_NamedArgumentsMap@0150898" ,"NoSuchMethodError._withType@0150898" ,"_symbolToString@0150898" ,"_toStringPlain@0150898" ,"ImmutableList_from" ,"_ImmutableList@0150898._from@0150898" ,"CyclicInitializationError." ,"JsonUnsupportedObjectError" ,"JsonCyclicError" ,"_InternalError@0150898." ,"_InternalError@0150898" ,"sixDigits" ,"twoDigits" ,"OutOfMemoryError." ,"StackOverflowError." ,"IntegerDivisionByZeroException." ,"_StringStackTrace@0150898" ,"init:_initialDot@743140773" ,"_initialDot@743140773" ,"init:_asyncBody@743140773" ,"_asyncBody@743140773" ,"init:_friendlyFrame@743140773" ,"_friendlyFrame@743140773" ,"init:_firefoxSafariFrame@743140773" ,"_firefoxSafariFrame@743140773" ,"init:_v8EvalLocation@743140773" ,"_v8EvalLocation@743140773" ,"init:_v8UrlLocation@743140773" ,"_v8UrlLocation@743140773" ,"init:_v8Frame@743140773" ,"_v8Frame@743140773" ,"init:_vmFrame@743140773" ,"_vmFrame@743140773" ,"get:_initialDot@743140773" ,"get:_asyncBody@743140773" ,"get:_friendlyFrame@743140773" ,"get:_firefoxSafariFrame@743140773" ,"get:_v8EvalLocation@743140773" ,"get:_v8UrlLocation@743140773" ,"get:_v8Frame@743140773" ,"get:_vmFrame@743140773" ,"@743140773" ,"package:stack_trace\/src\/frame.dart" ,"init:_windowsRegExp@743140773" ,"_windowsRegExp@743140773" ,"init:_uriRegExp@743140773" ,"_uriRegExp@743140773" ,"@748030304" ,"package:stack_trace\/src\/unparsed_frame.dart" ,"member" ,"get:member" ,"location" ,"get:location" ,"isCore" ,"get:isCore" ,"column" ,"get:column" ,"line" ,"get:line" ,"uri" ,"UnparsedFrame" ,"UnparsedFrame." ,"Frame.parseFriendly" ,"Frame.parseFirefox" ,"Frame.parseV8" ,"_catchFormatException@743140773" ,"Frame.parseVM" ,"get:_uriRegExp@743140773" ,"get:_windowsRegExp@743140773" ,"_uriOrPathToUri@743140773" ,"Frame" ,"@29505384" ,"package:Dayflect\/models\/memory.dart" ,"Memory.fromMap" ,"Memory" ,"DocumentChangeType.added" ,"DocumentChangeType.modified" ,"DocumentChangeType.removed" ,"init:_token@77262002" ,"_token@77262002" ,"DocumentChangePlatform." ,"get:_token@77262002" ,"DocumentChangePlatform" ,"@77262002" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/document_change.dart" ,"DocumentChangeType" ,"Source.serverAndCache" ,"@75159240" ,"package:cloud_firestore_platform_interface\/src\/source.dart" ,"Source" ,"@171320671" ,"package:flutter\/src\/cupertino\/interface_level.dart" ,"CupertinoUserInterfaceLevelData" ,"CupertinoUserInterfaceLevel" ,"convertColor" ,"DatePickerMode.day" ,"DatePickerMode.year" ,"@499280696" ,"package:flutter\/src\/material\/pickers\/date_picker_common.dart" ,"DatePickerMode" ,"describeEvent" ,"SystemSoundType.click" ,"play" ,"SystemSound" ,"@475141381" ,"package:flutter\/src\/services\/system_sound.dart" ,"SystemSoundType" ,"@742074480" ,"package:stack_trace\/src\/chain.dart" ,"init:_friendlyTrace@746486701" ,"_friendlyTrace@746486701" ,"init:_firefoxSafariTrace@746486701" ,"_firefoxSafariTrace@746486701" ,"init:_v8TraceLine@746486701" ,"_v8TraceLine@746486701" ,"init:_v8Trace@746486701" ,"_v8Trace@746486701" ,"init:_terseRegExp@746486701" ,"_terseRegExp@746486701" ,"get:_friendlyTrace@746486701" ,"get:_firefoxSafariTrace@746486701" ,"get:_v8TraceLine@746486701" ,"get:_v8Trace@746486701" ,"get:_terseRegExp@746486701" ,"@746486701" ,"package:stack_trace\/src\/trace.dart" ,"terse" ,"predicate" ,"foldFrames" ,"get:terse" ,"_parseVM@746486701" ,"Trace.parse" ,"@749350526" ,"package:stack_trace\/src\/lazy_trace.dart" ,"get:frames" ,"get:_trace@749350526" ,"LazyTrace" ,"Trace.from" ,"original" ,"frames" ,"Trace." ,"Trace.parseFriendly" ,"Trace.parseFirefox" ,"Trace.parseJSCore" ,"Trace.parseV8" ,"Trace.parseVM" ,"Trace" ,"toTrace" ,"Chain.parse" ,"Chain." ,"Chain" ,"Double_toString" ,"dart:core-patch\/double.dart" ,"_positiveBase10Length@0150898" ,"_negativeBase10Length@0150898" ,"_negativeToString@0150898" ,"_DelayedError@4048458" ,"_StreamControllerAddStreamState@4048458" ,"_StreamControllerAddStreamState@4048458." ,"_ZoneDelegate@4048458" ,"createBuffer" ,"_stateBits@10003594" ,"_Base64Encoder@10003594" ,"writeFinalChunk" ,"encodeChunk" ,"Base64Decoder" ,"writeMap" ,"writeList" ,"writeJsonValue" ,"_removeSeen@10003594" ,"_checkCycle@10003594" ,"writeStringSlice" ,"writeString" ,"writeStringContent" ,"_JsonStringifier@10003594." ,"_JsonStringifier@10003594" ,"writeNumber" ,"_JsonStringStringifier@10003594." ,"_JsonStringStringifier@10003594" ,"get:_partialResult@10003594" ,"writeObject" ,"printOn" ,"stringify" ,"JsonDecoder" ,"_bufferIndex@10003594" ,"_fillBuffer@10003594" ,"_writeSurrogate@10003594" ,"_createBuffer@10003594" ,"[email protected]" ,"_Utf8Encoder@10003594" ,"set:_bufferIndex@10003594" ,"_writeReplacementCharacter@10003594" ,"_state@10003594" ,"_makeUint8List@10003594" ,"isErrorState" ,"decode16" ,"decode8" ,"skipBomSingle" ,"_scan@10003594" ,"scan" ,"_Utf8Decoder@10003594" ,"set:_state@10003594" ,"decodeGeneral" ,"convertSingle" ,"Utf8Decoder" ,"_DelayedDone@4048458" ,"EmptyIterator" ,"recordFlutterError" ,"@27303883" ,"package:firebase_crashlytics\/firebase_crashlytics.dart" ,"firebase_crashlytics" ,"package:firebase_crashlytics\/src\/firebase_crashlytics.dart" ,"Crashlytics." ,"printDetails" ,"information" ,"_recordError@27303883" ,"getStackTraceElements" ,"_prepareKeys@27303883" ,"Crashlytics" ,"get:recordFlutterError" ,"@78235553" ,"package:cloud_firestore_platform_interface\/src\/platform_interface\/field_value.dart" ,"FieldValuePlatform" ,"getDelegate" ,"@21065047" ,"package:shared_preferences\/shared_preferences.dart" ,"_completer@21065047" ,"_getSharedPreferencesMap@21065047" ,"_setValue@21065047" ,"setString" ,"getInstance" ,"get:_store@21065047" ,"SharedPreferences" ,"MirrorReference_equals" ,"dart:mirrors-patch\/mirror_reference.dart" ,"_MirrorReference@2408521" ,"Double_equal" ,"_equal@0150898" ,"Closure_equals" ,"Object_equals" ,"Double_mul" ,"Double_greaterThan" ,"_greaterThan@0150898" ,"@628465697" ,"package:path\/src\/utils.dart" ,"isDriveLetter" ,"Double_greaterThanFromInteger" ,"_greaterThanFromInteger@0150898" ,"Integer_greaterThanFromInteger" ,"OneByteString_substringUnchecked" ,"_mulFromInteger@0150898" ,"Integer_mulFromInteger" ,"_subFromInteger@0150898" ,"Integer_subFromInteger" ,"_addFromInteger@0150898" ,"Integer_addFromInteger" ,"Double_getIsNegative" ,"Integer_bitAndFromInteger" ,"_bitAndFromInteger@0150898" ,"_bitAndFromSmi@0150898" ,"Smi_bitAndFromSmi" ,"Double_getIsNaN" ,"get:isNaN" ,"Mint_bitLength" ,"Smi_bitLength" ,"Mint_bitNegate" ,"Smi_bitNegate" ,"OneByteString_splitWithCharCode" ,"_splitWithCharCode@0150898" ,"String_codeUnitAt" ,"Double_equalToInteger" ,"_equalToInteger@0150898" ,"Integer_equalToInteger" ,"get:nextButtonDisabled" ,"get:nextButton" ,"get:backButton" ,", arrowXOffsetFromCenter=" ,"; shouldPaint=" ,"get:pressedOpacity" ,"get:textThemeDefaults" ,"get:onPressed" ,"Path.combine() failed. This may be due an invalid path; in particular, check for NaN values." ,"get:arrowXOffsetFromCenter" ,"innerOffset" ,"innerContext" ,"set:shouldPaint" ,"get:shouldPaint" ,"renderObjectChild" ,"set:_leader@414518307" ,"get:buttonTheme" ,"get:onSurface" ,"get:primary" ,"get:secondary" ,"box" ,"baselineLayout" ,"centerLayout" ,"get:borderSide" ,":sync_op_gen" ,"get:gapAnimation" ,"get:gap" ,"get:childToSlot" ,"base" ,"extentSelection" ,"get:fullHeight" ,"get:reverseDuration" ,"get:_future@447494659" ,"get:barTopY" ,"Select All" ,"addToolbarButton" ,"get:isArrowPointingDown" ,"get:pressureMax" ," <= pressure <= " ,"get:pressureMin" ," is outside of the device pressure range where: " ,"The reported device pressure " ,"get:pressure" ,"get:textSelectionHandleColor" ,"get:clipboardStatus" ,"get:disposed" ,"More" ,"get:moreButtonTooltip" ,"get:isAbove" ,"SELECT ALL" ,"get:selectAllButtonLabel" ,"get:handleSelectAll" ,"PASTE" ,"get:pasteButtonLabel" ,"COPY" ,"get:copyButtonLabel" ,"get:handleCopy" ,"CUT" ,"get:cutButtonLabel" ,"get:handleCut" ,"get:handlePaste" ,"nextNonWhitespace" ,"previousNonWhitespace" ,"keyEvent" ,"caretRect" ,"trailing edge" ,"leading edge" ,"side: " ,"get:floatingLabelBehavior" ,"get:hasFloatingPlaceholder" ,"get:baseStyle" ,"get:_labelShouldWithdraw@296019562" ,"get:hintColor" ,"get:border" ,"get:helperStyle" ,"get:errorStyle" ,"get:alignLabelWithHint" ,"get:filled" ,"get:isCollapsed" ,"get:semanticCounterText" ,"get:counterStyle" ,"get:counterText" ,"get:counter" ,"get:errorMaxLines" ,"get:helperMaxLines" ,"get:helperText" ,"get:suffixIcon" ,"get:prefixIcon" ,"get:icon" ,"get:isDense" ,"get:suffixText" ,"get:suffix" ,"get:prefixText" ,"get:prefix" ,"get:labelText" ,"get:labelStyle" ,"get:fixTextFieldOutlineLabel" ,"get:enabledBorder" ,"get:focusedBorder" ,"get:errorText" ,"get:hintMaxLines" ,"get:hintText" ,"get:hintStyle" ,", localPosition: " ,"(annotation: " ,"<dangling>" ,"<linked>" ,"get:leader" ,"get:selectionEndInViewport" ,"get:selectionStartInViewport" ,"get:onSelectionHandleChanged" ,"get:delta" ,"get:onSelectionHandleTapped" ,"set:onLongPressStart" ,"set:dragStartBehavior" ,"set:onStart" ,"get:tickerEnabled" ,"get:scrollController" ,"get:showCursor" ,"get:composing" ,"get:cursorColor" ,"get:autocorrectionTextRectColor" ,"get:rendererIgnoresPointer" ,"get:selectionColor" ,"get:forceLine" ,"get:backgroundCursorColor" ,"get:lastDetails" ,"set:_paintOffset@583442496" ,"set:_paintOffsetScrollPixels@583442496" ,"get:metrics" ,"get:notificationPredicate" ,"get:showLeading" ,"get:initialPage" ,"get:scrollDirection" ,"get:onPageChanged" ,"get:viewportFraction" ,"get:onStartPopGesture" ,"get:isUserGestureTransition" ,"isInvalidFlight" ,"get:enabledCallback" ,"Alert" ,"get:dividerTheme" ,"get:dividerColor" ,"get:state" ,"set:onLayout" ,"get:toolbarOptions" ,"Clipboard.setData" ,"Clipboard.getData" ,"text\/plain" ,"get:tooltipTheme" ,"-rtl" ,"-ltr" ,", rect: " ,"(offset: " ,"get:maxScrollObstructionExtent" ,"TextInput.hide" ,"TextInput.clearClient" ,"get:baseOffset" ,"updateDetails" ,"startDetails" ,"get:firstDayOfWeekIndex" ,"get:haveDimensions" ,"get:sourceTimeStamp" ,"get:primaryDelta" ,"get:primaryVelocity" ,"Keep" ,"DocumentReference#delete" ,"You will not be able recover a deleted memory." ,"Are you sure?" ,"get:accentColor" ,"get:hoverColor" ,"get:focusColor" ,"get:highlightColor" ,"get:onFocusChange" ,"get:splashFactory" ,"get:containedInkWell" ,"get:overlayColor" ,"get:globalPosition" ,"SystemSound.play" ,"get:vsync" ,"get:highlightShape" ,"get:parentState" ,"handleInkRemoval" ,"get:onTapCancel" ,"get:onDoubleTap" ,"get:onTap" ,"get:splashColor" ,"highlight" ,"get:clipBehavior" ,"get:shouldShowSelectionToolbar" ,"get:point" ,"get:toolbarIsVisible" ,"get:buildCounter" ,"get:inputDecorationTheme" ,"get:expands" ,"invalid text selection: " ,"TextInput.show" ,"TextInput.setEditableSizeAndTransform" ,"TextInput.requestAutofill" ,"TextInput.setStyle" ,"textDirectionIndex" ,"textAlignIndex" ,"fontWeightIndex" ,"editingValue" ,"hints" ,"uniqueIdentifier" ,"inputAction" ,"actionLabel" ,"inputType" ,"TextInput.setClient" ,"get:scrollPadding" ,"get:cursorOpacityAnimates" ,"get:obscureText" ,"Unknown text input action: " ,"TextInputAction.continue_action" ,"Unknown text cursor action: " ,"FloatingCursorDragState.end" ,"FloatingCursorDragState.update" ,"FloatingCursorDragState.start" ,"\\s" ,"[\\u0591-\\u07FF\\uFB1D-\\uFDFD\\uFE70-\\uFEFC]" ,"[A-Za-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02B8\\u0300-\\u0590\\u0800-\\u1FFF\\u2C00-\\uFB1C\\uFDFE-\\uFE6F\\uFEFD-\\uFFFF]" ,"subtractFromLength" ,"addToLength" ,"get:onChanged" ,"get:maxLines" ,"get:maxScrollExtent" ,"get:minScrollExtent" ,"newSelection" ,"get:onSelectionChanged" ,"get:showSelectionHandles" ,"get:selectionControls" ,"get:_currentConnection@478206165" ,"set:_currentConnection@478206165" ,"get:onSubmitted" ,"get:onEditingComplete" ,"TextInputClient.showAutocorrectionPromptRect" ,"TextInputClient.onConnectionClosed" ,"TextInputClient.updateFloatingCursor" ,"TextInputClient.performAction" ,"TextInputClient.updateEditingState" ,"get:_id@478206165" ,"TextInputClient.updateEditingStateWithTag" ,"get:_client@478206165" ,"TextInputClient.requestExistingInputState" ,"composingExtent" ,"composingBase" ,"selectionIsDirectional" ,"selectionAffinity" ,"selectionExtent" ,"selectionBase" ,"TextInput.setEditingState" ,"get:autofillHints" ,"get:maxLengthEnforced" ,"get:readOnly" ,"get:maxLength" ,"get:inputFormatters" ,"get:keyboardAppearance" ,"% of the way to being a CircleBorder)" ,"RoundedRectangleBorder(" ,"of the way to being a CircleBorder)" ,"% " ,"RoundedRectangleBorder)" ,"% of the way to being a " ,"StadiumBorder(" ,", crossAxis: " ,"@(mainAxis: " ,"paintOffset=" ,"SliverConstraints(" ,"cacheOrigin: " ,"remainingCacheExtent: " ,"viewportMainAxisExtent: " ,"crossAxisDirection: " ,"overlap: " ,"remainingPaintExtent: " ,"layoutOffset=" ,"crossAxisOffset=" ,"SliverGridGeometry(" ,"crossAxisExtent: " ,"mainAxisExtent: " ,"crossAxisOffset: " ,"scrollOffset: " ,"keepAlive; " ,"index=" ,"get:scrollExtent" ,"get:growthDirection" ,"offset: " ,"get:borderRadius" ,"get:animateColor" ,"get:initialMonth" ,"get:selectedDate" ,"monthPage" ,"Next month" ,"get:nextMonthTooltip" ,"Previous month" ,"get:previousMonthTooltip" ,"get:mode" ,"Select year" ,"get:onTitlePressed" ,"get:selectYearSemanticsLabel" ,"get:initialEntries" ,"get:_key@511319124" ,"get:_parent@514042876" ,"get:autofocus" ,"get:initialData" ,"get:dragStartBehavior" ,"viewport: " ,"range: " ,"Invalid or corrupted pad block" ,"pad block corrupted" ,"00000000" ,"animationStatus" ,"Back" ,"get:backButtonTooltip" ,"get:disabledColor" ,"InputDecoration(" ,"alignLabelWithHint: " ,"semanticCounterText: " ,"border: " ,"filled: true" ,"counterText: " ,"counter: " ,"contentPadding: " ,"isDense: " ,"floatingLabelBehavior: " ,"hintMaxLines: \"" ,"hintText: \"" ,"get:pageTransitionsTheme" ,"(y: " ,"BoxPainter for " ,"For a more general interpolation method, consider using ShapeBorder.lerp instead." ,"However, only Border and BorderDirectional classes are supported by this method." ,":\n" ," and " ,"BoxBorder.lerp() was called with two objects of type " ,"BoxBorder.lerp can only interpolate Border and BorderDirectional classes." ,"BoxShadow(" ,"; id=" ,"set:isBlockingSemanticsOfPreviouslyPaintedNodes" ,"get:crossAxisExtent" ,"get:keepAlive" ,"set:_keptAlive@432211670" ,"get:crossAxisOffset" ,"get:_keptAlive@432211670" ,"set:paintOffset" ,"get:scrollOffset" ,"get:hitTestExtent" ,"sliver" ,"get:remainingPaintExtent" ,"get:viewportMainAxisExtent" ,"get:overlap" ,"get:paintExtent" ,"get:paintOffset" ,"get:layoutOffset" ,"get:visible" ,"get:geometry" ,"get:scrollOffsetCorrection" ,"get:userScrollDirection" ,"get:centerOffsetAdjustment" ,"decimal" ,"signed" ,"decimal: " ,"signed: " ,"TextInputType." ,"name: " ,"address" ,"visiblePassword" ,"emailAddress" ,"datetime" ,"number" ,", composing: " ,"set:onPointerDown" ,"oldClipper" ,"newClipper" ,"get:typeToResources" ,"get:handle" ,"get:rebuildKey" ,"get:keptAlive" ,"set:layoutOffset" ,"set:debugChildIntegrityEnabled" ,"get:history" ,"popOrInvalidate" ,"get:skipTraversal" ,"value2" ,"value1" ,"getDirectionalityAncestors" ,"get:right" ,"visitGroups" ,"get:members" ,"get:scrollDelta" ,"get:pointerSignalResolver" ,"get:semanticChildCount" ,"get:viewportDimension" ,"get:incrementCalculator" ,"get:physics" ,"intent" ,"get:notifier" ,"set:onAnyTapUp" ,"RegistryFactoryException: " ,"Key length must be 128\/192\/256 bits" ,"AES engine not initialised" ,"Initialization vector must be the same length as block size" ,"Output buffer too short" ,"Input buffer too short" ,"Input data length must be a multiple of cipher's block size" ,"get:cipher" ,"expand 32-byte k" ,"expand 16-byte k" ,"Salsa20 requires exactly 8 bytes of IV" ,"params" ,"Output buffer too short or requested length too long" ,"Input buffer too short or requested length too long" ,"Salsa20 not initialized: please call init() first" ,"numBits must be non-negative" ,"factor" ,", end: " ,"TextRange(start: " ,"TextPosition(offset: " ,"Edit" ,"Today" ," Years Ago" ," Year Ago" ,"This year" ,"What do you want to remember about today?" ,"get:connectionState" ,"decryptedText" ,"Cancel" ,"Invalid padding character" ,"Invalid encoding before padding" ,"Invalid length, must be multiple of four" ,"Missing padding character" ,"dyn:^" ,"\/OAEP" ,"\/PKCS1" ,"\/CBC" ,"Bad CFB block size: " ,"^(.+)\/CFB-([0-9]+)$" ,"\/ECB" ,"GCTR can only be used with 64 bit block ciphers" ,"\/GCTR" ," is invalid" ,"Algorithm name " ," (must be a multiple of 8)" ,"Bad OFB block size: " ,"^(.+)\/OFB-([0-9]+)$" ,"Blake2b" ,"RIPEMD-320" ,"^SHA-3\\\/([0-9]+)$" ,"Invalid rate value: " ,"Value of (rate + capacity) is not 1600: " ,") must be one of 224, 256, 384, or 512" ,"bitLength (" ,"^SHA-512\\\/([0-9]+)$" ,"Invalid endianness: " ,"Endian" ,"get:_hi32@642143242" ,"Digest size cannot be 48 bytes (384 bits): use SHA-384 instead" ,"Digest size cannot be >= 64 bytes (512 bits)" ,"Digest length for SHA-512\/t is not a multiple of 8: " ,"04bed5af16ea3f6a4f62938c4631eb5af7bdbcdbc31667cb477a1a8ec338f94741669c976316da6321" ,"1e589a8595423412134faa2dbdec95c8d8675e58" ,"340e7be2a280eb74e2be61bada745d97e8f7c300" ,"brainpoolp160r1" ,"e95e4a5f737059dc60df5991d45029409e60fc09" ,"04b199b13b9b34efc1397e64baeb05acc265ff2378add6718b7c7c1961f0991b842443772152c9e0ad" ,"7a556b6dae535b7b51ed2c4d7daa7a0b5c55f380" ,"e95e4a5f737059dc60dfc7ad95b3d8139515620c" ,"e95e4a5f737059dc60dfc7ad95b3d8139515620f" ,"brainpoolp160t1" ,"04c0a0647eaab6a48753b033c56cb0f0900a2f5c4853375fd614b690866abd5bb88b5f4828c1490002e6773fa2fa299b8f" ,"469a28ef7c28cca3dc721d044f4496bcca7ef4146fbf25c9" ,"6a91174076b1e0e19c39c031fe8685c1cae040e5c69a28ef" ,"brainpoolp192r1" ,"c302f41d932a36cda7a3462f9e9e916b5be8f1029ac4acc1" ,"043ae9e58c82f63c30282e1fe7bbf43fa72c446af6f4618129097e2c5667c2223a902ab5ca449d0084b7e5b3de7ccc01c9" ,"13d56ffaec78681e68f9deb43b35bec2fb68542e27897b79" ,"c302f41d932a36cda7a3463093d18db78fce476de1a86294" ,"c302f41d932a36cda7a3463093d18db78fce476de1a86297" ,"brainpoolp192t1" ,"040d9029ad2c7e5cf4340823b2a87dc68c9e4ce3174c1e6efdee12c07d58aa56f772c0726f24c6b89e4ecdac24354b9e99caa3f6d3761402cd" ,"2580f63ccfe44138870713b1a92369e33e2135d266dbb372386c400b" ,"68a5e62ca9ce6c1c299803a6c1530b514e182ad8b0042a59cad29f43" ,"brainpoolp224r1" ,"d7c134aa264366862a18302575d0fb98d116bc4b6ddebca3a5a7939f" ,"046ab1e344ce25ff3896424e7ffe14762ecb49f8928ac0c76029b4d5800374e9f5143e568cd23f3f4d7c0d4b1e41c8cc0d1c6abd5f1a46db4c" ,"4b337d934104cd7bef271bf60ced1ed20da14c08b3bb64f18a60888d" ,"d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0fc" ,"d7c134aa264366862a18302575d1d787b09f075797da89f57ec8c0ff" ,"brainpoolp224t1" ,"048bd2aeb9cb7e57cb2c4b482ffc81b7afb9de27e1e3bd23c23a4453bd9ace3262547ef835c3dac4fd97f8461a14611dc9c27745132ded8e545c1d54c72f046997" ,"26dc5c6ce94a4b44f330b5d9bbd77cbf958416295cf7e1ce6bccdc18ff8c07b6" ,"7d5a0975fc2c3057eef67530417affe7fb8055c126dc5c6ce94a4b44f330b5d9" ,"brainpoolp256r1" ,"a9fb57dba1eea9bc3e660a909d838d718c397aa3b561a6f7901e0e82974856a7" ,"04a3e8eb3cc1cfe7b7732213b23a656149afa142c47aafbc2b79a191562e1305f42d996c823439c56d7f7b22e14644417e69bcb6de39d027001dabe8f35b25c9be" ,"662c61c430d84ea4fe66a7733d0b76b7bf93ebc4af2f49256ae58101fee92b04" ,"a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5374" ,"a9fb57dba1eea9bc3e660a909d838d726e3bf623d52620282013481d1f6e5377" ,"brainpoolp256t1" ,"0443bd7e9afb53d8b85289bcc48ee5bfe6f20137d10a087eb6e7871e2a10a599c710af8d0d39e2061114fdd05545ec1cc8ab4093247f77275e0743ffed117182eaa9c77877aaac6ac7d35245d1692e8ee1" ,"520883949dfdbc42d3ad198640688a6fe13f41349554b49acc31dccd884539816f5eb4ac8fb1f1a6" ,"3ee30b568fbab0f883ccebd46d3f3bb8a2a73513f5eb79da66190eb085ffa9f492f375a97d860eb4" ,"brainpoolp320r1" ,"d35e472036bc4fb7e13c785ed201e065f98fcfa5b68f12a32d482ec7ee8658e98691555b44c59311" ,"04925be9fb01afc6fb4d3e7d4990010f813408ab106c4f09cb7ee07868cc136fff3357f624a21bed5263ba3a7a27483ebf6671dbef7abb30ebee084e58a0b077ad42a5a0989d1ee71b1b9bc0455fb0d2c3" ,"a7f561e038eb1ed560b3d147db782013064c19f27ed27c6780aaf77fb8a547ceb5b4fef422340353" ,"d35e472036bc4fb7e13c785ed201e065f98fcfa6f6f40def4f92b9ec7893ec28fcd412b1f1b32e24" ,"d35e472036bc4fb7e13c785ed201e065f98fcfa6f6f40def4f92b9ec7893ec28fcd412b1f1b32e27" ,"brainpoolp320t1" ,"041d1c64f068cf45ffa2a63a81b7c13f6b8847a3e77ef14fe3db7fcafe0cbd10e8e826e03436d646aaef87b2e247d4af1e8abe1d7520f9c2a45cb1eb8e95cfd55262b70b29feec5864e19c054ff99129280e4646217791811142820341263c5315" ,"4a8c7dd22ce28268b39b55416f0447c2fb77de107dcd2a62e880ea53eeb62d57cb4390295dbc9943ab78696fa504c11" ,"7bc382c63d8c150c3c72080ace05afa0c2bea28e4fb22787139165efba91f90f8aa5814a503ad4eb04a8c7dd22ce2826" ,"brainpoolp384r1" ,"8cb91e82a3386d280f5d6f7e50e641df152f7109ed5456b31f166e6cac0425a7cf3ab6af6b7fc3103b883202e9046565" ,"0418de98b02db9a306f2afcd7235f72a819b80ab12ebd653172476fecd462aabffc4ff191b946a5f54d8d0aa2f418808cc25ab056962d30651a114afd2755ad336747f93475b7a1fca3b88f2b6a208ccfe469408584dc2b2912675bf5b9e582928" ,"7f519eada7bda81bd826dba647910f8c4b9346ed8ccdc64e4b1abd11756dce1d2074aa263b88805ced70355a33b471ee" ,"8cb91e82a3386d280f5d6f7e50e641df152f7109ed5456b412b1da197fb71123acd3a729901d1a71874700133107ec50" ,"8cb91e82a3386d280f5d6f7e50e641df152f7109ed5456b412b1da197fb71123acd3a729901d1a71874700133107ec53" ,"brainpoolp384t1" ,"0481aee4bdd82ed9645a21322e9c4c6a9385ed9f70b5d916c1b43b62eef4d0098eff3b1f78e2d0d48d50d1687b93b97d5f7c6d5047406a5e688b352209bcb9f8227dde385d566332ecc0eabfa9cf7822fdf209f70024a57b1aa000c55b881f8111b2dcde494a5f485e5bca4bd88a2763aed1ca2b2fa8f0540678cd1e0f3ad80892" ,"3df91610a83441caea9863bc2ded5d5aa8253aa10a2ef1c98b9ac8b57f1117a72bf2c7b9e7c1ac4d77fc94cadc083e67984050b75ebae5dd2809bd638016f723" ,"7830a3318b603b89e2327145ac234cc594cbdd8d3df91610a83441caea9863bc2ded5d5aa8253aa10a2ef1c98b9ac8b57f1117a72bf2c7b9e7c1ac4d77fc94ca" ,"brainpoolp512r1" ,"aadd9db8dbe9c48b3fd4e6ae33c9fc07cb308db3b3c9d20ed6639cca70330870553e5c414ca92619418661197fac10471db1d381085ddaddb58796829ca90069" ,"04640ece5c12788717b9c1ba06cbc2a6feba85842458c56dde9db1758d39c0313d82ba51735cdb3ea499aa77a7d6943a64f7a3f25fe26f06b51baa2696fa9035da5b534bd595f5af0fa2c892376c84ace1bb4e3019b71634c01131159cae03cee9d9932184beef216bd71df2dadf86a627306ecff96dbb8bace198b61e00f8b332" ,"7cbbbcf9441cfab76e1890e46884eae321f70c0bcb4981527897504bec3e36a62bcdfa2304976540f6450085f2dae145c22553b465763689180ea2571867423e" ,"aadd9db8dbe9c48b3fd4e6ae33c9fc07cb308db3b3c9d20ed6639cca703308717d4d9b009bc66842aecda12ae6a380e62881ff2f2d82c68528aa6056583a48f0" ,"aadd9db8dbe9c48b3fd4e6ae33c9fc07cb308db3b3c9d20ed6639cca703308717d4d9b009bc66842aecda12ae6a380e62881ff2f2d82c68528aa6056583a48f3" ,"brainpoolp512t1" ,"GostR3410-2001-CryptoPro-A" ,"800000000000000000000000000000015f700cfff1a624e5e497161bcc8a198f" ,"0400000000000000000000000000000000000000000000000000000000000000013fa8124359f96680b83d1c3eb2c070e5c545c9858d03ecfb744bf8d717717efc" ,"3e1af419a269a5f866a7d3c25c3df80ae979259373ff2b182f49d4ce7e1bbc8b" ,"8000000000000000000000000000000000000000000000000000000000000c96" ,"8000000000000000000000000000000000000000000000000000000000000c99" ,"GostR3410-2001-CryptoPro-B" ,"GostR3410-2001-CryptoPro-C" ,"ffffffffffffffffffffffffffffffff6c611070995ad10045841b09b761b893" ,"0400000000000000000000000000000000000000000000000000000000000000018d91e471e0989cda27df505a453f2b7635294f2ddf23e3b122acc99c9e9f1e14" ,"a6" ,"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd94" ,"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd97" ,"GostR3410-2001-CryptoPro-XchA" ,"9b9f605f5a858107ab1ec85e6b41c8aa582ca3511eddfb74f02f3a6598980bb9" ,"04000000000000000000000000000000000000000000000000000000000000000041ece55743711a8c3cbf3783cd08c0ee4d4dc440d4641a8f366e550dfdb3bb67" ,"805a" ,"9b9f605f5a858107ab1ec85e6b41c8aacf846e86789051d37998f7b9022d7598" ,"9b9f605f5a858107ab1ec85e6b41c8aacf846e86789051d37998f7b9022d759b" ,"GostR3410-2001-CryptoPro-XchB" ,"03188da80eb03090f67cbf20eb43a18800f4ff0afd82ff1012" ,"prime192v1" ,"31a92ee2029fd10d901b113e990710f0d21ac6b6" ,"fffffffffffffffffffffffe5fb1a724dc80418648d8dd31" ,"03eea2bae7e1497842f2de7769cfe9c989c072ad696f48034a" ,"cc22d6dfb95c6b25e49c0d6364a4e5980c393aa21668d953" ,"prime192v2" ,"c469684435deb378c4b65ca9591e2a5763059a2e" ,"ffffffffffffffffffffffff7a62d031c83f4294f640ec13" ,"027d29778100c65a1da1783716588dce2b8b4aee8e228f1896" ,"22123dc2395a05caa7423daeccc94760a7d462256bd56916" ,"prime192v3" ,"e43bb460f0b80cc0c0b075798e948060f8321b7d" ,"7fffffffffffffffffffffff7fffff9e5e9a9f5d9071fbd1522688909d0b" ,"020ffa963cdca8816ccc33b8642bedf905c3d358573d3f27fbbd3b3cb9aaaf" ,"6b016c3bdcf18941d0d654921475ca71a9db2fb27d1d37796185c2942c0a" ,"prime239v1" ,"e8b4011604095303ca3b8099982be09fcb9ae616" ,"7fffffffffffffffffffffff800000cfa7e8594377d414c03821bc582063" ,"0238af09d98727705120c921bb5e9e26296a3cdcf2f35757a0eafd87b830e7" ,"617fab6832576cbbfed50d99f0249c3fee58b94ba0038c7ae84c8c832f2c" ,"prime239v2" ,"7d7374168ffe3471b60a857686a19475d3bfa2ff" ,"7fffffffffffffffffffffff7fffff975deb41b3a6057c3c432146526551" ,"036768ae8e18bb92cfcf005c949aa2c6d94853d0e660bbf854b1c9505fe95a" ,"255705fa2a306654b1f4cb03d6a750a30c250102d4988717d9ba15ab6d3e" ,"7fffffffffffffffffffffff7fffffffffff8000000000007ffffffffffc" ,"7fffffffffffffffffffffff7fffffffffff8000000000007fffffffffff" ,"prime239v3" ,"036b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c296" ,"prime256v1" ,"00f50b028e4d696e676875615175290472783fb1" ,"db7c2abf62e35e7628dfac6561c5" ,"0409487239995a5ee76b55f9c2f098a89ce5af8724c0a23e0e0ff77500" ,"659ef8ba043916eede8911702b22" ,"db7c2abf62e35e668076bead2088" ,"secp112r1" ,"002757a1114d696e6768756151755316c05e0bd4" ,"36df0aafd8b8d7597ca10520d04b" ,"044ba30ab5e892b4e1649dd0928643adcd46f5882e3747def36e956e97" ,"51def1815db5ed74fcc34c85d709" ,"6127c24c05f38a0aaaf65c0ef02c" ,"db7c2abf62e35e668076bead208b" ,"secp112r2" ,"000e0d4d696e6768756151750cc03a4473d03679" ,"fffffffe0000000075a30d1b9038a115" ,"04161ff7528b899b2d0c28607ca52c5b86cf5ac8395bafeb13c02da292dded7a83" ,"e87579c11079f43dd824993c2cee5ed3" ,"fffffffdfffffffffffffffffffffffc" ,"secp128r1" ,"004d696e67687561517512d8f03431fce63b88f4" ,"3fffffff7fffffffbe0024720613b5a3" ,"047b6aa5d85e572983e6fb32a7cdebc14027b6916a894d3aee7106fe805fc34b44" ,"5eeefca380d02919dc2c6558bb6d8a5d" ,"d6031998d1b3bbfebf59cc9bbff9aee1" ,"fffffffdffffffffffffffffffffffff" ,"secp128r2" ,"100000000000000000001b8fa16dfab9aca16b6b3" ,"043b4c382ce37aa192a4019e763036f4f5dd4d7ebb938cf935318fdced6bc28286531733c3f03c4fee" ,"secp160k1" ,"1053cde42c14d696e67687561517533bf3f83345" ,"100000000000000000001f4c8f927aed3ca752257" ,"044a96b5688ef573284664698968c38bb913cbfc8223a628553168947d59dcc912042351377ac5fb32" ,"1c97befc54bd7a8b65acf89f81d4d4adc565fa45" ,"ffffffffffffffffffffffffffffffff7ffffffc" ,"ffffffffffffffffffffffffffffffff7fffffff" ,"secp160r1" ,"b99b99b099b323e02709a4d696e6768756151751" ,"100000000000000000000351ee786a818f3a1a16b" ,"0452dcb034293a117e1f4ff11b30f7199d3144ce6dfeaffef2e331f296e071fa0df9982cfea7d43f2e" ,"b4e134d3fb59eb8bab57274904664d5af50388ba" ,"fffffffffffffffffffffffffffffffeffffac70" ,"fffffffffffffffffffffffffffffffeffffac73" ,"secp160r2" ,"fffffffffffffffffffffffe26f2fc170f69466a74defd8d" ,"04db4ff10ec057e9ae26b07d0280b7f4341da5d1b1eae06c7d9b2f2f6d9c5628a7844163d015be86344082aa88d95e2f9d" ,"fffffffffffffffffffffffffffffffffffffffeffffee37" ,"secp192k1" ,"3045ae6fc8422f64ed579528d38120eae12196d5" ,"ffffffffffffffffffffffff99def836146bc9b1b4d22831" ,"04188da80eb03090f67cbf20eb43a18800f4ff0afd82ff101207192b95ffc8da78631011ed6b24cdd573f977a11e794811" ,"64210519e59c80e70fa7e9ab72243049feb8deecc146b9b1" ,"fffffffffffffffffffffffffffffffefffffffffffffffc" ,"fffffffffffffffffffffffffffffffeffffffffffffffff" ,"secp192r1" ,"10000000000000000000000000001dce8d2ec6184caf0a971769fb1f7" ,"04a1455b334df099df30fc28a169a467e9e47075a90f7e650eb6b7a45c7e089fed7fba344282cafbd6f7e319f7c0b0bd59e2ca4bdb556d61a5" ,"fffffffffffffffffffffffffffffffffffffffffffffffeffffe56d" ,"secp224k1" ,"bd71344799d5c7fcdc45b59fa3b9ab8f6a948bc5" ,"ffffffffffffffffffffffffffff16a2e0b8f03e13dd29455c5c2a3d" ,"04b70e0cbd6bb4bf7f321390b94a03c1d356c21122343280d6115c1d21bd376388b5f723fb4c22dfe6cd4375a05a07476444d5819985007e34" ,"b4050a850c04b3abf54132565044b0b7d7bfd8ba270b39432355ffb4" ,"fffffffffffffffffffffffffffffffefffffffffffffffffffffffe" ,"ffffffffffffffffffffffffffffffff000000000000000000000001" ,"secp224r1" ,"fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141" ,"0479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8" ,"fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f" ,"secp256k1" ,"c49d360886e704936a6678e1139d26b7819f7e90" ,"ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" ,"046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" ,"5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" ,"ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" ,"ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" ,"secp256r1" ,"a335926aa319a27a1d00896a6773a4827acdac73" ,"ffffffffffffffffffffffffffffffffffffffffffffffffc7634d81f4372ddf581a0db248b0a77aecec196accc52973" ,"04aa87ca22be8b05378eb1c71ef320ad746e1d3b628ba79b9859f741e082542a385502f25dbf55296c3a545e3872760ab73617de4a96262c6f5d9e98bf9292dc29f8f41dbd289a147ce9da3113b5f0b8c00a60b1ce1d7e819d7a431d7c90ea0e5f" ,"b3312fa7e23ee7e4988e056be3f82d19181d9c6efe8141120314088f5013875ac656398d8a2ed19d2a85c8edd3ec2aef" ,"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeffffffff0000000000000000fffffffc" ,"fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeffffffff0000000000000000ffffffff" ,"secp384r1" ,"^\\s*([+-]?)((0x[a-f0-9]+)|(\\d+)|([a-z0-9]+))\\s*$" ,"Could not parse BigInt" ,"Not implemented yet" ,"Invalid point compression" ,"cDigits" ,"Not coprime" ,"aDigits" ,"Modulus must be strictly positive: " ,"negNormModulusDigits" ,"modulus must be strictly positive: " ,"exponent must be positive: " ,"bigModulus" ,"bigExponent" ,"toBigInteger" ,"get:_digits@0150898" ,"dart.vm.not.a.compile.time.constant" ,"shift-amount must be positive " ,"get:_used@0150898" ,"get:_isNegative@0150898" ,"Must be a platform BigInt" ,"bigInt" ,"Value x must be smaller than q" ,"get:isInfinity" ,"get:preComp" ,"preCompInfo" ,"Exactly one of the field elements is null" ,"Invalid point encoding 0x" ,"Incorrect length for uncompressed\/hybrid encoding" ,"Incorrect length for compressed encoding" ,"Incorrect length for infinity encoding" ,"d09e8800291cb85396cc6717393284aaa0da64ba" ,"1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa51868783bf2f966b7fcc0148f709a5d03bb5c9b8899c47aebb6fb71e91386409" ,"0400c6858e06b70404e9cd9e3ecb662395b4429c648139053fb521f828af606b4d3dbaa14b5e77efe75928fe1dc127a2ffa8de3348b3c1856a429bf97e7e31c2e5bd66011839296a789a3bc0045c8a5fb42c7d1bd998f54449579b446817afbd17273e662c97ee72995ef42640c550b9013fad0761353c7086a272c24088be94769fd16650" ,"51953eb9618e1c9a1f929a21a0b68540eea2da725b99b315f3b8b489918ef109e156193951ec7e937b1652c0bd3bb1bf073573df883d2c34f1ef451fd46b503f00" ,"1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc" ,"1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ,"secp521r1" ,"\/PBKDF2" ,"scrypt" ,"EC" ,"RSA" ,"Whirlpool" ,"Tiger" ,"GOST3411" ,"HMAC construction." ," unknown for " ,"Digest " ,"Unknown block size for CMAC: " ,"MAC size must be less or equal to " ,"\/CMAC" ,"MAC size must be multiple of 8" ,"^(.+)\/CBC_CMAC(\/(.+))?$" ,"^(.+)\/([^\/]+)$" ,"ISO7816-4" ,"^(.*)\/CTR\/AUTO-SEED-PRNG$" ,"^(.*)\/CTR\/PRNG$" ,"Fortuna" ,"\/HMAC" ,"^(.+)\/(DET-)?ECDSA$" ,"0609608648016503040203" ,"SHA-512" ,"0609608648016503040202" ,"SHA-384" ,"0609608648016503040201" ,"SHA-256" ,"0609608648016503040204" ,"SHA-224" ,"06052b0e03021a" ,"SHA-1" ,"06052b24030203" ,"RIPEMD-256" ,"06052b24030201" ,"RIPEMD-160" ,"06052b24030202" ,"RIPEMD-128" ,"06082a864886f70d0205" ,"MD5" ,"06082a864886f70d0204" ,"MD4" ,"06082a864886f70d0202" ,"MD2" ," is not supported" ,"RSA signing with digest " ,"\/RSA" ,"\/CTR" ,"Salsa20" ,"([\\\\\\^\\$\\.\\|\\+\\[\\]\\(\\)\\{\\}])" ,"^(.+)" ,"match" ,"\/SIC" ," with name: " ,"No algorithm registered" ," of type " ,"AES\/" ,"PKCS7" ,"DocumentReference#updateData" ,"get:dateTime" ,"Save" ,"get:memory" ,"Cannot modify an unmodifiable Set" ,"get:colorScheme" ,"onDown" ,"hasSameButton" ,", confidence: " ,", duration: " ,"; offset: " ,"VelocityEstimate(" ,"Velocity(" ,"A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function." ,"using the Scaffold.of() function." ,"then use the key.currentState property to obtain the ScaffoldState rather than " ,"A less elegant but more expedient solution is assign a GlobalKey to the Scaffold, " ,"your new inner widgets, and then in these inner widgets you would use Scaffold.of().\n" ,"you would have an outer widget that creates the Scaffold populated by instances of " ,"introduces a new context from which you can obtain the Scaffold. In this solution, " ,"A more efficient solution is to split your build function into several widgets. This " ,"There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is \"under\" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https:\/\/api.flutter.dev\/flutter\/material\/Scaffold\/of.html" ," https:\/\/api.flutter.dev\/flutter\/material\/Scaffold\/of.html" ,"documentation for Scaffold.of():\n" ,"context that is \"under\" the Scaffold. For an example of this, please see the " ,"There are several ways to avoid this problem. The simplest is to use a Builder to get a " ,"No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought." ,"whose build function actually creates the Scaffold widget being sought." ,"This usually happens when the context provided is from the same StatefulWidget as that " ,"No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). " ,"Scaffold.of() called with a context that does not contain a Scaffold." ,"get:appBarTheme" ,"get:drawerCallback" ,"get:primaryColorBrightness" ,"get:titleSpacing" ,"get:title" ,"Open navigation menu" ,"get:openAppDrawerTooltip" ,"get:leading" ,"get:primaryIconTheme" ,"get:iconTheme" ,"get:cardColor" ,"get:canvasColor" ,"get:applyElevationOverlayColor" ,"notification" ,"get:shadowColor" ,"get:animationDuration" ,"MaterialStateMouseCursor(clickable)" ,"get:popupMenuTheme" ,"get:modalBarrierDismissLabel" ,"Popup menu" ,"get:onSelected" ,"get:onCanceled" ,"get:itemBuilder" ,"Show menu" ,"get:showMenuTooltip" ,"oldPainter" ,"get:fabMotionAnimator" ,"get:currentController" ,"get:geometryNotifier" ,"get:preferBelow" ,"get:overflowDirection" ,"get:layoutBehavior" ,"get:buttonAlignedDropdown" ,"get:buttonTextTheme" ,"get:mainAxisSize" ,"get:theme" ,", recognizer: " ,", semanticsLabel: " ,"{text: " ,"(end: " ,", damping: " ,", stiffness: " ,"(mass: " ," for ColorFilter." ,"Unknown mode " ,"scale=" ,", isDirectional: " ,", affinity: " ,", extentOffset: " ,"(baseOffset: " ,"get:futureValue" ,"get:delegate" ,"get:delegates" ,"old" ,"get:initialDate" ,"get:initialCalendarMode" ,"Sunday" ,"Saturday" ,"Friday" ,"Thursday" ,"Wednesday" ,"Tuesday" ,"Monday" ,"get:onDateChanged" ,"date" ,"get:onDisplayedMonthChanged" ,"get:lastDate" ,"get:firstDate" ,"get:currentDate" ,"HapticFeedback.vibrate" ,"get:dispatcher" ,"get:modal" ,"get:policy" ,"get:observers" ,"SemanticsGestureDelegate()" ,"get:onLongPressStart" ,"get:onDown" ,"direction: " ,"remote" ,"local" ,"depth: " ,"scrollDelta: " ,"velocity: " ,"overscroll: " ,"set:tolerance" ,", trailingExtent: " ,"(leadingExtent: " ,"\n }" ,"\n \n\ttext: " ,"Memory: \n {\n\tyear: " ,"get:AMPMS" ,"get:STANDALONESHORTWEEKDAYS" ,"get:STANDALONEWEEKDAYS" ,"get:STANDALONENARROWWEEKDAYS" ,"get:SHORTWEEKDAYS" ,"get:WEEKDAYS" ,"get:ERAS" ,"get:ERANAMES" ,"get:STANDALONESHORTMONTHS" ,"get:STANDALONEMONTHS" ,"get:STANDALONENARROWMONTHS" ,"get:SHORTMONTHS" ,"get:MONTHS" ,"get:NARROWMONTHS" ,"get:SHORTQUARTERS" ,"get:QUARTERS" ,"get:ZERODIGIT" ," Focus Scope" ,"set:_owner@49188637" ,"get:time" ,"'>" ,"<'" ,"; fling at " ,"; judged to not be a fling." ,"Could not estimate velocity." ,"onEnd" ,", global: " ,"(local: " ,"get:buttons" ,"_PointAtTime(" ,"get:focusElevation" ,"get:hoverElevation" ,"get:highlightElevation" ,"get:disabledElevation" ,"get:onHighlightChanged" ,"get:materialTapTargetSize" ,"get:fillColor" ,"get:mouseCursor" ,"get:visualDensity" ,"get:shape" ,"get:dialogTheme" ,"get:dialogBackgroundColor" ,"get:viewInsets" ,"FloatingActionButtonLocation.endFloat" ,"ink renderer" ,"get:cupertinoOverrideTheme" ,"left: " ,"bottom: " ,"right: " ,"top: " ,".all(" ,"platform: " ,"bundle: " ,"ImageConfiguration(" ," @ " ,"Listenable.merge([" ,"; fit=" ,"; flex=" ,"get:localPosition" ,"get:baseline" ,"\"colors\" and \"colorStops\" arguments must have equal length." ,"\"colors\" must have length 2 if \"colorStops\" is omitted." ,"get:recognizer" ,"get:semanticsLabel" ,"get:requiresOwnNode" ,"get:systemFonts" ,"; " ,"not positioned" ,"width=" ,"left=" ,"bottom=" ,"right=" ,"top=" ,"Ticker(" ,"oldDelegate" ,"navigationMode: " ,"boldText: " ,"invertColors: " ,"disableAnimations: " ,"highContrast: " ,"accessibleNavigation: " ,"alwaysUse24HourFormat: " ,"physicalDepth: " ,"viewInsets: " ,"viewPadding: " ,"padding: " ,"platformBrightness: " ,"textScaleFactor: " ,"devicePixelRatio: " ,"size: " ,"DefaultWidgetsLocalizations.delegate(en_US)" ,"get:listenable" ,"get:damping" ," -> " ,"ScrollPhsyics" ,"building" ,"estimated child count: EXCEPTION (" ,"estimated child count: " ,"Navigator Scope" ,"get:currentResult" ,"isLast" ,"get:isWaitingForEnteringDecision" ,"handleExitingRoute" ,"get:style" ,"SystemChrome.setApplicationSwitcherDescription" ,"currentSummary" ,"synchronousCall" ,"imageInfo" ,"get:semantics" ,"get:placeholderBuilder" ,"StorageEntryIdentifier(" ,"LocaleDataException: " ,"get:microsecondsSinceEpoch" ,"v2" ,"v1" ,"applyParentDataToChild" ,"slot" ,"Sign out" ,"secondaryAnimation" ,"pickedDate" ,"Pick a Date" ,"Invalid locale \"" ,"localeName" ,"fallback" ,"utc" ,"fractionalSecond" ,"second" ,"minute" ,"hour24" ,"day" ,"month" ,"PM" ,"AM" ,"4th quarter" ,"3rd quarter" ,"2nd quarter" ,"1st quarter" ,"Q4" ,"Q3" ,"Q2" ,"Q1" ,"Sat" ,"Fri" ,"Thu" ,"Wed" ,"Tue" ,"Mon" ,"Sun" ,"Dec" ,"Nov" ,"Oct" ,"Sep" ,"Aug" ,"Jul" ,"Jun" ,"May" ,"Apr" ,"Mar" ,"Feb" ,"Jan" ,"December" ,"November" ,"October" ,"September" ,"August" ,"July" ,"June" ,"April" ,"March" ,"February" ,"January" ,"Anno Domini" ,"Before Christ" ,"AD" ,"BC" ,"initializeDateFormatting(<locale>)" ,"en_ISO" ,", call " ,"Locale data has not been initialized" ,"^[^'GyMkSEahKHcLQdDmsvzZ]+" ,"^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)" ,"^'(?:[^']|'')*'" ,"''" ,"Query#addSnapshotListener" ,"MMdd" ,"localIndex" ,"year" ,"doc" ,"get:hasData" ,"snapshot" ,"map2" ,"map1" ,"list2" ,"list1" ,"elements2" ,"elements1" ,"get:seconds" ,", nanoseconds=" ,"Timestamp(seconds=" ,"; for " ,"; silenced" ,"; DISPOSED" ,"elapsed" ,"(no next)" ,"(next: " ,"; paused" ,"kAlwaysCompleteAnimation" ,"(curve: " ,"UNRESOLVED" ,", resolved by: " ,"darkHighContrastElevatedColor" ,"highContrastElevatedColor" ,"darkElevatedColor" ,"elevatedColor" ,"darkHighContrastColor" ,"highContrastColor" ,"darkColor" ,"get:synthesized" ,"onStart" ,"onUpdate" ,"get:local" ,"gesture" ,"while handling a gesture" ,"get:entry" ,"tracker" ,"get:gestureArena" ,"get:global" ,"get:pointer" ,"spontaneous" ,"forced" ,", endAngle=" ,", beginAngle=" ,", radius=" ,"; center=" ,"get:isAnimating" ,"get:floatingActionButtonLocation" ,"get:floatingActionButtonAnimator" ,"get:bottomSheet" ,"get:animationController" ,"get:endDrawer" ,"get:drawer" ,"get:excludeFromSemantics" ,"newValue" ,"get:extendBodyBehindAppBar" ,"get:_widget@319420462" ,"get:extendBody" ,"get:floatingActionButton" ,"get:resizeToAvoidBottomInset" ,"get:appBar" ,"get:body" ,"created by " ,"get:isMaterialAppTheme" ,"\", scale: " ,"by a synchronously-called image error listener" ,"by a synchronously-called image listener" ,"get:onImage" ,"by an image listener" ,"timestamp" ,"resolving an image frame" ,", velocity: ±" ,", time: ±" ,"Tolerance(distance: ±" ,"get:flex" ," OVERFLOWING" ,"get:maxHeight" ,"get:maxWidth" ,"RelativeRect.fromLTRB(" ,"get:isPositioned" ,"get:minWidth" ,"doAntiAias" ,"active" ,"@382305366" ,"package:flutter\/src\/painting\/placeholder_span.dart" ,"PlaceholderSpan" ,"get:onEnd" ,"tween" ,"get:curve" ,"; maintainState: " ,"(opaque: " ,"get:pixels" ," clients" ,"one client, offset " ,"no clients" ,"initialScrollOffset: " ,"get:onPopPage" ,"get:popped" ,"get:localeListResolutionCallback" ,"get:supportedLocales" ,"get:pageRouteBuilder" ,"get:routes" ,"get:home" ,"get:onUnknownRoute" ,"get:onGenerateRoute" ,"initialRouteName" ,"get:actions" ,"get:showSemanticsDebugger" ,"get:onGenerateInitialRoutes" ,"get:initialRoute" ,"get:gaplessPlayback" ,"get:loadingBuilder" ,"get:frameBuilder" ,"get:errorBuilder" ,", to: " ,", from: " ,"HeroFlight(for: " ," to " ," with hero: " ,"to route: " ," from route: " ," tag: " ,"_HeroFlightManifest(" ,"].." ,"..[" ,"Assertion failed: " ,"Broadcast stream controllers do not support pause callbacks" ,"GoogleSignInAccount:" ,"GoogleSignInAuthentication:" ,"[GlobalKey#" ,", animation: " ,"get:view" ,"get:doingPop" ,"get:upperBound" ,"get:currentTrain" ,"_jumpOnAnimationEnd" ,"DateTime is outside valid range: " ," out of range: " ,"Timestamp " ,"nanoseconds" ,"jsonObject" ,"kAlwaysDismissedAnimation" ,"(null; " ,"DefaultCupertinoLocalizations.delegate(en_US)" ,"get:endId" ,"get:beginId" ,", endArc=" ,"; beginArc=" ,"<default FloatingActionButton tag>" ,"get:accentTextTheme" ,"get:primaryTextTheme" ,"get:typography" ,"Warning: The support for configuring the foreground color of FloatingActionButtons using ThemeData.accentIconTheme has been deprecated. Please use ThemeData.floatingActionButtonTheme instead. See https:\/\/flutter.dev\/go\/remove-fab-accent-theme-dependency. This feature was deprecated after v1.13.2." ,"This feature was deprecated after v1.13.2." ,"https:\/\/flutter.dev\/go\/remove-fab-accent-theme-dependency. " ,"instead. See " ,"has been deprecated. Please use ThemeData.floatingActionButtonTheme " ,"FloatingActionButtons using ThemeData.accentIconTheme " ,"The support for configuring the foreground color of " ,"Warning: " ,"get:foregroundColor" ,"get:floatingActionButtonTheme" ,"DefaultMaterialLocalizations.delegate(en_US)" ,"SnackBar" ,"@326267081" ,"package:flutter\/src\/material\/snack_bar.dart" ,"SnackBarClosedReason" ,"Alignment(" ,"bottomCenter" ,"centerRight" ,"centerLeft" ,"topCenter" ,"topLeft" ,"AlignmentDirectional(" ,"AlignmentDirectional.bottomEnd" ,"AlignmentDirectional.bottomCenter" ,"AlignmentDirectional.bottomStart" ,"AlignmentDirectional.centerEnd" ,"AlignmentDirectional.center" ,"AlignmentDirectional.centerStart" ,"AlignmentDirectional.topEnd" ,"AlignmentDirectional.topCenter" ,"AlignmentDirectional.topStart" ,"Iterables do not have same length." ,"\/?(\\d+(\\.\\d*)?)x$" ,"manifest" ,"AssetManifest.json" ,"get:sizeBytes" ,"syncCall" ,"info" ,"Unable to read data" ,"get:bundle" ,"resolving an image codec" ,"get:physicalSize" ,"get:imageCache" ,"errorHandler" ,"errorListener" ,"when reporting an error to an image listener" ,"image resource service" ,"while resolving an image" ,"ImageConfiguration()" ,", name: \"" ,"(bundle: " ,"The ticker was canceled before the \"orCancel\" property was first used." ,"This ticker was canceled: " ,"SizedBox.shrink" ,".shrink" ,"SizedBox.expand" ,".expand" ,"\", " ,"(\"" ,"didRemove" ,"observer" ,"set:onTapDown" ,"set:onDoubleTap" ,"set:onDown" ,"toHeroContext" ,"fromHeroContext" ,"flightDirection" ,"animation" ,"flightContext" ,"get:transitionOnUserGestures" ,"hero" ,"visitor" ,"inviteHero" ,"get:createRectTween" ,"set:_overlay@511319124" ,"get:navigatorRect" ,"get:begin" ,"get:toRoute" ,"get:manifest" ,"flight" ,"get:toHero" ,"get:fromHero" ,"get:fromRoute" ,"abort" ,"get:flightShuttleBuilder" ,"set:_manager@514042876" ,"get:focusScopeNode" ,"status" ,"while notifying listeners for " ,"animation library" ,"while notifying status listeners for " ,"The context used was" ,"No MediaQuery ancestor could be found starting from the context that was passed to MediaQuery.of(). This can happen because you do not have a WidgetsApp or MaterialApp widget (those widgets introduce a MediaQuery), or it can happen if the context you use comes from a widget above those widgets." ,"if the context you use comes from a widget above those widgets." ,"MaterialApp widget (those widgets introduce a MediaQuery), or it can happen " ,"to MediaQuery.of(). This can happen because you do not have a WidgetsApp or " ,"No MediaQuery ancestor could be found starting from the context that was passed " ,"MediaQuery.of() called with a context that does not contain a MediaQuery." ,"span" ,"IconData(U+" ,"getTokenDataFromMap" ,"@609426206" ,"package:google_sign_in_platform_interface\/src\/utils.dart" ,"getUserDataFromMap" ,"Gelasio" ,"Cannot fire new event. Controller is already firing an event" ,"Cannot add new events while doing an addStream" ,"Cannot add new events after calling close" ,"sign_in_canceled" ,"isCanceled" ,"serverAuthCode" ,"User is no longer signed in." ,"get:idToken" ,"google.com" ,"phoneCodeAutoRetrievalTimeout" ,"get:codeSent" ,"forceResendingToken" ,"verificationId" ,"phoneCodeSent" ,"get:verificationFailed" ,"phoneVerificationFailed" ,"phone" ,"phoneAuthCredential" ,"get:verificationCompleted" ,"phoneVerificationCompleted" ,"onAuthStateChanged" ,"accessToken" ,"idToken" ,"lastSignInTimestamp" ,"creationTimestamp" ,"isEmailVerified" ,"isAnonymous" ,"phoneNumber" ,"photoUrl" ,"displayName" ,"providerData" ,"profile" ,"providerId" ,"username" ,"isNewUser" ,"additionalUserInfo" ,"user" ,"provider" ,"get:user" ,"get:accessToken" ,"metadatas" ,"paths" ,"newIndex" ,"oldIndex" ,"@88523433" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/utils\/maps.dart" ,"asStringKeyedMap" ,"MethodChannelDocumentChange." ,"@87376843" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_document_change.dart" ,"MethodChannelDocumentChange" ,"MethodChannelQuerySnapshot." ,"@92218726" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_query_snapshot.dart" ,"MethodChannelQuerySnapshot" ,"documentChanges" ,"[DEFAULT]" ,"__FIRAPP_DEFAULT" ,"theStackTrace" ,"transactionId" ,"DoTransaction" ,"handle" ,"get:arguments" ,"@93010957" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_transaction.dart" ,"MethodChannelTransaction" ,"MethodChannelTransaction." ,"@74074168" ,"package:cloud_firestore_platform_interface\/src\/snapshot_metadata.dart" ,"SnapshotMetadataPlatform" ,"orderBy" ,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" ,"isFromCache" ,"hasPendingWrites" ,"metadata" ,"DocumentReference#get" ,"Platform interfaces must not be implemented with `implements`" ,"`MockPlatformInterfaceMixin` is not intended for use in release builds." ,"get:_instanceToken@63304592" ,"flutter." ,"googleSignInAccountId" ,"plugins.flutter.io\/cloud_firestore" ,"DocumentReference#setData" ,"encryptionKey" ,"uid" ,"users" ,"get:isPresent" ,"get:willBePresent" ,"thunk" ,"get:suitableForTransitionAnimation" ,"get:suitableForAnnouncement" ,"get:_overlay@511319124" ,"get:route" ,"set:_navigator@529124995" ,"get:schedulerPhase" ,"Sign in with Google" ,"assets\/google_logo.png" ,"Reflect every day" ,"Dayflect" ,"Raleway" ,"Signing in" ,"assets\/writing.jpg" ,"oldWidget" ,"get:localizationsDelegates" ,"get:themeMode" ,"onPressed" ,"get:localeResolutionCallback" ,"get:navigatorKey" ,"get:_widget@28042623" ,"BorderRadius.zero" ,"bottomEnd: " ,"bottomStart: " ,"topEnd: " ,"topStart: " ,"BorderRadiusDirectional.only(" ,"BorderRadiusDirectional.all(" ,"BorderRadiusDirectional.circular(" ,"BorderRadius.only(" ,"BorderRadius.all(" ,"BorderRadius.circular(" ,"get:y" ,"set:_element@28042623" ,", v: " ,"(h: " ,"ShapeBorder()" ,"(primary value: " ,"get:inherit" ,"Cannot insert into a fixed-length list" ,"Cannot remove from an unmodifiable list" ,"Cannot remove from a fixed-length list" ,"@264428878" ,"package:flutter\/src\/material\/colors.dart" ,"MaterialColor" ,"0.0)" ,"0.0, " ," + " ,"EdgeInsetsDirectional(" ,"EdgeInsets(" ,"EdgeInsets.all(" ,"EdgeInsets.zero" ,"offset=" ,"get:_markedForFocus@514042876" ,"PathException: " ,"dart" ,": Only valid value is " ,": Valid value range is empty" ,": Not in inclusive range " ,": Not greater than or equal to " ,": Not less than or equal to " ,"Cannot modify unmodifiable map" ,"set:varData" ,"inputEvent" ,"sink" ,"SemanticsFlag.isLink" ,"SemanticsFlag.isFocusable" ,"SemanticsFlag.isReadOnly" ,"SemanticsFlag.isMultiline" ,"SemanticsFlag.hasImplicitScrolling" ,"SemanticsFlag.isToggled" ,"SemanticsFlag.hasToggledState" ,"SemanticsFlag.isLiveRegion" ,"SemanticsFlag.isImage" ,"SemanticsFlag.isHidden" ,"SemanticsFlag.namesRoute" ,"SemanticsFlag.scopesRoute" ,"SemanticsFlag.isObscured" ,"SemanticsFlag.isHeader" ,"SemanticsFlag.isInMutuallyExclusiveGroup" ,"SemanticsFlag.isEnabled" ,"SemanticsFlag.hasEnabledState" ,"SemanticsFlag.isFocused" ,"SemanticsFlag.isTextField" ,"SemanticsFlag.isButton" ,"SemanticsFlag.isSelected" ,"SemanticsFlag.isChecked" ,"SemanticsFlag.hasCheckedState" ,"])" ,"TextDecoration.combine([" ,"TextDecoration." ,"lineThrough" ,"underline" ,"TextDecoration.none" ,"building " ,"Exception caught by " ," (eager winner)" ," [hasPendingSweep]" ," [held]" ," [open]" ,"get:_v4storage@401361246" ,"dim" ,"BoxConstraints(" ,"describe" ,"BoxConstraints(unconstrained" ,"BoxConstraints(biggest" ,"; NOT NORMALIZED" ,"upperLimit" ,"lowerLimit" ,"get:bottom" ,"get:top" ,"defer" ,"<none>" ," DETACHED" ," NEEDS-COMPOSITING-BITS-UPDATE" ," NEEDS-PAINT" ," NEEDS-LAYOUT" ," relayoutBoundary=up" ,"PlatformException(" ,"[PRIMARY FOCUS]" ,"[IN FOCUS PATH]" ,"get:descendantsAreFocusable" ,"get:_focusedChildren@514042876" ,"set:_descendants@514042876" ,":\/\/" ," must have scheme 'file:'." ,"Uri " ,"\\\\" ,"\"." ,"\" from \"" ,"Unable to find a path to \"" ," in " ,"stack_trace" ,"(-patch)?([\/\\\\].*)?$" ,"frame" ,"Bad state: " ,"groupIdx" ,": _" ," method accepting arguments " ,"setter" ,"getter" ," has no " ,"\nFound: " ," = " ,"Tried calling: " ,"Receiver: " ,"Receiver: top-level" ,"declared." ,"No top-level " ,"in class '" ," declared " ,"No constructor '" ,"declared in class '" ,"No static " ,"super." ,"no instance " ,"' has " ,"Super class of class '" ,"' has no instance " ,"Class '" ,"forget the 'new' operator?" ," constructor and " ,"possible. Did you intend to call the " ,"Since types do not define a method 'call', this is not " ,"' as a function. " ,"Attempted to use type '" ,"function '" ,"Closure call with mismatched arguments: " ,"' was called on null." ," '" ,"The null object does not have a " ,"NoSuchMethodError: " ,"variable" ,"getter or setter" ," with matching arguments" ,"NoSuchMethodError: Cannot assign to final variable '" ,"00000" ,"0000" ,"000" ,"00" ,"..\/" ,"Exception: " ,"is not true." ,"': Failed assertion: line " ," pos " ,"': " ,"Expando:null" ,"Expando:" ,"LateInitializationError: " ,"Concurrent modification during iteration: " ,"' line " ,"_url '" ,"Cannot instantiate abstract class " ,"(...)" ,"Unsupported operation: " ,"0.0" ,"Stack Overflow" ,"MapEntry(" ,"InternalError: '" ,"Cannot set value in unmodifiable Map" ,"Cannot remove from unmodifiable Map" ,": index should be less than " ,": no indices are valid" ,": index must not be negative" ,"(s)" ,"Invalid argument" ,"UnimplementedError: " ,"': Switch case fall-through at line " ,"' during its initialization" ,"Reading static variable '" ,"Reading static variable during its initialization" ,"99" ,"98" ,"97" ,"96" ,"95" ,"94" ,"93" ,"92" ,"91" ,"90" ,"89" ,"88" ,"87" ,"86" ,"85" ,"84" ,"83" ,"82" ,"81" ,"79" ,"78" ,"77" ,"76" ,"75" ,"74" ,"73" ,"72" ,"71" ,"70" ,"69" ,"68" ,"67" ,"66" ,"65" ,"64" ,"63" ,"62" ,"61" ,"60" ,"59" ,"58" ,"57" ,"56" ,"55" ,"54" ,"53" ,"52" ,"51" ,"50" ,"49" ,"48" ,"47" ,"46" ,"45" ,"44" ,"43" ,"42" ,"41" ,"40" ,"39" ,"38" ,"37" ,"36" ,"35" ,"34" ,"33" ,"32" ,"31" ,"30" ,"29" ,"28" ,"27" ,"26" ,"24" ,"23" ,"22" ,"21" ,"20" ,"19" ,"18" ,"17" ,"16" ,"15" ,"14" ,"13" ,"12" ,"11" ,"10" ,"-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" ," (at offset " ,"^\n" ," (at character " ,")\n" ,", character " ," (at line " ,"Throw of null." ,"Out of Memory" ,"timer" ,"IsolateSpawnException: " ,"{...}" ,"No events pending." ,"arg2" ,"arg1" ,"_RegisterBinaryZoneFunction@4048458" ,"_RegisterUnaryZoneFunction@4048458" ,"_RegisterNullaryZoneFunction@4048458" ,"_RunBinaryZoneFunction@4048458" ,"_RunUnaryZoneFunction@4048458" ,"_RunNullaryZoneFunction@4048458" ,"Can only fork a platform zone" ,"Can only run in platform zones" ,"Timer interface not supported." ,"No events after a done." ,"get:_isInputPaused@4048458" ,"sendError" ,"subscription" ,"handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace." ,"(the error), or both an Object (the error) and a StackTrace." ,"handleError callback must take either an Object " ,"eventsObj" ,"pendingEvents" ,"Stream has already been listened to." ,"unexpected yield" ,"fillValue" ,"SIMD don't have default compare." ,"skipCount + length" ,"Converting object did not return an encodable object:" ,"Converting object to an encodable object failed:" ,"Cyclic error in JSON stringify" ,": 0x" ,"Not a byte value at index " ,",\"" ,"\":" ,"get:_name@11040228" ,"\")" ,"Symbol(\"" ,"Cannot add to an unmodifiable list" ,"Cannot modify an unmodifiable list" ,"Cannot add to a fixed-length list" ,"Invalid InternetAddress" ,"Unix" ,"IPv6" ,"IPv4" ,"ANY" ,"InternetAddressType: " ,", path = '" ,": errno = " ,", errno = " ,"OS Error" ,"Directory: '" ,"Unknown error" ,"File closed" ,"Cannot retrieve length of file" ,"File: '" ,"Link: '" ," (" ,"reduceMotion" ,"Rect.fromLTRB(" ,"SemanticsAction.moveCursorBackwardByWord" ,"SemanticsAction.moveCursorForwardByWord" ,"SemanticsAction.dismiss" ,"SemanticsAction.customAction" ,"SemanticsAction.didLoseAccessibilityFocus" ,"SemanticsAction.didGainAccessibilityFocus" ,"SemanticsAction.paste" ,"SemanticsAction.cut" ,"SemanticsAction.copy" ,"SemanticsAction.setSelection" ,"SemanticsAction.moveCursorBackwardByCharacter" ,"SemanticsAction.moveCursorForwardByCharacter" ,"SemanticsAction.showOnScreen" ,"SemanticsAction.decrease" ,"SemanticsAction.increase" ,"SemanticsAction.scrollDown" ,"SemanticsAction.scrollUp" ,"SemanticsAction.scrollRight" ,"SemanticsAction.scrollLeft" ,"SemanticsAction.longPress" ,"SemanticsAction.tap" ,"TextBox.fromLTRBD(" ,"fontFeatures: " ,"shadows: " ,"foreground: " ,"background: " ,"wordSpacing: " ,"letterSpacing: " ,"fontFamilyFallback: " ,"textBaseline: " ,"decorationThickness: " ,"decorationStyle: " ,"decorationColor: " ,"decoration: " ,"color: " ,"TextStyle(" ,"locale: " ,"ellipsis: " ,"height: " ,"fontSize: " ,"fontFamily: " ,"applyHeightToLastDescent: " ,"applyHeightToFirstAscent: " ,"TextHeightBehavior(" ,"textHeightBehavior: " ,"maxLines: " ,"fontStyle: " ,"fontWeight: " ,"textDirection: " ,"unspecified" ,"textAlign: " ,"ParagraphStyle(" ,", totalSpan: " ,", rasterDuration: " ,"(buildDuration: " ,", bottom: " ,", right: " ,", top: " ,"WindowPadding(left: " ,"Color(0x" ,"Offset(" ,"Size(" ,"bottomLeft: " ,"bottomRight: " ,"topRight: " ,"topLeft: " ,"RRect.fromLTRBAndCorners(" ,"RRect.fromLTRBXY(" ,"RRect.fromLTRBR(" ,"get:x" ,"Radius.elliptical(" ,"Radius.circular(" ,"ParagraphConstraints(width: " ,", y: " ,"PointerData(x: " ,"\\n ?at " ,"^(([.0-9A-Za-z_$\/<]|\\(.*\\))*@)?[^\\s]*:\\d*$" ,":\\d*" ,"[^\\s]*" ,"([.0-9A-Za-z_$\/<]|\\(.*\\))*" ,"^[^\\s<][^\\s]*( \\d+(:\\d+)?)?[ \\t]+[^\\s]+$" ," ?at " ,"^\\s*at (?:(\\S.*?)(?: \\[as [^\\]]+\\])? \\((.*)\\)|(.*))$" ,"^eval at (?:\\S.*?) \\((.*)\\)(?:, .*?:\\d+:\\d+)?$" ,"^(.*):(\\d+):(\\d+)|native$" ,"(anonymous function)" ,"Anonymous function" ,"<anonymous>" ,"parseLocation" ,"[native code]" ,"^(?:([^@(\/]*)(?:\\(.*\\))?((?:\/[^\/]*)*)(?:\\(.*\\))?@)?(.*?):(\\d*)(?::(\\d*))?$" ,"(?::(\\d*))?" ,"(\\d*)" ,"(.*?)" ,")?" ,"((?:\/[^\/]*)*)" ,"(?:\\(.*\\))?" ,"([^@(\/]*)" ,"(?:" ,"^\\." ,"^[a-zA-Z][-+.a-zA-Z\\d]*:\/\/" ,"^([a-zA-Z]:[\\\\\/]|\\\\\\\\)" ,"Only styles defined by the path package are allowed." ,"allowed." ,"Only styles defined by the path package are " ,"startIndex" ,".<fn>" ,"trace" ,"=====" ,"^(\\S+)(?: (\\d+)(?::(\\d+))?)?\\s+([^\\d].*)$" ,"Contains invalid characters." ,"non-byte value" ,"Value must be a String or a Uri" ,"^[\/\\\\](?![\/\\\\])" ,"^(\\\\\\\\[^\\\\]+\\\\[^\\\\\/]+|[a-zA-Z]:[\/\\\\])" ,"[^\/\\\\]$" ,"[\/\\\\]" ,"[^\/]$" ,"Illegal path character " ,"Invalid URL encoding" ,"Truncated URI" ,"Illegal percent encoding in URI" ,"encodedComponent" ,"Cannot extract a non-Windows file path from a file URI with an authority" ,"with an authority" ,"Cannot extract a non-Windows file path from a file URI " ,"Cannot extract a file path from a URI with a fragment component" ,"Cannot extract a file path from a URI with a query component" ," URI" ,"Cannot extract a file path from a " ,"a\\b" ,"a\/b" ,"^\/" ,"[a-zA-Z][-+.a-zA-Z\\d]*:\/\/[^\/]*" ,"(^[a-zA-Z][-+.a-zA-Z\\d]*:\/\/|[^\/])$" ," was not." ," was null, but part " ,"): part " ,"'." ,"Couldn't parse package:stack_trace stack trace line '" ,"data:..." ,"^#\\d+\\s+(\\S.*) \\((.+?)((?::\\d+){0,2})\\)$" ,"<(<anonymous closure>|[^>]+)_async_body>" ,"unparsed" ,"<fn>" ,"<async>" ,"..." ,".da" ,"<asynchronous suspension>\n" ,"\nStack trace:\n" ,"===== asynchronous gap ===========================\n" ,"\tat " ,"Cannot create a Trace from null." ,"\\s+" ,"boolean" ,"firebase_crashlytics: " ,"Crashlytics#onError" ,"logs" ,"stackTraceElements" ,"The following exception was thrown " ,"get:stack" ,"Flutter error caught by Crashlytics plugin:" ,"<State<StatefulWidget>>" ,"[#" ,"Must be positive and <= 2^32" ,"[Element]" ,"visit" ,"get:_dependents@28042623" ,"Invalid method call: " ,"Expected method call Map, got " ,"Invalid envelope: " ,"Expected envelope List, got " ,"BYTES_PER_ELEMENT (" ,") must be a multiple of " ,"Offset (" ,"<BindingBase>" ,"ifAbsent" ,"<empty path>" ,"HitTestResult(" ,"get:_v3storage@401361246" ,"\n[3] " ,"[2] " ,"\n[1] " ,"[0] " ,"arg" ,"get:_nativeLayer@16065589" ,"annotations: [list of " ,"latestEvent: " ,", canvas bounds: " ,"(layer: " ,"get:parentData" ,"get:_m4storage@401361246" ,"get:isMergingSemanticsOfDescendants" ,"get:storage" ,"get:_detachedNodes@450082469" ,"get:_nodes@450082469" ,"get:_dead@450082469" ,"set:_dead@450082469" ,"get:_ancestorChain@419266271" ,"get:elevation" ,"get:_semantics@419266271" ,"set:_semantics@419266271" ,"get:hasBeenAnnotated" ,"fractionDigits" ,"NaN" ," at " ,"get:_relayoutBoundary@419266271" ,"set:_previousSibling@414518307" ,"get:startOffset" ,"0123456789abcdefghijklmnopqrstuvwxyz" ,"toUnsigned" ,"MissingPluginException(" ,", metaState: " ,"keyCode: " ," flags: " ,", codePoint: " ,"(hidUsage: " ," unicodeScalarValues: " ,", scanCode: " ,"modifiers down: " ,", modifiers: " ," unmodifiedCharacters: " ,", characters: " ,", keyCode: " ,", modifiers down: " ,"metaState: " ,", code: " ,"(keyLabel: " ,"while resolving a PointerSignalEvent" ,"newWidget" ,"^ *(?:[-+*] |[0-9]+[.):] )?" ,"string" ," <no message available>" ," Failed assertion:" ,": " ,"Another exception was thrown: " ,"get:silent" ,"get:physicalX" ,"Error handler must accept one Object or one Object and a StackTrace as arguments, and return a a valid result" ," as arguments, and return a a valid result" ,"Error handler must accept one Object or one Object and a StackTrace" ,"yield before stream is listened to" ,"flutter\/assets" ,"Unable to load asset: " ,"UTF8 decode for \"" ,"@201157633" ,"package:flutter\/src\/foundation\/isolates.dart" ,"get:compute" ,"LICENSE" ,"NOTICES" ,"Internal error: unexpected format for ready message: " ,"Unable to spawn isolate: " ,"errorsAreFatal" ,"spawn" ,"resolvePackageUri" ,"Isolate_sendOOB" ,"_sendOOB@1026248" ,"_spawnCommon@1026248" ,"Isolate" ,"Isolate.resolvePackageUri" ,"Isolate.spawn" ,"_cachedScript@11040228" ,"_computeScriptUri@11040228" ,"timerMillisecondClock" ,"eventHandlerSendData" ,"timerFactory" ,"VMLibraryHooks" ,"get:platformScript" ,"paused" ,"debugName" ,"sendDone" ,"get:varData" ,"Cannot add event while adding a stream" ,"Cannot add event after closing" ,"get:resultPort" ,"get:flowId" ,": returning result" ,"Flow" ,"step" ,"kill" ,": end" ,": start" ,"\n\n" ,"rawLicenses" ,"parseLicenses" ,"init:compute" ,"memoryPressure" ,"fontsChange" ,"get:_fontFamily@16065589" ,"get:_objects@16065589" ,"operation failed" ,"Invalid image dimensions." ,"Uneven calls to start and finish" ,"_finish@5383715" ,"Warm-up shader" ,"_start@5383715" ,"_AsyncBlock@5383715" ,"filterKey" ,"TimelineTask." ,"TimelineTask" ,"get:_depth@204344403" ,"set:_parent@204344403" ,"get:_nodesNeedingLayout@419266271" ,"get:_nodesNeedingPaint@419266271" ,"item" ,"get:semanticsEnabled" ,"get:devicePixelRatio" ,"get:_showOnScreen@450082469" ,"get:semanticsOwner" ,"Flutter framework" ,"while executing callbacks for FrameTiming" ,"get:_nodesNeedingSemantics@419266271" ,"get:_needsLayout@419266271" ,"get:_needsCompositingBitsUpdate@419266271" ,"The following RenderObject was being processed when the exception was fired" ,"rendering library" ,"()" ,"during " ,"get:_needsPaint@419266271" ,"get:annotation" ,"systemNavigationBarIconBrightness" ,"statusBarIconBrightness" ,"statusBarBrightness" ,"statusBarColor" ,"systemNavigationBarDividerColor" ,"systemNavigationBarColor" ,"SystemChrome.setSystemUIOverlayStyle" ,"Compositing" ,"get:tagsForChildren" ,"get:isSemanticBoundary" ,"renderChild" ,"get:isBlockingSemanticsOfPreviouslyPaintedNodes" ,"Too many elements" ,"objects" ," sending notification was" ,"The " ,"foundation library" ,"get:_flags@450082469" ,"get:transform" ,"search" ,"get:isLeadingEdge" ,"get:node" ,"sortNode" ,"get:sortKey" ,"get:left" ,"get:id" ,"get:_dirty@450082469" ,"get:label" ,"get:_dirtyNodes@450082469" ,"get:isPartOfNodeMerging" ,"get:_needsSemanticsUpdate@419266271" ,"while finalizing the widget tree" ,"Finalize tree" ,"get:cursor" ,"annotation" ,"activateSystemCursor" ,"device" ,"get:latestEvent" ,"handler" ,"Window toolkit not recognized: " ,"glfw" ,"Unknown keymap for key events: " ,"Unknown key event type: " ,"keyup" ,"character" ,"characterCodePoint" ,"web" ,"keydown" ,"unicodeScalarValues" ,"toolkit" ,"charactersIgnoringModifiers" ,"characters" ,"hidUsage" ,"repeatCount" ,"deviceId" ,"productId" ,"vendorId" ,"metaState" ,"scanCode" ,"plainCodePoint" ,"codePoint" ,"keymap" ,"get:onKey" ,"android" ,"ios" ,"fuchsia" ,"linux" ,"macos" ,"Consider updating the list of TargetPlatforms to include this platform." ," was not recognized as a target platform. " ,"Unknown platform.\n" ,"get:mouseTracker" ,"while dispatching notifications for " ,"get:kind" ,"get:pointerRouter" ,"Root Focus Scope" ,"Expandos are not allowed on strings, numbers, booleans or null" ,"during a platform message callback" ,"get:locales" ,"get:accessibilityFeatures" ,"SystemNavigator.pop" ,"@474520658" ,"package:flutter\/src\/services\/system_navigator.dart" ,"SystemNavigator" ,"animated" ,"pushRoute" ,"popRoute" ,"get:method" ,"methodCall" ,"Widget creation tracking is currently disabled. Enabling it enables improved error messages. It can be enabled by passing `--track-widget-creation` to `flutter run` or `flutter test`." ,"`--track-widget-creation` to `flutter run` or `flutter test`." ,"it enables improved error messages. It can be enabled by passing " ,"Widget creation tracking is currently disabled. Enabling " ,"get:element" ,"Flutter.FrameworkInitialization" ,"Framework initialization" ,"e2" ,"e1" ,"services library" ,"during a platform message response callback" ,"reply" ," on channel " ,"No implementation found for method " ,"SystemChrome.setPreferredOrientations" ,"The element being rebuilt at the time was index " ,"set:_inDirtyList@28042623" ,"get:dirty" ,"while rebuilding dirty elements" ,"Build" ,"get:exception" ,"get:_active@28042623" ,"set:_parent@28042623" ,"get:_inactiveElements@28042623" ,"element" ,"widgets library" ,"attaching to the render tree" ,"[root]" ,"get:rootNode" ,"get:_path@224494604" ,"set:_transform@224494604" ,"while routing a pointer event" ,"while dispatching a pointer event" ,"gesture library" ,"while dispatching a non-hit-tested pointer event" ,"get:down" ,"during a task callback" ,"get:priority" ,"Lock events" ,"get:_duration@0150898" ,"callbackEntry" ,"Animate" ,"rawTimeStamp" ,"scheduler library" ,"during a scheduler callback" ,"Future already completed" ,"timeStamp" ,"{}" ,"Dart" ,"Uneven calls to startSync and finishSync" ,"Warm-up frame" ,"set:enableInDevMode" ,"main" ,"Invalid value" ,"'Uri.base' is not supported" ,"entryPoint" ,"get:_indexOrNext@1026248" ,"get:_wakeupTime@1026248" ,"isFirst" ,"repeating" ,"milliSeconds" ,"get:_isComplete@4048458" ,"get:_isChained@4048458" ,"sourceResult" ,"get:result" ,"handleValueCallback" ,"handleWhenCompleteCallback" ,"get:error" ,"Microtasks are not supported" ,"init:#sizeOf" ,"dart:ffi\/struct.dart" ,"Dart_CObject.#fromPointer" ,"get:#sizeOf" ,"Dart_CObject" ,"get:_fns@9179448" ,"imp" ,"dart:wasm-patch\/wasm_patch.dart" ,"WasmImports" ,"getFunction" ,"_NativeWasmImports@9179448" ,"'print' is not supported" ,"Extension already registered: " ,"Must begin with ext." ,"ext." ,"HttpTimelineLoggingState" ,"' is not valid: " ,"Value for parameter '" ,"Parameter 'enable' is required" ,"' is required" ,"Parameter '" ,"enable" ,"sockets" ,"SocketProfile" ,"Success" ,"minor" ,"major" ,"Version" ,"Out of range" ,"errorCode" ," does not exist" ,"Method " ,"ext.dart.io.getVersion" ,"ext.dart.io.clearSocketProfile" ,"ext.dart.io.pauseSocketProfiling" ,"ext.dart.io.startSocketProfiling" ,"ext.dart.io.getSocketProfile" ,"ext.dart.io.setHttpEnableTimelineLogging" ,"ext.dart.io.getHttpEnableTimelineLogging" ,"rawPath" ,"Invalid base64 padding, more than two '=' characters" ,"Invalid base64 padding, '=' not at the end" ,"is " ,"Invalid base64 padding, padded length must be multiple of four, " ,"Invalid base64 encoding length " ,"Invalid base64 data" ,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+\/" ,"Expecting '='" ,"Invalid MIME type" ,"+-." ,"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=" ,"Invalid port" ,"Invalid empty scheme" ,"443" ,"80" ,"file:\/\/" ,"file:\/\/\/" ,"\/.." ,"file:" ,"data:" ,"https:" ,"http:" ,"sendPort" ,"Illegal drive letter " ,"No such element" ,"LinkedListEntry is already in a LinkedList" ,"get:list" ,"Illegal character in path: " ,"Illegal character in path" ,"[\"*\/:<>?\\\\|]" ,"Windows paths with drive letter must be absolute" ,"Windows paths with \\\\?\\ prefix must be absolute" ,"UNC\\" ,"\\\\?\\" ,"https" ,"http" ,"Illegal scheme character" ,"Scheme not starting with alphabetic character" ,"ZoneID should not contain % anymore" ,"Illegal IPv4 address, each part must be in the range 0..255" ,"each part must be in the range 0..255" ,"Illegal IPv4 address, IPv4 address should contain exactly 4 parts" ,"IPv4 address should contain exactly 4 parts" ,"Illegal IPv4 address, invalid character" ,"invalid character" ,"Illegal IPv4 address, " ,"Illegal IPv6 address, " ,"msg" ,"each part must be in the range of `0x0..0xFFFF`" ,"an IPv6 part can only contain a maximum of 4 hex digits" ,"an address without a wildcard must contain exactly 8 parts" ,"an address with a wildcard must have less than 7 parts" ,"expected a part after last `:`" ,"too few parts" ,"only one wildcard `::` is allowed" ,"invalid start colon." ,"address is too short" ,"parseHex" ,"25" ,"Missing end `]` to match `[` in host" ,"unreachable" ,"Invalid character" ,"%25" ,"0123456789ABCDEF" ,"Both path and pathSegments specified" ,"%3A" ,".\/" ,"\/." ,"\/\/" ,"file" ,"Getting current working directory failed" ,"Attempt to execute code removed by Dart AOT compiler (TFA)" ,"get:_signalNumber@15069316" ,"signal" ,"Invalid type: " ,"get:_strutStyle@16065589" ,"\"recorder\" must not already be associated with another Canvas." ,"\"matrix4\" must have 16 entries." ,"get:onMetricsChanged" ,"set:_devicePixelRatio@16065589" ,"systemGestureInsetLeft" ,"systemGestureInsetBottom" ,"systemGestureInsetRight" ,"systemGestureInsetTop" ,"viewInsetLeft" ,"viewInsetBottom" ,"viewInsetRight" ,"viewInsetTop" ,"viewPaddingLeft" ,"viewPaddingBottom" ,"viewPaddingRight" ,"viewPaddingTop" ,"depth" ,"get:onLocaleChanged" ,"get:_locales@16065589" ,"set:_locales@16065589" ,"locales" ,"set:_platformResolvedLocale@16065589" ,"localeData" ,"Invalid hex digit" ,"" ,"Invalid unicode escape" ,"Unrecognized string escape" ,"Control character in string" ,"Missing expected digit" ,"Too few elements" ,"nfinity" ,"Invalid double" ,"Unterminated number literal" ,"Unexpected character" ,"Unexpected end of input" ,"Unterminated string" ,"set:_textScaleFactor@16065589" ,"set:_alwaysUse24HourFormat@16065589" ,"get:onPlatformBrightnessChanged" ,"set:_platformBrightness@16065589" ,"dark" ,"jsonData" ,"get:_initialLifecycleStateAccessed@16065589" ,"set:_semanticsEnabled@16065589" ,"set:_accessibilityFeatures@16065589" ,"get:_accessibilityFeatures@16065589" ,"Value not in range" ,"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE" ,"Unfinished UTF-8 octet sequence" ,"Encoded surrogate" ,"Out of unicode range" ,"Overlong encoding" ,"Invalid UTF-8 byte" ,"Unexpected extension byte" ,"Missing extension byte" ,"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDaaIIQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQRRRRRbbbbbbbbbbb" ," number" ,"Invalid radix-" ,"Invalid number" ,"Index out of range" ,"Negative input exceeds the limit of integer" ,"Positive input exceeds the limit of integer" ," not in range 2..36" ,"Radix " ,"The source must not be null" ,"\" as a result of shrinking the buffer size." ,"Dropping messages on channel \"" ," sent to " ,"Unrecognized command " ,"No element" ,"iterable" ,"val" ,"the buffer size of the channel." ,"The engine may not be running or you need to adjust " ,"Messages on this channel are being discarded in FIFO fashion. " ,". " ,"Overflow on channel: " ,"responseData" ,"\" caused exception " ,"Message to \"" ,"get:onPlatformMessage" ,"dev.flutter\/channel-buffers" ,"responseId" ,"byteOffset" ,"get:onPointerDataPacket" ,"packet" ,"get:onSemanticsAction" ,"action" ,"get:onBeginFrame" ,"get:onReportTimings" ,"timings" ,"get:onDrawFrame" ,"Must not be null" ,"zone" ,"self" ,"args" ,"userMainFunction" ,"startMainIsolateFunction" ,"StackTrace_clearAsyncThreadStackTrace" ,"_clearAsyncThreadStackTrace@4048458" ,"FieldValueType" ,"@90199539" ,"package:cloud_firestore_platform_interface\/src\/method_channel\/method_channel_field_value.dart" ,"NavigationRailLabelType" ,"@303204476" ,"package:flutter\/src\/material\/navigation_rail.dart" ,"ScaleGestureRecognizer" ,"ScaleStartDetails" ,"ScaleUpdateDetails" ,"_ScaleState@233213599" ,"ScaleEndDetails" ,"@233213599" ,"package:flutter\/src\/gestures\/scale.dart" ,"_didUpdateSemantics@532241909" ,"_SemanticsClient@532241909" ,"__SemanticsDebuggerState&State&WidgetsBindingObserver@532241909" ,"_handleLongPress@532241909" ,"_handleTap@532241909" ,"_update@532241909" ,"_SemanticsDebuggerState@532241909" ,"SemanticsDebugger" ,"@532241909" ,"package:flutter\/src\/widgets\/semantics_debugger.dart" ,"ListTileStyle" ,"@297247952" ,"package:flutter\/src\/material\/list_tile.dart" ,"init:_enableServicePortFallback@17205832" ,"_enableServicePortFallback@17205832" ,"_signalWatch@17205832" ,"init:_isFuchsia@17205832" ,"_isFuchsia@17205832" ,"init:_isWindows@17205832" ,"_isWindows@17205832" ,"_serviceInfoFilename@17205832" ,"init:_originCheckDisabled@17205832" ,"_originCheckDisabled@17205832" ,"init:_authCodesDisabled@17205832" ,"_authCodesDisabled@17205832" ,"init:_autoStart@17205832" ,"_autoStart@17205832" ,"init:_ip@17205832" ,"_ip@17205832" ,"init:_port@17205832" ,"_port@17205832" ,"@17205832" ,"vmservice_io" ,"@9179448" ,"dart.wasm" ,"@13168694" ,"dart._vmservice" ,"@7027147" ,"dart.typed_data" ,"@22500793" ,"@6320332" ,"@2408521" ,"dart.mirrors" ,"@12383281" ,"dart.math" ,"_TransferableTypedDataImpl@1026248" ,"@1026248" ,"dart.isolate" ,"dart:_internal-patch\/patch.dart" ,"dart:_internal-patch\/class_id_fasta.dart" ,"ClassID_getID" ,"@11040228" ,"dart._internal" ,"dart:ffi\/annotations.dart" ,"_NativeInteger@8050071" ,"_NativeDouble@8050071" ,"@8050071" ,"dart.ffi" ,"dart:developer\/profiler.dart" ,"dart:developer-patch\/profiler.dart" ,"UserTag" ,"_UserTag@5383715" ,"@5383715" ,"dart.developer" ,"dart:convert\/latin1.dart" ,"@10003594" ,"dart.convert" ,"@3220832" ,"dart.collection" ,"dart:core\/object.dart" ,"dart:core\/null.dart" ,"dart:core\/bool.dart" ,"dart:core\/annotations.dart" ,"dart:core-patch\/weak_property.dart" ,"dart:core-patch\/stacktrace.dart" ,"dart:core-patch\/lib_prefix.dart" ,"dart:core-patch\/integers.dart" ,"dart:core-patch\/function.dart" ,"_LibraryPrefix@0150898" ,"_TypeRef@0150898" ,"_StackTrace@0150898" ,"_TypeParameter@0150898" ,"@0150898" ,"dart.core" ,"_closure@4048458" ,"_ScheduleImmediate@4048458" ,"_stateData@4048458" ,"set:_stateData@4048458" ,"get:_stateData@4048458" ,"_StreamIterator@4048458" ,"@4048458" ,"dart.async" ,"_GrowableList@0150898" ,"targetHeight" ,"oldPredicate" ,"set:_context@0150898" ,"currentPage" ,"Object_simpleInstanceOf" ,"onePhysicalPixelVerticalDivider" ,"scrollChildCount" ,"arrowPadding" ,"centersVector" ,"absorber" ,"listeners" ,"set:_function@0150898" ,"horizontal" ,"nodes" ,"dayToBuild" ,"newDate" ,"newSlot" ,"navButton" ,"memories" ,"willShowSelectionHandles" ,"sizedConstraints" ,"_shrFromInteger@0150898" ,"nearestScope" ,"widget" ,"_Float64x2@7027147" ,"hadScheduledFrame" ,"get:_function_type_arguments@0150898" ,"theme" ,"selectedItemIndex" ,"existingState" ,"baseTheme" ,"untrackedPendingImage" ,"isSpawnUri" ,"textSelection" ,"dirtyCount" ,"nextTrain" ,"visitedIds" ,"hasUpdatedNewestYear" ,"_simpleInstanceOf@0150898" ,"arg3" ,"actionElement" ,"_cacheEvictIndex@0150898" ,"overlay" ,"referenceRoutes" ,"dyn:|" ,"listenerTask" ,"groups" ,"slivers" ,"get:_function@0150898" ,"argumentsBuf" ,"panHandler" ,"trailingChildWithLayout" ,"remaining" ,"aColors" ,"edges" ,"firstFrameCallback" ,"dataToEncrypt" ,"childrenMergeIntoParent" ,"horizontalHandler" ,"_IntegerImplementation@0150898" ,"hasError" ,"flightType" ,"outputCodepoints" ,"set:_delayed_type_arguments@0150898" ,"hasPrimaryFocus" ,"systemMessage" ,":return_value" ,"digestIdentifierHex" ,"isUserGestureTransition" ,"encryptedData" ,"endVal" ,"fragments" ,"_extendBody" ,":saved_try_context_var2" ,"blockLength" ,"typeToResources" ,"chosenBundle" ,"abortWalk" ,"nodeMap" ,"output" ,"overflowHeight" ,"_instanceOf@0150898" ,"firstPageWidth" ,"focusedChild" ,"contents" ,"rootWidget" ,"subsequentPageButtonsWidth" ,"dropSemanticsOfPreviousSiblings" ,"listenedOnce" ,"fitWidth" ,"parsedJson" ,"pressure" ,"_context@0150898" ,"customSemanticsActionIds" ,"sortedIds" ,"_List@0150898" ,":stack_trace0" ,"mouseIsConnected" ,"sliverResult" ,"_OneByteString@0150898" ,"newChildren" ,"shouldStartAnimation" ,"bitLength" ,"description" ,"_handle" ,"endScrollOffset" ,"_Smi@0150898" ,"_simpleInstanceOfFalse@0150898" ,"_function_type_arguments@0150898" ,"longest" ,"get:_instantiator_type_arguments@0150898" ,"set:_function_type_arguments@0150898" ,"dyn:>" ,"set:_instantiator_type_arguments@0150898" ,"dyn:>=" ,"leadingGarbage" ,"composingStart" ,"controls" ,"transformedPosition" ,"toBeMarkedExplicit" ,"credential" ,"pos" ,"obtainedKey" ,"_Double@0150898" ,"it" ,"dyn:<<" ,"directionality" ,"verticalHandler" ,"_function@0150898" ,"hovering" ,"get:_delayed_type_arguments@0150898" ,"mergedTags" ,"focusedScrollable" ,"originalSource" ,":async_op_then" ,"splash" ,"argument" ,"callbackStack" ,"updatedText" ,"sortedDescendants" ,"currentButtonPosition" ,"pendingList" ,"parentZone" ,"computer" ,"argumentCount" ,"get:_hash@0150898" ,"dateTime" ,"completer" ,"animationStatusCallback" ,"wasHeldDown" ,"localTextGeometry" ,"registered" ,"allStringKeys" ,"distanceFromAtoB" ,"digestName" ,"_hash@0150898" ,"toolbarWidth" ,"themeTypes" ,"targetWidth" ,":async_op_error" ,"withMac" ,"_InternalLinkedHashMap@3220832" ,"policyData" ,"successCallback" ,"nextRoute" ,"childElement" ,"newEntriesList" ,"tables" ,"init:_cacheEvictIndex@0150898" ,":exception0" ,"_WeakProperty@0150898" ,"keyValueList" ,"isSnackBarFloating" ,"nextSize" ,"readyPort" ,"_delayed_type_arguments@0150898" ,":async_temporary_0" ,"bColors" ,"_instantiator_type_arguments@0150898" ,"bits" ,"minInsets" ,"bStops" ,"listenerHasError" ,"_ExternalOneByteString@0150898" ,"_ExternalTwoByteString@0150898" ,"get:_context@0150898" ,"themes" ,"_Mint@0150898" ,"listenerValueOrError" ,"dispatcher" ,"dyn:<" ,"trailingGarbage" ,"producesForkingFragment" ,":saved_try_context_var0" ,"newAnimation" ,"_Closure@0150898" ,"_Float32x4@7027147" ,"_ImmutableList@0150898" ,"pan" ,"band" ,"builders" ,"didError" ,"menu" ,"aStops" ,"Integer_shrFromInteger" ,"set:_hash@0150898" ,"registrationZone" ,"expectedDepth" ,"inLayoutRange" ,"_simpleInstanceOfTrue@0150898" ,":saved_try_context_var1" ,"orientations" ,"parsedLicenses" ,"_TwoByteString@0150898" ,"composingEnd" ,"callbackIdentity" ,"continuation" ,"results" ,"groupKeys" ,"Object_instanceOf" ,"_Int32x4@7027147" ,"_CompactLinkedHashSet@3220832" ,"estimate" ,"▶" ,"◀" ,"├, selection: " ,"(text: ┤" ,"•" ,"➪" ,"ₒₙ" ,"ₒₙ\/" ,")➩" ,"…" ,"⏮" ,"⏭" ,"➩" ," → " ," ← " ,"⋯" ,"\u202A" ,"\u202C" ,"\u202B" ,"Unnamed [TypedData] (nil)" ,"name_" ,"user_name_" ,"functions_" ,"functions_hash_table_" ,"fields_" ,"offset_in_words_to_field_" ,"interfaces_" ,"script_" ,"library_" ,"type_parameters_" ,"super_type_" ,"signature_function_" ,"constants_" ,"declaration_type_" ,"invocation_dispatcher_cache_" ,"allocation_stub_" ,"Unnamed [PatchClass] (nil)" ,"patched_class_" ,"origin_class_" ,"result_type_" ,"parameter_types_" ,"parameter_names_" ,"data_" ,"code_" ,"Unnamed [ClosureData] (nil)" ,"parent_function_" ,"signature_type_" ,"closure_" ,"Unnamed [SignatureData] (nil)" ,"type_" ,"initializer_function_" ,"\"static value\"" ,"\"offset\"" ,"url_" ,"private_key_" ,"dictionary_" ,"metadata_" ,"toplevel_class_" ,"used_scripts_" ,"imports_" ,"exports_" ,"handled_types_data_" ,"target_name_" ,"args_descriptor_" ,"buckets_" ,"mask_" ,"Unnamed [SubtypeTestCache] (nil)" ,"cache_" ,"Unnamed [Instance] (nil)" ,"instantiations_" ,"Unnamed [Type] (nil)" ,"type_test_stub_" ,"type_class_id_" ,"arguments_" ,"hash_" ,"signature_" ,"Unnamed [TypeRef] (nil)" ,"Unnamed [TypeParameter] (nil)" ,"bound_" ,"parameterized_function_" ,"Unnamed [Closure] (nil)" ,"instantiator_type_arguments_" ,"function_type_arguments_" ,"delayed_type_arguments_" ,"function_" ,"context_" ,"Unnamed [double] (nil)" ,"Unnamed [GrowableObjectArray] (nil)" ,"length_" ,"object_class" ,"object_type" ,"legacy_object_type" ,"nullable_object_type" ,"null_class" ,"null_type" ,"never_class" ,"never_type" ,"function_type" ,"legacy_function_type" ,"type_type" ,"closure_class" ,"number_type" ,"legacy_number_type" ,"int_type" ,"legacy_int_type" ,"nullable_int_type" ,"integer_implementation_class" ,"smi_class" ,"smi_type" ,"legacy_smi_type" ,"mint_class" ,"mint_type" ,"legacy_mint_type" ,"double_class" ,"double_type" ,"legacy_double_type" ,"nullable_double_type" ,"float32x4_type" ,"int32x4_type" ,"float64x2_type" ,"string_type" ,"legacy_string_type" ,"type_argument_int" ,"type_argument_legacy_int" ,"type_argument_double" ,"type_argument_legacy_double" ,"type_argument_string" ,"type_argument_legacy_string" ,"type_argument_string_dynamic" ,"type_argument_legacy_string_dynamic" ,"type_argument_string_string" ,"type_argument_legacy_string_legacy_string" ,"future_class" ,"nullable_future_null_type" ,"one_byte_string_class" ,"two_byte_string_class" ,"external_one_byte_string_class" ,"external_two_byte_string_class" ,"bool_type" ,"legacy_bool_type" ,"bool_class" ,"array_class" ,"array_type" ,"legacy_array_type" ,"immutable_array_class" ,"growable_object_array_class" ,"linked_hash_map_class" ,"linked_hash_set_class" ,"float32x4_class" ,"int32x4_class" ,"float64x2_class" ,"weak_property_class" ,"symbol_table" ,"canonical_types" ,"canonical_type_arguments" ,"async_library" ,"core_library" ,"collection_library" ,"convert_library" ,"developer_library" ,"ffi_library" ,"_internal_library" ,"isolate_library" ,"math_library" ,"mirrors_library" ,"native_wrappers_library" ,"root_library" ,"typed_data_library" ,"_vmservice_library" ,"wasm_library" ,"libraries" ,"libraries_map" ,"closure_functions" ,"pending_classes" ,"stack_overflow" ,"out_of_memory" ,"async_clear_thread_stack_trace" ,"canonicalized_stack_map_entries" ,"global_object_pool" ,"megamorphic_cache_table" ,"build_method_extractor_code" ,"dispatch_table_null_error_stub" ,"null_error_stub_with_fpu_regs_stub" ,"null_error_stub_without_fpu_regs_stub" ,"null_arg_error_stub_with_fpu_regs_stub" ,"null_arg_error_stub_without_fpu_regs_stub" ,"range_error_stub_with_fpu_regs_stub" ,"range_error_stub_without_fpu_regs_stub" ,"allocate_mint_with_fpu_regs_stub" ,"allocate_mint_without_fpu_regs_stub" ,"stack_overflow_stub_with_fpu_regs_stub" ,"stack_overflow_stub_without_fpu_regs_stub" ,"allocate_array_stub" ,"allocate_context_stub" ,"allocate_object_stub" ,"allocate_object_parametrized_stub" ,"clone_context_stub" ,"write_barrier_wrappers_stub" ,"array_write_barrier_stub" ,"throw_stub" ,"re_throw_stub" ,"assert_boolean_stub" ,"instance_of_stub" ,"init_static_field_stub" ,"init_instance_field_stub" ,"init_late_instance_field_stub" ,"init_late_final_instance_field_stub" ,"call_closure_no_such_method_stub" ,"default_tts_stub" ,"default_nullable_tts_stub" ,"top_type_tts_stub" ,"unreachable_tts_stub" ,"slow_tts_stub" ,"dispatch_table" ,"Unnamed [DispatchTable] (nil)" ,"Unnamed [(RO) PcDescriptors] (nil)" ,"Unnamed [(RO) CodeSourceMap] (nil)" ,"Unnamed [(RO) CompressedStackMaps] (nil)" ,"Unnamed [(RO) _TwoByteString] (nil)" ,"_kDartIsolateSnapshotInstructions" ,"Precompiled__CastListBase_11040228_getRange_0" ,"Precompiled_CastIterable_CastIterable__1" ,"Precompiled_AllocationStub_CastIterable_2" ,"Precompiled_List_castFrom_3" ,"Precompiled_AllocationStub_CastList_4" ,"Precompiled__CastListBase_11040228_add_add_5" ,"Precompiled__CastListBase_11040228_dyn____6" ,"Precompiled__CastIterableBase_11040228_contains_contains_7" ,"Precompiled_ListMixin__compareAny_3220832_8" ,"Precompiled_Comparable_compare_9" ,"Precompiled_Comparable_compare_compare_10" ,"Precompiled_TypeTestingStub_dart_core__Comparable_11" ,"Precompiled_ListMixin__compareAny_3220832__compareAny_3220832_12" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_contains_contains_13" ,"Precompiled_Set_castFrom_14" ,"Precompiled_AllocationStub_CastSet_15" ,"Precompiled_CastSet_add_add_16" ,"Precompiled_CastSet__conditionalAdd_11040228_17" ,"Precompiled__HashFieldBase_3220832__HashFieldBase_3220832__18" ,"Precompiled__HashBase_3220832__indexSizeToHashMask_3220832_19" ,"Precompiled____init_is64Bit_20" ,"Precompiled_____inquireIs64Bit_11040228_21" ,"Precompiled____init__printClosure_11040228_22" ,"Precompiled____printToConsole_23" ,"Precompiled_____checkCount_11040228_24" ,"Precompiled_RangeError_checkNotNegative_25" ,"Precompiled_RangeError_RangeError_range_26" ,"Precompiled_AllocationStub_ArgumentError_27" ,"Precompiled_Error__objectToString_0150898_28" ,"Precompiled_Object__toString_0150898_29" ,"Precompiled_Error__stringToSafeString_0150898_30" ,"Precompiled_JsonCodec_encode_31" ,"Precompiled_Codec_encode_32" ,"Precompiled_Converter_castFrom_33" ,"Precompiled_AllocationStub_CastConverter_34" ,"Precompiled_JsonCodec_decode_35" ,"Precompiled_Error_safeToString_36" ,"Precompiled_Error_set__stackTrace_0150898_37" ,"Precompiled_Error_get__stackTrace_0150898_38" ,"Precompiled_ArgumentError_ArgumentError_value_39" ,"Precompiled_ArgumentError_ArgumentError__40" ,"Precompiled_RangeError_checkValidRange_41" ,"Precompiled_RangeError_checkValidIndex_42" ,"Precompiled_IndexError_IndexError__43" ,"Precompiled_AllocationStub_IndexError_44" ,"Precompiled_RangeError_checkValueInInterval_45" ,"Precompiled_RangeError_RangeError__46" ,"Precompiled_num_tryParse_47" ,"Precompiled_double_tryParse_48" ,"Precompiled_double__parse_0150898_49" ,"Precompiled_double__nativeParse_0150898_50" ,"Precompiled_double_parse_51" ,"Precompiled_AllocationStub_FormatException_52" ,"Precompiled_Exception_Exception__53" ,"Precompiled_AllocationStub__Exception_0150898_54" ,"Precompiled_FormatException_FormatException__55" ,"Precompiled_double__tryParseDouble_0150898_56" ,"Precompiled_AllocationStub__Double_0150898_57" ,"Precompiled_int__tryParseSmi_0150898_58" ,"Precompiled_int_init__int64OverflowLimits_0150898_59" ,"Precompiled_Int64List_Int64List__60" ,"Precompiled_int_parse_61" ,"Precompiled__StringBase_0150898__interpolate_0150898_62" ,"Precompiled__OneByteString_0150898__concatAll_0150898_63" ,"Precompiled____allocateOneByteString_64" ,"Precompiled__StringBase_0150898__concatRangeNative_0150898_65" ,"Precompiled__StringBase_0150898_replaceFirst_66" ,"Precompiled__StringBase_0150898_replaceRange_67" ,"Precompiled__StringBase_0150898__joinReplaceAllResult_0150898_68" ,"Precompiled__GrowableList_0150898__grow_0150898_69" ,"Precompiled__GrowableList_0150898__allocateData_0150898_70" ,"Precompiled__GrowableList_0150898_init__emptyList_0150898_71" ,"Precompiled__StringBase_0150898__addReplaceSlice_0150898_72" ,"Precompiled__GrowableList_0150898_add_add_73" ,"Precompiled_List_List__fromLiteral_0150898_74" ,"Precompiled__GrowableList_0150898__GrowableList_0150898__withData_0150898_75" ,"Precompiled_TypeTestingStub_dart_core___GrowableList__T_76" ,"Precompiled__GrowableList_0150898__GrowableList_0150898__77" ,"Precompiled__OneByteString_0150898__setRange_0150898_78" ,"Precompiled__StringBase_0150898_dyn___79" ,"Precompiled__StringBase_0150898_dyn____80" ,"Precompiled__StringBase_0150898__createStringFromIterable_0150898_81" ,"Precompiled__StringBase_0150898__createOneByteString_0150898_82" ,"Precompiled_List_List_generate_83" ,"Precompiled_AllocationStub__Closure_0150898_84" ,"Precompiled____makeListFixedLength_85" ,"Precompiled__IntegerImplementation_0150898___86" ,"Precompiled__IntegerImplementation_0150898__bitOrFromInteger_0150898_87" ,"Precompiled__StringBase_0150898_createFromCharCodes_88" ,"Precompiled__StringBase_0150898__createFromCodePoints_0150898_89" ,"Precompiled__TwoByteString_0150898__allocateFromTwoByteList_0150898_90" ,"Precompiled__StringBase_0150898__scanCodeUnits_0150898_91" ,"Precompiled_List_List_from_92" ,"Precompiled__StringBase_0150898_contains_contains_93" ,"Precompiled__StringBase_0150898__substringMatches_0150898_94" ,"Precompiled__StringBase_0150898_trimRight_95" ,"Precompiled__StringBase_0150898__substringUnchecked_0150898_96" ,"Precompiled__StringBase_0150898_substring_97" ,"Precompiled__StringBase_0150898_lastIndexOf_98" ,"Precompiled__StringBase_0150898__matchString_0150898_99" ,"Precompiled__StringBase_0150898__matchString_0150898__matchString_0150898_100" ,"Precompiled_TypeTestingStub_dart_core__Match_101" ,"Precompiled__StringBase_0150898_get_runes_102" ,"Precompiled_AllocationStub_Runes_103" ,"Precompiled_AllocationStub_RuneIterator_104" ,"Precompiled__StringBase_0150898_splitMapJoin_105" ,"Precompiled_StringBuffer_write_106" ,"Precompiled_StringBuffer_writeln_107" ,"Precompiled_StringBuffer_writeAll_108" ,"Precompiled_StringBuffer_writeCharCode_109" ,"Precompiled_StringBuffer__ensureCapacity_0150898_110" ,"Precompiled_Uint16List_Uint16List__111" ,"Precompiled_StringBuffer__create_0150898_112" ,"Precompiled_StringBuffer__compact_0150898_113" ,"Precompiled__GrowableList_0150898_set_length_114" ,"Precompiled__GrowableList_0150898__shrink_0150898_115" ,"Precompiled__StringBase_0150898__concatRange_0150898_116" ,"Precompiled__RegExpMatch_0150898__end_0150898_117" ,"Precompiled_AllocationStub__RegExpMatch_0150898_118" ,"Precompiled__RegExpMatch_0150898_dyn____119" ,"Precompiled_String_String_fromCharCode_120" ,"Precompiled_String_String_fromCharCodes_121" ,"Precompiled_TypeTestingStub_dart_core__String_122" ,"Precompiled_TypeTestingStub_dart_core__RegExpMatch_123" ,"Precompiled_StringBuffer__addPart_0150898_124" ,"Precompiled__GrowableList_0150898__GrowableList_0150898_withCapacity_125" ,"Precompiled_StringBuffer__consumeBuffer_0150898_126" ,"Precompiled__RegExpMatch_0150898__start_0150898_127" ,"Precompiled_AllocationStub__AllMatchesIterator_0150898_128" ,"Precompiled_StringBuffer_StringBuffer__129" ,"Precompiled_AllocationStub_StringBuffer_130" ,"Precompiled_AllocationStub__AllMatchesIterable_0150898_131" ,"Precompiled_IterableBase_iterableToFullString_132" ,"Precompiled_____isToStringVisiting_3220832_133" ,"Precompiled____init__toStringVisiting_3220832_134" ,"Precompiled_____dynamicCompare_3220832_135" ,"Precompiled_____dynamicCompare_3220832__dynamicCompare_3220832_136" ,"Precompiled_____iterablePartsToStrings_3220832_137" ,"Precompiled_AllocationStub__Mint_0150898_138" ,"Precompiled__StringBase_0150898__interpolateSingle_0150898_139" ,"Precompiled_____defaultHashCode_3220832_140" ,"Precompiled_____defaultHashCode_3220832__defaultHashCode_3220832_141" ,"Precompiled_____defaultEquals_3220832_142" ,"Precompiled_____defaultEquals_3220832__defaultEquals_3220832_143" ,"Precompiled_____rehashObjects_3220832_144" ,"Precompiled_IterableBase_iterableToShortString_145" ,"Precompiled__StringBase_0150898_endsWith_146" ,"Precompiled__StringBase_0150898_trimLeft_147" ,"Precompiled__StringBase_0150898__joinReplaceAllOneByteResult_0150898_148" ,"Precompiled__StringBase_0150898_replaceAll_149" ,"Precompiled__StringBase_0150898____150" ,"Precompiled__StringBase_0150898__stringIdentity_0150898__stringIdentity_0150898_151" ,"Precompiled_int__parse_0150898_152" ,"Precompiled_int__parseRadix_0150898_153" ,"Precompiled_int__initInt64OverflowLimits_0150898_154" ,"Precompiled__IntegerImplementation_0150898_remainder_155" ,"Precompiled__IntegerImplementation_0150898____156" ,"Precompiled__IntegerImplementation_0150898__truncDivFromInteger_0150898_157" ,"Precompiled__IntegerImplementation_0150898____158" ,"Precompiled_int__parseBlock_0150898_159" ,"Precompiled__IntegerImplementation_0150898____160" ,"Precompiled_int__throwFormatException_0150898_161" ,"Precompiled_int__kNull_0150898__kNull_0150898_162" ,"Precompiled__Double_0150898__Double_0150898_fromInteger_163" ,"Precompiled__StringBase_0150898_startsWith_164" ,"Precompiled__StringBase_0150898__lastNonWhitespace_0150898_165" ,"Precompiled__StringBase_0150898__firstNonWhitespace_0150898_166" ,"Precompiled_int_tryParse_167" ,"Precompiled__StringBase_0150898_trim_168" ,"Precompiled_num_parse_169" ,"Precompiled_AllocationStub_RangeError_170" ,"Precompiled_ArgumentError_checkNotNull_171" ,"Precompiled____spawnFunction_172" ,"Precompiled____writeIntoOneByteString_173" ,"Precompiled____allocateTwoByteString_174" ,"Precompiled____get__printClosure_11040228_175" ,"Precompiled_____boundsCheckForPartialInstantiation_11040228_176" ,"Precompiled_____prependTypeArguments_11040228_177" ,"Precompiled____makeFixedListUnmodifiable_178" ,"Precompiled_____classRangeCheck_11040228_179" ,"Precompiled____writeIntoTwoByteString_180" ,"Precompiled_____unsupportedPrint_11040228_181" ,"Precompiled_AllocationStub_UnsupportedError_182" ,"Precompiled_UnsupportedError_UnsupportedError__183" ,"Precompiled_____unsupportedPrint_11040228__unsupportedPrint_11040228_184" ,"Precompiled_Uint32List_Uint32List__185" ,"Precompiled_AllocationStub__CompactLinkedHashSet_3220832_186" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase_3220832___CompactLinkedHashSet__HashFieldBase__HashBase_3220832__187" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_difference_188" ,"Precompiled_AllocationStub__CompactLinkedIdentityHashSet_3220832_189" ,"Precompiled__CompactLinkedIdentityHashSet_3220832__newEmpty_3220832_190" ,"Precompiled__CompactLinkedIdentityHashSet_3220832__newEmpty_3220832__newEmpty_3220832_191" ,"Precompiled__CompactLinkedCustomHashSet_3220832__CompactLinkedCustomHashSet_3220832__192" ,"Precompiled_AllocationStub__TypeTest_3220832_193" ,"Precompiled__TypeTest_3220832_test_test_194" ,"Precompiled__CompactLinkedCustomHashSet_3220832_contains_contains_195" ,"Precompiled_AllocationStub__CompactLinkedCustomHashSet_3220832_196" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_removeAll_197" ,"Precompiled_LinkedHashSet_LinkedHashSet__198" ,"Precompiled_LinkedHashSet_LinkedHashSet_of_199" ,"Precompiled_LinkedHashSet_LinkedHashSet_from_200" ,"Precompiled_List_List_unmodifiable_201" ,"Precompiled_List_List_of_202" ,"Precompiled_List_List_empty_203" ,"Precompiled_List_List_filled_204" ,"Precompiled_Iterable_contains_contains_205" ,"Precompiled_Iterable_castFrom_206" ,"Precompiled_AllocationStub__EfficientLengthCastIterable_11040228_207" ,"Precompiled__CastListBase_11040228_setRange_208" ,"Precompiled__TypedDataBuffer_489432058_setRange_209" ,"Precompiled__TypedDataBuffer_489432058__setRange_489432058_210" ,"Precompiled__TypedDataBuffer_489432058_add_add_211" ,"Precompiled__TypedDataBuffer_489432058_dyn____212" ,"Precompiled__ListBase_Object_ListMixin_3220832_any_213" ,"Precompiled_AllocationStub_ConcurrentModificationError_214" ,"Precompiled__ListBase_Object_ListMixin_3220832_removeWhere_215" ,"Precompiled__ListBase_Object_ListMixin_3220832__filter_3220832_216" ,"Precompiled__ListBase_Object_ListMixin_3220832__closeGap_3220832_217" ,"Precompiled__TypedDataBuffer_489432058_set_length_218" ,"Precompiled__TypedDataBuffer_489432058__createBiggerBuffer_489432058_219" ,"Precompiled_Uint8List_Uint8List__220" ,"Precompiled_Uint8List_Uint8List_view_221" ,"Precompiled__ByteBuffer_7027147_asUint8List_222" ,"Precompiled_AllocationStub__Uint8ArrayView_7027147_223" ,"Precompiled__Uint8ArrayView_7027147_dyn____224" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_add_add_225" ,"Precompiled__TypedListBase_7027147__setRange_7027147_226" ,"Precompiled_AllocationStub__ByteBuffer_7027147_227" ,"Precompiled__ByteBuffer_7027147_asFloat64List_228" ,"Precompiled_AllocationStub__Float64ArrayView_7027147_229" ,"Precompiled__Float64ArrayView_7027147_dyn____230" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_add_add_231" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_contains_contains_232" ,"Precompiled_____offsetAlignmentCheck_7027147_233" ,"Precompiled__IntegerImplementation_0150898__moduloFromInteger_0150898_234" ,"Precompiled_Float64List_Float64List__235" ,"Precompiled__ByteBuffer_7027147_asInt64List_236" ,"Precompiled_AllocationStub__Int64ArrayView_7027147_237" ,"Precompiled__Int64ArrayView_7027147_dyn____238" ,"Precompiled__ByteBuffer_7027147_asInt32List_239" ,"Precompiled_AllocationStub__Int32ArrayView_7027147_240" ,"Precompiled__Int32ArrayView_7027147_dyn____241" ,"Precompiled_Int32List_Int32List__242" ,"Precompiled__ByteBuffer_7027147_asInt8List_243" ,"Precompiled_AllocationStub__Int8ArrayView_7027147_244" ,"Precompiled__Int8ArrayView_7027147_dyn____245" ,"Precompiled_Int8List_Int8List_fromList_246" ,"Precompiled_Int8List_Int8List__247" ,"Precompiled__ByteBuffer_7027147_asByteData_248" ,"Precompiled_AllocationStub__ByteDataView_7027147_249" ,"Precompiled_ByteData_ByteData_view_250" ,"Precompiled_ByteData_ByteData__251" ,"Precompiled_ByteData_ByteData__view_7027147_252" ,"Precompiled__ByteBuffer_7027147__ByteBuffer_7027147__New_7027147_253" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_contains_contains_254" ,"Precompiled_____rangeCheck_7027147_255" ,"Precompiled_Uint8List_Uint8List_fromList_256" ,"Precompiled_TypeTestingStub_dart_typed_data__Uint8List_257" ,"Precompiled_AllocationStub_Uint8Buffer_258" ,"Precompiled__ListBase_Object_ListMixin_3220832_contains_contains_259" ,"Precompiled__ListBase_Object_ListMixin_3220832_whereType_260" ,"Precompiled_AllocationStub_WhereTypeIterable_261" ,"Precompiled__ListBase_Object_ListMixin_3220832_lastWhere_262" ,"Precompiled_IterableElementError_noElement_263" ,"Precompiled_AllocationStub_StateError_264" ,"Precompiled_IterableElementError_tooFew_265" ,"Precompiled_IterableElementError_tooMany_266" ,"Precompiled_ListBase_listToString_267" ,"Precompiled__TypedDataBuffer_489432058__reverse_489432058_268" ,"Precompiled__TypedDataBuffer_489432058__grow_489432058_269" ,"Precompiled__TypedDataBuffer_489432058__insertKnownLength_489432058_270" ,"Precompiled__TypedDataBuffer_489432058__ensureCapacity_489432058_271" ,"Precompiled__TypedDataBuffer_489432058__addAll_489432058_272" ,"Precompiled__TypedDataBuffer_489432058__add_489432058_273" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_sublist_274" ,"Precompiled__AssertionError_0150898_get_message_275" ,"Precompiled_AllocationStub_AssertionError_276" ,"Precompiled__AssertionError_0150898_get__messageString_0150898_277" ,"Precompiled__AssertionError_0150898__evaluateAssertion_0150898_278" ,"Precompiled__AssertionError_0150898__doThrowNew_0150898_279" ,"Precompiled__AssertionError_0150898__throwNew_0150898_280" ,"Precompiled__AssertionError_0150898__AssertionError_0150898__create_0150898_281" ,"Precompiled_AssertionError_get_message_282" ,"Precompiled_ArgumentError_get_message_283" ,"Precompiled_AllocationStub_UnimplementedError_284" ,"Precompiled_FlutterError_get_message_285" ,"Precompiled_AllocationStub_FlutterError_286" ,"Precompiled____describeEnum_287" ,"Precompiled____describeIdentity_288" ,"Precompiled____shortHash_289" ,"Precompiled__IntegerImplementation_0150898_toRadixString_290" ,"Precompiled__IntegerImplementation_0150898__toPow2String_0150898_291" ,"Precompiled__IntegerImplementation_0150898__minInt64ToRadixString_0150898_292" ,"Precompiled__IntegerImplementation_0150898_unary__293" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_diagnostics_dart__DiagnosticsNode_294" ,"Precompiled__DiagnosticableTree_Object_Diagnosticable_200198569__DiagnosticableTree_Object_Diagnosticable_200198569__295" ,"Precompiled_AllocationStub_DiagnosticsProperty_296" ,"Precompiled_DiagnosticsProperty__maybeCacheValue_200198569_297" ,"Precompiled_DiagnosticsNode_DiagnosticsNode_message_298" ,"Precompiled_AllocationStub_DiagnosticableTreeNode_299" ,"Precompiled_AllocationStub_ErrorHint_300" ,"Precompiled_AllocationStub_FlutterErrorDetails_301" ,"Precompiled_FlutterErrorDetails_init_propertiesTransformers_302" ,"Precompiled_FlutterErrorDetails_get_summary_303" ,"Precompiled_FlutterErrorDetails_exceptionAsString_304" ,"Precompiled_____localeClosure_16065589__localeClosure_16065589_305" ,"Precompiled_____localeClosure_16065589_306" ,"Precompiled_Window_get_locale_307" ,"Precompiled_AllocationStub_Locale_308" ,"Precompiled____init_window_309" ,"Precompiled_Window_Window___16065589_310" ,"Precompiled_Window__nativeSetNeedsReportTimings_16065589__nativeSetNeedsReportTimings_16065589_311" ,"Precompiled_Window__nativeSetNeedsReportTimings_16065589_312" ,"Precompiled_AllocationStub_Window_313" ,"Precompiled____init_channelBuffers_314" ,"Precompiled_Map_Map__fromLiteral_0150898_315" ,"Precompiled_LinkedHashMap_LinkedHashMap__316" ,"Precompiled__InternalLinkedHashMap_3220832__InternalLinkedHashMap_3220832__317" ,"Precompiled_AllocationStub__InternalLinkedHashMap_3220832_318" ,"Precompiled_Map_castFrom_319" ,"Precompiled_AllocationStub_CastMap_320" ,"Precompiled_MapBase__fillMapWithIterables_3220832_321" ,"Precompiled_MapBase_mapToString_322" ,"Precompiled_Map_Map_unmodifiable_323" ,"Precompiled_LinkedHashMap_LinkedHashMap_from_324" ,"Precompiled_AllocationStub_UnmodifiableMapView_325" ,"Precompiled_Map_Map__326" ,"Precompiled_LinkedHashMap_LinkedHashMap_fromIterables_327" ,"Precompiled_LinkedHashMap_LinkedHashMap_identity_328" ,"Precompiled_AllocationStub__CompactLinkedIdentityHashMap_3220832_329" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__regenerateIndex_3220832_330" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__insert_3220832_331" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__rehash_3220832_332" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__init_3220832_333" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__getValueOrData_3220832_334" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832__findValueOrInsertPoint_3220832_335" ,"Precompiled_AllocationStub_ChannelBuffers_336" ,"Precompiled_ChannelBuffers__onDropItem_16065589__onDropItem_16065589_337" ,"Precompiled_ChannelBuffers__onDropItem_16065589_338" ,"Precompiled_AllocationStub__StoredMessage_16065589_339" ,"Precompiled_TypeTestingStub_dart_ui___StoredMessage_340" ,"Precompiled_ChannelBuffers_handleMessage_341" ,"Precompiled_ChannelBuffers__resize_16065589_342" ,"Precompiled__Logger_16065589__printString_16065589_343" ,"Precompiled__Logger_16065589__printDebugString_16065589_344" ,"Precompiled__RingBuffer_16065589_resize_345" ,"Precompiled__RingBuffer_16065589__dropOverflowItems_16065589_346" ,"Precompiled_ListQueue_removeFirst_347" ,"Precompiled_AllocationStub_ListQueue_348" ,"Precompiled_Queue_castFrom_349" ,"Precompiled_AllocationStub_CastQueue_350" ,"Precompiled_CastQueue_add_add_351" ,"Precompiled_ListQueue_add_add_352" ,"Precompiled_ListIterable_contains_contains_353" ,"Precompiled_ListQueue__add_3220832_354" ,"Precompiled_ListQueue__grow_3220832_355" ,"Precompiled_ListQueue__preGrow_3220832_356" ,"Precompiled_ListQueue__writeToList_3220832_357" ,"Precompiled_ListQueue_addFirst_358" ,"Precompiled_ListQueue_ListQueue__359" ,"Precompiled_ListQueue__calculateCapacity_3220832_360" ,"Precompiled_ListQueue__checkModification_3220832_361" ,"Precompiled_ListQueue_addLast_362" ,"Precompiled_AllocationStub__RingBuffer_16065589_363" ,"Precompiled__RingBuffer_16065589_pop_364" ,"Precompiled__RingBuffer_16065589_push_365" ,"Precompiled__RingBuffer_16065589_set_dropItemCallback_366" ,"Precompiled__RingBuffer_16065589__RingBuffer_16065589__367" ,"Precompiled_ChannelBuffers__makeRingBuffer_16065589_368" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__getValueOrData_3220832_369" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__regenerateIndex_3220832_370" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_get_entries_371" ,"Precompiled_AllocationStub_MapEntry_372" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__insert_3220832_373" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__rehash_3220832_374" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__init_3220832_375" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832__findValueOrInsertPoint_3220832_376" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_remove_remove_377" ,"Precompiled_ChannelBuffers__getString_16065589_378" ,"Precompiled_Utf8Codec_decode_379" ,"Precompiled_ChannelBuffers_drain_380" ,"Precompiled__AsyncAwaitCompleter_4048458_start_381" ,"Precompiled__AsyncAwaitCompleter_4048458_start_start_382" ,"Precompiled_____setScheduleImmediateClosure_4048458_383" ,"Precompiled____init__isInCallbackLoop_4048458_384" ,"Precompiled_AllocationStub__AsyncCallbackEntry_4048458_385" ,"Precompiled_____addErrorWithReplacement_4048458_386" ,"Precompiled_Zone_init__current_4048458_387" ,"Precompiled__Zone_4048458_inSameErrorZone_388" ,"Precompiled_AllocationStub__ZoneFunction_4048458_389" ,"Precompiled_____rootHandleUncaughtError_4048458__rootHandleUncaughtError_4048458_390" ,"Precompiled_____rootHandleUncaughtError_4048458_391" ,"Precompiled_____schedulePriorityAsyncCallback_4048458_392" ,"Precompiled_____scheduleAsyncCallback_4048458_393" ,"Precompiled__AsyncRun_4048458__scheduleImmediate_4048458_394" ,"Precompiled__RootZone_4048458_init__rootMap_4048458_395" ,"Precompiled_HashMap_HashMap__396" ,"Precompiled__CustomHashMap_3220832__CustomHashMap_3220832__397" ,"Precompiled_HashMap_HashMap_from_398" ,"Precompiled__HashMap_3220832__resize_3220832_399" ,"Precompiled_TypeTestingStub_dart_collection___HashMapEntry__K__V_400" ,"Precompiled_AllocationStub__HashMapEntry_3220832_401" ,"Precompiled__HashMap_3220832__addEntry_3220832_402" ,"Precompiled__HashMap_3220832__removeEntry_3220832_403" ,"Precompiled__HashMap_3220832_containsValue_404" ,"Precompiled_AllocationStub__CustomHashMap_3220832_405" ,"Precompiled_AllocationStub__IdentityHashMap_3220832_406" ,"Precompiled__HashMap_3220832__HashMap_3220832__407" ,"Precompiled_AllocationStub__HashMap_3220832_408" ,"Precompiled_AllocationStub_Duration_409" ,"Precompiled_Duration_dyn___410" ,"Precompiled_Duration_dyn___411" ,"Precompiled_Duration_dyn___412" ,"Precompiled_Duration_unary__413" ,"Precompiled_Timer__createPeriodicTimer_4048458_414" ,"Precompiled_Timer__createTimer_4048458_415" ,"Precompiled_Timer_run_416" ,"Precompiled_Timer_Timer__417" ,"Precompiled_Timer_Timer_periodic_418" ,"Precompiled_AllocationStub_AsyncError_419" ,"Precompiled_AsyncError_defaultStackTrace_420" ,"Precompiled_AsyncError_AsyncError__421" ,"Precompiled_ZoneSpecification_ZoneSpecification_from_422" ,"Precompiled_AllocationStub__ZoneSpecification_4048458_423" ,"Precompiled_____rootPrint_4048458__rootPrint_4048458_424" ,"Precompiled_____rootPrint_4048458_425" ,"Precompiled_____rootFork_4048458__rootFork_4048458_426" ,"Precompiled_____rootFork_4048458_427" ,"Precompiled__CustomZone_4048458__CustomZone_4048458__428" ,"Precompiled_AllocationStub__CustomZone_4048458_429" ,"Precompiled_TypeTestingStub_dart_core__Map__dart_core__Object__dart_core__Object_430" ,"Precompiled_____rootCreateTimer_4048458__rootCreateTimer_4048458_431" ,"Precompiled_____rootCreateTimer_4048458_432" ,"Precompiled_____rootCreatePeriodicTimer_4048458__rootCreatePeriodicTimer_4048458_433" ,"Precompiled_____rootCreatePeriodicTimer_4048458_434" ,"Precompiled_____rootScheduleMicrotask_4048458__rootScheduleMicrotask_4048458_435" ,"Precompiled_____rootScheduleMicrotask_4048458_436" ,"Precompiled_____rootErrorCallback_4048458__rootErrorCallback_4048458_437" ,"Precompiled_Zone__enter_4048458_438" ,"Precompiled_____completeOnAsyncReturn_4048458_439" ,"Precompiled_____nullDoneHandler_4048458__nullDoneHandler_4048458_440" ,"Precompiled_____rootRun_4048458_441" ,"Precompiled_____rootRun_4048458__rootRun_4048458_442" ,"Precompiled_____printToZone_4048458_443" ,"Precompiled_____printToZone_4048458__printToZone_4048458_444" ,"Precompiled_____runZoned_4048458_445" ,"Precompiled_____rootRegisterUnaryCallback_4048458__rootRegisterUnaryCallback_4048458_446" ,"Precompiled_____runGuarded_4048458_447" ,"Precompiled_____setAsyncThreadStackTrace_4048458_448" ,"Precompiled_____asyncStarMoveNextHelper_4048458_449" ,"Precompiled_____moveNextDebuggerStepCheck_4048458_450" ,"Precompiled_____microtaskLoop_4048458_451" ,"Precompiled_____nullErrorHandler_4048458_452" ,"Precompiled_____nullErrorHandler_4048458__nullErrorHandler_4048458_453" ,"Precompiled_____rootRunUnary_4048458_454" ,"Precompiled_____rootRunUnary_4048458__rootRunUnary_4048458_455" ,"Precompiled_____awaitHelper_4048458_456" ,"Precompiled__Future_4048458__thenAwait_4048458_457" ,"Precompiled__Future_4048458__addListener_4048458_458" ,"Precompiled__Future_4048458__cloneResult_4048458_459" ,"Precompiled__Future_4048458__Future_4048458_immediateError_460" ,"Precompiled__Future_4048458__asyncCompleteError_4048458_461" ,"Precompiled__Future_4048458__setPendingComplete_4048458_462" ,"Precompiled__Future_4048458__chainCoreFuture_4048458_463" ,"Precompiled__Future_4048458__prependListeners_4048458_464" ,"Precompiled__Future_4048458__reverseListeners_4048458_465" ,"Precompiled__Future_4048458__setChained_4048458_466" ,"Precompiled__Future_4048458__propagateToListeners_4048458_467" ,"Precompiled__Future_4048458__chainForeignFuture_4048458_468" ,"Precompiled____scheduleMicrotask_469" ,"Precompiled__Future_4048458_get__error_4048458_470" ,"Precompiled__Future_4048458__removeListeners_4048458_471" ,"Precompiled__Future_4048458__setErrorObject_4048458_472" ,"Precompiled__Future_4048458_set__resultOrListeners_4048458_473" ,"Precompiled__Future_4048458__asyncComplete_4048458_474" ,"Precompiled__Future_4048458__asyncCompleteWithValue_4048458_475" ,"Precompiled__Future_4048458__chainFuture_4048458_476" ,"Precompiled__Future_4048458__completeError_4048458__completeError_4048458_477" ,"Precompiled__Future_4048458__completeWithValue_4048458_478" ,"Precompiled__Future_4048458__clearPendingComplete_4048458_479" ,"Precompiled__Future_4048458__setError_4048458_480" ,"Precompiled__FutureListener_4048458_handleWhenComplete_481" ,"Precompiled__FutureListener_4048458_handleError_482" ,"Precompiled__FutureListener_4048458_matchesErrorTest_483" ,"Precompiled__FutureListener_4048458_handleValue_484" ,"Precompiled__FutureListener_4048458_get_hasErrorCallback_485" ,"Precompiled__FutureListener_4048458_get_callback_486" ,"Precompiled__Future_4048458_get__resultOrListeners_4048458_487" ,"Precompiled__Future_4048458__complete_4048458_488" ,"Precompiled_AllocationStub__FutureListener_4048458_489" ,"Precompiled__LateInitializationError_0150898__throwNew_0150898_490" ,"Precompiled_AllocationStub__LateInitializationError_0150898_491" ,"Precompiled__LateInitializationError_0150898__throwNew_0150898__throwNew_0150898_492" ,"Precompiled__Future_4048458__setValue_4048458_493" ,"Precompiled_AllocationStub__Future_4048458_494" ,"Precompiled_____rootRunBinary_4048458_495" ,"Precompiled_____rootRunBinary_4048458__rootRunBinary_4048458_496" ,"Precompiled_____registerErrorHandler_4048458_497" ,"Precompiled_____rootRegisterBinaryCallback_4048458__rootRegisterBinaryCallback_4048458_498" ,"Precompiled____runZonedGuarded_499" ,"Precompiled_____rootRegisterCallback_4048458__rootRegisterCallback_4048458_500" ,"Precompiled_____ensureScheduleImmediate_4048458_501" ,"Precompiled_____rethrow_4048458_502" ,"Precompiled_____startMicrotaskLoop_4048458_503" ,"Precompiled_____startMicrotaskLoop_4048458__startMicrotaskLoop_4048458_504" ,"Precompiled_____fatal_4048458_505" ,"Precompiled_Completer_Completer_sync_506" ,"Precompiled__Completer_4048458__Completer_4048458__507" ,"Precompiled__Completer_4048458_completeError_508" ,"Precompiled_AllocationStub__SyncCompleter_4048458_509" ,"Precompiled__SyncCompleter_4048458__completeError_4048458__completeError_4048458_510" ,"Precompiled__AsyncAwaitCompleter_4048458_complete_complete_511" ,"Precompiled__AsyncAwaitCompleter_4048458_completeError_512" ,"Precompiled__AsyncAwaitCompleter_4048458_set_isSync_513" ,"Precompiled__AsyncAwaitCompleter_4048458_get_isSync_514" ,"Precompiled__AsyncAwaitCompleter_4048458_get__future_4048458_515" ,"Precompiled_____asyncErrorWrapperHelper_4048458_516" ,"Precompiled_____asyncThenWrapperHelper_4048458_517" ,"Precompiled__AsyncAwaitCompleter_4048458__AsyncAwaitCompleter_4048458__518" ,"Precompiled_AllocationStub__AsyncAwaitCompleter_4048458_519" ,"Precompiled_TypeTestingStub_dart_async__Future__nolib2__void_520" ,"Precompiled_ChannelBuffers__isEmpty_16065589_521" ,"Precompiled_ChannelBuffers__pop_16065589_522" ,"Precompiled_ChannelBuffers_push_523" ,"Precompiled_____printDebug_16065589_524" ,"Precompiled_TypeTestingStub_dart_ui___RingBuffer__dart_ui___StoredMessage_525" ,"Precompiled_____encodeTextStyle_16065589_526" ,"Precompiled_AllocationStub_CupertinoDynamicColor_527" ,"Precompiled_AllocationStub_Color_528" ,"Precompiled_Color_alphaBlend_529" ,"Precompiled_Color_get_blue_530" ,"Precompiled_Color_get_green_531" ,"Precompiled_Color_get_red_532" ,"Precompiled_TypeTestingStub_dart_ui__Color_533" ,"Precompiled_Color_Color__534" ,"Precompiled_Color_get_opacity_535" ,"Precompiled_Color_withAlpha_536" ,"Precompiled_Color_getAlphaFromOpacity_537" ,"Precompiled__Double_0150898_toInt_538" ,"Precompiled__Double_0150898_roundToDouble_539" ,"Precompiled_Color_withOpacity_540" ,"Precompiled_Color_lerp_541" ,"Precompiled_____scaleAlpha_16065589_542" ,"Precompiled_Color_computeLuminance_543" ,"Precompiled_CupertinoDynamicColor_get__isInterfaceElevationDependent_164482824_544" ,"Precompiled_CupertinoDynamicColor_get__isHighContrastDependent_164482824_545" ,"Precompiled_CupertinoDynamicColor_get__isPlatformBrightnessDependent_164482824_546" ,"Precompiled_CupertinoDynamicColor_resolve_547" ,"Precompiled_____print_16065589_548" ,"Precompiled_____print_16065589__print_16065589_549" ,"Precompiled_____getLocaleClosure_16065589_550" ,"Precompiled_____getLocaleClosure_16065589__getLocaleClosure_16065589_551" ,"Precompiled_____invoke1_16065589_552" ,"Precompiled_____updateAlwaysUse24HourFormat_16065589_553" ,"Precompiled_____dispatchSemanticsAction_16065589_554" ,"Precompiled_____invoke3_16065589_555" ,"Precompiled_____dispatchSemanticsAction_16065589__dispatchSemanticsAction_16065589_556" ,"Precompiled_TypeTestingStub_dart_typed_data__ByteData_557" ,"Precompiled_____runMainZoned_16065589_558" ,"Precompiled_____runMainZoned_16065589__runMainZoned_16065589_559" ,"Precompiled_____updateTextScaleFactor_16065589_560" ,"Precompiled_____invoke_16065589_561" ,"Precompiled_____updateLocales_16065589_562" ,"Precompiled_____updateLocales_16065589__updateLocales_16065589_563" ,"Precompiled_____updateSemanticsEnabled_16065589_564" ,"Precompiled_____updateSemanticsEnabled_16065589__updateSemanticsEnabled_16065589_565" ,"Precompiled_____getScheduleMicrotaskClosure_16065589_566" ,"Precompiled_____getScheduleMicrotaskClosure_16065589__getScheduleMicrotaskClosure_16065589_567" ,"Precompiled____hashList_568" ,"Precompiled__Jenkins_16065589_combine_569" ,"Precompiled_____futurize_16065589_570" ,"Precompiled____lerpDouble_571" ,"Precompiled_____getPrintClosure_16065589_572" ,"Precompiled_____getPrintClosure_16065589__getPrintClosure_16065589_573" ,"Precompiled_____encodeColorList_16065589_574" ,"Precompiled_____encodeParagraphStyle_16065589_575" ,"Precompiled_____encodeTwoPoints_16065589_576" ,"Precompiled_Float32List_Float32List__577" ,"Precompiled_Float32List_Float32List_fromList_578" ,"Precompiled_AllocationStub_Offset_579" ,"Precompiled_Offset_dyn___580" ,"Precompiled_TypeTestingStub_dart_ui__Offset_581" ,"Precompiled_Offset_dyn___582" ,"Precompiled_Offset_dyn___583" ,"Precompiled_Offset_unary__584" ,"Precompiled_AllocationStub_Rect_585" ,"Precompiled_Rect_Rect_fromCircle_586" ,"Precompiled_Rect_Rect_fromCenter_587" ,"Precompiled_Rect_get_topRight_588" ,"Precompiled_Rect_get_bottomLeft_589" ,"Precompiled_Rect_contains_contains_590" ,"Precompiled_Rect_deflate_591" ,"Precompiled_Rect_inflate_592" ,"Precompiled_Rect_get_centerLeft_593" ,"Precompiled_Rect_intersect_594" ,"Precompiled____cos_595" ,"Precompiled_____cos_12383281_596" ,"Precompiled____sin_597" ,"Precompiled_____sin_12383281_598" ,"Precompiled____atan2_599" ,"Precompiled_____atan2_12383281_600" ,"Precompiled_____log_12383281_601" ,"Precompiled_____exp_12383281_602" ,"Precompiled____max_max_603" ,"Precompiled_Rect_get_center_604" ,"Precompiled_Rect_Rect_fromPoints_605" ,"Precompiled_Rect_shift_606" ,"Precompiled_Rect_translate_607" ,"Precompiled_Rect_expandToInclude_608" ,"Precompiled_Rect_Rect_fromLTRB_609" ,"Precompiled_Rect_get_size_610" ,"Precompiled_AllocationStub_Size_611" ,"Precompiled_Size_dyn___612" ,"Precompiled_Size_dyn___613" ,"Precompiled_Size_dyn___614" ,"Precompiled_Size_get_longestSide_615" ,"Precompiled_Size_contains_contains_616" ,"Precompiled_Size_topRight_617" ,"Precompiled_Size_bottomRight_618" ,"Precompiled_Size_lerp_619" ,"Precompiled_Size_center_620" ,"Precompiled_Size_bottomLeft_621" ,"Precompiled_TypeTestingStub_dart_ui__Size_622" ,"Precompiled_Rect_get_shortestSide_623" ,"Precompiled_Rect_lerp_624" ,"Precompiled_TypeTestingStub_dart_ui__Rect_625" ,"Precompiled_Offset_translate_626" ,"Precompiled_Offset_get_distance_627" ,"Precompiled_Offset_get_distanceSquared_628" ,"Precompiled_Offset_lerp_629" ,"Precompiled_____unpackPointerDataPacket_16065589_630" ,"Precompiled_AllocationStub_PointerDataPacket_631" ,"Precompiled_AllocationStub_PointerData_632" ,"Precompiled_____reportTimings_16065589_633" ,"Precompiled_AllocationStub_FrameTiming_634" ,"Precompiled_FrameTiming__formatMS_16065589_635" ,"Precompiled_FrameTiming_get_totalSpan_636" ,"Precompiled_FrameTiming__rawDuration_16065589_637" ,"Precompiled_FrameTiming_get_rasterDuration_638" ,"Precompiled_FrameTiming_get_buildDuration_639" ,"Precompiled_____reportTimings_16065589__reportTimings_16065589_640" ,"Precompiled_____encodeStrut_16065589_641" ,"Precompiled_TypeTestingStub_dart_typed_data___TypedList_642" ,"Precompiled__TypedList_7027147__setFloat64_7027147_643" ,"Precompiled__TypedList_7027147__setInt32x4_7027147_644" ,"Precompiled__TypedList_7027147__setUint32_7027147_645" ,"Precompiled__TypedList_7027147__setUint16_7027147_646" ,"Precompiled__TypedList_7027147__setCodeUnits_7027147_647" ,"Precompiled__TypedList_7027147__setFloat64x2_7027147_648" ,"Precompiled__TypedList_7027147__setUint8_7027147_649" ,"Precompiled__TypedList_7027147__setInt16_7027147_650" ,"Precompiled__TypedList_7027147__setFloat32_7027147_651" ,"Precompiled__TypedList_7027147__setUint64_7027147_652" ,"Precompiled__TypedList_7027147__getFloat64x2_7027147_653" ,"Precompiled__TypedList_7027147__setInt8_7027147_654" ,"Precompiled__TypedList_7027147__setInt32_7027147_655" ,"Precompiled__TypedList_7027147__setFloat32x4_7027147_656" ,"Precompiled__TypedList_7027147__setInt64_7027147_657" ,"Precompiled_____updateAccessibilityFeatures_16065589_658" ,"Precompiled_AllocationStub_AccessibilityFeatures_659" ,"Precompiled_____updateAccessibilityFeatures_16065589__updateAccessibilityFeatures_16065589_660" ,"Precompiled_____updateWindowMetrics_16065589_661" ,"Precompiled_AllocationStub_WindowPadding_662" ,"Precompiled_____updateWindowMetrics_16065589__updateWindowMetrics_16065589_663" ,"Precompiled_____dispatchPointerDataPacket_16065589_664" ,"Precompiled_____dispatchPointerDataPacket_16065589__dispatchPointerDataPacket_16065589_665" ,"Precompiled_____updateUserSettingsData_16065589_666" ,"Precompiled_____updatePlatformBrightness_16065589_667" ,"Precompiled_____updateUserSettingsData_16065589__updateUserSettingsData_16065589_668" ,"Precompiled____instantiateImageCodec_669" ,"Precompiled_Codec__getNextFrame_16065589__getNextFrame_16065589_670" ,"Precompiled_Codec__getNextFrame_16065589_671" ,"Precompiled_FrameInfo_get_image_672" ,"Precompiled_Image_get_height_673" ,"Precompiled_Image_get_width_674" ,"Precompiled_FrameInfo_get__durationMillis_16065589_675" ,"Precompiled_Codec_getNextFrame_676" ,"Precompiled_Codec_get_repetitionCount_677" ,"Precompiled_Codec_get_frameCount_678" ,"Precompiled_TypeTestingStub_dart_ui__Codec_679" ,"Precompiled_____scheduleMicrotask_16065589_680" ,"Precompiled_____scheduleMicrotask_16065589__scheduleMicrotask_16065589_681" ,"Precompiled_____dispatchPlatformMessage_16065589_682" ,"Precompiled_Window__respondToPlatformMessage_16065589_683" ,"Precompiled_____dispatchPlatformMessage_16065589__dispatchPlatformMessage_16065589_684" ,"Precompiled_____drawFrame_16065589_685" ,"Precompiled_____drawFrame_16065589__drawFrame_16065589_686" ,"Precompiled_____reportUnhandledException_16065589_687" ,"Precompiled_____updatePlatformResolvedLocale_16065589_688" ,"Precompiled_____updatePlatformResolvedLocale_16065589__updatePlatformResolvedLocale_16065589_689" ,"Precompiled_____listEquals_16065589_690" ,"Precompiled____hashValues_691" ,"Precompiled_____beginFrame_16065589_692" ,"Precompiled_____beginFrame_16065589__beginFrame_16065589_693" ,"Precompiled_____instantiateImageCodec_16065589_694" ,"Precompiled_____updateLifecycleState_16065589_695" ,"Precompiled_____updateLifecycleState_16065589__updateLifecycleState_16065589_696" ,"Precompiled_AllocationStub_ParagraphBuilder_697" ,"Precompiled_ParagraphBuilder__build_16065589_698" ,"Precompiled_ParagraphBuilder__addText_16065589_699" ,"Precompiled_ParagraphBuilder_addText_700" ,"Precompiled_ParagraphBuilder_pop_701" ,"Precompiled_ParagraphBuilder__encodeLocale_16065589_702" ,"Precompiled_ParagraphBuilder__pushStyle_16065589_703" ,"Precompiled_ParagraphBuilder_pushStyle_704" ,"Precompiled_ParagraphBuilder__constructor_16065589_705" ,"Precompiled_ParagraphBuilder_ParagraphBuilder__706" ,"Precompiled_AllocationStub_TextRange_707" ,"Precompiled_TextRange_textInside_708" ,"Precompiled_TextRange_textAfter_709" ,"Precompiled_TextRange_textBefore_710" ,"Precompiled_AllocationStub_ParagraphStyle_711" ,"Precompiled_ParagraphStyle_ParagraphStyle__712" ,"Precompiled_AllocationStub_PhysicalShapeEngineLayer_713" ,"Precompiled_TypeTestingStub_dart_ui___EngineLayerWrapper_714" ,"Precompiled_Shadow_get_blurSigma_715" ,"Precompiled_AllocationStub_ParagraphConstraints_716" ,"Precompiled_AllocationStub_Canvas_717" ,"Precompiled_Canvas_clipPath_718" ,"Precompiled_Canvas__clipPath_16065589_719" ,"Precompiled_Canvas_drawRRect_720" ,"Precompiled_Canvas__drawRRect_16065589_721" ,"Precompiled_RRect_get__value32_16065589_722" ,"Precompiled_Canvas_clipRect_723" ,"Precompiled_Canvas__clipRect_16065589_724" ,"Precompiled_Canvas_drawImageRect_725" ,"Precompiled_Canvas__drawImageRect_16065589_726" ,"Precompiled_Canvas_drawRect_727" ,"Precompiled_Canvas__drawRect_16065589_728" ,"Precompiled_Canvas_drawArc_729" ,"Precompiled_Canvas__drawArc_16065589_730" ,"Precompiled_Canvas__transform_16065589_731" ,"Precompiled_Canvas_drawCircle_732" ,"Precompiled_Canvas__drawCircle_16065589_733" ,"Precompiled_Canvas_drawLine_734" ,"Precompiled_Canvas__drawLine_16065589_735" ,"Precompiled_Canvas_Canvas__736" ,"Precompiled_Canvas__constructor_16065589_737" ,"Precompiled_PictureRecorder_get_isRecording_738" ,"Precompiled_Canvas_drawShadow_739" ,"Precompiled_Canvas__drawShadow_16065589_740" ,"Precompiled_Canvas__drawDRRect_16065589_741" ,"Precompiled_Canvas__clipRRect_16065589_742" ,"Precompiled_Canvas_translate_743" ,"Precompiled_Canvas_rotate_744" ,"Precompiled_Canvas_drawPath_745" ,"Precompiled_Canvas__drawPath_16065589_746" ,"Precompiled_Canvas_saveLayer_747" ,"Precompiled_Canvas__saveLayer_16065589_748" ,"Precompiled_Canvas_drawParagraph_749" ,"Precompiled_Paragraph__paint_16065589_750" ,"Precompiled_Canvas__scale_16065589_751" ,"Precompiled_Canvas_save_752" ,"Precompiled_Canvas_restore_753" ,"Precompiled_Canvas_drawDRRect_754" ,"Precompiled_AllocationStub_Scene_755" ,"Precompiled__ImageInfo_16065589_get_rowBytes_756" ,"Precompiled_AllocationStub_ClipPathEngineLayer_757" ,"Precompiled_AllocationStub_OpacityEngineLayer_758" ,"Precompiled_AllocationStub__ColorFilter_16065589_759" ,"Precompiled__ColorFilter_16065589__initSrgbToLinearGamma_16065589_760" ,"Precompiled__ColorFilter_16065589__initLinearToSrgbGamma_16065589_761" ,"Precompiled__ColorFilter_16065589__constructor_16065589_762" ,"Precompiled_AllocationStub_Picture_763" ,"Precompiled_Picture__toImage_16065589_764" ,"Precompiled_Picture_toImage_765" ,"Precompiled_AllocationStub_StrutStyle_766" ,"Precompiled_StrutStyle_StrutStyle__767" ,"Precompiled_AllocationStub_TextBox_768" ,"Precompiled_AllocationStub_Paint_769" ,"Precompiled_Paint_init__kBlendModeDefault_16065589_770" ,"Precompiled_Paint_set_shader_771" ,"Precompiled_Paint_set_strokeWidth_772" ,"Precompiled_Paint_set_isAntiAlias_773" ,"Precompiled_Paint_get_color_774" ,"Precompiled_Paint_set_color_775" ,"Precompiled_Paint_set_colorFilter_776" ,"Precompiled_ColorFilter__toNativeColorFilter_16065589_777" ,"Precompiled_Paint_set_style_778" ,"Precompiled_Paint_Paint__779" ,"Precompiled_Paint_set_blendMode_780" ,"Precompiled_AllocationStub_Paragraph_781" ,"Precompiled_Paragraph_getBoxesForPlaceholders_782" ,"Precompiled_Paragraph__decodeTextBoxes_16065589_783" ,"Precompiled_Paragraph__getBoxesForPlaceholders_16065589_784" ,"Precompiled_TypeTestingStub_dart_ui__TextBox_785" ,"Precompiled_Paragraph_getWordBoundary_786" ,"Precompiled_Paragraph__getWordBoundary_16065589_787" ,"Precompiled_Paragraph_getLineBoundary_788" ,"Precompiled_Paragraph__getLineBoundary_16065589_789" ,"Precompiled_Paragraph__layout_16065589_790" ,"Precompiled_Paragraph__getBoxesForRange_16065589_791" ,"Precompiled_Paragraph_get_didExceedMaxLines_792" ,"Precompiled_Paragraph_get_maxIntrinsicWidth_793" ,"Precompiled_Paragraph_getPositionForOffset_794" ,"Precompiled_AllocationStub_TextPosition_795" ,"Precompiled_Paragraph__getPositionForOffset_16065589_796" ,"Precompiled_Paragraph_get_ideographicBaseline_797" ,"Precompiled_Paragraph_get_width_798" ,"Precompiled_Paragraph_layout_799" ,"Precompiled_Paragraph_get_alphabeticBaseline_800" ,"Precompiled_Paragraph_get_height_801" ,"Precompiled_Paragraph_getBoxesForRange_802" ,"Precompiled_Paragraph_get_minIntrinsicWidth_803" ,"Precompiled_AllocationStub_TransformEngineLayer_804" ,"Precompiled_AllocationStub_TextDecoration_805" ,"Precompiled_AllocationStub_Gradient_806" ,"Precompiled_Gradient__validateColorStops_16065589_807" ,"Precompiled_Gradient__initLinear_16065589_808" ,"Precompiled_Gradient__constructor_16065589_809" ,"Precompiled_Gradient_Gradient_linear_810" ,"Precompiled_AllocationStub_TextStyle_811" ,"Precompiled_TextStyle_TextStyle__812" ,"Precompiled_ImageShader__initWithImage_16065589_813" ,"Precompiled_ImageShader__constructor_16065589_814" ,"Precompiled_ImageShader_ImageShader__815" ,"Precompiled_AllocationStub_SceneBuilder_816" ,"Precompiled_SceneBuilder_addPicture_817" ,"Precompiled_SceneBuilder__addPicture_16065589_818" ,"Precompiled_SceneBuilder_pop_819" ,"Precompiled_SceneBuilder__pop_16065589_820" ,"Precompiled_SceneBuilder_SceneBuilder__821" ,"Precompiled_SceneBuilder__constructor_16065589_822" ,"Precompiled_SceneBuilder_addRetained_823" ,"Precompiled_SceneBuilder__addRetained_16065589_824" ,"Precompiled_SceneBuilder__build_16065589_825" ,"Precompiled_SceneBuilder_setCheckerboardRasterCacheImages_826" ,"Precompiled_SceneBuilder_setRasterizerTracingThreshold_827" ,"Precompiled_SceneBuilder_pushTransform_828" ,"Precompiled_SceneBuilder__pushTransform_16065589_829" ,"Precompiled_AllocationStub_EngineLayer_830" ,"Precompiled_SceneBuilder__pushClipPath_16065589_831" ,"Precompiled_SceneBuilder_pushOffset_832" ,"Precompiled_AllocationStub_OffsetEngineLayer_833" ,"Precompiled_SceneBuilder__pushOffset_16065589_834" ,"Precompiled_SceneBuilder__pushClipRect_16065589_835" ,"Precompiled_SceneBuilder_pushPhysicalShape_836" ,"Precompiled_SceneBuilder__pushPhysicalShape_16065589_837" ,"Precompiled_SceneBuilder_addPerformanceOverlay_838" ,"Precompiled_SceneBuilder__addPerformanceOverlay_16065589_839" ,"Precompiled_TypeTestingStub_dart_ui__EngineLayer_840" ,"Precompiled_SceneBuilder_pushClipPath_841" ,"Precompiled_SceneBuilder_pushOpacity_842" ,"Precompiled_SceneBuilder__pushOpacity_16065589_843" ,"Precompiled_SceneBuilder_setCheckerboardOffscreenLayers_844" ,"Precompiled_SceneBuilder_pushClipRect_845" ,"Precompiled_AllocationStub_ClipRectEngineLayer_846" ,"Precompiled_AllocationStub_Radius_847" ,"Precompiled_Radius_dyn___848" ,"Precompiled_Radius_dyn___849" ,"Precompiled_Radius_dyn___850" ,"Precompiled_Radius_lerp_851" ,"Precompiled_AllocationStub_SemanticsUpdate_852" ,"Precompiled_AllocationStub_SemanticsUpdateBuilder_853" ,"Precompiled_SemanticsUpdateBuilder__build_16065589_854" ,"Precompiled_SemanticsUpdateBuilder__updateCustomAction_16065589_855" ,"Precompiled_SemanticsUpdateBuilder__updateNode_16065589_856" ,"Precompiled_SemanticsUpdateBuilder_updateNode_857" ,"Precompiled_SemanticsUpdateBuilder__constructor_16065589_858" ,"Precompiled_SemanticsUpdateBuilder_SemanticsUpdateBuilder__859" ,"Precompiled_AllocationStub_Path_860" ,"Precompiled_Path_shift_861" ,"Precompiled_Path__shift_16065589_862" ,"Precompiled_TypeTestingStub_dart_ui__Path_863" ,"Precompiled_Path__contains_16065589_864" ,"Precompiled_Path__addRRect_16065589_865" ,"Precompiled_Path_contains_contains_866" ,"Precompiled_Path_addOval_867" ,"Precompiled_Path__addOval_16065589_868" ,"Precompiled_Path_addRRect_869" ,"Precompiled_Path_Path__870" ,"Precompiled_Path__constructor_16065589_871" ,"Precompiled_Path_addRect_872" ,"Precompiled_Path__addRect_16065589_873" ,"Precompiled_Path_combine_874" ,"Precompiled_Path__op_16065589_875" ,"Precompiled_Path_moveTo_876" ,"Precompiled_Path_lineTo_877" ,"Precompiled_Path_quadraticBezierTo_878" ,"Precompiled_FontWeight_lerp_879" ,"Precompiled_AllocationStub_RRect_880" ,"Precompiled_RRect_get_blRadius_881" ,"Precompiled_RRect_inflate_882" ,"Precompiled_RRect_shift_883" ,"Precompiled_RRect_contains_contains_884" ,"Precompiled_RRect_get_outerRect_885" ,"Precompiled_RRect_deflate_886" ,"Precompiled_RRect_RRect_fromRectAndRadius_887" ,"Precompiled_RRect_RRect_fromRectAndCorners_888" ,"Precompiled_RRect_get_brRadius_889" ,"Precompiled_RRect_RRect_fromRectXY_890" ,"Precompiled_RRect_scaleRadii_891" ,"Precompiled_RRect_get_trRadius_892" ,"Precompiled_RRect_get_tlRadius_893" ,"Precompiled_AllocationStub_PictureRecorder_894" ,"Precompiled_PictureRecorder__endRecording_16065589_895" ,"Precompiled_PictureRecorder_endRecording_896" ,"Precompiled_PictureRecorder__constructor_16065589_897" ,"Precompiled_PictureRecorder_PictureRecorder__898" ,"Precompiled_Locale__rawToString_16065589_899" ,"Precompiled_Locale_get_countryCode_900" ,"Precompiled_Locale_get_languageCode_901" ,"Precompiled_TypeTestingStub_dart_ui__Locale_902" ,"Precompiled_Window_get_defaultRouteName_903" ,"Precompiled_Window__defaultRouteName_16065589_904" ,"Precompiled_Window_set_onAccessibilityFeaturesChanged_905" ,"Precompiled_Window_set_onMetricsChanged_906" ,"Precompiled_Window_scheduleFrame_907" ,"Precompiled_Window_set_onDrawFrame_908" ,"Precompiled_Window_set_onPointerDataPacket_909" ,"Precompiled_Window_set_onSemanticsAction_910" ,"Precompiled_Window__sendPlatformMessage_16065589_911" ,"Precompiled_Window_set_onReportTimings_912" ,"Precompiled_Window_set_onSemanticsEnabledChanged_913" ,"Precompiled_Window_updateSemantics_914" ,"Precompiled_Window_render_915" ,"Precompiled_Window_set_onTextScaleFactorChanged_916" ,"Precompiled_Window__zonedPlatformMessageResponseCallback_16065589_917" ,"Precompiled_Window_set_onBeginFrame_918" ,"Precompiled_Window_set_onPlatformMessage_919" ,"Precompiled_Window_sendPlatformMessage_920" ,"Precompiled_Window_get_initialLifecycleState_921" ,"Precompiled_Window_set_onPlatformBrightnessChanged_922" ,"Precompiled_Window_set_onLocaleChanged_923" ,"Precompiled_AllocationStub_ErrorSummary_924" ,"Precompiled__ErrorDiagnostic_191022608_valueToString_925" ,"Precompiled__ErrorDiagnostic_191022608__ErrorDiagnostic_191022608__926" ,"Precompiled_AllocationStub_ErrorSpacer_927" ,"Precompiled_AllocationStub_ErrorDescription_928" ,"Precompiled_AllocationStub__FlutterErrorDetailsNode_191022608_929" ,"Precompiled_FlutterError_init__errorCount_191022608_930" ,"Precompiled_FlutterError_init_presentError_931" ,"Precompiled_FlutterError_init_onError_932" ,"Precompiled_FlutterError_reportError_933" ,"Precompiled_FlutterError_dumpErrorToConsole_934" ,"Precompiled____init_debugPrint_935" ,"Precompiled_AllocationStub_Stopwatch_936" ,"Precompiled_Stopwatch_init__frequency_0150898_937" ,"Precompiled_Stopwatch__initTicker_0150898_938" ,"Precompiled_Stopwatch__computeFrequency_0150898_939" ,"Precompiled_Stopwatch__now_0150898_940" ,"Precompiled_Stopwatch_get_elapsedMicroseconds_941" ,"Precompiled_Stopwatch_get_elapsedTicks_942" ,"Precompiled_Stopwatch_get_elapsed_943" ,"Precompiled_Stopwatch_stop_944" ,"Precompiled_Stopwatch_start_945" ,"Precompiled____debugPrintThrottled_946" ,"Precompiled_____debugPrintTask_208110992_947" ,"Precompiled_AllocationStub__AsyncCompleter_4048458_948" ,"Precompiled__AsyncCompleter_4048458__completeError_4048458__completeError_4048458_949" ,"Precompiled__AsyncCompleter_4048458_complete_complete_950" ,"Precompiled____print_951" ,"Precompiled____init__scannerTables_0150898_952" ,"Precompiled_____createTables_0150898_953" ,"Precompiled____init__uriBaseClosure_0150898_954" ,"Precompiled_Uri_parseIPv6Address_955" ,"Precompiled_Uri__parseIPv4Address_0150898_956" ,"Precompiled__GrowableList_0150898__setIndexed_0150898_957" ,"Precompiled__GrowableList_0150898__setLength_0150898_958" ,"Precompiled_Uri_encodeFull_959" ,"Precompiled__Uri_0150898__uriEncode_0150898_960" ,"Precompiled_AllocationStub__Uri_0150898_961" ,"Precompiled__Uri_0150898_dyn_isScheme_962" ,"Precompiled__Uri_0150898_isScheme_963" ,"Precompiled__Uri_0150898__compareScheme_0150898_964" ,"Precompiled__Uri_0150898_init_hashCode_965" ,"Precompiled__Uri_0150898_init_pathSegments_966" ,"Precompiled__Uri_0150898__computePathSegments_0150898_967" ,"Precompiled__Uri_0150898_init__text_0150898_968" ,"Precompiled__Uri_0150898__initializeText_0150898_969" ,"Precompiled__Uri_0150898__writeAuthority_0150898_970" ,"Precompiled__Uri_0150898_init__isWindowsCached_0150898_971" ,"Precompiled__Uri_0150898_get__isWindowsPlatform_0150898_972" ,"Precompiled__Uri_0150898__Uri_0150898__973" ,"Precompiled__Uri_0150898__removeDotSegments_0150898_974" ,"Precompiled__Uri_0150898__mayContainDotSegments_0150898_975" ,"Precompiled__Uri_0150898__normalizeRelativePath_0150898_976" ,"Precompiled__Uri_0150898__escapeScheme_0150898_977" ,"Precompiled__Uri_0150898__makePath_0150898_978" ,"Precompiled__Uri_0150898__normalizePath_0150898_979" ,"Precompiled__Uri_0150898__normalizeOrSubstring_0150898_980" ,"Precompiled__Uri_0150898__normalize_0150898_981" ,"Precompiled__Uri_0150898__fail_0150898_982" ,"Precompiled__Uri_0150898__escapeChar_0150898_983" ,"Precompiled__Uri_0150898__normalizeEscape_0150898_984" ,"Precompiled__Uri_0150898__makeHost_0150898_985" ,"Precompiled__Uri_0150898__normalizeRegName_0150898_986" ,"Precompiled__Uri_0150898__normalizeZoneID_0150898_987" ,"Precompiled__Uri_0150898__checkZoneID_0150898_988" ,"Precompiled__Uri_0150898__makeScheme_0150898_989" ,"Precompiled__Uri_0150898__canonicalizeScheme_0150898_990" ,"Precompiled__Uri_0150898__Uri_0150898_file_991" ,"Precompiled__Uri_0150898__makeFileUri_0150898_992" ,"Precompiled__Uri_0150898__makeWindowsFileUrl_0150898_993" ,"Precompiled__Uri_0150898__checkWindowsPathReservedCharacters_0150898_994" ,"Precompiled_RegExp_RegExp__995" ,"Precompiled_LinkedList_addFirst_996" ,"Precompiled_LinkedList__insertBefore_3220832_997" ,"Precompiled_AllocationStub_LinkedList_998" ,"Precompiled_LinkedList_add_add_999" ,"Precompiled_LinkedList__unlink_3220832_1000" ,"Precompiled_TypeTestingStub_dart_collection__LinkedList__E_1001" ,"Precompiled_LinkedListEntry_unlink_1002" ,"Precompiled__RegExp_0150898__RegExp_0150898__1003" ,"Precompiled_RegExp_init__recentlyUsed_0150898_1004" ,"Precompiled_TypeTestingStub_dart_core___RegExpHashKey_1005" ,"Precompiled_RegExp_init__cache_0150898_1006" ,"Precompiled_TypeTestingStub_dart_core___RegExpHashValue_1007" ,"Precompiled__RegExp_0150898__ExecuteMatchSticky_0150898_1008" ,"Precompiled__RegExp_0150898__ExecuteMatch_0150898_1009" ,"Precompiled__RegExp_0150898_get__groupCount_0150898_1010" ,"Precompiled__RegExp_0150898_get_isUnicode_1011" ,"Precompiled__RegExp_0150898_hasMatch_1012" ,"Precompiled__RegExp_0150898_firstMatch_1013" ,"Precompiled_AllocationStub__RegExpHashValue_0150898_1014" ,"Precompiled_AllocationStub__RegExpHashKey_0150898_1015" ,"Precompiled_AllocationStub_ListIterator_1016" ,"Precompiled__Uri_0150898__checkWindowsDriveLetter_0150898_1017" ,"Precompiled__Uri_0150898__hexCharPairToByte_0150898_1018" ,"Precompiled__Uri_0150898__mergePaths_0150898_1019" ,"Precompiled__Uri_0150898__makePort_0150898_1020" ,"Precompiled__Uri_0150898__defaultPort_0150898_1021" ,"Precompiled__Uri_0150898__makeFragment_0150898_1022" ,"Precompiled__Uri_0150898__makeUserInfo_0150898_1023" ,"Precompiled__Uri_0150898__checkNonWindowsPathReservedCharacters_0150898_1024" ,"Precompiled__Uri_0150898__Uri_0150898_notSimple_1025" ,"Precompiled__Uri_0150898__makeQuery_0150898_1026" ,"Precompiled__Uri_0150898__uriDecode_0150898_1027" ,"Precompiled__Uri_0150898__Uri_0150898_directory_1028" ,"Precompiled__Uri_0150898_get__isWindows_0150898_1029" ,"Precompiled__Uri_0150898_get_hasScheme_1030" ,"Precompiled__Uri_0150898__toWindowsFilePath_0150898_1031" ,"Precompiled__Uri_0150898__toFilePath_0150898_1032" ,"Precompiled_Uri_decodeComponent_1033" ,"Precompiled_Uri_decodeComponent_decodeComponent_1034" ,"Precompiled_Uri_parse_1035" ,"Precompiled_AllocationStub__SimpleUri_0150898_1036" ,"Precompiled__SimpleUri_0150898_dyn_isScheme_1037" ,"Precompiled__SimpleUri_0150898_isScheme_1038" ,"Precompiled__SimpleUri_0150898_get__isHttps_0150898_1039" ,"Precompiled__SimpleUri_0150898__isPort_0150898_1040" ,"Precompiled__SimpleUri_0150898_get__isPackage_0150898_1041" ,"Precompiled__SimpleUri_0150898__computeScheme_0150898_1042" ,"Precompiled__SimpleUri_0150898_get__isFile_0150898_1043" ,"Precompiled__SimpleUri_0150898_get__isHttp_0150898_1044" ,"Precompiled__SimpleUri_0150898__simpleMerge_0150898_1045" ,"Precompiled__SimpleUri_0150898_removeFragment_1046" ,"Precompiled__SimpleUri_0150898__toNonSimple_0150898_1047" ,"Precompiled__SimpleUri_0150898__toFilePath_0150898_1048" ,"Precompiled_____scan_0150898_1049" ,"Precompiled_UriData__parse_0150898_1050" ,"Precompiled_AllocationStub_UriData_1051" ,"Precompiled_UriData__uriEncodeBytes_0150898_1052" ,"Precompiled_UriData__computeUri_0150898_1053" ,"Precompiled__DataUri_0150898__DataUri_0150898__1054" ,"Precompiled_AllocationStub__DataUri_0150898_1055" ,"Precompiled_UriData__writeUri_0150898_1056" ,"Precompiled_UriData_UriData_fromString_1057" ,"Precompiled_AsciiCodec_encode_1058" ,"Precompiled_Base64Codec_normalize_1059" ,"Precompiled_Base64Codec__checkPadding_10003594_1060" ,"Precompiled_Base64Codec_decode_1061" ,"Precompiled__Base64Decoder_10003594_init__inverseAlphabet_10003594_1062" ,"Precompiled_AllocationStub__Base64Decoder_10003594_1063" ,"Precompiled__Base64Decoder_10003594_init__emptyBuffer_10003594_1064" ,"Precompiled__Base64Decoder_10003594__checkPadding_10003594_1065" ,"Precompiled__Base64Decoder_10003594__trimPaddingChars_10003594_1066" ,"Precompiled__Base64Decoder_10003594__allocateBuffer_10003594_1067" ,"Precompiled__Base64Decoder_10003594_decodeChunk_1068" ,"Precompiled__Base64Decoder_10003594_decode_1069" ,"Precompiled__IntegerImplementation_0150898_get_isOdd_1070" ,"Precompiled_____startsWithData_0150898_1071" ,"Precompiled_Uri_Uri_dataFromString_1072" ,"Precompiled_Uri_get_base_1073" ,"Precompiled____get__uriBaseClosure_0150898_1074" ,"Precompiled____identityHashCode_1075" ,"Precompiled____identityHashCode_identityHashCode_1076" ,"Precompiled____identical_1077" ,"Precompiled____identical_identical_1078" ,"Precompiled_____unsupportedUriBase_0150898_1079" ,"Precompiled_____unsupportedUriBase_0150898__unsupportedUriBase_0150898_1080" ,"Precompiled_____setHash_0150898_1081" ,"Precompiled_____getHash_0150898_1082" ,"Precompiled_____newDigits_0150898_1083" ,"Precompiled_____max_0150898_1084" ,"Precompiled____debugPrintThrottled_debugPrintThrottled_1085" ,"Precompiled____init__debugPrintBuffer_208110992_1086" ,"Precompiled____init__indentPattern_208110992_1087" ,"Precompiled_TypeTestingStub_dart_core__RegExp_1088" ,"Precompiled_____debugPrintTask_208110992__debugPrintTask_208110992_1089" ,"Precompiled____init__debugPrintStopwatch_208110992_1090" ,"Precompiled____debugWordWrap_1091" ,"Precompiled_AllocationStub__SyncIterable_0150898_1092" ,"Precompiled_FlutterError_dumpErrorToConsole_dumpErrorToConsole_1093" ,"Precompiled_FlutterError_FlutterError__1094" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_firstWhere_1095" ,"Precompiled__Exception_0150898_get_message_1096" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_reversed_1097" ,"Precompiled_AllocationStub_ReversedListIterable_1098" ,"Precompiled__ListBase_Object_ListMixin_3220832_sublist_1099" ,"Precompiled__CastListBase_11040228_sort_1100" ,"Precompiled_AllocationStub_IsolateSpawnException_1101" ,"Precompiled_AllocationStub_OSError_1102" ,"Precompiled____init__ioOverridesToken_15069316_1103" ,"Precompiled_AllocationStub_Object_1104" ,"Precompiled____init__signalControllers_15069316_1105" ,"Precompiled_TypeTestingStub_dart_io___SignalController_1106" ,"Precompiled_____makeUint8ListView_15069316_1107" ,"Precompiled_____uriBaseClosure_15069316_1108" ,"Precompiled_AllocationStub_FileSystemException_1109" ,"Precompiled_FileSystemException_FileSystemException__1110" ,"Precompiled__Directory_15069316__current_15069316_1111" ,"Precompiled_AllocationStub__Directory_15069316_1112" ,"Precompiled_FileSystemEntity__toStringFromUtf8Array_15069316_1113" ,"Precompiled_FileSystemEntity__toNullTerminatedUtf8Array_15069316_1114" ,"Precompiled_FileSystemEntity__toUtf8Array_15069316_1115" ,"Precompiled_Directory_Directory_fromRawPath_1116" ,"Precompiled__Directory_15069316__Directory_15069316_fromRawPath_1117" ,"Precompiled__Directory_15069316__checkNotNull_15069316_1118" ,"Precompiled_Directory_Directory__1119" ,"Precompiled_IOOverrides_get_current_1120" ,"Precompiled__Namespace_15069316_get__namespace_15069316_1121" ,"Precompiled__NamespaceImpl_15069316_get__namespace_15069316_1122" ,"Precompiled__NamespaceImpl_15069316__create_15069316_1123" ,"Precompiled__Namespace_15069316__setupNamespace_15069316_1124" ,"Precompiled__NamespaceImpl_15069316__setupNamespace_15069316_1125" ,"Precompiled__Namespace_15069316_get__namespacePointer_15069316_1126" ,"Precompiled__NamespaceImpl_15069316_get__namespacePointer_15069316_1127" ,"Precompiled__NamespaceImpl_15069316__getPointer_15069316_1128" ,"Precompiled__NamespaceImpl_15069316__getDefault_15069316_1129" ,"Precompiled_AllocationStub__NamespaceImpl_15069316_1130" ,"Precompiled_____uriBaseClosure_15069316__uriBaseClosure_15069316_1131" ,"Precompiled_____getUriBaseClosure_15069316_1132" ,"Precompiled_____isErrorResponse_15069316_1133" ,"Precompiled_____getWatchSignalInternal_15069316_1134" ,"Precompiled_____makeDatagram_15069316_1135" ,"Precompiled_InternetAddressType_InternetAddressType__from_15069316_1136" ,"Precompiled_AllocationStub_Datagram_1137" ,"Precompiled_____getHttpEnableTimelineLogging_15069316_1138" ,"Precompiled_____setupHooks_15069316_1139" ,"Precompiled_____success_15069316_1140" ,"Precompiled_____setHttpEnableTimelineLogging_15069316_1141" ,"Precompiled_HttpClient_set_enableTimelineLogging_1142" ,"Precompiled____init__embedderAllowsHttp_14463476_1143" ,"Precompiled_____exceptionFromResponse_15069316_1144" ,"Precompiled_HandshakeException_HandshakeException__1145" ,"Precompiled__SecureFilterImpl_15069316_init_ENCRYPTED_SIZE_1146" ,"Precompiled__SecureFilterImpl_15069316_init_SIZE_1147" ,"Precompiled__SecureFilterImpl_15069316_get_ENCRYPTED_SIZE_1148" ,"Precompiled__SecureFilterImpl_15069316_get_SIZE_1149" ,"Precompiled__Platform_15069316_get_operatingSystem_1150" ,"Precompiled__Platform_15069316__operatingSystem_15069316_1151" ,"Precompiled__Platform_15069316_set__nativeScript_15069316_1152" ,"Precompiled_File_File_fromRawPath_1153" ,"Precompiled__File_15069316__File_15069316_fromRawPath_1154" ,"Precompiled_AllocationStub__File_15069316_1155" ,"Precompiled_File_File__1156" ,"Precompiled__File_15069316__File_15069316__1157" ,"Precompiled_X509Certificate_X509Certificate___15069316_1158" ,"Precompiled_AllocationStub__X509CertificateImpl_15069316_1159" ,"Precompiled_AllocationStub__IOServicePorts_15069316_1160" ,"Precompiled__IOServicePorts_15069316__newServicePort_15069316_1161" ,"Precompiled_TypeTestingStub_dart_isolate__SendPort_1162" ,"Precompiled__IOServicePorts_15069316__returnPort_15069316_1163" ,"Precompiled__IOServicePorts_15069316__getPort_15069316_1164" ,"Precompiled__IOServicePorts_15069316__IOServicePorts_15069316__1165" ,"Precompiled_TypeTestingStub_dart_io__RawSocketEvent_1166" ,"Precompiled_Link_Link_fromRawPath_1167" ,"Precompiled_AllocationStub__Link_15069316_1168" ,"Precompiled_Link_Link__1169" ,"Precompiled_Stream_castFrom_1170" ,"Precompiled_AllocationStub_CastStream_1171" ,"Precompiled_Stream_Stream_fromIterable_1172" ,"Precompiled_AllocationStub__GeneratedStreamImpl_4048458_1173" ,"Precompiled__ExternalBuffer_15069316_set_end_1174" ,"Precompiled__ExternalBuffer_15069316_set_start_1175" ,"Precompiled_TypeTestingStub_dart_io__ProcessSignal_1176" ,"Precompiled__EventHandler_15069316__sendData_15069316_1177" ,"Precompiled__EventHandler_15069316__sendData_15069316__sendData_15069316_1178" ,"Precompiled__EventHandler_15069316__timerMillisecondClock_15069316_1179" ,"Precompiled__EventHandler_15069316__timerMillisecondClock_15069316__timerMillisecondClock_15069316_1180" ,"Precompiled_TlsException_TlsException__1181" ,"Precompiled__ProcessUtils_15069316__watchSignalInternal_15069316_1182" ,"Precompiled__ProcessUtils_15069316__watchSignalInternal_15069316__watchSignalInternal_15069316_1183" ,"Precompiled__NetworkProfiling_15069316_getVersion_1184" ,"Precompiled__NetworkProfiling_15069316__serviceExtensionHandler_15069316_1185" ,"Precompiled_ServiceExtensionResponse__validateErrorCode_5383715_1186" ,"Precompiled_TypeTestingStub_dart_developer__ServiceExtensionResponse_1187" ,"Precompiled_Future_Future_value_1188" ,"Precompiled_AllocationStub_ServiceExtensionResponse_1189" ,"Precompiled__SocketProfile_15069316_clear_1190" ,"Precompiled__SocketProfile_15069316_init__idToSocketStatistic_15069316_1191" ,"Precompiled_TypeTestingStub_dart_io___SocketStatistic_1192" ,"Precompiled__SocketProfile_15069316_pause_1193" ,"Precompiled__SocketProfile_15069316_toJson_1194" ,"Precompiled__NetworkProfiling_15069316__serviceExtensionHandler_15069316__serviceExtensionHandler_15069316_1195" ,"Precompiled__NetworkProfiling_15069316__registerServiceExtension_15069316_1196" ,"Precompiled____registerExtension_1197" ,"Precompiled_____registerExtension_5383715_1198" ,"Precompiled_____reportFlowEvent_5383715_1199" ,"Precompiled_____reportTaskEvent_5383715_1200" ,"Precompiled_____getNextAsyncId_5383715_1201" ,"Precompiled_____isDartStreamEnabled_5383715_1202" ,"Precompiled_____argumentsAsJson_5383715_1203" ,"Precompiled_____postEvent_5383715_1204" ,"Precompiled____postEvent_1205" ,"Precompiled_____lookupExtension_5383715_1206" ,"Precompiled__NetworkProfiling_15069316__registerServiceExtension_15069316__registerServiceExtension_15069316_1207" ,"Precompiled__ProcessStartStatus_15069316_set__errorCode_15069316_1208" ,"Precompiled__RandomAccessFileOpsImpl_15069316_get_length_1209" ,"Precompiled__RandomAccessFileOpsImpl_15069316_length_length_1210" ,"Precompiled__RandomAccessFileOpsImpl_15069316_length_1211" ,"Precompiled_CertificateException_CertificateException__1212" ,"Precompiled__IOService_15069316_init__messageMap_15069316_1213" ,"Precompiled_TypeTestingStub_dart_async__Completer_1214" ,"Precompiled_RawReceivePort_RawReceivePort__1215" ,"Precompiled__RawReceivePortImpl_1026248__get_id_1026248_1216" ,"Precompiled__RawReceivePortImpl_1026248_init__handlerMap_1026248_1217" ,"Precompiled__RawReceivePortImpl_1026248__initHandlerMap_1026248_1218" ,"Precompiled_TypeTestingStub_dart_core__Map_1219" ,"Precompiled__RawReceivePortImpl_1026248__closeInternal_1026248_1220" ,"Precompiled__RawReceivePortImpl_1026248__handleMessage_1026248_1221" ,"Precompiled_____runPendingImmediateCallback_1026248_1222" ,"Precompiled_____setupHooks_1026248_1223" ,"Precompiled_____startIsolate_1026248_1224" ,"Precompiled__SendPortImpl_1026248_send_1225" ,"Precompiled__SendPortImpl_1026248__sendInternal_1026248_1226" ,"Precompiled__SendPortImpl_1026248__get_hashcode_1026248_1227" ,"Precompiled__SendPortImpl_1026248__get_id_1026248_1228" ,"Precompiled__RawReceivePortImpl_1026248__get_sendport_1026248_1229" ,"Precompiled_____getStartMainIsolateFunction_1026248_1230" ,"Precompiled_____startMainIsolate_1026248_1231" ,"Precompiled_____startMainIsolate_1026248__startMainIsolate_1026248_1232" ,"Precompiled_____getIsolateScheduleImmediateClosure_1026248_1233" ,"Precompiled_____isolateScheduleImmediate_1026248__isolateScheduleImmediate_1026248_1234" ,"Precompiled__RawReceivePortImpl_1026248__lookupHandler_1026248_1235" ,"Precompiled__RawReceivePortImpl_1026248_get_sendPort_1236" ,"Precompiled__RawReceivePortImpl_1026248__RawReceivePortImpl_1026248__1237" ,"Precompiled__IOService_15069316_init__servicePorts_15069316_1238" ,"Precompiled__IOService_15069316__dispatch_15069316_1239" ,"Precompiled__IOService_15069316__finalize_15069316_1240" ,"Precompiled__IOService_15069316__ensureInitialize_15069316_1241" ,"Precompiled__File_15069316_get_length_1242" ,"Precompiled__File_15069316_length_length_1243" ,"Precompiled__File_15069316_length_1244" ,"Precompiled__File_15069316__dispatchWithNamespace_15069316_1245" ,"Precompiled__File_15069316__namespacePointer_15069316_1246" ,"Precompiled_Platform_init_isFuchsia_1247" ,"Precompiled_Platform_init_isIOS_1248" ,"Precompiled_Platform_init_isAndroid_1249" ,"Precompiled_Platform_init_isWindows_1250" ,"Precompiled_Platform_init_isMacOS_1251" ,"Precompiled_Platform_init_isLinux_1252" ,"Precompiled_Platform_init__operatingSystem_15069316_1253" ,"Precompiled_Platform_get_operatingSystem_1254" ,"Precompiled_OSError_OSError__1255" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_152066280_addListener_1256" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_152066280_addListener_addListener_1257" ,"Precompiled_AllocationStub_ValueNotifier_1258" ,"Precompiled_ChangeNotifier_notifyListeners_notifyListeners_1259" ,"Precompiled_ChangeNotifier_notifyListeners_1260" ,"Precompiled_ChangeNotifier_addListener_addListener_1261" ,"Precompiled_ChangeNotifier_get_hasListeners_1262" ,"Precompiled_AllocationStub_ObserverList_1263" ,"Precompiled_ObserverList_add_add_1264" ,"Precompiled_AllocationStub_HashedObserverList_1265" ,"Precompiled_HashedObserverList_add_add_1266" ,"Precompiled_HashedObserverList_contains_contains_1267" ,"Precompiled_ObserverList_contains_contains_1268" ,"Precompiled_AllocationStub__MergingListenable_195329750_1269" ,"Precompiled__MergingListenable_195329750_addListener_addListener_1270" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_change_notifier_dart__Listenable_1271" ,"Precompiled_Animation_drive_1272" ,"Precompiled_Animatable_animate_1273" ,"Precompiled_AllocationStub__AnimatedEvaluation_156105126_1274" ,"Precompiled_AllocationStub_TrainHoppingAnimation_1275" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_152066280_notifyStatusListeners_1276" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_152066280__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_152066280__1277" ,"Precompiled_TrainHoppingAnimation__valueChangeHandler_153411118__valueChangeHandler_153411118_1278" ,"Precompiled_TrainHoppingAnimation__valueChangeHandler_153411118_1279" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_152066280_notifyListeners_1280" ,"Precompiled_TrainHoppingAnimation__statusChangeHandler_153411118_1281" ,"Precompiled_TrainHoppingAnimation__statusChangeHandler_153411118__statusChangeHandler_153411118_1282" ,"Precompiled_TrainHoppingAnimation_TrainHoppingAnimation__1283" ,"Precompiled_AllocationStub_ProxyAnimation_1284" ,"Precompiled_ProxyAnimation_set_parent_1285" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_notifyStatusListeners_1286" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_notifyStatusListeners_notifyStatusListeners_1287" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_notifyListeners_1288" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_notifyListeners_notifyListeners_1289" ,"Precompiled_ProxyAnimation_ProxyAnimation__1290" ,"Precompiled_AllocationStub_AnimationMin_1291" ,"Precompiled__ReverseAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalStatusListenersMixin_153411118_notifyStatusListeners_1292" ,"Precompiled_AllocationStub_ReverseAnimation_1293" ,"Precompiled_ReverseAnimation__statusChangeHandler_153411118__statusChangeHandler_153411118_1294" ,"Precompiled_ReverseAnimation__statusChangeHandler_153411118_1295" ,"Precompiled_ReverseAnimation_addListener_addListener_1296" ,"Precompiled_ReverseAnimation_ReverseAnimation__1297" ,"Precompiled__AlwaysCompleteAnimation_153411118_addListener_addListener_1298" ,"Precompiled_AllocationStub_CurvedAnimation_1299" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_addListener_addListener_1300" ,"Precompiled_CurvedAnimation__updateCurveDirection_153411118__updateCurveDirection_153411118_1301" ,"Precompiled_CurvedAnimation__updateCurveDirection_153411118_1302" ,"Precompiled_CurvedAnimation_get__useForwardCurve_153411118_1303" ,"Precompiled_CurvedAnimation_CurvedAnimation__1304" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_153411118_didUnregisterListener_1305" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_153411118_didRegisterListener_1306" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_addListener_addListener_1307" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_153411118_didUnregisterListener_1308" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_153411118_didRegisterListener_1309" ,"Precompiled_CompoundAnimation__maybeNotifyListeners_153411118__maybeNotifyListeners_153411118_1310" ,"Precompiled_CompoundAnimation__maybeNotifyListeners_153411118_1311" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_notifyListeners_1312" ,"Precompiled_AllocationStub__AnimationSwap_283063916_1313" ,"Precompiled_StandardFabLocation__rightOffsetX_283063916_1314" ,"Precompiled___EndFloatFabLocation_StandardFabLocation_FabEndOffsetX_FabFloatOffsetY_283063916_getOffsetY_1315" ,"Precompiled___EndTopFabLocation_StandardFabLocation_FabEndOffsetX_283063916_getOffsetX_1316" ,"Precompiled__ScalingFabMotionAnimator_283063916_init__thresholdCenterTween_283063916_1317" ,"Precompiled_AllocationStub_CurveTween_1318" ,"Precompiled_Animatable_chain_1319" ,"Precompiled_AllocationStub__ChainedEvaluation_156105126_1320" ,"Precompiled_Animatable_evaluate_1321" ,"Precompiled__ScalingFabMotionAnimator_283063916_init__rotationTween_283063916_1322" ,"Precompiled_AllocationStub_Tween_1323" ,"Precompiled__ScalingFabMotionAnimator_283063916_getRotationAnimation_1324" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118__1325" ,"Precompiled__ScalingFabMotionAnimator_283063916_getScaleAnimation_1326" ,"Precompiled_AllocationStub_FlippedCurve_1327" ,"Precompiled_Curve_get_flipped_1328" ,"Precompiled_AllocationStub_Interval_1329" ,"Precompiled_CompoundAnimation__maybeNotifyStatusListeners_153411118__maybeNotifyStatusListeners_153411118_1330" ,"Precompiled_CompoundAnimation__maybeNotifyStatusListeners_153411118_1331" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_notifyStatusListeners_1332" ,"Precompiled__AlwaysDismissedAnimation_153411118_addListener_addListener_1333" ,"Precompiled_AllocationStub_AlwaysStoppedAnimation_1334" ,"Precompiled_AlwaysStoppedAnimation_addListener_addListener_1335" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_addListener_addListener_1336" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_156105126_addListener_addListener_1337" ,"Precompiled_AllocationStub_SizeTween_1338" ,"Precompiled_AllocationStub_RectTween_1339" ,"Precompiled_AllocationStub_ReverseTween_1340" ,"Precompiled_ReverseTween_ReverseTween__1341" ,"Precompiled_AllocationStub_ColorTween_1342" ,"Precompiled_AllocationStub_IntTween_1343" ,"Precompiled_Animation_get_isDismissed_1344" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_animation_dart__Animation__dart_core__double_1345" ,"Precompiled____init__kFlingSpringDescription_152066280_1346" ,"Precompiled_AllocationStub_SpringDescription_1347" ,"Precompiled_AllocationStub_ScrollSpringSimulation_1348" ,"Precompiled_AllocationStub__CriticalSolution_396485910_1349" ,"Precompiled__CriticalSolution_396485910__CriticalSolution_396485910__1350" ,"Precompiled__SpringSolution_396485910__SpringSolution_396485910__1351" ,"Precompiled__UnderdampedSolution_396485910__UnderdampedSolution_396485910__1352" ,"Precompiled_AllocationStub__UnderdampedSolution_396485910_1353" ,"Precompiled__OverdampedSolution_396485910__OverdampedSolution_396485910__1354" ,"Precompiled_AllocationStub__OverdampedSolution_396485910_1355" ,"Precompiled_AllocationStub_SpringSimulation_1356" ,"Precompiled_SpringSimulation_SpringSimulation__1357" ,"Precompiled_AllocationStub__InterpolationSimulation_152066280_1358" ,"Precompiled__InterpolationSimulation_152066280__InterpolationSimulation_152066280__1359" ,"Precompiled_AllocationStub__RepeatingSimulation_152066280_1360" ,"Precompiled__RepeatingSimulation_152066280__RepeatingSimulation_152066280__1361" ,"Precompiled_AllocationStub_AnimationController_1362" ,"Precompiled_AnimationController_dyn_set_value_1363" ,"Precompiled_AnimationController_resync_1364" ,"Precompiled_Ticker_absorbTicker_1365" ,"Precompiled_TickerFuture__cancel_447494659_1366" ,"Precompiled_AllocationStub_TickerCanceled_1367" ,"Precompiled_AllocationStub_TickerFuture_1368" ,"Precompiled_TickerFuture_get_orCancel_1369" ,"Precompiled_TickerFuture_whenCompleteOrCancel_1370" ,"Precompiled_TickerFuture__complete_447494659_1371" ,"Precompiled_AllocationStub_Ticker_1372" ,"Precompiled_Ticker__tick_447494659__tick_447494659_1373" ,"Precompiled_Ticker__tick_447494659_1374" ,"Precompiled_Ticker_stop_1375" ,"Precompiled_Ticker_start_1376" ,"Precompiled_Ticker_get_isTicking_1377" ,"Precompiled_Ticker_unscheduleTick_1378" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_cancelFrameCallbackWithId_1379" ,"Precompiled_BindingBase_lockEvents_1380" ,"Precompiled_Timeline_startSync_1381" ,"Precompiled__SyncBlock_5383715__startSync_5383715_1382" ,"Precompiled__SyncBlock_5383715_finish_1383" ,"Precompiled__SyncBlock_5383715_set_flow_1384" ,"Precompiled_AllocationStub__SyncBlock_5383715_1385" ,"Precompiled_Timeline_init__stack_5383715_1386" ,"Precompiled_TypeTestingStub_dart_developer___SyncBlock_1387" ,"Precompiled_Timeline_timeSync_1388" ,"Precompiled_Timeline_finishSync_1389" ,"Precompiled_BindingBase_get_window_1390" ,"Precompiled_BindingBase_BindingBase__1391" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_initServiceExtensions_1392" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_initServiceExtensions_1393" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801_initServiceExtensions_1394" ,"Precompiled____init__timeDilation_444222615_1395" ,"Precompiled____defaultSchedulingStrategy_1396" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_get_transientCallbackCount_1397" ,"Precompiled____defaultSchedulingStrategy_defaultSchedulingStrategy_1398" ,"Precompiled_AllocationStub__TaskEntry_444222615_1399" ,"Precompiled__TaskEntry_444222615__TaskEntry_444222615__1400" ,"Precompiled_AllocationStub__FrameCallbackEntry_444222615_1401" ,"Precompiled_SchedulerBinding__taskSorter_444222615_1402" ,"Precompiled_SchedulerBinding__taskSorter_444222615__taskSorter_444222615_1403" ,"Precompiled_TypeTestingStub_package_flutter_src_scheduler_binding_dart___TaskEntry_1404" ,"Precompiled____get_defaultBinaryMessenger_1405" ,"Precompiled__DefaultBinaryMessenger_455240726_init__mockHandlers_455240726_1406" ,"Precompiled__DefaultBinaryMessenger_455240726_handlePlatformMessage_handlePlatformMessage_1407" ,"Precompiled__DefaultBinaryMessenger_455240726_handlePlatformMessage_1408" ,"Precompiled__DefaultBinaryMessenger_455240726_setMessageHandler_1409" ,"Precompiled__DefaultBinaryMessenger_455240726_send_1410" ,"Precompiled__DefaultBinaryMessenger_455240726__sendPlatformMessage_455240726_1411" ,"Precompiled_ServicesBinding__parseLicenses_455240726_1412" ,"Precompiled_AllocationStub_LicenseEntryWithLineBreaks_1413" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_licenses_dart__LicenseEntry_1414" ,"Precompiled_LicenseRegistry_addLicense_1415" ,"Precompiled_ServicesBinding__parseLicenses_455240726__parseLicenses_455240726_1416" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__handleLifecycleMessage_455240726__handleLifecycleMessage_455240726_1417" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__handleLifecycleMessage_455240726_1418" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726__addLicenses_455240726_1419" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726_1420" ,"Precompiled__AsyncStarStreamController_4048458__AsyncStarStreamController_4048458__1421" ,"Precompiled_StreamController_StreamController__1422" ,"Precompiled_AllocationStub__AsyncStreamController_4048458_1423" ,"Precompiled__StreamController_4048458_add_add_1424" ,"Precompiled_StreamController_StreamController_broadcast_1425" ,"Precompiled_AllocationStub__AsyncBroadcastStreamController_4048458_1426" ,"Precompiled__BroadcastStreamController_4048458_add_add_1427" ,"Precompiled__BroadcastStreamController_4048458__add_4048458__add_4048458_1428" ,"Precompiled__BroadcastStreamController_4048458__close_4048458__close_4048458_1429" ,"Precompiled__BroadcastStreamController_4048458__addListener_4048458_1430" ,"Precompiled_TypeTestingStub_dart_async___BroadcastSubscription__T_1431" ,"Precompiled_AllocationStub__BroadcastSubscription_4048458_1432" ,"Precompiled_AllocationStub__ControllerSubscription_4048458_1433" ,"Precompiled_AllocationStub__BufferingStreamSubscription_4048458_1434" ,"Precompiled__BufferingStreamSubscription_4048458__add_4048458__add_4048458_1435" ,"Precompiled__BufferingStreamSubscription_4048458__close_4048458__close_4048458_1436" ,"Precompiled__BufferingStreamSubscription_4048458__onPause_4048458__onPause_4048458_1437" ,"Precompiled__BufferingStreamSubscription_4048458__guardCallback_4048458_1438" ,"Precompiled__BufferingStreamSubscription_4048458__checkState_4048458_1439" ,"Precompiled__PendingEvents_4048458_schedule_1440" ,"Precompiled__PendingEvents_4048458_cancelSchedule_1441" ,"Precompiled__BufferingStreamSubscription_4048458_get__mayResumeInput_4048458_1442" ,"Precompiled__ControllerSubscription_4048458__onResume_4048458__onResume_4048458_1443" ,"Precompiled__ForwardingStreamSubscription_4048458__onResume_4048458__onResume_4048458_1444" ,"Precompiled_AllocationStub__ForwardingStreamSubscription_4048458_1445" ,"Precompiled__ForwardingStreamSubscription_4048458__handleError_4048458_1446" ,"Precompiled__ForwardingStream_4048458__handleError_4048458_1447" ,"Precompiled__ForwardingStream_4048458__handleDone_4048458_1448" ,"Precompiled__ForwardingStreamSubscription_4048458__handleError_4048458__handleError_4048458_1449" ,"Precompiled__ForwardingStreamSubscription_4048458__addError_4048458__addError_4048458_1450" ,"Precompiled__ForwardingStreamSubscription_4048458__handleData_4048458_1451" ,"Precompiled__MapStream_4048458__handleData_4048458_1452" ,"Precompiled_AllocationStub__MapStream_4048458_1453" ,"Precompiled__ForwardingStreamSubscription_4048458__handleData_4048458__handleData_4048458_1454" ,"Precompiled__ForwardingStreamSubscription_4048458__add_4048458__add_4048458_1455" ,"Precompiled__ForwardingStreamSubscription_4048458__handleDone_4048458__handleDone_4048458_1456" ,"Precompiled__ForwardingStreamSubscription_4048458__handleDone_4048458_1457" ,"Precompiled__ForwardingStreamSubscription_4048458__onPause_4048458__onPause_4048458_1458" ,"Precompiled__ForwardingStreamSubscription_4048458__ForwardingStreamSubscription_4048458__1459" ,"Precompiled__BufferingStreamSubscription_4048458__BufferingStreamSubscription_4048458__1460" ,"Precompiled__BufferingStreamSubscription_4048458__BufferingStreamSubscription_4048458_zoned_1461" ,"Precompiled__BufferingStreamSubscription_4048458__registerDoneHandler_4048458_1462" ,"Precompiled__BufferingStreamSubscription_4048458__registerErrorHandler_4048458_1463" ,"Precompiled__BufferingStreamSubscription_4048458__registerDataHandler_4048458_1464" ,"Precompiled__ControllerSubscription_4048458__onPause_4048458__onPause_4048458_1465" ,"Precompiled__BufferingStreamSubscription_4048458__setPendingEvents_4048458_1466" ,"Precompiled__BufferingStreamSubscription_4048458__decrementPauseCount_4048458_1467" ,"Precompiled__BufferingStreamSubscription_4048458__addError_4048458__addError_4048458_1468" ,"Precompiled__BufferingStreamSubscription_4048458__addPending_4048458_1469" ,"Precompiled_AllocationStub__StreamImplEvents_4048458_1470" ,"Precompiled__StreamImplEvents_4048458_dyn_add_1471" ,"Precompiled__StreamImplEvents_4048458_add_add_1472" ,"Precompiled__BufferingStreamSubscription_4048458__cancel_4048458_1473" ,"Precompiled__BroadcastSubscription_4048458__setRemoveAfterFiring_4048458_1474" ,"Precompiled__BroadcastSubscription_4048458__BroadcastSubscription_4048458__1475" ,"Precompiled__BroadcastStreamController_4048458__addError_4048458__addError_4048458_1476" ,"Precompiled__BroadcastStreamController_4048458__callOnCancel_4048458_1477" ,"Precompiled__BroadcastStreamController_4048458__ensureDoneFuture_4048458_1478" ,"Precompiled__BroadcastStreamController_4048458__forEachListener_4048458_1479" ,"Precompiled__BroadcastStreamController_4048458__removeListener_4048458_1480" ,"Precompiled__StreamController_4048458__add_4048458__add_4048458_1481" ,"Precompiled__StreamController_4048458__ensurePendingEvents_4048458_1482" ,"Precompiled_TypeTestingStub_dart_async___StreamImplEvents__T_1483" ,"Precompiled__StreamController_4048458__close_4048458__close_4048458_1484" ,"Precompiled__StreamController_4048458__closeUnchecked_4048458_1485" ,"Precompiled__StreamController_4048458_get__subscription_4048458_1486" ,"Precompiled__StreamController_4048458__addError_4048458__addError_4048458_1487" ,"Precompiled__StreamController_4048458__badEventState_4048458_1488" ,"Precompiled__StreamController_4048458__ensureDoneFuture_4048458_1489" ,"Precompiled_Future_init__nullFuture_4048458_1490" ,"Precompiled__StreamController_4048458_get__pendingEvents_4048458_1491" ,"Precompiled_TypeTestingStub_dart_async___PendingEvents__T_1492" ,"Precompiled_TypeTestingStub_dart_async___ControllerSubscription__T_1493" ,"Precompiled_AllocationStub__SyncStreamController_4048458_1494" ,"Precompiled__AsyncStarStreamController_4048458_onCancel_onCancel_1495" ,"Precompiled__AsyncStarStreamController_4048458_onCancel_1496" ,"Precompiled__AsyncStarStreamController_4048458_scheduleGenerator_1497" ,"Precompiled__AsyncStarStreamController_4048458_runBody_runBody_1498" ,"Precompiled__AsyncStarStreamController_4048458_runBody_1499" ,"Precompiled__AsyncStarStreamController_4048458_add_add_1500" ,"Precompiled__AsyncStarStreamController_4048458_onResume_1501" ,"Precompiled__AsyncStarStreamController_4048458_onResume_onResume_1502" ,"Precompiled__AsyncStarStreamController_4048458_set_controller_1503" ,"Precompiled__AsyncStarStreamController_4048458_onListen_1504" ,"Precompiled__AsyncStarStreamController_4048458_onListen_onListen_1505" ,"Precompiled_AllocationStub__AsyncStarStreamController_4048458_1506" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801_readInitialLifecycleStateFromNativeWindow_1507" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleAppLifecycleStateChanged_1508" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_handleAppLifecycleStateChanged_1509" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__setFramesEnabledState_444222615_1510" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleFrame_1511" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_ensureFrameCallbacksRegistered_1512" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__handleDrawFrame_444222615__handleDrawFrame_444222615_1513" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__handleDrawFrame_444222615_1514" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_handleDrawFrame_1515" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__invokeFrameCallback_444222615_1516" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__handleBeginFrame_444222615__handleBeginFrame_444222615_1517" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__handleBeginFrame_444222615_1518" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_handleBeginFrame_1519" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__adjustForEpoch_444222615_1520" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_get_framesEnabled_1521" ,"Precompiled_AllocationStub__SystemFontsNotifier_354047248_1522" ,"Precompiled__SystemFontsNotifier_354047248_addListener_addListener_1523" ,"Precompiled__SystemFontsNotifier_354047248_notifyListeners_1524" ,"Precompiled_PaintingBinding_init_shaderWarmUp_1525" ,"Precompiled_DefaultShaderWarmUp_warmUpOnCanvas_1526" ,"Precompiled_ShaderWarmUp_execute_1527" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_handleSystemMessage_handleSystemMessage_1528" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_handleSystemMessage_1529" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_instantiateImageCodec_instantiateImageCodec_1530" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_instantiateImageCodec_1531" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_handleMemoryPressure_1532" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_createImageCache_1533" ,"Precompiled_ImageCache_ImageCache__1534" ,"Precompiled_AllocationStub__CachedImage_373034022_1535" ,"Precompiled_AllocationStub__PendingImage_373034022_1536" ,"Precompiled_AllocationStub__LiveImage_373034022_1537" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_cache_dart___CachedImage_1538" ,"Precompiled_ImageCache__checkCacheSize_373034022_1539" ,"Precompiled_AllocationStub__CompactIterable_3220832_1540" ,"Precompiled_AllocationStub_MultiFrameImageStreamCompleter_1541" ,"Precompiled_MultiFrameImageStreamCompleter_addListener_addListener_1542" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_stream_dart__ImageStreamListener_1543" ,"Precompiled_MultiFrameImageStreamCompleter__handleAppFrame_377483930__handleAppFrame_377483930_1544" ,"Precompiled_MultiFrameImageStreamCompleter__handleAppFrame_377483930_1545" ,"Precompiled_MultiFrameImageStreamCompleter__decodeNextFrameAndSchedule_377483930_1546" ,"Precompiled_MultiFrameImageStreamCompleter__emitFrame_377483930_1547" ,"Precompiled_ImageStreamCompleter_setImage_1548" ,"Precompiled_ImageStreamCompleter_reportError_1549" ,"Precompiled_AllocationStub_ImageInfo_1550" ,"Precompiled_MultiFrameImageStreamCompleter__hasFrameDurationPassed_377483930_1551" ,"Precompiled_MultiFrameImageStreamCompleter__handleCodecReady_377483930__handleCodecReady_377483930_1552" ,"Precompiled_MultiFrameImageStreamCompleter__handleCodecReady_377483930_1553" ,"Precompiled_ImageStreamCompleter_get_hasListeners_1554" ,"Precompiled_MultiFrameImageStreamCompleter__scheduleAppFrame_377483930_1555" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleFrameCallback_1556" ,"Precompiled_MultiFrameImageStreamCompleter_MultiFrameImageStreamCompleter__1557" ,"Precompiled_ImageStreamCompleter_ImageStreamCompleter__1558" ,"Precompiled_AllocationStub_ImageStream_1559" ,"Precompiled_ImageStream_addListener_addListener_1560" ,"Precompiled_ImageStream_setCompleter_1561" ,"Precompiled_AllocationStub_ImageStreamListener_1562" ,"Precompiled_ImageStreamCompleter_addListener_addListener_1563" ,"Precompiled_ImageStreamCompleter_removeOnLastListenerRemovedCallback_1564" ,"Precompiled_ImageCache__trackLiveImage_373034022_1565" ,"Precompiled_ImageCache__touch_373034022_1566" ,"Precompiled_ImageCache_evict_1567" ,"Precompiled_AllocationStub_ImageCache_1568" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_initInstances_1569" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801_initInstances_1570" ,"Precompiled_BasicMessageChannel_setMessageHandler_1571" ,"Precompiled_AllocationStub_MissingPluginException_1572" ,"Precompiled_AllocationStub_MethodCall_1573" ,"Precompiled_AllocationStub_PlatformException_1574" ,"Precompiled_AllocationStub_StandardMethodCodec_1575" ,"Precompiled_StandardMessageCodec_readSize_1576" ,"Precompiled_ReadBuffer_getUint32_1577" ,"Precompiled_AllocationStub_ReadBuffer_1578" ,"Precompiled_AllocationStub_WriteBuffer_1579" ,"Precompiled_WriteBuffer_done_1580" ,"Precompiled_WriteBuffer__alignTo_209185525_1581" ,"Precompiled_WriteBuffer_putFloat64List_1582" ,"Precompiled_WriteBuffer_putInt64List_1583" ,"Precompiled_WriteBuffer_putInt32List_1584" ,"Precompiled_WriteBuffer_putUint8List_1585" ,"Precompiled_WriteBuffer_putFloat64_1586" ,"Precompiled_WriteBuffer_putInt64_1587" ,"Precompiled_WriteBuffer_putInt32_1588" ,"Precompiled_WriteBuffer_putUint32_1589" ,"Precompiled_WriteBuffer_putUint16_1590" ,"Precompiled_WriteBuffer_putUint8_1591" ,"Precompiled_WriteBuffer_WriteBuffer__1592" ,"Precompiled_ReadBuffer__alignTo_209185525_1593" ,"Precompiled_ReadBuffer_getFloat64List_1594" ,"Precompiled_ReadBuffer_getInt64List_1595" ,"Precompiled_ReadBuffer_getInt32List_1596" ,"Precompiled_ReadBuffer_getUint8List_1597" ,"Precompiled_ReadBuffer_getFloat64_1598" ,"Precompiled_ReadBuffer_getInt64_1599" ,"Precompiled_ReadBuffer_getInt32_1600" ,"Precompiled_ReadBuffer_get_hasRemaining_1601" ,"Precompiled_ReadBuffer_getUint16_1602" ,"Precompiled_ReadBuffer_getUint8_1603" ,"Precompiled_StandardMessageCodec_writeSize_1604" ,"Precompiled_StandardMessageCodec_readValue_1605" ,"Precompiled____init__methodChannelHandlers_462480135_1606" ,"Precompiled_AllocationStub_Expando_1607" ,"Precompiled_Expando_init__deletedEntry_0150898_1608" ,"Precompiled__WeakProperty_0150898__new_0150898_1609" ,"Precompiled__WeakProperty_0150898__WeakProperty_0150898__1610" ,"Precompiled_Expando_get__limit_0150898_1611" ,"Precompiled__IntegerImplementation_0150898_dyn____1612" ,"Precompiled_Expando__checkType_0150898_1613" ,"Precompiled_Expando__rehash_0150898_1614" ,"Precompiled_AllocationStub_MethodChannel_1615" ,"Precompiled_MethodChannel__handleAsMethodCall_462480135_1616" ,"Precompiled_MethodChannel_setMethodCallHandler_1617" ,"Precompiled_MethodChannel_invokeMapMethod_1618" ,"Precompiled_MethodChannel_invokeMethod_1619" ,"Precompiled_MethodChannel__invokeMethod_462480135_1620" ,"Precompiled_MethodChannel_get_binaryMessenger_1621" ,"Precompiled_OptionalMethodChannel_invokeMethod_1622" ,"Precompiled_BasicMessageChannel_send_1623" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801_initLicenses_1624" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_initInstances_1625" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_initInstances_1626" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__handlePointerDataPacket_215304576__handlePointerDataPacket_215304576_1627" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__handlePointerDataPacket_215304576_1628" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__flushPointerEventQueue_215304576_1629" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__handlePointerEvent_215304576_1630" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent_1631" ,"Precompiled_AllocationStub_FlutterErrorDetailsForPointerEventDispatcher_1632" ,"Precompiled_HitTestResult_dyn_add_1633" ,"Precompiled_HitTestResult_add_add_1634" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_hit_test_dart__HitTestEntry_1635" ,"Precompiled_HitTestResult_popTransform_1636" ,"Precompiled_HitTestResult_pushTransform_1637" ,"Precompiled_AllocationStub_HitTestEntry_1638" ,"Precompiled_PointerRouter_route_1639" ,"Precompiled_PointerRouter__dispatchEventToRoutes_230407777_1640" ,"Precompiled_AllocationStub_PointerRouter_1641" ,"Precompiled_AllocationStub_FlutterErrorDetailsForPointerRouter_1642" ,"Precompiled_PointerRouter__dispatch_230407777_1643" ,"Precompiled_PointerRouter_removeGlobalRoute_1644" ,"Precompiled_PointerRouter_addGlobalRoute_1645" ,"Precompiled_PointerRouter_removeRoute_1646" ,"Precompiled_PointerRouter_addRoute_1647" ,"Precompiled_PointerRouter_PointerRouter__1648" ,"Precompiled_HitTestResult_HitTestResult__1649" ,"Precompiled_AllocationStub_HitTestResult_1650" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__flushPointerEventQueue_215304576__flushPointerEventQueue_215304576_1651" ,"Precompiled_PointerEventConverter_expand_1652" ,"Precompiled_AllocationStub_PointerEnterEvent_1653" ,"Precompiled_AllocationStub_PointerAddedEvent_1654" ,"Precompiled_AllocationStub_PointerScrollEvent_1655" ,"Precompiled_AllocationStub_PointerCancelEvent_1656" ,"Precompiled_AllocationStub_PointerExitEvent_1657" ,"Precompiled_AllocationStub_PointerRemovedEvent_1658" ,"Precompiled_AllocationStub_PointerMoveEvent_1659" ,"Precompiled_AllocationStub_PointerUpEvent_1660" ,"Precompiled_AllocationStub_PointerDownEvent_1661" ,"Precompiled_AllocationStub_PointerHoverEvent_1662" ,"Precompiled_PointerEvent_removePerspectiveTransform_1663" ,"Precompiled_Matrix4_setRow_1664" ,"Precompiled_AllocationStub_Matrix4_1665" ,"Precompiled_Matrix4_dyn___1666" ,"Precompiled_Matrix4_dyn_add_1667" ,"Precompiled_Matrix4_add_add_1668" ,"Precompiled_Matrix4_dyn___1669" ,"Precompiled_Matrix4_dyn____1670" ,"Precompiled_AllocationStub_Vector3_1671" ,"Precompiled_Vector3_dyn___1672" ,"Precompiled_Vector3_dyn___1673" ,"Precompiled_Vector3_dyn_add_1674" ,"Precompiled_Vector3_add_add_1675" ,"Precompiled_Vector3_dyn____1676" ,"Precompiled_Vector3_dyn___1677" ,"Precompiled_Vector3_scaled_1678" ,"Precompiled_Vector3_clone_1679" ,"Precompiled_Vector3_Vector3_copy_1680" ,"Precompiled_Vector3_setValues_1681" ,"Precompiled_Vector3_Vector3__1682" ,"Precompiled_AllocationStub_Vector4_1683" ,"Precompiled_Vector4_dyn___1684" ,"Precompiled_Vector4_dyn___1685" ,"Precompiled_Vector4_dyn_add_1686" ,"Precompiled_Vector4_add_add_1687" ,"Precompiled_Vector4_dyn____1688" ,"Precompiled_Vector4_dyn___1689" ,"Precompiled_Vector4_sub_1690" ,"Precompiled_Vector4_setValues_1691" ,"Precompiled_Vector4_Vector4_copy_1692" ,"Precompiled_Vector4_clone_1693" ,"Precompiled_Matrix4_transform3_1694" ,"Precompiled_Matrix4_setTranslationRaw_1695" ,"Precompiled_Matrix4_sub_1696" ,"Precompiled_Matrix4_tryInvert_1697" ,"Precompiled_Matrix4_copyInverse_1698" ,"Precompiled_Matrix4_setFrom_1699" ,"Precompiled_Matrix4_scaled_1700" ,"Precompiled_Matrix4_rotateZ_1701" ,"Precompiled_Matrix4_perspectiveTransform_1702" ,"Precompiled_Matrix4_getRow_1703" ,"Precompiled_Matrix4_Matrix4_rotationZ_1704" ,"Precompiled_Matrix4_setRotationZ_1705" ,"Precompiled_Matrix4_Matrix4_identity_1706" ,"Precompiled_Matrix4_setIdentity_1707" ,"Precompiled_Matrix4_Matrix4_copy_1708" ,"Precompiled_Matrix4_translate_1709" ,"Precompiled_Matrix4_Matrix4_translationValues_1710" ,"Precompiled_Matrix4_invert_1711" ,"Precompiled_Matrix4_isZero_1712" ,"Precompiled_Matrix4_multiply_1713" ,"Precompiled_Matrix4_multiplied_1714" ,"Precompiled_Matrix4_Matrix4_diagonal3Values_1715" ,"Precompiled_Matrix4_clone_1716" ,"Precompiled_Vector4_Vector4__1717" ,"Precompiled_TypeTestingStub_package_vector_math_vector_math_64_dart__Matrix4_1718" ,"Precompiled_PointerEvent_transformDeltaViaPositions_1719" ,"Precompiled_PointerEvent_transformPosition_1720" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_events_dart__PointerEvent_1721" ,"Precompiled_____synthesiseDownButtons_217358395_1722" ,"Precompiled_SemanticsBinding_get_instance_1723" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_509399801_get_disableAnimations_1724" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_509399801_handleAccessibilityFeaturesChanged_1725" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_509399801_initInstances_1726" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_hitTest_hitTest_1727" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_hit_test_dart__HitTestResult_1728" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsAction_403452173__handleSemanticsAction_403452173_1729" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsAction_403452173_1730" ,"Precompiled_SemanticsOwner_performAction_1731" ,"Precompiled_SemanticsOwner__getSemanticsActionHandlerForId_450082469_1732" ,"Precompiled_SemanticsNode__visitDescendants_450082469_1733" ,"Precompiled_AllocationStub_SemanticsNode_1734" ,"Precompiled_AbstractNode_redepthChild_redepthChild_1735" ,"Precompiled_AbstractNode_redepthChild_1736" ,"Precompiled_AbstractNode_dropChild_1737" ,"Precompiled_AbstractNode_adoptChild_1738" ,"Precompiled_AllocationStub__RootSemanticsFragment_419266271_1739" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_object_dart___InterestingSemanticsFragment_1740" ,"Precompiled_AllocationStub_SemanticsConfiguration_1741" ,"Precompiled_SemanticsConfiguration_dyn_set_value_1742" ,"Precompiled_SemanticsConfiguration_set_namesRoute_1743" ,"Precompiled_SemanticsConfiguration__setFlag_450082469_1744" ,"Precompiled_SemanticsConfiguration__addAction_450082469_1745" ,"Precompiled_SemanticsConfiguration_set_isFocusable_1746" ,"Precompiled_SemanticsConfiguration_get_isMultiline_1747" ,"Precompiled_SemanticsConfiguration_set_isButton_1748" ,"Precompiled_SemanticsConfiguration_set_elevation_1749" ,"Precompiled_SemanticsConfiguration_set_isEnabled_1750" ,"Precompiled_SemanticsConfiguration_set_hasImplicitScrolling_1751" ,"Precompiled_SemanticsConfiguration_SemanticsConfiguration__1752" ,"Precompiled_SemanticsConfiguration_set_onCopy_1753" ,"Precompiled_SemanticsConfiguration__addArgumentlessAction_450082469_1754" ,"Precompiled_SemanticsConfiguration_isCompatibleWith_1755" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByCharacter_1756" ,"Precompiled_SemanticsConfiguration_set_isFocused_1757" ,"Precompiled_SemanticsConfiguration_set_scrollExtentMax_1758" ,"Precompiled_SemanticsConfiguration_set_label_1759" ,"Precompiled_SemanticsConfiguration_set_onDismiss_1760" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByWord_1761" ,"Precompiled_SemanticsConfiguration_copy_1762" ,"Precompiled_SemanticsConfiguration_addTagForChildren_1763" ,"Precompiled_SemanticsConfiguration_set_scrollExtentMin_1764" ,"Precompiled_SemanticsConfiguration_set_isReadOnly_1765" ,"Precompiled_SemanticsConfiguration_set_isObscured_1766" ,"Precompiled_SemanticsConfiguration_set_isMergingSemanticsOfDescendants_1767" ,"Precompiled_SemanticsConfiguration_set_isSelected_1768" ,"Precompiled_SemanticsConfiguration_set_isSemanticBoundary_1769" ,"Precompiled_SemanticsConfiguration_set_scrollPosition_1770" ,"Precompiled_SemanticsConfiguration_set_onCut_1771" ,"Precompiled_SemanticsConfiguration_set_isHidden_1772" ,"Precompiled_SemanticsConfiguration_set_textSelection_1773" ,"Precompiled_SemanticsConfiguration_set_scrollChildCount_1774" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByCharacter_1775" ,"Precompiled_SemanticsConfiguration_set_isHeader_1776" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByWord_1777" ,"Precompiled_SemanticsConfiguration_set_isMultiline_1778" ,"Precompiled_SemanticsConfiguration_set_scrollIndex_1779" ,"Precompiled_SemanticsConfiguration_set_isTextField_1780" ,"Precompiled_SemanticsConfiguration_set_textDirection_1781" ,"Precompiled_SemanticsConfiguration_set_onTap_1782" ,"Precompiled_SemanticsConfiguration_set_liveRegion_1783" ,"Precompiled_SemanticsConfiguration_set_currentValueLength_1784" ,"Precompiled_SemanticsConfiguration_set_onSetSelection_1785" ,"Precompiled_SemanticsConfiguration_set_onPaste_1786" ,"Precompiled_SemanticsConfiguration_set_isImage_1787" ,"Precompiled_SemanticsConfiguration_absorb_1788" ,"Precompiled_____concatStrings_450082469_1789" ,"Precompiled_____childrenInDefaultOrder_450082469_1790" ,"Precompiled_AllocationStub__SemanticsSortGroup_450082469_1791" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinKnot_1792" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinVerticalGroup_1793" ,"Precompiled_AllocationStub__BoxEdge_450082469_1794" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart___BoxEdge_1795" ,"Precompiled_____pointInParentCoordinates_450082469_1796" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart__SemanticsNode_1797" ,"Precompiled_SemanticsConfiguration_set_indexInParent_1798" ,"Precompiled_SemanticsConfiguration_set_scopesRoute_1799" ,"Precompiled__RootSemanticsFragment_419266271__RootSemanticsFragment_419266271__1800" ,"Precompiled_AllocationStub__AbortingSemanticsFragment_419266271_1801" ,"Precompiled_AllocationStub__SwitchableSemanticsFragment_419266271_1802" ,"Precompiled__SwitchableSemanticsFragment_419266271__ensureConfigIsWritable_419266271_1803" ,"Precompiled__SwitchableSemanticsFragment_419266271__SwitchableSemanticsFragment_419266271__1804" ,"Precompiled__InterestingSemanticsFragment_419266271_get_owner_1805" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_object_dart__RenderObject_1806" ,"Precompiled_AllocationStub_ParentData_1807" ,"Precompiled_AllocationStub__ContainerSemanticsFragment_419266271_1808" ,"Precompiled_AllocationStub_FlutterErrorDetailsForRendering_1809" ,"Precompiled_AllocationStub_DiagnosticsDebugCreator_1810" ,"Precompiled_AllocationStub_SemanticsHandle_1811" ,"Precompiled_SemanticsHandle_SemanticsHandle___419266271_1812" ,"Precompiled_AllocationStub_PaintingContext_1813" ,"Precompiled_ClipContext_clipRectAndPaint_1814" ,"Precompiled_ClipContext__clipAndPaint_362104375_1815" ,"Precompiled_PaintingContext__startRecording_419266271_1816" ,"Precompiled_ContainerLayer_append_1817" ,"Precompiled_Layer_adoptChild_1818" ,"Precompiled_Layer_markNeedsAddToScene_1819" ,"Precompiled_AllocationStub_AnnotationResult_1820" ,"Precompiled_AnnotationResult_add_add_1821" ,"Precompiled_AnnotationResult_get_annotations_1822" ,"Precompiled_AllocationStub_OpacityLayer_1823" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_layer_dart__ContainerLayer_1824" ,"Precompiled_OpacityLayer_set_offset_1825" ,"Precompiled_OpacityLayer_set_alpha_1826" ,"Precompiled_AllocationStub_TransformLayer_1827" ,"Precompiled_TransformLayer__transformOffset_414518307_1828" ,"Precompiled_MatrixUtils_transformPoint_1829" ,"Precompiled_MatrixUtils_forceToPoint_1830" ,"Precompiled_MatrixUtils_inverseTransformRect_1831" ,"Precompiled_MatrixUtils_transformRect_1832" ,"Precompiled_MatrixUtils__safeTransformRect_379374251_1833" ,"Precompiled_MatrixUtils__accumulate_379374251_1834" ,"Precompiled_MatrixUtils_isIdentity_1835" ,"Precompiled_MatrixUtils_matrixEquals_1836" ,"Precompiled_MatrixUtils_getAsTranslation_1837" ,"Precompiled_TransformLayer_set_transform_1838" ,"Precompiled_AllocationStub_FollowerLayer_1839" ,"Precompiled_FollowerLayer__establishTransform_414518307_1840" ,"Precompiled_FollowerLayer__collectTransformForLayerChain_414518307_1841" ,"Precompiled_AllocationStub__HashSet_3220832_1842" ,"Precompiled__HashSet_3220832_add_add_1843" ,"Precompiled_HashSet_HashSet_from_1844" ,"Precompiled_HashSet_HashSet__1845" ,"Precompiled__HashSet_3220832__remove_3220832_1846" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__E_1847" ,"Precompiled_AllocationStub__HashSetEntry_3220832_1848" ,"Precompiled_AllocationStub__IdentityHashSet_3220832_1849" ,"Precompiled__IdentityHashSet_3220832__newSimilarSet_3220832__newSimilarSet_3220832_1850" ,"Precompiled__IdentityHashSet_3220832__newSimilarSet_3220832_1851" ,"Precompiled_AllocationStub__CustomHashSet_3220832_1852" ,"Precompiled__CustomHashSet_3220832__newSimilarSet_3220832__newSimilarSet_3220832_1853" ,"Precompiled__CustomHashSet_3220832__newSimilarSet_3220832_1854" ,"Precompiled__CustomHashSet_3220832_contains_contains_1855" ,"Precompiled__CustomHashSet_3220832__CustomHashSet_3220832__1856" ,"Precompiled__HashSet_3220832__newSimilarSet_3220832__newSimilarSet_3220832_1857" ,"Precompiled__HashSet_3220832__newSimilarSet_3220832_1858" ,"Precompiled__HashSet_3220832_contains_contains_1859" ,"Precompiled__HashSet_3220832__resize_3220832_1860" ,"Precompiled__HashSet_3220832__addEntry_3220832_1861" ,"Precompiled_Layer_get_parent_1862" ,"Precompiled_FollowerLayer_getLastTransform_1863" ,"Precompiled_FollowerLayer__transformOffset_414518307_1864" ,"Precompiled_FollowerLayer_set_link_1865" ,"Precompiled_AllocationStub_OffsetLayer_1866" ,"Precompiled_OffsetLayer_set_offset_1867" ,"Precompiled_AllocationStub_PerformanceOverlayLayer_1868" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_layer_dart__Layer_1869" ,"Precompiled_PerformanceOverlayLayer_PerformanceOverlayLayer__1870" ,"Precompiled_AllocationStub_ClipRectLayer_1871" ,"Precompiled_ClipRectLayer_set_clipBehavior_1872" ,"Precompiled_ClipRectLayer_set_clipRect_1873" ,"Precompiled_PictureLayer_set_isComplexHint_1874" ,"Precompiled_PictureLayer_set_picture_1875" ,"Precompiled_AllocationStub_AnnotationEntry_1876" ,"Precompiled_ContainerLayer_addChildrenToScene_1877" ,"Precompiled_ContainerLayer_removeAllChildren_1878" ,"Precompiled_Layer_dropChild_1879" ,"Precompiled_ContainerLayer__removeChild_414518307_1880" ,"Precompiled_ContainerLayer_buildScene_1881" ,"Precompiled_AllocationStub_AnnotatedRegionLayer_1882" ,"Precompiled_AnnotatedRegionLayer_AnnotatedRegionLayer__1883" ,"Precompiled_AllocationStub_LayerLink_1884" ,"Precompiled_AllocationStub_ClipPathLayer_1885" ,"Precompiled_ClipPathLayer_set_clipPath_1886" ,"Precompiled_AllocationStub_PhysicalModelLayer_1887" ,"Precompiled_PhysicalModelLayer_set_shadowColor_1888" ,"Precompiled_PhysicalModelLayer_set_color_1889" ,"Precompiled_PhysicalModelLayer_set_elevation_1890" ,"Precompiled_PhysicalModelLayer_set_clipPath_1891" ,"Precompiled_AllocationStub_LeaderLayer_1892" ,"Precompiled_Layer_findAllAnnotations_1893" ,"Precompiled_Layer_find_1894" ,"Precompiled_Layer_set_engineLayer_1895" ,"Precompiled_AllocationStub_PictureLayer_1896" ,"Precompiled_PaintingContext_get_canvas_1897" ,"Precompiled_ClipContext_clipPathAndPaint_1898" ,"Precompiled_PaintingContext_appendLayer_1899" ,"Precompiled_PaintingContext__repaintCompositedChild_419266271_1900" ,"Precompiled_PaintingContext_stopRecordingIfNeeded_1901" ,"Precompiled_RenderObject__paintWithContext_419266271_1902" ,"Precompiled_RenderObject__debugReportException_419266271_1903" ,"Precompiled_PaintingContext_addLayer_1904" ,"Precompiled_PaintingContext_paintChild_1905" ,"Precompiled_PaintingContext__compositeChild_419266271_1906" ,"Precompiled_PaintingContext_repaintCompositedChild_1907" ,"Precompiled_PaintingContext_pushClipPath_1908" ,"Precompiled_PaintingContext_pushLayer_1909" ,"Precompiled_PaintingContext_createChildContext_1910" ,"Precompiled_PaintingContext_pushOpacity_1911" ,"Precompiled_PaintingContext_setIsComplexHint_1912" ,"Precompiled_PaintingContext_pushTransform_1913" ,"Precompiled_PaintingContext_pushClipRect_1914" ,"Precompiled_AllocationStub_PipelineOwner_1915" ,"Precompiled_PipelineOwner_flushSemantics_1916" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate_1917" ,"Precompiled_SemanticsNode__addToUpdate_450082469_1918" ,"Precompiled_SemanticsNode__childrenInTraversalOrder_450082469_1919" ,"Precompiled_AllocationStub__TraversalSortNode_450082469_1920" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart___TraversalSortNode_1921" ,"Precompiled_Sort_sort_1922" ,"Precompiled_Sort__doSort_11040228_1923" ,"Precompiled_Sort__dualPivotQuicksort_11040228_1924" ,"Precompiled_Sort__insertionSort_11040228_1925" ,"Precompiled_Object__haveSameRuntimeType_0150898_1926" ,"Precompiled_SemanticsNode_get_hasChildren_1927" ,"Precompiled_SemanticsNode_getSemanticsData_1928" ,"Precompiled_AllocationStub_SemanticsData_1929" ,"Precompiled_SemanticsData__sortedListsEqual_450082469_1930" ,"Precompiled_CustomSemanticsAction_init__actions_450082469_1931" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart__CustomSemanticsAction_1932" ,"Precompiled_CustomSemanticsAction_init__ids_450082469_1933" ,"Precompiled_SemanticsNode_init__kEmptyCustomSemanticsActionsList_450082469_1934" ,"Precompiled_SemanticsNode_init__kIdentityTransform_450082469_1935" ,"Precompiled_SemanticsNode__initIdentityTransform_450082469_1936" ,"Precompiled_SemanticsNode_init__kEmptyChildList_450082469_1937" ,"Precompiled_SemanticsNode_get_owner_1938" ,"Precompiled_AllocationStub_SemanticsOwner_1939" ,"Precompiled_SemanticsOwner_SemanticsOwner__1940" ,"Precompiled__CompactLinkedHashSet_3220832__init_3220832_1941" ,"Precompiled_AllocationStub_WhereIterable_1942" ,"Precompiled_SemanticsNode__markDirty_450082469_1943" ,"Precompiled_RenderObject__updateSemantics_419266271_1944" ,"Precompiled_RenderObject__getSemanticsForParent_419266271_1945" ,"Precompiled_RenderObject_get__semanticsConfiguration_419266271_1946" ,"Precompiled_PipelineOwner__didDisposeSemanticsHandle_419266271_1947" ,"Precompiled_PipelineOwner_ensureSemantics_1948" ,"Precompiled_PipelineOwner_flushPaint_1949" ,"Precompiled_RenderObject__skippedPaintingOnLayer_419266271_1950" ,"Precompiled_PipelineOwner_flushCompositingBits_1951" ,"Precompiled_RenderObject__updateCompositingBits_419266271_1952" ,"Precompiled_RenderObject_markNeedsPaint_1953" ,"Precompiled_PipelineOwner_requestVisualUpdate_1954" ,"Precompiled_RenderObject_markNeedsPaint_markNeedsPaint_1955" ,"Precompiled_PipelineOwner__enableMutationsToDirtySubtrees_419266271_1956" ,"Precompiled_PipelineOwner_flushLayout_1957" ,"Precompiled_RenderObject__layoutWithoutResize_419266271_1958" ,"Precompiled_RenderObject_markNeedsSemanticsUpdate_1959" ,"Precompiled_RenderObject_markNeedsSemanticsUpdate_markNeedsSemanticsUpdate_1960" ,"Precompiled_PipelineOwner_set_rootNode_1961" ,"Precompiled_PipelineOwner_PipelineOwner__1962" ,"Precompiled_RenderObject_RenderObject__1963" ,"Precompiled_RenderObject_getTransformTo_1964" ,"Precompiled_RenderObject_showOnScreen_showOnScreen_1965" ,"Precompiled_RenderObject_describeForError_1966" ,"Precompiled_RenderObject__cleanChildRelayoutBoundary_419266271_1967" ,"Precompiled_RenderObject__cleanRelayoutBoundary_419266271_1968" ,"Precompiled_RenderObject__cleanChildRelayoutBoundary_419266271__cleanChildRelayoutBoundary_419266271_1969" ,"Precompiled_RenderObject_scheduleInitialSemantics_1970" ,"Precompiled_RenderObject_paint_paint_1971" ,"Precompiled_RenderObject_handleEvent_handleEvent_1972" ,"Precompiled_RenderObject_invokeLayoutCallback_1973" ,"Precompiled_RenderObject_scheduleInitialPaint_1974" ,"Precompiled_RenderObject_sendSemanticsEvent_1975" ,"Precompiled_SemanticsNode_sendEvent_1976" ,"Precompiled_RenderObject_markNeedsCompositingBitsUpdate_1977" ,"Precompiled_RenderObject_adoptChild_1978" ,"Precompiled_RenderObject_dropChild_1979" ,"Precompiled_RenderObject_replaceRootLayer_1980" ,"Precompiled_RenderObject_scheduleInitialLayout_1981" ,"Precompiled_RenderObject_markNeedsLayoutForSizedByParentChange_1982" ,"Precompiled_RenderObject_markParentNeedsLayout_1983" ,"Precompiled_RenderObject_layout_1984" ,"Precompiled_AllocationStub__SemanticsGeometry_419266271_1985" ,"Precompiled__SemanticsGeometry_419266271_init__temporaryTransformHolder_419266271_1986" ,"Precompiled__SemanticsGeometry_419266271_get_dropFromTree_1987" ,"Precompiled__SemanticsGeometry_419266271__applyIntermediatePaintTransforms_419266271_1988" ,"Precompiled__SemanticsGeometry_419266271__computeValues_419266271_1989" ,"Precompiled__RenderObject_AbstractNode_DiagnosticableTreeMixin_419266271_toStringShort_1990" ,"Precompiled_AllocationStub_OrdinalSortKey_1991" ,"Precompiled_OrdinalSortKey_doCompare_1992" ,"Precompiled_AllocationStub__SemanticsDiagnosticableNode_450082469_1993" ,"Precompiled_AllocationStub_SemanticsProperties_1994" ,"Precompiled_SemanticsNode_init__kEmptyConfig_450082469_1995" ,"Precompiled_SemanticsNode_updateWith_1996" ,"Precompiled_SemanticsNode__replaceChildren_450082469_1997" ,"Precompiled_SemanticsNode__isDifferentFromCurrentSemanticAnnotation_450082469_1998" ,"Precompiled_SemanticsNode_SemanticsNode__1999" ,"Precompiled_SemanticsNode__generateNewId_450082469_2000" ,"Precompiled_SemanticsNode_set_isMergedIntoParent_2001" ,"Precompiled_AllocationStub_ValueKey_2002" ,"Precompiled_TypeTestingStub_dart_core__Type_2003" ,"Precompiled_TypeTestingStub_package_flutter_src_foundation_key_dart__Key_2004" ,"Precompiled_SemanticsNode_SemanticsNode_root_2005" ,"Precompiled_SemanticsNode_isTagged_2006" ,"Precompiled_SemanticsNode_set_transform_2007" ,"Precompiled_SemanticsNode_set_rect_2008" ,"Precompiled_SemanticsNode__canPerformAction_450082469_2009" ,"Precompiled_TypeTestingStub_dart_ui__SemanticsAction_2010" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_get_renderView_2011" ,"Precompiled_AllocationStub_RenderView_2012" ,"Precompiled_AllocationStub_BoxConstraints_2013" ,"Precompiled_BoxConstraints_tighten_2014" ,"Precompiled_BoxConstraints_enforce_2015" ,"Precompiled_BoxConstraints_widthConstraints_2016" ,"Precompiled_BoxConstraints_deflate_2017" ,"Precompiled_EdgeInsetsGeometry_get_vertical_2018" ,"Precompiled_EdgeInsetsGeometry_dyn_add_2019" ,"Precompiled_EdgeInsetsGeometry_add_add_2020" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_edge_insets_dart__EdgeInsetsGeometry_2021" ,"Precompiled_AllocationStub_EdgeInsets_2022" ,"Precompiled_EdgeInsets_dyn___2023" ,"Precompiled_EdgeInsets_dyn___2024" ,"Precompiled_EdgeInsets_dyn___2025" ,"Precompiled_EdgeInsets_dyn_add_2026" ,"Precompiled_EdgeInsets_add_add_2027" ,"Precompiled_EdgeInsets_lerp_2028" ,"Precompiled_EdgeInsets_inflateRect_2029" ,"Precompiled_EdgeInsets_EdgeInsets_fromWindowPadding_2030" ,"Precompiled_AllocationStub_EdgeInsetsDirectional_2031" ,"Precompiled_EdgeInsetsDirectional_dyn___2032" ,"Precompiled_EdgeInsetsDirectional_dyn___2033" ,"Precompiled_EdgeInsetsDirectional_dyn___2034" ,"Precompiled_EdgeInsetsDirectional_dyn_add_2035" ,"Precompiled_EdgeInsetsDirectional_add_add_2036" ,"Precompiled_EdgeInsetsDirectional_lerp_2037" ,"Precompiled_AllocationStub__MixedEdgeInsets_368303931_2038" ,"Precompiled_EdgeInsetsGeometry_lerp_2039" ,"Precompiled_EdgeInsetsGeometry_along_2040" ,"Precompiled_EdgeInsetsGeometry_get_horizontal_2041" ,"Precompiled_BoxConstraints_constrainWidth_2042" ,"Precompiled_BoxConstraints_constrainHeight_2043" ,"Precompiled_BoxConstraints_constrainDimensions_2044" ,"Precompiled_BoxConstraints_heightConstraints_2045" ,"Precompiled_BoxConstraints_constrainSizeAndAttemptToPreserveAspectRatio_2046" ,"Precompiled_BoxConstraints_get_smallest_2047" ,"Precompiled_BoxConstraints_get_biggest_2048" ,"Precompiled_BoxConstraints_loosen_2049" ,"Precompiled_BoxConstraints_lerp_2050" ,"Precompiled_BoxConstraints_constrain_2051" ,"Precompiled_AllocationStub_BoxHitTestResult_2052" ,"Precompiled_BoxHitTestResult_addWithRawTransform_2053" ,"Precompiled_BoxHitTestResult_addWithPaintOffset_2054" ,"Precompiled_BoxHitTestResult_addWithPaintTransform_2055" ,"Precompiled_AllocationStub_BoxHitTestEntry_2056" ,"Precompiled_AllocationStub_BoxParentData_2057" ,"Precompiled_AllocationStub__IntrinsicDimensionsCacheEntry_404392247_2058" ,"Precompiled_RenderBox_set_size_2059" ,"Precompiled_RenderBox_localToGlobal_2060" ,"Precompiled_RenderBox_globalToLocal_2061" ,"Precompiled_RenderBox_hitTest_hitTest_2062" ,"Precompiled_RenderBox_getMaxIntrinsicHeight_2063" ,"Precompiled_RenderBox__computeIntrinsicDimension_404392247_2064" ,"Precompiled_RenderBox_markNeedsLayout_markNeedsLayout_2065" ,"Precompiled_RenderBox_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2066" ,"Precompiled_RenderBox_getDistanceToBaseline_2067" ,"Precompiled_RenderBox_getDistanceToActualBaseline_2068" ,"Precompiled_RenderBox_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2069" ,"Precompiled_RenderBox_getMaxIntrinsicWidth_2070" ,"Precompiled_RenderBox_handleEvent_handleEvent_2071" ,"Precompiled_RenderBox_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2072" ,"Precompiled_RenderBox_getMinIntrinsicWidth_2073" ,"Precompiled_RenderBox_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2074" ,"Precompiled_RenderBox_getMinIntrinsicHeight_2075" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_box_dart__RenderBox_2076" ,"Precompiled_AllocationStub_ViewConfiguration_2077" ,"Precompiled_ViewConfiguration_toMatrix_2078" ,"Precompiled_RenderView__updateMatricesAndCreateNewRootLayer_440268214_2079" ,"Precompiled_RenderView_hitTest_hitTest_2080" ,"Precompiled_RenderView_RenderView__2081" ,"Precompiled_RenderView__updateSystemChrome_440268214_2082" ,"Precompiled_SystemChrome_setSystemUIOverlayStyle_2083" ,"Precompiled_____stringify_473077576_2084" ,"Precompiled_AllocationStub_ApplicationSwitcherDescription_2085" ,"Precompiled_SystemUiOverlayStyle__toMap_473077576_2086" ,"Precompiled_TypeTestingStub_package_flutter_src_services_system_chrome_dart__SystemUiOverlayStyle_2087" ,"Precompiled_SystemChrome_setApplicationSwitcherDescription_2088" ,"Precompiled_SystemChrome_setPreferredOrientations_2089" ,"Precompiled_AllocationStub_SystemUiOverlayStyle_2090" ,"Precompiled____get_defaultTargetPlatform_2091" ,"Precompiled____get_defaultTargetPlatform_2092" ,"Precompiled_RenderView_hitTestMouseTrackers_hitTestMouseTrackers_2093" ,"Precompiled_RenderView_hitTestMouseTrackers_2094" ,"Precompiled_AllocationStub__SystemMouseCursorSession_417306348_2095" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_mouse_cursor_dart__MouseCursorSession_2096" ,"Precompiled__DeferringMouseCursor_417306348_firstNonDeferred_2097" ,"Precompiled_AllocationStub_MappedIterator_2098" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_418325758__handleDeviceUpdateMouseCursor_417306348_2099" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_418325758__findFirstCursor_417306348_2100" ,"Precompiled_MaterialStateProperty_resolveAs_2101" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_418325758_handleDeviceUpdate_2102" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_418325758__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_418325758__2103" ,"Precompiled_BaseMouseTracker_BaseMouseTracker__2104" ,"Precompiled_AllocationStub__MouseState_418325758_2105" ,"Precompiled__MouseState_418325758_get_device_2106" ,"Precompiled__MouseState_418325758_replaceLatestEvent_2107" ,"Precompiled__MouseState_418325758_replaceAnnotations_2108" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin__MouseTrackerEventMixin_418325758_handleDeviceUpdate_2109" ,"Precompiled__MouseTrackerEventMixin_418325758__handleDeviceUpdateMouseEvents_418325758_2110" ,"Precompiled_BaseMouseTracker__handleEvent_418325758__handleEvent_418325758_2111" ,"Precompiled_BaseMouseTracker__handleEvent_418325758_2112" ,"Precompiled_BaseMouseTracker__monitorMouseConnection_418325758_2113" ,"Precompiled_BaseMouseTracker__shouldMarkStateDirty_418325758_2114" ,"Precompiled_BaseMouseTracker__updateAllDevices_418325758_2115" ,"Precompiled_BaseMouseTracker__findAnnotations_418325758_2116" ,"Precompiled_BaseMouseTracker_get_mouseIsConnected_2117" ,"Precompiled_BaseMouseTracker_schedulePostFrameCheck_2118" ,"Precompiled_AllocationStub_MouseTracker_2119" ,"Precompiled_AllocationStub_MouseTrackerUpdateDetails_2120" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_mouse_tracking_dart__MouseTrackerAnnotation_2121" ,"Precompiled_RenderView_set_configuration_2122" ,"Precompiled_RenderView_prepareInitialFrame_2123" ,"Precompiled_RenderView_compositeFrame_2124" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_handleMetricsChanged_2125" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleForcedFrame_2126" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_createViewConfiguration_2127" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handlePersistentFrameCallback_403452173__handlePersistentFrameCallback_403452173_2128" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handlePersistentFrameCallback_403452173_2129" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_drawFrame_2130" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_removeTimingsCallback_2131" ,"Precompiled_BuildOwner_finalizeTree_2132" ,"Precompiled_____debugReportException_28042623_2133" ,"Precompiled_AllocationStub_GlobalObjectKey_2134" ,"Precompiled_GlobalKey_init__registry_28042623_2135" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__Element_2136" ,"Precompiled_GlobalKey_get_currentState_2137" ,"Precompiled_GlobalKey_get__currentElement_28042623_2138" ,"Precompiled_GlobalKey_get_currentContext_2139" ,"Precompiled_GlobalKey__unregister_28042623_2140" ,"Precompiled_GlobalKey__register_28042623_2141" ,"Precompiled_GlobalKey_GlobalKey__2142" ,"Precompiled_AllocationStub_LabeledGlobalKey_2143" ,"Precompiled_AllocationStub_ErrorWidget_2144" ,"Precompiled_ErrorWidget_init_builder_2145" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__Widget_2146" ,"Precompiled_ErrorWidget__defaultErrorWidgetBuilder_28042623_2147" ,"Precompiled_AllocationStub_UniqueKey_2148" ,"Precompiled_ErrorWidget__defaultErrorWidgetBuilder_28042623__defaultErrorWidgetBuilder_28042623_2149" ,"Precompiled_RenderObjectElement__updateParentData_28042623_2150" ,"Precompiled_RenderObjectElement_updateChildren_2151" ,"Precompiled_AllocationStub_IndexedSlot_2152" ,"Precompiled_Element_deactivateChild_2153" ,"Precompiled_Widget_canUpdate_2154" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__ParentDataElement__package_flutter_src_rendering_object_dart__ParentData_2155" ,"Precompiled_AllocationStub_LeafRenderObjectElement_2156" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__InheritedElement_2157" ,"Precompiled_ProxyElement_get_widget_2158" ,"Precompiled_Element_init__nextHashCode_28042623_2159" ,"Precompiled_Element_update_2160" ,"Precompiled_Element_getElementForInheritedWidgetOfExactType_2161" ,"Precompiled_Element_inflateWidget_2162" ,"Precompiled_Element__activateWithParent_28042623_2163" ,"Precompiled_Element__activateRecursively_28042623_2164" ,"Precompiled_Element__updateDepth_28042623_2165" ,"Precompiled_Element__retakeInactiveElement_28042623_2166" ,"Precompiled_Element_describeElement_2167" ,"Precompiled_Element_findAncestorStateOfType_2168" ,"Precompiled_Element_dependOnInheritedWidgetOfExactType_2169" ,"Precompiled_Element_findRenderObject_2170" ,"Precompiled_Element_findAncestorWidgetOfExactType_2171" ,"Precompiled_Element_updateSlotForChild_2172" ,"Precompiled_Element_markNeedsBuild_2173" ,"Precompiled_BuildOwner_scheduleBuildFor_2174" ,"Precompiled_Element_debugGetCreatorChain_2175" ,"Precompiled_Element_rebuild_2176" ,"Precompiled_Element_mount_2177" ,"Precompiled_Element_get_size_2178" ,"Precompiled_Element__sort_28042623_2179" ,"Precompiled_Element__sort_28042623__sort_28042623_2180" ,"Precompiled_Element_visitAncestorElements_2181" ,"Precompiled_Element_findRootAncestorStateOfType_2182" ,"Precompiled_Element_Element__2183" ,"Precompiled_Element__activateRecursively_28042623__activateRecursively_28042623_2184" ,"Precompiled_Element_visitChildElements_2185" ,"Precompiled_Element_findAncestorRenderObjectOfType_2186" ,"Precompiled_AllocationStub_MultiChildRenderObjectElement_2187" ,"Precompiled_MultiChildRenderObjectElement_get_children_2188" ,"Precompiled_AllocationStub_StatefulElement_2189" ,"Precompiled_StatefulElement_StatefulElement__2190" ,"Precompiled_AllocationStub_BuildOwner_2191" ,"Precompiled_BuildOwner_BuildOwner__2192" ,"Precompiled_FocusManager_FocusManager__2193" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876__2194" ,"Precompiled____get_primaryFocus_2195" ,"Precompiled_FocusManager__handlePointerEvent_514042876_2196" ,"Precompiled_FocusManager__updateHighlightMode_514042876_2197" ,"Precompiled_FocusManager__notifyHighlightModeListeners_514042876_2198" ,"Precompiled_FocusManager_get__defaultModeForPlatform_514042876_2199" ,"Precompiled_FocusManager_get_highlightMode_2200" ,"Precompiled_FocusManager__handlePointerEvent_514042876__handlePointerEvent_514042876_2201" ,"Precompiled_FocusManager__markDetached_514042876_2202" ,"Precompiled_FocusManager_get_instance_2203" ,"Precompiled_FocusManager__markNeedsUpdate_514042876_2204" ,"Precompiled_FocusManager__applyFocusChange_514042876_2205" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_notifyListeners_2206" ,"Precompiled_FocusNode__setAsFocusedChildForScope_514042876_2207" ,"Precompiled_AllocationStub_WhereTypeIterator_2208" ,"Precompiled_AllocationStub_FocusNode_2209" ,"Precompiled_FocusNode_get_descendants_2210" ,"Precompiled_FocusNode_unfocus_2211" ,"Precompiled_FocusNode_get_canRequestFocus_2212" ,"Precompiled_FocusNode_get_enclosingScope_2213" ,"Precompiled_FocusNode_get_hasFocus_2214" ,"Precompiled_FocusNode_requestFocus_2215" ,"Precompiled_FocusNode_get_traversalDescendants_2216" ,"Precompiled_FocusNode_set_skipTraversal_2217" ,"Precompiled_FocusManager__markPropertiesChanged_514042876_2218" ,"Precompiled_AllocationStub_FocusAttachment_2219" ,"Precompiled_FocusAttachment_reparent_2220" ,"Precompiled_FocusNode__reparent_514042876_2221" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_changedScope_2222" ,"Precompiled_FocusTraversalPolicy__moveFocus_528280150_2223" ,"Precompiled_FocusTraversalPolicy__sortAllDescendants_528280150_2224" ,"Precompiled_AllocationStub__FocusTraversalGroupInfo_528280150_2225" ,"Precompiled_ReadingOrderTraversalPolicy_sortDescendants_2226" ,"Precompiled__ReadingOrderSortData_528280150__findDirectionality_528280150_2227" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_inherited_notifier_dart__InheritedNotifier__T_2228" ,"Precompiled_AllocationStub__InheritedNotifierElement_552313948_2229" ,"Precompiled__InheritedNotifierElement_552313948__handleUpdate_552313948__handleUpdate_552313948_2230" ,"Precompiled__InheritedNotifierElement_552313948__handleUpdate_552313948_2231" ,"Precompiled__InheritedNotifierElement_552313948__InheritedNotifierElement_552313948__2232" ,"Precompiled__ReadingOrderSortData_528280150_get_directionalAncestors_2233" ,"Precompiled_AllocationStub_Directionality_2234" ,"Precompiled____getAxisDirectionFromAxisReverseAndDirectionality_2235" ,"Precompiled_AllocationStub_Stack_2236" ,"Precompiled_AllocationStub_RenderStack_2237" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_add_add_2238" ,"Precompiled_AllocationStub_OverlayState_2239" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overlay_dart__Overlay_2240" ,"Precompiled_OverlayState__didChangeEntryOpacity_511319124_2241" ,"Precompiled_State_setState_2242" ,"Precompiled_OverlayState__remove_511319124_2243" ,"Precompiled_OverlayState_rearrange_2244" ,"Precompiled____listEquals_2245" ,"Precompiled____setEquals_2246" ,"Precompiled____mapEquals_2247" ,"Precompiled_AllocationStub__WidgetTicker_39311458_2248" ,"Precompiled_AllocationStub_TickerMode_2249" ,"Precompiled_TickerMode_of_2250" ,"Precompiled_AllocationStub__EffectiveTickerMode_39311458_2251" ,"Precompiled_AllocationStub__OverlayEntryWidgetState_511319124_2252" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overlay_dart___OverlayEntryWidget_2253" ,"Precompiled__OverlayEntryWidgetState_511319124__markNeedsBuild_511319124_2254" ,"Precompiled_AllocationStub_OverlayEntry_2255" ,"Precompiled_OverlayEntry_markNeedsBuild_2256" ,"Precompiled_OverlayEntry_set_opaque_2257" ,"Precompiled_AllocationStub_Overlay_2258" ,"Precompiled_Overlay_of_2259" ,"Precompiled_AllocationStub__TheatreElement_511319124_2260" ,"Precompiled_AllocationStub__RenderTheatre_511319124_2261" ,"Precompiled__RenderTheatre_511319124_paintStack_2262" ,"Precompiled__RenderTheatre_511319124_get__firstOnstageChild_511319124_2263" ,"Precompiled__RenderTheatre_511319124_paintStack_paintStack_2264" ,"Precompiled__RenderTheatre_511319124_set_skipCount_2265" ,"Precompiled__RenderTheatre_511319124_computeMaxIntrinsicHeight_2266" ,"Precompiled_RenderStack_getIntrinsicDimension_2267" ,"Precompiled__RenderTheatre_511319124_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2268" ,"Precompiled__RenderTheatre_511319124__markNeedResolution_511319124_2269" ,"Precompiled__RenderTheatre_511319124_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2270" ,"Precompiled__RenderTheatre_511319124_computeMinIntrinsicHeight_2271" ,"Precompiled__RenderTheatre_511319124__resolve_511319124_2272" ,"Precompiled__RenderTheatre_511319124_set_textDirection_2273" ,"Precompiled__RenderTheatre_511319124_computeMinIntrinsicWidth_2274" ,"Precompiled__RenderTheatre_511319124_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2275" ,"Precompiled__RenderTheatre_511319124_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2276" ,"Precompiled__RenderTheatre_511319124_computeMaxIntrinsicWidth_2277" ,"Precompiled__RenderTheatre_511319124_get__lastOnstageChild_511319124_2278" ,"Precompiled__RenderTheatre_511319124__RenderTheatre_511319124__2279" ,"Precompiled_AllocationStub__Theatre_511319124_2280" ,"Precompiled_AllocationStub__OverlayEntryWidget_511319124_2281" ,"Precompiled_AllocationStub_StackParentData_2282" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124__removeFromChildList_419266271_2283" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124__insertIntoChildList_419266271_2284" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_435419958_defaultPaint_2285" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_435419958_defaultHitTestChildren_2286" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_435419958_defaultComputeDistanceToHighestActualBaseline_2287" ,"Precompiled_AllocationStub_RelativeRect_2288" ,"Precompiled_RelativeRect_RelativeRect_fromRect_2289" ,"Precompiled_RelativeRect_RelativeRect_fromSize_2290" ,"Precompiled_RenderStack_paintStack_2291" ,"Precompiled_RenderStack_paintStack_paintStack_2292" ,"Precompiled_RenderStack__markNeedResolution_435419958_2293" ,"Precompiled_RenderStack_computeMaxIntrinsicHeight_2294" ,"Precompiled_RenderStack_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2295" ,"Precompiled_RenderStack_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2296" ,"Precompiled_RenderStack_computeMinIntrinsicHeight_2297" ,"Precompiled_AlignmentGeometry_dyn_add_2298" ,"Precompiled_AlignmentGeometry_add_add_2299" ,"Precompiled_AllocationStub_Alignment_2300" ,"Precompiled_Alignment_dyn___2301" ,"Precompiled_Alignment_dyn___2302" ,"Precompiled_Alignment_dyn___2303" ,"Precompiled_Alignment_dyn_add_2304" ,"Precompiled_Alignment_add_add_2305" ,"Precompiled_Alignment__stringify_351341779_2306" ,"Precompiled__Double_0150898_toStringAsFixed_2307" ,"Precompiled__Double_0150898__toStringAsFixed_0150898_2308" ,"Precompiled_Alignment_inscribe_2309" ,"Precompiled_Alignment_withinRect_2310" ,"Precompiled_Alignment_alongSize_2311" ,"Precompiled_Alignment_alongOffset_2312" ,"Precompiled_AllocationStub__MixedAlignment_351341779_2313" ,"Precompiled_AllocationStub_AlignmentDirectional_2314" ,"Precompiled_AlignmentDirectional_dyn___2315" ,"Precompiled_AlignmentDirectional_dyn___2316" ,"Precompiled_AlignmentDirectional_dyn___2317" ,"Precompiled_AlignmentDirectional_dyn_add_2318" ,"Precompiled_AlignmentDirectional_add_add_2319" ,"Precompiled_AlignmentDirectional__stringify_351341779_2320" ,"Precompiled_AlignmentDirectional_lerp_2321" ,"Precompiled_AlignmentGeometry_lerp_2322" ,"Precompiled_RenderStack__resolve_435419958_2323" ,"Precompiled_RenderStack_RenderStack__2324" ,"Precompiled_RenderStack_set_alignment_2325" ,"Precompiled_RenderStack_layoutPositionedChild_2326" ,"Precompiled_RenderStack_set_textDirection_2327" ,"Precompiled_RenderStack_computeMinIntrinsicWidth_2328" ,"Precompiled_RenderStack_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2329" ,"Precompiled_RenderStack_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2330" ,"Precompiled_RenderStack_computeMaxIntrinsicWidth_2331" ,"Precompiled_RenderStack_set_fit_2332" ,"Precompiled_AllocationStub_RichText_2333" ,"Precompiled_AllocationStub_RenderParagraph_2334" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_add_add_2335" ,"Precompiled_AllocationStub_TextParentData_2336" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678__insertIntoChildList_419266271_2337" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_attach_2338" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_get_firstChild_2339" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678__removeFromChildList_419266271_2340" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_detach_2341" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin_420149678_systemFontsDidChange_2342" ,"Precompiled_RenderParagraph__computeIntrinsicHeight_420149678_2343" ,"Precompiled__Double_0150898_ceilToDouble_2344" ,"Precompiled_RenderParagraph__layoutText_420149678_2345" ,"Precompiled_TextPainter_layout_2346" ,"Precompiled_TextPainter_get_maxIntrinsicWidth_2347" ,"Precompiled_AllocationStub_TextPainter_2348" ,"Precompiled_AllocationStub__CaretMetrics_388105366_2349" ,"Precompiled_TextPainter_getWordBoundary_2350" ,"Precompiled_TextPainter_get_preferredLineHeight_2351" ,"Precompiled_TextStyle_getTextStyle_2352" ,"Precompiled_AllocationStub_TextStyle_2353" ,"Precompiled_TextStyle_getParagraphStyle_2354" ,"Precompiled_AllocationStub_StrutStyle_2355" ,"Precompiled_StrutStyle_StrutStyle_fromTextStyle_2356" ,"Precompiled_TextStyle_lerp_2357" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_style_dart__TextStyle_2358" ,"Precompiled_TextStyle_merge_2359" ,"Precompiled_TextStyle_apply_2360" ,"Precompiled_TextPainter__getRectFromDownstream_388105366_2361" ,"Precompiled_InlineSpan_toPlainText_2362" ,"Precompiled_TextSpan_computeToPlainText_2363" ,"Precompiled_AllocationStub_TextSpan_2364" ,"Precompiled_AllocationStub_InlineSpanSemanticsInformation_2365" ,"Precompiled_AllocationStub_Accumulator_2366" ,"Precompiled_Accumulator_increment_2367" ,"Precompiled_InlineSpan_get_hashCode_2368" ,"Precompiled_InlineSpan____2369" ,"Precompiled_InlineSpan_getSemanticsInformation_2370" ,"Precompiled_TextSpan_computeSemanticsInformation_2371" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_inline_span_dart__InlineSpanSemanticsInformation_2372" ,"Precompiled_InlineSpan_getSpanForPosition_2373" ,"Precompiled_TextSpan_codeUnitAtVisitor_2374" ,"Precompiled_TextSpan_getSpanForPositionVisitor_2375" ,"Precompiled_TextPainter_get_didExceedMaxLines_2376" ,"Precompiled_TextPainter_getOffsetBefore_2377" ,"Precompiled_TextPainter_get_width_2378" ,"Precompiled_TextPainter_getOffsetForCaret_2379" ,"Precompiled_TextPainter__computeCaretMetrics_388105366_2380" ,"Precompiled_TextPainter_get__emptyOffset_388105366_2381" ,"Precompiled_TextPainter__getRectFromUpstream_388105366_2382" ,"Precompiled_TextPainter_set_locale_2383" ,"Precompiled_TextPainter_getOffsetAfter_2384" ,"Precompiled_TextPainter_getBoxesForSelection_2385" ,"Precompiled_TextPainter_get_height_2386" ,"Precompiled_TextPainter_setPlaceholderDimensions_2387" ,"Precompiled_TextPainter_set_text_2388" ,"Precompiled_TextPainter_getFullHeightForCaret_2389" ,"Precompiled_TextPainter_set_textDirection_2390" ,"Precompiled_TextPainter_get_size_2391" ,"Precompiled_TextPainter_getLineBoundary_2392" ,"Precompiled_TextPainter_getPositionForOffset_2393" ,"Precompiled_TextPainter_set_ellipsis_2394" ,"Precompiled_TextPainter_set_textAlign_2395" ,"Precompiled_TextPainter_set_strutStyle_2396" ,"Precompiled_TextPainter_set_textScaleFactor_2397" ,"Precompiled_TextPainter_set_maxLines_2398" ,"Precompiled_TextPainter_get_minIntrinsicWidth_2399" ,"Precompiled_TextPainter__createParagraphStyle_388105366_2400" ,"Precompiled_RenderParagraph__computeChildrenHeightWithMinIntrinsics_420149678_2401" ,"Precompiled_RenderParagraph__canComputeIntrinsics_420149678_2402" ,"Precompiled_RenderParagraph_RenderParagraph__2403" ,"Precompiled_RenderParagraph__extractPlaceholderSpans_420149678_2404" ,"Precompiled_RenderParagraph__computeChildrenWidthWithMaxIntrinsics_420149678_2405" ,"Precompiled_RenderParagraph_computeMaxIntrinsicHeight_2406" ,"Precompiled_RenderParagraph_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2407" ,"Precompiled_RenderParagraph_get_text_2408" ,"Precompiled_RenderParagraph_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2409" ,"Precompiled_RenderParagraph_set_text_2410" ,"Precompiled_RenderParagraph_handleEvent_handleEvent_2411" ,"Precompiled_RenderParagraph__layoutTextWithConstraints_420149678_2412" ,"Precompiled_RenderParagraph__layoutChildren_420149678_2413" ,"Precompiled_RenderParagraph_get_textDirection_2414" ,"Precompiled_RenderParagraph__computeChildrenWidthWithMinIntrinsics_420149678_2415" ,"Precompiled_RenderParagraph_set_softWrap_2416" ,"Precompiled_RenderParagraph_set_textAlign_2417" ,"Precompiled_RenderParagraph_set_strutStyle_2418" ,"Precompiled_RenderParagraph_set_textScaleFactor_2419" ,"Precompiled_RenderParagraph_get_locale_2420" ,"Precompiled_RenderParagraph_set_maxLines_2421" ,"Precompiled_RenderParagraph_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2422" ,"Precompiled_RenderParagraph_computeMinIntrinsicWidth_2423" ,"Precompiled_RenderParagraph_systemFontsDidChange_2424" ,"Precompiled_RenderParagraph_systemFontsDidChange_systemFontsDidChange_2425" ,"Precompiled_RenderParagraph_set_overflow_2426" ,"Precompiled_RenderParagraph_get_textScaleFactor_2427" ,"Precompiled_RenderParagraph_set_locale_2428" ,"Precompiled_RenderParagraph_set_textDirection_2429" ,"Precompiled_RenderParagraph_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2430" ,"Precompiled_RenderParagraph_computeMaxIntrinsicWidth_2431" ,"Precompiled_RenderParagraph__combineSemanticsInfo_420149678_2432" ,"Precompiled_RenderParagraph__setParentData_420149678_2433" ,"Precompiled_RichText__extractChildren_480167661_2434" ,"Precompiled_RichText_RichText__2435" ,"Precompiled_AllocationStub_BlockSemantics_2436" ,"Precompiled_AllocationStub_RenderBlockSemantics_2437" ,"Precompiled_RenderAligningShiftedBox_alignChild_2438" ,"Precompiled_RenderAligningShiftedBox__resolve_426204652_2439" ,"Precompiled_RenderAligningShiftedBox_set_textDirection_2440" ,"Precompiled_RenderAligningShiftedBox__markNeedResolution_426204652_2441" ,"Precompiled_RenderAligningShiftedBox_set_alignment_2442" ,"Precompiled_AllocationStub_RenderPadding_2443" ,"Precompiled_RenderPadding_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2444" ,"Precompiled_RenderPadding_computeMaxIntrinsicHeight_2445" ,"Precompiled_RenderPadding__resolve_426204652_2446" ,"Precompiled_RenderPadding_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2447" ,"Precompiled_RenderPadding_computeMinIntrinsicHeight_2448" ,"Precompiled_RenderPadding_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2449" ,"Precompiled_RenderPadding_computeMaxIntrinsicWidth_2450" ,"Precompiled_RenderPadding_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2451" ,"Precompiled_RenderPadding_computeMinIntrinsicWidth_2452" ,"Precompiled_RenderPadding_set_textDirection_2453" ,"Precompiled_RenderPadding_set_padding_2454" ,"Precompiled_AllocationStub_RenderCustomSingleChildLayoutBox_2455" ,"Precompiled_RenderCustomSingleChildLayoutBox_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2456" ,"Precompiled_RenderCustomSingleChildLayoutBox_computeMaxIntrinsicHeight_2457" ,"Precompiled_RenderCustomSingleChildLayoutBox__getSize_426204652_2458" ,"Precompiled_RenderCustomSingleChildLayoutBox_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2459" ,"Precompiled_RenderCustomSingleChildLayoutBox_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2460" ,"Precompiled_RenderCustomSingleChildLayoutBox_computeMaxIntrinsicWidth_2461" ,"Precompiled_RenderCustomSingleChildLayoutBox_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2462" ,"Precompiled_RenderCustomSingleChildLayoutBox_set_delegate_2463" ,"Precompiled_AllocationStub_AppBar_2464" ,"Precompiled_TypeTestingStub_package_flutter_src_material_app_bar_dart__AppBar_2465" ,"Precompiled_AppBar__getEffectiveCenterTitle_240187611_2466" ,"Precompiled_AppBar_AppBar__2467" ,"Precompiled_AllocationStub__AppBarState_240187611_2468" ,"Precompiled__AppBarState_240187611__handleDrawerButtonEnd_240187611__handleDrawerButtonEnd_240187611_2469" ,"Precompiled__AppBarState_240187611__handleDrawerButtonEnd_240187611_2470" ,"Precompiled_ScaffoldState_openEndDrawer_2471" ,"Precompiled_DrawerControllerState_open_2472" ,"Precompiled_AnimationController_fling_2473" ,"Precompiled_AnimationController__startSimulation_152066280_2474" ,"Precompiled_AnimationController__checkStatusChanged_152066280_2475" ,"Precompiled_AnimationController_stop_2476" ,"Precompiled_AllocationStub_ScaffoldState_2477" ,"Precompiled_AllocationStub_Scaffold_2478" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart__Scaffold_2479" ,"Precompiled__ScaffoldState_State_TickerProviderStateMixin_319420462_didChangeDependencies_2480" ,"Precompiled_AllocationStub__ScaffoldScope_319420462_2481" ,"Precompiled_AllocationStub__FloatingActionButtonTransition_319420462_2482" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart___FloatingActionButtonTransition_2483" ,"Precompiled_AllocationStub__ScaffoldLayout_319420462_2484" ,"Precompiled_AllocationStub_RenderCustomMultiChildLayoutBox_2485" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_add_add_2486" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_detach_2487" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_attach_2488" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771__removeFromChildList_419266271_2489" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771__insertIntoChildList_419266271_2490" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_159305771_defaultPaint_2491" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_159305771_defaultHitTestChildren_2492" ,"Precompiled_RenderCustomMultiChildLayoutBox_computeMinIntrinsicHeight_2493" ,"Precompiled_RenderCustomMultiChildLayoutBox__getSize_405472081_2494" ,"Precompiled_RenderCustomMultiChildLayoutBox_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2495" ,"Precompiled_RenderCustomMultiChildLayoutBox_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2496" ,"Precompiled_RenderCustomMultiChildLayoutBox_computeMinIntrinsicWidth_2497" ,"Precompiled_RenderCustomMultiChildLayoutBox_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2498" ,"Precompiled_RenderCustomMultiChildLayoutBox_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2499" ,"Precompiled_RenderCustomMultiChildLayoutBox_set_delegate_2500" ,"Precompiled_AllocationStub__ToolbarLayout_576023576_2501" ,"Precompiled_AllocationStub_NavigationToolbar_2502" ,"Precompiled_AllocationStub_MultiChildLayoutParentData_2503" ,"Precompiled_MultiChildLayoutDelegate__callPerformLayout_405472081_2504" ,"Precompiled_MultiChildLayoutDelegate_positionChild_2505" ,"Precompiled_MultiChildLayoutDelegate_layoutChild_2506" ,"Precompiled_MultiChildLayoutDelegate_hasChild_2507" ,"Precompiled__ScaffoldLayout_319420462__ScaffoldLayout_319420462__2508" ,"Precompiled_AllocationStub_ScaffoldGeometry_2509" ,"Precompiled_ScaffoldGeometry__scaleFloatingActionButton_319420462_2510" ,"Precompiled_AllocationStub__BodyBuilder_319420462_2511" ,"Precompiled_AllocationStub_ScaffoldPrelayoutGeometry_2512" ,"Precompiled_AllocationStub__BodyBoxConstraints_319420462_2513" ,"Precompiled_AllocationStub__FloatingActionButtonTransitionState_319420462_2514" ,"Precompiled__FloatingActionButtonTransitionState_319420462_init__entranceTurnTween_319420462_2515" ,"Precompiled__FloatingActionButtonTransitionState_319420462__onProgressChanged_319420462__onProgressChanged_319420462_2516" ,"Precompiled__FloatingActionButtonTransitionState_319420462__onProgressChanged_319420462_2517" ,"Precompiled__FloatingActionButtonTransitionState_319420462__updateGeometryScale_319420462_2518" ,"Precompiled__ScaffoldGeometryNotifier_319420462__updateWith_319420462_2519" ,"Precompiled__FloatingActionButtonTransitionState_319420462__handlePreviousAnimationStatusChanged_319420462__handlePreviousAnimationStatusChanged_319420462_2520" ,"Precompiled__FloatingActionButtonTransitionState_319420462__handlePreviousAnimationStatusChanged_319420462_2521" ,"Precompiled__FloatingActionButtonTransitionState_319420462__updateAnimations_319420462_2522" ,"Precompiled_AllocationStub__ScaffoldGeometryNotifier_319420462_2523" ,"Precompiled__ScaffoldGeometryNotifier_319420462__ScaffoldGeometryNotifier_319420462__2524" ,"Precompiled_ScaffoldState_get__resizeToAvoidBottomInset_319420462_2525" ,"Precompiled_ScaffoldState__maybeBuildPersistentBottomSheet_319420462_2526" ,"Precompiled_ScaffoldState_openDrawer_2527" ,"Precompiled_ScaffoldState_get_hasEndDrawer_2528" ,"Precompiled_ScaffoldState_ScaffoldState__2529" ,"Precompiled_ScrollController_ScrollController__2530" ,"Precompiled_ViewportOffset_debugFillDescription_2531" ,"Precompiled_ViewportOffset_moveTo_2532" ,"Precompiled_ScrollPositionWithSingleContext_animateTo_2533" ,"Precompiled_ScrollPositionWithSingleContext_beginActivity_2534" ,"Precompiled_ScrollPositionWithSingleContext_updateUserScrollDirection_2535" ,"Precompiled_ScrollPosition_didUpdateScrollDirection_2536" ,"Precompiled_Notification_dispatch_2537" ,"Precompiled_AllocationStub_NotificationListener_2538" ,"Precompiled_NotificationListener__dispatch_538140401_2539" ,"Precompiled_Notification_visitAncestor_visitAncestor_2540" ,"Precompiled_Notification_visitAncestor_2541" ,"Precompiled_AllocationStub_UserScrollNotification_2542" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_555159306_visitAncestor_visitAncestor_2543" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_555159306_visitAncestor_2544" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_555159306_debugFillDescription_2545" ,"Precompiled_ScrollNotification_debugFillDescription_2546" ,"Precompiled____defaultScrollNotificationPredicate_2547" ,"Precompiled____defaultScrollNotificationPredicate_defaultScrollNotificationPredicate_2548" ,"Precompiled_AllocationStub_ScrollEndNotification_2549" ,"Precompiled_AllocationStub_DragEndDetails_2550" ,"Precompiled_AllocationStub_DragUpdateDetails_2551" ,"Precompiled_AllocationStub_DragDownDetails_2552" ,"Precompiled_AllocationStub_DragStartDetails_2553" ,"Precompiled_AllocationStub_Velocity_2554" ,"Precompiled_Velocity_dyn___2555" ,"Precompiled_Velocity_dyn___2556" ,"Precompiled_AllocationStub_VelocityTracker_2557" ,"Precompiled_VelocityTracker_getVelocityEstimate_2558" ,"Precompiled_AllocationStub_VelocityEstimate_2559" ,"Precompiled_LeastSquaresSolver_solve_2560" ,"Precompiled__Matrix_226188158_get_2561" ,"Precompiled__Vector_226188158_dyn____2562" ,"Precompiled__Vector_226188158__Vector_226188158__2563" ,"Precompiled_AllocationStub__Vector_226188158_2564" ,"Precompiled__Vector_226188158_norm_2565" ,"Precompiled__Matrix_226188158_getRow_2566" ,"Precompiled__Matrix_226188158_set_2567" ,"Precompiled_AllocationStub__Matrix_226188158_2568" ,"Precompiled_AllocationStub_PolynomialFit_2569" ,"Precompiled_AllocationStub_LeastSquaresSolver_2570" ,"Precompiled_VelocityTracker_addPosition_2571" ,"Precompiled_AllocationStub__PointAtTime_236010635_2572" ,"Precompiled_Velocity_clampMagnitude_2573" ,"Precompiled_AllocationStub_ScrollStartNotification_2574" ,"Precompiled_AllocationStub_ScrollUpdateNotification_2575" ,"Precompiled_AllocationStub_OverscrollNotification_2576" ,"Precompiled_ScrollableState_get_notificationContext_2577" ,"Precompiled_AllocationStub_ScrollableState_2578" ,"Precompiled_AllocationStub_Scrollable_2579" ,"Precompiled_Scrollable_ensureVisible_2580" ,"Precompiled_Future_wait_2581" ,"Precompiled_Future_Future_error_2582" ,"Precompiled_ScrollPosition_ensureVisible_2583" ,"Precompiled_RenderAbstractViewport_of_2584" ,"Precompiled____applyGrowthDirectionToScrollDirection_2585" ,"Precompiled____applyGrowthDirectionToAxisDirection_2586" ,"Precompiled_AllocationStub_SliverGeometry_2587" ,"Precompiled_AllocationStub_SliverHitTestResult_2588" ,"Precompiled_SliverHitTestResult_addWithAxisOffset_2589" ,"Precompiled_AllocationStub_SliverPhysicalContainerParentData_2590" ,"Precompiled_AllocationStub_SliverPhysicalParentData_2591" ,"Precompiled_AllocationStub_SliverHitTestEntry_2592" ,"Precompiled_AllocationStub_SliverLogicalContainerParentData_2593" ,"Precompiled_AllocationStub_SliverConstraints_2594" ,"Precompiled_SliverConstraints_asBoxConstraints_2595" ,"Precompiled_SliverConstraints_get_axis_2596" ,"Precompiled_RenderSliver_handleEvent_handleEvent_2597" ,"Precompiled_RenderSliver_hitTest_hitTest_2598" ,"Precompiled_RenderSliver_calculateCacheOffset_2599" ,"Precompiled_RenderSliver_calculatePaintOffset_2600" ,"Precompiled_RenderSliver_set_geometry_2601" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_sliver_dart__RenderSliver_2602" ,"Precompiled_RenderViewportBase_set_crossAxisDirection_2603" ,"Precompiled_RenderViewportBase_set_cacheExtentStyle_2604" ,"Precompiled_RenderViewportBase_RenderViewportBase__2605" ,"Precompiled_RenderViewportBase_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2606" ,"Precompiled_RenderViewportBase_computeAbsolutePaintOffset_2607" ,"Precompiled_RenderViewportBase_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2608" ,"Precompiled_RenderViewportBase_set_axisDirection_2609" ,"Precompiled_RenderViewportBase_showOnScreen_showOnScreen_2610" ,"Precompiled_RenderViewportBase_showInViewport_2611" ,"Precompiled_ScrollPosition_moveTo_2612" ,"Precompiled_RenderViewportBase_get_axis_2613" ,"Precompiled_RenderViewportBase__paintContents_441057554_2614" ,"Precompiled_AllocationStub__SyncIterator_0150898_2615" ,"Precompiled_RenderViewportBase__paintContents_441057554__paintContents_441057554_2616" ,"Precompiled_RenderViewportBase_set_offset_2617" ,"Precompiled_RenderViewportBase_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2618" ,"Precompiled_RenderViewportBase_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2619" ,"Precompiled_RenderViewportBase_layoutChildSequence_2620" ,"Precompiled_RenderViewportBase_set_cacheExtent_2621" ,"Precompiled_AllocationStub_RenderShrinkWrappingViewport_2622" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_sliver_dart__SliverLogicalContainerParentData_2623" ,"Precompiled_RenderShrinkWrappingViewport__attemptLayout_441057554_2624" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_childAfter_childAfter_2625" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_childAfter_2626" ,"Precompiled_AllocationStub_RenderViewport_2627" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_sliver_dart__SliverPhysicalContainerParentData_2628" ,"Precompiled_RenderViewport__attemptLayout_441057554_2629" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_childBefore_2630" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_childBefore_childBefore_2631" ,"Precompiled_RenderViewport_RenderViewport__2632" ,"Precompiled_RenderViewport_set_anchor_2633" ,"Precompiled_RenderViewport_set_center_2634" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_add_add_2635" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554__insertIntoChildList_419266271_2636" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_attach_2637" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554__removeFromChildList_419266271_2638" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_detach_2639" ,"Precompiled_AllocationStub_RevealedOffset_2640" ,"Precompiled_Scrollable_of_2641" ,"Precompiled_Scrollable_recommendDeferredLoadingForContext_2642" ,"Precompiled_ScrollPosition_recommendDeferredLoading_2643" ,"Precompiled_ScrollPhysics_recommendDeferredLoading_2644" ,"Precompiled_AllocationStub_ClampingScrollPhysics_2645" ,"Precompiled_AllocationStub_RangeMaintainingScrollPhysics_2646" ,"Precompiled_AllocationStub_BouncingScrollPhysics_2647" ,"Precompiled_AllocationStub_AlwaysScrollableScrollPhysics_2648" ,"Precompiled_ScrollPhysics_init__kDefaultTolerance_521316757_2649" ,"Precompiled_AllocationStub_Tolerance_2650" ,"Precompiled_ScrollPhysics_init__kDefaultSpring_521316757_2651" ,"Precompiled_ScrollPhysics_get_spring_2652" ,"Precompiled_ScrollPhysics_get_maxFlingVelocity_2653" ,"Precompiled_ScrollPhysics_buildParent_2654" ,"Precompiled_ScrollPhysics_get_minFlingDistance_2655" ,"Precompiled_ScrollableState_get_axisDirection_2656" ,"Precompiled_ScrollPositionWithSingleContext_get_axisDirection_2657" ,"Precompiled_AllocationStub_ScrollPositionWithSingleContext_2658" ,"Precompiled_AllocationStub_IdleScrollActivity_2659" ,"Precompiled_AllocationStub_BallisticScrollActivity_2660" ,"Precompiled_BallisticScrollActivity__end_579498029__end_579498029_2661" ,"Precompiled_BallisticScrollActivity__end_579498029_2662" ,"Precompiled_ScrollPositionWithSingleContext_goBallistic_2663" ,"Precompiled_ScrollPositionWithSingleContext_goIdle_2664" ,"Precompiled_BallisticScrollActivity_BallisticScrollActivity__2665" ,"Precompiled_AnimationController_animateWith_2666" ,"Precompiled_AnimationController_AnimationController_unbounded_2667" ,"Precompiled_AnimationController__internalSetValue_152066280_2668" ,"Precompiled_BallisticScrollActivity__tick_579498029__tick_579498029_2669" ,"Precompiled_BallisticScrollActivity__tick_579498029_2670" ,"Precompiled_BallisticScrollActivity_applyMoveTo_2671" ,"Precompiled_ScrollPositionWithSingleContext_setPixels_2672" ,"Precompiled_ScrollPosition_setPixels_2673" ,"Precompiled_ScrollPosition_didOverscrollBy_2674" ,"Precompiled_ScrollPosition_didUpdateScrollPositionBy_2675" ,"Precompiled_ScrollPosition_notifyListeners_2676" ,"Precompiled_ScrollPosition__updateSemanticActions_556085019_2677" ,"Precompiled_ScrollableState_setSemanticsActions_2678" ,"Precompiled_RawGestureDetectorState_replaceSemanticsActions_2679" ,"Precompiled_RenderSemanticsGestureHandler_set_validActions_2680" ,"Precompiled_AllocationStub_RenderSemanticsGestureHandler_2681" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollRight_423160605__performSemanticScrollRight_423160605_2682" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollRight_423160605_2683" ,"Precompiled_RenderSemanticsGestureHandler_set_onTap_2684" ,"Precompiled_RenderSemanticsGestureHandler_set_onVerticalDragUpdate_2685" ,"Precompiled_RenderSemanticsGestureHandler_set_onHorizontalDragUpdate_2686" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollUp_423160605_2687" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollUp_423160605__performSemanticScrollUp_423160605_2688" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollDown_423160605__performSemanticScrollDown_423160605_2689" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollDown_423160605_2690" ,"Precompiled_RenderSemanticsGestureHandler__isValidAction_423160605_2691" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollLeft_423160605__performSemanticScrollLeft_423160605_2692" ,"Precompiled_RenderSemanticsGestureHandler__performSemanticScrollLeft_423160605_2693" ,"Precompiled_RenderSemanticsGestureHandler_set_onLongPress_2694" ,"Precompiled_AllocationStub_RawGestureDetectorState_2695" ,"Precompiled_AllocationStub_RawGestureDetector_2696" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_gesture_detector_dart__RawGestureDetector_2697" ,"Precompiled_AllocationStub_GestureRecognizerFactoryWithHandlers_2698" ,"Precompiled_AllocationStub_GestureArenaEntry_2699" ,"Precompiled_AllocationStub__GestureArena_214060655_2700" ,"Precompiled__GestureArena_214060655_dyn_add_2701" ,"Precompiled__GestureArena_214060655_add_add_2702" ,"Precompiled_AllocationStub_GestureArenaManager_2703" ,"Precompiled_GestureArenaManager_dyn_add_2704" ,"Precompiled_GestureArenaManager_add_add_2705" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_arena_dart__GestureArenaEntry_2706" ,"Precompiled_GestureArenaManager__resolveInFavorOf_214060655_2707" ,"Precompiled_GestureArenaManager__resolveByDefault_214060655_2708" ,"Precompiled_GestureArenaManager__tryToResolveArena_214060655_2709" ,"Precompiled_GestureArenaManager__resolve_214060655_2710" ,"Precompiled_GestureArenaManager_release_2711" ,"Precompiled_GestureArenaManager_sweep_2712" ,"Precompiled_GestureArenaManager_hold_2713" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_arena_dart__GestureArenaMember_2714" ,"Precompiled_PrimaryPointerGestureRecognizer_handleEvent_handleEvent_2715" ,"Precompiled_PrimaryPointerGestureRecognizer__getGlobalDistance_232296176_2716" ,"Precompiled_PrimaryPointerGestureRecognizer__stopTimer_232296176_2717" ,"Precompiled_PrimaryPointerGestureRecognizer_acceptGesture_2718" ,"Precompiled_PrimaryPointerGestureRecognizer_didExceedDeadlineWithEvent_2719" ,"Precompiled_LongPressGestureRecognizer__checkLongPressStart_225232524_2720" ,"Precompiled_GestureRecognizer_invokeCallback_2721" ,"Precompiled_AllocationStub_LongPressStartDetails_2722" ,"Precompiled_AllocationStub_LongPressMoveUpdateDetails_2723" ,"Precompiled_AllocationStub_LongPressGestureRecognizer_2724" ,"Precompiled_LongPressGestureRecognizer__reset_225232524_2725" ,"Precompiled_LongPressGestureRecognizer__checkLongPressEnd_225232524_2726" ,"Precompiled_AllocationStub_LongPressEndDetails_2727" ,"Precompiled_LongPressGestureRecognizer__checkLongPressMoveUpdate_225232524_2728" ,"Precompiled_BaseTapGestureRecognizer__checkDown_234069716_2729" ,"Precompiled_AllocationStub_TapGestureRecognizer_2730" ,"Precompiled_AllocationStub_TapUpDetails_2731" ,"Precompiled_AllocationStub_TapDownDetails_2732" ,"Precompiled_BaseTapGestureRecognizer__reset_234069716_2733" ,"Precompiled_BaseTapGestureRecognizer__checkCancel_234069716_2734" ,"Precompiled_BaseTapGestureRecognizer__checkUp_234069716_2735" ,"Precompiled_AllocationStub__AnyTapGestureRecognizer_575005443_2736" ,"Precompiled_AllocationStub__AnyTapGestureRecognizerFactory_575005443_2737" ,"Precompiled_AllocationStub__ModalBarrierGestureDetector_575005443_2738" ,"Precompiled_AllocationStub__ModalBarrierSemanticsDelegate_575005443_2739" ,"Precompiled_AllocationStub_ModalBarrier_2740" ,"Precompiled_AllocationStub_AnimatedModalBarrier_2741" ,"Precompiled_AllocationStub_FadeTransition_2742" ,"Precompiled_AllocationStub_RenderAnimatedOpacity_2743" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_2744" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMaxIntrinsicHeight_2745" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMinIntrinsicHeight_computeMinIntrinsicHeight_2746" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMinIntrinsicHeight_2747" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_2748" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMaxIntrinsicWidth_2749" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMinIntrinsicWidth_computeMinIntrinsicWidth_2750" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeMinIntrinsicWidth_2751" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_paint_2752" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_paint_paint_2753" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605__updateOpacity_423160605__updateOpacity_423160605_2754" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605__updateOpacity_423160605_2755" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_set_alwaysIncludeSemantics_2756" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_set_opacity_2757" ,"Precompiled_RenderAnimatedOpacity_RenderAnimatedOpacity__2758" ,"Precompiled_AllocationStub_RotationTransition_2759" ,"Precompiled_AllocationStub_AnimatedBuilder_2760" ,"Precompiled_AllocationStub_DecoratedBoxTransition_2761" ,"Precompiled_AllocationStub__AnimatedState_496170175_2762" ,"Precompiled__AnimatedState_496170175__handleChange_496170175__handleChange_496170175_2763" ,"Precompiled__AnimatedState_496170175__handleChange_496170175_2764" ,"Precompiled_AllocationStub_SlideTransition_2765" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_animation_dart__Animation__dart_ui__Offset_2766" ,"Precompiled_AllocationStub_ScaleTransition_2767" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_transitions_dart__AnimatedWidget_2768" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_animation_dart__Animation__dart_ui__Color_2769" ,"Precompiled_PrimaryPointerGestureRecognizer_PrimaryPointerGestureRecognizer__2770" ,"Precompiled_OneSequenceGestureRecognizer_OneSequenceGestureRecognizer__2771" ,"Precompiled_AllocationStub_OffsetPair_2772" ,"Precompiled_OffsetPair_dyn___2773" ,"Precompiled_OffsetPair_dyn___2774" ,"Precompiled_OffsetPair_OffsetPair_fromEventPosition_2775" ,"Precompiled_OneSequenceGestureRecognizer_stopTrackingIfPointerNoLongerDown_2776" ,"Precompiled_OneSequenceGestureRecognizer_stopTrackingPointer_2777" ,"Precompiled_OneSequenceGestureRecognizer__addPointerToArena_232296176_2778" ,"Precompiled_OneSequenceGestureRecognizer_resolvePointer_2779" ,"Precompiled_GestureRecognizer_getKindForPointer_2780" ,"Precompiled_TypeTestingStub_dart_ui__PointerDeviceKind_2781" ,"Precompiled_GestureRecognizer_addPointer_2782" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_recognizer_dart__GestureRecognizer_2783" ,"Precompiled_AllocationStub__GestureSemantics_548132872_2784" ,"Precompiled_AllocationStub_GestureDetector_2785" ,"Precompiled_GestureDetector_GestureDetector__2786" ,"Precompiled_AllocationStub_ForcePressDetails_2787" ,"Precompiled_AllocationStub_ForcePressGestureRecognizer_2788" ,"Precompiled_ForcePressGestureRecognizer_handleEvent_handleEvent_2789" ,"Precompiled_ForcePressGestureRecognizer__inverseLerp_223518508_2790" ,"Precompiled_ForcePressGestureRecognizer__inverseLerp_223518508__inverseLerp_223518508_2791" ,"Precompiled_ForcePressGestureRecognizer_ForcePressGestureRecognizer__2792" ,"Precompiled_AllocationStub__DefaultSemanticsGestureDelegate_548132872_2793" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getVerticalDragUpdateHandler_548132872_2794" ,"Precompiled_AllocationStub_VerticalDragGestureRecognizer_2795" ,"Precompiled_AllocationStub_PanGestureRecognizer_2796" ,"Precompiled_AllocationStub_HorizontalDragGestureRecognizer_2797" ,"Precompiled_DragGestureRecognizer__checkDown_227099969_2798" ,"Precompiled_DragGestureRecognizer_handleEvent_handleEvent_2799" ,"Precompiled_DragGestureRecognizer__checkStart_227099969_2800" ,"Precompiled_DragGestureRecognizer_DragGestureRecognizer__2801" ,"Precompiled_DragGestureRecognizer__checkCancel_227099969_2802" ,"Precompiled_DragGestureRecognizer__giveUpPointer_227099969_2803" ,"Precompiled_DragGestureRecognizer__checkUpdate_227099969_2804" ,"Precompiled_DragGestureRecognizer__checkEnd_227099969_2805" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getHorizontalDragUpdateHandler_548132872_2806" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getLongPressHandler_548132872_2807" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getTapHandler_548132872_2808" ,"Precompiled_RawGestureDetectorState__updateSemanticsForRenderObject_548132872__updateSemanticsForRenderObject_548132872_2809" ,"Precompiled_RawGestureDetectorState__updateSemanticsForRenderObject_548132872_2810" ,"Precompiled_RawGestureDetectorState__handlePointerDown_548132872__handlePointerDown_548132872_2811" ,"Precompiled_RawGestureDetectorState__handlePointerDown_548132872_2812" ,"Precompiled_RawGestureDetectorState_get__defaultBehavior_548132872_2813" ,"Precompiled_RawGestureDetectorState__syncAll_548132872_2814" ,"Precompiled_RawGestureDetectorState_replaceGestureRecognizers_2815" ,"Precompiled_DrivenScrollActivity__end_579498029__end_579498029_2816" ,"Precompiled_DrivenScrollActivity__end_579498029_2817" ,"Precompiled_DrivenScrollActivity__tick_579498029__tick_579498029_2818" ,"Precompiled_DrivenScrollActivity__tick_579498029_2819" ,"Precompiled_AllocationStub_HoldScrollActivity_2820" ,"Precompiled_AllocationStub_DragScrollActivity_2821" ,"Precompiled_AllocationStub_ScrollDragController_2822" ,"Precompiled_ScrollDragController_end_2823" ,"Precompiled_ScrollDragController_get__reversed_579498029_2824" ,"Precompiled_ScrollDragController__adjustForScrollStartThreshold_579498029_2825" ,"Precompiled_ScrollDragController__maybeLoseMomentum_579498029_2826" ,"Precompiled_ScrollPositionWithSingleContext_hold_2827" ,"Precompiled_ScrollPositionWithSingleContext_dispose_dispose_2828" ,"Precompiled_ScrollPositionWithSingleContext_drag_2829" ,"Precompiled_ScrollPositionWithSingleContext_applyUserOffset_2830" ,"Precompiled_ScrollPositionWithSingleContext_ScrollPositionWithSingleContext__2831" ,"Precompiled_ScrollPosition_correctPixels_2832" ,"Precompiled_ScrollPosition_ScrollPosition__2833" ,"Precompiled_ScrollPositionWithSingleContext_absorb_2834" ,"Precompiled_ScrollPosition_absorb_2835" ,"Precompiled_ScrollableState_setIgnorePointer_2836" ,"Precompiled_RenderIgnorePointer_set_ignoring_2837" ,"Precompiled_AllocationStub_RenderIgnorePointer_2838" ,"Precompiled_RenderIgnorePointer_hitTest_hitTest_2839" ,"Precompiled_RenderIgnorePointer_get__effectiveIgnoringSemantics_423160605_2840" ,"Precompiled_RenderIgnorePointer_set_ignoringSemantics_2841" ,"Precompiled_ViewportOffset_ViewportOffset__2842" ,"Precompiled_ScrollMetrics_get_axis_2843" ,"Precompiled____init__defaultPageController_585030489_2844" ,"Precompiled_AllocationStub_PageController_2845" ,"Precompiled_PageController_previousPage_2846" ,"Precompiled_PageController_animateToPage_2847" ,"Precompiled__PagePosition_585030489_getPixelsFromPage_2848" ,"Precompiled__PagePosition_585030489_get__initialPageOffset_585030489_2849" ,"Precompiled__PagePosition_585030489_get_page_2850" ,"Precompiled__PagePosition_585030489_getPageFromPixels_2851" ,"Precompiled_PageController_nextPage_2852" ,"Precompiled_PageController_get_page_2853" ,"Precompiled_AllocationStub_PageScrollPhysics_2854" ,"Precompiled_PageScrollPhysics__getTargetPixels_585030489_2855" ,"Precompiled_PageScrollPhysics__getPixels_585030489_2856" ,"Precompiled_PageScrollPhysics__getPage_585030489_2857" ,"Precompiled_AllocationStub_PageView_2858" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_page_view_dart__PageView_2859" ,"Precompiled_PageView_PageView_builder_2860" ,"Precompiled_AllocationStub_SliverChildBuilderDelegate_2861" ,"Precompiled_____createErrorWidget_523358031_2862" ,"Precompiled_____kDefaultSemanticIndexCallback_523358031__kDefaultSemanticIndexCallback_523358031_2863" ,"Precompiled_AllocationStub_SliverChildListDelegate_2864" ,"Precompiled_SliverChildListDelegate__findChildIndex_523358031_2865" ,"Precompiled_SliverChildListDelegate_SliverChildListDelegate__2866" ,"Precompiled_AllocationStub_SliverMultiBoxAdaptorElement_2867" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_432211670_applyPaintTransformForBoxChild_2868" ,"Precompiled_RenderSliverMultiBoxAdaptor_childMainAxisPosition_2869" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_432211670__getRightWayUp_427505787_2870" ,"Precompiled_AllocationStub_RenderSliverGrid_2871" ,"Precompiled_AllocationStub_SliverGridRegularTileLayout_2872" ,"Precompiled_SliverGridRegularTileLayout_getGeometryForChildIndex_2873" ,"Precompiled_AllocationStub_SliverGridGeometry_2874" ,"Precompiled_SliverGridRegularTileLayout_getMaxChildIndexForScrollOffset_2875" ,"Precompiled_SliverGridRegularTileLayout_getMinChildIndexForScrollOffset_2876" ,"Precompiled__Double_0150898____2877" ,"Precompiled__Double_0150898__trunc_div_0150898_2878" ,"Precompiled_SliverGridGeometry_getBoxConstraints_2879" ,"Precompiled_AllocationStub_SliverGridParentData_2880" ,"Precompiled_RenderSliverGrid_set_gridDelegate_2881" ,"Precompiled_AllocationStub__YearPickerState_498246833_2882" ,"Precompiled_TypeTestingStub_package_flutter_src_material_pickers_calendar_date_picker_dart___YearPicker_2883" ,"Precompiled__YearPickerState_498246833__buildYearItem_498246833__buildYearItem_498246833_2884" ,"Precompiled__YearPickerState_498246833__buildYearItem_498246833_2885" ,"Precompiled_AllocationStub_InkWell_2886" ,"Precompiled_AllocationStub_InkResponse_2887" ,"Precompiled_InkResponse_getRectCallback_getRectCallback_2888" ,"Precompiled_InteractiveInkFeature_paintInkCircle_2889" ,"Precompiled____init_kMaterialEdges_2890" ,"Precompiled_BorderRadius_dyn___2891" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_border_radius_dart__BorderRadius_2892" ,"Precompiled_BorderRadius_dyn___2893" ,"Precompiled_BorderRadius_dyn___2894" ,"Precompiled_BorderRadius_dyn_add_2895" ,"Precompiled_BorderRadius_add_add_2896" ,"Precompiled_BorderRadiusGeometry_dyn_add_2897" ,"Precompiled_BorderRadiusGeometry_add_add_2898" ,"Precompiled_BorderRadiusGeometry_lerp_2899" ,"Precompiled_AllocationStub__MixedBorderRadius_355070249_2900" ,"Precompiled_BorderRadius_lerp_2901" ,"Precompiled_BorderRadius_toRRect_2902" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart__MaterialType_2903" ,"Precompiled_AllocationStub__RenderInkFeatures_298372823_2904" ,"Precompiled__RenderInkFeatures_298372823__didChangeLayout_298372823_2905" ,"Precompiled__RenderInkFeatures_298372823__removeFeature_298372823_2906" ,"Precompiled__RenderInkFeatures_298372823_addInkFeature_2907" ,"Precompiled_AllocationStub_Material_2908" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart__Material_2909" ,"Precompiled_Material_of_2910" ,"Precompiled_AllocationStub__MaterialInterior_298372823_2911" ,"Precompiled_AllocationStub__AnimatedOpacityState_497443363_2912" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedOpacity_2913" ,"Precompiled_AllocationStub_TextStyleTween_2914" ,"Precompiled_AllocationStub_AnimatedPhysicalModel_2915" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedPhysicalModel_2916" ,"Precompiled_ImplicitlyAnimatedWidgetState__constructTweens_497443363_2917" ,"Precompiled_ImplicitlyAnimatedWidgetState__updateTween_497443363_2918" ,"Precompiled_ImplicitlyAnimatedWidgetState__shouldAnimateTween_497443363_2919" ,"Precompiled_ImplicitlyAnimatedWidgetState__updateCurve_497443363_2920" ,"Precompiled_AllocationStub_DecorationTween_2921" ,"Precompiled_Decoration_hitTest_hitTest_2922" ,"Precompiled_Decoration_lerp_2923" ,"Precompiled_BoxDecoration_lerp_2924" ,"Precompiled_BoxShadow_lerpList_2925" ,"Precompiled_AllocationStub_BoxShadow_2926" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_box_shadow_dart__BoxShadow_2927" ,"Precompiled_TypeTestingStub_dart_ui__Paint_2928" ,"Precompiled_BoxShadow_lerp_2929" ,"Precompiled_BoxBorder_lerp_2930" ,"Precompiled_BorderDirectional_lerp_2931" ,"Precompiled_ShapeBorder_dyn___2932" ,"Precompiled_ShapeBorder_dyn_add_2933" ,"Precompiled_ShapeBorder_add_add_2934" ,"Precompiled____paintBorder_2935" ,"Precompiled_AllocationStub_BorderSide_2936" ,"Precompiled_BorderSide_lerp_2937" ,"Precompiled_BorderSide_canMerge_2938" ,"Precompiled_BorderSide_toPaint_2939" ,"Precompiled_BorderSide_merge_2940" ,"Precompiled_ShapeBorder_lerp_2941" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_borders_dart__ShapeBorder_2942" ,"Precompiled_BoxBorder__paintUniformBorderWithRectangle_357461502_2943" ,"Precompiled_BoxBorder__paintUniformBorderWithCircle_357461502_2944" ,"Precompiled_BoxBorder__paintUniformBorderWithRadius_357461502_2945" ,"Precompiled_AllocationStub_Border_2946" ,"Precompiled_Border_dyn_add_2947" ,"Precompiled_Border_add_add_2948" ,"Precompiled_Border_get_isUniform_2949" ,"Precompiled_Border_merge_2950" ,"Precompiled_Border_lerp_2951" ,"Precompiled_AllocationStub__BoxDecorationPainter_358196095_2952" ,"Precompiled__BoxDecorationPainter_358196095__paintBackgroundColor_358196095_2953" ,"Precompiled__BoxDecorationPainter_358196095__paintBox_358196095_2954" ,"Precompiled__BoxDecorationPainter_358196095__getBackgroundPaint_358196095_2955" ,"Precompiled__BoxDecorationPainter_358196095__paintShadows_358196095_2956" ,"Precompiled_BoxDecoration_hitTest_hitTest_2957" ,"Precompiled_BoxDecoration_getClipPath_2958" ,"Precompiled_BoxDecoration_get_padding_2959" ,"Precompiled__CupertinoEdgeShadowDecoration_177053933_lerp_2960" ,"Precompiled_AllocationStub__CupertinoEdgeShadowDecoration_177053933_2961" ,"Precompiled_AllocationStub_LinearGradient_2962" ,"Precompiled_____interpolateColorsAndStops_372499651_2963" ,"Precompiled_AllocationStub__ColorsAndStops_372499651_2964" ,"Precompiled_SplayTreeSet_SplayTreeSet__2965" ,"Precompiled_AllocationStub__SplayTreeSetNode_3220832_2966" ,"Precompiled_SplayTreeSet_add_add_2967" ,"Precompiled__SplayTree_3220832_get__last_3220832_2968" ,"Precompiled__SplayTree_3220832__splayMax_3220832_2969" ,"Precompiled__SplayTree_3220832_get__first_3220832_2970" ,"Precompiled__SplayTree_3220832__splayMin_3220832_2971" ,"Precompiled__SplayTree_3220832__addNewRoot_3220832_2972" ,"Precompiled__SplayTree_3220832__remove_3220832_2973" ,"Precompiled__SplayTree_3220832__splay_3220832_2974" ,"Precompiled_SplayTreeSet_contains_contains_2975" ,"Precompiled_SplayTreeSet__newSet_3220832__newSet_3220832_2976" ,"Precompiled_AllocationStub_SplayTreeSet_2977" ,"Precompiled_____sample_372499651_2978" ,"Precompiled____init__kGradientShadowTween_177053933_2979" ,"Precompiled____init__kMiddleLeftTween_177053933_2980" ,"Precompiled____init__kRightMiddleTween_177053933_2981" ,"Precompiled_AllocationStub__CupertinoBackGestureController_177053933_2982" ,"Precompiled__CupertinoBackGestureController_177053933_dragEnd_2983" ,"Precompiled_NavigatorState_didStopUserGesture_2984" ,"Precompiled_HeroController_didStopUserGesture_2985" ,"Precompiled__HeroFlight_565011697__handleAnimationUpdate_565011697_2986" ,"Precompiled__HeroState_565011697_endFlight_2987" ,"Precompiled__HeroState_565011697_ensurePlaceholderIsHidden_2988" ,"Precompiled_AllocationStub__HeroState_565011697_2989" ,"Precompiled_AllocationStub_Hero_2990" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_heroes_dart___HeroState_2991" ,"Precompiled_Hero__allHeroesFor_565011697_2992" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_heroes_dart__Hero_2993" ,"Precompiled_____boundingBoxFor_565011697_2994" ,"Precompiled_AllocationStub_HeroController_2995" ,"Precompiled_AllocationStub__NavigatorPopObservation_529124995_2996" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart___NavigatorObservation_2997" ,"Precompiled__NavigatorPopObservation_529124995_notify_notify_2998" ,"Precompiled__NavigatorPopObservation_529124995_notify_2999" ,"Precompiled_AllocationStub__NavigatorRemoveObservation_529124995_3000" ,"Precompiled__NavigatorRemoveObservation_529124995_notify_notify_3001" ,"Precompiled__NavigatorRemoveObservation_529124995_notify_3002" ,"Precompiled_AllocationStub_RouteSettings_3003" ,"Precompiled_AllocationStub_NavigatorState_3004" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__Navigator_3005" ,"Precompiled_NavigatorState__flushHistoryUpdates_529124995_3006" ,"Precompiled_NavigatorState_get__allRouteOverlayEntries_529124995_3007" ,"Precompiled_NavigatorState_get_overlay_3008" ,"Precompiled_Route_get_settings_3009" ,"Precompiled_NavigatorState__flushRouteAnnouncement_529124995_3010" ,"Precompiled_NavigatorState__getRouteAfter_529124995_3011" ,"Precompiled__RouteEntry_529124995_init_suitableForTransitionAnimationPredicate_3012" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart___RouteEntry_3013" ,"Precompiled_NavigatorState__flushObserverNotifications_529124995_3014" ,"Precompiled__RouteEntry_529124995_handlePush_3015" ,"Precompiled_AllocationStub__NavigatorReplaceObservation_529124995_3016" ,"Precompiled_AllocationStub__NavigatorPushObservation_529124995_3017" ,"Precompiled_NavigatorState__getIndexBefore_529124995_3018" ,"Precompiled__RouteEntry_529124995_init_willBePresentPredicate_3019" ,"Precompiled__RouteEntry_529124995_init_isPresentPredicate_3020" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overlay_dart__OverlayEntry_3021" ,"Precompiled_NavigatorState__updateEffectiveObservers_529124995_3022" ,"Precompiled_NavigatorState__routeNamed_529124995_3023" ,"Precompiled_NavigatorState__afterNavigation_529124995_3024" ,"Precompiled_NavigatorState__cancelActivePointers_529124995_3025" ,"Precompiled_NavigatorState__handlePointerUpOrCancel_529124995__handlePointerUpOrCancel_529124995_3026" ,"Precompiled_NavigatorState__handlePointerUpOrCancel_529124995_3027" ,"Precompiled_NavigatorState__getRouteBefore_529124995_3028" ,"Precompiled_NavigatorState_get_userGestureInProgress_3029" ,"Precompiled_NavigatorState__handlePointerDown_529124995__handlePointerDown_529124995_3030" ,"Precompiled_NavigatorState__handlePointerDown_529124995_3031" ,"Precompiled_NavigatorState__updateHeroController_529124995_3032" ,"Precompiled_NavigatorState_maybePop_3033" ,"Precompiled_NavigatorState_NavigatorState__3034" ,"Precompiled_NavigatorState_push_3035" ,"Precompiled__RouteEntry_529124995__RouteEntry_529124995__3036" ,"Precompiled__RouteEntry_529124995_init_notAnnounced_3037" ,"Precompiled_Route_Route__3038" ,"Precompiled_AllocationStub__NotAnnounced_529124995_3039" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__Route_3040" ,"Precompiled_AllocationStub__RouteEntry_529124995_3041" ,"Precompiled_NavigatorState_pushNamed_3042" ,"Precompiled_NavigatorState_pushReplacement_3043" ,"Precompiled_NavigatorState_didStartUserGesture_3044" ,"Precompiled_HeroController__maybeStartHeroTransition_565011697_3045" ,"Precompiled_ModalRoute_set_offstage_3046" ,"Precompiled_ModalRoute_setState_3047" ,"Precompiled__ModalScopeState_49188637__routeSetState_49188637_3048" ,"Precompiled_FocusScopeNode_setFirstFocus_3049" ,"Precompiled_FocusScopeNode_autofocus_3050" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_manager_dart__FocusScopeNode_3051" ,"Precompiled__ModalScopeState_49188637_get__shouldIgnoreFocusRequest_49188637_3052" ,"Precompiled_AllocationStub__ModalScopeState_49188637_3053" ,"Precompiled_AllocationStub__ModalScope_49188637_3054" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_routes_dart___ModalScope__T_3055" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_49188637_willPop_3056" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__RoutePopDisposition_3057" ,"Precompiled_ModalRoute_createOverlayEntries_3058" ,"Precompiled_ModalRoute__buildModalBarrier_49188637__buildModalBarrier_49188637_3059" ,"Precompiled_ModalRoute__buildModalBarrier_49188637_3060" ,"Precompiled_AllocationStub_IgnorePointer_3061" ,"Precompiled_ModalRoute_get_hasScopedWillPopCallback_3062" ,"Precompiled_ModalRoute_get_canPop_3063" ,"Precompiled_Route_get_isFirst_3064" ,"Precompiled_ModalRoute_ModalRoute__3065" ,"Precompiled_TransitionRoute_TransitionRoute__3066" ,"Precompiled_AllocationStub_PageStorageBucket_3067" ,"Precompiled_AllocationStub_PageStorage_3068" ,"Precompiled_PageStorage_of_3069" ,"Precompiled_AllocationStub__StorageEntryIdentifier_584357337_3070" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_page_storage_dart__PageStorageKey_3071" ,"Precompiled_PageStorageBucket_readState_3072" ,"Precompiled_PageStorageBucket__computeIdentifier_584357337_3073" ,"Precompiled_PageStorageBucket__allKeys_584357337_3074" ,"Precompiled_PageStorageBucket__maybeAddKey_584357337_3075" ,"Precompiled_PageStorageBucket_writeState_3076" ,"Precompiled_ModalRoute__buildModalScope_49188637__buildModalScope_49188637_3077" ,"Precompiled_ModalRoute__buildModalScope_49188637_3078" ,"Precompiled_ModalRoute_get_subtreeContext_3079" ,"Precompiled_ModalRoute_of_3080" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_routes_dart__ModalRoute__T_3081" ,"Precompiled_OverlayRoute_dispose_3082" ,"Precompiled_OverlayRoute_didPop_3083" ,"Precompiled_NavigatorState_finalizeRoute_3084" ,"Precompiled__RouteEntry_529124995_finalize_3085" ,"Precompiled_TransitionRoute_get_finishedWhenPopped_3086" ,"Precompiled_OverlayRoute_install_3087" ,"Precompiled_TransitionRoute_didPush_3088" ,"Precompiled_AnimationController_forward_3089" ,"Precompiled_AnimationController__animateToInternal_152066280_3090" ,"Precompiled_TransitionRoute__handleStatusChanged_49188637_3091" ,"Precompiled_TransitionRoute__handleStatusChanged_49188637__handleStatusChanged_49188637_3092" ,"Precompiled_TransitionRoute__setSecondaryAnimation_49188637_3093" ,"Precompiled_TransitionRoute_install_3094" ,"Precompiled_TransitionRoute_createAnimationController_3095" ,"Precompiled_AnimationController_AnimationController__3096" ,"Precompiled_AllocationStub_MaterialPageRoute_3097" ,"Precompiled_AllocationStub__PopupMenuRoute_310182389_3098" ,"Precompiled____showMenu_3099" ,"Precompiled__PopupMenuRoute_310182389__PopupMenuRoute_310182389__3100" ,"Precompiled_PopupMenuTheme_of_3101" ,"Precompiled_AllocationStub_PopupMenuThemeData_3102" ,"Precompiled_PopupMenuThemeData_lerp_3103" ,"Precompiled_AllocationStub__CaptureAll_494220367_3104" ,"Precompiled_InheritedTheme_captureAll_3105" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_inherited_theme_dart__InheritedTheme_3106" ,"Precompiled_Navigator_of_3107" ,"Precompiled_MaterialLocalizations_of_3108" ,"Precompiled_Localizations_of_3109" ,"Precompiled__LocalizationsState_483081674_resourcesFor_3110" ,"Precompiled_AllocationStub__LocalizationsState_483081674_3111" ,"Precompiled_AllocationStub_Localizations_3112" ,"Precompiled_Localizations_localeOf_3113" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart__Localizations_3114" ,"Precompiled_____loadAll_483081674_3115" ,"Precompiled_AllocationStub__Pending_483081674_3116" ,"Precompiled_AllocationStub_SynchronousFuture_3117" ,"Precompiled_AllocationStub__LocalizationsScope_483081674_3118" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart__WidgetsLocalizations_3119" ,"Precompiled_DefaultWidgetsLocalizations_load_3120" ,"Precompiled__LocalizationsState_483081674_get__textDirection_483081674_3121" ,"Precompiled__LocalizationsState_483081674__anyDelegatesShouldReload_483081674_3122" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_localizations_dart__MaterialLocalizations_3123" ,"Precompiled_DefaultMaterialLocalizations_load_3124" ,"Precompiled_DefaultMaterialLocalizations_formatDecimal_3125" ,"Precompiled_DefaultMaterialLocalizations_formatMonthYear_3126" ,"Precompiled_DefaultMaterialLocalizations_formatYear_3127" ,"Precompiled_DateTime_get_year_3128" ,"Precompiled_AllocationStub_DateTime_3129" ,"Precompiled_DateTime_dyn_add_3130" ,"Precompiled_DateTime_add_add_3131" ,"Precompiled_DateTime__timeZoneOffsetInSecondsForClampedSeconds_0150898_3132" ,"Precompiled_DateTime_get_weekday_3133" ,"Precompiled_DateTime__threeDigits_0150898_3134" ,"Precompiled_DateTime_get__localDateInUtcMicros_0150898_3135" ,"Precompiled_DateTime__timeZoneOffsetInSeconds_0150898_3136" ,"Precompiled_DateTime__equivalentSeconds_0150898_3137" ,"Precompiled_DateTime__equivalentYear_0150898_3138" ,"Precompiled_DateTime__weekDay_0150898_3139" ,"Precompiled_DateTime__isLeapYear_0150898_3140" ,"Precompiled_DateTime__dayFromYear_0150898_3141" ,"Precompiled_DateTime__yearsFromSecondsSinceEpoch_0150898_3142" ,"Precompiled_DateTime__computeUpperPart_0150898_3143" ,"Precompiled_DateTime__fourDigits_0150898_3144" ,"Precompiled_DateTime__getCurrentMicros_0150898_3145" ,"Precompiled_DateTime_isAfter_3146" ,"Precompiled_DateTime_get_second_3147" ,"Precompiled_DateTime_DateTime_utc_3148" ,"Precompiled_DateTime_DateTime__internal_0150898_3149" ,"Precompiled_DateTime__brokenDownDateToValue_0150898_3150" ,"Precompiled_DateTime__localTimeZoneAdjustmentInSeconds_0150898_3151" ,"Precompiled_DateTime_isBefore_3152" ,"Precompiled_DateTime_get_minute_3153" ,"Precompiled_DateTime_DateTime__3154" ,"Precompiled_DateTime_get_millisecond_3155" ,"Precompiled_DateTime_DateTime__withValue_0150898_3156" ,"Precompiled_DateTime_DateTime_fromMillisecondsSinceEpoch_3157" ,"Precompiled_DateTime_get_hour_3158" ,"Precompiled_DateTime_get_day_3159" ,"Precompiled_DateTime_get_month_3160" ,"Precompiled_DateTime__twoDigits_0150898_3161" ,"Precompiled_DefaultMaterialLocalizations_formatFullDate_3162" ,"Precompiled_AllocationStub__RenderMenuItem_310182389_3163" ,"Precompiled_AllocationStub_PopupMenuButtonState_3164" ,"Precompiled_PopupMenuButtonState_showButtonMenu_showButtonMenu_3165" ,"Precompiled_PopupMenuButtonState_showButtonMenu_3166" ,"Precompiled_AllocationStub_PopupMenuItem_3167" ,"Precompiled_AllocationStub_PopupMenuButton_3168" ,"Precompiled_AllocationStub__PopupMenuRouteLayout_310182389_3169" ,"Precompiled_AllocationStub__MenuItem_310182389_3170" ,"Precompiled_AllocationStub__PopupMenu_310182389_3171" ,"Precompiled_AllocationStub_PopupMenuItemState_3172" ,"Precompiled_PopupMenuItemState_handleTap_handleTap_3173" ,"Precompiled_PopupMenuItemState_handleTap_3174" ,"Precompiled_Navigator_pop_3175" ,"Precompiled_PopupMenuItemState_buildChild_3176" ,"Precompiled_TransitionRoute_didPop_3177" ,"Precompiled_TransitionRoute_didAdd_3178" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_49188637_3179" ,"Precompiled_AllocationStub__ModalScopeStatus_49188637_3180" ,"Precompiled__ModalScopeState_49188637__forceRebuildPage_49188637_3181" ,"Precompiled__ModalScopeState_49188637__ModalScopeState_49188637__3182" ,"Precompiled_Route_get_isCurrent_3183" ,"Precompiled_HeroController__startHeroTransition_565011697_3184" ,"Precompiled__HeroFlight_565011697_start_3185" ,"Precompiled__HeroFlight_565011697__doCreateRectTween_565011697_3186" ,"Precompiled__HeroState_565011697_startFlight_3187" ,"Precompiled__HeroFlightManifest_565011697_get_animation_3188" ,"Precompiled__HeroFlight_565011697__buildOverlay_565011697__buildOverlay_565011697_3189" ,"Precompiled__HeroFlight_565011697__buildOverlay_565011697_3190" ,"Precompiled_AllocationStub__HeroFlight_565011697_3191" ,"Precompiled__HeroFlight_565011697_divert_3192" ,"Precompiled_AllocationStub__HeroFlightManifest_565011697_3193" ,"Precompiled__HeroFlight_565011697__handleAnimationUpdate_565011697__handleAnimationUpdate_565011697_3194" ,"Precompiled_HeroController__handleFlightEnded_565011697__handleFlightEnded_565011697_3195" ,"Precompiled_HeroController__handleFlightEnded_565011697_3196" ,"Precompiled__HeroFlightManifest_565011697_get_tag_3197" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_heroes_dart___HeroFlight_3198" ,"Precompiled_HeroController_init__defaultHeroFlightShuttleBuilder_565011697_3199" ,"Precompiled_AllocationStub_HeroControllerScope_3200" ,"Precompiled_HeroControllerScope_of_3201" ,"Precompiled__NavigatorReplaceObservation_529124995_notify_notify_3202" ,"Precompiled__NavigatorReplaceObservation_529124995_notify_3203" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__RouteTransitionRecord_3204" ,"Precompiled__NavigatorPushObservation_529124995_notify_notify_3205" ,"Precompiled__NavigatorPushObservation_529124995_notify_3206" ,"Precompiled_Route_didComplete_3207" ,"Precompiled__RouteEntry_529124995_pop_3208" ,"Precompiled__RouteEntry_529124995_get_hasPage_3209" ,"Precompiled__RouteEntry_529124995_markForPop_3210" ,"Precompiled__RouteEntry_529124995_markForComplete_3211" ,"Precompiled__NavigatorState_State_TickerProviderStateMixin_529124995_didChangeDependencies_3212" ,"Precompiled_AllocationStub_Navigator_3213" ,"Precompiled_Navigator_defaultGenerateInitialRoutes_3214" ,"Precompiled_Navigator_defaultGenerateInitialRoutes_defaultGenerateInitialRoutes_3215" ,"Precompiled_Navigator_maybePop_3216" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_navigator_dart__NavigatorObserver_3217" ,"Precompiled__HeroFlight_565011697_init__reverseTween_565011697_3218" ,"Precompiled_NavigatorState_set__userGesturesInProgress_529124995_3219" ,"Precompiled_AnimationController_animateBack_3220" ,"Precompiled_NavigatorState_pop_3221" ,"Precompiled_AnimationController_animateTo_3222" ,"Precompiled__Double_0150898_floorToDouble_3223" ,"Precompiled__Double_0150898_floor_3224" ,"Precompiled__CupertinoBackGestureController_177053933_dragUpdate_3225" ,"Precompiled_CupertinoPageRoute_buildPageTransitions_3226" ,"Precompiled_CupertinoPageTransition_CupertinoPageTransition__3227" ,"Precompiled_AllocationStub_CupertinoPageTransition_3228" ,"Precompiled_AllocationStub__CupertinoBackGestureDetector_177053933_3229" ,"Precompiled_CupertinoPageRoute_isPopGestureInProgress_3230" ,"Precompiled_CupertinoPageRoute__startPopGesture_177053933_3231" ,"Precompiled_CupertinoPageRoute__isPopGestureEnabled_177053933_3232" ,"Precompiled_AllocationStub__CupertinoEdgeShadowPainter_177053933_3233" ,"Precompiled_AllocationStub__CupertinoBackGestureDetectorState_177053933_3234" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handlePointerDown_177053933__handlePointerDown_177053933_3235" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handlePointerDown_177053933_3236" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragCancel_177053933__handleDragCancel_177053933_3237" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragCancel_177053933_3238" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragEnd_177053933__handleDragEnd_177053933_3239" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragEnd_177053933_3240" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__convertToLogical_177053933_3241" ,"Precompiled_Directionality_of_3242" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragUpdate_177053933__handleDragUpdate_177053933_3243" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragUpdate_177053933_3244" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragStart_177053933__handleDragStart_177053933_3245" ,"Precompiled__CupertinoBackGestureDetectorState_177053933__handleDragStart_177053933_3246" ,"Precompiled_LinearGradient_lerp_3247" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_decoration_dart__Decoration_3248" ,"Precompiled_AllocationStub_AnimatedPadding_3249" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedPadding_3250" ,"Precompiled_AllocationStub__AnimatedPhysicalModelState_497443363_3251" ,"Precompiled_AllocationStub__AnimatedDefaultTextStyleState_497443363_3252" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_implicit_animations_dart__AnimatedDefaultTextStyle_3253" ,"Precompiled_AnimatedWidgetBaseState__handleAnimationChanged_497443363__handleAnimationChanged_497443363_3254" ,"Precompiled_AnimatedWidgetBaseState__handleAnimationChanged_497443363_3255" ,"Precompiled_AllocationStub_EdgeInsetsGeometryTween_3256" ,"Precompiled_AllocationStub__AnimatedPaddingState_497443363_3257" ,"Precompiled_AllocationStub_AnimatedOpacity_3258" ,"Precompiled_AllocationStub_BorderRadiusTween_3259" ,"Precompiled_AllocationStub_AnimatedDefaultTextStyle_3260" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart___MaterialInterior_3261" ,"Precompiled_AllocationStub_ShapeBorderTween_3262" ,"Precompiled_AllocationStub__ShapeBorderPaint_298372823_3263" ,"Precompiled_AllocationStub__InkFeatures_298372823_3264" ,"Precompiled_AllocationStub__MaterialInteriorState_298372823_3265" ,"Precompiled_AllocationStub__MaterialState_298372823_3266" ,"Precompiled__MaterialState_298372823__getShape_298372823_3267" ,"Precompiled_AllocationStub_RoundedRectangleBorder_3268" ,"Precompiled_AllocationStub__RoundedRectangleToCircleBorder_383493913_3269" ,"Precompiled__RoundedRectangleToCircleBorder_383493913__adjustBorderRadius_383493913_3270" ,"Precompiled__RoundedRectangleToCircleBorder_383493913__adjustRect_383493913_3271" ,"Precompiled__MaterialState_298372823__transparentInterior_298372823_3272" ,"Precompiled__MaterialState_298372823__getBackgroundColor_298372823_3273" ,"Precompiled_AllocationStub__ShapeBorderPainter_298372823_3274" ,"Precompiled_AllocationStub_RenderCustomPaint_3275" ,"Precompiled_RenderCustomPaint__paintWithPainter_406012902_3276" ,"Precompiled_RenderCustomPaint_RenderCustomPaint__3277" ,"Precompiled_RenderCustomPaint__updateSemanticsChildren_406012902_3278" ,"Precompiled_RenderCustomPaint__didUpdatePainter_406012902_3279" ,"Precompiled_CustomPainter_shouldRebuildSemantics_3280" ,"Precompiled_RenderCustomPaint_set_painter_3281" ,"Precompiled_RenderCustomPaint_set_foregroundPainter_3282" ,"Precompiled_RenderCustomPaint_set_preferredSize_3283" ,"Precompiled_CustomPainter_addListener_addListener_3284" ,"Precompiled_InkFeature__paint_298372823_3285" ,"Precompiled_InkFeature_dispose_3286" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_dart__InkFeature_3287" ,"Precompiled_InteractiveInkFeature_set_color_3288" ,"Precompiled_AllocationStub__InkResponseStateWidget_294059085_3289" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart___InkResponseStateWidget_3290" ,"Precompiled_AllocationStub_KeepAliveHandle_3291" ,"Precompiled_KeepAliveHandle_release_3292" ,"Precompiled_AllocationStub_AutomaticKeepAlive_3293" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_automatic_keep_alive_dart__AutomaticKeepAlive_3294" ,"Precompiled_AllocationStub_KeepAliveNotification_3295" ,"Precompiled_AllocationStub__AutomaticKeepAliveState_495490736_3296" ,"Precompiled__AutomaticKeepAliveState_495490736__addClient_495490736__addClient_495490736_3297" ,"Precompiled__AutomaticKeepAliveState_495490736__addClient_495490736_3298" ,"Precompiled__AutomaticKeepAliveState_495490736__updateParentDataOfChild_495490736_3299" ,"Precompiled_ParentDataElement_applyWidgetOutOfTurn_3300" ,"Precompiled_ParentDataElement__applyParentData_28042623_3301" ,"Precompiled__AutomaticKeepAliveState_495490736__getChildElement_495490736_3302" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__ParentDataElement__package_flutter_src_rendering_sliver_multi_box_adaptor_dart__KeepAliveParentDataMixin_3303" ,"Precompiled__AutomaticKeepAliveState_495490736__updateChild_495490736_3304" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_294059085_build_3305" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_294059085__ensureKeepAlive_495490736_3306" ,"Precompiled__InkResponseState_294059085_get_wantKeepAlive_3307" ,"Precompiled__InkResponseState_294059085_get_highlightsExist_3308" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_294059085_deactivate_3309" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_294059085__releaseKeepAlive_495490736_3310" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_294059085_initState_3311" ,"Precompiled___InkResponseState_State_AutomaticKeepAliveClientMixin_294059085_updateKeepAlive_3312" ,"Precompiled_AllocationStub__InkResponseState_294059085_3313" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart___ParentInkResponseState_3314" ,"Precompiled__InkResponseState_294059085__createInkFeature_294059085_3315" ,"Precompiled__InkSplashFactory_293036029_create_3316" ,"Precompiled_InkSplash_InkSplash__3317" ,"Precompiled_____getTargetRadius_293036029_3318" ,"Precompiled_____getSplashRadiusForPositionInSize_293036029_3319" ,"Precompiled_InkSplash__handleAlphaStatusChanged_293036029__handleAlphaStatusChanged_293036029_3320" ,"Precompiled_InkSplash__handleAlphaStatusChanged_293036029_3321" ,"Precompiled_InkSplash_confirm_3322" ,"Precompiled_AllocationStub_InkSplash_3323" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart__InteractiveInkFeature_3324" ,"Precompiled__InkResponseState_294059085__handleAction_294059085_3325" ,"Precompiled__InkResponseState_294059085__handleTap_294059085_3326" ,"Precompiled_Feedback_forTap_3327" ,"Precompiled_Feedback__platform_279191779_3328" ,"Precompiled_Feedback_forLongPress_3329" ,"Precompiled_HapticFeedback_vibrate_3330" ,"Precompiled__InkResponseState_294059085_updateHighlight_3331" ,"Precompiled_InkHighlight_InkHighlight__3332" ,"Precompiled_InkHighlight__handleAlphaStatusChanged_291209331__handleAlphaStatusChanged_291209331_3333" ,"Precompiled_InkHighlight__handleAlphaStatusChanged_291209331_3334" ,"Precompiled_InkHighlight__paintHighlight_291209331_3335" ,"Precompiled_AllocationStub_InkHighlight_3336" ,"Precompiled__InkResponseState_294059085_getHighlightColorForType_3337" ,"Precompiled__InkResponseState_294059085_markChildInkResponsePressed_3338" ,"Precompiled__InkResponseState_294059085_get__anyChildInkResponsePressed_294059085_3339" ,"Precompiled__InkResponseState_294059085__startSplash_294059085_3340" ,"Precompiled__InkResponseState_294059085__handleAction_294059085__handleAction_294059085_3341" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Intent_3342" ,"Precompiled_Action_Action__3343" ,"Precompiled_AllocationStub_Actions_3344" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Actions_3345" ,"Precompiled_Actions_invoke_3346" ,"Precompiled_ActionDispatcher_invokeAction_3347" ,"Precompiled_Actions__findDispatcher_513441002_3348" ,"Precompiled_Actions__visitActionsAncestors_513441002_3349" ,"Precompiled_AllocationStub__ActionsMarker_513441002_3350" ,"Precompiled_AllocationStub_CallbackAction_3351" ,"Precompiled_AllocationStub_DoNothingAction_3352" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Action__package_flutter_src_widgets_actions_dart__Intent_3353" ,"Precompiled_DoNothingAction_DoNothingAction__3354" ,"Precompiled_AllocationStub__ActionsState_513441002_3355" ,"Precompiled__ActionsState_513441002__handleActionChanged_513441002__handleActionChanged_513441002_3356" ,"Precompiled__ActionsState_513441002__handleActionChanged_513441002_3357" ,"Precompiled__ActionsState_513441002__updateActionListeners_513441002_3358" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__ActivateIntent_3359" ,"Precompiled__InkResponseState_294059085__handleMouseExit_294059085__handleMouseExit_294059085_3360" ,"Precompiled__InkResponseState_294059085__handleMouseExit_294059085_3361" ,"Precompiled__InkResponseState_294059085__handleHoverChange_294059085_3362" ,"Precompiled__InkResponseState_294059085__handleMouseEnter_294059085_3363" ,"Precompiled__InkResponseState_294059085__handleMouseEnter_294059085__handleMouseEnter_294059085_3364" ,"Precompiled__InkResponseState_294059085__handleTapCancel_294059085__handleTapCancel_294059085_3365" ,"Precompiled__InkResponseState_294059085__handleTapCancel_294059085_3366" ,"Precompiled__InkResponseState_294059085_get_enabled_3367" ,"Precompiled__InkResponseState_294059085__handleFocusUpdate_294059085__handleFocusUpdate_294059085_3368" ,"Precompiled__InkResponseState_294059085__handleFocusUpdate_294059085_3369" ,"Precompiled__InkResponseState_294059085__updateFocusHighlights_294059085_3370" ,"Precompiled__InkResponseState_294059085_get__shouldShowFocus_294059085_3371" ,"Precompiled_MediaQuery_of_3372" ,"Precompiled_AllocationStub_MediaQueryData_3373" ,"Precompiled_MediaQueryData_removeViewInsets_3374" ,"Precompiled_MediaQueryData_removePadding_3375" ,"Precompiled_MediaQueryData_MediaQueryData_fromWindow_3376" ,"Precompiled_AllocationStub_MediaQuery_3377" ,"Precompiled_MediaQuery_boldTextOverride_3378" ,"Precompiled_MediaQuery_textScaleFactorOf_3379" ,"Precompiled_MediaQuery_MediaQuery_removeViewInsets_3380" ,"Precompiled_MediaQuery_MediaQuery_removePadding_3381" ,"Precompiled__InkResponseState_294059085__InkResponseState_294059085__3382" ,"Precompiled__InkResponseState_294059085__handleFocusHighlightModeChange_294059085__handleFocusHighlightModeChange_294059085_3383" ,"Precompiled__InkResponseState_294059085__handleFocusHighlightModeChange_294059085_3384" ,"Precompiled__InkResponseState_294059085__handleTapDown_294059085__handleTapDown_294059085_3385" ,"Precompiled__InkResponseState_294059085__handleTapDown_294059085_3386" ,"Precompiled__InkResponseState_294059085_get__canRequestFocus_294059085_3387" ,"Precompiled_AllocationStub__ParentInkResponseProvider_294059085_3388" ,"Precompiled__ParentInkResponseProvider_294059085_of_3389" ,"Precompiled_AllocationStub_ExcludeSemantics_3390" ,"Precompiled_Container_Container__3391" ,"Precompiled_CustomClipper_addListener_addListener_3392" ,"Precompiled_CustomClipper_getApproximateClipRect_3393" ,"Precompiled_AllocationStub_DecoratedBox_3394" ,"Precompiled_AllocationStub_RenderDecoratedBox_3395" ,"Precompiled_RenderDecoratedBox_set_configuration_3396" ,"Precompiled_RenderDecoratedBox_set_position_3397" ,"Precompiled_RenderDecoratedBox_set_decoration_3398" ,"Precompiled_Container_get__paddingIncludingDecoration_544235064_3399" ,"Precompiled_AllocationStub_Center_3400" ,"Precompiled_Semantics_Semantics__3401" ,"Precompiled_AllocationStub_Semantics_3402" ,"Precompiled_AllocationStub_Text_3403" ,"Precompiled_AllocationStub_DefaultTextStyle_3404" ,"Precompiled_DefaultTextStyle_of_3405" ,"Precompiled_AllocationStub_Container_3406" ,"Precompiled_Border_Border_all_3407" ,"Precompiled_AllocationStub_BorderRadius_3408" ,"Precompiled_AllocationStub_BoxDecoration_3409" ,"Precompiled_DateTime_get__parts_0150898_3410" ,"Precompiled__YearPickerState_498246833_get__itemCount_498246833_3411" ,"Precompiled_Theme_of_3412" ,"Precompiled_ThemeData_localize_3413" ,"Precompiled_AllocationStub__IdentityThemeDataCacheKey_340408314_3414" ,"Precompiled_AllocationStub_ThemeData_3415" ,"Precompiled_ThemeData_init__localizedThemeDataCache_340408314_3416" ,"Precompiled__FifoCache_340408314__FifoCache_340408314__3417" ,"Precompiled_AllocationStub__FifoCache_340408314_3418" ,"Precompiled_TypeTestingStub_package_flutter_src_material_theme_data_dart__ThemeData_3419" ,"Precompiled_TypeTestingStub_package_flutter_src_material_theme_data_dart___IdentityThemeDataCacheKey_3420" ,"Precompiled_ThemeData_lerp_3421" ,"Precompiled_BottomNavigationBarThemeData_lerp_3422" ,"Precompiled_AllocationStub_BottomNavigationBarThemeData_3423" ,"Precompiled_ButtonBarThemeData_lerp_3424" ,"Precompiled_AllocationStub_ButtonBarThemeData_3425" ,"Precompiled_____startIsTopLeft_411478290_3426" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin_411478290__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_DebugOverflowIndicatorMixin_411478290__3427" ,"Precompiled_AllocationStub_FlexParentData_3428" ,"Precompiled_AllocationStub_RenderFlex_3429" ,"Precompiled_RenderFlex_computeMaxIntrinsicHeight_3430" ,"Precompiled_RenderFlex__getIntrinsicSize_411478290_3431" ,"Precompiled_RenderFlex_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_3432" ,"Precompiled_RenderFlex_computeMinIntrinsicHeight_computeMinIntrinsicHeight_3433" ,"Precompiled_RenderFlex_computeMinIntrinsicHeight_3434" ,"Precompiled_RenderFlex_set_mainAxisSize_3435" ,"Precompiled_RenderFlex_set_mainAxisAlignment_3436" ,"Precompiled_RenderFlex_set_textDirection_3437" ,"Precompiled_RenderFlex_set_crossAxisAlignment_3438" ,"Precompiled_RenderFlex_RenderFlex__3439" ,"Precompiled_RenderFlex_computeMinIntrinsicWidth_3440" ,"Precompiled_RenderFlex_computeMinIntrinsicWidth_computeMinIntrinsicWidth_3441" ,"Precompiled_RenderFlex_set_direction_3442" ,"Precompiled_RenderFlex_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_3443" ,"Precompiled_RenderFlex_computeMaxIntrinsicWidth_3444" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_411478290_defaultPaint_defaultPaint_3445" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_411478290_defaultPaint_3446" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_411478290_defaultHitTestChildren_3447" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_411478290_defaultComputeDistanceToHighestActualBaseline_3448" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_411478290_defaultComputeDistanceToFirstActualBaseline_3449" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_add_add_3450" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290__removeFromChildList_419266271_3451" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290__insertIntoChildList_419266271_3452" ,"Precompiled_DividerThemeData_lerp_3453" ,"Precompiled_AllocationStub_DividerThemeData_3454" ,"Precompiled_DividerTheme_of_3455" ,"Precompiled_MaterialBannerThemeData_lerp_3456" ,"Precompiled_AllocationStub_MaterialBannerThemeData_3457" ,"Precompiled_BottomSheetThemeData_lerp_3458" ,"Precompiled_AllocationStub_BottomSheetThemeData_3459" ,"Precompiled_SnackBarThemeData_lerp_3460" ,"Precompiled_AllocationStub_SnackBarThemeData_3461" ,"Precompiled_Typography_lerp_3462" ,"Precompiled_AllocationStub_Typography_3463" ,"Precompiled_Typography_Typography__withPlatform_348382893_3464" ,"Precompiled_Typography_Typography_material2014_3465" ,"Precompiled_NavigationRailThemeData_lerp_3466" ,"Precompiled_AllocationStub_NavigationRailThemeData_3467" ,"Precompiled_FloatingActionButtonThemeData_lerp_3468" ,"Precompiled_AllocationStub_FloatingActionButtonThemeData_3469" ,"Precompiled_DialogTheme_lerp_3470" ,"Precompiled_AllocationStub_DialogTheme_3471" ,"Precompiled_DialogTheme_of_3472" ,"Precompiled_ColorScheme_lerp_3473" ,"Precompiled_AllocationStub_ColorScheme_3474" ,"Precompiled_ColorScheme__brightnessFor_263049969_3475" ,"Precompiled_ThemeData_estimateBrightnessForColor_3476" ,"Precompiled_ColorScheme_ColorScheme_fromSwatch_3477" ,"Precompiled_BottomAppBarTheme_lerp_3478" ,"Precompiled_AllocationStub_BottomAppBarTheme_3479" ,"Precompiled_AppBarTheme_lerp_3480" ,"Precompiled_AllocationStub_AppBarTheme_3481" ,"Precompiled_AppBarTheme_of_3482" ,"Precompiled_ChipThemeData_lerp_3483" ,"Precompiled_AllocationStub_ChipThemeData_3484" ,"Precompiled_ChipThemeData_ChipThemeData_fromDefaults_3485" ,"Precompiled_CardTheme_lerp_3486" ,"Precompiled_AllocationStub_CardTheme_3487" ,"Precompiled_TooltipThemeData_lerp_3488" ,"Precompiled_AllocationStub_TooltipThemeData_3489" ,"Precompiled_TooltipTheme_of_3490" ,"Precompiled_TabBarTheme_lerp_3491" ,"Precompiled_AllocationStub_TabBarTheme_3492" ,"Precompiled_SliderThemeData_lerp_3493" ,"Precompiled_AllocationStub_SliderThemeData_3494" ,"Precompiled_IconThemeData_lerp_3495" ,"Precompiled_IconThemeData_get_opacity_3496" ,"Precompiled_IconThemeData_get_isConcrete_3497" ,"Precompiled_IconThemeData_merge_3498" ,"Precompiled_AllocationStub_CupertinoIconThemeData_3499" ,"Precompiled_AllocationStub_IconThemeData_3500" ,"Precompiled_TextTheme_lerp_3501" ,"Precompiled_AllocationStub_TextTheme_3502" ,"Precompiled_TextTheme_merge_3503" ,"Precompiled_ToggleButtonsThemeData_lerp_3504" ,"Precompiled_AllocationStub_ToggleButtonsThemeData_3505" ,"Precompiled_VisualDensity_lerp_3506" ,"Precompiled_AllocationStub_VisualDensity_3507" ,"Precompiled_ThemeData_ThemeData_fallback_3508" ,"Precompiled_ThemeData_ThemeData__3509" ,"Precompiled_AllocationStub_ButtonThemeData_3510" ,"Precompiled_ButtonTheme_of_3511" ,"Precompiled_ButtonThemeData_getConstraints_3512" ,"Precompiled_ButtonThemeData_getShape_3513" ,"Precompiled_ButtonThemeData_getPadding_3514" ,"Precompiled_ButtonThemeData_getHighlightColor_3515" ,"Precompiled_ButtonThemeData_getTextColor_3516" ,"Precompiled_ButtonThemeData_getDisabledTextColor_3517" ,"Precompiled_ButtonThemeData_getHoverColor_3518" ,"Precompiled_ButtonThemeData_getFocusColor_3519" ,"Precompiled_ButtonThemeData_getSplashColor_3520" ,"Precompiled_AllocationStub_MaterialBasedCupertinoThemeData_3521" ,"Precompiled_AllocationStub_CupertinoThemeData_3522" ,"Precompiled_AllocationStub__CupertinoTextThemeDefaults_188195667_3523" ,"Precompiled__CupertinoTextThemeDefaults_188195667_createDefaults_3524" ,"Precompiled_AllocationStub__DefaultCupertinoTextThemeData_188195667_3525" ,"Precompiled__DefaultCupertinoTextThemeData_188195667_get_textStyle_3526" ,"Precompiled_CupertinoTextThemeData_get_textStyle_3527" ,"Precompiled__TextThemeDefaultsBuilder_187439196_get_textStyle_3528" ,"Precompiled__TextThemeDefaultsBuilder_187439196__applyLabelColor_187439196_3529" ,"Precompiled_AllocationStub__CupertinoThemeDefaults_188195667_3530" ,"Precompiled_AllocationStub__InheritedCupertinoTheme_188195667_3531" ,"Precompiled_AllocationStub__NoDefaultCupertinoThemeData_188195667_3532" ,"Precompiled_AllocationStub_CupertinoTheme_3533" ,"Precompiled_CupertinoTheme_brightnessOf_3534" ,"Precompiled_MaterialBasedCupertinoThemeData_get_brightness_3535" ,"Precompiled_CupertinoTheme_of_3536" ,"Precompiled_MaterialBasedCupertinoThemeData_MaterialBasedCupertinoThemeData___340408314_3537" ,"Precompiled_CupertinoThemeData_noDefault_3538" ,"Precompiled_CupertinoThemeData_get_textTheme_3539" ,"Precompiled_VisualDensity_effectiveConstraints_3540" ,"Precompiled_VisualDensity_get_baseSizeAdjustment_3541" ,"Precompiled_Theme_init__kFallbackTheme_339067045_3542" ,"Precompiled_AllocationStub_Theme_3543" ,"Precompiled_AllocationStub_AnimatedTheme_3544" ,"Precompiled_TypeTestingStub_package_flutter_src_material_theme_dart__AnimatedTheme_3545" ,"Precompiled_AllocationStub_ThemeDataTween_3546" ,"Precompiled_AllocationStub__AnimatedThemeState_339067045_3547" ,"Precompiled_AllocationStub__InheritedTheme_339067045_3548" ,"Precompiled_AllocationStub__YearPicker_498246833_3549" ,"Precompiled_AllocationStub__MonthPicker_498246833_3550" ,"Precompiled_TypeTestingStub_package_flutter_src_material_pickers_calendar_date_picker_dart___DatePickerModeToggleButton_3551" ,"Precompiled_AllocationStub__DayHeaders_498246833_3552" ,"Precompiled__DayHeaders_498246833__getDayHeaders_498246833_3553" ,"Precompiled_AllocationStub__DatePickerModeToggleButtonState_498246833_3554" ,"Precompiled_AllocationStub_CalendarDatePicker_3555" ,"Precompiled_TypeTestingStub_package_flutter_src_material_pickers_calendar_date_picker_dart__CalendarDatePicker_3556" ,"Precompiled_CalendarDatePicker_CalendarDatePicker__3557" ,"Precompiled____dateOnly_3558" ,"Precompiled____monthDelta_3559" ,"Precompiled____getDaysInMonth_3560" ,"Precompiled____addMonthsToMonthDate_3561" ,"Precompiled____firstDayOffset_3562" ,"Precompiled_AllocationStub__CalendarDatePickerState_498246833_3563" ,"Precompiled__CalendarDatePickerState_498246833__handleDayChanged_498246833__handleDayChanged_498246833_3564" ,"Precompiled__CalendarDatePickerState_498246833__handleDayChanged_498246833_3565" ,"Precompiled__CalendarDatePickerState_498246833__vibrate_498246833_3566" ,"Precompiled__CalendarDatePickerState_498246833__handleYearChanged_498246833__handleYearChanged_498246833_3567" ,"Precompiled__CalendarDatePickerState_498246833__handleYearChanged_498246833_3568" ,"Precompiled__CalendarDatePickerState_498246833__handleMonthChanged_498246833__handleMonthChanged_498246833_3569" ,"Precompiled__CalendarDatePickerState_498246833__handleMonthChanged_498246833_3570" ,"Precompiled__CalendarDatePickerState_498246833__buildPicker_498246833_3571" ,"Precompiled_AllocationStub_Padding_3572" ,"Precompiled__CalendarDatePickerState_498246833__handleModeChanged_498246833_3573" ,"Precompiled_AllocationStub__DayPicker_498246833_3574" ,"Precompiled_AllocationStub__DatePickerModeToggleButton_498246833_3575" ,"Precompiled_AllocationStub__MonthPickerState_498246833_3576" ,"Precompiled_TypeTestingStub_package_flutter_src_material_pickers_calendar_date_picker_dart___MonthPicker_3577" ,"Precompiled__MonthPickerState_498246833__buildItems_498246833__buildItems_498246833_3578" ,"Precompiled__MonthPickerState_498246833__buildItems_498246833_3579" ,"Precompiled__MonthPickerState_498246833__handlePreviousMonth_498246833__handlePreviousMonth_498246833_3580" ,"Precompiled__MonthPickerState_498246833__handlePreviousMonth_498246833_3581" ,"Precompiled_SemanticsService_announce_3582" ,"Precompiled_SemanticsService_tooltip_3583" ,"Precompiled__MonthPickerState_498246833_get__isDisplayingFirstMonth_498246833_3584" ,"Precompiled__MonthPickerState_498246833__handleNextMonth_498246833__handleNextMonth_498246833_3585" ,"Precompiled__MonthPickerState_498246833__handleNextMonth_498246833_3586" ,"Precompiled__MonthPickerState_498246833_get__isDisplayingLastMonth_498246833_3587" ,"Precompiled__MonthPickerState_498246833__handleMonthPageChanged_498246833__handleMonthPageChanged_498246833_3588" ,"Precompiled__MonthPickerState_498246833__handleMonthPageChanged_498246833_3589" ,"Precompiled_RenderSliverGrid_RenderSliverGrid__3590" ,"Precompiled_RenderSliverMultiBoxAdaptor_RenderSliverMultiBoxAdaptor__3591" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_432211670_hitTestBoxChild_3592" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_add_add_3593" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_childAfter_3594" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_visitChildren_3595" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_redepthChildren_3596" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_detach_3597" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_attach_3598" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_move_3599" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670__insertIntoChildList_419266271_3600" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670__removeFromChildList_419266271_3601" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_remove_3602" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_insert_3603" ,"Precompiled_RenderSliverMultiBoxAdaptor_adoptChild_3604" ,"Precompiled_SliverMultiBoxAdaptorElement_didAdoptChild_3605" ,"Precompiled_AllocationStub_SliverMultiBoxAdaptorParentData_3606" ,"Precompiled_RenderSliverMultiBoxAdaptor_collectGarbage_3607" ,"Precompiled_RenderSliverMultiBoxAdaptor__createOrObtainChild_432211670_3608" ,"Precompiled_RenderSliverMultiBoxAdaptor_addInitialChild_3609" ,"Precompiled_SliverMultiBoxAdaptorElement_setDidUnderflow_3610" ,"Precompiled_RenderSliverMultiBoxAdaptor__destroyOrCacheChild_432211670_3611" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChild_3612" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChild_removeChild_3613" ,"Precompiled_RenderSliverMultiBoxAdaptor_insertAndLayoutChild_3614" ,"Precompiled_RenderSliverMultiBoxAdaptor_paintExtentOf_3615" ,"Precompiled_RenderSliverMultiBoxAdaptor_insertAndLayoutLeadingChild_3616" ,"Precompiled_SliverMultiBoxAdaptorElement_createChild_3617" ,"Precompiled_SliverMultiBoxAdaptorElement_get_childCount_3618" ,"Precompiled_SliverMultiBoxAdaptorElement__build_523358031_3619" ,"Precompiled_SliverMultiBoxAdaptorElement_SliverMultiBoxAdaptorElement__3620" ,"Precompiled_SplayTreeMap_SplayTreeMap__3621" ,"Precompiled_AllocationStub__SplayTreeMapNode_3220832_3622" ,"Precompiled_SplayTreeMap_firstKeyAfter_3623" ,"Precompiled_SplayTreeMap_lastKeyBefore_3624" ,"Precompiled_SplayTreeMap_lastKey_3625" ,"Precompiled_SplayTreeMap_firstKey_3626" ,"Precompiled_AllocationStub_SplayTreeMap_3627" ,"Precompiled_SliverMultiBoxAdaptorElement_didFinishLayout_3628" ,"Precompiled_AllocationStub_SliverList_3629" ,"Precompiled_AllocationStub_RenderSliverList_3630" ,"Precompiled_AllocationStub_KeepAlive_3631" ,"Precompiled_AllocationStub__SaltedValueKey_523358031_3632" ,"Precompiled_AllocationStub_SliverGrid_3633" ,"Precompiled_AllocationStub__PageViewState_585030489_3634" ,"Precompiled__PageViewState_585030489__getDirection_585030489_3635" ,"Precompiled_AllocationStub__ForceImplicitScrollPhysics_585030489_3636" ,"Precompiled_PageMetrics_get_page_3637" ,"Precompiled_AllocationStub__PagePosition_585030489_3638" ,"Precompiled__PagePosition_585030489_set_viewportFraction_3639" ,"Precompiled_ScrollPosition_forcePixels_3640" ,"Precompiled__PagePosition_585030489__PagePosition_585030489__3641" ,"Precompiled_Scrollable_get_axis_3642" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_scrollable_dart__Scrollable_3643" ,"Precompiled_AllocationStub__RenderScrollSemantics_531019050_3644" ,"Precompiled__RenderScrollSemantics_531019050_set_semanticChildCount_3645" ,"Precompiled__RenderScrollSemantics_531019050_set_allowImplicitScrolling_3646" ,"Precompiled__RenderScrollSemantics_531019050_set_position_3647" ,"Precompiled__RenderScrollSemantics_531019050__RenderScrollSemantics_531019050__3648" ,"Precompiled_AllocationStub__ScrollableScope_531019050_3649" ,"Precompiled_AllocationStub_ScrollAction_3650" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_scrollable_dart__ScrollIntent_3651" ,"Precompiled_ScrollAction__getIncrement_531019050_3652" ,"Precompiled_ScrollAction__calculateScrollIncrement_531019050_3653" ,"Precompiled_AllocationStub__ScrollSemantics_531019050_3654" ,"Precompiled_ScrollableState__handlePointerScroll_531019050_3655" ,"Precompiled_ScrollableState__targetScrollOffsetForPointerScroll_531019050_3656" ,"Precompiled_ScrollableState__handlePointerScroll_531019050__handlePointerScroll_531019050_3657" ,"Precompiled_ScrollableState__disposeDrag_531019050_3658" ,"Precompiled_ScrollableState__disposeDrag_531019050__disposeDrag_531019050_3659" ,"Precompiled_ScrollableState__receivedPointerSignal_531019050__receivedPointerSignal_531019050_3660" ,"Precompiled_ScrollableState__receivedPointerSignal_531019050_3661" ,"Precompiled_PointerSignalResolver_register_3662" ,"Precompiled_AllocationStub_PointerSignalResolver_3663" ,"Precompiled_ScrollableState__handleDragCancel_531019050__handleDragCancel_531019050_3664" ,"Precompiled_ScrollableState__handleDragCancel_531019050_3665" ,"Precompiled_ScrollableState__handleDragUpdate_531019050_3666" ,"Precompiled_ScrollableState__handleDragUpdate_531019050__handleDragUpdate_531019050_3667" ,"Precompiled_ScrollableState__shouldUpdatePosition_531019050_3668" ,"Precompiled_ScrollableState__disposeHold_531019050__disposeHold_531019050_3669" ,"Precompiled_ScrollableState__disposeHold_531019050_3670" ,"Precompiled_ScrollableState__handleDragEnd_531019050_3671" ,"Precompiled_ScrollableState__handleDragEnd_531019050__handleDragEnd_531019050_3672" ,"Precompiled_ScrollableState__handleDragStart_531019050_3673" ,"Precompiled_ScrollableState__handleDragStart_531019050__handleDragStart_531019050_3674" ,"Precompiled_ScrollableState__handleDragDown_531019050_3675" ,"Precompiled_ScrollableState__handleDragDown_531019050__handleDragDown_531019050_3676" ,"Precompiled_ScrollableState_setCanDrag_3677" ,"Precompiled_ScrollableState__updatePosition_531019050_3678" ,"Precompiled_ScrollBehavior_getScrollPhysics_3679" ,"Precompiled_AllocationStub__MaterialScrollBehavior_239125171_3680" ,"Precompiled_AllocationStub_ScrollConfiguration_3681" ,"Precompiled_AllocationStub_MaterialApp_3682" ,"Precompiled_TypeTestingStub_package_flutter_src_material_app_dart__MaterialApp_3683" ,"Precompiled_AllocationStub__MaterialAppState_239125171_3684" ,"Precompiled__MaterialAppState_239125171__createRectTween_239125171__createRectTween_239125171_3685" ,"Precompiled__MaterialAppState_239125171__createRectTween_239125171_3686" ,"Precompiled_AllocationStub_MaterialRectArcTween_3687" ,"Precompiled_____maxBy_242458455_3688" ,"Precompiled_AllocationStub__FixedSizeArrayIterator_0150898_3689" ,"Precompiled__FixedSizeArrayIterator_0150898__FixedSizeArrayIterator_0150898__3690" ,"Precompiled_AllocationStub_MaterialPointArcTween_3691" ,"Precompiled_MaterialPointArcTween_get_endAngle_3692" ,"Precompiled_MaterialPointArcTween__initialize_242458455_3693" ,"Precompiled_RenderBox_getDistanceToActualBaseline__anonymous_closure__3694" ,"Precompiled_MaterialPointArcTween_get_beginAngle_3695" ,"Precompiled_MaterialPointArcTween_get_radius_3696" ,"Precompiled_MaterialPointArcTween_get_center_3697" ,"Precompiled_MaterialRectArcTween_get_endArc_3698" ,"Precompiled_MaterialRectArcTween__initialize_242458455_3699" ,"Precompiled_MaterialRectArcTween__cornerFor_242458455_3700" ,"Precompiled_MaterialRectArcTween_get_beginArc_3701" ,"Precompiled_MaterialRectArcTween__diagonalSupport_242458455_3702" ,"Precompiled__MaterialAppState_239125171_get__localizationsDelegates_239125171_3703" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart__LocalizationsDelegate_3704" ,"Precompiled_ScrollConfiguration_of_3705" ,"Precompiled_ScrollableState_ScrollableState__3706" ,"Precompiled_AllocationStub_PageMetrics_3707" ,"Precompiled_AllocationStub_FixedScrollMetrics_3708" ,"Precompiled_ScrollPosition_beginActivity_3709" ,"Precompiled_ScrollPosition_didStartScroll_3710" ,"Precompiled_ScrollPosition_didEndScroll_3711" ,"Precompiled_DrivenScrollActivity_DrivenScrollActivity__3712" ,"Precompiled_AllocationStub_DrivenScrollActivity_3713" ,"Precompiled____nearEqual_3714" ,"Precompiled____nearZero_3715" ,"Precompiled_ScrollPhysics_get_tolerance_3716" ,"Precompiled_ScrollPositionWithSingleContext_jumpTo_3717" ,"Precompiled__ScrollPosition_ViewportOffset_ScrollMetrics_556085019_get_atEdge_3718" ,"Precompiled__ScrollPosition_ViewportOffset_ScrollMetrics_556085019_get_outOfRange_3719" ,"Precompiled_ScrollPosition_correctForNewDimensions_3720" ,"Precompiled_ScrollPosition_debugFillDescription_3721" ,"Precompiled_ScrollPosition_applyNewDimensions_3722" ,"Precompiled_ScrollPosition_dispose_3723" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_scroll_position_dart__ScrollPosition_3724" ,"Precompiled_ScrollController_jumpTo_3725" ,"Precompiled_ScrollController_animateTo_3726" ,"Precompiled_ScrollController_get_offset_3727" ,"Precompiled_ScrollController_get_position_3728" ,"Precompiled_ScrollController_get_hasClients_3729" ,"Precompiled_AllocationStub_ScrollController_3730" ,"Precompiled_ScaffoldState__buildEndDrawer_319420462_3731" ,"Precompiled_ScaffoldState__buildDrawer_319420462_3732" ,"Precompiled_ScaffoldState__addIfNonNull_319420462_3733" ,"Precompiled_AllocationStub_LayoutId_3734" ,"Precompiled_ScaffoldState__handleStatusBarTap_319420462_3735" ,"Precompiled_ScaffoldState__handleStatusBarTap_319420462__handleStatusBarTap_319420462_3736" ,"Precompiled_Scaffold_of_3737" ,"Precompiled__AppBarState_240187611__handleDrawerButton_240187611__handleDrawerButton_240187611_3738" ,"Precompiled__AppBarState_240187611__handleDrawerButton_240187611_3739" ,"Precompiled_AllocationStub__TextSelectionToolbarLayout_337283233_3740" ,"Precompiled____init_materialTextSelectionControls_3741" ,"Precompiled_AllocationStub__MaterialTextSelectionControls_337283233_3742" ,"Precompiled__MaterialTextSelectionControls_337283233_canSelectAll_3743" ,"Precompiled_AllocationStub_EditableTextState_3744" ,"Precompiled_AllocationStub_EditableText_3745" ,"Precompiled_EditableText_get_strutStyle_3746" ,"Precompiled_EditableText_EditableText__3747" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_editable_text_dart__EditableText_3748" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_559183791_build_3749" ,"Precompiled_EditableTextState_get_wantKeepAlive_3750" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_559183791_initState_3751" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_559183791_updateKeepAlive_3752" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_binding_dart__WidgetsBindingObserver_3753" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_559183791_didChangeDependencies_3754" ,"Precompiled_AllocationStub_TextEditingController_3755" ,"Precompiled_AllocationStub_TextEditingValue_3756" ,"Precompiled_AllocationStub_TextSelection_3757" ,"Precompiled_TextSelection_get_base_3758" ,"Precompiled_____toTextPoint_478206165_3759" ,"Precompiled_AllocationStub_RawFloatingCursorPoint_3760" ,"Precompiled_____toTextCursorAction_478206165_3761" ,"Precompiled_____toTextInputAction_478206165_3762" ,"Precompiled_AllocationStub_TextInputConnection_3763" ,"Precompiled_TextInputConnection_connectionClosedReceived_3764" ,"Precompiled_TextInput_init__instance_478206165_3765" ,"Precompiled_TextInput_TextInput___478206165_3766" ,"Precompiled_TextInput__handleTextInputInvocation_478206165__handleTextInputInvocation_478206165_3767" ,"Precompiled_TextInput__handleTextInputInvocation_478206165_3768" ,"Precompiled_TypeTestingStub_dart_async__Future_3769" ,"Precompiled_AllocationStub_TextInput_3770" ,"Precompiled_TextInputConnection_setStyle_3771" ,"Precompiled_TextInput__setStyle_478206165_3772" ,"Precompiled_TextInputConnection_setEditableSizeAndTransform_3773" ,"Precompiled_TextInput__setEditableSizeAndTransform_478206165_3774" ,"Precompiled_TextInputConnection_setEditingState_3775" ,"Precompiled_TextInput__setEditingState_478206165_3776" ,"Precompiled_TextEditingValue_toJSON_3777" ,"Precompiled_TextInputConnection_requestAutofill_3778" ,"Precompiled_TextInput__requestAutofill_478206165_3779" ,"Precompiled_TextInputConnection_show_3780" ,"Precompiled_TextInput__show_478206165_3781" ,"Precompiled_TextInputConnection_get_attached_3782" ,"Precompiled_AllocationStub_TextInputConfiguration_3783" ,"Precompiled_TextInputConfiguration_toJson_3784" ,"Precompiled_TextInputType_toJson_3785" ,"Precompiled_TextInput__clearClient_478206165_3786" ,"Precompiled_TextInput__scheduleHide_478206165_3787" ,"Precompiled_TextInput__attach_478206165_3788" ,"Precompiled_TextInput_attach_3789" ,"Precompiled_TextEditingValue_TextEditingValue_fromJSON_3790" ,"Precompiled_TypeTestingStub_package_flutter_src_services_text_input_dart__TextEditingValue_3791" ,"Precompiled_TextEditingController_isSelectionWithinTextBounds_3792" ,"Precompiled_TextEditingController_clearComposing_3793" ,"Precompiled_TextEditingController_set_selection_3794" ,"Precompiled_TextEditingController_get_selection_3795" ,"Precompiled_TextEditingController_buildTextSpan_3796" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_span_dart__TextSpan_3797" ,"Precompiled_TextEditingController_set_text_3798" ,"Precompiled_TextEditingController_get_text_3799" ,"Precompiled_TextEditingController_TextEditingController_fromValue_3800" ,"Precompiled_TextEditingController_TextEditingController__3801" ,"Precompiled_AllocationStub__WhitespaceDirectionalityFormatter_559183791_3802" ,"Precompiled_TypeTestingStub_package_flutter_src_services_text_formatter_dart__TextInputFormatter_3803" ,"Precompiled__WhitespaceDirectionalityFormatter_559183791__WhitespaceDirectionalityFormatter_559183791__3804" ,"Precompiled_AllocationStub__Editable_559183791_3805" ,"Precompiled_AllocationStub_RenderEditable_3806" ,"Precompiled___RenderRangeSlider_RenderBox_RelayoutWhenSystemFontsChangeMixin_316317193_detach_3807" ,"Precompiled_RenderEditable_systemFontsDidChange_systemFontsDidChange_3808" ,"Precompiled_RenderEditable_systemFontsDidChange_3809" ,"Precompiled___RenderRangeSlider_RenderBox_RelayoutWhenSystemFontsChangeMixin_316317193_attach_3810" ,"Precompiled_AllocationStub_TextSelectionPoint_3811" ,"Precompiled_RenderEditable_init__interestingKeys_409245603_3812" ,"Precompiled_AllocationStub_LogicalKeyboardKey_3813" ,"Precompiled_LogicalKeyboardKey_init__synonyms_459369999_3814" ,"Precompiled_LogicalKeyboardKey_collapseSynonyms_3815" ,"Precompiled_LogicalKeyboardKey_isControlCharacter_3816" ,"Precompiled_LogicalKeyboardKey_findKeyByKeyId_3817" ,"Precompiled_TypeTestingStub_package_flutter_src_services_keyboard_key_dart__LogicalKeyboardKey_3818" ,"Precompiled_RenderEditable_init__macOsModifierKeys_409245603_3819" ,"Precompiled_RenderEditable_init__modifierKeys_409245603_3820" ,"Precompiled_RenderEditable_init__nonModifierKeys_409245603_3821" ,"Precompiled_RenderEditable_init__shortcutKeys_409245603_3822" ,"Precompiled_RenderEditable_init__movementKeys_409245603_3823" ,"Precompiled_RenderEditable_get_preferredLineHeight_3824" ,"Precompiled_RenderEditable__handleMoveCursorForwardByWord_409245603_3825" ,"Precompiled_RenderEditable__handleSelectionChange_409245603_3826" ,"Precompiled_RenderEditable__getNextWord_409245603_3827" ,"Precompiled_RenderEditable__handleMoveCursorForwardByWord_409245603__handleMoveCursorForwardByWord_409245603_3828" ,"Precompiled_RenderEditable_set_devicePixelRatio_3829" ,"Precompiled_RenderEditable_markNeedsTextLayout_3830" ,"Precompiled_RenderEditable__handleTapDown_409245603__handleTapDown_409245603_3831" ,"Precompiled_RenderEditable__handleTapDown_409245603_3832" ,"Precompiled_RenderEditable_computeMaxIntrinsicHeight_3833" ,"Precompiled_RenderEditable__preferredHeight_409245603_3834" ,"Precompiled_RenderEditable_get__plainText_409245603_3835" ,"Precompiled_RenderEditable__layoutText_409245603_3836" ,"Precompiled_RenderEditable_get__caretMargin_409245603_3837" ,"Precompiled_RenderEditable_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_3838" ,"Precompiled_RenderEditable_set_startHandleLayerLink_3839" ,"Precompiled_RenderEditable_selectWordEdge_3840" ,"Precompiled_RenderEditable_get__paintOffset_409245603_3841" ,"Precompiled_RenderEditable_get__viewportAxis_409245603_3842" ,"Precompiled_RenderEditable__getPreviousWord_409245603_3843" ,"Precompiled_RenderEditable__handleLongPress_409245603__handleLongPress_409245603_3844" ,"Precompiled_RenderEditable__handleLongPress_409245603_3845" ,"Precompiled_RenderEditable_handleLongPress_3846" ,"Precompiled_RenderEditable_selectWord_3847" ,"Precompiled_RenderEditable_selectWordsInRange_3848" ,"Precompiled_RenderEditable__selectWordAtOffset_409245603_3849" ,"Precompiled_RenderEditable_set_textAlign_3850" ,"Precompiled_RenderEditable_set_cursorWidth_3851" ,"Precompiled_RenderEditable_set_textScaleFactor_3852" ,"Precompiled_RenderEditable_selectPosition_3853" ,"Precompiled_RenderEditable_selectPositionAt_3854" ,"Precompiled_RenderEditable__paintPromptRectIfNeeded_409245603_3855" ,"Precompiled_RenderEditable__selectLineAtOffset_409245603_3856" ,"Precompiled_RenderEditable_get_promptRectColor_3857" ,"Precompiled_RenderEditable__handleTap_409245603__handleTap_409245603_3858" ,"Precompiled_RenderEditable__handleTap_409245603_3859" ,"Precompiled_RenderEditable_handleTap_3860" ,"Precompiled_RenderEditable__paintFloatingCaret_409245603_3861" ,"Precompiled_RenderEditable__paintCaret_409245603_3862" ,"Precompiled_RenderEditable__getPixelPerfectCursorOffset_409245603_3863" ,"Precompiled_RenderEditable_computeMinIntrinsicHeight_computeMinIntrinsicHeight_3864" ,"Precompiled_RenderEditable_set_cursorRadius_3865" ,"Precompiled_RenderEditable__handleDelete_409245603_3866" ,"Precompiled_EditableTextState_set_textEditingValue_3867" ,"Precompiled_EditableTextState__formatAndSetValue_559183791_3868" ,"Precompiled_EditableTextState__updateRemoteEditingValueIfNeeded_559183791_3869" ,"Precompiled_EditableTextState_get__value_559183791_3870" ,"Precompiled_EditableTextState_get__hasInputConnection_559183791_3871" ,"Precompiled_EditableTextState_set__value_559183791_3872" ,"Precompiled_EditableTextState_get__textDirection_559183791_3873" ,"Precompiled_RenderEditable_getEndpointsForSelection_3874" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_editable_dart__TextSelectionPoint_3875" ,"Precompiled_RenderEditable_set_textDirection_3876" ,"Precompiled_RenderEditable_set_cursorColor_3877" ,"Precompiled_RenderEditable__handleShortcuts_409245603_3878" ,"Precompiled_RenderEditable_set_selectionColor_3879" ,"Precompiled_RenderEditable_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_3880" ,"Precompiled_RenderEditable_computeMaxIntrinsicWidth_3881" ,"Precompiled_RenderEditable_setPromptRectRange_3882" ,"Precompiled_RenderEditable_getLocalRectForCaret_3883" ,"Precompiled_RenderEditable_set_paintCursorAboveText_3884" ,"Precompiled_RenderEditable__handleSetSelection_409245603__handleSetSelection_409245603_3885" ,"Precompiled_RenderEditable__handleSetSelection_409245603_3886" ,"Precompiled_RenderEditable__paintContents_409245603__paintContents_409245603_3887" ,"Precompiled_RenderEditable__paintContents_409245603_3888" ,"Precompiled_RenderEditable__paintSelection_409245603_3889" ,"Precompiled_RenderEditable__updateSelectionExtentsVisibility_409245603_3890" ,"Precompiled_RenderEditable_get__viewportExtent_409245603_3891" ,"Precompiled_RenderEditable_set_hasFocus_3892" ,"Precompiled_RawKeyboard_addListener_addListener_3893" ,"Precompiled_AllocationStub_RawKeyUpEvent_3894" ,"Precompiled_AllocationStub_RawKeyDownEvent_3895" ,"Precompiled_RawKeyEventData_get_modifiersPressed_3896" ,"Precompiled_TypeTestingStub_package_flutter_src_services_raw_keyboard_dart__KeyboardSide_3897" ,"Precompiled_TypeTestingStub_package_flutter_src_services_raw_keyboard_dart__ModifierKey_3898" ,"Precompiled_AllocationStub__ModifierSidePair_465461389_3899" ,"Precompiled_TypeTestingStub_package_flutter_src_services_keyboard_key_dart__PhysicalKeyboardKey_3900" ,"Precompiled_RawKeyEvent_get_isMetaPressed_3901" ,"Precompiled_RawKeyEvent_isKeyPressed_3902" ,"Precompiled_RawKeyboard_get_keysPressed_3903" ,"Precompiled_RawKeyEvent_get_isAltPressed_3904" ,"Precompiled_RawKeyEvent_get_isShiftPressed_3905" ,"Precompiled_RawKeyEvent_get_isControlPressed_3906" ,"Precompiled_RawKeyEvent_RawKeyEvent_fromMessage_3907" ,"Precompiled_AllocationStub_RawKeyEventDataWindows_3908" ,"Precompiled_RawKeyEventDataWindows__isLeftRightModifierPressed_471422532_3909" ,"Precompiled_RawKeyEventDataWindows_get_keyLabel_3910" ,"Precompiled_AllocationStub_RawKeyEventDataWeb_3911" ,"Precompiled_AllocationStub_RawKeyEventDataLinux_3912" ,"Precompiled_AllocationStub_GLFWKeyHelper_3913" ,"Precompiled_GLFWKeyHelper_logicalKey_3914" ,"Precompiled_GLFWKeyHelper_numpadKey_3915" ,"Precompiled_RawKeyEventDataLinux_get_keyLabel_3916" ,"Precompiled_KeyHelper_KeyHelper__3917" ,"Precompiled_AllocationStub_RawKeyEventDataMacOs_3918" ,"Precompiled_RawKeyEventDataMacOs__isUnprintableKey_469244645_3919" ,"Precompiled_RawKeyEventDataMacOs__isLeftRightModifierPressed_469244645_3920" ,"Precompiled_AllocationStub_RawKeyEventDataFuchsia_3921" ,"Precompiled_RawKeyEventDataFuchsia_get_keyLabel_3922" ,"Precompiled_AllocationStub_RawKeyEventDataAndroid_3923" ,"Precompiled_RawKeyEventDataAndroid__isLeftRightModifierPressed_466177474_3924" ,"Precompiled_RawKeyEventDataAndroid_get_keyLabel_3925" ,"Precompiled_AllocationStub_RawKeyboard_3926" ,"Precompiled_RawKeyboard_init__allModifiers_465461389_3927" ,"Precompiled_RawKeyboard_init__allModifiersExceptFn_465461389_3928" ,"Precompiled_RawKeyboard_init__modifierKeyMap_465461389_3929" ,"Precompiled_TypeTestingStub_package_flutter_src_services_raw_keyboard_dart___ModifierSidePair_3930" ,"Precompiled_RawKeyboard_init_instance_3931" ,"Precompiled_RawKeyboard_RawKeyboard___465461389_3932" ,"Precompiled_RawKeyboard__handleKeyEvent_465461389__handleKeyEvent_465461389_3933" ,"Precompiled_RawKeyboard__handleKeyEvent_465461389_3934" ,"Precompiled_RawKeyboard__synchronizeModifiers_465461389_3935" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByWord_409245603__handleMoveCursorBackwardByWord_409245603_3936" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByWord_409245603_3937" ,"Precompiled_RenderEditable_get_text_3938" ,"Precompiled_RenderEditable__getMaxScrollExtent_409245603_3939" ,"Precompiled_RenderEditable__handleKeyEvent_409245603_3940" ,"Precompiled_RenderEditable__handleMovement_409245603_3941" ,"Precompiled_EditableTextState_get_textEditingValue_3942" ,"Precompiled_RenderEditable__handleKeyEvent_409245603__handleKeyEvent_409245603_3943" ,"Precompiled_RenderEditable_set_text_3944" ,"Precompiled_RenderEditable__handleMoveCursorForwardByCharacter_409245603__handleMoveCursorForwardByCharacter_409245603_3945" ,"Precompiled_RenderEditable__handleMoveCursorForwardByCharacter_409245603_3946" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByCharacter_409245603__handleMoveCursorBackwardByCharacter_409245603_3947" ,"Precompiled_RenderEditable__handleMoveCursorBackwardByCharacter_409245603_3948" ,"Precompiled_RenderEditable_get__getCaretPrototype_409245603_3949" ,"Precompiled_RenderEditable_handleEvent_handleEvent_3950" ,"Precompiled_RenderEditable_set_offset_3951" ,"Precompiled_RenderEditable_get_textDirection_3952" ,"Precompiled_RenderEditable_set_strutStyle_3953" ,"Precompiled_RenderEditable_computeMinIntrinsicWidth_computeMinIntrinsicWidth_3954" ,"Precompiled_RenderEditable_computeMinIntrinsicWidth_3955" ,"Precompiled_RenderEditable_RenderEditable__3956" ,"Precompiled_RenderEditable_getPositionForPoint_3957" ,"Precompiled_RenderEditable_set_cursorOffset_3958" ,"Precompiled_RenderEditable_set_locale_3959" ,"Precompiled_RenderEditable__paintHandleLayers_409245603_3960" ,"Precompiled_RenderEditable_calculateBoundedFloatingCursorOffset_3961" ,"Precompiled_RenderEditable_set_endHandleLayerLink_3962" ,"Precompiled_RenderEditable_set_showCursor_3963" ,"Precompiled_RenderEditable_get__hasVisualOverflow_409245603_3964" ,"Precompiled_RenderEditable_set_promptRectColor_3965" ,"Precompiled_RenderEditable_set_forceLine_3966" ,"Precompiled_RenderEditable_set_readOnly_3967" ,"Precompiled_RenderEditable_setFloatingCursor_3968" ,"Precompiled_RenderEditable_set_selection_3969" ,"Precompiled_EditableTextState_bringIntoView_3970" ,"Precompiled_EditableTextState__getOffsetToRevealCaret_559183791_3971" ,"Precompiled_EditableTextState__startCursorTimer_559183791_3972" ,"Precompiled_EditableTextState_updateFloatingCursor_3973" ,"Precompiled_EditableTextState_get_renderEditable_3974" ,"Precompiled_EditableTextState_get__floatingCursorOffset_559183791_3975" ,"Precompiled_EditableTextState__onFloatingCursorResetTick_559183791_3976" ,"Precompiled_EditableTextState__handleSelectionChanged_559183791_3977" ,"Precompiled_TextSelectionOverlay_showHandles_3978" ,"Precompiled_AllocationStub_ToolbarItemsParentData_3979" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart__ClipboardStatus_3980" ,"Precompiled__ClipboardStatusNotifier_ValueNotifier_WidgetsBindingObserver_485111801__ClipboardStatusNotifier_ValueNotifier_WidgetsBindingObserver_485111801__3981" ,"Precompiled_AllocationStub__TextSelectionGestureDetectorState_485111801_3982" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart__TextSelectionGestureDetector_3983" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragUpdateThrottled_485111801__handleDragUpdateThrottled_485111801_3984" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragUpdateThrottled_485111801_3985" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleTapUp_485111801_3986" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleTapUp_485111801__handleTapUp_485111801_3987" ,"Precompiled__TextSelectionGestureDetectorState_485111801__forcePressEnded_485111801_3988" ,"Precompiled__TextSelectionGestureDetectorState_485111801__forcePressEnded_485111801__forcePressEnded_485111801_3989" ,"Precompiled__TextSelectionGestureDetectorState_485111801__forcePressStarted_485111801__forcePressStarted_485111801_3990" ,"Precompiled__TextSelectionGestureDetectorState_485111801__forcePressStarted_485111801_3991" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragStart_485111801_3992" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragStart_485111801__handleDragStart_485111801_3993" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragUpdate_485111801_3994" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragUpdate_485111801__handleDragUpdate_485111801_3995" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragEnd_485111801__handleDragEnd_485111801_3996" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleDragEnd_485111801_3997" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleLongPressStart_485111801_3998" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleLongPressStart_485111801__handleLongPressStart_485111801_3999" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleTapDown_485111801__handleTapDown_485111801_4000" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleTapDown_485111801_4001" ,"Precompiled__TextSelectionGestureDetectorState_485111801__doubleTapTimeout_485111801_4002" ,"Precompiled__TextSelectionGestureDetectorState_485111801__isWithinDoubleTapTolerance_485111801_4003" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleLongPressEnd_485111801_4004" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleLongPressEnd_485111801__handleLongPressEnd_485111801_4005" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleLongPressMoveUpdate_485111801__handleLongPressMoveUpdate_485111801_4006" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleLongPressMoveUpdate_485111801_4007" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleTapCancel_485111801__handleTapCancel_485111801_4008" ,"Precompiled__TextSelectionGestureDetectorState_485111801__handleTapCancel_485111801_4009" ,"Precompiled__TextSelectionGestureDetectorState_485111801__doubleTapTimeout_485111801__doubleTapTimeout_485111801_4010" ,"Precompiled_TextSelectionControls_handleSelectAll_4011" ,"Precompiled_TextSelectionControls_handlePaste_4012" ,"Precompiled_TextSelectionControls_handleCopy_4013" ,"Precompiled_EditableTextState_hideToolbar_4014" ,"Precompiled_Clipboard_setData_4015" ,"Precompiled_Clipboard_getData_4016" ,"Precompiled_TypeTestingStub_package_flutter_src_services_clipboard_dart__ClipboardData_4017" ,"Precompiled_AllocationStub_ClipboardData_4018" ,"Precompiled_TextSelectionControls_handleCut_4019" ,"Precompiled_TextSelectionControls_canSelectAll_4020" ,"Precompiled_TextSelectionControls_canPaste_4021" ,"Precompiled_EditableTextState_get_pasteEnabled_4022" ,"Precompiled_TextSelectionControls_canCopy_4023" ,"Precompiled_EditableTextState_get_copyEnabled_4024" ,"Precompiled_TextSelectionControls_canCut_4025" ,"Precompiled_EditableTextState_get_cutEnabled_4026" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_renderEditable_4027" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_editableText_4028" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionUpdate_onDragSelectionUpdate_4029" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionUpdate_4030" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDoubleTapDown_onDoubleTapDown_4031" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDoubleTapDown_4032" ,"Precompiled_EditableTextState_showToolbar_4033" ,"Precompiled_TextSelectionOverlay_showToolbar_4034" ,"Precompiled_TextSelectionOverlay__buildToolbar_485111801__buildToolbar_485111801_4035" ,"Precompiled_TextSelectionOverlay__buildToolbar_485111801_4036" ,"Precompiled_AllocationStub_CompositedTransformFollower_4037" ,"Precompiled_TextSelectionOverlay_get__toolbarOpacity_485111801_4038" ,"Precompiled_AllocationStub__TextFieldState_335181401_4039" ,"Precompiled_AllocationStub_TextField_4040" ,"Precompiled_TypeTestingStub_package_flutter_src_material_text_field_dart__TextField_4041" ,"Precompiled_AllocationStub__TextFieldSelectionGestureDetectorBuilder_335181401_4042" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onSingleLongTapStart_onSingleLongTapStart_4043" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onSingleLongTapStart_4044" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onSingleTapUp_onSingleTapUp_4045" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onSingleTapUp_4046" ,"Precompiled__TextFieldState_335181401__requestKeyboard_335181401_4047" ,"Precompiled__TextFieldState_335181401_get__editableText_335181401_4048" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onSingleLongTapMoveUpdate_onSingleLongTapMoveUpdate_4049" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onSingleLongTapMoveUpdate_4050" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onForcePressEnd_onForcePressEnd_4051" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onForcePressStart_onForcePressStart_4052" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_onForcePressStart_4053" ,"Precompiled_TextSelectionGestureDetectorBuilder_onForcePressStart_4054" ,"Precompiled__TextFieldState_335181401_get__canRequestFocus_335181401_4055" ,"Precompiled__TextFieldState_335181401_get__effectiveController_335181401_4056" ,"Precompiled__TextFieldState_335181401__handleSelectionHandleTapped_335181401_4057" ,"Precompiled_EditableTextState_toggleToolbar_4058" ,"Precompiled__TextFieldState_335181401__handleSelectionHandleTapped_335181401__handleSelectionHandleTapped_335181401_4059" ,"Precompiled__TextFieldState_335181401__handleSelectionChanged_335181401__handleSelectionChanged_335181401_4060" ,"Precompiled__TextFieldState_335181401__handleSelectionChanged_335181401_4061" ,"Precompiled__TextFieldState_335181401__shouldShowSelectionHandles_335181401_4062" ,"Precompiled__TextFieldState_335181401_get__currentLength_335181401_4063" ,"Precompiled__TextFieldState_335181401__handleHover_335181401_4064" ,"Precompiled__TextFieldState_335181401_get__effectiveFocusNode_335181401_4065" ,"Precompiled_FocusNode_FocusNode__4066" ,"Precompiled__TextFieldState_335181401__getEffectiveDecoration_335181401_4067" ,"Precompiled_InputDecoration_applyDefaults_4068" ,"Precompiled_AllocationStub_InputDecoration_4069" ,"Precompiled_AllocationStub__Decoration_296019562_4070" ,"Precompiled_AllocationStub__RenderDecoration_296019562_4071" ,"Precompiled__RenderDecoration_296019562_set_helperError_4072" ,"Precompiled__RenderDecoration_296019562__updateChild_296019562_4073" ,"Precompiled__RenderDecoration_296019562__layoutLineBox_296019562_4074" ,"Precompiled__RenderDecoration_296019562__minWidth_296019562_4075" ,"Precompiled__RenderDecoration_296019562_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4076" ,"Precompiled__RenderDecoration_296019562_computeMinIntrinsicHeight_4077" ,"Precompiled__RenderDecoration_296019562_get_contentPadding_4078" ,"Precompiled__RenderDecoration_296019562__lineHeight_296019562_4079" ,"Precompiled__RenderDecoration_296019562_computeMaxIntrinsicHeight_4080" ,"Precompiled__RenderDecoration_296019562_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4081" ,"Precompiled__RenderDecoration_296019562_set_container_4082" ,"Precompiled__RenderDecoration_296019562__boxSize_296019562_4083" ,"Precompiled__RenderDecoration_296019562__paintLabel_296019562__paintLabel_296019562_4084" ,"Precompiled__RenderDecoration_296019562__paintLabel_296019562_4085" ,"Precompiled__RenderDecoration_296019562_set_suffix_4086" ,"Precompiled__RenderDecoration_296019562_set_isFocused_4087" ,"Precompiled__RenderDecoration_296019562_set_hint_4088" ,"Precompiled__RenderDecoration_296019562_set_suffixIcon_4089" ,"Precompiled__RenderDecoration_296019562_set_label_4090" ,"Precompiled__RenderDecoration_296019562__maxWidth_296019562_4091" ,"Precompiled__RenderDecoration_296019562_get__isOutlineAligned_296019562_4092" ,"Precompiled__RenderDecoration_296019562_set_prefixIcon_4093" ,"Precompiled__RenderDecoration_296019562_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4094" ,"Precompiled__RenderDecoration_296019562_computeMinIntrinsicWidth_4095" ,"Precompiled__RenderDecoration_296019562_set_icon_4096" ,"Precompiled__RenderDecoration_296019562_get__children_296019562_4097" ,"Precompiled__RenderDecoration_296019562_set_prefix_4098" ,"Precompiled__RenderDecoration_296019562_set_input_4099" ,"Precompiled__RenderDecoration_296019562__RenderDecoration_296019562__4100" ,"Precompiled__RenderDecoration_296019562_set_decoration_4101" ,"Precompiled__RenderDecoration_296019562__layout_296019562_4102" ,"Precompiled_AllocationStub__RenderDecorationLayout_296019562_4103" ,"Precompiled__RenderDecoration_296019562_set_textDirection_4104" ,"Precompiled__RenderDecoration_296019562_set_counter_4105" ,"Precompiled__RenderDecoration_296019562_set_textBaseline_4106" ,"Precompiled__RenderDecoration_296019562_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4107" ,"Precompiled__RenderDecoration_296019562_computeMaxIntrinsicWidth_4108" ,"Precompiled_AllocationStub__Decorator_296019562_4109" ,"Precompiled_AllocationStub__BorderContainer_296019562_4110" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart___BorderContainer_4111" ,"Precompiled_AllocationStub__InputDecoratorState_296019562_4112" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart__InputDecorator_4113" ,"Precompiled__InputDecoratorState_296019562_get__hasInlineLabel_296019562_4114" ,"Precompiled__InputDecoratorState_296019562_get_decoration_4115" ,"Precompiled__InputDecoratorState_296019562_get__floatingLabelEnabled_296019562_4116" ,"Precompiled__InputDecoratorState_296019562__getFillColor_296019562_4117" ,"Precompiled__InputDecoratorState_296019562__getActiveColor_296019562_4118" ,"Precompiled__InputDecoratorState_296019562__getInlineStyle_296019562_4119" ,"Precompiled__InputDecoratorState_296019562__getHelperStyle_296019562_4120" ,"Precompiled__InputDecoratorState_296019562_get_isHovering_4121" ,"Precompiled__InputDecoratorState_296019562__handleChange_296019562_4122" ,"Precompiled__InputDecoratorState_296019562__handleChange_296019562__handleChange_296019562_4123" ,"Precompiled__InputDecoratorState_296019562__getDefaultBorderColor_296019562_4124" ,"Precompiled__InputDecoratorState_296019562_get_isFocused_4125" ,"Precompiled__InputDecoratorState_296019562__getDefaultBorder_296019562_4126" ,"Precompiled_AllocationStub_UnderlineInputBorder_4127" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_border_dart__InputBorder_4128" ,"Precompiled__InputDecoratorState_296019562__getHoverColor_296019562_4129" ,"Precompiled__InputDecoratorState_296019562__getDefaultIconColor_296019562_4130" ,"Precompiled__InputDecoratorState_296019562_get_textAlign_4131" ,"Precompiled__InputDecoratorState_296019562__getErrorStyle_296019562_4132" ,"Precompiled_AllocationStub__HelperErrorState_296019562_4133" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart___HelperError_4134" ,"Precompiled__HelperErrorState_296019562__handleChange_296019562__handleChange_296019562_4135" ,"Precompiled__HelperErrorState_296019562__handleChange_296019562_4136" ,"Precompiled_AllocationStub_InputDecorator_4137" ,"Precompiled_AllocationStub__HelperError_296019562_4138" ,"Precompiled_AllocationStub__InputBorderGap_296019562_4139" ,"Precompiled__InputBorderGap_296019562_set_extent_4140" ,"Precompiled__InputBorderGap_296019562_set_start_4141" ,"Precompiled__InputBorderGap_296019562__InputBorderGap_296019562__4142" ,"Precompiled_AllocationStub__InputBorderTween_296019562_4143" ,"Precompiled_AllocationStub__BorderContainerState_296019562_4144" ,"Precompiled_AllocationStub__RenderDecorationElement_296019562_4145" ,"Precompiled__RenderDecorationElement_296019562__updateRenderObject_296019562_4146" ,"Precompiled__RenderDecorationElement_296019562__updateChild_296019562_4147" ,"Precompiled__RenderDecorationElement_296019562__mountChild_296019562_4148" ,"Precompiled__RenderDecorationElement_296019562__RenderDecorationElement_296019562__4149" ,"Precompiled_AllocationStub__InputBorderPainter_296019562_4150" ,"Precompiled__InputBorderPainter_296019562_get_blendedColor_4151" ,"Precompiled__InputBorderPainter_296019562__InputBorderPainter_296019562__4152" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionEnd_onDragSelectionEnd_4153" ,"Precompiled_TextSelectionGestureDetectorBuilder_onTapDown_4154" ,"Precompiled_TextSelectionGestureDetectorBuilder_onTapDown_onTapDown_4155" ,"Precompiled_TextSelectionGestureDetectorBuilder_onSingleLongTapEnd_onSingleLongTapEnd_4156" ,"Precompiled_TextSelectionGestureDetectorBuilder_onSingleLongTapEnd_4157" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onForcePressStart_4158" ,"Precompiled_TextSelectionGestureDetectorBuilder_onForcePressStart_onForcePressStart_4159" ,"Precompiled_TextSelectionGestureDetectorBuilder_buildGestureDetector_4160" ,"Precompiled_AllocationStub_TextSelectionGestureDetector_4161" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionStart_onDragSelectionStart_4162" ,"Precompiled_TextSelectionGestureDetectorBuilder_onDragSelectionStart_4163" ,"Precompiled_AllocationStub__TextSelectionHandleOverlayState_485111801_4164" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart___TextSelectionHandleOverlay_4165" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleTap_485111801__handleTap_485111801_4166" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleTap_485111801_4167" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleDragUpdate_485111801__handleDragUpdate_485111801_4168" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleDragUpdate_485111801_4169" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleDragStart_485111801__handleDragStart_485111801_4170" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleDragStart_485111801_4171" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleVisibilityChanged_485111801__handleVisibilityChanged_485111801_4172" ,"Precompiled__TextSelectionHandleOverlayState_485111801__handleVisibilityChanged_485111801_4173" ,"Precompiled__TextSelectionHandleOverlay_485111801_get__visibility_485111801_4174" ,"Precompiled__TextSelectionHandleOverlayState_485111801__chooseType_485111801_4175" ,"Precompiled__TextSelectionHandleOverlayState_485111801_get__opacity_485111801_4176" ,"Precompiled_AllocationStub__TransparentTapGestureRecognizer_485111801_4177" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_tap_dart__TapGestureRecognizer_4178" ,"Precompiled_AllocationStub__TextSelectionHandleOverlay_485111801_4179" ,"Precompiled_AllocationStub_ClipboardStatusNotifier_4180" ,"Precompiled_ClipboardStatusNotifier_addListener_addListener_4181" ,"Precompiled_TextSelectionOverlay__buildHandle_485111801_4182" ,"Precompiled_AllocationStub_Visibility_4183" ,"Precompiled_TextSelectionOverlay_updateForScroll_4184" ,"Precompiled_TextSelectionOverlay__markNeedsBuild_485111801_4185" ,"Precompiled_TextSelectionOverlay__markNeedsBuild_485111801__markNeedsBuild_485111801_4186" ,"Precompiled_TextSelectionOverlay__handleSelectionHandleChanged_485111801_4187" ,"Precompiled_TextSelectionOverlay_hideToolbar_4188" ,"Precompiled_TextSelectionOverlay_set_handlesVisible_4189" ,"Precompiled_TextSelectionOverlay_TextSelectionOverlay__4190" ,"Precompiled_AllocationStub_TextSelectionOverlay_4191" ,"Precompiled_TextSelectionOverlay_hide_4192" ,"Precompiled_EditableTextState_requestKeyboard_4193" ,"Precompiled_EditableTextState__openInputConnection_559183791_4194" ,"Precompiled_EditableTextState__updateSizeAndTransform_559183791_4195" ,"Precompiled_EditableTextState_get_textInputConfiguration_4196" ,"Precompiled_EditableTextState_EditableTextState__4197" ,"Precompiled_EditableTextState__cursorTick_559183791_4198" ,"Precompiled_EditableTextState__cursorTick_559183791__cursorTick_559183791_4199" ,"Precompiled_EditableTextState__handleSelectionChanged_559183791__handleSelectionChanged_559183791_4200" ,"Precompiled_EditableTextState__handleFocusChanged_559183791__handleFocusChanged_559183791_4201" ,"Precompiled_EditableTextState__handleFocusChanged_559183791_4202" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_removeObserver_4203" ,"Precompiled_EditableTextState__showCaretOnScreen_559183791_4204" ,"Precompiled_EditableTextState__updateOrDisposeSelectionOverlayIfNeeded_559183791_4205" ,"Precompiled_EditableTextState__startOrStopCursorTimerIfNeeded_559183791_4206" ,"Precompiled_EditableTextState__stopCursorTimer_559183791_4207" ,"Precompiled_EditableTextState__openOrCloseInputConnectionIfNeeded_559183791_4208" ,"Precompiled_EditableTextState__closeInputConnectionIfNeeded_559183791_4209" ,"Precompiled_FocusNode_consumeKeyboardToken_4210" ,"Precompiled_EditableTextState__cursorWaitForStart_559183791__cursorWaitForStart_559183791_4211" ,"Precompiled_EditableTextState__cursorWaitForStart_559183791_4212" ,"Precompiled_EditableTextState__onFloatingCursorResetTick_559183791__onFloatingCursorResetTick_559183791_4213" ,"Precompiled_EditableTextState__semanticsOnCut_559183791_4214" ,"Precompiled_EditableTextState_updateEditingValue_4215" ,"Precompiled_EditableTextState__didChangeTextEditingValue_559183791__didChangeTextEditingValue_559183791_4216" ,"Precompiled_EditableTextState__didChangeTextEditingValue_559183791_4217" ,"Precompiled_EditableTextState__finalizeEditing_559183791_4218" ,"Precompiled_EditableTextState_get__cursorColor_559183791_4219" ,"Precompiled_EditableTextState__handleCaretChanged_559183791__handleCaretChanged_559183791_4220" ,"Precompiled_EditableTextState__handleCaretChanged_559183791_4221" ,"Precompiled_EditableTextState_get__devicePixelRatio_559183791_4222" ,"Precompiled_EditableTextState__onCursorColorTick_559183791_4223" ,"Precompiled_EditableTextState__onCursorColorTick_559183791__onCursorColorTick_559183791_4224" ,"Precompiled_EditableTextState__onChangedClipboardStatus_559183791__onChangedClipboardStatus_559183791_4225" ,"Precompiled_EditableTextState__onChangedClipboardStatus_559183791_4226" ,"Precompiled_EditableTextState_buildTextSpan_4227" ,"Precompiled_EditableTextState__semanticsOnCopy_559183791_4228" ,"Precompiled_EditableTextState_performAction_4229" ,"Precompiled_EditableTextState__semanticsOnPaste_559183791_4230" ,"Precompiled_EditableTextState_connectionClosed_4231" ,"Precompiled_EditableTextState_showAutocorrectionPromptRect_4232" ,"Precompiled_AllocationStub__TextSelectionToolbar_337283233_4233" ,"Precompiled_TypeTestingStub_package_flutter_src_material_text_selection_dart___TextSelectionToolbar_4234" ,"Precompiled_AllocationStub__TextSelectionToolbarItemsElement_337283233_4235" ,"Precompiled_AllocationStub__TextSelectionToolbarContainer_337283233_4236" ,"Precompiled_AllocationStub__TextSelectionHandlePainter_337283233_4237" ,"Precompiled_AllocationStub__TextSelectionToolbarContainerRenderBox_337283233_4238" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_set_overflowOpen_4239" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_add_add_4240" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233__removeFromChildList_419266271_4241" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233__insertIntoChildList_419266271_4242" ,"Precompiled_AllocationStub__TextSelectionToolbarItems_337283233_4243" ,"Precompiled_AllocationStub__TextSelectionToolbarState_337283233_4244" ,"Precompiled__TextSelectionToolbarState_337283233__onChangedClipboardStatus_337283233__onChangedClipboardStatus_337283233_4245" ,"Precompiled__TextSelectionToolbarState_337283233__onChangedClipboardStatus_337283233_4246" ,"Precompiled__TextSelectionToolbarState_337283233__reset_337283233_4247" ,"Precompiled__TextSelectionToolbarState_337283233__getItem_337283233_4248" ,"Precompiled_AllocationStub_TextButton_4249" ,"Precompiled_AllocationStub__TextSelectionToolbarItemsRenderBox_337283233_4250" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233__placeChildren_337283233_4251" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233__shouldPaintChild_337283233_4252" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233__layoutChildren_337283233_4253" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_set_overflowOpen_4254" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_set_isAbove_4255" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233__TextSelectionToolbarItemsRenderBox_337283233__4256" ,"Precompiled_AllocationStub__TooltipPositionDelegate_346220820_4257" ,"Precompiled_AllocationStub_Tooltip_4258" ,"Precompiled_TypeTestingStub_package_flutter_src_material_tooltip_dart__Tooltip_4259" ,"Precompiled_AllocationStub__TooltipState_346220820_4260" ,"Precompiled__TooltipState_346220820_ensureTooltipVisible_ensureTooltipVisible_4261" ,"Precompiled__TooltipState_346220820_ensureTooltipVisible_4262" ,"Precompiled__TooltipState_346220820__createNewEntry_346220820_4263" ,"Precompiled_AllocationStub__TooltipOverlay_346220820_4264" ,"Precompiled__TooltipState_346220820__showTooltip_346220820_4265" ,"Precompiled__TooltipState_346220820__handleStatusChanged_346220820__handleStatusChanged_346220820_4266" ,"Precompiled__TooltipState_346220820__handleStatusChanged_346220820_4267" ,"Precompiled__TooltipState_346220820__hideTooltip_346220820_4268" ,"Precompiled__TooltipState_346220820__removeEntry_346220820_4269" ,"Precompiled__TooltipState_346220820__handleMouseTrackerChange_346220820_4270" ,"Precompiled__TooltipState_346220820__handleMouseTrackerChange_346220820__handleMouseTrackerChange_346220820_4271" ,"Precompiled__TooltipState_346220820__handlePointerEvent_346220820_4272" ,"Precompiled__TooltipState_346220820__handlePointerEvent_346220820__handlePointerEvent_346220820_4273" ,"Precompiled__TooltipState_346220820__handleLongPress_346220820__handleLongPress_346220820_4274" ,"Precompiled__TooltipState_346220820__handleLongPress_346220820_4275" ,"Precompiled_AllocationStub_RenderPositionedBox_4276" ,"Precompiled_RenderPositionedBox_set_heightFactor_4277" ,"Precompiled_RenderPositionedBox_set_widthFactor_4278" ,"Precompiled_RenderShiftedBox_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4279" ,"Precompiled_RenderShiftedBox_computeMaxIntrinsicHeight_4280" ,"Precompiled_RenderShiftedBox_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4281" ,"Precompiled_RenderShiftedBox_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4282" ,"Precompiled_RenderShiftedBox_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4283" ,"Precompiled_RenderShiftedBox_paint_paint_4284" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4285" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4286" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4287" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4288" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_paint_paint_4289" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_hitTest_hitTest_4290" ,"Precompiled_AllocationStub_RenderOpacity_4291" ,"Precompiled_RenderOpacity_set_opacity_4292" ,"Precompiled_RenderOpacity_RenderOpacity__4293" ,"Precompiled_AllocationStub_RenderSemanticsAnnotations_4294" ,"Precompiled_RenderSemanticsAnnotations_dyn_set_value_4295" ,"Precompiled_RenderSemanticsAnnotations_set_focused_4296" ,"Precompiled_RenderSemanticsAnnotations_set_namesRoute_4297" ,"Precompiled_RenderSemanticsAnnotations_RenderSemanticsAnnotations__4298" ,"Precompiled_RenderSemanticsAnnotations_set_container_4299" ,"Precompiled_RenderSemanticsAnnotations__performDismiss_423160605_4300" ,"Precompiled_RenderSemanticsAnnotations__performDismiss_423160605__performDismiss_423160605_4301" ,"Precompiled_RenderSemanticsAnnotations__performCut_423160605__performCut_423160605_4302" ,"Precompiled_RenderSemanticsAnnotations__performCut_423160605_4303" ,"Precompiled_RenderSemanticsAnnotations_set_onCopy_4304" ,"Precompiled_RenderSemanticsAnnotations_set_excludeSemantics_4305" ,"Precompiled_RenderSemanticsAnnotations__performTap_423160605__performTap_423160605_4306" ,"Precompiled_RenderSemanticsAnnotations__performTap_423160605_4307" ,"Precompiled_RenderSemanticsAnnotations__performCopy_423160605_4308" ,"Precompiled_RenderSemanticsAnnotations__performCopy_423160605__performCopy_423160605_4309" ,"Precompiled_RenderSemanticsAnnotations_set_hintOverrides_4310" ,"Precompiled_RenderSemanticsAnnotations_set_label_4311" ,"Precompiled_RenderSemanticsAnnotations_set_onDismiss_4312" ,"Precompiled_RenderSemanticsAnnotations_set_enabled_4313" ,"Precompiled_RenderSemanticsAnnotations__performPaste_423160605__performPaste_423160605_4314" ,"Precompiled_RenderSemanticsAnnotations__performPaste_423160605_4315" ,"Precompiled_RenderSemanticsAnnotations_set_onCut_4316" ,"Precompiled_RenderSemanticsAnnotations_set_focusable_4317" ,"Precompiled_RenderSemanticsAnnotations_set_textDirection_4318" ,"Precompiled_RenderSemanticsAnnotations_set_button_4319" ,"Precompiled_RenderSemanticsAnnotations_set_liveRegion_4320" ,"Precompiled_RenderSemanticsAnnotations_set_onTap_4321" ,"Precompiled_RenderSemanticsAnnotations_set_header_4322" ,"Precompiled_RenderSemanticsAnnotations_set_explicitChildNodes_4323" ,"Precompiled_RenderSemanticsAnnotations_set_onPaste_4324" ,"Precompiled_RenderSemanticsAnnotations_set_currentValueLength_4325" ,"Precompiled_RenderSemanticsAnnotations_set_image_4326" ,"Precompiled_RenderSemanticsAnnotations_set_scopesRoute_4327" ,"Precompiled_RenderSemanticsAnnotations_set_selected_4328" ,"Precompiled_AllocationStub_RenderIntrinsicWidth_4329" ,"Precompiled_RenderIntrinsicWidth_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4330" ,"Precompiled_RenderIntrinsicWidth_computeMaxIntrinsicHeight_4331" ,"Precompiled_RenderIntrinsicWidth_computeMaxIntrinsicWidth_4332" ,"Precompiled_RenderIntrinsicWidth__applyStep_423160605_4333" ,"Precompiled__Double_0150898_get_isInfinite_4334" ,"Precompiled_RenderIntrinsicWidth_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4335" ,"Precompiled_RenderIntrinsicWidth_computeMinIntrinsicHeight_4336" ,"Precompiled_RenderIntrinsicWidth_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4337" ,"Precompiled_RenderIntrinsicWidth_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4338" ,"Precompiled_RenderIntrinsicWidth_computeMinIntrinsicWidth_4339" ,"Precompiled_RenderIntrinsicWidth_set_stepWidth_4340" ,"Precompiled_AllocationStub_RenderRepaintBoundary_4341" ,"Precompiled_AllocationStub_ShapeBorderClipper_4342" ,"Precompiled_AllocationStub_RenderAbsorbPointer_4343" ,"Precompiled_RenderAbsorbPointer_hitTest_hitTest_4344" ,"Precompiled_AllocationStub_RenderLimitedBox_4345" ,"Precompiled_RenderLimitedBox__limitConstraints_423160605_4346" ,"Precompiled_RenderLimitedBox_set_maxHeight_4347" ,"Precompiled_RenderLimitedBox_set_maxWidth_4348" ,"Precompiled_RenderLimitedBox_RenderLimitedBox__4349" ,"Precompiled_AllocationStub_RenderOffstage_4350" ,"Precompiled_RenderOffstage_computeMinIntrinsicHeight_4351" ,"Precompiled_RenderOffstage_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4352" ,"Precompiled_RenderOffstage_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4353" ,"Precompiled_RenderOffstage_computeMaxIntrinsicHeight_4354" ,"Precompiled_RenderOffstage_hitTest_hitTest_4355" ,"Precompiled_RenderOffstage_set_offstage_4356" ,"Precompiled_RenderOffstage_computeMinIntrinsicWidth_4357" ,"Precompiled_RenderOffstage_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4358" ,"Precompiled_RenderOffstage_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4359" ,"Precompiled_RenderOffstage_computeMaxIntrinsicWidth_4360" ,"Precompiled_AllocationStub_RenderAnnotatedRegion_4361" ,"Precompiled_RenderAnnotatedRegion_RenderAnnotatedRegion__4362" ,"Precompiled_AllocationStub_RenderTransform_4363" ,"Precompiled_RenderTransform_hitTest_hitTest_4364" ,"Precompiled_RenderTransform_get__effectiveTransform_423160605_4365" ,"Precompiled_RenderTransform_set_transform_4366" ,"Precompiled_RenderTransform_set_textDirection_4367" ,"Precompiled_RenderTransform_set_alignment_4368" ,"Precompiled_RenderTransform_RenderTransform__4369" ,"Precompiled__RenderCustomClip_423160605__updateClip_423160605_4370" ,"Precompiled__RenderCustomClip_423160605_set_clipBehavior_4371" ,"Precompiled__RenderCustomClip_423160605__markNeedsClip_423160605_4372" ,"Precompiled__RenderCustomClip_423160605_set_clipper_4373" ,"Precompiled_AllocationStub_RenderPhysicalShape_4374" ,"Precompiled_RenderPhysicalShape_hitTest_hitTest_4375" ,"Precompiled_RenderPhysicalShape_get_layer_4376" ,"Precompiled_RenderPhysicalShape_RenderPhysicalShape__4377" ,"Precompiled__RenderPhysicalModelBase_423160605__RenderPhysicalModelBase_423160605__4378" ,"Precompiled_AllocationStub_RenderPhysicalModel_4379" ,"Precompiled_RenderPhysicalModel_hitTest_hitTest_4380" ,"Precompiled_RenderPhysicalModel_set_borderRadius_4381" ,"Precompiled_RenderPhysicalModel_get_layer_4382" ,"Precompiled_RenderPhysicalModel_RenderPhysicalModel__4383" ,"Precompiled_AllocationStub_RenderPointerListener_4384" ,"Precompiled_RenderPointerListener_handleEvent_handleEvent_4385" ,"Precompiled_RenderPointerListener_RenderPointerListener__4386" ,"Precompiled_AllocationStub_RenderConstrainedBox_4387" ,"Precompiled_RenderConstrainedBox_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4388" ,"Precompiled_RenderConstrainedBox_computeMaxIntrinsicHeight_4389" ,"Precompiled_RenderConstrainedBox_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4390" ,"Precompiled_RenderConstrainedBox_computeMinIntrinsicHeight_4391" ,"Precompiled_RenderConstrainedBox_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4392" ,"Precompiled_RenderConstrainedBox_computeMaxIntrinsicWidth_4393" ,"Precompiled_RenderConstrainedBox_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4394" ,"Precompiled_RenderConstrainedBox_computeMinIntrinsicWidth_4395" ,"Precompiled_RenderConstrainedBox_set_additionalConstraints_4396" ,"Precompiled_AllocationStub_RenderLeaderLayer_4397" ,"Precompiled_RenderLeaderLayer_set_link_4398" ,"Precompiled_RenderLeaderLayer_RenderLeaderLayer__4399" ,"Precompiled__RenderPhysicalModelBase_423160605_set_color_4400" ,"Precompiled__RenderPhysicalModelBase_423160605_set_shadowColor_4401" ,"Precompiled__RenderPhysicalModelBase_423160605_set_elevation_4402" ,"Precompiled_AllocationStub_RenderFollowerLayer_4403" ,"Precompiled_RenderFollowerLayer_hitTest_hitTest_4404" ,"Precompiled_RenderFollowerLayer_getCurrentTransform_4405" ,"Precompiled_RenderFollowerLayer_get_layer_4406" ,"Precompiled_RenderFollowerLayer_set_offset_4407" ,"Precompiled_RenderFollowerLayer_set_showWhenUnlinked_4408" ,"Precompiled_RenderFollowerLayer_set_link_4409" ,"Precompiled_RenderFollowerLayer_RenderFollowerLayer__4410" ,"Precompiled_AllocationStub_RenderExcludeSemantics_4411" ,"Precompiled_RenderExcludeSemantics_set_excluding_4412" ,"Precompiled_AllocationStub_RenderMouseRegion_4413" ,"Precompiled_RenderMouseRegion__handleUpdatedMouseIsConnected_423160605__handleUpdatedMouseIsConnected_423160605_4414" ,"Precompiled_RenderMouseRegion__handleUpdatedMouseIsConnected_423160605_4415" ,"Precompiled_RenderMouseRegion__markPropertyUpdated_423160605_4416" ,"Precompiled_RenderMouseRegion__setAnnotationIsActive_423160605_4417" ,"Precompiled_RenderMouseRegion_set_cursor_4418" ,"Precompiled_RenderMouseRegion_set_onExit_4419" ,"Precompiled_RenderMouseRegion_set_onEnter_4420" ,"Precompiled_RenderMouseRegion_set_opaque_4421" ,"Precompiled_RenderMouseRegion_RenderMouseRegion__4422" ,"Precompiled_AllocationStub_RenderClipRect_4423" ,"Precompiled_RenderClipRect_hitTest_hitTest_4424" ,"Precompiled_AllocationStub_RenderIndexedSemantics_4425" ,"Precompiled_RenderIndexedSemantics_set_index_4426" ,"Precompiled_AllocationStub_RenderMergeSemantics_4427" ,"Precompiled_AllocationStub_RenderFractionalTranslation_4428" ,"Precompiled_RenderFractionalTranslation_hitTest_hitTest_4429" ,"Precompiled_RenderFractionalTranslation_set_translation_4430" ,"Precompiled_AllocationStub_ConstrainedBox_4431" ,"Precompiled_DefaultAssetBundle_of_4432" ,"Precompiled____init_rootBundle_4433" ,"Precompiled_____initRootBundle_452177032_4434" ,"Precompiled_CachingAssetBundle_CachingAssetBundle__4435" ,"Precompiled_AssetBundle__utf8decode_452177032_4436" ,"Precompiled_AssetBundle__utf8decode_452177032__utf8decode_452177032_4437" ,"Precompiled_AssetBundle_loadString_4438" ,"Precompiled_CachingAssetBundle_loadStructuredData_4439" ,"Precompiled_CachingAssetBundle_loadString_4440" ,"Precompiled_AllocationStub_PlatformAssetBundle_4441" ,"Precompiled_AllocationStub_Listener_4442" ,"Precompiled_AllocationStub_LimitedBox_4443" ,"Precompiled_AllocationStub_CustomMultiChildLayout_4444" ,"Precompiled_AllocationStub__PointerListener_480167661_4445" ,"Precompiled_AllocationStub_Column_4446" ,"Precompiled_Column_Column__4447" ,"Precompiled_AllocationStub_CustomPaint_4448" ,"Precompiled_AllocationStub_FractionalTranslation_4449" ,"Precompiled_AllocationStub_MouseRegion_4450" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_basic_dart__MouseRegion_4451" ,"Precompiled_AllocationStub_KeyedSubtree_4452" ,"Precompiled_AllocationStub_CustomSingleChildLayout_4453" ,"Precompiled_AllocationStub_Opacity_4454" ,"Precompiled_AllocationStub_Transform_4455" ,"Precompiled_Transform_Transform_rotate_4456" ,"Precompiled_AllocationStub_RepaintBoundary_4457" ,"Precompiled_AllocationStub__RenderColoredBox_480167661_4458" ,"Precompiled__RenderColoredBox_480167661_set_color_4459" ,"Precompiled_AllocationStub_Positioned_4460" ,"Precompiled_Positioned_Positioned_directional_4461" ,"Precompiled_AllocationStub__RawMouseRegion_480167661_4462" ,"Precompiled_AllocationStub_Align_4463" ,"Precompiled_AllocationStub_Expanded_4464" ,"Precompiled_AllocationStub_MergeSemantics_4465" ,"Precompiled_AllocationStub_IntrinsicWidth_4466" ,"Precompiled_IntrinsicWidth_get__stepWidth_480167661_4467" ,"Precompiled_AllocationStub_PhysicalModel_4468" ,"Precompiled_AllocationStub_SizedBox_4469" ,"Precompiled_SizedBox_get__additionalConstraints_480167661_4470" ,"Precompiled_Semantics__getTextDirection_480167661_4471" ,"Precompiled_AllocationStub__OffstageElement_480167661_4472" ,"Precompiled_AllocationStub_Row_4473" ,"Precompiled_AllocationStub_IndexedSemantics_4474" ,"Precompiled_AllocationStub_Offstage_4475" ,"Precompiled_AllocationStub_Builder_4476" ,"Precompiled_AllocationStub_CompositedTransformTarget_4477" ,"Precompiled_AllocationStub_PositionedDirectional_4478" ,"Precompiled_AllocationStub_AbsorbPointer_4479" ,"Precompiled_AllocationStub__MouseRegionState_480167661_4480" ,"Precompiled__MouseRegionState_480167661_handleExit_handleExit_4481" ,"Precompiled__MouseRegionState_480167661_handleExit_4482" ,"Precompiled__MouseRegionState_480167661_getHandleExit_4483" ,"Precompiled_AllocationStub_ColoredBox_4484" ,"Precompiled_AllocationStub_ClipRect_4485" ,"Precompiled_AllocationStub_SliverPadding_4486" ,"Precompiled_AllocationStub_RenderSliverPadding_4487" ,"Precompiled_RenderSliverEdgeInsetsPadding_childMainAxisPosition_4488" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_beforePadding_4489" ,"Precompiled_RenderSliverEdgeInsetsPadding_performLayout_4490" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_crossAxisPadding_4491" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_mainAxisPadding_4492" ,"Precompiled_RenderSliverEdgeInsetsPadding_get_afterPadding_4493" ,"Precompiled_RenderSliverPadding_set_textDirection_4494" ,"Precompiled_RenderSliverPadding__markNeedsResolution_433065309_4495" ,"Precompiled_RenderSliverPadding_set_padding_4496" ,"Precompiled_RenderSliverPadding__resolve_433065309_4497" ,"Precompiled_AllocationStub_RawImage_4498" ,"Precompiled_AllocationStub_RenderImage_4499" ,"Precompiled_RenderImage_set_invertColors_4500" ,"Precompiled_RenderImage_set_scale_4501" ,"Precompiled_RenderImage_computeMaxIntrinsicHeight_4502" ,"Precompiled_RenderImage__sizeForConstraints_413402377_4503" ,"Precompiled_RenderImage_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4504" ,"Precompiled_RenderImage_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4505" ,"Precompiled_RenderImage_computeMinIntrinsicHeight_4506" ,"Precompiled_RenderImage__resolve_413402377_4507" ,"Precompiled_RenderImage__markNeedResolution_413402377_4508" ,"Precompiled_RenderImage_set_height_4509" ,"Precompiled_RenderImage_set_alignment_4510" ,"Precompiled_RenderImage_set_textDirection_4511" ,"Precompiled_RenderImage__updateColorFilter_413402377_4512" ,"Precompiled_RenderImage_computeMinIntrinsicWidth_4513" ,"Precompiled_RenderImage_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4514" ,"Precompiled_RenderImage_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4515" ,"Precompiled_RenderImage_computeMaxIntrinsicWidth_4516" ,"Precompiled_RenderImage_set_fit_4517" ,"Precompiled_RenderImage_set_image_4518" ,"Precompiled_RenderImage_RenderImage__4519" ,"Precompiled_AllocationStub_PhysicalShape_4520" ,"Precompiled_Flex_getEffectiveTextDirection_4521" ,"Precompiled_AllocationStub_Flexible_4522" ,"Precompiled_AllocationStub_ListBody_4523" ,"Precompiled_AllocationStub_RenderListBody_4524" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_add_add_4525" ,"Precompiled_AllocationStub_ListBodyParentData_4526" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922__removeFromChildList_419266271_4527" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922__insertIntoChildList_419266271_4528" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_415367922_defaultPaint_4529" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_415367922_defaultHitTestChildren_4530" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_415367922_defaultComputeDistanceToFirstActualBaseline_4531" ,"Precompiled_RenderListBody_computeMinIntrinsicHeight_4532" ,"Precompiled_RenderListBody__getIntrinsicCrossAxis_415367922_4533" ,"Precompiled_RenderListBody__getIntrinsicMainAxis_415367922_4534" ,"Precompiled_RenderListBody_get_mainAxis_4535" ,"Precompiled_RenderListBody_computeMinIntrinsicHeight_computeMinIntrinsicHeight_4536" ,"Precompiled_RenderListBody_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_4537" ,"Precompiled_RenderListBody_computeMaxIntrinsicHeight_4538" ,"Precompiled_RenderListBody_computeMinIntrinsicWidth_4539" ,"Precompiled_RenderListBody_computeMinIntrinsicWidth_computeMinIntrinsicWidth_4540" ,"Precompiled_RenderListBody_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_4541" ,"Precompiled_RenderListBody_computeMaxIntrinsicWidth_4542" ,"Precompiled_RenderListBody_set_axisDirection_4543" ,"Precompiled_ListBody__getDirection_480167661_4544" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_basic_dart__Directionality_4545" ,"Precompiled__ReadingOrderSortData_528280150_sortWithDirectionality_4546" ,"Precompiled____mergeSort_4547" ,"Precompiled_____merge_97139894_4548" ,"Precompiled_____movingInsertionSort_97139894_4549" ,"Precompiled_____mergeSort_97139894_4550" ,"Precompiled____insertionSort_4551" ,"Precompiled__ReadingOrderSortData_528280150_commonDirectionalityOf_4552" ,"Precompiled_FocusNode_get_rect_4553" ,"Precompiled_AllocationStub__ReadingOrderSortData_528280150_4554" ,"Precompiled_ReadingOrderTraversalPolicy__pickNext_528280150_4555" ,"Precompiled__ReadingOrderDirectionalGroupData_528280150_sortWithDirectionality_4556" ,"Precompiled_AllocationStub__ReadingOrderDirectionalGroupData_528280150_4557" ,"Precompiled__ReadingOrderDirectionalGroupData_528280150_get_rect_4558" ,"Precompiled_ReadingOrderTraversalPolicy__collectDirectionalityGroups_528280150_4559" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___ReadingOrderDirectionalGroupData_4560" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___ReadingOrderSortData_4561" ,"Precompiled_AllocationStub_ReadingOrderTraversalPolicy_4562" ,"Precompiled_FocusTraversalPolicy__getMarker_528280150_4563" ,"Precompiled_____focusAndEnsureVisible_528280150_4564" ,"Precompiled_FocusTraversalPolicy_findLastFocus_4565" ,"Precompiled_FocusTraversalPolicy__findInitialFocus_528280150_4566" ,"Precompiled_FocusTraversalPolicy_findFirstFocus_4567" ,"Precompiled_FocusScopeNode_get_focusedChild_4568" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_invalidateScopeData_4569" ,"Precompiled_AllocationStub__FocusTraversalGroupMarker_528280150_4570" ,"Precompiled_FocusTraversalPolicy_previous_4571" ,"Precompiled_FocusTraversalPolicy_next_4572" ,"Precompiled_AllocationStub_FocusTraversalGroup_4573" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__FocusTraversalGroup_4574" ,"Precompiled_AllocationStub_NextFocusAction_4575" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__NextFocusIntent_4576" ,"Precompiled_AllocationStub__DirectionalPolicyData_528280150_4577" ,"Precompiled_AllocationStub_DirectionalFocusAction_4578" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__DirectionalFocusIntent_4579" ,"Precompiled_AllocationStub_RequestFocusAction_4580" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__RequestFocusIntent_4581" ,"Precompiled_AllocationStub_PreviousFocusAction_4582" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart__PreviousFocusIntent_4583" ,"Precompiled_AllocationStub__DirectionalPolicyDataEntry_528280150_4584" ,"Precompiled_AllocationStub__FocusTraversalGroupState_528280150_4585" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection_4586" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__pushPolicyData_528280150_4587" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterHorizontally_528280150_4588" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterVertically_528280150_4589" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__popPolicyDataIfNeeded_528280150_4590" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_findFirstFocusInDirection_4591" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFindInitial_528280150_4592" ,"Precompiled_FocusTraversalGroup_of_4593" ,"Precompiled_FocusNode__updateManager_514042876_4594" ,"Precompiled_FocusNode__removeChild_514042876_4595" ,"Precompiled_Focus_of_4596" ,"Precompiled_AllocationStub_Focus_4597" ,"Precompiled_AllocationStub__FocusState_515492240_4598" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_scope_dart__Focus_4599" ,"Precompiled__FocusState_515492240__handleFocusChanged_515492240__handleFocusChanged_515492240_4600" ,"Precompiled__FocusState_515492240__handleFocusChanged_515492240_4601" ,"Precompiled__FocusState_515492240__handleAutofocus_515492240_4602" ,"Precompiled_FocusScope_of_4603" ,"Precompiled__FocusState_515492240__initNode_515492240_4604" ,"Precompiled_FocusNode_set_canRequestFocus_4605" ,"Precompiled_FocusNode_set_descendantsAreFocusable_4606" ,"Precompiled__FocusState_515492240_get_focusNode_4607" ,"Precompiled_AllocationStub_FocusScope_4608" ,"Precompiled_AllocationStub__FocusMarker_515492240_4609" ,"Precompiled_AllocationStub__FocusScopeState_515492240_4610" ,"Precompiled_FocusNode__markNextFocus_514042876_4611" ,"Precompiled_FocusNode__notify_514042876_4612" ,"Precompiled_FocusManager__markNextFocus_514042876_4613" ,"Precompiled_FocusNode_previousFocus_4614" ,"Precompiled_FocusNode_nextFocus_4615" ,"Precompiled_FocusNode_focusInDirection_4616" ,"Precompiled_FocusNode_get_hasPrimaryFocus_4617" ,"Precompiled_FocusNode_get_ancestors_4618" ,"Precompiled_FocusManager__applyFocusChange_514042876__applyFocusChange_514042876_4619" ,"Precompiled_FocusManager__handleRawKeyEvent_514042876__handleRawKeyEvent_514042876_4620" ,"Precompiled_FocusManager__handleRawKeyEvent_514042876_4621" ,"Precompiled_FocusManager_addHighlightModeListener_4622" ,"Precompiled_FocusManager_removeHighlightModeListener_4623" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_manager_dart__FocusNode_4624" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_addListener_addListener_4625" ,"Precompiled_FocusScopeNode_FocusScopeNode__4626" ,"Precompiled_AllocationStub_FocusScopeNode_4627" ,"Precompiled_AllocationStub_FocusManager_4628" ,"Precompiled_AllocationStub__InactiveElements_28042623_4629" ,"Precompiled_AllocationStub_ParentDataElement_4630" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__ParentDataWidget__T_4631" ,"Precompiled__InactiveElements_28042623_dyn_add_4632" ,"Precompiled__InactiveElements_28042623_add_add_4633" ,"Precompiled__InactiveElements_28042623__unmount_28042623__unmount_28042623_4634" ,"Precompiled__InactiveElements_28042623__unmount_28042623_4635" ,"Precompiled__InactiveElements_28042623__deactivateRecursively_28042623_4636" ,"Precompiled__InactiveElements_28042623__deactivateRecursively_28042623__deactivateRecursively_28042623_4637" ,"Precompiled__InactiveElements_28042623__unmountAll_28042623_4638" ,"Precompiled_RootRenderObjectElement_mount_4639" ,"Precompiled_RootRenderObjectElement_assignOwner_4640" ,"Precompiled_AllocationStub_StatelessElement_4641" ,"Precompiled_AllocationStub_InheritedElement_4642" ,"Precompiled_InheritedElement_updateDependencies_4643" ,"Precompiled_InheritedElement_setDependencies_4644" ,"Precompiled_AllocationStub_DebugCreator_4645" ,"Precompiled_AllocationStub_SingleChildRenderObjectElement_4646" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_drawFrame_4647" ,"Precompiled_BuildOwner_buildScope_4648" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_addTimingsCallback_4649" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__executeTimingsCallbacks_444222615__executeTimingsCallbacks_444222615_4650" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__executeTimingsCallbacks_444222615_4651" ,"Precompiled_TypeTestingStub_dart_ui__FrameTiming_4652" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsOwnerDisposed_403452173__handleSemanticsOwnerDisposed_403452173_4653" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsOwnerDisposed_403452173_4654" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_initMouseTracker_4655" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_deferFirstFrame_4656" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsOwnerCreated_403452173_4657" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsOwnerCreated_403452173__handleSemanticsOwnerCreated_403452173_4658" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_allowFirstFrame_4659" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleWarmUpFrame_4660" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_set_renderView_4661" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__4662" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__4663" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801__4664" ,"Precompiled_AllocationStub_HeapPriorityQueue_4665" ,"Precompiled_HeapPriorityQueue_add_add_4666" ,"Precompiled_HeapPriorityQueue__grow_108248793_4667" ,"Precompiled_HeapPriorityQueue__bubbleDown_108248793_4668" ,"Precompiled_HeapPriorityQueue__bubbleUp_108248793_4669" ,"Precompiled_HeapPriorityQueue__removeLast_108248793_4670" ,"Precompiled_HeapPriorityQueue__add_108248793_4671" ,"Precompiled_HeapPriorityQueue_removeFirst_4672" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsEnabledChanged_403452173__handleSemanticsEnabledChanged_403452173_4673" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801__handleSemanticsEnabledChanged_403452173_4674" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_setSemanticsEnabled_4675" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_initInstances_4676" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_initRenderView_4677" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handlePlatformBrightnessChanged_handlePlatformBrightnessChanged_4678" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handlePlatformBrightnessChanged_4679" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleTextScaleFactorChanged_handleTextScaleFactorChanged_4680" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleTextScaleFactorChanged_4681" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleMetricsChanged_handleMetricsChanged_4682" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleMetricsChanged_4683" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_ensureVisualUpdate_ensureVisualUpdate_4684" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_ensureVisualUpdate_4685" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801__handleNavigationInvocation_509399801_4686" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handlePushRoute_4687" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handlePopRoute_4688" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801__handleNavigationInvocation_509399801__handleNavigationInvocation_509399801_4689" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801__4690" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_dispatchLocalesChanged_4691" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleLocaleChanged_handleLocaleChanged_4692" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleLocaleChanged_4693" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleMemoryPressure_4694" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_attachRootWidget_4695" ,"Precompiled_RenderObjectToWidgetAdapter_attachToRenderTree_4696" ,"Precompiled_AllocationStub_RenderObjectToWidgetElement_4697" ,"Precompiled_RenderObjectToWidgetElement__rebuild_509399801_4698" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_binding_dart__RenderObjectToWidgetAdapter__T_4699" ,"Precompiled_AllocationStub_RenderObjectToWidgetAdapter_4700" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleAccessibilityFeaturesChanged_4701" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handleAccessibilityFeaturesChanged_handleAccessibilityFeaturesChanged_4702" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_scheduleAttachRootWidget_4703" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801__handleBuildScheduled_509399801_4704" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801__handleBuildScheduled_509399801__handleBuildScheduled_509399801_4705" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801_handleSystemMessage_4706" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_initInstances_4707" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_handleEvent_handleEvent_4708" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_get_hitTest_4709" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_hitTest_hitTest_4710" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_hitTest_4711" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_cancelPointer_cancelPointer_4712" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_cancelPointer_4713" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_unlocked_4714" ,"Precompiled____runApp_4715" ,"Precompiled_WidgetsFlutterBinding_ensureInitialized_4716" ,"Precompiled_AllocationStub_WidgetsFlutterBinding_4717" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__ensureEventLoopCallback_444222615_4718" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_get_endOfFrame_4719" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_resetEpoch_4720" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_handleEventLoopCallback_4721" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__runTasks_444222615_4722" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801__runTasks_444222615__runTasks_444222615_4723" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleTask_4724" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_unlocked_4725" ,"Precompiled_Ticker_scheduleTick_4726" ,"Precompiled_Ticker_get_shouldScheduleTick_4727" ,"Precompiled_AnimationController__tick_152066280_4728" ,"Precompiled_AnimationController__tick_152066280__tick_152066280_4729" ,"Precompiled_AnimationController__directionSetter_152066280__directionSetter_152066280_4730" ,"Precompiled_AnimationController__directionSetter_152066280_4731" ,"Precompiled_AnimationController_reverse_reverse_4732" ,"Precompiled_AnimationController_repeat_4733" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_addListener_4734" ,"Precompiled_ReverseAnimation_addListener_4735" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_addListener_4736" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_addListener_4737" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_156105126_addListener_4738" ,"Precompiled_CustomPainter_addListener_4739" ,"Precompiled__MergingListenable_195329750_addListener_4740" ,"Precompiled__SystemFontsNotifier_354047248_addListener_4741" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_152066280_get_addListener_4742" ,"Precompiled__AlwaysCompleteAnimation_153411118_get_addListener_4743" ,"Precompiled__AlwaysDismissedAnimation_153411118_get_addListener_4744" ,"Precompiled_AlwaysStoppedAnimation_get_addListener_4745" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_get_addListener_4746" ,"Precompiled_ReverseAnimation_get_addListener_4747" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_get_addListener_4748" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_expand_4749" ,"Precompiled_AllocationStub_ExpandIterable_4750" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_get_addListener_4751" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_156105126_get_addListener_4752" ,"Precompiled_CustomPainter_get_addListener_4753" ,"Precompiled__MergingListenable_195329750_get_addListener_4754" ,"Precompiled__SystemFontsNotifier_354047248_get_addListener_4755" ,"Precompiled_CustomClipper_get_addListener_4756" ,"Precompiled_AllocationStub_AuthException_4757" ,"Precompiled_____decodeAdditionalUserInfo_142501543_4758" ,"Precompiled_AllocationStub_PlatformAdditionalUserInfo_4759" ,"Precompiled_____decodeAuthResult_142501543_4760" ,"Precompiled_AllocationStub_PlatformAuthResult_4761" ,"Precompiled_____decodeUser_142501543_4762" ,"Precompiled_AllocationStub_PlatformUser_4763" ,"Precompiled_AllocationStub_PlatformUserInfo_4764" ,"Precompiled_TypeTestingStub_package_firebase_auth_platform_interface_firebase_auth_platform_interface_dart__PlatformAuthResult_4765" ,"Precompiled_____decodeUserInfo_142501543_4766" ,"Precompiled_____decodeUserInfo_142501543__decodeUserInfo_142501543_4767" ,"Precompiled_TypeTestingStub_dart_core__Map_4768" ,"Precompiled_TypeTestingStub_package_firebase_auth_platform_interface_firebase_auth_platform_interface_dart__PlatformUser_4769" ,"Precompiled_AllocationStub_GoogleAuthCredential_4770" ,"Precompiled_AllocationStub_PhoneAuthCredential_4771" ,"Precompiled_AllocationStub_MethodChannelFirebaseAuth_4772" ,"Precompiled_MethodChannelFirebaseAuth__callHandler_142501543__callHandler_142501543_4773" ,"Precompiled_MethodChannelFirebaseAuth__callHandler_142501543_4774" ,"Precompiled_MethodChannelFirebaseAuth_signOut_signOut_4775" ,"Precompiled_MethodChannelFirebaseAuth_signOut_4776" ,"Precompiled_MethodChannelFirebaseAuth__onAuthStateChangedHandler_142501543_4777" ,"Precompiled_MethodChannelFirebaseAuth_signInWithCredential_4778" ,"Precompiled_MethodChannelFirebaseAuth_getCurrentUser_4779" ,"Precompiled_MethodChannelFirebaseAuth_MethodChannelFirebaseAuth__4780" ,"Precompiled_PlatformInterface_verifyToken_4781" ,"Precompiled_FirebaseAuthPlatform_init__instance_142501543_4782" ,"Precompiled_FirebaseAuthPlatform_get_instance_4783" ,"Precompiled__CastListBase_11040228_removeAt_4784" ,"Precompiled__CastListBase_11040228_insertAll_4785" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_152066280_removeListener_4786" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_removeListener_4787" ,"Precompiled_ReverseAnimation_removeListener_4788" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_removeListener_4789" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_153411118_removeListener_4790" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_156105126_removeListener_4791" ,"Precompiled_CustomPainter_removeListener_4792" ,"Precompiled__MergingListenable_195329750_removeListener_4793" ,"Precompiled__SystemFontsNotifier_354047248_removeListener_4794" ,"Precompiled__ListBase_Object_ListMixin_3220832_removeAt_4795" ,"Precompiled_ListQueue_removeLast_4796" ,"Precompiled__CastListBase_11040228_removeLast_4797" ,"Precompiled_AllocationStub_IconButton_4798" ,"Precompiled__TypedDataBuffer_489432058_insertAll_4799" ,"Precompiled_ImageStreamCompleter_addListener_4800" ,"Precompiled_MultiFrameImageStreamCompleter_addListener_4801" ,"Precompiled_ImageStream_addListener_4802" ,"Precompiled_ListQueue_elementAt_4803" ,"Precompiled_SubListIterable_elementAt_4804" ,"Precompiled_SubListIterable_get__endIndex_11040228_4805" ,"Precompiled_AllocationStub_SubListIterable_4806" ,"Precompiled_SubListIterable_SubListIterable__4807" ,"Precompiled_SubListIterable_get__startIndex_11040228_4808" ,"Precompiled_MappedListIterable_elementAt_4809" ,"Precompiled_AllocationStub_MappedListIterable_4810" ,"Precompiled_ReversedListIterable_elementAt_4811" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_elementAt_4812" ,"Precompiled_Image_get_alignment_4813" ,"Precompiled_AllocationStub_Image_4814" ,"Precompiled____createLocalImageConfiguration_4815" ,"Precompiled_AllocationStub_ImageConfiguration_4816" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_provider_dart__AssetBundleImageKey_4817" ,"Precompiled_AssetBundleImageProvider__loadAsync_375477495_4818" ,"Precompiled_ImageProvider_resolveStreamForKey_4819" ,"Precompiled_ImageProvider__createErrorHandlerAndKey_375477495_4820" ,"Precompiled_ImageProvider_createStream_4821" ,"Precompiled_AllocationStub_AssetBundleImageKey_4822" ,"Precompiled_AllocationStub__ErrorImageCompleter_375477495_4823" ,"Precompiled__ErrorImageCompleter_375477495_setError_4824" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_image_dart__Image_4825" ,"Precompiled_AllocationStub__ImageState_545215529_4826" ,"Precompiled__ImageState_545215529__handleImageFrame_545215529__handleImageFrame_545215529_4827" ,"Precompiled__ImageState_545215529__handleImageFrame_545215529_4828" ,"Precompiled__ImageState_545215529__stopListeningToStream_545215529_4829" ,"Precompiled__ImageState_545215529__getListener_545215529_4830" ,"Precompiled__ImageState_545215529__listenToStream_545215529_4831" ,"Precompiled__ImageState_545215529__updateSourceStream_545215529_4832" ,"Precompiled__ImageState_545215529__resolveImage_545215529_4833" ,"Precompiled_AllocationStub_ScrollAwareImageProvider_4834" ,"Precompiled_ScrollAwareImageProvider_obtainKey_4835" ,"Precompiled_AssetImage_obtainKey_4836" ,"Precompiled_AllocationStub_AssetImage_4837" ,"Precompiled_AssetImage_init__extractRatioRegExp_376097849_4838" ,"Precompiled_AssetImage__parseScale_376097849_4839" ,"Precompiled_AssetImage__findNearest_376097849_4840" ,"Precompiled_AssetImage__chooseVariant_376097849_4841" ,"Precompiled_AssetImage__manifestParser_376097849_4842" ,"Precompiled_AssetImage__manifestParser_376097849__manifestParser_376097849_4843" ,"Precompiled_ScrollAwareImageProvider_resolveStreamForKey_4844" ,"Precompiled__ImageState_545215529__updateInvertColors_545215529_4845" ,"Precompiled_ClipboardStatusNotifier_addListener_4846" ,"Precompiled__ImmutableMap_0150898_remove_4847" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_gesture_detector_dart__GestureRecognizerFactory__package_flutter_src_gestures_recognizer_dart__GestureRecognizer_4848" ,"Precompiled_AllocationStub__FadeUpwardsPageTransition_307490068_4849" ,"Precompiled__FadeUpwardsPageTransition_307490068_init__easeInTween_307490068_4850" ,"Precompiled__FadeUpwardsPageTransition_307490068_init__fastOutSlowInTween_307490068_4851" ,"Precompiled__FadeUpwardsPageTransition_307490068_init__bottomUpTween_307490068_4852" ,"Precompiled__FadeUpwardsPageTransition_307490068__FadeUpwardsPageTransition_307490068__4853" ,"Precompiled_PageTransitionsTheme__all_307490068_4854" ,"Precompiled_AllocationStub_LogicalKeySet_4855" ,"Precompiled_KeySet_init__tempHashStore4_516043213_4856" ,"Precompiled_KeySet_init__tempHashStore3_516043213_4857" ,"Precompiled_KeySet_KeySet__4858" ,"Precompiled_AllocationStub_ShortcutManager_4859" ,"Precompiled_ShortcutManager_handleKeypress_4860" ,"Precompiled_AllocationStub_UnmodifiableSetView_4861" ,"Precompiled__UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin_112278439_add_add_4862" ,"Precompiled__DelegatingIterableBase_113184915_contains_contains_4863" ,"Precompiled_UnmodifiableSetMixin__throw_112278439_4864" ,"Precompiled_ShortcutManager_set_shortcuts_4865" ,"Precompiled_AllocationStub__ShortcutsMarker_516043213_4866" ,"Precompiled_AllocationStub_Shortcuts_4867" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_shortcuts_dart__Shortcuts_4868" ,"Precompiled_AllocationStub__ShortcutsState_516043213_4869" ,"Precompiled__ShortcutsState_516043213__handleOnKey_516043213__handleOnKey_516043213_4870" ,"Precompiled__ShortcutsState_516043213__handleOnKey_516043213_4871" ,"Precompiled__ShortcutsState_516043213_get_manager_4872" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_shortcuts_dart__LogicalKeySet_4873" ,"Precompiled_AllocationStub__ModalRoute_42264537_4874" ,"Precompiled____showModal_4875" ,"Precompiled__ModalRoute_42264537__ModalRoute_42264537__4876" ,"Precompiled_FadeScaleTransitionConfiguration_transitionBuilder_transitionBuilder_4877" ,"Precompiled_FadeScaleTransitionConfiguration_transitionBuilder_4878" ,"Precompiled_AllocationStub_FadeScaleTransition_4879" ,"Precompiled_FadeScaleTransition_init__scaleInTransition_40185334_4880" ,"Precompiled_FadeScaleTransition_init__fadeInTransition_40185334_4881" ,"Precompiled_TypeTestingStub_dart_core__Symbol_4882" ,"Precompiled_AllocationStub_Key_4883" ,"Precompiled_AllocationStub_Encrypted_4884" ,"Precompiled_Encrypted_get_base64_4885" ,"Precompiled_AllocationStub_AES_4886" ,"Precompiled_AES__paddedParams_37180997_4887" ,"Precompiled_AllocationStub_KeyParameter_4888" ,"Precompiled_AsymmetricBlockCipher_AsymmetricBlockCipher__4889" ,"Precompiled__RegistryImpl_632301108_create_4890" ,"Precompiled__RegistryImpl_632301108_getConstructor_4891" ,"Precompiled__RegistryImpl_632301108__createConstructor_632301108_4892" ,"Precompiled_RegistryFactoryException_RegistryFactoryException_unknown_4893" ,"Precompiled_AllocationStub_RegistryFactoryException_4894" ,"Precompiled__RegistryImpl_632301108__checkInit_632301108_4895" ,"Precompiled__RegistryImpl_632301108__initialize_632301108_4896" ,"Precompiled____registerFactories_4897" ,"Precompiled_____registerStreamCiphers_739106361_4898" ,"Precompiled__RegistryImpl_632301108_register_4899" ,"Precompiled__RegistryImpl_632301108__addDynamicFactoryConfig_632301108_4900" ,"Precompiled_AllocationStub__RegistryImpl_632301108_4901" ,"Precompiled____init__specialRegExpChars_632301108_4902" ,"Precompiled____init_registry_4903" ,"Precompiled__RegistryImpl_632301108__RegistryImpl_632301108__4904" ,"Precompiled_____escapeRegExp_632301108_4905" ,"Precompiled_AllocationStub_DynamicFactoryConfig_4906" ,"Precompiled_DynamicFactoryConfig_DynamicFactoryConfig_suffix_4907" ,"Precompiled_AllocationStub_StaticFactoryConfig_4908" ,"Precompiled__RegistryImpl_632301108__addStaticFactoryConfig_632301108_4909" ,"Precompiled_SICStreamCipher_init_FACTORY_CONFIG_4910" ,"Precompiled_AllocationStub_SICStreamCipher_4911" ,"Precompiled_SICStreamCipher__incrementCounter_651045914_4912" ,"Precompiled_SICStreamCipher__feedCounter_651045914_4913" ,"Precompiled_SICStreamCipher__feedCounterIfNeeded_651045914_4914" ,"Precompiled_SICStreamCipher_SICStreamCipher__4915" ,"Precompiled_Salsa20Engine_init_FACTORY_CONFIG_4916" ,"Precompiled_AllocationStub_Salsa20Engine_4917" ,"Precompiled_Salsa20Engine_init__tau_733412779_4918" ,"Precompiled_AllocationStub_CodeUnits_4919" ,"Precompiled_CodeUnits_dyn____4920" ,"Precompiled_UnmodifiableListBase_add_add_4921" ,"Precompiled_Salsa20Engine_init__sigma_733412779_4922" ,"Precompiled_Salsa20Engine__salsa20Core_733412779_4923" ,"Precompiled____rotl32_4924" ,"Precompiled____shiftl32_4925" ,"Precompiled____init__MASK32_HI_BITS_642143242_4926" ,"Precompiled____rotr32_4927" ,"Precompiled_AllocationStub_Register64List_4928" ,"Precompiled_Register64List_dyn____4929" ,"Precompiled_TypeTestingStub_package_pointycastle_src_ufixnum_dart__Register64_4930" ,"Precompiled_Register64List_Register64List__4931" ,"Precompiled_Register64List_Register64List_from_4932" ,"Precompiled____unpack32_4933" ,"Precompiled____pack32_4934" ,"Precompiled_AllocationStub_Register64_4935" ,"Precompiled_Register64__padWrite_642143242_4936" ,"Precompiled_Register64_unpack_4937" ,"Precompiled_Register64_rotl_4938" ,"Precompiled_Register64_shiftr_4939" ,"Precompiled_Register64_shiftl_4940" ,"Precompiled_Register64_xor_4941" ,"Precompiled_Register64_and_4942" ,"Precompiled_Register64_not_4943" ,"Precompiled_Register64_sum_4944" ,"Precompiled_Register64_set_4945" ,"Precompiled__List_0150898_setAll_4946" ,"Precompiled_Salsa20Engine__setKey_733412779_4947" ,"Precompiled_Salsa20Engine_Salsa20Engine__4948" ,"Precompiled_CTRStreamCipher_init_FACTORY_CONFIG_4949" ,"Precompiled_AllocationStub_CTRStreamCipher_4950" ,"Precompiled_____registerSigners_739106361_4951" ,"Precompiled_RSASigner_init_FACTORY_CONFIG_4952" ,"Precompiled_AllocationStub_RSASigner_4953" ,"Precompiled_RSASigner_init__DIGEST_IDENTIFIER_HEXES_732060559_4954" ,"Precompiled_RSASigner__hexStringToBytes_732060559_4955" ,"Precompiled_ECDSASigner_init_FACTORY_CONFIG_4956" ,"Precompiled_AllocationStub_ECDSASigner_4957" ,"Precompiled_____registerRandoms_739106361_4958" ,"Precompiled_FortunaRandom_init_FACTORY_CONFIG_4959" ,"Precompiled_AllocationStub_FortunaRandom_4960" ,"Precompiled_BigInt_BigInt_from_4961" ,"Precompiled__BigIntImpl_0150898__BigIntImpl_0150898_from_4962" ,"Precompiled__BigIntImpl_0150898__BigIntImpl_0150898__fromInt_0150898_4963" ,"Precompiled__BigIntImpl_0150898__BigIntImpl_0150898___0150898_4964" ,"Precompiled__BigIntImpl_0150898__normalize_0150898_4965" ,"Precompiled__BigIntImpl_0150898_dyn___4966" ,"Precompiled__BigIntImpl_0150898_dyn___4967" ,"Precompiled__BigIntImpl_0150898_dyn____4968" ,"Precompiled__BigIntImpl_0150898____4969" ,"Precompiled__BigIntImpl_0150898__rsh_0150898_4970" ,"Precompiled__BigIntImpl_0150898__drShift_0150898_4971" ,"Precompiled__BigIntImpl_0150898_init_one_4972" ,"Precompiled__BigIntImpl_0150898_init__minusOne_0150898_4973" ,"Precompiled__BigIntImpl_0150898_unary__4974" ,"Precompiled__BigIntImpl_0150898_init_zero_4975" ,"Precompiled__BigIntImpl_0150898_dyn___4976" ,"Precompiled__BigIntImpl_0150898_dyn___4977" ,"Precompiled__BigIntImpl_0150898___4978" ,"Precompiled__BigIntImpl_0150898__rem_0150898_4979" ,"Precompiled__BigIntImpl_0150898__cloneDigits_0150898_4980" ,"Precompiled__BigIntImpl_0150898__divRem_0150898_4981" ,"Precompiled__BigIntImpl_0150898__mulAdd_0150898_4982" ,"Precompiled__BigIntImpl_0150898__estimateQuotientDigit_0150898_4983" ,"Precompiled__BigIntImpl_0150898_init__isIntrinsified_0150898_4984" ,"Precompiled_bool_bool_fromEnvironment_4985" ,"Precompiled__BigIntImpl_0150898__absSub_0150898_4986" ,"Precompiled__BigIntImpl_0150898__compareDigits_0150898_4987" ,"Precompiled__BigIntImpl_0150898__dlShiftDigits_0150898_4988" ,"Precompiled__BigIntImpl_0150898__lShiftDigits_0150898_4989" ,"Precompiled__BigIntImpl_0150898__lsh_0150898_4990" ,"Precompiled__BigIntImpl_0150898__ensureSystemBigInt_0150898_4991" ,"Precompiled__BigIntImpl_0150898_dyn___4992" ,"Precompiled__BigIntImpl_0150898_init__parseRE_0150898_4993" ,"Precompiled__BigIntImpl_0150898_init__oneBillion_0150898_4994" ,"Precompiled__BigIntImpl_0150898_init_two_4995" ,"Precompiled__BigIntImpl_0150898__rShiftDigits_0150898_4996" ,"Precompiled__BigIntImpl_0150898__drShiftDigits_0150898_4997" ,"Precompiled__BigIntImpl_0150898_toInt_4998" ,"Precompiled__BigIntImpl_0150898__absAndNotSetSign_0150898_4999" ,"Precompiled__BigIntImpl_0150898__binaryGcd_0150898_5000" ,"Precompiled__BigIntImpl_0150898__absAdd_0150898_5001" ,"Precompiled__BigIntImpl_0150898_modPow_5002" ,"Precompiled__BigIntImpl_0150898__sqrDigits_0150898_5003" ,"Precompiled__BigIntImpl_0150898__sqrAdd_0150898_5004" ,"Precompiled__BigIntMontgomeryReduction_0150898__reduce_0150898_5005" ,"Precompiled__BigIntMontgomeryReduction_0150898__mulMod_0150898_5006" ,"Precompiled_AllocationStub__BigIntMontgomeryReduction_0150898_5007" ,"Precompiled__BigIntMontgomeryReduction_0150898__invDigit_0150898_5008" ,"Precompiled__BigIntImpl_0150898__mulDigits_0150898_5009" ,"Precompiled__List_0150898__setIndexed_0150898_5010" ,"Precompiled__BigIntMontgomeryReduction_0150898__BigIntMontgomeryReduction_0150898__5011" ,"Precompiled__BigIntClassicReduction_0150898__BigIntClassicReduction_0150898__5012" ,"Precompiled_AllocationStub__BigIntClassicReduction_0150898_5013" ,"Precompiled__BigIntClassicReduction_0150898__reduce_0150898_5014" ,"Precompiled__BigIntImpl_0150898__remDigits_0150898_5015" ,"Precompiled__BigIntImpl_0150898__dlShift_0150898_5016" ,"Precompiled__BigIntImpl_0150898____5017" ,"Precompiled__BigIntImpl_0150898____5018" ,"Precompiled__BigIntImpl_0150898_abs_5019" ,"Precompiled__BigIntImpl_0150898_get_isEven_5020" ,"Precompiled__BigIntImpl_0150898____5021" ,"Precompiled__BigIntImpl_0150898__absCompare_0150898_5022" ,"Precompiled__BigIntImpl_0150898__parseHex_0150898_5023" ,"Precompiled__BigIntImpl_0150898__tryParse_0150898_5024" ,"Precompiled__BigIntImpl_0150898__parseRadix_0150898_5025" ,"Precompiled__BigIntImpl_0150898__div_0150898_5026" ,"Precompiled__BigIntImpl_0150898__absAddSetSign_0150898_5027" ,"Precompiled__BigIntImpl_0150898_parse_5028" ,"Precompiled__BigIntImpl_0150898__absSubSetSign_0150898_5029" ,"Precompiled__BigIntImpl_0150898__absAndSetSign_0150898_5030" ,"Precompiled__BigIntImpl_0150898__absOrSetSign_0150898_5031" ,"Precompiled__BigIntImpl_0150898_modInverse_5032" ,"Precompiled_AllocationStub__BigIntImpl_0150898_5033" ,"Precompiled_BigInt_parse_5034" ,"Precompiled_BigInt_get_two_5035" ,"Precompiled_BigInt_get_zero_5036" ,"Precompiled_TypeTestingStub_dart_core__BigInt_5037" ,"Precompiled_FortunaRandom_FortunaRandom__5038" ,"Precompiled_BlockCtrRandom_BlockCtrRandom__5039" ,"Precompiled_SecureRandomBase__randomBits_737302708_5040" ,"Precompiled_BlockCtrRandom_nextUint8_5041" ,"Precompiled_SecureRandomBase_nextBytes_5042" ,"Precompiled_BlockCtrRandom_init_FACTORY_CONFIG_5043" ,"Precompiled_BlockCtrRandom_seed_5044" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_setAll_5045" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_add_add_5046" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_contains_contains_5047" ,"Precompiled_AllocationStub_BlockCtrRandom_5048" ,"Precompiled_AllocationStub_AutoSeedBlockCtrRandom_5049" ,"Precompiled_AutoSeedBlockCtrRandom_init_FACTORY_CONFIG_5050" ,"Precompiled_AutoSeedBlockCtrRandom__doAutoReseed_729025418_5051" ,"Precompiled_AutoSeedBlockCtrRandom_nextBytes_5052" ,"Precompiled_AutoSeedBlockCtrRandom__autoReseedIfNeededAfter_729025418_5053" ,"Precompiled_AllocationStub_AESFastEngine_5054" ,"Precompiled____init__Tinv3_641039921_5055" ,"Precompiled____init__Tinv2_641039921_5056" ,"Precompiled____init__Tinv1_641039921_5057" ,"Precompiled____init__Tinv0_641039921_5058" ,"Precompiled____init__T3_641039921_5059" ,"Precompiled____init__T2_641039921_5060" ,"Precompiled____init__T1_641039921_5061" ,"Precompiled____init__T0_641039921_5062" ,"Precompiled____init__rcon_641039921_5063" ,"Precompiled____init__Si_641039921_5064" ,"Precompiled____init__S_641039921_5065" ,"Precompiled_____subWord_641039921_5066" ,"Precompiled_____FFmulX_641039921_5067" ,"Precompiled_____shift_641039921_5068" ,"Precompiled_AESFastEngine_init_FACTORY_CONFIG_5069" ,"Precompiled_AESFastEngine__packBlock_641039921_5070" ,"Precompiled_AESFastEngine__unpackBlock_641039921_5071" ,"Precompiled_AESFastEngine__decryptBlock_641039921_5072" ,"Precompiled_AESFastEngine__encryptBlock_641039921_5073" ,"Precompiled_____registerPaddings_739106361_5074" ,"Precompiled_ISO7816d4Padding_init_FACTORY_CONFIG_5075" ,"Precompiled_AllocationStub_ISO7816d4Padding_5076" ,"Precompiled_PKCS7Padding_init_FACTORY_CONFIG_5077" ,"Precompiled_AllocationStub_PKCS7Padding_5078" ,"Precompiled_____registerPaddedBlockCiphers_739106361_5079" ,"Precompiled_PaddedBlockCipherImpl_init_FACTORY_CONFIG_5080" ,"Precompiled_AllocationStub_PaddedBlockCipherImpl_5081" ,"Precompiled_PaddedBlockCipherImpl_doFinal_5082" ,"Precompiled_____registerMacs_739106361_5083" ,"Precompiled_CBCBlockCipherMac_init_FACTORY_CONFIG_5084" ,"Precompiled_AllocationStub_CBCBlockCipherMac_5085" ,"Precompiled_CBCBlockCipherMac_CBCBlockCipherMac__5086" ,"Precompiled_CBCBlockCipher_init_FACTORY_CONFIG_5087" ,"Precompiled_CBCBlockCipher__decryptBlock_643520057_5088" ,"Precompiled_CBCBlockCipher__encryptBlock_643520057_5089" ,"Precompiled_AllocationStub_CBCBlockCipher_5090" ,"Precompiled_CBCBlockCipherMac_CBCBlockCipherMac_fromCipherAndPadding_5091" ,"Precompiled_CMac_init_FACTORY_CONFIG_5092" ,"Precompiled_AllocationStub_CMac_5093" ,"Precompiled_CMac_lookupPoly_5094" ,"Precompiled_CMac_CMac__5095" ,"Precompiled_CMac_CMac_fromCipher_5096" ,"Precompiled_HMac_init_FACTORY_CONFIG_5097" ,"Precompiled_AllocationStub_HMac_5098" ,"Precompiled_HMac_init__DIGEST_BLOCK_LENGTH_723404795_5099" ,"Precompiled_HMac_HMac__5100" ,"Precompiled_____registerKeyGenerators_739106361_5101" ,"Precompiled_RSAKeyGenerator_init_FACTORY_CONFIG_5102" ,"Precompiled_AllocationStub_RSAKeyGenerator_5103" ,"Precompiled_ECKeyGenerator_init_FACTORY_CONFIG_5104" ,"Precompiled_AllocationStub_ECKeyGenerator_5105" ,"Precompiled_____registerKeyDerivators_739106361_5106" ,"Precompiled_Scrypt_init_FACTORY_CONFIG_5107" ,"Precompiled_AllocationStub_Scrypt_5108" ,"Precompiled_PBKDF2KeyDerivator_init_FACTORY_CONFIG_5109" ,"Precompiled_AllocationStub_PBKDF2KeyDerivator_5110" ,"Precompiled_____registerECCurves_739106361_5111" ,"Precompiled_ECCurve_secp521r1_init_FACTORY_CONFIG_5112" ,"Precompiled_AllocationStub_ECCurve_secp521r1_5113" ,"Precompiled_ECCurveBase__fromArray_673249982_5114" ,"Precompiled____decodeBigInt_5115" ,"Precompiled____encodeBigInt_5116" ,"Precompiled____init__byteMask_640469613_5117" ,"Precompiled_ECCurveBase_decodePoint_5118" ,"Precompiled_ECCurve_createPoint_5119" ,"Precompiled_ECPoint_ECPoint__5120" ,"Precompiled_TypeTestingStub_package_pointycastle_ecc_ecc_fp_dart__ECPoint_5121" ,"Precompiled_____windowNaf_715069709_5122" ,"Precompiled_____WNafMultiplier_715069709_5123" ,"Precompiled_ECPoint_unary__5124" ,"Precompiled_ECFieldElement_unary__5125" ,"Precompiled_ECFieldElement_ECFieldElement__5126" ,"Precompiled_ECFieldElement__lucasSequence_715069709_5127" ,"Precompiled_____lbit_715069709_5128" ,"Precompiled_ECFieldElement_sqrt_5129" ,"Precompiled_SecureRandom_SecureRandom__5130" ,"Precompiled_ECFieldElement_square_5131" ,"Precompiled_____testBit_715069709_5132" ,"Precompiled_AllocationStub_ECFieldElement_5133" ,"Precompiled_ECPoint_twice_5134" ,"Precompiled_AllocationStub__WNafPreCompInfo_715069709_5135" ,"Precompiled_____WNafMultiplier_715069709__WNafMultiplier_715069709_5136" ,"Precompiled_AllocationStub_ECCurve_5137" ,"Precompiled_ECCurve_ECCurve__5138" ,"Precompiled_ECCurveBase_ECCurveBase__5139" ,"Precompiled_ECCurve_fromBigInteger_5140" ,"Precompiled_AllocationStub_ECPoint_5141" ,"Precompiled_ECCurve_decompressPoint_5142" ,"Precompiled_ECCurve_get_fieldSize_5143" ,"Precompiled_ECPointBase_dyn___5144" ,"Precompiled_ECCurve_secp521r1__make_714117017_5145" ,"Precompiled_ECCurve_secp521r1_ECCurve_secp521r1__super_714117017_5146" ,"Precompiled_ECCurve_secp521r1__make_714117017__make_714117017_5147" ,"Precompiled_ECCurve_secp521r1_ECCurve_secp521r1__5148" ,"Precompiled____constructFpStandardCurve_5149" ,"Precompiled_ECCurve_secp384r1_init_FACTORY_CONFIG_5150" ,"Precompiled_AllocationStub_ECCurve_secp384r1_5151" ,"Precompiled_ECCurve_secp384r1__make_713249435_5152" ,"Precompiled_ECCurve_secp384r1_ECCurve_secp384r1__super_713249435_5153" ,"Precompiled_ECCurve_secp384r1__make_713249435__make_713249435_5154" ,"Precompiled_ECCurve_secp384r1_ECCurve_secp384r1__5155" ,"Precompiled_ECCurve_secp256r1_init_FACTORY_CONFIG_5156" ,"Precompiled_AllocationStub_ECCurve_secp256r1_5157" ,"Precompiled_ECCurve_secp256r1__make_712493561_5158" ,"Precompiled_ECCurve_secp256r1_ECCurve_secp256r1__super_712493561_5159" ,"Precompiled_ECCurve_secp256r1__make_712493561__make_712493561_5160" ,"Precompiled_ECCurve_secp256r1_ECCurve_secp256r1__5161" ,"Precompiled_ECCurve_secp256k1_init_FACTORY_CONFIG_5162" ,"Precompiled_AllocationStub_ECCurve_secp256k1_5163" ,"Precompiled_ECCurve_secp256k1__make_711069956_5164" ,"Precompiled_ECCurve_secp256k1_ECCurve_secp256k1__super_711069956_5165" ,"Precompiled_ECCurve_secp256k1__make_711069956__make_711069956_5166" ,"Precompiled_ECCurve_secp256k1_ECCurve_secp256k1__5167" ,"Precompiled_ECCurve_secp224r1_init_FACTORY_CONFIG_5168" ,"Precompiled_AllocationStub_ECCurve_secp224r1_5169" ,"Precompiled_ECCurve_secp224r1__make_710309820_5170" ,"Precompiled_ECCurve_secp224r1_ECCurve_secp224r1__super_710309820_5171" ,"Precompiled_ECCurve_secp224r1__make_710309820__make_710309820_5172" ,"Precompiled_ECCurve_secp224r1_ECCurve_secp224r1__5173" ,"Precompiled_ECCurve_secp224k1_init_FACTORY_CONFIG_5174" ,"Precompiled_AllocationStub_ECCurve_secp224k1_5175" ,"Precompiled_ECCurve_secp224k1__make_709009234_5176" ,"Precompiled_ECCurve_secp224k1_ECCurve_secp224k1__super_709009234_5177" ,"Precompiled_ECCurve_secp224k1__make_709009234__make_709009234_5178" ,"Precompiled_ECCurve_secp224k1_ECCurve_secp224k1__5179" ,"Precompiled_ECCurve_secp192r1_init_FACTORY_CONFIG_5180" ,"Precompiled_AllocationStub_ECCurve_secp192r1_5181" ,"Precompiled_ECCurve_secp192r1__make_708226699_5182" ,"Precompiled_ECCurve_secp192r1_ECCurve_secp192r1__super_708226699_5183" ,"Precompiled_ECCurve_secp192r1__make_708226699__make_708226699_5184" ,"Precompiled_ECCurve_secp192r1_ECCurve_secp192r1__5185" ,"Precompiled_ECCurve_secp192k1_init_FACTORY_CONFIG_5186" ,"Precompiled_AllocationStub_ECCurve_secp192k1_5187" ,"Precompiled_ECCurve_secp192k1__make_707159089_5188" ,"Precompiled_ECCurve_secp192k1_ECCurve_secp192k1__super_707159089_5189" ,"Precompiled_ECCurve_secp192k1__make_707159089__make_707159089_5190" ,"Precompiled_ECCurve_secp192k1_ECCurve_secp192k1__5191" ,"Precompiled_ECCurve_secp160r2_init_FACTORY_CONFIG_5192" ,"Precompiled_AllocationStub_ECCurve_secp160r2_5193" ,"Precompiled_ECCurve_secp160r2__make_706166658_5194" ,"Precompiled_ECCurve_secp160r2_ECCurve_secp160r2__super_706166658_5195" ,"Precompiled_ECCurve_secp160r2__make_706166658__make_706166658_5196" ,"Precompiled_ECCurve_secp160r2_ECCurve_secp160r2__5197" ,"Precompiled_ECCurve_secp160r1_init_FACTORY_CONFIG_5198" ,"Precompiled_AllocationStub_ECCurve_secp160r1_5199" ,"Precompiled_ECCurve_secp160r1__make_705308126_5200" ,"Precompiled_ECCurve_secp160r1_ECCurve_secp160r1__super_705308126_5201" ,"Precompiled_ECCurve_secp160r1__make_705308126__make_705308126_5202" ,"Precompiled_ECCurve_secp160r1_ECCurve_secp160r1__5203" ,"Precompiled_ECCurve_secp160k1_init_FACTORY_CONFIG_5204" ,"Precompiled_AllocationStub_ECCurve_secp160k1_5205" ,"Precompiled_ECCurve_secp160k1__make_704280080_5206" ,"Precompiled_ECCurve_secp160k1_ECCurve_secp160k1__super_704280080_5207" ,"Precompiled_ECCurve_secp160k1__make_704280080__make_704280080_5208" ,"Precompiled_ECCurve_secp160k1_ECCurve_secp160k1__5209" ,"Precompiled_ECCurve_secp128r2_init_FACTORY_CONFIG_5210" ,"Precompiled_AllocationStub_ECCurve_secp128r2_5211" ,"Precompiled_ECCurve_secp128r2__make_703417788_5212" ,"Precompiled_ECCurve_secp128r2_ECCurve_secp128r2__super_703417788_5213" ,"Precompiled_ECCurve_secp128r2__make_703417788__make_703417788_5214" ,"Precompiled_ECCurve_secp128r2_ECCurve_secp128r2__5215" ,"Precompiled_ECCurve_secp128r1_init_FACTORY_CONFIG_5216" ,"Precompiled_AllocationStub_ECCurve_secp128r1_5217" ,"Precompiled_ECCurve_secp128r1__make_702377861_5218" ,"Precompiled_ECCurve_secp128r1_ECCurve_secp128r1__super_702377861_5219" ,"Precompiled_ECCurve_secp128r1__make_702377861__make_702377861_5220" ,"Precompiled_ECCurve_secp128r1_ECCurve_secp128r1__5221" ,"Precompiled_ECCurve_secp112r2_init_FACTORY_CONFIG_5222" ,"Precompiled_AllocationStub_ECCurve_secp112r2_5223" ,"Precompiled_ECCurve_secp112r2__make_701397283_5224" ,"Precompiled_ECCurve_secp112r2_ECCurve_secp112r2__super_701397283_5225" ,"Precompiled_ECCurve_secp112r2__make_701397283__make_701397283_5226" ,"Precompiled_ECCurve_secp112r2_ECCurve_secp112r2__5227" ,"Precompiled_ECCurve_secp112r1_init_FACTORY_CONFIG_5228" ,"Precompiled_AllocationStub_ECCurve_secp112r1_5229" ,"Precompiled_ECCurve_secp112r1__make_700485455_5230" ,"Precompiled_ECCurve_secp112r1_ECCurve_secp112r1__super_700485455_5231" ,"Precompiled_ECCurve_secp112r1__make_700485455__make_700485455_5232" ,"Precompiled_ECCurve_secp112r1_ECCurve_secp112r1__5233" ,"Precompiled_ECCurve_prime256v1_init_FACTORY_CONFIG_5234" ,"Precompiled_AllocationStub_ECCurve_prime256v1_5235" ,"Precompiled_ECCurve_prime256v1__make_699383858_5236" ,"Precompiled_ECCurve_prime256v1_ECCurve_prime256v1__super_699383858_5237" ,"Precompiled_ECCurve_prime256v1__make_699383858__make_699383858_5238" ,"Precompiled_ECCurve_prime256v1_ECCurve_prime256v1__5239" ,"Precompiled_ECCurve_prime239v3_init_FACTORY_CONFIG_5240" ,"Precompiled_AllocationStub_ECCurve_prime239v3_5241" ,"Precompiled_ECCurve_prime239v3__make_698315396_5242" ,"Precompiled_ECCurve_prime239v3_ECCurve_prime239v3__super_698315396_5243" ,"Precompiled_ECCurve_prime239v3__make_698315396__make_698315396_5244" ,"Precompiled_ECCurve_prime239v3_ECCurve_prime239v3__5245" ,"Precompiled_ECCurve_prime239v2_init_FACTORY_CONFIG_5246" ,"Precompiled_AllocationStub_ECCurve_prime239v2_5247" ,"Precompiled_ECCurve_prime239v2__make_697456944_5248" ,"Precompiled_ECCurve_prime239v2_ECCurve_prime239v2__super_697456944_5249" ,"Precompiled_ECCurve_prime239v2__make_697456944__make_697456944_5250" ,"Precompiled_ECCurve_prime239v2_ECCurve_prime239v2__5251" ,"Precompiled_ECCurve_prime239v1_init_FACTORY_CONFIG_5252" ,"Precompiled_AllocationStub_ECCurve_prime239v1_5253" ,"Precompiled_ECCurve_prime239v1__make_696209703_5254" ,"Precompiled_ECCurve_prime239v1_ECCurve_prime239v1__super_696209703_5255" ,"Precompiled_ECCurve_prime239v1__make_696209703__make_696209703_5256" ,"Precompiled_ECCurve_prime239v1_ECCurve_prime239v1__5257" ,"Precompiled_ECCurve_prime192v3_init_FACTORY_CONFIG_5258" ,"Precompiled_AllocationStub_ECCurve_prime192v3_5259" ,"Precompiled_ECCurve_prime192v3__make_695166994_5260" ,"Precompiled_ECCurve_prime192v3_ECCurve_prime192v3__super_695166994_5261" ,"Precompiled_ECCurve_prime192v3__make_695166994__make_695166994_5262" ,"Precompiled_ECCurve_prime192v3_ECCurve_prime192v3__5263" ,"Precompiled_ECCurve_prime192v2_init_FACTORY_CONFIG_5264" ,"Precompiled_AllocationStub_ECCurve_prime192v2_5265" ,"Precompiled_ECCurve_prime192v2__make_694358284_5266" ,"Precompiled_ECCurve_prime192v2_ECCurve_prime192v2__super_694358284_5267" ,"Precompiled_ECCurve_prime192v2__make_694358284__make_694358284_5268" ,"Precompiled_ECCurve_prime192v2_ECCurve_prime192v2__5269" ,"Precompiled_ECCurve_prime192v1_init_FACTORY_CONFIG_5270" ,"Precompiled_AllocationStub_ECCurve_prime192v1_5271" ,"Precompiled_ECCurve_prime192v1__make_693050614_5272" ,"Precompiled_ECCurve_prime192v1_ECCurve_prime192v1__super_693050614_5273" ,"Precompiled_ECCurve_prime192v1__make_693050614__make_693050614_5274" ,"Precompiled_ECCurve_prime192v1_ECCurve_prime192v1__5275" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xchb_init_FACTORY_CONFIG_5276" ,"Precompiled_AllocationStub_ECCurve_gostr3410_2001_cryptopro_xchb_5277" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xchb__make_692510465_5278" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xchb_ECCurve_gostr3410_2001_cryptopro_xchb__super_692510465_5279" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xchb__make_692510465__make_692510465_5280" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xchb_ECCurve_gostr3410_2001_cryptopro_xchb__5281" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xcha_init_FACTORY_CONFIG_5282" ,"Precompiled_AllocationStub_ECCurve_gostr3410_2001_cryptopro_xcha_5283" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xcha__make_691493575_5284" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xcha_ECCurve_gostr3410_2001_cryptopro_xcha__super_691493575_5285" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xcha__make_691493575__make_691493575_5286" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xcha_ECCurve_gostr3410_2001_cryptopro_xcha__5287" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_c_init_FACTORY_CONFIG_5288" ,"Precompiled_AllocationStub_ECCurve_gostr3410_2001_cryptopro_c_5289" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_c__make_690029833_5290" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_c_ECCurve_gostr3410_2001_cryptopro_c__super_690029833_5291" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_c__make_690029833__make_690029833_5292" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_c_ECCurve_gostr3410_2001_cryptopro_c__5293" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_b_init_FACTORY_CONFIG_5294" ,"Precompiled_AllocationStub_ECCurve_gostr3410_2001_cryptopro_b_5295" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_b__make_689271363_5296" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_b_ECCurve_gostr3410_2001_cryptopro_b__super_689271363_5297" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_b__make_689271363__make_689271363_5298" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_b_ECCurve_gostr3410_2001_cryptopro_b__5299" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_a_init_FACTORY_CONFIG_5300" ,"Precompiled_AllocationStub_ECCurve_gostr3410_2001_cryptopro_a_5301" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_a__make_688201361_5302" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_a_ECCurve_gostr3410_2001_cryptopro_a__super_688201361_5303" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_a__make_688201361__make_688201361_5304" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_a_ECCurve_gostr3410_2001_cryptopro_a__5305" ,"Precompiled_ECCurve_brainpoolp512t1_init_FACTORY_CONFIG_5306" ,"Precompiled_AllocationStub_ECCurve_brainpoolp512t1_5307" ,"Precompiled_ECCurve_brainpoolp512t1__make_687113648_5308" ,"Precompiled_ECCurve_brainpoolp512t1_ECCurve_brainpoolp512t1__super_687113648_5309" ,"Precompiled_ECCurve_brainpoolp512t1__make_687113648__make_687113648_5310" ,"Precompiled_ECCurve_brainpoolp512t1_ECCurve_brainpoolp512t1__5311" ,"Precompiled_ECCurve_brainpoolp512r1_init_FACTORY_CONFIG_5312" ,"Precompiled_AllocationStub_ECCurve_brainpoolp512r1_5313" ,"Precompiled_ECCurve_brainpoolp512r1__make_686215992_5314" ,"Precompiled_ECCurve_brainpoolp512r1_ECCurve_brainpoolp512r1__super_686215992_5315" ,"Precompiled_ECCurve_brainpoolp512r1__make_686215992__make_686215992_5316" ,"Precompiled_ECCurve_brainpoolp512r1_ECCurve_brainpoolp512r1__5317" ,"Precompiled_ECCurve_brainpoolp384t1_init_FACTORY_CONFIG_5318" ,"Precompiled_AllocationStub_ECCurve_brainpoolp384t1_5319" ,"Precompiled_ECCurve_brainpoolp384t1__make_685104730_5320" ,"Precompiled_ECCurve_brainpoolp384t1_ECCurve_brainpoolp384t1__super_685104730_5321" ,"Precompiled_ECCurve_brainpoolp384t1__make_685104730__make_685104730_5322" ,"Precompiled_ECCurve_brainpoolp384t1_ECCurve_brainpoolp384t1__5323" ,"Precompiled_ECCurve_brainpoolp384r1_init_FACTORY_CONFIG_5324" ,"Precompiled_AllocationStub_ECCurve_brainpoolp384r1_5325" ,"Precompiled_ECCurve_brainpoolp384r1__make_684278996_5326" ,"Precompiled_ECCurve_brainpoolp384r1_ECCurve_brainpoolp384r1__super_684278996_5327" ,"Precompiled_ECCurve_brainpoolp384r1__make_684278996__make_684278996_5328" ,"Precompiled_ECCurve_brainpoolp384r1_ECCurve_brainpoolp384r1__5329" ,"Precompiled_ECCurve_brainpoolp320t1_init_FACTORY_CONFIG_5330" ,"Precompiled_AllocationStub_ECCurve_brainpoolp320t1_5331" ,"Precompiled_ECCurve_brainpoolp320t1__make_683083086_5332" ,"Precompiled_ECCurve_brainpoolp320t1_ECCurve_brainpoolp320t1__super_683083086_5333" ,"Precompiled_ECCurve_brainpoolp320t1__make_683083086__make_683083086_5334" ,"Precompiled_ECCurve_brainpoolp320t1_ECCurve_brainpoolp320t1__5335" ,"Precompiled_ECCurve_brainpoolp320r1_init_FACTORY_CONFIG_5336" ,"Precompiled_AllocationStub_ECCurve_brainpoolp320r1_5337" ,"Precompiled_ECCurve_brainpoolp320r1__make_682072419_5338" ,"Precompiled_ECCurve_brainpoolp320r1_ECCurve_brainpoolp320r1__super_682072419_5339" ,"Precompiled_ECCurve_brainpoolp320r1__make_682072419__make_682072419_5340" ,"Precompiled_ECCurve_brainpoolp320r1_ECCurve_brainpoolp320r1__5341" ,"Precompiled_ECCurve_brainpoolp256t1_init_FACTORY_CONFIG_5342" ,"Precompiled_AllocationStub_ECCurve_brainpoolp256t1_5343" ,"Precompiled_ECCurve_brainpoolp256t1__make_681262991_5344" ,"Precompiled_ECCurve_brainpoolp256t1_ECCurve_brainpoolp256t1__super_681262991_5345" ,"Precompiled_ECCurve_brainpoolp256t1__make_681262991__make_681262991_5346" ,"Precompiled_ECCurve_brainpoolp256t1_ECCurve_brainpoolp256t1__5347" ,"Precompiled_ECCurve_brainpoolp256r1_init_FACTORY_CONFIG_5348" ,"Precompiled_AllocationStub_ECCurve_brainpoolp256r1_5349" ,"Precompiled_ECCurve_brainpoolp256r1__make_680275808_5350" ,"Precompiled_ECCurve_brainpoolp256r1_ECCurve_brainpoolp256r1__super_680275808_5351" ,"Precompiled_ECCurve_brainpoolp256r1__make_680275808__make_680275808_5352" ,"Precompiled_ECCurve_brainpoolp256r1_ECCurve_brainpoolp256r1__5353" ,"Precompiled_ECCurve_brainpoolp224t1_init_FACTORY_CONFIG_5354" ,"Precompiled_AllocationStub_ECCurve_brainpoolp224t1_5355" ,"Precompiled_ECCurve_brainpoolp224t1__make_679044209_5356" ,"Precompiled_ECCurve_brainpoolp224t1_ECCurve_brainpoolp224t1__super_679044209_5357" ,"Precompiled_ECCurve_brainpoolp224t1__make_679044209__make_679044209_5358" ,"Precompiled_ECCurve_brainpoolp224t1_ECCurve_brainpoolp224t1__5359" ,"Precompiled_ECCurve_brainpoolp224r1_init_FACTORY_CONFIG_5360" ,"Precompiled_AllocationStub_ECCurve_brainpoolp224r1_5361" ,"Precompiled_ECCurve_brainpoolp224r1__make_678447697_5362" ,"Precompiled_ECCurve_brainpoolp224r1_ECCurve_brainpoolp224r1__super_678447697_5363" ,"Precompiled_ECCurve_brainpoolp224r1__make_678447697__make_678447697_5364" ,"Precompiled_ECCurve_brainpoolp224r1_ECCurve_brainpoolp224r1__5365" ,"Precompiled_ECCurve_brainpoolp192t1_init_FACTORY_CONFIG_5366" ,"Precompiled_AllocationStub_ECCurve_brainpoolp192t1_5367" ,"Precompiled_ECCurve_brainpoolp192t1__make_677366774_5368" ,"Precompiled_ECCurve_brainpoolp192t1_ECCurve_brainpoolp192t1__super_677366774_5369" ,"Precompiled_ECCurve_brainpoolp192t1__make_677366774__make_677366774_5370" ,"Precompiled_ECCurve_brainpoolp192t1_ECCurve_brainpoolp192t1__5371" ,"Precompiled_ECCurve_brainpoolp192r1_init_FACTORY_CONFIG_5372" ,"Precompiled_AllocationStub_ECCurve_brainpoolp192r1_5373" ,"Precompiled_ECCurve_brainpoolp192r1__make_676452040_5374" ,"Precompiled_ECCurve_brainpoolp192r1_ECCurve_brainpoolp192r1__super_676452040_5375" ,"Precompiled_ECCurve_brainpoolp192r1__make_676452040__make_676452040_5376" ,"Precompiled_ECCurve_brainpoolp192r1_ECCurve_brainpoolp192r1__5377" ,"Precompiled_ECCurve_brainpoolp160t1_init_FACTORY_CONFIG_5378" ,"Precompiled_AllocationStub_ECCurve_brainpoolp160t1_5379" ,"Precompiled_ECCurve_brainpoolp160t1__make_675372507_5380" ,"Precompiled_ECCurve_brainpoolp160t1_ECCurve_brainpoolp160t1__super_675372507_5381" ,"Precompiled_ECCurve_brainpoolp160t1__make_675372507__make_675372507_5382" ,"Precompiled_ECCurve_brainpoolp160t1_ECCurve_brainpoolp160t1__5383" ,"Precompiled_ECCurve_brainpoolp160r1_init_FACTORY_CONFIG_5384" ,"Precompiled_AllocationStub_ECCurve_brainpoolp160r1_5385" ,"Precompiled_ECCurve_brainpoolp160r1__make_672296239_5386" ,"Precompiled_ECCurve_brainpoolp160r1_ECCurve_brainpoolp160r1__super_672296239_5387" ,"Precompiled_ECCurve_brainpoolp160r1__make_672296239__make_672296239_5388" ,"Precompiled_ECCurve_brainpoolp160r1_ECCurve_brainpoolp160r1__5389" ,"Precompiled_____registerDigests_739106361_5390" ,"Precompiled_WhirlpoolDigest_init_FACTORY_CONFIG_5391" ,"Precompiled_AllocationStub_WhirlpoolDigest_5392" ,"Precompiled_WhirlpoolDigest_WhirlpoolDigest__5393" ,"Precompiled_TigerDigest_init_FACTORY_CONFIG_5394" ,"Precompiled_AllocationStub_TigerDigest_5395" ,"Precompiled_TigerDigest_TigerDigest__5396" ,"Precompiled_SHA512tDigest_init_FACTORY_CONFIG_5397" ,"Precompiled_SHA512tDigest_init__NAME_REGEX_668210196_5398" ,"Precompiled_AllocationStub_SHA512tDigest_5399" ,"Precompiled_LongSHA2FamilyDigest_init__K_666182471_5400" ,"Precompiled_LongSHA2FamilyDigest_init__MAX_BYTE_COUNT1_666182471_5401" ,"Precompiled_LongSHA2FamilyDigest__Sum1_666182471_5402" ,"Precompiled_LongSHA2FamilyDigest__Sigma0_666182471_5403" ,"Precompiled_LongSHA2FamilyDigest__adjustByteCounts_666182471_5404" ,"Precompiled_LongSHA2FamilyDigest__processWord_666182471_5405" ,"Precompiled_LongSHA2FamilyDigest__processBlock_666182471_5406" ,"Precompiled_LongSHA2FamilyDigest__Maj_666182471_5407" ,"Precompiled_LongSHA2FamilyDigest__Sum0_666182471_5408" ,"Precompiled_LongSHA2FamilyDigest__Sigma1_666182471_5409" ,"Precompiled_LongSHA2FamilyDigest__processLength_666182471_5410" ,"Precompiled_LongSHA2FamilyDigest_updateByte_5411" ,"Precompiled_LongSHA2FamilyDigest_LongSHA2FamilyDigest__5412" ,"Precompiled_LongSHA2FamilyDigest_reset_5413" ,"Precompiled_LongSHA2FamilyDigest_finish_5414" ,"Precompiled_SHA512tDigest_init__H_MASK_668210196_5415" ,"Precompiled_SHA512tDigest__generateIVs_668210196_5416" ,"Precompiled_SHA512tDigest_SHA512tDigest__5417" ,"Precompiled_SHA512Digest_init_FACTORY_CONFIG_5418" ,"Precompiled_AllocationStub_SHA512Digest_5419" ,"Precompiled_SHA384Digest_init_FACTORY_CONFIG_5420" ,"Precompiled_AllocationStub_SHA384Digest_5421" ,"Precompiled_SHA256Digest_init_FACTORY_CONFIG_5422" ,"Precompiled_AllocationStub_SHA256Digest_5423" ,"Precompiled_MD4FamilyDigest__packState_656461525_5424" ,"Precompiled_MD4FamilyDigest__processLength_656461525_5425" ,"Precompiled_MD4FamilyDigest__doProcessBlock_656461525_5426" ,"Precompiled_MD4FamilyDigest__processPadding_656461525_5427" ,"Precompiled_MD4FamilyDigest__processWordIfBufferFull_656461525_5428" ,"Precompiled_MD4FamilyDigest__processWord_656461525_5429" ,"Precompiled_MD4FamilyDigest_updateByte_5430" ,"Precompiled_MD4FamilyDigest_doFinal_5431" ,"Precompiled_MD4FamilyDigest_MD4FamilyDigest__5432" ,"Precompiled_SHA256Digest_SHA256Digest__5433" ,"Precompiled_SHA224Digest_init_FACTORY_CONFIG_5434" ,"Precompiled_AllocationStub_SHA224Digest_5435" ,"Precompiled_SHA224Digest_SHA224Digest__5436" ,"Precompiled_SHA3Digest_init_FACTORY_CONFIG_5437" ,"Precompiled_SHA3Digest_init__NAME_REGEX_664312058_5438" ,"Precompiled_AllocationStub_SHA3Digest_5439" ,"Precompiled_SHA3Digest__initSponge_664312058_5440" ,"Precompiled_SHA3Digest__init_664312058_5441" ,"Precompiled_SHA3Digest_SHA3Digest__5442" ,"Precompiled_SHA1Digest_init_FACTORY_CONFIG_5443" ,"Precompiled_AllocationStub_SHA1Digest_5444" ,"Precompiled_SHA1Digest_SHA1Digest__5445" ,"Precompiled_RIPEMD320Digest_init_FACTORY_CONFIG_5446" ,"Precompiled_AllocationStub_RIPEMD320Digest_5447" ,"Precompiled_RIPEMD320Digest_RIPEMD320Digest__5448" ,"Precompiled_RIPEMD256Digest_init_FACTORY_CONFIG_5449" ,"Precompiled_AllocationStub_RIPEMD256Digest_5450" ,"Precompiled_RIPEMD256Digest_RIPEMD256Digest__5451" ,"Precompiled_RIPEMD160Digest_init_FACTORY_CONFIG_5452" ,"Precompiled_AllocationStub_RIPEMD160Digest_5453" ,"Precompiled_RIPEMD160Digest_RIPEMD160Digest__5454" ,"Precompiled_RIPEMD128Digest_init_FACTORY_CONFIG_5455" ,"Precompiled_AllocationStub_RIPEMD128Digest_5456" ,"Precompiled_RIPEMD128Digest_RIPEMD128Digest__5457" ,"Precompiled_MD5Digest_init_FACTORY_CONFIG_5458" ,"Precompiled_AllocationStub_MD5Digest_5459" ,"Precompiled_MD5Digest_MD5Digest__5460" ,"Precompiled_MD4Digest_init_FACTORY_CONFIG_5461" ,"Precompiled_AllocationStub_MD4Digest_5462" ,"Precompiled_MD2Digest_init_FACTORY_CONFIG_5463" ,"Precompiled_AllocationStub_MD2Digest_5464" ,"Precompiled_MD2Digest_MD2Digest__5465" ,"Precompiled_Blake2bDigest_init_FACTORY_CONFIG_5466" ,"Precompiled_AllocationStub_Blake2bDigest_5467" ,"Precompiled____init__blake2b_IV_652051828_5468" ,"Precompiled_Blake2bDigest_Blake2bDigest__5469" ,"Precompiled_____registerBlockCiphers_739106361_5470" ,"Precompiled_SICBlockCipher_init_FACTORY_CONFIG_5471" ,"Precompiled_AllocationStub_SICBlockCipher_5472" ,"Precompiled_OFBBlockCipher_init_FACTORY_CONFIG_5473" ,"Precompiled_AllocationStub_OFBBlockCipher_5474" ,"Precompiled_OFBBlockCipher_OFBBlockCipher__5475" ,"Precompiled_GCTRBlockCipher_init_FACTORY_CONFIG_5476" ,"Precompiled_AllocationStub_GCTRBlockCipher_5477" ,"Precompiled_GCTRBlockCipher__intTobytes_648283055_5478" ,"Precompiled_GCTRBlockCipher__bytesToint_648283055_5479" ,"Precompiled_GCTRBlockCipher_GCTRBlockCipher__5480" ,"Precompiled_ECBBlockCipher_init_FACTORY_CONFIG_5481" ,"Precompiled_AllocationStub_ECBBlockCipher_5482" ,"Precompiled_CTRBlockCipher_init_FACTORY_CONFIG_5483" ,"Precompiled_AllocationStub_CTRBlockCipher_5484" ,"Precompiled_CFBBlockCipher_init_FACTORY_CONFIG_5485" ,"Precompiled_AllocationStub_CFBBlockCipher_5486" ,"Precompiled_CFBBlockCipher__decryptBlock_644171941_5487" ,"Precompiled_CFBBlockCipher__encryptBlock_644171941_5488" ,"Precompiled_____registerAsymmetricCiphers_739106361_5489" ,"Precompiled_RSAEngine_init_FACTORY_CONFIG_5490" ,"Precompiled_AllocationStub_RSAEngine_5491" ,"Precompiled_PKCS1Encoding_init_FACTORY_CONFIG_5492" ,"Precompiled_AllocationStub_PKCS1Encoding_5493" ,"Precompiled_OAEPEncoding_init_FACTORY_CONFIG_5494" ,"Precompiled_AllocationStub_OAEPEncoding_5495" ,"Precompiled_OAEPEncoding_OAEPEncoding__5496" ,"Precompiled_RegistryFactoryException_RegistryFactoryException_invalid_5497" ,"Precompiled_Digest_Digest__5498" ,"Precompiled_BlockCipher_BlockCipher__5499" ,"Precompiled_Padding_Padding__5500" ,"Precompiled_PaddedBlockCipher_PaddedBlockCipher__5501" ,"Precompiled_Mac_Mac__5502" ,"Precompiled_AllocationStub_ParametersWithIV_5503" ,"Precompiled_AllocationStub_PaddedBlockCipherParameters_5504" ,"Precompiled_TypeTestingStub_package_pointycastle_api_dart__PaddedBlockCipherParameters__package_pointycastle_api_dart__CipherParameters__package_pointycastle_api_dart__CipherParameters_5505" ,"Precompiled_AES__buildParams_37180997_5506" ,"Precompiled_AES_decrypt_5507" ,"Precompiled_AES_encrypt_5508" ,"Precompiled_AES_AES__5509" ,"Precompiled_AllocationStub_Encrypter_5510" ,"Precompiled_Encrypter_decrypt_5511" ,"Precompiled_Encrypter_decryptBytes_5512" ,"Precompiled_Encrypter_encrypt_5513" ,"Precompiled_Encrypter_encryptBytes_5514" ,"Precompiled_AllocationStub_IV_5515" ,"Precompiled_ChangeNotifier_addListener_5516" ,"Precompiled__ListBase_Object_ListMixin_3220832_removeLast_5517" ,"Precompiled_AllocationStub_AnimatedSize_5518" ,"Precompiled_AllocationStub_RenderAnimatedSize_5519" ,"Precompiled_RenderAnimatedSize__layoutUnstable_402160358_5520" ,"Precompiled_RenderAnimatedSize__restartAnimation_402160358_5521" ,"Precompiled_RenderAnimatedSize__layoutChanged_402160358_5522" ,"Precompiled_RenderAnimatedSize__layoutStable_402160358_5523" ,"Precompiled_RenderAnimatedSize__layoutStart_402160358_5524" ,"Precompiled_RenderAnimatedSize_get__animatedSize_402160358_5525" ,"Precompiled_RenderAnimatedSize_set_vsync_5526" ,"Precompiled_RenderAnimatedSize_set_curve_5527" ,"Precompiled_RenderAnimatedSize_set_reverseDuration_5528" ,"Precompiled_RenderAnimatedSize_set_duration_5529" ,"Precompiled_RenderAnimatedSize_RenderAnimatedSize__5530" ,"Precompiled_LinkedList_remove_5531" ,"Precompiled_ImageStreamCompleter_get_addListener_5532" ,"Precompiled_MultiFrameImageStreamCompleter_get_addListener_5533" ,"Precompiled_ImageStream_get_addListener_5534" ,"Precompiled_ObserverList_remove_5535" ,"Precompiled_HashedObserverList_remove_5536" ,"Precompiled_RawImage_get_alignment_5537" ,"Precompiled_ClipboardStatusNotifier_get_addListener_5538" ,"Precompiled_ChangeNotifier_get_addListener_5539" ,"Precompiled__IsolateConfiguration_487206865_get_message_5540" ,"Precompiled_AllocationStub__IsolateConfiguration_487206865_5541" ,"Precompiled_____spawn_487206865_5542" ,"Precompiled_____spawn_487206865__spawn_487206865_5543" ,"Precompiled____compute_5544" ,"Precompiled____compute_compute_5545" ,"Precompiled__IsolateConfiguration_487206865_apply_5546" ,"Precompiled_Path_close_5547" ,"Precompiled__CustomHashSet_3220832_remove_5548" ,"Precompiled__HashSet_3220832_remove_5549" ,"Precompiled__HashSetEntry_3220832_remove_5550" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_remove_5551" ,"Precompiled__CompactLinkedCustomHashSet_3220832_remove_5552" ,"Precompiled__CompactLinkedHashSet_3220832_remove_5553" ,"Precompiled__CustomHashMap_3220832_remove_5554" ,"Precompiled__IdentityHashMap_3220832_remove_5555" ,"Precompiled__HashMap_3220832_remove_5556" ,"Precompiled_CastMap_remove_5557" ,"Precompiled__UnmodifiableMapView_MapView__UnmodifiableMapMixin_3220832_remove_5558" ,"Precompiled_SplayTreeMap_remove_5559" ,"Precompiled_ImageStreamCompleter_removeListener_5560" ,"Precompiled_MultiFrameImageStreamCompleter_removeListener_5561" ,"Precompiled_ImageStream_removeListener_5562" ,"Precompiled_RenderErrorBox_get_message_5563" ,"Precompiled_AllocationStub_RenderErrorBox_5564" ,"Precompiled_RenderErrorBox_init_backgroundColor_5565" ,"Precompiled_RenderErrorBox_init_minimumWidth_5566" ,"Precompiled_RenderErrorBox_init_padding_5567" ,"Precompiled_RenderErrorBox_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_5568" ,"Precompiled_RenderErrorBox_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_5569" ,"Precompiled_RenderErrorBox_RenderErrorBox__5570" ,"Precompiled__TimerHeap_1026248_remove_5571" ,"Precompiled__TimerHeap_1026248__bubbleDown_1026248_5572" ,"Precompiled__TimerHeap_1026248__swap_1026248_5573" ,"Precompiled_AllocationStub__TimerHeap_1026248_5574" ,"Precompiled__TimerHeap_1026248_dyn_add_5575" ,"Precompiled__TimerHeap_1026248_add_add_5576" ,"Precompiled_AllocationStub__Timer_1026248_5577" ,"Precompiled__Timer_1026248__enqueue_1026248_5578" ,"Precompiled__Timer_1026248__notifyEventHandler_1026248_5579" ,"Precompiled__Timer_1026248__scheduleWakeup_1026248_5580" ,"Precompiled__Timer_1026248__createTimerHandler_1026248_5581" ,"Precompiled__Timer_1026248__shutdownTimerHandler_1026248_5582" ,"Precompiled__Timer_1026248__cancelWakeup_1026248_5583" ,"Precompiled__Timer_1026248_init__heap_1026248_5584" ,"Precompiled__TimerHeap_1026248__TimerHeap_1026248__5585" ,"Precompiled__Timer_1026248_init__sentinelTimer_1026248_5586" ,"Precompiled__Timer_1026248__notifyZeroHandler_1026248_5587" ,"Precompiled__Timer_1026248_init__lastZeroTimer_1026248_5588" ,"Precompiled__Timer_1026248_dyn_set__indexOrNext_1026248_5589" ,"Precompiled__Timer_1026248__createTimer_1026248_5590" ,"Precompiled__Timer_1026248__Timer_1026248__internal_1026248_5591" ,"Precompiled__Timer_1026248__Timer_1026248_periodic_5592" ,"Precompiled__Timer_1026248__queueFromZeroEvent_1026248_5593" ,"Precompiled_TypeTestingStub_dart_core__List_5594" ,"Precompiled__Timer_1026248__queueFromTimeoutEvent_1026248_5595" ,"Precompiled__Timer_1026248__Timer_1026248__5596" ,"Precompiled__Timer_1026248__handleMessage_1026248_5597" ,"Precompiled__Timer_1026248__runTimers_1026248_5598" ,"Precompiled__Timer_1026248__handleMessage_1026248__handleMessage_1026248_5599" ,"Precompiled__Timer_1026248__factory_1026248_5600" ,"Precompiled__Timer_1026248__factory_1026248__factory_1026248_5601" ,"Precompiled_TypeTestingStub_dart_isolate___Timer_5602" ,"Precompiled__TimerHeap_1026248__resize_1026248_5603" ,"Precompiled__TimerHeap_1026248__bubbleUp_1026248_5604" ,"Precompiled__AsyncStarStreamController_4048458_close_5605" ,"Precompiled__BroadcastStreamController_4048458_close_5606" ,"Precompiled_ClipboardStatusNotifier_removeListener_5607" ,"Precompiled__ReceivePortImpl_1026248_close_5608" ,"Precompiled__ReceivePortImpl_1026248_close_close_5609" ,"Precompiled_AllocationStub__ReceivePortImpl_1026248_5610" ,"Precompiled_ReceivePort_ReceivePort__5611" ,"Precompiled__ReceivePortImpl_1026248__ReceivePortImpl_1026248_fromRawReceivePort_5612" ,"Precompiled__ReceivePortImpl_1026248_get_sendPort_5613" ,"Precompiled_ChangeNotifier_removeListener_5614" ,"Precompiled__StreamController_4048458_close_5615" ,"Precompiled_AllocationStub__DelayedData_4048458_5616" ,"Precompiled__ImmutableMap_0150898_____5617" ,"Precompiled__CastListBase_11040228_____5618" ,"Precompiled_RenderImage_get_alignment_5619" ,"Precompiled__ChunkedJsonParser_10003594_close_5620" ,"Precompiled__ChunkedJsonParser_10003594_fail_5621" ,"Precompiled__ChunkedJsonParser_10003594_beginChunkNumber_5622" ,"Precompiled__JsonStringParser_10003594_copyCharsToList_5623" ,"Precompiled_AllocationStub__JsonStringParser_10003594_5624" ,"Precompiled__JsonStringParser_10003594_parseDouble_5625" ,"Precompiled_____parseDouble_10003594_5626" ,"Precompiled_____defaultToEncodable_10003594_5627" ,"Precompiled_____defaultToEncodable_10003594__defaultToEncodable_10003594_5628" ,"Precompiled_____parseJson_10003594_5629" ,"Precompiled__ChunkedJsonParser_10003594_parse_5630" ,"Precompiled__ChunkedJsonParser_10003594_parseNumber_5631" ,"Precompiled__BuildJsonListener_10003594_handleNumber_5632" ,"Precompiled__BuildJsonListener_10003594_dyn_set_value_5633" ,"Precompiled__BuildJsonListener_10003594_handleBool_5634" ,"Precompiled__BuildJsonListener_10003594_handleNull_5635" ,"Precompiled__JsonStringParser_10003594_getChar_5636" ,"Precompiled__BuildJsonListener_10003594_popContainer_5637" ,"Precompiled__ChunkedJsonParser_10003594_parseTrue_5638" ,"Precompiled__ChunkedJsonParser_10003594_parseKeywordPrefix_5639" ,"Precompiled__ChunkedJsonParser_10003594_parseFalse_5640" ,"Precompiled__ChunkedJsonParser_10003594_parseNull_5641" ,"Precompiled__ChunkedJsonParser_10003594_parseString_5642" ,"Precompiled__ChunkedJsonParser_10003594_chunkString_5643" ,"Precompiled__JsonStringParser_10003594_getString_5644" ,"Precompiled__ChunkedJsonParser_10003594_parseStringToBuffer_5645" ,"Precompiled__ChunkedJsonParser_10003594_parseStringEscape_5646" ,"Precompiled__JsonStringParser_10003594_addCharToString_5647" ,"Precompiled__ChunkedJsonParser_10003594_chunkStringEscapeU_5648" ,"Precompiled__JsonStringParser_10003594_endString_5649" ,"Precompiled__JsonStringParser_10003594_addSliceToString_5650" ,"Precompiled__JsonStringParser_10003594_beginString_5651" ,"Precompiled__ChunkedJsonParser_10003594_parsePartial_5652" ,"Precompiled__ChunkedJsonParser_10003594_parsePartialKeyword_5653" ,"Precompiled__ChunkedJsonParser_10003594_parsePartialNumber_5654" ,"Precompiled__ChunkedJsonParser_10003594_continueChunkNumber_5655" ,"Precompiled__ChunkedJsonParser_10003594_addNumberChunk_5656" ,"Precompiled__NumberBuffer_10003594_ensureCapacity_5657" ,"Precompiled__NumberBuffer_10003594_parseDouble_5658" ,"Precompiled__NumberBuffer_10003594_getString_5659" ,"Precompiled__NumberBuffer_10003594_parseNum_5660" ,"Precompiled__ChunkedJsonParser_10003594_parsePartialString_5661" ,"Precompiled__ChunkedJsonParser_10003594__ChunkedJsonParser_10003594__5662" ,"Precompiled_AllocationStub__BuildJsonListener_10003594_5663" ,"Precompiled__NumberBuffer_10003594__NumberBuffer_10003594__5664" ,"Precompiled_AllocationStub__NumberBuffer_10003594_5665" ,"Precompiled__ChunkedJsonParser_10003594_finishChunkNumber_5666" ,"Precompiled_Expando_____5667" ,"Precompiled_RenderStack_get_alignment_5668" ,"Precompiled__Base64Decoder_10003594_close_5669" ,"Precompiled__BuildJsonListener_10003594_get_value_5670" ,"Precompiled__CastListBase_11040228_insert_5671" ,"Precompiled_RawKeyboard_addListener_5672" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_getRange_5673" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_add_add_5674" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_contains_contains_5675" ,"Precompiled_Float64x2List_Float64x2List__5676" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_add_add_5677" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_contains_contains_5678" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_getRange_5679" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_add_add_5680" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_contains_contains_5681" ,"Precompiled_Int32x4List_Int32x4List__5682" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_add_add_5683" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_contains_contains_5684" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_getRange_5685" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_add_add_5686" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_contains_contains_5687" ,"Precompiled_Float32x4List_Float32x4List__5688" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_getRange_5689" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_add_add_5690" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_contains_contains_5691" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_getRange_5692" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_add_add_5693" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_contains_contains_5694" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_getRange_5695" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_getRange_5696" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_____5697" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_addListener_5698" ,"Precompiled__CustomHashMap_3220832_____5699" ,"Precompiled__IdentityHashMap_3220832_____5700" ,"Precompiled__HashMap_3220832_____5701" ,"Precompiled_CastMap_____5702" ,"Precompiled__TypedDataBuffer_489432058_____5703" ,"Precompiled__ListBase_Object_ListMixin_3220832_getRange_5704" ,"Precompiled__UnmodifiableMapView_MapView__UnmodifiableMapMixin_3220832_____5705" ,"Precompiled_SplayTreeMap_____5706" ,"Precompiled_RawKeyboard_get_addListener_5707" ,"Precompiled_InternetAddressType_get_name_5708" ,"Precompiled_AllocationStub_AnnounceSemanticsEvent_5709" ,"Precompiled_AllocationStub_TooltipSemanticsEvent_5710" ,"Precompiled_CupertinoDynamicColor_get_value_5711" ,"Precompiled_Color_get_value_5712" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_get_addListener_5713" ,"Precompiled__LiveImage_373034022_removeListener_5714" ,"Precompiled__PendingImage_373034022_removeListener_5715" ,"Precompiled_OverlayState_insertAll_5716" ,"Precompiled__TypedDataBuffer_489432058_insert_5717" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_setRange_5718" ,"Precompiled_AllocationStub__Float64x2_7027147_5719" ,"Precompiled__Float64x2ArrayView_7027147_dyn____5720" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_setRange_5721" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_setRange_5722" ,"Precompiled__Int32x4ArrayView_7027147_dyn____5723" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_setRange_5724" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_setRange_5725" ,"Precompiled_AllocationStub__Float32x4_7027147_5726" ,"Precompiled__Float32x4ArrayView_7027147_dyn____5727" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_setRange_5728" ,"Precompiled___Float64ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_5729" ,"Precompiled___Float64List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_5730" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_5731" ,"Precompiled__Float32ArrayView_7027147_dyn____5732" ,"Precompiled___Float32List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_setRange_5733" ,"Precompiled___Uint64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5734" ,"Precompiled_Uint64List_Uint64List__5735" ,"Precompiled__Uint64ArrayView_7027147_dyn____5736" ,"Precompiled___Uint64List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5737" ,"Precompiled___Int64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5738" ,"Precompiled___Int64List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5739" ,"Precompiled___Uint32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5740" ,"Precompiled__Uint32ArrayView_7027147_dyn____5741" ,"Precompiled___Uint32List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5742" ,"Precompiled___Int32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5743" ,"Precompiled___Int32List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5744" ,"Precompiled___Uint16List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5745" ,"Precompiled__Uint16ArrayView_7027147_setRange_5746" ,"Precompiled___Uint16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5747" ,"Precompiled__Uint16ArrayView_7027147_dyn____5748" ,"Precompiled__Uint16List_7027147_setRange_5749" ,"Precompiled__Uint16List_7027147_dyn____5750" ,"Precompiled___Int16List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5751" ,"Precompiled_Int16List_Int16List__5752" ,"Precompiled__Int16ArrayView_7027147_setRange_5753" ,"Precompiled___Int16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5754" ,"Precompiled__Int16ArrayView_7027147_dyn____5755" ,"Precompiled__Int16List_7027147_setRange_5756" ,"Precompiled__Int16List_7027147_dyn____5757" ,"Precompiled___Uint8ClampedArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5758" ,"Precompiled_Uint8ClampedList_Uint8ClampedList__5759" ,"Precompiled__Uint8ClampedArrayView_7027147_dyn____5760" ,"Precompiled___Uint8ClampedList__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5761" ,"Precompiled___Uint8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5762" ,"Precompiled___Uint8List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5763" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_setRange_5764" ,"Precompiled___Int8List__TypedList__IntListMixin__TypedIntListMixin_7027147_setRange_5765" ,"Precompiled_AllocationStub__MapEntry_103183165_5766" ,"Precompiled_AllocationStub_IterableEquality_5767" ,"Precompiled_DeepCollectionEquality_isValidKey_isValidKey_5768" ,"Precompiled_DeepCollectionEquality_isValidKey_5769" ,"Precompiled_DeepCollectionEquality_hash_hash_5770" ,"Precompiled_DeepCollectionEquality_equals_equals_5771" ,"Precompiled_AllocationStub_MapEquality_5772" ,"Precompiled_AllocationStub_SetEquality_5773" ,"Precompiled_AllocationStub_ListEquality_5774" ,"Precompiled_UnmodifiableListBase_setRange_5775" ,"Precompiled__List_0150898_setRange_5776" ,"Precompiled_AnimationController_get_value_5777" ,"Precompiled_TrainHoppingAnimation_get_value_5778" ,"Precompiled__AlwaysCompleteAnimation_153411118_get_value_5779" ,"Precompiled__AlwaysDismissedAnimation_153411118_get_value_5780" ,"Precompiled_ProxyAnimation_get_value_5781" ,"Precompiled_ReverseAnimation_get_value_5782" ,"Precompiled__ListBase_Object_ListMixin_3220832_setRange_5783" ,"Precompiled_CurvedAnimation_get_value_5784" ,"Precompiled_AnimationMin_get_value_5785" ,"Precompiled__AnimationSwap_283063916_get_value_5786" ,"Precompiled__AnimatedEvaluation_156105126_get_value_5787" ,"Precompiled_AllocationStub__CircularProgressIndicatorPainter_312243954_5788" ,"Precompiled_AllocationStub__CircularProgressIndicatorState_312243954_5789" ,"Precompiled_TypeTestingStub_package_flutter_src_material_progress_indicator_dart__CircularProgressIndicator_5790" ,"Precompiled__CircularProgressIndicatorState_312243954_init__rotationTween_312243954_5791" ,"Precompiled__CircularProgressIndicatorState_312243954_init__offsetTween_312243954_5792" ,"Precompiled__CircularProgressIndicatorState_312243954_init__strokeTailTween_312243954_5793" ,"Precompiled__CircularProgressIndicatorState_312243954_init__strokeHeadTween_312243954_5794" ,"Precompiled__CircularProgressIndicatorState_312243954__buildAnimation_312243954_5795" ,"Precompiled__CircularProgressIndicatorState_312243954__buildIndicator_312243954_5796" ,"Precompiled_ProgressIndicator__buildSemanticsWrapper_312243954_5797" ,"Precompiled__CircularProgressIndicatorPainter_312243954__CircularProgressIndicatorPainter_312243954__5798" ,"Precompiled_AllocationStub_CircularProgressIndicator_5799" ,"Precompiled_RawKeyboard_removeListener_5800" ,"Precompiled_AllocationStub_UninitializedLocaleData_5801" ,"Precompiled_UninitializedLocaleData_dyn____5802" ,"Precompiled_AllocationStub_LocaleDataException_5803" ,"Precompiled_UninitializedLocaleData__throwException_614381073_5804" ,"Precompiled_UninitializedLocaleData__isFallback_614381073_5805" ,"Precompiled_Intl_canonicalizedLocale_5806" ,"Precompiled_Intl_getCurrentLocale_5807" ,"Precompiled_Intl_get_defaultLocale_5808" ,"Precompiled____ordinalDayFromMarchFirst_5809" ,"Precompiled_____isLeapYear_33383093_5810" ,"Precompiled_____dayOfYear_33383093_5811" ,"Precompiled_AllocationStub__DateFormatQuotedField_33383093_5812" ,"Precompiled_TypeTestingStub_package_intl_intl_dart___DateFormatField_5813" ,"Precompiled__DateFormatQuotedField_33383093_init__twoEscapedQuotes_33383093_5814" ,"Precompiled__DateFormatQuotedField_33383093__patchQuotes_33383093_5815" ,"Precompiled_AllocationStub__DateFormatPatternField_33383093_5816" ,"Precompiled__DateFormatPatternField_33383093_formatEra_5817" ,"Precompiled_DateFormat_get_dateSymbols_5818" ,"Precompiled____init__dateTimeSymbols_613168376_5819" ,"Precompiled____init_en_USSymbols_5820" ,"Precompiled_AllocationStub_DateSymbols_5821" ,"Precompiled____init_en_USPatterns_5822" ,"Precompiled____init_dateTimePatterns_5823" ,"Precompiled____get_dateTimeSymbols_5824" ,"Precompiled__DateFormatPatternField_33383093_formatField_5825" ,"Precompiled__DateFormatPatternField_33383093_formatTimeZoneRFC_5826" ,"Precompiled__DateFormatPatternField_33383093_formatYear_5827" ,"Precompiled__DateFormatPatternField_33383093_padTo_5828" ,"Precompiled_DateFormat__localizeDigits_33383093_5829" ,"Precompiled_DateFormat_get_localeZero_5830" ,"Precompiled_DateFormat_get_useNativeDigits_5831" ,"Precompiled_DateFormat_shouldUseNativeDigitsByDefaultFor_5832" ,"Precompiled_DateFormat_init__useNativeDigitsByDefault_33383093_5833" ,"Precompiled_DateFormat_get_usesAsciiDigits_5834" ,"Precompiled_DateFormat_get_usesNativeDigits_5835" ,"Precompiled_DateFormat_init__asciiZeroCodeUnit_33383093_5836" ,"Precompiled__DateFormatPatternField_33383093_formatSeconds_5837" ,"Precompiled__DateFormatPatternField_33383093_formatFractionalSeconds_5838" ,"Precompiled__DateFormatPatternField_33383093_formatQuarter_5839" ,"Precompiled__DateFormatPatternField_33383093_get_symbols_5840" ,"Precompiled__Double_0150898_truncateToDouble_5841" ,"Precompiled__DateFormatPatternField_33383093_formatMinutes_5842" ,"Precompiled__DateFormatPatternField_33383093_formatMonth_5843" ,"Precompiled__DateFormatPatternField_33383093_formatStandaloneMonth_5844" ,"Precompiled__DateFormatPatternField_33383093_format24Hours_5845" ,"Precompiled__DateFormatPatternField_33383093_format0To11Hours_5846" ,"Precompiled__DateFormatPatternField_33383093_format0To23Hours_5847" ,"Precompiled__DateFormatPatternField_33383093_format1To12Hours_5848" ,"Precompiled__DateFormatPatternField_33383093_formatDayOfWeek_5849" ,"Precompiled__DateFormatPatternField_33383093_formatDayOfYear_5850" ,"Precompiled__DateFormatPatternField_33383093_formatDayOfMonth_5851" ,"Precompiled__DateFormatPatternField_33383093_formatStandaloneDay_5852" ,"Precompiled__DateFormatPatternField_33383093_formatAmPm_5853" ,"Precompiled_AllocationStub_DateFormat_5854" ,"Precompiled_DateFormat_init__matchers_33383093_5855" ,"Precompiled_DateFormat_localeExists_5856" ,"Precompiled_DateFormat_localeExists_localeExists_5857" ,"Precompiled_DateFormat_get__fieldConstructors_33383093_5858" ,"Precompiled_DateFormat_add_jms_5859" ,"Precompiled_DateFormat_addPattern_5860" ,"Precompiled_DateFormat_get__availableSkeletons_33383093_5861" ,"Precompiled_DateFormat__appendPattern_33383093_5862" ,"Precompiled_DateFormat__parsePatternHelper_33383093_5863" ,"Precompiled_DateFormat__match_33383093_5864" ,"Precompiled_DateFormat_parsePattern_5865" ,"Precompiled_DateFormat_get__formatFields_33383093_5866" ,"Precompiled_DateFormat__useDefaultPattern_33383093_5867" ,"Precompiled_DateFormat_add_yMMMMd_5868" ,"Precompiled_DateFormat_DateFormat__5869" ,"Precompiled_Intl_verifiedLocale_5870" ,"Precompiled_Intl_shortLocale_5871" ,"Precompiled_AllocationStub__DateFormatLiteralField_33383093_5872" ,"Precompiled_Intl_init_systemLocale_5873" ,"Precompiled_Intl__throwLocaleError_33383093_5874" ,"Precompiled_Intl__throwLocaleError_33383093__throwLocaleError_33383093_5875" ,"Precompiled_AllocationStub_PathException_5876" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_sublist_5877" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_sublist_5878" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_sublist_5879" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_sublist_5880" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_sublist_5881" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_sublist_5882" ,"Precompiled___Float64ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_5883" ,"Precompiled___Float64List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_5884" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_5885" ,"Precompiled___Float32List__TypedList__DoubleListMixin__TypedDoubleListMixin_7027147_sublist_5886" ,"Precompiled___Uint64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5887" ,"Precompiled___Uint64List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5888" ,"Precompiled___Int64ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5889" ,"Precompiled___Int64List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5890" ,"Precompiled___Uint32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5891" ,"Precompiled___Uint32List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5892" ,"Precompiled___Int32ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5893" ,"Precompiled___Int32List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5894" ,"Precompiled___Uint16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5895" ,"Precompiled___Uint16List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5896" ,"Precompiled___Int16ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5897" ,"Precompiled___Int16List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5898" ,"Precompiled___Uint8ClampedArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5899" ,"Precompiled___Uint8ClampedList__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5900" ,"Precompiled___Uint8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5901" ,"Precompiled___Uint8List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5902" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin__TypedIntListMixin_7027147_sublist_5903" ,"Precompiled___Int8List__TypedList__IntListMixin__TypedIntListMixin_7027147_sublist_5904" ,"Precompiled__ImmutableList_0150898_sublist_5905" ,"Precompiled__List_0150898_sublist_5906" ,"Precompiled__List_0150898__sliceInternal_0150898_5907" ,"Precompiled__GrowableList_0150898_sublist_5908" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_firstWhere_5909" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_firstWhere_5910" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_firstWhere_5911" ,"Precompiled_AllocationStub__Int32x4_7027147_5912" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_firstWhere_5913" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_firstWhere_5914" ,"Precompiled_AllocationStub_AnnotatedRegion_5915" ,"Precompiled__ListBase_Object_ListMixin_3220832_firstWhere_5916" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_reversed_5917" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_reversed_5918" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_reversed_5919" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_reversed_5920" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_reversed_5921" ,"Precompiled_SemanticsProperties_get_value_5922" ,"Precompiled_DrawerControllerState_close_5923" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_remove_5924" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_sort_5925" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_sort_5926" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_sort_5927" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_sort_5928" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_sort_5929" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_remove_5930" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_remove_5931" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_remove_5932" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_remove_5933" ,"Precompiled_UnmodifiableListBase_sort_5934" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_remove_5935" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_remove_5936" ,"Precompiled_RenderSliverMultiBoxAdaptor_remove_5937" ,"Precompiled__ListBase_Object_ListMixin_3220832_sort_5938" ,"Precompiled_Layer_remove_5939" ,"Precompiled_ValueNotifier_get_value_5940" ,"Precompiled__ScaffoldGeometryNotifier_319420462_get_value_5941" ,"Precompiled_DiagnosticsProperty_get_value_5942" ,"Precompiled_RenderSemanticsAnnotations_get_value_5943" ,"Precompiled_RenderAnnotatedRegion_get_value_5944" ,"Precompiled_OverlayState_insert_5945" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_expand_5946" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_expand_5947" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_expand_5948" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_expand_5949" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_expand_5950" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_expand_5951" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_expand_5952" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_expand_5953" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_expand_5954" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_expand_5955" ,"Precompiled_AnnotatedRegionLayer_get_value_5956" ,"Precompiled_SemanticsNode_get_value_5957" ,"Precompiled_GestureArenaManager_close_5958" ,"Precompiled__ListBase_Object_ListMixin_3220832_expand_5959" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_removeAt_5960" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_removeAt_5961" ,"Precompiled_UnmodifiableListBase_removeAt_5962" ,"Precompiled_FixedLengthListBase_removeAt_5963" ,"Precompiled_FixedLengthListBase_add_add_5964" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_insert_5965" ,"Precompiled__GrowableList_0150898_removeAt_5966" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_insertAll_5967" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_insertAll_5968" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_insertAll_5969" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_insertAll_5970" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_insertAll_5971" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_insertAll_5972" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_insertAll_5973" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_insertAll_5974" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_insertAll_5975" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_insertAll_5976" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_insert_5977" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_insert_5978" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_insert_5979" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_insert_5980" ,"Precompiled_UnmodifiableListBase_insertAll_5981" ,"Precompiled_FixedLengthListBase_insertAll_5982" ,"Precompiled_Accumulator_get_value_5983" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_insert_5984" ,"Precompiled__Vector_226188158_____5985" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_insert_5986" ,"Precompiled_RenderSliverMultiBoxAdaptor_insert_5987" ,"Precompiled__GrowableList_0150898_insertAll_5988" ,"Precompiled__GrowableList_0150898_setAll_5989" ,"Precompiled_OverlayEntry_remove_5990" ,"Precompiled_AllocationStub_Priority_5991" ,"Precompiled_Priority_dyn___5992" ,"Precompiled_Priority_dyn___5993" ,"Precompiled_SemanticsConfiguration_get_value_5994" ,"Precompiled__GrowableList_0150898_removeLast_5995" ,"Precompiled_TextInputConnection_close_5996" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_elementAt_5997" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_elementAt_5998" ,"Precompiled__ExternalFloat64x2Array_7027147__getIndexedFloat64x2_7027147_5999" ,"Precompiled__ExternalFloat64x2Array_7027147_dyn____6000" ,"Precompiled__ExternalFloat64x2Array_7027147__setIndexedFloat64x2_7027147_6001" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_elementAt_6002" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_elementAt_6003" ,"Precompiled__ExternalInt32x4Array_7027147_dyn____6004" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_elementAt_6005" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_elementAt_6006" ,"Precompiled__ExternalFloat32x4Array_7027147_dyn____6007" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_elementAt_6008" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_elementAt_6009" ,"Precompiled__ExternalFloat64Array_7027147_dyn____6010" ,"Precompiled__ExternalFloat32Array_7027147_dyn____6011" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_elementAt_6012" ,"Precompiled_MethodChannelSharedPreferencesStore_remove_6013" ,"Precompiled_MethodChannelSharedPreferencesStore__invokeBoolMethod_741370450_6014" ,"Precompiled_AllocationStub_MethodChannelSharedPreferencesStore_6015" ,"Precompiled_SharedPreferencesStorePlatform_init__instance_740045225_6016" ,"Precompiled_SharedPreferencesStorePlatform_get_instance_6017" ,"Precompiled_MethodChannelSharedPreferencesStore_getAll_6018" ,"Precompiled_MethodChannelSharedPreferencesStore_setValue_6019" ,"Precompiled__GrowableList_0150898_elementAt_6020" ,"Precompiled_TextSelectionOverlay_get_value_6021" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_remove_6022" ,"Precompiled_RenderCustomMultiChildLayoutBox_get_computeMinIntrinsicWidth_6023" ,"Precompiled__GrowableList_0150898_remove_6024" ,"Precompiled__RenderInputPadding_252412912_get_computeMinIntrinsicWidth_6025" ,"Precompiled__RenderInputPadding_252412912_computeMinIntrinsicWidth_computeMinIntrinsicWidth_6026" ,"Precompiled__RenderInputPadding_252412912_computeMinIntrinsicWidth_6027" ,"Precompiled_AllocationStub__RenderInputPadding_252412912_6028" ,"Precompiled_AllocationStub_RawMaterialButton_6029" ,"Precompiled_TypeTestingStub_package_flutter_src_material_button_dart__RawMaterialButton_6030" ,"Precompiled_AllocationStub__RawMaterialButtonState_252412912_6031" ,"Precompiled__RawMaterialButtonState_252412912__updateState_252412912_6032" ,"Precompiled__RawMaterialButtonState_252412912_get__disabled_252412912_6033" ,"Precompiled__RawMaterialButtonState_252412912_get__pressed_252412912_6034" ,"Precompiled__RawMaterialButtonState_252412912__handleHighlightChanged_252412912_6035" ,"Precompiled__RawMaterialButtonState_252412912__handleHighlightChanged_252412912__handleHighlightChanged_252412912_6036" ,"Precompiled__RawMaterialButtonState_252412912__handleHoveredChanged_252412912__handleHoveredChanged_252412912_6037" ,"Precompiled__RawMaterialButtonState_252412912__handleHoveredChanged_252412912_6038" ,"Precompiled__RawMaterialButtonState_252412912_get__hovered_252412912_6039" ,"Precompiled__RawMaterialButtonState_252412912__handleFocusedChanged_252412912_6040" ,"Precompiled__RawMaterialButtonState_252412912_get__focused_252412912_6041" ,"Precompiled__RawMaterialButtonState_252412912__handleFocusedChanged_252412912__handleFocusedChanged_252412912_6042" ,"Precompiled__RawMaterialButtonState_252412912_get__effectiveElevation_252412912_6043" ,"Precompiled_AllocationStub__InputPadding_252412912_6044" ,"Precompiled__RenderInputPadding_252412912_hitTest_hitTest_6045" ,"Precompiled__RenderInputPadding_252412912_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_6046" ,"Precompiled__RenderInputPadding_252412912_computeMaxIntrinsicHeight_6047" ,"Precompiled__RenderInputPadding_252412912_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_6048" ,"Precompiled__RenderInputPadding_252412912_computeMaxIntrinsicWidth_6049" ,"Precompiled__RenderInputPadding_252412912_computeMinIntrinsicHeight_computeMinIntrinsicHeight_6050" ,"Precompiled__RenderInputPadding_252412912_computeMinIntrinsicHeight_6051" ,"Precompiled_RenderShiftedBox_get_computeMinIntrinsicWidth_6052" ,"Precompiled_RenderPadding_get_computeMinIntrinsicWidth_6053" ,"Precompiled_RenderCustomSingleChildLayoutBox_get_computeMinIntrinsicWidth_6054" ,"Precompiled_RenderConstrainedBox_get_computeMinIntrinsicWidth_6055" ,"Precompiled_RenderIntrinsicWidth_get_computeMinIntrinsicWidth_6056" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_get_computeMinIntrinsicWidth_6057" ,"Precompiled_RenderOffstage_get_computeMinIntrinsicWidth_6058" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_get_computeMinIntrinsicWidth_6059" ,"Precompiled__RenderSingleChildViewport_591426794_get_computeMinIntrinsicWidth_6060" ,"Precompiled__RenderSingleChildViewport_591426794_computeMinIntrinsicWidth_computeMinIntrinsicWidth_6061" ,"Precompiled_AllocationStub__RenderSingleChildViewport_591426794_6062" ,"Precompiled_AllocationStub__SingleChildViewport_591426794_6063" ,"Precompiled_AllocationStub_SingleChildScrollView_6064" ,"Precompiled__RenderSingleChildViewport_591426794_get__maxScrollExtent_591426794_6065" ,"Precompiled__RenderSingleChildViewport_591426794_get_axis_6066" ,"Precompiled__RenderSingleChildViewport_591426794__shouldClipAtPaintOffset_591426794_6067" ,"Precompiled__RenderSingleChildViewport_591426794__RenderSingleChildViewport_591426794__6068" ,"Precompiled__RenderSingleChildViewport_591426794_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_6069" ,"Precompiled__RenderSingleChildViewport_591426794_showOnScreen_showOnScreen_6070" ,"Precompiled__RenderSingleChildViewport_591426794_computeMinIntrinsicHeight_computeMinIntrinsicHeight_6071" ,"Precompiled__RenderSingleChildViewport_591426794_set_axisDirection_6072" ,"Precompiled__RenderSingleChildViewport_591426794_get__viewportExtent_591426794_6073" ,"Precompiled__RenderSingleChildViewport_591426794__hasScrolled_591426794__hasScrolled_591426794_6074" ,"Precompiled__RenderSingleChildViewport_591426794__hasScrolled_591426794_6075" ,"Precompiled__RenderSingleChildViewport_591426794__paintOffsetForPosition_591426794_6076" ,"Precompiled__RenderSingleChildViewport_591426794_get__paintOffset_591426794_6077" ,"Precompiled__RenderSingleChildViewport_591426794__getInnerConstraints_591426794_6078" ,"Precompiled__RenderSingleChildViewport_591426794_set_offset_6079" ,"Precompiled__RenderSingleChildViewport_591426794_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_6080" ,"Precompiled_RenderFlex_get_computeMinIntrinsicWidth_6081" ,"Precompiled__RenderDecoration_296019562_get_computeMinIntrinsicWidth_6082" ,"Precompiled_RenderEditable_get_computeMinIntrinsicWidth_6083" ,"Precompiled_RenderBox_get_computeMinIntrinsicWidth_6084" ,"Precompiled_RenderImage_get_computeMinIntrinsicWidth_6085" ,"Precompiled_RenderListBody_get_computeMinIntrinsicWidth_6086" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_remove_6087" ,"Precompiled_RenderParagraph_get_computeMinIntrinsicWidth_6088" ,"Precompiled_RenderPerformanceOverlay_get_computeMinIntrinsicWidth_6089" ,"Precompiled_RenderPerformanceOverlay_computeMinIntrinsicWidth_computeMinIntrinsicWidth_6090" ,"Precompiled_AllocationStub_RenderPerformanceOverlay_6091" ,"Precompiled_RenderPerformanceOverlay_computeMaxIntrinsicHeight_computeMaxIntrinsicHeight_6092" ,"Precompiled_RenderPerformanceOverlay_computeMaxIntrinsicHeight_6093" ,"Precompiled_RenderPerformanceOverlay_get__intrinsicHeight_421266397_6094" ,"Precompiled_RenderPerformanceOverlay_computeMinIntrinsicHeight_computeMinIntrinsicHeight_6095" ,"Precompiled_RenderPerformanceOverlay_computeMinIntrinsicHeight_6096" ,"Precompiled_RenderPerformanceOverlay_computeMaxIntrinsicWidth_computeMaxIntrinsicWidth_6097" ,"Precompiled_RenderPerformanceOverlay_set_optionsMask_6098" ,"Precompiled_RenderPerformanceOverlay_RenderPerformanceOverlay__6099" ,"Precompiled_RenderStack_get_computeMinIntrinsicWidth_6100" ,"Precompiled__RenderTheatre_511319124_get_computeMinIntrinsicWidth_6101" ,"Precompiled_RenderCustomMultiChildLayoutBox_get_computeMinIntrinsicHeight_6102" ,"Precompiled_RenderViewportBase_get_computeMinIntrinsicWidth_6103" ,"Precompiled__RenderInputPadding_252412912_get_computeMinIntrinsicHeight_6104" ,"Precompiled_RenderShiftedBox_get_computeMinIntrinsicHeight_6105" ,"Precompiled_RenderPadding_get_computeMinIntrinsicHeight_6106" ,"Precompiled_RenderCustomSingleChildLayoutBox_get_computeMinIntrinsicHeight_6107" ,"Precompiled_RenderConstrainedBox_get_computeMinIntrinsicHeight_6108" ,"Precompiled_RenderIntrinsicWidth_get_computeMinIntrinsicHeight_6109" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_get_computeMinIntrinsicHeight_6110" ,"Precompiled_RenderOffstage_get_computeMinIntrinsicHeight_6111" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_get_computeMinIntrinsicHeight_6112" ,"Precompiled__RenderSingleChildViewport_591426794_get_computeMinIntrinsicHeight_6113" ,"Precompiled_RenderFlex_get_computeMinIntrinsicHeight_6114" ,"Precompiled__RenderDecoration_296019562_get_computeMinIntrinsicHeight_6115" ,"Precompiled_RenderEditable_get_computeMinIntrinsicHeight_6116" ,"Precompiled_RenderBox_get_computeMinIntrinsicHeight_6117" ,"Precompiled_RenderImage_get_computeMinIntrinsicHeight_6118" ,"Precompiled_RenderListBody_get_computeMinIntrinsicHeight_6119" ,"Precompiled_RenderParagraph_get_computeMinIntrinsicHeight_6120" ,"Precompiled_RenderPerformanceOverlay_get_computeMinIntrinsicHeight_6121" ,"Precompiled_RenderStack_get_computeMinIntrinsicHeight_6122" ,"Precompiled__RenderTheatre_511319124_get_computeMinIntrinsicHeight_6123" ,"Precompiled_RenderCustomMultiChildLayoutBox_get_computeMaxIntrinsicWidth_6124" ,"Precompiled_RenderViewportBase_get_computeMinIntrinsicHeight_6125" ,"Precompiled__RenderInputPadding_252412912_get_computeMaxIntrinsicWidth_6126" ,"Precompiled_RenderShiftedBox_get_computeMaxIntrinsicWidth_6127" ,"Precompiled_RenderPadding_get_computeMaxIntrinsicWidth_6128" ,"Precompiled_RenderCustomSingleChildLayoutBox_get_computeMaxIntrinsicWidth_6129" ,"Precompiled_RenderConstrainedBox_get_computeMaxIntrinsicWidth_6130" ,"Precompiled_RenderIntrinsicWidth_get_computeMaxIntrinsicWidth_6131" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_get_computeMaxIntrinsicWidth_6132" ,"Precompiled_RenderOffstage_get_computeMaxIntrinsicWidth_6133" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_get_computeMaxIntrinsicWidth_6134" ,"Precompiled__RenderSingleChildViewport_591426794_get_computeMaxIntrinsicWidth_6135" ,"Precompiled_RenderBox_get_computeMaxIntrinsicWidth_6136" ,"Precompiled__RawReceivePortImpl_1026248_close_6137" ,"Precompiled_RenderFlex_get_computeMaxIntrinsicWidth_6138" ,"Precompiled__RenderDecoration_296019562_get_computeMaxIntrinsicWidth_6139" ,"Precompiled_RenderEditable_get_computeMaxIntrinsicWidth_6140" ,"Precompiled_RenderErrorBox_get_computeMaxIntrinsicWidth_6141" ,"Precompiled_RenderImage_get_computeMaxIntrinsicWidth_6142" ,"Precompiled_RenderListBody_get_computeMaxIntrinsicWidth_6143" ,"Precompiled__WeakProperty_0150898_get_value_6144" ,"Precompiled__WeakProperty_0150898__getValue_0150898_6145" ,"Precompiled_RenderParagraph_get_computeMaxIntrinsicWidth_6146" ,"Precompiled_RenderPerformanceOverlay_get_computeMaxIntrinsicWidth_6147" ,"Precompiled_RenderStack_get_computeMaxIntrinsicWidth_6148" ,"Precompiled__RenderTheatre_511319124_get_computeMaxIntrinsicWidth_6149" ,"Precompiled_RenderCustomMultiChildLayoutBox_get_computeMaxIntrinsicHeight_6150" ,"Precompiled_RenderViewportBase_get_computeMaxIntrinsicWidth_6151" ,"Precompiled__RenderInputPadding_252412912_get_computeMaxIntrinsicHeight_6152" ,"Precompiled_RenderShiftedBox_get_computeMaxIntrinsicHeight_6153" ,"Precompiled_RenderPadding_get_computeMaxIntrinsicHeight_6154" ,"Precompiled_RenderCustomSingleChildLayoutBox_get_computeMaxIntrinsicHeight_6155" ,"Precompiled_RenderConstrainedBox_get_computeMaxIntrinsicHeight_6156" ,"Precompiled_RenderIntrinsicWidth_get_computeMaxIntrinsicHeight_6157" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_get_computeMaxIntrinsicHeight_6158" ,"Precompiled_RenderOffstage_get_computeMaxIntrinsicHeight_6159" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_get_computeMaxIntrinsicHeight_6160" ,"Precompiled__RenderSingleChildViewport_591426794_get_computeMaxIntrinsicHeight_6161" ,"Precompiled_RenderBox_get_computeMaxIntrinsicHeight_6162" ,"Precompiled_RenderFlex_get_computeMaxIntrinsicHeight_6163" ,"Precompiled__RenderDecoration_296019562_get_computeMaxIntrinsicHeight_6164" ,"Precompiled_RenderEditable_get_computeMaxIntrinsicHeight_6165" ,"Precompiled_RenderErrorBox_get_computeMaxIntrinsicHeight_6166" ,"Precompiled_RenderImage_get_computeMaxIntrinsicHeight_6167" ,"Precompiled_RenderListBody_get_computeMaxIntrinsicHeight_6168" ,"Precompiled_RenderParagraph_get_computeMaxIntrinsicHeight_6169" ,"Precompiled_RenderPerformanceOverlay_get_computeMaxIntrinsicHeight_6170" ,"Precompiled_RenderStack_get_computeMaxIntrinsicHeight_6171" ,"Precompiled__RenderTheatre_511319124_get_computeMaxIntrinsicHeight_6172" ,"Precompiled_RenderViewportBase_get_computeMaxIntrinsicHeight_6173" ,"Precompiled__ExternalFloat64x2Array_7027147_____6174" ,"Precompiled__Float64x2ArrayView_7027147_____6175" ,"Precompiled__Float64x2List_7027147_____6176" ,"Precompiled__Float64x2List_7027147_dyn____6177" ,"Precompiled__ExternalInt32x4Array_7027147_____6178" ,"Precompiled__Int32x4ArrayView_7027147_____6179" ,"Precompiled__Int32x4List_7027147_____6180" ,"Precompiled__Int32x4List_7027147_dyn____6181" ,"Precompiled__ExternalFloat32x4Array_7027147_____6182" ,"Precompiled__Float32x4ArrayView_7027147_____6183" ,"Precompiled__Float32x4List_7027147_____6184" ,"Precompiled__Float32x4List_7027147_dyn____6185" ,"Precompiled__ExternalFloat64Array_7027147_____6186" ,"Precompiled__Float64ArrayView_7027147_____6187" ,"Precompiled__Float64List_7027147_____6188" ,"Precompiled__Float64List_7027147_dyn____6189" ,"Precompiled__ExternalFloat32Array_7027147_____6190" ,"Precompiled__Float32ArrayView_7027147_____6191" ,"Precompiled__Float32List_7027147_____6192" ,"Precompiled__Float32List_7027147_dyn____6193" ,"Precompiled__ExternalUint64Array_7027147_____6194" ,"Precompiled__ExternalUint64Array_7027147_dyn____6195" ,"Precompiled__Uint64ArrayView_7027147_____6196" ,"Precompiled__Uint64List_7027147_____6197" ,"Precompiled__Uint64List_7027147_dyn____6198" ,"Precompiled__ExternalInt64Array_7027147_____6199" ,"Precompiled__ExternalInt64Array_7027147_dyn____6200" ,"Precompiled__Int64ArrayView_7027147_____6201" ,"Precompiled__Int64List_7027147_____6202" ,"Precompiled__Int64List_7027147_dyn____6203" ,"Precompiled__ExternalUint32Array_7027147_____6204" ,"Precompiled__ExternalUint32Array_7027147_dyn____6205" ,"Precompiled__Uint32ArrayView_7027147_____6206" ,"Precompiled__Uint32List_7027147_____6207" ,"Precompiled__Uint32List_7027147_dyn____6208" ,"Precompiled__ExternalInt32Array_7027147_____6209" ,"Precompiled__ExternalInt32Array_7027147_dyn____6210" ,"Precompiled__Int32ArrayView_7027147_____6211" ,"Precompiled__Int32List_7027147_____6212" ,"Precompiled__Int32List_7027147_dyn____6213" ,"Precompiled__ExternalUint16Array_7027147_____6214" ,"Precompiled__ExternalUint16Array_7027147_dyn____6215" ,"Precompiled__Uint16ArrayView_7027147_____6216" ,"Precompiled__Uint16List_7027147_____6217" ,"Precompiled__ExternalInt16Array_7027147_____6218" ,"Precompiled__ExternalInt16Array_7027147_dyn____6219" ,"Precompiled__Int16ArrayView_7027147_____6220" ,"Precompiled__Int16List_7027147_____6221" ,"Precompiled__ExternalUint8ClampedArray_7027147_____6222" ,"Precompiled__ExternalUint8ClampedArray_7027147_dyn____6223" ,"Precompiled__Uint8ClampedArrayView_7027147_____6224" ,"Precompiled__Uint8ClampedList_7027147_____6225" ,"Precompiled__Uint8ClampedList_7027147_dyn____6226" ,"Precompiled__ExternalUint8Array_7027147_____6227" ,"Precompiled__ExternalUint8Array_7027147_dyn____6228" ,"Precompiled__Uint8ArrayView_7027147_____6229" ,"Precompiled__Uint8List_7027147_____6230" ,"Precompiled__Uint8List_7027147_dyn____6231" ,"Precompiled__ExternalInt8Array_7027147_____6232" ,"Precompiled__ExternalInt8Array_7027147_dyn____6233" ,"Precompiled__Int8ArrayView_7027147_____6234" ,"Precompiled__Int8List_7027147_____6235" ,"Precompiled__Int8List_7027147_dyn____6236" ,"Precompiled_UnmodifiableListBase_____6237" ,"Precompiled__List_0150898_____6238" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_____6239" ,"Precompiled__GrowableList_0150898_____6240" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_insert_6241" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_insert_6242" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_insert_6243" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_insert_6244" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_insert_6245" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_insert_6246" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_insert_6247" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_insert_6248" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_insert_6249" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_insert_6250" ,"Precompiled_RenderCustomMultiChildLayoutBox_hitTestChildren_6251" ,"Precompiled_UnmodifiableListBase_insert_6252" ,"Precompiled_FixedLengthListBase_insert_6253" ,"Precompiled_RenderShiftedBox_hitTestChildren_6254" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_hitTestChildren_6255" ,"Precompiled_RenderCustomPaint_hitTestChildren_6256" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_hitTestChildren_6257" ,"Precompiled__GrowableList_0150898_insert_6258" ,"Precompiled_RenderTransform_hitTestChildren_6259" ,"Precompiled_RenderFractionalTranslation_hitTestChildren_6260" ,"Precompiled_RenderFollowerLayer_hitTestChildren_6261" ,"Precompiled__RenderSingleChildViewport_591426794_hitTestChildren_6262" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_hitTestChildren_6263" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_hitTestChild_6264" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarItemsRenderBox_186300207_6265" ,"Precompiled____init_cupertinoTextSelectionControls_6266" ,"Precompiled_AllocationStub__CupertinoTextSelectionControls_186300207_6267" ,"Precompiled_AllocationStub__ToolbarRenderBox_186300207_6268" ,"Precompiled__ToolbarRenderBox_186300207__clipPath_186300207_6269" ,"Precompiled__ToolbarRenderBox_186300207_set_isArrowPointingDown_6270" ,"Precompiled__ToolbarRenderBox_186300207_set_arrowTipX_6271" ,"Precompiled__ToolbarRenderBox_186300207_set_barTopY_6272" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarItems_186300207_6273" ,"Precompiled_AllocationStub_CupertinoTextSelectionToolbar_6274" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarContent_186300207_6275" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_text_selection_dart___CupertinoTextSelectionToolbarContent_6276" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarItemsElement_186300207_6277" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207__mountChild_186300207_6278" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207__updateRenderObject_186300207_6279" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_set_nextButtonDisabled_6280" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207__updateChild_186300207_6281" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_set_nextButton_6282" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_set_backButton_6283" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207__CupertinoTextSelectionToolbarItemsElement_186300207__6284" ,"Precompiled_AllocationStub__ToolbarParentData_186300207_6285" ,"Precompiled_AllocationStub__TextSelectionHandlePainter_186300207_6286" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarWrapperState_186300207_6287" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_text_selection_dart___CupertinoTextSelectionToolbarWrapper_6288" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207__onChangedClipboardStatus_186300207__onChangedClipboardStatus_186300207_6289" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207__onChangedClipboardStatus_186300207_6290" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarContentState_186300207_6291" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__statusListener_186300207__statusListener_186300207_6292" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__statusListener_186300207_6293" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__handlePreviousPage_186300207__handlePreviousPage_186300207_6294" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__handlePreviousPage_186300207_6295" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__handleNextPage_186300207__handleNextPage_186300207_6296" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__handleNextPage_186300207_6297" ,"Precompiled_AllocationStub__CupertinoTextSelectionToolbarWrapper_186300207_6298" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_set_page_6299" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_set_dividerWidth_6300" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207__CupertinoTextSelectionToolbarItemsRenderBox_186300207__6301" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_hitTestChildren_6302" ,"Precompiled_RenderFlex_hitTestChildren_6303" ,"Precompiled__RenderDecoration_296019562_hitTestChildren_6304" ,"Precompiled_RenderListBody_hitTestChildren_6305" ,"Precompiled_RenderParagraph_hitTestChildren_6306" ,"Precompiled_RenderBox_hitTestChildren_6307" ,"Precompiled_RenderStack_hitTestChildren_6308" ,"Precompiled__RenderTheatre_511319124_hitTestChildren_6309" ,"Precompiled_RenderViewportBase_hitTestChildren_6310" ,"Precompiled_RenderSliverMultiBoxAdaptor_hitTestChildren_6311" ,"Precompiled_RenderSliverEdgeInsetsPadding_hitTestChildren_6312" ,"Precompiled_RenderCustomPaint_performResize_6313" ,"Precompiled_RenderPointerListener_performResize_6314" ,"Precompiled_RenderMouseRegion_performResize_6315" ,"Precompiled_RenderOffstage_performResize_6316" ,"Precompiled_RenderErrorBox_performResize_6317" ,"Precompiled_RenderPerformanceOverlay_performResize_6318" ,"Precompiled__RenderTheatre_511319124_performResize_6319" ,"Precompiled_RenderViewport_performResize_6320" ,"Precompiled_RenderBox_performResize_6321" ,"Precompiled_RenderCustomPaint_hitTestSelf_6322" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_hitTestSelf_6323" ,"Precompiled_RenderDecoratedBox_hitTestSelf_6324" ,"Precompiled_RenderSliver_hitTestSelf_6325" ,"Precompiled__DualTransitionBuilderState_46239604_didUpdateWidget_6326" ,"Precompiled__DualTransitionBuilderState_46239604__animationListener_46239604_6327" ,"Precompiled__DualTransitionBuilderState_46239604__updateAnimations_46239604_6328" ,"Precompiled_AllocationStub__DualTransitionBuilderState_46239604_6329" ,"Precompiled_AllocationStub_DualTransitionBuilder_6330" ,"Precompiled_TypeTestingStub_package_animations_src_dual_transition_builder_dart__DualTransitionBuilder_6331" ,"Precompiled__DualTransitionBuilderState_46239604__animationListener_46239604__animationListener_46239604_6332" ,"Precompiled__DualTransitionBuilderState_46239604__DualTransitionBuilderState_46239604__6333" ,"Precompiled__DualTransitionBuilderState_46239604__calculateEffectiveAnimationStatus_46239604_6334" ,"Precompiled__CupertinoButtonState_163145554_didUpdateWidget_6335" ,"Precompiled__CupertinoButtonState_163145554__setTween_163145554_6336" ,"Precompiled_AllocationStub__CupertinoButtonState_163145554_6337" ,"Precompiled_AllocationStub_CupertinoButton_6338" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_button_dart__CupertinoButton_6339" ,"Precompiled__CupertinoButtonState_163145554__handleTapCancel_163145554__handleTapCancel_163145554_6340" ,"Precompiled__CupertinoButtonState_163145554__handleTapCancel_163145554_6341" ,"Precompiled__CupertinoButtonState_163145554__animate_163145554_6342" ,"Precompiled__CupertinoButtonState_163145554__handleTapUp_163145554__handleTapUp_163145554_6343" ,"Precompiled__CupertinoButtonState_163145554__handleTapUp_163145554_6344" ,"Precompiled__CupertinoButtonState_163145554__handleTapDown_163145554__handleTapDown_163145554_6345" ,"Precompiled__CupertinoButtonState_163145554__handleTapDown_163145554_6346" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207_didUpdateWidget_6347" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207_didUpdateWidget_6348" ,"Precompiled__MaterialAppState_239125171_didUpdateWidget_6349" ,"Precompiled__RawMaterialButtonState_252412912_didUpdateWidget_6350" ,"Precompiled__InkResponseState_294059085_didUpdateWidget_6351" ,"Precompiled__BorderContainerState_296019562_didUpdateWidget_6352" ,"Precompiled__HelperErrorState_296019562_didUpdateWidget_6353" ,"Precompiled__InputDecoratorState_296019562_didUpdateWidget_6354" ,"Precompiled_ImplicitlyAnimatedWidgetState_didUpdateWidget_6355" ,"Precompiled__DatePickerModeToggleButtonState_498246833_didUpdateWidget_6356" ,"Precompiled__CircularProgressIndicatorState_312243954_didUpdateWidget_6357" ,"Precompiled__FloatingActionButtonTransitionState_319420462_didUpdateWidget_6358" ,"Precompiled_ScaffoldState_didUpdateWidget_6359" ,"Precompiled__TextFieldState_335181401_didUpdateWidget_6360" ,"Precompiled__TextSelectionToolbarState_337283233_didUpdateWidget_6361" ,"Precompiled__ActionsState_513441002_didUpdateWidget_6362" ,"Precompiled__WidgetsAppState_526236006_didUpdateWidget_6363" ,"Precompiled_AllocationStub__WidgetsAppState_526236006_6364" ,"Precompiled_AllocationStub_WidgetsApp_6365" ,"Precompiled_WidgetsApp_init_defaultActions_6366" ,"Precompiled_WidgetsApp_init__defaultMacOsShortcuts_526236006_6367" ,"Precompiled_WidgetsApp_init__defaultShortcuts_526236006_6368" ,"Precompiled_WidgetsApp_get_defaultShortcuts_6369" ,"Precompiled_WidgetsApp_WidgetsApp__6370" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_app_dart__WidgetsApp_6371" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_app_dart___MediaQueryFromWindow_6372" ,"Precompiled_AllocationStub__MediaQueryFromWindow_526236006_6373" ,"Precompiled_AllocationStub__MediaQueryFromWindowsState_526236006_6374" ,"Precompiled__WidgetsAppState_526236006__onUnknownRoute_526236006__onUnknownRoute_526236006_6375" ,"Precompiled__WidgetsAppState_526236006__onUnknownRoute_526236006_6376" ,"Precompiled__WidgetsAppState_526236006__onGenerateRoute_526236006__onGenerateRoute_526236006_6377" ,"Precompiled__WidgetsAppState_526236006__onGenerateRoute_526236006_6378" ,"Precompiled__WidgetsAppState_526236006_get__localizationsDelegates_526236006_6379" ,"Precompiled__WidgetsAppState_526236006_basicLocaleListResolution_6380" ,"Precompiled__WidgetsAppState_526236006__resolveLocales_526236006_6381" ,"Precompiled__WidgetsAppState_526236006__updateNavigator_526236006_6382" ,"Precompiled__StreamBuilderBaseState_536480208_didUpdateWidget_6383" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208_6384" ,"Precompiled_StreamBuilder_afterConnected_6385" ,"Precompiled_AsyncSnapshot_inState_6386" ,"Precompiled_AllocationStub_AsyncSnapshot_6387" ,"Precompiled_AllocationStub__StreamBuilderBaseState_536480208_6388" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_async_dart__StreamBuilderBase__T__S_6389" ,"Precompiled_AllocationStub_FutureBuilder_6390" ,"Precompiled_AllocationStub_StreamBuilder_6391" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_async_dart__AsyncSnapshot__T_6392" ,"Precompiled_StreamBuilder_afterDone_6393" ,"Precompiled_StreamBuilder_afterError_6394" ,"Precompiled_StreamBuilder_afterData_6395" ,"Precompiled_StreamBuilder_initial_6396" ,"Precompiled_AllocationStub__FutureBuilderState_536480208_6397" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_async_dart__FutureBuilder__T_6398" ,"Precompiled__FutureBuilderState_536480208__subscribe_536480208_6399" ,"Precompiled_StreamBuilder_afterDisconnected_6400" ,"Precompiled__StreamBuilderBaseState_536480208__unsubscribe_536480208_6401" ,"Precompiled__FutureBuilderState_536480208_didUpdateWidget_6402" ,"Precompiled__AutomaticKeepAliveState_495490736_didUpdateWidget_6403" ,"Precompiled_EditableTextState_didUpdateWidget_6404" ,"Precompiled__FocusState_515492240_didUpdateWidget_6405" ,"Precompiled_RawGestureDetectorState_didUpdateWidget_6406" ,"Precompiled__ImageState_545215529_didUpdateWidget_6407" ,"Precompiled__LocalizationsState_483081674_didUpdateWidget_6408" ,"Precompiled_NavigatorState_didUpdateWidget_6409" ,"Precompiled__GlowingOverscrollIndicatorState_583442496_didUpdateWidget_6410" ,"Precompiled__GlowController_583442496_set_axis_6411" ,"Precompiled_AllocationStub__GlowController_583442496_6412" ,"Precompiled_AllocationStub__GlowingOverscrollIndicatorState_583442496_6413" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_overscroll_indicator_dart__GlowingOverscrollIndicator_6414" ,"Precompiled__GlowingOverscrollIndicatorState_583442496__handleScrollNotification_583442496__handleScrollNotification_583442496_6415" ,"Precompiled__GlowingOverscrollIndicatorState_583442496__handleScrollNotification_583442496_6416" ,"Precompiled__GlowController_583442496_scrollEnd_6417" ,"Precompiled__GlowController_583442496__recede_583442496_6418" ,"Precompiled__GlowController_583442496_pull_6419" ,"Precompiled__GlowController_583442496_absorbImpact_6420" ,"Precompiled_AllocationStub_OverscrollIndicatorNotification_6421" ,"Precompiled__GlowingOverscrollIndicatorState_583442496__GlowingOverscrollIndicatorState_583442496__6422" ,"Precompiled__DraggableScrollableNotification_Notification_ViewportNotificationMixin_551035049_visitAncestor_visitAncestor_6423" ,"Precompiled_AllocationStub_GlowingOverscrollIndicator_6424" ,"Precompiled_AllocationStub__GlowingOverscrollIndicatorPainter_583442496_6425" ,"Precompiled__GlowingOverscrollIndicatorPainter_583442496__paintSide_583442496_6426" ,"Precompiled__GlowController_583442496_init__crossAxisHalfTime_583442496_6427" ,"Precompiled__GlowController_583442496__tickDisplacement_583442496__tickDisplacement_583442496_6428" ,"Precompiled__GlowController_583442496__tickDisplacement_583442496_6429" ,"Precompiled__GlowController_583442496__changePhase_583442496__changePhase_583442496_6430" ,"Precompiled__GlowController_583442496__changePhase_583442496_6431" ,"Precompiled__GlowController_583442496__GlowController_583442496__6432" ,"Precompiled_GlowingOverscrollIndicator_get_axis_6433" ,"Precompiled__GlowController_583442496_set_color_6434" ,"Precompiled__ModalScopeState_49188637_didUpdateWidget_6435" ,"Precompiled_ScrollableState_didUpdateWidget_6436" ,"Precompiled__ShortcutsState_516043213_didUpdateWidget_6437" ,"Precompiled__TextSelectionHandleOverlayState_485111801_didUpdateWidget_6438" ,"Precompiled_State_didUpdateWidget_6439" ,"Precompiled__AnimatedState_496170175_didUpdateWidget_6440" ,"Precompiled_RenderOpacity_get_alwaysNeedsCompositing_6441" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_get_alwaysNeedsCompositing_6442" ,"Precompiled_RenderAnnotatedRegion_get_alwaysNeedsCompositing_6443" ,"Precompiled_RenderCustomMultiChildLayoutBox_setupParentData_6444" ,"Precompiled__ToolbarRenderBox_186300207_setupParentData_6445" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_setupParentData_6446" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_setupParentData_6447" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_setupParentData_6448" ,"Precompiled_RenderFlex_setupParentData_6449" ,"Precompiled_RenderListBody_setupParentData_6450" ,"Precompiled_RenderParagraph_setupParentData_6451" ,"Precompiled_RenderBox_setupParentData_6452" ,"Precompiled_RenderStack_setupParentData_6453" ,"Precompiled_RenderViewport_setupParentData_6454" ,"Precompiled_RenderShrinkWrappingViewport_setupParentData_6455" ,"Precompiled_RenderSliverGrid_setupParentData_6456" ,"Precompiled_RenderSliverMultiBoxAdaptor_setupParentData_6457" ,"Precompiled_RenderSliverEdgeInsetsPadding_setupParentData_6458" ,"Precompiled_RenderOpacity_visitChildrenForSemantics_6459" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_visitChildrenForSemantics_6460" ,"Precompiled_RenderIgnorePointer_visitChildrenForSemantics_6461" ,"Precompiled_RenderOffstage_visitChildrenForSemantics_6462" ,"Precompiled_RenderAbsorbPointer_visitChildrenForSemantics_6463" ,"Precompiled_RenderSemanticsAnnotations_visitChildrenForSemantics_6464" ,"Precompiled_RenderExcludeSemantics_visitChildrenForSemantics_6465" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_visitChildrenForSemantics_6466" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_visitChildrenForSemantics_6467" ,"Precompiled__RenderDecoration_296019562_visitChildrenForSemantics_6468" ,"Precompiled__RenderTheatre_511319124_visitChildrenForSemantics_6469" ,"Precompiled_RenderViewportBase_visitChildrenForSemantics_6470" ,"Precompiled_RenderSliverMultiBoxAdaptor_visitChildrenForSemantics_6471" ,"Precompiled_RenderOffstage_get_sizedByParent_6472" ,"Precompiled__RenderCustomClip_423160605_describeApproximatePaintClip_6473" ,"Precompiled__RenderSingleChildViewport_591426794_describeApproximatePaintClip_6474" ,"Precompiled_RenderFlex_describeApproximatePaintClip_6475" ,"Precompiled_RenderEditable_describeApproximatePaintClip_6476" ,"Precompiled_RenderStack_describeApproximatePaintClip_6477" ,"Precompiled__RenderTheatre_511319124_describeApproximatePaintClip_6478" ,"Precompiled_RenderViewportBase_describeApproximatePaintClip_6479" ,"Precompiled__HomeScreenState_30110098_initState_6480" ,"Precompiled_AllocationStub__HomeScreenState_30110098_6481" ,"Precompiled_AllocationStub_HomeScreen_6482" ,"Precompiled_TypeTestingStub_package_Dayflect_screens_home_screen_dart__HomeScreen_6483" ,"Precompiled__HomeScreenState_30110098_selectDate_selectDate_6484" ,"Precompiled__HomeScreenState_30110098_selectDate_6485" ,"Precompiled__HomeScreenState_30110098_buildTitleText_6486" ,"Precompiled__HomeScreenState_30110098_buildCalendarDialog_6487" ,"Precompiled_AllocationStub_Dialog_6488" ,"Precompiled_AllocationStub_AlertDialog_6489" ,"Precompiled__HomeScreenState_30110098_buildMemoryListView_6490" ,"Precompiled_ListView_ListView_builder_6491" ,"Precompiled_ScrollView_buildViewport_6492" ,"Precompiled_AllocationStub_Viewport_6493" ,"Precompiled_AllocationStub__ViewportElement_581166613_6494" ,"Precompiled__ViewportElement_581166613__updateCenter_581166613_6495" ,"Precompiled_Viewport_getDefaultCrossAxisDirection_6496" ,"Precompiled_AllocationStub_ShrinkWrappingViewport_6497" ,"Precompiled_ScrollView_getDirection_6498" ,"Precompiled_BoxScrollView_buildSlivers_6499" ,"Precompiled_AllocationStub_GridView_6500" ,"Precompiled_GridView_GridView_builder_6501" ,"Precompiled_AllocationStub_ListView_6502" ,"Precompiled__HomeScreenState_30110098_buildMemories_6503" ,"Precompiled_FirestoreProvider_getMemories_6504" ,"Precompiled_Query_snapshots_6505" ,"Precompiled_MethodChannelQuery_snapshots_6506" ,"Precompiled_AllocationStub__BroadcastStream_4048458_6507" ,"Precompiled_AllocationStub__ControllerStream_4048458_6508" ,"Precompiled_QuerySnapshotPlatform_verifyExtends_6509" ,"Precompiled_AllocationStub_DocumentSnapshotPlatform_6510" ,"Precompiled_DocumentSnapshotPlatform_dyn____6511" ,"Precompiled_TypeTestingStub_package_cloud_firestore_platform_interface_src_document_snapshot_dart__DocumentSnapshotPlatform_6512" ,"Precompiled_TypeTestingStub_package_cloud_firestore_platform_interface_src_platform_interface_query_snapshot_dart__QuerySnapshotPlatform_6513" ,"Precompiled_QueryPlatform_QueryPlatform__6514" ,"Precompiled_AllocationStub_QuerySnapshot_6515" ,"Precompiled_AllocationStub_CollectionReference_6516" ,"Precompiled_CollectionReference_dyn_add_6517" ,"Precompiled_CollectionReference_add_add_6518" ,"Precompiled_TypeTestingStub_package_cloud_firestore_cloud_firestore_dart__DocumentReference_6519" ,"Precompiled_AllocationStub_Firestore_6520" ,"Precompiled_Firestore_get__delegate_32385638_6521" ,"Precompiled_FirestorePlatform_get_instance_6522" ,"Precompiled_MethodChannelFirestore_MethodChannelFirestore__6523" ,"Precompiled_MethodChannelFirestore_init_channel_6524" ,"Precompiled_AllocationStub_FirestoreMessageCodec_6525" ,"Precompiled_MethodChannelFirestore_init__transactionHandlers_64158059_6526" ,"Precompiled_TransactionPlatform_finish_6527" ,"Precompiled_MethodChannelFirestore_init_documentObservers_6528" ,"Precompiled_MethodChannelFirestore_init_queryObservers_6529" ,"Precompiled_MethodChannelFirestore_document_6530" ,"Precompiled_AllocationStub_MethodChannelDocumentReference_6531" ,"Precompiled_MethodChannelDocumentReference_delete_6532" ,"Precompiled_DocumentReferencePlatform_verifyExtends_6533" ,"Precompiled_MethodChannelDocumentReference_get_6534" ,"Precompiled_MethodChannelDocumentReference_updateData_6535" ,"Precompiled_MethodChannelDocumentReference_setData_6536" ,"Precompiled_TypeTestingStub_package_cloud_firestore_platform_interface_src_platform_interface_document_reference_dart__DocumentReferencePlatform_6537" ,"Precompiled_MethodChannelFirestore_collection_6538" ,"Precompiled_AllocationStub_MethodChannelCollectionReference_6539" ,"Precompiled_MethodChannelCollectionReference_dyn_add_6540" ,"Precompiled_MethodChannelCollectionReference_add_add_6541" ,"Precompiled_MethodChannelCollectionReference_document_6542" ,"Precompiled_AutoIdGenerator_autoId_6543" ,"Precompiled__Random_12383281_nextInt_6544" ,"Precompiled__Random_12383281__nextState_12383281_6545" ,"Precompiled_AllocationStub__Random_12383281_6546" ,"Precompiled_Random_Random__6547" ,"Precompiled__Random_12383281__setupSeed_12383281_6548" ,"Precompiled__Random_12383281__nextSeed_12383281_6549" ,"Precompiled__Random_12383281_init__prng_12383281_6550" ,"Precompiled__Random_12383281__initialSeed_12383281_6551" ,"Precompiled_AutoIdGenerator_init__random_86201389_6552" ,"Precompiled_MethodChannelFirestore_withApp_6553" ,"Precompiled_FirestorePlatform_FirestorePlatform_instanceFor_6554" ,"Precompiled_FirebaseApp_init_instance_6555" ,"Precompiled_AllocationStub_FirebaseApp_6556" ,"Precompiled_FirebaseApp_init_defaultAppName_6557" ,"Precompiled____init_firebaseDefaultAppName_6558" ,"Precompiled_AllocationStub_MethodChannelFirestore_6559" ,"Precompiled_AllocationStub_DocumentReference_6560" ,"Precompiled_DocumentReference_delete_6561" ,"Precompiled_DocumentReference_get_6562" ,"Precompiled_TypeTestingStub_package_cloud_firestore_cloud_firestore_dart__DocumentSnapshot_6563" ,"Precompiled_DocumentReference_updateData_6564" ,"Precompiled__CodecUtility_32385638_replaceValueWithDelegatesInMap_6565" ,"Precompiled_DocumentReference_setData_6566" ,"Precompiled__CodecUtility_32385638_valueDecode_6567" ,"Precompiled__CodecUtility_32385638_replaceDelegatesWithValueInMap_6568" ,"Precompiled__CodecUtility_32385638_replaceDelegatesWithValueInArray_6569" ,"Precompiled__CodecUtility_32385638_valueEncode_6570" ,"Precompiled__CodecUtility_32385638_replaceValueWithDelegatesInArray_6571" ,"Precompiled_TypeTestingStub_dart_core__List_6572" ,"Precompiled_AllocationStub_DocumentSnapshot_6573" ,"Precompiled_DocumentSnapshot_dyn____6574" ,"Precompiled_DocumentSnapshot_get_exists_6575" ,"Precompiled_DocumentSnapshot_get_data_6576" ,"Precompiled_QuerySnapshot_get_documents_6577" ,"Precompiled_DocumentReference_collection_6578" ,"Precompiled_CollectionReference_document_6579" ,"Precompiled_Firestore_collection_6580" ,"Precompiled_AllocationStub_UserInfo_6581" ,"Precompiled_GoogleAuthProvider_getCredential_6582" ,"Precompiled_AllocationStub_FirebaseUser_6583" ,"Precompiled_FirebaseUser_FirebaseUser___19464419_6584" ,"Precompiled_AllocationStub_AuthResult_6585" ,"Precompiled_AuthResult_AuthResult___19464419_6586" ,"Precompiled_AllocationStub_FirebaseAuth_6587" ,"Precompiled_FirebaseAuth_init_instance_6588" ,"Precompiled_FirebaseAuth_signOut_signOut_6589" ,"Precompiled_FirebaseAuth_signOut_6590" ,"Precompiled_FirebaseAuth_currentUser_6591" ,"Precompiled_TypeTestingStub_package_firebase_auth_firebase_auth_dart__FirebaseUser_6592" ,"Precompiled_FirebaseAuth_signInWithCredential_6593" ,"Precompiled_TypeTestingStub_package_firebase_auth_firebase_auth_dart__AuthResult_6594" ,"Precompiled_AllocationStub_FirestoreProvider_6595" ,"Precompiled_FirestoreProvider_deleteMemory_6596" ,"Precompiled_FirestoreProvider_updateMemory_6597" ,"Precompiled_FirestoreProvider_addMemory_6598" ,"Precompiled_FirestoreProvider_signInUser_6599" ,"Precompiled__HomeScreenState_30110098_buildSkipButton_6600" ,"Precompiled_AllocationStub_Icon_6601" ,"Precompiled__HomeScreenState_30110098_buildTappableDateContainer_6602" ,"Precompiled__HomeScreenState_30110098_buildDateRow_6603" ,"Precompiled__HomeScreenState_30110098_buildMenuButton_6604" ,"Precompiled_TypeTestingStub_package_flutter_src_material_popup_menu_dart__PopupMenuButton__dart_core__String_6605" ,"Precompiled__HomeScreenState_30110098_buildExtendedAppBar_6606" ,"Precompiled__HomeScreenState_30110098__HomeScreenState_30110098__6607" ,"Precompiled_AuthProvider_AuthProvider__6608" ,"Precompiled_AllocationStub_GoogleSignIn_6609" ,"Precompiled_AllocationStub_GoogleSignInAuthentication_6610" ,"Precompiled_AllocationStub_GoogleSignInAccount_6611" ,"Precompiled_GoogleSignInAccount_get_authentication_6612" ,"Precompiled_TypeTestingStub_package_google_sign_in_google_sign_in_dart__GoogleSignInAuthentication_6613" ,"Precompiled_GoogleSignIn_signOut_signOut_6614" ,"Precompiled_GoogleSignIn_signOut_6615" ,"Precompiled_GoogleSignIn__addMethodCall_20494901_6616" ,"Precompiled_GoogleSignInPlatform_init__instance_603043202_6617" ,"Precompiled_AllocationStub_MethodChannelGoogleSignIn_6618" ,"Precompiled_MethodChannelGoogleSignIn_signOut_signOut_6619" ,"Precompiled_MethodChannelGoogleSignIn_signOut_6620" ,"Precompiled_MethodChannelGoogleSignIn_signIn_signIn_6621" ,"Precompiled_MethodChannelGoogleSignIn_signIn_6622" ,"Precompiled_AllocationStub_GoogleSignInUserData_6623" ,"Precompiled_AllocationStub_GoogleSignInTokenData_6624" ,"Precompiled_MethodChannelGoogleSignIn_getTokens_6625" ,"Precompiled_GoogleSignInPlatform_get_instance_6626" ,"Precompiled_TypeTestingStub_package_google_sign_in_google_sign_in_dart__GoogleSignInAccount_6627" ,"Precompiled_GoogleSignIn_signIn_signIn_6628" ,"Precompiled_GoogleSignIn_signIn_6629" ,"Precompiled_GoogleSignIn__waitFor_20494901_6630" ,"Precompiled_GoogleSignIn__ensureInitialized_20494901_6631" ,"Precompiled_GoogleSignIn__setCurrentUser_20494901_6632" ,"Precompiled_GoogleSignIn__callMethod_20494901_6633" ,"Precompiled_AuthProvider_signOut_signOut_6634" ,"Precompiled_AuthProvider_signOut_6635" ,"Precompiled_AuthProvider_signIn_signIn_6636" ,"Precompiled_AuthProvider_signIn_6637" ,"Precompiled_AuthProvider_getCurrentUser_6638" ,"Precompiled_AllocationStub_AuthProvider_6639" ,"Precompiled_AllocationStub_Encrypt_6640" ,"Precompiled_Encrypt_decryptData_6641" ,"Precompiled_Encrypt_encryptData_6642" ,"Precompiled_Encrypt_generateAndSaveEncryptionKey_6643" ,"Precompiled__SignInScreenState_26392946_initState_6644" ,"Precompiled__SignInScreenState_26392946_checkUserSignedIn_6645" ,"Precompiled_AllocationStub__SignInScreenState_26392946_6646" ,"Precompiled_AllocationStub_SignInScreen_6647" ,"Precompiled_TypeTestingStub_package_Dayflect_screens_sign_in_screen_dart__SignInScreen_6648" ,"Precompiled__SignInScreenState_26392946_buildSubtitleText_6649" ,"Precompiled__SignInScreenState_26392946_buildTitleText_6650" ,"Precompiled__SignInScreenState_26392946_buildSignInButton_6651" ,"Precompiled__SignInScreenState_26392946_buildSignInContainer_6652" ,"Precompiled__SignInScreenState_26392946_buildSigningInContainer_6653" ,"Precompiled__MemoryContainerState_35208829_initState_6654" ,"Precompiled_AllocationStub__MemoryContainerState_35208829_6655" ,"Precompiled_AllocationStub_MemoryContainer_6656" ,"Precompiled_TypeTestingStub_package_Dayflect_widgets_memory_container_dart__MemoryContainer_6657" ,"Precompiled__MemoryContainerState_35208829_buildSaveButton_6658" ,"Precompiled__MemoryContainerState_35208829_buildCancelButton_6659" ,"Precompiled__MemoryContainerState_35208829_buildAddMemoryButton_6660" ,"Precompiled__MemoryContainerState_35208829_buildDecryptedText_6661" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_async_dart__FutureBuilder_6662" ,"Precompiled__MemoryContainerState_35208829_buildTextField_6663" ,"Precompiled__MemoryContainerState_35208829_buildMemoryContainer_6664" ,"Precompiled__MemoryContainerState_35208829_buildMoreButton_6665" ,"Precompiled__MemoryContainerState_35208829_buildYearText_6666" ,"Precompiled__MemoryContainerState_35208829_buildYearsAgoText_6667" ,"Precompiled__MemoryContainerState_35208829_buildYearRow_6668" ,"Precompiled__MemoryContainerState_35208829_buildEditOptions_6669" ,"Precompiled__MemoryContainerState_35208829_buildBody_6670" ,"Precompiled__DualTransitionBuilderState_46239604_initState_6671" ,"Precompiled__CupertinoButtonState_163145554_initState_6672" ,"Precompiled__CupertinoBackGestureDetectorState_177053933_initState_6673" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207_initState_6674" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207_initState_6675" ,"Precompiled__MaterialAppState_239125171_initState_6676" ,"Precompiled__RawMaterialButtonState_252412912_initState_6677" ,"Precompiled__InkResponseState_294059085_initState_6678" ,"Precompiled__BorderContainerState_296019562_initState_6679" ,"Precompiled__HelperErrorState_296019562_initState_6680" ,"Precompiled__InputDecoratorState_296019562_initState_6681" ,"Precompiled_AnimatedWidgetBaseState_initState_6682" ,"Precompiled_ImplicitlyAnimatedWidgetState_initState_6683" ,"Precompiled__CalendarDatePickerState_498246833_initState_6684" ,"Precompiled__DatePickerModeToggleButtonState_498246833_initState_6685" ,"Precompiled__MonthPickerState_498246833_initState_6686" ,"Precompiled__YearPickerState_498246833_initState_6687" ,"Precompiled__CircularProgressIndicatorState_312243954_initState_6688" ,"Precompiled__FloatingActionButtonTransitionState_319420462_initState_6689" ,"Precompiled_ScaffoldState_initState_6690" ,"Precompiled__TextFieldState_335181401_initState_6691" ,"Precompiled__TextSelectionToolbarState_337283233_initState_6692" ,"Precompiled__TooltipState_346220820_initState_6693" ,"Precompiled__ActionsState_513441002_initState_6694" ,"Precompiled__WidgetsAppState_526236006_initState_6695" ,"Precompiled__MediaQueryFromWindowsState_526236006_initState_6696" ,"Precompiled__StreamBuilderBaseState_536480208_initState_6697" ,"Precompiled__FutureBuilderState_536480208_initState_6698" ,"Precompiled__AutomaticKeepAliveState_495490736_initState_6699" ,"Precompiled_EditableTextState_initState_6700" ,"Precompiled__FocusState_515492240_initState_6701" ,"Precompiled__FocusTraversalGroupState_528280150_initState_6702" ,"Precompiled_RawGestureDetectorState_initState_6703" ,"Precompiled__ImageState_545215529_initState_6704" ,"Precompiled_AllocationStub_DisposableBuildContext_6705" ,"Precompiled__LocalizationsState_483081674_initState_6706" ,"Precompiled_NavigatorState_initState_6707" ,"Precompiled_OverlayState_initState_6708" ,"Precompiled__GlowingOverscrollIndicatorState_583442496_initState_6709" ,"Precompiled__PageViewState_585030489_initState_6710" ,"Precompiled__ModalScopeState_49188637_initState_6711" ,"Precompiled__ShortcutsState_516043213_initState_6712" ,"Precompiled__TextSelectionHandleOverlayState_485111801_initState_6713" ,"Precompiled__AnimatedState_496170175_initState_6714" ,"Precompiled_RenderMouseRegion_get_needsCompositing_6715" ,"Precompiled_RenderObject_get_needsCompositing_6716" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_lastIndexWhere_6717" ,"Precompiled_RenderObject_get_markNeedsSemanticsUpdate_6718" ,"Precompiled_RenderCustomPaint_describeSemanticsConfiguration_6719" ,"Precompiled__RenderPhysicalModelBase_423160605_describeSemanticsConfiguration_6720" ,"Precompiled_RenderSemanticsGestureHandler_describeSemanticsConfiguration_6721" ,"Precompiled_RenderSemanticsAnnotations_describeSemanticsConfiguration_6722" ,"Precompiled_RenderBlockSemantics_describeSemanticsConfiguration_6723" ,"Precompiled_RenderMergeSemantics_describeSemanticsConfiguration_6724" ,"Precompiled_RenderIndexedSemantics_describeSemanticsConfiguration_6725" ,"Precompiled__RenderScrollSemantics_531019050_describeSemanticsConfiguration_6726" ,"Precompiled_RenderEditable_describeSemanticsConfiguration_6727" ,"Precompiled_RenderParagraph_describeSemanticsConfiguration_6728" ,"Precompiled_RenderViewportBase_describeSemanticsConfiguration_6729" ,"Precompiled__RenderSingleChildViewport_591426794_get_showOnScreen_6730" ,"Precompiled_RenderViewportBase_get_showOnScreen_6731" ,"Precompiled_RenderObject_get_showOnScreen_6732" ,"Precompiled_RenderCustomPaint_assembleSemanticsNode_6733" ,"Precompiled__RenderScrollSemantics_531019050_assembleSemanticsNode_6734" ,"Precompiled_RenderParagraph_assembleSemanticsNode_6735" ,"Precompiled_RenderObject_assembleSemanticsNode_6736" ,"Precompiled__RenderSingleChildViewport_591426794_showOnScreen_6737" ,"Precompiled_ListQueue_addAll_6738" ,"Precompiled__CastListBase_11040228_addAll_6739" ,"Precompiled_RenderViewportBase_showOnScreen_6740" ,"Precompiled_RenderObject_showOnScreen_6741" ,"Precompiled_RenderCustomPaint_clearSemantics_6742" ,"Precompiled__RenderScrollSemantics_531019050_clearSemantics_6743" ,"Precompiled_RenderParagraph_clearSemantics_6744" ,"Precompiled__HashSet_3220832_addAll_6745" ,"Precompiled_RenderObject_clearSemantics_6746" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_addAll_6747" ,"Precompiled__TypedDataBuffer_489432058_addAll_6748" ,"Precompiled_SplayTreeSet_addAll_6749" ,"Precompiled_RenderBox_get_paintBounds_6750" ,"Precompiled_RenderSliver_get_paintBounds_6751" ,"Precompiled_RenderView_get_paintBounds_6752" ,"Precompiled__RenderSingleChildViewport_591426794_describeSemanticsClip_6753" ,"Precompiled_RenderViewportBase_describeSemanticsClip_6754" ,"Precompiled_RenderSliver_get_semanticBounds_6755" ,"Precompiled_RenderView_get_semanticBounds_6756" ,"Precompiled__ImmutableMap_0150898____6757" ,"Precompiled__RegExpMatch_0150898____6758" ,"Precompiled__StringMatch_0150898____6759" ,"Precompiled_AllocationStub__StringMatch_0150898_6760" ,"Precompiled__StringMatch_0150898_dyn____6761" ,"Precompiled__CastListBase_11040228____6762" ,"Precompiled_Expando____6763" ,"Precompiled__CustomZone_4048458____6764" ,"Precompiled__RootZone_4048458____6765" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832____6766" ,"Precompiled__CustomHashMap_3220832____6767" ,"Precompiled__IdentityHashMap_3220832____6768" ,"Precompiled__HashMap_3220832____6769" ,"Precompiled_CastMap____6770" ,"Precompiled_CodeUnits____6771" ,"Precompiled__TypedDataBuffer_489432058____6772" ,"Precompiled_MapView____6773" ,"Precompiled_SplayTreeMap____6774" ,"Precompiled_Iterable_get_single_6775" ,"Precompiled_RenderShiftedBox_computeDistanceToActualBaseline_6776" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_computeDistanceToActualBaseline_6777" ,"Precompiled_RenderOffstage_computeDistanceToActualBaseline_6778" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_computeDistanceToActualBaseline_6779" ,"Precompiled_RenderFlex_computeDistanceToActualBaseline_6780" ,"Precompiled__RenderDecoration_296019562_computeDistanceToActualBaseline_6781" ,"Precompiled_RenderEditable_computeDistanceToActualBaseline_6782" ,"Precompiled_RenderListBody_computeDistanceToActualBaseline_6783" ,"Precompiled_RenderParagraph_computeDistanceToActualBaseline_6784" ,"Precompiled_RenderStack_computeDistanceToActualBaseline_6785" ,"Precompiled__RenderTheatre_511319124_computeDistanceToActualBaseline_6786" ,"Precompiled_RenderCustomMultiChildLayoutBox_performLayout_6787" ,"Precompiled__ToolbarRenderBox_186300207_performLayout_6788" ,"Precompiled_RenderAnimatedSize_performLayout_6789" ,"Precompiled_RenderPositionedBox_performLayout_6790" ,"Precompiled__RenderInputPadding_252412912_performLayout_6791" ,"Precompiled__RenderMenuItem_310182389_performLayout_6792" ,"Precompiled_RenderPadding_performLayout_6793" ,"Precompiled_RenderCustomSingleChildLayoutBox_performLayout_6794" ,"Precompiled____positionDependentBox_6795" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_performLayout_6796" ,"Precompiled_RenderConstrainedBox_performLayout_6797" ,"Precompiled_RenderLimitedBox_performLayout_6798" ,"Precompiled_RenderIntrinsicWidth_performLayout_6799" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_423160605_performLayout_6800" ,"Precompiled__RenderCustomClip_423160605_performLayout_6801" ,"Precompiled_RenderOffstage_performLayout_6802" ,"Precompiled__RenderProxyBox_RenderBox_RenderObjectWithChildMixin_RenderProxyBoxMixin_423160605_performLayout_6803" ,"Precompiled__RenderSingleChildViewport_591426794_performLayout_6804" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_performLayout_6805" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_performLayout_6806" ,"Precompiled_RenderFlex_performLayout_6807" ,"Precompiled__RenderDecoration_296019562_performLayout_6808" ,"Precompiled_RenderEditable_performLayout_6809" ,"Precompiled_RenderImage_performLayout_6810" ,"Precompiled_RenderListBody_performLayout_6811" ,"Precompiled_RenderParagraph_performLayout_6812" ,"Precompiled_RenderStack_performLayout_6813" ,"Precompiled__RenderTheatre_511319124_performLayout_6814" ,"Precompiled_RenderViewport_performLayout_6815" ,"Precompiled_RenderShrinkWrappingViewport_performLayout_6816" ,"Precompiled_ColorSwatch____6817" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor_performLayout_6818" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor_computeMaxScrollOffset_6819" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor__calculateTrailingGarbage_429092230_6820" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor__calculateLeadingGarbage_429092230_6821" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor_getMaxChildIndexForScrollOffset_6822" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor_getMinChildIndexForScrollOffset_6823" ,"Precompiled_AllocationStub_RenderSliverFillViewport_6824" ,"Precompiled_RenderSliverFillViewport_set_viewportFraction_6825" ,"Precompiled_RenderSliverGrid_performLayout_6826" ,"Precompiled_RenderSliverList_performLayout_6827" ,"Precompiled_RenderSliverPadding_performLayout_6828" ,"Precompiled__RenderSliverFractionalPadding_580138684_performLayout_6829" ,"Precompiled__RenderSliverFractionalPadding_580138684__resolve_580138684_6830" ,"Precompiled_AllocationStub__RenderSliverFractionalPadding_580138684_6831" ,"Precompiled_AllocationStub__SliverFractionalPadding_580138684_6832" ,"Precompiled_AllocationStub__SliverFillViewportRenderObjectWidget_580138684_6833" ,"Precompiled_AllocationStub_SliverFillViewport_6834" ,"Precompiled__RenderSliverFractionalPadding_580138684__markNeedsResolution_580138684_6835" ,"Precompiled__RenderSliverFractionalPadding_580138684_set_viewportFraction_6836" ,"Precompiled_RenderView_performLayout_6837" ,"Precompiled_DocumentSnapshot____6838" ,"Precompiled_DocumentSnapshotPlatform____6839" ,"Precompiled_RenderBox_markNeedsLayout_6840" ,"Precompiled_TextPainter_computeDistanceToActualBaseline_6841" ,"Precompiled__ScaffoldLayout_319420462_performLayout_6842" ,"Precompiled__ToolbarLayout_576023576_performLayout_6843" ,"Precompiled_RenderObject_markNeedsLayout_6844" ,"Precompiled_ListIterable_fold_6845" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_fold_6846" ,"Precompiled_Iterable_fold_6847" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_applyPaintTransform_6848" ,"Precompiled_RenderTransform_applyPaintTransform_6849" ,"Precompiled_RenderFractionalTranslation_applyPaintTransform_6850" ,"Precompiled_RenderFollowerLayer_applyPaintTransform_6851" ,"Precompiled__RenderSingleChildViewport_591426794_applyPaintTransform_6852" ,"Precompiled__RenderDecoration_296019562_applyPaintTransform_6853" ,"Precompiled_RenderBox_applyPaintTransform_6854" ,"Precompiled_RenderViewport_applyPaintTransform_6855" ,"Precompiled_RenderShrinkWrappingViewport_applyPaintTransform_6856" ,"Precompiled_RenderSliverMultiBoxAdaptor_applyPaintTransform_6857" ,"Precompiled_RenderSliverEdgeInsetsPadding_applyPaintTransform_6858" ,"Precompiled_RenderView_applyPaintTransform_6859" ,"Precompiled_TextPainter_markNeedsLayout_6860" ,"Precompiled_ListQueue_get_last_6861" ,"Precompiled_LinkedList_get_last_6862" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_last_6863" ,"Precompiled_Iterable_get_last_6864" ,"Precompiled_AllocationStub_WhereIterator_6865" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_lastIndexWhere_6866" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_lastIndexWhere_6867" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_lastIndexWhere_6868" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_lastIndexWhere_6869" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_lastIndexWhere_6870" ,"Precompiled_IconButton_get_constraints_6871" ,"Precompiled__ContainerSemanticsFragment_419266271_addAll_6872" ,"Precompiled__RootSemanticsFragment_419266271_addAll_6873" ,"Precompiled__SwitchableSemanticsFragment_419266271_addAll_6874" ,"Precompiled_Container_get_constraints_6875" ,"Precompiled__ListBase_Object_ListMixin_3220832_lastIndexWhere_6876" ,"Precompiled_RawMaterialButton_get_constraints_6877" ,"Precompiled_ListIterable_skipWhile_6878" ,"Precompiled_Iterable_skipWhile_6879" ,"Precompiled_AllocationStub_SkipWhileIterable_6880" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_last_6881" ,"Precompiled_SliverPhysicalParentData_applyPaintTransform_6882" ,"Precompiled_CustomPaint_didUnmountRenderObject_6883" ,"Precompiled_ClipRect_didUnmountRenderObject_6884" ,"Precompiled_CustomPainter_get_hitTest_6885" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_toSet_6886" ,"Precompiled_Iterable_toSet_6887" ,"Precompiled_ButtonThemeData_get_constraints_6888" ,"Precompiled__Vector_226188158____6889" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_addAll_6890" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_addAll_6891" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_addAll_6892" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_addAll_6893" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_addAll_6894" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_addAll_6895" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_addAll_6896" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_addAll_6897" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_addAll_6898" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_addAll_6899" ,"Precompiled__CompactLinkedIdentityHashSet_3220832_toSet_6900" ,"Precompiled__CompactLinkedCustomHashSet_3220832_toSet_6901" ,"Precompiled__CompactLinkedHashSet_3220832_toSet_6902" ,"Precompiled_UnmodifiableListBase_addAll_6903" ,"Precompiled_FixedLengthListBase_addAll_6904" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_addAll_6905" ,"Precompiled__GrowableList_0150898_addAll_6906" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_handleEvent_6907" ,"Precompiled_RenderBox_get_constraints_6908" ,"Precompiled_Decoration_hitTest_6909" ,"Precompiled_BoxDecoration_hitTest_6910" ,"Precompiled_RenderSliver_get_constraints_6911" ,"Precompiled_RenderObject_get_constraints_6912" ,"Precompiled_RenderPointerListener_handleEvent_6913" ,"Precompiled_RenderEditable_handleEvent_6914" ,"Precompiled_RenderParagraph_handleEvent_6915" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_hitTest_6916" ,"Precompiled_RenderBox_handleEvent_6917" ,"Precompiled_Decoration_get_hitTest_6918" ,"Precompiled_BoxDecoration_get_hitTest_6919" ,"Precompiled_RenderSliver_handleEvent_6920" ,"Precompiled_ForcePressGestureRecognizer_handleEvent_6921" ,"Precompiled_PrimaryPointerGestureRecognizer_handleEvent_6922" ,"Precompiled_DragGestureRecognizer_handleEvent_6923" ,"Precompiled__RenderInputPadding_252412912_hitTest_6924" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_hitTest_6925" ,"Precompiled_RenderClipRect_hitTest_6926" ,"Precompiled_RenderPhysicalModel_hitTest_6927" ,"Precompiled_RenderPhysicalShape_hitTest_6928" ,"Precompiled_RenderTransform_hitTest_6929" ,"Precompiled_RenderFractionalTranslation_hitTest_6930" ,"Precompiled_RenderIgnorePointer_hitTest_6931" ,"Precompiled_RenderAbsorbPointer_hitTest_6932" ,"Precompiled_RenderFollowerLayer_hitTest_6933" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_509399801_get_hitTest_6934" ,"Precompiled_RenderBox_hitTest_6935" ,"Precompiled_RenderSliver_hitTest_6936" ,"Precompiled_RenderView_hitTest_6937" ,"Precompiled_UninitializedLocaleData____6938" ,"Precompiled__RenderInputPadding_252412912_get_hitTest_6939" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_get_hitTest_6940" ,"Precompiled_RenderClipRect_get_hitTest_6941" ,"Precompiled_RenderPhysicalModel_get_hitTest_6942" ,"Precompiled_RenderPhysicalShape_get_hitTest_6943" ,"Precompiled_RenderTransform_get_hitTest_6944" ,"Precompiled_RenderFractionalTranslation_get_hitTest_6945" ,"Precompiled_RenderIgnorePointer_get_hitTest_6946" ,"Precompiled_RenderOffstage_get_hitTest_6947" ,"Precompiled_RenderAbsorbPointer_get_hitTest_6948" ,"Precompiled_RenderFollowerLayer_get_hitTest_6949" ,"Precompiled_RenderBox_get_hitTest_6950" ,"Precompiled_RenderSliver_get_hitTest_6951" ,"Precompiled_RenderView_get_hitTest_6952" ,"Precompiled_Matrix4____6953" ,"Precompiled__ExternalFloat64x2Array_7027147____6954" ,"Precompiled__Float64x2ArrayView_7027147____6955" ,"Precompiled__Float64x2List_7027147____6956" ,"Precompiled__ExternalInt32x4Array_7027147____6957" ,"Precompiled__Int32x4ArrayView_7027147____6958" ,"Precompiled__Int32x4List_7027147____6959" ,"Precompiled__ExternalFloat32x4Array_7027147____6960" ,"Precompiled__Float32x4ArrayView_7027147____6961" ,"Precompiled__Float32x4List_7027147____6962" ,"Precompiled__ExternalFloat64Array_7027147____6963" ,"Precompiled__Float64ArrayView_7027147____6964" ,"Precompiled__Float64List_7027147____6965" ,"Precompiled__ExternalFloat32Array_7027147____6966" ,"Precompiled__Float32ArrayView_7027147____6967" ,"Precompiled__Float32List_7027147____6968" ,"Precompiled__ExternalUint64Array_7027147____6969" ,"Precompiled__Uint64ArrayView_7027147____6970" ,"Precompiled__Uint64List_7027147____6971" ,"Precompiled__ExternalInt64Array_7027147____6972" ,"Precompiled__Int64ArrayView_7027147____6973" ,"Precompiled__ExternalUint32Array_7027147____6974" ,"Precompiled__Uint32ArrayView_7027147____6975" ,"Precompiled__Uint32List_7027147____6976" ,"Precompiled__ExternalInt32Array_7027147____6977" ,"Precompiled__Int32ArrayView_7027147____6978" ,"Precompiled__Int32List_7027147____6979" ,"Precompiled__ExternalUint16Array_7027147____6980" ,"Precompiled__Uint16ArrayView_7027147____6981" ,"Precompiled__Uint16List_7027147____6982" ,"Precompiled__ExternalInt16Array_7027147____6983" ,"Precompiled__Int16ArrayView_7027147____6984" ,"Precompiled__Int16List_7027147____6985" ,"Precompiled__ExternalUint8ClampedArray_7027147____6986" ,"Precompiled__Uint8ClampedArrayView_7027147____6987" ,"Precompiled__Uint8ClampedList_7027147____6988" ,"Precompiled__ExternalInt8Array_7027147____6989" ,"Precompiled__Int8ArrayView_7027147____6990" ,"Precompiled__Int8List_7027147____6991" ,"Precompiled__StringBase_0150898____6992" ,"Precompiled__ImmutableList_0150898____6993" ,"Precompiled__List_0150898____6994" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832____6995" ,"Precompiled__GrowableList_0150898____6996" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_redepthChildren_6997" ,"Precompiled__GrowableList_0150898_get_single_6998" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_426204652_redepthChildren_6999" ,"Precompiled__BigIntImpl_0150898___7000" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_redepthChildren_7001" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_redepthChildren_7002" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_redepthChildren_7003" ,"Precompiled__RenderDecoration_296019562_redepthChildren_7004" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_redepthChildren_7005" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_redepthChildren_7006" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_redepthChildren_7007" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_redepthChildren_7008" ,"Precompiled_RenderSliverMultiBoxAdaptor_redepthChildren_7009" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_510016527_redepthChildren_7010" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_440268214_redepthChildren_7011" ,"Precompiled_SemanticsNode_redepthChildren_7012" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_get_widget_7013" ,"Precompiled__RenderDecorationElement_296019562_get_widget_7014" ,"Precompiled__TheatreElement_511319124_get_widget_7015" ,"Precompiled__ViewportElement_581166613_get_widget_7016" ,"Precompiled_MultiChildRenderObjectElement_get_widget_7017" ,"Precompiled__OffstageElement_480167661_get_widget_7018" ,"Precompiled_SingleChildRenderObjectElement_get_widget_7019" ,"Precompiled_RenderObjectToWidgetElement_get_widget_7020" ,"Precompiled_RenderObjectElement_get_widget_7021" ,"Precompiled_SliverMultiBoxAdaptorElement_get_widget_7022" ,"Precompiled_StatelessElement_get_widget_7023" ,"Precompiled_Element_get_widget_7024" ,"Precompiled_ParentDataElement_get_widget_7025" ,"Precompiled__InheritedNotifierElement_552313948_get_widget_7026" ,"Precompiled_InheritedElement_get_widget_7027" ,"Precompiled_Duration___7028" ,"Precompiled_PageController_attach_7029" ,"Precompiled_ScrollController_attach_7030" ,"Precompiled_State_get_widget_7031" ,"Precompiled_RenderCustomMultiChildLayoutBox_attach_7032" ,"Precompiled_RenderCustomSingleChildLayoutBox_attach_7033" ,"Precompiled_RenderCustomPaint_attach_7034" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_attach_7035" ,"Precompiled__RenderCustomClip_423160605_attach_7036" ,"Precompiled_RenderMouseRegion_attach_7037" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_426204652_attach_7038" ,"Precompiled__RenderSingleChildViewport_591426794_attach_7039" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_attach_7040" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_attach_7041" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_attach_7042" ,"Precompiled__RenderDecoration_296019562_attach_7043" ,"Precompiled_RenderEditable_attach_7044" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_attach_7045" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin_420149678_attach_7046" ,"Precompiled_RenderObject_attach_7047" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_attach_7048" ,"Precompiled_RenderViewportBase_attach_7049" ,"Precompiled_RenderSliverMultiBoxAdaptor_attach_7050" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_510016527_attach_7051" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_440268214_attach_7052" ,"Precompiled_LeaderLayer_attach_7053" ,"Precompiled_ContainerLayer_attach_7054" ,"Precompiled_SemanticsNode_attach_7055" ,"Precompiled_ListQueue_get_first_7056" ,"Precompiled_LinkedList_get_first_7057" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_first_7058" ,"Precompiled_Iterable_get_first_7059" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_fold_7060" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_fold_7061" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_fold_7062" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_fold_7063" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_fold_7064" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_fold_7065" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_fold_7066" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_fold_7067" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_fold_7068" ,"Precompiled_ListQueue_toList_7069" ,"Precompiled_SubListIterable_toList_7070" ,"Precompiled_ListIterable_toList_7071" ,"Precompiled_EmptyIterable_toList_7072" ,"Precompiled_AllocationStub_EmptyIterable_7073" ,"Precompiled_EmptyIterable_contains_contains_7074" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_toList_7075" ,"Precompiled_Iterable_toList_7076" ,"Precompiled__ListBase_Object_ListMixin_3220832_fold_7077" ,"Precompiled_Offset___7078" ,"Precompiled_Size___7079" ,"Precompiled_Radius___7080" ,"Precompiled__CompactLinkedHashSet_3220832_get_first_7081" ,"Precompiled__BigIntImpl_0150898___7082" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_first_7083" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_last_7084" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_last_7085" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_last_7086" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_last_7087" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_last_7088" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_last_7089" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_last_7090" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_last_7091" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_last_7092" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_get_last_7093" ,"Precompiled__SetBase_3220832_toList_7094" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228___7095" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_toList_7096" ,"Precompiled__ImmutableList_0150898_get_last_7097" ,"Precompiled__TimerHeap_1026248_get_first_7098" ,"Precompiled_Duration___7099" ,"Precompiled__ListBase_Object_ListMixin_3220832_toList_7100" ,"Precompiled__GrowableList_0150898_get_last_7101" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_toList_7102" ,"Precompiled_FocusNode_attach_7103" ,"Precompiled_RenderObjectElement_deactivate_7104" ,"Precompiled_StatefulElement_deactivate_7105" ,"Precompiled_Element_deactivate_7106" ,"Precompiled__InkResponseState_294059085_deactivate_7107" ,"Precompiled_AllocationStub__HashSetIterator_3220832_7108" ,"Precompiled__TooltipState_346220820_deactivate_7109" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_559183791_deactivate_7110" ,"Precompiled__FocusState_515492240_deactivate_7111" ,"Precompiled_HeapPriorityQueue_get_first_7112" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_toSet_7113" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_toSet_7114" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_toSet_7115" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_toSet_7116" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_toSet_7117" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_toSet_7118" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_toSet_7119" ,"Precompiled_Offset___7120" ,"Precompiled_Size___7121" ,"Precompiled_Radius___7122" ,"Precompiled__ListBase_Object_ListMixin_3220832_toSet_7123" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_visitChildren_7124" ,"Precompiled__RenderDecorationElement_296019562_visitChildren_7125" ,"Precompiled_MultiChildRenderObjectElement_visitChildren_7126" ,"Precompiled_SingleChildRenderObjectElement_visitChildren_7127" ,"Precompiled_RenderObjectToWidgetElement_visitChildren_7128" ,"Precompiled_SliverMultiBoxAdaptorElement_visitChildren_7129" ,"Precompiled_AllocationStub__SplayTreeValueIterable_3220832_7130" ,"Precompiled_ComponentElement_visitChildren_7131" ,"Precompiled_TextSpan_visitChildren_7132" ,"Precompiled_ListIterable_where_7133" ,"Precompiled_EmptyIterable_where_7134" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_where_7135" ,"Precompiled__BigIntImpl_0150898_compareTo_7136" ,"Precompiled__SemanticsSortGroup_450082469_compareTo_7137" ,"Precompiled_DateTime_compareTo_7138" ,"Precompiled_Duration_compareTo_7139" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_where_7140" ,"Precompiled_InkHighlight_deactivate_7141" ,"Precompiled_SubListIterable_skip_7142" ,"Precompiled_ListIterable_skip_7143" ,"Precompiled_EmptyIterable_skip_7144" ,"Precompiled__CastIterableBase_11040228_skip_7145" ,"Precompiled_EfficientLengthSkipIterable_skip_7146" ,"Precompiled_AllocationStub_EfficientLengthSkipIterable_7147" ,"Precompiled_AllocationStub_SkipIterable_7148" ,"Precompiled_SkipIterable_SkipIterable__7149" ,"Precompiled_EfficientLengthSkipIterable_EfficientLengthSkipIterable__7150" ,"Precompiled_SkipIterable_skip_7151" ,"Precompiled_Iterable_skip_7152" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_visitChildren_7153" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_426204652_visitChildren_7154" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_visitChildren_7155" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_visitChildren_7156" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_visitChildren_7157" ,"Precompiled__RenderDecoration_296019562_visitChildren_7158" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_visitChildren_7159" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_visitChildren_7160" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_visitChildren_7161" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_visitChildren_7162" ,"Precompiled_RenderSliverMultiBoxAdaptor_visitChildren_7163" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_510016527_visitChildren_7164" ,"Precompiled_SemanticsNode_visitChildren_7165" ,"Precompiled_OffsetPair___7166" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_skip_7167" ,"Precompiled_Velocity___7168" ,"Precompiled__SyncIterable_0150898_get_iterator_7169" ,"Precompiled__AllMatchesIterable_0150898_get_iterator_7170" ,"Precompiled__ImmutableMapKeyIterable_0150898_get_iterator_7171" ,"Precompiled_AllocationStub__ImmutableMapKeyIterator_0150898_7172" ,"Precompiled_AllocationStub__ImmutableMapKeyIterable_0150898_7173" ,"Precompiled__ImmutableMapValueIterable_0150898_get_iterator_7174" ,"Precompiled_AllocationStub__ImmutableMapValueIterator_0150898_7175" ,"Precompiled_AllocationStub__ImmutableMapValueIterable_0150898_7176" ,"Precompiled__HashMapKeyIterable_3220832_get_iterator_7177" ,"Precompiled_AllocationStub__HashMapKeyIterator_3220832_7178" ,"Precompiled_AllocationStub__HashMapKeyIterable_3220832_7179" ,"Precompiled__HashMapKeyIterable_3220832_contains_contains_7180" ,"Precompiled__HashMapValueIterable_3220832_get_iterator_7181" ,"Precompiled_AllocationStub__HashMapValueIterator_3220832_7182" ,"Precompiled_AllocationStub__HashMapValueIterable_3220832_7183" ,"Precompiled__HashMapValueIterable_3220832_contains_contains_7184" ,"Precompiled_ListQueue_get_iterator_7185" ,"Precompiled_AllocationStub__ListQueueIterator_3220832_7186" ,"Precompiled_ListIterable_get_iterator_7187" ,"Precompiled__SplayTreeKeyIterable_3220832_get_iterator_7188" ,"Precompiled__SplayTreeIterator_3220832__SplayTreeIterator_3220832__7189" ,"Precompiled__SplayTreeIterator_3220832__rebuildWorkList_3220832_7190" ,"Precompiled_AllocationStub__SplayTreeKeyIterator_3220832_7191" ,"Precompiled_AllocationStub__SplayTreeKeyIterable_3220832_7192" ,"Precompiled__SplayTreeValueIterable_3220832_get_iterator_7193" ,"Precompiled_AllocationStub__SplayTreeValueIterator_3220832_7194" ,"Precompiled_EmptyIterable_get_iterator_7195" ,"Precompiled__StringAllMatchesIterable_0150898_get_iterator_7196" ,"Precompiled_AllocationStub__StringAllMatchesIterator_0150898_7197" ,"Precompiled_AllocationStub__StringAllMatchesIterable_0150898_7198" ,"Precompiled_Runes_get_iterator_7199" ,"Precompiled__CompactIterable_3220832_get_iterator_7200" ,"Precompiled__CompactIterator_3220832__CompactIterator_3220832__7201" ,"Precompiled_AllocationStub__CompactIterator_3220832_7202" ,"Precompiled_LinkedList_get_iterator_7203" ,"Precompiled_AllocationStub__LinkedListIterator_3220832_7204" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_iterator_7205" ,"Precompiled__CastIterableBase_11040228_get_iterator_7206" ,"Precompiled_AllocationStub_CastIterator_7207" ,"Precompiled_MappedIterable_get_iterator_7208" ,"Precompiled_AllocationStub_MappedIterable_7209" ,"Precompiled_MappedIterable_MappedIterable__7210" ,"Precompiled_AllocationStub_EfficientLengthMappedIterable_7211" ,"Precompiled_WhereIterable_get_iterator_7212" ,"Precompiled_ExpandIterable_get_iterator_7213" ,"Precompiled_AllocationStub_ExpandIterator_7214" ,"Precompiled_SkipIterable_get_iterator_7215" ,"Precompiled_AllocationStub_SkipIterator_7216" ,"Precompiled_SkipWhileIterable_get_iterator_7217" ,"Precompiled_AllocationStub_SkipWhileIterator_7218" ,"Precompiled_WhereTypeIterable_get_iterator_7219" ,"Precompiled_ObserverList_get_iterator_7220" ,"Precompiled_HashedObserverList_get_iterator_7221" ,"Precompiled_Alignment___7222" ,"Precompiled_AlignmentDirectional___7223" ,"Precompiled_BorderRadius___7224" ,"Precompiled__DelegatingIterableBase_113184915_where_7225" ,"Precompiled_EdgeInsets___7226" ,"Precompiled_EdgeInsetsDirectional___7227" ,"Precompiled_ListIterable_join_7228" ,"Precompiled_EmptyIterable_join_7229" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_join_7230" ,"Precompiled_Iterable_join_7231" ,"Precompiled__HashSet_3220832_get_iterator_7232" ,"Precompiled__CompactLinkedHashSet_3220832_get_iterator_7233" ,"Precompiled_Timestamp_compareTo_7234" ,"Precompiled_AllocationStub_Timestamp_7235" ,"Precompiled_____check_76324729_7236" ,"Precompiled_Timestamp__validateRange_76324729_7237" ,"Precompiled_Priority___7238" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_iterator_7239" ,"Precompiled_SplayTreeSet_get_iterator_7240" ,"Precompiled_ListIterable_map_7241" ,"Precompiled_EmptyIterable_map_7242" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_map_7243" ,"Precompiled_WhereIterable_map_7244" ,"Precompiled_Iterable_map_7245" ,"Precompiled__SetBase_3220832_join_7246" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_join_7247" ,"Precompiled__DelegatingIterableBase_113184915_skip_7248" ,"Precompiled_Stream_map_7249" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_join_7250" ,"Precompiled__SetBase_3220832_map_7251" ,"Precompiled_DisposableBuildContext_get_context_7252" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_map_7253" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_map_7254" ,"Precompiled_OffsetPair___7255" ,"Precompiled_TextSelection_copyWith_7256" ,"Precompiled_Velocity___7257" ,"Precompiled_ShapeBorder___7258" ,"Precompiled_Style_get_context_7259" ,"Precompiled_Context_Context__7260" ,"Precompiled_AllocationStub_Context_7261" ,"Precompiled_____validateArgList_617448123_7262" ,"Precompiled_____parseUri_617448123_7263" ,"Precompiled____createInternal_7264" ,"Precompiled_Style_init_platform_7265" ,"Precompiled_Style__getPlatformStyle_618105565_7266" ,"Precompiled_Style_init_posix_7267" ,"Precompiled_PosixStyle_PosixStyle__7268" ,"Precompiled_InternalStyle_getRoot_7269" ,"Precompiled_AllocationStub_UrlStyle_7270" ,"Precompiled_UrlStyle_UrlStyle__7271" ,"Precompiled_AllocationStub_WindowsStyle_7272" ,"Precompiled_WindowsStyle_WindowsStyle__7273" ,"Precompiled_AllocationStub_PosixStyle_7274" ,"Precompiled_Style_init_windows_7275" ,"Precompiled_Style_init_url_7276" ,"Precompiled_Context__parse_617448123_7277" ,"Precompiled_ParsedPath_ParsedPath_parse_7278" ,"Precompiled_AllocationStub_ParsedPath_7279" ,"Precompiled_ParsedPath_normalize_7280" ,"Precompiled_ParsedPath_removeTrailingSeparators_7281" ,"Precompiled_ParsedPath_get_hasTrailingSeparator_7282" ,"Precompiled_Context_joinAll_7283" ,"Precompiled_Context_prettyUri_7284" ,"Precompiled_Context_relative_7285" ,"Precompiled_Context_absolute_7286" ,"Precompiled_Context_isAbsolute_7287" ,"Precompiled_Context_isRelative_7288" ,"Precompiled_Context_normalize_7289" ,"Precompiled_Context__needsNormalization_617448123_7290" ,"Precompiled_Context_fromUri_7291" ,"Precompiled_Context_toUri_7292" ,"Precompiled____get_current_7293" ,"Precompiled____absolute_7294" ,"Precompiled____prettyUri_7295" ,"Precompiled____init_windows_7296" ,"Precompiled____toUri_7297" ,"Precompiled____init_context_7298" ,"Precompiled____fromUri_7299" ,"Precompiled__DelegatingIterableBase_113184915_get_iterator_7300" ,"Precompiled_ECFieldElement___7301" ,"Precompiled_ECPoint___7302" ,"Precompiled_Path_get_contains_7303" ,"Precompiled_Alignment___7304" ,"Precompiled_AlignmentDirectional___7305" ,"Precompiled_BorderRadius___7306" ,"Precompiled_Matrix4___7307" ,"Precompiled_Vector3___7308" ,"Precompiled_Vector4___7309" ,"Precompiled_EdgeInsets___7310" ,"Precompiled_EdgeInsetsDirectional___7311" ,"Precompiled_TextSpan_compareTo_7312" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_get_handleEvent_7313" ,"Precompiled__HashMapKeyIterable_3220832_get_contains_7314" ,"Precompiled__HashMapValueIterable_3220832_get_contains_7315" ,"Precompiled_ListIterable_get_contains_7316" ,"Precompiled_EmptyIterable_get_contains_7317" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_contains_7318" ,"Precompiled__CastIterableBase_11040228_get_contains_7319" ,"Precompiled__DelegatingIterableBase_113184915_join_7320" ,"Precompiled_Iterable_get_contains_7321" ,"Precompiled_ObserverList_get_contains_7322" ,"Precompiled_HashedObserverList_get_contains_7323" ,"Precompiled__Float64x2_7027147___7324" ,"Precompiled__Int32x4_7027147___7325" ,"Precompiled__Float32x4_7027147___7326" ,"Precompiled__Double_0150898___7327" ,"Precompiled__IntegerImplementation_0150898___7328" ,"Precompiled_RenderPointerListener_get_handleEvent_7329" ,"Precompiled_Priority___7330" ,"Precompiled_RenderEditable_get_handleEvent_7331" ,"Precompiled__DelegatingIterableBase_113184915_map_7332" ,"Precompiled_RenderParagraph_get_handleEvent_7333" ,"Precompiled_TextStyle_compareTo_7334" ,"Precompiled_RenderBox_get_handleEvent_7335" ,"Precompiled_SemanticsSortKey_compareTo_7336" ,"Precompiled__CustomHashSet_3220832_get_contains_7337" ,"Precompiled__HashSet_3220832_get_contains_7338" ,"Precompiled_RenderSliver_get_handleEvent_7339" ,"Precompiled_RenderObject_get_handleEvent_7340" ,"Precompiled__CompactLinkedCustomHashSet_3220832_get_contains_7341" ,"Precompiled__CompactLinkedHashSet_3220832_get_contains_7342" ,"Precompiled__CompactLinkedHashSet_3220832_contains_contains_7343" ,"Precompiled_ForcePressGestureRecognizer_get_handleEvent_7344" ,"Precompiled_PrimaryPointerGestureRecognizer_get_handleEvent_7345" ,"Precompiled_DragGestureRecognizer_get_handleEvent_7346" ,"Precompiled_SplayTreeSet_get_contains_7347" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_first_7348" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_first_7349" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_first_7350" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_first_7351" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_first_7352" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_first_7353" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_first_7354" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_first_7355" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_first_7356" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_get_first_7357" ,"Precompiled_Path_contains_7358" ,"Precompiled__ImmutableList_0150898_get_first_7359" ,"Precompiled__GrowableList_0150898_get_first_7360" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_toList_7361" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_toList_7362" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_toList_7363" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_toList_7364" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_toList_7365" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_toList_7366" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_toList_7367" ,"Precompiled__HashMapKeyIterable_3220832_contains_7368" ,"Precompiled__HashMapValueIterable_3220832_contains_7369" ,"Precompiled_ListIterable_contains_7370" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_contains_7371" ,"Precompiled__ImmutableList_0150898_toList_7372" ,"Precompiled__List_0150898_toList_7373" ,"Precompiled__CastIterableBase_11040228_contains_7374" ,"Precompiled_Iterable_contains_7375" ,"Precompiled_ObserverList_contains_7376" ,"Precompiled_HashedObserverList_contains_7377" ,"Precompiled_CupertinoIconThemeData_copyWith_7378" ,"Precompiled_IconThemeData_copyWith_7379" ,"Precompiled_Size_get_contains_7380" ,"Precompiled_Rect_get_contains_7381" ,"Precompiled_RRect_get_contains_7382" ,"Precompiled__GrowableList_0150898_toList_7383" ,"Precompiled_ECFieldElement___7384" ,"Precompiled_ECPoint___7385" ,"Precompiled_ButtonThemeData_copyWith_7386" ,"Precompiled_ColorScheme_copyWith_7387" ,"Precompiled_TextTheme_copyWith_7388" ,"Precompiled_ThemeData_copyWith_7389" ,"Precompiled_Matrix4___7390" ,"Precompiled_Vector3___7391" ,"Precompiled_Vector4___7392" ,"Precompiled_TextStyle_copyWith_7393" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147___7394" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147___7395" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147___7396" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147___7397" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147___7398" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147___7399" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147___7400" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147___7401" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147___7402" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147___7403" ,"Precompiled__CustomHashSet_3220832_contains_7404" ,"Precompiled__HashSet_3220832_contains_7405" ,"Precompiled__DelegatingIterableBase_113184915_get_contains_7406" ,"Precompiled__StringBase_0150898___7407" ,"Precompiled__CompactLinkedCustomHashSet_3220832_contains_7408" ,"Precompiled__CompactLinkedHashSet_3220832_contains_7409" ,"Precompiled__CompactLinkedHashSet_3220832__getKeyOrData_3220832_7410" ,"Precompiled__Float64x2_7027147___7411" ,"Precompiled__Int32x4_7027147___7412" ,"Precompiled__Float32x4_7027147___7413" ,"Precompiled__ListBase_Object_ListMixin_3220832___7414" ,"Precompiled__Double_0150898___7415" ,"Precompiled__IntegerImplementation_0150898___7416" ,"Precompiled__ImmutableMap_0150898_get_isNotEmpty_7417" ,"Precompiled_SplayTreeSet_contains_7418" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_isNotEmpty_7419" ,"Precompiled_ObserverList_get_isNotEmpty_7420" ,"Precompiled_Iterable_get_isNotEmpty_7421" ,"Precompiled__TextSelectionHandlePainter_186300207_paint_7422" ,"Precompiled__InputBorderPainter_296019562_paint_7423" ,"Precompiled__ShapeBorderPainter_298372823_paint_7424" ,"Precompiled__CircularProgressIndicatorPainter_312243954_paint_7425" ,"Precompiled__TextSelectionHandlePainter_337283233_paint_7426" ,"Precompiled__GlowingOverscrollIndicatorPainter_583442496_paint_7427" ,"Precompiled__BoxEdge_450082469_compareTo_7428" ,"Precompiled__TraversalSortNode_450082469_compareTo_7429" ,"Precompiled__ImmutableMap_0150898_get_isEmpty_7430" ,"Precompiled__CupertinoEdgeShadowPainter_177053933_paint_7431" ,"Precompiled__BoxDecorationPainter_358196095_paint_7432" ,"Precompiled__HashMapIterable_3220832_get_isEmpty_7433" ,"Precompiled_ListQueue_get_isEmpty_7434" ,"Precompiled_ListIterable_get_isEmpty_7435" ,"Precompiled__CompactIterable_3220832_get_isEmpty_7436" ,"Precompiled_LinkedList_get_isEmpty_7437" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_get_isEmpty_7438" ,"Precompiled__CastIterableBase_11040228_get_isEmpty_7439" ,"Precompiled_MappedIterable_get_isEmpty_7440" ,"Precompiled_Iterable_get_isEmpty_7441" ,"Precompiled_ObserverList_get_isEmpty_7442" ,"Precompiled_HashedObserverList_get_isEmpty_7443" ,"Precompiled__HashSet_3220832_get_isNotEmpty_7444" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_isNotEmpty_7445" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_get_isNotEmpty_7446" ,"Precompiled_Size_contains_7447" ,"Precompiled_Rect_contains_7448" ,"Precompiled_RRect_contains_7449" ,"Precompiled__HashMap_3220832_get_isNotEmpty_7450" ,"Precompiled_CastMap_get_isNotEmpty_7451" ,"Precompiled_SplayTreeMap_get_isNotEmpty_7452" ,"Precompiled_InputDecoration_copyWith_7453" ,"Precompiled__IterablePendingEvents_4048458_get_isEmpty_7454" ,"Precompiled_AllocationStub__IterablePendingEvents_4048458_7455" ,"Precompiled__StreamImplEvents_4048458_get_isEmpty_7456" ,"Precompiled_ScaffoldGeometry_copyWith_7457" ,"Precompiled__HashSet_3220832_get_isEmpty_7458" ,"Precompiled__SetBase_3220832_get_isEmpty_7459" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_isEmpty_7460" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_get_isEmpty_7461" ,"Precompiled_EdgeInsets_copyWith_7462" ,"Precompiled__DelegatingIterableBase_113184915_contains_7463" ,"Precompiled__HashMap_3220832_get_isEmpty_7464" ,"Precompiled_ImageConfiguration_copyWith_7465" ,"Precompiled_SplayTreeMap_get_isEmpty_7466" ,"Precompiled_BoxConstraints_copyWith_7467" ,"Precompiled_SliverConstraints_copyWith_7468" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_where_7469" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_where_7470" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_where_7471" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_where_7472" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_where_7473" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_where_7474" ,"Precompiled__ListBase_Object_ListMixin_3220832_where_7475" ,"Precompiled_TextEditingValue_copyWith_7476" ,"Precompiled__RingBuffer_16065589_get_isEmpty_7477" ,"Precompiled_Size_get_isEmpty_7478" ,"Precompiled_Rect_get_isEmpty_7479" ,"Precompiled_HeapPriorityQueue_get_isNotEmpty_7480" ,"Precompiled__StringBase_0150898_compareTo_7481" ,"Precompiled_MediaQueryData_copyWith_7482" ,"Precompiled__Double_0150898_compareTo_7483" ,"Precompiled__IntegerImplementation_0150898_compareTo_7484" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_skip_7485" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_skip_7486" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_skip_7487" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_skip_7488" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_skip_7489" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_skip_7490" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_skip_7491" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_skip_7492" ,"Precompiled__GlowController_583442496_paint_7493" ,"Precompiled__DelegatingIterableBase_113184915_get_isEmpty_7494" ,"Precompiled_RenderCustomMultiChildLayoutBox_paint_7495" ,"Precompiled__ToolbarRenderBox_186300207_paint_7496" ,"Precompiled_RenderAnimatedSize_paint_7497" ,"Precompiled_RenderShiftedBox_paint_7498" ,"Precompiled__RenderInkFeatures_298372823_paint_7499" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_paint_7500" ,"Precompiled_RenderCustomPaint_paint_7501" ,"Precompiled__RenderColoredBox_480167661_paint_7502" ,"Precompiled_RenderOpacity_paint_7503" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_paint_7504" ,"Precompiled_RenderClipRect_paint_7505" ,"Precompiled_RenderPhysicalModel_paint_7506" ,"Precompiled_RenderPhysicalShape_paint_7507" ,"Precompiled_RenderDecoratedBox_paint_7508" ,"Precompiled_RenderTransform_paint_7509" ,"Precompiled_RenderFractionalTranslation_paint_7510" ,"Precompiled_RenderMouseRegion_paint_7511" ,"Precompiled_RenderOffstage_paint_7512" ,"Precompiled_RenderLeaderLayer_paint_7513" ,"Precompiled_RenderFollowerLayer_paint_7514" ,"Precompiled_RenderAnnotatedRegion_paint_7515" ,"Precompiled__RenderSingleChildViewport_591426794_paint_7516" ,"Precompiled__RenderSingleChildViewport_591426794_paint_paintContents_7517" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_paint_7518" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_paint_7519" ,"Precompiled_RenderFlex_paint_7520" ,"Precompiled__RenderDecoration_296019562_paint_7521" ,"Precompiled_RenderEditable_paint_7522" ,"Precompiled_RenderErrorBox_paint_7523" ,"Precompiled_RenderImage_paint_7524" ,"Precompiled____paintImage_7525" ,"Precompiled____applyBoxFit_7526" ,"Precompiled_AllocationStub_FittedSizes_7527" ,"Precompiled_RenderListBody_paint_7528" ,"Precompiled_RenderParagraph_paint_7529" ,"Precompiled_RenderPerformanceOverlay_paint_7530" ,"Precompiled_RenderStack_paint_7531" ,"Precompiled__RenderTheatre_511319124_paint_7532" ,"Precompiled_RenderViewportBase_paint_7533" ,"Precompiled_RenderSliverMultiBoxAdaptor_paint_7534" ,"Precompiled_RenderSliverEdgeInsetsPadding_paint_7535" ,"Precompiled_RenderView_paint_7536" ,"Precompiled_Context_join_7537" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_iterator_7538" ,"Precompiled_AllocationStub__TypedListIterator_7027147_7539" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_iterator_7540" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_iterator_7541" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_iterator_7542" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_iterator_7543" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_iterator_7544" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_iterator_7545" ,"Precompiled_InputDecorator_get_isEmpty_7546" ,"Precompiled__ImmutableList_0150898_get_iterator_7547" ,"Precompiled__List_0150898_get_iterator_7548" ,"Precompiled__NoInputBorder_295401927_paint_7549" ,"Precompiled_UnderlineInputBorder_paint_7550" ,"Precompiled__GrowableList_0150898_get_iterator_7551" ,"Precompiled_CircleBorder_paint_7552" ,"Precompiled_AllocationStub_CircleBorder_7553" ,"Precompiled_RoundedRectangleBorder_paint_7554" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_paint_7555" ,"Precompiled_StadiumBorder_paint_7556" ,"Precompiled_AllocationStub_StadiumBorder_7557" ,"Precompiled_AllocationStub__StadiumToRoundedRectangleBorder_386467860_7558" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860__adjustBorderRadius_386467860_7559" ,"Precompiled_AllocationStub__StadiumToCircleBorder_386467860_7560" ,"Precompiled__StadiumToCircleBorder_386467860__adjustBorderRadius_386467860_7561" ,"Precompiled__StadiumToCircleBorder_386467860__adjustRect_386467860_7562" ,"Precompiled__StadiumToCircleBorder_386467860_paint_7563" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860_paint_7564" ,"Precompiled_Border_paint_7565" ,"Precompiled__TypedListBase_7027147_join_7566" ,"Precompiled__ListBase_Object_ListMixin_3220832_join_7567" ,"Precompiled_TextPainter_paint_7568" ,"Precompiled__GrowableList_0150898_join_7569" ,"Precompiled__GrowableList_0150898__joinWithSeparator_0150898_7570" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_map_7571" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_map_7572" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_map_7573" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_map_7574" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_map_7575" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_map_7576" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_map_7577" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_map_7578" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_map_7579" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_map_7580" ,"Precompiled__InputDecoratorState_296019562_get_isEmpty_7581" ,"Precompiled_Path_reset_7582" ,"Precompiled_ScrollController_detach_7583" ,"Precompiled__ListBase_Object_ListMixin_3220832_map_7584" ,"Precompiled_RenderCustomMultiChildLayoutBox_detach_7585" ,"Precompiled_RenderAnimatedSize_detach_7586" ,"Precompiled_RenderCustomSingleChildLayoutBox_detach_7587" ,"Precompiled_RenderCustomPaint_detach_7588" ,"Precompiled__RenderAnimatedOpacity_RenderProxyBox_RenderProxyBoxMixin_RenderAnimatedOpacityMixin_423160605_detach_7589" ,"Precompiled__RenderCustomClip_423160605_detach_7590" ,"Precompiled_RenderDecoratedBox_detach_7591" ,"Precompiled_RenderMouseRegion_detach_7592" ,"Precompiled_RenderFollowerLayer_detach_7593" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_426204652_detach_7594" ,"Precompiled__RenderSingleChildViewport_591426794_detach_7595" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_detach_7596" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_detach_7597" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_detach_7598" ,"Precompiled__RenderDecoration_296019562_detach_7599" ,"Precompiled_RenderEditable_detach_7600" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_detach_7601" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_RelayoutWhenSystemFontsChangeMixin_420149678_detach_7602" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_detach_7603" ,"Precompiled_RenderViewportBase_detach_7604" ,"Precompiled_Stopwatch_reset_7605" ,"Precompiled_RenderSliverMultiBoxAdaptor_detach_7606" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_510016527_detach_7607" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_440268214_detach_7608" ,"Precompiled_AbstractNode_detach_7609" ,"Precompiled_LeaderLayer_detach_7610" ,"Precompiled_ContainerLayer_detach_7611" ,"Precompiled_SemanticsNode_detach_7612" ,"Precompiled_CupertinoTextSelectionToolbar_createRenderObject_7613" ,"Precompiled__InputPadding_252412912_createRenderObject_7614" ,"Precompiled__InkFeatures_298372823_createRenderObject_7615" ,"Precompiled__MenuItem_310182389_createRenderObject_7616" ,"Precompiled__TextSelectionToolbarContainer_337283233_createRenderObject_7617" ,"Precompiled_AnimatedSize_createRenderObject_7618" ,"Precompiled_AnnotatedRegion_createRenderObject_7619" ,"Precompiled_Opacity_createRenderObject_7620" ,"Precompiled_CustomPaint_createRenderObject_7621" ,"Precompiled_ClipRect_createRenderObject_7622" ,"Precompiled_PhysicalModel_createRenderObject_7623" ,"Precompiled_PhysicalShape_createRenderObject_7624" ,"Precompiled_Transform_createRenderObject_7625" ,"Precompiled_CompositedTransformTarget_createRenderObject_7626" ,"Precompiled_CompositedTransformFollower_createRenderObject_7627" ,"Precompiled_FractionalTranslation_createRenderObject_7628" ,"Precompiled_Padding_createRenderObject_7629" ,"Precompiled_Align_createRenderObject_7630" ,"Precompiled_CustomSingleChildLayout_createRenderObject_7631" ,"Precompiled_SizedBox_createRenderObject_7632" ,"Precompiled_ConstrainedBox_createRenderObject_7633" ,"Precompiled_LimitedBox_createRenderObject_7634" ,"Precompiled_Offstage_createRenderObject_7635" ,"Precompiled_IntrinsicWidth_createRenderObject_7636" ,"Precompiled_SliverPadding_createRenderObject_7637" ,"Precompiled__PointerListener_480167661_createRenderObject_7638" ,"Precompiled__RawMouseRegion_480167661_createRenderObject_7639" ,"Precompiled_RepaintBoundary_createRenderObject_7640" ,"Precompiled_IgnorePointer_createRenderObject_7641" ,"Precompiled_AbsorbPointer_createRenderObject_7642" ,"Precompiled_Semantics_createRenderObject_7643" ,"Precompiled_MergeSemantics_createRenderObject_7644" ,"Precompiled_BlockSemantics_createRenderObject_7645" ,"Precompiled_ExcludeSemantics_createRenderObject_7646" ,"Precompiled_IndexedSemantics_createRenderObject_7647" ,"Precompiled_ColoredBox_createRenderObject_7648" ,"Precompiled_DecoratedBox_createRenderObject_7649" ,"Precompiled__GestureSemantics_548132872_createRenderObject_7650" ,"Precompiled__ScrollSemantics_531019050_createRenderObject_7651" ,"Precompiled__SingleChildViewport_591426794_createRenderObject_7652" ,"Precompiled__SliverFractionalPadding_580138684_createRenderObject_7653" ,"Precompiled_FadeTransition_createRenderObject_7654" ,"Precompiled__CupertinoTextSelectionToolbarItems_186300207_createRenderObject_7655" ,"Precompiled_Flex_createRenderObject_7656" ,"Precompiled_Scene_dispose_7657" ,"Precompiled__TextSelectionToolbarItems_337283233_createRenderObject_7658" ,"Precompiled_CustomMultiChildLayout_createRenderObject_7659" ,"Precompiled_ListBody_createRenderObject_7660" ,"Precompiled_Stack_createRenderObject_7661" ,"Precompiled_RichText_createRenderObject_7662" ,"Precompiled__Theatre_511319124_createRenderObject_7663" ,"Precompiled_Viewport_createRenderObject_7664" ,"Precompiled_ShrinkWrappingViewport_createRenderObject_7665" ,"Precompiled__Decorator_296019562_createRenderObject_7666" ,"Precompiled_RawImage_createRenderObject_7667" ,"Precompiled__Editable_559183791_createRenderObject_7668" ,"Precompiled_ErrorWidget_createRenderObject_7669" ,"Precompiled_PerformanceOverlay_createRenderObject_7670" ,"Precompiled_AllocationStub_PerformanceOverlay_7671" ,"Precompiled_RenderObjectToWidgetAdapter_createRenderObject_7672" ,"Precompiled__ImmutableMap_0150898_forEach_7673" ,"Precompiled_SliverList_createRenderObject_7674" ,"Precompiled_SliverGrid_createRenderObject_7675" ,"Precompiled__SliverFillViewportRenderObjectWidget_580138684_createRenderObject_7676" ,"Precompiled__HashMapKeyIterable_3220832_forEach_7677" ,"Precompiled__HashMapValueIterable_3220832_forEach_7678" ,"Precompiled_ListQueue_forEach_7679" ,"Precompiled_ListIterable_forEach_7680" ,"Precompiled_LinkedList_forEach_7681" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_forEach_7682" ,"Precompiled_Iterable_forEach_7683" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_contains_7684" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_contains_7685" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_contains_7686" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_contains_7687" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_contains_7688" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_contains_7689" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_contains_7690" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_contains_7691" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_contains_7692" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_get_contains_7693" ,"Precompiled__StringBase_0150898_get_contains_7694" ,"Precompiled__OneByteString_0150898_get_contains_7695" ,"Precompiled__OneByteString_0150898_contains_contains_7696" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_contains_7697" ,"Precompiled__SetBase_3220832_forEach_7698" ,"Precompiled__UnmodifiableSet_3220832__newSimilarSet_3220832__newSimilarSet_3220832_7699" ,"Precompiled__UnmodifiableSet_3220832__newSimilarSet_3220832_7700" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_forEach_7701" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_forEach_7702" ,"Precompiled__HashMap_3220832_forEach_7703" ,"Precompiled_CastMap_forEach_7704" ,"Precompiled__ListBase_Object_ListMixin_3220832_forEach_7705" ,"Precompiled_MapView_forEach_7706" ,"Precompiled_SplayTreeMap_forEach_7707" ,"Precompiled_AllocationStub__SplayTreeNodeIterator_3220832_7708" ,"Precompiled__SplayTreeSet__SplayTree_IterableMixin_SetMixin_3220832_forEach_7709" ,"Precompiled_CupertinoTextSelectionToolbar_updateRenderObject_7710" ,"Precompiled__InputPadding_252412912_updateRenderObject_7711" ,"Precompiled__InkFeatures_298372823_updateRenderObject_7712" ,"Precompiled__MenuItem_310182389_updateRenderObject_7713" ,"Precompiled__TextSelectionToolbarContainer_337283233_updateRenderObject_7714" ,"Precompiled_AnimatedSize_updateRenderObject_7715" ,"Precompiled_AnnotatedRegion_updateRenderObject_7716" ,"Precompiled_Opacity_updateRenderObject_7717" ,"Precompiled_CustomPaint_updateRenderObject_7718" ,"Precompiled_ClipRect_updateRenderObject_7719" ,"Precompiled_PhysicalModel_updateRenderObject_7720" ,"Precompiled_PhysicalShape_updateRenderObject_7721" ,"Precompiled_Transform_updateRenderObject_7722" ,"Precompiled_CompositedTransformTarget_updateRenderObject_7723" ,"Precompiled_CompositedTransformFollower_updateRenderObject_7724" ,"Precompiled_FractionalTranslation_updateRenderObject_7725" ,"Precompiled_Padding_updateRenderObject_7726" ,"Precompiled_Align_updateRenderObject_7727" ,"Precompiled_CustomSingleChildLayout_updateRenderObject_7728" ,"Precompiled_SizedBox_updateRenderObject_7729" ,"Precompiled_ConstrainedBox_updateRenderObject_7730" ,"Precompiled_LimitedBox_updateRenderObject_7731" ,"Precompiled_Offstage_updateRenderObject_7732" ,"Precompiled_IntrinsicWidth_updateRenderObject_7733" ,"Precompiled_SliverPadding_updateRenderObject_7734" ,"Precompiled__PointerListener_480167661_updateRenderObject_7735" ,"Precompiled__RawMouseRegion_480167661_updateRenderObject_7736" ,"Precompiled_IgnorePointer_updateRenderObject_7737" ,"Precompiled_AbsorbPointer_updateRenderObject_7738" ,"Precompiled_Semantics_updateRenderObject_7739" ,"Precompiled_BlockSemantics_updateRenderObject_7740" ,"Precompiled_ExcludeSemantics_updateRenderObject_7741" ,"Precompiled_IndexedSemantics_updateRenderObject_7742" ,"Precompiled_ColoredBox_updateRenderObject_7743" ,"Precompiled_DecoratedBox_updateRenderObject_7744" ,"Precompiled__GestureSemantics_548132872_updateRenderObject_7745" ,"Precompiled__ScrollSemantics_531019050_updateRenderObject_7746" ,"Precompiled__SingleChildViewport_591426794_updateRenderObject_7747" ,"Precompiled__SliverFractionalPadding_580138684_updateRenderObject_7748" ,"Precompiled_FadeTransition_updateRenderObject_7749" ,"Precompiled__CupertinoTextSelectionToolbarItems_186300207_updateRenderObject_7750" ,"Precompiled_Flex_updateRenderObject_7751" ,"Precompiled__TextSelectionToolbarItems_337283233_updateRenderObject_7752" ,"Precompiled_CustomMultiChildLayout_updateRenderObject_7753" ,"Precompiled_ListBody_updateRenderObject_7754" ,"Precompiled_Stack_updateRenderObject_7755" ,"Precompiled_RichText_updateRenderObject_7756" ,"Precompiled__Theatre_511319124_updateRenderObject_7757" ,"Precompiled_Viewport_updateRenderObject_7758" ,"Precompiled_ShrinkWrappingViewport_updateRenderObject_7759" ,"Precompiled__ImmutableMap_0150898_cast_7760" ,"Precompiled__Decorator_296019562_updateRenderObject_7761" ,"Precompiled_RawImage_updateRenderObject_7762" ,"Precompiled__Editable_559183791_updateRenderObject_7763" ,"Precompiled_PerformanceOverlay_updateRenderObject_7764" ,"Precompiled_FocusAttachment_detach_7765" ,"Precompiled_SliverGrid_updateRenderObject_7766" ,"Precompiled__SliverFillViewportRenderObjectWidget_580138684_updateRenderObject_7767" ,"Precompiled_ListQueue_cast_7768" ,"Precompiled_CastIterable_cast_7769" ,"Precompiled_CastList_cast_7770" ,"Precompiled_CastSet_cast_7771" ,"Precompiled_CastQueue_cast_7772" ,"Precompiled_Iterable_cast_7773" ,"Precompiled__Uri_0150898_resolve_7774" ,"Precompiled__SimpleUri_0150898_resolve_7775" ,"Precompiled_CastStream_cast_7776" ,"Precompiled_Stream_cast_7777" ,"Precompiled_Converter_cast_7778" ,"Precompiled_CastConverter_cast_7779" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_contains_7780" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_contains_7781" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_contains_7782" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_contains_7783" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_contains_7784" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_contains_7785" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_contains_7786" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_contains_7787" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_contains_7788" ,"Precompiled__SetBase_3220832_cast_7789" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin_3220832_cast_7790" ,"Precompiled__CompactLinkedIdentityHashSet_3220832_cast_7791" ,"Precompiled__CompactLinkedCustomHashSet_3220832_cast_7792" ,"Precompiled__CompactLinkedHashSet_3220832_cast_7793" ,"Precompiled__StringBase_0150898_contains_7794" ,"Precompiled__OneByteString_0150898_contains_7795" ,"Precompiled_MapMixin_cast_7796" ,"Precompiled_CastMap_cast_7797" ,"Precompiled_Register64List_fillRange_7798" ,"Precompiled___CastListBase__CastIterableBase_ListMixin_11040228_take_7799" ,"Precompiled__ListBase_Object_ListMixin_3220832_contains_7800" ,"Precompiled_UnmodifiableMapView_cast_7801" ,"Precompiled__DelegatingIterableBase_113184915_forEach_7802" ,"Precompiled__SplayTreeMap__SplayTree_MapMixin_3220832_cast_7803" ,"Precompiled_SplayTreeSet_cast_7804" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_fillRange_7805" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_fillRange_7806" ,"Precompiled_AnimationController_dispose_7807" ,"Precompiled_TrainHoppingAnimation_dispose_7808" ,"Precompiled__ListBase_Object_ListMixin_3220832_fillRange_7809" ,"Precompiled__RegExpMatch_0150898_get_start_7810" ,"Precompiled__StringMatch_0150898_get_start_7811" ,"Precompiled_Canvas_scale_7812" ,"Precompiled__TypedListBase_7027147_get_isNotEmpty_7813" ,"Precompiled_AnimationController_get_velocity_7814" ,"Precompiled__StringBase_0150898_get_isNotEmpty_7815" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_isNotEmpty_7816" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_isNotEmpty_7817" ,"Precompiled__GrowableList_0150898_get_isNotEmpty_7818" ,"Precompiled_ClampingScrollSimulation_get_velocity_7819" ,"Precompiled_AllocationStub_ClampingScrollSimulation_7820" ,"Precompiled_AllocationStub_BouncingScrollSimulation_7821" ,"Precompiled_BouncingScrollSimulation__simulation_558443839_7822" ,"Precompiled_BouncingScrollSimulation__overscrollSimulation_558443839_7823" ,"Precompiled_BouncingScrollSimulation__underscrollSimulation_558443839_7824" ,"Precompiled_BouncingScrollSimulation_BouncingScrollSimulation__7825" ,"Precompiled_FrictionSimulation_timeAtX_7826" ,"Precompiled_FrictionSimulation_FrictionSimulation__7827" ,"Precompiled_AllocationStub_FrictionSimulation_7828" ,"Precompiled_ClampingScrollSimulation_init__kDecelerationRate_558443839_7829" ,"Precompiled_ClampingScrollSimulation__flingDuration_558443839_7830" ,"Precompiled_ClampingScrollSimulation_ClampingScrollSimulation__7831" ,"Precompiled__TypedListBase_7027147_get_isEmpty_7832" ,"Precompiled__StringBase_0150898_get_isEmpty_7833" ,"Precompiled__ListBase_Object_ListMixin_3220832_get_isEmpty_7834" ,"Precompiled_DelegatingSet_cast_7835" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_isEmpty_7836" ,"Precompiled__GrowableList_0150898_get_isEmpty_7837" ,"Precompiled__HashMapEntry_3220832_set_value_7838" ,"Precompiled__SplayTreeMapNode_3220832_set_value_7839" ,"Precompiled__DualTransitionBuilderState_46239604_dispose_7840" ,"Precompiled__CupertinoButtonState_163145554_dispose_7841" ,"Precompiled__CupertinoBackGestureDetectorState_177053933_dispose_7842" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207_dispose_7843" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207_dispose_7844" ,"Precompiled__InkResponseState_294059085_dispose_7845" ,"Precompiled__BorderContainerState_296019562_dispose_7846" ,"Precompiled__HelperErrorState_296019562_dispose_7847" ,"Precompiled__InputDecoratorState_296019562_dispose_7848" ,"Precompiled_ImplicitlyAnimatedWidgetState_dispose_7849" ,"Precompiled__DatePickerModeToggleButtonState_498246833_dispose_7850" ,"Precompiled__MonthPickerState_498246833_dispose_7851" ,"Precompiled__CircularProgressIndicatorState_312243954_dispose_7852" ,"Precompiled__FloatingActionButtonTransitionState_319420462_dispose_7853" ,"Precompiled_ScaffoldState_dispose_7854" ,"Precompiled__TextFieldState_335181401_dispose_7855" ,"Precompiled__TextSelectionToolbarState_337283233_dispose_7856" ,"Precompiled__TooltipState_346220820_dispose_7857" ,"Precompiled__ActionsState_513441002_dispose_7858" ,"Precompiled__WidgetsAppState_526236006_dispose_7859" ,"Precompiled__StreamBuilderBaseState_536480208_dispose_7860" ,"Precompiled__FutureBuilderState_536480208_dispose_7861" ,"Precompiled__AutomaticKeepAliveState_495490736_dispose_7862" ,"Precompiled_EditableTextState_dispose_7863" ,"Precompiled__FocusState_515492240_dispose_7864" ,"Precompiled__FocusTraversalGroupState_528280150_dispose_7865" ,"Precompiled_RawGestureDetectorState_dispose_7866" ,"Precompiled__ImageState_545215529_dispose_7867" ,"Precompiled_NavigatorState_dispose_7868" ,"Precompiled__GlowingOverscrollIndicatorState_583442496_dispose_7869" ,"Precompiled__ModalScopeState_49188637_dispose_7870" ,"Precompiled_ScrollableState_dispose_7871" ,"Precompiled__ShortcutsState_516043213_dispose_7872" ,"Precompiled__TextSelectionHandleOverlayState_485111801_dispose_7873" ,"Precompiled__TextSelectionGestureDetectorState_485111801_dispose_7874" ,"Precompiled__AnimatedState_496170175_dispose_7875" ,"Precompiled_TextBox_get_start_7876" ,"Precompiled___CupertinoButtonState_State_SingleTickerProviderStateMixin_163145554_createTicker_7877" ,"Precompiled___CupertinoTextSelectionToolbarContentState_State_TickerProviderStateMixin_186300207_createTicker_7878" ,"Precompiled___HelperErrorState_State_SingleTickerProviderStateMixin_296019562_createTicker_7879" ,"Precompiled_ListQueue_get_add_7880" ,"Precompiled_LinkedList_get_add_7881" ,"Precompiled__CastListBase_11040228_get_add_7882" ,"Precompiled_BoxShadow_scale_7883" ,"Precompiled_CastSet_get_add_7884" ,"Precompiled_CastQueue_get_add_7885" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_559183791_createTicker_7886" ,"Precompiled_ObserverList_get_add_7887" ,"Precompiled_HashedObserverList_get_add_7888" ,"Precompiled__NavigatorState_State_TickerProviderStateMixin_529124995_createTicker_7889" ,"Precompiled_DateTime_get_add_7890" ,"Precompiled_ClipboardStatusNotifier_dispose_7891" ,"Precompiled__AsyncStarStreamController_4048458_get_add_7892" ,"Precompiled_BaseMouseTracker_dispose_7893" ,"Precompiled__BroadcastStreamController_4048458_get_add_7894" ,"Precompiled_ScrollPositionWithSingleContext_dispose_7895" ,"Precompiled_SemanticsOwner_dispose_7896" ,"Precompiled__GlowController_583442496_dispose_7897" ,"Precompiled_ScrollController_dispose_7898" ,"Precompiled_ChangeNotifier_dispose_7899" ,"Precompiled__StreamController_4048458_get_add_7900" ,"Precompiled__StreamImplEvents_4048458_get_add_7901" ,"Precompiled__Completer_4048458_get_isCompleted_7902" ,"Precompiled__HashSet_3220832_get_add_7903" ,"Precompiled__ImmutableMap_0150898_get_keys_7904" ,"Precompiled_AnimationController_set_value_7905" ,"Precompiled__CompactLinkedHashSet_3220832_get_add_7906" ,"Precompiled__CompactLinkedHashSet_3220832_add_add_7907" ,"Precompiled_CupertinoIconThemeData_resolve_7908" ,"Precompiled_PositionedDirectional_get_start_7909" ,"Precompiled__TypedDataBuffer_489432058_get_add_7910" ,"Precompiled__BigIntImpl_0150898___7911" ,"Precompiled_SplayTreeSet_get_add_7912" ,"Precompiled__ClickableMouseCursor_301420358_resolve_7913" ,"Precompiled_PrimaryPointerGestureRecognizer_dispose_7914" ,"Precompiled_DragGestureRecognizer_dispose_7915" ,"Precompiled_OneSequenceGestureRecognizer_dispose_7916" ,"Precompiled_DoubleTapGestureRecognizer_dispose_7917" ,"Precompiled_DoubleTapGestureRecognizer__reset_229391311_7918" ,"Precompiled_DoubleTapGestureRecognizer__clearTrackers_229391311_7919" ,"Precompiled_DoubleTapGestureRecognizer__reject_229391311__reject_229391311_7920" ,"Precompiled_AllocationStub__TapTracker_229391311_7921" ,"Precompiled_AllocationStub__CountdownZoned_229391311_7922" ,"Precompiled__CountdownZoned_229391311__onTimeout_229391311__onTimeout_229391311_7923" ,"Precompiled__CountdownZoned_229391311__onTimeout_229391311_7924" ,"Precompiled__CountdownZoned_229391311__CountdownZoned_229391311__7925" ,"Precompiled__TapTracker_229391311_hasElapsedMinTime_7926" ,"Precompiled__TapTracker_229391311_isWithinGlobalTolerance_7927" ,"Precompiled__TapTracker_229391311_stopTrackingPointer_7928" ,"Precompiled__TapTracker_229391311__TapTracker_229391311__7929" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_multitap_dart___TapTracker_7930" ,"Precompiled_AllocationStub_DoubleTapGestureRecognizer_7931" ,"Precompiled_DoubleTapGestureRecognizer__registerSecondTap_229391311_7932" ,"Precompiled_DoubleTapGestureRecognizer__checkUp_229391311_7933" ,"Precompiled_DoubleTapGestureRecognizer__freezeTracker_229391311_7934" ,"Precompiled_DoubleTapGestureRecognizer__handleEvent_229391311_7935" ,"Precompiled_DoubleTapGestureRecognizer__registerFirstTap_229391311_7936" ,"Precompiled_DoubleTapGestureRecognizer__startDoubleTapTimer_229391311_7937" ,"Precompiled_DoubleTapGestureRecognizer__handleEvent_229391311__handleEvent_229391311_7938" ,"Precompiled_DoubleTapGestureRecognizer__trackFirstTap_229391311_7939" ,"Precompiled_DoubleTapGestureRecognizer_DoubleTapGestureRecognizer__7940" ,"Precompiled_DoubleTapGestureRecognizer__reset_229391311__reset_229391311_7941" ,"Precompiled_DoubleTapGestureRecognizer__reject_229391311_7942" ,"Precompiled_DoubleTapGestureRecognizer__stopDoubleTapTimer_229391311_7943" ,"Precompiled_ListQueue_add_7944" ,"Precompiled__TimerHeap_1026248_get_add_7945" ,"Precompiled_LinkedList_add_7946" ,"Precompiled__CastListBase_11040228_add_7947" ,"Precompiled_CastSet_add_7948" ,"Precompiled_CastQueue_add_7949" ,"Precompiled_ListQueue_clear_7950" ,"Precompiled_ObserverList_add_7951" ,"Precompiled_HashedObserverList_add_7952" ,"Precompiled_Duration___7953" ,"Precompiled_DateTime_add_7954" ,"Precompiled__InterpolationSimulation_152066280_x_7955" ,"Precompiled__RepeatingSimulation_152066280_x_7956" ,"Precompiled__Double_0150898___7957" ,"Precompiled__Double_0150898__modulo_0150898_7958" ,"Precompiled_FrictionSimulation_x_7959" ,"Precompiled_ScrollSpringSimulation_x_7960" ,"Precompiled_SpringSimulation_x_7961" ,"Precompiled_BouncingScrollSimulation_x_7962" ,"Precompiled_ClampingScrollSimulation_x_7963" ,"Precompiled__AsyncStarStreamController_4048458_add_7964" ,"Precompiled__BroadcastStreamController_4048458_add_7965" ,"Precompiled_SpringSimulation_get_type_7966" ,"Precompiled_InkHighlight_dispose_7967" ,"Precompiled_InkSplash_dispose_7968" ,"Precompiled_StringBuffer_clear_7969" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_keys_7970" ,"Precompiled__InterpolationSimulation_152066280_dx_7971" ,"Precompiled__RepeatingSimulation_152066280_dx_7972" ,"Precompiled_FrictionSimulation_dx_7973" ,"Precompiled_SpringSimulation_dx_7974" ,"Precompiled_BouncingScrollSimulation_dx_7975" ,"Precompiled_ClampingScrollSimulation_dx_7976" ,"Precompiled__HashMap_3220832_get_keys_7977" ,"Precompiled_CastMap_get_keys_7978" ,"Precompiled__StreamController_4048458_add_7979" ,"Precompiled_LocalizationsDelegate_get_type_7980" ,"Precompiled__StreamImplEvents_4048458_add_7981" ,"Precompiled_MapView_get_keys_7982" ,"Precompiled_SplayTreeMap_get_keys_7983" ,"Precompiled__HashSet_3220832_add_7984" ,"Precompiled__CompactLinkedHashSet_3220832_add_7985" ,"Precompiled__CompactLinkedHashSet_3220832__rehash_3220832_7986" ,"Precompiled__HashSet_3220832_clear_7987" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_putIfAbsent_7988" ,"Precompiled_Listener_get_behavior_7989" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_clear_7990" ,"Precompiled_GestureDetector_get_behavior_7991" ,"Precompiled__CompactLinkedHashSet_3220832_clear_7992" ,"Precompiled__TypedDataBuffer_489432058_add_7993" ,"Precompiled__CustomHashMap_3220832_putIfAbsent_7994" ,"Precompiled__IdentityHashMap_3220832_putIfAbsent_7995" ,"Precompiled__HashMap_3220832_putIfAbsent_7996" ,"Precompiled__HashMap_3220832_clear_7997" ,"Precompiled_CollectionReference_get_add_7998" ,"Precompiled_SplayTreeSet_add_7999" ,"Precompiled_MethodChannelCollectionReference_get_add_8000" ,"Precompiled_LongPressGestureRecognizer_resolve_8001" ,"Precompiled_BaseTapGestureRecognizer_resolve_8002" ,"Precompiled_SplayTreeMap_putIfAbsent_8003" ,"Precompiled_OneSequenceGestureRecognizer_resolve_8004" ,"Precompiled_GestureArenaEntry_resolve_8005" ,"Precompiled_SemanticsHandle_dispose_8006" ,"Precompiled_HeapPriorityQueue_get_add_8007" ,"Precompiled__UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin_112278439_get_add_8008" ,"Precompiled__TimerHeap_1026248_add_8009" ,"Precompiled_PointerSignalResolver_resolve_8010" ,"Precompiled_TextSelectionGestureDetector_get_behavior_8011" ,"Precompiled__WidgetTicker_39311458_dispose_8012" ,"Precompiled_Ticker_dispose_8013" ,"Precompiled_StreamCipherAsBlockCipher_reset_8014" ,"Precompiled_AESFastEngine_reset_8015" ,"Precompiled_CBCBlockCipher_reset_8016" ,"Precompiled_CFBBlockCipher_reset_8017" ,"Precompiled_ECBBlockCipher_reset_8018" ,"Precompiled_GCTRBlockCipher_reset_8019" ,"Precompiled_Tolerance_get_velocity_8020" ,"Precompiled_MD4FamilyDigest_reset_8021" ,"Precompiled_SHA384Digest_reset_8022" ,"Precompiled_SHA512Digest_reset_8023" ,"Precompiled_SHA512tDigest_reset_8024" ,"Precompiled_TigerDigest_reset_8025" ,"Precompiled_WhirlpoolDigest_reset_8026" ,"Precompiled_BoxDecoration_scale_8027" ,"Precompiled_DisposableBuildContext_dispose_8028" ,"Precompiled_Animation_get_isCompleted_8029" ,"Precompiled_FocusNode_dispose_8030" ,"Precompiled_AlignmentDirectional_resolve_8031" ,"Precompiled__MixedAlignment_351341779_resolve_8032" ,"Precompiled_Offset___8033" ,"Precompiled_Size___8034" ,"Precompiled_Radius___8035" ,"Precompiled_FrameInfo_get_duration_8036" ,"Precompiled_PaddedBlockCipherImpl_reset_8037" ,"Precompiled__MixedBorderRadius_355070249_resolve_8038" ,"Precompiled_RangeError_get_end_8039" ,"Precompiled_SICStreamCipher_reset_8040" ,"Precompiled_Salsa20Engine_reset_8041" ,"Precompiled_EdgeInsetsDirectional_resolve_8042" ,"Precompiled__MixedEdgeInsets_368303931_resolve_8043" ,"Precompiled_TransitionRoute_dispose_8044" ,"Precompiled_ImageProvider_resolve_8045" ,"Precompiled__RegExpMatch_0150898_get_end_8046" ,"Precompiled__StringMatch_0150898_get_end_8047" ,"Precompiled__RouteEntry_529124995_dispose_8048" ,"Precompiled__BufferingStreamSubscription_4048458_cancel_8049" ,"Precompiled__AddStreamState_4048458_cancel_8050" ,"Precompiled_AllocationStub__AddStreamState_4048458_8051" ,"Precompiled__AddStreamState_4048458__AddStreamState_4048458__8052" ,"Precompiled__DoneStreamSubscription_4048458_cancel_8053" ,"Precompiled_AllocationStub__DoneStreamSubscription_4048458_8054" ,"Precompiled__DoneStreamSubscription_4048458__sendDone_4048458__sendDone_4048458_8055" ,"Precompiled__DoneStreamSubscription_4048458__schedule_4048458_8056" ,"Precompiled_HoldScrollActivity_dispose_8057" ,"Precompiled_DragScrollActivity_dispose_8058" ,"Precompiled_BallisticScrollActivity_dispose_8059" ,"Precompiled_DrivenScrollActivity_dispose_8060" ,"Precompiled_ScrollDragController_dispose_8061" ,"Precompiled_CollectionReference_add_8062" ,"Precompiled_OverscrollNotification_get_velocity_8063" ,"Precompiled_MethodChannelCollectionReference_add_8064" ,"Precompiled_TextSelectionOverlay_dispose_8065" ,"Precompiled_ValueNotifier_set_value_8066" ,"Precompiled__ImmutableMap_0150898_get_length_8067" ,"Precompiled_HeapPriorityQueue_add_8068" ,"Precompiled__UnmodifiableSetView_DelegatingSet_UnmodifiableSetMixin_112278439_add_8069" ,"Precompiled__ImmutableMapKeyIterable_0150898_get_length_8070" ,"Precompiled__ImmutableMapValueIterable_0150898_get_length_8071" ,"Precompiled__HashMapIterable_3220832_get_length_8072" ,"Precompiled_ListQueue_get_length_8073" ,"Precompiled_SubListIterable_get_length_8074" ,"Precompiled_MappedListIterable_get_length_8075" ,"Precompiled__SplayTreeKeyIterable_3220832_get_length_8076" ,"Precompiled_EmptyIterable_get_length_8077" ,"Precompiled__CompactIterable_3220832_get_length_8078" ,"Precompiled_LinkedList_get_length_8079" ,"Precompiled__CastIterableBase_11040228_get_length_8080" ,"Precompiled_EfficientLengthSkipIterable_get_length_8081" ,"Precompiled_Iterable_get_length_8082" ,"Precompiled_IdleScrollActivity_get_velocity_8083" ,"Precompiled_BallisticScrollActivity_get_velocity_8084" ,"Precompiled_DrivenScrollActivity_get_velocity_8085" ,"Precompiled_RenderSemanticsAnnotations_set_value_8086" ,"Precompiled_StringBuffer_get_length_8087" ,"Precompiled_ClipboardStatusNotifier_didChangeAppLifecycleState_8088" ,"Precompiled_RenderAnnotatedRegion_set_value_8089" ,"Precompiled__Timer_1026248_cancel_8090" ,"Precompiled_FlutterErrorDetails_toDiagnosticsNode_8091" ,"Precompiled_Stream_get_length_8092" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_forEach_8093" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_forEach_8094" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_forEach_8095" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_forEach_8096" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_forEach_8097" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_forEach_8098" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_forEach_8099" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_forEach_8100" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_forEach_8101" ,"Precompiled_DefaultTransitionDelegate_resolve_8102" ,"Precompiled__HashSet_3220832_get_length_8103" ,"Precompiled__UnmodifiableSet_3220832_get_length_8104" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_length_8105" ,"Precompiled__ImmutableList_0150898_forEach_8106" ,"Precompiled__List_0150898_forEach_8107" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_forEach_8108" ,"Precompiled__CompactLinkedHashSet_3220832_get_length_8109" ,"Precompiled_RenderProxyBoxWithHitTestBehavior_get_behavior_8110" ,"Precompiled__GrowableList_0150898_forEach_8111" ,"Precompiled__HashMap_3220832_get_length_8112" ,"Precompiled_CastMap_get_length_8113" ,"Precompiled_CodeUnits_get_length_8114" ,"Precompiled_SplayTreeMap_get_length_8115" ,"Precompiled__NoInputBorder_295401927_scale_8116" ,"Precompiled_UnderlineInputBorder_scale_8117" ,"Precompiled_CircleBorder_scale_8118" ,"Precompiled_RoundedRectangleBorder_scale_8119" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_scale_8120" ,"Precompiled_StadiumBorder_scale_8121" ,"Precompiled__StadiumToCircleBorder_386467860_scale_8122" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860_scale_8123" ,"Precompiled_Border_scale_8124" ,"Precompiled_BorderSide_scale_8125" ,"Precompiled_SceneBuilder_build_8126" ,"Precompiled_LinearGradient_scale_8127" ,"Precompiled_SemanticsUpdateBuilder_build_8128" ,"Precompiled_ParagraphBuilder_build_8129" ,"Precompiled__RenderObject_AbstractNode_DiagnosticableTreeMixin_419266271_toDiagnosticsNode_8130" ,"Precompiled_SemanticsNode_toDiagnosticsNode_8131" ,"Precompiled_TextBox_get_end_8132" ,"Precompiled__RingBuffer_16065589_get_length_8133" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_get_add_8134" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_cast_8135" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_cast_8136" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_cast_8137" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_cast_8138" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_cast_8139" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_cast_8140" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_cast_8141" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_cast_8142" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_cast_8143" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_cast_8144" ,"Precompiled_SemanticsConfiguration_set_value_8145" ,"Precompiled_ScrollPosition_get_allowImplicitScrolling_8146" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_get_add_8147" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_get_add_8148" ,"Precompiled__CriticalSolution_396485910_x_8149" ,"Precompiled__OverdampedSolution_396485910_x_8150" ,"Precompiled__UnderdampedSolution_396485910_x_8151" ,"Precompiled_Pointer_cast_8152" ,"Precompiled_AllocationStub_Pointer_8153" ,"Precompiled_Pointer_dyn_cast_8154" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_get_add_8155" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_get_add_8156" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_get_add_8157" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_cast_8158" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_get_add_8159" ,"Precompiled__CriticalSolution_396485910_get_type_8160" ,"Precompiled__OverdampedSolution_396485910_get_type_8161" ,"Precompiled__UnderdampedSolution_396485910_get_type_8162" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_get_add_8163" ,"Precompiled__ListBase_Object_ListMixin_3220832_cast_8164" ,"Precompiled__CriticalSolution_396485910_dx_8165" ,"Precompiled__OverdampedSolution_396485910_dx_8166" ,"Precompiled__UnderdampedSolution_396485910_dx_8167" ,"Precompiled_Interval_get_end_8168" ,"Precompiled_HeapPriorityQueue_get_length_8169" ,"Precompiled__DelegatingIterableBase_113184915_get_length_8170" ,"Precompiled__WidgetsAppState_526236006_didPopRoute_8171" ,"Precompiled___MediaQueryFromWindowsState_State_WidgetsBindingObserver_526236006_didPopRoute_8172" ,"Precompiled__GestureArena_214060655_get_add_8173" ,"Precompiled_GestureArenaManager_get_add_8174" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_559183791_didPopRoute_8175" ,"Precompiled___ImageState_State_WidgetsBindingObserver_545215529_didPopRoute_8176" ,"Precompiled_HitTestResult_get_add_8177" ,"Precompiled__CupertinoEdgeShadowDecoration_177053933_lerpFrom_8178" ,"Precompiled_BoxDecoration_lerpFrom_8179" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_take_8180" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_take_8181" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_take_8182" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_take_8183" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_take_8184" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_take_8185" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_take_8186" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_take_8187" ,"Precompiled_Border_get_add_8188" ,"Precompiled_ShapeBorder_get_add_8189" ,"Precompiled__MediaQueryFromWindowsState_526236006_didChangeAccessibilityFeatures_8190" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_add_8191" ,"Precompiled__ImageState_545215529_didChangeAccessibilityFeatures_8192" ,"Precompiled_Layer_get_nextSibling_8193" ,"Precompiled_Alignment_get_add_8194" ,"Precompiled_AlignmentDirectional_get_add_8195" ,"Precompiled_AlignmentGeometry_get_add_8196" ,"Precompiled_BorderRadius_get_add_8197" ,"Precompiled_BorderRadiusGeometry_get_add_8198" ,"Precompiled_EdgeInsets_get_add_8199" ,"Precompiled_EdgeInsetsDirectional_get_add_8200" ,"Precompiled_EdgeInsetsGeometry_get_add_8201" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_add_8202" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_add_8203" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_159305771_move_8204" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_add_8205" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_add_8206" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_add_8207" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_add_8208" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_432211670_add_8209" ,"Precompiled_ScrollPosition_applyBoundaryConditions_8210" ,"Precompiled___TextSelectionToolbarItemsRenderBox_RenderBox_ContainerRenderObjectMixin_337283233_move_8211" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_411478290_move_8212" ,"Precompiled_AnnotationResult_get_add_8213" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_415367922_move_8214" ,"Precompiled_Matrix4_scale_8215" ,"Precompiled__RenderParagraph_RenderBox_ContainerRenderObjectMixin_420149678_move_8216" ,"Precompiled_Vector3_scale_8217" ,"Precompiled_Vector4_scale_8218" ,"Precompiled___RenderTheatre_RenderBox_ContainerRenderObjectMixin_511319124_move_8219" ,"Precompiled__RenderViewportBase_RenderBox_ContainerRenderObjectMixin_441057554_move_8220" ,"Precompiled__GestureArena_214060655_add_8221" ,"Precompiled_GestureArenaManager_add_8222" ,"Precompiled_RenderSliverMultiBoxAdaptor_move_8223" ,"Precompiled__Vector_226188158___8224" ,"Precompiled_HitTestResult_add_8225" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_426204652_set_child_8226" ,"Precompiled_Border_add_8227" ,"Precompiled_ShapeBorder_add_8228" ,"Precompiled__WeakProperty_0150898_set_value_8229" ,"Precompiled__WeakProperty_0150898__setValue_0150898_8230" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_510016527_set_child_8231" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_440268214_set_child_8232" ,"Precompiled__InactiveElements_28042623_get_add_8233" ,"Precompiled_Alignment___8234" ,"Precompiled_AlignmentDirectional___8235" ,"Precompiled__MixedAlignment_351341779___8236" ,"Precompiled_Alignment_add_8237" ,"Precompiled_AlignmentDirectional_add_8238" ,"Precompiled_AlignmentGeometry_add_8239" ,"Precompiled_BorderRadius___8240" ,"Precompiled__MixedBorderRadius_355070249___8241" ,"Precompiled_BorderRadius_add_8242" ,"Precompiled_BorderRadiusGeometry_add_8243" ,"Precompiled_EdgeInsets___8244" ,"Precompiled_EdgeInsetsDirectional___8245" ,"Precompiled__MixedEdgeInsets_368303931___8246" ,"Precompiled__FifoCache_340408314_putIfAbsent_8247" ,"Precompiled_EdgeInsets_add_8248" ,"Precompiled_EdgeInsetsDirectional_add_8249" ,"Precompiled_EdgeInsetsGeometry_add_8250" ,"Precompiled_UnderlineInputBorder_lerpFrom_8251" ,"Precompiled_CircleBorder_lerpFrom_8252" ,"Precompiled_RoundedRectangleBorder_lerpFrom_8253" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_lerpFrom_8254" ,"Precompiled_StadiumBorder_lerpFrom_8255" ,"Precompiled__StadiumToCircleBorder_386467860_lerpFrom_8256" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860_lerpFrom_8257" ,"Precompiled_Border_lerpFrom_8258" ,"Precompiled_ShapeBorder_lerpFrom_8259" ,"Precompiled_ImageCache_putIfAbsent_8260" ,"Precompiled_ImageCache_clear_8261" ,"Precompiled_BoxConstraints___8262" ,"Precompiled_Layer_get_previousSibling_8263" ,"Precompiled__ElementLocationStatsTracker_535171358_get_add_8264" ,"Precompiled__ElementLocationStatsTracker_535171358_add_add_8265" ,"Precompiled_AllocationStub__ElementLocationStatsTracker_535171358_8266" ,"Precompiled__ElementLocationStatsTracker_535171358_dyn_add_8267" ,"Precompiled_____getCreationLocation_535171358_8268" ,"Precompiled_____isLocalCreationLocation_535171358_8269" ,"Precompiled_____describeRelevantUserCode_535171358_8270" ,"Precompiled__WidgetInspectorService_535171358_isWidgetCreationTracked_8271" ,"Precompiled_AllocationStub__WidgetInspectorService_535171358_8272" ,"Precompiled_WidgetInspectorService_init__instance_535171358_8273" ,"Precompiled__WidgetInspectorService_535171358__WidgetInspectorService_535171358__8274" ,"Precompiled__ElementLocationStatsTracker_535171358__ElementLocationStatsTracker_535171358__8275" ,"Precompiled_AllocationStub_InspectorSelection_8276" ,"Precompiled_WidgetInspectorService_get_instance_8277" ,"Precompiled_____describeRelevantUserCode_535171358_processElement_8278" ,"Precompiled_____parseDiagnosticsNode_535171358_8279" ,"Precompiled____transformDebugCreator_8280" ,"Precompiled____transformDebugCreator_transformDebugCreator_8281" ,"Precompiled_MyApp_build_8282" ,"Precompiled_AllocationStub_MyApp_8283" ,"Precompiled_FadeScaleTransition_build_8284" ,"Precompiled_CupertinoPageTransition_build_8285" ,"Precompiled_CupertinoTheme_build_8286" ,"Precompiled_AllocationStub_IconTheme_8287" ,"Precompiled_IconTheme__getInheritedIconThemeData_568033112_8288" ,"Precompiled_IconTheme_of_8289" ,"Precompiled_IconTheme_merge_8290" ,"Precompiled_BackButtonIcon_build_8291" ,"Precompiled_BackButtonIcon__getIconData_243114528_8292" ,"Precompiled_BackButton_build_8293" ,"Precompiled_Dialog_build_8294" ,"Precompiled_AlertDialog_build_8295" ,"Precompiled_Divider_build_8296" ,"Precompiled_Divider_createBorderSide_8297" ,"Precompiled_TextButton_build_8298" ,"Precompiled_AnnotationResult_add_8299" ,"Precompiled_FloatingActionButton_build_8300" ,"Precompiled_AllocationStub_FloatingActionButton_8301" ,"Precompiled_IconButton_build_8302" ,"Precompiled_InkResponse_build_8303" ,"Precompiled__ShapeBorderPaint_298372823_build_8304" ,"Precompiled__FadeUpwardsPageTransition_307490068_build_8305" ,"Precompiled__DayPicker_498246833_build_8306" ,"Precompiled__DayHeaders_498246833_build_8307" ,"Precompiled__PopupMenu_310182389_build_8308" ,"Precompiled__BodyBuilder_319420462_build_8309" ,"Precompiled_Theme_build_8310" ,"Precompiled__TooltipOverlay_346220820_build_8311" ,"Precompiled_PositionedDirectional_build_8312" ,"Precompiled_Listener_build_8313" ,"Precompiled_KeyedSubtree_build_8314" ,"Precompiled_Builder_build_8315" ,"Precompiled_Container_build_8316" ,"Precompiled_GestureDetector_build_8317" ,"Precompiled_Icon_build_8318" ,"Precompiled__CaptureAll_494220367_build_8319" ,"Precompiled_ModalBarrier_build_8320" ,"Precompiled__ModalBarrierGestureDetector_575005443_build_8321" ,"Precompiled_NavigationToolbar_build_8322" ,"Precompiled_NotificationListener_build_8323" ,"Precompiled_SafeArea_build_8324" ,"Precompiled_AllocationStub_SafeArea_8325" ,"Precompiled_ScrollView_build_8326" ,"Precompiled_AllocationStub_PrimaryScrollController_8327" ,"Precompiled_PrimaryScrollController_of_8328" ,"Precompiled_SingleChildScrollView_build_8329" ,"Precompiled_SliverFillViewport_build_8330" ,"Precompiled_Spacer_build_8331" ,"Precompiled_Text_build_8332" ,"Precompiled_TickerMode_build_8333" ,"Precompiled_Title_build_8334" ,"Precompiled_AllocationStub_Title_8335" ,"Precompiled_Visibility_build_8336" ,"Precompiled_AnimatedModalBarrier_build_8337" ,"Precompiled_SlideTransition_build_8338" ,"Precompiled_ScaleTransition_build_8339" ,"Precompiled_RotationTransition_build_8340" ,"Precompiled_DecoratedBoxTransition_build_8341" ,"Precompiled_AnimatedBuilder_build_8342" ,"Precompiled_HomeScreen_createState_8343" ,"Precompiled_SignInScreen_createState_8344" ,"Precompiled_MemoryContainer_createState_8345" ,"Precompiled_WarningDialog_createState_8346" ,"Precompiled__WarningDialogState_38161078__WarningDialogState_38161078__8347" ,"Precompiled_AllocationStub_WarningDialog_8348" ,"Precompiled_TypeTestingStub_package_Dayflect_widgets_warning_dialog_dart__WarningDialog_8349" ,"Precompiled__WarningDialogState_38161078_buildDeleteButton_8350" ,"Precompiled__WarningDialogState_38161078_buildKeepButton_8351" ,"Precompiled__WarningDialogState_38161078_buildBodyText_8352" ,"Precompiled__WarningDialogState_38161078_buildTitleText_8353" ,"Precompiled_AllocationStub__WarningDialogState_38161078_8354" ,"Precompiled_DualTransitionBuilder_createState_8355" ,"Precompiled_CupertinoButton_createState_8356" ,"Precompiled__CupertinoBackGestureDetector_177053933_createState_8357" ,"Precompiled__CupertinoTextSelectionToolbarWrapper_186300207_createState_8358" ,"Precompiled__CupertinoTextSelectionToolbarContent_186300207_createState_8359" ,"Precompiled_MaterialApp_createState_8360" ,"Precompiled_AppBar_createState_8361" ,"Precompiled_RawMaterialButton_createState_8362" ,"Precompiled__InkResponseStateWidget_294059085_createState_8363" ,"Precompiled__BorderContainer_296019562_createState_8364" ,"Precompiled_AnimatedWidget_createState_8365" ,"Precompiled_StreamBuilder_build_8366" ,"Precompiled__HelperError_296019562_createState_8367" ,"Precompiled_InputDecorator_createState_8368" ,"Precompiled_Material_createState_8369" ,"Precompiled__MaterialInterior_298372823_createState_8370" ,"Precompiled_AnimatedTheme_createState_8371" ,"Precompiled_AnimatedPadding_createState_8372" ,"Precompiled_AnimatedOpacity_createState_8373" ,"Precompiled_AnimatedDefaultTextStyle_createState_8374" ,"Precompiled_AnimatedPhysicalModel_createState_8375" ,"Precompiled_CalendarDatePicker_createState_8376" ,"Precompiled__DatePickerModeToggleButton_498246833_createState_8377" ,"Precompiled__MonthPicker_498246833_createState_8378" ,"Precompiled__YearPicker_498246833_createState_8379" ,"Precompiled_PopupMenuItem_createState_8380" ,"Precompiled_PopupMenuButton_createState_8381" ,"Precompiled_CircularProgressIndicator_createState_8382" ,"Precompiled__FloatingActionButtonTransition_319420462_createState_8383" ,"Precompiled_Scaffold_createState_8384" ,"Precompiled_TextField_createState_8385" ,"Precompiled__TextSelectionToolbar_337283233_createState_8386" ,"Precompiled_Tooltip_createState_8387" ,"Precompiled_Actions_createState_8388" ,"Precompiled_WidgetsApp_createState_8389" ,"Precompiled__MediaQueryFromWindow_526236006_createState_8390" ,"Precompiled_StreamBuilderBase_createState_8391" ,"Precompiled_FutureBuilder_createState_8392" ,"Precompiled_AutomaticKeepAlive_createState_8393" ,"Precompiled_MouseRegion_createState_8394" ,"Precompiled_EditableText_createState_8395" ,"Precompiled_FocusScope_createState_8396" ,"Precompiled_Focus_createState_8397" ,"Precompiled_FocusTraversalGroup_createState_8398" ,"Precompiled_RawGestureDetector_createState_8399" ,"Precompiled_Hero_createState_8400" ,"Precompiled_Image_createState_8401" ,"Precompiled_Localizations_createState_8402" ,"Precompiled_Navigator_createState_8403" ,"Precompiled__OverlayEntryWidget_511319124_createState_8404" ,"Precompiled_Overlay_createState_8405" ,"Precompiled_GlowingOverscrollIndicator_createState_8406" ,"Precompiled_PageView_createState_8407" ,"Precompiled__ModalScope_49188637_createState_8408" ,"Precompiled_Scrollable_createState_8409" ,"Precompiled_Shortcuts_createState_8410" ,"Precompiled__TextSelectionHandleOverlay_485111801_createState_8411" ,"Precompiled_TextSelectionGestureDetector_createState_8412" ,"Precompiled_KeySet_get_keys_8413" ,"Precompiled__InactiveElements_28042623_add_8414" ,"Precompiled_Matrix4_get_add_8415" ,"Precompiled_Vector3_get_add_8416" ,"Precompiled_Vector4_get_add_8417" ,"Precompiled_InkSplash_cancel_8418" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_get_add_8419" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_get_add_8420" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_get_add_8421" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_get_add_8422" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_get_add_8423" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_get_add_8424" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_get_add_8425" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_get_add_8426" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_get_add_8427" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_get_add_8428" ,"Precompiled_UnmodifiableListBase_get_add_8429" ,"Precompiled_FixedLengthListBase_get_add_8430" ,"Precompiled__ElementLocationStatsTracker_535171358_add_8431" ,"Precompiled_StatelessElement_build_8432" ,"Precompiled_StatefulElement_build_8433" ,"Precompiled__InheritedNotifierElement_552313948_build_8434" ,"Precompiled_ProxyElement_build_8435" ,"Precompiled_TextSpan_build_8436" ,"Precompiled__GrowableList_0150898_get_add_8437" ,"Precompiled__HomeScreenState_30110098_build_8438" ,"Precompiled__SignInScreenState_26392946_build_8439" ,"Precompiled__MemoryContainerState_35208829_build_8440" ,"Precompiled__WarningDialogState_38161078_build_8441" ,"Precompiled__DualTransitionBuilderState_46239604_build_8442" ,"Precompiled__CupertinoButtonState_163145554_build_8443" ,"Precompiled__CupertinoBackGestureDetectorState_177053933_build_8444" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207_build_8445" ,"Precompiled_CupertinoLocalizations_of_8446" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_localizations_dart__CupertinoLocalizations_8447" ,"Precompiled_DefaultCupertinoLocalizations_load_8448" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207_build_8449" ,"Precompiled__MaterialAppState_239125171_build_8450" ,"Precompiled__AppBarState_240187611_build_8451" ,"Precompiled__RawMaterialButtonState_252412912_build_8452" ,"Precompiled__InkResponseState_294059085_build_8453" ,"Precompiled__BorderContainerState_296019562_build_8454" ,"Precompiled__HelperErrorState_296019562_build_8455" ,"Precompiled__InputDecoratorState_296019562_build_8456" ,"Precompiled__MaterialState_298372823_build_8457" ,"Precompiled_ElevationOverlay_applyOverlay_8458" ,"Precompiled__MaterialInteriorState_298372823_build_8459" ,"Precompiled__AnimatedThemeState_339067045_build_8460" ,"Precompiled__AnimatedPaddingState_497443363_build_8461" ,"Precompiled__AnimatedDefaultTextStyleState_497443363_build_8462" ,"Precompiled__AnimatedPhysicalModelState_497443363_build_8463" ,"Precompiled__AnimatedOpacityState_497443363_build_8464" ,"Precompiled__CalendarDatePickerState_498246833_build_8465" ,"Precompiled__DatePickerModeToggleButtonState_498246833_build_8466" ,"Precompiled__MonthPickerState_498246833_build_8467" ,"Precompiled__YearPickerState_498246833_build_8468" ,"Precompiled_PopupMenuItemState_build_8469" ,"Precompiled_PopupMenuButtonState_build_8470" ,"Precompiled__CircularProgressIndicatorState_312243954_build_8471" ,"Precompiled__FloatingActionButtonTransitionState_319420462_build_8472" ,"Precompiled_ScaffoldState_build_8473" ,"Precompiled__TextFieldState_335181401_build_8474" ,"Precompiled__TextSelectionToolbarState_337283233_build_8475" ,"Precompiled__TooltipState_346220820_build_8476" ,"Precompiled__ActionsState_513441002_build_8477" ,"Precompiled__WidgetsAppState_526236006_build_8478" ,"Precompiled__MediaQueryFromWindowsState_526236006_build_8479" ,"Precompiled__StreamBuilderBaseState_536480208_build_8480" ,"Precompiled__FutureBuilderState_536480208_build_8481" ,"Precompiled__AutomaticKeepAliveState_495490736_build_8482" ,"Precompiled__MouseRegionState_480167661_build_8483" ,"Precompiled_EditableTextState_build_8484" ,"Precompiled__FocusScopeState_515492240_build_8485" ,"Precompiled__FocusState_515492240_build_8486" ,"Precompiled__FocusTraversalGroupState_528280150_build_8487" ,"Precompiled_RawGestureDetectorState_build_8488" ,"Precompiled__HeroState_565011697_build_8489" ,"Precompiled__ImageState_545215529_build_8490" ,"Precompiled__LocalizationsState_483081674_build_8491" ,"Precompiled_NavigatorState_build_8492" ,"Precompiled__OverlayEntryWidgetState_511319124_build_8493" ,"Precompiled_OverlayState_build_8494" ,"Precompiled__GlowingOverscrollIndicatorState_583442496_build_8495" ,"Precompiled__PageViewState_585030489_build_8496" ,"Precompiled__ModalScopeState_49188637_build_8497" ,"Precompiled_ScrollableState_build_8498" ,"Precompiled__ShortcutsState_516043213_build_8499" ,"Precompiled__TextSelectionHandleOverlayState_485111801_build_8500" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build_8501" ,"Precompiled__AnimatedState_496170175_build_8502" ,"Precompiled_ClampingScrollPhysics_applyBoundaryConditions_8503" ,"Precompiled_ScrollPhysics_applyBoundaryConditions_8504" ,"Precompiled_ECFieldElement___8505" ,"Precompiled_ECPointBase___8506" ,"Precompiled_Element__updateInheritance_28042623_8507" ,"Precompiled_InheritedElement__updateInheritance_28042623_8508" ,"Precompiled_Matrix4___8509" ,"Precompiled_Vector3___8510" ,"Precompiled_Vector4___8511" ,"Precompiled_Matrix4_add_8512" ,"Precompiled_Vector3_add_8513" ,"Precompiled_Vector4_add_8514" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_keys_8515" ,"Precompiled___Float64x2ArrayView__TypedListView__Float64x2ListMixin_7027147_add_8516" ,"Precompiled___Float64x2List__TypedList__Float64x2ListMixin_7027147_add_8517" ,"Precompiled___Int32x4ArrayView__TypedListView__Int32x4ListMixin_7027147_add_8518" ,"Precompiled___Int32x4List__TypedList__Int32x4ListMixin_7027147_add_8519" ,"Precompiled___Float32x4ArrayView__TypedListView__Float32x4ListMixin_7027147_add_8520" ,"Precompiled___Float32x4List__TypedList__Float32x4ListMixin_7027147_add_8521" ,"Precompiled___Float32ArrayView__TypedListView__DoubleListMixin_7027147_add_8522" ,"Precompiled___Float32List__TypedList__DoubleListMixin_7027147_add_8523" ,"Precompiled___Int8ArrayView__TypedListView__IntListMixin_7027147_add_8524" ,"Precompiled___Int8List__TypedList__IntListMixin_7027147_add_8525" ,"Precompiled_BaseBlockCipher_process_8526" ,"Precompiled__StringBase_0150898___8527" ,"Precompiled__OneByteString_0150898___8528" ,"Precompiled_UnmodifiableListBase_add_8529" ,"Precompiled_FixedLengthListBase_add_8530" ,"Precompiled__Float64x2_7027147___8531" ,"Precompiled__Float32x4_7027147___8532" ,"Precompiled__Double_0150898___8533" ,"Precompiled__IntegerImplementation_0150898___8534" ,"Precompiled__GrowableList_0150898_add_8535" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_putIfAbsent_8536" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_clear_8537" ,"Precompiled__GrowableList_0150898_clear_8538" ,"Precompiled_HoldScrollActivity_cancel_8539" ,"Precompiled_ScrollDragController_cancel_8540" ,"Precompiled_PaddedBlockCipherImpl_process_8541" ,"Precompiled_BaseStreamCipher_process_8542" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onTapDown_8543" ,"Precompiled_TextSelectionGestureDetector_get_child_8544" ,"Precompiled__CupertinoEdgeShadowDecoration_177053933_lerpTo_8545" ,"Precompiled_BoxDecoration_lerpTo_8546" ,"Precompiled_RenderObjectToWidgetElement_performRebuild_8547" ,"Precompiled_RenderObjectElement_performRebuild_8548" ,"Precompiled_SliverMultiBoxAdaptorElement_performRebuild_8549" ,"Precompiled_StatefulElement_performRebuild_8550" ,"Precompiled_ComponentElement_performRebuild_8551" ,"Precompiled_RenderObjectElement_unmount_8552" ,"Precompiled_StatefulElement_unmount_8553" ,"Precompiled__InheritedNotifierElement_552313948_unmount_8554" ,"Precompiled_Element_unmount_8555" ,"Precompiled_StatefulElement_didChangeDependencies_8556" ,"Precompiled_Element_didChangeDependencies_8557" ,"Precompiled___CupertinoButtonState_State_SingleTickerProviderStateMixin_163145554_didChangeDependencies_8558" ,"Precompiled__InputDecoratorState_296019562_didChangeDependencies_8559" ,"Precompiled__CalendarDatePickerState_498246833_didChangeDependencies_8560" ,"Precompiled__MonthPickerState_498246833_didChangeDependencies_8561" ,"Precompiled_ScaffoldState_didChangeDependencies_8562" ,"Precompiled__TextFieldState_335181401_didChangeDependencies_8563" ,"Precompiled__WidgetsAppState_526236006_didPushRoute_8564" ,"Precompiled_EditableTextState_didChangeDependencies_8565" ,"Precompiled_AutofillGroup_of_8566" ,"Precompiled__FocusState_515492240_didChangeDependencies_8567" ,"Precompiled__ImageState_545215529_didChangeDependencies_8568" ,"Precompiled_NavigatorState_didChangeDependencies_8569" ,"Precompiled_ScrollableState_didChangeDependencies_8570" ,"Precompiled___TextSelectionHandleOverlayState_State_SingleTickerProviderStateMixin_485111801_didChangeDependencies_8571" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_forgetChild_8572" ,"Precompiled__RenderDecorationElement_296019562_forgetChild_8573" ,"Precompiled_MultiChildRenderObjectElement_forgetChild_8574" ,"Precompiled_SingleChildRenderObjectElement_forgetChild_8575" ,"Precompiled_RenderObjectToWidgetElement_forgetChild_8576" ,"Precompiled_SliverMultiBoxAdaptorElement_forgetChild_8577" ,"Precompiled_ComponentElement_forgetChild_8578" ,"Precompiled_Register64List_get_length_8579" ,"Precompiled_StatefulElement_dependOnInheritedElement_8580" ,"Precompiled_Element_dependOnInheritedElement_8581" ,"Precompiled_Vector3_get_length_8582" ,"Precompiled_Vector4_get_length_8583" ,"Precompiled__ByteDataView_7027147_get_length_8584" ,"Precompiled__StringBase_0150898_get_length_8585" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_length_8586" ,"Precompiled_SliverMultiBoxAdaptorElement_updateChild_8587" ,"Precompiled_Element_updateChild_8588" ,"Precompiled_UnderlineInputBorder_lerpTo_8589" ,"Precompiled_FlutterError_toStringShort_8590" ,"Precompiled_CircleBorder_lerpTo_8591" ,"Precompiled_RoundedRectangleBorder_lerpTo_8592" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_lerpTo_8593" ,"Precompiled_StadiumBorder_lerpTo_8594" ,"Precompiled__StadiumToCircleBorder_386467860_lerpTo_8595" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860_lerpTo_8596" ,"Precompiled_Border_lerpTo_8597" ,"Precompiled_ShapeBorder_lerpTo_8598" ,"Precompiled__RenderShiftedBox_RenderBox_RenderObjectWithChildMixin_426204652_get_child_8599" ,"Precompiled_RenderObjectElement_attachRenderObject_8600" ,"Precompiled_Element_attachRenderObject_8601" ,"Precompiled_SliverChildBuilderDelegate_build_8602" ,"Precompiled_SliverChildListDelegate_build_8603" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_insertChildRenderObject_8604" ,"Precompiled__RenderDecorationElement_296019562_insertChildRenderObject_8605" ,"Precompiled_MultiChildRenderObjectElement_insertChildRenderObject_8606" ,"Precompiled_SingleChildRenderObjectElement_insertChildRenderObject_8607" ,"Precompiled_RenderObjectToWidgetElement_insertChildRenderObject_8608" ,"Precompiled_SliverMultiBoxAdaptorElement_insertChildRenderObject_8609" ,"Precompiled__RenderSliverOverlapAbsorber_RenderSliver_RenderObjectWithChildMixin_510016527_get_child_8610" ,"Precompiled__RenderView_RenderObject_RenderObjectWithChildMixin_440268214_get_child_8611" ,"Precompiled_StatelessWidget_createElement_8612" ,"Precompiled_StatefulWidget_createElement_8613" ,"Precompiled_InheritedNotifier_createElement_8614" ,"Precompiled_InheritedWidget_createElement_8615" ,"Precompiled_ParentDataWidget_createElement_8616" ,"Precompiled_Offstage_createElement_8617" ,"Precompiled_SingleChildRenderObjectWidget_createElement_8618" ,"Precompiled__CupertinoTextSelectionToolbarItems_186300207_createElement_8619" ,"Precompiled__TextSelectionToolbarItems_337283233_createElement_8620" ,"Precompiled__Theatre_511319124_createElement_8621" ,"Precompiled_Viewport_createElement_8622" ,"Precompiled_MultiChildRenderObjectWidget_createElement_8623" ,"Precompiled__Decorator_296019562_createElement_8624" ,"Precompiled_LeafRenderObjectWidget_createElement_8625" ,"Precompiled_RenderObjectToWidgetAdapter_createElement_8626" ,"Precompiled_SliverMultiBoxAdaptorWidget_createElement_8627" ,"Precompiled_MaterialRectArcTween_set_end_8628" ,"Precompiled_MaterialPointArcTween_set_end_8629" ,"Precompiled_Tween_set_end_8630" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_mount_8631" ,"Precompiled__RenderDecorationElement_296019562_mount_8632" ,"Precompiled__ViewportElement_581166613_mount_8633" ,"Precompiled_MultiChildRenderObjectElement_mount_8634" ,"Precompiled_SingleChildRenderObjectElement_mount_8635" ,"Precompiled_RenderObjectToWidgetElement_mount_8636" ,"Precompiled_RenderObjectElement_mount_8637" ,"Precompiled_ComponentElement_mount_8638" ,"Precompiled_RenderObjectElement_detachRenderObject_8639" ,"Precompiled_Element_detachRenderObject_8640" ,"Precompiled_ImageStream_get_key_8641" ,"Precompiled_SizedBox_toStringShort_8642" ,"Precompiled_RenderObjectToWidgetAdapter_toStringShort_8643" ,"Precompiled_Widget_toStringShort_8644" ,"Precompiled_Element_toStringShort_8645" ,"Precompiled_TextSpan_toStringShort_8646" ,"Precompiled_SemanticsProperties_toStringShort_8647" ,"Precompiled_Decoration_toStringShort_8648" ,"Precompiled_FlutterErrorDetails_toStringShort_8649" ,"Precompiled_VisualDensity_toStringShort_8650" ,"Precompiled____debugFormatDouble_8651" ,"Precompiled_StrutStyle_toStringShort_8652" ,"Precompiled_TextStyle_toStringShort_8653" ,"Precompiled_SliverGeometry_toStringShort_8654" ,"Precompiled_SemanticsData_toStringShort_8655" ,"Precompiled__DiagnosticableTree_Object_Diagnosticable_200198569_toStringShort_8656" ,"Precompiled_Canvas_transform_8657" ,"Precompiled_MaterialRectArcTween_set_begin_8658" ,"Precompiled_MaterialPointArcTween_set_begin_8659" ,"Precompiled_Tween_set_begin_8660" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_update_8661" ,"Precompiled__RenderDecorationElement_296019562_update_8662" ,"Precompiled__ViewportElement_581166613_update_8663" ,"Precompiled_MultiChildRenderObjectElement_update_8664" ,"Precompiled_SingleChildRenderObjectElement_update_8665" ,"Precompiled_RenderObjectToWidgetElement_update_8666" ,"Precompiled_RenderObjectElement_update_8667" ,"Precompiled_SliverMultiBoxAdaptorElement_update_8668" ,"Precompiled_StatelessElement_update_8669" ,"Precompiled_StatefulElement_update_8670" ,"Precompiled__InheritedNotifierElement_552313948_update_8671" ,"Precompiled_ProxyElement_update_8672" ,"Precompiled_ForcePressGestureRecognizer_acceptGesture_8673" ,"Precompiled_BaseTapGestureRecognizer_acceptGesture_8674" ,"Precompiled_DragGestureRecognizer_acceptGesture_8675" ,"Precompiled_RenderFlex_toStringShort_8676" ,"Precompiled_RenderObject_toStringShort_8677" ,"Precompiled_Layer_toStringShort_8678" ,"Precompiled_SemanticsNode_toStringShort_8679" ,"Precompiled_ScrollPositionWithSingleContext_debugFillDescription_8680" ,"Precompiled_ScrollController_debugFillDescription_8681" ,"Precompiled_StatefulElement_activate_8682" ,"Precompiled_Element_activate_8683" ,"Precompiled__InheritedCupertinoTheme_188195667_updateShouldNotify_8684" ,"Precompiled__InheritedTheme_339067045_updateShouldNotify_8685" ,"Precompiled_IconTheme_updateShouldNotify_8686" ,"Precompiled_DefaultTextStyle_updateShouldNotify_8687" ,"Precompiled__ParentInkResponseProvider_294059085_updateShouldNotify_8688" ,"Precompiled__ScaffoldScope_319420462_updateShouldNotify_8689" ,"Precompiled__ActionsMarker_513441002_updateShouldNotify_8690" ,"Precompiled_Directionality_updateShouldNotify_8691" ,"Precompiled_InheritedNotifier_updateShouldNotify_8692" ,"Precompiled__LocalizationsScope_483081674_updateShouldNotify_8693" ,"Precompiled_MediaQuery_updateShouldNotify_8694" ,"Precompiled_HeroControllerScope_updateShouldNotify_8695" ,"Precompiled_PrimaryScrollController_updateShouldNotify_8696" ,"Precompiled__ModalScopeStatus_49188637_updateShouldNotify_8697" ,"Precompiled_ScrollConfiguration_updateShouldNotify_8698" ,"Precompiled__ScrollableScope_531019050_updateShouldNotify_8699" ,"Precompiled__EffectiveTickerMode_39311458_updateShouldNotify_8700" ,"Precompiled_ClipboardStatusNotifier_update_8701" ,"Precompiled_FocusNode_toStringShort_8702" ,"Precompiled__WeakProperty_0150898_get_key_8703" ,"Precompiled__WeakProperty_0150898__getKey_0150898_8704" ,"Precompiled_RenderObjectElement__updateSlot_28042623_8705" ,"Precompiled_Curve_transform_8706" ,"Precompiled_ParametricCurve_transform_8707" ,"Precompiled__ChainedEvaluation_156105126_transform_8708" ,"Precompiled_Tween_transform_8709" ,"Precompiled_CurveTween_transform_8710" ,"Precompiled_InkHighlight_activate_8711" ,"Precompiled_OverscrollIndicatorNotification_debugFillDescription_8712" ,"Precompiled_ScrollStartNotification_debugFillDescription_8713" ,"Precompiled_ScrollUpdateNotification_debugFillDescription_8714" ,"Precompiled_OverscrollNotification_debugFillDescription_8715" ,"Precompiled_UserScrollNotification_debugFillDescription_8716" ,"Precompiled_SliverChildDelegate_debugFillDescription_8717" ,"Precompiled__SystemMouseCursorSession_417306348_activate_8718" ,"Precompiled_ScrollDragController_update_8719" ,"Precompiled_TextSelectionOverlay_update_8720" ,"Precompiled_Offset___8721" ,"Precompiled_Size___8722" ,"Precompiled__WidgetsAppState_526236006_didChangeLocales_8723" ,"Precompiled_SliverGrid_estimateMaxScrollOffset_8724" ,"Precompiled_SliverMultiBoxAdaptorElement_estimateMaxScrollOffset_8725" ,"Precompiled__BufferingStreamSubscription_4048458_onData_8726" ,"Precompiled_CastStreamSubscription_onData_8727" ,"Precompiled_AllocationStub_CastStreamSubscription_8728" ,"Precompiled_CastStreamSubscription__onData_11040228__onData_11040228_8729" ,"Precompiled_CastStreamSubscription__onData_11040228_8730" ,"Precompiled_CastStreamSubscription_CastStreamSubscription__8731" ,"Precompiled_RenderSliverFixedExtentBoxAdaptor_estimateMaxScrollOffset_8732" ,"Precompiled_Matrix4_transform_8733" ,"Precompiled_Null_get__identityHashCode_0150898_8734" ,"Precompiled__StringBase_0150898_get__identityHashCode_0150898_8735" ,"Precompiled_bool_get__identityHashCode_0150898_8736" ,"Precompiled__Double_0150898_get__identityHashCode_0150898_8737" ,"Precompiled__Mint_0150898_get__identityHashCode_0150898_8738" ,"Precompiled_Object_get__identityHashCode_0150898_8739" ,"Precompiled_Object__objectHashCode_0150898_8740" ,"Precompiled_AnimationController_get_reverse_8741" ,"Precompiled_PointerAddedEvent_transformed_8742" ,"Precompiled_PointerRemovedEvent_transformed_8743" ,"Precompiled_PointerHoverEvent_transformed_8744" ,"Precompiled_PointerEnterEvent_transformed_8745" ,"Precompiled_PointerExitEvent_transformed_8746" ,"Precompiled_PointerDownEvent_transformed_8747" ,"Precompiled_PointerMoveEvent_transformed_8748" ,"Precompiled_PointerUpEvent_transformed_8749" ,"Precompiled_PointerScrollEvent_transformed_8750" ,"Precompiled_PointerCancelEvent_transformed_8751" ,"Precompiled_ECFieldElement___8752" ,"Precompiled_ReverseTween_lerp_8753" ,"Precompiled_ColorTween_lerp_8754" ,"Precompiled_SizeTween_lerp_8755" ,"Precompiled_MaterialRectArcTween_lerp_8756" ,"Precompiled_RectTween_lerp_8757" ,"Precompiled_IntTween_lerp_8758" ,"Precompiled_MaterialPointArcTween_lerp_8759" ,"Precompiled__InputBorderTween_296019562_lerp_8760" ,"Precompiled_ShapeBorderTween_lerp_8761" ,"Precompiled_ThemeDataTween_lerp_8762" ,"Precompiled_DecorationTween_lerp_8763" ,"Precompiled_EdgeInsetsGeometryTween_lerp_8764" ,"Precompiled_BorderRadiusTween_lerp_8765" ,"Precompiled_TextStyleTween_lerp_8766" ,"Precompiled_Tween_lerp_8767" ,"Precompiled__ExternalFloat64x2Array_7027147__createList_7027147_8768" ,"Precompiled__Float64x2ArrayView_7027147__createList_7027147_8769" ,"Precompiled__ExternalInt32x4Array_7027147__createList_7027147_8770" ,"Precompiled__ExternalFloat32x4Array_7027147__createList_7027147_8771" ,"Precompiled__ExternalFloat64Array_7027147__createList_7027147_8772" ,"Precompiled__ExternalFloat32Array_7027147__createList_7027147_8773" ,"Precompiled__ExternalUint64Array_7027147__createList_7027147_8774" ,"Precompiled__ExternalInt64Array_7027147__createList_7027147_8775" ,"Precompiled__Int64List_7027147__createList_7027147_8776" ,"Precompiled__ExternalUint32Array_7027147__createList_7027147_8777" ,"Precompiled__ExternalInt32Array_7027147__createList_7027147_8778" ,"Precompiled__Int32ArrayView_7027147__createList_7027147_8779" ,"Precompiled__Int32List_7027147__createList_7027147_8780" ,"Precompiled__ExternalUint16Array_7027147__createList_7027147_8781" ,"Precompiled__ExternalInt16Array_7027147__createList_7027147_8782" ,"Precompiled__ExternalUint8ClampedArray_7027147__createList_7027147_8783" ,"Precompiled__Uint8ClampedArrayView_7027147__createList_7027147_8784" ,"Precompiled__ExternalUint8Array_7027147__createList_7027147_8785" ,"Precompiled__Uint8ArrayView_7027147__createList_7027147_8786" ,"Precompiled__Uint8List_7027147__createList_7027147_8787" ,"Precompiled__ExternalInt8Array_7027147__createList_7027147_8788" ,"Precompiled__Double_0150898___8789" ,"Precompiled__IntegerImplementation_0150898___8790" ,"Precompiled__MediaQueryFromWindowsState_526236006_didChangeMetrics_8791" ,"Precompiled_EditableTextState_didChangeMetrics_8792" ,"Precompiled_HeroController_didReplace_8793" ,"Precompiled_TransitionRoute_didReplace_8794" ,"Precompiled__MediaQueryFromWindowsState_526236006_didChangeTextScaleFactor_8795" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_49188637_get_willHandlePopInternally_8796" ,"Precompiled_BallisticScrollActivity_resetActivity_8797" ,"Precompiled_Object_get_runtimeType_8798" ,"Precompiled_DragScrollActivity_dispatchScrollStartNotification_8799" ,"Precompiled_ScrollActivity_dispatchScrollStartNotification_8800" ,"Precompiled_RangeMaintainingScrollPhysics_adjustPositionForNewDimensions_8801" ,"Precompiled_ScrollPhysics_adjustPositionForNewDimensions_8802" ,"Precompiled__BigIntImpl_0150898_get_hashCode_8803" ,"Precompiled__StringBase_0150898__createStringFromIterable_0150898__anonymous_closure__8804" ,"Precompiled__RegExpHashKey_0150898_get_hashCode_8805" ,"Precompiled_DateTime_get_hashCode_8806" ,"Precompiled_Duration_get_hashCode_8807" ,"Precompiled__Uri_0150898_get_hashCode_8808" ,"Precompiled__SimpleUri_0150898_get_hashCode_8809" ,"Precompiled__ControllerStream_4048458_get_hashCode_8810" ,"Precompiled_RawKeyEventDataAndroid_getModifierSide_8811" ,"Precompiled_RawKeyEventDataFuchsia_getModifierSide_8812" ,"Precompiled_RawKeyEventDataLinux_getModifierSide_8813" ,"Precompiled_RawKeyEventDataMacOs_getModifierSide_8814" ,"Precompiled_RawKeyEventDataWeb_getModifierSide_8815" ,"Precompiled_RawKeyEventDataWindows_getModifierSide_8816" ,"Precompiled_GLFWKeyHelper_getModifierSide_8817" ,"Precompiled__HashMapEntry_3220832_get_hashCode_8818" ,"Precompiled__HashSetEntry_3220832_get_hashCode_8819" ,"Precompiled_PictureLayer_addToScene_8820" ,"Precompiled_PerformanceOverlayLayer_addToScene_8821" ,"Precompiled_TransformLayer_addToScene_8822" ,"Precompiled_OffsetLayer_addToScene_8823" ,"Precompiled_ClipRectLayer_addToScene_8824" ,"Precompiled_ClipPathLayer_addToScene_8825" ,"Precompiled_OpacityLayer_addToScene_8826" ,"Precompiled_PhysicalModelLayer_addToScene_8827" ,"Precompiled_LeaderLayer_addToScene_8828" ,"Precompiled_FollowerLayer_addToScene_8829" ,"Precompiled_ContainerLayer_addToScene_8830" ,"Precompiled_LayoutId_applyParentData_8831" ,"Precompiled_Positioned_applyParentData_8832" ,"Precompiled_Flexible_applyParentData_8833" ,"Precompiled_KeepAlive_applyParentData_8834" ,"Precompiled_Symbol_get_hashCode_8835" ,"Precompiled_AllocationStub_Symbol_8836" ,"Precompiled_Symbol_computeUnmangledName_8837" ,"Precompiled_DragScrollActivity_dispatchScrollEndNotification_8838" ,"Precompiled_ScrollActivity_dispatchScrollEndNotification_8839" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_removeChildRenderObject_8840" ,"Precompiled__RenderDecorationElement_296019562_removeChildRenderObject_8841" ,"Precompiled_MultiChildRenderObjectElement_removeChildRenderObject_8842" ,"Precompiled_SingleChildRenderObjectElement_removeChildRenderObject_8843" ,"Precompiled_RenderObjectToWidgetElement_removeChildRenderObject_8844" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChildRenderObject_8845" ,"Precompiled__ByteDataView_7027147_get_offsetInBytes_8846" ,"Precompiled_BoxHitTestEntry_get_target_8847" ,"Precompiled_SliverHitTestEntry_get_target_8848" ,"Precompiled_Route_get_isActive_8849" ,"Precompiled_ForcePressGestureRecognizer_didStopTrackingLastPointer_8850" ,"Precompiled_PrimaryPointerGestureRecognizer_didStopTrackingLastPointer_8851" ,"Precompiled_DragGestureRecognizer_didStopTrackingLastPointer_8852" ,"Precompiled_Offset_get_hashCode_8853" ,"Precompiled_Rect_get_hashCode_8854" ,"Precompiled_Radius_get_hashCode_8855" ,"Precompiled_RRect_get_hashCode_8856" ,"Precompiled_CupertinoDynamicColor_get_hashCode_8857" ,"Precompiled_ColorSwatch_get_hashCode_8858" ,"Precompiled_Color_get_hashCode_8859" ,"Precompiled_TextDecoration_get_hashCode_8860" ,"Precompiled_TextStyle_get_hashCode_8861" ,"Precompiled_ParagraphStyle_get_hashCode_8862" ,"Precompiled_StrutStyle_get_hashCode_8863" ,"Precompiled_TextBox_get_hashCode_8864" ,"Precompiled_TextSelection_get_hashCode_8865" ,"Precompiled_TextRange_get_hashCode_8866" ,"Precompiled_Locale_get_hashCode_8867" ,"Precompiled_DocumentReference_get_hashCode_8868" ,"Precompiled_FirestorePlatform_get_hashCode_8869" ,"Precompiled_DocumentReferencePlatform_get_hashCode_8870" ,"Precompiled_Blob_get_hashCode_8871" ,"Precompiled_AllocationStub_Blob_8872" ,"Precompiled_AllocationStub_GeoPoint_8873" ,"Precompiled__MapEntry_103183165_get_hashCode_8874" ,"Precompiled__TypedDataBuffer_489432058_get_lengthInBytes_8875" ,"Precompiled_Element_get_hashCode_8876" ,"Precompiled_TextSpan_get_hashCode_8877" ,"Precompiled_IconThemeData_get_hashCode_8878" ,"Precompiled_BoxDecoration_get_hashCode_8879" ,"Precompiled_AppBarTheme_get_hashCode_8880" ,"Precompiled_BottomAppBarTheme_get_hashCode_8881" ,"Precompiled_BottomNavigationBarThemeData_get_hashCode_8882" ,"Precompiled_BottomSheetThemeData_get_hashCode_8883" ,"Precompiled_ButtonBarThemeData_get_hashCode_8884" ,"Precompiled_ButtonThemeData_get_hashCode_8885" ,"Precompiled_CardTheme_get_hashCode_8886" ,"Precompiled_ChipThemeData_get_hashCode_8887" ,"Precompiled_ColorScheme_get_hashCode_8888" ,"Precompiled_DividerThemeData_get_hashCode_8889" ,"Precompiled_FloatingActionButtonThemeData_get_hashCode_8890" ,"Precompiled_InputDecorationTheme_get_hashCode_8891" ,"Precompiled_SystemMouseCursor_get_hashCode_8892" ,"Precompiled_NavigationRailThemeData_get_hashCode_8893" ,"Precompiled_PageTransitionsTheme_get_hashCode_8894" ,"Precompiled_PopupMenuThemeData_get_hashCode_8895" ,"Precompiled_SliderThemeData_get_hashCode_8896" ,"Precompiled_SnackBarThemeData_get_hashCode_8897" ,"Precompiled_TabBarTheme_get_hashCode_8898" ,"Precompiled_TextTheme_get_hashCode_8899" ,"Precompiled_ThemeData_get_hashCode_8900" ,"Precompiled_ToggleButtonsThemeData_get_hashCode_8901" ,"Precompiled_TooltipThemeData_get_hashCode_8902" ,"Precompiled_Typography_get_hashCode_8903" ,"Precompiled_StrutStyle_get_hashCode_8904" ,"Precompiled_TextStyle_get_hashCode_8905" ,"Precompiled_SemanticsData_get_hashCode_8906" ,"Precompiled_LogicalKeyboardKey_get_hashCode_8907" ,"Precompiled_PhysicalKeyboardKey_get_hashCode_8908" ,"Precompiled_LongPressGestureRecognizer_isPointerAllowed_8909" ,"Precompiled_TapGestureRecognizer_isPointerAllowed_8910" ,"Precompiled__AnyTapGestureRecognizer_575005443_isPointerAllowed_8911" ,"Precompiled_DragGestureRecognizer_isPointerAllowed_8912" ,"Precompiled_GestureRecognizer_isPointerAllowed_8913" ,"Precompiled_DoubleTapGestureRecognizer_isPointerAllowed_8914" ,"Precompiled__InputBorderGap_296019562_get_hashCode_8915" ,"Precompiled_HeroController_didPush_8916" ,"Precompiled_ModalRoute_didPush_8917" ,"Precompiled_Route_didPush_8918" ,"Precompiled_ValueKey_get_hashCode_8919" ,"Precompiled_GlobalObjectKey_get_hashCode_8920" ,"Precompiled__MediaQueryFromWindowsState_526236006_didChangePlatformBrightness_8921" ,"Precompiled_SawTooth_transformInternal_8922" ,"Precompiled_Interval_transformInternal_8923" ,"Precompiled_Threshold_transformInternal_8924" ,"Precompiled_Cubic_transformInternal_8925" ,"Precompiled_FlippedCurve_transformInternal_8926" ,"Precompiled__DecelerateCurve_154484502_transformInternal_8927" ,"Precompiled__BroadcastStreamController_4048458_set_onCancel_8928" ,"Precompiled_Velocity_get_hashCode_8929" ,"Precompiled_UnderlineInputBorder_get_hashCode_8930" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_get_hashCode_8931" ,"Precompiled_StadiumBorder_get_hashCode_8932" ,"Precompiled__Decoration_296019562_get_hashCode_8933" ,"Precompiled_InputDecoration_get_hashCode_8934" ,"Precompiled_BouncingScrollPhysics_carriedMomentum_8935" ,"Precompiled_ScrollPhysics_carriedMomentum_8936" ,"Precompiled__IdentityThemeDataCacheKey_340408314_get_hashCode_8937" ,"Precompiled_AlignmentGeometry_get_hashCode_8938" ,"Precompiled_BorderRadiusGeometry_get_hashCode_8939" ,"Precompiled_BorderSide_get_hashCode_8940" ,"Precompiled_EdgeInsetsGeometry_get_hashCode_8941" ,"Precompiled_LinearGradient_get_hashCode_8942" ,"Precompiled_ImageConfiguration_get_hashCode_8943" ,"Precompiled_AssetImage_get_hashCode_8944" ,"Precompiled_InlineSpanSemanticsInformation_get_hashCode_8945" ,"Precompiled__BodyBoxConstraints_319420462_get_hashCode_8946" ,"Precompiled_SliverConstraints_get_hashCode_8947" ,"Precompiled_RelativeRect_get_hashCode_8948" ,"Precompiled_PageTransitionsTheme_buildTransitions_8949" ,"Precompiled_ModalRoute_didChangePrevious_8950" ,"Precompiled_SystemUiOverlayStyle_get_hashCode_8951" ,"Precompiled_TextInputType_get_hashCode_8952" ,"Precompiled_TextEditingValue_get_hashCode_8953" ,"Precompiled_AsyncSnapshot_get_hashCode_8954" ,"Precompiled_IndexedSlot_get_hashCode_8955" ,"Precompiled_IconData_get_hashCode_8956" ,"Precompiled_MediaQueryData_get_hashCode_8957" ,"Precompiled__StorageEntryIdentifier_584357337_get_hashCode_8958" ,"Precompiled_KeySet_get_hashCode_8959" ,"Precompiled_GoogleSignInUserData_get_hashCode_8960" ,"Precompiled____hashObjects_8961" ,"Precompiled_____finish_149084891_8962" ,"Precompiled____hash3_8963" ,"Precompiled_GoogleSignInTokenData_get_hashCode_8964" ,"Precompiled_RawKeyEvent_get_logicalKey_8965" ,"Precompiled_Layer_updateSubtreeNeedsAddToScene_8966" ,"Precompiled_ContainerLayer_updateSubtreeNeedsAddToScene_8967" ,"Precompiled_ECFieldElement_get_hashCode_8968" ,"Precompiled_ECPointBase_get_hashCode_8969" ,"Precompiled_ECCurve_get_hashCode_8970" ,"Precompiled_Matrix4_get_hashCode_8971" ,"Precompiled____hashObjects_8972" ,"Precompiled_____finish_751285449_8973" ,"Precompiled_FadeUpwardsPageTransitionsBuilder_buildTransitions_8974" ,"Precompiled_CupertinoPageTransitionsBuilder_buildTransitions_8975" ,"Precompiled_DynamicLibrary_get_hashCode_8976" ,"Precompiled_DynamicLibrary_getHandle_8977" ,"Precompiled_Pointer_get_hashCode_8978" ,"Precompiled__StringBase_0150898_get_hashCode_8979" ,"Precompiled__OneByteString_0150898_get_hashCode_8980" ,"Precompiled__SendPortImpl_1026248_get_hashCode_8981" ,"Precompiled__RawReceivePortImpl_1026248_get_hashCode_8982" ,"Precompiled__CapabilityImpl_1026248_get_hashCode_8983" ,"Precompiled__CapabilityImpl_1026248__get_hashcode_1026248_8984" ,"Precompiled__CapabilityImpl_1026248__equals_1026248_8985" ,"Precompiled_PageScrollPhysics_createBallisticSimulation_8986" ,"Precompiled_BouncingScrollPhysics_createBallisticSimulation_8987" ,"Precompiled_ClampingScrollPhysics_createBallisticSimulation_8988" ,"Precompiled_ScrollPhysics_createBallisticSimulation_8989" ,"Precompiled__Double_0150898_get_hashCode_8990" ,"Precompiled__Closure_0150898_get_hashCode_8991" ,"Precompiled__Closure_0150898__computeHash_0150898_8992" ,"Precompiled__Type_0150898_get_hashCode_8993" ,"Precompiled_CallbackAction_invoke_8994" ,"Precompiled_RequestFocusAction_invoke_8995" ,"Precompiled_NextFocusAction_invoke_8996" ,"Precompiled_PreviousFocusAction_invoke_8997" ,"Precompiled_DirectionalFocusAction_invoke_8998" ,"Precompiled_ScrollAction_invoke_8999" ,"Precompiled_Image_toString_9000" ,"Precompiled_BouncingScrollPhysics_get_dragStartDistanceMotionThreshold_9001" ,"Precompiled_ScrollPhysics_get_dragStartDistanceMotionThreshold_9002" ,"Precompiled__BigIntImpl_0150898_toString_9003" ,"Precompiled__AssertionError_0150898_toString_9004" ,"Precompiled__TypeError_0150898__throwNew_0150898_9005" ,"Precompiled__TypeError_0150898__TypeError_0150898__create_0150898_9006" ,"Precompiled__LateInitializationError_0150898_toString_9007" ,"Precompiled_AssertionError_toString_9008" ,"Precompiled_NullThrownError_toString_9009" ,"Precompiled_ArgumentError_toString_9010" ,"Precompiled_FallThroughError_toString_9011" ,"Precompiled_FallThroughError_FallThroughError__create_0150898_9012" ,"Precompiled_AbstractClassInstantiationError_toString_9013" ,"Precompiled_AbstractClassInstantiationError_AbstractClassInstantiationError__create_0150898_9014" ,"Precompiled_NoSuchMethodError_toString_9015" ,"Precompiled_NoSuchMethodError__toStringPlain_0150898_9016" ,"Precompiled__InvocationMirror_0150898_get_isGetter_9017" ,"Precompiled_AllocationStub__InvocationMirror_0150898_9018" ,"Precompiled__InvocationMirror_0150898__allocateInvocationMirrorForClosure_0150898_9019" ,"Precompiled__InvocationMirror_0150898__allocateInvocationMirror_0150898_9020" ,"Precompiled__InvocationMirror_0150898__unpackTypeArguments_0150898_9021" ,"Precompiled__InvocationMirror_0150898_get__typeArgsLen_0150898_9022" ,"Precompiled__InvocationMirror_0150898__InvocationMirror_0150898__withType_0150898_9023" ,"Precompiled__InvocationMirror_0150898_get_isAccessor_9024" ,"Precompiled_NoSuchMethodError__symbolToString_0150898_9025" ,"Precompiled_AllocationStub_NoSuchMethodError_9026" ,"Precompiled_NoSuchMethodError__NamedArgumentsMap_0150898_9027" ,"Precompiled_NoSuchMethodError__throwNew_0150898_9028" ,"Precompiled_NoSuchMethodError_NoSuchMethodError__withType_0150898_9029" ,"Precompiled__InvocationMirror_0150898__setMemberNameAndType_0150898_9030" ,"Precompiled_NoSuchMethodError__existingMethodSignature_0150898_9031" ,"Precompiled__InvocationMirror_0150898_get_namedArguments_9032" ,"Precompiled__InvocationMirror_0150898_get_positionalArguments_9033" ,"Precompiled__ImmutableList_0150898__ImmutableList_0150898__from_0150898_9034" ,"Precompiled_TypeTestingStub_dart_core___ImmutableList__E_9035" ,"Precompiled__InvocationMirror_0150898_get_typeArguments_9036" ,"Precompiled__InvocationMirror_0150898_get_memberName_9037" ,"Precompiled_UnsupportedError_toString_9038" ,"Precompiled_UnimplementedError_toString_9039" ,"Precompiled_StateError_toString_9040" ,"Precompiled_ConcurrentModificationError_toString_9041" ,"Precompiled_CyclicInitializationError_toString_9042" ,"Precompiled_CyclicInitializationError_CyclicInitializationError__9043" ,"Precompiled_JsonCyclicError_toString_9044" ,"Precompiled_AllocationStub_JsonCyclicError_9045" ,"Precompiled_AllocationStub_JsonUnsupportedObjectError_9046" ,"Precompiled_JsonUnsupportedObjectError_toString_9047" ,"Precompiled_FlutterError_toString_9048" ,"Precompiled__InternalError_0150898_toString_9049" ,"Precompiled__ImmutableMap_0150898_toString_9050" ,"Precompiled_ListQueue_toString_9051" ,"Precompiled__CastIterableBase_11040228_toString_9052" ,"Precompiled_Iterable_toString_9053" ,"Precompiled_DateTime_toString_9054" ,"Precompiled_Duration_toString_9055" ,"Precompiled__StringBase_0150898_split__anonymous_closure__9056" ,"Precompiled_OutOfMemoryError_toString_9057" ,"Precompiled_StackOverflowError_toString_9058" ,"Precompiled__Exception_0150898_toString_9059" ,"Precompiled_FormatException_toString_9060" ,"Precompiled_IntegerDivisionByZeroException_toString_9061" ,"Precompiled_Expando_toString_9062" ,"Precompiled_MapEntry_toString_9063" ,"Precompiled__StringStackTrace_0150898_toString_9064" ,"Precompiled_AllocationStub__StringStackTrace_0150898_9065" ,"Precompiled_StringBuffer_toString_9066" ,"Precompiled__Uri_0150898_toString_9067" ,"Precompiled_UriData_toString_9068" ,"Precompiled__ModalRoute_42264537_buildTransitions_9069" ,"Precompiled_MaterialPageRoute_buildTransitions_9070" ,"Precompiled_RawKeyEventDataAndroid_isModifierPressed_9071" ,"Precompiled_RawKeyEventDataFuchsia_isModifierPressed_9072" ,"Precompiled_RawKeyEventDataLinux_isModifierPressed_9073" ,"Precompiled_RawKeyEventDataMacOs_isModifierPressed_9074" ,"Precompiled_RawKeyEventDataWeb_isModifierPressed_9075" ,"Precompiled_RawKeyEventDataWindows_isModifierPressed_9076" ,"Precompiled_GLFWKeyHelper_isModifierPressed_9077" ,"Precompiled_AsyncError_toString_9078" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin_3220832_toString_9079" ,"Precompiled_AuthProvider_get_signOut_9080" ,"Precompiled_PictureLayer_findAnnotations_9081" ,"Precompiled_TransformLayer_findAnnotations_9082" ,"Precompiled_OffsetLayer_findAnnotations_9083" ,"Precompiled_ClipRectLayer_findAnnotations_9084" ,"Precompiled_ClipPathLayer_findAnnotations_9085" ,"Precompiled_ContainerLayer_findAnnotations_9086" ,"Precompiled_PhysicalModelLayer_findAnnotations_9087" ,"Precompiled_LeaderLayer_findAnnotations_9088" ,"Precompiled_FollowerLayer_findAnnotations_9089" ,"Precompiled_AnnotatedRegionLayer_findAnnotations_9090" ,"Precompiled_MethodChannelFirebaseAuth_get_signOut_9091" ,"Precompiled_StandardMessageCodec_encodeMessage_9092" ,"Precompiled_RawKeyEventDataAndroid_get_logicalKey_9093" ,"Precompiled_RawKeyEventDataFuchsia_get_logicalKey_9094" ,"Precompiled_RawKeyEventDataLinux_get_logicalKey_9095" ,"Precompiled_RawKeyEventDataMacOs_get_logicalKey_9096" ,"Precompiled_RawKeyEventDataWeb_get_logicalKey_9097" ,"Precompiled_RawKeyEventDataWindows_get_logicalKey_9098" ,"Precompiled_MapView_toString_9099" ,"Precompiled_Frame_get_library_9100" ,"Precompiled_AllocationStub_Frame_9101" ,"Precompiled____init__initialDot_743140773_9102" ,"Precompiled____init__asyncBody_743140773_9103" ,"Precompiled____init__friendlyFrame_743140773_9104" ,"Precompiled____init__firefoxSafariFrame_743140773_9105" ,"Precompiled____init__v8EvalLocation_743140773_9106" ,"Precompiled____init__v8UrlLocation_743140773_9107" ,"Precompiled____init__v8Frame_743140773_9108" ,"Precompiled____init__vmFrame_743140773_9109" ,"Precompiled_Frame_init__windowsRegExp_743140773_9110" ,"Precompiled_Frame_init__uriRegExp_743140773_9111" ,"Precompiled_Frame_Frame_parseFriendly_9112" ,"Precompiled_Frame__catchFormatException_743140773_9113" ,"Precompiled_UnparsedFrame_UnparsedFrame__9114" ,"Precompiled_AllocationStub_UnparsedFrame_9115" ,"Precompiled_TypeTestingStub_package_stack_trace_src_frame_dart__Frame_9116" ,"Precompiled_Frame_Frame_parseFirefox_9117" ,"Precompiled_Frame_Frame_parseV8_9118" ,"Precompiled_Frame_Frame_parseVM_9119" ,"Precompiled_Frame__uriOrPathToUri_743140773_9120" ,"Precompiled_FirebaseAuth_get_signOut_9121" ,"Precompiled_StandardMessageCodec_decodeMessage_9122" ,"Precompiled_Symbol_toString_9123" ,"Precompiled_ScrollActivity_dispatchOverscrollNotification_9124" ,"Precompiled_DragScrollActivity_dispatchOverscrollNotification_9125" ,"Precompiled_BallisticScrollActivity_dispatchOverscrollNotification_9126" ,"Precompiled_DrivenScrollActivity_dispatchOverscrollNotification_9127" ,"Precompiled_IsolateSpawnException_toString_9128" ,"Precompiled_BouncingScrollPhysics_applyPhysicsToUserOffset_9129" ,"Precompiled_ScrollPhysics_applyPhysicsToUserOffset_9130" ,"Precompiled__ByteBuffer_7027147_get_lengthInBytes_9131" ,"Precompiled__TypedListView_7027147_get_lengthInBytes_9132" ,"Precompiled__TypedList_7027147_get_lengthInBytes_9133" ,"Precompiled_ModalRoute_changedExternalState_9134" ,"Precompiled_ModalRoute_willPop_9135" ,"Precompiled_OSError_toString_9136" ,"Precompiled__Directory_15069316_toString_9137" ,"Precompiled__File_15069316_toString_9138" ,"Precompiled__Link_15069316_toString_9139" ,"Precompiled_Route_willPop_9140" ,"Precompiled_FileSystemException_toString_9141" ,"Precompiled_OneSequenceGestureRecognizer_startTrackingPointer_9142" ,"Precompiled_TlsException_toString_9143" ,"Precompiled_InternetAddressType_toString_9144" ,"Precompiled_Offset_toString_9145" ,"Precompiled_Size_toString_9146" ,"Precompiled_Rect_toString_9147" ,"Precompiled_Radius_toString_9148" ,"Precompiled_RRect_toString_9149" ,"Precompiled_CupertinoDynamicColor_toString_9150" ,"Precompiled_ColorSwatch_toString_9151" ,"Precompiled__TapTracker_229391311_startTrackingPointer_9152" ,"Precompiled_Color_toString_9153" ,"Precompiled_Paint_toString_9154" ,"Precompiled_PathOperation_toString_9155" ,"Precompiled_TileMode_toString_9156" ,"Precompiled_BoxShadow_toString_9157" ,"Precompiled_PointerData_toString_9158" ,"Precompiled_SemanticsAction_toString_9159" ,"Precompiled_SemanticsFlag_toString_9160" ,"Precompiled_FontWeight_toString_9161" ,"Precompiled_TextDecoration_toString_9162" ,"Precompiled_TextStyle_toString_9163" ,"Precompiled_ParagraphStyle_toString_9164" ,"Precompiled_TextBox_toString_9165" ,"Precompiled_TextPosition_toString_9166" ,"Precompiled_TextSelection_toString_9167" ,"Precompiled_TextRange_toString_9168" ,"Precompiled_ParagraphConstraints_toString_9169" ,"Precompiled_BoxWidthStyle_toString_9170" ,"Precompiled_FrameTiming_toString_9171" ,"Precompiled_WindowPadding_toString_9172" ,"Precompiled_Locale_toString_9173" ,"Precompiled_AccessibilityFeatures_toString_9174" ,"Precompiled_Memory_toString_9175" ,"Precompiled_AllocationStub_Memory_9176" ,"Precompiled_Memory_Memory_fromMap_9177" ,"Precompiled_TypeTestingStub_package_Dayflect_models_memory_dart__Memory_9178" ,"Precompiled_FieldPathType_toString_9179" ,"Precompiled_Timestamp_toString_9180" ,"Precompiled_HeapPriorityQueue_toString_9181" ,"Precompiled__DelegatingIterableBase_113184915_toString_9182" ,"Precompiled__InheritedTheme_339067045_wrap_9183" ,"Precompiled_IconTheme_wrap_9184" ,"Precompiled_DefaultTextStyle_wrap_9185" ,"Precompiled_AuthResult_toString_9186" ,"Precompiled_FirebaseUser_toString_9187" ,"Precompiled_UserInfo_toString_9188" ,"Precompiled_AuthCredential_toString_9189" ,"Precompiled_FirebaseApp_toString_9190" ,"Precompiled_TrainHoppingAnimation_toString_9191" ,"Precompiled__AlwaysCompleteAnimation_153411118_toString_9192" ,"Precompiled__AlwaysDismissedAnimation_153411118_toString_9193" ,"Precompiled_Animation_toString_9194" ,"Precompiled_ProxyAnimation_toString_9195" ,"Precompiled_ReverseAnimation_toString_9196" ,"Precompiled_CurvedAnimation_toString_9197" ,"Precompiled_CompoundAnimation_toString_9198" ,"Precompiled__AnimatedEvaluation_156105126_toString_9199" ,"Precompiled_CustomPainter_toString_9200" ,"Precompiled__MergingListenable_195329750_toString_9201" ,"Precompiled_CustomClipper_toString_9202" ,"Precompiled_SpringSimulation_toString_9203" ,"Precompiled_BouncingScrollSimulation_toString_9204" ,"Precompiled_Simulation_toString_9205" ,"Precompiled_SawTooth_toString_9206" ,"Precompiled_Interval_toString_9207" ,"Precompiled_Cubic_toString_9208" ,"Precompiled_FlippedCurve_toString_9209" ,"Precompiled_ParametricCurve_toString_9210" ,"Precompiled__ChainedEvaluation_156105126_toString_9211" ,"Precompiled_MaterialRectArcTween_toString_9212" ,"Precompiled_MaterialPointArcTween_toString_9213" ,"Precompiled_Tween_toString_9214" ,"Precompiled_CurveTween_toString_9215" ,"Precompiled__CupertinoLocalizationsDelegate_172010061_toString_9216" ,"Precompiled__MaterialLocalizationsDelegate_300075540_toString_9217" ,"Precompiled__WidgetsLocalizationsDelegate_483081674_toString_9218" ,"Precompiled__BoxDecorationPainter_358196095_toString_9219" ,"Precompiled_CupertinoDynamicColor_resolveFrom_9220" ,"Precompiled_CupertinoUserInterfaceLevel_of_9221" ,"Precompiled__MaterialInteriorState_298372823_forEachTween_9222" ,"Precompiled__AnimatedThemeState_339067045_forEachTween_9223" ,"Precompiled__AnimatedPaddingState_497443363_forEachTween_9224" ,"Precompiled__AnimatedDefaultTextStyleState_497443363_forEachTween_9225" ,"Precompiled__AnimatedPhysicalModelState_497443363_forEachTween_9226" ,"Precompiled__AnimatedOpacityState_497443363_forEachTween_9227" ,"Precompiled___CupertinoTextSelectionToolbarContentState_State_TickerProviderStateMixin_186300207__removeTicker_39311458_9228" ,"Precompiled___BorderContainerState_State_TickerProviderStateMixin_296019562__removeTicker_39311458_9229" ,"Precompiled__EditableTextState_State_AutomaticKeepAliveClientMixin_WidgetsBindingObserver_TickerProviderStateMixin_559183791__removeTicker_39311458_9230" ,"Precompiled__CupertinoIconThemeData_IconThemeData_Diagnosticable_169449307_toString_9231" ,"Precompiled_FlutterErrorDetails_toString_9232" ,"Precompiled_MouseCursor_toString_9233" ,"Precompiled__DiagnosticableTree_Object_Diagnosticable_200198569_toString_9234" ,"Precompiled_ForcePressGestureRecognizer_addAllowedPointer_9235" ,"Precompiled_PrimaryPointerGestureRecognizer_addAllowedPointer_9236" ,"Precompiled_BaseTapGestureRecognizer_addAllowedPointer_9237" ,"Precompiled_BindingBase_toString_9238" ,"Precompiled_DragGestureRecognizer_addAllowedPointer_9239" ,"Precompiled_DoubleTapGestureRecognizer_addAllowedPointer_9240" ,"Precompiled_ValueNotifier_toString_9241" ,"Precompiled_ViewportOffset_toString_9242" ,"Precompiled_HeroController_didPop_9243" ,"Precompiled_ScrollController_toString_9244" ,"Precompiled__ShortcutManager_ChangeNotifier_Diagnosticable_516043213_toString_9245" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_49188637_didPop_9246" ,"Precompiled_Route_didPop_9247" ,"Precompiled_DiagnosticsNode_toString_9248" ,"Precompiled_ValueKey_toString_9249" ,"Precompiled_UniqueKey_toString_9250" ,"Precompiled_LabeledGlobalKey_toString_9251" ,"Precompiled_GlobalObjectKey_toString_9252" ,"Precompiled_AnimationController_toStringDetails_9253" ,"Precompiled_AlwaysStoppedAnimation_toStringDetails_9254" ,"Precompiled_Animation_toStringDetails_9255" ,"Precompiled__AnimatedEvaluation_156105126_toStringDetails_9256" ,"Precompiled__RenderObject_AbstractNode_DiagnosticableTreeMixin_419266271_toString_9257" ,"Precompiled__GestureRecognizer_GestureArenaMember_DiagnosticableTreeMixin_232296176_toString_9258" ,"Precompiled__GestureArena_214060655_toString_9259" ,"Precompiled_StringCodec_encodeMessage_9260" ,"Precompiled_JSONMessageCodec_encodeMessage_9261" ,"Precompiled_DragDownDetails_toString_9262" ,"Precompiled_DragStartDetails_toString_9263" ,"Precompiled_DragUpdateDetails_toString_9264" ,"Precompiled_DragEndDetails_toString_9265" ,"Precompiled_BoxHitTestEntry_toString_9266" ,"Precompiled_SliverHitTestEntry_toString_9267" ,"Precompiled_HitTestEntry_toString_9268" ,"Precompiled_HitTestResult_toString_9269" ,"Precompiled_OffsetPair_toString_9270" ,"Precompiled_Velocity_toString_9271" ,"Precompiled_VelocityEstimate_toString_9272" ,"Precompiled__PointAtTime_236010635_toString_9273" ,"Precompiled_ScrollBehavior_toString_9274" ,"Precompiled__NoDefaultCupertinoThemeData_188195667_resolveFrom_9275" ,"Precompiled_LinearGradient_scale__anonymous_closure__9276" ,"Precompiled_MaterialBasedCupertinoThemeData_resolveFrom_9277" ,"Precompiled_CupertinoThemeData_resolveFrom_9278" ,"Precompiled__DefaultHeroTag_282192485_toString_9279" ,"Precompiled__EndFloatFabLocation_283063916_toString_9280" ,"Precompiled_FloatingActionButtonAnimator_toString_9281" ,"Precompiled_StringCodec_decodeMessage_9282" ,"Precompiled_JSONMessageCodec_decodeMessage_9283" ,"Precompiled_CircleBorder_toString_9284" ,"Precompiled_RoundedRectangleBorder_toString_9285" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_toString_9286" ,"Precompiled_StadiumBorder_toString_9287" ,"Precompiled__StadiumToCircleBorder_386467860_toString_9288" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860_toString_9289" ,"Precompiled_Border_toString_9290" ,"Precompiled_ShapeBorder_toString_9291" ,"Precompiled_InputDecoration_toString_9292" ,"Precompiled_MultiChildLayoutDelegate_toString_9293" ,"Precompiled__CupertinoLocalizationsDelegate_172010061_load_9294" ,"Precompiled__MaterialLocalizationsDelegate_300075540_load_9295" ,"Precompiled__WidgetsLocalizationsDelegate_483081674_load_9296" ,"Precompiled_Action_isEnabled_9297" ,"Precompiled_ScrollAction_isEnabled_9298" ,"Precompiled_Alignment_toString_9299" ,"Precompiled_AlignmentDirectional_toString_9300" ,"Precompiled_AlignmentGeometry_toString_9301" ,"Precompiled_TextAlignVertical_toString_9302" ,"Precompiled__CupertinoThemeDefaults_188195667_resolveFrom_9303" ,"Precompiled__CupertinoTextThemeDefaults_188195667_resolveFrom_9304" ,"Precompiled_BorderRadiusGeometry_toString_9305" ,"Precompiled_BorderSide_toString_9306" ,"Precompiled_PaintingContext_toString_9307" ,"Precompiled_EdgeInsetsGeometry_toString_9308" ,"Precompiled_LinearGradient_toString_9309" ,"Precompiled_ImageConfiguration_toString_9310" ,"Precompiled_AssetImage_toString_9311" ,"Precompiled_ImageProvider_toString_9312" ,"Precompiled_AssetBundleImageKey_toString_9313" ,"Precompiled_ImageInfo_toString_9314" ,"Precompiled_InlineSpanSemanticsInformation_toString_9315" ,"Precompiled_GoogleSignIn_get_signOut_9316" ,"Precompiled_MethodChannelGoogleSignIn_get_signOut_9317" ,"Precompiled_SpringDescription_toString_9318" ,"Precompiled_Tolerance_toString_9319" ,"Precompiled_BoxConstraints_toString_9320" ,"Precompiled_SliverConstraints_toString_9321" ,"Precompiled__ToolbarParentData_186300207_toString_9322" ,"Precompiled_MultiChildLayoutParentData_toString_9323" ,"Precompiled_FlexParentData_toString_9324" ,"Precompiled_TextParentData_toString_9325" ,"Precompiled_StackParentData_toString_9326" ,"Precompiled_ToolbarItemsParentData_toString_9327" ,"Precompiled_BoxParentData_toString_9328" ,"Precompiled_SliverLogicalParentData_toString_9329" ,"Precompiled_SliverGridParentData_toString_9330" ,"Precompiled_SliverMultiBoxAdaptorParentData_toString_9331" ,"Precompiled_SliverPhysicalParentData_toString_9332" ,"Precompiled_ParentData_toString_9333" ,"Precompiled_TextSelectionPoint_toString_9334" ,"Precompiled_AnnotationEntry_toString_9335" ,"Precompiled_LayerLink_toString_9336" ,"Precompiled__MouseState_418325758_toString_9337" ,"Precompiled_SliverGridGeometry_toString_9338" ,"Precompiled_RelativeRect_toString_9339" ,"Precompiled_Overflow_toString_9340" ,"Precompiled_ViewConfiguration_toString_9341" ,"Precompiled_RevealedOffset_toString_9342" ,"Precompiled_Ticker_toString_9343" ,"Precompiled_TickerFuture_toString_9344" ,"Precompiled_TickerCanceled_toString_9345" ,"Precompiled_SemanticsTag_toString_9346" ,"Precompiled_SemanticsEvent_toString_9347" ,"Precompiled_AssetBundle_toString_9348" ,"Precompiled_ScrollPositionWithSingleContext_applyNewDimensions_9349" ,"Precompiled_EdgeInsets_clamp_9350" ,"Precompiled_EdgeInsetsGeometry_clamp_9351" ,"Precompiled_MethodCall_toString_9352" ,"Precompiled_PlatformException_toString_9353" ,"Precompiled_MissingPluginException_toString_9354" ,"Precompiled_RawKeyEventDataAndroid_toString_9355" ,"Precompiled_RawKeyEventDataFuchsia_toString_9356" ,"Precompiled_RawKeyEventDataLinux_toString_9357" ,"Precompiled_RawKeyEventDataMacOs_toString_9358" ,"Precompiled_RawKeyEventDataWeb_toString_9359" ,"Precompiled_DeviceOrientation_toString_9360" ,"Precompiled_SystemUiOverlayStyle_toString_9361" ,"Precompiled_SystemSoundType_toString_9362" ,"Precompiled_SystemSound_play_9363" ,"Precompiled_TextInputType_toString_9364" ,"Precompiled_TextEditingValue_toString_9365" ,"Precompiled_AsyncSnapshot_toString_9366" ,"Precompiled_Notification_toString_9367" ,"Precompiled_MD4Digest_resetState_9368" ,"Precompiled_MD5Digest_resetState_9369" ,"Precompiled_RIPEMD128Digest_resetState_9370" ,"Precompiled_RIPEMD160Digest_resetState_9371" ,"Precompiled_RIPEMD256Digest_resetState_9372" ,"Precompiled_RIPEMD320Digest_resetState_9373" ,"Precompiled_SHA1Digest_resetState_9374" ,"Precompiled_SHA224Digest_resetState_9375" ,"Precompiled_SHA256Digest_resetState_9376" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_514042876_toString_9377" ,"Precompiled_DebugCreator_toString_9378" ,"Precompiled_SemanticsGestureDelegate_toString_9379" ,"Precompiled__HeroFlightManifest_565011697_toString_9380" ,"Precompiled__HeroFlight_565011697_toString_9381" ,"Precompiled_IconData_toString_9382" ,"Precompiled_MediaQueryData_toString_9383" ,"Precompiled_ModalRoute_toString_9384" ,"Precompiled_RenderSliverMultiBoxAdaptor_childScrollOffset_9385" ,"Precompiled_RenderSliverEdgeInsetsPadding_childScrollOffset_9386" ,"Precompiled_RouteSettings_toString_9387" ,"Precompiled_OverlayEntry_toString_9388" ,"Precompiled__StorageEntryIdentifier_584357337_toString_9389" ,"Precompiled_ScrollPhysics_toString_9390" ,"Precompiled_DragScrollActivity_toString_9391" ,"Precompiled_BallisticScrollActivity_toString_9392" ,"Precompiled_BoxDecoration_get_isComplex_9393" ,"Precompiled_FixedScrollMetrics_toString_9394" ,"Precompiled__LogicalKeySet_KeySet_Diagnosticable_516043213_toString_9395" ,"Precompiled_SliverChildDelegate_toString_9396" ,"Precompiled__LocalizationsState_483081674_load_9397" ,"Precompiled_GoogleSignInAuthentication_toString_9398" ,"Precompiled_GoogleSignInAccount_toString_9399" ,"Precompiled_SignInOption_toString_9400" ,"Precompiled_LocaleDataException_toString_9401" ,"Precompiled_RawKeyEvent_get_physicalKey_9402" ,"Precompiled_Style_toString_9403" ,"Precompiled_ParsedPath_toString_9404" ,"Precompiled_PathException_toString_9405" ,"Precompiled_RegistryFactoryException_toString_9406" ,"Precompiled_DragScrollActivity_dispatchScrollUpdateNotification_9407" ,"Precompiled_ScrollActivity_dispatchScrollUpdateNotification_9408" ,"Precompiled_ECPointBase_toString_9409" ,"Precompiled_Register64_toString_9410" ,"Precompiled_Register64List_toString_9411" ,"Precompiled_Chain_toString_9412" ,"Precompiled_AllocationStub_Chain_9413" ,"Precompiled_Chain_toTrace_9414" ,"Precompiled_AllocationStub_Trace_9415" ,"Precompiled____init__friendlyTrace_746486701_9416" ,"Precompiled____init__firefoxSafariTrace_746486701_9417" ,"Precompiled____init__v8TraceLine_746486701_9418" ,"Precompiled____init__v8Trace_746486701_9419" ,"Precompiled____init__terseRegExp_746486701_9420" ,"Precompiled_Trace_foldFrames_9421" ,"Precompiled_Trace__parseVM_746486701_9422" ,"Precompiled_Trace_Trace_parse_9423" ,"Precompiled_Trace_Trace_parseFriendly_9424" ,"Precompiled_Chain_Chain_parse_9425" ,"Precompiled_Trace_Trace_parseFirefox_9426" ,"Precompiled_Trace_Trace_parseJSCore_9427" ,"Precompiled_Trace_Trace_parseV8_9428" ,"Precompiled_Trace_Trace_from_9429" ,"Precompiled_AllocationStub_LazyTrace_9430" ,"Precompiled_LazyTrace_get__trace_749350526_9431" ,"Precompiled_Trace_format_9432" ,"Precompiled_TypeTestingStub_package_stack_trace_src_trace_dart__Trace_9433" ,"Precompiled_Frame_toString_9434" ,"Precompiled_LazyTrace_toString_9435" ,"Precompiled_Trace_toString_9436" ,"Precompiled_Matrix4_toString_9437" ,"Precompiled_Vector3_toString_9438" ,"Precompiled_Vector4_toString_9439" ,"Precompiled_Null_toString_9440" ,"Precompiled__TypedListBase_7027147_toString_9441" ,"Precompiled__GrowableList_0150898_toString_9442" ,"Precompiled_bool_toString_9443" ,"Precompiled__Double_0150898_toString_9444" ,"Precompiled__Double_0150898__toString_0150898_9445" ,"Precompiled__Double_0150898_init__cache_0150898_9446" ,"Precompiled__Smi_0150898_toString_9447" ,"Precompiled__Smi_0150898__positiveBase10Length_0150898_9448" ,"Precompiled__Smi_0150898__negativeToString_0150898_9449" ,"Precompiled__Smi_0150898__negativeBase10Length_0150898_9450" ,"Precompiled__AbstractType_0150898_toString_9451" ,"Precompiled_Object_toString_9452" ,"Precompiled_DragGestureRecognizer_get_minFlingVelocity_9453" ,"Precompiled__AsyncStarStreamController_4048458_get_stream_9454" ,"Precompiled__BroadcastStreamController_4048458_get_stream_9455" ,"Precompiled_DefaultEquality_hash_9456" ,"Precompiled_IterableEquality_hash_9457" ,"Precompiled_ListEquality_hash_9458" ,"Precompiled__UnorderedEquality_103183165_hash_9459" ,"Precompiled__BroadcastStreamController_4048458__add_4048458_9460" ,"Precompiled_MapEquality_hash_9461" ,"Precompiled_DeepCollectionEquality_hash_9462" ,"Precompiled_Blake2bDigest_get_digestSize_9463" ,"Precompiled_MD2Digest_get_digestSize_9464" ,"Precompiled_MD4Digest_get_digestSize_9465" ,"Precompiled_SHA3Digest_get_digestSize_9466" ,"Precompiled_SHA384Digest_get_digestSize_9467" ,"Precompiled_SHA512tDigest_get_digestSize_9468" ,"Precompiled_TigerDigest_get_digestSize_9469" ,"Precompiled_WhirlpoolDigest_get_digestSize_9470" ,"Precompiled__ImmutableMap_0150898_get_values_9471" ,"Precompiled_TransformLayer_applyTransform_9472" ,"Precompiled_OffsetLayer_applyTransform_9473" ,"Precompiled_OpacityLayer_applyTransform_9474" ,"Precompiled_LeaderLayer_applyTransform_9475" ,"Precompiled_FollowerLayer_applyTransform_9476" ,"Precompiled__StreamController_4048458_get_stream_9477" ,"Precompiled__StreamController_4048458__add_4048458_9478" ,"Precompiled__ForwardingStreamSubscription_4048458__add_4048458_9479" ,"Precompiled__BufferingStreamSubscription_4048458__add_4048458_9480" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin__HashBase_3220832_get__checkSum_3220832_9481" ,"Precompiled_OneSequenceGestureRecognizer_handleNonAllowedPointer_9482" ,"Precompiled_CastSet_intersection_9483" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin__HashBase_3220832__isModifiedSince_3220832_9484" ,"Precompiled_DateFormat_format_9485" ,"Precompiled__DateFormatField_33383093_format_9486" ,"Precompiled__DateFormatPatternField_33383093_format_9487" ,"Precompiled__Double_0150898_clamp_9488" ,"Precompiled__IntegerImplementation_0150898_clamp_9489" ,"Precompiled__SimpleUri_0150898_get_path_9490" ,"Precompiled__CompactIterator_3220832_get__checkSum_3220832_9491" ,"Precompiled__BroadcastStreamController_4048458_get_isClosed_9492" ,"Precompiled__AsyncStarStreamController_4048458_addError_9493" ,"Precompiled__BroadcastStreamController_4048458_addError_9494" ,"Precompiled__AsyncAwaitCompleter_4048458_complete_9495" ,"Precompiled__AsyncStarStreamController_4048458_addStream_9496" ,"Precompiled__BroadcastStreamController_4048458_addStream_9497" ,"Precompiled__AsyncCompleter_4048458_complete_9498" ,"Precompiled__SyncCompleter_4048458_complete_9499" ,"Precompiled__BufferingStreamSubscription_4048458_onError_9500" ,"Precompiled__BroadcastStreamController_4048458_set_onResume_9501" ,"Precompiled_AllocationStub__DelayedError_4048458_9502" ,"Precompiled_ScrollMetrics_get_extentInside_9503" ,"Precompiled__StreamController_4048458_get_isClosed_9504" ,"Precompiled__StreamController_4048458_addError_9505" ,"Precompiled_ForcePressGestureRecognizer_rejectGesture_9506" ,"Precompiled_PrimaryPointerGestureRecognizer_rejectGesture_9507" ,"Precompiled__TransparentTapGestureRecognizer_485111801_rejectGesture_9508" ,"Precompiled_BaseTapGestureRecognizer_rejectGesture_9509" ,"Precompiled__StreamController_4048458_addStream_9510" ,"Precompiled__StreamControllerAddStreamState_4048458__StreamControllerAddStreamState_4048458__9511" ,"Precompiled_AllocationStub__StreamControllerAddStreamState_4048458_9512" ,"Precompiled_DragGestureRecognizer_rejectGesture_9513" ,"Precompiled_DoubleTapGestureRecognizer_rejectGesture_9514" ,"Precompiled__AddStreamState_4048458_complete_9515" ,"Precompiled__StreamController_4048458_get_isPaused_9516" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_moveChildRenderObject_9517" ,"Precompiled_MultiChildRenderObjectElement_moveChildRenderObject_9518" ,"Precompiled_SliverMultiBoxAdaptorElement_moveChildRenderObject_9519" ,"Precompiled__DoneStreamSubscription_4048458_get_isPaused_9520" ,"Precompiled__Uri_0150898_toFilePath_9521" ,"Precompiled__SimpleUri_0150898_toFilePath_9522" ,"Precompiled_AssetBundleImageProvider_load_9523" ,"Precompiled__BroadcastStreamController_4048458_get__add_4048458_9524" ,"Precompiled__SetBase_3220832_intersection_9525" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_get_values_9526" ,"Precompiled___CompactLinkedHashSet__HashFieldBase__HashBase__OperatorEqualsAndHashCode_SetMixin_3220832_intersection_9527" ,"Precompiled__StringBase_0150898_matchAsPrefix_9528" ,"Precompiled__HashMap_3220832_get_values_9529" ,"Precompiled__RegExp_0150898_matchAsPrefix_9530" ,"Precompiled_IterableEquality_equals_9531" ,"Precompiled_ListEquality_equals_9532" ,"Precompiled__UnorderedEquality_103183165_equals_9533" ,"Precompiled__StreamController_4048458_get__add_4048458_9534" ,"Precompiled_MapEquality_equals_9535" ,"Precompiled_DeepCollectionEquality_equals_9536" ,"Precompiled__ForwardingStreamSubscription_4048458_get__add_4048458_9537" ,"Precompiled__BufferingStreamSubscription_4048458_get__add_4048458_9538" ,"Precompiled__BroadcastStreamController_4048458_get__addError_4048458_9539" ,"Precompiled_ModalRoute_didAdd_9540" ,"Precompiled_SplayTreeMap_get_values_9541" ,"Precompiled_Route_didAdd_9542" ,"Precompiled_CastStreamSubscription_onError_9543" ,"Precompiled_SplayTreeSet_intersection_9544" ,"Precompiled_RenderEditable_handleTapDown_9545" ,"Precompiled__RouteEntry_529124995_didAdd_9546" ,"Precompiled_RawKeyEventDataAndroid_get_physicalKey_9547" ,"Precompiled_RawKeyEventDataFuchsia_get_physicalKey_9548" ,"Precompiled_RawKeyEventDataLinux_get_physicalKey_9549" ,"Precompiled_RawKeyEventDataMacOs_get_physicalKey_9550" ,"Precompiled_RawKeyEventDataWeb_get_physicalKey_9551" ,"Precompiled_RawKeyEventDataWindows_get_physicalKey_9552" ,"Precompiled__BroadcastStreamController_4048458__close_4048458_9553" ,"Precompiled__CustomZone_4048458_run_9554" ,"Precompiled_AllocationStub__ZoneDelegate_4048458_9555" ,"Precompiled__RootZone_4048458_run_9556" ,"Precompiled__Uri_0150898_resolveUri_9557" ,"Precompiled__UnicodeSubsetEncoder_10003594_convert_9558" ,"Precompiled__SimpleUri_0150898_resolveUri_9559" ,"Precompiled_Base64Encoder_convert_9560" ,"Precompiled__Base64Encoder_10003594_encode_9561" ,"Precompiled__Base64Encoder_10003594_encodeChunk_9562" ,"Precompiled__Base64Encoder_10003594_writeFinalChunk_9563" ,"Precompiled_AllocationStub__Base64Encoder_10003594_9564" ,"Precompiled_Base64Decoder_convert_9565" ,"Precompiled_JsonEncoder_convert_9566" ,"Precompiled__JsonStringStringifier_10003594_stringify_9567" ,"Precompiled__JsonStringStringifier_10003594_printOn_9568" ,"Precompiled__JsonStringifier_10003594_writeObject_9569" ,"Precompiled__JsonStringStringifier_10003594_get__partialResult_10003594_9570" ,"Precompiled__JsonStringifier_10003594_writeStringContent_9571" ,"Precompiled__JsonStringStringifier_10003594_writeStringSlice_9572" ,"Precompiled__JsonStringStringifier_10003594_writeString_9573" ,"Precompiled__JsonStringStringifier_10003594_writeNumber_9574" ,"Precompiled__JsonStringifier_10003594__checkCycle_10003594_9575" ,"Precompiled__JsonStringifier_10003594_writeJsonValue_9576" ,"Precompiled_AllocationStub__JsonStringStringifier_10003594_9577" ,"Precompiled_JsonDecoder_convert_9578" ,"Precompiled_Utf8Encoder_convert_9579" ,"Precompiled__Utf8Encoder_10003594__writeReplacementCharacter_10003594_9580" ,"Precompiled__Utf8Encoder_10003594__writeSurrogate_10003594_9581" ,"Precompiled__Utf8Encoder_10003594__fillBuffer_10003594_9582" ,"Precompiled_AllocationStub__Utf8Encoder_10003594_9583" ,"Precompiled_Utf8Decoder_convert_9584" ,"Precompiled__Utf8Decoder_10003594_convertSingle_9585" ,"Precompiled__Utf8Decoder_10003594_decodeGeneral_9586" ,"Precompiled__Utf8Decoder_10003594_decode16_9587" ,"Precompiled__Utf8Decoder_10003594_decode8_9588" ,"Precompiled__Utf8Decoder_10003594__makeUint8List_10003594_9589" ,"Precompiled_AllocationStub__Utf8Decoder_10003594_9590" ,"Precompiled__SyncIterator_0150898_get_current_9591" ,"Precompiled_WhereIterator_get_current_9592" ,"Precompiled__StreamController_4048458_get__addError_4048458_9593" ,"Precompiled__ForwardingStreamSubscription_4048458_get__addError_4048458_9594" ,"Precompiled__BufferingStreamSubscription_4048458_get__addError_4048458_9595" ,"Precompiled__BroadcastStreamController_4048458_get__close_4048458_9596" ,"Precompiled_PlatformAssetBundle_load_9597" ,"Precompiled__StreamController_4048458__close_4048458_9598" ,"Precompiled__BufferingStreamSubscription_4048458__close_4048458_9599" ,"Precompiled__ImmutableMapKeyIterator_0150898_get_current_9600" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin__HashBase__IdenticalAndIdentityHashCode_3220832__hashCode_3220832_9601" ,"Precompiled_TapGestureRecognizer_handleTapDown_9602" ,"Precompiled__AnyTapGestureRecognizer_575005443_handleTapDown_9603" ,"Precompiled__AllMatchesIterator_0150898_get_current_9604" ,"Precompiled__StreamController_4048458_get__close_4048458_9605" ,"Precompiled__BufferingStreamSubscription_4048458_get__close_4048458_9606" ,"Precompiled__BroadcastStreamController_4048458__addError_4048458_9607" ,"Precompiled__SyncIterator_0150898_moveNext_9608" ,"Precompiled_MappedIterator_moveNext_9609" ,"Precompiled_WhereIterator_moveNext_9610" ,"Precompiled_SkipIterator_moveNext_9611" ,"Precompiled_SkipWhileIterator_moveNext_9612" ,"Precompiled_Notification_get_visitAncestor_9613" ,"Precompiled__FixedSizeArrayIterator_0150898_moveNext_9614" ,"Precompiled__DraggableScrollableNotification_Notification_ViewportNotificationMixin_551035049_get_visitAncestor_9615" ,"Precompiled__ScrollNotification_LayoutChangedNotification_ViewportNotificationMixin_555159306_get_visitAncestor_9616" ,"Precompiled__ImmutableMap_0150898_containsKey_9617" ,"Precompiled__StreamController_4048458__addError_4048458_9618" ,"Precompiled_RuneIterator_get_current_9619" ,"Precompiled__ForwardingStreamSubscription_4048458__addError_4048458_9620" ,"Precompiled__BufferingStreamSubscription_4048458__addError_4048458_9621" ,"Precompiled__ImmutableMapKeyIterator_0150898_moveNext_9622" ,"Precompiled__ImmutableMapValueIterator_0150898_moveNext_9623" ,"Precompiled_BouncingScrollPhysics_get_minFlingVelocity_9624" ,"Precompiled_ScrollPhysics_get_minFlingVelocity_9625" ,"Precompiled__AllMatchesIterator_0150898_moveNext_9626" ,"Precompiled__BufferingStreamSubscription_4048458_pause_9627" ,"Precompiled__AddStreamState_4048458_pause_9628" ,"Precompiled__DoneStreamSubscription_4048458_pause_9629" ,"Precompiled_StatefulElement__firstBuild_28042623_9630" ,"Precompiled_ComponentElement__firstBuild_28042623_9631" ,"Precompiled__BufferingStreamSubscription_4048458_resume_9632" ,"Precompiled__AddStreamState_4048458_resume_9633" ,"Precompiled__DelayedDone_4048458_set_next_9634" ,"Precompiled__DoneStreamSubscription_4048458_resume_9635" ,"Precompiled__StringAllMatchesIterator_0150898_moveNext_9636" ,"Precompiled__InterpolationSimulation_152066280_isDone_9637" ,"Precompiled_FrictionSimulation_isDone_9638" ,"Precompiled_SpringSimulation_isDone_9639" ,"Precompiled_BouncingScrollSimulation_isDone_9640" ,"Precompiled_ClampingScrollSimulation_isDone_9641" ,"Precompiled__ToolbarContainerLayout_240187611_getSize_9642" ,"Precompiled_SingleChildLayoutDelegate_getSize_9643" ,"Precompiled__HashMapEntry_3220832_set_next_9644" ,"Precompiled_RuneIterator_moveNext_9645" ,"Precompiled__HashSetEntry_3220832_set_next_9646" ,"Precompiled__BufferingStreamSubscription_4048458__sendDone_4048458_9647" ,"Precompiled__HashMapKeyIterator_3220832_get_current_9648" ,"Precompiled__HashMapValueIterator_3220832_get_current_9649" ,"Precompiled_DocumentReference_get_path_9650" ,"Precompiled__DoneStreamSubscription_4048458__sendDone_4048458_9651" ,"Precompiled_AsciiCodec_get_encoder_9652" ,"Precompiled_QueryPlatform_get_path_9653" ,"Precompiled_Utf8Codec_get_encoder_9654" ,"Precompiled_Base64Codec_get_encoder_9655" ,"Precompiled_JsonCodec_get_encoder_9656" ,"Precompiled_DocumentReferencePlatform_get_path_9657" ,"Precompiled__CupertinoLocalizationsDelegate_172010061_shouldReload_9658" ,"Precompiled__MaterialLocalizationsDelegate_300075540_shouldReload_9659" ,"Precompiled__WidgetsLocalizationsDelegate_483081674_shouldReload_9660" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_152066280_removeStatusListener_9661" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_removeStatusListener_9662" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_removeStatusListener_9663" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_removeStatusListener_9664" ,"Precompiled__CompactIterator_3220832_get_current_9665" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_156105126_removeStatusListener_9666" ,"Precompiled__LinkedListIterator_3220832_get_current_9667" ,"Precompiled_SplayTreeSet__newSet_3220832_9668" ,"Precompiled_ProxyAnimation_didStopListening_9669" ,"Precompiled_CompoundAnimation_didStopListening_9670" ,"Precompiled__BroadcastStreamController_4048458__subscribe_4048458_9671" ,"Precompiled__ListQueueIterator_3220832_get_current_9672" ,"Precompiled__ControllerSubscription_4048458__onPause_4048458_9673" ,"Precompiled__ForwardingStreamSubscription_4048458__onPause_4048458_9674" ,"Precompiled__BroadcastSubscription_4048458_get__onPause_4048458_9675" ,"Precompiled__ControllerSubscription_4048458_get__onPause_4048458_9676" ,"Precompiled__ForwardingStreamSubscription_4048458_get__onPause_4048458_9677" ,"Precompiled__BufferingStreamSubscription_4048458_get__onPause_4048458_9678" ,"Precompiled__SplayTreeIterator_3220832_get_current_9679" ,"Precompiled_DelegatingSet_intersection_9680" ,"Precompiled__StreamImpl_4048458_listen_9681" ,"Precompiled__ForwardingStream_4048458_listen_9682" ,"Precompiled_CastStream_listen_9683" ,"Precompiled__ReceivePortImpl_1026248_listen_9684" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin__LinkedHashMapMixin_3220832_containsKey_9685" ,"Precompiled__HashMapIterator_3220832_moveNext_9686" ,"Precompiled__BroadcastStreamController_4048458__recordCancel_4048458_9687" ,"Precompiled__HashSetIterator_3220832_moveNext_9688" ,"Precompiled__BroadcastStreamController_4048458__recordPause_4048458_9689" ,"Precompiled__StreamController_4048458__subscribe_4048458_9690" ,"Precompiled__CustomHashMap_3220832_containsKey_9691" ,"Precompiled__IdentityHashMap_3220832_containsKey_9692" ,"Precompiled__HashMap_3220832_containsKey_9693" ,"Precompiled_CastIterator_get_current_9694" ,"Precompiled_EmptyIterator_get_current_9695" ,"Precompiled_WhereTypeIterator_get_current_9696" ,"Precompiled__BroadcastStreamController_4048458__recordResume_4048458_9697" ,"Precompiled__AsyncBroadcastStreamController_4048458__sendError_4048458_9698" ,"Precompiled__CompactIterator_3220832_moveNext_9699" ,"Precompiled__LinkedListIterator_3220832_moveNext_9700" ,"Precompiled__StreamController_4048458__recordCancel_4048458_9701" ,"Precompiled__StreamController_4048458__recordCancel_4048458_complete_9702" ,"Precompiled_SplayTreeMap_containsKey_9703" ,"Precompiled__AnimationController_Animation_AnimationEagerListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_152066280_addStatusListener_9704" ,"Precompiled__StreamController_4048458__recordPause_4048458_9705" ,"Precompiled__ProxyAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_addStatusListener_9706" ,"Precompiled__ListQueueIterator_3220832_moveNext_9707" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_addStatusListener_9708" ,"Precompiled__CompoundAnimation_Animation_AnimationLazyListenerMixin_AnimationLocalListenersMixin_AnimationLocalStatusListenersMixin_153411118_addStatusListener_9709" ,"Precompiled__SplayTreeIterator_3220832_moveNext_9710" ,"Precompiled___AnimatedEvaluation_Animation_AnimationWithParentMixin_156105126_addStatusListener_9711" ,"Precompiled__StreamController_4048458__recordResume_4048458_9712" ,"Precompiled__TextSelectionHandlePainter_186300207_shouldRepaint_9713" ,"Precompiled__InputBorderPainter_296019562_shouldRepaint_9714" ,"Precompiled__ShapeBorderPainter_298372823_shouldRepaint_9715" ,"Precompiled__CircularProgressIndicatorPainter_312243954_shouldRepaint_9716" ,"Precompiled__TextSelectionHandlePainter_337283233_shouldRepaint_9717" ,"Precompiled__GlowingOverscrollIndicatorPainter_583442496_shouldRepaint_9718" ,"Precompiled__AsyncStreamController_4048458__sendError_4048458_9719" ,"Precompiled__SyncStreamController_4048458__sendError_4048458_9720" ,"Precompiled__BufferingStreamSubscription_4048458__sendError_4048458_9721" ,"Precompiled__CupertinoTextSelectionControls_186300207_buildToolbar_9722" ,"Precompiled__MaterialTextSelectionControls_337283233_buildToolbar_9723" ,"Precompiled__ControllerSubscription_4048458__onResume_4048458_9724" ,"Precompiled__ForwardingStreamSubscription_4048458__onResume_4048458_9725" ,"Precompiled_CastIterator_moveNext_9726" ,"Precompiled_ListIterator_moveNext_9727" ,"Precompiled_ExpandIterator_moveNext_9728" ,"Precompiled_WhereTypeIterator_moveNext_9729" ,"Precompiled__BigIntImpl_0150898____9730" ,"Precompiled_GestureDetector_get_onForcePressEnd_9731" ,"Precompiled__TypedListIterator_7027147_moveNext_9732" ,"Precompiled__RegExpHashKey_0150898____9733" ,"Precompiled_GestureDetector_get_onForcePressStart_9734" ,"Precompiled__CupertinoTextSelectionControls_186300207_buildHandle_9735" ,"Precompiled__MaterialTextSelectionControls_337283233_buildHandle_9736" ,"Precompiled_DateTime____9737" ,"Precompiled_Duration____9738" ,"Precompiled_ProxyAnimation_didStartListening_9739" ,"Precompiled_CompoundAnimation_didStartListening_9740" ,"Precompiled__Uri_0150898____9741" ,"Precompiled__SimpleUri_0150898____9742" ,"Precompiled__ControllerStream_4048458____9743" ,"Precompiled__AsyncBroadcastStreamController_4048458__sendData_4048458_9744" ,"Precompiled__AsyncStreamController_4048458__sendData_4048458_9745" ,"Precompiled__SyncStreamController_4048458__sendData_4048458_9746" ,"Precompiled__BufferingStreamSubscription_4048458__sendData_4048458_9747" ,"Precompiled__BigIntImpl_0150898_get_sign_9748" ,"Precompiled__AnimatedOpacityState_497443363_didUpdateTweens_9749" ,"Precompiled__ControllerStream_4048458__createSubscription_4048458_9750" ,"Precompiled__GeneratedStreamImpl_4048458__createSubscription_4048458_9751" ,"Precompiled__ForwardingStream_4048458__createSubscription_4048458_9752" ,"Precompiled__DelayedData_4048458_perform_9753" ,"Precompiled__DelayedError_4048458_perform_9754" ,"Precompiled__DelayedDone_4048458_perform_9755" ,"Precompiled__AsyncCompleter_4048458__completeError_4048458_9756" ,"Precompiled__SyncCompleter_4048458__completeError_4048458_9757" ,"Precompiled__Future_4048458__completeError_4048458_9758" ,"Precompiled__BigIntMontgomeryReduction_0150898__mul_0150898_9759" ,"Precompiled__BigIntClassicReduction_0150898__mul_0150898_9760" ,"Precompiled_UriData_get_uri_9761" ,"Precompiled__ClickableMouseCursor_301420358_get_debugDescription_9762" ,"Precompiled__DeferringMouseCursor_417306348_get_debugDescription_9763" ,"Precompiled_SystemMouseCursor_get_debugDescription_9764" ,"Precompiled__CustomZone_4048458_print_9765" ,"Precompiled__RootZone_4048458_print_9766" ,"Precompiled_SystemMouseCursor_createSession_9767" ,"Precompiled__CupertinoLocalizationsDelegate_172010061_isSupported_9768" ,"Precompiled__MaterialLocalizationsDelegate_300075540_isSupported_9769" ,"Precompiled_Symbol____9770" ,"Precompiled__AsyncCompleter_4048458_get__completeError_4048458_9771" ,"Precompiled__SyncCompleter_4048458_get__completeError_4048458_9772" ,"Precompiled__CustomZone_4048458_bindUnaryCallbackGuarded_9773" ,"Precompiled__RootZone_4048458_bindUnaryCallbackGuarded_9774" ,"Precompiled__Future_4048458_get__completeError_4048458_9775" ,"Precompiled__CustomZone_4048458_bindUnaryCallback_9776" ,"Precompiled__RootZone_4048458_bindUnaryCallback_9777" ,"Precompiled_RangeError_get__errorExplanation_0150898_9778" ,"Precompiled_IndexError_get__errorExplanation_0150898_9779" ,"Precompiled_ArgumentError_get__errorExplanation_0150898_9780" ,"Precompiled__BigIntMontgomeryReduction_0150898__revert_0150898_9781" ,"Precompiled__BigIntClassicReduction_0150898__revert_0150898_9782" ,"Precompiled__BigIntMontgomeryReduction_0150898__sqr_0150898_9783" ,"Precompiled__BigIntClassicReduction_0150898__sqr_0150898_9784" ,"Precompiled__BigIntMontgomeryReduction_0150898__convert_0150898_9785" ,"Precompiled__BigIntClassicReduction_0150898__convert_0150898_9786" ,"Precompiled__CupertinoTextSelectionToolbarItemsElement_186300207_get_renderObject_9787" ,"Precompiled__RenderDecorationElement_296019562_get_renderObject_9788" ,"Precompiled__TheatreElement_511319124_get_renderObject_9789" ,"Precompiled__ViewportElement_581166613_get_renderObject_9790" ,"Precompiled_RenderObjectToWidgetElement_get_renderObject_9791" ,"Precompiled_RenderObjectElement_get_renderObject_9792" ,"Precompiled_SliverMultiBoxAdaptorElement_get_renderObject_9793" ,"Precompiled_Element_get_renderObject_9794" ,"Precompiled__CustomZone_4048458_get__delegate_4048458_9795" ,"Precompiled__RootZone_4048458_get__delegate_4048458_9796" ,"Precompiled__Uri_0150898_get_port_9797" ,"Precompiled__SimpleUri_0150898_get_port_9798" ,"Precompiled__CustomZone_4048458_runBinary_9799" ,"Precompiled__RootZone_4048458_runBinary_9800" ,"Precompiled__CustomZone_4048458_runBinaryGuarded_9801" ,"Precompiled__RootZone_4048458_runBinaryGuarded_9802" ,"Precompiled__BroadcastStreamController_4048458_get_hasListener_9803" ,"Precompiled__CustomZone_4048458_createTimer_9804" ,"Precompiled__RootZone_4048458_createTimer_9805" ,"Precompiled__CustomZone_4048458_createPeriodicTimer_9806" ,"Precompiled__RootZone_4048458_createPeriodicTimer_9807" ,"Precompiled__StreamController_4048458_get_hasListener_9808" ,"Precompiled__Uri_0150898_get_hasAbsolutePath_9809" ,"Precompiled__SimpleUri_0150898_get_hasAbsolutePath_9810" ,"Precompiled__Uri_0150898_get_hasPort_9811" ,"Precompiled__SimpleUri_0150898_get_hasPort_9812" ,"Precompiled_Duration___9813" ,"Precompiled_Frame_get_package_9814" ,"Precompiled_Offset____9815" ,"Precompiled_Size____9816" ,"Precompiled_Rect____9817" ,"Precompiled_Radius____9818" ,"Precompiled_RRect____9819" ,"Precompiled_CupertinoDynamicColor____9820" ,"Precompiled__SimpleUri_0150898_get_hasFragment_9821" ,"Precompiled_ColorSwatch____9822" ,"Precompiled_Color____9823" ,"Precompiled_BoxShadow____9824" ,"Precompiled_TextDecoration____9825" ,"Precompiled_TextStyle____9826" ,"Precompiled_ParagraphStyle____9827" ,"Precompiled_StrutStyle____9828" ,"Precompiled_TextBox____9829" ,"Precompiled_TextPosition____9830" ,"Precompiled_TextSelection____9831" ,"Precompiled_TextRange____9832" ,"Precompiled_ParagraphConstraints____9833" ,"Precompiled_Locale____9834" ,"Precompiled_AccessibilityFeatures____9835" ,"Precompiled_DocumentReference____9836" ,"Precompiled_FirestorePlatform____9837" ,"Precompiled__CustomZone_4048458_get_errorZone_9838" ,"Precompiled_DocumentReferencePlatform____9839" ,"Precompiled__CustomZone_4048458_bindCallback_9840" ,"Precompiled__RootZone_4048458_bindCallback_9841" ,"Precompiled_Blob____9842" ,"Precompiled_GeoPoint____9843" ,"Precompiled__RootZone_4048458_get__scheduleMicrotask_4048458_9844" ,"Precompiled_Timestamp____9845" ,"Precompiled__MapEntry_103183165____9846" ,"Precompiled__Uri_0150898_get_fragment_9847" ,"Precompiled__SimpleUri_0150898_get_fragment_9848" ,"Precompiled_Encrypted____9849" ,"Precompiled_FirebaseApp____9850" ,"Precompiled__CustomZone_4048458_fork_9851" ,"Precompiled__RootZone_4048458_fork_9852" ,"Precompiled__BroadcastStreamController_4048458_get__mayAddEvent_4048458_9853" ,"Precompiled__SimpleUri_0150898_get_userInfo_9854" ,"Precompiled__CustomZone_4048458_bindCallbackGuarded_9855" ,"Precompiled__RootZone_4048458_bindCallbackGuarded_9856" ,"Precompiled__Uri_0150898_get_hasAuthority_9857" ,"Precompiled__SimpleUri_0150898_get_hasAuthority_9858" ,"Precompiled__CustomZone_4048458_registerCallback_9859" ,"Precompiled__StreamController_4048458_get__mayAddEvent_4048458_9860" ,"Precompiled__SimpleUri_0150898_get_hasQuery_9861" ,"Precompiled__ZoneDelegate_4048458_handleUncaughtError_9862" ,"Precompiled__CustomZone_4048458_handleUncaughtError_9863" ,"Precompiled__RootZone_4048458_handleUncaughtError_9864" ,"Precompiled__IterablePendingEvents_4048458_handleNext_9865" ,"Precompiled__StreamImplEvents_4048458_handleNext_9866" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_get_onForcePressEnd_9867" ,"Precompiled_OffsetBase___9868" ,"Precompiled__Uri_0150898_get_query_9869" ,"Precompiled__SimpleUri_0150898_get_query_9870" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_get_onForcePressStart_9871" ,"Precompiled__RegExpMatch_0150898_get_groupCount_9872" ,"Precompiled__BigIntImpl_0150898_get_bitLength_9873" ,"Precompiled__CustomZone_4048458_runUnary_9874" ,"Precompiled__RootZone_4048458_runUnary_9875" ,"Precompiled__BigIntImpl_0150898___9876" ,"Precompiled_Widget____9877" ,"Precompiled__BigIntImpl_0150898___9878" ,"Precompiled__Uri_0150898_get_host_9879" ,"Precompiled_TextSpan____9880" ,"Precompiled__SimpleUri_0150898_get_host_9881" ,"Precompiled__TypedDataBuffer_489432058_get_buffer_9882" ,"Precompiled_DateTime_subtract_9883" ,"Precompiled__TaskEntry_444222615_run_9884" ,"Precompiled__RegExpMatch_0150898_group_9885" ,"Precompiled__StringMatch_0150898_group_9886" ,"Precompiled__Uri_0150898_get_pathSegments_9887" ,"Precompiled__SimpleUri_0150898_get_pathSegments_9888" ,"Precompiled__BroadcastStreamController_4048458__addEventError_4048458_9889" ,"Precompiled__SimpleUri_0150898_get_scheme_9890" ,"Precompiled__RouteEntry_529124995_complete_9891" ,"Precompiled_IconThemeData____9892" ,"Precompiled__CupertinoEdgeShadowDecoration_177053933____9893" ,"Precompiled_BoxDecoration____9894" ,"Precompiled__Future_4048458_catchError_9895" ,"Precompiled__Future_4048458_whenComplete_9896" ,"Precompiled__Future_4048458_then_9897" ,"Precompiled_AppBarTheme____9898" ,"Precompiled_MaterialBannerThemeData____9899" ,"Precompiled_BottomAppBarTheme____9900" ,"Precompiled_BottomNavigationBarThemeData____9901" ,"Precompiled_BottomSheetThemeData____9902" ,"Precompiled_ButtonBarThemeData____9903" ,"Precompiled_ButtonThemeData____9904" ,"Precompiled_CardTheme____9905" ,"Precompiled_ChipThemeData____9906" ,"Precompiled_ColorScheme____9907" ,"Precompiled_DialogTheme____9908" ,"Precompiled_DividerThemeData____9909" ,"Precompiled_FloatingActionButtonThemeData____9910" ,"Precompiled_InputDecorationTheme____9911" ,"Precompiled_SystemMouseCursor____9912" ,"Precompiled_NavigationRailThemeData____9913" ,"Precompiled_PageTransitionsTheme____9914" ,"Precompiled_PopupMenuThemeData____9915" ,"Precompiled_SliderThemeData____9916" ,"Precompiled_SnackBarThemeData____9917" ,"Precompiled_TabBarTheme____9918" ,"Precompiled_TextTheme____9919" ,"Precompiled_ThemeData____9920" ,"Precompiled_VisualDensity____9921" ,"Precompiled_ToggleButtonsThemeData____9922" ,"Precompiled_TooltipThemeData____9923" ,"Precompiled_Typography____9924" ,"Precompiled__CustomZone_4048458_registerBinaryCallback_9925" ,"Precompiled_StrutStyle____9926" ,"Precompiled_TextStyle____9927" ,"Precompiled_SemanticsData____9928" ,"Precompiled_LogicalKeyboardKey____9929" ,"Precompiled_PhysicalKeyboardKey____9930" ,"Precompiled__CustomZone_4048458_runGuarded_9931" ,"Precompiled__RootZone_4048458_runGuarded_9932" ,"Precompiled__CustomZone_4048458_errorCallback_9933" ,"Precompiled__JsonStringifier_10003594_writeMap_9934" ,"Precompiled__CustomZone_4048458_runUnaryGuarded_9935" ,"Precompiled__RootZone_4048458_runUnaryGuarded_9936" ,"Precompiled__CustomZone_4048458_scheduleMicrotask_9937" ,"Precompiled__RootZone_4048458_scheduleMicrotask_9938" ,"Precompiled__CustomZone_4048458_registerUnaryCallback_9939" ,"Precompiled__RootZone_4048458_get__handleUncaughtError_4048458_9940" ,"Precompiled__CustomZone_4048458_get__parentDelegate_4048458_9941" ,"Precompiled__RootZone_4048458_get__parentDelegate_4048458_9942" ,"Precompiled__JsonStringifier_10003594_writeList_9943" ,"Precompiled_AuthProvider_get_signIn_9944" ,"Precompiled__InputBorderGap_296019562____9945" ,"Precompiled_ImageCache_containsKey_9946" ,"Precompiled___CompactLinkedIdentityHashMap__HashFieldBase_MapMixin_3220832_updateAll_9947" ,"Precompiled__BuildJsonListener_10003594_arrayElement_9948" ,"Precompiled_ValueKey____9949" ,"Precompiled_GlobalObjectKey____9950" ,"Precompiled__BuildJsonListener_10003594_propertyValue_9951" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin__HashBase_3220832_get__checkSum_3220832_9952" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin__HashBase_3220832__isModifiedSince_3220832_9953" ,"Precompiled_ParentDataElement_notifyClients_9954" ,"Precompiled__InheritedNotifierElement_552313948_notifyClients_9955" ,"Precompiled_InheritedElement_notifyClients_9956" ,"Precompiled_AnimationController_get_status_9957" ,"Precompiled_TrainHoppingAnimation_get_status_9958" ,"Precompiled_ProxyElement_updated_9959" ,"Precompiled__AlwaysCompleteAnimation_153411118_get_status_9960" ,"Precompiled__AlwaysDismissedAnimation_153411118_get_status_9961" ,"Precompiled_AlwaysStoppedAnimation_get_status_9962" ,"Precompiled_ProxyAnimation_get_status_9963" ,"Precompiled_ReverseAnimation_get_status_9964" ,"Precompiled___ChangeAnimation_Animation_AnimationWithParentMixin_334014024_get_status_9965" ,"Precompiled_CompoundAnimation_get_status_9966" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_get_onSingleLongTapStart_9967" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_get_onSingleTapUp_9968" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_get_values_9969" ,"Precompiled__TextFieldSelectionGestureDetectorBuilder_335181401_get_onSingleLongTapMoveUpdate_9970" ,"Precompiled_OffsetBase___9971" ,"Precompiled_Offset___9972" ,"Precompiled_Velocity____9973" ,"Precompiled__CupertinoEdgeShadowDecoration_177053933_createBoxPainter_9974" ,"Precompiled_BoxDecoration_createBoxPainter_9975" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDragSelectionEnd_9976" ,"Precompiled_FirestoreMessageCodec_readValueOfType_9977" ,"Precompiled_StandardMessageCodec_readValueOfType_9978" ,"Precompiled_Context_get_current_9979" ,"Precompiled_AnimationController_reverse_9980" ,"Precompiled_TextSelection_get_extent_9981" ,"Precompiled__FocusScopeState_515492240__createNode_515492240_9982" ,"Precompiled__FocusState_515492240__createNode_515492240_9983" ,"Precompiled_UnderlineInputBorder____9984" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDragSelectionUpdate_9985" ,"Precompiled_CircleBorder____9986" ,"Precompiled_RoundedRectangleBorder____9987" ,"Precompiled__RoundedRectangleToCircleBorder_383493913____9988" ,"Precompiled_StadiumBorder____9989" ,"Precompiled__StadiumToCircleBorder_386467860____9990" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860____9991" ,"Precompiled_Border____9992" ,"Precompiled_Crashlytics_get_recordFlutterError_9993" ,"Precompiled_Crashlytics_recordFlutterError_recordFlutterError_9994" ,"Precompiled_Crashlytics_recordFlutterError_9995" ,"Precompiled_AllocationStub_Crashlytics_9996" ,"Precompiled_Crashlytics_init_instance_9997" ,"Precompiled_Crashlytics_Crashlytics__9998" ,"Precompiled_Crashlytics__recordError_27303883_9999" ,"Precompiled_Crashlytics_getStackTraceElements_10000" ,"Precompiled_Crashlytics__prepareKeys_27303883_10001" ,"Precompiled__Decoration_296019562____10002" ,"Precompiled_InputDecoration____10003" ,"Precompiled_UninitializedLocaleData_containsKey_10004" ,"Precompiled__CupertinoTextSelectionControls_186300207_getHandleAnchor_10005" ,"Precompiled__MaterialTextSelectionControls_337283233_getHandleAnchor_10006" ,"Precompiled_FirestoreMessageCodec_writeValue_10007" ,"Precompiled_StandardMessageCodec_writeValue_10008" ,"Precompiled__IdentityThemeDataCacheKey_340408314____10009" ,"Precompiled_AlignmentGeometry____10010" ,"Precompiled_GoogleAuthCredential__asMap_142501543_10011" ,"Precompiled_BorderRadiusGeometry____10012" ,"Precompiled_TrainHoppingAnimation_get__statusChangeHandler_153411118_10013" ,"Precompiled_BorderSide____10014" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_get_cancelPointer_10015" ,"Precompiled_ReverseAnimation_get__statusChangeHandler_153411118_10016" ,"Precompiled_EdgeInsetsGeometry____10017" ,"Precompiled_LinearGradient____10018" ,"Precompiled_ImageConfiguration____10019" ,"Precompiled_AssetImage____10020" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_get_instantiateImageCodec_10021" ,"Precompiled_AssetBundleImageKey____10022" ,"Precompiled_ImageInfo____10023" ,"Precompiled_ImageStreamListener____10024" ,"Precompiled_InlineSpanSemanticsInformation____10025" ,"Precompiled_AnimationController_get__directionSetter_152066280_10026" ,"Precompiled_AnimationController_get__tick_152066280_10027" ,"Precompiled_TrainHoppingAnimation_get__valueChangeHandler_153411118_10028" ,"Precompiled__BodyBoxConstraints_319420462____10029" ,"Precompiled_BoxConstraints____10030" ,"Precompiled_SliverConstraints____10031" ,"Precompiled_CurvedAnimation_get__updateCurveDirection_153411118_10032" ,"Precompiled__CupertinoTextSelectionControls_186300207_getHandleSize_10033" ,"Precompiled__MaterialTextSelectionControls_337283233_getHandleSize_10034" ,"Precompiled__IntrinsicDimensionsCacheEntry_404392247____10035" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleLongPressEnd_485111801_10036" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleLongPressMoveUpdate_485111801_10037" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleLongPressStart_485111801_10038" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__forcePressEnded_485111801_10039" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__forcePressStarted_485111801_10040" ,"Precompiled_RelativeRect____10041" ,"Precompiled_SharedPreferences_containsKey_10042" ,"Precompiled_AllocationStub_SharedPreferences_10043" ,"Precompiled_TypeTestingStub_package_shared_preferences_shared_preferences_dart__SharedPreferences_10044" ,"Precompiled_SharedPreferences__getSharedPreferencesMap_21065047_10045" ,"Precompiled_SharedPreferences__setValue_21065047_10046" ,"Precompiled_SharedPreferences_setString_10047" ,"Precompiled_SharedPreferences_getString_10048" ,"Precompiled_SharedPreferences_get_10049" ,"Precompiled_SharedPreferences_getInstance_10050" ,"Precompiled_SharedPreferences_get__store_21065047_10051" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleDragEnd_485111801_10052" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleTapCancel_485111801_10053" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleTapUp_485111801_10054" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleTapDown_485111801_10055" ,"Precompiled__ModifierSidePair_465461389____10056" ,"Precompiled_SystemUiOverlayStyle____10057" ,"Precompiled_TextInputType____10058" ,"Precompiled_TextEditingValue____10059" ,"Precompiled__ImageState_545215529_get__handleImageFrame_545215529_10060" ,"Precompiled_AsyncSnapshot____10061" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin__LinkedHashMapMixin_3220832_containsKey_10062" ,"Precompiled_EditableTextState_get__handleCaretChanged_559183791_10063" ,"Precompiled_EditableTextState_get__handleSelectionChanged_559183791_10064" ,"Precompiled_IndexedSlot____10065" ,"Precompiled_IconData____10066" ,"Precompiled_MediaQueryData____10067" ,"Precompiled__TooltipState_346220820_get_ensureTooltipVisible_10068" ,"Precompiled__StorageEntryIdentifier_584357337____10069" ,"Precompiled_KeySet____10070" ,"Precompiled_GoogleSignInAccount____10071" ,"Precompiled_GoogleSignInUserData____10072" ,"Precompiled_GoogleSignInTokenData____10073" ,"Precompiled__TextSelectionHandleOverlayState_485111801_get__handleDragUpdate_485111801_10074" ,"Precompiled__TextSelectionHandleOverlayState_485111801_get__handleDragStart_485111801_10075" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleDragUpdate_485111801_10076" ,"Precompiled__TextSelectionGestureDetectorState_485111801_get__handleDragStart_485111801_10077" ,"Precompiled_InlineSpan_codeUnitAt_10078" ,"Precompiled_ScrollableState_get__handleDragDown_531019050_10079" ,"Precompiled_ScrollableState_get__handleDragStart_531019050_10080" ,"Precompiled_ECFieldElement____10081" ,"Precompiled_ECPointBase____10082" ,"Precompiled_ECCurve____10083" ,"Precompiled_ScrollableState_get__handleDragUpdate_531019050_10084" ,"Precompiled_ScrollableState_get__handleDragEnd_531019050_10085" ,"Precompiled_ScrollableState_get__handleDragCancel_531019050_10086" ,"Precompiled_Register64____10087" ,"Precompiled_Matrix4____10088" ,"Precompiled_Vector3____10089" ,"Precompiled_Vector4____10090" ,"Precompiled__ByteBuffer_7027147____10091" ,"Precompiled_DynamicLibrary____10092" ,"Precompiled_MultiFrameImageStreamCompleter_get__handleCodecReady_377483930_10093" ,"Precompiled_Pointer____10094" ,"Precompiled__ExternalTwoByteString_0150898____10095" ,"Precompiled__TwoByteString_0150898____10096" ,"Precompiled__OneByteString_0150898____10097" ,"Precompiled__MirrorReference_2408521____10098" ,"Precompiled__SendPortImpl_1026248____10099" ,"Precompiled__RawReceivePortImpl_1026248____10100" ,"Precompiled__CapabilityImpl_1026248____10101" ,"Precompiled__Double_0150898____10102" ,"Precompiled__Double_0150898__equal_0150898_10103" ,"Precompiled__IntegerImplementation_0150898____10104" ,"Precompiled__Closure_0150898____10105" ,"Precompiled__Type_0150898____10106" ,"Precompiled_Object____10107" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDragSelectionStart_10108" ,"Precompiled__PagePosition_585030489_applyViewportDimension_10109" ,"Precompiled_ScrollPosition_applyViewportDimension_10110" ,"Precompiled__PagePosition_585030489_applyContentDimensions_10111" ,"Precompiled_ScrollPosition_applyContentDimensions_10112" ,"Precompiled_BaseMouseTracker_get__handleEvent_418325758_10113" ,"Precompiled__PagePosition_585030489_restoreScrollOffset_10114" ,"Precompiled_ScrollPosition_restoreScrollOffset_10115" ,"Precompiled_LongPressGestureRecognizer_handlePrimaryPointer_10116" ,"Precompiled_BaseTapGestureRecognizer_handlePrimaryPointer_10117" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onDoubleTapDown_10118" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onSingleLongTapEnd_10119" ,"Precompiled_RenderPhysicalModel_get__defaultClip_423160605_10120" ,"Precompiled_RenderPhysicalShape_get__defaultClip_423160605_10121" ,"Precompiled_RenderSliverMultiBoxAdaptor_indexOf_10122" ,"Precompiled_RenderViewport_scrollOffsetOf_10123" ,"Precompiled_RenderShrinkWrappingViewport_scrollOffsetOf_10124" ,"Precompiled_RenderViewport_maxScrollObstructionExtentBefore_10125" ,"Precompiled_RenderShrinkWrappingViewport_maxScrollObstructionExtentBefore_10126" ,"Precompiled_RenderView_get_hitTestMouseTrackers_10127" ,"Precompiled__RenderSingleChildViewport_591426794_getOffsetToReveal_10128" ,"Precompiled_TextSelectionGestureDetectorBuilder_get_onSingleTapCancel_10129" ,"Precompiled_RenderViewport_computeChildMainAxisPosition_10130" ,"Precompiled_RenderShrinkWrappingViewport_computeChildMainAxisPosition_10131" ,"Precompiled_RenderViewport_get_childrenInHitTestOrder_10132" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInHitTestOrder_10133" ,"Precompiled_RenderViewportBase_getOffsetToReveal_10134" ,"Precompiled_RenderShrinkWrappingViewport_paintOffsetOf_10135" ,"Precompiled_RenderViewport_updateOutOfBandData_10136" ,"Precompiled_RenderShrinkWrappingViewport_updateOutOfBandData_10137" ,"Precompiled_RenderViewport_updateChildLayoutOffset_10138" ,"Precompiled_RenderShrinkWrappingViewport_updateChildLayoutOffset_10139" ,"Precompiled_RenderSliverGrid_childCrossAxisPosition_10140" ,"Precompiled_SynchronousFuture_catchError_10141" ,"Precompiled_SynchronousFuture_whenComplete_10142" ,"Precompiled_RenderSliverEdgeInsetsPadding_childCrossAxisPosition_10143" ,"Precompiled__MaterialScrollBehavior_239125171_buildViewportChrome_10144" ,"Precompiled_ScrollBehavior_buildViewportChrome_10145" ,"Precompiled_TapGestureRecognizer_handleTapCancel_10146" ,"Precompiled__AnyTapGestureRecognizer_575005443_handleTapCancel_10147" ,"Precompiled_TapGestureRecognizer_handleTapUp_10148" ,"Precompiled__AnyTapGestureRecognizer_575005443_handleTapUp_10149" ,"Precompiled_SynchronousFuture_then_10150" ,"Precompiled__NoInputBorder_295401927_getOuterPath_10151" ,"Precompiled_UnderlineInputBorder_getOuterPath_10152" ,"Precompiled_CircleBorder_getOuterPath_10153" ,"Precompiled_RoundedRectangleBorder_getOuterPath_10154" ,"Precompiled__RoundedRectangleToCircleBorder_383493913_getOuterPath_10155" ,"Precompiled_StadiumBorder_getOuterPath_10156" ,"Precompiled__StadiumToCircleBorder_386467860_getOuterPath_10157" ,"Precompiled__StadiumToRoundedRectangleBorder_386467860_getOuterPath_10158" ,"Precompiled_StandardFabLocation_getOffset_10159" ,"Precompiled_VerticalDragGestureRecognizer_isFlingGesture_10160" ,"Precompiled_HorizontalDragGestureRecognizer_isFlingGesture_10161" ,"Precompiled_PanGestureRecognizer_isFlingGesture_10162" ,"Precompiled__ScalingFabMotionAnimator_283063916_getOffset_10163" ,"Precompiled__Double_0150898_get_sign_10164" ,"Precompiled__IntegerImplementation_0150898_get_sign_10165" ,"Precompiled_SemanticsEvent_toMap_10166" ,"Precompiled__ToolbarContainerLayout_240187611_shouldRelayout_10167" ,"Precompiled__PopupMenuRouteLayout_310182389_shouldRelayout_10168" ,"Precompiled__TextSelectionToolbarLayout_337283233_shouldRelayout_10169" ,"Precompiled__TooltipPositionDelegate_346220820_shouldRelayout_10170" ,"Precompiled_Register64___10171" ,"Precompiled__ForceImplicitScrollPhysics_585030489_applyTo_10172" ,"Precompiled_PageScrollPhysics_applyTo_10173" ,"Precompiled_RangeMaintainingScrollPhysics_applyTo_10174" ,"Precompiled_BouncingScrollPhysics_applyTo_10175" ,"Precompiled_ClampingScrollPhysics_applyTo_10176" ,"Precompiled_AlwaysScrollableScrollPhysics_applyTo_10177" ,"Precompiled__ToolbarContainerLayout_240187611_getPositionForChild_10178" ,"Precompiled__PopupMenuRouteLayout_310182389_getPositionForChild_10179" ,"Precompiled__TextSelectionToolbarLayout_337283233_getPositionForChild_10180" ,"Precompiled__TooltipPositionDelegate_346220820_getPositionForChild_10181" ,"Precompiled__Double_0150898__mul_0150898_10182" ,"Precompiled_ScrollBehavior_getPlatform_10183" ,"Precompiled_BoxConstraints_get_isTight_10184" ,"Precompiled_BorderRadius_subtract_10185" ,"Precompiled_BorderRadiusGeometry_subtract_10186" ,"Precompiled__DayPickerGridDelegate_498246833_shouldRelayout_10187" ,"Precompiled__YearPickerGridDelegate_498246833_shouldRelayout_10188" ,"Precompiled_InkHighlight_paintFeature_10189" ,"Precompiled_InkSplash_paintFeature_10190" ,"Precompiled__ScaffoldLayout_319420462_shouldRelayout_10191" ,"Precompiled__ToolbarLayout_576023576_shouldRelayout_10192" ,"Precompiled__ContainerBoxParentData_BoxParentData_ContainerParentDataMixin_404392247_set_previousSibling_10193" ,"Precompiled__SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin_427505787_set_previousSibling_10194" ,"Precompiled__SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_432211670_set_previousSibling_10195" ,"Precompiled_LinearGradient_createShader_10196" ,"Precompiled__SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin_427505787_set_previousSibling_10197" ,"Precompiled__ContainerBoxParentData_BoxParentData_ContainerParentDataMixin_404392247_set_nextSibling_10198" ,"Precompiled__SliverLogicalContainerParentData_SliverLogicalParentData_ContainerParentDataMixin_427505787_set_nextSibling_10199" ,"Precompiled__SliverMultiBoxAdaptorParentData_SliverLogicalParentData_ContainerParentDataMixin_432211670_set_nextSibling_10200" ,"Precompiled__DayPickerGridDelegate_498246833_getLayout_10201" ,"Precompiled__YearPickerGridDelegate_498246833_getLayout_10202" ,"Precompiled__SliverPhysicalContainerParentData_SliverPhysicalParentData_ContainerParentDataMixin_427505787_set_nextSibling_10203" ,"Precompiled__SwitchableSemanticsFragment_419266271_markAsExplicit_10204" ,"Precompiled__Double_0150898___10205" ,"Precompiled__Double_0150898__greaterThan_0150898_10206" ,"Precompiled__IntegerImplementation_0150898___10207" ,"Precompiled_GoogleSignIn_get_signIn_10208" ,"Precompiled_MethodChannelGoogleSignIn_get_signIn_10209" ,"Precompiled__WhitespaceDirectionalityFormatter_559183791_formatEditUpdate_10210" ,"Precompiled_Ticker_set_muted_10211" ,"Precompiled_PosixStyle_containsSeparator_10212" ,"Precompiled_PosixStyle_pathFromUri_10213" ,"Precompiled_UrlStyle_pathFromUri_10214" ,"Precompiled_WindowsStyle_pathFromUri_10215" ,"Precompiled____isDriveLetter_10216" ,"Precompiled_ModalRoute_changedInternalState_10217" ,"Precompiled__Double_0150898__greaterThanFromInteger_0150898_10218" ,"Precompiled__IntegerImplementation_0150898__greaterThanFromInteger_0150898_10219" ,"Precompiled_UrlStyle_relativePathToUri_10220" ,"Precompiled_InternalStyle_relativePathToUri_10221" ,"Precompiled__RootSemanticsFragment_419266271_compileChildren_10222" ,"Precompiled__SwitchableSemanticsFragment_419266271_compileChildren_10223" ,"Precompiled__AbortingSemanticsFragment_419266271_compileChildren_10224" ,"Precompiled__DefaultBinaryMessenger_455240726_get_handlePlatformMessage_10225" ,"Precompiled_JSONMethodCodec_encodeSuccessEnvelope_10226" ,"Precompiled_StandardMethodCodec_encodeSuccessEnvelope_10227" ,"Precompiled_PosixStyle_absolutePathToUri_10228" ,"Precompiled_WindowsStyle_absolutePathToUri_10229" ,"Precompiled__SwitchableSemanticsFragment_419266271_get_config_10230" ,"Precompiled_AutoSeedBlockCtrRandom_nextBigInteger_10231" ,"Precompiled_SecureRandomBase_nextBigInteger_10232" ,"Precompiled_FortunaRandom_nextBigInteger_10233" ,"Precompiled_CBCBlockCipherMac_get_macSize_10234" ,"Precompiled_TickerFuture_catchError_10235" ,"Precompiled_TickerFuture_whenComplete_10236" ,"Precompiled__StringBase_0150898__substringUncheckedNative_0150898_10237" ,"Precompiled__OneByteString_0150898__substringUncheckedNative_0150898_10238" ,"Precompiled__Double_0150898__mulFromInteger_0150898_10239" ,"Precompiled__IntegerImplementation_0150898__mulFromInteger_0150898_10240" ,"Precompiled_TickerFuture_then_10241" ,"Precompiled__Double_0150898__subFromInteger_0150898_10242" ,"Precompiled__IntegerImplementation_0150898__subFromInteger_0150898_10243" ,"Precompiled_GestureRecognizerFactoryWithHandlers_initializer_10244" ,"Precompiled__AnyTapGestureRecognizerFactory_575005443_initializer_10245" ,"Precompiled_GestureRecognizerFactoryWithHandlers_constructor_10246" ,"Precompiled__AnyTapGestureRecognizerFactory_575005443_constructor_10247" ,"Precompiled_Route_get_overlayEntries_10248" ,"Precompiled_Ticker_get__tick_447494659_10249" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872_assignSemantics_10250" ,"Precompiled__ModalBarrierSemanticsDelegate_575005443_assignSemantics_10251" ,"Precompiled_ModalRoute_install_10252" ,"Precompiled_AnnounceSemanticsEvent_getDataMap_10253" ,"Precompiled_TooltipSemanticsEvent_getDataMap_10254" ,"Precompiled_LongPressSemanticsEvent_getDataMap_10255" ,"Precompiled__Double_0150898__addFromInteger_0150898_10256" ,"Precompiled__IntegerImplementation_0150898__addFromInteger_0150898_10257" ,"Precompiled_JSONMethodCodec_decodeEnvelope_10258" ,"Precompiled_StandardMethodCodec_decodeEnvelope_10259" ,"Precompiled_JSONMethodCodec_decodeMethodCall_10260" ,"Precompiled_StandardMethodCodec_decodeMethodCall_10261" ,"Precompiled_JSONMethodCodec_encodeMethodCall_10262" ,"Precompiled_StandardMethodCodec_encodeMethodCall_10263" ,"Precompiled_JSONMethodCodec_encodeErrorEnvelope_10264" ,"Precompiled_StandardMethodCodec_encodeErrorEnvelope_10265" ,"Precompiled__NavigatorPushObservation_529124995_get_notify_10266" ,"Precompiled__NavigatorPopObservation_529124995_get_notify_10267" ,"Precompiled__NavigatorRemoveObservation_529124995_get_notify_10268" ,"Precompiled__NavigatorReplaceObservation_529124995_get_notify_10269" ,"Precompiled_ModalRoute_get__buildModalBarrier_49188637_10270" ,"Precompiled_TransitionRoute_didPopNext_10271" ,"Precompiled_Frame_get_isCore_10272" ,"Precompiled_ModalRoute_get__buildModalScope_49188637_10273" ,"Precompiled__Double_0150898_get_isNegative_10274" ,"Precompiled__IntegerImplementation_0150898_get_isNegative_10275" ,"Precompiled_PageRoute_canTransitionFrom_10276" ,"Precompiled_FocusScopeNode__doRequestFocus_514042876_10277" ,"Precompiled_FocusNode__doRequestFocus_514042876_10278" ,"Precompiled_ScrollPhysics_shouldAcceptUserOffset_10279" ,"Precompiled_TransitionRoute_createAnimation_10280" ,"Precompiled_FocusNode_get_nearestScope_10281" ,"Precompiled__ModalRoute_42264537_buildPage_10282" ,"Precompiled__PopupMenuRoute_310182389_buildPage_10283" ,"Precompiled_MaterialPageRoute_buildPage_10284" ,"Precompiled_InternalStyle_pathsEqual_10285" ,"Precompiled_WindowsStyle_pathsEqual_10286" ,"Precompiled_Context_isRootRelative_10287" ,"Precompiled_UrlStyle_isRootRelative_10288" ,"Precompiled_WindowsStyle_isRootRelative_10289" ,"Precompiled_PosixStyle_needsSeparator_10290" ,"Precompiled_UrlStyle_needsSeparator_10291" ,"Precompiled_WindowsStyle_needsSeparator_10292" ,"Precompiled__ByteDataView_7027147_get_buffer_10293" ,"Precompiled__TypedListView_7027147_get_buffer_10294" ,"Precompiled__TypedList_7027147_get_buffer_10295" ,"Precompiled_MethodChannelGoogleSignIn_init_10296" ,"Precompiled_SliverChildListDelegate_findIndexByKey_10297" ,"Precompiled_SliverChildBuilderDelegate_shouldRebuild_10298" ,"Precompiled_SliverChildListDelegate_shouldRebuild_10299" ,"Precompiled_PosixStyle_rootLength_10300" ,"Precompiled_UrlStyle_rootLength_10301" ,"Precompiled_WindowsStyle_rootLength_10302" ,"Precompiled_Context_get_separator_10303" ,"Precompiled_SliverChildListDelegate_get_estimatedChildCount_10304" ,"Precompiled_StreamCipherAsBlockCipher_processBlock_10305" ,"Precompiled_AESFastEngine_processBlock_10306" ,"Precompiled_CBCBlockCipher_processBlock_10307" ,"Precompiled_CFBBlockCipher_processBlock_10308" ,"Precompiled_ECBBlockCipher_processBlock_10309" ,"Precompiled_GCTRBlockCipher_processBlock_10310" ,"Precompiled_OFBBlockCipher_processBlock_10311" ,"Precompiled_StreamCipherAsBlockCipher_init_10312" ,"Precompiled_AESFastEngine_init_10313" ,"Precompiled_CBCBlockCipher_init_10314" ,"Precompiled_CFBBlockCipher_init_10315" ,"Precompiled_ECBBlockCipher_init_10316" ,"Precompiled_GCTRBlockCipher_init_10317" ,"Precompiled_OFBBlockCipher_init_10318" ,"Precompiled_PosixStyle_isSeparator_10319" ,"Precompiled_WindowsStyle_isSeparator_10320" ,"Precompiled__Mint_0150898__bitAndFromSmi_0150898_10321" ,"Precompiled__IntegerImplementation_0150898__bitAndFromInteger_0150898_10322" ,"Precompiled__Smi_0150898__bitAndFromSmi_0150898_10323" ,"Precompiled_Context_split_10324" ,"Precompiled_ISO7816d4Padding_padCount_10325" ,"Precompiled_PKCS7Padding_padCount_10326" ,"Precompiled_SHA1Digest_processBlock_10327" ,"Precompiled_Blake2bDigest_init_10328" ,"Precompiled_CBCBlockCipher_get_blockSize_10329" ,"Precompiled_GCTRBlockCipher_get_blockSize_10330" ,"Precompiled_SICStreamCipher_processBytes_10331" ,"Precompiled_Salsa20Engine_processBytes_10332" ,"Precompiled__Double_0150898_get_isNaN_10333" ,"Precompiled_ISO7816d4Padding_addPadding_10334" ,"Precompiled_PKCS7Padding_addPadding_10335" ,"Precompiled__StringBase_0150898_padRight_10336" ,"Precompiled__OneByteString_0150898_padRight_10337" ,"Precompiled__StringBase_0150898_toUpperCase_10338" ,"Precompiled__OneByteString_0150898_toUpperCase_10339" ,"Precompiled_LazyTrace_get_terse_10340" ,"Precompiled_Trace_get_terse_10341" ,"Precompiled_PaddedBlockCipherImpl_processBlock_10342" ,"Precompiled__StringBase_0150898_padLeft_10343" ,"Precompiled__OneByteString_0150898_padLeft_10344" ,"Precompiled_PaddedBlockCipherImpl_init_10345" ,"Precompiled_ISO7816d4Padding_init_10346" ,"Precompiled__StringBase_0150898_allMatches_10347" ,"Precompiled_SICStreamCipher_init_10348" ,"Precompiled_Salsa20Engine_init_10349" ,"Precompiled__RegExp_0150898_allMatches_10350" ,"Precompiled__StringBase_0150898_indexOf_10351" ,"Precompiled__OneByteString_0150898_indexOf_10352" ,"Precompiled_PaddedBlockCipherImpl_get_blockSize_10353" ,"Precompiled_Frame_get_location_10354" ,"Precompiled__Mint_0150898_get_bitLength_10355" ,"Precompiled__Smi_0150898_get_bitLength_10356" ,"Precompiled_LazyTrace_get_frames_10357" ,"Precompiled__ExternalFloat64Array_7027147_get_elementSizeInBytes_10358" ,"Precompiled__ExternalFloat32Array_7027147_get_elementSizeInBytes_10359" ,"Precompiled__ExternalUint16Array_7027147_get_elementSizeInBytes_10360" ,"Precompiled__Mint_0150898___10361" ,"Precompiled__Smi_0150898___10362" ,"Precompiled__StringBase_0150898_toLowerCase_10363" ,"Precompiled__OneByteString_0150898_toLowerCase_10364" ,"Precompiled__Double_0150898___10365" ,"Precompiled__IntegerImplementation_0150898___10366" ,"Precompiled__IntegerImplementation_0150898___10367" ,"Precompiled__Smi_0150898___10368" ,"Precompiled__StringBase_0150898_split_10369" ,"Precompiled__OneByteString_0150898_split_10370" ,"Precompiled__OneByteString_0150898__splitWithCharCode_0150898_10371" ,"Precompiled__ExternalTwoByteString_0150898_codeUnitAt_10372" ,"Precompiled__ExternalOneByteString_0150898_codeUnitAt_10373" ,"Precompiled__TwoByteString_0150898_codeUnitAt_10374" ,"Precompiled__OneByteString_0150898_codeUnitAt_10375" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_updateAll_10376" ,"Precompiled__IntegerImplementation_0150898_toDouble_10377" ,"Precompiled__Double_0150898_get_isFinite_10378" ,"Precompiled__Double_0150898_round_10379" ,"Precompiled__Double_0150898__equalToInteger_0150898_10380" ,"Precompiled__IntegerImplementation_0150898__equalToInteger_0150898_10381" ,"Precompiled_Stub__iso_stub_SlowTypeTestStub" ,"Precompiled_Stub__iso_stub_UnreachableTypeTestStub" ,"Precompiled_Stub__iso_stub_TopTypeTypeTestStub" ,"Precompiled_Stub__iso_stub_DefaultNullableTypeTestStub" ,"Precompiled_Stub__iso_stub_DefaultTypeTestStub" ,"Precompiled_Stub__iso_stub_CallClosureNoSuchMethodStub" ,"Precompiled_Stub__iso_stub_InitLateFinalInstanceFieldStub" ,"Precompiled_Stub__iso_stub_InitLateInstanceFieldStub" ,"Precompiled_Stub__iso_stub_InitInstanceFieldStub" ,"Precompiled_Stub__iso_stub_InitStaticFieldStub" ,"Precompiled_Stub__iso_stub_InstanceOfStub" ,"Precompiled_Stub__iso_stub_AssertBooleanStub" ,"Precompiled_Stub__iso_stub_ReThrowStub" ,"Precompiled_Stub__iso_stub_ThrowStub" ,"Precompiled_Stub__iso_stub_ArrayWriteBarrierStub" ,"Precompiled_Stub__iso_stub_WriteBarrierWrappersStub" ,"Precompiled_Stub__iso_stub_CloneContextStub" ,"Precompiled_Stub__iso_stub_AllocateObjectParameterizedStub" ,"Precompiled_Stub__iso_stub_AllocateObjectStub" ,"Precompiled_Stub__iso_stub_AllocateContextStub" ,"Precompiled_Stub__iso_stub_AllocateArrayStub" ,"Precompiled_Stub__iso_stub_StackOverflowSharedWithoutFPURegsStub" ,"Precompiled_Stub__iso_stub_StackOverflowSharedWithFPURegsStub" ,"Precompiled_Stub__iso_stub_AllocateMintSharedWithoutFPURegsStub" ,"Precompiled_Stub__iso_stub_AllocateMintSharedWithFPURegsStub" ,"Precompiled_Stub__iso_stub_RangeErrorSharedWithoutFPURegsStub" ,"Precompiled_Stub__iso_stub_RangeErrorSharedWithFPURegsStub" ,"Precompiled_Stub__iso_stub_NullArgErrorSharedWithoutFPURegsStub" ,"Precompiled_Stub__iso_stub_NullArgErrorSharedWithFPURegsStub" ,"Precompiled_Stub__iso_stub_NullErrorSharedWithoutFPURegsStub" ,"Precompiled_Stub__iso_stub_NullErrorSharedWithFPURegsStub" ,"Precompiled_Stub__iso_stub_DispatchTableNullErrorStub" ,"Precompiled_Stub__iso_stub_BuildMethodExtractorStub" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_performLayout__anonymous_closure__10415" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_paint__anonymous_closure__10416" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_hitTestChild__anonymous_closure__10417" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_attach__anonymous_closure__10418" ,"Precompiled_TypeTestingStub_package_flutter_src_cupertino_text_selection_dart___CupertinoTextSelectionToolbarItemsSlot_10419" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_detach__anonymous_closure__10420" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_redepthChildren__anonymous_closure__10421" ,"Precompiled__CupertinoTextSelectionToolbarItemsRenderBox_186300207_visitChildrenForSemantics__anonymous_closure__10422" ,"Precompiled__CupertinoButtonState_163145554__animate_163145554__anonymous_closure__10423" ,"Precompiled__CupertinoTextSelectionToolbarContentState_186300207__statusListener_186300207__anonymous_closure__10424" ,"Precompiled_ClipContext_clipPathAndPaint__anonymous_closure__10425" ,"Precompiled_PaintingContext_pushClipPath__anonymous_closure__10426" ,"Precompiled__ToolbarRenderBox_186300207_paint__anonymous_closure__10427" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233__layoutChildren_337283233__anonymous_closure__10428" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233__placeChildren_337283233__anonymous_closure__10429" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_paint__anonymous_closure__10430" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_hitTestChildren__anonymous_closure__10431" ,"Precompiled__TextSelectionToolbarItemsRenderBox_337283233_visitChildrenForSemantics__anonymous_closure__10432" ,"Precompiled__TextSelectionToolbarContainerRenderBox_337283233_hitTestChildren__anonymous_closure__10433" ,"Precompiled_RenderFlex_computeMinIntrinsicWidth__anonymous_closure__10434" ,"Precompiled_RenderFlex_computeMinIntrinsicHeight__anonymous_closure__10435" ,"Precompiled_RenderListBody_computeMinIntrinsicWidth__anonymous_closure__10436" ,"Precompiled_RenderListBody_computeMinIntrinsicWidth__anonymous_closure__10437" ,"Precompiled_RenderListBody_computeMinIntrinsicHeight__anonymous_closure__10438" ,"Precompiled_RenderListBody_computeMinIntrinsicHeight__anonymous_closure__10439" ,"Precompiled_RenderStack_computeMinIntrinsicWidth__anonymous_closure__10440" ,"Precompiled_RenderStack_computeMinIntrinsicHeight__anonymous_closure__10441" ,"Precompiled__RenderTheatre_511319124_computeMinIntrinsicWidth__anonymous_closure__10442" ,"Precompiled__RenderTheatre_511319124_computeMinIntrinsicHeight__anonymous_closure__10443" ,"Precompiled__RenderDecoration_296019562_performLayout_baselineLayout_10444" ,"Precompiled__RenderDecoration_296019562_performLayout_centerLayout_10445" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_rendering_box_dart__RenderBox_10446" ,"Precompiled__RenderDecoration_296019562_get__children_296019562__sync_op_gen__anonymous_closure__10447" ,"Precompiled__RenderDecoration_296019562_get__children_296019562__sync_op_gen_10448" ,"Precompiled__RenderDecoration_296019562_hitTestChildren__anonymous_closure__10449" ,"Precompiled__HelperErrorState_296019562__handleChange_296019562__anonymous_closure__10450" ,"Precompiled_TypeTestingStub_package_flutter_src_material_input_decorator_dart___DecorationSlot_10451" ,"Precompiled_SemanticsConfiguration_set_onSetSelection__anonymous_closure__10452" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByWord__anonymous_closure__10453" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorBackwardByCharacter__anonymous_closure__10454" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByWord__anonymous_closure__10455" ,"Precompiled_SemanticsConfiguration_set_onMoveCursorForwardByCharacter__anonymous_closure__10456" ,"Precompiled_RenderFlex_computeMaxIntrinsicHeight__anonymous_closure__10457" ,"Precompiled_RenderListBody_computeMaxIntrinsicHeight__anonymous_closure__10458" ,"Precompiled_RenderListBody_computeMaxIntrinsicHeight__anonymous_closure__10459" ,"Precompiled_RenderStack_computeMaxIntrinsicHeight__anonymous_closure__10460" ,"Precompiled__AnimatedOpacityState_497443363_forEachTween__anonymous_closure__10461" ,"Precompiled__RenderTheatre_511319124_computeMaxIntrinsicHeight__anonymous_closure__10462" ,"Precompiled_RenderAnimatedSize_RenderAnimatedSize___anonymous_closure__10463" ,"Precompiled__CupertinoTextSelectionToolbarWrapperState_186300207_build_addToolbarButton_10464" ,"Precompiled_ForcePressGestureRecognizer_handleEvent__anonymous_closure__10465" ,"Precompiled_ForcePressGestureRecognizer_didStopTrackingLastPointer__anonymous_closure__10466" ,"Precompiled__TextSelectionToolbarState_337283233_build__anonymous_closure___anonymous_closure__10467" ,"Precompiled__TextSelectionToolbarState_337283233_build__anonymous_closure__10468" ,"Precompiled_RenderFlex_computeMaxIntrinsicWidth__anonymous_closure__10469" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_rendering_layer_dart__Layer_10470" ,"Precompiled_RenderListBody_computeMaxIntrinsicWidth__anonymous_closure__10471" ,"Precompiled_RenderListBody_computeMaxIntrinsicWidth__anonymous_closure__10472" ,"Precompiled_RenderFractionalTranslation_hitTestChildren__anonymous_closure__10473" ,"Precompiled_RenderStack_computeMaxIntrinsicWidth__anonymous_closure__10474" ,"Precompiled__RenderTheatre_511319124_computeMaxIntrinsicWidth__anonymous_closure__10475" ,"Precompiled_RenderEditable__handleMovement_409245603_nextNonWhitespace_10476" ,"Precompiled_RenderEditable__handleMovement_409245603_previousNonWhitespace_10477" ,"Precompiled_RenderEditable__handleShortcuts_409245603__async_op_10478" ,"Precompiled__RenderListBody_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_415367922_defaultHitTestChildren__anonymous_closure__10479" ,"Precompiled_RenderBox__computeIntrinsicDimension_404392247__anonymous_closure__10480" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_box_dart___IntrinsicDimensionsCacheEntry_10481" ,"Precompiled_RenderFollowerLayer_hitTestChildren__anonymous_closure__10482" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_force_press_dart__ForcePressGestureRecognizer_10483" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10484" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10485" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10486" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10487" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10488" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10489" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_text_selection_dart___TransparentTapGestureRecognizer_10490" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10491" ,"Precompiled__TextSelectionGestureDetectorState_485111801_build__anonymous_closure__10492" ,"Precompiled__RenderTheatre_511319124_hitTestChildren__anonymous_closure__10493" ,"Precompiled_EditableTextState_initState__anonymous_closure__10494" ,"Precompiled_EditableTextState_didChangeDependencies__anonymous_closure__10495" ,"Precompiled_EditableTextState__semanticsOnCopy_559183791__anonymous_closure__10496" ,"Precompiled_EditableTextState__semanticsOnCut_559183791__anonymous_closure__10497" ,"Precompiled_EditableTextState__semanticsOnPaste_559183791__anonymous_closure__10498" ,"Precompiled_EditableTextState_build__anonymous_closure__10499" ,"Precompiled__GlowController_583442496_pull__anonymous_closure__10500" ,"Precompiled__PageViewState_585030489_build__anonymous_closure__10501" ,"Precompiled__PageViewState_585030489_build__anonymous_closure__10502" ,"Precompiled_SplayTreeSet__newSet_3220832__anonymous_closure__10503" ,"Precompiled__CustomZone_4048458_bindUnaryCallbackGuarded__anonymous_closure__10504" ,"Precompiled__RootZone_4048458_bindUnaryCallbackGuarded__anonymous_closure__10505" ,"Precompiled_HeroController_didStopUserGesture_isInvalidFlight_10506" ,"Precompiled__CupertinoBackGestureController_177053933_dragEnd__anonymous_closure__10507" ,"Precompiled__CupertinoTextSelectionControls_186300207_buildToolbar__anonymous_closure__10508" ,"Precompiled__CupertinoTextSelectionControls_186300207_buildToolbar__anonymous_closure__10509" ,"Precompiled__CupertinoTextSelectionControls_186300207_buildToolbar__anonymous_closure__10510" ,"Precompiled__CupertinoTextSelectionControls_186300207_buildToolbar__anonymous_closure__10511" ,"Precompiled_Clipboard_setData__async_op_10512" ,"Precompiled_ClipboardStatusNotifier_update__anonymous_closure__10513" ,"Precompiled_Clipboard_getData__async_op_10514" ,"Precompiled_TextSelectionControls_handlePaste__async_op_10515" ,"Precompiled__MaterialTextSelectionControls_337283233_buildToolbar__anonymous_closure__10516" ,"Precompiled__MaterialTextSelectionControls_337283233_buildToolbar__anonymous_closure__10517" ,"Precompiled__MaterialTextSelectionControls_337283233_buildToolbar__anonymous_closure__10518" ,"Precompiled__MaterialTextSelectionControls_337283233_buildToolbar__anonymous_closure__10519" ,"Precompiled__TooltipState_346220820__handleMouseTrackerChange_346220820__anonymous_closure__10520" ,"Precompiled_SemanticsService_tooltip__async_op_10521" ,"Precompiled__TooltipState_346220820__createNewEntry_346220820__anonymous_closure__10522" ,"Precompiled__TooltipState_346220820_build__anonymous_closure__10523" ,"Precompiled__TooltipState_346220820_build__anonymous_closure__10524" ,"Precompiled_TextInput__scheduleHide_478206165__anonymous_closure__10525" ,"Precompiled__DayPicker_498246833_build__anonymous_closure__10526" ,"Precompiled__RenderSingleChildViewport_591426794_hitTestChildren__anonymous_closure__10527" ,"Precompiled__WarningDialogState_38161078_buildKeepButton__anonymous_closure__10528" ,"Precompiled__WarningDialogState_38161078_buildDeleteButton__anonymous_closure__10529" ,"Precompiled__InkResponseState_294059085__handleFocusHighlightModeChange_294059085__anonymous_closure__10530" ,"Precompiled_____getClipCallback_293036029__anonymous_closure__10531" ,"Precompiled__InkResponseState_294059085__createInkFeature_294059085_onRemoved_10532" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_material_ink_well_dart__InteractiveInkFeature_10533" ,"Precompiled_SystemSound_play__async_op_10534" ,"Precompiled_Feedback_forTap__async_op_10535" ,"Precompiled__InkResponseState_294059085_updateHighlight_handleInkRemoval_10536" ,"Precompiled__InkResponseState_294059085_build__anonymous_closure__10537" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_highlight_dart__InkHighlight_10538" ,"Precompiled__InkResponseState_294059085_get_highlightsExist__anonymous_closure__10539" ,"Precompiled__MaterialInteriorState_298372823_forEachTween__anonymous_closure__10540" ,"Precompiled__MaterialInteriorState_298372823_forEachTween__anonymous_closure__10541" ,"Precompiled__MaterialInteriorState_298372823_forEachTween__anonymous_closure__10542" ,"Precompiled__PopupMenu_310182389_build__anonymous_closure__10543" ,"Precompiled__PopupMenu_310182389_build__anonymous_closure__10544" ,"Precompiled__TextFieldState_335181401__handleSelectionChanged_335181401__anonymous_closure__10545" ,"Precompiled__TextFieldState_335181401__handleHover_335181401__anonymous_closure__10546" ,"Precompiled_EditableTextState__updateSizeAndTransform_559183791__anonymous_closure__10547" ,"Precompiled_EditableTextState__showCaretOnScreen_559183791__anonymous_closure__10548" ,"Precompiled_EditableTextState__cursorTick_559183791__anonymous_closure__10549" ,"Precompiled__WhitespaceDirectionalityFormatter_559183791_formatEditUpdate_subtractFromLength_10550" ,"Precompiled__WhitespaceDirectionalityFormatter_559183791_formatEditUpdate_addToLength_10551" ,"Precompiled_TextSelectionOverlay__buildHandle_485111801__anonymous_closure__10552" ,"Precompiled_TextSelectionOverlay_showHandles__anonymous_closure__10553" ,"Precompiled_TextSelectionOverlay_showHandles__anonymous_closure__10554" ,"Precompiled_EditableTextState_showAutocorrectionPromptRect__anonymous_closure__10555" ,"Precompiled_TextInput__handleTextInputInvocation_478206165__async_op_10556" ,"Precompiled__TextFieldState_335181401_build__anonymous_closure___anonymous_closure__10557" ,"Precompiled__TextFieldState_335181401_build__anonymous_closure__10558" ,"Precompiled__TextFieldState_335181401_build__anonymous_closure__10559" ,"Precompiled__TextFieldState_335181401_build__anonymous_closure__10560" ,"Precompiled__TextFieldState_335181401_build__anonymous_closure__10561" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInHitTestOrder__sync_op_gen__anonymous_closure__10562" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInHitTestOrder__sync_op_gen_10563" ,"Precompiled_RenderViewport_get_childrenInHitTestOrder__sync_op_gen__anonymous_closure__10564" ,"Precompiled_RenderViewport_get_childrenInHitTestOrder__sync_op_gen_10565" ,"Precompiled__AnimatedDefaultTextStyleState_497443363_forEachTween__anonymous_closure__10566" ,"Precompiled_SplayTreeSet_SplayTreeSet___anonymous_closure__10567" ,"Precompiled_____sample_372499651__anonymous_closure__10568" ,"Precompiled_____interpolateColorsAndStops_372499651__anonymous_closure__10569" ,"Precompiled__AnimatedPhysicalModelState_497443363_forEachTween__anonymous_closure__10570" ,"Precompiled__AnimatedPhysicalModelState_497443363_forEachTween__anonymous_closure__10571" ,"Precompiled_TypeTestingStub_package_flutter_src_animation_tween_dart__Tween__dart_core__double_10572" ,"Precompiled__AnimatedPhysicalModelState_497443363_forEachTween__anonymous_closure__10573" ,"Precompiled__AnimatedPhysicalModelState_497443363_forEachTween__anonymous_closure__10574" ,"Precompiled__YearPickerState_498246833__buildYearItem_498246833__anonymous_closure__10575" ,"Precompiled_OverlayState_insertAll__anonymous_closure__10576" ,"Precompiled__FocusState_515492240__handleFocusChanged_515492240__anonymous_closure__10577" ,"Precompiled__FocusState_515492240__handleFocusChanged_515492240__anonymous_closure__10578" ,"Precompiled__FocusState_515492240__handleFocusChanged_515492240__anonymous_closure__10579" ,"Precompiled__FutureBuilderState_536480208__subscribe_536480208__anonymous_closure___anonymous_closure__10580" ,"Precompiled__FutureBuilderState_536480208__subscribe_536480208__anonymous_closure___anonymous_closure__10581" ,"Precompiled__FutureBuilderState_536480208__subscribe_536480208__anonymous_closure__10582" ,"Precompiled__FutureBuilderState_536480208__subscribe_536480208__anonymous_closure__10583" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__10584" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__10585" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__10586" ,"Precompiled_ScrollableState_setCanDrag__anonymous_closure__10587" ,"Precompiled__ModalRoute_42264537_buildPage__anonymous_closure__10588" ,"Precompiled__ModalScopeState_49188637__forceRebuildPage_49188637__anonymous_closure__10589" ,"Precompiled_BackButton_build__anonymous_closure__10590" ,"Precompiled__RenderInputPadding_252412912_hitTest__anonymous_closure__10591" ,"Precompiled_TypeTestingStub_package_flutter_src_material_ink_well_dart___HighlightType_10592" ,"Precompiled_CupertinoPageRoute_buildPageTransitions__anonymous_closure__10593" ,"Precompiled_CupertinoPageRoute_buildPageTransitions__anonymous_closure__10594" ,"Precompiled_InheritedTheme_captureAll__anonymous_closure__10595" ,"Precompiled__PopupMenuRoute_310182389_buildPage__anonymous_closure__10596" ,"Precompiled_SliverMultiBoxAdaptorElement_removeChild__anonymous_closure__10597" ,"Precompiled_RenderSliverMultiBoxAdaptor_collectGarbage__anonymous_closure___anonymous_closure__10598" ,"Precompiled_RenderSliverMultiBoxAdaptor_collectGarbage__anonymous_closure__10599" ,"Precompiled_RenderObject_invokeLayoutCallback__anonymous_closure__10600" ,"Precompiled_SliverMultiBoxAdaptorElement_createChild__anonymous_closure__10601" ,"Precompiled_RenderSliverMultiBoxAdaptor__createOrObtainChild_432211670__anonymous_closure__10602" ,"Precompiled_RenderSliverList_performLayout_advance_10603" ,"Precompiled__RenderSliverMultiBoxAdaptor_RenderSliver_ContainerRenderObjectMixin_RenderSliverHelpers_432211670_hitTestBoxChild__anonymous_closure__10604" ,"Precompiled_RenderViewportBase_visitChildrenForSemantics__anonymous_closure__10605" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInPaintOrder__sync_op_gen__anonymous_closure__10606" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_rendering_sliver_dart__RenderSliver_10607" ,"Precompiled_RenderViewport_get_childrenInPaintOrder__sync_op_gen__anonymous_closure__10608" ,"Precompiled_RenderViewport_get_childrenInPaintOrder__sync_op_gen_10609" ,"Precompiled_RenderShrinkWrappingViewport_get_childrenInPaintOrder__sync_op_gen_10610" ,"Precompiled_RenderViewportBase_hitTestChildren__anonymous_closure__10611" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_proxy_box_dart__CustomClipper__T_10612" ,"Precompiled__AutomaticKeepAliveState_495490736__getChildElement_495490736__anonymous_closure__10613" ,"Precompiled__AutomaticKeepAliveState_495490736__createCallback_495490736__anonymous_closure___anonymous_closure__10614" ,"Precompiled__AutomaticKeepAliveState_495490736__createCallback_495490736__anonymous_closure___anonymous_closure__10615" ,"Precompiled__AutomaticKeepAliveState_495490736__addClient_495490736__anonymous_closure__10616" ,"Precompiled__AutomaticKeepAliveState_495490736__createCallback_495490736__anonymous_closure__10617" ,"Precompiled__AnimatedPaddingState_497443363_forEachTween__anonymous_closure__10618" ,"Precompiled_SliverMultiBoxAdaptorElement__build_523358031__anonymous_closure__10619" ,"Precompiled_SliverMultiBoxAdaptorElement_performRebuild__anonymous_closure__10620" ,"Precompiled_SliverMultiBoxAdaptorElement_performRebuild_processElement_10621" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_proxy_box_dart__RenderAnnotatedRegion__T_10622" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFindInitial_528280150__anonymous_closure__10623" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__popPolicyDataIfNeeded_528280150_popOrInvalidate_10624" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterVertically_528280150__anonymous_closure__10625" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterVertically_528280150__anonymous_closure__10626" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterVertically_528280150__anonymous_closure__10627" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterHorizontally_528280150__anonymous_closure__10628" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterHorizontally_528280150__anonymous_closure__10629" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150__sortAndFilterHorizontally_528280150__anonymous_closure__10630" ,"Precompiled_FocusNode_get_traversalDescendants__anonymous_closure__10631" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection__anonymous_closure__10632" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection__anonymous_closure__10633" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection__anonymous_closure__10634" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection__anonymous_closure__10635" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection__anonymous_closure__10636" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_inDirection__anonymous_closure__10637" ,"Precompiled_Scrollable_ensureVisible__anonymous_closure__10638" ,"Precompiled_TypeTestingStub_dart_core__Comparable_10639" ,"Precompiled____defaultCompare__anonymous_closure__10640" ,"Precompiled__ReadingOrderSortData_528280150_get_directionalAncestors_getDirectionalityAncestors_10641" ,"Precompiled__ReadingOrderSortData_528280150_commonDirectionalityOf__anonymous_closure__10642" ,"Precompiled__ReadingOrderSortData_528280150_sortWithDirectionality__anonymous_closure__10643" ,"Precompiled__ReadingOrderDirectionalGroupData_528280150_get_rect__anonymous_closure__10644" ,"Precompiled__ReadingOrderDirectionalGroupData_528280150_sortWithDirectionality__anonymous_closure__10645" ,"Precompiled_ReadingOrderTraversalPolicy__pickNext_528280150_inBand__anonymous_closure__10646" ,"Precompiled_ReadingOrderTraversalPolicy__pickNext_528280150__anonymous_closure__10647" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___FocusTraversalGroupInfo_10648" ,"Precompiled_____getAncestor_528280150__anonymous_closure__10649" ,"Precompiled_FocusTraversalPolicy__sortAllDescendants_528280150_visitGroups_10650" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_inherited_notifier_dart__InheritedNotifier__T_10651" ,"Precompiled_MultiChildRenderObjectElement_get_children__anonymous_closure__10652" ,"Precompiled_SingleChildScrollView_build__anonymous_closure__10653" ,"Precompiled_AESFastEngine_init__anonymous_closure__10654" ,"Precompiled_AutoSeedBlockCtrRandom_nextBytes__anonymous_closure__10655" ,"Precompiled_TypeTestingStub_package_pointycastle_api_dart__ParametersWithIV__package_pointycastle_api_dart__CipherParameters_10656" ,"Precompiled_AutoSeedBlockCtrRandom_nextBigInteger__anonymous_closure__10657" ,"Precompiled_TypeTestingStub_package_pointycastle_api_dart__ParametersWithIV__package_pointycastle_api_dart__KeyParameter_10658" ,"Precompiled__MemoryContainerState_35208829_buildMoreButton__anonymous_closure___anonymous_closure__10659" ,"Precompiled__MemoryContainerState_35208829_buildMoreButton__anonymous_closure___anonymous_closure__10660" ,"Precompiled__MemoryContainerState_35208829_buildMoreButton__anonymous_closure__10661" ,"Precompiled__MemoryContainerState_35208829_buildMoreButton__anonymous_closure__10662" ,"Precompiled__MemoryContainerState_35208829_buildMoreButton__anonymous_closure__10663" ,"Precompiled_Encrypt_decryptData__async_op_10664" ,"Precompiled__MemoryContainerState_35208829_buildDecryptedText__anonymous_closure__10665" ,"Precompiled__MemoryContainerState_35208829_buildAddMemoryButton__anonymous_closure___anonymous_closure__10666" ,"Precompiled__MemoryContainerState_35208829_buildAddMemoryButton__anonymous_closure__10667" ,"Precompiled__MemoryContainerState_35208829_buildCancelButton__anonymous_closure___anonymous_closure__10668" ,"Precompiled__MemoryContainerState_35208829_buildCancelButton__anonymous_closure__10669" ,"Precompiled_FirestoreProvider_addMemory__async_op_10670" ,"Precompiled_OAEPEncoding_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10671" ,"Precompiled_OAEPEncoding_init_FACTORY_CONFIG__anonymous_closure__10672" ,"Precompiled_PKCS1Encoding_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10673" ,"Precompiled_PKCS1Encoding_init_FACTORY_CONFIG__anonymous_closure__10674" ,"Precompiled_RSAEngine_init_FACTORY_CONFIG__anonymous_closure__10675" ,"Precompiled_AESFastEngine_init_FACTORY_CONFIG__anonymous_closure__10676" ,"Precompiled_CBCBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10677" ,"Precompiled_CBCBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10678" ,"Precompiled_CFBBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10679" ,"Precompiled_CFBBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10680" ,"Precompiled_CTRBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10681" ,"Precompiled_CTRBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10682" ,"Precompiled_ECBBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10683" ,"Precompiled_ECBBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10684" ,"Precompiled_GCTRBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10685" ,"Precompiled_GCTRBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10686" ,"Precompiled_OFBBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10687" ,"Precompiled_OFBBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10688" ,"Precompiled_SICBlockCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10689" ,"Precompiled_SICBlockCipher_init_FACTORY_CONFIG__anonymous_closure__10690" ,"Precompiled_Register64List_Register64List_from__anonymous_closure__10691" ,"Precompiled_Blake2bDigest_init_FACTORY_CONFIG__anonymous_closure__10692" ,"Precompiled_MD2Digest_init_FACTORY_CONFIG__anonymous_closure__10693" ,"Precompiled_MD4Digest_init_FACTORY_CONFIG__anonymous_closure__10694" ,"Precompiled_MD5Digest_init_FACTORY_CONFIG__anonymous_closure__10695" ,"Precompiled_RIPEMD128Digest_init_FACTORY_CONFIG__anonymous_closure__10696" ,"Precompiled_RIPEMD160Digest_init_FACTORY_CONFIG__anonymous_closure__10697" ,"Precompiled_RIPEMD256Digest_init_FACTORY_CONFIG__anonymous_closure__10698" ,"Precompiled_RIPEMD320Digest_init_FACTORY_CONFIG__anonymous_closure__10699" ,"Precompiled_SHA1Digest_init_FACTORY_CONFIG__anonymous_closure__10700" ,"Precompiled_SHA3Digest_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10701" ,"Precompiled_SHA3Digest_init_FACTORY_CONFIG__anonymous_closure__10702" ,"Precompiled_SHA224Digest_init_FACTORY_CONFIG__anonymous_closure__10703" ,"Precompiled_SHA256Digest_init_FACTORY_CONFIG__anonymous_closure__10704" ,"Precompiled_SHA384Digest_init_FACTORY_CONFIG__anonymous_closure__10705" ,"Precompiled_SHA512Digest_init_FACTORY_CONFIG__anonymous_closure__10706" ,"Precompiled_SHA512tDigest_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10707" ,"Precompiled_SHA512tDigest_init_FACTORY_CONFIG__anonymous_closure__10708" ,"Precompiled_TigerDigest_init_FACTORY_CONFIG__anonymous_closure__10709" ,"Precompiled_Register64List_Register64List___anonymous_closure__10710" ,"Precompiled_WhirlpoolDigest_init_FACTORY_CONFIG__anonymous_closure__10711" ,"Precompiled_ECCurve_brainpoolp160r1_init_FACTORY_CONFIG__anonymous_closure__10712" ,"Precompiled_ECCurve_brainpoolp160t1_init_FACTORY_CONFIG__anonymous_closure__10713" ,"Precompiled_ECCurve_brainpoolp192r1_init_FACTORY_CONFIG__anonymous_closure__10714" ,"Precompiled_ECCurve_brainpoolp192t1_init_FACTORY_CONFIG__anonymous_closure__10715" ,"Precompiled_ECCurve_brainpoolp224r1_init_FACTORY_CONFIG__anonymous_closure__10716" ,"Precompiled_ECCurve_brainpoolp224t1_init_FACTORY_CONFIG__anonymous_closure__10717" ,"Precompiled_ECCurve_brainpoolp256r1_init_FACTORY_CONFIG__anonymous_closure__10718" ,"Precompiled_ECCurve_brainpoolp256t1_init_FACTORY_CONFIG__anonymous_closure__10719" ,"Precompiled_ECCurve_brainpoolp320r1_init_FACTORY_CONFIG__anonymous_closure__10720" ,"Precompiled_ECCurve_brainpoolp320t1_init_FACTORY_CONFIG__anonymous_closure__10721" ,"Precompiled_ECCurve_brainpoolp384r1_init_FACTORY_CONFIG__anonymous_closure__10722" ,"Precompiled_ECCurve_brainpoolp384t1_init_FACTORY_CONFIG__anonymous_closure__10723" ,"Precompiled_ECCurve_brainpoolp512r1_init_FACTORY_CONFIG__anonymous_closure__10724" ,"Precompiled_ECCurve_brainpoolp512t1_init_FACTORY_CONFIG__anonymous_closure__10725" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_a_init_FACTORY_CONFIG__anonymous_closure__10726" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_b_init_FACTORY_CONFIG__anonymous_closure__10727" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_c_init_FACTORY_CONFIG__anonymous_closure__10728" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xcha_init_FACTORY_CONFIG__anonymous_closure__10729" ,"Precompiled_ECCurve_gostr3410_2001_cryptopro_xchb_init_FACTORY_CONFIG__anonymous_closure__10730" ,"Precompiled_ECCurve_prime192v1_init_FACTORY_CONFIG__anonymous_closure__10731" ,"Precompiled_ECCurve_prime192v2_init_FACTORY_CONFIG__anonymous_closure__10732" ,"Precompiled_ECCurve_prime192v3_init_FACTORY_CONFIG__anonymous_closure__10733" ,"Precompiled_ECCurve_prime239v1_init_FACTORY_CONFIG__anonymous_closure__10734" ,"Precompiled_ECCurve_prime239v2_init_FACTORY_CONFIG__anonymous_closure__10735" ,"Precompiled_ECCurve_prime239v3_init_FACTORY_CONFIG__anonymous_closure__10736" ,"Precompiled_ECCurve_prime256v1_init_FACTORY_CONFIG__anonymous_closure__10737" ,"Precompiled_ECCurve_secp112r1_init_FACTORY_CONFIG__anonymous_closure__10738" ,"Precompiled_ECCurve_secp112r2_init_FACTORY_CONFIG__anonymous_closure__10739" ,"Precompiled_ECCurve_secp128r1_init_FACTORY_CONFIG__anonymous_closure__10740" ,"Precompiled_ECCurve_secp128r2_init_FACTORY_CONFIG__anonymous_closure__10741" ,"Precompiled_ECCurve_secp160k1_init_FACTORY_CONFIG__anonymous_closure__10742" ,"Precompiled_ECCurve_secp160r1_init_FACTORY_CONFIG__anonymous_closure__10743" ,"Precompiled_ECCurve_secp160r2_init_FACTORY_CONFIG__anonymous_closure__10744" ,"Precompiled_ECCurve_secp192k1_init_FACTORY_CONFIG__anonymous_closure__10745" ,"Precompiled_ECCurve_secp192r1_init_FACTORY_CONFIG__anonymous_closure__10746" ,"Precompiled_ECCurve_secp224k1_init_FACTORY_CONFIG__anonymous_closure__10747" ,"Precompiled_ECCurve_secp224r1_init_FACTORY_CONFIG__anonymous_closure__10748" ,"Precompiled_ECCurve_secp256k1_init_FACTORY_CONFIG__anonymous_closure__10749" ,"Precompiled_ECCurve_secp256r1_init_FACTORY_CONFIG__anonymous_closure__10750" ,"Precompiled_ECCurve_secp384r1_init_FACTORY_CONFIG__anonymous_closure__10751" ,"Precompiled_ECCurve_secp521r1_init_FACTORY_CONFIG__anonymous_closure__10752" ,"Precompiled_PBKDF2KeyDerivator_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10753" ,"Precompiled_PBKDF2KeyDerivator_init_FACTORY_CONFIG__anonymous_closure__10754" ,"Precompiled_Scrypt_init_FACTORY_CONFIG__anonymous_closure__10755" ,"Precompiled_ECKeyGenerator_init_FACTORY_CONFIG__anonymous_closure__10756" ,"Precompiled_RSAKeyGenerator_init_FACTORY_CONFIG__anonymous_closure__10757" ,"Precompiled_HMac_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10758" ,"Precompiled_HMac_init_FACTORY_CONFIG__anonymous_closure__10759" ,"Precompiled_CMac_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10760" ,"Precompiled_CMac_init_FACTORY_CONFIG__anonymous_closure__10761" ,"Precompiled_CBCBlockCipherMac_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10762" ,"Precompiled_CBCBlockCipherMac_init_FACTORY_CONFIG__anonymous_closure__10763" ,"Precompiled_PaddedBlockCipherImpl_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10764" ,"Precompiled_PaddedBlockCipherImpl_init_FACTORY_CONFIG__anonymous_closure__10765" ,"Precompiled_PKCS7Padding_init_FACTORY_CONFIG__anonymous_closure__10766" ,"Precompiled_ISO7816d4Padding_init_FACTORY_CONFIG__anonymous_closure__10767" ,"Precompiled_AutoSeedBlockCtrRandom_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10768" ,"Precompiled_AutoSeedBlockCtrRandom_init_FACTORY_CONFIG__anonymous_closure__10769" ,"Precompiled_BlockCtrRandom_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10770" ,"Precompiled_BlockCtrRandom_init_FACTORY_CONFIG__anonymous_closure__10771" ,"Precompiled_FortunaRandom_init_FACTORY_CONFIG__anonymous_closure__10772" ,"Precompiled_ECDSASigner_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10773" ,"Precompiled_ECDSASigner_init_FACTORY_CONFIG__anonymous_closure__10774" ,"Precompiled_RSASigner_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10775" ,"Precompiled_RSASigner_init_FACTORY_CONFIG__anonymous_closure__10776" ,"Precompiled_CTRStreamCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10777" ,"Precompiled_CTRStreamCipher_init_FACTORY_CONFIG__anonymous_closure__10778" ,"Precompiled_Salsa20Engine_init_FACTORY_CONFIG__anonymous_closure__10779" ,"Precompiled_____escapeRegExp_632301108__anonymous_closure__10780" ,"Precompiled_____escapeRegExp_632301108__anonymous_closure__10781" ,"Precompiled_SICStreamCipher_init_FACTORY_CONFIG__anonymous_closure___anonymous_closure__10782" ,"Precompiled_SICStreamCipher_init_FACTORY_CONFIG__anonymous_closure__10783" ,"Precompiled__RegistryImpl_632301108__addStaticFactoryConfig_632301108__anonymous_closure__10784" ,"Precompiled_TypeTestingStub_package_pointycastle_src_registry_registry_dart__DynamicFactoryConfig_10785" ,"Precompiled__RegistryImpl_632301108__addDynamicFactoryConfig_632301108__anonymous_closure__10786" ,"Precompiled_Encrypt_encryptData__async_op_10787" ,"Precompiled_FirestoreProvider_updateMemory__async_op_10788" ,"Precompiled__MemoryContainerState_35208829_buildSaveButton__anonymous_closure___anonymous_closure__10789" ,"Precompiled__MemoryContainerState_35208829_buildSaveButton__anonymous_closure__10790" ,"Precompiled__ModalScopeState_49188637_build__anonymous_closure___anonymous_closure__10791" ,"Precompiled__ModalScopeState_49188637_build__anonymous_closure__10792" ,"Precompiled__ModalScopeState_49188637_build__anonymous_closure__10793" ,"Precompiled_DragGestureRecognizer__checkDown_227099969__anonymous_closure__10794" ,"Precompiled_PointerRouter_addRoute__anonymous_closure__10795" ,"Precompiled_LongPressGestureRecognizer__checkLongPressStart_225232524__anonymous_closure__10796" ,"Precompiled_PrimaryPointerGestureRecognizer_addAllowedPointer__anonymous_closure__10797" ,"Precompiled__MaterialState_298372823_build__anonymous_closure__10798" ,"Precompiled_PopupMenuButtonState_showButtonMenu__anonymous_closure__10799" ,"Precompiled__FloatingActionButtonTransitionState_319420462__handlePreviousAnimationStatusChanged_319420462__anonymous_closure__10800" ,"Precompiled___RenderCupertinoAlertActions_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_159305771_defaultHitTestChildren__anonymous_closure__10801" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_localizations_dart___Pending_10802" ,"Precompiled_____loadAll_483081674__anonymous_closure__10803" ,"Precompiled_____loadAll_483081674__anonymous_closure__10804" ,"Precompiled__LocalizationsState_483081674_load__anonymous_closure___anonymous_closure__10805" ,"Precompiled__LocalizationsState_483081674_load__anonymous_closure__10806" ,"Precompiled__LocalizationsState_483081674_load__anonymous_closure__10807" ,"Precompiled__CalendarDatePickerState_498246833__handleDayChanged_498246833__anonymous_closure__10808" ,"Precompiled__CalendarDatePickerState_498246833__handleMonthChanged_498246833__anonymous_closure__10809" ,"Precompiled__CalendarDatePickerState_498246833__handleYearChanged_498246833__anonymous_closure__10810" ,"Precompiled_HapticFeedback_vibrate__async_op_10811" ,"Precompiled_BasicMessageChannel_send__async_op_10812" ,"Precompiled_SemanticsService_announce__async_op_10813" ,"Precompiled__CalendarDatePickerState_498246833__handleModeChanged_498246833__anonymous_closure__10814" ,"Precompiled__CalendarDatePickerState_498246833_build__anonymous_closure__10815" ,"Precompiled__ActionsState_513441002__handleActionChanged_513441002__anonymous_closure__10816" ,"Precompiled_____getParent_513441002__anonymous_closure__10817" ,"Precompiled_Actions__findDispatcher_513441002__anonymous_closure__10818" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_actions_dart__Action__T_10819" ,"Precompiled_Actions_invoke__anonymous_closure__10820" ,"Precompiled_TypeTestingStub_dart_collection___SplayTreeMapNode__dart_core__int__package_flutter_src_widgets_framework_dart__Element_10821" ,"Precompiled_NavigatorState_initState__anonymous_closure__10822" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208__anonymous_closure___anonymous_closure__10823" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208__anonymous_closure___anonymous_closure__10824" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208__anonymous_closure___anonymous_closure__10825" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208__anonymous_closure__10826" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208__anonymous_closure__10827" ,"Precompiled__StreamBuilderBaseState_536480208__subscribe_536480208__anonymous_closure__10828" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getTapHandler_548132872__anonymous_closure__10829" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getLongPressHandler_548132872__anonymous_closure__10830" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getHorizontalDragUpdateHandler_548132872__anonymous_closure__10831" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getHorizontalDragUpdateHandler_548132872__anonymous_closure__10832" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getHorizontalDragUpdateHandler_548132872__anonymous_closure__10833" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getVerticalDragUpdateHandler_548132872__anonymous_closure__10834" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getVerticalDragUpdateHandler_548132872__anonymous_closure__10835" ,"Precompiled__DefaultSemanticsGestureDelegate_548132872__getVerticalDragUpdateHandler_548132872__anonymous_closure__10836" ,"Precompiled_QuerySnapshot_get_documents__anonymous_closure__10837" ,"Precompiled_FadeScaleTransition_build__anonymous_closure__10838" ,"Precompiled_FadeScaleTransition_build__anonymous_closure__10839" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_routes_dart___ModalScope_10840" ,"Precompiled_ModalRoute_willPop__async_op_10841" ,"Precompiled__ModalRoute_TransitionRoute_LocalHistoryRoute_49188637_willPop__async_op_10842" ,"Precompiled_LongPressGestureRecognizer__checkLongPressEnd_225232524__anonymous_closure__10843" ,"Precompiled_LongPressGestureRecognizer__checkLongPressMoveUpdate_225232524__anonymous_closure__10844" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_velocity_tracker_dart___PointAtTime_10845" ,"Precompiled_DragGestureRecognizer__checkEnd_227099969__anonymous_closure__10846" ,"Precompiled_DragGestureRecognizer__checkEnd_227099969__anonymous_closure__10847" ,"Precompiled_DragGestureRecognizer__checkEnd_227099969__anonymous_closure__10848" ,"Precompiled_TapGestureRecognizer_handleTapDown__anonymous_closure__10849" ,"Precompiled_IconTheme_merge__anonymous_closure__10850" ,"Precompiled__RawMaterialButtonState_252412912__handleFocusedChanged_252412912__anonymous_closure__10851" ,"Precompiled__RawMaterialButtonState_252412912__handleHighlightChanged_252412912__anonymous_closure__10852" ,"Precompiled__RawMaterialButtonState_252412912__handleHoveredChanged_252412912__anonymous_closure__10853" ,"Precompiled__AnimatedThemeState_339067045_forEachTween__anonymous_closure__10854" ,"Precompiled_RenderParagraph_hitTestChildren__anonymous_closure__10855" ,"Precompiled_InlineSpan_getSpanForPosition__anonymous_closure__10856" ,"Precompiled_RenderParagraph_paint__anonymous_closure__10857" ,"Precompiled_RenderParagraph_describeSemanticsConfiguration__anonymous_closure__10858" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_painter_dart__PlaceholderDimensions_10859" ,"Precompiled_RenderTransform_hitTestChildren__anonymous_closure__10860" ,"Precompiled_SemanticsConfiguration__addArgumentlessAction_450082469__anonymous_closure__10861" ,"Precompiled_ScrollView_build__anonymous_closure__10862" ,"Precompiled_Route_willPop__async_op_10863" ,"Precompiled_DefaultTransitionDelegate_resolve_handleExitingRoute_10864" ,"Precompiled_SystemChrome_setApplicationSwitcherDescription__async_op_10865" ,"Precompiled__ImageState_545215529__handleImageFrame_545215529__anonymous_closure__10866" ,"Precompiled_ModalBarrier_build__anonymous_closure__10867" ,"Precompiled__CastListBase_11040228_sort__anonymous_closure__10868" ,"Precompiled_CastMap_forEach__anonymous_closure__10869" ,"Precompiled_ParentDataElement__applyParentData_28042623_applyParentDataToChild_10870" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_framework_dart__IndexedSlot__package_flutter_src_widgets_framework_dart__Element_10871" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_widgets_framework_dart__InheritedElement_10872" ,"Precompiled_AuthProvider_signOut__async_op_10873" ,"Precompiled__HomeScreenState_30110098_buildMenuButton__anonymous_closure___anonymous_closure__10874" ,"Precompiled_TypeTestingStub_package_flutter_src_material_popup_menu_dart__PopupMenuEntry__dart_core__String_10875" ,"Precompiled__HomeScreenState_30110098_buildMenuButton__anonymous_closure__10876" ,"Precompiled__HomeScreenState_30110098_buildMenuButton__anonymous_closure__10877" ,"Precompiled__HomeScreenState_30110098_buildSkipButton__anonymous_closure___anonymous_closure__10878" ,"Precompiled__HomeScreenState_30110098_buildSkipButton__anonymous_closure__10879" ,"Precompiled__HomeScreenState_30110098_buildCalendarDialog__anonymous_closure___anonymous_closure__10880" ,"Precompiled__HomeScreenState_30110098_buildCalendarDialog__anonymous_closure__10881" ,"Precompiled__HomeScreenState_30110098_selectDate__async_op__anonymous_closure__10882" ,"Precompiled__HomeScreenState_30110098_selectDate__async_op_10883" ,"Precompiled_DateFormat_DateFormat___anonymous_closure__10884" ,"Precompiled_DateFormat_get__fieldConstructors_33383093__anonymous_closure__10885" ,"Precompiled_DateFormat_get__fieldConstructors_33383093__anonymous_closure__10886" ,"Precompiled_DateFormat_get__fieldConstructors_33383093__anonymous_closure__10887" ,"Precompiled_MethodChannelQuery_snapshots__anonymous_closure___anonymous_closure__10888" ,"Precompiled_MethodChannelQuery_snapshots__anonymous_closure___anonymous_closure__10889" ,"Precompiled_MethodChannelQuery_snapshots__anonymous_closure___anonymous_closure___async_op_10890" ,"Precompiled_MethodChannelQuery_snapshots__anonymous_closure___anonymous_closure__10891" ,"Precompiled_MethodChannelQuery_snapshots__anonymous_closure__10892" ,"Precompiled_MethodChannelQuery_snapshots__anonymous_closure__10893" ,"Precompiled_Query_snapshots__anonymous_closure__10894" ,"Precompiled__HomeScreenState_30110098_buildMemoryListView__anonymous_closure__10895" ,"Precompiled__HomeScreenState_30110098_buildMemories__anonymous_closure___anonymous_closure___async_op_10896" ,"Precompiled__HomeScreenState_30110098_buildMemories__anonymous_closure___anonymous_closure__10897" ,"Precompiled__HomeScreenState_30110098_buildMemories__anonymous_closure__10898" ,"Precompiled_TypeTestingStub_package_collection_src_equality_dart___MapEntry_10899" ,"Precompiled_TypeTestingStub_dart_core__Set_10900" ,"Precompiled_SynchronousFuture_whenComplete__anonymous_closure__10901" ,"Precompiled_DragGestureRecognizer__checkStart_227099969__anonymous_closure__10902" ,"Precompiled_DragGestureRecognizer__checkUpdate_227099969__anonymous_closure__10903" ,"Precompiled__CircularProgressIndicatorState_312243954__buildAnimation_312243954__anonymous_closure__10904" ,"Precompiled_PageStorageBucket__allKeys_584357337__anonymous_closure__10905" ,"Precompiled_TypeTestingStub_dart_core__List__nolib3__void_10906" ,"Precompiled_ScrollController_animateTo__anonymous_closure__10907" ,"Precompiled_ScaffoldState_build__anonymous_closure__10908" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_basic_dart__LayoutId_10909" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_ticker_provider_dart___WidgetTicker_10910" ,"Precompiled_MultiFrameImageStreamCompleter__handleAppFrame_377483930__anonymous_closure__10911" ,"Precompiled_MultiFrameImageStreamCompleter__decodeNextFrameAndSchedule_377483930__async_op_10912" ,"Precompiled_InlineSpan_codeUnitAt__anonymous_closure__10913" ,"Precompiled_TypeTestingStub_dart_ui__TextBaseline_10914" ,"Precompiled__RenderFlex_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_411478290_defaultHitTestChildren__anonymous_closure__10915" ,"Precompiled_RenderShiftedBox_hitTestChildren__anonymous_closure__10916" ,"Precompiled__RenderStack_RenderBox_ContainerRenderObjectMixin_RenderBoxContainerDefaultsMixin_435419958_defaultHitTestChildren__anonymous_closure__10917" ,"Precompiled_ClipContext_clipRectAndPaint__anonymous_closure__10918" ,"Precompiled_RenderParagraph__extractPlaceholderSpans_420149678__anonymous_closure__10919" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_placeholder_span_dart__PlaceholderSpan_10920" ,"Precompiled_ImplicitlyAnimatedWidgetState_initState__anonymous_closure__10921" ,"Precompiled_ImplicitlyAnimatedWidgetState__constructTweens_497443363__anonymous_closure__10922" ,"Precompiled_ImplicitlyAnimatedWidgetState_didUpdateWidget__anonymous_closure__10923" ,"Precompiled____instantiateImageCodec__anonymous_closure__10924" ,"Precompiled_NavigatorState_maybePop__async_op_10925" ,"Precompiled__WidgetsAppState_526236006_didPopRoute__async_op_10926" ,"Precompiled__WidgetsAppState_526236006_didPushRoute__async_op_10927" ,"Precompiled__WidgetsAppState_526236006_get__localizationsDelegates_526236006__sync_op_gen__anonymous_closure__10928" ,"Precompiled__WidgetsAppState_526236006_get__localizationsDelegates_526236006__sync_op_gen_10929" ,"Precompiled__WidgetsAppState_526236006__onGenerateRoute_526236006__anonymous_closure__10930" ,"Precompiled_Navigator_defaultGenerateInitialRoutes__anonymous_closure__10931" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___DirectionalPolicyData_10932" ,"Precompiled__WidgetsAppState_526236006_build__anonymous_closure__10933" ,"Precompiled__ImageState_545215529__updateSourceStream_545215529__anonymous_closure__10934" ,"Precompiled__ImageState_545215529__updateSourceStream_545215529__anonymous_closure__10935" ,"Precompiled__ImageState_545215529_didChangeAccessibilityFeatures__anonymous_closure__10936" ,"Precompiled____hashObjects__anonymous_closure__10937" ,"Precompiled__CompactLinkedHashSet_3220832__newEmpty_3220832__newEmpty_3220832_10938" ,"Precompiled__CompactLinkedHashSet_3220832__newEmpty_3220832_10939" ,"Precompiled_TypeTestingStub_dart_async___BroadcastSubscription__T_10940" ,"Precompiled__SyncBroadcastStreamController_4048458__sendDone_4048458__anonymous_closure__10941" ,"Precompiled_TypeTestingStub_dart_async___BufferingStreamSubscription__T_10942" ,"Precompiled__SyncBroadcastStreamController_4048458__sendError_4048458__anonymous_closure__10943" ,"Precompiled_CollectionReference_add__async_op_10944" ,"Precompiled__RouteEntry_529124995_isRoutePredicate__anonymous_closure__10945" ,"Precompiled_TransitionRoute__setSecondaryAnimation_49188637__anonymous_closure__10946" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_49188637__anonymous_closure__10947" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_49188637__anonymous_closure__10948" ,"Precompiled_TransitionRoute__updateSecondaryAnimation_49188637__jumpOnAnimationEnd_10949" ,"Precompiled_ModalRoute_createOverlayEntries__sync_op_gen__anonymous_closure__10950" ,"Precompiled_ModalRoute_createOverlayEntries__sync_op_gen_10951" ,"Precompiled_MethodChannelCollectionReference_add__async_op_10952" ,"Precompiled_MaterialRectArcTween__initialize_242458455__anonymous_closure__10953" ,"Precompiled_ThemeData_localize__anonymous_closure__10954" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart___StandardBottomSheet_10955" ,"Precompiled_TypeTestingStub_package_flutter_src_material_scaffold_dart__ScaffoldFeatureController__package_flutter_src_material_snack_bar_dart__SnackBar__package_flutter_src_material_snack_bar_dart__SnackBarClosedReason_10956" ,"Precompiled_ImageProvider__createErrorHandlerAndKey_375477495_handleError__async_op_10957" ,"Precompiled_CachingAssetBundle_loadStructuredData__anonymous_closure__10958" ,"Precompiled_AssetImage__manifestParser_376097849__anonymous_closure__10959" ,"Precompiled_SplayTreeMap_SplayTreeMap___anonymous_closure__10960" ,"Precompiled_TypeTestingStub_dart_collection___SplayTreeMapNode__dart_core__double__dart_core__String_10961" ,"Precompiled_AssetImage_obtainKey__anonymous_closure__10962" ,"Precompiled_AssetImage_obtainKey__anonymous_closure__10963" ,"Precompiled_ImageProvider__createErrorHandlerAndKey_375477495__anonymous_closure___anonymous_closure__10964" ,"Precompiled_ImageProvider__createErrorHandlerAndKey_375477495__anonymous_closure__10965" ,"Precompiled_ImageProvider__createErrorHandlerAndKey_375477495__anonymous_closure__10966" ,"Precompiled_ImageProvider__createErrorHandlerAndKey_375477495_handleError_10967" ,"Precompiled_ImageCache__trackLiveImage_373034022__anonymous_closure__10968" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_cache_dart___LiveImage_10969" ,"Precompiled_ImageCache_putIfAbsent_listener__anonymous_closure__10970" ,"Precompiled_ImageCache_putIfAbsent_listener_10971" ,"Precompiled_AssetBundleImageProvider__loadAsync_375477495__async_op_10972" ,"Precompiled_MultiFrameImageStreamCompleter_MultiFrameImageStreamCompleter___anonymous_closure__10973" ,"Precompiled_ImageProvider_resolveStreamForKey__anonymous_closure__10974" ,"Precompiled_ImageProvider_resolveStreamForKey__anonymous_closure__10975" ,"Precompiled_ScrollAwareImageProvider_resolveStreamForKey__anonymous_closure___anonymous_closure__10976" ,"Precompiled_ScrollAwareImageProvider_resolveStreamForKey__anonymous_closure__10977" ,"Precompiled_ImageStreamCompleter_reportError__anonymous_closure__10978" ,"Precompiled_ImageStreamCompleter_reportError__anonymous_closure__10979" ,"Precompiled_ImageProvider_resolve__anonymous_closure___async_op_10980" ,"Precompiled_ImageProvider_resolve__anonymous_closure__10981" ,"Precompiled_ImageProvider_resolve__anonymous_closure__10982" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_text_painter_dart__TextPainter_10983" ,"Precompiled_Route_didPush__anonymous_closure__10984" ,"Precompiled_Route_didAdd__anonymous_closure__10985" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_velocity_tracker_dart__VelocityTracker_10986" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_monodrag_dart__PanGestureRecognizer_10987" ,"Precompiled_GestureDetector_build__anonymous_closure__10988" ,"Precompiled_GestureDetector_build__anonymous_closure__10989" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_monodrag_dart__HorizontalDragGestureRecognizer_10990" ,"Precompiled_GestureDetector_build__anonymous_closure__10991" ,"Precompiled_GestureDetector_build__anonymous_closure__10992" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_monodrag_dart__VerticalDragGestureRecognizer_10993" ,"Precompiled_GestureDetector_build__anonymous_closure__10994" ,"Precompiled_GestureDetector_build__anonymous_closure__10995" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_long_press_dart__LongPressGestureRecognizer_10996" ,"Precompiled_GestureDetector_build__anonymous_closure__10997" ,"Precompiled_GestureDetector_build__anonymous_closure__10998" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_multitap_dart__DoubleTapGestureRecognizer_10999" ,"Precompiled_GestureDetector_build__anonymous_closure__11000" ,"Precompiled_GestureDetector_build__anonymous_closure__11001" ,"Precompiled_GestureDetector_build__anonymous_closure__11002" ,"Precompiled_GestureDetector_build__anonymous_closure__11003" ,"Precompiled_HeroController_init__defaultHeroFlightShuttleBuilder_565011697__anonymous_closure__11004" ,"Precompiled_Hero__allHeroesFor_565011697_visitor_11005" ,"Precompiled_Hero__allHeroesFor_565011697_inviteHero_11006" ,"Precompiled__HeroState_565011697_startFlight__anonymous_closure__11007" ,"Precompiled_OverlayState_insert__anonymous_closure__11008" ,"Precompiled__HeroFlight_565011697__buildOverlay_565011697__anonymous_closure__11009" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_focus_traversal_dart___DirectionalPolicyDataEntry_11010" ,"Precompiled__WidgetOrderTraversalPolicy_FocusTraversalPolicy_DirectionalFocusTraversalPolicyMixin_528280150_changedScope__anonymous_closure__11011" ,"Precompiled_ModalRoute_set_offstage__anonymous_closure__11012" ,"Precompiled_HeroController__maybeStartHeroTransition_565011697__anonymous_closure__11013" ,"Precompiled_RichText__extractChildren_480167661__anonymous_closure__11014" ,"Precompiled____getUserDataFromMap_getUserDataFromMap_11015" ,"Precompiled____getUserDataFromMap_11016" ,"Precompiled____getTokenDataFromMap_11017" ,"Precompiled____getTokenDataFromMap_getTokenDataFromMap_11018" ,"Precompiled_MethodChannelFirebaseAuth_getCurrentUser__async_op_11019" ,"Precompiled_FirebaseAuth_currentUser__async_op_11020" ,"Precompiled_AuthProvider_getCurrentUser__async_op_11021" ,"Precompiled__SignInScreenState_26392946_checkUserSignedIn__async_op__anonymous_closure__11022" ,"Precompiled__SignInScreenState_26392946_checkUserSignedIn__async_op__anonymous_closure__11023" ,"Precompiled__SignInScreenState_26392946_checkUserSignedIn__async_op__anonymous_closure__11024" ,"Precompiled__SignInScreenState_26392946_checkUserSignedIn__async_op_11025" ,"Precompiled_GoogleSignIn__ensureInitialized_20494901__anonymous_closure__11026" ,"Precompiled_GoogleSignIn__callMethod_20494901__async_op_11027" ,"Precompiled_GoogleSignIn__waitFor_20494901__anonymous_closure__11028" ,"Precompiled_GoogleSignIn__addMethodCall_20494901__async_op__anonymous_closure__11029" ,"Precompiled_GoogleSignIn__addMethodCall_20494901__async_op_11030" ,"Precompiled_GoogleSignIn_signIn_isCanceled_11031" ,"Precompiled_GoogleSignInAccount_get_authentication__async_op_11032" ,"Precompiled_MethodChannelFirebaseAuth__callHandler_142501543__async_op_11033" ,"Precompiled_TypeTestingStub_package_firebase_auth_platform_interface_firebase_auth_platform_interface_dart___PhoneAuthCallbacks_11034" ,"Precompiled_MethodChannelFirebaseAuth_signInWithCredential__async_op_11035" ,"Precompiled_FirebaseUser_FirebaseUser___19464419__anonymous_closure__11036" ,"Precompiled_FirebaseAuth_signInWithCredential__async_op_11037" ,"Precompiled_AuthProvider_signIn__async_op__anonymous_closure__11038" ,"Precompiled_AuthProvider_signIn__async_op_11039" ,"Precompiled_MethodChannelDocumentChange_MethodChannelDocumentChange___anonymous_closure__11040" ,"Precompiled_MethodChannelDocumentChange_MethodChannelDocumentChange__11041" ,"Precompiled____asStringKeyedMap_11042" ,"Precompiled_AllocationStub_MethodChannelDocumentChange_11043" ,"Precompiled_TypeTestingStub_package_cloud_firestore_platform_interface_src_platform_interface_document_change_dart__DocumentChangePlatform_11044" ,"Precompiled_MethodChannelQuerySnapshot_MethodChannelQuerySnapshot___anonymous_closure__11045" ,"Precompiled_MethodChannelQuerySnapshot_MethodChannelQuerySnapshot__11046" ,"Precompiled_AllocationStub_MethodChannelQuerySnapshot_11047" ,"Precompiled_MethodChannelQuerySnapshot_MethodChannelQuerySnapshot___anonymous_closure__11048" ,"Precompiled_Future_wait__anonymous_closure__11049" ,"Precompiled_Future_wait_handleError_11050" ,"Precompiled_MethodChannelFirestore_MethodChannelFirestore___anonymous_closure___async_op_11051" ,"Precompiled_MethodChannelTransaction_MethodChannelTransaction__11052" ,"Precompiled_AllocationStub_MethodChannelTransaction_11053" ,"Precompiled_AllocationStub_SnapshotMetadataPlatform_11054" ,"Precompiled_MethodChannelFirestore_MethodChannelFirestore___anonymous_closure__11055" ,"Precompiled_MethodChannelDocumentReference_get__async_op_11056" ,"Precompiled_DocumentReference_get__async_op_11057" ,"Precompiled__CodecUtility_32385638_replaceDelegatesWithValueInArray__anonymous_closure__11058" ,"Precompiled__CodecUtility_32385638_replaceDelegatesWithValueInMap__anonymous_closure__11059" ,"Precompiled_MethodChannelSharedPreferencesStore__invokeBoolMethod_741370450__anonymous_closure__11060" ,"Precompiled_Encrypt_generateAndSaveEncryptionKey__async_op_11061" ,"Precompiled__CodecUtility_32385638_replaceValueWithDelegatesInArray__anonymous_closure__11062" ,"Precompiled__CodecUtility_32385638_replaceValueWithDelegatesInMap__anonymous_closure__11063" ,"Precompiled_MethodChannel_invokeMapMethod__async_op_11064" ,"Precompiled_SharedPreferences__getSharedPreferencesMap_21065047__async_op_11065" ,"Precompiled_SharedPreferences_getInstance__async_op_11066" ,"Precompiled_FirestoreProvider_signInUser__async_op_11067" ,"Precompiled__RouteEntry_529124995_init_isPresentPredicate__anonymous_closure__11068" ,"Precompiled__RouteEntry_529124995_init_willBePresentPredicate__anonymous_closure__11069" ,"Precompiled_TickerFuture_whenCompleteOrCancel_thunk_11070" ,"Precompiled__RouteEntry_529124995_handlePush__anonymous_closure__11071" ,"Precompiled__RouteEntry_529124995_init_suitableForTransitionAnimationPredicate__anonymous_closure__11072" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_widgets_overlay_dart__OverlayEntry_11073" ,"Precompiled_NavigatorState_get__allRouteOverlayEntries_529124995__sync_op_gen__anonymous_closure__11074" ,"Precompiled_NavigatorState_get__allRouteOverlayEntries_529124995__sync_op_gen_11075" ,"Precompiled_OverlayState_rearrange__anonymous_closure__11076" ,"Precompiled_OverlayState__remove_511319124__anonymous_closure__11077" ,"Precompiled_OverlayEntry_remove__anonymous_closure__11078" ,"Precompiled_NavigatorState__cancelActivePointers_529124995__anonymous_closure__11079" ,"Precompiled__SignInScreenState_26392946_buildSignInButton__anonymous_closure___async_op__anonymous_closure__11080" ,"Precompiled__SignInScreenState_26392946_buildSignInButton__anonymous_closure___async_op__anonymous_closure__11081" ,"Precompiled__SignInScreenState_26392946_buildSignInButton__anonymous_closure___async_op__anonymous_closure__11082" ,"Precompiled__SignInScreenState_26392946_buildSignInButton__anonymous_closure___async_op_11083" ,"Precompiled__SignInScreenState_26392946_buildSignInButton__anonymous_closure__11084" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_widgets_localizations_dart__LocalizationsDelegate_11085" ,"Precompiled__MaterialAppState_239125171_get__localizationsDelegates_239125171__sync_op_gen__anonymous_closure__11086" ,"Precompiled__MaterialAppState_239125171_get__localizationsDelegates_239125171__sync_op_gen_11087" ,"Precompiled__MaterialAppState_239125171_build__anonymous_closure__11088" ,"Precompiled__MaterialAppState_239125171_build__anonymous_closure__11089" ,"Precompiled__MaterialAppState_239125171_build__anonymous_closure__11090" ,"Precompiled_PageTransitionsTheme__all_307490068__anonymous_closure__11091" ,"Precompiled__HashMapValueIterable_3220832_forEach__anonymous_closure__11092" ,"Precompiled__HashMapKeyIterable_3220832_forEach__anonymous_closure__11093" ,"Precompiled__CustomZone_4048458_bindCallback__anonymous_closure__11094" ,"Precompiled__CustomZone_4048458_bindUnaryCallback__anonymous_closure__11095" ,"Precompiled__CustomZone_4048458_bindCallbackGuarded__anonymous_closure__11096" ,"Precompiled__RootZone_4048458_bindUnaryCallback__anonymous_closure__11097" ,"Precompiled__StreamController_4048458__subscribe_4048458__anonymous_closure__11098" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen__anonymous_closure__11099" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen_11100" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen__anonymous_closure__11101" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure___sync_op_gen_11102" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure__11103" ,"Precompiled_ComponentElement_performRebuild__anonymous_closure__11104" ,"Precompiled__GestureArena_214060655_toString__anonymous_closure__11105" ,"Precompiled_BoxConstraints_toString_describe_11106" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_notifyListeners__anonymous_closure___sync_op_gen__anonymous_closure__11107" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_notifyListeners__anonymous_closure___sync_op_gen_11108" ,"Precompiled__FocusNode_Object_DiagnosticableTreeMixin_ChangeNotifier_514042876_notifyListeners__anonymous_closure__11109" ,"Precompiled_FocusNode_get_enclosingScope__anonymous_closure__11110" ,"Precompiled_Context_split__anonymous_closure__11111" ,"Precompiled_WindowsStyle_absolutePathToUri__anonymous_closure__11112" ,"Precompiled_Chain_toString__anonymous_closure___anonymous_closure__11113" ,"Precompiled_Chain_toString__anonymous_closure___anonymous_closure__11114" ,"Precompiled_Chain_toString__anonymous_closure__11115" ,"Precompiled_Chain_toString__anonymous_closure__11116" ,"Precompiled_ParsedPath_normalize__anonymous_closure__11117" ,"Precompiled_Trace_foldFrames__anonymous_closure__11118" ,"Precompiled_Trace_foldFrames__anonymous_closure__11119" ,"Precompiled_Trace_get_terse__anonymous_closure__11120" ,"Precompiled_Trace_toString__anonymous_closure__11121" ,"Precompiled_Trace_toString__anonymous_closure__11122" ,"Precompiled_LazyTrace_get_terse__anonymous_closure__11123" ,"Precompiled_NoSuchMethodError_toString__anonymous_closure__11124" ,"Precompiled_MapBase_mapToString__anonymous_closure__11125" ,"Precompiled_Stream_get_length__anonymous_closure__11126" ,"Precompiled_Stream_get_length__anonymous_closure__11127" ,"Precompiled__RootZone_4048458_bindCallback__anonymous_closure__11128" ,"Precompiled__RootZone_4048458_bindCallbackGuarded__anonymous_closure__11129" ,"Precompiled_HashMap_HashMap_from__anonymous_closure__11130" ,"Precompiled_____rootHandleUncaughtError_4048458__anonymous_closure__11131" ,"Precompiled__BufferingStreamSubscription_4048458__sendError_4048458_sendError_11132" ,"Precompiled__AddStreamState_4048458_cancel__anonymous_closure__11133" ,"Precompiled_TypeTestingStub_dart_async___PendingEvents__T_11134" ,"Precompiled__JsonStringifier_10003594_writeMap__anonymous_closure__11135" ,"Precompiled__IOService_15069316__ensureInitialize_15069316__anonymous_closure__11136" ,"Precompiled__File_15069316_length__anonymous_closure__11137" ,"Precompiled_Chain_toTrace__anonymous_closure__11138" ,"Precompiled_Trace_Trace_parseV8__anonymous_closure__11139" ,"Precompiled_Trace_Trace_parseV8__anonymous_closure__11140" ,"Precompiled_Frame_Frame_parseV8__anonymous_closure__parseLocation_11141" ,"Precompiled_Frame_Frame_parseV8__anonymous_closure__11142" ,"Precompiled_Trace_Trace_parseJSCore__anonymous_closure__11143" ,"Precompiled_Trace_Trace_parseJSCore__anonymous_closure__11144" ,"Precompiled_Frame_Frame_parseFirefox__anonymous_closure__11145" ,"Precompiled_Trace_Trace_parseFirefox__anonymous_closure__11146" ,"Precompiled_Trace_Trace_parseFirefox__anonymous_closure__11147" ,"Precompiled_Chain_Chain_parse__anonymous_closure__11148" ,"Precompiled_Chain_Chain_parse__anonymous_closure__11149" ,"Precompiled_____validateArgList_617448123__anonymous_closure__11150" ,"Precompiled_Context_joinAll__anonymous_closure__11151" ,"Precompiled_Context_join__anonymous_closure__11152" ,"Precompiled_Frame_Frame_parseFriendly__anonymous_closure__11153" ,"Precompiled_Trace_Trace_parseFriendly__anonymous_closure__11154" ,"Precompiled_Trace_Trace_parseFriendly__anonymous_closure__11155" ,"Precompiled_Frame_Frame_parseVM__anonymous_closure__11156" ,"Precompiled_Trace__parseVM_746486701__anonymous_closure__11157" ,"Precompiled_Trace_Trace_from__anonymous_closure__11158" ,"Precompiled_Crashlytics__recordError_27303883__async_op_11159" ,"Precompiled_Crashlytics_recordFlutterError__async_op_11160" ,"Precompiled_Element_get_renderObject_visit_11161" ,"Precompiled_Element_detachRenderObject__anonymous_closure__11162" ,"Precompiled_Element_attachRenderObject__anonymous_closure__11163" ,"Precompiled_StandardMessageCodec_writeValue__anonymous_closure__11164" ,"Precompiled_GestureArenaManager_add__anonymous_closure__11165" ,"Precompiled_TypeTestingStub_package_flutter_src_gestures_arena_dart___GestureArena_11166" ,"Precompiled_GestureArenaManager__tryToResolveArena_214060655__anonymous_closure__11167" ,"Precompiled____hashObjects__anonymous_closure__11168" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_layer_dart__AnnotationEntry__T_11169" ,"Precompiled__AbortingSemanticsFragment_419266271_compileChildren__sync_op_gen__anonymous_closure__11170" ,"Precompiled__AbortingSemanticsFragment_419266271_compileChildren__sync_op_gen_11171" ,"Precompiled__RootSemanticsFragment_419266271_compileChildren__sync_op_gen__anonymous_closure___anonymous_closure__11172" ,"Precompiled__RootSemanticsFragment_419266271_compileChildren__sync_op_gen__anonymous_closure__11173" ,"Precompiled__RootSemanticsFragment_419266271_compileChildren__sync_op_gen_11174" ,"Precompiled__SwitchableSemanticsFragment_419266271_compileChildren__sync_op_gen__anonymous_closure___anonymous_closure__11175" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_semantics_semantics_dart__SemanticsNode_11176" ,"Precompiled__SwitchableSemanticsFragment_419266271_compileChildren__sync_op_gen__anonymous_closure__11177" ,"Precompiled__SwitchableSemanticsFragment_419266271_compileChildren__sync_op_gen_11178" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__T_11179" ,"Precompiled_AnnotationResult_get_annotations__sync_op_gen__anonymous_closure__11180" ,"Precompiled_AnnotationResult_get_annotations__sync_op_gen_11181" ,"Precompiled_____asyncErrorWrapperHelper_4048458_errorCallback_11182" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__dart_core__String_11183" ,"Precompiled____debugWordWrap__sync_op_gen__anonymous_closure__11184" ,"Precompiled____debugWordWrap__sync_op_gen_11185" ,"Precompiled____debugPrintThrottled__anonymous_closure__11186" ,"Precompiled_FlutterError_init_onError__anonymous_closure__11187" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_gestures_events_dart__PointerEvent_11188" ,"Precompiled_PointerEventConverter_expand__sync_op_gen__anonymous_closure__11189" ,"Precompiled_PointerEventConverter_expand__sync_op_gen_11190" ,"Precompiled_Stream_Stream_fromIterable__anonymous_closure__11191" ,"Precompiled__AsyncStarStreamController_4048458_addStream__anonymous_closure__11192" ,"Precompiled_PlatformAssetBundle_load__async_op_11193" ,"Precompiled_AssetBundle_loadString__async_op_11194" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726__async_op__anonymous_closure___async_op_11195" ,"Precompiled_Isolate__spawnCommon_1026248__anonymous_closure__11196" ,"Precompiled_AllocationStub_Isolate_11197" ,"Precompiled_TypeTestingStub_dart_isolate__Isolate_11198" ,"Precompiled_Isolate_kill_11199" ,"Precompiled_Isolate__sendOOB_1026248_11200" ,"Precompiled_Isolate_spawn_11201" ,"Precompiled_Isolate_resolvePackageUri_11202" ,"Precompiled_Isolate__spawnCommon_1026248_11203" ,"Precompiled_Isolate_spawn__async_op_11204" ,"Precompiled_VMLibraryHooks_get_platformScript_11205" ,"Precompiled__BufferingStreamSubscription_4048458__sendDone_4048458_sendDone_11206" ,"Precompiled__PendingEvents_4048458_schedule__anonymous_closure__11207" ,"Precompiled_TypeTestingStub_dart_async___StreamImplEvents__T_11208" ,"Precompiled_TypeTestingStub_dart_async___StreamControllerAddStreamState__T_11209" ,"Precompiled_____spawn_487206865__async_op__anonymous_closure___async_op_11210" ,"Precompiled_____spawn_487206865__async_op__anonymous_closure__11211" ,"Precompiled_____spawn_487206865__async_op__anonymous_closure__11212" ,"Precompiled_____spawn_487206865__async_op_11213" ,"Precompiled_Flow_step_11214" ,"Precompiled_AllocationStub_Flow_11215" ,"Precompiled_Flow_end_11216" ,"Precompiled_Flow_begin_11217" ,"Precompiled____compute__async_op__anonymous_closure__11218" ,"Precompiled____compute__async_op__anonymous_closure__11219" ,"Precompiled____compute__async_op_11220" ,"Precompiled____init_compute_11221" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726__async_op__anonymous_closure___async_op_11222" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726__async_op__anonymous_closure__11223" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726__async_op__anonymous_closure__11224" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__addLicenses_455240726__async_op_11225" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801_handleSystemMessage__async_op_11226" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_509399801_handleSystemMessage__async_op_11227" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_509399801__handleLifecycleMessage_455240726__async_op_11228" ,"Precompiled_TypeTestingStub_package_flutter_src_painting_image_cache_dart___PendingImage_11229" ,"Precompiled_DefaultShaderWarmUp_warmUpOnCanvas__async_op_11230" ,"Precompiled_____futurize_16065589__anonymous_closure__11231" ,"Precompiled_Picture_toImage__anonymous_closure__11232" ,"Precompiled_AllocationStub__AsyncBlock_5383715_11233" ,"Precompiled__AsyncBlock_5383715__finish_5383715_11234" ,"Precompiled__AsyncBlock_5383715__start_5383715_11235" ,"Precompiled_TypeTestingStub_dart_developer___AsyncBlock_11236" ,"Precompiled_ShaderWarmUp_execute__async_op_11237" ,"Precompiled_TimelineTask_finish_11238" ,"Precompiled_TimelineTask_start_11239" ,"Precompiled_AllocationStub_TimelineTask_11240" ,"Precompiled_BaseMouseTracker__handleEvent_418325758__anonymous_closure___anonymous_closure__11241" ,"Precompiled_BaseMouseTracker__handleEvent_418325758__anonymous_closure__11242" ,"Precompiled_TypeTestingStub_package_flutter_src_rendering_mouse_tracking_dart___MouseState_11243" ,"Precompiled_RenderObject_clearSemantics__anonymous_closure__11244" ,"Precompiled_SemanticsOwner__getSemanticsActionHandlerForId_450082469__anonymous_closure__11245" ,"Precompiled_PipelineOwner_flushLayout__anonymous_closure__11246" ,"Precompiled_RenderObject__updateCompositingBits_419266271__anonymous_closure__11247" ,"Precompiled_PipelineOwner_flushCompositingBits__anonymous_closure__11248" ,"Precompiled_RenderObject__debugReportException_419266271__anonymous_closure___sync_op_gen__anonymous_closure__11249" ,"Precompiled_RenderObject__debugReportException_419266271__anonymous_closure___sync_op_gen_11250" ,"Precompiled_RenderObject__debugReportException_419266271__anonymous_closure__11251" ,"Precompiled_PipelineOwner_flushPaint__anonymous_closure__11252" ,"Precompiled_SystemChrome_setSystemUIOverlayStyle__anonymous_closure__11253" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_rendering_object_dart___InterestingSemanticsFragment_11254" ,"Precompiled__InterestingSemanticsFragment_419266271_get_interestingFragments__sync_op_gen__anonymous_closure__11255" ,"Precompiled__InterestingSemanticsFragment_419266271_get_interestingFragments__sync_op_gen_11256" ,"Precompiled_RenderObject__getSemanticsForParent_419266271__anonymous_closure__11257" ,"Precompiled_ChangeNotifier_notifyListeners__anonymous_closure___sync_op_gen__anonymous_closure__11258" ,"Precompiled_ChangeNotifier_notifyListeners__anonymous_closure___sync_op_gen_11259" ,"Precompiled_ChangeNotifier_notifyListeners__anonymous_closure__11260" ,"Precompiled_SemanticsNode_getSemanticsData__anonymous_closure__11261" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart__SemanticsTag_11262" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinKnot__anonymous_closure__11263" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinKnot__anonymous_closure__11264" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinKnot_search_11265" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinKnot__anonymous_closure__11266" ,"Precompiled__SemanticsSortGroup_450082469_sortedWithinVerticalGroup__anonymous_closure__11267" ,"Precompiled_TypeTestingStub_package_flutter_src_semantics_semantics_dart___SemanticsSortGroup_11268" ,"Precompiled_____childrenInDefaultOrder_450082469__anonymous_closure__11269" ,"Precompiled_SemanticsNode__childrenInTraversalOrder_450082469__anonymous_closure__11270" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate__anonymous_closure__11271" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate__anonymous_closure__11272" ,"Precompiled_SemanticsOwner_sendSemanticsUpdate__anonymous_closure__11273" ,"Precompiled_PipelineOwner_flushSemantics__anonymous_closure__11274" ,"Precompiled__InactiveElements_28042623__unmount_28042623__anonymous_closure__11275" ,"Precompiled_BuildOwner_finalizeTree__anonymous_closure__11276" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_drawFrame__anonymous_closure__11277" ,"Precompiled__MouseTracker_BaseMouseTracker_MouseTrackerCursorMixin_418325758__findFirstCursor_417306348__anonymous_closure__11278" ,"Precompiled_TypeTestingStub_package_flutter_src_material_material_state_dart__MaterialState_11279" ,"Precompiled_BaseMouseTracker__updateAllDevices_418325758__anonymous_closure__11280" ,"Precompiled_BaseMouseTracker_schedulePostFrameCheck__anonymous_closure__11281" ,"Precompiled_BasicMessageChannel_setMessageHandler__anonymous_closure___async_op_11282" ,"Precompiled_BasicMessageChannel_setMessageHandler__anonymous_closure__11283" ,"Precompiled___InternalLinkedHashMap__HashVMBase_MapMixin_3220832_get_entries__anonymous_closure__11284" ,"Precompiled_RawKeyboard__handleKeyEvent_465461389__async_op_11285" ,"Precompiled_FlutterError_FlutterError___anonymous_closure__11286" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__package_flutter_src_widgets_framework_dart__Element_11287" ,"Precompiled_ChannelBuffers_drain__async_op_11288" ,"Precompiled__DefaultBinaryMessenger_455240726_handlePlatformMessage__async_op_11289" ,"Precompiled__DefaultBinaryMessenger_455240726_setMessageHandler__anonymous_closure___async_op_11290" ,"Precompiled__DefaultBinaryMessenger_455240726_setMessageHandler__anonymous_closure__11291" ,"Precompiled_MethodChannel__handleAsMethodCall_462480135__async_op_11292" ,"Precompiled_MethodChannel_setMethodCallHandler__anonymous_closure__11293" ,"Precompiled_SystemNavigator_pop__async_op_11294" ,"Precompiled_SystemNavigator_pop_11295" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handlePopRoute__async_op_11296" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_handlePushRoute__async_op_11297" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_widget_inspector_dart___LocationCount_11298" ,"Precompiled_TypeTestingStub_package_flutter_src_widgets_widget_inspector_dart___InspectorReferenceData_11299" ,"Precompiled____transformDebugCreator__sync_op_gen__anonymous_closure__11300" ,"Precompiled____transformDebugCreator__sync_op_gen_11301" ,"Precompiled_TypeTestingStub_dart_collection___HashSetEntry__dart_core__int_11302" ,"Precompiled_Window__zonedPlatformMessageResponseCallback_16065589__anonymous_closure__11303" ,"Precompiled__DefaultBinaryMessenger_455240726__sendPlatformMessage_455240726__anonymous_closure__11304" ,"Precompiled_MethodChannel__invokeMethod_462480135__async_op_11305" ,"Precompiled_OptionalMethodChannel_invokeMethod__async_op_11306" ,"Precompiled_SystemChrome_setPreferredOrientations__async_op_11307" ,"Precompiled__Future_4048458__addListener_4048458__anonymous_closure__11308" ,"Precompiled_BuildOwner_buildScope__anonymous_closure___sync_op_gen__anonymous_closure__11309" ,"Precompiled_BuildOwner_buildScope__anonymous_closure___sync_op_gen_11310" ,"Precompiled_BuildOwner_buildScope__anonymous_closure__11311" ,"Precompiled_Element_updateSlotForChild_visit_11312" ,"Precompiled_Element__updateDepth_28042623__anonymous_closure__11313" ,"Precompiled_RenderObjectToWidgetAdapter_attachToRenderTree__anonymous_closure__11314" ,"Precompiled_RenderObjectToWidgetAdapter_attachToRenderTree__anonymous_closure__11315" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_ServicesBinding_PaintingBinding_SemanticsBinding_RendererBinding_WidgetsBinding_509399801_scheduleAttachRootWidget__anonymous_closure__11316" ,"Precompiled_LinkedHashMap_LinkedHashMap_from__anonymous_closure__11317" ,"Precompiled_PointerRouter__dispatchEventToRoutes_230407777__anonymous_closure__11318" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent__anonymous_closure___sync_op_gen__anonymous_closure__11319" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent__anonymous_closure___sync_op_gen_11320" ,"Precompiled_TypeTestingStub_dart_core___SyncIterator__package_flutter_src_foundation_diagnostics_dart__DiagnosticsNode_11321" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent__anonymous_closure___sync_op_gen__anonymous_closure__11322" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent__anonymous_closure___sync_op_gen_11323" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent__anonymous_closure__11324" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_509399801_dispatchEvent__anonymous_closure__11325" ,"Precompiled_BindingBase_lockEvents__anonymous_closure__11326" ,"Precompiled_TypeTestingStub_package_flutter_src_scheduler_binding_dart___FrameCallbackEntry_11327" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_handleBeginFrame__anonymous_closure__11328" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_get_endOfFrame__anonymous_closure__11329" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleWarmUpFrame__anonymous_closure___async_op_11330" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleWarmUpFrame__anonymous_closure__11331" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleWarmUpFrame__anonymous_closure__11332" ,"Precompiled__WidgetsFlutterBinding_BindingBase_GestureBinding_SchedulerBinding_509399801_scheduleWarmUpFrame__anonymous_closure__11333" ,"Precompiled__Future_4048458__asyncCompleteError_4048458__anonymous_closure__11334" ,"Precompiled_TypeTestingStub_package_flutter_src_services_system_chrome_dart__DeviceOrientation_11335" ,"Precompiled____main__async_op_11336" ,"Precompiled____main_11337" ,"Precompiled____main_main_11338" ,"Precompiled_____startIsolate_1026248__anonymous_closure__11339" ,"Precompiled__Future_4048458__chainFuture_4048458__anonymous_closure__11340" ,"Precompiled__Future_4048458__chainForeignFuture_4048458__anonymous_closure__11341" ,"Precompiled__Future_4048458__chainForeignFuture_4048458__anonymous_closure__11342" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleWhenCompleteCallback__anonymous_closure__11343" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleError_11344" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleValueCallback_11345" ,"Precompiled__Future_4048458__propagateToListeners_4048458_handleWhenCompleteCallback_11346" ,"Precompiled__Future_4048458__asyncCompleteWithValue_4048458__anonymous_closure__11347" ,"Precompiled_Dart_CObject_get__sizeOf_11348" ,"Precompiled__NativeWasmImports_9179448_getFunction_11349" ,"Precompiled__NativeWasmImports_9179448_getFunction_getFunction_11350" ,"Precompiled__SocketProfile_15069316_toJson__anonymous_closure__11351" ,"Precompiled_____createTables_0150898__anonymous_closure__11352" ,"Precompiled__Platform_15069316_set__nativeScript_15069316__anonymous_closure__11353" ,"Precompiled_Uri_parseIPv6Address_parseHex_11354" ,"Precompiled_Uri_parseIPv6Address_error_11355" ,"Precompiled__Uri_0150898__makePath_0150898__anonymous_closure__11356" ,"Precompiled_TypeTestingStub_dart_collection__ListBase__T_11357" ,"Precompiled_____dispatchPlatformMessage_16065589__anonymous_closure__11358" ,"Precompiled_____dispatchPlatformMessage_16065589__anonymous_closure__11359" ,"Precompiled_TypeTestingStub_dart_ui__PointerData_11360" ,"Precompiled_____invoke3_16065589__anonymous_closure__11361" ,"Precompiled____runZonedGuarded__anonymous_closure__11362" ,"Precompiled_____runMainZoned_16065589__anonymous_closure___anonymous_closure__11363" ,"Precompiled_____runMainZoned_16065589__anonymous_closure___anonymous_closure__11364" ,"Precompiled_____runMainZoned_16065589__anonymous_closure__11365" ,"Precompiled_____clearAsyncThreadStackTrace_4048458_11366" ,"Precompiled_ClassID_getID_11367" ,"Precompiled__Float64x2_7027147_dyn___11368" ,"Precompiled__Float64x2_7027147_dyn___11369" ,"Precompiled__Float64x2_7027147_dyn___11370" ,"Precompiled__Int32x4_7027147_dyn___11371" ,"Precompiled__Int32x4_7027147_dyn___11372" ,"Precompiled__Float32x4_7027147_dyn___11373" ,"Precompiled__Float32x4_7027147_dyn___11374" ,"Precompiled__Float32x4_7027147_dyn___11375" ,"Precompiled__CompactLinkedHashSet_3220832__regenerateIndex_3220832_11376" ,"Precompiled__GrowableList_0150898_dyn____11377" ,"Precompiled__ImmutableList_0150898_dyn____11378" ,"Precompiled__List_0150898_dyn____11379" ,"Precompiled_TypeTestingStub_dart_core__bool_11380" ,"Precompiled_TypeTestingStub_dart_core__String_11381" ,"Precompiled_TypeTestingStub_dart_core__String_11382" ,"Precompiled_TypeTestingStub_dart_typed_data__Float64x2_11383" ,"Precompiled_TypeTestingStub_dart_typed_data__Int32x4_11384" ,"Precompiled_TypeTestingStub_dart_typed_data__Float32x4_11385" ,"Precompiled_TypeTestingStub_dart_core__double_11386" ,"Precompiled_TypeTestingStub_dart_core__double_11387" ,"Precompiled__Double_0150898_dyn___11388" ,"Precompiled__Double_0150898_dyn___11389" ,"Precompiled__Double_0150898_dyn___11390" ,"Precompiled__Smi_0150898_dyn___11391" ,"Precompiled__IntegerImplementation_0150898_dyn___11392" ,"Precompiled__IntegerImplementation_0150898_dyn____11393" ,"Precompiled__IntegerImplementation_0150898____11394" ,"Precompiled__IntegerImplementation_0150898__shrFromInteger_0150898_11395" ,"Precompiled__IntegerImplementation_0150898_dyn___11396" ,"Precompiled__IntegerImplementation_0150898_dyn___11397" ,"Precompiled__IntegerImplementation_0150898_dyn___11398" ,"Precompiled_TypeTestingStub_dart_core__int_11399" ,"Precompiled_TypeTestingStub_dart_core__int_11400" ,"Precompiled__Closure_0150898_call_11401" ,"Precompiled__Closure_0150898_call_11402" ,"Precompiled__Closure_0150898_call_11403" ,"Precompiled__Closure_0150898_call_11404" ,"Precompiled__Closure_0150898_call_11405" ,"Precompiled__Closure_0150898_set__hash_0150898_11406" ,"Precompiled_TypeTestingStub_dart_core__Null_11407" ,"Precompiled_Object_noSuchMethod_11408" ,"Precompiled_Object__simpleInstanceOf_0150898_11409" ,"Precompiled_Object__instanceOf_0150898_11410" ]} ''';
devtools/packages/devtools_app/test/test_infra/test_data/app_size/new_v8.dart/0
{ "file_path": "devtools/packages/devtools_app/test/test_infra/test_data/app_size/new_v8.dart", "repo_id": "devtools", "token_count": 8912146 }
117
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app/src/screens/vm_developer/object_inspector/vm_function_display.dart'; import 'package:devtools_app/src/screens/vm_developer/vm_developer_common_widgets.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_test/devtools_test.dart'; import 'package:devtools_test/helpers.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:mockito/mockito.dart'; import 'package:vm_service/vm_service.dart'; import '../vm_developer_test_utils.dart'; void main() { late MockFuncObject mockFuncObject; const windowSize = Size(4000.0, 4000.0); late Func testFunctionCopy; setUp(() { setUpMockScriptManager(); setGlobal(BreakpointManager, BreakpointManager()); setGlobal(IdeTheme, IdeTheme()); setGlobal(ServiceConnectionManager, FakeServiceConnectionManager()); setGlobal( DevToolsEnvironmentParameters, ExternalDevToolsEnvironmentParameters(), ); setGlobal(PreferencesController, PreferencesController()); setGlobal(NotificationService, NotificationService()); mockFuncObject = MockFuncObject(); final funcJson = testFunction.toJson(); testFunctionCopy = Func.parse(funcJson)!; testFunctionCopy.size = 256; testFunctionCopy.isStatic = true; testFunctionCopy.isConst = true; mockVmObject(mockFuncObject); when(mockFuncObject.obj).thenReturn(testFunctionCopy); when(mockFuncObject.kind).thenReturn(FunctionKind.ImplicitClosureFunction); when(mockFuncObject.deoptimizations).thenReturn(3); when(mockFuncObject.isOptimizable).thenReturn(true); when(mockFuncObject.isInlinable).thenReturn(true); when(mockFuncObject.hasIntrinsic).thenReturn(false); when(mockFuncObject.isRecognized).thenReturn(false); when(mockFuncObject.isNative).thenReturn(null); when(mockFuncObject.vmName).thenReturn('fooDartFunction'); when(mockFuncObject.icDataArray).thenReturn( Instance( id: 'ic-data-array-id', length: 0, elements: [], ), ); }); group('function display test', () { testWidgetsWithWindowSize( 'basic layout', windowSize, (WidgetTester tester) async { await tester.pumpWidget( wrap( VmFuncDisplay( function: mockFuncObject, controller: ObjectInspectorViewController(), ), ), ); expect(find.byType(VmObjectDisplayBasicLayout), findsOneWidget); expect(find.byType(VMInfoCard), findsNWidgets(2)); expect(find.text('General Information'), findsOneWidget); expect(find.text('Function'), findsOneWidget); expect(find.text('256 B'), findsOneWidget); expect(find.text('Owner:'), findsOneWidget); expect(find.text('fooLib', findRichText: true), findsOneWidget); expect( find.text('fooScript.dart:10:4', findRichText: true), findsOneWidget, ); expect(find.text('Function Details'), findsOneWidget); expect(find.text('Kind:'), findsOneWidget); expect( find.text('static const implicit closure function'), findsOneWidget, ); expect(find.text('Deoptimizations:'), findsOneWidget); expect(find.text('3'), findsOneWidget); expect(find.text('Optimizable:'), findsOneWidget); expect(find.text('Inlinable:'), findsOneWidget); expect(find.text('Intrinsic:'), findsOneWidget); expect(find.text('Recognized:'), findsOneWidget); expect(find.text('Native:'), findsOneWidget); expect(find.text('Yes'), findsNWidgets(2)); expect(find.text('No'), findsNWidgets(2)); expect(find.text('--'), findsOneWidget); expect(find.text('VM Name:'), findsOneWidget); expect(find.text('fooDartFunction'), findsOneWidget); expect(find.byType(RequestableSizeWidget), findsNWidgets(2)); expect(find.byType(RetainingPathWidget), findsOneWidget); expect(find.byType(InboundReferencesTree), findsOneWidget); expect(find.byType(CallSiteDataArrayWidget), findsOneWidget); }, ); testWidgetsWithWindowSize( 'unrecognized function kind', windowSize, (WidgetTester tester) async { when(mockFuncObject.kind).thenReturn(null); await tester.pumpWidget( wrap( VmFuncDisplay( function: mockFuncObject, controller: ObjectInspectorViewController(), ), ), ); expect(find.text('Unrecognized function kind: null'), findsOneWidget); }, ); }); }
devtools/packages/devtools_app/test/vm_developer/object_inspector/vm_function_display_test.dart/0
{ "file_path": "devtools/packages/devtools_app/test/vm_developer/object_inspector/vm_function_display_test.dart", "repo_id": "devtools", "token_count": 1947 }
118
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:vm_service/vm_service.dart'; /// Manager for handling package Uri lookup and caching. final class ResolvedUriManager { VmService? _service; _PackagePathMappings? _packagePathMappings; /// Initializes the [ResolvedUriManager] void vmServiceOpened(VmService service) { _service = service; _packagePathMappings = _PackagePathMappings(); } /// Cleans up the resources of the [ResolvedUriManager] void vmServiceClosed() { _service = null; _packagePathMappings = null; } /// Calls out to the [VmService] to lookup unknown full file path to package uri mappings. /// /// Known mappings are cached to avoid asking [VmService] redundantly. /// /// [isolateId] The id of the isolate that the [uris] were generated on. /// [uris] List of uris to fetch package uris for. Future<void> fetchPackageUris(String isolateId, List<String> uris) async { if (uris.isEmpty) return; if (_packagePathMappings != null) { final packageUris = (await _service!.lookupPackageUris(isolateId, uris)).uris; if (packageUris != null) { _packagePathMappings!.addMappings( isolateId: isolateId, fullPaths: uris, packagePaths: packageUris, ); } } } /// Calls out to the [VMService] to lookup package uri to full file path /// mappings /// /// Known mappings are cached to avoid asking [VmService] redundantly. /// /// [isolateId] The id of the isolate that the [packageUris] were generated on. /// [packageUris] List of uris to fetch full file paths for. Future<void> fetchFileUris(String isolateId, List<String> packageUris) async { if (_packagePathMappings != null) { final fileUris = (await _service!.lookupResolvedPackageUris(isolateId, packageUris)) .uris; // [_packagePathMappings] could have been set to null during the async gap // so check that it is non-null again here. if (fileUris != null && _packagePathMappings != null) { _packagePathMappings!.addMappings( isolateId: isolateId, fullPaths: fileUris, packagePaths: packageUris, ); } } } /// Returns a package uri for the given uri, if one exists in the cache. /// /// [isolateId] The id of the isolate that the [uris] were generated on. /// [uri] Absolute path uri to look up in the package uri mapping cache. String? lookupPackageUri(String isolateId, String fileUri) => _packagePathMappings?.lookupFullPathToPackageMapping(isolateId, fileUri); String? lookupFileUri(String isolateId, String packageUri) => _packagePathMappings?.lookupPackageToFullPathMapping( isolateId, packageUri, ); } /// Helper class for storing 1:1 mappings for full file paths to package paths. class _PackagePathMappings { final Map<String, Map<String, String?>> _isolatePackageToFullPathMappings = <String, Map<String, String?>>{}; final Map<String, Map<String, String?>> _isolateFullPathToPackageMappings = <String, Map<String, String?>>{}; /// Returns the package path to full path mapping if it has already /// been fetched. String? lookupPackageToFullPathMapping( String isolateId, String packagePath, ) => _isolatePackageToFullPathMappings[isolateId]?[packagePath]; /// Returns the full path to package path mapping if it has already /// been fetched. String? lookupFullPathToPackageMapping( String isolateId, String fullPath, ) => _isolateFullPathToPackageMappings[isolateId]?[fullPath]; /// Saves the mappings of [fullPaths] to [packagePaths]. /// /// Each index of [fullPaths] maps to the same index in [packagePaths]. /// The relationship is stored bidirectionally so that /// both [lookupFullPathToPackageMapping] and [lookupPackageToFullPathMapping] /// have access to the mapping. void addMappings({ required String isolateId, required List<String?> fullPaths, required List<String?> packagePaths, }) { assert(fullPaths.length == packagePaths.length); final fullPathToPackageMappings = _isolateFullPathToPackageMappings.putIfAbsent( isolateId, () => <String, String?>{}, ); final packageToFullPathMappings = _isolatePackageToFullPathMappings.putIfAbsent( isolateId, () => <String, String?>{}, ); assert(fullPaths.length == packagePaths.length); for (var i = 0; i < fullPaths.length; i++) { final fullPath = fullPaths[i]; final packagePath = packagePaths[i]; if (fullPath != null) { fullPathToPackageMappings[fullPath] = packagePath; } if (packagePath != null) { packageToFullPathMappings[packagePath] = fullPath; } } } }
devtools/packages/devtools_app_shared/lib/src/service/resolved_uri_manager.dart/0
{ "file_path": "devtools/packages/devtools_app_shared/lib/src/service/resolved_uri_manager.dart", "repo_id": "devtools", "token_count": 1771 }
119
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:collection'; import 'dart:math'; import 'package:flutter/foundation.dart'; /// A [ChangeNotifier] that holds a list of data. /// /// This class also exposes methods to interact with the data. By default, /// listeners are notified whenever the data is modified, but notifying can be /// optionally disabled. final class ListValueNotifier<T> extends ChangeNotifier implements ValueListenable<List<T>> { /// Creates a [ListValueNotifier] that wraps this value [_rawList]. ListValueNotifier(List<T> rawList) : _rawList = List<T>.of(rawList) { _currentList = ImmutableList(_rawList); } List<T> _rawList; late ImmutableList<T> _currentList; @override List<T> get value => _currentList; @override // This override is needed to change visibility of the method. // ignore: unnecessary_overrides void notifyListeners() { super.notifyListeners(); } void _listChanged() { _currentList = ImmutableList(_rawList); notifyListeners(); } set last(T value) { // TODO(jacobr): use a more sophisticated data structure such as // https://en.wikipedia.org/wiki/Rope_(data_structure) to make last more // efficient. _rawList = _rawList.toList(); _rawList.last = value; _listChanged(); } /// Adds an element to the list and notifies listeners. void add(T element) { _rawList.add(element); _listChanged(); } /// Replaces the first occurrence of [value] in this list. /// /// Runtime is O(n). bool replace(T existing, T replacement) { final index = _rawList.indexOf(existing); if (index == -1) return false; _rawList = _rawList.toList(); _rawList.removeAt(index); _rawList.insert(index, replacement); _listChanged(); return true; } /// Replaces all elements in the list and notifies listeners. It's preferred /// to calling .clear() then .addAll(), because it only notifies listeners /// once. void replaceAll(Iterable<T> elements) { _rawList = <T>[]; _rawList.addAll(elements); _listChanged(); } /// Adds elements to the list and notifies listeners. void addAll(Iterable<T> elements) { _rawList.addAll(elements); _listChanged(); } void removeAll(Iterable<T> elements) { elements.forEach(_rawList.remove); _listChanged(); } /// Clears the list and notifies listeners. void clear() { _rawList = <T>[]; _listChanged(); } /// Truncates to just the elements between [start] and [end]. /// /// If [end] is omitted, it defaults to the [length] of this list. /// /// The `start` and `end` positions must satisfy the relations /// 0 ≤ `start` ≤ `end` ≤ [length] /// If `end` is equal to `start`, then the returned list is empty. void trimToSublist(int start, [int? end]) { // TODO(jacobr): use a more sophisticated data structure such as // https://en.wikipedia.org/wiki/Rope_(data_structure) to make the // implementation of this method more efficient. _rawList = _rawList.sublist(start, end); _listChanged(); } /// Removes the first occurrence of [value] from this list. /// /// Runtime is O(n). bool remove(T value) { final index = _rawList.indexOf(value); if (index == -1) return false; _rawList = _rawList.toList(); _rawList.removeAt(index); _listChanged(); return true; } /// Removes a range of elements from the list. /// /// https://api.flutter.dev/flutter/dart-core/List/removeRange.html void removeRange(int start, int end) { _rawList = _rawList.toList(); _rawList.removeRange(start, end); _listChanged(); } /// Removes the object at position `index` from this list. /// /// https://api.flutter.dev/flutter/dart-core/List/removeAt.html void removeAt(int index) { _rawList = _rawList.toList(); _rawList.removeAt(index); _listChanged(); } } /// Wrapper for a list that prevents any modification of the list's content. /// /// This class should only be used as part of [ListValueNotifier]. @visibleForTesting class ImmutableList<T> with ListMixin<T> implements List<T> { ImmutableList(this._rawList) : length = _rawList.length; final List<T> _rawList; @override int length; @override T operator [](int index) { if (index >= 0 && index < length) { return _rawList[index]; } else { throw Exception('Index out of range [0-${length - 1}]: $index'); } } @override void operator []=(int index, T value) { throw Exception('Cannot modify the content of ImmutableList'); } @override void add(T element) { throw Exception('Cannot modify the content of ImmutableList'); } @override void addAll(Iterable<T> iterable) { throw Exception('Cannot modify the content of ImmutableList'); } @override bool remove(Object? element) { throw Exception('Cannot modify the content of ImmutableList'); } @override T removeAt(int index) { throw Exception('Cannot modify the content of ImmutableList'); } @override T removeLast() { throw Exception('Cannot modify the content of ImmutableList'); } @override void removeRange(int start, int end) { throw Exception('Cannot modify the content of ImmutableList'); } @override void removeWhere(bool Function(T element) test) { throw Exception('Cannot modify the content of ImmutableList'); } @override void retainWhere(bool Function(T element) test) { throw Exception('Cannot modify the content of ImmutableList'); } @override void insert(int index, T element) { throw Exception('Cannot modify the content of ImmutableList'); } @override void insertAll(int index, Iterable<T> iterable) { throw Exception('Cannot modify the content of ImmutableList'); } @override void clear() { throw Exception('Cannot modify the content of ImmutableList'); } @override void fillRange(int start, int end, [T? fill]) { throw Exception('Cannot modify the content of ImmutableList'); } @override void setRange(int start, int end, Iterable<T> iterable, [int skipCount = 0]) { throw Exception('Cannot modify the content of ImmutableList'); } @override void replaceRange(int start, int end, Iterable<T> newContents) { throw Exception('Cannot modify the content of ImmutableList'); } @override void setAll(int index, Iterable<T> iterable) { throw Exception('Cannot modify the content of ImmutableList'); } @override void sort([int Function(T a, T b)? compare]) { throw Exception('Cannot modify the content of ImmutableList'); } @override void shuffle([Random? random]) { throw Exception('Cannot modify the content of ImmutableList'); } }
devtools/packages/devtools_app_shared/lib/src/utils/list.dart/0
{ "file_path": "devtools/packages/devtools_app_shared/lib/src/utils/list.dart", "repo_id": "devtools", "token_count": 2253 }
120
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // ignore_for_file: invalid_use_of_protected_member import 'dart:async'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_shared/devtools_test_utils.dart'; import 'package:flutter/widgets.dart'; import 'package:flutter_test/flutter_test.dart'; class AutoDisposeContoller extends DisposableController with AutoDisposeControllerMixin {} class AutoDisposedWidget extends StatefulWidget { const AutoDisposedWidget(this.stream, {Key? key}) : super(key: key); final Stream<Object?> stream; @override State<AutoDisposedWidget> createState() => _AutoDisposedWidgetState(); } class _AutoDisposedWidgetState extends State<AutoDisposedWidget> with AutoDisposeMixin { int eventCount = 0; @override void initState() { super.initState(); autoDisposeStreamSubscription(widget.stream.listen(_onData)); } void _onData(Object? _) { eventCount++; } @override Widget build(BuildContext context) { return Container(); } } void main() { group('Disposer', () { test('disposes streams', () { final disposer = Disposer(); final controller1 = StreamController<void>(sync: true); final controller2 = StreamController<void>(sync: true); var c1Events = 0; var c2Events = 0; disposer.autoDisposeStreamSubscription( controller1.stream.listen((_) { c1Events++; }), ); disposer.autoDisposeStreamSubscription( controller2.stream.listen((_) { c2Events++; }), ); expect(c1Events, 0); expect(c2Events, 0); controller1.add(null); expect(c1Events, 1); expect(c2Events, 0); controller1.add(null); controller2.add(null); expect(c1Events, 2); expect(c2Events, 1); disposer.cancelStreamSubscriptions(); // Make sure stream subscriptions are cancelled. controller1.add(null); controller2.add(null); expect(c1Events, 2); expect(c2Events, 1); }); test('disposes listeners', () { final disposer = Disposer(); final notifier = ValueNotifier<int>(42); final values = <int>[]; disposer.addAutoDisposeListener(notifier, () { values.add(notifier.value); }); expect(notifier.hasListeners, isTrue); notifier.value = 13; expect(values.length, equals(1)); expect(values.last, equals(13)); notifier.value = 15; expect(values.length, equals(2)); expect(values.last, equals(15)); expect(notifier.hasListeners, isTrue); disposer.cancelListeners(); expect(notifier.hasListeners, isFalse); notifier.value = 17; // Verify listener not fired. expect(values.length, equals(2)); expect(values.last, equals(15)); // Add a new listener: disposer.addAutoDisposeListener(notifier, () { values.add(notifier.value); }); expect(notifier.hasListeners, isTrue); notifier.value = 19; expect(values.length, equals(3)); expect(values.last, equals(19)); disposer.cancelListeners(); expect(notifier.hasListeners, isFalse); notifier.value = 21; expect(values.length, equals(3)); expect(values.last, equals(19)); }); test('cancels and disposes a single listener', () { final disposer = Disposer(); final notifier = ValueNotifier<int>(42); final values = <int>[]; void listener() { values.add(notifier.value); } disposer.addAutoDisposeListener(notifier, listener); expect(notifier.hasListeners, isTrue); notifier.value = 13; expect(values.length, equals(1)); expect(values.last, equals(13)); notifier.value = 15; expect(values.length, equals(2)); expect(values.last, equals(15)); expect(notifier.hasListeners, isTrue); disposer.cancelListener(listener); expect(notifier.hasListeners, isFalse); notifier.value = 17; // Verify listener not fired. expect(values.length, equals(2)); expect(values.last, equals(15)); // Add a new listener: disposer.addAutoDisposeListener(notifier, listener); expect(notifier.hasListeners, isTrue); notifier.value = 19; expect(values.length, equals(3)); expect(values.last, equals(19)); disposer.cancelListener(listener); expect(notifier.hasListeners, isFalse); notifier.value = 21; expect(values.length, equals(3)); expect(values.last, equals(19)); }); test('cancels listeners with excludeIds', () { final disposer = Disposer(); final notifier = ValueNotifier<int>(42); final values1 = <int>[]; void listener1() { values1.add(notifier.value); } final values2 = <int>[]; void listener2() { values2.add(notifier.value); } disposer.addAutoDisposeListener(notifier, listener1); disposer.addAutoDisposeListener(notifier, listener2, 'id-2'); expect(notifier.hasListeners, isTrue); notifier.value = 13; expect(values1.length, equals(1)); expect(values1.last, equals(13)); expect(values2.length, equals(1)); expect(values2.last, equals(13)); disposer.cancelListeners(excludeIds: ['id-2']); notifier.value = 15; // Verify the first listener was cancelled and did not fire. expect(values1.length, equals(1)); expect(values1.last, equals(13)); // Verify the second listener was not cancelled and did fire. expect(values2.length, equals(2)); expect(values2.last, equals(15)); expect(notifier.hasListeners, isTrue); // Cancel all listeners. disposer.cancelListeners(); expect(notifier.hasListeners, isFalse); notifier.value = 19; // Verify neither listeners fire. expect(values1.length, equals(1)); expect(values1.last, equals(13)); expect(values2.length, equals(2)); expect(values2.last, equals(15)); }); group('callOnceWhenReady', () { for (bool isReady in [false, true]) { group('isReady=$isReady', () { test('triggers callback and cancels listeners when ready ', () async { final disposer = Disposer(); final trigger = ValueNotifier<bool?>(!isReady); int callbackCounter = 0; disposer.callOnceWhenReady( trigger: trigger, readyWhen: (triggerValue) => triggerValue == isReady, callback: () { callbackCounter++; }, ); expect(callbackCounter, equals(0)); expect(disposer.listenables.length, equals(1)); expect(disposer.listeners.length, equals(1)); // Set a value that won't trigger the callback. trigger.value = null; await shortDelay(); expect(trigger.hasListeners, isTrue); expect(callbackCounter, equals(0)); expect(disposer.listenables.length, equals(1)); expect(disposer.listeners.length, equals(1)); // Set a value that will trigger the callback. trigger.value = isReady; await shortDelay(); expect(trigger.hasListeners, isFalse); expect(disposer.listenables.length, equals(0)); expect(disposer.listeners.length, equals(0)); // Check that we ran the callback. expect(callbackCounter, equals(1)); // Keep changing the isReady value to make sure we don't trigger again. trigger.value = true; trigger.value = null; await shortDelay(); // Verify callback not fired again. expect(callbackCounter, equals(1)); }); test('removes listeners when disposer cancels', () async { final disposer = Disposer(); final trigger = ValueNotifier<bool>(!isReady); int callbackCounter = 0; disposer.callOnceWhenReady( trigger: trigger, readyWhen: (triggerValue) => triggerValue == isReady, callback: () { callbackCounter++; }, ); expect(trigger.hasListeners, isTrue); expect(disposer.listenables.length, equals(1)); expect(disposer.listeners.length, equals(1)); expect(callbackCounter, equals(0)); disposer.cancelListeners(); expect(trigger.hasListeners, isFalse); expect(disposer.listenables.length, equals(0)); expect(disposer.listeners.length, equals(0)); // Change the isReady value to make sure we don't trigger again. trigger.value = isReady; await shortDelay(); // Verify callback not fired again. expect(callbackCounter, equals(0)); }); test( 'runs callback immediately if starting in the ready state', () async { final disposer = Disposer(); final trigger = ValueNotifier<bool>(isReady); int callbackCounter = 0; expect(trigger.hasListeners, isFalse); disposer.callOnceWhenReady( trigger: trigger, readyWhen: (triggerValue) => triggerValue == isReady, callback: () { callbackCounter++; }, ); expect(trigger.hasListeners, isFalse); expect(callbackCounter, equals(1)); expect(disposer.listenables.length, equals(0)); expect(disposer.listeners.length, equals(0)); // Change the isReady value to make sure we don't trigger again. trigger.value = !trigger.value; await shortDelay(); // Verify callback not fired again. expect(callbackCounter, equals(1)); }, ); }); } }); }); testWidgets('Test stream auto dispose', (WidgetTester tester) async { // Build our app and trigger a frame. final key = GlobalKey(); final controller = StreamController<void>(); await tester.pumpWidget(AutoDisposedWidget(controller.stream, key: key)); final state = key.currentState as _AutoDisposedWidgetState; // Verify that the eventCount matches the number of events sent. expect(state.eventCount, 0); controller.add(null); await tester.pump(); expect(state.eventCount, 1); controller.add(null); await tester.pump(); expect(state.eventCount, 2); await tester.pumpWidget(Container()); // Verify that the eventCount is not updated after the widget has been // disposed. expect(state.eventCount, 2); controller.add(null); await tester.pump(); expect(state.eventCount, 2); }); test('Test Listenable auto dispose', () { final controller = AutoDisposeContoller(); final notifier = ValueNotifier<int>(42); final values = <int>[]; controller.addAutoDisposeListener(notifier, () { values.add(notifier.value); }); expect(notifier.hasListeners, isTrue); notifier.value = 13; expect(values.length, equals(1)); expect(values.last, equals(13)); notifier.value = 15; expect(values.length, equals(2)); expect(values.last, equals(15)); expect(notifier.hasListeners, isTrue); controller.cancelListeners(); expect(notifier.hasListeners, isFalse); notifier.value = 17; // Verify listener not fired. expect(values.length, equals(2)); expect(values.last, equals(15)); }); }
devtools/packages/devtools_app_shared/test/utils/auto_dispose_mixin_test.dart/0
{ "file_path": "devtools/packages/devtools_app_shared/test/utils/auto_dispose_mixin_test.dart", "repo_id": "devtools", "token_count": 4910 }
121
# dart_foo_devtools_extension An example DevTools extension for `package:dart_foo`, a pure Dart package. This Flutter web app, `dart_foo_devtools_extension`, is included with the parent `package:_dart_foo` by including its pre-compiled build output in the `dart_foo/extension/devtools/build` directory. Then, when using DevTools to debugging an app that imports the parent `package:dart_foo` (see `devtools_extensions/example/app_that_uses_foo`), the Flutter web app `dart_foo_devtools_extension` will be embedded in DevTools in its own screen. The full instructions for building DevTools extensions can be found in the main [README.md](https://github.com/flutter/devtools/blob/master/packages/devtools_extensions/README.md) for the `devtools_extensions` package.
devtools/packages/devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo_devtools_extension/README.md/0
{ "file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo_devtools_extension/README.md", "repo_id": "devtools", "token_count": 232 }
122
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'package:devtools_app_shared/service.dart'; import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_extensions/devtools_extensions.dart'; import 'package:flutter/material.dart'; /// A widget that shows an example of how to perform expression evaluations over /// the VM Service protocol. /// /// The expression evaluations are made using [EvalOnDartLibrary], which is a /// helper class to take a library (e.g. "package:foo/src/foo_controller.dart") /// and perform Dart expression evaluations over it /// (e.g. "FooController.instance.things.value.toString()"). /// /// Evaluations can be performed when the app is both paused and unpaused. In /// contrast, service extension calls can only be made when the app is unpaused /// (see service_extension_example.dart). class EvalExample extends StatefulWidget { const EvalExample({super.key}); @override State<EvalExample> createState() => _EvalExampleState(); } class _EvalExampleState extends State<EvalExample> with AutoDisposeMixin { late final EvalOnDartLibrary fooControllerEval; late final Disposable evalDisposable; static const _defaultEvalResponseText = '--'; var evalResponseText = _defaultEvalResponseText; @override void initState() { super.initState(); unawaited(_initEval()); } @override void dispose() { fooControllerEval.dispose(); evalDisposable.dispose(); super.dispose(); } Future<void> _initEval() async { await serviceManager.onServiceAvailable; fooControllerEval = EvalOnDartLibrary( 'package:foo/src/foo_controller.dart', serviceManager.service!, serviceManager: serviceManager, ); evalDisposable = Disposable(); } Future<void> _getAllThings() async { final ref = await fooControllerEval.evalInstance( 'FooController.instance.things.value.toString()', isAlive: evalDisposable, ); setState(() { evalResponseText = ref.valueAsString ?? _defaultEvalResponseText; }); } Future<void> _getFavoriteThing() async { final ref = await fooControllerEval.evalInstance( 'FooController.instance.favoriteThing.value', isAlive: evalDisposable, ); setState(() { evalResponseText = ref.valueAsString ?? _defaultEvalResponseText; }); } @override Widget build(BuildContext context) { final theme = Theme.of(context); return Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( '2. Example of evaluating expressions to fetch data from your package', style: theme.textTheme.titleMedium, ), const PaddedDivider.thin(), Text( 'These evaluations can be called when the main isolate is paused and ' 'when it is not.', style: theme.subtleTextStyle, ), const SizedBox(height: denseSpacing), Row( children: [ ElevatedButton( onPressed: _getAllThings, child: const Text('Get all things'), ), const SizedBox(width: defaultSpacing), ElevatedButton( onPressed: _getFavoriteThing, child: const Text('Get the favorite thing'), ), ], ), const SizedBox(height: defaultSpacing), const Text('Eval response:'), const SizedBox(height: denseSpacing), Text( evalResponseText, style: theme.fixedFontStyle, ), ], ); } }
devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/src/expression_evaluation_example.dart/0
{ "file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/src/expression_evaluation_example.dart", "repo_id": "devtools", "token_count": 1417 }
123
The code in this directory is shared code that is intended to be used by both DevTools itself and DevTools extensions. Files in this directory are exported through the `lib/api.dart` file.
devtools/packages/devtools_extensions/lib/src/api/README.md/0
{ "file_path": "devtools/packages/devtools_extensions/lib/src/api/README.md", "repo_id": "devtools", "token_count": 46 }
124
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter_driver/flutter_driver.dart'; import 'package:integration_test/integration_test_driver_extended.dart'; Future<void> main() async { final driver = await FlutterDriver.connect(); await integrationDriver(driver: driver); }
devtools/packages/devtools_extensions/test_driver/integration_test.dart/0
{ "file_path": "devtools/packages/devtools_extensions/test_driver/integration_test.dart", "repo_id": "devtools", "token_count": 118 }
125
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:convert'; /// The universal link related settings of a iOS build of a Flutter project. extension type const UniversalLinkSettings._(Map<String, Object?> _json) { factory UniversalLinkSettings.fromJson(String json) => UniversalLinkSettings._(jsonDecode(json)); static const _kBundleIdentifierKey = 'bundleIdentifier'; static const _kTeamIdentifierKey = 'teamIdentifier'; static const _kAssociatedDomainsKey = 'associatedDomains'; /// Used when the the server can't retrieve universal link settings. static const empty = UniversalLinkSettings._({ _kBundleIdentifierKey: '', _kTeamIdentifierKey: '', _kAssociatedDomainsKey: [], }); /// The bundle identifier of the iOS build of this Flutter project. String get bundleIdentifier => _json[_kBundleIdentifierKey] as String; /// The team identifier of the iOS build of this Flutter project. String get teamIdentifier => _json[_kTeamIdentifierKey] as String; /// The associated domains of the iOS build of this Flutter project. List<String> get associatedDomains => _json[_kAssociatedDomainsKey] as List<String>; }
devtools/packages/devtools_shared/lib/src/deeplink/universal_link_settings.dart/0
{ "file_path": "devtools/packages/devtools_shared/lib/src/deeplink/universal_link_settings.dart", "repo_id": "devtools", "token_count": 362 }
126
// Copyright 2024 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // ignore_for_file: avoid_classes_with_only_static_members part of '../server_api.dart'; abstract class _DtdApiHandler { static shelf.Response handleGetDtdUri( ServerApi api, DTDConnectionInfo? dtd, ) { return ServerApi._encodeResponse( {DtdApi.uriPropertyName: dtd?.uri}, api: api, ); } }
devtools/packages/devtools_shared/lib/src/server/handlers/_dtd.dart/0
{ "file_path": "devtools/packages/devtools_shared/lib/src/server/handlers/_dtd.dart", "repo_id": "devtools", "token_count": 179 }
127
// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:math' as math; import 'compare.dart'; class SemanticVersion with CompareMixin<SemanticVersion> { SemanticVersion({ this.major = 0, this.minor = 0, this.patch = 0, this.preReleaseMajor, this.preReleaseMinor, }); factory SemanticVersion.parse(String? versionString) { if (versionString == null) return SemanticVersion(); // Remove any build metadata, denoted by a '+' character and whatever // follows. final buildMetadataIndex = versionString.indexOf('+'); if (buildMetadataIndex != -1) { versionString = versionString.substring(0, buildMetadataIndex); } // [versionString] is expected to be of the form for VM.version, Dart, and // Flutter, respectively: // 2.15.0-233.0.dev (dev) (Mon Oct 18 14:06:26 2021 -0700) on "ios_x64" // 2.15.0-178.1.beta // 2.6.0-12.0.pre.443 // // So split on the spaces to the version, and then on the dash char to // separate the main semantic version from the pre release version. final splitOnSpaces = versionString.split(' '); final version = splitOnSpaces.first; final splitOnDash = version.split('-'); assert(splitOnDash.length <= 2, 'version: $version'); final semVersion = splitOnDash.first; final versionParts = semVersion.split('.'); final major = versionParts.isNotEmpty ? int.tryParse(versionParts.first) ?? 0 : 0; final minor = versionParts.length > 1 ? int.tryParse(versionParts[1]) ?? 0 : 0; final patch = versionParts.length > 2 ? int.tryParse(versionParts[2]) ?? 0 : 0; int? preReleaseMajor; int? preReleaseMinor; if (splitOnDash.length == 2) { final preRelease = splitOnDash.last; final preReleaseParts = preRelease .split('.') .map((part) => RegExp(r'\d+').stringMatch(part) ?? '') .toList() ..removeWhere((part) => part.isEmpty); preReleaseMajor = preReleaseParts.isNotEmpty ? int.tryParse(preReleaseParts.first) ?? 0 : 0; preReleaseMinor = preReleaseParts.length > 1 ? int.tryParse(preReleaseParts[1]) ?? 0 : 0; } return SemanticVersion( major: major, minor: minor, patch: patch, preReleaseMajor: preReleaseMajor, preReleaseMinor: preReleaseMinor, ); } /// Returns a new [SemanticVersion] that is downgraded from [this]. /// /// At a minimum, the pre-release version will be removed. Other downgrades /// can be applied by specifying any of [downgradeMajor], [downgradeMinor], /// and [downgradePatch], which will decrement the value of their respective /// version part by one (unless the value is already 0). /// /// This method may return a version equal to [this] if no downgrade options /// are specified. SemanticVersion downgrade({ bool downgradeMajor = false, bool downgradeMinor = false, bool downgradePatch = false, }) { var major = this.major; var minor = this.minor; var patch = this.patch; if (downgradeMajor) { major = math.max(0, major - 1); } if (downgradeMinor) { minor = math.max(0, minor - 1); } if (downgradePatch) { patch = math.max(0, patch - 1); } return SemanticVersion( major: major, minor: minor, patch: patch, ); } int major; int minor; int patch; int? preReleaseMajor; int? preReleaseMinor; bool get isPreRelease => preReleaseMajor != null || preReleaseMinor != null; bool isSupported({required SemanticVersion minSupportedVersion}) => compareTo(minSupportedVersion) >= 0; @override int compareTo(SemanticVersion other) { if (major == other.major && minor == other.minor && patch == other.patch && (preReleaseMajor ?? 0) == (other.preReleaseMajor ?? 0) && (preReleaseMinor ?? 0) == (other.preReleaseMinor ?? 0)) { return 0; } if (major > other.major || (major == other.major && minor > other.minor) || (major == other.major && minor == other.minor && patch > other.patch)) { return 1; } if (major == other.major && minor == other.minor && patch == other.patch) { if (isPreRelease != other.isPreRelease) { return isPreRelease ? -1 : 1; } if (preReleaseMajor! > other.preReleaseMajor! || (preReleaseMajor == other.preReleaseMajor && (preReleaseMinor ?? 0) > (other.preReleaseMinor ?? 0))) { return 1; } } return -1; } @override String toString() { final semVer = [major, minor, patch].join('.'); return [ semVer, if (preReleaseMajor != null || preReleaseMinor != null) [ if (preReleaseMajor != null) preReleaseMajor, if (preReleaseMajor == null && preReleaseMinor != null) '0', if (preReleaseMinor != null) preReleaseMinor, ].join('.'), ].join('-'); } }
devtools/packages/devtools_shared/lib/src/utils/semantic_version.dart/0
{ "file_path": "devtools/packages/devtools_shared/lib/src/utils/semantic_version.dart", "repo_id": "devtools", "token_count": 1931 }
128
## What is this? This is a package containing test utilities for use when writing [Dart DevTools](https://docs.flutter.dev/development/tools/devtools/overview) tests. The package is separate from devtools_app, because it is used in g3. ## Terms and Privacy By using Dart DevTools, you agree to the [Google Terms of Service](https://policies.google.com/terms).
devtools/packages/devtools_test/README.md/0
{ "file_path": "devtools/packages/devtools_test/README.md", "repo_id": "devtools", "token_count": 102 }
129
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:collection'; import 'package:devtools_app/devtools_app.dart'; import 'package:devtools_app_shared/service.dart'; import 'package:devtools_app_shared/utils.dart'; import 'package:devtools_shared/devtools_shared.dart'; import 'package:flutter/foundation.dart'; import 'package:mockito/mockito.dart'; import 'package:vm_service/vm_service.dart'; import '../helpers/utils.dart'; import 'fake_isolate_manager.dart'; import 'fake_service_extension_manager.dart'; import 'fake_vm_service_wrapper.dart'; import 'generated.mocks.dart'; import 'mocks.dart'; class FakeServiceConnectionManager extends Fake implements ServiceConnectionManager { FakeServiceConnectionManager({ VmServiceWrapper? service, bool hasConnection = true, bool connectedAppInitialized = true, bool hasService = true, List<String> availableServices = const [], List<String> availableLibraries = const [], String? rootLibrary, }) { _serviceManager = FakeServiceManager( service: service, hasConnection: hasConnection, connectedAppInitialized: connectedAppInitialized, availableLibraries: availableLibraries, availableServices: availableServices, rootLibrary: rootLibrary, ); for (var screenId in screenIds) { when(errorBadgeManager.erroredItemsForPage(screenId)).thenReturn( FixedValueListenable(LinkedHashMap<String, DevToolsError>()), ); when(errorBadgeManager.errorCountNotifier(screenId)) .thenReturn(ValueNotifier<int>(0)); } } @override FakeServiceManager get serviceManager => _serviceManager as FakeServiceManager; late final ServiceManager<VmServiceWrapper> _serviceManager; @override late final AppState appState = AppState(serviceManager.isolateManager.selectedIsolate); @override final ConsoleService consoleService = ConsoleService(); @override final errorBadgeManager = MockErrorBadgeManager(); @override final InspectorService inspectorService = FakeInspectorService(); @override final TimelineStreamManager timelineStreamManager = TimelineStreamManager(); @override VmFlagManager get vmFlagManager => FakeServiceManager._flagManager; @override Future<double> get queryDisplayRefreshRate => Future.value(60.0); @override Future<Response> get rasterCacheMetrics => Future.value( Response.parse({ 'layerBytes': 0, 'pictureBytes': 0, })!, ); @override Future<void> sendDwdsEvent({ required String screen, required String action, }) { return Future.value(); } @override Future<String?> rootLibraryForMainIsolate() { final fakeIsolateManager = _serviceManager.isolateManager as FakeIsolateManager; return Future.value(fakeIsolateManager.rootLibrary); } } // ignore: subtype_of_sealed_class, fake for testing. class FakeServiceManager extends Fake implements ServiceManager<VmServiceWrapper> { FakeServiceManager({ VmServiceWrapper? service, this.hasConnection = true, this.connectedAppInitialized = true, this.availableServices = const [], this.availableLibraries = const [], this.onVmServiceOpened, Map<String, Response>? serviceExtensionResponses, String? rootLibrary, }) : serviceExtensionResponses = serviceExtensionResponses ?? _defaultServiceExtensionResponses, _isolateManager = FakeIsolateManager(rootLibrary: rootLibrary) { this.service = service ?? createFakeService(); serviceUri = this.service!.wsUri; mockConnectedApp( connectedApp!, isFlutterApp: true, isProfileBuild: false, isWebApp: false, ); when(vm.operatingSystem).thenReturn('macos'); unawaited(vmServiceOpened(this.service!, onClosed: Future.value())); } static FakeVmServiceWrapper createFakeService({ PerfettoTimeline? timelineData, SocketProfile? socketProfile, HttpProfile? httpProfile, SamplesMemoryJson? memoryData, AllocationMemoryJson? allocationData, CpuSamples? cpuSamples, CpuSamples? allocationSamples, Map<String, String>? resolvedUriMap, ClassList? classList, List<({String flagName, String value})>? vmFlags, }) => FakeVmServiceWrapper( _flagManager, timelineData, socketProfile, httpProfile, memoryData, allocationData, cpuSamples, allocationSamples, resolvedUriMap, classList, vmFlags, ); final List<String> availableServices; final List<String> availableLibraries; final void Function()? onVmServiceOpened; final Map<String, Response> serviceExtensionResponses; final IsolateManager _isolateManager; static final _defaultServiceExtensionResponses = <String, Response>{ isImpellerEnabled: Response.parse({'enabled': false})!, }; @override VmServiceWrapper? service; @override String? serviceUri; @override VM get vm => _mockVM; final _mockVM = MockVM(); @override Future<VmService> onServiceAvailable = Future.value(MockVmService()); @override bool get isServiceAvailable => hasConnection; @override bool hasConnection; @override bool connectedAppInitialized; @override IsolateManager get isolateManager => _isolateManager; @override final ResolvedUriManager resolvedUriManager = ResolvedUriManager(); @override final FakeServiceExtensionManager serviceExtensionManager = FakeServiceExtensionManager(); @override ConnectedApp? connectedApp = MockConnectedApp(); @override RootInfo rootInfoNow() => RootInfo('package:myPackage/myPackage.dart'); @override Future<RootInfo?> tryToDetectMainRootInfo() => Future.value(rootInfoNow()); @override bool get isMainIsolatePaused { final state = isolateManager.mainIsolateState! as MockIsolateState; return state.isPaused.value; } set isMainIsolatePaused(bool value) { final state = isolateManager.mainIsolateState! as MockIsolateState; when(state.isPaused).thenReturn(ValueNotifier(value)); } @override Future<Response> callServiceExtensionOnMainIsolate( String method, { Map<String, dynamic>? args, }) async { if (!serviceExtensionResponses.containsKey(method)) { throw UnimplementedError( 'Unimplemented response for service extension: $method', ); } return serviceExtensionResponses[method]!; } @override ValueListenable<bool> registeredServiceListenable(String name) { if (availableServices.contains(name)) { return ImmediateValueNotifier(true); } return ImmediateValueNotifier(false); } @override bool libraryUriAvailableNow(String? uri) { if (uri == null) return false; return availableLibraries.any((u) => u.startsWith(uri)); } @override Future<void> manuallyDisconnect() async { changeState(false, manual: true); } @override ValueListenable<ConnectedState> get connectedState => _connectedState; final ValueNotifier<ConnectedState> _connectedState = ValueNotifier(const ConnectedState(false)); void changeState(bool value, {bool manual = false}) { hasConnection = value; _connectedState.value = ConnectedState(value, userInitiatedConnectionState: manual); } @override ValueListenable<bool> get deviceBusy => ValueNotifier(false); @override Future<Response> get flutterVersion { return Future.value( Response.parse({ 'type': 'Success', 'frameworkVersion': '2.10.0', 'channel': 'unknown', 'repositoryUrl': 'unknown source', 'frameworkRevision': '74432fa91c8ffbc555ffc2701309e8729380a012', 'frameworkCommitDate': '2020-05-14 13:05:34 -0700', 'engineRevision': 'ae2222f47e788070c09020311b573542b9706a78', 'dartSdkVersion': '2.9.0 (build 2.9.0-8.0.dev d6fed1f624)', 'frameworkRevisionShort': '74432fa91c', 'engineRevisionShort': 'ae2222f47e', })!, ); } // TODO(jacobr): the fact that this has to be a static final is ugly. static final VmFlagManager _flagManager = VmFlagManager(); Completer<void> flagsInitialized = Completer(); Future<void> initFlagManager() async { await _flagManager.vmServiceOpened(service!); flagsInitialized.complete(); } @override Future<void> vmServiceOpened( VmServiceWrapper service, { required Future<void> onClosed, }) async { onVmServiceOpened?.call(); resolvedUriManager.vmServiceOpened(service); await initFlagManager(); return Future.value(); } }
devtools/packages/devtools_test/lib/src/mocks/fake_service_manager.dart/0
{ "file_path": "devtools/packages/devtools_test/lib/src/mocks/fake_service_manager.dart", "repo_id": "devtools", "token_count": 3044 }
130
/** Copyright 2022 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. **/ @import "devtools_shared.css"; :root { /* DevTools-specific CSS variables. Prefix with 'devtools' so that we are less likely to be broken by a CSS var name upstream. */ /* Matches [darkColorScheme.surface] color from DevTools. */ --devtools-dark-background-color: #1B1B1F; /* Matches [darkColorScheme.onSurface] color from DevTools. */ --devtools-dark-on-background-color: #E3E2E6; /* Matches [darkColorScheme.primary] color from DevTools. */ --devtools-dark-primary-color: #ADC6FF; /* Matches [darkColorScheme.onPrimary] color from DevTools. */ --devtools-dark-on-primary-color: #002E69; /* Matches [Theme.focusColor] from DevTools. */ --devtools-dark-border-color: #37373A; /* Matches [DevToolsColorScheme.alternatingBackgroundColor1] from DevTools. */ --devtools-alternating-row-color-1: #1B1B1F; /* Matches [DevToolsColorScheme.alternatingBackgroundColor2] from DevTools. */ --devtools-alternating-row-color-2: #303033; /* Matches [DevToolsColorScheme.subtleTextColor] from DevTools. */ --devtools-subtle-text-color: #919094; /* Matches dialog backgorund color in Devtools. */ --devtools-dialog-background-color: #2b2d37; /* Perfetto CSS variable overrides. */ --overview-timeline-non-visible-color: #6e6e6e80 !important; --track-border-color: var(--devtools-dark-border-color) !important; --main-background-color: var(--devtools-dark-background-color) !important; --main-foreground-color: var(--devtools-dark-on-background-color) !important; } /* Selectors that require both default 'background-color' and 'color' properties. */ .topbar .omnibox, header.overview, .details-panel, .details-panel-heading, .details-content .handle .tabs .tab, .notes-editor-panel input, .popup-menu, .pf-popup, .pf-select, .modal-textarea { background-color: var(--devtools-dark-background-color) !important; color: var(--devtools-dark-on-background-color) !important; } /* Selectors that require only the default 'background-color' property. */ body, .topbar, .material-icons.grey, .track-shell, .details-content .handle { background-color: var(--devtools-dark-background-color) !important; } /* Selectors that require only the default 'color' property. */ body > main, .home-page, input, h1, .pf-button.pf-minimal, .pf-text-input, .query-table, .query-table thead td, .notes-editor-panel, .modal-dialog, .modal-logs, .modal-dialog main { color: var(--devtools-dark-on-background-color) !important; } ::-webkit-scrollbar-track { background: var(--devtools-dark-background-color) !important; } ::-webkit-scrollbar-thumb { background: #6e6e6e !important; box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); } ::-webkit-scrollbar-thumb:hover { background: #b7b7b7 !important; box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); } .topbar .omnibox { border-color: var(--devtools-dark-on-background-color) !important; } .material-icons { color: var(--devtools-dark-primary-color) !important; } .track-shell { border-right: 1px solid var(--devtools-dark-border-color) !important; } .track .track-shell .track-button { color: var(--devtools-dark-primary-color) !important; } .track-group-panel[collapsed=true], .track-group-panel[collapsed=true] .shell { background-color: #6e6e6e !important; } .track-group-panel[collapsed=false], .track-group-panel[collapsed=false] .shell { background-color: #6e6e6e !important; } .track-group-panel .shell { border-right: 1px solid var(--devtools-dark-border-color) !important; } header.overview { border-style: none !important; } header.overview .code { color: var(--devtools-subtle-text-color) !important; } .pf-text-input { border-bottom: solid 1px var(--devtools-dark-on-background-color) !important; } .pf-ptree-grid .pf-tree-node:hover { background-color: var(--devtools-dark-border-color) !important; } .query-table, .query-table thead td { background-color: var(--devtools-alternating-row-color-2) !important; border-color: var(--devtools-alternating-row-color-2) !important; } .query-table tbody tr { background-color: var(--devtools-alternating-row-color-1) !important; } .query-table tbody tr:nth-child(even) { background-color: var(--devtools-alternating-row-color-2) !important; } .popup-menu button.open-menu { color: inherit !important; } .popup-menu button.open-menu:hover { background-color: var(--devtools-dark-border-color) !important; } .details-panel table tr:hover td, .details-panel table tr:hover th { background-color: #6e6e6e !important; } .details-content .handle { border-top: 1px solid var(--devtools-dark-border-color) !important; border-bottom: 1px solid var(--devtools-dark-border-color) !important; } .details-content .handle .tabs .tab { border: none !important; z-index: 0 !important; box-shadow: none !important; } .details-content .handle .tabs .tab[active] { text-decoration: underline !important; text-decoration-color: var(--devtools-dark-primary-color) !important; text-decoration-thickness: 3px !important; } .details-content .handle .tabs .tab:hover { background-color: var(--devtools-dark-border-color) !important; } .notes-editor-panel button { background: transparent !important; border-color: var(--devtools-dark-on-background-color) !important; border-width: thin !important; border: solid !important; } .notes-editor-panel input { border-color: var(--devtools-dark-on-background-color) !important; } .sum .sum-data { border-bottom: 1px solid var(--devtools-dark-on-background-color) !important; } .modal-dialog, .modal-logs { background-color: var(--devtools-dialog-background-color) !important; } .modal-logs, .modal-textarea { border: 1px solid var(--devtools-dark-border-color) !important; }
devtools/third_party/packages/perfetto_ui_compiled/lib/dist/devtools/devtools_dark.css/0
{ "file_path": "devtools/third_party/packages/perfetto_ui_compiled/lib/dist/devtools/devtools_dark.css", "repo_id": "devtools", "token_count": 2166 }
131
include: package:flutter_lints/flutter.yaml
devtools/third_party/packages/widget_icons/example/analysis_options.yaml/0
{ "file_path": "devtools/third_party/packages/widget_icons/example/analysis_options.yaml", "repo_id": "devtools", "token_count": 16 }
132
#!/bin/bash # Copyright 2018 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Fast fail the script on failures. set -ex source ./tool/ci/setup.sh pushd $DEVTOOLS_DIR/packages/devtools_app flutter test -j, --concurrency=1 benchmark/devtools_benchmarks_test.dart popd
devtools/tool/ci/benchmark_performance.sh/0
{ "file_path": "devtools/tool/ci/benchmark_performance.sh", "repo_id": "devtools", "token_count": 118 }
133
// Copyright 2023 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:io'; import 'package:args/command_runner.dart'; import 'package:devtools_tool/model.dart'; import 'package:io/io.dart'; import 'package:path/path.dart' as path; import '../utils.dart'; const _upgradeFlag = 'upgrade'; class GenerateCodeCommand extends Command { GenerateCodeCommand() { argParser.addFlag( _upgradeFlag, negatable: false, help: 'Run pub upgrade on the DevTools packages before performing the code generation.', ); } @override String get name => 'generate-code'; @override String get description => 'Performs code generation by running `build_runner build` for required packages.'; @override Future run() async { final repo = DevToolsRepo.getInstance(); final processManager = ProcessManager(); final upgrade = argResults![_upgradeFlag] as bool; if (upgrade) { await processManager.runProcess( CliCommand.tool(['pub-get', '--only-main', '--upgrade']), ); } for (final packageName in ['devtools_app', 'devtools_test']) { print('Running build_runner build for $packageName'); final directoryPath = path.join(repo.repoPath, 'packages', packageName); await processManager.runProcess( CliCommand.flutter( [ 'pub', 'run', 'build_runner', 'build', '--delete-conflicting-outputs', ], ), workingDirectory: directoryPath, ); } print('Adding lint ignores for mocks'); final mockFile = File( path.join( repo.repoPath, 'packages', 'devtools_test', 'lib', 'src', 'mocks', 'generated.mocks.dart', ), ); var mockFileContents = mockFile.readAsStringSync(); if (!mockFileContents.contains('require_trailing_commas')) { mockFileContents = mockFileContents.replaceFirst( '// ignore_for_file:', '// ignore_for_file: require_trailing_commas\n// ignore_for_file:', ); mockFile.writeAsStringSync(mockFileContents); } } }
devtools/tool/lib/commands/generate_code.dart/0
{ "file_path": "devtools/tool/lib/commands/generate_code.dart", "repo_id": "devtools", "token_count": 915 }
134
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:devtools_tool/model.dart'; import 'package:io/io.dart'; import 'package:path/path.dart' as path; abstract class DartSdkHelper { static const commandDebugMessage = 'Consider running this command from your' 'Dart SDK directory locally to debug.'; static Future<void> fetchAndCheckoutMaster( ProcessManager processManager, ) async { final dartSdkLocation = localDartSdkLocation(); await processManager.runAll( workingDirectory: dartSdkLocation, additionalErrorMessage: commandDebugMessage, commands: [ CliCommand.git(['fetch', 'origin']), CliCommand.git(['rebase-update']), CliCommand.git(['checkout', 'origin/main']), ], ); } } String localDartSdkLocation() { final localDartSdkLocation = Platform.environment['LOCAL_DART_SDK']; if (localDartSdkLocation == null) { throw Exception('LOCAL_DART_SDK environment variable not set. Please add ' 'the following to your \'.bash_profile\' or \'.bash_rc\' file:\n' 'export LOCAL_DART_SDK=<absolute/path/to/my/dart/sdk>'); } return localDartSdkLocation; } class CliCommand { CliCommand( this.exe, // Args is mandatory to make it clearer to the caller that they should // not be passing a full exe+args into the first string argument, because // this can lead to bugs if paths have spaces and everything is not escaped. this.args, { this.throwOnException = true, }); factory CliCommand.flutter( List<String> args, { bool throwOnException = true, }) { return CliCommand( FlutterSdk.current.flutterExePath, args, throwOnException: throwOnException, ); } factory CliCommand.dart( List<String> args, { bool throwOnException = true, }) { return CliCommand( FlutterSdk.current.dartExePath, args, throwOnException: throwOnException, ); } /// CliCommand helper for running git commands. factory CliCommand.git( List<String> args, { bool throwOnException = true, }) { return CliCommand( 'git', args, throwOnException: throwOnException, ); } factory CliCommand.tool( List<String> args, { bool throwOnException = true, }) { return CliCommand( // We must use the Dart VM from FlutterSdk.current here to ensure we // consistently use the selected version for child invocations. We do // not need to pass the --flutter-from-path flag down because using the // tool will automatically select the one that's running the VM and we'll // have selected that here. FlutterSdk.current.dartExePath, [ Platform.script.toFilePath(), ...args, ], throwOnException: throwOnException, ); } late final String exe; late final List<String> args; final bool throwOnException; @override String toString() { return [exe, ...args].join(' '); } } typedef DevToolsProcessResult = ({int exitCode, String stdout, String stderr}); extension DevToolsProcessManagerExtension on ProcessManager { Future<DevToolsProcessResult> runProcess( CliCommand command, { String? workingDirectory, String? additionalErrorMessage = '', }) async { print('${workingDirectory ?? ''} > $command'); final processStdout = StringBuffer(); final processStderr = StringBuffer(); final process = await spawn( command.exe, command.args, workingDirectory: workingDirectory, ); process.stdout.transform(utf8.decoder).listen(processStdout.write); process.stderr.transform(utf8.decoder).listen(processStderr.write); final code = await process.exitCode; if (command.throwOnException && code != 0) { throw ProcessException( command.exe, command.args, 'Failed with exit code: $code. $additionalErrorMessage', code, ); } return ( exitCode: code, stdout: processStdout.toString(), stderr: processStderr.toString() ); } Future<void> runAll({ required List<CliCommand> commands, String? workingDirectory, String? additionalErrorMessage = '', }) async { for (final command in commands) { await runProcess( command, workingDirectory: workingDirectory, additionalErrorMessage: additionalErrorMessage, ); } } } String pathFromRepoRoot(String pathFromRoot) { return path.join(DevToolsRepo.getInstance().repoPath, pathFromRoot); } /// Returns the name of the git remote with id [remoteId] in /// [workingDirectory]. /// /// When [workingDirectory] is null, this method will look for the remote in /// the current directory. /// /// [remoteId] should have the form <organization>/<repository>.git. For /// example: 'flutter/flutter.git' or 'flutter/devtools.git'. Future<String> findRemote( ProcessManager processManager, { required String remoteId, String? workingDirectory, }) async { print('Searching for a remote that points to $remoteId.'); final remotesResult = await processManager.runProcess( CliCommand.git(['remote', '-v']), workingDirectory: workingDirectory, ); final String remotes = remotesResult.stdout; final remoteRegexp = RegExp( r'^(?<remote>\S+)\s+(?<path>\S+)\s+\((?<action>\S+)\)', multiLine: true, ); final remoteRegexpResults = remoteRegexp.allMatches(remotes); final RegExpMatch upstreamRemoteResult; try { upstreamRemoteResult = remoteRegexpResults.firstWhere( (element) => // ignore: prefer_interpolation_to_compose_strings RegExp(r'' + remoteId + '\$').hasMatch(element.namedGroup('path')!), ); } on StateError { throw StateError( "Couldn't find a remote that points to flutter/devtools.git. " "Instead got: \n$remotes", ); } final remoteUpstream = upstreamRemoteResult.namedGroup('remote')!; print('Found upstream remote.'); return remoteUpstream; } extension JoinExtension on List<String> { String joinWithNewLine() { return '${join('\n')}\n'; } }
devtools/tool/lib/utils.dart/0
{ "file_path": "devtools/tool/lib/utils.dart", "repo_id": "devtools", "token_count": 2258 }
135
# The dependencies referenced by the Flutter Engine. # # This file is referenced by the .gclient file at the root of the checkout. # To preview changes to the dependencies, update this file and run # `gclient sync`. # # When adding a new dependency, please update the top-level .gitignore file # to list the dependency's destination directory. vars = { 'chromium_git': 'https://chromium.googlesource.com', 'swiftshader_git': 'https://swiftshader.googlesource.com', 'dart_git': 'https://dart.googlesource.com', 'flutter_git': 'https://flutter.googlesource.com', 'skia_git': 'https://skia.googlesource.com', 'llvm_git': 'https://llvm.googlesource.com', 'skia_revision': '3ffa395f8fbc96833e1a48b86450186384179a8a', # WARNING: DO NOT EDIT canvaskit_cipd_instance MANUALLY # See `lib/web_ui/README.md` for how to roll CanvasKit to a new version. 'canvaskit_cipd_instance': '61aeJQ9laGfEFF_Vlc_u0MCkqB6xb2hAYHRBxKH-Uw4C', # Do not download the Emscripten SDK by default. # This prevents us from downloading the Emscripten toolchain for builds # which do not build for the web. This toolchain is needed to build CanvasKit # for the web engine. 'download_emsdk': False, # For experimental features some dependencies may only be avaialable in the master/main # channels. This variable is being set when CI is checking out the repository. 'release_candidate': False, # As Dart does, we use Fuchsia's GN and Clang toolchain. These revision # should be kept up to date with the revisions pulled by Dart. # # The list of revisions for these tools comes from Fuchsia, here: # https://fuchsia.googlesource.com/integration/+/HEAD/toolchain # If there are problems with the toolchain, contact fuchsia-toolchain@. # # Note, if you are *manually* rolling clang (i.e. the auto-roll is disabled) # you'll need to run post-submits (i.e. for Clang Tidy) in order to test that # updates to Clang Tidy will not turn the tree red. # # See https://github.com/flutter/flutter/wiki/Engine-pre‐submits-and-post‐submits#post-submit 'clang_version': 'git_revision:725656bdd885483c39f482a01ea25d67acf39c46', # The goma version and the clang version can be tightly coupled. If goma # stops working on a clang roll, this may need to be updated using the value # from the 'integration' tag of # https://chrome-infra-packages.appspot.com/p/fuchsia/third_party/goma/client 'goma_version': ' git_revision:41b3bcb64014144a844153fd5588c36411fffb56', 'reclient_version': 'git_revision:f61c232b70bc425f0b562480312b114c444d460d', 'gcloud_version': 'version:[email protected]', 'esbuild_version': '0.19.5', # When updating the Dart revision, ensure that all entries that are # dependencies of Dart are also updated to match the entries in the # Dart SDK's DEPS file for that revision of Dart. The DEPS file for # Dart is: https://github.com/dart-lang/sdk/blob/main/DEPS # You can use //tools/dart/create_updated_flutter_deps.py to produce # updated revision list of existing dependencies. 'dart_revision': '43662466cee8a3c759f9604067a503626b369838', # WARNING: DO NOT EDIT MANUALLY # The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py 'dart_binaryen_rev': '9784f012848a7eb321c2037bdb363dfe0eab8bc9', 'dart_boringssl_gen_rev': '9c7294fd58261a79794f5afaa26598cf1442ad20', 'dart_boringssl_rev': 'd24a38200fef19150eef00cad35b138936c08767', 'dart_browser_launcher_rev': '79562306c86e5c087359a31a60309c8d65a699d3', 'dart_clock_rev': 'daf0fadabc5b3dc8e6e71bf3fb27ef9c3b79df5c', 'dart_collection_rev': 'fc616ff8fd7b732c07b2b19e31b6601e59900ccf', 'dart_devtools_rev': 'c02b8d41478c1b76ffa943c2e1acb5c2dd16c3e4', 'dart_libprotobuf_rev': '24487dd1045c7f3d64a21f38a3f0c06cc4cf2edb', 'dart_perfetto_rev': '13ce0c9e13b0940d2476cd0cff2301708a9a2e2b', 'dart_protobuf_gn_rev': 'ca669f79945418f6229e4fef89b666b2a88cbb10', 'dart_protobuf_rev': 'b7613581d847e1e36e76f0e36db3a412d8fea5b1', 'dart_pub_rev': '79952b99861109c526f8fc6c513d1ac297c690d9', 'dart_tools_rev': 'f611290b530123ee2f0a3fda7c440d85dd080a30', 'dart_watcher_rev': '21858a41da1482922e03ee65cdf2169d01d59a67', 'dart_web_rev': '4af904f156a17b143020f34576ecc534f815522c', 'dart_webdev_rev': '51b5484348b4a8ede351e8dff0428b083495ba78', 'dart_webkit_inspection_protocol_rev': '153fea4fe5ac45bebf0c2e76bb3d76b0f1fcdaae', 'dart_yaml_edit_rev': '54884db790720ac0f7ca491cb9e6d7a0395ad4cb', 'dart_zlib_rev': '14dd4c4455602c9b71a1a89b5cafd1f4030d2e3f', 'ocmock_rev': 'c4ec0e3a7a9f56cfdbd0aa01f4f97bb4b75c5ef8', # v3.7.1 # Download a prebuilt Dart SDK by default 'download_dart_sdk': True, # Download a prebuilt esbuild by default 'download_esbuild': True, # Checkout Android dependencies only on platforms where we build for Android targets. 'download_android_deps': 'host_os == "mac" or (host_os == "linux" and host_cpu == "x64")', # Checkout Windows dependencies only if we are building on Windows. 'download_windows_deps' : 'host_os == "win"', # Checkout Linux dependencies only when building on Linux. 'download_linux_deps': 'host_os == "linux"', # The minimum macOS SDK version. This must match the setting in # //flutter/tools/gn. 'mac_sdk_min': '10.14', # Checkout Fuchsia dependencies only on Linux. This is the umbrella flag which # controls the behavior of all fuchsia related flags. I.e. any fuchsia related # logic or condition may not work if this flag is False. # TODO(zijiehe): Make this condition more strict to only download fuchsia # dependencies when necessary: b/40935282 'download_fuchsia_deps': 'host_os == "linux"', # Downloads the fuchsia SDK as listed in fuchsia_sdk_path var. This variable # is currently only used for the Fuchsia LSC process and is not intended for # local development. 'download_fuchsia_sdk': False, 'fuchsia_sdk_path': '', # Whether to download and run the Fuchsia emulator locally to test Fuchsia # builds. 'run_fuchsia_emu': False, # An LLVM backend needs LLVM binaries and headers. To avoid build time # increases we can use prebuilts. We don't want to download this on every # CQ/CI bot nor do we want the average Dart developer to incur that cost. # So by default we will not download prebuilts. This variable is needed in # the flutter engine to ensure that Dart gn has access to it as well. "checkout_llvm": False, # Setup Git hooks by default. 'setup_githooks': True, # When this is true, the goma client will be downloaded from cipd, and # the engine build will prefer to use this client over a client that is # specified by GOMA_DIR, or installed in the default goma install location. 'use_cipd_goma': False, # When this is true, the Flutter Engine's configuration files and scripts for # RBE will be downloaded from CIPD. This option is only usable by Googlers. 'use_rbe': False, # This is not downloaded be default because it increases the # `gclient sync` time by between 1 and 3 minutes. This option is enabled # in flutter/ci/builders/mac_impeller_cmake_example.json, and is likely to # only be useful locally when reproducing issues found by the bot. 'download_impeller_cmake_example': False, # Upstream URLs for third party dependencies, used in # determining common ancestor commit for vulnerability scanning # prefixed with 'upstream_' in order to be identified by parsing tool. # The vulnerability database being used in this scan can be browsed # using this UI https://osv.dev/list # If a new dependency needs to be added, the upstream (non-mirrored) # git URL for that dependency should be added to this list # with the key-value pair being: # 'upstream_[dep name from last slash and before .git in URL]':'[git URL]' # example: "upstream_abseil-cpp": "https://github.com/abseil/abseil-cpp.git", "upstream_angle": "https://github.com/google/angle.git", "upstream_archive": "https://github.com/brendan-duncan/archive.git", "upstream_args": "https://github.com/dart-lang/args.git", "upstream_async": "https://github.com/dart-lang/async.git", "upstream_bazel_worker": "https://github.com/dart-lang/bazel_worker.git", "upstream_benchmark": "https://github.com/google/benchmark.git", "upstream_boolean_selector": "https://github.com/dart-lang/boolean_selector.git", "upstream_boringssl_gen": "https://github.com/dart-lang/boringssl_gen.git", "upstream_boringssl": "https://github.com/openssl/openssl.git", "upstream_browser_launcher": "https://github.com/dart-lang/browser_launcher.git", "upstream_buildroot": "https://github.com/flutter/buildroot.git", "upstream_cli_util": "https://github.com/dart-lang/cli_util.git", "upstream_clock": "https://github.com/dart-lang/clock.git", "upstream_collection": "https://github.com/dart-lang/collection.git", "upstream_convert": "https://github.com/dart-lang/convert.git", "upstream_crypto": "https://github.com/dart-lang/crypto.git", "upstream_csslib": "https://github.com/dart-lang/csslib.git", "upstream_dart_style": "https://github.com/dart-lang/dart_style.git", "upstream_dartdoc": "https://github.com/dart-lang/dartdoc.git", "upstream_equatable": "https://github.com/felangel/equatable.git", "upstream_ffi": "https://github.com/dart-lang/ffi.git", "upstream_file": "https://github.com/google/file.dart.git", "upstream_fixnum": "https://github.com/dart-lang/fixnum.git", "upstream_flatbuffers": "https://github.com/google/flatbuffers.git", "upstream_freetype2": "https://gitlab.freedesktop.org/freetype/freetype.git", "upstream_gcloud": "https://github.com/dart-lang/gcloud.git", "upstream_glfw": "https://github.com/glfw/glfw.git", "upstream_glob": "https://github.com/dart-lang/glob.git", "upstream_googleapis": "https://github.com/google/googleapis.dart.git", "upstream_googletest": "https://github.com/google/googletest.git", "upstream_gtest-parallel": "https://github.com/google/gtest-parallel.git", "upstream_harfbuzz": "https://github.com/harfbuzz/harfbuzz.git", "upstream_html": "https://github.com/dart-lang/html.git", "upstream_http_multi_server": "https://github.com/dart-lang/http_multi_server.git", "upstream_http_parser": "https://github.com/dart-lang/http_parser.git", "upstream_http": "https://github.com/dart-lang/http.git", "upstream_icu": "https://github.com/unicode-org/icu.git", "upstream_intl": "https://github.com/dart-lang/intl.git", "upstream_imgui": "https://github.com/ocornut/imgui.git", "upstream_inja": "https://github.com/pantor/inja.git", "upstream_json": "https://github.com/nlohmann/json.git", "upstream_json_rpc_2": "https://github.com/dart-lang/json_rpc_2.git", "upstream_libcxx": "https://github.com/llvm-mirror/libcxx.git", "upstream_libcxxabi": "https://github.com/llvm-mirror/libcxxabi.git", "upstream_libexpat": "https://github.com/libexpat/libexpat.git", "upstream_libjpeg-turbo": "https://github.com/libjpeg-turbo/libjpeg-turbo.git", "upstream_libpng": "https://github.com/glennrp/libpng.git", "upstream_libtess2": "https://github.com/memononen/libtess2.git", "upstream_libwebp": "https://chromium.googlesource.com/webm/libwebp.git", "upstream_leak_tracker": "https://github.com/dart-lang/leak_tracker.git", "upstream_logging": "https://github.com/dart-lang/logging.git", "upstream_markdown": "https://github.com/dart-lang/markdown.git", "upstream_matcher": "https://github.com/dart-lang/matcher.git", "upstream_mime": "https://github.com/dart-lang/mime.git", "upstream_mockito": "https://github.com/dart-lang/mockito.git", "upstream_ocmock": "https://github.com/erikdoe/ocmock.git", "upstream_package_config": "https://github.com/dart-lang/package_config.git", "upstream_packages": "https://github.com/flutter/packages.git", "upstream_path": "https://github.com/dart-lang/path.git", "upstream_platform": "https://github.com/google/platform.dart.git", "upstream_pool": "https://github.com/dart-lang/pool.git", "upstream_process_runner": "https://github.com/google/process_runner.git", "upstream_process": "https://github.com/google/process.dart.git", "upstream_protobuf": "https://github.com/google/protobuf.dart.git", "upstream_pub_semver": "https://github.com/dart-lang/pub_semver.git", "upstream_pub": "https://github.com/dart-lang/pub.git", "upstream_pyyaml": "https://github.com/yaml/pyyaml.git", "upstream_quiver-dart": "https://github.com/google/quiver-dart.git", "upstream_rapidjson": "https://github.com/Tencent/rapidjson.git", "upstream_sdk": "https://github.com/dart-lang/sdk.git", "upstream_shaderc": "https://github.com/google/shaderc.git", "upstream_shelf": "https://github.com/dart-lang/shelf.git", "upstream_skia": "https://skia.googlesource.com/skia.git", "upstream_source_map_stack_trace": "https://github.com/dart-lang/source_map_stack_trace.git", "upstream_source_maps": "https://github.com/dart-lang/source_maps.git", "upstream_source_span": "https://github.com/dart-lang/source_span.git", "upstream_sqlite": "https://github.com/sqlite/sqlite.git", "upstream_sse": "https://github.com/dart-lang/sse.git", "upstream_stack_trace": "https://github.com/dart-lang/stack_trace.git", "upstream_stb": "https://github.com/nothings/stb.git", "upstream_stream_channel": "https://github.com/dart-lang/stream_channel.git", "upstream_string_scanner": "https://github.com/dart-lang/string_scanner.git", "upstream_SwiftShader": "https://swiftshader.googlesource.com/SwiftShader.git", "upstream_tar": "https://github.com/simolus3/tar.git", "upstream_term_glyph": "https://github.com/dart-lang/term_glyph.git", "upstream_test_reflective_loader": "https://github.com/dart-lang/test_reflective_loader.git", "upstream_test": "https://github.com/dart-lang/test.git", "upstream_tinygltf": "https://github.com/syoyo/tinygltf.git", "upstream_typed_data": "https://github.com/dart-lang/typed_data.git", "upstream_usage": "https://github.com/dart-lang/usage.git", "upstream_vector_math": "https://github.com/google/vector_math.dart.git", "upstream_VulkanMemoryAllocator": "https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git", "upstream_watcher": "https://github.com/dart-lang/watcher.git", "upstream_web_socket_channel": "https://github.com/dart-lang/web_socket_channel.git", "upstream_webdev": "https://github.com/dart-lang/webdev.git", "upstream_webkit_inspection_protocol": "https://github.com/google/webkit_inspection_protocol.dart.git", "upstream_wuffs-mirror-release-c": "https://github.com/google/wuffs-mirror-release-c.git", "upstream_yaml_edit": "https://github.com/dart-lang/yaml_edit.git", "upstream_yaml": "https://github.com/dart-lang/yaml.git", "upstream_yapf": "https://github.com/google/yapf.git", "upstream_zlib": "https://github.com/madler/zlib.git", # The version / instance id of the cipd:chromium/fuchsia/test-scripts which # will be used altogether with fuchsia-sdk to setup the build / test # environment. 'fuchsia_test_scripts_version': 'XtkBHdNTtIpWdxN_lUNf6VqnvPUhvGTYgPDqob1R65EC', # The version / instance id of the cipd:chromium/fuchsia/gn-sdk which will be # used altogether with fuchsia-sdk to generate gn based build rules. 'fuchsia_gn_sdk_version': 'RgErspyYHapUO2SpcW-vo2p8yaRUMUrq0eWjRVPfQjoC', } gclient_gn_args_file = 'src/third_party/dart/build/config/gclient_args.gni' gclient_gn_args = [ 'checkout_llvm' ] # Only these hosts are allowed for dependencies in this DEPS file. # If you need to add a new host, contact chrome infrastructure team. allowed_hosts = [ 'boringssl.googlesource.com', 'chrome-infra-packages.appspot.com', 'chromium.googlesource.com', 'dart.googlesource.com', 'flutter.googlesource.com', 'llvm.googlesource.com', 'skia.googlesource.com', 'swiftshader.googlesource.com', ] deps = { 'src': 'https://github.com/flutter/buildroot.git' + '@' + 'bce07474ce354afc8ea6bb1b695cc86ef376260d', 'src/flutter/third_party/depot_tools': Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '580b4ff3f5cd0dcaa2eacda28cefe0f45320e8f7', 'src/flutter/third_party/rapidjson': Var('flutter_git') + '/third_party/rapidjson' + '@' + 'ef3564c5c8824989393b87df25355baf35ff544b', 'src/flutter/third_party/harfbuzz': Var('flutter_git') + '/third_party/harfbuzz' + '@' + 'ea8f97c615f0ba17dc25013ef67dbd6bfaaa76f2', 'src/third_party/libcxx': Var('llvm_git') + '/llvm-project/libcxx' + '@' + '44079a4cc04cdeffb9cfe8067bfb3c276fb2bab0', 'src/third_party/libcxxabi': Var('llvm_git') + '/llvm-project/libcxxabi' + '@' + '2ce528fb5e0f92e57c97ec3ff53b75359d33af12', 'src/flutter/third_party/glfw': Var('flutter_git') + '/third_party/glfw' + '@' + 'dd8a678a66f1967372e5a5e3deac41ebf65ee127', 'src/flutter/third_party/shaderc': Var('chromium_git') + '/external/github.com/google/shaderc' + '@' + '37e25539ce199ecaf19fb7f7d27818716d36686d', 'src/flutter/third_party/vulkan-deps': Var('chromium_git') + '/vulkan-deps' + '@' + '014f44e134a1de387791bffacc32ff9d8db71176', 'src/flutter/third_party/flatbuffers': Var('chromium_git') + '/external/github.com/google/flatbuffers' + '@' + '0a80646371179f8a7a5c1f42c31ee1d44dcf6709', 'src/flutter/third_party/icu': Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'a622de35ac311c5ad390a7af80724634e5dc61ed', 'src/flutter/third_party/gtest-parallel': Var('chromium_git') + '/external/github.com/google/gtest-parallel' + '@' + '38191e2733d7cbaeaef6a3f1a942ddeb38a2ad14', 'src/flutter/third_party/benchmark': Var('chromium_git') + '/external/github.com/google/benchmark' + '@' + '431abd149fd76a072f821913c0340137cc755f36', 'src/flutter/third_party/googletest': Var('chromium_git') + '/external/github.com/google/googletest' + '@' + '7f036c5563af7d0329f20e8bb42effb04629f0c0', 'src/flutter/third_party/boringssl': Var('dart_git') + '/boringssl_gen.git' + '@' + Var('dart_boringssl_gen_rev'), 'src/flutter/third_party/yapf': Var('flutter_git') + '/third_party/yapf' + '@' + '212c5b5ad8e172d2d914ae454c121c89cccbcb35', 'src/flutter/third_party/boringssl/src': 'https://boringssl.googlesource.com/boringssl.git' + '@' + Var('dart_boringssl_rev'), 'src/flutter/third_party/perfetto': Var('flutter_git') + "/third_party/perfetto" + '@' + Var('dart_perfetto_rev'), 'src/flutter/third_party/protobuf': Var('flutter_git') + '/third_party/protobuf' + '@' + Var('dart_libprotobuf_rev'), # TODO(67373): These are temporarily checked in, but this dep can be restored # once the buildmoot is completed. # 'src/flutter/build/secondary/third_party/protobuf': # Var('flutter_git') + '/third_party/protobuf-gn' + '@' + Var('dart_protobuf_gn_rev'), 'src/third_party/dart': Var('dart_git') + '/sdk.git' + '@' + Var('dart_revision'), # WARNING: Unused Dart dependencies in the list below till "WARNING:" marker are removed automatically - see create_updated_flutter_deps.py. 'src/third_party/dart/third_party/binaryen/src': Var('chromium_git') + '/external/github.com/WebAssembly/binaryen.git@9784f012848a7eb321c2037bdb363dfe0eab8bc9', 'src/third_party/dart/third_party/devtools': {'dep_type': 'cipd', 'packages': [{'package': 'dart/third_party/flutter/devtools', 'version': 'git_revision:c02b8d41478c1b76ffa943c2e1acb5c2dd16c3e4'}]}, 'src/third_party/dart/third_party/pkg/args': Var('dart_git') + '/args.git@7dc7fe0430709229ccc87c3eaae729aeffe10c56', 'src/third_party/dart/third_party/pkg/async': Var('dart_git') + '/async.git@1556660ca5159d84bf28239825a25dca58f1fde3', 'src/third_party/dart/third_party/pkg/bazel_worker': Var('dart_git') + '/bazel_worker.git@8619b92baa9959e55b9fc49d2afcd6dda2ec1c10', 'src/third_party/dart/third_party/pkg/boolean_selector': Var('dart_git') + '/boolean_selector.git@be88351e521648d381b96350bfe62c34abacee6d', 'src/third_party/dart/third_party/pkg/browser_launcher': Var('dart_git') + '/browser_launcher.git' + '@' + Var('dart_browser_launcher_rev'), 'src/third_party/dart/third_party/pkg/cli_util': Var('dart_git') + '/cli_util.git@ffeb5d2869b44b28d1b9035b540d164af44f3f1c', 'src/third_party/dart/third_party/pkg/clock': Var('dart_git') + '/clock.git' + '@' + Var('dart_clock_rev'), 'src/third_party/dart/third_party/pkg/collection': Var('dart_git') + '/collection.git' + '@' + Var('dart_collection_rev'), 'src/third_party/dart/third_party/pkg/convert': Var('dart_git') + '/convert.git@d4d6368cffb8f4f25522875ef8e1d5f7d158bbad', 'src/third_party/dart/third_party/pkg/crypto': Var('dart_git') + '/crypto.git@f059196bae4718187c9f421565f9cd1f8fb43898', 'src/third_party/dart/third_party/pkg/csslib': Var('dart_git') + '/csslib.git@b58e487dda565f4b9bd4ceb3655a963ae197219d', 'src/third_party/dart/third_party/pkg/dart_style': Var('dart_git') + '/dart_style.git@a6ad7693555a9add6f98ad6fd94de80d35c89415', 'src/third_party/dart/third_party/pkg/dartdoc': Var('dart_git') + '/dartdoc.git@b001a15069bfd7cfec5edf5b441a2f0a9b4223eb', 'src/third_party/dart/third_party/pkg/file': Var('dart_git') + '/external/github.com/google/file.dart@3aa06490bf34bddf04c7ea964a50c177a4ca0de7', 'src/third_party/dart/third_party/pkg/fixnum': Var('dart_git') + '/fixnum.git@570b28adcfbfdd5b8a7230ea1d6ec0f9587493f1', 'src/third_party/dart/third_party/pkg/glob': Var('dart_git') + '/glob.git@379d60c7cc5c0e9fe7d0d45549ad0b1ca51396c8', 'src/third_party/dart/third_party/pkg/html': Var('dart_git') + '/html.git@327e37a6a4dd46599737ee982f280d73a8f646f7', 'src/third_party/dart/third_party/pkg/http': Var('dart_git') + '/http.git@5dfea721993fd22363a5800ab7a2f3aeecee25f5', 'src/third_party/dart/third_party/pkg/http_multi_server': Var('dart_git') + '/http_multi_server.git@ba9d07f3596b24718ddf45c9e071d40879cca565', 'src/third_party/dart/third_party/pkg/http_parser': Var('dart_git') + '/http_parser.git@84db8b029d9b51859a0bb4966859af009f9442e3', 'src/third_party/dart/third_party/pkg/intl': Var('dart_git') + '/intl.git@5d65e3808ce40e6282e40881492607df4e35669f', 'src/third_party/dart/third_party/pkg/json_rpc_2': Var('dart_git') + '/json_rpc_2.git@639857be892050159f5164c749d7947694976a4a', 'src/third_party/dart/third_party/pkg/leak_tracker': Var('dart_git') + '/leak_tracker.git@f5620600a5ce1c44f65ddaa02001e200b096e14c', 'src/third_party/dart/third_party/pkg/logging': Var('dart_git') + '/logging.git@7a7bd5e31ddfe23e34d37ded82d6d0cd5706862c', 'src/third_party/dart/third_party/pkg/markdown': Var('dart_git') + '/markdown.git@9c6b1afc3721571af37eaaefe043a6ae7637bd09', 'src/third_party/dart/third_party/pkg/matcher': Var('dart_git') + '/matcher.git@d954c8d979579b4b46427b0ea1d9c721117c191e', 'src/third_party/dart/third_party/pkg/mime': Var('dart_git') + '/mime.git@9a168712d6db610c3822617c132daea72d4fd2b5', 'src/third_party/dart/third_party/pkg/mockito': Var('dart_git') + '/mockito.git@3ef744f8749864f2a036eba60c4203cc8f638949', 'src/third_party/dart/third_party/pkg/native': Var('dart_git') + '/native.git@71ada4b5c8001e6b8207ed40331d158e0912cd94', 'src/third_party/dart/third_party/pkg/package_config': Var('dart_git') + '/package_config.git@3d90e6955ef19b7ce4f1b742a06a20ed4260700a', 'src/third_party/dart/third_party/pkg/path': Var('dart_git') + '/path.git@a7b696071bd83d3ee0a0f1b57ac94d6b1f05cac4', 'src/third_party/dart/third_party/pkg/pool': Var('dart_git') + '/pool.git@c118f69d8a6441a8453bf7d455fd7c79d3ee1497', 'src/third_party/dart/third_party/pkg/protobuf': Var('dart_git') + '/protobuf.git' + '@' + Var('dart_protobuf_rev'), 'src/third_party/dart/third_party/pkg/pub': Var('dart_git') + '/pub.git' + '@' + Var('dart_pub_rev'), 'src/third_party/dart/third_party/pkg/pub_semver': Var('dart_git') + '/pub_semver.git@3175ba0a58a96fb23f8d68b5f5c44d1a5b30cc16', 'src/third_party/dart/third_party/pkg/shelf': Var('dart_git') + '/shelf.git@1acbc673326e5b31280184744f2864a8f92c5b46', 'src/third_party/dart/third_party/pkg/source_map_stack_trace': Var('dart_git') + '/source_map_stack_trace.git@c75649651d01826236e3ab7093d277a70756905a', 'src/third_party/dart/third_party/pkg/source_maps': Var('dart_git') + '/source_maps.git@55e92a4b0a8560d5b2b3bb7255249afdb8186ea6', 'src/third_party/dart/third_party/pkg/source_span': Var('dart_git') + '/source_span.git@21a403a75b6887fbd811fb53b74b08c2cef67ab6', 'src/third_party/dart/third_party/pkg/sse': Var('dart_git') + '/sse.git@b53ba14de4fe9823432ebfbb4ec04f23a620ec50', 'src/third_party/dart/third_party/pkg/stack_trace': Var('dart_git') + '/stack_trace.git@155f12c51226d6372f6722f5e55c38ef39625006', 'src/third_party/dart/third_party/pkg/stream_channel': Var('dart_git') + '/stream_channel.git@e02a5ddef804f0d546a405ab3917fb27788acaef', 'src/third_party/dart/third_party/pkg/string_scanner': Var('dart_git') + '/string_scanner.git@a2bcdb575f6bb30b944b4f632ea95d8dc4f914bd', 'src/third_party/dart/third_party/pkg/tar': Var('dart_git') + '/external/github.com/simolus3/tar.git@6150a0c88d9bd17e3e961593a9a7a9564866e8b4', 'src/third_party/dart/third_party/pkg/term_glyph': Var('dart_git') + '/term_glyph.git@85a4aa6bf25cd6ecaa5c56a1b259b2d95264a439', 'src/third_party/dart/third_party/pkg/test': Var('dart_git') + '/test.git@6a4e75a6283b1366ea21067f9ced0b6c87745d4a', 'src/third_party/dart/third_party/pkg/test_reflective_loader': Var('dart_git') + '/test_reflective_loader.git@9862703a3d14848376c8efde271c88022fba91eb', 'src/third_party/dart/third_party/pkg/tools': Var('dart_git') + '/tools.git' + '@' + Var('dart_tools_rev'), 'src/third_party/dart/third_party/pkg/typed_data': Var('dart_git') + '/typed_data.git@375efaa02a13dad0785cfbd9bdcb9f09aa8ef529', 'src/third_party/dart/third_party/pkg/usage': Var('dart_git') + '/usage.git@67ecd7d1328347ec15cbf8d8a46918df75a66af8', 'src/third_party/dart/third_party/pkg/watcher': Var('dart_git') + '/watcher.git' + '@' + Var('dart_watcher_rev'), 'src/third_party/dart/third_party/pkg/web': Var('dart_git') + '/web.git' + '@' + Var('dart_web_rev'), 'src/third_party/dart/third_party/pkg/web_socket_channel': Var('dart_git') + '/web_socket_channel.git@3db86bc0a09e1038a0fa418262c8a92211c5de69', 'src/third_party/dart/third_party/pkg/webdev': Var('dart_git') + '/webdev.git' + '@' + Var('dart_webdev_rev'), 'src/third_party/dart/third_party/pkg/webkit_inspection_protocol': Var('dart_git') + '/external/github.com/google/webkit_inspection_protocol.dart.git' + '@' + Var('dart_webkit_inspection_protocol_rev'), 'src/third_party/dart/third_party/pkg/yaml': Var('dart_git') + '/yaml.git@e5984433a2803d5c67ed0abac5891a55040381ee', 'src/third_party/dart/third_party/pkg/yaml_edit': Var('dart_git') + '/yaml_edit.git' + '@' + Var('dart_yaml_edit_rev'), 'src/third_party/dart/tools/sdks/dart-sdk': {'dep_type': 'cipd', 'packages': [{'package': 'dart/dart-sdk/${{platform}}', 'version': 'version:3.4.0-247.0.dev'}]}, # WARNING: end of dart dependencies list that is cleaned up automatically - see create_updated_flutter_deps.py. # Prebuilt Dart SDK of the same revision as the Dart SDK source checkout 'src/flutter/prebuilts/linux-x64/dart-sdk': { 'packages': [ { 'package': 'flutter/dart-sdk/linux-amd64', 'version': 'git_revision:'+Var('dart_revision') } ], 'dep_type': 'cipd', 'condition': 'host_os == "linux" and download_dart_sdk' }, 'src/flutter/prebuilts/linux-arm64/dart-sdk': { 'packages': [ { 'package': 'flutter/dart-sdk/linux-arm64', 'version': 'git_revision:'+Var('dart_revision') } ], 'dep_type': 'cipd', 'condition': 'host_os == "linux" and download_dart_sdk' }, 'src/flutter/prebuilts/macos-x64/dart-sdk': { 'packages': [ { 'package': 'flutter/dart-sdk/mac-amd64', 'version': 'git_revision:'+Var('dart_revision') } ], 'dep_type': 'cipd', 'condition': 'host_os == "mac" and download_dart_sdk' }, 'src/flutter/prebuilts/macos-arm64/dart-sdk': { 'packages': [ { 'package': 'flutter/dart-sdk/mac-arm64', 'version': 'git_revision:'+Var('dart_revision') } ], 'dep_type': 'cipd', 'condition': 'host_os == "mac" and download_dart_sdk' }, 'src/flutter/prebuilts/windows-x64/dart-sdk': { 'packages': [ { 'package': 'flutter/dart-sdk/windows-amd64', 'version': 'git_revision:'+Var('dart_revision') } ], 'dep_type': 'cipd', 'condition': 'host_os == "win" and download_dart_sdk' }, 'src/flutter/prebuilts/windows-arm64/dart-sdk': { 'packages': [ { 'package': 'flutter/dart-sdk/windows-arm64', 'version': 'git_revision:'+Var('dart_revision') } ], 'dep_type': 'cipd', 'condition': 'host_os == "win" and download_dart_sdk' }, # esbuild download 'src/flutter/prebuilts/linux-x64/esbuild': { 'packages': [ { 'package': 'flutter/tools/esbuild/linux-amd64', 'version': Var('esbuild_version') } ], 'dep_type': 'cipd', 'condition': 'host_os == "linux" and download_esbuild' }, 'src/flutter/prebuilts/macos-x64/esbuild': { 'packages': [ { 'package': 'flutter/tools/esbuild/mac-amd64', 'version': Var('esbuild_version') } ], 'dep_type': 'cipd', 'condition': 'host_os == "mac" and download_esbuild' }, 'src/flutter/prebuilts/macos-arm64/esbuild': { 'packages': [ { 'package': 'flutter/tools/esbuild/mac-arm64', 'version': Var('esbuild_version') } ], 'dep_type': 'cipd', 'condition': 'host_os == "mac" and download_esbuild' }, 'src/flutter/prebuilts/windows-x64/esbuild': { 'packages': [ { 'package': 'flutter/tools/esbuild/windows-amd64', 'version': Var('esbuild_version') } ], 'dep_type': 'cipd', 'condition': 'host_os == "win" and download_esbuild' }, 'src/flutter/third_party/expat': Var('chromium_git') + '/external/github.com/libexpat/libexpat.git' + '@' + '654d2de0da85662fcc7644a7acd7c2dd2cfb21f0', 'src/flutter/third_party/freetype2': Var('flutter_git') + '/third_party/freetype2' + '@' + '3bea2761290a1cbe7d8f75c1c5a7ad727f826a66', 'src/flutter/third_party/skia': Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), 'src/flutter/third_party/ocmock': Var('flutter_git') + '/third_party/ocmock' + '@' + Var('ocmock_rev'), 'src/flutter/third_party/libjpeg-turbo/src': Var('flutter_git') + '/third_party/libjpeg-turbo' + '@' + '0fb821f3b2e570b2783a94ccd9a2fb1f4916ae9f', 'src/flutter/third_party/libpng': Var('flutter_git') + '/third_party/libpng' + '@' + '9187b6e12756317f6d44fc669ac11dfc262bd192', 'src/flutter/third_party/libwebp': Var('chromium_git') + '/webm/libwebp.git' + '@' + 'ca332209cb5567c9b249c86788cb2dbf8847e760', # 1.3.2 'src/flutter/third_party/wuffs': Var('skia_git') + '/external/github.com/google/wuffs-mirror-release-c.git' + '@' + '600cd96cf47788ee3a74b40a6028b035c9fd6a61', 'src/third_party/zlib': Var('chromium_git') + '/chromium/src/third_party/zlib.git' + '@' + Var('dart_zlib_rev'), 'src/flutter/third_party/inja': Var('flutter_git') + '/third_party/inja' + '@' + '88bd6112575a80d004e551c98cf956f88ff4d445', 'src/flutter/third_party/libtess2': Var('flutter_git') + '/third_party/libtess2' + '@' + '725e5e08ec8751477565f1d603fd7eb9058c277c', 'src/flutter/third_party/sqlite': Var('flutter_git') + '/third_party/sqlite' + '@' + '0f61bd2023ba94423b4e4c8cfb1a23de1fe6a21c', 'src/flutter/third_party/pyyaml': Var('flutter_git') + '/third_party/pyyaml.git' + '@' + '25e97546488eee166b1abb229a27856cecd8b7ac', 'src/flutter/third_party/swiftshader': Var('swiftshader_git') + '/SwiftShader.git' + '@' + '2fa7e9b99ae4e70ea5ae2cc9c8d3afb43391384f', 'src/flutter/third_party/angle': Var('chromium_git') + '/angle/angle.git' + '@' + '6a09e41ce6ea8c93524faae1a925eb01562f53b1', 'src/flutter/third_party/vulkan_memory_allocator': Var('chromium_git') + '/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator' + '@' + '7de5cc00de50e71a3aab22dea52fbb7ff4efceb6', 'src/flutter/third_party/abseil-cpp': Var('flutter_git') + '/third_party/abseil-cpp.git' + '@' + 'ff6504dc527b25fef0f3c531e7dba0ed6b69c162', # Dart packages 'src/flutter/third_party/pkg/archive': Var('chromium_git') + '/external/github.com/brendan-duncan/archive.git' + '@' + '9de7a0544457c6aba755ccb65abb41b0dc1db70d', # 3.1.2 'src/flutter/third_party/pkg/equatable': Var('flutter_git') + '/third_party/equatable.git' + '@' + '2117551ff3054f8edb1a58f63ffe1832a8d25623', # 2.0.5 'src/flutter/third_party/pkg/flutter_packages': Var('flutter_git') + '/mirrors/packages' + '@' + '25454e63851fe7933f04d025606e68c1eac4fe0f', # various 'src/flutter/third_party/pkg/gcloud': Var('flutter_git') + '/third_party/gcloud.git' + '@' + 'a5276b85c4714378e84b1fb478b8feeeb686ac26', # 0.8.6-dev 'src/flutter/third_party/pkg/googleapis': Var('flutter_git') + '/third_party/googleapis.dart.git' + '@' + '526011f56d98eab183cc6075ee1392e8303e43e2', # various 'src/flutter/third_party/pkg/platform': Var('dart_git') + '/platform.dart' + '@' + '1ffad63428bbd1b3ecaa15926bacfb724023648c', # 3.1.0 'src/flutter/third_party/pkg/process': Var('dart_git') + '/process.dart' + '@' + '0c9aeac86dcc4e3a6cf760b76fed507107e244d5', # 4.2.1 'src/flutter/third_party/pkg/process_runner': Var('flutter_git') + '/third_party/process_runner.git' + '@' + 'f24c69efdcaf109168f23d381fa281453d2bc9b1', # 4.1.2 'src/flutter/third_party/pkg/vector_math': Var('dart_git') + '/external/github.com/google/vector_math.dart.git' + '@' + '0a5fd95449083d404df9768bc1b321b88a7d2eef', # 2.1.0 'src/flutter/third_party/imgui': Var('flutter_git') + '/third_party/imgui.git' + '@' + '3ea0fad204e994d669f79ed29dcaf61cd5cb571d', 'src/flutter/third_party/tinygltf': Var('flutter_git') + '/third_party/tinygltf.git' + '@' + '9bb5806df4055ac973b970ba5b3e27ce27d98148', 'src/flutter/third_party/json': Var('flutter_git') + '/third_party/json.git' + '@' + '17d9eacd248f58b73f4d1be518ef649fe2295642', 'src/flutter/third_party/stb': Var('flutter_git') + '/third_party/stb.git' + '@' + '5736b15f7ea0ffb08dd38af21067c314d6a3aae9', 'src/third_party/gradle': { 'packages': [ { # See tools/gradle/README.md for update instructions. # Version here means the CIPD tag. 'version': 'version:8.3', 'package': 'flutter/gradle' } ], 'condition': 'download_android_deps', 'dep_type': 'cipd' }, 'src/third_party/android_tools/trace_to_text': { 'packages': [ { # 25.0 downloads for both mac-amd64 and mac-arm64 # 26.1 is not found with either platform # 27.1 is the latest release of perfetto 'version': 'git_tag:v25.0', 'package': 'perfetto/trace_to_text/${{platform}}' } ], 'condition': 'download_android_deps', 'dep_type': 'cipd' }, 'src/third_party/android_tools/google-java-format': { 'packages': [ { 'package': 'flutter/android/google-java-format', 'version': 'version:1.7-1' } ], # We want to be able to format these as part of CI, and the CI step that # checks formatting runs without downloading the rest of the Android build # tooling. Therefore unlike all the other Android-related tools, we want to # download this every time. 'dep_type': 'cipd', }, 'src/third_party/android_tools': { 'packages': [ { 'package': 'flutter/android/sdk/all/${{platform}}', 'version': 'version:34v7' } ], 'condition': 'download_android_deps', 'dep_type': 'cipd', }, 'src/third_party/android_embedding_dependencies': { 'packages': [ { 'package': 'flutter/android/embedding_bundle', 'version': 'last_updated:2023-08-11T11:35:44-0700' } ], 'condition': 'download_android_deps', 'dep_type': 'cipd', }, 'src/third_party/web_dependencies': { 'packages': [ { 'package': 'flutter/web/canvaskit_bundle', 'version': Var('canvaskit_cipd_instance') } ], 'dep_type': 'cipd', }, 'src/third_party/java/openjdk': { 'packages': [ { 'package': 'flutter/java/openjdk/${{platform}}', 'version': 'version:17' } ], 'condition': 'download_android_deps', 'dep_type': 'cipd', }, 'src/flutter/third_party/gn': { 'packages': [ { 'package': 'gn/gn/${{platform}}', 'version': 'git_revision:b79031308cc878488202beb99883ec1f2efd9a6d' }, ], 'dep_type': 'cipd', }, 'src/flutter/third_party/ninja': { 'packages': [ { 'package': 'infra/3pp/tools/ninja/${{platform}}', 'version': 'version:[email protected]', } ], 'dep_type': 'cipd', }, 'src/flutter/prebuilts/emsdk': { 'url': Var('skia_git') + '/external/github.com/emscripten-core/emsdk.git' + '@' + 'a896e3d066448b3530dbcaa48869fafefd738f57', 'condition': 'download_emsdk', }, # Clang on mac and linux are expected to typically be the same revision. # They are separated out so that the autoroller can more easily manage them. 'src/buildtools/mac-x64/clang': { 'packages': [ { 'package': 'fuchsia/third_party/clang/mac-amd64', 'version': Var('clang_version'), } ], 'condition': 'host_os == "mac"', # On ARM64 Macs too because Goma doesn't support the host-arm64 toolchain. 'dep_type': 'cipd', }, 'src/buildtools/mac-arm64/clang': { 'packages': [ { 'package': 'fuchsia/third_party/clang/mac-arm64', 'version': Var('clang_version'), } ], 'condition': 'host_os == "mac" and host_cpu == "arm64"', 'dep_type': 'cipd', }, 'src/buildtools/linux-x64/clang': { 'packages': [ { 'package': 'fuchsia/third_party/clang/linux-amd64', 'version': Var('clang_version'), } ], 'condition': 'host_os == "linux" or host_os == "mac"', 'dep_type': 'cipd', }, 'src/buildtools/linux-arm64/clang': { 'packages': [ { 'package': 'fuchsia/third_party/clang/linux-arm64', 'version': Var('clang_version'), } ], 'condition': 'host_os == "linux" and host_cpu == "arm64"', 'dep_type': 'cipd', }, 'src/buildtools/windows-x64/clang': { 'packages': [ { 'package': 'fuchsia/third_party/clang/windows-amd64', 'version': Var('clang_version'), } ], 'condition': 'download_windows_deps', 'dep_type': 'cipd', }, # GOMA 'src/buildtools/mac-x64/goma': { 'packages': [ { 'package': 'fuchsia/third_party/goma/client/mac-amd64', 'version': Var('goma_version'), } ], 'condition': 'use_cipd_goma and host_os == "mac"', 'dep_type': 'cipd', }, 'src/buildtools/linux-x64/goma': { 'packages': [ { 'package': 'fuchsia/third_party/goma/client/linux-amd64', 'version': Var('goma_version'), } ], 'condition': 'use_cipd_goma and host_os == "linux"', 'dep_type': 'cipd', }, 'src/buildtools/windows-x64/goma': { 'packages': [ { 'package': 'fuchsia/third_party/goma/client/windows-amd64', 'version': Var('goma_version'), } ], 'condition': 'use_cipd_goma and download_windows_deps', 'dep_type': 'cipd', }, # RBE binaries and configs. 'src/buildtools/linux-x64/reclient': { 'packages': [ { 'package': 'infra/rbe/client/${{platform}}', 'version': Var('reclient_version'), } ], 'condition': 'use_rbe and host_os == "linux" and host_cpu == "x64"', 'dep_type': 'cipd', }, 'src/buildtools/mac-arm64/reclient': { 'packages': [ { 'package': 'infra/rbe/client/${{platform}}', 'version': Var('reclient_version'), } ], 'condition': 'use_rbe and host_os == "mac" and host_cpu == "arm64"', 'dep_type': 'cipd', }, 'src/buildtools/mac-x64/reclient': { 'packages': [ { 'package': 'infra/rbe/client/${{platform}}', 'version': Var('reclient_version'), } ], 'condition': 'use_rbe and host_os == "mac" and host_cpu == "x64"', 'dep_type': 'cipd', }, 'src/buildtools/windows-x64/reclient': { 'packages': [ { 'package': 'infra/rbe/client/${{platform}}', 'version': Var('reclient_version'), } ], 'condition': 'use_rbe and download_windows_deps', 'dep_type': 'cipd', }, 'src/flutter/build/rbe': { 'packages': [ { 'package': 'flutter_internal/rbe/reclient_cfgs', 'version': 'PKYzmgx_GlWBAq7PEphD7bsfZ55WSOifmWisD0N-4e4C', } ], 'condition': 'use_rbe', 'dep_type': 'cipd', }, # gcloud 'src/buildtools/linux-x64/gcloud': { 'packages': [ { 'package': 'infra/3pp/tools/gcloud/${{platform}}', 'version': Var('gcloud_version'), } ], 'condition': 'use_rbe and host_os == "linux" and host_cpu == "x64"', 'dep_type': 'cipd', }, 'src/buildtools/mac-arm64/gcloud': { 'packages': [ { 'package': 'infra/3pp/tools/gcloud/${{platform}}', 'version': Var('gcloud_version'), } ], 'condition': 'use_rbe and host_os == "mac" and host_cpu == "arm64"', 'dep_type': 'cipd', }, # Get the SDK from https://chrome-infra-packages.appspot.com/p/fuchsia/sdk/core at the 'latest' tag # Get the toolchain from https://chrome-infra-packages.appspot.com/p/fuchsia/clang at the 'goma' tag 'src/fuchsia/sdk/linux': { 'packages': [ { 'package': 'fuchsia/sdk/core/linux-amd64', 'version': 'uINhDrQ3fkTE08_henrSmgKkDo6bisZh4acJCffrRiMC' } ], 'condition': 'download_fuchsia_deps and not download_fuchsia_sdk', 'dep_type': 'cipd', }, 'src/flutter/tools/fuchsia/test_scripts': { 'packages': [ { 'package': 'chromium/fuchsia/test-scripts', 'version': Var('fuchsia_test_scripts_version'), } ], 'condition': 'download_fuchsia_deps', 'dep_type': 'cipd', }, 'src/flutter/tools/fuchsia/gn-sdk': { 'packages': [ { 'package': 'chromium/fuchsia/gn-sdk', 'version': Var('fuchsia_gn_sdk_version'), } ], 'condition': 'download_fuchsia_deps', 'dep_type': 'cipd', }, 'src/third_party/impeller-cmake-example': { 'url': Var('flutter_git') + '/third_party/impeller-cmake-example.git' + '@' + 'c44e8093972c969acf171be72591e408a85fdc53', 'condition': 'download_impeller_cmake_example', }, # cmake is only used by impeller-cmake-example. 'src/buildtools/mac-x64/cmake': { 'packages': [ { 'package': 'infra/3pp/tools/cmake/mac-amd64', 'version': 'CGpMvZoP962wdEINR9d4OEvEW7ZOv0MPrHNKbBUBS0sC', } ], 'condition': 'download_impeller_cmake_example and host_os == "mac"', 'dep_type': 'cipd', }, 'src/flutter/third_party/google_fonts_for_unit_tests': { 'packages': [ { 'package': 'flutter/flutter_font_fallbacks', 'version': '14d38cffa1a2c9d4380094957aa63aee811b613b0dc53fd909557f61f6a9068c' } ], 'dep_type': 'cipd', } } recursedeps = [ 'src/flutter/third_party/vulkan-deps', ] hooks = [ { # Generate the Dart SDK's .dart_tool/package_confg.json file. 'name': 'Generate .dart_tool/package_confg.json', 'pattern': '.', 'action': ['python3', 'src/third_party/dart/tools/generate_package_config.py'], }, { # Generate the sdk/version file. 'name': 'Generate sdk/version', 'pattern': '.', 'action': ['python3', 'src/third_party/dart/tools/generate_sdk_version_file.py'], }, { # Update the Windows toolchain if necessary. 'name': 'win_toolchain', 'condition': 'download_windows_deps', 'pattern': '.', 'action': ['python3', 'src/build/vs_toolchain.py', 'update'], }, { 'name': 'dia_dll', 'pattern': '.', 'condition': 'download_windows_deps', 'action': [ 'python3', 'src/flutter/tools/dia_dll.py', ], }, { 'name': 'linux_sysroot_x64', 'pattern': '.', 'condition': 'download_linux_deps', 'action': [ 'python3', 'src/build/linux/sysroot_scripts/install-sysroot.py', '--arch=x64'], }, { 'name': 'linux_sysroot_arm64', 'pattern': '.', 'condition': 'download_linux_deps', 'action': [ 'python3', 'src/build/linux/sysroot_scripts/install-sysroot.py', '--arch=arm64'], }, { 'name': 'pub get --offline', 'pattern': '.', 'action': [ 'python3', 'src/flutter/tools/pub_get_offline.py', ] }, { 'name': 'Download Fuchsia SDK', 'pattern': '.', 'condition': 'download_fuchsia_deps and download_fuchsia_sdk', 'action': [ 'python3', 'src/flutter/tools/download_fuchsia_sdk.py', '--fail-loudly', '--verbose', '--host-os', Var('host_os'), '--fuchsia-sdk-path', Var('fuchsia_sdk_path'), ] }, { 'name': 'Activate Emscripten SDK', 'pattern': '.', 'condition': 'download_emsdk', 'action': [ 'python3', 'src/flutter/tools/activate_emsdk.py', ] }, { 'name': 'Start compiler proxy', 'pattern': '.', 'condition': 'use_cipd_goma and host_os == "mac"', 'action': [ 'python3', 'src/buildtools/mac-x64/goma/goma_ctl.py', 'ensure_start' ] }, { 'name': 'Start compiler proxy', 'pattern': '.', 'condition': 'use_cipd_goma and host_os == "linux"', 'action': [ 'python3', 'src/buildtools/linux-x64/goma/goma_ctl.py', 'ensure_start' ] }, { 'name': 'Start compiler proxy', 'pattern': '.', 'condition': 'use_cipd_goma and download_windows_deps', 'action': [ 'python3', 'src/buildtools/windows-x64/goma/goma_ctl.py', 'ensure_start' ] }, { 'name': 'Setup githooks', 'pattern': '.', 'condition': 'setup_githooks', 'action': [ 'python3', 'src/flutter/tools/githooks/setup.py', ] }, { 'name': 'impeller-cmake-example submodules', 'pattern': '.', 'condition': 'download_impeller_cmake_example', 'action': [ 'python3', 'src/flutter/ci/impeller_cmake_build_test.py', '--path', 'third_party/impeller-cmake-example', '--setup', ] }, { 'name': 'Download Fuchsia system images', 'pattern': '.', 'condition': 'run_fuchsia_emu', 'action': [ 'env', 'DOWNLOAD_FUCHSIA_SDK={download_fuchsia_sdk}', 'FUCHSIA_SDK_PATH={fuchsia_sdk_path}', 'python3', 'src/flutter/tools/fuchsia/with_envs.py', 'src/flutter/tools/fuchsia/test_scripts/update_product_bundles.py', 'terminal.x64,terminal.qemu-arm64', ] }, # The following two scripts check if they are running in the LUCI # environment, and do nothing if so. This is because Xcode is not yet # installed in CI when these hooks are run. { 'name': 'Find the iOS device SDKs', 'pattern': '.', 'condition': 'host_os == "mac"', 'action': [ 'python3', 'src/build/config/ios/ios_sdk.py', # This cleans up entries under flutter/prebuilts for this script and the # following script. '--as-gclient-hook' ] }, { 'name': 'Find the macOS SDK', 'pattern': '.', 'condition': 'host_os == "mac"', 'action': [ 'python3', 'src/build/mac/find_sdk.py', '--as-gclient-hook', Var('mac_sdk_min') ] }, { 'name': 'Generate Fuchsia GN build rules', 'pattern': '.', 'condition': 'download_fuchsia_deps', 'action': [ 'python3', 'src/flutter/tools/fuchsia/with_envs.py', 'src/flutter/tools/fuchsia/test_scripts/gen_build_defs.py', ], }, ]
engine/DEPS/0
{ "file_path": "engine/DEPS", "repo_id": "engine", "token_count": 21347 }
136
#!/bin/bash # # Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. set -e # Needed because if it is set, cd may print the path it changed to. unset CDPATH # On Mac OS, readlink -f doesn't work, so follow_links traverses the path one # link at a time, and then cds into the link destination and find out where it # ends up. # # The function is enclosed in a subshell to avoid changing the working directory # of the caller. function follow_links() ( cd -P "$(dirname -- "$1")" file="$PWD/$(basename -- "$1")" while [[ -h "$file" ]]; do cd -P "$(dirname -- "$file")" file="$(readlink -- "$file")" cd -P "$(dirname -- "$file")" file="$PWD/$(basename -- "$file")" done echo "$file" ) SCRIPT_DIR=$(follow_links "$(dirname -- "${BASH_SOURCE[0]}")") ENGINE_DIR="$(cd "$SCRIPT_DIR/.."; pwd -P)" case "$(uname -s)" in Linux) OS="linux" ;; Darwin) OS="macos" ;; *) echo "The host platform is not supported by this tool" exit 1 esac case "$(uname -m)" in arm64) CPU="arm64" ;; x86_64) CPU="x64" ;; *) echo "The host platform is not supported by this tool" exit 1 esac PLATFORM="${OS}-${CPU}" DART_SDK_DIR="${ENGINE_DIR}/prebuilts/${PLATFORM}/dart-sdk" DART="${DART_SDK_DIR}/bin/dart" if [ ! -d "${ENGINE_DIR}/tools/engine_tool/.dart_tool" ]; then echo "You must run 'gclient sync -D' before using this tool." exit 1 fi "${DART}" --disable-dart-dev "${ENGINE_DIR}/tools/engine_tool/bin/et.dart" "$@"
engine/bin/et/0
{ "file_path": "engine/bin/et", "repo_id": "engine", "token_count": 635 }
137
# Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. config("expat_config") { include_dirs = [ "expat/lib", "//flutter/build/secondary/flutter/third_party/expat/expat_config", ] defines = [ "XML_STATIC", "XML_DEV_URANDOM", ] } static_library("expat") { sources = [ "expat/lib/expat.h", "expat/lib/xmlparse.c", "expat/lib/xmlrole.c", "expat/lib/xmltok.c", ] public_configs = [ ":expat_config" ] }
engine/build/secondary/flutter/third_party/expat/BUILD.gn/0
{ "file_path": "engine/build/secondary/flutter/third_party/expat/BUILD.gn", "repo_id": "engine", "token_count": 233 }
138
# Copyright 2020 The ANGLE Project Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # # Custom GN integration for VulkanMemoryAllocator. declare_args() { vma_vulkan_headers_dir = "//flutter/third_party/vulkan-deps/vulkan-headers/src" } config("vulkan_memory_allocator_config") { include_dirs = [ "include" ] if (is_clang) { cflags_cc = [ "-Wno-c++98-compat-extra-semi", "-Wno-deprecated-copy", "-Wno-implicit-fallthrough", "-Wno-nullability-completeness", "-Wno-suggest-destructor-override", "-Wno-suggest-override", "-Wno-unused-private-field", "-Wno-unused-variable", ] } if (is_win && !is_clang) { cflags_cc = [ "/wd4189", # local variable is initialized but not referenced ] } defines = [ "VMA_DYNAMIC_VULKAN_FUNCTIONS=0", "VMA_STATIC_VULKAN_FUNCTIONS=0", ] } source_set("vulkan_memory_allocator") { sources = [ "include/vk_mem_alloc.h" ] deps = [ "${vma_vulkan_headers_dir}:vulkan_headers" ] public_configs = [ ":vulkan_memory_allocator_config" ] }
engine/build/secondary/flutter/third_party/vulkan_memory_allocator/BUILD.gn/0
{ "file_path": "engine/build/secondary/flutter/third_party/vulkan_memory_allocator/BUILD.gn", "repo_id": "engine", "token_count": 479 }
139
# Copyright 2019 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Ensure use_xcode_clang is visibile to ANGLE. import("//build/toolchain/toolchain.gni") # The ANGLE build requires this file to point to the location of third-party # dependencies. angle_root = "//flutter/third_party/angle" angle_vma_version = 30000001 # Flutter's buildroot looks enough like Chromium to satisfy Angle, and enough # to cause GN variable collisions if we don't set this. if (!is_fuchsia) { angle_has_build = true } # Overrides for ANGLE's dependencies. angle_abseil_cpp_dir = "//flutter/third_party/abseil-cpp" angle_glslang_dir = "//flutter/third_party/vulkan-deps/glslang/src" angle_googletest_dir = "//third_party/googletest/googletest/src" # Note: This path doesn't actually exist; see # //build/secondary/third_party/jsoncpp/BUILD.gn angle_jsoncpp_dir = "//third_party/jsoncpp" angle_libjpeg_turbo_dir = "//third_party/libjpeg_turbo" angle_libpng_dir = "//flutter/third_party/libpng" angle_spirv_headers_dir = "//flutter/third_party/vulkan-deps/spirv-headers/src" angle_spirv_tools_dir = "//flutter/third_party/vulkan-deps/spirv-tools/src" angle_spirv_cross_dir = "//flutter/third_party/vulkan-deps/spirv-cross/src" angle_spirv_headers_dir = "//flutter/third_party/vulkan-deps/spirv-headers/src" angle_vulkan_memory_allocator_dir = "//flutter/third_party/vulkan_memory_allocator" # This is a general Chromium flag, but in the Flutter build only ANGLE needs it # so it is defined here. is_cfi = false
engine/build_overrides/angle.gni/0
{ "file_path": "engine/build_overrides/angle.gni", "repo_id": "engine", "token_count": 568 }
140
# Flutter Engine Build Definition Language The ***Flutter Engine Build Definition Language*** describes a build on CI by defining a combination of *sub-builds*, *archives*, *generators* and *dependencies*. It makes it simple to shard sub-builds by mapping build inputs to workflows, and listing the sub-build-generated artifacts explicitly. The Build Definition Language, Engine Recipes V2 and the generation of artifacts using GN+Ninja set the groundwork for efficient builds with dependency reusability. **Author: Godofredo Contreras (godofredoc)**\ **Go Link: flutter.dev/go/engine-build-definition-language**\ **Created:** 01/2023 / **Last updated:** 04/2023 ## Glossary * **[recipes](https://github.com/luci/recipes-py)** - domain specific language for specifying sequences of subprocess calls in a cross-platform and testable way. * **Generator** - scripts in Dart, python or bash that combine the output of sub-builds to generate artifacts. * **Builder** - a combination of configuration, recipes and a given commit to build and test artifacts. * **Build** - a builder running with specific properties, repository and commit. * **[GN](https://gn.googlesource.com/gn/)** - a meta-build system that generates build files for [Ninja](https://ninja-build.org/). * **[Ninja](https://ninja-build.org)** - Ninja is a small build system with a focus on speed. * **CAS** - a service that stores arbitrary binary blobs addressed by (hash of) their content. It is specialized for low latency, high volume query/read/write operations. ## USAGE EXAMPLES Engine build definition files using the Build Definition Language can be found in the [flutter/engine/ci/builders](https://github.com/flutter/engine/tree/main/ci/builders) directory. The [engine orchestrator recipe](https://flutter.googlesource.com/recipes/+/refs/heads/main/recipes/engine_v2/) reads each file in that directory, shards their builds, collects artifacts and uploads them to the Google Cloud Storage bucket. The [.ci.yaml file](https://github.com/flutter/engine/blob/main/.ci.yaml) at the root of the `flutter/engine` repository puts all the components together. Builds are specified in that file using a property pointing to the build definition file to be used by engine\_v2 recipes. Full documentation of the `.ci.yaml` file format can be found [in the Cocoon repository here](https://github.com/flutter/cocoon/blob/main/CI_YAML.md). The following is a sample build configuration referencing [android\_aot\_engine.json](https://github.com/flutter/engine/blob/main/ci/builders/mac_android_aot_engine.json) in the `config_name` under `properties`: ```yaml - name: Mac mac_android_aot_engine recipe: engine_v2/engine_v2 timeout: 60 properties: config_name: mac_android_aot_engine $flutter/osx_sdk : >- { "sdk_version": "15a240d" } ``` ## Build Definition Language Assumptions To keep the build definition language simple the following assumptions were made during its design: * A build can be expressed as a set of independent sub-builds. * A sub-build can be defined as a sequence of a `gn` configuration step, a `ninja` build step, followed by self-contained test scripts, and self-contained generator scripts. All the elements are optional allowing to use gn+ninja without generators or generators without gn+ninja. * All the sub-builds required by a global generator are defined within the same configuration file. ## Build configuration file The build configuration is a json file containing a list of builds, tests, generators and archives. The following is an example of an empty configuration file: ```json { "builds": [], "tests": [], "generators": { "tasks": [] }, "archives": [ ] } ``` Note: tests, generators and archives can be omited if empty. Build configuration files have to be checked into the [engine_checkout/ci/builder](https://github.com/flutter/engine/tree/main/ci/builders) directory where engine v2 recipes will be reading them from. Configurations with a single build are supported. Single build configurations are located have to be checked into the [engine_checkout/ci/builder/standalone](https://github.com/flutter/engine/tree/main/ci/builders/standalone) A configuration file defines a top-level builder that will show up as a column in the [Flutter Dashboard](https://flutter-dashboard.appspot.com/#/build?repo=engine&branch=master). ### Magic variables Magic variables are special environment variables that can be used as parameters for generators and test commands in the local and global contexts. Magic environment variables have the following limitations: only `${FLUTTER_LOGS_DIR}` is currently supported and it needs to be used alone within the parameter string(e.g. `["${FLUTTER_LOGS_DIR}"]` is OK but `["path=${FLUTTER_LOGS_DIR}"]` is not). The current list of supported magic variables is: * `${FLUTTER_LOGS_DIR}` - translated to the path of the temporary folder where logs are being placed. * `${LUCI_WORKDIR}` - translated to the LUCI chroot working directory. * `${LUCI_CLEANUP}` - translated to the LUCI chroot temp directory. * `${REVISION}` - translated to the engine commit in postsubmit. In presubmit it is translated to an empty string. ### Build A build is a dictionary with a gn command, a ninja command, zero or more generator commands, zero or more local tests, zero or more local generators and zero or more output artifacts. The following is the high level structure of the build component: ```json { "archives": [], "drone_dimensions": [], "gclient_variables": {}, "gn": [], "name": "host_debug", "generators": [], "ninja": {}, "tests": [] } ``` Each build element will be translated to an independent sub-build and its entire out directory will be uploaded to CAS. `gn`, `ninja`, `generators` and `tests` properties are optional. Gn and ninja properties can be used without generators or tests. Generators with no gn and ninja properties is also supported. #### Archives An archive component is used to tell the recipes which artifacts are generated by the build and where to upload them. By default the build output is archived to CAS in order to be used as a dependency for global tests. If no CAS archive is required `cas_archive": false,` needs to be added to the configuration. ```json { "name": "host_debug", "base_path": "out/host_debug/zip_archives/", "type": "gcs", "include_paths": [ "out/host_debug/zip_archives/linux-x64/artifacts.zip" ], "realm": "production" } ``` Description of the fields: * **name:** - by default the entire build output is uploaded to CAS. `name` is used to associate the CAS hash to a value that can be referenced later as a dependency of global tests. Name is also used to select the folder from within src/out to upload to CAS. e.g if the build generates src/out/host_debug name must be `host_debug`. * **base\_path:** - the portion of the path to remove from the full path before uploading to its final destination. In the example the above the base\_path **“out/host\_debug/zip\_archives”** will be removed from the include path **"out/host\_debug/zip\_archives/linux-x64/artifacts.zip"** before uploading to GCS, e.g. &lt;bucket&gt;/flutter/&lt;commit>/linux-x64/artifacts.zip. * **Type:** - the type of storage to use. Currently only **“gcs”** and **“cas”** are supported. "gcs" uploads artifacts to GCS and "cas" to archive to CAS service. Cas value is used during development where we need to inspect the generated artifacts without worrying about location or cleanups. Gcs is expected for any artifacts being consumed by the flutter tool. * **Include\_paths:** - a list of strings with the paths to be uploaded to a given destination. * **cas_archive** - a boolean value indicating whether the build output will be archived to CAS or not. The default value is true. * **realm** - a string value of either `production` or `experimental` where production means the artifact will be uploaded to the location expected by the flutter tool and experimental will add an `experimental` prefix to the path to avoid interfering with production artifacts. #### Drone\_dimensions A list of strings with key value pairs separated by an equal sign. These dimensions are used to select the bot where the sub-build will be running. To find the list of valid keys and values you need to select a [bot from the swarming UI](https://chromium-swarm.appspot.com/botlist?c=id&c=task&c=os&c=status&d=asc&f=pool%3Aluci.flex.try&k=pool&s=id). On the `dimensions` section the left column contains the keys and the right column contains the allowed values. If multiple values are allowed for a key they are separated using `|` (pipe symbol). ```json "drone_dimensions": [ "device_type=none", "os=Linux" ] ``` In the previous example, the build containing this drone\_dimensions component will run on a bot with a Linux OS that does not have any devices attached to it. Drone dimensions accept values separates by `|` to specify more than one value for the dimension. E.g. assuming the pool of bots have Ubuntu and Debian bots a dimension of `"os": "Debian|Ubuntu"` will resolve to use bots running either Debian or Ubuntu. #### Gclient\_variables A dictionary with variables passed to gclient during a gclient sync operation. They are usually used to add or remove gclient dependencies. ```json "gclient_variables": { "download_android_deps": false } ``` The example above is used to avoid downloading the [android sdk dependencies](https://cs.opensource.google/flutter/engine/+/main:DEPS;l=80) in builders that do not need it. #### GN A list of strings representing flags passed to the [tools/gn](https://github.com/flutter/engine/blob/main/tools/gn) script. The strings can be in the form of “--flag=value” or “--flag” followed by “value”. ```json "gn": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--build-embedder-examples" ], ``` The previous example will prepare the configurations to build a host debug version using a prebuilt dart sdk and also build the embedder examples. #### Ninja A dictionary with two keys: “config” which references the configs created by gn and “target” which is a list of strings with the Ninja targets to build. ```json "ninja": { "config": "host_debug", "targets": [ "flutter/build/archives:artifacts", "flutter/build/archives:embedder", ] }, ``` In the example above the ninja command will use the configuration for host\_debug and will build artifacts and embedder targets as described by the [flutter/build/archives/BUILD.gn](https://github.com/flutter/engine/blob/main/build/archives/BUILD.gn) file. #### Tests This section of the build configuration is also known as local tests. It contains a list of dictionaries with configurations for scripts and parameters used to run tests inside the current build unit. These tests should not reference or use anything outside of the commit checkout or the outputs generated by running gn and ninja sections of the build configuration. ```json "tests": [ { "language": "python3", "test_timeout_secs": 600, "name": "Host Tests for host_debug_impeller_vulkan", "parameters": [ "--variant", "host_debug_impeller_vulkan", "--type", "impeller", "--engine-capture-core-dump" ], "script": "flutter/testing/run_tests.py", "contexts": ["android_virtual_device"] } ] ``` Description of the fields: * **language** - the executable used to run the script, e.g. python3, bash. In general any executable found in the path can be used as language. The default is empty which means no interpreter will be used to run the script and it is assumed the script is already an executable with the right permissions to run in the target platform. * **test_timeout_secs** - the timeout in seconds for the step running the test. This value overrides the default 1 hour timeout. When debugging, or if a third-party program is known to misbehave, it is recommended to add timeouts to allow LUCI services to collect logs. * **name** - the name of the step running the script. * **parameters** - flags or parameters passed to the script. Parameters accept magic environment variables(placeholders replaced before executing the test). * **Script** - the path to the script to execute relative to the checkout directory. * **contexts** - a list of available contexts to add to the text execution step. The list of supported contexts can be found [here](https://flutter.googlesource.com/recipes/+/refs/heads/main/recipe_modules/flutter_deps/api.py#687). As of 06/20/23 two contexts are supported: "android_virtual_device" and "metric_center_token". * **test_if** - a regex of what branches this test should run on. Defaults to everywhere. The test scripts will run in a deferred context (failing the step only after logs have been uploaded). Tester and builder recipes provide an environment variable called FLUTTER\_LOGS\_DIR pointing a temporary directory where the test runner can place any logs|artifacts needed to debug issues. At the end of the test execution the content of FLUTTER\_LOGS\_DIR will be uploaded to Google Cloud Storage before signaling the pass | fail test state. Contexts are free form python contexts that communicate with the test script through environment variables. E.g. metric_center_token saves an access token to an [environment variable "token_path"](https://flutter.googlesource.com/recipes/+/refs/heads/main/recipe_modules/token_util/api.py#14) for the test to access it. Note that to keep the recipes generic they don’t know anything about what the test script is doing and it is the responsibility of the test script to copy the relevant files to the FLUTTER\_LOGS\_DIR directory. #### Generators Generators are scripts used to generate artifacts combining the output of two or more sub-builds. The most common use case is to generate universal binaries for Mac/iOS artifacts. Generators can be written in any language but they are required to follow some guidelines to make them compatible with the engine build system. The guidelines are as follows: * Flags receiving paths to resources from multiple sub-builds need to use paths relative to the checkout (`src/`) directory. If there are global generators in a build configuration, the engine\_v2 recipes will download the full sub-build archives to the src/out/&lt;sub-build name> directory. * Flags receiving paths to output directories must use paths relative to the src/out folder. This is to be able to reference the artifacts in the global archives section. * The script is in charge of generating the final artifact, e.g. if the script generates multiple files that will be zipped later, then it is the responsibility of the script to generate the final zip. * If the generator is producing a Mac/iOS artifact, then it is the responsibility of the script to embed the signing metadata. Generators contain a single property “tasks” which is a list of tasks to be performed. ```json "generators": { "tasks": [] } ``` The example above represents a generator configuration with an empty list of tasks. ##### Task A `task` is a dictionary describing the scripts to be executed. The property's description is as follows: * **Name** - the name of the step running the script. * **Parameters** - flags passed to the script. Both input and output paths must be relative to the checkout directory. * **Script**, the script path relative to the checkout repository. * **Language**, the script language executable to run the script. If empty it is assumed to be bash. ```json { "name": "Debug-FlutterMacOS.framework", "parameters": [ "--dst", "out/debug", "--arm64-out-dir", "out/ios_debug", "--simulator-x64-out-dir", "out/ios_debug_sim", "--simulator-arm64-out-dir", "out/ios_debug_sim_arm64" ], "script": "flutter/sky/tools/create_full_ios_framework.py", "language": "python3" } ``` ### Global Tests Tests in this section run on a separate bot as independent sub-builds. As opposed to tests running within builds, global tests have access to the the outputs of all the builds running in the same orchestrator build. A use case for global tests is to run flutter/framework tests using the artifacts generated by an specific engine build. Global tests currently support two different scenarios: * flutter/flutter tests with [tester](https://flutter.googlesource.com/recipes/+/refs/heads/main/recipes/engine_v2/tester.py) recipe. This workflow checks out flutter/flutter to run any of the existing sharded tests using the engine artifacts archived to GCS. * complicated engine tests that require the outputs from multiple subbuilds with [tester_engine](https://flutter.googlesource.com/recipes/+/refs/heads/main/recipes/engine_v2/tester_engine.py). This workflow checks out [flutter/engine] and operates over the dependencies passed to it using cas. Note: the supported scenarios can be later extended to support running devicelab tests although a [smart scheduler](https://github.com/flutter/flutter/issues/128294) is a prerequisite for it to be scalable(build/test separation model). Framework test example: ```json { "tests": [ { "name": "web-tests-1", "shard": "web_tests", "subshard": "1", "test_dependencies": [ { "dependency": "chrome_and_driver", "version": "version:111.0a" } ] } ] } ``` The property's description is as follows: * **name** the name that will be assigned to the sub-build. * **shard** the flutter/flutter shard test to run. The supported shard names can be found on the flutter framework [test.dart](https://github.com/flutter/flutter/blob/master/dev/bots/test.dart#L244). * **subshard** one of the accepted subshard values for shard. Sub-shards are defined as part of the shard implementation, please look at the corresponding shard implementation to find the accepted values. * **test_dependencies** a list of [dependencies](https://flutter.googlesource.com/recipes/+/refs/heads/main/recipe_modules/flutter_deps/api.py#75) required for the test to run. Engine test example: ```json { "tests": [ { "name": "test: clang_tidy android_debug_arm64", "recipe": "engine_v2/tester_engine", "drone_dimensions": [ "device_type=none", "os=Linux" ], "dependencies": [ "host_debug", "android_debug_arm64" ], "tasks": [ { "name": "test: clang_tidy android_debug_arm64", "parameters": [ "--variant", "android_debug_arm64", "--lint-all", "--shard-id=0", "--shard-variants=host_debug" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh", "test_timeout_secs": 600, } ] } ] } ``` The property's description is as follows: * **name** the name to assign to the sub-build. * **recipe** the recipe name to use if different than tester. * **drone_dimensions** a list of strings with key values to select the bot where the test will run. * **dependencies** a list of build outputs required by the test. These build outputs are referenced by the name of build generating the output. This type of dependency is shared using CAS and the contents are mounted in checkout/src/out. E.g. a build configuration building the `host_engine` configuration will upload the content of checkout/src/out/host_engine to CAS and a global test with a `host_engine` dependency will mount the content of host engine in the same location of the bot running the test. * **tasks** a list of dictionaries representing scripts and parameters to run them. Example task configuration: ```json { "name": "test: clang_tidy android_debug_arm64", "parameters": [ "--variant", "android_debug_arm64", "--lint-all", "--shard-id=0", "--shard-variants=host_debug" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh" } ``` The property's description is as follows: * **name** the name assigned to the step running the script. * **parameters** a list of parameters passed to the script execution. * **max_attempts** an integer with the maximum number of runs in case of failure. * **script** the path relative to checkout/src/ to run. * **test_timeout_secs** - the timeout in seconds for the step running the test. This value overrides the default 1 hour timeout. When debugging, or if a third-party program is known to misbehave, it is recommended to add timeouts to allow LUCI services to collect logs. ### Global Generators Global generators follow the same format as local generators but defined at the build top level. The main difference is that global generators can create new artifacts combining outputs of multiple sub-builds. ### Global Archives The archives component provides instructions to upload the artifacts generated by the global generators. Is a list of dictionaries with three keys: `source` and `destination`, and `realm`. `source` is a path relative to the checkout repository, `destination` is a relative path to &lt;bucket>/flutter/&lt;commit>, and `realm` is a string with either `production` or `experimental` value. The realm value is used to build the destination path of the artifacts. `production` will upload the artifacts to the location expected by the flutter tool and `experimental` will add experimental as a prefix to the path to avoid interfering with the production artifacts. ```json "archives": [ { "source": "out/debug/artifacts.zip", "destination": "ios/artifacts.zip", "realm": "production" }, ] ``` The example above will cause the file &lt;checkout>/out/debug/artifacts.zip to be uploaded &lt;bucket>/flutter/&lt;commit>/ios/artifacts.zip. ## Triaging global generators Global generators can run locally if all their sub-build dependencies are downloaded. This section explains how to triage a local generator. The instructions on this section can be used to triage problems with artifacts created by glocal generators(E.g.`Debug|Release|Profile-ios-Flutter.xcframework`) using the build outputs of CI subbuilds. During the migration to engine v2 we had a regression in the size of the flutter libraries, using this process we were able to inspect the files as they were generated by the CI, make changes to the generators and run the generators locally to validate the fixes. ### Prerequisites (one time installation) #### Install CAS utility CAS client is required to download the sub-build artifacts. To install it in your machine run the following steps: * `mkdir $HOME/tools` * Download and unzip CAS binaries from [https://chrome-infra-packages.appspot.com/p/infra/tools/luci/cas] * Add $HOME/tools to path and your ~/.bashrc #### Gclient engine checkout Create a gclient checkout following instructions from [Setting up the engine environment](https://github.com/flutter/flutter/wiki/Setting-up-the-Engine-development-environment). ### Download sub-builds to the gclient checkout out folder CAS sub-build artifacts can be downloaded using information from a LUCI build. Using [https://ci.chromium.org/p/flutter/builders/prod/Mac%20mac_ios_engine/2818] as an example the execution details from steps 13 - 17 show the commands to download the archives. `-dir` parameter needs to be updated to point to the relative or full path to the out folder in your gclient checkout. These are the commands to execute for our example build: ```bash pushd <gclient checkout>/src/out cas download -cas-instance projects/chromium-swarm/instances/default_instance -digest 39f15436deaed30f861bdd507ba6297f2f26a2ff13d45acfd8819dbcda346faa/88 -dir ./ cas download -cas-instance projects/chromium-swarm/instances/default_instance -digest bdec3208e70ba5e50ee7bbedaaff4588d3f58167ad3d8b1c46d29c6ac3a18c00/94 -dir ./ cas download -cas-instance projects/chromium-swarm/instances/default_instance -digest d19edb65072aa9d872872b55d3c270db40c6a626c8a851ffcb457a28974f3621/84 -dir ./ cas download -cas-instance projects/chromium-swarm/instances/default_instance -digest ac6f08662d18502cfcd844771bae736f4354cb3fe209552fcf2181771e139e0b/86 -dir ./ cas download -cas-instance projects/chromium-swarm/instances/default_instance -digest 1d4d1a3b93847451fe69c1939d7582c0d728b198a40abd06f43d845117ef3214/86 -dir ./ ``` The previous commands will create the ios_debug, ios_debug_sim, ios_debug_sim_arm64, ios_profile, and ios_release folders with the artifacts generated by its corresponding sub-builds. Once the checkout and dependencies are available locally we can cd|pushd to the root of the client checkout and run the global generator. The command can be copied verbatim from the executions details of the build. The following example will run the generator to create the ios artifacts: ```bash python3 flutter/sky/tools/create_full_ios_framework.py --dst out/release \ --arm64-out-dir out/ios_release --simulator-x64-out-dir out/ios_debug_sim \ --simulator-arm64-out-dir out/ios_debug_sim_arm64 --dsym --strip ```
engine/ci/builders/README.md/0
{ "file_path": "engine/ci/builders/README.md", "repo_id": "engine", "token_count": 7833 }
141
{ "builds": [ { "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "gn": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--no-lto", "--force-mac-arm64", "--target-dir", "host_debug_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ], "name": "host_debug_clang_tidy", "ninja": { "config": "host_debug_clang_tidy" } }, { "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "gn": [ "--ios", "--runtime-mode", "debug", "--simulator", "--no-lto", "--force-mac-arm64", "--target-dir", "ios_debug_sim_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ], "name": "ios_debug_sim_clang_tidy", "ninja": { "config": "ios_debug_sim_clang_tidy" } } ], "tests": [ { "name": "test: lint host_debug 0", "recipe": "engine_v2/tester_engine", "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "dependencies": [ "host_debug_clang_tidy" ], "contexts": [ "osx_sdk" ], "tasks": [ { "name": "gn for host_debug", "langauge": "python", "script": "flutter/tools/gn", "parameters": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--no-lto", "--force-mac-arm64", "--target-dir", "host_debug_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ] }, { "name": "test: lint host_debug", "parameters": [ "--variant", "host_debug_clang_tidy", "--lint-all", "--shard-id=0", "--shard-variants=host_debug_clang_tidy,host_debug_clang_tidy,host_debug_clang_tidy" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh" } ] }, { "name": "test: lint host_debug 1", "recipe": "engine_v2/tester_engine", "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "dependencies": [ "host_debug_clang_tidy" ], "contexts": [ "osx_sdk" ], "tasks": [ { "name": "gn for host_debug", "langauge": "python", "script": "flutter/tools/gn", "parameters": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--no-lto", "--force-mac-arm64", "--target-dir", "host_debug_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ] }, { "name": "test: lint host_debug", "parameters": [ "--variant", "host_debug_clang_tidy", "--lint-all", "--shard-id=1", "--shard-variants=host_debug_clang_tidy,host_debug_clang_tidy,host_debug_clang_tidy" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh" } ] }, { "name": "test: lint host_debug 2", "recipe": "engine_v2/tester_engine", "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "dependencies": [ "host_debug_clang_tidy" ], "contexts": [ "osx_sdk" ], "tasks": [ { "name": "gn for host_debug", "langauge": "python", "script": "flutter/tools/gn", "parameters": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--no-lto", "--force-mac-arm64", "--target-dir", "host_debug_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ] }, { "name": "test: lint host_debug", "parameters": [ "--variant", "host_debug_clang_tidy", "--lint-all", "--shard-id=2", "--shard-variants=host_debug_clang_tidy,host_debug_clang_tidy,host_debug_clang_tidy" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh" } ] }, { "name": "test: lint host_debug 3", "recipe": "engine_v2/tester_engine", "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "dependencies": [ "host_debug_clang_tidy" ], "contexts": [ "osx_sdk" ], "tasks": [ { "name": "gn for host_debug", "langauge": "python", "script": "flutter/tools/gn", "parameters": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--no-lto", "--force-mac-arm64", "--target-dir", "host_debug_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ] }, { "name": "test: lint host_debug", "parameters": [ "--variant", "host_debug_clang_tidy", "--lint-all", "--shard-id=3", "--shard-variants=host_debug_clang_tidy,host_debug_clang_tidy,host_debug_clang_tidy" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh" } ] }, { "name": "test: lint ios_debug_sim", "recipe": "engine_v2/tester_engine", "drone_dimensions": [ "device_type=none", "os=Mac-13", "cpu=arm64" ], "gclient_variables": { "download_android_deps": false, "use_rbe": true }, "dependencies": [ "host_debug_clang_tidy", "ios_debug_sim_clang_tidy" ], "contexts": [ "osx_sdk" ], "tasks": [ { "name": "gn for host_debug", "langauge": "python", "script": "flutter/tools/gn", "parameters": [ "--runtime-mode", "debug", "--prebuilt-dart-sdk", "--no-lto", "--force-mac-arm64", "--target-dir", "host_debug_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ] }, { "name": "gn for ios_debug_sim", "langauge": "python", "script": "flutter/tools/gn", "parameters": [ "--ios", "--runtime-mode", "debug", "--simulator", "--no-lto", "--force-mac-arm64", "--target-dir", "ios_debug_sim_clang_tidy", "--rbe", "--no-goma", "--xcode-symlinks" ] }, { "name": "test: lint ios_debug_sim", "parameters": [ "--variant", "ios_debug_sim_clang_tidy", "--lint-all", "--shard-id=0", "--shard-variants=host_debug_clang_tidy" ], "max_attempts": 1, "script": "flutter/ci/clang_tidy.sh" } ] } ] }
engine/ci/builders/mac_clang_tidy.json/0
{ "file_path": "engine/ci/builders/mac_clang_tidy.json", "repo_id": "engine", "token_count": 7889 }
142
@ECHO off REM Copyright 2013 The Flutter Authors. All rights reserved. REM Use of this source code is governed by a BSD-style license that can be REM found in the LICENSE file. REM ---------------------------------- NOTE ---------------------------------- REM REM Please keep the logic in this file consistent with the logic in the REM `format.sh` script in the same directory to ensure that it continues to REM work across all platforms! REM REM -------------------------------------------------------------------------- SETLOCAL ENABLEDELAYEDEXPANSION FOR %%i IN ("%~dp0..\..") DO SET SRC_DIR=%%~fi REM Test if Git is available on the Host where /q git || ECHO Error: Unable to find git in your PATH. && EXIT /B 1 SET repo_dir=%SRC_DIR%\flutter SET ci_dir=%repo_dir%\ci REM Determine which platform we are on and use the right prebuilt Dart SDK IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" ( SET dart_sdk_path=%SRC_DIR%\flutter\prebuilts\windows-x64\dart-sdk ) ELSE IF "%PROCESSOR_ARCHITECTURE%"=="ARM64" ( SET dart_sdk_path=%SRC_DIR%\flutter\prebuilts\windows-arm64\dart-sdk ) ELSE ( ECHO "Windows x86 (32-bit) is not supported" && EXIT /B 1 ) SET dart=%dart_sdk_path%\bin\dart.exe cd "%ci_dir%" REM Do not use the CALL command in the next line to execute Dart. CALL causes REM Windows to re-read the line from disk after the CALL command has finished REM regardless of the ampersand chain. "%dart%" --disable-dart-dev bin\format.dart %* & exit /B !ERRORLEVEL!
engine/ci/format.bat/0
{ "file_path": "engine/ci/format.bat", "repo_id": "engine", "token_count": 476 }
143
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef FLUTTER_COMMON_GRAPHICS_TEXTURE_H_ #define FLUTTER_COMMON_GRAPHICS_TEXTURE_H_ #include <map> #include "flutter/display_list/dl_canvas.h" #include "flutter/fml/macros.h" #include "flutter/fml/synchronization/waitable_event.h" #include "third_party/skia/include/core/SkCanvas.h" #include "third_party/skia/include/core/SkSamplingOptions.h" class GrDirectContext; namespace impeller { class AiksContext; }; namespace flutter { class ContextListener { public: ContextListener(); ~ContextListener(); // Called from raster thread. virtual void OnGrContextCreated() = 0; // Called from raster thread. virtual void OnGrContextDestroyed() = 0; private: FML_DISALLOW_COPY_AND_ASSIGN(ContextListener); }; class Texture : public ContextListener { public: struct PaintContext { DlCanvas* canvas = nullptr; GrDirectContext* gr_context = nullptr; impeller::AiksContext* aiks_context = nullptr; const DlPaint* paint = nullptr; }; explicit Texture(int64_t id); // Called from UI or raster thread. virtual ~Texture(); // Called from raster thread. // Called from raster thread. virtual void Paint(PaintContext& context, const SkRect& bounds, bool freeze, const DlImageSampling sampling) = 0; // Called on raster thread. virtual void MarkNewFrameAvailable() = 0; // Called on raster thread. virtual void OnTextureUnregistered() = 0; int64_t Id() { return id_; } private: int64_t id_; FML_DISALLOW_COPY_AND_ASSIGN(Texture); }; class TextureRegistry { public: TextureRegistry(); // Called from raster thread. void RegisterTexture(const std::shared_ptr<Texture>& texture); // Called from raster thread. void RegisterContextListener(uintptr_t id, std::weak_ptr<ContextListener> image); // Called from raster thread. void UnregisterTexture(int64_t id); // Called from the raster thread. void UnregisterContextListener(uintptr_t id); // Called from raster thread. std::shared_ptr<Texture> GetTexture(int64_t id); // Called from raster thread. void OnGrContextCreated(); // Called from raster thread. void OnGrContextDestroyed(); private: std::map<int64_t, std::shared_ptr<Texture>> mapping_; size_t image_counter_ = 0; // This map keeps track of registered context listeners by their own // externally provided id. It indexes into ordered_images_. std::map<uintptr_t, size_t> image_indices_; // This map makes sure that iteration of images happens in insertion order // (managed by image_counter_) so that images which depend on other images get // re-created in the right order. using InsertionOrderMap = std::map<size_t, std::pair<uintptr_t, std::weak_ptr<ContextListener>>>; InsertionOrderMap ordered_images_; FML_DISALLOW_COPY_AND_ASSIGN(TextureRegistry); }; } // namespace flutter #endif // FLUTTER_COMMON_GRAPHICS_TEXTURE_H_
engine/common/graphics/texture.h/0
{ "file_path": "engine/common/graphics/texture.h", "repo_id": "engine", "token_count": 1076 }
144
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "flutter/display_list/benchmarking/dl_complexity.h" #include "flutter/display_list/benchmarking/dl_complexity_gl.h" #include "flutter/display_list/benchmarking/dl_complexity_metal.h" #include "flutter/display_list/display_list.h" #include "flutter/display_list/dl_builder.h" #include "flutter/display_list/dl_sampling_options.h" #include "flutter/display_list/testing/dl_test_snippets.h" #include "flutter/testing/testing.h" #include "third_party/skia/include/core/SkBitmap.h" #include "third_party/skia/include/core/SkColor.h" #include "third_party/skia/include/core/SkImage.h" namespace flutter { namespace testing { namespace { std::vector<DisplayListComplexityCalculator*> Calculators() { return {DisplayListMetalComplexityCalculator::GetInstance(), DisplayListGLComplexityCalculator::GetInstance(), DisplayListNaiveComplexityCalculator::GetInstance()}; } std::vector<DisplayListComplexityCalculator*> AccumulatorCalculators() { return {DisplayListMetalComplexityCalculator::GetInstance(), DisplayListGLComplexityCalculator::GetInstance()}; } std::vector<SkPoint> GetTestPoints() { std::vector<SkPoint> points; points.push_back(SkPoint::Make(0, 0)); points.push_back(SkPoint::Make(10, 0)); points.push_back(SkPoint::Make(10, 10)); points.push_back(SkPoint::Make(20, 10)); points.push_back(SkPoint::Make(20, 20)); return points; } } // namespace TEST(DisplayListComplexity, EmptyDisplayList) { auto display_list = GetSampleDisplayList(0); auto calculators = Calculators(); for (auto calculator : calculators) { ASSERT_EQ(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DisplayListCeiling) { auto display_list = GetSampleDisplayList(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { calculator->SetComplexityCeiling(10u); ASSERT_EQ(calculator->Compute(display_list.get()), 10u); calculator->SetComplexityCeiling(std::numeric_limits<unsigned int>::max()); } } TEST(DisplayListComplexity, NestedDisplayList) { auto display_list = GetSampleNestedDisplayList(); auto calculators = Calculators(); for (auto calculator : calculators) { // There's only one draw call in the "outer" DisplayList, which calls // drawDisplayList with the "inner" DisplayList. To ensure we are // recursing correctly into the inner DisplayList, check that we aren't // returning 0 (if the function is a no-op) or 1 (as the op_count is 1) ASSERT_GT(calculator->Compute(display_list.get()), 1u); } } TEST(DisplayListComplexity, AntiAliasing) { DisplayListBuilder builder_no_aa; builder_no_aa.DrawLine(SkPoint::Make(0, 0), SkPoint::Make(100, 100), DlPaint()); auto display_list_no_aa = builder_no_aa.Build(); DisplayListBuilder builder_aa; builder_aa.DrawLine(SkPoint::Make(0, 0), SkPoint::Make(100, 100), DlPaint().setAntiAlias(true)); auto display_list_aa = builder_aa.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list_no_aa.get()), calculator->Compute(display_list_aa.get())); } } TEST(DisplayListComplexity, StrokeWidth) { DisplayListBuilder builder_stroke_0; builder_stroke_0.DrawLine(SkPoint::Make(0, 0), SkPoint::Make(100, 100), DlPaint().setStrokeWidth(0.0f)); auto display_list_stroke_0 = builder_stroke_0.Build(); DisplayListBuilder builder_stroke_1; builder_stroke_0.DrawLine(SkPoint::Make(0, 0), SkPoint::Make(100, 100), DlPaint().setStrokeWidth(1.0f)); auto display_list_stroke_1 = builder_stroke_1.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list_stroke_0.get()), calculator->Compute(display_list_stroke_1.get())); } } TEST(DisplayListComplexity, Style) { DisplayListBuilder builder_filled; builder_filled.DrawRect(SkRect::MakeXYWH(10, 10, 80, 80), DlPaint().setDrawStyle(DlDrawStyle::kFill)); auto display_list_filled = builder_filled.Build(); DisplayListBuilder builder_stroked; builder_stroked.DrawRect(SkRect::MakeXYWH(10, 10, 80, 80), DlPaint().setDrawStyle(DlDrawStyle::kStroke)); auto display_list_stroked = builder_stroked.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list_filled.get()), calculator->Compute(display_list_stroked.get())); } } TEST(DisplayListComplexity, SaveLayers) { DisplayListBuilder builder; builder.SaveLayer(nullptr, nullptr); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawPath) { DisplayListBuilder builder_line; SkPath line_path; line_path.moveTo(SkPoint::Make(0, 0)); line_path.lineTo(SkPoint::Make(10, 10)); line_path.close(); builder_line.DrawPath(line_path, DlPaint()); auto display_list_line = builder_line.Build(); DisplayListBuilder builder_quad; SkPath quad_path; quad_path.moveTo(SkPoint::Make(0, 0)); quad_path.quadTo(SkPoint::Make(10, 10), SkPoint::Make(10, 20)); quad_path.close(); builder_quad.DrawPath(quad_path, DlPaint()); auto display_list_quad = builder_quad.Build(); DisplayListBuilder builder_conic; SkPath conic_path; conic_path.moveTo(SkPoint::Make(0, 0)); conic_path.conicTo(SkPoint::Make(10, 10), SkPoint::Make(10, 20), 1.5f); conic_path.close(); builder_conic.DrawPath(conic_path, DlPaint()); auto display_list_conic = builder_conic.Build(); DisplayListBuilder builder_cubic; SkPath cubic_path; cubic_path.moveTo(SkPoint::Make(0, 0)); cubic_path.cubicTo(SkPoint::Make(10, 10), SkPoint::Make(10, 20), SkPoint::Make(20, 20)); builder_cubic.DrawPath(cubic_path, DlPaint()); auto display_list_cubic = builder_cubic.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list_line.get()), 0u); ASSERT_NE(calculator->Compute(display_list_quad.get()), 0u); ASSERT_NE(calculator->Compute(display_list_conic.get()), 0u); ASSERT_NE(calculator->Compute(display_list_cubic.get()), 0u); } } TEST(DisplayListComplexity, DrawShadow) { DisplayListBuilder builder_line; SkPath line_path; line_path.moveTo(SkPoint::Make(0, 0)); line_path.lineTo(SkPoint::Make(10, 10)); line_path.close(); builder_line.DrawShadow(line_path, DlColor(SK_ColorRED), 10.0f, false, 1.0f); auto display_list_line = builder_line.Build(); DisplayListBuilder builder_quad; SkPath quad_path; quad_path.moveTo(SkPoint::Make(0, 0)); quad_path.quadTo(SkPoint::Make(10, 10), SkPoint::Make(10, 20)); quad_path.close(); builder_quad.DrawShadow(quad_path, DlColor(SK_ColorRED), 10.0f, false, 1.0f); auto display_list_quad = builder_quad.Build(); DisplayListBuilder builder_conic; SkPath conic_path; conic_path.moveTo(SkPoint::Make(0, 0)); conic_path.conicTo(SkPoint::Make(10, 10), SkPoint::Make(10, 20), 1.5f); conic_path.close(); builder_conic.DrawShadow(conic_path, DlColor(SK_ColorRED), 10.0f, false, 1.0f); auto display_list_conic = builder_conic.Build(); DisplayListBuilder builder_cubic; SkPath cubic_path; cubic_path.moveTo(SkPoint::Make(0, 0)); cubic_path.cubicTo(SkPoint::Make(10, 10), SkPoint::Make(10, 20), SkPoint::Make(20, 20)); builder_cubic.DrawShadow(cubic_path, DlColor(SK_ColorRED), 10.0f, false, 1.0f); auto display_list_cubic = builder_cubic.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list_line.get()), 0u); ASSERT_NE(calculator->Compute(display_list_quad.get()), 0u); ASSERT_NE(calculator->Compute(display_list_conic.get()), 0u); ASSERT_NE(calculator->Compute(display_list_cubic.get()), 0u); } } TEST(DisplayListComplexity, DrawOval) { DisplayListBuilder builder; builder.DrawOval(SkRect::MakeXYWH(10, 10, 100, 80), DlPaint()); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawCircle) { DisplayListBuilder builder; builder.DrawCircle(SkPoint::Make(50, 50), 10.0f, DlPaint()); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawRRect) { DisplayListBuilder builder; builder.DrawRRect( SkRRect::MakeRectXY(SkRect::MakeXYWH(10, 10, 80, 80), 2.0f, 3.0f), DlPaint()); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawDRRect) { DisplayListBuilder builder; SkRRect outer = SkRRect::MakeRectXY(SkRect::MakeXYWH(10, 10, 80, 80), 2.0f, 3.0f); SkRRect inner = SkRRect::MakeRectXY(SkRect::MakeXYWH(15, 15, 70, 70), 1.5f, 1.5f); builder.DrawDRRect(outer, inner, DlPaint()); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawArc) { DisplayListBuilder builder; builder.DrawArc(SkRect::MakeXYWH(10, 10, 100, 80), 0.0f, 10.0f, true, DlPaint()); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawVertices) { auto points = GetTestPoints(); auto vertices = DlVertices::Make(DlVertexMode::kTriangles, points.size(), points.data(), nullptr, nullptr); DisplayListBuilder builder; builder.DrawVertices(vertices.get(), DlBlendMode::kSrc, DlPaint()); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawTextBlob) { auto text_blob = SkTextBlob::MakeFromString( "The quick brown fox jumps over the lazy dog.", CreateTestFontOfSize(20)); DisplayListBuilder builder; builder.DrawTextBlob(text_blob, 0.0f, 0.0f, DlPaint()); auto display_list = builder.Build(); DisplayListBuilder builder_multiple; builder_multiple.DrawTextBlob(text_blob, 0.0f, 0.0f, DlPaint()); builder_multiple.DrawTextBlob(text_blob, 0.0f, 0.0f, DlPaint()); auto display_list_multiple = builder_multiple.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); ASSERT_GT(calculator->Compute(display_list_multiple.get()), calculator->Compute(display_list.get())); } } TEST(DisplayListComplexity, DrawPoints) { auto points = GetTestPoints(); DisplayListBuilder builder_lines; builder_lines.DrawPoints(DlCanvas::PointMode::kLines, points.size(), points.data(), DlPaint()); auto display_list_lines = builder_lines.Build(); DisplayListBuilder builder_points; builder_points.DrawPoints(DlCanvas::PointMode::kPoints, points.size(), points.data(), DlPaint()); auto display_list_points = builder_points.Build(); DisplayListBuilder builder_polygon; builder_polygon.DrawPoints(DlCanvas::PointMode::kPolygon, points.size(), points.data(), DlPaint()); auto display_list_polygon = builder_polygon.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list_lines.get()), 0u); ASSERT_NE(calculator->Compute(display_list_points.get()), 0u); ASSERT_NE(calculator->Compute(display_list_polygon.get()), 0u); } } TEST(DisplayListComplexity, DrawImage) { SkImageInfo info = SkImageInfo::Make(50, 50, SkColorType::kRGBA_8888_SkColorType, SkAlphaType::kPremul_SkAlphaType); SkBitmap bitmap; bitmap.allocPixels(info, 0); auto image = SkImages::RasterFromBitmap(bitmap); DisplayListBuilder builder; builder.DrawImage(DlImage::Make(image), SkPoint::Make(0, 0), DlImageSampling::kNearestNeighbor, nullptr); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawImageNine) { SkImageInfo info = SkImageInfo::Make(50, 50, SkColorType::kRGBA_8888_SkColorType, SkAlphaType::kPremul_SkAlphaType); SkBitmap bitmap; bitmap.allocPixels(info, 0); auto image = SkImages::RasterFromBitmap(bitmap); SkIRect center = SkIRect::MakeXYWH(5, 5, 20, 20); SkRect dest = SkRect::MakeXYWH(0, 0, 50, 50); DisplayListBuilder builder; builder.DrawImageNine(DlImage::Make(image), center, dest, DlFilterMode::kNearest, nullptr); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawImageRect) { SkImageInfo info = SkImageInfo::Make(50, 50, SkColorType::kRGBA_8888_SkColorType, SkAlphaType::kPremul_SkAlphaType); SkBitmap bitmap; bitmap.allocPixels(info, 0); auto image = SkImages::RasterFromBitmap(bitmap); SkRect src = SkRect::MakeXYWH(0, 0, 50, 50); SkRect dest = SkRect::MakeXYWH(0, 0, 50, 50); DisplayListBuilder builder; builder.DrawImageRect(DlImage::Make(image), src, dest, DlImageSampling::kNearestNeighbor, nullptr); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } TEST(DisplayListComplexity, DrawAtlas) { SkImageInfo info = SkImageInfo::Make(50, 50, SkColorType::kRGBA_8888_SkColorType, SkAlphaType::kPremul_SkAlphaType); SkBitmap bitmap; bitmap.allocPixels(info, 0); auto image = SkImages::RasterFromBitmap(bitmap); std::vector<SkRect> rects; std::vector<SkRSXform> xforms; for (int i = 0; i < 10; i++) { rects.push_back(SkRect::MakeXYWH(0, 0, 10, 10)); xforms.push_back(SkRSXform::Make(1, 0, 0, 0)); } DisplayListBuilder builder; builder.DrawAtlas(DlImage::Make(image), xforms.data(), rects.data(), nullptr, 10, DlBlendMode::kSrc, DlImageSampling::kNearestNeighbor, nullptr, nullptr); auto display_list = builder.Build(); auto calculators = AccumulatorCalculators(); for (auto calculator : calculators) { ASSERT_NE(calculator->Compute(display_list.get()), 0u); } } } // namespace testing } // namespace flutter
engine/display_list/benchmarking/dl_complexity_unittests.cc/0
{ "file_path": "engine/display_list/benchmarking/dl_complexity_unittests.cc", "repo_id": "engine", "token_count": 6141 }
145
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef FLUTTER_DISPLAY_LIST_DL_OP_FLAGS_H_ #define FLUTTER_DISPLAY_LIST_DL_OP_FLAGS_H_ #include "flutter/display_list/dl_paint.h" #include "flutter/fml/logging.h" namespace flutter { class DlPathEffect; /// The base class for the classes that maintain a list of /// attributes that might be important for a number of operations /// including which rendering attributes need to be set before /// calling a rendering method (all |drawSomething| calls), /// or for determining which exceptional conditions may need /// to be accounted for in bounds calculations. /// This class contains only protected definitions and helper methods /// for the public classes |DisplayListAttributeFlags| and /// |DisplayListSpecialGeometryFlags|. class DisplayListFlags { protected: // A drawing operation that is not geometric in nature (but which // may still apply a MaskFilter - see |kUsesMaskFilter| below). static constexpr int kIsNonGeometric = 0; // A geometric operation that is defined as a fill operation // regardless of what the current paint Style is set to. // This flag will automatically assume |kUsesMaskFilter|. static constexpr int kIsFilledGeometry = 1 << 0; // A geometric operation that is defined as a stroke operation // regardless of what the current paint Style is set to. // This flag will automatically assume |kUsesMaskFilter|. static constexpr int kIsStrokedGeometry = 1 << 1; // A geometric operation that may be a stroke or fill operation // depending on the current state of the paint Style attribute. // This flag will automatically assume |kUsesMaskFilter|. static constexpr int kIsDrawnGeometry = 1 << 2; static constexpr int kIsAnyGeometryMask = // kIsFilledGeometry | // kIsStrokedGeometry | // kIsDrawnGeometry; // A primitive that floods the surface (or clip) with no // natural bounds, such as |drawColor| or |drawPaint|. static constexpr int kFloodsSurface = 1 << 3; static constexpr int kMayHaveCaps = 1 << 4; static constexpr int kMayHaveJoins = 1 << 5; static constexpr int kButtCapIsSquare = 1 << 6; // A geometric operation which has a path that might have // end caps that are not rectilinear which means that square // end caps might project further than half the stroke width // from the geometry bounds. // A rectilinear path such as |drawRect| will not have // diagonal end caps. |drawLine| might have diagonal end // caps depending on the angle of the line, and more likely // |drawPath| will often have such end caps. static constexpr int kMayHaveDiagonalCaps = 1 << 7; // A geometric operation which has joined vertices that are // not guaranteed to be smooth (angles of incoming and outgoing) // segments at some joins may not have the same angle) or // rectilinear (squares have right angles at the corners, but // those corners will never extend past the bounding box of // the geometry pre-transform). // |drawRect|, |drawOval| and |drawRRect| all have well // behaved joins, but |drawPath| might have joins that cause // mitered extensions outside the pre-transformed bounding box. static constexpr int kMayHaveAcuteJoins = 1 << 8; static constexpr int kAnySpecialGeometryMask = // kMayHaveCaps | kMayHaveJoins | kButtCapIsSquare | // kMayHaveDiagonalCaps | kMayHaveAcuteJoins; // clang-format off static constexpr int kUsesAntiAlias = 1 << 10; static constexpr int kUsesAlpha = 1 << 11; static constexpr int kUsesColor = 1 << 12; static constexpr int kUsesBlend = 1 << 13; static constexpr int kUsesShader = 1 << 14; static constexpr int kUsesColorFilter = 1 << 15; static constexpr int kUsesPathEffect = 1 << 16; static constexpr int kUsesMaskFilter = 1 << 17; static constexpr int kUsesImageFilter = 1 << 18; // Some ops have an optional paint argument. If the version // stored in the DisplayList ignores the paint, but there // is an option to render the same op with a paint then // both of the following flags are set to indicate that // a default paint object can be constructed when rendering // the op to carry information imposed from outside the // DisplayList (for example, the opacity override). static constexpr int kIgnoresPaint = 1 << 30; // clang-format on static constexpr int kAnyAttributeMask = // kUsesAntiAlias | kUsesAlpha | kUsesColor | kUsesBlend | kUsesShader | kUsesColorFilter | kUsesPathEffect | kUsesMaskFilter | kUsesImageFilter; }; class DisplayListFlagsBase : protected DisplayListFlags { protected: explicit constexpr DisplayListFlagsBase(int flags) : flags_(flags) {} const int flags_; constexpr bool has_any(int qFlags) const { return (flags_ & qFlags) != 0; } constexpr bool has_all(int qFlags) const { return (flags_ & qFlags) == qFlags; } constexpr bool has_none(int qFlags) const { return (flags_ & qFlags) == 0; } }; /// An attribute class for advertising specific properties of /// a geometric attribute that can affect the computation of /// the bounds of the primitive. class DisplayListSpecialGeometryFlags : DisplayListFlagsBase { public: /// The geometry may have segments that end without closing the path. constexpr bool may_have_end_caps() const { return has_any(kMayHaveCaps); } /// The geometry may have segments connect non-continuously. constexpr bool may_have_joins() const { return has_any(kMayHaveJoins); } /// Mainly for drawPoints(PointMode) where Butt caps are rendered as squares. constexpr bool butt_cap_becomes_square() const { return has_any(kButtCapIsSquare); } /// The geometry may have segments that end on a diagonal /// such that their end caps extend further than the default /// |strokeWidth * 0.5| margin around the geometry. constexpr bool may_have_diagonal_caps() const { return has_any(kMayHaveDiagonalCaps); } /// The geometry may have segments that meet at vertices at /// an acute angle such that the miter joins will extend /// further than the default |strokeWidth * 0.5| margin around /// the geometry. constexpr bool may_have_acute_joins() const { return has_any(kMayHaveAcuteJoins); } private: explicit constexpr DisplayListSpecialGeometryFlags(int flags) : DisplayListFlagsBase(flags) { FML_DCHECK((flags & kAnySpecialGeometryMask) == flags); } const DisplayListSpecialGeometryFlags with(int extra) const { return extra == 0 ? *this : DisplayListSpecialGeometryFlags(flags_ | extra); } friend class DisplayListAttributeFlags; }; class DisplayListAttributeFlags : DisplayListFlagsBase { public: const DisplayListSpecialGeometryFlags WithPathEffect( const DlPathEffect* effect, bool is_stroked) const; constexpr bool ignores_paint() const { return has_any(kIgnoresPaint); } constexpr bool applies_anti_alias() const { return has_any(kUsesAntiAlias); } constexpr bool applies_color() const { return has_any(kUsesColor); } constexpr bool applies_alpha() const { return has_any(kUsesAlpha); } constexpr bool applies_alpha_or_color() const { return has_any(kUsesAlpha | kUsesColor); } /// The primitive dynamically determines whether it is a stroke or fill /// operation (or both) based on the setting of the |Style| attribute. constexpr bool applies_style() const { return has_any(kIsDrawnGeometry); } /// The primitive can use any of the stroke attributes, such as /// StrokeWidth, StrokeMiter, StrokeCap, or StrokeJoin. This /// method will return if the primitive is defined as one that /// strokes its geometry (such as |drawLine|) or if it is defined /// as one that honors the Style attribute. If the Style attribute /// is known then a more accurate answer can be returned from /// the |is_stroked| method by supplying the actual setting of /// the style. // bool applies_stroke_attributes() const { return is_stroked(); } constexpr bool applies_shader() const { return has_any(kUsesShader); } /// The primitive honors the current DlColorFilter, including /// the related attribute InvertColors constexpr bool applies_color_filter() const { return has_any(kUsesColorFilter); } /// The primitive honors the DlBlendMode constexpr bool applies_blend() const { return has_any(kUsesBlend); } constexpr bool applies_path_effect() const { return has_any(kUsesPathEffect); } /// The primitive honors the DlMaskFilter whether set using the /// filter object or using the convenience method |setMaskBlurFilter| constexpr bool applies_mask_filter() const { return has_any(kUsesMaskFilter); } constexpr bool applies_image_filter() const { return has_any(kUsesImageFilter); } constexpr bool is_geometric() const { return has_any(kIsAnyGeometryMask); } constexpr bool always_stroked() const { return has_any(kIsStrokedGeometry); } constexpr bool is_stroked(DlDrawStyle style = DlDrawStyle::kStroke) const { return (has_any(kIsStrokedGeometry) || (style != DlDrawStyle::kFill && has_any(kIsDrawnGeometry))); } constexpr bool is_flood() const { return has_any(kFloodsSurface); } constexpr bool operator==(DisplayListAttributeFlags const& other) const { return flags_ == other.flags_; } private: explicit constexpr DisplayListAttributeFlags(int flags) : DisplayListFlagsBase(flags), special_flags_(flags & kAnySpecialGeometryMask) { FML_DCHECK((flags & kIsAnyGeometryMask) == kIsNonGeometric || (flags & kIsAnyGeometryMask) == kIsFilledGeometry || (flags & kIsAnyGeometryMask) == kIsStrokedGeometry || (flags & kIsAnyGeometryMask) == kIsDrawnGeometry); FML_DCHECK(((flags & kAnyAttributeMask) == 0) != ((flags & kIgnoresPaint) == 0)); FML_DCHECK((flags & kIsAnyGeometryMask) != 0 || (flags & kAnySpecialGeometryMask) == 0); } constexpr DisplayListAttributeFlags operator+(int extra) const { return extra == 0 ? *this : DisplayListAttributeFlags(flags_ | extra); } constexpr DisplayListAttributeFlags operator-(int remove) const { FML_DCHECK(has_all(remove)); return DisplayListAttributeFlags(flags_ & ~remove); } const DisplayListSpecialGeometryFlags special_flags_; friend class DisplayListOpFlags; }; class DisplayListOpFlags : DisplayListFlags { private: // Flags common to all primitives that apply colors static constexpr int kBasePaintFlags = (kUsesColor | // kUsesAlpha | // kUsesBlend | // kUsesShader | // kUsesColorFilter | // kUsesImageFilter); // Flags common to all primitives that stroke or fill static constexpr int kBaseStrokeOrFillFlags = (kIsDrawnGeometry | // kUsesAntiAlias | // kUsesMaskFilter | // kUsesPathEffect); // Flags common to primitives that stroke geometry static constexpr int kBaseStrokeFlags = (kIsStrokedGeometry | // kUsesAntiAlias | // kUsesMaskFilter | // kUsesPathEffect); // Flags common to primitives that render an image with paint attributes static constexpr int kBaseImageFlags = (kIsNonGeometric | // kUsesAlpha | // kUsesBlend | // kUsesColorFilter | // kUsesImageFilter); public: static constexpr DisplayListAttributeFlags kSaveLayerFlags{ kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kSaveLayerWithPaintFlags{ kIsNonGeometric | // kUsesAlpha | // kUsesBlend | // kUsesColorFilter | // kUsesImageFilter // }; static constexpr DisplayListAttributeFlags kDrawColorFlags{ kFloodsSurface | // kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kDrawPaintFlags{ kBasePaintFlags | // kFloodsSurface // }; // Special case flags for horizonal and vertical lines static constexpr DisplayListAttributeFlags kDrawHVLineFlags{ kBasePaintFlags | // kBaseStrokeFlags | // kMayHaveCaps // }; static constexpr DisplayListAttributeFlags kDrawLineFlags{ kDrawHVLineFlags // + kMayHaveDiagonalCaps // }; static constexpr DisplayListAttributeFlags kDrawRectFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags | // kMayHaveJoins // }; static constexpr DisplayListAttributeFlags kDrawOvalFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags // }; static constexpr DisplayListAttributeFlags kDrawCircleFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags // }; static constexpr DisplayListAttributeFlags kDrawRRectFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags // }; static constexpr DisplayListAttributeFlags kDrawDRRectFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags // }; static constexpr DisplayListAttributeFlags kDrawPathFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags | // kMayHaveCaps | // kMayHaveDiagonalCaps | // kMayHaveJoins | // kMayHaveAcuteJoins // }; static constexpr DisplayListAttributeFlags kDrawArcNoCenterFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags | // kMayHaveCaps | // kMayHaveDiagonalCaps // }; static constexpr DisplayListAttributeFlags kDrawArcWithCenterFlags{ kBasePaintFlags | // kBaseStrokeOrFillFlags | // kMayHaveJoins | // kMayHaveAcuteJoins // }; static constexpr DisplayListAttributeFlags kDrawPointsAsPointsFlags{ kBasePaintFlags | // kBaseStrokeFlags | // kMayHaveCaps | // kButtCapIsSquare // }; static constexpr DisplayListAttributeFlags kDrawPointsAsLinesFlags{ kBasePaintFlags | // kBaseStrokeFlags | // kMayHaveCaps | // kMayHaveDiagonalCaps // }; // Polygon mode just draws (count-1) separate lines, no joins static constexpr DisplayListAttributeFlags kDrawPointsAsPolygonFlags{ kBasePaintFlags | // kBaseStrokeFlags | // kMayHaveCaps | // kMayHaveDiagonalCaps // }; static constexpr DisplayListAttributeFlags kDrawVerticesFlags{ kIsNonGeometric | // kUsesAlpha | // kUsesShader | // kUsesBlend | // kUsesColorFilter | // kUsesImageFilter // }; static constexpr DisplayListAttributeFlags kDrawImageFlags{ kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kDrawImageWithPaintFlags{ kBaseImageFlags | // kUsesAntiAlias | // kUsesMaskFilter // }; static constexpr DisplayListAttributeFlags kDrawImageRectFlags{ kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kDrawImageRectWithPaintFlags{ kBaseImageFlags | // kUsesAntiAlias | // kUsesMaskFilter // }; static constexpr DisplayListAttributeFlags kDrawImageNineFlags{ kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kDrawImageNineWithPaintFlags{ kBaseImageFlags // }; static constexpr DisplayListAttributeFlags kDrawAtlasFlags{ kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kDrawAtlasWithPaintFlags{ kBaseImageFlags // }; static constexpr DisplayListAttributeFlags kDrawDisplayListFlags{ kIgnoresPaint // }; static constexpr DisplayListAttributeFlags kDrawTextBlobFlags{ DisplayListAttributeFlags(kBasePaintFlags | // kBaseStrokeOrFillFlags | // kMayHaveJoins) // - kUsesAntiAlias // }; static constexpr DisplayListAttributeFlags kDrawShadowFlags{ kIgnoresPaint // }; }; } // namespace flutter #endif // FLUTTER_DISPLAY_LIST_DL_OP_FLAGS_H_
engine/display_list/dl_op_flags.h/0
{ "file_path": "engine/display_list/dl_op_flags.h", "repo_id": "engine", "token_count": 6212 }
146
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "flutter/display_list/effects/dl_color_source.h" #include "flutter/display_list/dl_sampling_options.h" #include "flutter/display_list/effects/dl_runtime_effect.h" #include "flutter/fml/logging.h" namespace flutter { static void DlGradientDeleter(void* p) { // Some of our target environments would prefer a sized delete, // but other target environments do not have that operator. // Use an unsized delete until we get better agreement in the // environments. // See https://github.com/flutter/flutter/issues/100327 ::operator delete(p); } std::shared_ptr<DlLinearGradientColorSource> DlColorSource::MakeLinear( const SkPoint start_point, const SkPoint end_point, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix) { size_t needed = sizeof(DlLinearGradientColorSource) + (stop_count * (sizeof(uint32_t) + sizeof(float))); void* storage = ::operator new(needed); std::shared_ptr<DlLinearGradientColorSource> ret; ret.reset(new (storage) DlLinearGradientColorSource(start_point, end_point, stop_count, colors, stops, tile_mode, matrix), DlGradientDeleter); return ret; } std::shared_ptr<DlRadialGradientColorSource> DlColorSource::MakeRadial( SkPoint center, SkScalar radius, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix) { size_t needed = sizeof(DlRadialGradientColorSource) + (stop_count * (sizeof(uint32_t) + sizeof(float))); void* storage = ::operator new(needed); std::shared_ptr<DlRadialGradientColorSource> ret; ret.reset(new (storage) DlRadialGradientColorSource( center, radius, stop_count, colors, stops, tile_mode, matrix), DlGradientDeleter); return ret; } std::shared_ptr<DlConicalGradientColorSource> DlColorSource::MakeConical( SkPoint start_center, SkScalar start_radius, SkPoint end_center, SkScalar end_radius, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix) { size_t needed = sizeof(DlConicalGradientColorSource) + (stop_count * (sizeof(uint32_t) + sizeof(float))); void* storage = ::operator new(needed); std::shared_ptr<DlConicalGradientColorSource> ret; ret.reset(new (storage) DlConicalGradientColorSource( start_center, start_radius, end_center, end_radius, stop_count, colors, stops, tile_mode, matrix), DlGradientDeleter); return ret; } std::shared_ptr<DlSweepGradientColorSource> DlColorSource::MakeSweep( SkPoint center, SkScalar start, SkScalar end, uint32_t stop_count, const DlColor* colors, const float* stops, DlTileMode tile_mode, const SkMatrix* matrix) { size_t needed = sizeof(DlSweepGradientColorSource) + (stop_count * (sizeof(uint32_t) + sizeof(float))); void* storage = ::operator new(needed); std::shared_ptr<DlSweepGradientColorSource> ret; ret.reset(new (storage) DlSweepGradientColorSource(center, start, end, stop_count, colors, stops, tile_mode, matrix), DlGradientDeleter); return ret; } std::shared_ptr<DlRuntimeEffectColorSource> DlColorSource::MakeRuntimeEffect( sk_sp<DlRuntimeEffect> runtime_effect, std::vector<std::shared_ptr<DlColorSource>> samplers, std::shared_ptr<std::vector<uint8_t>> uniform_data) { FML_DCHECK(uniform_data != nullptr); return std::make_shared<DlRuntimeEffectColorSource>( std::move(runtime_effect), std::move(samplers), std::move(uniform_data)); } } // namespace flutter
engine/display_list/effects/dl_color_source.cc/0
{ "file_path": "engine/display_list/effects/dl_color_source.cc", "repo_id": "engine", "token_count": 1609 }
147
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "flutter/display_list/geometry/dl_region.h" #include "gtest/gtest.h" #include "third_party/skia/include/core/SkRegion.h" #include <random> namespace flutter { namespace testing { TEST(DisplayListRegion, EmptyRegion) { DlRegion region; EXPECT_TRUE(region.isEmpty()); EXPECT_TRUE(region.getRects().empty()); } TEST(DisplayListRegion, SingleRectangle) { DlRegion region({SkIRect::MakeLTRB(10, 10, 50, 50)}); auto rects = region.getRects(); ASSERT_EQ(rects.size(), 1u); EXPECT_EQ(rects.front(), SkIRect::MakeLTRB(10, 10, 50, 50)); } TEST(DisplayListRegion, NonOverlappingRectangles1) { std::vector<SkIRect> rects_in; for (int i = 0; i < 10; ++i) { SkIRect rect = SkIRect::MakeXYWH(50 * i, 50 * i, 50, 50); rects_in.push_back(rect); } DlRegion region(rects_in); auto rects = region.getRects(); std::vector<SkIRect> expected{ {0, 0, 50, 50}, {50, 50, 100, 100}, {100, 100, 150, 150}, {150, 150, 200, 200}, {200, 200, 250, 250}, {250, 250, 300, 300}, {300, 300, 350, 350}, {350, 350, 400, 400}, {400, 400, 450, 450}, {450, 450, 500, 500}, }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, NonOverlappingRectangles2) { DlRegion region({ SkIRect::MakeXYWH(5, 5, 10, 10), SkIRect::MakeXYWH(25, 5, 10, 10), SkIRect::MakeXYWH(5, 25, 10, 10), SkIRect::MakeXYWH(25, 25, 10, 10), }); auto rects = region.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(5, 5, 10, 10), SkIRect::MakeXYWH(25, 5, 10, 10), SkIRect::MakeXYWH(5, 25, 10, 10), SkIRect::MakeXYWH(25, 25, 10, 10), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, NonOverlappingRectangles3) { DlRegion region({ SkIRect::MakeXYWH(0, 0, 10, 10), SkIRect::MakeXYWH(-11, -11, 10, 10), SkIRect::MakeXYWH(11, 11, 10, 10), SkIRect::MakeXYWH(-11, 0, 10, 10), SkIRect::MakeXYWH(0, 11, 10, 10), SkIRect::MakeXYWH(0, -11, 10, 10), SkIRect::MakeXYWH(11, 0, 10, 10), SkIRect::MakeXYWH(11, -11, 10, 10), SkIRect::MakeXYWH(-11, 11, 10, 10), }); auto rects = region.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(-11, -11, 10, 10), // SkIRect::MakeXYWH(0, -11, 10, 10), // SkIRect::MakeXYWH(11, -11, 10, 10), // SkIRect::MakeXYWH(-11, 0, 10, 10), // SkIRect::MakeXYWH(0, 0, 10, 10), // SkIRect::MakeXYWH(11, 0, 10, 10), // SkIRect::MakeXYWH(-11, 11, 10, 10), // SkIRect::MakeXYWH(0, 11, 10, 10), // SkIRect::MakeXYWH(11, 11, 10, 10), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, MergeTouchingRectangles) { DlRegion region({ SkIRect::MakeXYWH(0, 0, 10, 10), SkIRect::MakeXYWH(-10, -10, 10, 10), SkIRect::MakeXYWH(10, 10, 10, 10), SkIRect::MakeXYWH(-10, 0, 10, 10), SkIRect::MakeXYWH(0, 10, 10, 10), SkIRect::MakeXYWH(0, -10, 10, 10), SkIRect::MakeXYWH(10, 0, 10, 10), SkIRect::MakeXYWH(10, -10, 10, 10), SkIRect::MakeXYWH(-10, 10, 10, 10), }); auto rects = region.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(-10, -10, 30, 30), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, OverlappingRectangles) { std::vector<SkIRect> rects_in; for (int i = 0; i < 10; ++i) { SkIRect rect = SkIRect::MakeXYWH(10 * i, 10 * i, 50, 50); rects_in.push_back(rect); } DlRegion region(rects_in); auto rects = region.getRects(); std::vector<SkIRect> expected{ {0, 0, 50, 10}, {0, 10, 60, 20}, {0, 20, 70, 30}, {0, 30, 80, 40}, {0, 40, 90, 50}, {10, 50, 100, 60}, {20, 60, 110, 70}, {30, 70, 120, 80}, {40, 80, 130, 90}, {50, 90, 140, 100}, {60, 100, 140, 110}, {70, 110, 140, 120}, {80, 120, 140, 130}, {90, 130, 140, 140}, }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, Deband) { DlRegion region({ SkIRect::MakeXYWH(0, 0, 50, 50), SkIRect::MakeXYWH(60, 0, 20, 20), SkIRect::MakeXYWH(90, 0, 50, 50), }); auto rects_with_deband = region.getRects(true); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(60, 0, 20, 20), SkIRect::MakeXYWH(0, 0, 50, 50), SkIRect::MakeXYWH(90, 0, 50, 50), }; EXPECT_EQ(rects_with_deband, expected); auto rects_without_deband = region.getRects(false); std::vector<SkIRect> expected_without_deband{ SkIRect::MakeXYWH(0, 0, 50, 20), // SkIRect::MakeXYWH(60, 0, 20, 20), // SkIRect::MakeXYWH(90, 0, 50, 20), // SkIRect::MakeXYWH(0, 20, 50, 30), // SkIRect::MakeXYWH(90, 20, 50, 30), }; EXPECT_EQ(rects_without_deband, expected_without_deband); } TEST(DisplayListRegion, Intersects1) { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(20, 20, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(20, 0, 20, 20), SkIRect::MakeXYWH(0, 20, 20, 20), }); EXPECT_FALSE(region1.intersects(region2)); EXPECT_FALSE(region2.intersects(region1)); EXPECT_TRUE(region1.intersects(region2.bounds())); EXPECT_TRUE(region2.intersects(region1.bounds())); EXPECT_TRUE(region1.intersects(SkIRect::MakeXYWH(0, 0, 20, 20))); EXPECT_FALSE(region1.intersects(SkIRect::MakeXYWH(20, 0, 20, 20))); EXPECT_TRUE(region1.intersects( DlRegion(std::vector<SkIRect>{SkIRect::MakeXYWH(0, 0, 20, 20)}))); EXPECT_FALSE(region1.intersects( DlRegion(std::vector<SkIRect>{SkIRect::MakeXYWH(20, 0, 20, 20)}))); EXPECT_FALSE(region1.intersects(SkIRect::MakeXYWH(-1, -1, 1, 1))); EXPECT_TRUE(region1.intersects(SkIRect::MakeXYWH(0, 0, 1, 1))); EXPECT_FALSE(region1.intersects(SkIRect::MakeXYWH(40, 40, 1, 1))); EXPECT_TRUE(region1.intersects(SkIRect::MakeXYWH(39, 39, 1, 1))); } TEST(DisplayListRegion, Intersects2) { DlRegion region1({ SkIRect::MakeXYWH(-10, -10, 20, 20), SkIRect::MakeXYWH(-30, -30, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(20, 20, 5, 5), SkIRect::MakeXYWH(0, 0, 20, 20), }); EXPECT_TRUE(region1.intersects(region2)); EXPECT_TRUE(region2.intersects(region1)); } TEST(DisplayListRegion, Intersection1) { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(20, 20, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(20, 0, 20, 20), SkIRect::MakeXYWH(0, 20, 20, 20), }); DlRegion i = DlRegion::MakeIntersection(region1, region2); EXPECT_EQ(i.bounds(), SkIRect::MakeEmpty()); EXPECT_TRUE(i.isEmpty()); auto rects = i.getRects(); EXPECT_TRUE(rects.empty()); } TEST(DisplayListRegion, Intersection2) { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(20, 20, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(20, 20, 20, 20), }); DlRegion i = DlRegion::MakeIntersection(region1, region2); EXPECT_EQ(i.bounds(), SkIRect::MakeXYWH(0, 0, 40, 40)); auto rects = i.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(20, 20, 20, 20), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, Intersection3) { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(-10, -10, 20, 20), SkIRect::MakeXYWH(10, 10, 20, 20), }); DlRegion i = DlRegion::MakeIntersection(region1, region2); EXPECT_EQ(i.bounds(), SkIRect::MakeXYWH(0, 0, 20, 20)); auto rects = i.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(0, 0, 10, 10), SkIRect::MakeXYWH(10, 10, 10, 10), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, Union1) { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(20, 20, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(20, 0, 20, 20), SkIRect::MakeXYWH(0, 20, 20, 20), }); DlRegion u = DlRegion::MakeUnion(region1, region2); EXPECT_EQ(u.bounds(), SkIRect::MakeXYWH(0, 0, 40, 40)); EXPECT_TRUE(u.isSimple()); auto rects = u.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(0, 0, 40, 40), // }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, Union2) { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(21, 21, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(21, 0, 20, 20), SkIRect::MakeXYWH(0, 21, 20, 20), }); DlRegion u = DlRegion::MakeUnion(region1, region2); EXPECT_EQ(u.bounds(), SkIRect::MakeXYWH(0, 0, 41, 41)); auto rects = u.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(0, 0, 20, 20), SkIRect::MakeXYWH(21, 0, 20, 20), SkIRect::MakeXYWH(0, 21, 20, 20), SkIRect::MakeXYWH(21, 21, 20, 20), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, Union3) { DlRegion region1({ SkIRect::MakeXYWH(-10, -10, 20, 20), }); DlRegion region2({ SkIRect::MakeXYWH(0, 0, 20, 20), }); DlRegion u = DlRegion::MakeUnion(region1, region2); EXPECT_EQ(u.bounds(), SkIRect::MakeXYWH(-10, -10, 30, 30)); auto rects = u.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(-10, -10, 20, 10), SkIRect::MakeXYWH(-10, 0, 30, 10), SkIRect::MakeXYWH(0, 10, 20, 10), }; EXPECT_EQ(rects, expected); } TEST(DisplayListRegion, UnionEmpty) { { DlRegion region1(std::vector<SkIRect>{}); DlRegion region2(std::vector<SkIRect>{}); DlRegion u = DlRegion::MakeUnion(region1, region2); EXPECT_EQ(u.bounds(), SkIRect::MakeEmpty()); EXPECT_TRUE(u.isEmpty()); auto rects = u.getRects(); EXPECT_TRUE(rects.empty()); } { DlRegion region1(std::vector<SkIRect>{}); DlRegion region2({ SkIRect::MakeXYWH(0, 0, 20, 20), }); DlRegion u = DlRegion::MakeUnion(region1, region2); EXPECT_EQ(u.bounds(), SkIRect::MakeXYWH(0, 0, 20, 20)); auto rects = u.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(0, 0, 20, 20), }; } { DlRegion region1({ SkIRect::MakeXYWH(0, 0, 20, 20), }); DlRegion region2(std::vector<SkIRect>{}); DlRegion u = DlRegion::MakeUnion(region1, region2); EXPECT_EQ(u.bounds(), SkIRect::MakeXYWH(0, 0, 20, 20)); auto rects = u.getRects(); std::vector<SkIRect> expected{ SkIRect::MakeXYWH(0, 0, 20, 20), }; } } void CheckEquality(const DlRegion& dl_region, const SkRegion& sk_region) { EXPECT_EQ(dl_region.bounds(), sk_region.getBounds()); // Do not deband the rectangles - identical to SkRegion::Iterator auto rects = dl_region.getRects(false); std::vector<SkIRect> skia_rects; auto iterator = SkRegion::Iterator(sk_region); while (!iterator.done()) { skia_rects.push_back(iterator.rect()); iterator.next(); } EXPECT_EQ(rects, skia_rects); } TEST(DisplayListRegion, TestAgainstSkRegion) { struct Settings { int max_size; }; std::vector<Settings> all_settings{{100}, {400}, {800}}; std::vector<size_t> iterations{1, 10, 100, 1000}; for (const auto& settings : all_settings) { for (const auto iterations_1 : iterations) { for (const auto iterations_2 : iterations) { std::random_device d; std::seed_seq seed{::testing::UnitTest::GetInstance()->random_seed()}; std::mt19937 rng(seed); SkRegion sk_region1; SkRegion sk_region2; std::uniform_int_distribution pos(0, 4000); std::uniform_int_distribution size(1, settings.max_size); std::vector<SkIRect> rects_in1; std::vector<SkIRect> rects_in2; for (size_t i = 0; i < iterations_1; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos(rng), pos(rng), size(rng), size(rng)); rects_in1.push_back(rect); } for (size_t i = 0; i < iterations_2; ++i) { SkIRect rect = SkIRect::MakeXYWH(pos(rng), pos(rng), size(rng), size(rng)); rects_in2.push_back(rect); } DlRegion region1(rects_in1); sk_region1.setRects(rects_in1.data(), rects_in1.size()); CheckEquality(region1, sk_region1); DlRegion region2(rects_in2); sk_region2.setRects(rects_in2.data(), rects_in2.size()); CheckEquality(region2, sk_region2); auto intersects_1 = region1.intersects(region2); auto intersects_2 = region2.intersects(region1); auto sk_intesects = sk_region1.intersects(sk_region2); EXPECT_EQ(intersects_1, intersects_2); EXPECT_EQ(intersects_1, sk_intesects); { auto rects = region2.getRects(true); for (const auto& r : rects) { EXPECT_EQ(region1.intersects(r), sk_region1.intersects(r)); } } DlRegion dl_union = DlRegion::MakeUnion(region1, region2); SkRegion sk_union(sk_region1); sk_union.op(sk_region2, SkRegion::kUnion_Op); CheckEquality(dl_union, sk_union); DlRegion dl_intersection = DlRegion::MakeIntersection(region1, region2); SkRegion sk_intersection(sk_region1); sk_intersection.op(sk_region2, SkRegion::kIntersect_Op); CheckEquality(dl_intersection, sk_intersection); } } } } } // namespace testing } // namespace flutter
engine/display_list/geometry/dl_region_unittests.cc/0
{ "file_path": "engine/display_list/geometry/dl_region_unittests.cc", "repo_id": "engine", "token_count": 6281 }
148
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef FLUTTER_DISPLAY_LIST_SKIA_DL_SK_PAINT_DISPATCHER_H_ #define FLUTTER_DISPLAY_LIST_SKIA_DL_SK_PAINT_DISPATCHER_H_ #include "flutter/display_list/dl_op_receiver.h" #include "flutter/display_list/skia/dl_sk_types.h" namespace flutter { // A utility class that will monitor the DlOpReceiver methods relating // to the rendering attributes and accumulate them into an SkPaint // which can be accessed at any time via paint(). class DlSkPaintDispatchHelper : public virtual DlOpReceiver { public: explicit DlSkPaintDispatchHelper(SkScalar opacity = SK_Scalar1) : current_color_(SK_ColorBLACK), opacity_(opacity) { if (opacity < SK_Scalar1) { paint_.setAlphaf(opacity); } } void setAntiAlias(bool aa) override; void setDrawStyle(DlDrawStyle style) override; void setColor(DlColor color) override; void setStrokeWidth(SkScalar width) override; void setStrokeMiter(SkScalar limit) override; void setStrokeCap(DlStrokeCap cap) override; void setStrokeJoin(DlStrokeJoin join) override; void setColorSource(const DlColorSource* source) override; void setColorFilter(const DlColorFilter* filter) override; void setInvertColors(bool invert) override; void setBlendMode(DlBlendMode mode) override; void setPathEffect(const DlPathEffect* effect) override; void setMaskFilter(const DlMaskFilter* filter) override; void setImageFilter(const DlImageFilter* filter) override; const SkPaint& paint(bool uses_shader = true) { // On the Impeller backend, we will only support dithering of *gradients*, // and it will be enabled by default (without the option to disable it). // Until Skia support is completely removed, we only want to respect the // dither flag for gradients (otherwise it will also apply to, for // example, image ops and image sources, which are not dithered in // Impeller) and only on those operations that use the color source. // // The color_source_gradient_ flag lets us know if the color source is // a gradient and then the uses_shader flag passed in to this method by // the rendering op lets us know if the color source is used (and is // therefore the primary source of colors for the op). // // See https://github.com/flutter/flutter/issues/112498. paint_.setDither(uses_shader && color_source_gradient_); return paint_; } /// Returns the current opacity attribute which is used to reduce /// the alpha of all setColor calls encountered in the streeam SkScalar opacity() { return opacity_; } /// Returns the combined opacity that includes both the current /// opacity attribute and the alpha of the most recent color. /// The most recently set color will have combined the two and /// stored the combined value in the alpha of the paint. SkScalar combined_opacity() { return paint_.getAlphaf(); } /// Returns true iff the current opacity attribute is not opaque, /// irrespective of the alpha of the current color bool has_opacity() { return opacity_ < SK_Scalar1; } protected: void save_opacity(SkScalar opacity_for_children); void restore_opacity(); private: SkPaint paint_; bool color_source_gradient_ = false; bool invert_colors_ = false; sk_sp<SkColorFilter> sk_color_filter_; sk_sp<SkColorFilter> makeColorFilter() const; struct SaveInfo { explicit SaveInfo(SkScalar opacity) : opacity(opacity) {} SkScalar opacity; }; std::vector<SaveInfo> save_stack_; void set_opacity(SkScalar opacity) { if (opacity_ != opacity) { opacity_ = opacity; setColor(DlColor(current_color_)); } } SkColor current_color_; SkScalar opacity_; }; } // namespace flutter #endif // FLUTTER_DISPLAY_LIST_SKIA_DL_SK_PAINT_DISPATCHER_H_
engine/display_list/skia/dl_sk_paint_dispatcher.h/0
{ "file_path": "engine/display_list/skia/dl_sk_paint_dispatcher.h", "repo_id": "engine", "token_count": 1260 }
149
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "flutter/display_list/utils/dl_bounds_accumulator.h" namespace flutter { void RectBoundsAccumulator::accumulate(const SkRect& r, int index) { if (r.fLeft < r.fRight && r.fTop < r.fBottom) { rect_.accumulate(r.fLeft, r.fTop); rect_.accumulate(r.fRight, r.fBottom); } } void RectBoundsAccumulator::save() { saved_rects_.emplace_back(rect_); rect_ = AccumulationRect(); } void RectBoundsAccumulator::restore() { if (!saved_rects_.empty()) { SkRect layer_bounds = rect_.bounds(); pop_and_accumulate(layer_bounds, nullptr); } } bool RectBoundsAccumulator::restore( std::function<bool(const SkRect&, SkRect&)> mapper, const SkRect* clip) { bool success = true; if (!saved_rects_.empty()) { SkRect layer_bounds = rect_.bounds(); success = mapper(layer_bounds, layer_bounds); pop_and_accumulate(layer_bounds, clip); } return success; } void RectBoundsAccumulator::pop_and_accumulate(SkRect& layer_bounds, const SkRect* clip) { FML_DCHECK(!saved_rects_.empty()); rect_ = saved_rects_.back(); saved_rects_.pop_back(); if (clip == nullptr || layer_bounds.intersect(*clip)) { accumulate(layer_bounds, -1); } } RectBoundsAccumulator::AccumulationRect::AccumulationRect() { min_x_ = std::numeric_limits<SkScalar>::infinity(); min_y_ = std::numeric_limits<SkScalar>::infinity(); max_x_ = -std::numeric_limits<SkScalar>::infinity(); max_y_ = -std::numeric_limits<SkScalar>::infinity(); } void RectBoundsAccumulator::AccumulationRect::accumulate(SkScalar x, SkScalar y) { if (min_x_ > x) { min_x_ = x; } if (min_y_ > y) { min_y_ = y; } if (max_x_ < x) { max_x_ = x; } if (max_y_ < y) { max_y_ = y; } } SkRect RectBoundsAccumulator::AccumulationRect::bounds() const { return (max_x_ >= min_x_ && max_y_ >= min_y_) ? SkRect::MakeLTRB(min_x_, min_y_, max_x_, max_y_) : SkRect::MakeEmpty(); } void RTreeBoundsAccumulator::accumulate(const SkRect& r, int index) { if (r.fLeft < r.fRight && r.fTop < r.fBottom) { rects_.push_back(r); rect_indices_.push_back(index); } } void RTreeBoundsAccumulator::save() { saved_offsets_.push_back(rects_.size()); } void RTreeBoundsAccumulator::restore() { if (saved_offsets_.empty()) { return; } saved_offsets_.pop_back(); } bool RTreeBoundsAccumulator::restore( std::function<bool(const SkRect& original, SkRect& modified)> map, const SkRect* clip) { if (saved_offsets_.empty()) { return true; } size_t previous_size = saved_offsets_.back(); saved_offsets_.pop_back(); bool success = true; for (size_t i = previous_size; i < rects_.size(); i++) { SkRect original = rects_[i]; if (!map(original, original)) { success = false; } if (clip == nullptr || original.intersect(*clip)) { rect_indices_[previous_size] = rect_indices_[i]; rects_[previous_size] = original; previous_size++; } } rects_.resize(previous_size); rect_indices_.resize(previous_size); return success; } SkRect RTreeBoundsAccumulator::bounds() const { FML_DCHECK(saved_offsets_.empty()); RectBoundsAccumulator accumulator; for (auto& rect : rects_) { accumulator.accumulate(rect, 0); } return accumulator.bounds(); } sk_sp<DlRTree> RTreeBoundsAccumulator::rtree() const { FML_DCHECK(saved_offsets_.empty()); return sk_make_sp<DlRTree>(rects_.data(), rects_.size(), rect_indices_.data(), [](int id) { return id >= 0; }); } } // namespace flutter
engine/display_list/utils/dl_bounds_accumulator.cc/0
{ "file_path": "engine/display_list/utils/dl_bounds_accumulator.cc", "repo_id": "engine", "token_count": 1634 }
150